diff --git a/README.md b/README.md
index 32f923b2..3d8c6e80 100644
--- a/README.md
+++ b/README.md
@@ -92,15 +92,20 @@ With more attributes
| transcriptData | Transcript json | yes | Json |
| mediaUrl | string url to media file - audio or video | yes | String |
|`handleAutoSaveChanges`| returns content of transcription after a change | no | Function |
+| isAutoSave | default to true, enable the auto save callback `handleAutoSaveChanges` | no | Boolean |
| autoSaveContentType | specify the file format for data returned by `handleAutoSaveChanges`,falls back on `sttJsonType`. or `draftjs` | no | string |
| isEditable | set to true if you want to be able to edit the text | no | Boolean |
| spellCheck | set to true if you want the browser to spell check this transcript | no | Boolean |
-|`handleAnalyticsEvents`| if you want to collect analytics events. | yes | Function |
+| showTimecodes | set to true if you want to show timecodes in the transcript at paragraph level | no | Boolean |
+| showSpeakers | set to true if you want to show speaker labels in the transcript at paragraph level | no | Boolean |
+|`handleAnalyticsEvents`| if you want to collect analytics events. | yes | Function |
| fileName | used for saving and retrieving local storage blob files | no | String |
| title | defaults to empty string | no | String |
| ref | if you want to have access to internal functions such as retrieving content from the editor. eg to save to a server/db. | no | React ref |
| mediaType | can be `audio` or `video`, if not provided the component uses the url file type to determine and adjust use of the page layout | no | String |
+
+
See [`./demo/app.js` demo](./demo/app.js) as a more detailed example usage of the component.
_Note: `fileName` it is optional but it's needed if working with user uploaded local media in the browser, to be able to save and retrieve from local storage. For instance if you are passing a blob url to `mediaUrl` using `createObjectURL` this url is randomly re-generated on every page refresh so you wouldn't be able to restore a session, as `mediaUrl` is used as the local storage key. See demo app for more detail example of this[`./src/index.js`](./src/index.js)_
diff --git a/demo/app.js b/demo/app.js
index 018e20fa..367d6633 100644
--- a/demo/app.js
+++ b/demo/app.js
@@ -4,7 +4,7 @@ import TranscriptEditor from "../packages/components/transcript-editor";
import SttTypeSelect from "./select-stt-json-type";
import ExportFormatSelect from "./select-export-format";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import { faGithub } from "@fortawesome/free-brands-svg-icons";
+import { faGithub, faThinkPeaks } from "@fortawesome/free-brands-svg-icons";
import {
loadLocalSavedData,
@@ -12,11 +12,62 @@ import {
localSave
} from "./local-storage.js";
-import DEMO_TRANSCRIPT from "./sample-data/KateDarling-bbcKaldiTranscriptWithSpeakerSegments.json";
-const DEMO_MEDIA_URL =
+const DEMO_MEDIA_URL_KATE =
"https://download.ted.com/talks/KateDarling_2018S-950k.mp4";
-const DEMO_TITLE =
+const DEMO_TITLE_KATE =
"TED Talk | Kate Darling - Why we have an emotional connection to robots";
+import DEMO_TRANSCRIPT_KATE from "./sample-data/KateDarling-bbcKaldiTranscriptWithSpeakerSegments.json";
+
+const DEMO_MEDIA_URL_ZUCK_5HOURS =
+ "https://democratic-presidential-debate-stt-analyses.s3.us-east-2.amazonaws.com/Facebook+CEO+Mark+Zuckerberg+FULL+testimony+before+U.S.+senate-pXq-5L2ghhg.mp4";
+
+const DEMO_TITLE_ZUCK_5HOURS =
+ "Facebook CEO Mark Zuckerberg | 5 Hours | full testimony before U.S. Senate";
+import DEMO_TRANSCRIPT_ZUCK_5HOURS_DPE from "./sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.dpe.json";
+import DEMO_TRANSCRIPT_ZUCK_5HOURS_DRAFTJS from "./sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.draftjs.json";
+
+ const DEMO_TITLE_ZUCK_2HOURS =
+ "Facebook CEO Mark Zuckerberg | 2 Hours | full testimony before U.S. Senate ";
+ import DEMO_TRANSCRIPT_ZUCK_2HOURS_DPE from "./sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.dpe-2hours.json";
+ import DEMO_TRANSCRIPT_ZUCK_2HOURS_DRAFTJS from "./sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.draftjs-2hours.json";
+
+const DEMOS = [
+ {
+ id: 'kate',
+ title: DEMO_TITLE_KATE,
+ json: DEMO_TRANSCRIPT_KATE,
+ url: DEMO_MEDIA_URL_KATE,
+ type: "bbckaldi"
+ },
+ {
+ id: 'zuckDraftJs5h',
+ title: DEMO_TITLE_ZUCK_5HOURS,
+ json: DEMO_TRANSCRIPT_ZUCK_5HOURS_DRAFTJS,
+ url: DEMO_MEDIA_URL_ZUCK_5HOURS,
+ type: 'draftjs'
+ },
+ {
+ id: 'zuckDpe5h',
+ title: DEMO_TITLE_ZUCK_5HOURS,
+ json: DEMO_TRANSCRIPT_ZUCK_5HOURS_DPE,
+ url: DEMO_MEDIA_URL_ZUCK_5HOURS,
+ type: 'digitalpaperedit'
+ },
+ {
+ id: 'zuckDraftJs2h',
+ title: DEMO_TITLE_ZUCK_2HOURS,
+ json: DEMO_TRANSCRIPT_ZUCK_2HOURS_DRAFTJS,
+ url: DEMO_MEDIA_URL_ZUCK_5HOURS,
+ type: 'draftjs'
+ },
+ {
+ id: 'zuckDpe2h',
+ title: DEMO_TITLE_ZUCK_2HOURS,
+ json: DEMO_TRANSCRIPT_ZUCK_2HOURS_DPE,
+ url: DEMO_MEDIA_URL_ZUCK_5HOURS,
+ type: 'digitalpaperedit'
+ },
+]
import style from "./index.module.scss";
@@ -36,19 +87,29 @@ class App extends React.Component {
autoSaveData: {},
autoSaveContentType: "draftjs",
autoSaveExtension: "json",
- useLocalStorage: true
+ useLocalStorage: false,
+ isAutoSave: false
};
this.transcriptEditorRef = React.createRef();
}
- loadDemo = () => {
+ loadDemo = (demoId) => {
+ const demo = DEMOS.find((d)=>{
+ return d.id === demoId;
+ })
+ const DEMO_TRANSCRIPT = demo.json;
+ const DEMO_MEDIA_URL = demo.url;
+ const DEMO_TITLE = demo.title;
+ const DEMO_TYPE = demo.type
+
if(this.state.useLocalStorage && isPresentInLocalStorage(DEMO_MEDIA_URL)){
const transcriptDataFromLocalStorage = loadLocalSavedData(DEMO_MEDIA_URL)
this.setState({
transcriptData: transcriptDataFromLocalStorage,
mediaUrl: DEMO_MEDIA_URL,
title: DEMO_TITLE,
+ // if loading from local storage, always saved in draftJS format
sttType: 'draftjs'
});
}
@@ -57,7 +118,7 @@ class App extends React.Component {
transcriptData: DEMO_TRANSCRIPT,
mediaUrl: DEMO_MEDIA_URL,
title: DEMO_TITLE,
- sttType: "bbckaldi"
+ sttType: DEMO_TYPE
});
}
};
@@ -125,12 +186,10 @@ class App extends React.Component {
};
handleExportFormatChange = event => {
- console.log(event.target.name, event.target.value);
this.setState({ [event.target.name]: event.target.value });
};
exportTranscript = () => {
- console.log("export");
// eslint-disable-next-line react/no-string-refs
const { data, ext } = this.transcriptEditorRef.current.getEditorContent(
this.state.exportFormat
@@ -146,7 +205,6 @@ class App extends React.Component {
// https://stackoverflow.com/questions/2897619/using-html5-javascript-to-generate-and-save-a-file
download = (content, filename, contentType) => {
- console.log("download");
const type = contentType || "application/octet-stream";
const link = document.createElement("a");
const blob = new Blob([content], { type: type });
@@ -180,7 +238,6 @@ class App extends React.Component {
};
handleAutoSaveChanges = newAutoSaveData => {
- console.log("handleAutoSaveChanges", newAutoSaveData);
const { data, ext } = newAutoSaveData;
this.setState({ autoSaveData: data, autoSaveExtension: ext });
// Saving to local storage
@@ -193,7 +250,12 @@ class App extends React.Component {
this.setState((prevState)=>{
return {useLocalStorage: !prevState.useLocalStorage}
}, ()=>{
- console.log('this.state.useLocalStorage',this.state.useLocalStorage)
+ // console.log('this.state.useLocalStorage',this.state.useLocalStorage)
+ })
+ }
+ handleIsAutoSave = (e) =>{
+ this.setState({
+ isAutoSave: e.target.checked
})
}
render() {
@@ -209,12 +271,36 @@ class App extends React.Component {
- Start
+ Demos
+ this.loadDemo('kate')}
+ >
+ Kate TedTalk 12Min
+
+ this.loadDemo('zuckDraftJs2h')}
+ >
+ Zuck 2h DraftJS
+
this.loadDemo()}
+ onClick={() => this.loadDemo('zuckDpe2h')}
>
- Load Demo
+ Zuck 2h DPE
+
+ this.loadDemo('zuckDraftJs5h')}
+ >
+ Zuck 5h DraftJS
+
+ this.loadDemo('zuckDpe5h')}
+ >
+ Zuck 5h DPE
@@ -325,6 +411,21 @@ class App extends React.Component {
/>
+
+
+ Auto Save
+
+
+
+
this.clearLocalStorage()}
@@ -347,6 +448,9 @@ class App extends React.Component {
handleAutoSaveChanges={this.handleAutoSaveChanges}
autoSaveContentType={this.state.autoSaveContentType}
mediaType={ 'video' }
+ // showTimecodes={true}
+ // showSpeakers={true}
+ isAutoSave={this.state.isAutoSave}
/>
@@ -367,10 +471,8 @@ class App extends React.Component {
diff --git a/demo/local-storage.js b/demo/local-storage.js
index ed843183..4299e66e 100644
--- a/demo/local-storage.js
+++ b/demo/local-storage.js
@@ -6,8 +6,14 @@ const localSave = (mediaUrl, fileName, data) => {
if (mediaUrlName.includes('blob')) {
mediaUrlName = fileName;
}
-
- localStorage.setItem(`draftJs-${ mediaUrlName }`, JSON.stringify(data));
+ try {
+ localStorage.setItem(`draftJs-${ mediaUrlName }`, JSON.stringify(data));
+ }
+ catch(e){
+ // eg a 5 hour transcript, you might exceed local storage space
+ console.error(e)
+ alert('Could not save in local storage')
+ }
};
// eslint-disable-next-line class-methods-use-this
@@ -34,7 +40,7 @@ const loadLocalSavedData = (mediaUrl, fileName) => {
if (mediaUrl.includes('blob')) {
mediaUrlName = fileName;
}
- const data = JSON.parse(localStorage.getItem(`draftJs-${ mediaUrlName }`));
+ const { data } = JSON.parse(localStorage.getItem(`draftJs-${ mediaUrlName }`));
return data;
};
diff --git a/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.dpe-2hours.json b/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.dpe-2hours.json
new file mode 100644
index 00000000..46bf186c
--- /dev/null
+++ b/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.dpe-2hours.json
@@ -0,0 +1,94440 @@
+{
+ "words": [
+ {
+ "id": 0,
+ "start": 0,
+ "end": 0.28,
+ "text": "Yeah,"
+ },
+ {
+ "id": 1,
+ "start": 0.28,
+ "end": 27.44,
+ "text": "I"
+ },
+ {
+ "id": 2,
+ "start": 27.44,
+ "end": 32.04,
+ "text": "I"
+ },
+ {
+ "id": 3,
+ "start": 32.04,
+ "end": 33,
+ "text": "don't"
+ },
+ {
+ "id": 4,
+ "start": 33,
+ "end": 71.08,
+ "text": "know"
+ },
+ {
+ "id": 5,
+ "start": 71.08,
+ "end": 228.02,
+ "text": "the."
+ },
+ {
+ "id": 6,
+ "start": 228.02,
+ "end": 299.24,
+ "text": "Yeah,"
+ },
+ {
+ "id": 7,
+ "start": 299.24,
+ "end": 300.28,
+ "text": "that"
+ },
+ {
+ "id": 8,
+ "start": 300.28,
+ "end": 320.68,
+ "text": "it."
+ },
+ {
+ "id": 9,
+ "start": 320.68,
+ "end": 340.96,
+ "text": "No,"
+ },
+ {
+ "id": 10,
+ "start": 340.96,
+ "end": 341.46,
+ "text": "I"
+ },
+ {
+ "id": 11,
+ "start": 341.46,
+ "end": 342.66,
+ "text": "I,"
+ },
+ {
+ "id": 12,
+ "start": 342.66,
+ "end": 361.68,
+ "text": "like,"
+ },
+ {
+ "id": 13,
+ "start": 361.68,
+ "end": 367.24,
+ "text": "I"
+ },
+ {
+ "id": 14,
+ "start": 367.24,
+ "end": 434.04,
+ "text": "know."
+ },
+ {
+ "id": 15,
+ "start": 434.04,
+ "end": 487.98,
+ "text": "So"
+ },
+ {
+ "id": 16,
+ "start": 487.98,
+ "end": 496.8,
+ "text": "to"
+ },
+ {
+ "id": 17,
+ "start": 496.8,
+ "end": 496.96,
+ "text": "make"
+ },
+ {
+ "id": 18,
+ "start": 496.96,
+ "end": 497.12,
+ "text": "sure"
+ },
+ {
+ "id": 19,
+ "start": 497.12,
+ "end": 497.32,
+ "text": "once"
+ },
+ {
+ "id": 20,
+ "start": 497.32,
+ "end": 497.46,
+ "text": "we"
+ },
+ {
+ "id": 21,
+ "start": 497.46,
+ "end": 497.62,
+ "text": "get"
+ },
+ {
+ "id": 22,
+ "start": 497.62,
+ "end": 498.1,
+ "text": "started"
+ },
+ {
+ "id": 23,
+ "start": 498.1,
+ "end": 750.28,
+ "text": "down,"
+ },
+ {
+ "id": 24,
+ "start": 750.28,
+ "end": 751.24,
+ "text": "thank"
+ },
+ {
+ "id": 25,
+ "start": 751.24,
+ "end": 751.4,
+ "text": "you"
+ },
+ {
+ "id": 26,
+ "start": 751.4,
+ "end": 801.26,
+ "text": "for."
+ },
+ {
+ "id": 27,
+ "start": 801.26,
+ "end": 806.54,
+ "text": "So"
+ },
+ {
+ "id": 28,
+ "start": 806.54,
+ "end": 925.4,
+ "text": "I"
+ },
+ {
+ "id": 29,
+ "start": 925.4,
+ "end": 1191.86,
+ "text": "thank"
+ },
+ {
+ "id": 30,
+ "start": 1191.86,
+ "end": 1193.06,
+ "text": "on"
+ },
+ {
+ "id": 31,
+ "start": 1193.06,
+ "end": 1193.22,
+ "text": "the"
+ },
+ {
+ "id": 32,
+ "start": 1193.22,
+ "end": 1193.82,
+ "text": "judiciary"
+ },
+ {
+ "id": 33,
+ "start": 1193.82,
+ "end": 1194.16,
+ "text": "and"
+ },
+ {
+ "id": 34,
+ "start": 1194.16,
+ "end": 1194.64,
+ "text": "commerce."
+ },
+ {
+ "id": 35,
+ "start": 1194.64,
+ "end": 1195.12,
+ "text": "Science"
+ },
+ {
+ "id": 36,
+ "start": 1195.12,
+ "end": 1195.28,
+ "text": "and"
+ },
+ {
+ "id": 37,
+ "start": 1195.28,
+ "end": 1196.2,
+ "text": "transportation"
+ },
+ {
+ "id": 38,
+ "start": 1196.2,
+ "end": 1196.9,
+ "text": "will"
+ },
+ {
+ "id": 39,
+ "start": 1196.9,
+ "end": 1197.08,
+ "text": "come"
+ },
+ {
+ "id": 40,
+ "start": 1197.08,
+ "end": 1197.18,
+ "text": "to"
+ },
+ {
+ "id": 41,
+ "start": 1197.18,
+ "end": 1198.16,
+ "text": "order."
+ },
+ {
+ "id": 42,
+ "start": 1198.16,
+ "end": 1198.82,
+ "text": "We"
+ },
+ {
+ "id": 43,
+ "start": 1198.82,
+ "end": 1199.38,
+ "text": "welcome"
+ },
+ {
+ "id": 44,
+ "start": 1199.38,
+ "end": 1199.94,
+ "text": "everyone"
+ },
+ {
+ "id": 45,
+ "start": 1199.94,
+ "end": 1200.56,
+ "text": "today's"
+ },
+ {
+ "id": 46,
+ "start": 1200.56,
+ "end": 1201.62,
+ "text": "hearing"
+ },
+ {
+ "id": 47,
+ "start": 1201.62,
+ "end": 1202.42,
+ "text": "on"
+ },
+ {
+ "id": 48,
+ "start": 1202.42,
+ "end": 1203,
+ "text": "Facebook,"
+ },
+ {
+ "id": 49,
+ "start": 1203,
+ "end": 1204.16,
+ "text": "social"
+ },
+ {
+ "id": 50,
+ "start": 1204.16,
+ "end": 1204.62,
+ "text": "media"
+ },
+ {
+ "id": 51,
+ "start": 1204.62,
+ "end": 1205.18,
+ "text": "privacy"
+ },
+ {
+ "id": 52,
+ "start": 1205.18,
+ "end": 1206.24,
+ "text": "and"
+ },
+ {
+ "id": 53,
+ "start": 1206.24,
+ "end": 1206.42,
+ "text": "the"
+ },
+ {
+ "id": 54,
+ "start": 1206.42,
+ "end": 1206.74,
+ "text": "use"
+ },
+ {
+ "id": 55,
+ "start": 1206.74,
+ "end": 1207.32,
+ "text": "and"
+ },
+ {
+ "id": 56,
+ "start": 1207.32,
+ "end": 1208.34,
+ "text": "abuse"
+ },
+ {
+ "id": 57,
+ "start": 1208.34,
+ "end": 1208.66,
+ "text": "of"
+ },
+ {
+ "id": 58,
+ "start": 1208.66,
+ "end": 1209.74,
+ "text": "data,"
+ },
+ {
+ "id": 59,
+ "start": 1209.74,
+ "end": 1210.66,
+ "text": "although"
+ },
+ {
+ "id": 60,
+ "start": 1210.66,
+ "end": 1210.92,
+ "text": "not"
+ },
+ {
+ "id": 61,
+ "start": 1210.92,
+ "end": 1211.92,
+ "text": "unprecedented."
+ },
+ {
+ "id": 62,
+ "start": 1211.92,
+ "end": 1213,
+ "text": "This"
+ },
+ {
+ "id": 63,
+ "start": 1213,
+ "end": 1213.2,
+ "text": "is"
+ },
+ {
+ "id": 64,
+ "start": 1213.2,
+ "end": 1213.26,
+ "text": "a"
+ },
+ {
+ "id": 65,
+ "start": 1213.26,
+ "end": 1213.72,
+ "text": "unique"
+ },
+ {
+ "id": 66,
+ "start": 1213.72,
+ "end": 1214.38,
+ "text": "are"
+ },
+ {
+ "id": 67,
+ "start": 1214.38,
+ "end": 1215.4,
+ "text": "the"
+ },
+ {
+ "id": 68,
+ "start": 1215.4,
+ "end": 1215.92,
+ "text": "issues."
+ },
+ {
+ "id": 69,
+ "start": 1215.92,
+ "end": 1216.68,
+ "text": "We"
+ },
+ {
+ "id": 70,
+ "start": 1216.68,
+ "end": 1216.94,
+ "text": "will"
+ },
+ {
+ "id": 71,
+ "start": 1216.94,
+ "end": 1217.54,
+ "text": "consider"
+ },
+ {
+ "id": 72,
+ "start": 1217.54,
+ "end": 1218.64,
+ "text": "range"
+ },
+ {
+ "id": 73,
+ "start": 1218.64,
+ "end": 1218.92,
+ "text": "from"
+ },
+ {
+ "id": 74,
+ "start": 1218.92,
+ "end": 1219.28,
+ "text": "data"
+ },
+ {
+ "id": 75,
+ "start": 1219.28,
+ "end": 1220.55,
+ "text": "privacy"
+ },
+ {
+ "id": 76,
+ "start": 1220.55,
+ "end": 1220.69,
+ "text": "and"
+ },
+ {
+ "id": 77,
+ "start": 1220.69,
+ "end": 1221.29,
+ "text": "security"
+ },
+ {
+ "id": 78,
+ "start": 1221.29,
+ "end": 1222.29,
+ "text": "to"
+ },
+ {
+ "id": 79,
+ "start": 1222.29,
+ "end": 1222.87,
+ "text": "consumer"
+ },
+ {
+ "id": 80,
+ "start": 1222.87,
+ "end": 1223.49,
+ "text": "protection"
+ },
+ {
+ "id": 81,
+ "start": 1223.49,
+ "end": 1224.25,
+ "text": "and"
+ },
+ {
+ "id": 82,
+ "start": 1224.25,
+ "end": 1224.37,
+ "text": "the"
+ },
+ {
+ "id": 83,
+ "start": 1224.37,
+ "end": 1224.65,
+ "text": "Federal"
+ },
+ {
+ "id": 84,
+ "start": 1224.65,
+ "end": 1224.95,
+ "text": "Trade"
+ },
+ {
+ "id": 85,
+ "start": 1224.95,
+ "end": 1225.43,
+ "text": "Commission"
+ },
+ {
+ "id": 86,
+ "start": 1225.43,
+ "end": 1226.17,
+ "text": "enforcement"
+ },
+ {
+ "id": 87,
+ "start": 1226.17,
+ "end": 1227.31,
+ "text": "touching"
+ },
+ {
+ "id": 88,
+ "start": 1227.31,
+ "end": 1227.53,
+ "text": "on"
+ },
+ {
+ "id": 89,
+ "start": 1227.53,
+ "end": 1228.43,
+ "text": "jurisdictions"
+ },
+ {
+ "id": 90,
+ "start": 1228.43,
+ "end": 1229.35,
+ "text": "of"
+ },
+ {
+ "id": 91,
+ "start": 1229.35,
+ "end": 1229.63,
+ "text": "these"
+ },
+ {
+ "id": 92,
+ "start": 1229.63,
+ "end": 1229.91,
+ "text": "two"
+ },
+ {
+ "id": 93,
+ "start": 1229.91,
+ "end": 1231.36,
+ "text": "committees,"
+ },
+ {
+ "id": 94,
+ "start": 1231.36,
+ "end": 1232.34,
+ "text": "we"
+ },
+ {
+ "id": 95,
+ "start": 1232.34,
+ "end": 1232.66,
+ "text": "have"
+ },
+ {
+ "id": 96,
+ "start": 1232.66,
+ "end": 1233.24,
+ "text": "44"
+ },
+ {
+ "id": 97,
+ "start": 1233.24,
+ "end": 1233.88,
+ "text": "members"
+ },
+ {
+ "id": 98,
+ "start": 1233.88,
+ "end": 1234.4,
+ "text": "between"
+ },
+ {
+ "id": 99,
+ "start": 1234.4,
+ "end": 1234.58,
+ "text": "our"
+ },
+ {
+ "id": 100,
+ "start": 1234.58,
+ "end": 1234.76,
+ "text": "two"
+ },
+ {
+ "id": 101,
+ "start": 1234.76,
+ "end": 1235.46,
+ "text": "committees"
+ },
+ {
+ "id": 102,
+ "start": 1235.46,
+ "end": 1236.44,
+ "text": "that"
+ },
+ {
+ "id": 103,
+ "start": 1236.44,
+ "end": 1236.68,
+ "text": "may"
+ },
+ {
+ "id": 104,
+ "start": 1236.68,
+ "end": 1236.88,
+ "text": "not"
+ },
+ {
+ "id": 105,
+ "start": 1236.88,
+ "end": 1237.84,
+ "text": "seem"
+ },
+ {
+ "id": 106,
+ "start": 1237.84,
+ "end": 1238.1,
+ "text": "like"
+ },
+ {
+ "id": 107,
+ "start": 1238.1,
+ "end": 1238.14,
+ "text": "a"
+ },
+ {
+ "id": 108,
+ "start": 1238.14,
+ "end": 1238.66,
+ "text": "large"
+ },
+ {
+ "id": 109,
+ "start": 1238.66,
+ "end": 1239.04,
+ "text": "group"
+ },
+ {
+ "id": 110,
+ "start": 1239.04,
+ "end": 1239.3,
+ "text": "by"
+ },
+ {
+ "id": 111,
+ "start": 1239.3,
+ "end": 1240.06,
+ "text": "Facebook"
+ },
+ {
+ "id": 112,
+ "start": 1240.06,
+ "end": 1240.68,
+ "text": "standards."
+ },
+ {
+ "id": 113,
+ "start": 1240.68,
+ "end": 1241.62,
+ "text": "But"
+ },
+ {
+ "id": 114,
+ "start": 1241.62,
+ "end": 1241.74,
+ "text": "it"
+ },
+ {
+ "id": 115,
+ "start": 1241.74,
+ "end": 1241.94,
+ "text": "is"
+ },
+ {
+ "id": 116,
+ "start": 1241.94,
+ "end": 1242.68,
+ "text": "significant"
+ },
+ {
+ "id": 117,
+ "start": 1242.68,
+ "end": 1243.04,
+ "text": "here"
+ },
+ {
+ "id": 118,
+ "start": 1243.04,
+ "end": 1244.02,
+ "text": "for"
+ },
+ {
+ "id": 119,
+ "start": 1244.02,
+ "end": 1244.08,
+ "text": "a"
+ },
+ {
+ "id": 120,
+ "start": 1244.08,
+ "end": 1244.42,
+ "text": "hearing"
+ },
+ {
+ "id": 121,
+ "start": 1244.42,
+ "end": 1244.58,
+ "text": "in"
+ },
+ {
+ "id": 122,
+ "start": 1244.58,
+ "end": 1244.7,
+ "text": "the"
+ },
+ {
+ "id": 123,
+ "start": 1244.7,
+ "end": 1244.96,
+ "text": "United"
+ },
+ {
+ "id": 124,
+ "start": 1244.96,
+ "end": 1245.26,
+ "text": "States"
+ },
+ {
+ "id": 125,
+ "start": 1245.26,
+ "end": 1246.12,
+ "text": "Senate."
+ },
+ {
+ "id": 126,
+ "start": 1246.12,
+ "end": 1246.62,
+ "text": "We"
+ },
+ {
+ "id": 127,
+ "start": 1246.62,
+ "end": 1246.96,
+ "text": "will"
+ },
+ {
+ "id": 128,
+ "start": 1246.96,
+ "end": 1247.06,
+ "text": "do"
+ },
+ {
+ "id": 129,
+ "start": 1247.06,
+ "end": 1247.3,
+ "text": "our"
+ },
+ {
+ "id": 130,
+ "start": 1247.3,
+ "end": 1247.58,
+ "text": "best"
+ },
+ {
+ "id": 131,
+ "start": 1247.58,
+ "end": 1247.86,
+ "text": "to"
+ },
+ {
+ "id": 132,
+ "start": 1247.86,
+ "end": 1248.1,
+ "text": "keep"
+ },
+ {
+ "id": 133,
+ "start": 1248.1,
+ "end": 1248.38,
+ "text": "things"
+ },
+ {
+ "id": 134,
+ "start": 1248.38,
+ "end": 1248.78,
+ "text": "moving"
+ },
+ {
+ "id": 135,
+ "start": 1248.78,
+ "end": 1249.4,
+ "text": "efficiently,"
+ },
+ {
+ "id": 136,
+ "start": 1249.4,
+ "end": 1250.2,
+ "text": "given"
+ },
+ {
+ "id": 137,
+ "start": 1250.2,
+ "end": 1250.38,
+ "text": "our"
+ },
+ {
+ "id": 138,
+ "start": 1250.38,
+ "end": 1251.2,
+ "text": "circumstances."
+ },
+ {
+ "id": 139,
+ "start": 1251.2,
+ "end": 1252.12,
+ "text": "We"
+ },
+ {
+ "id": 140,
+ "start": 1252.12,
+ "end": 1252.4,
+ "text": "will"
+ },
+ {
+ "id": 141,
+ "start": 1252.4,
+ "end": 1252.78,
+ "text": "begin"
+ },
+ {
+ "id": 142,
+ "start": 1252.78,
+ "end": 1253.14,
+ "text": "with"
+ },
+ {
+ "id": 143,
+ "start": 1253.14,
+ "end": 1253.68,
+ "text": "opening"
+ },
+ {
+ "id": 144,
+ "start": 1253.68,
+ "end": 1254.2,
+ "text": "statements"
+ },
+ {
+ "id": 145,
+ "start": 1254.2,
+ "end": 1254.72,
+ "text": "from"
+ },
+ {
+ "id": 146,
+ "start": 1254.72,
+ "end": 1254.88,
+ "text": "the"
+ },
+ {
+ "id": 147,
+ "start": 1254.88,
+ "end": 1255.32,
+ "text": "chairman"
+ },
+ {
+ "id": 148,
+ "start": 1255.32,
+ "end": 1255.66,
+ "text": "and"
+ },
+ {
+ "id": 149,
+ "start": 1255.66,
+ "end": 1256.06,
+ "text": "ranking"
+ },
+ {
+ "id": 150,
+ "start": 1256.06,
+ "end": 1256.48,
+ "text": "members"
+ },
+ {
+ "id": 151,
+ "start": 1256.48,
+ "end": 1256.64,
+ "text": "of"
+ },
+ {
+ "id": 152,
+ "start": 1256.64,
+ "end": 1256.88,
+ "text": "each"
+ },
+ {
+ "id": 153,
+ "start": 1256.88,
+ "end": 1257.34,
+ "text": "committee."
+ },
+ {
+ "id": 154,
+ "start": 1257.34,
+ "end": 1258.36,
+ "text": "Starting"
+ },
+ {
+ "id": 155,
+ "start": 1258.36,
+ "end": 1258.58,
+ "text": "with"
+ },
+ {
+ "id": 156,
+ "start": 1258.58,
+ "end": 1259.04,
+ "text": "Chairman"
+ },
+ {
+ "id": 157,
+ "start": 1259.04,
+ "end": 1260.2,
+ "text": "tone"
+ },
+ {
+ "id": 158,
+ "start": 1260.2,
+ "end": 1260.94,
+ "text": "and"
+ },
+ {
+ "id": 159,
+ "start": 1260.94,
+ "end": 1261.14,
+ "text": "then"
+ },
+ {
+ "id": 160,
+ "start": 1261.14,
+ "end": 1261.8,
+ "text": "proceed"
+ },
+ {
+ "id": 161,
+ "start": 1261.8,
+ "end": 1262.82,
+ "text": "with"
+ },
+ {
+ "id": 162,
+ "start": 1262.82,
+ "end": 1263.2,
+ "text": "Mr"
+ },
+ {
+ "id": 163,
+ "start": 1263.2,
+ "end": 1264.24,
+ "text": "Zuckerberg's"
+ },
+ {
+ "id": 164,
+ "start": 1264.24,
+ "end": 1265.28,
+ "text": "opening"
+ },
+ {
+ "id": 165,
+ "start": 1265.28,
+ "end": 1266.34,
+ "text": "statement."
+ },
+ {
+ "id": 166,
+ "start": 1266.34,
+ "end": 1267.38,
+ "text": "We"
+ },
+ {
+ "id": 167,
+ "start": 1267.38,
+ "end": 1267.58,
+ "text": "will"
+ },
+ {
+ "id": 168,
+ "start": 1267.58,
+ "end": 1267.84,
+ "text": "then"
+ },
+ {
+ "id": 169,
+ "start": 1267.84,
+ "end": 1268.22,
+ "text": "move"
+ },
+ {
+ "id": 170,
+ "start": 1268.22,
+ "end": 1268.7,
+ "text": "on"
+ },
+ {
+ "id": 171,
+ "start": 1268.7,
+ "end": 1268.88,
+ "text": "to"
+ },
+ {
+ "id": 172,
+ "start": 1268.88,
+ "end": 1269.66,
+ "text": "questioning"
+ },
+ {
+ "id": 173,
+ "start": 1269.66,
+ "end": 1270.66,
+ "text": "each"
+ },
+ {
+ "id": 174,
+ "start": 1270.66,
+ "end": 1271.04,
+ "text": "member"
+ },
+ {
+ "id": 175,
+ "start": 1271.04,
+ "end": 1271.3,
+ "text": "will"
+ },
+ {
+ "id": 176,
+ "start": 1271.3,
+ "end": 1271.5,
+ "text": "have"
+ },
+ {
+ "id": 177,
+ "start": 1271.5,
+ "end": 1271.78,
+ "text": "five"
+ },
+ {
+ "id": 178,
+ "start": 1271.78,
+ "end": 1272.12,
+ "text": "minutes"
+ },
+ {
+ "id": 179,
+ "start": 1272.12,
+ "end": 1272.26,
+ "text": "to"
+ },
+ {
+ "id": 180,
+ "start": 1272.26,
+ "end": 1272.92,
+ "text": "question."
+ },
+ {
+ "id": 181,
+ "start": 1272.92,
+ "end": 1274.28,
+ "text": "Witnesses"
+ },
+ {
+ "id": 182,
+ "start": 1274.28,
+ "end": 1275.22,
+ "text": "I'd"
+ },
+ {
+ "id": 183,
+ "start": 1275.22,
+ "end": 1275.4,
+ "text": "like"
+ },
+ {
+ "id": 184,
+ "start": 1275.4,
+ "end": 1275.48,
+ "text": "to"
+ },
+ {
+ "id": 185,
+ "start": 1275.48,
+ "end": 1276,
+ "text": "remind"
+ },
+ {
+ "id": 186,
+ "start": 1276,
+ "end": 1276.58,
+ "text": "the"
+ },
+ {
+ "id": 187,
+ "start": 1276.58,
+ "end": 1277.02,
+ "text": "members"
+ },
+ {
+ "id": 188,
+ "start": 1277.02,
+ "end": 1277.22,
+ "text": "of"
+ },
+ {
+ "id": 189,
+ "start": 1277.22,
+ "end": 1277.46,
+ "text": "both"
+ },
+ {
+ "id": 190,
+ "start": 1277.46,
+ "end": 1279.14,
+ "text": "committees"
+ },
+ {
+ "id": 191,
+ "start": 1279.14,
+ "end": 1280.16,
+ "text": "that"
+ },
+ {
+ "id": 192,
+ "start": 1280.16,
+ "end": 1280.48,
+ "text": "time"
+ },
+ {
+ "id": 193,
+ "start": 1280.48,
+ "end": 1280.84,
+ "text": "limits"
+ },
+ {
+ "id": 194,
+ "start": 1280.84,
+ "end": 1281.12,
+ "text": "will"
+ },
+ {
+ "id": 195,
+ "start": 1281.12,
+ "end": 1281.24,
+ "text": "be"
+ },
+ {
+ "id": 196,
+ "start": 1281.24,
+ "end": 1282.02,
+ "text": "and"
+ },
+ {
+ "id": 197,
+ "start": 1282.02,
+ "end": 1282.32,
+ "text": "must"
+ },
+ {
+ "id": 198,
+ "start": 1282.32,
+ "end": 1282.52,
+ "text": "be"
+ },
+ {
+ "id": 199,
+ "start": 1282.52,
+ "end": 1283.04,
+ "text": "strictly"
+ },
+ {
+ "id": 200,
+ "start": 1283.04,
+ "end": 1283.56,
+ "text": "enforced"
+ },
+ {
+ "id": 201,
+ "start": 1283.56,
+ "end": 1283.92,
+ "text": "given"
+ },
+ {
+ "id": 202,
+ "start": 1283.92,
+ "end": 1284.04,
+ "text": "the"
+ },
+ {
+ "id": 203,
+ "start": 1284.04,
+ "end": 1284.56,
+ "text": "numbers"
+ },
+ {
+ "id": 204,
+ "start": 1284.56,
+ "end": 1285.4,
+ "text": "that"
+ },
+ {
+ "id": 205,
+ "start": 1285.4,
+ "end": 1285.56,
+ "text": "we"
+ },
+ {
+ "id": 206,
+ "start": 1285.56,
+ "end": 1285.76,
+ "text": "have"
+ },
+ {
+ "id": 207,
+ "start": 1285.76,
+ "end": 1286.02,
+ "text": "here"
+ },
+ {
+ "id": 208,
+ "start": 1286.02,
+ "end": 1287.18,
+ "text": "today"
+ },
+ {
+ "id": 209,
+ "start": 1287.18,
+ "end": 1288,
+ "text": "if"
+ },
+ {
+ "id": 210,
+ "start": 1288,
+ "end": 1288.24,
+ "text": "you're"
+ },
+ {
+ "id": 211,
+ "start": 1288.24,
+ "end": 1288.46,
+ "text": "over"
+ },
+ {
+ "id": 212,
+ "start": 1288.46,
+ "end": 1288.68,
+ "text": "your"
+ },
+ {
+ "id": 213,
+ "start": 1288.68,
+ "end": 1289.16,
+ "text": "time"
+ },
+ {
+ "id": 214,
+ "start": 1289.16,
+ "end": 1290.06,
+ "text": "chairman"
+ },
+ {
+ "id": 215,
+ "start": 1290.06,
+ "end": 1290.4,
+ "text": "tone"
+ },
+ {
+ "id": 216,
+ "start": 1290.4,
+ "end": 1290.54,
+ "text": "and"
+ },
+ {
+ "id": 217,
+ "start": 1290.54,
+ "end": 1290.74,
+ "text": "I"
+ },
+ {
+ "id": 218,
+ "start": 1290.74,
+ "end": 1290.98,
+ "text": "will"
+ },
+ {
+ "id": 219,
+ "start": 1290.98,
+ "end": 1291.16,
+ "text": "make"
+ },
+ {
+ "id": 220,
+ "start": 1291.16,
+ "end": 1291.5,
+ "text": "sure"
+ },
+ {
+ "id": 221,
+ "start": 1291.5,
+ "end": 1291.66,
+ "text": "to"
+ },
+ {
+ "id": 222,
+ "start": 1291.66,
+ "end": 1291.9,
+ "text": "let"
+ },
+ {
+ "id": 223,
+ "start": 1291.9,
+ "end": 1292.06,
+ "text": "you"
+ },
+ {
+ "id": 224,
+ "start": 1292.06,
+ "end": 1292.52,
+ "text": "know."
+ },
+ {
+ "id": 225,
+ "start": 1292.52,
+ "end": 1293.5,
+ "text": "There"
+ },
+ {
+ "id": 226,
+ "start": 1293.5,
+ "end": 1293.7,
+ "text": "will"
+ },
+ {
+ "id": 227,
+ "start": 1293.7,
+ "end": 1293.9,
+ "text": "not"
+ },
+ {
+ "id": 228,
+ "start": 1293.9,
+ "end": 1294.08,
+ "text": "be"
+ },
+ {
+ "id": 229,
+ "start": 1294.08,
+ "end": 1294.16,
+ "text": "a"
+ },
+ {
+ "id": 230,
+ "start": 1294.16,
+ "end": 1294.58,
+ "text": "second"
+ },
+ {
+ "id": 231,
+ "start": 1294.58,
+ "end": 1294.94,
+ "text": "round"
+ },
+ {
+ "id": 232,
+ "start": 1294.94,
+ "end": 1295.12,
+ "text": "as"
+ },
+ {
+ "id": 233,
+ "start": 1295.12,
+ "end": 1295.46,
+ "text": "well,"
+ },
+ {
+ "id": 234,
+ "start": 1295.46,
+ "end": 1296.44,
+ "text": "of"
+ },
+ {
+ "id": 235,
+ "start": 1296.44,
+ "end": 1296.76,
+ "text": "course,"
+ },
+ {
+ "id": 236,
+ "start": 1296.76,
+ "end": 1296.98,
+ "text": "there"
+ },
+ {
+ "id": 237,
+ "start": 1296.98,
+ "end": 1297.2,
+ "text": "will"
+ },
+ {
+ "id": 238,
+ "start": 1297.2,
+ "end": 1297.32,
+ "text": "be"
+ },
+ {
+ "id": 239,
+ "start": 1297.32,
+ "end": 1297.5,
+ "text": "the"
+ },
+ {
+ "id": 240,
+ "start": 1297.5,
+ "end": 1297.96,
+ "text": "usual"
+ },
+ {
+ "id": 241,
+ "start": 1297.96,
+ "end": 1298.4,
+ "text": "follow"
+ },
+ {
+ "id": 242,
+ "start": 1298.4,
+ "end": 1298.58,
+ "text": "up"
+ },
+ {
+ "id": 243,
+ "start": 1298.58,
+ "end": 1298.92,
+ "text": "written"
+ },
+ {
+ "id": 244,
+ "start": 1298.92,
+ "end": 1299.5,
+ "text": "questions"
+ },
+ {
+ "id": 245,
+ "start": 1299.5,
+ "end": 1300.18,
+ "text": "for"
+ },
+ {
+ "id": 246,
+ "start": 1300.18,
+ "end": 1300.32,
+ "text": "the"
+ },
+ {
+ "id": 247,
+ "start": 1300.32,
+ "end": 1301.2,
+ "text": "record."
+ },
+ {
+ "id": 248,
+ "start": 1301.2,
+ "end": 1302.22,
+ "text": "Questioning"
+ },
+ {
+ "id": 249,
+ "start": 1302.22,
+ "end": 1303.22,
+ "text": "will"
+ },
+ {
+ "id": 250,
+ "start": 1303.22,
+ "end": 1303.82,
+ "text": "alternate"
+ },
+ {
+ "id": 251,
+ "start": 1303.82,
+ "end": 1304.32,
+ "text": "between"
+ },
+ {
+ "id": 252,
+ "start": 1304.32,
+ "end": 1304.96,
+ "text": "majority"
+ },
+ {
+ "id": 253,
+ "start": 1304.96,
+ "end": 1305.3,
+ "text": "and"
+ },
+ {
+ "id": 254,
+ "start": 1305.3,
+ "end": 1305.92,
+ "text": "minority"
+ },
+ {
+ "id": 255,
+ "start": 1305.92,
+ "end": 1306.42,
+ "text": "and"
+ },
+ {
+ "id": 256,
+ "start": 1306.42,
+ "end": 1306.92,
+ "text": "between"
+ },
+ {
+ "id": 257,
+ "start": 1306.92,
+ "end": 1308.04,
+ "text": "committees."
+ },
+ {
+ "id": 258,
+ "start": 1308.04,
+ "end": 1308.5,
+ "text": "We"
+ },
+ {
+ "id": 259,
+ "start": 1308.5,
+ "end": 1308.88,
+ "text": "will"
+ },
+ {
+ "id": 260,
+ "start": 1308.88,
+ "end": 1309.38,
+ "text": "proceed"
+ },
+ {
+ "id": 261,
+ "start": 1309.38,
+ "end": 1309.7,
+ "text": "in"
+ },
+ {
+ "id": 262,
+ "start": 1309.7,
+ "end": 1310.08,
+ "text": "order"
+ },
+ {
+ "id": 263,
+ "start": 1310.08,
+ "end": 1310.54,
+ "text": "based"
+ },
+ {
+ "id": 264,
+ "start": 1310.54,
+ "end": 1310.78,
+ "text": "on"
+ },
+ {
+ "id": 265,
+ "start": 1310.78,
+ "end": 1311.6,
+ "text": "respective"
+ },
+ {
+ "id": 266,
+ "start": 1311.6,
+ "end": 1312.48,
+ "text": "committee"
+ },
+ {
+ "id": 267,
+ "start": 1312.48,
+ "end": 1313.86,
+ "text": "seniority,"
+ },
+ {
+ "id": 268,
+ "start": 1313.86,
+ "end": 1314.34,
+ "text": "we"
+ },
+ {
+ "id": 269,
+ "start": 1314.34,
+ "end": 1314.68,
+ "text": "will"
+ },
+ {
+ "id": 270,
+ "start": 1314.68,
+ "end": 1315.4,
+ "text": "anticipate"
+ },
+ {
+ "id": 271,
+ "start": 1315.4,
+ "end": 1315.56,
+ "text": "a"
+ },
+ {
+ "id": 272,
+ "start": 1315.56,
+ "end": 1315.9,
+ "text": "couple"
+ },
+ {
+ "id": 273,
+ "start": 1315.9,
+ "end": 1316.28,
+ "text": "short"
+ },
+ {
+ "id": 274,
+ "start": 1316.28,
+ "end": 1316.64,
+ "text": "breaks"
+ },
+ {
+ "id": 275,
+ "start": 1316.64,
+ "end": 1317.3,
+ "text": "later"
+ },
+ {
+ "id": 276,
+ "start": 1317.3,
+ "end": 1317.4,
+ "text": "in"
+ },
+ {
+ "id": 277,
+ "start": 1317.4,
+ "end": 1317.52,
+ "text": "the"
+ },
+ {
+ "id": 278,
+ "start": 1317.52,
+ "end": 1318.12,
+ "text": "afternoon."
+ },
+ {
+ "id": 279,
+ "start": 1318.12,
+ "end": 1319.16,
+ "text": "And"
+ },
+ {
+ "id": 280,
+ "start": 1319.16,
+ "end": 1319.32,
+ "text": "so"
+ },
+ {
+ "id": 281,
+ "start": 1319.32,
+ "end": 1319.52,
+ "text": "it's"
+ },
+ {
+ "id": 282,
+ "start": 1319.52,
+ "end": 1319.68,
+ "text": "my"
+ },
+ {
+ "id": 283,
+ "start": 1319.68,
+ "end": 1320.12,
+ "text": "pleasure"
+ },
+ {
+ "id": 284,
+ "start": 1320.12,
+ "end": 1320.72,
+ "text": "to"
+ },
+ {
+ "id": 285,
+ "start": 1320.72,
+ "end": 1321.32,
+ "text": "recognize"
+ },
+ {
+ "id": 286,
+ "start": 1321.32,
+ "end": 1321.52,
+ "text": "the"
+ },
+ {
+ "id": 287,
+ "start": 1321.52,
+ "end": 1321.98,
+ "text": "chairman"
+ },
+ {
+ "id": 288,
+ "start": 1321.98,
+ "end": 1322.66,
+ "text": "of"
+ },
+ {
+ "id": 289,
+ "start": 1322.66,
+ "end": 1322.82,
+ "text": "the"
+ },
+ {
+ "id": 290,
+ "start": 1322.82,
+ "end": 1323.28,
+ "text": "Commerce"
+ },
+ {
+ "id": 291,
+ "start": 1323.28,
+ "end": 1324.66,
+ "text": "Committee"
+ },
+ {
+ "id": 292,
+ "start": 1324.66,
+ "end": 1325.86,
+ "text": "chairman"
+ },
+ {
+ "id": 293,
+ "start": 1325.86,
+ "end": 1326.24,
+ "text": "tone"
+ },
+ {
+ "id": 294,
+ "start": 1326.24,
+ "end": 1326.44,
+ "text": "for"
+ },
+ {
+ "id": 295,
+ "start": 1326.44,
+ "end": 1326.68,
+ "text": "his"
+ },
+ {
+ "id": 296,
+ "start": 1326.68,
+ "end": 1327.14,
+ "text": "opening"
+ },
+ {
+ "id": 297,
+ "start": 1327.14,
+ "end": 1327.62,
+ "text": "statement."
+ },
+ {
+ "id": 298,
+ "start": 1327.62,
+ "end": 1328.64,
+ "text": "Thank"
+ },
+ {
+ "id": 299,
+ "start": 1328.64,
+ "end": 1328.74,
+ "text": "you,"
+ },
+ {
+ "id": 300,
+ "start": 1328.74,
+ "end": 1329.04,
+ "text": "chairman."
+ },
+ {
+ "id": 301,
+ "start": 1329.04,
+ "end": 1329.48,
+ "text": "Grassley"
+ },
+ {
+ "id": 302,
+ "start": 1329.48,
+ "end": 1330.62,
+ "text": "today's"
+ },
+ {
+ "id": 303,
+ "start": 1330.62,
+ "end": 1330.88,
+ "text": "hearing"
+ },
+ {
+ "id": 304,
+ "start": 1330.88,
+ "end": 1331,
+ "text": "is"
+ },
+ {
+ "id": 305,
+ "start": 1331,
+ "end": 1331.68,
+ "text": "extraordinary"
+ },
+ {
+ "id": 306,
+ "start": 1331.68,
+ "end": 1332.46,
+ "text": "it's"
+ },
+ {
+ "id": 307,
+ "start": 1332.46,
+ "end": 1333.02,
+ "text": "extraordinary"
+ },
+ {
+ "id": 308,
+ "start": 1333.02,
+ "end": 1333.14,
+ "text": "to"
+ },
+ {
+ "id": 309,
+ "start": 1333.14,
+ "end": 1333.4,
+ "text": "hold"
+ },
+ {
+ "id": 310,
+ "start": 1333.4,
+ "end": 1333.64,
+ "text": "a"
+ },
+ {
+ "id": 311,
+ "start": 1333.64,
+ "end": 1334.08,
+ "text": "joint"
+ },
+ {
+ "id": 312,
+ "start": 1334.08,
+ "end": 1334.5,
+ "text": "committee"
+ },
+ {
+ "id": 313,
+ "start": 1334.5,
+ "end": 1334.88,
+ "text": "hearing"
+ },
+ {
+ "id": 314,
+ "start": 1334.88,
+ "end": 1335.78,
+ "text": "it's"
+ },
+ {
+ "id": 315,
+ "start": 1335.78,
+ "end": 1335.98,
+ "text": "even"
+ },
+ {
+ "id": 316,
+ "start": 1335.98,
+ "end": 1336.18,
+ "text": "more"
+ },
+ {
+ "id": 317,
+ "start": 1336.18,
+ "end": 1336.92,
+ "text": "extraordinary"
+ },
+ {
+ "id": 318,
+ "start": 1336.92,
+ "end": 1337.02,
+ "text": "to"
+ },
+ {
+ "id": 319,
+ "start": 1337.02,
+ "end": 1337.28,
+ "text": "have"
+ },
+ {
+ "id": 320,
+ "start": 1337.28,
+ "end": 1337.48,
+ "text": "a"
+ },
+ {
+ "id": 321,
+ "start": 1337.48,
+ "end": 1337.98,
+ "text": "single"
+ },
+ {
+ "id": 322,
+ "start": 1337.98,
+ "end": 1338.72,
+ "text": "CEO"
+ },
+ {
+ "id": 323,
+ "start": 1338.72,
+ "end": 1339.42,
+ "text": "testify"
+ },
+ {
+ "id": 324,
+ "start": 1339.42,
+ "end": 1339.72,
+ "text": "before"
+ },
+ {
+ "id": 325,
+ "start": 1339.72,
+ "end": 1340.14,
+ "text": "nearly"
+ },
+ {
+ "id": 326,
+ "start": 1340.14,
+ "end": 1340.5,
+ "text": "half"
+ },
+ {
+ "id": 327,
+ "start": 1340.5,
+ "end": 1341.1,
+ "text": "of"
+ },
+ {
+ "id": 328,
+ "start": 1341.1,
+ "end": 1341.22,
+ "text": "the"
+ },
+ {
+ "id": 329,
+ "start": 1341.22,
+ "end": 1341.54,
+ "text": "United"
+ },
+ {
+ "id": 330,
+ "start": 1341.54,
+ "end": 1341.82,
+ "text": "States"
+ },
+ {
+ "id": 331,
+ "start": 1341.82,
+ "end": 1342.66,
+ "text": "Senate."
+ },
+ {
+ "id": 332,
+ "start": 1342.66,
+ "end": 1343.28,
+ "text": "But"
+ },
+ {
+ "id": 333,
+ "start": 1343.28,
+ "end": 1343.48,
+ "text": "then"
+ },
+ {
+ "id": 334,
+ "start": 1343.48,
+ "end": 1344.04,
+ "text": "Facebook"
+ },
+ {
+ "id": 335,
+ "start": 1344.04,
+ "end": 1344.48,
+ "text": "is"
+ },
+ {
+ "id": 336,
+ "start": 1344.48,
+ "end": 1345.02,
+ "text": "pretty"
+ },
+ {
+ "id": 337,
+ "start": 1345.02,
+ "end": 1345.6,
+ "text": "extraordinary."
+ },
+ {
+ "id": 338,
+ "start": 1345.6,
+ "end": 1346.6,
+ "text": "More"
+ },
+ {
+ "id": 339,
+ "start": 1346.6,
+ "end": 1346.74,
+ "text": "than"
+ },
+ {
+ "id": 340,
+ "start": 1346.74,
+ "end": 1347.24,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 341,
+ "start": 1347.24,
+ "end": 1347.5,
+ "text": "people"
+ },
+ {
+ "id": 342,
+ "start": 1347.5,
+ "end": 1347.78,
+ "text": "use"
+ },
+ {
+ "id": 343,
+ "start": 1347.78,
+ "end": 1348.32,
+ "text": "Facebook"
+ },
+ {
+ "id": 344,
+ "start": 1348.32,
+ "end": 1349.02,
+ "text": "every"
+ },
+ {
+ "id": 345,
+ "start": 1349.02,
+ "end": 1349.24,
+ "text": "month."
+ },
+ {
+ "id": 346,
+ "start": 1349.24,
+ "end": 1351.06,
+ "text": "1.4"
+ },
+ {
+ "id": 347,
+ "start": 1351.06,
+ "end": 1351.5,
+ "text": "billion"
+ },
+ {
+ "id": 348,
+ "start": 1351.5,
+ "end": 1351.78,
+ "text": "people"
+ },
+ {
+ "id": 349,
+ "start": 1351.78,
+ "end": 1352.04,
+ "text": "use"
+ },
+ {
+ "id": 350,
+ "start": 1352.04,
+ "end": 1352.2,
+ "text": "it"
+ },
+ {
+ "id": 351,
+ "start": 1352.2,
+ "end": 1352.88,
+ "text": "every"
+ },
+ {
+ "id": 352,
+ "start": 1352.88,
+ "end": 1353.18,
+ "text": "day."
+ },
+ {
+ "id": 353,
+ "start": 1353.18,
+ "end": 1354.24,
+ "text": "More"
+ },
+ {
+ "id": 354,
+ "start": 1354.24,
+ "end": 1354.4,
+ "text": "than"
+ },
+ {
+ "id": 355,
+ "start": 1354.4,
+ "end": 1354.52,
+ "text": "the"
+ },
+ {
+ "id": 356,
+ "start": 1354.52,
+ "end": 1355.18,
+ "text": "population"
+ },
+ {
+ "id": 357,
+ "start": 1355.18,
+ "end": 1355.32,
+ "text": "of"
+ },
+ {
+ "id": 358,
+ "start": 1355.32,
+ "end": 1355.66,
+ "text": "any"
+ },
+ {
+ "id": 359,
+ "start": 1355.66,
+ "end": 1356.16,
+ "text": "country"
+ },
+ {
+ "id": 360,
+ "start": 1356.16,
+ "end": 1356.52,
+ "text": "on"
+ },
+ {
+ "id": 361,
+ "start": 1356.52,
+ "end": 1356.86,
+ "text": "Earth,"
+ },
+ {
+ "id": 362,
+ "start": 1356.86,
+ "end": 1357.28,
+ "text": "except"
+ },
+ {
+ "id": 363,
+ "start": 1357.28,
+ "end": 1357.66,
+ "text": "China"
+ },
+ {
+ "id": 364,
+ "start": 1357.66,
+ "end": 1358.6,
+ "text": "and"
+ },
+ {
+ "id": 365,
+ "start": 1358.6,
+ "end": 1358.76,
+ "text": "more"
+ },
+ {
+ "id": 366,
+ "start": 1358.76,
+ "end": 1358.9,
+ "text": "than"
+ },
+ {
+ "id": 367,
+ "start": 1358.9,
+ "end": 1359.1,
+ "text": "four"
+ },
+ {
+ "id": 368,
+ "start": 1359.1,
+ "end": 1359.36,
+ "text": "times"
+ },
+ {
+ "id": 369,
+ "start": 1359.36,
+ "end": 1359.5,
+ "text": "the"
+ },
+ {
+ "id": 370,
+ "start": 1359.5,
+ "end": 1360.06,
+ "text": "population"
+ },
+ {
+ "id": 371,
+ "start": 1360.06,
+ "end": 1360.14,
+ "text": "of"
+ },
+ {
+ "id": 372,
+ "start": 1360.14,
+ "end": 1360.24,
+ "text": "the"
+ },
+ {
+ "id": 373,
+ "start": 1360.24,
+ "end": 1360.52,
+ "text": "United"
+ },
+ {
+ "id": 374,
+ "start": 1360.52,
+ "end": 1361.38,
+ "text": "States"
+ },
+ {
+ "id": 375,
+ "start": 1361.38,
+ "end": 1362.08,
+ "text": "it's"
+ },
+ {
+ "id": 376,
+ "start": 1362.08,
+ "end": 1362.34,
+ "text": "also"
+ },
+ {
+ "id": 377,
+ "start": 1362.34,
+ "end": 1362.5,
+ "text": "more"
+ },
+ {
+ "id": 378,
+ "start": 1362.5,
+ "end": 1362.66,
+ "text": "than"
+ },
+ {
+ "id": 379,
+ "start": 1362.66,
+ "end": 1363.56,
+ "text": "1,500"
+ },
+ {
+ "id": 380,
+ "start": 1363.56,
+ "end": 1364.14,
+ "text": "times"
+ },
+ {
+ "id": 381,
+ "start": 1364.14,
+ "end": 1364.28,
+ "text": "the"
+ },
+ {
+ "id": 382,
+ "start": 1364.28,
+ "end": 1364.92,
+ "text": "population"
+ },
+ {
+ "id": 383,
+ "start": 1364.92,
+ "end": 1365.5,
+ "text": "of"
+ },
+ {
+ "id": 384,
+ "start": 1365.5,
+ "end": 1365.68,
+ "text": "my"
+ },
+ {
+ "id": 385,
+ "start": 1365.68,
+ "end": 1365.88,
+ "text": "home"
+ },
+ {
+ "id": 386,
+ "start": 1365.88,
+ "end": 1366.1,
+ "text": "state"
+ },
+ {
+ "id": 387,
+ "start": 1366.1,
+ "end": 1366.18,
+ "text": "of"
+ },
+ {
+ "id": 388,
+ "start": 1366.18,
+ "end": 1366.44,
+ "text": "South"
+ },
+ {
+ "id": 389,
+ "start": 1366.44,
+ "end": 1367.42,
+ "text": "Dakota."
+ },
+ {
+ "id": 390,
+ "start": 1367.42,
+ "end": 1368.22,
+ "text": "Plus,"
+ },
+ {
+ "id": 391,
+ "start": 1368.22,
+ "end": 1368.6,
+ "text": "roughly"
+ },
+ {
+ "id": 392,
+ "start": 1368.6,
+ "end": 1369.48,
+ "text": "45%"
+ },
+ {
+ "id": 393,
+ "start": 1369.48,
+ "end": 1369.58,
+ "text": "of"
+ },
+ {
+ "id": 394,
+ "start": 1369.58,
+ "end": 1369.96,
+ "text": "American"
+ },
+ {
+ "id": 395,
+ "start": 1369.96,
+ "end": 1370.3,
+ "text": "adults"
+ },
+ {
+ "id": 396,
+ "start": 1370.3,
+ "end": 1370.68,
+ "text": "report"
+ },
+ {
+ "id": 397,
+ "start": 1370.68,
+ "end": 1370.96,
+ "text": "getting"
+ },
+ {
+ "id": 398,
+ "start": 1370.96,
+ "end": 1371.04,
+ "text": "at"
+ },
+ {
+ "id": 399,
+ "start": 1371.04,
+ "end": 1371.22,
+ "text": "least"
+ },
+ {
+ "id": 400,
+ "start": 1371.22,
+ "end": 1371.38,
+ "text": "some"
+ },
+ {
+ "id": 401,
+ "start": 1371.38,
+ "end": 1371.48,
+ "text": "of"
+ },
+ {
+ "id": 402,
+ "start": 1371.48,
+ "end": 1371.64,
+ "text": "their"
+ },
+ {
+ "id": 403,
+ "start": 1371.64,
+ "end": 1371.88,
+ "text": "news"
+ },
+ {
+ "id": 404,
+ "start": 1371.88,
+ "end": 1372.04,
+ "text": "from"
+ },
+ {
+ "id": 405,
+ "start": 1372.04,
+ "end": 1372.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 406,
+ "start": 1372.5,
+ "end": 1373.54,
+ "text": "in"
+ },
+ {
+ "id": 407,
+ "start": 1373.54,
+ "end": 1373.76,
+ "text": "many"
+ },
+ {
+ "id": 408,
+ "start": 1373.76,
+ "end": 1374.94,
+ "text": "respects"
+ },
+ {
+ "id": 409,
+ "start": 1374.94,
+ "end": 1375.92,
+ "text": "Facebook's"
+ },
+ {
+ "id": 410,
+ "start": 1375.92,
+ "end": 1376.5,
+ "text": "incredible"
+ },
+ {
+ "id": 411,
+ "start": 1376.5,
+ "end": 1376.9,
+ "text": "reach"
+ },
+ {
+ "id": 412,
+ "start": 1376.9,
+ "end": 1377.38,
+ "text": "is"
+ },
+ {
+ "id": 413,
+ "start": 1377.38,
+ "end": 1377.56,
+ "text": "why"
+ },
+ {
+ "id": 414,
+ "start": 1377.56,
+ "end": 1377.76,
+ "text": "we're"
+ },
+ {
+ "id": 415,
+ "start": 1377.76,
+ "end": 1377.92,
+ "text": "here"
+ },
+ {
+ "id": 416,
+ "start": 1377.92,
+ "end": 1378.2,
+ "text": "today"
+ },
+ {
+ "id": 417,
+ "start": 1378.2,
+ "end": 1379.38,
+ "text": "we're"
+ },
+ {
+ "id": 418,
+ "start": 1379.38,
+ "end": 1379.54,
+ "text": "here"
+ },
+ {
+ "id": 419,
+ "start": 1379.54,
+ "end": 1379.84,
+ "text": "because"
+ },
+ {
+ "id": 420,
+ "start": 1379.84,
+ "end": 1379.98,
+ "text": "of"
+ },
+ {
+ "id": 421,
+ "start": 1379.98,
+ "end": 1380.14,
+ "text": "what"
+ },
+ {
+ "id": 422,
+ "start": 1380.14,
+ "end": 1380.26,
+ "text": "you"
+ },
+ {
+ "id": 423,
+ "start": 1380.26,
+ "end": 1380.58,
+ "text": "Mr"
+ },
+ {
+ "id": 424,
+ "start": 1380.58,
+ "end": 1381.24,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 425,
+ "start": 1381.24,
+ "end": 1381.44,
+ "text": "have"
+ },
+ {
+ "id": 426,
+ "start": 1381.44,
+ "end": 1381.92,
+ "text": "described"
+ },
+ {
+ "id": 427,
+ "start": 1381.92,
+ "end": 1382.08,
+ "text": "as"
+ },
+ {
+ "id": 428,
+ "start": 1382.08,
+ "end": 1382.16,
+ "text": "a"
+ },
+ {
+ "id": 429,
+ "start": 1382.16,
+ "end": 1382.4,
+ "text": "breach"
+ },
+ {
+ "id": 430,
+ "start": 1382.4,
+ "end": 1382.5,
+ "text": "of"
+ },
+ {
+ "id": 431,
+ "start": 1382.5,
+ "end": 1382.86,
+ "text": "trust."
+ },
+ {
+ "id": 432,
+ "start": 1382.86,
+ "end": 1384.04,
+ "text": "A"
+ },
+ {
+ "id": 433,
+ "start": 1384.04,
+ "end": 1384.34,
+ "text": "quiz"
+ },
+ {
+ "id": 434,
+ "start": 1384.34,
+ "end": 1384.66,
+ "text": "app"
+ },
+ {
+ "id": 435,
+ "start": 1384.66,
+ "end": 1384.92,
+ "text": "used"
+ },
+ {
+ "id": 436,
+ "start": 1384.92,
+ "end": 1385.06,
+ "text": "by"
+ },
+ {
+ "id": 437,
+ "start": 1385.06,
+ "end": 1385.76,
+ "text": "approximately"
+ },
+ {
+ "id": 438,
+ "start": 1385.76,
+ "end": 1386.68,
+ "text": "300,000"
+ },
+ {
+ "id": 439,
+ "start": 1386.68,
+ "end": 1387.04,
+ "text": "people"
+ },
+ {
+ "id": 440,
+ "start": 1387.04,
+ "end": 1388.02,
+ "text": "led"
+ },
+ {
+ "id": 441,
+ "start": 1388.02,
+ "end": 1388.12,
+ "text": "to"
+ },
+ {
+ "id": 442,
+ "start": 1388.12,
+ "end": 1388.84,
+ "text": "information"
+ },
+ {
+ "id": 443,
+ "start": 1388.84,
+ "end": 1389.68,
+ "text": "about"
+ },
+ {
+ "id": 444,
+ "start": 1389.68,
+ "end": 1390.78,
+ "text": "87,000,000"
+ },
+ {
+ "id": 445,
+ "start": 1390.78,
+ "end": 1391.3,
+ "text": "Facebook"
+ },
+ {
+ "id": 446,
+ "start": 1391.3,
+ "end": 1391.74,
+ "text": "users"
+ },
+ {
+ "id": 447,
+ "start": 1391.74,
+ "end": 1391.96,
+ "text": "being"
+ },
+ {
+ "id": 448,
+ "start": 1391.96,
+ "end": 1392.44,
+ "text": "obtained"
+ },
+ {
+ "id": 449,
+ "start": 1392.44,
+ "end": 1392.58,
+ "text": "by"
+ },
+ {
+ "id": 450,
+ "start": 1392.58,
+ "end": 1392.78,
+ "text": "the"
+ },
+ {
+ "id": 451,
+ "start": 1392.78,
+ "end": 1393.24,
+ "text": "company."
+ },
+ {
+ "id": 452,
+ "start": 1393.24,
+ "end": 1393.8,
+ "text": "Cambridge"
+ },
+ {
+ "id": 453,
+ "start": 1393.8,
+ "end": 1395.06,
+ "text": "Analytica."
+ },
+ {
+ "id": 454,
+ "start": 1395.06,
+ "end": 1395.84,
+ "text": "There"
+ },
+ {
+ "id": 455,
+ "start": 1395.84,
+ "end": 1396.02,
+ "text": "are"
+ },
+ {
+ "id": 456,
+ "start": 1396.02,
+ "end": 1396.44,
+ "text": "plenty"
+ },
+ {
+ "id": 457,
+ "start": 1396.44,
+ "end": 1396.6,
+ "text": "of"
+ },
+ {
+ "id": 458,
+ "start": 1396.6,
+ "end": 1397.1,
+ "text": "questions"
+ },
+ {
+ "id": 459,
+ "start": 1397.1,
+ "end": 1397.46,
+ "text": "about"
+ },
+ {
+ "id": 460,
+ "start": 1397.46,
+ "end": 1397.72,
+ "text": "the"
+ },
+ {
+ "id": 461,
+ "start": 1397.72,
+ "end": 1398.18,
+ "text": "behavior"
+ },
+ {
+ "id": 462,
+ "start": 1398.18,
+ "end": 1398.96,
+ "text": "of"
+ },
+ {
+ "id": 463,
+ "start": 1398.96,
+ "end": 1399.44,
+ "text": "Cambridge"
+ },
+ {
+ "id": 464,
+ "start": 1399.44,
+ "end": 1399.94,
+ "text": "Analytica"
+ },
+ {
+ "id": 465,
+ "start": 1399.94,
+ "end": 1400.16,
+ "text": "and"
+ },
+ {
+ "id": 466,
+ "start": 1400.16,
+ "end": 1400.26,
+ "text": "we"
+ },
+ {
+ "id": 467,
+ "start": 1400.26,
+ "end": 1400.62,
+ "text": "expect"
+ },
+ {
+ "id": 468,
+ "start": 1400.62,
+ "end": 1400.74,
+ "text": "to"
+ },
+ {
+ "id": 469,
+ "start": 1400.74,
+ "end": 1400.94,
+ "text": "hold"
+ },
+ {
+ "id": 470,
+ "start": 1400.94,
+ "end": 1400.98,
+ "text": "a"
+ },
+ {
+ "id": 471,
+ "start": 1400.98,
+ "end": 1401.38,
+ "text": "future"
+ },
+ {
+ "id": 472,
+ "start": 1401.38,
+ "end": 1401.74,
+ "text": "hearing"
+ },
+ {
+ "id": 473,
+ "start": 1401.74,
+ "end": 1401.94,
+ "text": "on"
+ },
+ {
+ "id": 474,
+ "start": 1401.94,
+ "end": 1402.44,
+ "text": "Cambridge"
+ },
+ {
+ "id": 475,
+ "start": 1402.44,
+ "end": 1402.6,
+ "text": "and"
+ },
+ {
+ "id": 476,
+ "start": 1402.6,
+ "end": 1403.5,
+ "text": "similar"
+ },
+ {
+ "id": 477,
+ "start": 1403.5,
+ "end": 1403.94,
+ "text": "firms."
+ },
+ {
+ "id": 478,
+ "start": 1403.94,
+ "end": 1404.8,
+ "text": "But"
+ },
+ {
+ "id": 479,
+ "start": 1404.8,
+ "end": 1404.94,
+ "text": "as"
+ },
+ {
+ "id": 480,
+ "start": 1404.94,
+ "end": 1405.06,
+ "text": "you"
+ },
+ {
+ "id": 481,
+ "start": 1405.06,
+ "end": 1405.9,
+ "text": "said,"
+ },
+ {
+ "id": 482,
+ "start": 1405.9,
+ "end": 1406.48,
+ "text": "this"
+ },
+ {
+ "id": 483,
+ "start": 1406.48,
+ "end": 1406.68,
+ "text": "is"
+ },
+ {
+ "id": 484,
+ "start": 1406.68,
+ "end": 1407.08,
+ "text": "not"
+ },
+ {
+ "id": 485,
+ "start": 1407.08,
+ "end": 1407.76,
+ "text": "likely"
+ },
+ {
+ "id": 486,
+ "start": 1407.76,
+ "end": 1408.12,
+ "text": "to"
+ },
+ {
+ "id": 487,
+ "start": 1408.12,
+ "end": 1408.26,
+ "text": "be"
+ },
+ {
+ "id": 488,
+ "start": 1408.26,
+ "end": 1409.04,
+ "text": "an"
+ },
+ {
+ "id": 489,
+ "start": 1409.04,
+ "end": 1409.68,
+ "text": "isolated"
+ },
+ {
+ "id": 490,
+ "start": 1409.68,
+ "end": 1410.6,
+ "text": "incident."
+ },
+ {
+ "id": 491,
+ "start": 1410.6,
+ "end": 1410.78,
+ "text": "A"
+ },
+ {
+ "id": 492,
+ "start": 1410.78,
+ "end": 1411.1,
+ "text": "fact"
+ },
+ {
+ "id": 493,
+ "start": 1411.1,
+ "end": 1411.7,
+ "text": "demonstrated"
+ },
+ {
+ "id": 494,
+ "start": 1411.7,
+ "end": 1411.86,
+ "text": "by"
+ },
+ {
+ "id": 495,
+ "start": 1411.86,
+ "end": 1412.3,
+ "text": "Facebook"
+ },
+ {
+ "id": 496,
+ "start": 1412.3,
+ "end": 1412.84,
+ "text": "suspension"
+ },
+ {
+ "id": 497,
+ "start": 1412.84,
+ "end": 1412.94,
+ "text": "of"
+ },
+ {
+ "id": 498,
+ "start": 1412.94,
+ "end": 1413.24,
+ "text": "another"
+ },
+ {
+ "id": 499,
+ "start": 1413.24,
+ "end": 1413.5,
+ "text": "firm"
+ },
+ {
+ "id": 500,
+ "start": 1413.5,
+ "end": 1413.68,
+ "text": "just"
+ },
+ {
+ "id": 501,
+ "start": 1413.68,
+ "end": 1413.86,
+ "text": "this"
+ },
+ {
+ "id": 502,
+ "start": 1413.86,
+ "end": 1414.12,
+ "text": "past"
+ },
+ {
+ "id": 503,
+ "start": 1414.12,
+ "end": 1414.98,
+ "text": "weekend."
+ },
+ {
+ "id": 504,
+ "start": 1414.98,
+ "end": 1415.52,
+ "text": "You"
+ },
+ {
+ "id": 505,
+ "start": 1415.52,
+ "end": 1416.02,
+ "text": "promised"
+ },
+ {
+ "id": 506,
+ "start": 1416.02,
+ "end": 1416.22,
+ "text": "that"
+ },
+ {
+ "id": 507,
+ "start": 1416.22,
+ "end": 1416.54,
+ "text": "when"
+ },
+ {
+ "id": 508,
+ "start": 1416.54,
+ "end": 1417.18,
+ "text": "Facebook"
+ },
+ {
+ "id": 509,
+ "start": 1417.18,
+ "end": 1417.7,
+ "text": "discovers"
+ },
+ {
+ "id": 510,
+ "start": 1417.7,
+ "end": 1418,
+ "text": "other"
+ },
+ {
+ "id": 511,
+ "start": 1418,
+ "end": 1418.26,
+ "text": "apps"
+ },
+ {
+ "id": 512,
+ "start": 1418.26,
+ "end": 1418.4,
+ "text": "that"
+ },
+ {
+ "id": 513,
+ "start": 1418.4,
+ "end": 1418.6,
+ "text": "had"
+ },
+ {
+ "id": 514,
+ "start": 1418.6,
+ "end": 1419,
+ "text": "access"
+ },
+ {
+ "id": 515,
+ "start": 1419,
+ "end": 1419.12,
+ "text": "to"
+ },
+ {
+ "id": 516,
+ "start": 1419.12,
+ "end": 1419.4,
+ "text": "large"
+ },
+ {
+ "id": 517,
+ "start": 1419.4,
+ "end": 1419.68,
+ "text": "amounts"
+ },
+ {
+ "id": 518,
+ "start": 1419.68,
+ "end": 1419.82,
+ "text": "of"
+ },
+ {
+ "id": 519,
+ "start": 1419.82,
+ "end": 1420.14,
+ "text": "user"
+ },
+ {
+ "id": 520,
+ "start": 1420.14,
+ "end": 1420.46,
+ "text": "data,"
+ },
+ {
+ "id": 521,
+ "start": 1420.46,
+ "end": 1421.34,
+ "text": "you"
+ },
+ {
+ "id": 522,
+ "start": 1421.34,
+ "end": 1421.52,
+ "text": "will"
+ },
+ {
+ "id": 523,
+ "start": 1421.52,
+ "end": 1422.14,
+ "text": "ban"
+ },
+ {
+ "id": 524,
+ "start": 1422.14,
+ "end": 1422.38,
+ "text": "them"
+ },
+ {
+ "id": 525,
+ "start": 1422.38,
+ "end": 1422.7,
+ "text": "until"
+ },
+ {
+ "id": 526,
+ "start": 1422.7,
+ "end": 1422.98,
+ "text": "those"
+ },
+ {
+ "id": 527,
+ "start": 1422.98,
+ "end": 1423.46,
+ "text": "affected"
+ },
+ {
+ "id": 528,
+ "start": 1423.46,
+ "end": 1424.42,
+ "text": "and"
+ },
+ {
+ "id": 529,
+ "start": 1424.42,
+ "end": 1424.64,
+ "text": "that's"
+ },
+ {
+ "id": 530,
+ "start": 1424.64,
+ "end": 1426.01,
+ "text": "appropriate."
+ },
+ {
+ "id": 531,
+ "start": 1426.01,
+ "end": 1426.13,
+ "text": "But"
+ },
+ {
+ "id": 532,
+ "start": 1426.13,
+ "end": 1426.27,
+ "text": "it's"
+ },
+ {
+ "id": 533,
+ "start": 1426.27,
+ "end": 1426.81,
+ "text": "unlikely"
+ },
+ {
+ "id": 534,
+ "start": 1426.81,
+ "end": 1426.99,
+ "text": "to"
+ },
+ {
+ "id": 535,
+ "start": 1426.99,
+ "end": 1427.11,
+ "text": "be"
+ },
+ {
+ "id": 536,
+ "start": 1427.11,
+ "end": 1427.47,
+ "text": "enough"
+ },
+ {
+ "id": 537,
+ "start": 1427.47,
+ "end": 1427.81,
+ "text": "for"
+ },
+ {
+ "id": 538,
+ "start": 1427.81,
+ "end": 1427.93,
+ "text": "the"
+ },
+ {
+ "id": 539,
+ "start": 1427.93,
+ "end": 1428.61,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 540,
+ "start": 1428.61,
+ "end": 1429.11,
+ "text": "Facebook"
+ },
+ {
+ "id": 541,
+ "start": 1429.11,
+ "end": 1429.57,
+ "text": "users."
+ },
+ {
+ "id": 542,
+ "start": 1429.57,
+ "end": 1430.63,
+ "text": "One"
+ },
+ {
+ "id": 543,
+ "start": 1430.63,
+ "end": 1430.99,
+ "text": "reason"
+ },
+ {
+ "id": 544,
+ "start": 1430.99,
+ "end": 1431.17,
+ "text": "that"
+ },
+ {
+ "id": 545,
+ "start": 1431.17,
+ "end": 1431.39,
+ "text": "so"
+ },
+ {
+ "id": 546,
+ "start": 1431.39,
+ "end": 1431.63,
+ "text": "many"
+ },
+ {
+ "id": 547,
+ "start": 1431.63,
+ "end": 1431.97,
+ "text": "people"
+ },
+ {
+ "id": 548,
+ "start": 1431.97,
+ "end": 1432.41,
+ "text": "are"
+ },
+ {
+ "id": 549,
+ "start": 1432.41,
+ "end": 1432.73,
+ "text": "worried"
+ },
+ {
+ "id": 550,
+ "start": 1432.73,
+ "end": 1432.95,
+ "text": "about"
+ },
+ {
+ "id": 551,
+ "start": 1432.95,
+ "end": 1433.17,
+ "text": "this"
+ },
+ {
+ "id": 552,
+ "start": 1433.17,
+ "end": 1433.65,
+ "text": "incident"
+ },
+ {
+ "id": 553,
+ "start": 1433.65,
+ "end": 1434.43,
+ "text": "is"
+ },
+ {
+ "id": 554,
+ "start": 1434.43,
+ "end": 1434.59,
+ "text": "what"
+ },
+ {
+ "id": 555,
+ "start": 1434.59,
+ "end": 1434.69,
+ "text": "it"
+ },
+ {
+ "id": 556,
+ "start": 1434.69,
+ "end": 1434.89,
+ "text": "says"
+ },
+ {
+ "id": 557,
+ "start": 1434.89,
+ "end": 1435.25,
+ "text": "about"
+ },
+ {
+ "id": 558,
+ "start": 1435.25,
+ "end": 1435.49,
+ "text": "how"
+ },
+ {
+ "id": 559,
+ "start": 1435.49,
+ "end": 1435.99,
+ "text": "Facebook"
+ },
+ {
+ "id": 560,
+ "start": 1435.99,
+ "end": 1437.04,
+ "text": "works."
+ },
+ {
+ "id": 561,
+ "start": 1437.04,
+ "end": 1437.88,
+ "text": "The"
+ },
+ {
+ "id": 562,
+ "start": 1437.88,
+ "end": 1438.26,
+ "text": "idea"
+ },
+ {
+ "id": 563,
+ "start": 1438.26,
+ "end": 1439.36,
+ "text": "that"
+ },
+ {
+ "id": 564,
+ "start": 1439.36,
+ "end": 1439.54,
+ "text": "for"
+ },
+ {
+ "id": 565,
+ "start": 1439.54,
+ "end": 1439.84,
+ "text": "every"
+ },
+ {
+ "id": 566,
+ "start": 1439.84,
+ "end": 1440.58,
+ "text": "person"
+ },
+ {
+ "id": 567,
+ "start": 1440.58,
+ "end": 1440.76,
+ "text": "who"
+ },
+ {
+ "id": 568,
+ "start": 1440.76,
+ "end": 1441.34,
+ "text": "decided"
+ },
+ {
+ "id": 569,
+ "start": 1441.34,
+ "end": 1441.48,
+ "text": "to"
+ },
+ {
+ "id": 570,
+ "start": 1441.48,
+ "end": 1441.72,
+ "text": "try"
+ },
+ {
+ "id": 571,
+ "start": 1441.72,
+ "end": 1441.98,
+ "text": "an"
+ },
+ {
+ "id": 572,
+ "start": 1441.98,
+ "end": 1442.74,
+ "text": "app"
+ },
+ {
+ "id": 573,
+ "start": 1442.74,
+ "end": 1443.78,
+ "text": "information"
+ },
+ {
+ "id": 574,
+ "start": 1443.78,
+ "end": 1444.08,
+ "text": "about"
+ },
+ {
+ "id": 575,
+ "start": 1444.08,
+ "end": 1444.46,
+ "text": "nearly"
+ },
+ {
+ "id": 576,
+ "start": 1444.46,
+ "end": 1445.08,
+ "text": "300"
+ },
+ {
+ "id": 577,
+ "start": 1445.08,
+ "end": 1445.56,
+ "text": "other"
+ },
+ {
+ "id": 578,
+ "start": 1445.56,
+ "end": 1445.86,
+ "text": "people"
+ },
+ {
+ "id": 579,
+ "start": 1445.86,
+ "end": 1446.84,
+ "text": "was"
+ },
+ {
+ "id": 580,
+ "start": 1446.84,
+ "end": 1447.32,
+ "text": "scraped"
+ },
+ {
+ "id": 581,
+ "start": 1447.32,
+ "end": 1447.48,
+ "text": "from"
+ },
+ {
+ "id": 582,
+ "start": 1447.48,
+ "end": 1447.68,
+ "text": "your"
+ },
+ {
+ "id": 583,
+ "start": 1447.68,
+ "end": 1448.2,
+ "text": "services"
+ },
+ {
+ "id": 584,
+ "start": 1448.2,
+ "end": 1448.32,
+ "text": "to"
+ },
+ {
+ "id": 585,
+ "start": 1448.32,
+ "end": 1448.44,
+ "text": "put"
+ },
+ {
+ "id": 586,
+ "start": 1448.44,
+ "end": 1448.56,
+ "text": "it"
+ },
+ {
+ "id": 587,
+ "start": 1448.56,
+ "end": 1449.38,
+ "text": "mildly"
+ },
+ {
+ "id": 588,
+ "start": 1449.38,
+ "end": 1450.8,
+ "text": "disturbing."
+ },
+ {
+ "id": 589,
+ "start": 1450.8,
+ "end": 1451.34,
+ "text": "And"
+ },
+ {
+ "id": 590,
+ "start": 1451.34,
+ "end": 1451.44,
+ "text": "the"
+ },
+ {
+ "id": 591,
+ "start": 1451.44,
+ "end": 1451.7,
+ "text": "fact"
+ },
+ {
+ "id": 592,
+ "start": 1451.7,
+ "end": 1451.84,
+ "text": "that"
+ },
+ {
+ "id": 593,
+ "start": 1451.84,
+ "end": 1452.2,
+ "text": "those"
+ },
+ {
+ "id": 594,
+ "start": 1452.2,
+ "end": 1453.78,
+ "text": "87,000,000"
+ },
+ {
+ "id": 595,
+ "start": 1453.78,
+ "end": 1454.08,
+ "text": "people"
+ },
+ {
+ "id": 596,
+ "start": 1454.08,
+ "end": 1454.32,
+ "text": "may"
+ },
+ {
+ "id": 597,
+ "start": 1454.32,
+ "end": 1454.48,
+ "text": "have"
+ },
+ {
+ "id": 598,
+ "start": 1454.48,
+ "end": 1454.94,
+ "text": "technically"
+ },
+ {
+ "id": 599,
+ "start": 1454.94,
+ "end": 1455.44,
+ "text": "consented"
+ },
+ {
+ "id": 600,
+ "start": 1455.44,
+ "end": 1455.56,
+ "text": "to"
+ },
+ {
+ "id": 601,
+ "start": 1455.56,
+ "end": 1455.86,
+ "text": "making"
+ },
+ {
+ "id": 602,
+ "start": 1455.86,
+ "end": 1456.06,
+ "text": "their"
+ },
+ {
+ "id": 603,
+ "start": 1456.06,
+ "end": 1456.28,
+ "text": "data"
+ },
+ {
+ "id": 604,
+ "start": 1456.28,
+ "end": 1456.72,
+ "text": "available"
+ },
+ {
+ "id": 605,
+ "start": 1456.72,
+ "end": 1457.04,
+ "text": "doesn't"
+ },
+ {
+ "id": 606,
+ "start": 1457.04,
+ "end": 1457.3,
+ "text": "make"
+ },
+ {
+ "id": 607,
+ "start": 1457.3,
+ "end": 1458,
+ "text": "most"
+ },
+ {
+ "id": 608,
+ "start": 1458,
+ "end": 1458.26,
+ "text": "people"
+ },
+ {
+ "id": 609,
+ "start": 1458.26,
+ "end": 1458.56,
+ "text": "feel"
+ },
+ {
+ "id": 610,
+ "start": 1458.56,
+ "end": 1459.42,
+ "text": "any"
+ },
+ {
+ "id": 611,
+ "start": 1459.42,
+ "end": 1459.66,
+ "text": "better."
+ },
+ {
+ "id": 612,
+ "start": 1459.66,
+ "end": 1460.62,
+ "text": "The"
+ },
+ {
+ "id": 613,
+ "start": 1460.62,
+ "end": 1460.96,
+ "text": "recent"
+ },
+ {
+ "id": 614,
+ "start": 1460.96,
+ "end": 1461.5,
+ "text": "revelation"
+ },
+ {
+ "id": 615,
+ "start": 1461.5,
+ "end": 1461.72,
+ "text": "that"
+ },
+ {
+ "id": 616,
+ "start": 1461.72,
+ "end": 1462.2,
+ "text": "malicious"
+ },
+ {
+ "id": 617,
+ "start": 1462.2,
+ "end": 1462.64,
+ "text": "actors"
+ },
+ {
+ "id": 618,
+ "start": 1462.64,
+ "end": 1462.82,
+ "text": "were"
+ },
+ {
+ "id": 619,
+ "start": 1462.82,
+ "end": 1463,
+ "text": "able"
+ },
+ {
+ "id": 620,
+ "start": 1463,
+ "end": 1463.12,
+ "text": "to"
+ },
+ {
+ "id": 621,
+ "start": 1463.12,
+ "end": 1463.66,
+ "text": "utilize"
+ },
+ {
+ "id": 622,
+ "start": 1463.66,
+ "end": 1464.22,
+ "text": "Facebook's"
+ },
+ {
+ "id": 623,
+ "start": 1464.22,
+ "end": 1464.8,
+ "text": "default"
+ },
+ {
+ "id": 624,
+ "start": 1464.8,
+ "end": 1465.24,
+ "text": "privacy"
+ },
+ {
+ "id": 625,
+ "start": 1465.24,
+ "end": 1465.62,
+ "text": "settings"
+ },
+ {
+ "id": 626,
+ "start": 1465.62,
+ "end": 1466.4,
+ "text": "to"
+ },
+ {
+ "id": 627,
+ "start": 1466.4,
+ "end": 1466.7,
+ "text": "match"
+ },
+ {
+ "id": 628,
+ "start": 1466.7,
+ "end": 1467.26,
+ "text": "email"
+ },
+ {
+ "id": 629,
+ "start": 1467.26,
+ "end": 1467.9,
+ "text": "addresses"
+ },
+ {
+ "id": 630,
+ "start": 1467.9,
+ "end": 1468.06,
+ "text": "and"
+ },
+ {
+ "id": 631,
+ "start": 1468.06,
+ "end": 1468.32,
+ "text": "phone"
+ },
+ {
+ "id": 632,
+ "start": 1468.32,
+ "end": 1468.66,
+ "text": "numbers"
+ },
+ {
+ "id": 633,
+ "start": 1468.66,
+ "end": 1468.94,
+ "text": "found"
+ },
+ {
+ "id": 634,
+ "start": 1468.94,
+ "end": 1469.08,
+ "text": "on"
+ },
+ {
+ "id": 635,
+ "start": 1469.08,
+ "end": 1469.2,
+ "text": "the"
+ },
+ {
+ "id": 636,
+ "start": 1469.2,
+ "end": 1469.42,
+ "text": "so"
+ },
+ {
+ "id": 637,
+ "start": 1469.42,
+ "end": 1469.68,
+ "text": "called"
+ },
+ {
+ "id": 638,
+ "start": 1469.68,
+ "end": 1470.02,
+ "text": "dark"
+ },
+ {
+ "id": 639,
+ "start": 1470.02,
+ "end": 1470.4,
+ "text": "web"
+ },
+ {
+ "id": 640,
+ "start": 1470.4,
+ "end": 1471.36,
+ "text": "to"
+ },
+ {
+ "id": 641,
+ "start": 1471.36,
+ "end": 1471.8,
+ "text": "public"
+ },
+ {
+ "id": 642,
+ "start": 1471.8,
+ "end": 1472.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 643,
+ "start": 1472.34,
+ "end": 1473.4,
+ "text": "profiles,"
+ },
+ {
+ "id": 644,
+ "start": 1473.4,
+ "end": 1474.38,
+ "text": "potentially"
+ },
+ {
+ "id": 645,
+ "start": 1474.38,
+ "end": 1474.88,
+ "text": "affecting"
+ },
+ {
+ "id": 646,
+ "start": 1474.88,
+ "end": 1475.18,
+ "text": "all"
+ },
+ {
+ "id": 647,
+ "start": 1475.18,
+ "end": 1475.78,
+ "text": "Facebook"
+ },
+ {
+ "id": 648,
+ "start": 1475.78,
+ "end": 1476.26,
+ "text": "users"
+ },
+ {
+ "id": 649,
+ "start": 1476.26,
+ "end": 1477.28,
+ "text": "only"
+ },
+ {
+ "id": 650,
+ "start": 1477.28,
+ "end": 1477.54,
+ "text": "adds"
+ },
+ {
+ "id": 651,
+ "start": 1477.54,
+ "end": 1477.78,
+ "text": "fuel"
+ },
+ {
+ "id": 652,
+ "start": 1477.78,
+ "end": 1477.88,
+ "text": "to"
+ },
+ {
+ "id": 653,
+ "start": 1477.88,
+ "end": 1478.02,
+ "text": "the"
+ },
+ {
+ "id": 654,
+ "start": 1478.02,
+ "end": 1478.8,
+ "text": "fire."
+ },
+ {
+ "id": 655,
+ "start": 1478.8,
+ "end": 1479.44,
+ "text": "What"
+ },
+ {
+ "id": 656,
+ "start": 1479.44,
+ "end": 1479.78,
+ "text": "binds"
+ },
+ {
+ "id": 657,
+ "start": 1479.78,
+ "end": 1480.04,
+ "text": "these"
+ },
+ {
+ "id": 658,
+ "start": 1480.04,
+ "end": 1480.18,
+ "text": "two"
+ },
+ {
+ "id": 659,
+ "start": 1480.18,
+ "end": 1480.76,
+ "text": "incidents"
+ },
+ {
+ "id": 660,
+ "start": 1480.76,
+ "end": 1481.08,
+ "text": "is"
+ },
+ {
+ "id": 661,
+ "start": 1481.08,
+ "end": 1481.2,
+ "text": "if"
+ },
+ {
+ "id": 662,
+ "start": 1481.2,
+ "end": 1481.34,
+ "text": "they"
+ },
+ {
+ "id": 663,
+ "start": 1481.34,
+ "end": 1481.58,
+ "text": "don't"
+ },
+ {
+ "id": 664,
+ "start": 1481.58,
+ "end": 1481.88,
+ "text": "appear"
+ },
+ {
+ "id": 665,
+ "start": 1481.88,
+ "end": 1482,
+ "text": "to"
+ },
+ {
+ "id": 666,
+ "start": 1482,
+ "end": 1482.14,
+ "text": "be"
+ },
+ {
+ "id": 667,
+ "start": 1482.14,
+ "end": 1482.54,
+ "text": "caused"
+ },
+ {
+ "id": 668,
+ "start": 1482.54,
+ "end": 1482.68,
+ "text": "by"
+ },
+ {
+ "id": 669,
+ "start": 1482.68,
+ "end": 1482.84,
+ "text": "the"
+ },
+ {
+ "id": 670,
+ "start": 1482.84,
+ "end": 1483.08,
+ "text": "kind"
+ },
+ {
+ "id": 671,
+ "start": 1483.08,
+ "end": 1483.2,
+ "text": "of"
+ },
+ {
+ "id": 672,
+ "start": 1483.2,
+ "end": 1483.8,
+ "text": "negligence"
+ },
+ {
+ "id": 673,
+ "start": 1483.8,
+ "end": 1483.98,
+ "text": "that"
+ },
+ {
+ "id": 674,
+ "start": 1483.98,
+ "end": 1484.34,
+ "text": "allows"
+ },
+ {
+ "id": 675,
+ "start": 1484.34,
+ "end": 1484.8,
+ "text": "typical"
+ },
+ {
+ "id": 676,
+ "start": 1484.8,
+ "end": 1485.04,
+ "text": "data"
+ },
+ {
+ "id": 677,
+ "start": 1485.04,
+ "end": 1485.42,
+ "text": "breaches"
+ },
+ {
+ "id": 678,
+ "start": 1485.42,
+ "end": 1485.54,
+ "text": "to"
+ },
+ {
+ "id": 679,
+ "start": 1485.54,
+ "end": 1486.4,
+ "text": "happen."
+ },
+ {
+ "id": 680,
+ "start": 1486.4,
+ "end": 1487.42,
+ "text": "Instead,"
+ },
+ {
+ "id": 681,
+ "start": 1487.42,
+ "end": 1488.3,
+ "text": "they"
+ },
+ {
+ "id": 682,
+ "start": 1488.3,
+ "end": 1488.52,
+ "text": "both"
+ },
+ {
+ "id": 683,
+ "start": 1488.52,
+ "end": 1488.84,
+ "text": "appear"
+ },
+ {
+ "id": 684,
+ "start": 1488.84,
+ "end": 1488.98,
+ "text": "to"
+ },
+ {
+ "id": 685,
+ "start": 1488.98,
+ "end": 1489.08,
+ "text": "be"
+ },
+ {
+ "id": 686,
+ "start": 1489.08,
+ "end": 1489.24,
+ "text": "the"
+ },
+ {
+ "id": 687,
+ "start": 1489.24,
+ "end": 1489.6,
+ "text": "result"
+ },
+ {
+ "id": 688,
+ "start": 1489.6,
+ "end": 1489.72,
+ "text": "of"
+ },
+ {
+ "id": 689,
+ "start": 1489.72,
+ "end": 1490.02,
+ "text": "people"
+ },
+ {
+ "id": 690,
+ "start": 1490.02,
+ "end": 1490.54,
+ "text": "exploiting"
+ },
+ {
+ "id": 691,
+ "start": 1490.54,
+ "end": 1490.68,
+ "text": "the"
+ },
+ {
+ "id": 692,
+ "start": 1490.68,
+ "end": 1490.94,
+ "text": "very"
+ },
+ {
+ "id": 693,
+ "start": 1490.94,
+ "end": 1491.3,
+ "text": "tools"
+ },
+ {
+ "id": 694,
+ "start": 1491.3,
+ "end": 1491.44,
+ "text": "that"
+ },
+ {
+ "id": 695,
+ "start": 1491.44,
+ "end": 1491.68,
+ "text": "you've"
+ },
+ {
+ "id": 696,
+ "start": 1491.68,
+ "end": 1492.1,
+ "text": "created"
+ },
+ {
+ "id": 697,
+ "start": 1492.1,
+ "end": 1492.22,
+ "text": "to"
+ },
+ {
+ "id": 698,
+ "start": 1492.22,
+ "end": 1492.86,
+ "text": "manipulate"
+ },
+ {
+ "id": 699,
+ "start": 1492.86,
+ "end": 1493.62,
+ "text": "users"
+ },
+ {
+ "id": 700,
+ "start": 1493.62,
+ "end": 1494.76,
+ "text": "information."
+ },
+ {
+ "id": 701,
+ "start": 1494.76,
+ "end": 1495.42,
+ "text": "I"
+ },
+ {
+ "id": 702,
+ "start": 1495.42,
+ "end": 1495.62,
+ "text": "know"
+ },
+ {
+ "id": 703,
+ "start": 1495.62,
+ "end": 1496.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 704,
+ "start": 1496.12,
+ "end": 1496.26,
+ "text": "is"
+ },
+ {
+ "id": 705,
+ "start": 1496.26,
+ "end": 1496.6,
+ "text": "taken"
+ },
+ {
+ "id": 706,
+ "start": 1496.6,
+ "end": 1496.94,
+ "text": "several"
+ },
+ {
+ "id": 707,
+ "start": 1496.94,
+ "end": 1497.26,
+ "text": "steps"
+ },
+ {
+ "id": 708,
+ "start": 1497.26,
+ "end": 1497.38,
+ "text": "and"
+ },
+ {
+ "id": 709,
+ "start": 1497.38,
+ "end": 1497.74,
+ "text": "intends"
+ },
+ {
+ "id": 710,
+ "start": 1497.74,
+ "end": 1497.84,
+ "text": "to"
+ },
+ {
+ "id": 711,
+ "start": 1497.84,
+ "end": 1498.08,
+ "text": "take"
+ },
+ {
+ "id": 712,
+ "start": 1498.08,
+ "end": 1498.34,
+ "text": "more"
+ },
+ {
+ "id": 713,
+ "start": 1498.34,
+ "end": 1498.52,
+ "text": "to"
+ },
+ {
+ "id": 714,
+ "start": 1498.52,
+ "end": 1498.86,
+ "text": "address"
+ },
+ {
+ "id": 715,
+ "start": 1498.86,
+ "end": 1499.06,
+ "text": "these"
+ },
+ {
+ "id": 716,
+ "start": 1499.06,
+ "end": 1500.26,
+ "text": "issues."
+ },
+ {
+ "id": 717,
+ "start": 1500.26,
+ "end": 1501.24,
+ "text": "Nevertheless,"
+ },
+ {
+ "id": 718,
+ "start": 1501.24,
+ "end": 1502.42,
+ "text": "some"
+ },
+ {
+ "id": 719,
+ "start": 1502.42,
+ "end": 1502.64,
+ "text": "have"
+ },
+ {
+ "id": 720,
+ "start": 1502.64,
+ "end": 1503.08,
+ "text": "warned"
+ },
+ {
+ "id": 721,
+ "start": 1503.08,
+ "end": 1503.36,
+ "text": "that"
+ },
+ {
+ "id": 722,
+ "start": 1503.36,
+ "end": 1503.5,
+ "text": "the"
+ },
+ {
+ "id": 723,
+ "start": 1503.5,
+ "end": 1503.98,
+ "text": "actions"
+ },
+ {
+ "id": 724,
+ "start": 1503.98,
+ "end": 1504.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 725,
+ "start": 1504.54,
+ "end": 1504.7,
+ "text": "is"
+ },
+ {
+ "id": 726,
+ "start": 1504.7,
+ "end": 1505.1,
+ "text": "taking"
+ },
+ {
+ "id": 727,
+ "start": 1505.1,
+ "end": 1505.28,
+ "text": "to"
+ },
+ {
+ "id": 728,
+ "start": 1505.28,
+ "end": 1505.88,
+ "text": "ensure"
+ },
+ {
+ "id": 729,
+ "start": 1505.88,
+ "end": 1506.12,
+ "text": "that"
+ },
+ {
+ "id": 730,
+ "start": 1506.12,
+ "end": 1506.73,
+ "text": "third"
+ },
+ {
+ "id": 731,
+ "start": 1506.73,
+ "end": 1507.85,
+ "text": "is"
+ },
+ {
+ "id": 732,
+ "start": 1507.85,
+ "end": 1508.09,
+ "text": "don't"
+ },
+ {
+ "id": 733,
+ "start": 1508.09,
+ "end": 1508.43,
+ "text": "obtain"
+ },
+ {
+ "id": 734,
+ "start": 1508.43,
+ "end": 1508.77,
+ "text": "data"
+ },
+ {
+ "id": 735,
+ "start": 1508.77,
+ "end": 1508.93,
+ "text": "from"
+ },
+ {
+ "id": 736,
+ "start": 1508.93,
+ "end": 1509.61,
+ "text": "unsuspecting"
+ },
+ {
+ "id": 737,
+ "start": 1509.61,
+ "end": 1510.07,
+ "text": "users"
+ },
+ {
+ "id": 738,
+ "start": 1510.07,
+ "end": 1510.81,
+ "text": "while"
+ },
+ {
+ "id": 739,
+ "start": 1510.81,
+ "end": 1511.49,
+ "text": "necessary"
+ },
+ {
+ "id": 740,
+ "start": 1511.49,
+ "end": 1512.55,
+ "text": "will"
+ },
+ {
+ "id": 741,
+ "start": 1512.55,
+ "end": 1513.03,
+ "text": "actually"
+ },
+ {
+ "id": 742,
+ "start": 1513.03,
+ "end": 1513.33,
+ "text": "serve"
+ },
+ {
+ "id": 743,
+ "start": 1513.33,
+ "end": 1513.49,
+ "text": "to"
+ },
+ {
+ "id": 744,
+ "start": 1513.49,
+ "end": 1513.87,
+ "text": "enhance"
+ },
+ {
+ "id": 745,
+ "start": 1513.87,
+ "end": 1514.55,
+ "text": "Facebook's"
+ },
+ {
+ "id": 746,
+ "start": 1514.55,
+ "end": 1514.99,
+ "text": "own"
+ },
+ {
+ "id": 747,
+ "start": 1514.99,
+ "end": 1515.53,
+ "text": "ability"
+ },
+ {
+ "id": 748,
+ "start": 1515.53,
+ "end": 1516.17,
+ "text": "to"
+ },
+ {
+ "id": 749,
+ "start": 1516.17,
+ "end": 1516.55,
+ "text": "market"
+ },
+ {
+ "id": 750,
+ "start": 1516.55,
+ "end": 1516.79,
+ "text": "such"
+ },
+ {
+ "id": 751,
+ "start": 1516.79,
+ "end": 1517.17,
+ "text": "data"
+ },
+ {
+ "id": 752,
+ "start": 1517.17,
+ "end": 1518.7,
+ "text": "exclusively"
+ },
+ {
+ "id": 753,
+ "start": 1518.7,
+ "end": 1519.5,
+ "text": "most"
+ },
+ {
+ "id": 754,
+ "start": 1519.5,
+ "end": 1519.62,
+ "text": "of"
+ },
+ {
+ "id": 755,
+ "start": 1519.62,
+ "end": 1519.74,
+ "text": "us"
+ },
+ {
+ "id": 756,
+ "start": 1519.74,
+ "end": 1520.42,
+ "text": "understand"
+ },
+ {
+ "id": 757,
+ "start": 1520.42,
+ "end": 1520.7,
+ "text": "that"
+ },
+ {
+ "id": 758,
+ "start": 1520.7,
+ "end": 1521.28,
+ "text": "whether"
+ },
+ {
+ "id": 759,
+ "start": 1521.28,
+ "end": 1521.58,
+ "text": "you're"
+ },
+ {
+ "id": 760,
+ "start": 1521.58,
+ "end": 1522.42,
+ "text": "using"
+ },
+ {
+ "id": 761,
+ "start": 1522.42,
+ "end": 1523.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 762,
+ "start": 1523.02,
+ "end": 1523.8,
+ "text": "or"
+ },
+ {
+ "id": 763,
+ "start": 1523.8,
+ "end": 1524.2,
+ "text": "Google"
+ },
+ {
+ "id": 764,
+ "start": 1524.2,
+ "end": 1524.36,
+ "text": "or"
+ },
+ {
+ "id": 765,
+ "start": 1524.36,
+ "end": 1524.56,
+ "text": "some"
+ },
+ {
+ "id": 766,
+ "start": 1524.56,
+ "end": 1524.82,
+ "text": "other"
+ },
+ {
+ "id": 767,
+ "start": 1524.82,
+ "end": 1525.24,
+ "text": "online"
+ },
+ {
+ "id": 768,
+ "start": 1525.24,
+ "end": 1525.78,
+ "text": "services."
+ },
+ {
+ "id": 769,
+ "start": 1525.78,
+ "end": 1526.68,
+ "text": "We"
+ },
+ {
+ "id": 770,
+ "start": 1526.68,
+ "end": 1526.84,
+ "text": "are"
+ },
+ {
+ "id": 771,
+ "start": 1526.84,
+ "end": 1527.2,
+ "text": "trading"
+ },
+ {
+ "id": 772,
+ "start": 1527.2,
+ "end": 1527.5,
+ "text": "certain"
+ },
+ {
+ "id": 773,
+ "start": 1527.5,
+ "end": 1528,
+ "text": "information"
+ },
+ {
+ "id": 774,
+ "start": 1528,
+ "end": 1528.28,
+ "text": "about"
+ },
+ {
+ "id": 775,
+ "start": 1528.28,
+ "end": 1528.76,
+ "text": "ourselves"
+ },
+ {
+ "id": 776,
+ "start": 1528.76,
+ "end": 1528.94,
+ "text": "for"
+ },
+ {
+ "id": 777,
+ "start": 1528.94,
+ "end": 1529.3,
+ "text": "free"
+ },
+ {
+ "id": 778,
+ "start": 1529.3,
+ "end": 1529.94,
+ "text": "or"
+ },
+ {
+ "id": 779,
+ "start": 1529.94,
+ "end": 1530.18,
+ "text": "low"
+ },
+ {
+ "id": 780,
+ "start": 1530.18,
+ "end": 1530.44,
+ "text": "cost"
+ },
+ {
+ "id": 781,
+ "start": 1530.44,
+ "end": 1531.7,
+ "text": "services."
+ },
+ {
+ "id": 782,
+ "start": 1531.7,
+ "end": 1532.48,
+ "text": "But"
+ },
+ {
+ "id": 783,
+ "start": 1532.48,
+ "end": 1532.64,
+ "text": "for"
+ },
+ {
+ "id": 784,
+ "start": 1532.64,
+ "end": 1532.82,
+ "text": "this"
+ },
+ {
+ "id": 785,
+ "start": 1532.82,
+ "end": 1533.14,
+ "text": "model"
+ },
+ {
+ "id": 786,
+ "start": 1533.14,
+ "end": 1533.32,
+ "text": "to"
+ },
+ {
+ "id": 787,
+ "start": 1533.32,
+ "end": 1533.9,
+ "text": "persist,"
+ },
+ {
+ "id": 788,
+ "start": 1533.9,
+ "end": 1534.92,
+ "text": "both"
+ },
+ {
+ "id": 789,
+ "start": 1534.92,
+ "end": 1535.28,
+ "text": "sides"
+ },
+ {
+ "id": 790,
+ "start": 1535.28,
+ "end": 1535.4,
+ "text": "of"
+ },
+ {
+ "id": 791,
+ "start": 1535.4,
+ "end": 1535.52,
+ "text": "the"
+ },
+ {
+ "id": 792,
+ "start": 1535.52,
+ "end": 1535.9,
+ "text": "bargain."
+ },
+ {
+ "id": 793,
+ "start": 1535.9,
+ "end": 1536.18,
+ "text": "Need"
+ },
+ {
+ "id": 794,
+ "start": 1536.18,
+ "end": 1536.28,
+ "text": "to"
+ },
+ {
+ "id": 795,
+ "start": 1536.28,
+ "end": 1536.44,
+ "text": "know"
+ },
+ {
+ "id": 796,
+ "start": 1536.44,
+ "end": 1537.24,
+ "text": "the"
+ },
+ {
+ "id": 797,
+ "start": 1537.24,
+ "end": 1537.56,
+ "text": "stakes"
+ },
+ {
+ "id": 798,
+ "start": 1537.56,
+ "end": 1537.7,
+ "text": "that"
+ },
+ {
+ "id": 799,
+ "start": 1537.7,
+ "end": 1537.84,
+ "text": "are"
+ },
+ {
+ "id": 800,
+ "start": 1537.84,
+ "end": 1538.52,
+ "text": "involved"
+ },
+ {
+ "id": 801,
+ "start": 1538.52,
+ "end": 1539.5,
+ "text": "right"
+ },
+ {
+ "id": 802,
+ "start": 1539.5,
+ "end": 1539.74,
+ "text": "now"
+ },
+ {
+ "id": 803,
+ "start": 1539.74,
+ "end": 1539.96,
+ "text": "I'm"
+ },
+ {
+ "id": 804,
+ "start": 1539.96,
+ "end": 1540.2,
+ "text": "not"
+ },
+ {
+ "id": 805,
+ "start": 1540.2,
+ "end": 1540.76,
+ "text": "convinced"
+ },
+ {
+ "id": 806,
+ "start": 1540.76,
+ "end": 1540.96,
+ "text": "that"
+ },
+ {
+ "id": 807,
+ "start": 1540.96,
+ "end": 1541.52,
+ "text": "Facebook's"
+ },
+ {
+ "id": 808,
+ "start": 1541.52,
+ "end": 1542.7,
+ "text": "users"
+ },
+ {
+ "id": 809,
+ "start": 1542.7,
+ "end": 1542.98,
+ "text": "have"
+ },
+ {
+ "id": 810,
+ "start": 1542.98,
+ "end": 1543.1,
+ "text": "the"
+ },
+ {
+ "id": 811,
+ "start": 1543.1,
+ "end": 1543.58,
+ "text": "information"
+ },
+ {
+ "id": 812,
+ "start": 1543.58,
+ "end": 1543.72,
+ "text": "that"
+ },
+ {
+ "id": 813,
+ "start": 1543.72,
+ "end": 1543.84,
+ "text": "they"
+ },
+ {
+ "id": 814,
+ "start": 1543.84,
+ "end": 1544.08,
+ "text": "need"
+ },
+ {
+ "id": 815,
+ "start": 1544.08,
+ "end": 1544.2,
+ "text": "to"
+ },
+ {
+ "id": 816,
+ "start": 1544.2,
+ "end": 1544.4,
+ "text": "make"
+ },
+ {
+ "id": 817,
+ "start": 1544.4,
+ "end": 1544.84,
+ "text": "meaningful"
+ },
+ {
+ "id": 818,
+ "start": 1544.84,
+ "end": 1545.28,
+ "text": "choices"
+ },
+ {
+ "id": 819,
+ "start": 1545.28,
+ "end": 1546.34,
+ "text": "in"
+ },
+ {
+ "id": 820,
+ "start": 1546.34,
+ "end": 1546.46,
+ "text": "the"
+ },
+ {
+ "id": 821,
+ "start": 1546.46,
+ "end": 1546.76,
+ "text": "past."
+ },
+ {
+ "id": 822,
+ "start": 1546.76,
+ "end": 1547,
+ "text": "Many"
+ },
+ {
+ "id": 823,
+ "start": 1547,
+ "end": 1547.08,
+ "text": "of"
+ },
+ {
+ "id": 824,
+ "start": 1547.08,
+ "end": 1547.24,
+ "text": "my"
+ },
+ {
+ "id": 825,
+ "start": 1547.24,
+ "end": 1547.66,
+ "text": "colleagues"
+ },
+ {
+ "id": 826,
+ "start": 1547.66,
+ "end": 1547.78,
+ "text": "on"
+ },
+ {
+ "id": 827,
+ "start": 1547.78,
+ "end": 1548,
+ "text": "both"
+ },
+ {
+ "id": 828,
+ "start": 1548,
+ "end": 1548.28,
+ "text": "sides."
+ },
+ {
+ "id": 829,
+ "start": 1548.28,
+ "end": 1548.44,
+ "text": "The"
+ },
+ {
+ "id": 830,
+ "start": 1548.44,
+ "end": 1548.72,
+ "text": "aisle"
+ },
+ {
+ "id": 831,
+ "start": 1548.72,
+ "end": 1548.88,
+ "text": "have"
+ },
+ {
+ "id": 832,
+ "start": 1548.88,
+ "end": 1549.02,
+ "text": "been"
+ },
+ {
+ "id": 833,
+ "start": 1549.02,
+ "end": 1549.28,
+ "text": "willing"
+ },
+ {
+ "id": 834,
+ "start": 1549.28,
+ "end": 1549.38,
+ "text": "to"
+ },
+ {
+ "id": 835,
+ "start": 1549.38,
+ "end": 1549.86,
+ "text": "defer"
+ },
+ {
+ "id": 836,
+ "start": 1549.86,
+ "end": 1550.66,
+ "text": "to"
+ },
+ {
+ "id": 837,
+ "start": 1550.66,
+ "end": 1550.94,
+ "text": "tech"
+ },
+ {
+ "id": 838,
+ "start": 1550.94,
+ "end": 1551.38,
+ "text": "company's"
+ },
+ {
+ "id": 839,
+ "start": 1551.38,
+ "end": 1551.78,
+ "text": "efforts"
+ },
+ {
+ "id": 840,
+ "start": 1551.78,
+ "end": 1551.9,
+ "text": "to"
+ },
+ {
+ "id": 841,
+ "start": 1551.9,
+ "end": 1552.38,
+ "text": "regulate"
+ },
+ {
+ "id": 842,
+ "start": 1552.38,
+ "end": 1553.7,
+ "text": "themselves,"
+ },
+ {
+ "id": 843,
+ "start": 1553.7,
+ "end": 1554.52,
+ "text": "but"
+ },
+ {
+ "id": 844,
+ "start": 1554.52,
+ "end": 1554.76,
+ "text": "this"
+ },
+ {
+ "id": 845,
+ "start": 1554.76,
+ "end": 1555.24,
+ "text": "may"
+ },
+ {
+ "id": 846,
+ "start": 1555.24,
+ "end": 1555.36,
+ "text": "be"
+ },
+ {
+ "id": 847,
+ "start": 1555.36,
+ "end": 1556.44,
+ "text": "changing"
+ },
+ {
+ "id": 848,
+ "start": 1556.44,
+ "end": 1557.42,
+ "text": "just"
+ },
+ {
+ "id": 849,
+ "start": 1557.42,
+ "end": 1557.72,
+ "text": "last"
+ },
+ {
+ "id": 850,
+ "start": 1557.72,
+ "end": 1557.98,
+ "text": "month"
+ },
+ {
+ "id": 851,
+ "start": 1557.98,
+ "end": 1558.12,
+ "text": "and"
+ },
+ {
+ "id": 852,
+ "start": 1558.12,
+ "end": 1558.66,
+ "text": "overwhelming"
+ },
+ {
+ "id": 853,
+ "start": 1558.66,
+ "end": 1559.28,
+ "text": "bipartisan"
+ },
+ {
+ "id": 854,
+ "start": 1559.28,
+ "end": 1559.72,
+ "text": "fashion"
+ },
+ {
+ "id": 855,
+ "start": 1559.72,
+ "end": 1560.2,
+ "text": "Congress"
+ },
+ {
+ "id": 856,
+ "start": 1560.2,
+ "end": 1560.46,
+ "text": "voted"
+ },
+ {
+ "id": 857,
+ "start": 1560.46,
+ "end": 1560.58,
+ "text": "to"
+ },
+ {
+ "id": 858,
+ "start": 1560.58,
+ "end": 1560.74,
+ "text": "make"
+ },
+ {
+ "id": 859,
+ "start": 1560.74,
+ "end": 1560.84,
+ "text": "it"
+ },
+ {
+ "id": 860,
+ "start": 1560.84,
+ "end": 1561.24,
+ "text": "easier"
+ },
+ {
+ "id": 861,
+ "start": 1561.24,
+ "end": 1561.76,
+ "text": "for"
+ },
+ {
+ "id": 862,
+ "start": 1561.76,
+ "end": 1562.48,
+ "text": "prosecutors"
+ },
+ {
+ "id": 863,
+ "start": 1562.48,
+ "end": 1562.58,
+ "text": "and"
+ },
+ {
+ "id": 864,
+ "start": 1562.58,
+ "end": 1562.98,
+ "text": "victims"
+ },
+ {
+ "id": 865,
+ "start": 1562.98,
+ "end": 1564.14,
+ "text": "to"
+ },
+ {
+ "id": 866,
+ "start": 1564.14,
+ "end": 1564.28,
+ "text": "go"
+ },
+ {
+ "id": 867,
+ "start": 1564.28,
+ "end": 1564.58,
+ "text": "after"
+ },
+ {
+ "id": 868,
+ "start": 1564.58,
+ "end": 1565.18,
+ "text": "websites"
+ },
+ {
+ "id": 869,
+ "start": 1565.18,
+ "end": 1565.36,
+ "text": "that"
+ },
+ {
+ "id": 870,
+ "start": 1565.36,
+ "end": 1565.78,
+ "text": "knowingly"
+ },
+ {
+ "id": 871,
+ "start": 1565.78,
+ "end": 1566.52,
+ "text": "facilitate"
+ },
+ {
+ "id": 872,
+ "start": 1566.52,
+ "end": 1567,
+ "text": "sex"
+ },
+ {
+ "id": 873,
+ "start": 1567,
+ "end": 1568.16,
+ "text": "trafficking."
+ },
+ {
+ "id": 874,
+ "start": 1568.16,
+ "end": 1568.96,
+ "text": "This"
+ },
+ {
+ "id": 875,
+ "start": 1568.96,
+ "end": 1569.18,
+ "text": "should"
+ },
+ {
+ "id": 876,
+ "start": 1569.18,
+ "end": 1569.28,
+ "text": "be"
+ },
+ {
+ "id": 877,
+ "start": 1569.28,
+ "end": 1569.34,
+ "text": "a"
+ },
+ {
+ "id": 878,
+ "start": 1569.34,
+ "end": 1569.58,
+ "text": "wake"
+ },
+ {
+ "id": 879,
+ "start": 1569.58,
+ "end": 1569.7,
+ "text": "up"
+ },
+ {
+ "id": 880,
+ "start": 1569.7,
+ "end": 1569.94,
+ "text": "call"
+ },
+ {
+ "id": 881,
+ "start": 1569.94,
+ "end": 1570.08,
+ "text": "for"
+ },
+ {
+ "id": 882,
+ "start": 1570.08,
+ "end": 1570.2,
+ "text": "the"
+ },
+ {
+ "id": 883,
+ "start": 1570.2,
+ "end": 1570.42,
+ "text": "tech"
+ },
+ {
+ "id": 884,
+ "start": 1570.42,
+ "end": 1571.06,
+ "text": "community."
+ },
+ {
+ "id": 885,
+ "start": 1571.06,
+ "end": 1572.02,
+ "text": "We"
+ },
+ {
+ "id": 886,
+ "start": 1572.02,
+ "end": 1572.24,
+ "text": "want"
+ },
+ {
+ "id": 887,
+ "start": 1572.24,
+ "end": 1572.34,
+ "text": "to"
+ },
+ {
+ "id": 888,
+ "start": 1572.34,
+ "end": 1572.5,
+ "text": "hear"
+ },
+ {
+ "id": 889,
+ "start": 1572.5,
+ "end": 1572.76,
+ "text": "more"
+ },
+ {
+ "id": 890,
+ "start": 1572.76,
+ "end": 1573.64,
+ "text": "without"
+ },
+ {
+ "id": 891,
+ "start": 1573.64,
+ "end": 1573.98,
+ "text": "delay"
+ },
+ {
+ "id": 892,
+ "start": 1573.98,
+ "end": 1575.06,
+ "text": "about"
+ },
+ {
+ "id": 893,
+ "start": 1575.06,
+ "end": 1575.24,
+ "text": "what"
+ },
+ {
+ "id": 894,
+ "start": 1575.24,
+ "end": 1575.82,
+ "text": "Facebook"
+ },
+ {
+ "id": 895,
+ "start": 1575.82,
+ "end": 1576.68,
+ "text": "and"
+ },
+ {
+ "id": 896,
+ "start": 1576.68,
+ "end": 1577,
+ "text": "other"
+ },
+ {
+ "id": 897,
+ "start": 1577,
+ "end": 1577.42,
+ "text": "companies"
+ },
+ {
+ "id": 898,
+ "start": 1577.42,
+ "end": 1577.8,
+ "text": "plan"
+ },
+ {
+ "id": 899,
+ "start": 1577.8,
+ "end": 1577.9,
+ "text": "to"
+ },
+ {
+ "id": 900,
+ "start": 1577.9,
+ "end": 1578.02,
+ "text": "do"
+ },
+ {
+ "id": 901,
+ "start": 1578.02,
+ "end": 1578.2,
+ "text": "to"
+ },
+ {
+ "id": 902,
+ "start": 1578.2,
+ "end": 1578.4,
+ "text": "take"
+ },
+ {
+ "id": 903,
+ "start": 1578.4,
+ "end": 1578.84,
+ "text": "greater"
+ },
+ {
+ "id": 904,
+ "start": 1578.84,
+ "end": 1579.68,
+ "text": "responsibility"
+ },
+ {
+ "id": 905,
+ "start": 1579.68,
+ "end": 1579.82,
+ "text": "for"
+ },
+ {
+ "id": 906,
+ "start": 1579.82,
+ "end": 1579.96,
+ "text": "what"
+ },
+ {
+ "id": 907,
+ "start": 1579.96,
+ "end": 1580.26,
+ "text": "happens"
+ },
+ {
+ "id": 908,
+ "start": 1580.26,
+ "end": 1580.38,
+ "text": "on"
+ },
+ {
+ "id": 909,
+ "start": 1580.38,
+ "end": 1580.56,
+ "text": "their"
+ },
+ {
+ "id": 910,
+ "start": 1580.56,
+ "end": 1581.76,
+ "text": "platforms."
+ },
+ {
+ "id": 911,
+ "start": 1581.76,
+ "end": 1582.54,
+ "text": "How"
+ },
+ {
+ "id": 912,
+ "start": 1582.54,
+ "end": 1582.74,
+ "text": "will"
+ },
+ {
+ "id": 913,
+ "start": 1582.74,
+ "end": 1582.84,
+ "text": "you"
+ },
+ {
+ "id": 914,
+ "start": 1582.84,
+ "end": 1583.22,
+ "text": "protect"
+ },
+ {
+ "id": 915,
+ "start": 1583.22,
+ "end": 1583.64,
+ "text": "users"
+ },
+ {
+ "id": 916,
+ "start": 1583.64,
+ "end": 1584.22,
+ "text": "data?"
+ },
+ {
+ "id": 917,
+ "start": 1584.22,
+ "end": 1585.18,
+ "text": "How"
+ },
+ {
+ "id": 918,
+ "start": 1585.18,
+ "end": 1585.42,
+ "text": "will"
+ },
+ {
+ "id": 919,
+ "start": 1585.42,
+ "end": 1585.58,
+ "text": "you"
+ },
+ {
+ "id": 920,
+ "start": 1585.58,
+ "end": 1586.26,
+ "text": "inform"
+ },
+ {
+ "id": 921,
+ "start": 1586.26,
+ "end": 1586.82,
+ "text": "users"
+ },
+ {
+ "id": 922,
+ "start": 1586.82,
+ "end": 1587.14,
+ "text": "about"
+ },
+ {
+ "id": 923,
+ "start": 1587.14,
+ "end": 1587.32,
+ "text": "the"
+ },
+ {
+ "id": 924,
+ "start": 1587.32,
+ "end": 1587.8,
+ "text": "changes"
+ },
+ {
+ "id": 925,
+ "start": 1587.8,
+ "end": 1587.96,
+ "text": "that"
+ },
+ {
+ "id": 926,
+ "start": 1587.96,
+ "end": 1588.06,
+ "text": "you"
+ },
+ {
+ "id": 927,
+ "start": 1588.06,
+ "end": 1588.22,
+ "text": "are"
+ },
+ {
+ "id": 928,
+ "start": 1588.22,
+ "end": 1588.78,
+ "text": "making"
+ },
+ {
+ "id": 929,
+ "start": 1588.78,
+ "end": 1589.74,
+ "text": "and"
+ },
+ {
+ "id": 930,
+ "start": 1589.74,
+ "end": 1589.92,
+ "text": "how"
+ },
+ {
+ "id": 931,
+ "start": 1589.92,
+ "end": 1590.04,
+ "text": "do"
+ },
+ {
+ "id": 932,
+ "start": 1590.04,
+ "end": 1590.16,
+ "text": "you"
+ },
+ {
+ "id": 933,
+ "start": 1590.16,
+ "end": 1590.54,
+ "text": "intend"
+ },
+ {
+ "id": 934,
+ "start": 1590.54,
+ "end": 1590.68,
+ "text": "to"
+ },
+ {
+ "id": 935,
+ "start": 1590.68,
+ "end": 1591.46,
+ "text": "proactively"
+ },
+ {
+ "id": 936,
+ "start": 1591.46,
+ "end": 1592.02,
+ "text": "stop"
+ },
+ {
+ "id": 937,
+ "start": 1592.02,
+ "end": 1593.18,
+ "text": "harmful"
+ },
+ {
+ "id": 938,
+ "start": 1593.18,
+ "end": 1593.78,
+ "text": "conduct"
+ },
+ {
+ "id": 939,
+ "start": 1593.78,
+ "end": 1594.16,
+ "text": "instead"
+ },
+ {
+ "id": 940,
+ "start": 1594.16,
+ "end": 1594.28,
+ "text": "of"
+ },
+ {
+ "id": 941,
+ "start": 1594.28,
+ "end": 1594.48,
+ "text": "being"
+ },
+ {
+ "id": 942,
+ "start": 1594.48,
+ "end": 1594.78,
+ "text": "forced"
+ },
+ {
+ "id": 943,
+ "start": 1594.78,
+ "end": 1594.9,
+ "text": "to"
+ },
+ {
+ "id": 944,
+ "start": 1594.9,
+ "end": 1595.38,
+ "text": "respond"
+ },
+ {
+ "id": 945,
+ "start": 1595.38,
+ "end": 1595.52,
+ "text": "to"
+ },
+ {
+ "id": 946,
+ "start": 1595.52,
+ "end": 1595.7,
+ "text": "at"
+ },
+ {
+ "id": 947,
+ "start": 1595.7,
+ "end": 1596,
+ "text": "months"
+ },
+ {
+ "id": 948,
+ "start": 1596,
+ "end": 1596.8,
+ "text": "or"
+ },
+ {
+ "id": 949,
+ "start": 1596.8,
+ "end": 1597.08,
+ "text": "years"
+ },
+ {
+ "id": 950,
+ "start": 1597.08,
+ "end": 1598.12,
+ "text": "later?"
+ },
+ {
+ "id": 951,
+ "start": 1598.12,
+ "end": 1599.08,
+ "text": "Mr"
+ },
+ {
+ "id": 952,
+ "start": 1599.08,
+ "end": 1599.52,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 953,
+ "start": 1599.52,
+ "end": 1599.64,
+ "text": "in"
+ },
+ {
+ "id": 954,
+ "start": 1599.64,
+ "end": 1599.82,
+ "text": "many"
+ },
+ {
+ "id": 955,
+ "start": 1599.82,
+ "end": 1600.02,
+ "text": "ways,"
+ },
+ {
+ "id": 956,
+ "start": 1600.02,
+ "end": 1600.18,
+ "text": "you"
+ },
+ {
+ "id": 957,
+ "start": 1600.18,
+ "end": 1600.32,
+ "text": "and"
+ },
+ {
+ "id": 958,
+ "start": 1600.32,
+ "end": 1600.42,
+ "text": "the"
+ },
+ {
+ "id": 959,
+ "start": 1600.42,
+ "end": 1600.72,
+ "text": "company"
+ },
+ {
+ "id": 960,
+ "start": 1600.72,
+ "end": 1600.9,
+ "text": "that"
+ },
+ {
+ "id": 961,
+ "start": 1600.9,
+ "end": 1601,
+ "text": "you"
+ },
+ {
+ "id": 962,
+ "start": 1601,
+ "end": 1602.22,
+ "text": "created"
+ },
+ {
+ "id": 963,
+ "start": 1602.22,
+ "end": 1603.08,
+ "text": "the"
+ },
+ {
+ "id": 964,
+ "start": 1603.08,
+ "end": 1603.48,
+ "text": "story"
+ },
+ {
+ "id": 965,
+ "start": 1603.48,
+ "end": 1603.64,
+ "text": "that"
+ },
+ {
+ "id": 966,
+ "start": 1603.64,
+ "end": 1603.74,
+ "text": "you"
+ },
+ {
+ "id": 967,
+ "start": 1603.74,
+ "end": 1604.12,
+ "text": "created"
+ },
+ {
+ "id": 968,
+ "start": 1604.12,
+ "end": 1604.5,
+ "text": "represent"
+ },
+ {
+ "id": 969,
+ "start": 1604.5,
+ "end": 1604.64,
+ "text": "the"
+ },
+ {
+ "id": 970,
+ "start": 1604.64,
+ "end": 1605.02,
+ "text": "American"
+ },
+ {
+ "id": 971,
+ "start": 1605.02,
+ "end": 1606.06,
+ "text": "dream."
+ },
+ {
+ "id": 972,
+ "start": 1606.06,
+ "end": 1607.04,
+ "text": "Many"
+ },
+ {
+ "id": 973,
+ "start": 1607.04,
+ "end": 1607.2,
+ "text": "are"
+ },
+ {
+ "id": 974,
+ "start": 1607.2,
+ "end": 1607.68,
+ "text": "incredibly"
+ },
+ {
+ "id": 975,
+ "start": 1607.68,
+ "end": 1608.18,
+ "text": "inspired"
+ },
+ {
+ "id": 976,
+ "start": 1608.18,
+ "end": 1608.32,
+ "text": "by"
+ },
+ {
+ "id": 977,
+ "start": 1608.32,
+ "end": 1608.48,
+ "text": "what"
+ },
+ {
+ "id": 978,
+ "start": 1608.48,
+ "end": 1608.72,
+ "text": "you've"
+ },
+ {
+ "id": 979,
+ "start": 1608.72,
+ "end": 1608.94,
+ "text": "done"
+ },
+ {
+ "id": 980,
+ "start": 1608.94,
+ "end": 1610.04,
+ "text": "at"
+ },
+ {
+ "id": 981,
+ "start": 1610.04,
+ "end": 1610.2,
+ "text": "the"
+ },
+ {
+ "id": 982,
+ "start": 1610.2,
+ "end": 1610.5,
+ "text": "same"
+ },
+ {
+ "id": 983,
+ "start": 1610.5,
+ "end": 1610.84,
+ "text": "time."
+ },
+ {
+ "id": 984,
+ "start": 1610.84,
+ "end": 1611.96,
+ "text": "You"
+ },
+ {
+ "id": 985,
+ "start": 1611.96,
+ "end": 1612.14,
+ "text": "have"
+ },
+ {
+ "id": 986,
+ "start": 1612.14,
+ "end": 1612.22,
+ "text": "an"
+ },
+ {
+ "id": 987,
+ "start": 1612.22,
+ "end": 1612.82,
+ "text": "obligation"
+ },
+ {
+ "id": 988,
+ "start": 1612.82,
+ "end": 1613.12,
+ "text": "and"
+ },
+ {
+ "id": 989,
+ "start": 1613.12,
+ "end": 1613.3,
+ "text": "it's"
+ },
+ {
+ "id": 990,
+ "start": 1613.3,
+ "end": 1613.46,
+ "text": "up"
+ },
+ {
+ "id": 991,
+ "start": 1613.46,
+ "end": 1613.56,
+ "text": "to"
+ },
+ {
+ "id": 992,
+ "start": 1613.56,
+ "end": 1614.56,
+ "text": "you"
+ },
+ {
+ "id": 993,
+ "start": 1614.56,
+ "end": 1614.76,
+ "text": "to"
+ },
+ {
+ "id": 994,
+ "start": 1614.76,
+ "end": 1615.18,
+ "text": "ensure"
+ },
+ {
+ "id": 995,
+ "start": 1615.18,
+ "end": 1615.4,
+ "text": "that"
+ },
+ {
+ "id": 996,
+ "start": 1615.4,
+ "end": 1615.7,
+ "text": "that"
+ },
+ {
+ "id": 997,
+ "start": 1615.7,
+ "end": 1616.08,
+ "text": "dream"
+ },
+ {
+ "id": 998,
+ "start": 1616.08,
+ "end": 1616.48,
+ "text": "doesn't"
+ },
+ {
+ "id": 999,
+ "start": 1616.48,
+ "end": 1616.96,
+ "text": "become"
+ },
+ {
+ "id": 1000,
+ "start": 1616.96,
+ "end": 1617.16,
+ "text": "a"
+ },
+ {
+ "id": 1001,
+ "start": 1617.16,
+ "end": 1617.68,
+ "text": "privacy"
+ },
+ {
+ "id": 1002,
+ "start": 1617.68,
+ "end": 1618.2,
+ "text": "nightmare"
+ },
+ {
+ "id": 1003,
+ "start": 1618.2,
+ "end": 1619.2,
+ "text": "for"
+ },
+ {
+ "id": 1004,
+ "start": 1619.2,
+ "end": 1619.3,
+ "text": "the"
+ },
+ {
+ "id": 1005,
+ "start": 1619.3,
+ "end": 1619.64,
+ "text": "scores"
+ },
+ {
+ "id": 1006,
+ "start": 1619.64,
+ "end": 1619.76,
+ "text": "of"
+ },
+ {
+ "id": 1007,
+ "start": 1619.76,
+ "end": 1620.04,
+ "text": "people"
+ },
+ {
+ "id": 1008,
+ "start": 1620.04,
+ "end": 1620.18,
+ "text": "who"
+ },
+ {
+ "id": 1009,
+ "start": 1620.18,
+ "end": 1620.4,
+ "text": "use"
+ },
+ {
+ "id": 1010,
+ "start": 1620.4,
+ "end": 1621.26,
+ "text": "Facebook."
+ },
+ {
+ "id": 1011,
+ "start": 1621.26,
+ "end": 1622.26,
+ "text": "This"
+ },
+ {
+ "id": 1012,
+ "start": 1622.26,
+ "end": 1622.64,
+ "text": "hearing"
+ },
+ {
+ "id": 1013,
+ "start": 1622.64,
+ "end": 1623.46,
+ "text": "is"
+ },
+ {
+ "id": 1014,
+ "start": 1623.46,
+ "end": 1623.56,
+ "text": "an"
+ },
+ {
+ "id": 1015,
+ "start": 1623.56,
+ "end": 1624.26,
+ "text": "opportunity"
+ },
+ {
+ "id": 1016,
+ "start": 1624.26,
+ "end": 1624.46,
+ "text": "to"
+ },
+ {
+ "id": 1017,
+ "start": 1624.46,
+ "end": 1624.84,
+ "text": "speak"
+ },
+ {
+ "id": 1018,
+ "start": 1624.84,
+ "end": 1624.94,
+ "text": "to"
+ },
+ {
+ "id": 1019,
+ "start": 1624.94,
+ "end": 1625.18,
+ "text": "those"
+ },
+ {
+ "id": 1020,
+ "start": 1625.18,
+ "end": 1625.36,
+ "text": "who"
+ },
+ {
+ "id": 1021,
+ "start": 1625.36,
+ "end": 1625.68,
+ "text": "believe"
+ },
+ {
+ "id": 1022,
+ "start": 1625.68,
+ "end": 1625.78,
+ "text": "in"
+ },
+ {
+ "id": 1023,
+ "start": 1625.78,
+ "end": 1626.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 1024,
+ "start": 1626.9,
+ "end": 1627.64,
+ "text": "and"
+ },
+ {
+ "id": 1025,
+ "start": 1627.64,
+ "end": 1627.98,
+ "text": "those"
+ },
+ {
+ "id": 1026,
+ "start": 1627.98,
+ "end": 1628.12,
+ "text": "who"
+ },
+ {
+ "id": 1027,
+ "start": 1628.12,
+ "end": 1628.32,
+ "text": "are"
+ },
+ {
+ "id": 1028,
+ "start": 1628.32,
+ "end": 1628.82,
+ "text": "deeply"
+ },
+ {
+ "id": 1029,
+ "start": 1628.82,
+ "end": 1629.56,
+ "text": "skeptical"
+ },
+ {
+ "id": 1030,
+ "start": 1629.56,
+ "end": 1630.12,
+ "text": "about"
+ },
+ {
+ "id": 1031,
+ "start": 1630.12,
+ "end": 1630.48,
+ "text": "it."
+ },
+ {
+ "id": 1032,
+ "start": 1630.48,
+ "end": 1631.48,
+ "text": "We"
+ },
+ {
+ "id": 1033,
+ "start": 1631.48,
+ "end": 1631.6,
+ "text": "are"
+ },
+ {
+ "id": 1034,
+ "start": 1631.6,
+ "end": 1632.5,
+ "text": "listening"
+ },
+ {
+ "id": 1035,
+ "start": 1632.5,
+ "end": 1633.48,
+ "text": "America"
+ },
+ {
+ "id": 1036,
+ "start": 1633.48,
+ "end": 1633.58,
+ "text": "is"
+ },
+ {
+ "id": 1037,
+ "start": 1633.58,
+ "end": 1634.06,
+ "text": "listening"
+ },
+ {
+ "id": 1038,
+ "start": 1634.06,
+ "end": 1635.22,
+ "text": "and"
+ },
+ {
+ "id": 1039,
+ "start": 1635.22,
+ "end": 1635.44,
+ "text": "quite"
+ },
+ {
+ "id": 1040,
+ "start": 1635.44,
+ "end": 1635.98,
+ "text": "possibly"
+ },
+ {
+ "id": 1041,
+ "start": 1635.98,
+ "end": 1636.24,
+ "text": "the"
+ },
+ {
+ "id": 1042,
+ "start": 1636.24,
+ "end": 1636.54,
+ "text": "world"
+ },
+ {
+ "id": 1043,
+ "start": 1636.54,
+ "end": 1637,
+ "text": "is"
+ },
+ {
+ "id": 1044,
+ "start": 1637,
+ "end": 1637.4,
+ "text": "listening"
+ },
+ {
+ "id": 1045,
+ "start": 1637.4,
+ "end": 1638.4,
+ "text": "to"
+ },
+ {
+ "id": 1046,
+ "start": 1638.4,
+ "end": 1639.38,
+ "text": "thank"
+ },
+ {
+ "id": 1047,
+ "start": 1639.38,
+ "end": 1639.56,
+ "text": "you."
+ },
+ {
+ "id": 1048,
+ "start": 1639.56,
+ "end": 1639.94,
+ "text": "Now,"
+ },
+ {
+ "id": 1049,
+ "start": 1639.94,
+ "end": 1640.68,
+ "text": "ranking"
+ },
+ {
+ "id": 1050,
+ "start": 1640.68,
+ "end": 1640.94,
+ "text": "member"
+ },
+ {
+ "id": 1051,
+ "start": 1640.94,
+ "end": 1642.32,
+ "text": "Feinstein."
+ },
+ {
+ "id": 1052,
+ "start": 1642.32,
+ "end": 1643.32,
+ "text": "Thank"
+ },
+ {
+ "id": 1053,
+ "start": 1643.32,
+ "end": 1643.44,
+ "text": "you"
+ },
+ {
+ "id": 1054,
+ "start": 1643.44,
+ "end": 1643.64,
+ "text": "very"
+ },
+ {
+ "id": 1055,
+ "start": 1643.64,
+ "end": 1643.86,
+ "text": "much,"
+ },
+ {
+ "id": 1056,
+ "start": 1643.86,
+ "end": 1644.52,
+ "text": "Mr"
+ },
+ {
+ "id": 1057,
+ "start": 1644.52,
+ "end": 1644.9,
+ "text": "Chairman"
+ },
+ {
+ "id": 1058,
+ "start": 1644.9,
+ "end": 1645.42,
+ "text": "Chairman"
+ },
+ {
+ "id": 1059,
+ "start": 1645.42,
+ "end": 1645.94,
+ "text": "Grassley"
+ },
+ {
+ "id": 1060,
+ "start": 1645.94,
+ "end": 1646.7,
+ "text": "chairman"
+ },
+ {
+ "id": 1061,
+ "start": 1646.7,
+ "end": 1647.2,
+ "text": "soon."
+ },
+ {
+ "id": 1062,
+ "start": 1647.2,
+ "end": 1647.48,
+ "text": "Thank"
+ },
+ {
+ "id": 1063,
+ "start": 1647.48,
+ "end": 1647.64,
+ "text": "you"
+ },
+ {
+ "id": 1064,
+ "start": 1647.64,
+ "end": 1647.96,
+ "text": "both"
+ },
+ {
+ "id": 1065,
+ "start": 1647.96,
+ "end": 1648.2,
+ "text": "for"
+ },
+ {
+ "id": 1066,
+ "start": 1648.2,
+ "end": 1648.6,
+ "text": "holding"
+ },
+ {
+ "id": 1067,
+ "start": 1648.6,
+ "end": 1648.84,
+ "text": "this"
+ },
+ {
+ "id": 1068,
+ "start": 1648.84,
+ "end": 1649.28,
+ "text": "hearing,"
+ },
+ {
+ "id": 1069,
+ "start": 1649.28,
+ "end": 1650.18,
+ "text": "Mr"
+ },
+ {
+ "id": 1070,
+ "start": 1650.18,
+ "end": 1650.78,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 1071,
+ "start": 1650.78,
+ "end": 1651.06,
+ "text": "Thank"
+ },
+ {
+ "id": 1072,
+ "start": 1651.06,
+ "end": 1651.32,
+ "text": "you"
+ },
+ {
+ "id": 1073,
+ "start": 1651.32,
+ "end": 1651.62,
+ "text": "for"
+ },
+ {
+ "id": 1074,
+ "start": 1651.62,
+ "end": 1651.92,
+ "text": "being"
+ },
+ {
+ "id": 1075,
+ "start": 1651.92,
+ "end": 1652.54,
+ "text": "here,"
+ },
+ {
+ "id": 1076,
+ "start": 1652.54,
+ "end": 1653.08,
+ "text": "you"
+ },
+ {
+ "id": 1077,
+ "start": 1653.08,
+ "end": 1653.24,
+ "text": "have"
+ },
+ {
+ "id": 1078,
+ "start": 1653.24,
+ "end": 1653.28,
+ "text": "a"
+ },
+ {
+ "id": 1079,
+ "start": 1653.28,
+ "end": 1653.62,
+ "text": "real"
+ },
+ {
+ "id": 1080,
+ "start": 1653.62,
+ "end": 1654.38,
+ "text": "opportunity"
+ },
+ {
+ "id": 1081,
+ "start": 1654.38,
+ "end": 1654.56,
+ "text": "to"
+ },
+ {
+ "id": 1082,
+ "start": 1654.56,
+ "end": 1655.02,
+ "text": "this"
+ },
+ {
+ "id": 1083,
+ "start": 1655.02,
+ "end": 1655.7,
+ "text": "afternoon"
+ },
+ {
+ "id": 1084,
+ "start": 1655.7,
+ "end": 1655.92,
+ "text": "to"
+ },
+ {
+ "id": 1085,
+ "start": 1655.92,
+ "end": 1656.3,
+ "text": "lead"
+ },
+ {
+ "id": 1086,
+ "start": 1656.3,
+ "end": 1656.48,
+ "text": "the"
+ },
+ {
+ "id": 1087,
+ "start": 1656.48,
+ "end": 1657.06,
+ "text": "industry"
+ },
+ {
+ "id": 1088,
+ "start": 1657.06,
+ "end": 1657.74,
+ "text": "and"
+ },
+ {
+ "id": 1089,
+ "start": 1657.74,
+ "end": 1658.42,
+ "text": "demonstrate"
+ },
+ {
+ "id": 1090,
+ "start": 1658.42,
+ "end": 1658.62,
+ "text": "a"
+ },
+ {
+ "id": 1091,
+ "start": 1658.62,
+ "end": 1659.24,
+ "text": "meaningful"
+ },
+ {
+ "id": 1092,
+ "start": 1659.24,
+ "end": 1659.8,
+ "text": "commitment"
+ },
+ {
+ "id": 1093,
+ "start": 1659.8,
+ "end": 1660.2,
+ "text": "to"
+ },
+ {
+ "id": 1094,
+ "start": 1660.2,
+ "end": 1660.8,
+ "text": "protecting"
+ },
+ {
+ "id": 1095,
+ "start": 1660.8,
+ "end": 1661.66,
+ "text": "individual"
+ },
+ {
+ "id": 1096,
+ "start": 1661.66,
+ "end": 1662.76,
+ "text": "privacy."
+ },
+ {
+ "id": 1097,
+ "start": 1662.76,
+ "end": 1663.3,
+ "text": "We"
+ },
+ {
+ "id": 1098,
+ "start": 1663.3,
+ "end": 1663.48,
+ "text": "have"
+ },
+ {
+ "id": 1099,
+ "start": 1663.48,
+ "end": 1663.78,
+ "text": "learned"
+ },
+ {
+ "id": 1100,
+ "start": 1663.78,
+ "end": 1664.02,
+ "text": "over"
+ },
+ {
+ "id": 1101,
+ "start": 1664.02,
+ "end": 1664.18,
+ "text": "the"
+ },
+ {
+ "id": 1102,
+ "start": 1664.18,
+ "end": 1664.48,
+ "text": "past"
+ },
+ {
+ "id": 1103,
+ "start": 1664.48,
+ "end": 1664.76,
+ "text": "few"
+ },
+ {
+ "id": 1104,
+ "start": 1664.76,
+ "end": 1665.1,
+ "text": "months"
+ },
+ {
+ "id": 1105,
+ "start": 1665.1,
+ "end": 1665.92,
+ "text": "and"
+ },
+ {
+ "id": 1106,
+ "start": 1665.92,
+ "end": 1666.2,
+ "text": "we've"
+ },
+ {
+ "id": 1107,
+ "start": 1666.2,
+ "end": 1666.56,
+ "text": "learned"
+ },
+ {
+ "id": 1108,
+ "start": 1666.56,
+ "end": 1666.78,
+ "text": "a"
+ },
+ {
+ "id": 1109,
+ "start": 1666.78,
+ "end": 1667.06,
+ "text": "great"
+ },
+ {
+ "id": 1110,
+ "start": 1667.06,
+ "end": 1667.3,
+ "text": "deal"
+ },
+ {
+ "id": 1111,
+ "start": 1667.3,
+ "end": 1667.54,
+ "text": "that"
+ },
+ {
+ "id": 1112,
+ "start": 1667.54,
+ "end": 1668.26,
+ "text": "that's"
+ },
+ {
+ "id": 1113,
+ "start": 1668.26,
+ "end": 1668.9,
+ "text": "alarming"
+ },
+ {
+ "id": 1114,
+ "start": 1668.9,
+ "end": 1669.68,
+ "text": "we've"
+ },
+ {
+ "id": 1115,
+ "start": 1669.68,
+ "end": 1670,
+ "text": "seen"
+ },
+ {
+ "id": 1116,
+ "start": 1670,
+ "end": 1670.26,
+ "text": "how"
+ },
+ {
+ "id": 1117,
+ "start": 1670.26,
+ "end": 1670.7,
+ "text": "foreign"
+ },
+ {
+ "id": 1118,
+ "start": 1670.7,
+ "end": 1671.22,
+ "text": "actors"
+ },
+ {
+ "id": 1119,
+ "start": 1671.22,
+ "end": 1671.78,
+ "text": "are"
+ },
+ {
+ "id": 1120,
+ "start": 1671.78,
+ "end": 1672.38,
+ "text": "abusing"
+ },
+ {
+ "id": 1121,
+ "start": 1672.38,
+ "end": 1672.9,
+ "text": "social"
+ },
+ {
+ "id": 1122,
+ "start": 1672.9,
+ "end": 1673.42,
+ "text": "media"
+ },
+ {
+ "id": 1123,
+ "start": 1673.42,
+ "end": 1674.18,
+ "text": "platforms"
+ },
+ {
+ "id": 1124,
+ "start": 1674.18,
+ "end": 1674.92,
+ "text": "like"
+ },
+ {
+ "id": 1125,
+ "start": 1674.92,
+ "end": 1675.97,
+ "text": "Facebook"
+ },
+ {
+ "id": 1126,
+ "start": 1675.97,
+ "end": 1676.11,
+ "text": "to"
+ },
+ {
+ "id": 1127,
+ "start": 1676.11,
+ "end": 1676.69,
+ "text": "interfere"
+ },
+ {
+ "id": 1128,
+ "start": 1676.69,
+ "end": 1677.01,
+ "text": "in"
+ },
+ {
+ "id": 1129,
+ "start": 1677.01,
+ "end": 1677.65,
+ "text": "elections"
+ },
+ {
+ "id": 1130,
+ "start": 1677.65,
+ "end": 1678.41,
+ "text": "and"
+ },
+ {
+ "id": 1131,
+ "start": 1678.41,
+ "end": 1679.15,
+ "text": "take"
+ },
+ {
+ "id": 1132,
+ "start": 1679.15,
+ "end": 1679.73,
+ "text": "millions"
+ },
+ {
+ "id": 1133,
+ "start": 1679.73,
+ "end": 1679.89,
+ "text": "of"
+ },
+ {
+ "id": 1134,
+ "start": 1679.89,
+ "end": 1680.55,
+ "text": "Americans"
+ },
+ {
+ "id": 1135,
+ "start": 1680.55,
+ "end": 1681.15,
+ "text": "personal"
+ },
+ {
+ "id": 1136,
+ "start": 1681.15,
+ "end": 1681.97,
+ "text": "information"
+ },
+ {
+ "id": 1137,
+ "start": 1681.97,
+ "end": 1682.67,
+ "text": "without"
+ },
+ {
+ "id": 1138,
+ "start": 1682.67,
+ "end": 1682.91,
+ "text": "their"
+ },
+ {
+ "id": 1139,
+ "start": 1682.91,
+ "end": 1683.39,
+ "text": "knowledge"
+ },
+ {
+ "id": 1140,
+ "start": 1683.39,
+ "end": 1684.01,
+ "text": "in"
+ },
+ {
+ "id": 1141,
+ "start": 1684.01,
+ "end": 1684.49,
+ "text": "order"
+ },
+ {
+ "id": 1142,
+ "start": 1684.49,
+ "end": 1684.65,
+ "text": "to"
+ },
+ {
+ "id": 1143,
+ "start": 1684.65,
+ "end": 1685.39,
+ "text": "manipulate"
+ },
+ {
+ "id": 1144,
+ "start": 1685.39,
+ "end": 1685.89,
+ "text": "public"
+ },
+ {
+ "id": 1145,
+ "start": 1685.89,
+ "end": 1686.39,
+ "text": "opinion"
+ },
+ {
+ "id": 1146,
+ "start": 1686.39,
+ "end": 1686.93,
+ "text": "and"
+ },
+ {
+ "id": 1147,
+ "start": 1686.93,
+ "end": 1687.47,
+ "text": "target"
+ },
+ {
+ "id": 1148,
+ "start": 1687.47,
+ "end": 1688.37,
+ "text": "individual"
+ },
+ {
+ "id": 1149,
+ "start": 1688.37,
+ "end": 1689.18,
+ "text": "voters"
+ },
+ {
+ "id": 1150,
+ "start": 1689.18,
+ "end": 1690.32,
+ "text": "specifically"
+ },
+ {
+ "id": 1151,
+ "start": 1690.32,
+ "end": 1690.96,
+ "text": "on"
+ },
+ {
+ "id": 1152,
+ "start": 1690.96,
+ "end": 1691.44,
+ "text": "February"
+ },
+ {
+ "id": 1153,
+ "start": 1691.44,
+ "end": 1692.3,
+ "text": "16"
+ },
+ {
+ "id": 1154,
+ "start": 1692.3,
+ "end": 1693.16,
+ "text": "special"
+ },
+ {
+ "id": 1155,
+ "start": 1693.16,
+ "end": 1693.6,
+ "text": "counsel"
+ },
+ {
+ "id": 1156,
+ "start": 1693.6,
+ "end": 1693.98,
+ "text": "Muller"
+ },
+ {
+ "id": 1157,
+ "start": 1693.98,
+ "end": 1694.88,
+ "text": "issued"
+ },
+ {
+ "id": 1158,
+ "start": 1694.88,
+ "end": 1695.04,
+ "text": "an"
+ },
+ {
+ "id": 1159,
+ "start": 1695.04,
+ "end": 1695.78,
+ "text": "indictment"
+ },
+ {
+ "id": 1160,
+ "start": 1695.78,
+ "end": 1696.48,
+ "text": "against"
+ },
+ {
+ "id": 1161,
+ "start": 1696.48,
+ "end": 1696.72,
+ "text": "the"
+ },
+ {
+ "id": 1162,
+ "start": 1696.72,
+ "end": 1697.16,
+ "text": "Russia"
+ },
+ {
+ "id": 1163,
+ "start": 1697.16,
+ "end": 1697.56,
+ "text": "based"
+ },
+ {
+ "id": 1164,
+ "start": 1697.56,
+ "end": 1698.32,
+ "text": "Internet"
+ },
+ {
+ "id": 1165,
+ "start": 1698.32,
+ "end": 1699.36,
+ "text": "Internet"
+ },
+ {
+ "id": 1166,
+ "start": 1699.36,
+ "end": 1700.1,
+ "text": "Research"
+ },
+ {
+ "id": 1167,
+ "start": 1700.1,
+ "end": 1700.86,
+ "text": "Agency"
+ },
+ {
+ "id": 1168,
+ "start": 1700.86,
+ "end": 1701.52,
+ "text": "and"
+ },
+ {
+ "id": 1169,
+ "start": 1701.52,
+ "end": 1702.22,
+ "text": "13"
+ },
+ {
+ "id": 1170,
+ "start": 1702.22,
+ "end": 1702.72,
+ "text": "of"
+ },
+ {
+ "id": 1171,
+ "start": 1702.72,
+ "end": 1702.9,
+ "text": "its"
+ },
+ {
+ "id": 1172,
+ "start": 1702.9,
+ "end": 1703.8,
+ "text": "employees"
+ },
+ {
+ "id": 1173,
+ "start": 1703.8,
+ "end": 1704.46,
+ "text": "for"
+ },
+ {
+ "id": 1174,
+ "start": 1704.46,
+ "end": 1705.26,
+ "text": "interfering"
+ },
+ {
+ "id": 1175,
+ "start": 1705.26,
+ "end": 1706.4,
+ "text": "operations"
+ },
+ {
+ "id": 1176,
+ "start": 1706.4,
+ "end": 1707.24,
+ "text": "targeting"
+ },
+ {
+ "id": 1177,
+ "start": 1707.24,
+ "end": 1707.9,
+ "text": "targeting"
+ },
+ {
+ "id": 1178,
+ "start": 1707.9,
+ "end": 1708.26,
+ "text": "the"
+ },
+ {
+ "id": 1179,
+ "start": 1708.26,
+ "end": 1708.7,
+ "text": "United"
+ },
+ {
+ "id": 1180,
+ "start": 1708.7,
+ "end": 1709.54,
+ "text": "States"
+ },
+ {
+ "id": 1181,
+ "start": 1709.54,
+ "end": 1710.2,
+ "text": "through"
+ },
+ {
+ "id": 1182,
+ "start": 1710.2,
+ "end": 1710.44,
+ "text": "this"
+ },
+ {
+ "id": 1183,
+ "start": 1710.44,
+ "end": 1711.68,
+ "text": "37"
+ },
+ {
+ "id": 1184,
+ "start": 1711.68,
+ "end": 1712.14,
+ "text": "page"
+ },
+ {
+ "id": 1185,
+ "start": 1712.14,
+ "end": 1712.78,
+ "text": "indictment."
+ },
+ {
+ "id": 1186,
+ "start": 1712.78,
+ "end": 1713.44,
+ "text": "We"
+ },
+ {
+ "id": 1187,
+ "start": 1713.44,
+ "end": 1713.88,
+ "text": "learned"
+ },
+ {
+ "id": 1188,
+ "start": 1713.88,
+ "end": 1714.1,
+ "text": "that"
+ },
+ {
+ "id": 1189,
+ "start": 1714.1,
+ "end": 1714.3,
+ "text": "the"
+ },
+ {
+ "id": 1190,
+ "start": 1714.3,
+ "end": 1715.08,
+ "text": "IRA"
+ },
+ {
+ "id": 1191,
+ "start": 1715.08,
+ "end": 1715.54,
+ "text": "ran"
+ },
+ {
+ "id": 1192,
+ "start": 1715.54,
+ "end": 1715.76,
+ "text": "a"
+ },
+ {
+ "id": 1193,
+ "start": 1715.76,
+ "end": 1716.64,
+ "text": "coordinated"
+ },
+ {
+ "id": 1194,
+ "start": 1716.64,
+ "end": 1717.42,
+ "text": "campaign"
+ },
+ {
+ "id": 1195,
+ "start": 1717.42,
+ "end": 1718.12,
+ "text": "through"
+ },
+ {
+ "id": 1196,
+ "start": 1718.12,
+ "end": 1719.8,
+ "text": "470"
+ },
+ {
+ "id": 1197,
+ "start": 1719.8,
+ "end": 1720.72,
+ "text": "Facebook"
+ },
+ {
+ "id": 1198,
+ "start": 1720.72,
+ "end": 1721.52,
+ "text": "accounts"
+ },
+ {
+ "id": 1199,
+ "start": 1721.52,
+ "end": 1722,
+ "text": "and"
+ },
+ {
+ "id": 1200,
+ "start": 1722,
+ "end": 1722.54,
+ "text": "pages."
+ },
+ {
+ "id": 1201,
+ "start": 1722.54,
+ "end": 1723.3,
+ "text": "The"
+ },
+ {
+ "id": 1202,
+ "start": 1723.3,
+ "end": 1723.89,
+ "text": "campaign"
+ },
+ {
+ "id": 1203,
+ "start": 1723.89,
+ "end": 1724.47,
+ "text": "included"
+ },
+ {
+ "id": 1204,
+ "start": 1724.47,
+ "end": 1724.97,
+ "text": "ads"
+ },
+ {
+ "id": 1205,
+ "start": 1724.97,
+ "end": 1725.39,
+ "text": "and"
+ },
+ {
+ "id": 1206,
+ "start": 1725.39,
+ "end": 1725.73,
+ "text": "false"
+ },
+ {
+ "id": 1207,
+ "start": 1725.73,
+ "end": 1726.53,
+ "text": "information"
+ },
+ {
+ "id": 1208,
+ "start": 1726.53,
+ "end": 1727.13,
+ "text": "to"
+ },
+ {
+ "id": 1209,
+ "start": 1727.13,
+ "end": 1727.55,
+ "text": "create"
+ },
+ {
+ "id": 1210,
+ "start": 1727.55,
+ "end": 1728.23,
+ "text": "discord"
+ },
+ {
+ "id": 1211,
+ "start": 1728.23,
+ "end": 1728.51,
+ "text": "and"
+ },
+ {
+ "id": 1212,
+ "start": 1728.51,
+ "end": 1729.01,
+ "text": "harm"
+ },
+ {
+ "id": 1213,
+ "start": 1729.01,
+ "end": 1729.97,
+ "text": "Secretary"
+ },
+ {
+ "id": 1214,
+ "start": 1729.97,
+ "end": 1730.43,
+ "text": "Clinton's"
+ },
+ {
+ "id": 1215,
+ "start": 1730.43,
+ "end": 1731.35,
+ "text": "campaign"
+ },
+ {
+ "id": 1216,
+ "start": 1731.35,
+ "end": 1732.01,
+ "text": "and"
+ },
+ {
+ "id": 1217,
+ "start": 1732.01,
+ "end": 1732.17,
+ "text": "the"
+ },
+ {
+ "id": 1218,
+ "start": 1732.17,
+ "end": 1732.75,
+ "text": "content"
+ },
+ {
+ "id": 1219,
+ "start": 1732.75,
+ "end": 1733.13,
+ "text": "was"
+ },
+ {
+ "id": 1220,
+ "start": 1733.13,
+ "end": 1733.47,
+ "text": "seen"
+ },
+ {
+ "id": 1221,
+ "start": 1733.47,
+ "end": 1733.69,
+ "text": "by"
+ },
+ {
+ "id": 1222,
+ "start": 1733.69,
+ "end": 1733.83,
+ "text": "an"
+ },
+ {
+ "id": 1223,
+ "start": 1733.83,
+ "end": 1734.53,
+ "text": "estimated"
+ },
+ {
+ "id": 1224,
+ "start": 1734.53,
+ "end": 1737.11,
+ "text": "157,000,000"
+ },
+ {
+ "id": 1225,
+ "start": 1737.11,
+ "end": 1738.24,
+ "text": "Americans"
+ },
+ {
+ "id": 1226,
+ "start": 1738.24,
+ "end": 1738.66,
+ "text": "a"
+ },
+ {
+ "id": 1227,
+ "start": 1738.66,
+ "end": 1738.94,
+ "text": "month"
+ },
+ {
+ "id": 1228,
+ "start": 1738.94,
+ "end": 1739.4,
+ "text": "later"
+ },
+ {
+ "id": 1229,
+ "start": 1739.4,
+ "end": 1740.14,
+ "text": "on"
+ },
+ {
+ "id": 1230,
+ "start": 1740.14,
+ "end": 1740.44,
+ "text": "March"
+ },
+ {
+ "id": 1231,
+ "start": 1740.44,
+ "end": 1741.22,
+ "text": "seventeenth"
+ },
+ {
+ "id": 1232,
+ "start": 1741.22,
+ "end": 1742.2,
+ "text": "news"
+ },
+ {
+ "id": 1233,
+ "start": 1742.2,
+ "end": 1742.62,
+ "text": "broke"
+ },
+ {
+ "id": 1234,
+ "start": 1742.62,
+ "end": 1742.9,
+ "text": "that"
+ },
+ {
+ "id": 1235,
+ "start": 1742.9,
+ "end": 1743.52,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1236,
+ "start": 1743.52,
+ "end": 1744.72,
+ "text": "Analytica"
+ },
+ {
+ "id": 1237,
+ "start": 1744.72,
+ "end": 1745.72,
+ "text": "exploited"
+ },
+ {
+ "id": 1238,
+ "start": 1745.72,
+ "end": 1745.9,
+ "text": "the"
+ },
+ {
+ "id": 1239,
+ "start": 1745.9,
+ "end": 1746.42,
+ "text": "personal"
+ },
+ {
+ "id": 1240,
+ "start": 1746.42,
+ "end": 1747.28,
+ "text": "information"
+ },
+ {
+ "id": 1241,
+ "start": 1747.28,
+ "end": 1747.92,
+ "text": "of"
+ },
+ {
+ "id": 1242,
+ "start": 1747.92,
+ "end": 1748.76,
+ "text": "approximately"
+ },
+ {
+ "id": 1243,
+ "start": 1748.76,
+ "end": 1749.84,
+ "text": "50,000,000"
+ },
+ {
+ "id": 1244,
+ "start": 1749.84,
+ "end": 1750.8,
+ "text": "Facebook"
+ },
+ {
+ "id": 1245,
+ "start": 1750.8,
+ "end": 1751.4,
+ "text": "users"
+ },
+ {
+ "id": 1246,
+ "start": 1751.4,
+ "end": 1752.22,
+ "text": "without"
+ },
+ {
+ "id": 1247,
+ "start": 1752.22,
+ "end": 1752.54,
+ "text": "their"
+ },
+ {
+ "id": 1248,
+ "start": 1752.54,
+ "end": 1753,
+ "text": "knowledge"
+ },
+ {
+ "id": 1249,
+ "start": 1753,
+ "end": 1753.42,
+ "text": "or"
+ },
+ {
+ "id": 1250,
+ "start": 1753.42,
+ "end": 1754.36,
+ "text": "permission."
+ },
+ {
+ "id": 1251,
+ "start": 1754.36,
+ "end": 1754.88,
+ "text": "And"
+ },
+ {
+ "id": 1252,
+ "start": 1754.88,
+ "end": 1755.28,
+ "text": "last"
+ },
+ {
+ "id": 1253,
+ "start": 1755.28,
+ "end": 1755.6,
+ "text": "week"
+ },
+ {
+ "id": 1254,
+ "start": 1755.6,
+ "end": 1756.08,
+ "text": "we"
+ },
+ {
+ "id": 1255,
+ "start": 1756.08,
+ "end": 1756.56,
+ "text": "learned"
+ },
+ {
+ "id": 1256,
+ "start": 1756.56,
+ "end": 1756.94,
+ "text": "that"
+ },
+ {
+ "id": 1257,
+ "start": 1756.94,
+ "end": 1757.3,
+ "text": "number"
+ },
+ {
+ "id": 1258,
+ "start": 1757.3,
+ "end": 1757.6,
+ "text": "was"
+ },
+ {
+ "id": 1259,
+ "start": 1757.6,
+ "end": 1757.92,
+ "text": "even"
+ },
+ {
+ "id": 1260,
+ "start": 1757.92,
+ "end": 1758.34,
+ "text": "higher"
+ },
+ {
+ "id": 1261,
+ "start": 1758.34,
+ "end": 1760.3,
+ "text": "87,000,000"
+ },
+ {
+ "id": 1262,
+ "start": 1760.3,
+ "end": 1761.08,
+ "text": "Facebook"
+ },
+ {
+ "id": 1263,
+ "start": 1761.08,
+ "end": 1761.7,
+ "text": "users"
+ },
+ {
+ "id": 1264,
+ "start": 1761.7,
+ "end": 1762.12,
+ "text": "who"
+ },
+ {
+ "id": 1265,
+ "start": 1762.12,
+ "end": 1762.4,
+ "text": "had"
+ },
+ {
+ "id": 1266,
+ "start": 1762.4,
+ "end": 1762.62,
+ "text": "their"
+ },
+ {
+ "id": 1267,
+ "start": 1762.62,
+ "end": 1763.06,
+ "text": "private"
+ },
+ {
+ "id": 1268,
+ "start": 1763.06,
+ "end": 1763.78,
+ "text": "information"
+ },
+ {
+ "id": 1269,
+ "start": 1763.78,
+ "end": 1764.58,
+ "text": "taken"
+ },
+ {
+ "id": 1270,
+ "start": 1764.58,
+ "end": 1765.2,
+ "text": "without"
+ },
+ {
+ "id": 1271,
+ "start": 1765.2,
+ "end": 1765.46,
+ "text": "their"
+ },
+ {
+ "id": 1272,
+ "start": 1765.46,
+ "end": 1766.42,
+ "text": "consent."
+ },
+ {
+ "id": 1273,
+ "start": 1766.42,
+ "end": 1767.6,
+ "text": "Specifically"
+ },
+ {
+ "id": 1274,
+ "start": 1767.6,
+ "end": 1768.68,
+ "text": "using"
+ },
+ {
+ "id": 1275,
+ "start": 1768.68,
+ "end": 1768.72,
+ "text": "a"
+ },
+ {
+ "id": 1276,
+ "start": 1768.72,
+ "end": 1769.76,
+ "text": "personality"
+ },
+ {
+ "id": 1277,
+ "start": 1769.76,
+ "end": 1770.16,
+ "text": "quiz,"
+ },
+ {
+ "id": 1278,
+ "start": 1770.16,
+ "end": 1770.26,
+ "text": "he"
+ },
+ {
+ "id": 1279,
+ "start": 1770.26,
+ "end": 1770.94,
+ "text": "created"
+ },
+ {
+ "id": 1280,
+ "start": 1770.94,
+ "end": 1771.94,
+ "text": "professor"
+ },
+ {
+ "id": 1281,
+ "start": 1771.94,
+ "end": 1772.48,
+ "text": "Kogan"
+ },
+ {
+ "id": 1282,
+ "start": 1772.48,
+ "end": 1773.04,
+ "text": "collected"
+ },
+ {
+ "id": 1283,
+ "start": 1773.04,
+ "end": 1773.2,
+ "text": "the"
+ },
+ {
+ "id": 1284,
+ "start": 1773.2,
+ "end": 1773.76,
+ "text": "personal"
+ },
+ {
+ "id": 1285,
+ "start": 1773.76,
+ "end": 1774.5,
+ "text": "information"
+ },
+ {
+ "id": 1286,
+ "start": 1774.5,
+ "end": 1775.06,
+ "text": "of"
+ },
+ {
+ "id": 1287,
+ "start": 1775.06,
+ "end": 1776.32,
+ "text": "300,000"
+ },
+ {
+ "id": 1288,
+ "start": 1776.32,
+ "end": 1777.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 1289,
+ "start": 1777.26,
+ "end": 1777.82,
+ "text": "users"
+ },
+ {
+ "id": 1290,
+ "start": 1777.82,
+ "end": 1778.52,
+ "text": "and"
+ },
+ {
+ "id": 1291,
+ "start": 1778.52,
+ "end": 1778.78,
+ "text": "then"
+ },
+ {
+ "id": 1292,
+ "start": 1778.78,
+ "end": 1779.36,
+ "text": "collected"
+ },
+ {
+ "id": 1293,
+ "start": 1779.36,
+ "end": 1779.82,
+ "text": "data"
+ },
+ {
+ "id": 1294,
+ "start": 1779.82,
+ "end": 1780.3,
+ "text": "on"
+ },
+ {
+ "id": 1295,
+ "start": 1780.3,
+ "end": 1780.88,
+ "text": "millions"
+ },
+ {
+ "id": 1296,
+ "start": 1780.88,
+ "end": 1781.28,
+ "text": "of"
+ },
+ {
+ "id": 1297,
+ "start": 1781.28,
+ "end": 1781.5,
+ "text": "their"
+ },
+ {
+ "id": 1298,
+ "start": 1781.5,
+ "end": 1782.26,
+ "text": "friends."
+ },
+ {
+ "id": 1299,
+ "start": 1782.26,
+ "end": 1782.74,
+ "text": "It"
+ },
+ {
+ "id": 1300,
+ "start": 1782.74,
+ "end": 1783.26,
+ "text": "appears"
+ },
+ {
+ "id": 1301,
+ "start": 1783.26,
+ "end": 1783.54,
+ "text": "the"
+ },
+ {
+ "id": 1302,
+ "start": 1783.54,
+ "end": 1784.3,
+ "text": "information"
+ },
+ {
+ "id": 1303,
+ "start": 1784.3,
+ "end": 1785.04,
+ "text": "collected"
+ },
+ {
+ "id": 1304,
+ "start": 1785.04,
+ "end": 1786.18,
+ "text": "included"
+ },
+ {
+ "id": 1305,
+ "start": 1786.18,
+ "end": 1786.92,
+ "text": "everything"
+ },
+ {
+ "id": 1306,
+ "start": 1786.92,
+ "end": 1787.44,
+ "text": "these"
+ },
+ {
+ "id": 1307,
+ "start": 1787.44,
+ "end": 1788.22,
+ "text": "individuals"
+ },
+ {
+ "id": 1308,
+ "start": 1788.22,
+ "end": 1788.68,
+ "text": "had"
+ },
+ {
+ "id": 1309,
+ "start": 1788.68,
+ "end": 1789.16,
+ "text": "on"
+ },
+ {
+ "id": 1310,
+ "start": 1789.16,
+ "end": 1789.36,
+ "text": "their"
+ },
+ {
+ "id": 1311,
+ "start": 1789.36,
+ "end": 1789.88,
+ "text": "Facebook"
+ },
+ {
+ "id": 1312,
+ "start": 1789.88,
+ "end": 1790.42,
+ "text": "pages."
+ },
+ {
+ "id": 1313,
+ "start": 1790.42,
+ "end": 1791.18,
+ "text": "And"
+ },
+ {
+ "id": 1314,
+ "start": 1791.18,
+ "end": 1791.68,
+ "text": "according"
+ },
+ {
+ "id": 1315,
+ "start": 1791.68,
+ "end": 1791.86,
+ "text": "to"
+ },
+ {
+ "id": 1316,
+ "start": 1791.86,
+ "end": 1792.14,
+ "text": "some"
+ },
+ {
+ "id": 1317,
+ "start": 1792.14,
+ "end": 1792.68,
+ "text": "reports"
+ },
+ {
+ "id": 1318,
+ "start": 1792.68,
+ "end": 1793.46,
+ "text": "even"
+ },
+ {
+ "id": 1319,
+ "start": 1793.46,
+ "end": 1794.1,
+ "text": "included"
+ },
+ {
+ "id": 1320,
+ "start": 1794.1,
+ "end": 1794.66,
+ "text": "private"
+ },
+ {
+ "id": 1321,
+ "start": 1794.66,
+ "end": 1795.24,
+ "text": "direct"
+ },
+ {
+ "id": 1322,
+ "start": 1795.24,
+ "end": 1795.88,
+ "text": "messages"
+ },
+ {
+ "id": 1323,
+ "start": 1795.88,
+ "end": 1796.68,
+ "text": "between"
+ },
+ {
+ "id": 1324,
+ "start": 1796.68,
+ "end": 1797.82,
+ "text": "users."
+ },
+ {
+ "id": 1325,
+ "start": 1797.82,
+ "end": 1798.7,
+ "text": "Professor"
+ },
+ {
+ "id": 1326,
+ "start": 1798.7,
+ "end": 1799.14,
+ "text": "Hogan"
+ },
+ {
+ "id": 1327,
+ "start": 1799.14,
+ "end": 1799.3,
+ "text": "is"
+ },
+ {
+ "id": 1328,
+ "start": 1799.3,
+ "end": 1799.54,
+ "text": "said"
+ },
+ {
+ "id": 1329,
+ "start": 1799.54,
+ "end": 1799.66,
+ "text": "to"
+ },
+ {
+ "id": 1330,
+ "start": 1799.66,
+ "end": 1799.82,
+ "text": "have"
+ },
+ {
+ "id": 1331,
+ "start": 1799.82,
+ "end": 1800.2,
+ "text": "taken"
+ },
+ {
+ "id": 1332,
+ "start": 1800.2,
+ "end": 1800.68,
+ "text": "data"
+ },
+ {
+ "id": 1333,
+ "start": 1800.68,
+ "end": 1801.18,
+ "text": "from"
+ },
+ {
+ "id": 1334,
+ "start": 1801.18,
+ "end": 1801.5,
+ "text": "over"
+ },
+ {
+ "id": 1335,
+ "start": 1801.5,
+ "end": 1802.72,
+ "text": "70,000,000"
+ },
+ {
+ "id": 1336,
+ "start": 1802.72,
+ "end": 1803.6,
+ "text": "Americans,"
+ },
+ {
+ "id": 1337,
+ "start": 1803.6,
+ "end": 1804.26,
+ "text": "it"
+ },
+ {
+ "id": 1338,
+ "start": 1804.26,
+ "end": 1804.4,
+ "text": "has"
+ },
+ {
+ "id": 1339,
+ "start": 1804.4,
+ "end": 1804.8,
+ "text": "also"
+ },
+ {
+ "id": 1340,
+ "start": 1804.8,
+ "end": 1805.04,
+ "text": "been"
+ },
+ {
+ "id": 1341,
+ "start": 1805.04,
+ "end": 1805.62,
+ "text": "reported"
+ },
+ {
+ "id": 1342,
+ "start": 1805.62,
+ "end": 1806.08,
+ "text": "that"
+ },
+ {
+ "id": 1343,
+ "start": 1806.08,
+ "end": 1806.18,
+ "text": "he"
+ },
+ {
+ "id": 1344,
+ "start": 1806.18,
+ "end": 1806.6,
+ "text": "sold"
+ },
+ {
+ "id": 1345,
+ "start": 1806.6,
+ "end": 1806.86,
+ "text": "this"
+ },
+ {
+ "id": 1346,
+ "start": 1806.86,
+ "end": 1807.36,
+ "text": "data"
+ },
+ {
+ "id": 1347,
+ "start": 1807.36,
+ "end": 1807.82,
+ "text": "to"
+ },
+ {
+ "id": 1348,
+ "start": 1807.82,
+ "end": 1808.44,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1349,
+ "start": 1808.44,
+ "end": 1809.44,
+ "text": "Analytica"
+ },
+ {
+ "id": 1350,
+ "start": 1809.44,
+ "end": 1809.82,
+ "text": "for"
+ },
+ {
+ "id": 1351,
+ "start": 1809.82,
+ "end": 1811.12,
+ "text": "800,000"
+ },
+ {
+ "id": 1352,
+ "start": 1811.12,
+ "end": 1811.96,
+ "text": "dollars."
+ },
+ {
+ "id": 1353,
+ "start": 1811.96,
+ "end": 1812.84,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1354,
+ "start": 1812.84,
+ "end": 1813.44,
+ "text": "Analytica"
+ },
+ {
+ "id": 1355,
+ "start": 1813.44,
+ "end": 1813.92,
+ "text": "then"
+ },
+ {
+ "id": 1356,
+ "start": 1813.92,
+ "end": 1814.24,
+ "text": "took"
+ },
+ {
+ "id": 1357,
+ "start": 1814.24,
+ "end": 1814.5,
+ "text": "this"
+ },
+ {
+ "id": 1358,
+ "start": 1814.5,
+ "end": 1814.92,
+ "text": "data"
+ },
+ {
+ "id": 1359,
+ "start": 1814.92,
+ "end": 1815.42,
+ "text": "and"
+ },
+ {
+ "id": 1360,
+ "start": 1815.42,
+ "end": 1816.02,
+ "text": "created"
+ },
+ {
+ "id": 1361,
+ "start": 1816.02,
+ "end": 1816.28,
+ "text": "a"
+ },
+ {
+ "id": 1362,
+ "start": 1816.28,
+ "end": 1817.3,
+ "text": "psychological"
+ },
+ {
+ "id": 1363,
+ "start": 1817.3,
+ "end": 1817.88,
+ "text": "welfare"
+ },
+ {
+ "id": 1364,
+ "start": 1817.88,
+ "end": 1818.26,
+ "text": "tool"
+ },
+ {
+ "id": 1365,
+ "start": 1818.26,
+ "end": 1818.9,
+ "text": "to"
+ },
+ {
+ "id": 1366,
+ "start": 1818.9,
+ "end": 1819.56,
+ "text": "influence"
+ },
+ {
+ "id": 1367,
+ "start": 1819.56,
+ "end": 1820.26,
+ "text": "United"
+ },
+ {
+ "id": 1368,
+ "start": 1820.26,
+ "end": 1820.58,
+ "text": "States"
+ },
+ {
+ "id": 1369,
+ "start": 1820.58,
+ "end": 1821.48,
+ "text": "elections."
+ },
+ {
+ "id": 1370,
+ "start": 1821.48,
+ "end": 1821.92,
+ "text": "In"
+ },
+ {
+ "id": 1371,
+ "start": 1821.92,
+ "end": 1822.34,
+ "text": "fact,"
+ },
+ {
+ "id": 1372,
+ "start": 1822.34,
+ "end": 1822.54,
+ "text": "the"
+ },
+ {
+ "id": 1373,
+ "start": 1822.54,
+ "end": 1823.48,
+ "text": "CEO"
+ },
+ {
+ "id": 1374,
+ "start": 1823.48,
+ "end": 1824.46,
+ "text": "Alexander"
+ },
+ {
+ "id": 1375,
+ "start": 1824.46,
+ "end": 1824.88,
+ "text": "Nick"
+ },
+ {
+ "id": 1376,
+ "start": 1824.88,
+ "end": 1826.06,
+ "text": "declared"
+ },
+ {
+ "id": 1377,
+ "start": 1826.06,
+ "end": 1826.3,
+ "text": "the"
+ },
+ {
+ "id": 1378,
+ "start": 1826.3,
+ "end": 1826.9,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1379,
+ "start": 1826.9,
+ "end": 1827.92,
+ "text": "Analytica"
+ },
+ {
+ "id": 1380,
+ "start": 1827.92,
+ "end": 1828.68,
+ "text": "ran"
+ },
+ {
+ "id": 1381,
+ "start": 1828.68,
+ "end": 1829.12,
+ "text": "all"
+ },
+ {
+ "id": 1382,
+ "start": 1829.12,
+ "end": 1829.34,
+ "text": "the"
+ },
+ {
+ "id": 1383,
+ "start": 1829.34,
+ "end": 1829.82,
+ "text": "digital"
+ },
+ {
+ "id": 1384,
+ "start": 1829.82,
+ "end": 1830.52,
+ "text": "campaign."
+ },
+ {
+ "id": 1385,
+ "start": 1830.52,
+ "end": 1831.04,
+ "text": "The"
+ },
+ {
+ "id": 1386,
+ "start": 1831.04,
+ "end": 1831.74,
+ "text": "television"
+ },
+ {
+ "id": 1387,
+ "start": 1831.74,
+ "end": 1832.48,
+ "text": "campaign"
+ },
+ {
+ "id": 1388,
+ "start": 1832.48,
+ "end": 1833.18,
+ "text": "and"
+ },
+ {
+ "id": 1389,
+ "start": 1833.18,
+ "end": 1833.5,
+ "text": "its"
+ },
+ {
+ "id": 1390,
+ "start": 1833.5,
+ "end": 1834.06,
+ "text": "data"
+ },
+ {
+ "id": 1391,
+ "start": 1834.06,
+ "end": 1835.02,
+ "text": "informed"
+ },
+ {
+ "id": 1392,
+ "start": 1835.02,
+ "end": 1835.46,
+ "text": "all"
+ },
+ {
+ "id": 1393,
+ "start": 1835.46,
+ "end": 1835.66,
+ "text": "the"
+ },
+ {
+ "id": 1394,
+ "start": 1835.66,
+ "end": 1836.36,
+ "text": "strategy"
+ },
+ {
+ "id": 1395,
+ "start": 1836.36,
+ "end": 1836.64,
+ "text": "for"
+ },
+ {
+ "id": 1396,
+ "start": 1836.64,
+ "end": 1836.78,
+ "text": "the"
+ },
+ {
+ "id": 1397,
+ "start": 1836.78,
+ "end": 1837.1,
+ "text": "Trump"
+ },
+ {
+ "id": 1398,
+ "start": 1837.1,
+ "end": 1838.02,
+ "text": "campaign."
+ },
+ {
+ "id": 1399,
+ "start": 1838.02,
+ "end": 1838.44,
+ "text": "The"
+ },
+ {
+ "id": 1400,
+ "start": 1838.44,
+ "end": 1839,
+ "text": "reporting"
+ },
+ {
+ "id": 1401,
+ "start": 1839,
+ "end": 1839.46,
+ "text": "has"
+ },
+ {
+ "id": 1402,
+ "start": 1839.46,
+ "end": 1839.82,
+ "text": "also"
+ },
+ {
+ "id": 1403,
+ "start": 1839.82,
+ "end": 1840.74,
+ "text": "speculated"
+ },
+ {
+ "id": 1404,
+ "start": 1840.74,
+ "end": 1841.22,
+ "text": "that"
+ },
+ {
+ "id": 1405,
+ "start": 1841.22,
+ "end": 1841.78,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1406,
+ "start": 1841.78,
+ "end": 1842.5,
+ "text": "analytic"
+ },
+ {
+ "id": 1407,
+ "start": 1842.5,
+ "end": 1843.3,
+ "text": "works"
+ },
+ {
+ "id": 1408,
+ "start": 1843.3,
+ "end": 1843.6,
+ "text": "with"
+ },
+ {
+ "id": 1409,
+ "start": 1843.6,
+ "end": 1843.76,
+ "text": "the"
+ },
+ {
+ "id": 1410,
+ "start": 1843.76,
+ "end": 1844.24,
+ "text": "Internet"
+ },
+ {
+ "id": 1411,
+ "start": 1844.24,
+ "end": 1844.72,
+ "text": "Research"
+ },
+ {
+ "id": 1412,
+ "start": 1844.72,
+ "end": 1845.32,
+ "text": "agency"
+ },
+ {
+ "id": 1413,
+ "start": 1845.32,
+ "end": 1845.86,
+ "text": "to"
+ },
+ {
+ "id": 1414,
+ "start": 1845.86,
+ "end": 1846.16,
+ "text": "help"
+ },
+ {
+ "id": 1415,
+ "start": 1846.16,
+ "end": 1846.72,
+ "text": "Russia"
+ },
+ {
+ "id": 1416,
+ "start": 1846.72,
+ "end": 1847.7,
+ "text": "identify"
+ },
+ {
+ "id": 1417,
+ "start": 1847.7,
+ "end": 1848.32,
+ "text": "which"
+ },
+ {
+ "id": 1418,
+ "start": 1848.32,
+ "end": 1849.18,
+ "text": "American"
+ },
+ {
+ "id": 1419,
+ "start": 1849.18,
+ "end": 1849.58,
+ "text": "voters"
+ },
+ {
+ "id": 1420,
+ "start": 1849.58,
+ "end": 1849.8,
+ "text": "to"
+ },
+ {
+ "id": 1421,
+ "start": 1849.8,
+ "end": 1850.3,
+ "text": "target,"
+ },
+ {
+ "id": 1422,
+ "start": 1850.3,
+ "end": 1850.74,
+ "text": "which"
+ },
+ {
+ "id": 1423,
+ "start": 1850.74,
+ "end": 1851.44,
+ "text": "is"
+ },
+ {
+ "id": 1424,
+ "start": 1851.44,
+ "end": 1853.34,
+ "text": "propaganda"
+ },
+ {
+ "id": 1425,
+ "start": 1853.34,
+ "end": 1854.28,
+ "text": "I'm"
+ },
+ {
+ "id": 1426,
+ "start": 1854.28,
+ "end": 1854.96,
+ "text": "concerned"
+ },
+ {
+ "id": 1427,
+ "start": 1854.96,
+ "end": 1855.6,
+ "text": "that"
+ },
+ {
+ "id": 1428,
+ "start": 1855.6,
+ "end": 1856.02,
+ "text": "press"
+ },
+ {
+ "id": 1429,
+ "start": 1856.02,
+ "end": 1856.54,
+ "text": "reports"
+ },
+ {
+ "id": 1430,
+ "start": 1856.54,
+ "end": 1857.32,
+ "text": "indicate"
+ },
+ {
+ "id": 1431,
+ "start": 1857.32,
+ "end": 1858.4,
+ "text": "Facebook"
+ },
+ {
+ "id": 1432,
+ "start": 1858.4,
+ "end": 1858.92,
+ "text": "learned"
+ },
+ {
+ "id": 1433,
+ "start": 1858.92,
+ "end": 1859.22,
+ "text": "about"
+ },
+ {
+ "id": 1434,
+ "start": 1859.22,
+ "end": 1859.5,
+ "text": "this"
+ },
+ {
+ "id": 1435,
+ "start": 1859.5,
+ "end": 1859.94,
+ "text": "breach"
+ },
+ {
+ "id": 1436,
+ "start": 1859.94,
+ "end": 1860.4,
+ "text": "in"
+ },
+ {
+ "id": 1437,
+ "start": 1860.4,
+ "end": 1861.7,
+ "text": "2,015"
+ },
+ {
+ "id": 1438,
+ "start": 1861.7,
+ "end": 1862.36,
+ "text": "but"
+ },
+ {
+ "id": 1439,
+ "start": 1862.36,
+ "end": 1862.82,
+ "text": "appears"
+ },
+ {
+ "id": 1440,
+ "start": 1862.82,
+ "end": 1863.2,
+ "text": "not"
+ },
+ {
+ "id": 1441,
+ "start": 1863.2,
+ "end": 1863.34,
+ "text": "to"
+ },
+ {
+ "id": 1442,
+ "start": 1863.34,
+ "end": 1863.52,
+ "text": "have"
+ },
+ {
+ "id": 1443,
+ "start": 1863.52,
+ "end": 1864.04,
+ "text": "taken"
+ },
+ {
+ "id": 1444,
+ "start": 1864.04,
+ "end": 1865.04,
+ "text": "significant"
+ },
+ {
+ "id": 1445,
+ "start": 1865.04,
+ "end": 1865.4,
+ "text": "steps"
+ },
+ {
+ "id": 1446,
+ "start": 1865.4,
+ "end": 1865.62,
+ "text": "to"
+ },
+ {
+ "id": 1447,
+ "start": 1865.62,
+ "end": 1866.04,
+ "text": "address"
+ },
+ {
+ "id": 1448,
+ "start": 1866.04,
+ "end": 1866.22,
+ "text": "it"
+ },
+ {
+ "id": 1449,
+ "start": 1866.22,
+ "end": 1866.98,
+ "text": "until"
+ },
+ {
+ "id": 1450,
+ "start": 1866.98,
+ "end": 1867.24,
+ "text": "this"
+ },
+ {
+ "id": 1451,
+ "start": 1867.24,
+ "end": 1868.08,
+ "text": "year,"
+ },
+ {
+ "id": 1452,
+ "start": 1868.08,
+ "end": 1868.66,
+ "text": "so"
+ },
+ {
+ "id": 1453,
+ "start": 1868.66,
+ "end": 1869.44,
+ "text": "this"
+ },
+ {
+ "id": 1454,
+ "start": 1869.44,
+ "end": 1869.84,
+ "text": "hearing"
+ },
+ {
+ "id": 1455,
+ "start": 1869.84,
+ "end": 1870,
+ "text": "is"
+ },
+ {
+ "id": 1456,
+ "start": 1870,
+ "end": 1870.62,
+ "text": "important"
+ },
+ {
+ "id": 1457,
+ "start": 1870.62,
+ "end": 1870.92,
+ "text": "and"
+ },
+ {
+ "id": 1458,
+ "start": 1870.92,
+ "end": 1871.02,
+ "text": "I"
+ },
+ {
+ "id": 1459,
+ "start": 1871.02,
+ "end": 1871.66,
+ "text": "appreciate"
+ },
+ {
+ "id": 1460,
+ "start": 1871.66,
+ "end": 1871.84,
+ "text": "the"
+ },
+ {
+ "id": 1461,
+ "start": 1871.84,
+ "end": 1872.66,
+ "text": "conversation"
+ },
+ {
+ "id": 1462,
+ "start": 1872.66,
+ "end": 1872.88,
+ "text": "we"
+ },
+ {
+ "id": 1463,
+ "start": 1872.88,
+ "end": 1873.24,
+ "text": "had"
+ },
+ {
+ "id": 1464,
+ "start": 1873.24,
+ "end": 1873.9,
+ "text": "yesterday."
+ },
+ {
+ "id": 1465,
+ "start": 1873.9,
+ "end": 1874.92,
+ "text": "And"
+ },
+ {
+ "id": 1466,
+ "start": 1874.92,
+ "end": 1875.74,
+ "text": "I"
+ },
+ {
+ "id": 1467,
+ "start": 1875.74,
+ "end": 1876.4,
+ "text": "believe"
+ },
+ {
+ "id": 1468,
+ "start": 1876.4,
+ "end": 1876.88,
+ "text": "that"
+ },
+ {
+ "id": 1469,
+ "start": 1876.88,
+ "end": 1877.96,
+ "text": "Facebook"
+ },
+ {
+ "id": 1470,
+ "start": 1877.96,
+ "end": 1878.62,
+ "text": "through"
+ },
+ {
+ "id": 1471,
+ "start": 1878.62,
+ "end": 1878.84,
+ "text": "your"
+ },
+ {
+ "id": 1472,
+ "start": 1878.84,
+ "end": 1879.36,
+ "text": "presence"
+ },
+ {
+ "id": 1473,
+ "start": 1879.36,
+ "end": 1879.6,
+ "text": "here"
+ },
+ {
+ "id": 1474,
+ "start": 1879.6,
+ "end": 1879.98,
+ "text": "today"
+ },
+ {
+ "id": 1475,
+ "start": 1879.98,
+ "end": 1880.78,
+ "text": "and"
+ },
+ {
+ "id": 1476,
+ "start": 1880.78,
+ "end": 1880.92,
+ "text": "the"
+ },
+ {
+ "id": 1477,
+ "start": 1880.92,
+ "end": 1881.3,
+ "text": "words"
+ },
+ {
+ "id": 1478,
+ "start": 1881.3,
+ "end": 1881.6,
+ "text": "you're"
+ },
+ {
+ "id": 1479,
+ "start": 1881.6,
+ "end": 1881.96,
+ "text": "about"
+ },
+ {
+ "id": 1480,
+ "start": 1881.96,
+ "end": 1882.22,
+ "text": "to"
+ },
+ {
+ "id": 1481,
+ "start": 1882.22,
+ "end": 1882.58,
+ "text": "tell"
+ },
+ {
+ "id": 1482,
+ "start": 1882.58,
+ "end": 1882.78,
+ "text": "us"
+ },
+ {
+ "id": 1483,
+ "start": 1882.78,
+ "end": 1883.56,
+ "text": "will"
+ },
+ {
+ "id": 1484,
+ "start": 1883.56,
+ "end": 1884.28,
+ "text": "indicate"
+ },
+ {
+ "id": 1485,
+ "start": 1884.28,
+ "end": 1884.68,
+ "text": "how"
+ },
+ {
+ "id": 1486,
+ "start": 1884.68,
+ "end": 1885.48,
+ "text": "strongly"
+ },
+ {
+ "id": 1487,
+ "start": 1885.48,
+ "end": 1886.2,
+ "text": "your"
+ },
+ {
+ "id": 1488,
+ "start": 1886.2,
+ "end": 1887,
+ "text": "industry"
+ },
+ {
+ "id": 1489,
+ "start": 1887,
+ "end": 1887.98,
+ "text": "will"
+ },
+ {
+ "id": 1490,
+ "start": 1887.98,
+ "end": 1888.9,
+ "text": "regulate"
+ },
+ {
+ "id": 1491,
+ "start": 1888.9,
+ "end": 1889.26,
+ "text": "and"
+ },
+ {
+ "id": 1492,
+ "start": 1889.26,
+ "end": 1889.52,
+ "text": "or"
+ },
+ {
+ "id": 1493,
+ "start": 1889.52,
+ "end": 1890.1,
+ "text": "reform."
+ },
+ {
+ "id": 1494,
+ "start": 1890.1,
+ "end": 1890.32,
+ "text": "The"
+ },
+ {
+ "id": 1495,
+ "start": 1890.32,
+ "end": 1891.04,
+ "text": "platforms"
+ },
+ {
+ "id": 1496,
+ "start": 1891.04,
+ "end": 1891.48,
+ "text": "that"
+ },
+ {
+ "id": 1497,
+ "start": 1891.48,
+ "end": 1891.76,
+ "text": "they"
+ },
+ {
+ "id": 1498,
+ "start": 1891.76,
+ "end": 1892.36,
+ "text": "control."
+ },
+ {
+ "id": 1499,
+ "start": 1892.36,
+ "end": 1893.08,
+ "text": "I"
+ },
+ {
+ "id": 1500,
+ "start": 1893.08,
+ "end": 1893.4,
+ "text": "believe"
+ },
+ {
+ "id": 1501,
+ "start": 1893.4,
+ "end": 1893.62,
+ "text": "this"
+ },
+ {
+ "id": 1502,
+ "start": 1893.62,
+ "end": 1893.8,
+ "text": "is"
+ },
+ {
+ "id": 1503,
+ "start": 1893.8,
+ "end": 1894.8,
+ "text": "extraordinarily"
+ },
+ {
+ "id": 1504,
+ "start": 1894.8,
+ "end": 1895.42,
+ "text": "important."
+ },
+ {
+ "id": 1505,
+ "start": 1895.42,
+ "end": 1895.94,
+ "text": "You"
+ },
+ {
+ "id": 1506,
+ "start": 1895.94,
+ "end": 1896.24,
+ "text": "lead"
+ },
+ {
+ "id": 1507,
+ "start": 1896.24,
+ "end": 1896.32,
+ "text": "a"
+ },
+ {
+ "id": 1508,
+ "start": 1896.32,
+ "end": 1896.64,
+ "text": "big"
+ },
+ {
+ "id": 1509,
+ "start": 1896.64,
+ "end": 1897.22,
+ "text": "company"
+ },
+ {
+ "id": 1510,
+ "start": 1897.22,
+ "end": 1897.44,
+ "text": "with"
+ },
+ {
+ "id": 1511,
+ "start": 1897.44,
+ "end": 1898.66,
+ "text": "27,000"
+ },
+ {
+ "id": 1512,
+ "start": 1898.66,
+ "end": 1899.5,
+ "text": "employees."
+ },
+ {
+ "id": 1513,
+ "start": 1899.5,
+ "end": 1900.4,
+ "text": "And"
+ },
+ {
+ "id": 1514,
+ "start": 1900.4,
+ "end": 1900.62,
+ "text": "we"
+ },
+ {
+ "id": 1515,
+ "start": 1900.62,
+ "end": 1900.98,
+ "text": "very"
+ },
+ {
+ "id": 1516,
+ "start": 1900.98,
+ "end": 1901.18,
+ "text": "much"
+ },
+ {
+ "id": 1517,
+ "start": 1901.18,
+ "end": 1901.5,
+ "text": "look"
+ },
+ {
+ "id": 1518,
+ "start": 1901.5,
+ "end": 1901.86,
+ "text": "forward"
+ },
+ {
+ "id": 1519,
+ "start": 1901.86,
+ "end": 1901.98,
+ "text": "to"
+ },
+ {
+ "id": 1520,
+ "start": 1901.98,
+ "end": 1902.16,
+ "text": "your"
+ },
+ {
+ "id": 1521,
+ "start": 1902.16,
+ "end": 1902.64,
+ "text": "comments."
+ },
+ {
+ "id": 1522,
+ "start": 1902.64,
+ "end": 1903.36,
+ "text": "Thank"
+ },
+ {
+ "id": 1523,
+ "start": 1903.36,
+ "end": 1903.52,
+ "text": "you,"
+ },
+ {
+ "id": 1524,
+ "start": 1903.52,
+ "end": 1903.86,
+ "text": "Mr"
+ },
+ {
+ "id": 1525,
+ "start": 1903.86,
+ "end": 1904.3,
+ "text": "Chairman,"
+ },
+ {
+ "id": 1526,
+ "start": 1904.3,
+ "end": 1905.08,
+ "text": "thank"
+ },
+ {
+ "id": 1527,
+ "start": 1905.08,
+ "end": 1905.22,
+ "text": "you."
+ },
+ {
+ "id": 1528,
+ "start": 1905.22,
+ "end": 1905.4,
+ "text": "So,"
+ },
+ {
+ "id": 1529,
+ "start": 1905.4,
+ "end": 1905.68,
+ "text": "to"
+ },
+ {
+ "id": 1530,
+ "start": 1905.68,
+ "end": 1905.94,
+ "text": "find"
+ },
+ {
+ "id": 1531,
+ "start": 1905.94,
+ "end": 1906.72,
+ "text": "sign,"
+ },
+ {
+ "id": 1532,
+ "start": 1906.72,
+ "end": 1907.24,
+ "text": "the"
+ },
+ {
+ "id": 1533,
+ "start": 1907.24,
+ "end": 1907.74,
+ "text": "history"
+ },
+ {
+ "id": 1534,
+ "start": 1907.74,
+ "end": 1907.92,
+ "text": "and"
+ },
+ {
+ "id": 1535,
+ "start": 1907.92,
+ "end": 1908.3,
+ "text": "growth"
+ },
+ {
+ "id": 1536,
+ "start": 1908.3,
+ "end": 1908.5,
+ "text": "of"
+ },
+ {
+ "id": 1537,
+ "start": 1908.5,
+ "end": 1909.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 1538,
+ "start": 1909.12,
+ "end": 1909.7,
+ "text": "Meares,"
+ },
+ {
+ "id": 1539,
+ "start": 1909.7,
+ "end": 1910,
+ "text": "that"
+ },
+ {
+ "id": 1540,
+ "start": 1910,
+ "end": 1910.14,
+ "text": "of"
+ },
+ {
+ "id": 1541,
+ "start": 1910.14,
+ "end": 1910.46,
+ "text": "many"
+ },
+ {
+ "id": 1542,
+ "start": 1910.46,
+ "end": 1910.58,
+ "text": "of"
+ },
+ {
+ "id": 1543,
+ "start": 1910.58,
+ "end": 1910.9,
+ "text": "our"
+ },
+ {
+ "id": 1544,
+ "start": 1910.9,
+ "end": 1911.96,
+ "text": "technological"
+ },
+ {
+ "id": 1545,
+ "start": 1911.96,
+ "end": 1912.8,
+ "text": "Giants"
+ },
+ {
+ "id": 1546,
+ "start": 1912.8,
+ "end": 1913.6,
+ "text": "founded"
+ },
+ {
+ "id": 1547,
+ "start": 1913.6,
+ "end": 1913.74,
+ "text": "by"
+ },
+ {
+ "id": 1548,
+ "start": 1913.74,
+ "end": 1914.4,
+ "text": "Mr"
+ },
+ {
+ "id": 1549,
+ "start": 1914.4,
+ "end": 1915,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 1550,
+ "start": 1915,
+ "end": 1915.6,
+ "text": "in"
+ },
+ {
+ "id": 1551,
+ "start": 1915.6,
+ "end": 1916.5,
+ "text": "2,004"
+ },
+ {
+ "id": 1552,
+ "start": 1916.5,
+ "end": 1917.18,
+ "text": "Facebook"
+ },
+ {
+ "id": 1553,
+ "start": 1917.18,
+ "end": 1917.42,
+ "text": "has"
+ },
+ {
+ "id": 1554,
+ "start": 1917.42,
+ "end": 1918.1,
+ "text": "exploded"
+ },
+ {
+ "id": 1555,
+ "start": 1918.1,
+ "end": 1918.46,
+ "text": "over"
+ },
+ {
+ "id": 1556,
+ "start": 1918.46,
+ "end": 1918.58,
+ "text": "the"
+ },
+ {
+ "id": 1557,
+ "start": 1918.58,
+ "end": 1918.86,
+ "text": "past"
+ },
+ {
+ "id": 1558,
+ "start": 1918.86,
+ "end": 1919.56,
+ "text": "14"
+ },
+ {
+ "id": 1559,
+ "start": 1919.56,
+ "end": 1920.26,
+ "text": "years."
+ },
+ {
+ "id": 1560,
+ "start": 1920.26,
+ "end": 1921.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 1561,
+ "start": 1921.26,
+ "end": 1921.74,
+ "text": "currently"
+ },
+ {
+ "id": 1562,
+ "start": 1921.74,
+ "end": 1922.06,
+ "text": "has"
+ },
+ {
+ "id": 1563,
+ "start": 1922.06,
+ "end": 1922.38,
+ "text": "over"
+ },
+ {
+ "id": 1564,
+ "start": 1922.38,
+ "end": 1923.16,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 1565,
+ "start": 1923.16,
+ "end": 1923.8,
+ "text": "monthly"
+ },
+ {
+ "id": 1566,
+ "start": 1923.8,
+ "end": 1924.38,
+ "text": "active"
+ },
+ {
+ "id": 1567,
+ "start": 1924.38,
+ "end": 1924.88,
+ "text": "users"
+ },
+ {
+ "id": 1568,
+ "start": 1924.88,
+ "end": 1925.28,
+ "text": "across"
+ },
+ {
+ "id": 1569,
+ "start": 1925.28,
+ "end": 1925.48,
+ "text": "the"
+ },
+ {
+ "id": 1570,
+ "start": 1925.48,
+ "end": 1925.84,
+ "text": "world"
+ },
+ {
+ "id": 1571,
+ "start": 1925.84,
+ "end": 1926.88,
+ "text": "over"
+ },
+ {
+ "id": 1572,
+ "start": 1926.88,
+ "end": 1927.82,
+ "text": "25,000"
+ },
+ {
+ "id": 1573,
+ "start": 1927.82,
+ "end": 1928.38,
+ "text": "employees"
+ },
+ {
+ "id": 1574,
+ "start": 1928.38,
+ "end": 1928.8,
+ "text": "and"
+ },
+ {
+ "id": 1575,
+ "start": 1928.8,
+ "end": 1929.4,
+ "text": "offices"
+ },
+ {
+ "id": 1576,
+ "start": 1929.4,
+ "end": 1929.6,
+ "text": "and"
+ },
+ {
+ "id": 1577,
+ "start": 1929.6,
+ "end": 1930.14,
+ "text": "13"
+ },
+ {
+ "id": 1578,
+ "start": 1930.14,
+ "end": 1930.28,
+ "text": "U"
+ },
+ {
+ "id": 1579,
+ "start": 1930.28,
+ "end": 1930.48,
+ "text": "S"
+ },
+ {
+ "id": 1580,
+ "start": 1930.48,
+ "end": 1930.9,
+ "text": "cities"
+ },
+ {
+ "id": 1581,
+ "start": 1930.9,
+ "end": 1931.72,
+ "text": "and"
+ },
+ {
+ "id": 1582,
+ "start": 1931.72,
+ "end": 1932.12,
+ "text": "various"
+ },
+ {
+ "id": 1583,
+ "start": 1932.12,
+ "end": 1932.62,
+ "text": "other"
+ },
+ {
+ "id": 1584,
+ "start": 1932.62,
+ "end": 1933.52,
+ "text": "countries"
+ },
+ {
+ "id": 1585,
+ "start": 1933.52,
+ "end": 1934.18,
+ "text": "like"
+ },
+ {
+ "id": 1586,
+ "start": 1934.18,
+ "end": 1934.42,
+ "text": "they're"
+ },
+ {
+ "id": 1587,
+ "start": 1934.42,
+ "end": 1935,
+ "text": "expanding"
+ },
+ {
+ "id": 1588,
+ "start": 1935,
+ "end": 1935.4,
+ "text": "user"
+ },
+ {
+ "id": 1589,
+ "start": 1935.4,
+ "end": 1935.72,
+ "text": "base."
+ },
+ {
+ "id": 1590,
+ "start": 1935.72,
+ "end": 1936.36,
+ "text": "The"
+ },
+ {
+ "id": 1591,
+ "start": 1936.36,
+ "end": 1936.7,
+ "text": "data"
+ },
+ {
+ "id": 1592,
+ "start": 1936.7,
+ "end": 1937.18,
+ "text": "collected"
+ },
+ {
+ "id": 1593,
+ "start": 1937.18,
+ "end": 1937.4,
+ "text": "on"
+ },
+ {
+ "id": 1594,
+ "start": 1937.4,
+ "end": 1938.18,
+ "text": "Facebook"
+ },
+ {
+ "id": 1595,
+ "start": 1938.18,
+ "end": 1939.18,
+ "text": "users"
+ },
+ {
+ "id": 1596,
+ "start": 1939.18,
+ "end": 1939.44,
+ "text": "has"
+ },
+ {
+ "id": 1597,
+ "start": 1939.44,
+ "end": 1940.1,
+ "text": "also"
+ },
+ {
+ "id": 1598,
+ "start": 1940.1,
+ "end": 1941.08,
+ "text": "skyrocketed"
+ },
+ {
+ "id": 1599,
+ "start": 1941.08,
+ "end": 1941.94,
+ "text": "they"
+ },
+ {
+ "id": 1600,
+ "start": 1941.94,
+ "end": 1942.12,
+ "text": "have"
+ },
+ {
+ "id": 1601,
+ "start": 1942.12,
+ "end": 1942.44,
+ "text": "moved"
+ },
+ {
+ "id": 1602,
+ "start": 1942.44,
+ "end": 1943.06,
+ "text": "on"
+ },
+ {
+ "id": 1603,
+ "start": 1943.06,
+ "end": 1943.28,
+ "text": "from"
+ },
+ {
+ "id": 1604,
+ "start": 1943.28,
+ "end": 1943.9,
+ "text": "schools,"
+ },
+ {
+ "id": 1605,
+ "start": 1943.9,
+ "end": 1944.46,
+ "text": "likes"
+ },
+ {
+ "id": 1606,
+ "start": 1944.46,
+ "end": 1945.1,
+ "text": "and"
+ },
+ {
+ "id": 1607,
+ "start": 1945.1,
+ "end": 1945.82,
+ "text": "relationship"
+ },
+ {
+ "id": 1608,
+ "start": 1945.82,
+ "end": 1946.54,
+ "text": "statuses."
+ },
+ {
+ "id": 1609,
+ "start": 1946.54,
+ "end": 1947.66,
+ "text": "Today."
+ },
+ {
+ "id": 1610,
+ "start": 1947.66,
+ "end": 1948.3,
+ "text": "Facebook"
+ },
+ {
+ "id": 1611,
+ "start": 1948.3,
+ "end": 1948.64,
+ "text": "has"
+ },
+ {
+ "id": 1612,
+ "start": 1948.64,
+ "end": 1949.3,
+ "text": "access"
+ },
+ {
+ "id": 1613,
+ "start": 1949.3,
+ "end": 1949.48,
+ "text": "to"
+ },
+ {
+ "id": 1614,
+ "start": 1949.48,
+ "end": 1950,
+ "text": "dozens"
+ },
+ {
+ "id": 1615,
+ "start": 1950,
+ "end": 1950.22,
+ "text": "of"
+ },
+ {
+ "id": 1616,
+ "start": 1950.22,
+ "end": 1950.56,
+ "text": "data"
+ },
+ {
+ "id": 1617,
+ "start": 1950.56,
+ "end": 1951.26,
+ "text": "points"
+ },
+ {
+ "id": 1618,
+ "start": 1951.26,
+ "end": 1952.04,
+ "text": "ranging"
+ },
+ {
+ "id": 1619,
+ "start": 1952.04,
+ "end": 1952.26,
+ "text": "from"
+ },
+ {
+ "id": 1620,
+ "start": 1952.26,
+ "end": 1952.74,
+ "text": "ads"
+ },
+ {
+ "id": 1621,
+ "start": 1952.74,
+ "end": 1953.02,
+ "text": "that"
+ },
+ {
+ "id": 1622,
+ "start": 1953.02,
+ "end": 1953.3,
+ "text": "you've"
+ },
+ {
+ "id": 1623,
+ "start": 1953.3,
+ "end": 1953.66,
+ "text": "clicked"
+ },
+ {
+ "id": 1624,
+ "start": 1953.66,
+ "end": 1953.94,
+ "text": "on"
+ },
+ {
+ "id": 1625,
+ "start": 1953.94,
+ "end": 1955.14,
+ "text": "events"
+ },
+ {
+ "id": 1626,
+ "start": 1955.14,
+ "end": 1955.52,
+ "text": "you've"
+ },
+ {
+ "id": 1627,
+ "start": 1955.52,
+ "end": 1956.06,
+ "text": "attended"
+ },
+ {
+ "id": 1628,
+ "start": 1956.06,
+ "end": 1956.74,
+ "text": "and"
+ },
+ {
+ "id": 1629,
+ "start": 1956.74,
+ "end": 1956.94,
+ "text": "your"
+ },
+ {
+ "id": 1630,
+ "start": 1956.94,
+ "end": 1957.6,
+ "text": "location"
+ },
+ {
+ "id": 1631,
+ "start": 1957.6,
+ "end": 1957.9,
+ "text": "based"
+ },
+ {
+ "id": 1632,
+ "start": 1957.9,
+ "end": 1958.34,
+ "text": "upon"
+ },
+ {
+ "id": 1633,
+ "start": 1958.34,
+ "end": 1958.58,
+ "text": "your"
+ },
+ {
+ "id": 1634,
+ "start": 1958.58,
+ "end": 1959,
+ "text": "mobile"
+ },
+ {
+ "id": 1635,
+ "start": 1959,
+ "end": 1959.68,
+ "text": "device,"
+ },
+ {
+ "id": 1636,
+ "start": 1959.68,
+ "end": 1960.82,
+ "text": "it"
+ },
+ {
+ "id": 1637,
+ "start": 1960.82,
+ "end": 1960.96,
+ "text": "is"
+ },
+ {
+ "id": 1638,
+ "start": 1960.96,
+ "end": 1961.2,
+ "text": "no"
+ },
+ {
+ "id": 1639,
+ "start": 1961.2,
+ "end": 1961.66,
+ "text": "secret"
+ },
+ {
+ "id": 1640,
+ "start": 1961.66,
+ "end": 1961.88,
+ "text": "that"
+ },
+ {
+ "id": 1641,
+ "start": 1961.88,
+ "end": 1962.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 1642,
+ "start": 1962.5,
+ "end": 1962.84,
+ "text": "makes"
+ },
+ {
+ "id": 1643,
+ "start": 1962.84,
+ "end": 1963.38,
+ "text": "money"
+ },
+ {
+ "id": 1644,
+ "start": 1963.38,
+ "end": 1963.62,
+ "text": "of"
+ },
+ {
+ "id": 1645,
+ "start": 1963.62,
+ "end": 1964.14,
+ "text": "this"
+ },
+ {
+ "id": 1646,
+ "start": 1964.14,
+ "end": 1964.56,
+ "text": "data"
+ },
+ {
+ "id": 1647,
+ "start": 1964.56,
+ "end": 1965.22,
+ "text": "through"
+ },
+ {
+ "id": 1648,
+ "start": 1965.22,
+ "end": 1966.02,
+ "text": "advertising"
+ },
+ {
+ "id": 1649,
+ "start": 1966.02,
+ "end": 1966.5,
+ "text": "revenue."
+ },
+ {
+ "id": 1650,
+ "start": 1966.5,
+ "end": 1967.44,
+ "text": "Although"
+ },
+ {
+ "id": 1651,
+ "start": 1967.44,
+ "end": 1968.18,
+ "text": "many"
+ },
+ {
+ "id": 1652,
+ "start": 1968.18,
+ "end": 1968.54,
+ "text": "seem"
+ },
+ {
+ "id": 1653,
+ "start": 1968.54,
+ "end": 1969.06,
+ "text": "confused"
+ },
+ {
+ "id": 1654,
+ "start": 1969.06,
+ "end": 1969.48,
+ "text": "by"
+ },
+ {
+ "id": 1655,
+ "start": 1969.48,
+ "end": 1970.54,
+ "text": "or"
+ },
+ {
+ "id": 1656,
+ "start": 1970.54,
+ "end": 1970.92,
+ "text": "get"
+ },
+ {
+ "id": 1657,
+ "start": 1970.92,
+ "end": 1971.56,
+ "text": "altogether."
+ },
+ {
+ "id": 1658,
+ "start": 1971.56,
+ "end": 1972.24,
+ "text": "Unaware"
+ },
+ {
+ "id": 1659,
+ "start": 1972.24,
+ "end": 1972.6,
+ "text": "of"
+ },
+ {
+ "id": 1660,
+ "start": 1972.6,
+ "end": 1972.82,
+ "text": "this"
+ },
+ {
+ "id": 1661,
+ "start": 1972.82,
+ "end": 1973.48,
+ "text": "fact"
+ },
+ {
+ "id": 1662,
+ "start": 1973.48,
+ "end": 1974.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 1663,
+ "start": 1974.5,
+ "end": 1975.5,
+ "text": "generates"
+ },
+ {
+ "id": 1664,
+ "start": 1975.5,
+ "end": 1976.5,
+ "text": "generated"
+ },
+ {
+ "id": 1665,
+ "start": 1976.5,
+ "end": 1977.54,
+ "text": "40,000,000,000"
+ },
+ {
+ "id": 1666,
+ "start": 1977.54,
+ "end": 1977.76,
+ "text": "in"
+ },
+ {
+ "id": 1667,
+ "start": 1977.76,
+ "end": 1978.2,
+ "text": "revenue."
+ },
+ {
+ "id": 1668,
+ "start": 1978.2,
+ "end": 1978.42,
+ "text": "And"
+ },
+ {
+ "id": 1669,
+ "start": 1978.42,
+ "end": 1978.76,
+ "text": "we"
+ },
+ {
+ "id": 1670,
+ "start": 1978.76,
+ "end": 1979.86,
+ "text": "seen"
+ },
+ {
+ "id": 1671,
+ "start": 1979.86,
+ "end": 1980.06,
+ "text": "with"
+ },
+ {
+ "id": 1672,
+ "start": 1980.06,
+ "end": 1980.38,
+ "text": "about"
+ },
+ {
+ "id": 1673,
+ "start": 1980.38,
+ "end": 1981.16,
+ "text": "it"
+ },
+ {
+ "id": 1674,
+ "start": 1981.16,
+ "end": 1982,
+ "text": "coming"
+ },
+ {
+ "id": 1675,
+ "start": 1982,
+ "end": 1982.58,
+ "text": "from"
+ },
+ {
+ "id": 1676,
+ "start": 1982.58,
+ "end": 1983.42,
+ "text": "advertising"
+ },
+ {
+ "id": 1677,
+ "start": 1983.42,
+ "end": 1983.94,
+ "text": "across"
+ },
+ {
+ "id": 1678,
+ "start": 1983.94,
+ "end": 1984.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 1679,
+ "start": 1984.54,
+ "end": 1985.2,
+ "text": "and"
+ },
+ {
+ "id": 1680,
+ "start": 1985.2,
+ "end": 1986.3,
+ "text": "Instagram."
+ },
+ {
+ "id": 1681,
+ "start": 1986.3,
+ "end": 1987.48,
+ "text": "Significant"
+ },
+ {
+ "id": 1682,
+ "start": 1987.48,
+ "end": 1988.56,
+ "text": "data"
+ },
+ {
+ "id": 1683,
+ "start": 1988.56,
+ "end": 1989.14,
+ "text": "collection"
+ },
+ {
+ "id": 1684,
+ "start": 1989.14,
+ "end": 1989.38,
+ "text": "is"
+ },
+ {
+ "id": 1685,
+ "start": 1989.38,
+ "end": 1989.7,
+ "text": "also"
+ },
+ {
+ "id": 1686,
+ "start": 1989.7,
+ "end": 1990.26,
+ "text": "occurring"
+ },
+ {
+ "id": 1687,
+ "start": 1990.26,
+ "end": 1990.48,
+ "text": "at"
+ },
+ {
+ "id": 1688,
+ "start": 1990.48,
+ "end": 1990.88,
+ "text": "Google,"
+ },
+ {
+ "id": 1689,
+ "start": 1990.88,
+ "end": 1991.66,
+ "text": "Twitter,"
+ },
+ {
+ "id": 1690,
+ "start": 1991.66,
+ "end": 1992.34,
+ "text": "Apple"
+ },
+ {
+ "id": 1691,
+ "start": 1992.34,
+ "end": 1992.64,
+ "text": "and"
+ },
+ {
+ "id": 1692,
+ "start": 1992.64,
+ "end": 1993.14,
+ "text": "Amazon"
+ },
+ {
+ "id": 1693,
+ "start": 1993.14,
+ "end": 1994.02,
+ "text": "and"
+ },
+ {
+ "id": 1694,
+ "start": 1994.02,
+ "end": 1994.42,
+ "text": "even"
+ },
+ {
+ "id": 1695,
+ "start": 1994.42,
+ "end": 1995.1,
+ "text": "an"
+ },
+ {
+ "id": 1696,
+ "start": 1995.1,
+ "end": 1995.42,
+ "text": "ever"
+ },
+ {
+ "id": 1697,
+ "start": 1995.42,
+ "end": 1996.06,
+ "text": "expanding"
+ },
+ {
+ "id": 1698,
+ "start": 1996.06,
+ "end": 1996.78,
+ "text": "portfolio"
+ },
+ {
+ "id": 1699,
+ "start": 1996.78,
+ "end": 1997.12,
+ "text": "of"
+ },
+ {
+ "id": 1700,
+ "start": 1997.12,
+ "end": 1998.08,
+ "text": "products"
+ },
+ {
+ "id": 1701,
+ "start": 1998.08,
+ "end": 1998.3,
+ "text": "and"
+ },
+ {
+ "id": 1702,
+ "start": 1998.3,
+ "end": 1998.88,
+ "text": "services"
+ },
+ {
+ "id": 1703,
+ "start": 1998.88,
+ "end": 1999.38,
+ "text": "offered"
+ },
+ {
+ "id": 1704,
+ "start": 1999.38,
+ "end": 1999.52,
+ "text": "by"
+ },
+ {
+ "id": 1705,
+ "start": 1999.52,
+ "end": 1999.92,
+ "text": "these"
+ },
+ {
+ "id": 1706,
+ "start": 1999.92,
+ "end": 2001.44,
+ "text": "companies."
+ },
+ {
+ "id": 1707,
+ "start": 2001.44,
+ "end": 2002.3,
+ "text": "Grant"
+ },
+ {
+ "id": 1708,
+ "start": 2002.3,
+ "end": 2002.96,
+ "text": "endless"
+ },
+ {
+ "id": 1709,
+ "start": 2002.96,
+ "end": 2003.84,
+ "text": "opportunities"
+ },
+ {
+ "id": 1710,
+ "start": 2003.84,
+ "end": 2004.2,
+ "text": "to"
+ },
+ {
+ "id": 1711,
+ "start": 2004.2,
+ "end": 2004.58,
+ "text": "collect"
+ },
+ {
+ "id": 1712,
+ "start": 2004.58,
+ "end": 2005.24,
+ "text": "increasing"
+ },
+ {
+ "id": 1713,
+ "start": 2005.24,
+ "end": 2005.62,
+ "text": "amounts"
+ },
+ {
+ "id": 1714,
+ "start": 2005.62,
+ "end": 2005.8,
+ "text": "of"
+ },
+ {
+ "id": 1715,
+ "start": 2005.8,
+ "end": 2006.46,
+ "text": "information"
+ },
+ {
+ "id": 1716,
+ "start": 2006.46,
+ "end": 2006.64,
+ "text": "on"
+ },
+ {
+ "id": 1717,
+ "start": 2006.64,
+ "end": 2006.86,
+ "text": "their"
+ },
+ {
+ "id": 1718,
+ "start": 2006.86,
+ "end": 2007.4,
+ "text": "customers"
+ },
+ {
+ "id": 1719,
+ "start": 2007.4,
+ "end": 2008.3,
+ "text": "as"
+ },
+ {
+ "id": 1720,
+ "start": 2008.3,
+ "end": 2008.44,
+ "text": "we"
+ },
+ {
+ "id": 1721,
+ "start": 2008.44,
+ "end": 2008.68,
+ "text": "get"
+ },
+ {
+ "id": 1722,
+ "start": 2008.68,
+ "end": 2008.92,
+ "text": "more"
+ },
+ {
+ "id": 1723,
+ "start": 2008.92,
+ "end": 2009.38,
+ "text": "free"
+ },
+ {
+ "id": 1724,
+ "start": 2009.38,
+ "end": 2009.8,
+ "text": "or"
+ },
+ {
+ "id": 1725,
+ "start": 2009.8,
+ "end": 2010.54,
+ "text": "extremely"
+ },
+ {
+ "id": 1726,
+ "start": 2010.54,
+ "end": 2010.78,
+ "text": "low"
+ },
+ {
+ "id": 1727,
+ "start": 2010.78,
+ "end": 2011.04,
+ "text": "cost"
+ },
+ {
+ "id": 1728,
+ "start": 2011.04,
+ "end": 2011.7,
+ "text": "services."
+ },
+ {
+ "id": 1729,
+ "start": 2011.7,
+ "end": 2012.6,
+ "text": "The"
+ },
+ {
+ "id": 1730,
+ "start": 2012.6,
+ "end": 2012.92,
+ "text": "trade"
+ },
+ {
+ "id": 1731,
+ "start": 2012.92,
+ "end": 2013.16,
+ "text": "off"
+ },
+ {
+ "id": 1732,
+ "start": 2013.16,
+ "end": 2013.72,
+ "text": "for"
+ },
+ {
+ "id": 1733,
+ "start": 2013.72,
+ "end": 2013.84,
+ "text": "the"
+ },
+ {
+ "id": 1734,
+ "start": 2013.84,
+ "end": 2014.36,
+ "text": "American"
+ },
+ {
+ "id": 1735,
+ "start": 2014.36,
+ "end": 2014.94,
+ "text": "consumer"
+ },
+ {
+ "id": 1736,
+ "start": 2014.94,
+ "end": 2015.12,
+ "text": "is"
+ },
+ {
+ "id": 1737,
+ "start": 2015.12,
+ "end": 2015.28,
+ "text": "to"
+ },
+ {
+ "id": 1738,
+ "start": 2015.28,
+ "end": 2015.9,
+ "text": "provide"
+ },
+ {
+ "id": 1739,
+ "start": 2015.9,
+ "end": 2016.72,
+ "text": "personal"
+ },
+ {
+ "id": 1740,
+ "start": 2016.72,
+ "end": 2017.2,
+ "text": "data,"
+ },
+ {
+ "id": 1741,
+ "start": 2017.2,
+ "end": 2018.22,
+ "text": "the"
+ },
+ {
+ "id": 1742,
+ "start": 2018.22,
+ "end": 2018.74,
+ "text": "potential"
+ },
+ {
+ "id": 1743,
+ "start": 2018.74,
+ "end": 2019,
+ "text": "for"
+ },
+ {
+ "id": 1744,
+ "start": 2019,
+ "end": 2019.46,
+ "text": "further"
+ },
+ {
+ "id": 1745,
+ "start": 2019.46,
+ "end": 2019.8,
+ "text": "growth"
+ },
+ {
+ "id": 1746,
+ "start": 2019.8,
+ "end": 2020.54,
+ "text": "and"
+ },
+ {
+ "id": 1747,
+ "start": 2020.54,
+ "end": 2021.28,
+ "text": "innovation"
+ },
+ {
+ "id": 1748,
+ "start": 2021.28,
+ "end": 2021.66,
+ "text": "based"
+ },
+ {
+ "id": 1749,
+ "start": 2021.66,
+ "end": 2021.96,
+ "text": "on"
+ },
+ {
+ "id": 1750,
+ "start": 2021.96,
+ "end": 2022.5,
+ "text": "collection"
+ },
+ {
+ "id": 1751,
+ "start": 2022.5,
+ "end": 2022.6,
+ "text": "of"
+ },
+ {
+ "id": 1752,
+ "start": 2022.6,
+ "end": 2023.04,
+ "text": "data"
+ },
+ {
+ "id": 1753,
+ "start": 2023.04,
+ "end": 2023.56,
+ "text": "is"
+ },
+ {
+ "id": 1754,
+ "start": 2023.56,
+ "end": 2024.3,
+ "text": "limited"
+ },
+ {
+ "id": 1755,
+ "start": 2024.3,
+ "end": 2024.56,
+ "text": "less."
+ },
+ {
+ "id": 1756,
+ "start": 2024.56,
+ "end": 2025.68,
+ "text": "However,"
+ },
+ {
+ "id": 1757,
+ "start": 2025.68,
+ "end": 2026.3,
+ "text": "the"
+ },
+ {
+ "id": 1758,
+ "start": 2026.3,
+ "end": 2026.82,
+ "text": "potential"
+ },
+ {
+ "id": 1759,
+ "start": 2026.82,
+ "end": 2027.04,
+ "text": "for"
+ },
+ {
+ "id": 1760,
+ "start": 2027.04,
+ "end": 2027.82,
+ "text": "abuse"
+ },
+ {
+ "id": 1761,
+ "start": 2027.82,
+ "end": 2028.64,
+ "text": "is"
+ },
+ {
+ "id": 1762,
+ "start": 2028.64,
+ "end": 2029.14,
+ "text": "also"
+ },
+ {
+ "id": 1763,
+ "start": 2029.14,
+ "end": 2030.36,
+ "text": "significant."
+ },
+ {
+ "id": 1764,
+ "start": 2030.36,
+ "end": 2031.08,
+ "text": "Well,"
+ },
+ {
+ "id": 1765,
+ "start": 2031.08,
+ "end": 2031.22,
+ "text": "the"
+ },
+ {
+ "id": 1766,
+ "start": 2031.22,
+ "end": 2031.96,
+ "text": "condors"
+ },
+ {
+ "id": 1767,
+ "start": 2031.96,
+ "end": 2032.4,
+ "text": "of"
+ },
+ {
+ "id": 1768,
+ "start": 2032.4,
+ "end": 2032.58,
+ "text": "the"
+ },
+ {
+ "id": 1769,
+ "start": 2032.58,
+ "end": 2033.24,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1770,
+ "start": 2033.24,
+ "end": 2034.72,
+ "text": "analytic"
+ },
+ {
+ "id": 1771,
+ "start": 2034.72,
+ "end": 2035.72,
+ "text": "situation"
+ },
+ {
+ "id": 1772,
+ "start": 2035.72,
+ "end": 2035.94,
+ "text": "are"
+ },
+ {
+ "id": 1773,
+ "start": 2035.94,
+ "end": 2036.26,
+ "text": "still"
+ },
+ {
+ "id": 1774,
+ "start": 2036.26,
+ "end": 2036.58,
+ "text": "coming"
+ },
+ {
+ "id": 1775,
+ "start": 2036.58,
+ "end": 2036.72,
+ "text": "to"
+ },
+ {
+ "id": 1776,
+ "start": 2036.72,
+ "end": 2037.56,
+ "text": "light."
+ },
+ {
+ "id": 1777,
+ "start": 2037.56,
+ "end": 2038.26,
+ "text": "There"
+ },
+ {
+ "id": 1778,
+ "start": 2038.26,
+ "end": 2038.44,
+ "text": "was"
+ },
+ {
+ "id": 1779,
+ "start": 2038.44,
+ "end": 2038.88,
+ "text": "clearly"
+ },
+ {
+ "id": 1780,
+ "start": 2038.88,
+ "end": 2039,
+ "text": "a"
+ },
+ {
+ "id": 1781,
+ "start": 2039,
+ "end": 2039.5,
+ "text": "breach"
+ },
+ {
+ "id": 1782,
+ "start": 2039.5,
+ "end": 2039.68,
+ "text": "of"
+ },
+ {
+ "id": 1783,
+ "start": 2039.68,
+ "end": 2040.22,
+ "text": "consumer"
+ },
+ {
+ "id": 1784,
+ "start": 2040.22,
+ "end": 2040.62,
+ "text": "trust"
+ },
+ {
+ "id": 1785,
+ "start": 2040.62,
+ "end": 2041.46,
+ "text": "and"
+ },
+ {
+ "id": 1786,
+ "start": 2041.46,
+ "end": 2041.62,
+ "text": "a"
+ },
+ {
+ "id": 1787,
+ "start": 2041.62,
+ "end": 2042.08,
+ "text": "likely"
+ },
+ {
+ "id": 1788,
+ "start": 2042.08,
+ "end": 2042.68,
+ "text": "improper"
+ },
+ {
+ "id": 1789,
+ "start": 2042.68,
+ "end": 2043.28,
+ "text": "transfer"
+ },
+ {
+ "id": 1790,
+ "start": 2043.28,
+ "end": 2043.38,
+ "text": "of"
+ },
+ {
+ "id": 1791,
+ "start": 2043.38,
+ "end": 2044.22,
+ "text": "data."
+ },
+ {
+ "id": 1792,
+ "start": 2044.22,
+ "end": 2044.78,
+ "text": "The"
+ },
+ {
+ "id": 1793,
+ "start": 2044.78,
+ "end": 2045.44,
+ "text": "Judiciary"
+ },
+ {
+ "id": 1794,
+ "start": 2045.44,
+ "end": 2045.94,
+ "text": "Committee"
+ },
+ {
+ "id": 1795,
+ "start": 2045.94,
+ "end": 2046.54,
+ "text": "will"
+ },
+ {
+ "id": 1796,
+ "start": 2046.54,
+ "end": 2047.52,
+ "text": "hold"
+ },
+ {
+ "id": 1797,
+ "start": 2047.52,
+ "end": 2047.84,
+ "text": "a"
+ },
+ {
+ "id": 1798,
+ "start": 2047.84,
+ "end": 2048.38,
+ "text": "separate"
+ },
+ {
+ "id": 1799,
+ "start": 2048.38,
+ "end": 2048.96,
+ "text": "hearing"
+ },
+ {
+ "id": 1800,
+ "start": 2048.96,
+ "end": 2049.8,
+ "text": "exploring"
+ },
+ {
+ "id": 1801,
+ "start": 2049.8,
+ "end": 2050.74,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1802,
+ "start": 2050.74,
+ "end": 2051.26,
+ "text": "and"
+ },
+ {
+ "id": 1803,
+ "start": 2051.26,
+ "end": 2051.64,
+ "text": "other"
+ },
+ {
+ "id": 1804,
+ "start": 2051.64,
+ "end": 2052.06,
+ "text": "data"
+ },
+ {
+ "id": 1805,
+ "start": 2052.06,
+ "end": 2052.74,
+ "text": "privacy"
+ },
+ {
+ "id": 1806,
+ "start": 2052.74,
+ "end": 2053.26,
+ "text": "issues"
+ },
+ {
+ "id": 1807,
+ "start": 2053.26,
+ "end": 2054.32,
+ "text": "more"
+ },
+ {
+ "id": 1808,
+ "start": 2054.32,
+ "end": 2054.84,
+ "text": "importantly,"
+ },
+ {
+ "id": 1809,
+ "start": 2054.84,
+ "end": 2055.12,
+ "text": "though,"
+ },
+ {
+ "id": 1810,
+ "start": 2055.12,
+ "end": 2055.78,
+ "text": "these"
+ },
+ {
+ "id": 1811,
+ "start": 2055.78,
+ "end": 2056.26,
+ "text": "events"
+ },
+ {
+ "id": 1812,
+ "start": 2056.26,
+ "end": 2056.8,
+ "text": "have"
+ },
+ {
+ "id": 1813,
+ "start": 2056.8,
+ "end": 2057.38,
+ "text": "ignited"
+ },
+ {
+ "id": 1814,
+ "start": 2057.38,
+ "end": 2058.06,
+ "text": "a"
+ },
+ {
+ "id": 1815,
+ "start": 2058.06,
+ "end": 2058.52,
+ "text": "larger"
+ },
+ {
+ "id": 1816,
+ "start": 2058.52,
+ "end": 2059.14,
+ "text": "discussion"
+ },
+ {
+ "id": 1817,
+ "start": 2059.14,
+ "end": 2059.4,
+ "text": "on"
+ },
+ {
+ "id": 1818,
+ "start": 2059.4,
+ "end": 2060.4,
+ "text": "consumers"
+ },
+ {
+ "id": 1819,
+ "start": 2060.4,
+ "end": 2061.58,
+ "text": "expectations"
+ },
+ {
+ "id": 1820,
+ "start": 2061.58,
+ "end": 2062.28,
+ "text": "and"
+ },
+ {
+ "id": 1821,
+ "start": 2062.28,
+ "end": 2062.42,
+ "text": "the"
+ },
+ {
+ "id": 1822,
+ "start": 2062.42,
+ "end": 2062.86,
+ "text": "future"
+ },
+ {
+ "id": 1823,
+ "start": 2062.86,
+ "end": 2063,
+ "text": "of"
+ },
+ {
+ "id": 1824,
+ "start": 2063,
+ "end": 2063.38,
+ "text": "data"
+ },
+ {
+ "id": 1825,
+ "start": 2063.38,
+ "end": 2064,
+ "text": "privacy"
+ },
+ {
+ "id": 1826,
+ "start": 2064,
+ "end": 2064.38,
+ "text": "in"
+ },
+ {
+ "id": 1827,
+ "start": 2064.38,
+ "end": 2064.56,
+ "text": "our"
+ },
+ {
+ "id": 1828,
+ "start": 2064.56,
+ "end": 2065.26,
+ "text": "society,"
+ },
+ {
+ "id": 1829,
+ "start": 2065.26,
+ "end": 2066.14,
+ "text": "it"
+ },
+ {
+ "id": 1830,
+ "start": 2066.14,
+ "end": 2066.32,
+ "text": "is"
+ },
+ {
+ "id": 1831,
+ "start": 2066.32,
+ "end": 2067.02,
+ "text": "exposed"
+ },
+ {
+ "id": 1832,
+ "start": 2067.02,
+ "end": 2067.3,
+ "text": "that"
+ },
+ {
+ "id": 1833,
+ "start": 2067.3,
+ "end": 2067.96,
+ "text": "consumers"
+ },
+ {
+ "id": 1834,
+ "start": 2067.96,
+ "end": 2068.22,
+ "text": "may"
+ },
+ {
+ "id": 1835,
+ "start": 2068.22,
+ "end": 2068.4,
+ "text": "not"
+ },
+ {
+ "id": 1836,
+ "start": 2068.4,
+ "end": 2068.7,
+ "text": "fully"
+ },
+ {
+ "id": 1837,
+ "start": 2068.7,
+ "end": 2069.38,
+ "text": "understand"
+ },
+ {
+ "id": 1838,
+ "start": 2069.38,
+ "end": 2070.06,
+ "text": "or"
+ },
+ {
+ "id": 1839,
+ "start": 2070.06,
+ "end": 2070.74,
+ "text": "appreciate"
+ },
+ {
+ "id": 1840,
+ "start": 2070.74,
+ "end": 2070.9,
+ "text": "the"
+ },
+ {
+ "id": 1841,
+ "start": 2070.9,
+ "end": 2071.3,
+ "text": "extent"
+ },
+ {
+ "id": 1842,
+ "start": 2071.3,
+ "end": 2071.4,
+ "text": "to"
+ },
+ {
+ "id": 1843,
+ "start": 2071.4,
+ "end": 2071.62,
+ "text": "which"
+ },
+ {
+ "id": 1844,
+ "start": 2071.62,
+ "end": 2071.86,
+ "text": "their"
+ },
+ {
+ "id": 1845,
+ "start": 2071.86,
+ "end": 2072.42,
+ "text": "data"
+ },
+ {
+ "id": 1846,
+ "start": 2072.42,
+ "end": 2072.96,
+ "text": "is"
+ },
+ {
+ "id": 1847,
+ "start": 2072.96,
+ "end": 2073.76,
+ "text": "collected"
+ },
+ {
+ "id": 1848,
+ "start": 2073.76,
+ "end": 2074.72,
+ "text": "protected"
+ },
+ {
+ "id": 1849,
+ "start": 2074.72,
+ "end": 2075.88,
+ "text": "transferred"
+ },
+ {
+ "id": 1850,
+ "start": 2075.88,
+ "end": 2076.8,
+ "text": "used"
+ },
+ {
+ "id": 1851,
+ "start": 2076.8,
+ "end": 2077.82,
+ "text": "and"
+ },
+ {
+ "id": 1852,
+ "start": 2077.82,
+ "end": 2078.94,
+ "text": "misused."
+ },
+ {
+ "id": 1853,
+ "start": 2078.94,
+ "end": 2079.8,
+ "text": "Data"
+ },
+ {
+ "id": 1854,
+ "start": 2079.8,
+ "end": 2080.08,
+ "text": "has"
+ },
+ {
+ "id": 1855,
+ "start": 2080.08,
+ "end": 2080.34,
+ "text": "been"
+ },
+ {
+ "id": 1856,
+ "start": 2080.34,
+ "end": 2080.72,
+ "text": "used"
+ },
+ {
+ "id": 1857,
+ "start": 2080.72,
+ "end": 2080.9,
+ "text": "in"
+ },
+ {
+ "id": 1858,
+ "start": 2080.9,
+ "end": 2081.7,
+ "text": "advertising"
+ },
+ {
+ "id": 1859,
+ "start": 2081.7,
+ "end": 2081.86,
+ "text": "and"
+ },
+ {
+ "id": 1860,
+ "start": 2081.86,
+ "end": 2082.34,
+ "text": "political"
+ },
+ {
+ "id": 1861,
+ "start": 2082.34,
+ "end": 2083,
+ "text": "campaigns"
+ },
+ {
+ "id": 1862,
+ "start": 2083,
+ "end": 2083.7,
+ "text": "for"
+ },
+ {
+ "id": 1863,
+ "start": 2083.7,
+ "end": 2084.24,
+ "text": "decades,"
+ },
+ {
+ "id": 1864,
+ "start": 2084.24,
+ "end": 2085.04,
+ "text": "the"
+ },
+ {
+ "id": 1865,
+ "start": 2085.04,
+ "end": 2085.38,
+ "text": "amount"
+ },
+ {
+ "id": 1866,
+ "start": 2085.38,
+ "end": 2085.54,
+ "text": "and"
+ },
+ {
+ "id": 1867,
+ "start": 2085.54,
+ "end": 2085.84,
+ "text": "type"
+ },
+ {
+ "id": 1868,
+ "start": 2085.84,
+ "end": 2085.98,
+ "text": "of"
+ },
+ {
+ "id": 1869,
+ "start": 2085.98,
+ "end": 2086.36,
+ "text": "data"
+ },
+ {
+ "id": 1870,
+ "start": 2086.36,
+ "end": 2086.96,
+ "text": "obtained,"
+ },
+ {
+ "id": 1871,
+ "start": 2086.96,
+ "end": 2087.5,
+ "text": "however,"
+ },
+ {
+ "id": 1872,
+ "start": 2087.5,
+ "end": 2088.32,
+ "text": "has"
+ },
+ {
+ "id": 1873,
+ "start": 2088.32,
+ "end": 2089.06,
+ "text": "seen"
+ },
+ {
+ "id": 1874,
+ "start": 2089.06,
+ "end": 2089.34,
+ "text": "a"
+ },
+ {
+ "id": 1875,
+ "start": 2089.34,
+ "end": 2089.78,
+ "text": "very"
+ },
+ {
+ "id": 1876,
+ "start": 2089.78,
+ "end": 2090.38,
+ "text": "dramatic"
+ },
+ {
+ "id": 1877,
+ "start": 2090.38,
+ "end": 2091.32,
+ "text": "change"
+ },
+ {
+ "id": 1878,
+ "start": 2091.32,
+ "end": 2092.36,
+ "text": "campaigns,"
+ },
+ {
+ "id": 1879,
+ "start": 2092.36,
+ "end": 2093.36,
+ "text": "including"
+ },
+ {
+ "id": 1880,
+ "start": 2093.36,
+ "end": 2094.38,
+ "text": "presidents,"
+ },
+ {
+ "id": 1881,
+ "start": 2094.38,
+ "end": 2094.86,
+ "text": "Bush"
+ },
+ {
+ "id": 1882,
+ "start": 2094.86,
+ "end": 2095.72,
+ "text": "Obama"
+ },
+ {
+ "id": 1883,
+ "start": 2095.72,
+ "end": 2096.34,
+ "text": "and"
+ },
+ {
+ "id": 1884,
+ "start": 2096.34,
+ "end": 2096.74,
+ "text": "Trump"
+ },
+ {
+ "id": 1885,
+ "start": 2096.74,
+ "end": 2097.36,
+ "text": "all"
+ },
+ {
+ "id": 1886,
+ "start": 2097.36,
+ "end": 2097.74,
+ "text": "use"
+ },
+ {
+ "id": 1887,
+ "start": 2097.74,
+ "end": 2098.08,
+ "text": "these"
+ },
+ {
+ "id": 1888,
+ "start": 2098.08,
+ "end": 2099.18,
+ "text": "increasing"
+ },
+ {
+ "id": 1889,
+ "start": 2099.18,
+ "end": 2099.62,
+ "text": "amounts"
+ },
+ {
+ "id": 1890,
+ "start": 2099.62,
+ "end": 2099.84,
+ "text": "of"
+ },
+ {
+ "id": 1891,
+ "start": 2099.84,
+ "end": 2100.48,
+ "text": "data"
+ },
+ {
+ "id": 1892,
+ "start": 2100.48,
+ "end": 2100.92,
+ "text": "to"
+ },
+ {
+ "id": 1893,
+ "start": 2100.92,
+ "end": 2101.54,
+ "text": "focus"
+ },
+ {
+ "id": 1894,
+ "start": 2101.54,
+ "end": 2102,
+ "text": "on"
+ },
+ {
+ "id": 1895,
+ "start": 2102,
+ "end": 2102.48,
+ "text": "micro"
+ },
+ {
+ "id": 1896,
+ "start": 2102.48,
+ "end": 2103.2,
+ "text": "targeting"
+ },
+ {
+ "id": 1897,
+ "start": 2103.2,
+ "end": 2104.28,
+ "text": "and"
+ },
+ {
+ "id": 1898,
+ "start": 2104.28,
+ "end": 2105.28,
+ "text": "personalization"
+ },
+ {
+ "id": 1899,
+ "start": 2105.28,
+ "end": 2106.1,
+ "text": "over"
+ },
+ {
+ "id": 1900,
+ "start": 2106.1,
+ "end": 2106.54,
+ "text": "numerous"
+ },
+ {
+ "id": 1901,
+ "start": 2106.54,
+ "end": 2107.06,
+ "text": "social"
+ },
+ {
+ "id": 1902,
+ "start": 2107.06,
+ "end": 2107.5,
+ "text": "media"
+ },
+ {
+ "id": 1903,
+ "start": 2107.5,
+ "end": 2108.18,
+ "text": "platforms"
+ },
+ {
+ "id": 1904,
+ "start": 2108.18,
+ "end": 2108.94,
+ "text": "and"
+ },
+ {
+ "id": 1905,
+ "start": 2108.94,
+ "end": 2109.58,
+ "text": "especially"
+ },
+ {
+ "id": 1906,
+ "start": 2109.58,
+ "end": 2110.66,
+ "text": "Facebook."
+ },
+ {
+ "id": 1907,
+ "start": 2110.66,
+ "end": 2111.66,
+ "text": "In"
+ },
+ {
+ "id": 1908,
+ "start": 2111.66,
+ "end": 2112.64,
+ "text": "fact,"
+ },
+ {
+ "id": 1909,
+ "start": 2112.64,
+ "end": 2113.76,
+ "text": "President"
+ },
+ {
+ "id": 1910,
+ "start": 2113.76,
+ "end": 2114.7,
+ "text": "Obama's"
+ },
+ {
+ "id": 1911,
+ "start": 2114.7,
+ "end": 2115.82,
+ "text": "campaign"
+ },
+ {
+ "id": 1912,
+ "start": 2115.82,
+ "end": 2116.46,
+ "text": "developed"
+ },
+ {
+ "id": 1913,
+ "start": 2116.46,
+ "end": 2116.6,
+ "text": "an"
+ },
+ {
+ "id": 1914,
+ "start": 2116.6,
+ "end": 2117.06,
+ "text": "apt"
+ },
+ {
+ "id": 1915,
+ "start": 2117.06,
+ "end": 2117.88,
+ "text": "utilizing"
+ },
+ {
+ "id": 1916,
+ "start": 2117.88,
+ "end": 2118.06,
+ "text": "the"
+ },
+ {
+ "id": 1917,
+ "start": 2118.06,
+ "end": 2118.4,
+ "text": "same"
+ },
+ {
+ "id": 1918,
+ "start": 2118.4,
+ "end": 2119.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 1919,
+ "start": 2119.12,
+ "end": 2119.72,
+ "text": "feature"
+ },
+ {
+ "id": 1920,
+ "start": 2119.72,
+ "end": 2120.38,
+ "text": "as"
+ },
+ {
+ "id": 1921,
+ "start": 2120.38,
+ "end": 2121.2,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1922,
+ "start": 2121.2,
+ "end": 2122.16,
+ "text": "Analytica"
+ },
+ {
+ "id": 1923,
+ "start": 2122.16,
+ "end": 2122.78,
+ "text": "to"
+ },
+ {
+ "id": 1924,
+ "start": 2122.78,
+ "end": 2123.26,
+ "text": "capture"
+ },
+ {
+ "id": 1925,
+ "start": 2123.26,
+ "end": 2123.44,
+ "text": "the"
+ },
+ {
+ "id": 1926,
+ "start": 2123.44,
+ "end": 2124.06,
+ "text": "information"
+ },
+ {
+ "id": 1927,
+ "start": 2124.06,
+ "end": 2124.26,
+ "text": "of"
+ },
+ {
+ "id": 1928,
+ "start": 2124.26,
+ "end": 2124.5,
+ "text": "not"
+ },
+ {
+ "id": 1929,
+ "start": 2124.5,
+ "end": 2124.84,
+ "text": "just"
+ },
+ {
+ "id": 1930,
+ "start": 2124.84,
+ "end": 2125.08,
+ "text": "the"
+ },
+ {
+ "id": 1931,
+ "start": 2125.08,
+ "end": 2125.42,
+ "text": "apps"
+ },
+ {
+ "id": 1932,
+ "start": 2125.42,
+ "end": 2125.78,
+ "text": "use."
+ },
+ {
+ "id": 1933,
+ "start": 2125.78,
+ "end": 2126.7,
+ "text": "But"
+ },
+ {
+ "id": 1934,
+ "start": 2126.7,
+ "end": 2127.22,
+ "text": "millions"
+ },
+ {
+ "id": 1935,
+ "start": 2127.22,
+ "end": 2127.34,
+ "text": "of"
+ },
+ {
+ "id": 1936,
+ "start": 2127.34,
+ "end": 2127.6,
+ "text": "their"
+ },
+ {
+ "id": 1937,
+ "start": 2127.6,
+ "end": 2128.04,
+ "text": "friends,"
+ },
+ {
+ "id": 1938,
+ "start": 2128.04,
+ "end": 2129,
+ "text": "the"
+ },
+ {
+ "id": 1939,
+ "start": 2129,
+ "end": 2129.5,
+ "text": "digital"
+ },
+ {
+ "id": 1940,
+ "start": 2129.5,
+ "end": 2130.08,
+ "text": "director"
+ },
+ {
+ "id": 1941,
+ "start": 2130.08,
+ "end": 2130.34,
+ "text": "for"
+ },
+ {
+ "id": 1942,
+ "start": 2130.34,
+ "end": 2130.62,
+ "text": "that"
+ },
+ {
+ "id": 1943,
+ "start": 2130.62,
+ "end": 2131.36,
+ "text": "campaign"
+ },
+ {
+ "id": 1944,
+ "start": 2131.36,
+ "end": 2132.28,
+ "text": "for"
+ },
+ {
+ "id": 1945,
+ "start": 2132.28,
+ "end": 2132.92,
+ "text": "20"
+ },
+ {
+ "id": 1946,
+ "start": 2132.92,
+ "end": 2133.44,
+ "text": "12"
+ },
+ {
+ "id": 1947,
+ "start": 2133.44,
+ "end": 2134.12,
+ "text": "described"
+ },
+ {
+ "id": 1948,
+ "start": 2134.12,
+ "end": 2134.3,
+ "text": "the"
+ },
+ {
+ "id": 1949,
+ "start": 2134.3,
+ "end": 2134.7,
+ "text": "data"
+ },
+ {
+ "id": 1950,
+ "start": 2134.7,
+ "end": 2135.4,
+ "text": "scraping"
+ },
+ {
+ "id": 1951,
+ "start": 2135.4,
+ "end": 2135.86,
+ "text": "app"
+ },
+ {
+ "id": 1952,
+ "start": 2135.86,
+ "end": 2136.6,
+ "text": "as"
+ },
+ {
+ "id": 1953,
+ "start": 2136.6,
+ "end": 2137.18,
+ "text": "something"
+ },
+ {
+ "id": 1954,
+ "start": 2137.18,
+ "end": 2137.48,
+ "text": "that"
+ },
+ {
+ "id": 1955,
+ "start": 2137.48,
+ "end": 2137.94,
+ "text": "would"
+ },
+ {
+ "id": 1956,
+ "start": 2137.94,
+ "end": 2138.92,
+ "text": "quote."
+ },
+ {
+ "id": 1957,
+ "start": 2138.92,
+ "end": 2139.76,
+ "text": "Wind"
+ },
+ {
+ "id": 1958,
+ "start": 2139.76,
+ "end": 2140.04,
+ "text": "up"
+ },
+ {
+ "id": 1959,
+ "start": 2140.04,
+ "end": 2140.68,
+ "text": "being"
+ },
+ {
+ "id": 1960,
+ "start": 2140.68,
+ "end": 2140.84,
+ "text": "the"
+ },
+ {
+ "id": 1961,
+ "start": 2140.84,
+ "end": 2141.12,
+ "text": "most"
+ },
+ {
+ "id": 1962,
+ "start": 2141.12,
+ "end": 2142.08,
+ "text": "groundbreaking"
+ },
+ {
+ "id": 1963,
+ "start": 2142.08,
+ "end": 2142.46,
+ "text": "piece"
+ },
+ {
+ "id": 1964,
+ "start": 2142.46,
+ "end": 2142.62,
+ "text": "of"
+ },
+ {
+ "id": 1965,
+ "start": 2142.62,
+ "end": 2143.42,
+ "text": "technology"
+ },
+ {
+ "id": 1966,
+ "start": 2143.42,
+ "end": 2144.1,
+ "text": "developed"
+ },
+ {
+ "id": 1967,
+ "start": 2144.1,
+ "end": 2144.66,
+ "text": "for"
+ },
+ {
+ "id": 1968,
+ "start": 2144.66,
+ "end": 2144.9,
+ "text": "this"
+ },
+ {
+ "id": 1969,
+ "start": 2144.9,
+ "end": 2145.6,
+ "text": "campaign"
+ },
+ {
+ "id": 1970,
+ "start": 2145.6,
+ "end": 2145.9,
+ "text": "and"
+ },
+ {
+ "id": 1971,
+ "start": 2145.9,
+ "end": 2146.06,
+ "text": "the"
+ },
+ {
+ "id": 1972,
+ "start": 2146.06,
+ "end": 2147,
+ "text": "quote"
+ },
+ {
+ "id": 1973,
+ "start": 2147,
+ "end": 2147.76,
+ "text": "so"
+ },
+ {
+ "id": 1974,
+ "start": 2147.76,
+ "end": 2147.96,
+ "text": "the"
+ },
+ {
+ "id": 1975,
+ "start": 2147.96,
+ "end": 2148.82,
+ "text": "effectiveness"
+ },
+ {
+ "id": 1976,
+ "start": 2148.82,
+ "end": 2149,
+ "text": "of"
+ },
+ {
+ "id": 1977,
+ "start": 2149,
+ "end": 2149.26,
+ "text": "these"
+ },
+ {
+ "id": 1978,
+ "start": 2149.26,
+ "end": 2149.74,
+ "text": "social"
+ },
+ {
+ "id": 1979,
+ "start": 2149.74,
+ "end": 2150.12,
+ "text": "media"
+ },
+ {
+ "id": 1980,
+ "start": 2150.12,
+ "end": 2150.82,
+ "text": "tactics"
+ },
+ {
+ "id": 1981,
+ "start": 2150.82,
+ "end": 2151.34,
+ "text": "can"
+ },
+ {
+ "id": 1982,
+ "start": 2151.34,
+ "end": 2151.5,
+ "text": "be"
+ },
+ {
+ "id": 1983,
+ "start": 2151.5,
+ "end": 2152.06,
+ "text": "debated."
+ },
+ {
+ "id": 1984,
+ "start": 2152.06,
+ "end": 2153.1,
+ "text": "But"
+ },
+ {
+ "id": 1985,
+ "start": 2153.1,
+ "end": 2153.4,
+ "text": "they're"
+ },
+ {
+ "id": 1986,
+ "start": 2153.4,
+ "end": 2153.72,
+ "text": "used"
+ },
+ {
+ "id": 1987,
+ "start": 2153.72,
+ "end": 2154,
+ "text": "over"
+ },
+ {
+ "id": 1988,
+ "start": 2154,
+ "end": 2154.14,
+ "text": "the"
+ },
+ {
+ "id": 1989,
+ "start": 2154.14,
+ "end": 2154.46,
+ "text": "past"
+ },
+ {
+ "id": 1990,
+ "start": 2154.46,
+ "end": 2154.78,
+ "text": "years"
+ },
+ {
+ "id": 1991,
+ "start": 2154.78,
+ "end": 2155.18,
+ "text": "across"
+ },
+ {
+ "id": 1992,
+ "start": 2155.18,
+ "end": 2155.36,
+ "text": "the"
+ },
+ {
+ "id": 1993,
+ "start": 2155.36,
+ "end": 2155.82,
+ "text": "political"
+ },
+ {
+ "id": 1994,
+ "start": 2155.82,
+ "end": 2156.44,
+ "text": "spectrum"
+ },
+ {
+ "id": 1995,
+ "start": 2156.44,
+ "end": 2157.1,
+ "text": "and"
+ },
+ {
+ "id": 1996,
+ "start": 2157.1,
+ "end": 2157.34,
+ "text": "their"
+ },
+ {
+ "id": 1997,
+ "start": 2157.34,
+ "end": 2157.88,
+ "text": "increased"
+ },
+ {
+ "id": 1998,
+ "start": 2157.88,
+ "end": 2158.72,
+ "text": "significance"
+ },
+ {
+ "id": 1999,
+ "start": 2158.72,
+ "end": 2159.84,
+ "text": "cannot"
+ },
+ {
+ "id": 2000,
+ "start": 2159.84,
+ "end": 2160.14,
+ "text": "be"
+ },
+ {
+ "id": 2001,
+ "start": 2160.14,
+ "end": 2161.72,
+ "text": "ignored"
+ },
+ {
+ "id": 2002,
+ "start": 2161.72,
+ "end": 2162.94,
+ "text": "our"
+ },
+ {
+ "id": 2003,
+ "start": 2162.94,
+ "end": 2163.72,
+ "text": "policy"
+ },
+ {
+ "id": 2004,
+ "start": 2163.72,
+ "end": 2164.68,
+ "text": "towards"
+ },
+ {
+ "id": 2005,
+ "start": 2164.68,
+ "end": 2165.12,
+ "text": "data,"
+ },
+ {
+ "id": 2006,
+ "start": 2165.12,
+ "end": 2165.62,
+ "text": "privacy"
+ },
+ {
+ "id": 2007,
+ "start": 2165.62,
+ "end": 2166.28,
+ "text": "and"
+ },
+ {
+ "id": 2008,
+ "start": 2166.28,
+ "end": 2166.9,
+ "text": "security"
+ },
+ {
+ "id": 2009,
+ "start": 2166.9,
+ "end": 2167.62,
+ "text": "must"
+ },
+ {
+ "id": 2010,
+ "start": 2167.62,
+ "end": 2167.84,
+ "text": "keep"
+ },
+ {
+ "id": 2011,
+ "start": 2167.84,
+ "end": 2168.26,
+ "text": "pace"
+ },
+ {
+ "id": 2012,
+ "start": 2168.26,
+ "end": 2168.5,
+ "text": "with"
+ },
+ {
+ "id": 2013,
+ "start": 2168.5,
+ "end": 2168.72,
+ "text": "these"
+ },
+ {
+ "id": 2014,
+ "start": 2168.72,
+ "end": 2169.76,
+ "text": "changes"
+ },
+ {
+ "id": 2015,
+ "start": 2169.76,
+ "end": 2170.84,
+ "text": "data."
+ },
+ {
+ "id": 2016,
+ "start": 2170.84,
+ "end": 2171.4,
+ "text": "Privacy"
+ },
+ {
+ "id": 2017,
+ "start": 2171.4,
+ "end": 2171.7,
+ "text": "should"
+ },
+ {
+ "id": 2018,
+ "start": 2171.7,
+ "end": 2171.82,
+ "text": "be"
+ },
+ {
+ "id": 2019,
+ "start": 2171.82,
+ "end": 2172.38,
+ "text": "tethered"
+ },
+ {
+ "id": 2020,
+ "start": 2172.38,
+ "end": 2173.14,
+ "text": "to"
+ },
+ {
+ "id": 2021,
+ "start": 2173.14,
+ "end": 2173.78,
+ "text": "consumer"
+ },
+ {
+ "id": 2022,
+ "start": 2173.78,
+ "end": 2174.14,
+ "text": "needs"
+ },
+ {
+ "id": 2023,
+ "start": 2174.14,
+ "end": 2174.38,
+ "text": "and"
+ },
+ {
+ "id": 2024,
+ "start": 2174.38,
+ "end": 2175.36,
+ "text": "expectations"
+ },
+ {
+ "id": 2025,
+ "start": 2175.36,
+ "end": 2176.64,
+ "text": "now"
+ },
+ {
+ "id": 2026,
+ "start": 2176.64,
+ "end": 2176.94,
+ "text": "at"
+ },
+ {
+ "id": 2027,
+ "start": 2176.94,
+ "end": 2177,
+ "text": "a"
+ },
+ {
+ "id": 2028,
+ "start": 2177,
+ "end": 2177.48,
+ "text": "minimum."
+ },
+ {
+ "id": 2029,
+ "start": 2177.48,
+ "end": 2178.58,
+ "text": "Consumers"
+ },
+ {
+ "id": 2030,
+ "start": 2178.58,
+ "end": 2178.88,
+ "text": "must"
+ },
+ {
+ "id": 2031,
+ "start": 2178.88,
+ "end": 2179.08,
+ "text": "have"
+ },
+ {
+ "id": 2032,
+ "start": 2179.08,
+ "end": 2179.18,
+ "text": "the"
+ },
+ {
+ "id": 2033,
+ "start": 2179.18,
+ "end": 2180,
+ "text": "transparency"
+ },
+ {
+ "id": 2034,
+ "start": 2180,
+ "end": 2180.88,
+ "text": "necessary"
+ },
+ {
+ "id": 2035,
+ "start": 2180.88,
+ "end": 2181.44,
+ "text": "to"
+ },
+ {
+ "id": 2036,
+ "start": 2181.44,
+ "end": 2181.64,
+ "text": "make"
+ },
+ {
+ "id": 2037,
+ "start": 2181.64,
+ "end": 2181.78,
+ "text": "an"
+ },
+ {
+ "id": 2038,
+ "start": 2181.78,
+ "end": 2182.3,
+ "text": "informed"
+ },
+ {
+ "id": 2039,
+ "start": 2182.3,
+ "end": 2182.84,
+ "text": "decision"
+ },
+ {
+ "id": 2040,
+ "start": 2182.84,
+ "end": 2183.16,
+ "text": "about"
+ },
+ {
+ "id": 2041,
+ "start": 2183.16,
+ "end": 2183.48,
+ "text": "whether"
+ },
+ {
+ "id": 2042,
+ "start": 2183.48,
+ "end": 2183.66,
+ "text": "to"
+ },
+ {
+ "id": 2043,
+ "start": 2183.66,
+ "end": 2183.94,
+ "text": "share"
+ },
+ {
+ "id": 2044,
+ "start": 2183.94,
+ "end": 2184.22,
+ "text": "their"
+ },
+ {
+ "id": 2045,
+ "start": 2184.22,
+ "end": 2184.62,
+ "text": "data"
+ },
+ {
+ "id": 2046,
+ "start": 2184.62,
+ "end": 2185.46,
+ "text": "and"
+ },
+ {
+ "id": 2047,
+ "start": 2185.46,
+ "end": 2185.72,
+ "text": "how"
+ },
+ {
+ "id": 2048,
+ "start": 2185.72,
+ "end": 2185.82,
+ "text": "it"
+ },
+ {
+ "id": 2049,
+ "start": 2185.82,
+ "end": 2186,
+ "text": "can"
+ },
+ {
+ "id": 2050,
+ "start": 2186,
+ "end": 2186.14,
+ "text": "be"
+ },
+ {
+ "id": 2051,
+ "start": 2186.14,
+ "end": 2186.86,
+ "text": "used"
+ },
+ {
+ "id": 2052,
+ "start": 2186.86,
+ "end": 2187.88,
+ "text": "consumers"
+ },
+ {
+ "id": 2053,
+ "start": 2187.88,
+ "end": 2188.12,
+ "text": "ought"
+ },
+ {
+ "id": 2054,
+ "start": 2188.12,
+ "end": 2188.24,
+ "text": "to"
+ },
+ {
+ "id": 2055,
+ "start": 2188.24,
+ "end": 2188.44,
+ "text": "have"
+ },
+ {
+ "id": 2056,
+ "start": 2188.44,
+ "end": 2188.88,
+ "text": "clear"
+ },
+ {
+ "id": 2057,
+ "start": 2188.88,
+ "end": 2189.76,
+ "text": "information?"
+ },
+ {
+ "id": 2058,
+ "start": 2189.76,
+ "end": 2190.52,
+ "text": "Not"
+ },
+ {
+ "id": 2059,
+ "start": 2190.52,
+ "end": 2191,
+ "text": "opaque"
+ },
+ {
+ "id": 2060,
+ "start": 2191,
+ "end": 2191.64,
+ "text": "policies"
+ },
+ {
+ "id": 2061,
+ "start": 2191.64,
+ "end": 2191.88,
+ "text": "and"
+ },
+ {
+ "id": 2062,
+ "start": 2191.88,
+ "end": 2192.56,
+ "text": "complex"
+ },
+ {
+ "id": 2063,
+ "start": 2192.56,
+ "end": 2193.4,
+ "text": "click"
+ },
+ {
+ "id": 2064,
+ "start": 2193.4,
+ "end": 2194.26,
+ "text": "through"
+ },
+ {
+ "id": 2065,
+ "start": 2194.26,
+ "end": 2195.12,
+ "text": "consent"
+ },
+ {
+ "id": 2066,
+ "start": 2195.12,
+ "end": 2196.04,
+ "text": "pages."
+ },
+ {
+ "id": 2067,
+ "start": 2196.04,
+ "end": 2196.62,
+ "text": "The"
+ },
+ {
+ "id": 2068,
+ "start": 2196.62,
+ "end": 2196.9,
+ "text": "tech"
+ },
+ {
+ "id": 2069,
+ "start": 2196.9,
+ "end": 2197.48,
+ "text": "industry"
+ },
+ {
+ "id": 2070,
+ "start": 2197.48,
+ "end": 2198.22,
+ "text": "has"
+ },
+ {
+ "id": 2071,
+ "start": 2198.22,
+ "end": 2198.34,
+ "text": "an"
+ },
+ {
+ "id": 2072,
+ "start": 2198.34,
+ "end": 2199.04,
+ "text": "obligation"
+ },
+ {
+ "id": 2073,
+ "start": 2199.04,
+ "end": 2199.2,
+ "text": "to"
+ },
+ {
+ "id": 2074,
+ "start": 2199.2,
+ "end": 2199.74,
+ "text": "respond"
+ },
+ {
+ "id": 2075,
+ "start": 2199.74,
+ "end": 2199.88,
+ "text": "to"
+ },
+ {
+ "id": 2076,
+ "start": 2199.88,
+ "end": 2200.62,
+ "text": "widespread"
+ },
+ {
+ "id": 2077,
+ "start": 2200.62,
+ "end": 2201.48,
+ "text": "and"
+ },
+ {
+ "id": 2078,
+ "start": 2201.48,
+ "end": 2201.88,
+ "text": "growing"
+ },
+ {
+ "id": 2079,
+ "start": 2201.88,
+ "end": 2202.46,
+ "text": "concerns"
+ },
+ {
+ "id": 2080,
+ "start": 2202.46,
+ "end": 2202.78,
+ "text": "over"
+ },
+ {
+ "id": 2081,
+ "start": 2202.78,
+ "end": 2203.14,
+ "text": "data,"
+ },
+ {
+ "id": 2082,
+ "start": 2203.14,
+ "end": 2203.68,
+ "text": "privacy"
+ },
+ {
+ "id": 2083,
+ "start": 2203.68,
+ "end": 2204.64,
+ "text": "and"
+ },
+ {
+ "id": 2084,
+ "start": 2204.64,
+ "end": 2205.3,
+ "text": "security"
+ },
+ {
+ "id": 2085,
+ "start": 2205.3,
+ "end": 2206,
+ "text": "and"
+ },
+ {
+ "id": 2086,
+ "start": 2206,
+ "end": 2206.14,
+ "text": "to"
+ },
+ {
+ "id": 2087,
+ "start": 2206.14,
+ "end": 2206.54,
+ "text": "restore"
+ },
+ {
+ "id": 2088,
+ "start": 2206.54,
+ "end": 2206.74,
+ "text": "the"
+ },
+ {
+ "id": 2089,
+ "start": 2206.74,
+ "end": 2207.12,
+ "text": "public"
+ },
+ {
+ "id": 2090,
+ "start": 2207.12,
+ "end": 2207.54,
+ "text": "trust"
+ },
+ {
+ "id": 2091,
+ "start": 2207.54,
+ "end": 2208.32,
+ "text": "the"
+ },
+ {
+ "id": 2092,
+ "start": 2208.32,
+ "end": 2208.92,
+ "text": "status"
+ },
+ {
+ "id": 2093,
+ "start": 2208.92,
+ "end": 2209.24,
+ "text": "quo"
+ },
+ {
+ "id": 2094,
+ "start": 2209.24,
+ "end": 2210.2,
+ "text": "no"
+ },
+ {
+ "id": 2095,
+ "start": 2210.2,
+ "end": 2210.74,
+ "text": "longer"
+ },
+ {
+ "id": 2096,
+ "start": 2210.74,
+ "end": 2211.76,
+ "text": "works."
+ },
+ {
+ "id": 2097,
+ "start": 2211.76,
+ "end": 2212.68,
+ "text": "Moreover."
+ },
+ {
+ "id": 2098,
+ "start": 2212.68,
+ "end": 2213.2,
+ "text": "Congress"
+ },
+ {
+ "id": 2099,
+ "start": 2213.2,
+ "end": 2214.02,
+ "text": "must"
+ },
+ {
+ "id": 2100,
+ "start": 2214.02,
+ "end": 2214.56,
+ "text": "determine"
+ },
+ {
+ "id": 2101,
+ "start": 2214.56,
+ "end": 2214.84,
+ "text": "if"
+ },
+ {
+ "id": 2102,
+ "start": 2214.84,
+ "end": 2215.44,
+ "text": "and"
+ },
+ {
+ "id": 2103,
+ "start": 2215.44,
+ "end": 2215.68,
+ "text": "how"
+ },
+ {
+ "id": 2104,
+ "start": 2215.68,
+ "end": 2215.86,
+ "text": "we"
+ },
+ {
+ "id": 2105,
+ "start": 2215.86,
+ "end": 2216.14,
+ "text": "need"
+ },
+ {
+ "id": 2106,
+ "start": 2216.14,
+ "end": 2216.28,
+ "text": "to"
+ },
+ {
+ "id": 2107,
+ "start": 2216.28,
+ "end": 2216.84,
+ "text": "strengthen"
+ },
+ {
+ "id": 2108,
+ "start": 2216.84,
+ "end": 2217.76,
+ "text": "privacy"
+ },
+ {
+ "id": 2109,
+ "start": 2217.76,
+ "end": 2218.3,
+ "text": "standards"
+ },
+ {
+ "id": 2110,
+ "start": 2218.3,
+ "end": 2218.5,
+ "text": "to"
+ },
+ {
+ "id": 2111,
+ "start": 2218.5,
+ "end": 2219.18,
+ "text": "ensure"
+ },
+ {
+ "id": 2112,
+ "start": 2219.18,
+ "end": 2220.16,
+ "text": "transparency"
+ },
+ {
+ "id": 2113,
+ "start": 2220.16,
+ "end": 2220.5,
+ "text": "and"
+ },
+ {
+ "id": 2114,
+ "start": 2220.5,
+ "end": 2221.8,
+ "text": "understanding"
+ },
+ {
+ "id": 2115,
+ "start": 2221.8,
+ "end": 2222.08,
+ "text": "for"
+ },
+ {
+ "id": 2116,
+ "start": 2222.08,
+ "end": 2222.24,
+ "text": "the"
+ },
+ {
+ "id": 2117,
+ "start": 2222.24,
+ "end": 2222.74,
+ "text": "billions"
+ },
+ {
+ "id": 2118,
+ "start": 2222.74,
+ "end": 2222.9,
+ "text": "of"
+ },
+ {
+ "id": 2119,
+ "start": 2222.9,
+ "end": 2223.58,
+ "text": "consumers"
+ },
+ {
+ "id": 2120,
+ "start": 2223.58,
+ "end": 2223.72,
+ "text": "who"
+ },
+ {
+ "id": 2121,
+ "start": 2223.72,
+ "end": 2224.64,
+ "text": "utilize"
+ },
+ {
+ "id": 2122,
+ "start": 2224.64,
+ "end": 2225.24,
+ "text": "these"
+ },
+ {
+ "id": 2123,
+ "start": 2225.24,
+ "end": 2225.74,
+ "text": "products."
+ },
+ {
+ "id": 2124,
+ "start": 2225.74,
+ "end": 2226.48,
+ "text": "Senator"
+ },
+ {
+ "id": 2125,
+ "start": 2226.48,
+ "end": 2227.32,
+ "text": "Nelson,"
+ },
+ {
+ "id": 2126,
+ "start": 2227.32,
+ "end": 2228.28,
+ "text": "thank"
+ },
+ {
+ "id": 2127,
+ "start": 2228.28,
+ "end": 2228.42,
+ "text": "you,"
+ },
+ {
+ "id": 2128,
+ "start": 2228.42,
+ "end": 2228.68,
+ "text": "Mr"
+ },
+ {
+ "id": 2129,
+ "start": 2228.68,
+ "end": 2229.08,
+ "text": "Chairman."
+ },
+ {
+ "id": 2130,
+ "start": 2229.08,
+ "end": 2229.7,
+ "text": "Mr"
+ },
+ {
+ "id": 2131,
+ "start": 2229.7,
+ "end": 2230.16,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 2132,
+ "start": 2230.16,
+ "end": 2230.48,
+ "text": "good"
+ },
+ {
+ "id": 2133,
+ "start": 2230.48,
+ "end": 2231.84,
+ "text": "afternoon."
+ },
+ {
+ "id": 2134,
+ "start": 2231.84,
+ "end": 2232.7,
+ "text": "Let"
+ },
+ {
+ "id": 2135,
+ "start": 2232.7,
+ "end": 2232.88,
+ "text": "me"
+ },
+ {
+ "id": 2136,
+ "start": 2232.88,
+ "end": 2233.12,
+ "text": "just"
+ },
+ {
+ "id": 2137,
+ "start": 2233.12,
+ "end": 2233.32,
+ "text": "cut"
+ },
+ {
+ "id": 2138,
+ "start": 2233.32,
+ "end": 2233.5,
+ "text": "to"
+ },
+ {
+ "id": 2139,
+ "start": 2233.5,
+ "end": 2233.68,
+ "text": "the"
+ },
+ {
+ "id": 2140,
+ "start": 2233.68,
+ "end": 2234.04,
+ "text": "chase."
+ },
+ {
+ "id": 2141,
+ "start": 2234.04,
+ "end": 2234.9,
+ "text": "If"
+ },
+ {
+ "id": 2142,
+ "start": 2234.9,
+ "end": 2235.08,
+ "text": "you"
+ },
+ {
+ "id": 2143,
+ "start": 2235.08,
+ "end": 2235.36,
+ "text": "and"
+ },
+ {
+ "id": 2144,
+ "start": 2235.36,
+ "end": 2235.62,
+ "text": "other"
+ },
+ {
+ "id": 2145,
+ "start": 2235.62,
+ "end": 2236.12,
+ "text": "social"
+ },
+ {
+ "id": 2146,
+ "start": 2236.12,
+ "end": 2236.5,
+ "text": "media"
+ },
+ {
+ "id": 2147,
+ "start": 2236.5,
+ "end": 2237.2,
+ "text": "companies"
+ },
+ {
+ "id": 2148,
+ "start": 2237.2,
+ "end": 2237.9,
+ "text": "do"
+ },
+ {
+ "id": 2149,
+ "start": 2237.9,
+ "end": 2238.22,
+ "text": "not"
+ },
+ {
+ "id": 2150,
+ "start": 2238.22,
+ "end": 2238.6,
+ "text": "get"
+ },
+ {
+ "id": 2151,
+ "start": 2238.6,
+ "end": 2239.26,
+ "text": "your"
+ },
+ {
+ "id": 2152,
+ "start": 2239.26,
+ "end": 2240.08,
+ "text": "act"
+ },
+ {
+ "id": 2153,
+ "start": 2240.08,
+ "end": 2240.28,
+ "text": "in"
+ },
+ {
+ "id": 2154,
+ "start": 2240.28,
+ "end": 2240.92,
+ "text": "order."
+ },
+ {
+ "id": 2155,
+ "start": 2240.92,
+ "end": 2241.88,
+ "text": "None"
+ },
+ {
+ "id": 2156,
+ "start": 2241.88,
+ "end": 2241.98,
+ "text": "of"
+ },
+ {
+ "id": 2157,
+ "start": 2241.98,
+ "end": 2242.3,
+ "text": "us"
+ },
+ {
+ "id": 2158,
+ "start": 2242.3,
+ "end": 2242.5,
+ "text": "are"
+ },
+ {
+ "id": 2159,
+ "start": 2242.5,
+ "end": 2242.7,
+ "text": "going"
+ },
+ {
+ "id": 2160,
+ "start": 2242.7,
+ "end": 2242.8,
+ "text": "to"
+ },
+ {
+ "id": 2161,
+ "start": 2242.8,
+ "end": 2243,
+ "text": "have"
+ },
+ {
+ "id": 2162,
+ "start": 2243,
+ "end": 2243.26,
+ "text": "any"
+ },
+ {
+ "id": 2163,
+ "start": 2243.26,
+ "end": 2243.8,
+ "text": "privacy"
+ },
+ {
+ "id": 2164,
+ "start": 2243.8,
+ "end": 2245.08,
+ "text": "anymore"
+ },
+ {
+ "id": 2165,
+ "start": 2245.08,
+ "end": 2246.18,
+ "text": "that's"
+ },
+ {
+ "id": 2166,
+ "start": 2246.18,
+ "end": 2246.44,
+ "text": "what"
+ },
+ {
+ "id": 2167,
+ "start": 2246.44,
+ "end": 2246.8,
+ "text": "we're"
+ },
+ {
+ "id": 2168,
+ "start": 2246.8,
+ "end": 2247.34,
+ "text": "facing"
+ },
+ {
+ "id": 2169,
+ "start": 2247.34,
+ "end": 2247.68,
+ "text": "we're"
+ },
+ {
+ "id": 2170,
+ "start": 2247.68,
+ "end": 2248.02,
+ "text": "talking"
+ },
+ {
+ "id": 2171,
+ "start": 2248.02,
+ "end": 2248.36,
+ "text": "about"
+ },
+ {
+ "id": 2172,
+ "start": 2248.36,
+ "end": 2249.44,
+ "text": "personally"
+ },
+ {
+ "id": 2173,
+ "start": 2249.44,
+ "end": 2250.66,
+ "text": "identifiable"
+ },
+ {
+ "id": 2174,
+ "start": 2250.66,
+ "end": 2252.12,
+ "text": "information"
+ },
+ {
+ "id": 2175,
+ "start": 2252.12,
+ "end": 2253.14,
+ "text": "that"
+ },
+ {
+ "id": 2176,
+ "start": 2253.14,
+ "end": 2253.6,
+ "text": "if"
+ },
+ {
+ "id": 2177,
+ "start": 2253.6,
+ "end": 2254.02,
+ "text": "not"
+ },
+ {
+ "id": 2178,
+ "start": 2254.02,
+ "end": 2254.38,
+ "text": "kept"
+ },
+ {
+ "id": 2179,
+ "start": 2254.38,
+ "end": 2254.6,
+ "text": "by"
+ },
+ {
+ "id": 2180,
+ "start": 2254.6,
+ "end": 2254.88,
+ "text": "the"
+ },
+ {
+ "id": 2181,
+ "start": 2254.88,
+ "end": 2255.44,
+ "text": "social"
+ },
+ {
+ "id": 2182,
+ "start": 2255.44,
+ "end": 2256.26,
+ "text": "media"
+ },
+ {
+ "id": 2183,
+ "start": 2256.26,
+ "end": 2256.8,
+ "text": "companies"
+ },
+ {
+ "id": 2184,
+ "start": 2256.8,
+ "end": 2257.1,
+ "text": "from"
+ },
+ {
+ "id": 2185,
+ "start": 2257.1,
+ "end": 2259.38,
+ "text": "theft,"
+ },
+ {
+ "id": 2186,
+ "start": 2259.38,
+ "end": 2260.44,
+ "text": "a"
+ },
+ {
+ "id": 2187,
+ "start": 2260.44,
+ "end": 2261.04,
+ "text": "value"
+ },
+ {
+ "id": 2188,
+ "start": 2261.04,
+ "end": 2261.28,
+ "text": "that"
+ },
+ {
+ "id": 2189,
+ "start": 2261.28,
+ "end": 2261.54,
+ "text": "we"
+ },
+ {
+ "id": 2190,
+ "start": 2261.54,
+ "end": 2261.86,
+ "text": "have"
+ },
+ {
+ "id": 2191,
+ "start": 2261.86,
+ "end": 2262.02,
+ "text": "in"
+ },
+ {
+ "id": 2192,
+ "start": 2262.02,
+ "end": 2262.74,
+ "text": "America"
+ },
+ {
+ "id": 2193,
+ "start": 2262.74,
+ "end": 2263.4,
+ "text": "being"
+ },
+ {
+ "id": 2194,
+ "start": 2263.4,
+ "end": 2264,
+ "text": "our"
+ },
+ {
+ "id": 2195,
+ "start": 2264,
+ "end": 2264.5,
+ "text": "personal"
+ },
+ {
+ "id": 2196,
+ "start": 2264.5,
+ "end": 2265.8,
+ "text": "privacy."
+ },
+ {
+ "id": 2197,
+ "start": 2265.8,
+ "end": 2266.5,
+ "text": "We"
+ },
+ {
+ "id": 2198,
+ "start": 2266.5,
+ "end": 2266.88,
+ "text": "won't"
+ },
+ {
+ "id": 2199,
+ "start": 2266.88,
+ "end": 2267.12,
+ "text": "have"
+ },
+ {
+ "id": 2200,
+ "start": 2267.12,
+ "end": 2267.26,
+ "text": "it"
+ },
+ {
+ "id": 2201,
+ "start": 2267.26,
+ "end": 2268.48,
+ "text": "anymore"
+ },
+ {
+ "id": 2202,
+ "start": 2268.48,
+ "end": 2269.5,
+ "text": "it's"
+ },
+ {
+ "id": 2203,
+ "start": 2269.5,
+ "end": 2269.72,
+ "text": "the"
+ },
+ {
+ "id": 2204,
+ "start": 2269.72,
+ "end": 2270.24,
+ "text": "advent"
+ },
+ {
+ "id": 2205,
+ "start": 2270.24,
+ "end": 2270.34,
+ "text": "of"
+ },
+ {
+ "id": 2206,
+ "start": 2270.34,
+ "end": 2272.02,
+ "text": "technology"
+ },
+ {
+ "id": 2207,
+ "start": 2272.02,
+ "end": 2273.04,
+ "text": "and"
+ },
+ {
+ "id": 2208,
+ "start": 2273.04,
+ "end": 2273.16,
+ "text": "of"
+ },
+ {
+ "id": 2209,
+ "start": 2273.16,
+ "end": 2273.48,
+ "text": "course,"
+ },
+ {
+ "id": 2210,
+ "start": 2273.48,
+ "end": 2273.8,
+ "text": "all"
+ },
+ {
+ "id": 2211,
+ "start": 2273.8,
+ "end": 2273.94,
+ "text": "of"
+ },
+ {
+ "id": 2212,
+ "start": 2273.94,
+ "end": 2274.2,
+ "text": "us"
+ },
+ {
+ "id": 2213,
+ "start": 2274.2,
+ "end": 2274.56,
+ "text": "are"
+ },
+ {
+ "id": 2214,
+ "start": 2274.56,
+ "end": 2274.86,
+ "text": "part"
+ },
+ {
+ "id": 2215,
+ "start": 2274.86,
+ "end": 2275,
+ "text": "of"
+ },
+ {
+ "id": 2216,
+ "start": 2275,
+ "end": 2275.14,
+ "text": "it"
+ },
+ {
+ "id": 2217,
+ "start": 2275.14,
+ "end": 2276.16,
+ "text": "from"
+ },
+ {
+ "id": 2218,
+ "start": 2276.16,
+ "end": 2276.32,
+ "text": "the"
+ },
+ {
+ "id": 2219,
+ "start": 2276.32,
+ "end": 2276.72,
+ "text": "moment"
+ },
+ {
+ "id": 2220,
+ "start": 2276.72,
+ "end": 2277,
+ "text": "that"
+ },
+ {
+ "id": 2221,
+ "start": 2277,
+ "end": 2277.18,
+ "text": "we"
+ },
+ {
+ "id": 2222,
+ "start": 2277.18,
+ "end": 2277.86,
+ "text": "wake"
+ },
+ {
+ "id": 2223,
+ "start": 2277.86,
+ "end": 2278,
+ "text": "up"
+ },
+ {
+ "id": 2224,
+ "start": 2278,
+ "end": 2278.14,
+ "text": "in"
+ },
+ {
+ "id": 2225,
+ "start": 2278.14,
+ "end": 2278.28,
+ "text": "the"
+ },
+ {
+ "id": 2226,
+ "start": 2278.28,
+ "end": 2278.62,
+ "text": "morning"
+ },
+ {
+ "id": 2227,
+ "start": 2278.62,
+ "end": 2279.08,
+ "text": "until"
+ },
+ {
+ "id": 2228,
+ "start": 2279.08,
+ "end": 2279.24,
+ "text": "we"
+ },
+ {
+ "id": 2229,
+ "start": 2279.24,
+ "end": 2279.4,
+ "text": "go"
+ },
+ {
+ "id": 2230,
+ "start": 2279.4,
+ "end": 2279.56,
+ "text": "to"
+ },
+ {
+ "id": 2231,
+ "start": 2279.56,
+ "end": 2279.82,
+ "text": "bed"
+ },
+ {
+ "id": 2232,
+ "start": 2279.82,
+ "end": 2280.14,
+ "text": "we're"
+ },
+ {
+ "id": 2233,
+ "start": 2280.14,
+ "end": 2280.48,
+ "text": "on"
+ },
+ {
+ "id": 2234,
+ "start": 2280.48,
+ "end": 2280.9,
+ "text": "those"
+ },
+ {
+ "id": 2235,
+ "start": 2280.9,
+ "end": 2281.82,
+ "text": "handheld"
+ },
+ {
+ "id": 2236,
+ "start": 2281.82,
+ "end": 2283.26,
+ "text": "tablets"
+ },
+ {
+ "id": 2237,
+ "start": 2283.26,
+ "end": 2284.26,
+ "text": "and"
+ },
+ {
+ "id": 2238,
+ "start": 2284.26,
+ "end": 2285.04,
+ "text": "online,"
+ },
+ {
+ "id": 2239,
+ "start": 2285.04,
+ "end": 2285.62,
+ "text": "companies"
+ },
+ {
+ "id": 2240,
+ "start": 2285.62,
+ "end": 2286.02,
+ "text": "like"
+ },
+ {
+ "id": 2241,
+ "start": 2286.02,
+ "end": 2286.78,
+ "text": "Facebook"
+ },
+ {
+ "id": 2242,
+ "start": 2286.78,
+ "end": 2287.04,
+ "text": "are"
+ },
+ {
+ "id": 2243,
+ "start": 2287.04,
+ "end": 2287.7,
+ "text": "tracking"
+ },
+ {
+ "id": 2244,
+ "start": 2287.7,
+ "end": 2288.98,
+ "text": "our"
+ },
+ {
+ "id": 2245,
+ "start": 2288.98,
+ "end": 2290.56,
+ "text": "activities"
+ },
+ {
+ "id": 2246,
+ "start": 2290.56,
+ "end": 2291.38,
+ "text": "and"
+ },
+ {
+ "id": 2247,
+ "start": 2291.38,
+ "end": 2291.9,
+ "text": "collecting"
+ },
+ {
+ "id": 2248,
+ "start": 2291.9,
+ "end": 2294.44,
+ "text": "information."
+ },
+ {
+ "id": 2249,
+ "start": 2294.44,
+ "end": 2295.42,
+ "text": "Facebook"
+ },
+ {
+ "id": 2250,
+ "start": 2295.42,
+ "end": 2296.32,
+ "text": "has"
+ },
+ {
+ "id": 2251,
+ "start": 2296.32,
+ "end": 2297.34,
+ "text": "a"
+ },
+ {
+ "id": 2252,
+ "start": 2297.34,
+ "end": 2298.32,
+ "text": "responsibility"
+ },
+ {
+ "id": 2253,
+ "start": 2298.32,
+ "end": 2298.58,
+ "text": "to"
+ },
+ {
+ "id": 2254,
+ "start": 2298.58,
+ "end": 2299.26,
+ "text": "protect"
+ },
+ {
+ "id": 2255,
+ "start": 2299.26,
+ "end": 2300.2,
+ "text": "this"
+ },
+ {
+ "id": 2256,
+ "start": 2300.2,
+ "end": 2300.84,
+ "text": "personal"
+ },
+ {
+ "id": 2257,
+ "start": 2300.84,
+ "end": 2302.82,
+ "text": "information."
+ },
+ {
+ "id": 2258,
+ "start": 2302.82,
+ "end": 2303.86,
+ "text": "We"
+ },
+ {
+ "id": 2259,
+ "start": 2303.86,
+ "end": 2304.1,
+ "text": "had"
+ },
+ {
+ "id": 2260,
+ "start": 2304.1,
+ "end": 2304.14,
+ "text": "a"
+ },
+ {
+ "id": 2261,
+ "start": 2304.14,
+ "end": 2304.38,
+ "text": "good"
+ },
+ {
+ "id": 2262,
+ "start": 2304.38,
+ "end": 2304.98,
+ "text": "discussion"
+ },
+ {
+ "id": 2263,
+ "start": 2304.98,
+ "end": 2306.12,
+ "text": "yesterday"
+ },
+ {
+ "id": 2264,
+ "start": 2306.12,
+ "end": 2307.08,
+ "text": "we"
+ },
+ {
+ "id": 2265,
+ "start": 2307.08,
+ "end": 2307.5,
+ "text": "went"
+ },
+ {
+ "id": 2266,
+ "start": 2307.5,
+ "end": 2307.9,
+ "text": "over"
+ },
+ {
+ "id": 2267,
+ "start": 2307.9,
+ "end": 2308.2,
+ "text": "all"
+ },
+ {
+ "id": 2268,
+ "start": 2308.2,
+ "end": 2308.3,
+ "text": "of"
+ },
+ {
+ "id": 2269,
+ "start": 2308.3,
+ "end": 2309.42,
+ "text": "this."
+ },
+ {
+ "id": 2270,
+ "start": 2309.42,
+ "end": 2310.32,
+ "text": "You"
+ },
+ {
+ "id": 2271,
+ "start": 2310.32,
+ "end": 2310.72,
+ "text": "told"
+ },
+ {
+ "id": 2272,
+ "start": 2310.72,
+ "end": 2310.92,
+ "text": "me"
+ },
+ {
+ "id": 2273,
+ "start": 2310.92,
+ "end": 2311.2,
+ "text": "that"
+ },
+ {
+ "id": 2274,
+ "start": 2311.2,
+ "end": 2311.34,
+ "text": "the"
+ },
+ {
+ "id": 2275,
+ "start": 2311.34,
+ "end": 2311.78,
+ "text": "company"
+ },
+ {
+ "id": 2276,
+ "start": 2311.78,
+ "end": 2312.14,
+ "text": "had"
+ },
+ {
+ "id": 2277,
+ "start": 2312.14,
+ "end": 2312.66,
+ "text": "failed"
+ },
+ {
+ "id": 2278,
+ "start": 2312.66,
+ "end": 2312.82,
+ "text": "to"
+ },
+ {
+ "id": 2279,
+ "start": 2312.82,
+ "end": 2312.98,
+ "text": "do"
+ },
+ {
+ "id": 2280,
+ "start": 2312.98,
+ "end": 2314.42,
+ "text": "so"
+ },
+ {
+ "id": 2281,
+ "start": 2314.42,
+ "end": 2315.42,
+ "text": "it's"
+ },
+ {
+ "id": 2282,
+ "start": 2315.42,
+ "end": 2315.56,
+ "text": "not"
+ },
+ {
+ "id": 2283,
+ "start": 2315.56,
+ "end": 2315.76,
+ "text": "the"
+ },
+ {
+ "id": 2284,
+ "start": 2315.76,
+ "end": 2316.04,
+ "text": "first"
+ },
+ {
+ "id": 2285,
+ "start": 2316.04,
+ "end": 2316.46,
+ "text": "time"
+ },
+ {
+ "id": 2286,
+ "start": 2316.46,
+ "end": 2316.68,
+ "text": "that"
+ },
+ {
+ "id": 2287,
+ "start": 2316.68,
+ "end": 2317.32,
+ "text": "Facebook"
+ },
+ {
+ "id": 2288,
+ "start": 2317.32,
+ "end": 2317.62,
+ "text": "has"
+ },
+ {
+ "id": 2289,
+ "start": 2317.62,
+ "end": 2318.34,
+ "text": "mishandled"
+ },
+ {
+ "id": 2290,
+ "start": 2318.34,
+ "end": 2318.7,
+ "text": "its"
+ },
+ {
+ "id": 2291,
+ "start": 2318.7,
+ "end": 2319.18,
+ "text": "users"
+ },
+ {
+ "id": 2292,
+ "start": 2319.18,
+ "end": 2319.94,
+ "text": "information,"
+ },
+ {
+ "id": 2293,
+ "start": 2319.94,
+ "end": 2320.94,
+ "text": "the"
+ },
+ {
+ "id": 2294,
+ "start": 2320.94,
+ "end": 2321.88,
+ "text": "FTC"
+ },
+ {
+ "id": 2295,
+ "start": 2321.88,
+ "end": 2322.42,
+ "text": "found"
+ },
+ {
+ "id": 2296,
+ "start": 2322.42,
+ "end": 2322.68,
+ "text": "that"
+ },
+ {
+ "id": 2297,
+ "start": 2322.68,
+ "end": 2323.48,
+ "text": "Facebook's"
+ },
+ {
+ "id": 2298,
+ "start": 2323.48,
+ "end": 2324.4,
+ "text": "privacy"
+ },
+ {
+ "id": 2299,
+ "start": 2324.4,
+ "end": 2325.14,
+ "text": "policies"
+ },
+ {
+ "id": 2300,
+ "start": 2325.14,
+ "end": 2325.84,
+ "text": "had"
+ },
+ {
+ "id": 2301,
+ "start": 2325.84,
+ "end": 2326.52,
+ "text": "deceived"
+ },
+ {
+ "id": 2302,
+ "start": 2326.52,
+ "end": 2327.12,
+ "text": "users"
+ },
+ {
+ "id": 2303,
+ "start": 2327.12,
+ "end": 2327.36,
+ "text": "in"
+ },
+ {
+ "id": 2304,
+ "start": 2327.36,
+ "end": 2327.5,
+ "text": "the"
+ },
+ {
+ "id": 2305,
+ "start": 2327.5,
+ "end": 2328.7,
+ "text": "past."
+ },
+ {
+ "id": 2306,
+ "start": 2328.7,
+ "end": 2329.62,
+ "text": "And"
+ },
+ {
+ "id": 2307,
+ "start": 2329.62,
+ "end": 2329.8,
+ "text": "in"
+ },
+ {
+ "id": 2308,
+ "start": 2329.8,
+ "end": 2329.94,
+ "text": "the"
+ },
+ {
+ "id": 2309,
+ "start": 2329.94,
+ "end": 2330.38,
+ "text": "present"
+ },
+ {
+ "id": 2310,
+ "start": 2330.38,
+ "end": 2331.32,
+ "text": "case,"
+ },
+ {
+ "id": 2311,
+ "start": 2331.32,
+ "end": 2332.38,
+ "text": "we"
+ },
+ {
+ "id": 2312,
+ "start": 2332.38,
+ "end": 2333.14,
+ "text": "recognize"
+ },
+ {
+ "id": 2313,
+ "start": 2333.14,
+ "end": 2333.4,
+ "text": "that"
+ },
+ {
+ "id": 2314,
+ "start": 2333.4,
+ "end": 2333.92,
+ "text": "Cambridge"
+ },
+ {
+ "id": 2315,
+ "start": 2333.92,
+ "end": 2334.62,
+ "text": "Analytica"
+ },
+ {
+ "id": 2316,
+ "start": 2334.62,
+ "end": 2334.98,
+ "text": "and"
+ },
+ {
+ "id": 2317,
+ "start": 2334.98,
+ "end": 2335.14,
+ "text": "an"
+ },
+ {
+ "id": 2318,
+ "start": 2335.14,
+ "end": 2335.54,
+ "text": "app"
+ },
+ {
+ "id": 2319,
+ "start": 2335.54,
+ "end": 2336.18,
+ "text": "developer"
+ },
+ {
+ "id": 2320,
+ "start": 2336.18,
+ "end": 2336.8,
+ "text": "lied"
+ },
+ {
+ "id": 2321,
+ "start": 2336.8,
+ "end": 2337.06,
+ "text": "to"
+ },
+ {
+ "id": 2322,
+ "start": 2337.06,
+ "end": 2337.78,
+ "text": "consumers"
+ },
+ {
+ "id": 2323,
+ "start": 2337.78,
+ "end": 2338.02,
+ "text": "and"
+ },
+ {
+ "id": 2324,
+ "start": 2338.02,
+ "end": 2338.6,
+ "text": "lied"
+ },
+ {
+ "id": 2325,
+ "start": 2338.6,
+ "end": 2338.86,
+ "text": "to"
+ },
+ {
+ "id": 2326,
+ "start": 2338.86,
+ "end": 2339.32,
+ "text": "you"
+ },
+ {
+ "id": 2327,
+ "start": 2339.32,
+ "end": 2340.22,
+ "text": "lied"
+ },
+ {
+ "id": 2328,
+ "start": 2340.22,
+ "end": 2340.38,
+ "text": "to"
+ },
+ {
+ "id": 2329,
+ "start": 2340.38,
+ "end": 2341.8,
+ "text": "Facebook."
+ },
+ {
+ "id": 2330,
+ "start": 2341.8,
+ "end": 2342.78,
+ "text": "But"
+ },
+ {
+ "id": 2331,
+ "start": 2342.78,
+ "end": 2343.72,
+ "text": "did"
+ },
+ {
+ "id": 2332,
+ "start": 2343.72,
+ "end": 2344.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 2333,
+ "start": 2344.34,
+ "end": 2344.82,
+ "text": "watch"
+ },
+ {
+ "id": 2334,
+ "start": 2344.82,
+ "end": 2345.18,
+ "text": "over"
+ },
+ {
+ "id": 2335,
+ "start": 2345.18,
+ "end": 2345.42,
+ "text": "the"
+ },
+ {
+ "id": 2336,
+ "start": 2345.42,
+ "end": 2347.02,
+ "text": "operations?"
+ },
+ {
+ "id": 2337,
+ "start": 2347.02,
+ "end": 2347.84,
+ "text": "We"
+ },
+ {
+ "id": 2338,
+ "start": 2347.84,
+ "end": 2348.14,
+ "text": "want"
+ },
+ {
+ "id": 2339,
+ "start": 2348.14,
+ "end": 2348.26,
+ "text": "to"
+ },
+ {
+ "id": 2340,
+ "start": 2348.26,
+ "end": 2348.4,
+ "text": "know"
+ },
+ {
+ "id": 2341,
+ "start": 2348.4,
+ "end": 2349.24,
+ "text": "that."
+ },
+ {
+ "id": 2342,
+ "start": 2349.24,
+ "end": 2350.2,
+ "text": "And"
+ },
+ {
+ "id": 2343,
+ "start": 2350.2,
+ "end": 2350.38,
+ "text": "why"
+ },
+ {
+ "id": 2344,
+ "start": 2350.38,
+ "end": 2350.82,
+ "text": "didn't"
+ },
+ {
+ "id": 2345,
+ "start": 2350.82,
+ "end": 2351.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 2346,
+ "start": 2351.46,
+ "end": 2352.04,
+ "text": "notify"
+ },
+ {
+ "id": 2347,
+ "start": 2352.04,
+ "end": 2353.54,
+ "text": "87,000,000"
+ },
+ {
+ "id": 2348,
+ "start": 2353.54,
+ "end": 2354.06,
+ "text": "users"
+ },
+ {
+ "id": 2349,
+ "start": 2354.06,
+ "end": 2354.32,
+ "text": "that"
+ },
+ {
+ "id": 2350,
+ "start": 2354.32,
+ "end": 2354.64,
+ "text": "their"
+ },
+ {
+ "id": 2351,
+ "start": 2354.64,
+ "end": 2355.3,
+ "text": "personally"
+ },
+ {
+ "id": 2352,
+ "start": 2355.3,
+ "end": 2356.22,
+ "text": "identifiable"
+ },
+ {
+ "id": 2353,
+ "start": 2356.22,
+ "end": 2356.96,
+ "text": "information"
+ },
+ {
+ "id": 2354,
+ "start": 2356.96,
+ "end": 2357.28,
+ "text": "had"
+ },
+ {
+ "id": 2355,
+ "start": 2357.28,
+ "end": 2357.48,
+ "text": "been"
+ },
+ {
+ "id": 2356,
+ "start": 2357.48,
+ "end": 2359.96,
+ "text": "taken"
+ },
+ {
+ "id": 2357,
+ "start": 2359.96,
+ "end": 2360.92,
+ "text": "and"
+ },
+ {
+ "id": 2358,
+ "start": 2360.92,
+ "end": 2361.1,
+ "text": "it"
+ },
+ {
+ "id": 2359,
+ "start": 2361.1,
+ "end": 2361.32,
+ "text": "was"
+ },
+ {
+ "id": 2360,
+ "start": 2361.32,
+ "end": 2361.8,
+ "text": "being"
+ },
+ {
+ "id": 2361,
+ "start": 2361.8,
+ "end": 2362.92,
+ "text": "also"
+ },
+ {
+ "id": 2362,
+ "start": 2362.92,
+ "end": 2363.42,
+ "text": "used."
+ },
+ {
+ "id": 2363,
+ "start": 2363.42,
+ "end": 2363.76,
+ "text": "Why"
+ },
+ {
+ "id": 2364,
+ "start": 2363.76,
+ "end": 2363.98,
+ "text": "were"
+ },
+ {
+ "id": 2365,
+ "start": 2363.98,
+ "end": 2364.18,
+ "text": "they"
+ },
+ {
+ "id": 2366,
+ "start": 2364.18,
+ "end": 2364.84,
+ "text": "not"
+ },
+ {
+ "id": 2367,
+ "start": 2364.84,
+ "end": 2366.44,
+ "text": "informed"
+ },
+ {
+ "id": 2368,
+ "start": 2366.44,
+ "end": 2367.56,
+ "text": "for"
+ },
+ {
+ "id": 2369,
+ "start": 2367.56,
+ "end": 2368.54,
+ "text": "unauthorized"
+ },
+ {
+ "id": 2370,
+ "start": 2368.54,
+ "end": 2369.58,
+ "text": "political"
+ },
+ {
+ "id": 2371,
+ "start": 2369.58,
+ "end": 2371.1,
+ "text": "purposes?"
+ },
+ {
+ "id": 2372,
+ "start": 2371.1,
+ "end": 2372.12,
+ "text": "So"
+ },
+ {
+ "id": 2373,
+ "start": 2372.12,
+ "end": 2373,
+ "text": "only"
+ },
+ {
+ "id": 2374,
+ "start": 2373,
+ "end": 2373.5,
+ "text": "now"
+ },
+ {
+ "id": 2375,
+ "start": 2373.5,
+ "end": 2374.48,
+ "text": "and"
+ },
+ {
+ "id": 2376,
+ "start": 2374.48,
+ "end": 2374.66,
+ "text": "I"
+ },
+ {
+ "id": 2377,
+ "start": 2374.66,
+ "end": 2375.26,
+ "text": "appreciate"
+ },
+ {
+ "id": 2378,
+ "start": 2375.26,
+ "end": 2375.5,
+ "text": "our"
+ },
+ {
+ "id": 2379,
+ "start": 2375.5,
+ "end": 2377.08,
+ "text": "conversation"
+ },
+ {
+ "id": 2380,
+ "start": 2377.08,
+ "end": 2378.1,
+ "text": "only"
+ },
+ {
+ "id": 2381,
+ "start": 2378.1,
+ "end": 2378.4,
+ "text": "now"
+ },
+ {
+ "id": 2382,
+ "start": 2378.4,
+ "end": 2379.28,
+ "text": "Facebook"
+ },
+ {
+ "id": 2383,
+ "start": 2379.28,
+ "end": 2379.52,
+ "text": "has"
+ },
+ {
+ "id": 2384,
+ "start": 2379.52,
+ "end": 2380,
+ "text": "pledged"
+ },
+ {
+ "id": 2385,
+ "start": 2380,
+ "end": 2380.18,
+ "text": "to"
+ },
+ {
+ "id": 2386,
+ "start": 2380.18,
+ "end": 2380.82,
+ "text": "inform"
+ },
+ {
+ "id": 2387,
+ "start": 2380.82,
+ "end": 2381.16,
+ "text": "those"
+ },
+ {
+ "id": 2388,
+ "start": 2381.16,
+ "end": 2381.94,
+ "text": "consumers"
+ },
+ {
+ "id": 2389,
+ "start": 2381.94,
+ "end": 2382.26,
+ "text": "whose"
+ },
+ {
+ "id": 2390,
+ "start": 2382.26,
+ "end": 2382.84,
+ "text": "accounts"
+ },
+ {
+ "id": 2391,
+ "start": 2382.84,
+ "end": 2383.16,
+ "text": "were"
+ },
+ {
+ "id": 2392,
+ "start": 2383.16,
+ "end": 2385.14,
+ "text": "compromised."
+ },
+ {
+ "id": 2393,
+ "start": 2385.14,
+ "end": 2385.74,
+ "text": "I"
+ },
+ {
+ "id": 2394,
+ "start": 2385.74,
+ "end": 2386.72,
+ "text": "think"
+ },
+ {
+ "id": 2395,
+ "start": 2386.72,
+ "end": 2386.98,
+ "text": "you're"
+ },
+ {
+ "id": 2396,
+ "start": 2386.98,
+ "end": 2387.6,
+ "text": "genuine."
+ },
+ {
+ "id": 2397,
+ "start": 2387.6,
+ "end": 2388.32,
+ "text": "I"
+ },
+ {
+ "id": 2398,
+ "start": 2388.32,
+ "end": 2388.48,
+ "text": "got"
+ },
+ {
+ "id": 2399,
+ "start": 2388.48,
+ "end": 2388.8,
+ "text": "that"
+ },
+ {
+ "id": 2400,
+ "start": 2388.8,
+ "end": 2389.18,
+ "text": "sense"
+ },
+ {
+ "id": 2401,
+ "start": 2389.18,
+ "end": 2389.44,
+ "text": "in"
+ },
+ {
+ "id": 2402,
+ "start": 2389.44,
+ "end": 2390.58,
+ "text": "conversing"
+ },
+ {
+ "id": 2403,
+ "start": 2390.58,
+ "end": 2390.9,
+ "text": "with"
+ },
+ {
+ "id": 2404,
+ "start": 2390.9,
+ "end": 2391.18,
+ "text": "you."
+ },
+ {
+ "id": 2405,
+ "start": 2391.18,
+ "end": 2391.92,
+ "text": "You"
+ },
+ {
+ "id": 2406,
+ "start": 2391.92,
+ "end": 2392.18,
+ "text": "want"
+ },
+ {
+ "id": 2407,
+ "start": 2392.18,
+ "end": 2392.36,
+ "text": "to"
+ },
+ {
+ "id": 2408,
+ "start": 2392.36,
+ "end": 2392.5,
+ "text": "do"
+ },
+ {
+ "id": 2409,
+ "start": 2392.5,
+ "end": 2392.68,
+ "text": "the"
+ },
+ {
+ "id": 2410,
+ "start": 2392.68,
+ "end": 2392.98,
+ "text": "right"
+ },
+ {
+ "id": 2411,
+ "start": 2392.98,
+ "end": 2393.32,
+ "text": "thing,"
+ },
+ {
+ "id": 2412,
+ "start": 2393.32,
+ "end": 2393.56,
+ "text": "you"
+ },
+ {
+ "id": 2413,
+ "start": 2393.56,
+ "end": 2393.8,
+ "text": "want"
+ },
+ {
+ "id": 2414,
+ "start": 2393.8,
+ "end": 2394,
+ "text": "to"
+ },
+ {
+ "id": 2415,
+ "start": 2394,
+ "end": 2394.52,
+ "text": "enact"
+ },
+ {
+ "id": 2416,
+ "start": 2394.52,
+ "end": 2396.08,
+ "text": "reforms."
+ },
+ {
+ "id": 2417,
+ "start": 2396.08,
+ "end": 2397,
+ "text": "We"
+ },
+ {
+ "id": 2418,
+ "start": 2397,
+ "end": 2397.4,
+ "text": "want"
+ },
+ {
+ "id": 2419,
+ "start": 2397.4,
+ "end": 2397.58,
+ "text": "to"
+ },
+ {
+ "id": 2420,
+ "start": 2397.58,
+ "end": 2397.78,
+ "text": "know"
+ },
+ {
+ "id": 2421,
+ "start": 2397.78,
+ "end": 2398.7,
+ "text": "if"
+ },
+ {
+ "id": 2422,
+ "start": 2398.7,
+ "end": 2399,
+ "text": "it's"
+ },
+ {
+ "id": 2423,
+ "start": 2399,
+ "end": 2399.2,
+ "text": "going"
+ },
+ {
+ "id": 2424,
+ "start": 2399.2,
+ "end": 2399.3,
+ "text": "to"
+ },
+ {
+ "id": 2425,
+ "start": 2399.3,
+ "end": 2399.38,
+ "text": "be"
+ },
+ {
+ "id": 2426,
+ "start": 2399.38,
+ "end": 2400.52,
+ "text": "enough."
+ },
+ {
+ "id": 2427,
+ "start": 2400.52,
+ "end": 2401.3,
+ "text": "And"
+ },
+ {
+ "id": 2428,
+ "start": 2401.3,
+ "end": 2401.46,
+ "text": "I"
+ },
+ {
+ "id": 2429,
+ "start": 2401.46,
+ "end": 2401.72,
+ "text": "hope"
+ },
+ {
+ "id": 2430,
+ "start": 2401.72,
+ "end": 2402.18,
+ "text": "that"
+ },
+ {
+ "id": 2431,
+ "start": 2402.18,
+ "end": 2402.46,
+ "text": "will"
+ },
+ {
+ "id": 2432,
+ "start": 2402.46,
+ "end": 2402.56,
+ "text": "be"
+ },
+ {
+ "id": 2433,
+ "start": 2402.56,
+ "end": 2402.74,
+ "text": "in"
+ },
+ {
+ "id": 2434,
+ "start": 2402.74,
+ "end": 2402.86,
+ "text": "the"
+ },
+ {
+ "id": 2435,
+ "start": 2402.86,
+ "end": 2403.44,
+ "text": "answers"
+ },
+ {
+ "id": 2436,
+ "start": 2403.44,
+ "end": 2406.08,
+ "text": "today,"
+ },
+ {
+ "id": 2437,
+ "start": 2406.08,
+ "end": 2407.08,
+ "text": "now,"
+ },
+ {
+ "id": 2438,
+ "start": 2407.08,
+ "end": 2407.62,
+ "text": "since"
+ },
+ {
+ "id": 2439,
+ "start": 2407.62,
+ "end": 2407.8,
+ "text": "we"
+ },
+ {
+ "id": 2440,
+ "start": 2407.8,
+ "end": 2408.26,
+ "text": "still"
+ },
+ {
+ "id": 2441,
+ "start": 2408.26,
+ "end": 2408.62,
+ "text": "don't"
+ },
+ {
+ "id": 2442,
+ "start": 2408.62,
+ "end": 2408.86,
+ "text": "know"
+ },
+ {
+ "id": 2443,
+ "start": 2408.86,
+ "end": 2409.26,
+ "text": "what"
+ },
+ {
+ "id": 2444,
+ "start": 2409.26,
+ "end": 2409.84,
+ "text": "Cambridge"
+ },
+ {
+ "id": 2445,
+ "start": 2409.84,
+ "end": 2410.58,
+ "text": "Analytica"
+ },
+ {
+ "id": 2446,
+ "start": 2410.58,
+ "end": 2411.04,
+ "text": "has"
+ },
+ {
+ "id": 2447,
+ "start": 2411.04,
+ "end": 2411.36,
+ "text": "done"
+ },
+ {
+ "id": 2448,
+ "start": 2411.36,
+ "end": 2411.54,
+ "text": "with"
+ },
+ {
+ "id": 2449,
+ "start": 2411.54,
+ "end": 2411.76,
+ "text": "this"
+ },
+ {
+ "id": 2450,
+ "start": 2411.76,
+ "end": 2413.1,
+ "text": "data,"
+ },
+ {
+ "id": 2451,
+ "start": 2413.1,
+ "end": 2414.12,
+ "text": "you"
+ },
+ {
+ "id": 2452,
+ "start": 2414.12,
+ "end": 2414.62,
+ "text": "heard"
+ },
+ {
+ "id": 2453,
+ "start": 2414.62,
+ "end": 2415.5,
+ "text": "chairman"
+ },
+ {
+ "id": 2454,
+ "start": 2415.5,
+ "end": 2416.02,
+ "text": "Thon"
+ },
+ {
+ "id": 2455,
+ "start": 2416.02,
+ "end": 2417.1,
+ "text": "say"
+ },
+ {
+ "id": 2456,
+ "start": 2417.1,
+ "end": 2417.56,
+ "text": "as"
+ },
+ {
+ "id": 2457,
+ "start": 2417.56,
+ "end": 2417.88,
+ "text": "we"
+ },
+ {
+ "id": 2458,
+ "start": 2417.88,
+ "end": 2418.12,
+ "text": "have"
+ },
+ {
+ "id": 2459,
+ "start": 2418.12,
+ "end": 2418.8,
+ "text": "discussed,"
+ },
+ {
+ "id": 2460,
+ "start": 2418.8,
+ "end": 2419.18,
+ "text": "we"
+ },
+ {
+ "id": 2461,
+ "start": 2419.18,
+ "end": 2419.46,
+ "text": "want"
+ },
+ {
+ "id": 2462,
+ "start": 2419.46,
+ "end": 2419.72,
+ "text": "the"
+ },
+ {
+ "id": 2463,
+ "start": 2419.72,
+ "end": 2420.62,
+ "text": "haul"
+ },
+ {
+ "id": 2464,
+ "start": 2420.62,
+ "end": 2421.18,
+ "text": "Cambridge"
+ },
+ {
+ "id": 2465,
+ "start": 2421.18,
+ "end": 2422.22,
+ "text": "Analytica"
+ },
+ {
+ "id": 2466,
+ "start": 2422.22,
+ "end": 2423.48,
+ "text": "in"
+ },
+ {
+ "id": 2467,
+ "start": 2423.48,
+ "end": 2423.6,
+ "text": "to"
+ },
+ {
+ "id": 2468,
+ "start": 2423.6,
+ "end": 2424.12,
+ "text": "answer"
+ },
+ {
+ "id": 2469,
+ "start": 2424.12,
+ "end": 2424.46,
+ "text": "these"
+ },
+ {
+ "id": 2470,
+ "start": 2424.46,
+ "end": 2425,
+ "text": "questions"
+ },
+ {
+ "id": 2471,
+ "start": 2425,
+ "end": 2425.24,
+ "text": "at"
+ },
+ {
+ "id": 2472,
+ "start": 2425.24,
+ "end": 2425.32,
+ "text": "a"
+ },
+ {
+ "id": 2473,
+ "start": 2425.32,
+ "end": 2425.82,
+ "text": "separate"
+ },
+ {
+ "id": 2474,
+ "start": 2425.82,
+ "end": 2426.94,
+ "text": "hearing."
+ },
+ {
+ "id": 2475,
+ "start": 2426.94,
+ "end": 2427.76,
+ "text": "I"
+ },
+ {
+ "id": 2476,
+ "start": 2427.76,
+ "end": 2428.04,
+ "text": "want"
+ },
+ {
+ "id": 2477,
+ "start": 2428.04,
+ "end": 2428.16,
+ "text": "to"
+ },
+ {
+ "id": 2478,
+ "start": 2428.16,
+ "end": 2428.48,
+ "text": "thank"
+ },
+ {
+ "id": 2479,
+ "start": 2428.48,
+ "end": 2429.28,
+ "text": "chairman"
+ },
+ {
+ "id": 2480,
+ "start": 2429.28,
+ "end": 2429.74,
+ "text": "ton"
+ },
+ {
+ "id": 2481,
+ "start": 2429.74,
+ "end": 2429.96,
+ "text": "for"
+ },
+ {
+ "id": 2482,
+ "start": 2429.96,
+ "end": 2430.52,
+ "text": "working"
+ },
+ {
+ "id": 2483,
+ "start": 2430.52,
+ "end": 2430.98,
+ "text": "with"
+ },
+ {
+ "id": 2484,
+ "start": 2430.98,
+ "end": 2431.42,
+ "text": "all"
+ },
+ {
+ "id": 2485,
+ "start": 2431.42,
+ "end": 2431.54,
+ "text": "of"
+ },
+ {
+ "id": 2486,
+ "start": 2431.54,
+ "end": 2431.82,
+ "text": "us"
+ },
+ {
+ "id": 2487,
+ "start": 2431.82,
+ "end": 2432.1,
+ "text": "on"
+ },
+ {
+ "id": 2488,
+ "start": 2432.1,
+ "end": 2432.7,
+ "text": "scheduling."
+ },
+ {
+ "id": 2489,
+ "start": 2432.7,
+ "end": 2432.82,
+ "text": "A"
+ },
+ {
+ "id": 2490,
+ "start": 2432.82,
+ "end": 2433.18,
+ "text": "hearing"
+ },
+ {
+ "id": 2491,
+ "start": 2433.18,
+ "end": 2434.1,
+ "text": "there's"
+ },
+ {
+ "id": 2492,
+ "start": 2434.1,
+ "end": 2434.66,
+ "text": "obviously"
+ },
+ {
+ "id": 2493,
+ "start": 2434.66,
+ "end": 2434.76,
+ "text": "a"
+ },
+ {
+ "id": 2494,
+ "start": 2434.76,
+ "end": 2435.04,
+ "text": "great"
+ },
+ {
+ "id": 2495,
+ "start": 2435.04,
+ "end": 2435.24,
+ "text": "deal"
+ },
+ {
+ "id": 2496,
+ "start": 2435.24,
+ "end": 2435.36,
+ "text": "of"
+ },
+ {
+ "id": 2497,
+ "start": 2435.36,
+ "end": 2435.94,
+ "text": "interest"
+ },
+ {
+ "id": 2498,
+ "start": 2435.94,
+ "end": 2436.4,
+ "text": "in"
+ },
+ {
+ "id": 2499,
+ "start": 2436.4,
+ "end": 2436.66,
+ "text": "this"
+ },
+ {
+ "id": 2500,
+ "start": 2436.66,
+ "end": 2437.44,
+ "text": "subject."
+ },
+ {
+ "id": 2501,
+ "start": 2437.44,
+ "end": 2438.5,
+ "text": "I"
+ },
+ {
+ "id": 2502,
+ "start": 2438.5,
+ "end": 2438.78,
+ "text": "hope"
+ },
+ {
+ "id": 2503,
+ "start": 2438.78,
+ "end": 2439.06,
+ "text": "we"
+ },
+ {
+ "id": 2504,
+ "start": 2439.06,
+ "end": 2439.26,
+ "text": "can"
+ },
+ {
+ "id": 2505,
+ "start": 2439.26,
+ "end": 2439.56,
+ "text": "get"
+ },
+ {
+ "id": 2506,
+ "start": 2439.56,
+ "end": 2440.08,
+ "text": "to"
+ },
+ {
+ "id": 2507,
+ "start": 2440.08,
+ "end": 2440.22,
+ "text": "the"
+ },
+ {
+ "id": 2508,
+ "start": 2440.22,
+ "end": 2440.58,
+ "text": "bottom"
+ },
+ {
+ "id": 2509,
+ "start": 2440.58,
+ "end": 2440.7,
+ "text": "of"
+ },
+ {
+ "id": 2510,
+ "start": 2440.7,
+ "end": 2441.74,
+ "text": "this"
+ },
+ {
+ "id": 2511,
+ "start": 2441.74,
+ "end": 2442.74,
+ "text": "and"
+ },
+ {
+ "id": 2512,
+ "start": 2442.74,
+ "end": 2443.12,
+ "text": "if"
+ },
+ {
+ "id": 2513,
+ "start": 2443.12,
+ "end": 2443.92,
+ "text": "Facebook"
+ },
+ {
+ "id": 2514,
+ "start": 2443.92,
+ "end": 2444.2,
+ "text": "and"
+ },
+ {
+ "id": 2515,
+ "start": 2444.2,
+ "end": 2444.6,
+ "text": "other"
+ },
+ {
+ "id": 2516,
+ "start": 2444.6,
+ "end": 2445.18,
+ "text": "online"
+ },
+ {
+ "id": 2517,
+ "start": 2445.18,
+ "end": 2445.78,
+ "text": "companies"
+ },
+ {
+ "id": 2518,
+ "start": 2445.78,
+ "end": 2446.7,
+ "text": "will"
+ },
+ {
+ "id": 2519,
+ "start": 2446.7,
+ "end": 2447.1,
+ "text": "not"
+ },
+ {
+ "id": 2520,
+ "start": 2447.1,
+ "end": 2447.4,
+ "text": "or"
+ },
+ {
+ "id": 2521,
+ "start": 2447.4,
+ "end": 2448.1,
+ "text": "cannot"
+ },
+ {
+ "id": 2522,
+ "start": 2448.1,
+ "end": 2448.74,
+ "text": "fix"
+ },
+ {
+ "id": 2523,
+ "start": 2448.74,
+ "end": 2449.48,
+ "text": "the"
+ },
+ {
+ "id": 2524,
+ "start": 2449.48,
+ "end": 2450.14,
+ "text": "privacy"
+ },
+ {
+ "id": 2525,
+ "start": 2450.14,
+ "end": 2451.92,
+ "text": "invasions,"
+ },
+ {
+ "id": 2526,
+ "start": 2451.92,
+ "end": 2453.22,
+ "text": "then"
+ },
+ {
+ "id": 2527,
+ "start": 2453.22,
+ "end": 2454.36,
+ "text": "we"
+ },
+ {
+ "id": 2528,
+ "start": 2454.36,
+ "end": 2454.6,
+ "text": "are"
+ },
+ {
+ "id": 2529,
+ "start": 2454.6,
+ "end": 2454.92,
+ "text": "going"
+ },
+ {
+ "id": 2530,
+ "start": 2454.92,
+ "end": 2455.08,
+ "text": "to"
+ },
+ {
+ "id": 2531,
+ "start": 2455.08,
+ "end": 2455.4,
+ "text": "have"
+ },
+ {
+ "id": 2532,
+ "start": 2455.4,
+ "end": 2455.9,
+ "text": "to"
+ },
+ {
+ "id": 2533,
+ "start": 2455.9,
+ "end": 2456.96,
+ "text": "we"
+ },
+ {
+ "id": 2534,
+ "start": 2456.96,
+ "end": 2457.36,
+ "text": "the"
+ },
+ {
+ "id": 2535,
+ "start": 2457.36,
+ "end": 2457.82,
+ "text": "Congress."
+ },
+ {
+ "id": 2536,
+ "start": 2457.82,
+ "end": 2458.46,
+ "text": "How"
+ },
+ {
+ "id": 2537,
+ "start": 2458.46,
+ "end": 2458.84,
+ "text": "can"
+ },
+ {
+ "id": 2538,
+ "start": 2458.84,
+ "end": 2459.5,
+ "text": "American"
+ },
+ {
+ "id": 2539,
+ "start": 2459.5,
+ "end": 2460.66,
+ "text": "consumers"
+ },
+ {
+ "id": 2540,
+ "start": 2460.66,
+ "end": 2462.16,
+ "text": "trust"
+ },
+ {
+ "id": 2541,
+ "start": 2462.16,
+ "end": 2463.18,
+ "text": "folks"
+ },
+ {
+ "id": 2542,
+ "start": 2463.18,
+ "end": 2463.82,
+ "text": "like"
+ },
+ {
+ "id": 2543,
+ "start": 2463.82,
+ "end": 2464.15,
+ "text": "you"
+ },
+ {
+ "id": 2544,
+ "start": 2464.15,
+ "end": 2464.69,
+ "text": "company"
+ },
+ {
+ "id": 2545,
+ "start": 2464.69,
+ "end": 2464.85,
+ "text": "to"
+ },
+ {
+ "id": 2546,
+ "start": 2464.85,
+ "end": 2464.97,
+ "text": "be"
+ },
+ {
+ "id": 2547,
+ "start": 2464.97,
+ "end": 2465.93,
+ "text": "caretakers"
+ },
+ {
+ "id": 2548,
+ "start": 2465.93,
+ "end": 2466.25,
+ "text": "of"
+ },
+ {
+ "id": 2549,
+ "start": 2466.25,
+ "end": 2466.49,
+ "text": "their"
+ },
+ {
+ "id": 2550,
+ "start": 2466.49,
+ "end": 2466.89,
+ "text": "most"
+ },
+ {
+ "id": 2551,
+ "start": 2466.89,
+ "end": 2467.55,
+ "text": "personal"
+ },
+ {
+ "id": 2552,
+ "start": 2467.55,
+ "end": 2468.19,
+ "text": "and"
+ },
+ {
+ "id": 2553,
+ "start": 2468.19,
+ "end": 2469.09,
+ "text": "identifiable"
+ },
+ {
+ "id": 2554,
+ "start": 2469.09,
+ "end": 2470.11,
+ "text": "information"
+ },
+ {
+ "id": 2555,
+ "start": 2470.11,
+ "end": 2471.09,
+ "text": "and"
+ },
+ {
+ "id": 2556,
+ "start": 2471.09,
+ "end": 2471.37,
+ "text": "that's"
+ },
+ {
+ "id": 2557,
+ "start": 2471.37,
+ "end": 2471.53,
+ "text": "the"
+ },
+ {
+ "id": 2558,
+ "start": 2471.53,
+ "end": 2471.93,
+ "text": "question."
+ },
+ {
+ "id": 2559,
+ "start": 2471.93,
+ "end": 2472.33,
+ "text": "Thank"
+ },
+ {
+ "id": 2560,
+ "start": 2472.33,
+ "end": 2472.51,
+ "text": "you,"
+ },
+ {
+ "id": 2561,
+ "start": 2472.51,
+ "end": 2473.23,
+ "text": "thank"
+ },
+ {
+ "id": 2562,
+ "start": 2473.23,
+ "end": 2473.43,
+ "text": "you,"
+ },
+ {
+ "id": 2563,
+ "start": 2473.43,
+ "end": 2473.69,
+ "text": "my"
+ },
+ {
+ "id": 2564,
+ "start": 2473.69,
+ "end": 2474.21,
+ "text": "colleagues"
+ },
+ {
+ "id": 2565,
+ "start": 2474.21,
+ "end": 2474.57,
+ "text": "and"
+ },
+ {
+ "id": 2566,
+ "start": 2474.57,
+ "end": 2475.01,
+ "text": "Senator"
+ },
+ {
+ "id": 2567,
+ "start": 2475.01,
+ "end": 2476.38,
+ "text": "Nelson."
+ },
+ {
+ "id": 2568,
+ "start": 2476.38,
+ "end": 2477.44,
+ "text": "Our"
+ },
+ {
+ "id": 2569,
+ "start": 2477.44,
+ "end": 2477.78,
+ "text": "witness"
+ },
+ {
+ "id": 2570,
+ "start": 2477.78,
+ "end": 2478.14,
+ "text": "today"
+ },
+ {
+ "id": 2571,
+ "start": 2478.14,
+ "end": 2478.66,
+ "text": "is"
+ },
+ {
+ "id": 2572,
+ "start": 2478.66,
+ "end": 2479.02,
+ "text": "Mark"
+ },
+ {
+ "id": 2573,
+ "start": 2479.02,
+ "end": 2479.64,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 2574,
+ "start": 2479.64,
+ "end": 2480.72,
+ "text": "founder"
+ },
+ {
+ "id": 2575,
+ "start": 2480.72,
+ "end": 2481.88,
+ "text": "chairman"
+ },
+ {
+ "id": 2576,
+ "start": 2481.88,
+ "end": 2482.78,
+ "text": "chief"
+ },
+ {
+ "id": 2577,
+ "start": 2482.78,
+ "end": 2483.38,
+ "text": "executive"
+ },
+ {
+ "id": 2578,
+ "start": 2483.38,
+ "end": 2483.96,
+ "text": "officer"
+ },
+ {
+ "id": 2579,
+ "start": 2483.96,
+ "end": 2484.1,
+ "text": "of"
+ },
+ {
+ "id": 2580,
+ "start": 2484.1,
+ "end": 2484.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 2581,
+ "start": 2484.9,
+ "end": 2485.92,
+ "text": "Mr"
+ },
+ {
+ "id": 2582,
+ "start": 2485.92,
+ "end": 2487.1,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 2583,
+ "start": 2487.1,
+ "end": 2488.06,
+ "text": "launched"
+ },
+ {
+ "id": 2584,
+ "start": 2488.06,
+ "end": 2488.84,
+ "text": "Facebook"
+ },
+ {
+ "id": 2585,
+ "start": 2488.84,
+ "end": 2489.92,
+ "text": "February"
+ },
+ {
+ "id": 2586,
+ "start": 2489.92,
+ "end": 2490.28,
+ "text": "fourth"
+ },
+ {
+ "id": 2587,
+ "start": 2490.28,
+ "end": 2492.32,
+ "text": "2,004"
+ },
+ {
+ "id": 2588,
+ "start": 2492.32,
+ "end": 2492.44,
+ "text": "at"
+ },
+ {
+ "id": 2589,
+ "start": 2492.44,
+ "end": 2492.58,
+ "text": "the"
+ },
+ {
+ "id": 2590,
+ "start": 2492.58,
+ "end": 2492.8,
+ "text": "age"
+ },
+ {
+ "id": 2591,
+ "start": 2492.8,
+ "end": 2492.94,
+ "text": "of"
+ },
+ {
+ "id": 2592,
+ "start": 2492.94,
+ "end": 2494.06,
+ "text": "19"
+ },
+ {
+ "id": 2593,
+ "start": 2494.06,
+ "end": 2494.88,
+ "text": "and"
+ },
+ {
+ "id": 2594,
+ "start": 2494.88,
+ "end": 2495.06,
+ "text": "at"
+ },
+ {
+ "id": 2595,
+ "start": 2495.06,
+ "end": 2495.24,
+ "text": "that"
+ },
+ {
+ "id": 2596,
+ "start": 2495.24,
+ "end": 2495.6,
+ "text": "time,"
+ },
+ {
+ "id": 2597,
+ "start": 2495.6,
+ "end": 2495.72,
+ "text": "he"
+ },
+ {
+ "id": 2598,
+ "start": 2495.72,
+ "end": 2495.9,
+ "text": "was"
+ },
+ {
+ "id": 2599,
+ "start": 2495.9,
+ "end": 2495.96,
+ "text": "a"
+ },
+ {
+ "id": 2600,
+ "start": 2495.96,
+ "end": 2496.42,
+ "text": "student"
+ },
+ {
+ "id": 2601,
+ "start": 2496.42,
+ "end": 2496.6,
+ "text": "at"
+ },
+ {
+ "id": 2602,
+ "start": 2496.6,
+ "end": 2497,
+ "text": "Harvard"
+ },
+ {
+ "id": 2603,
+ "start": 2497,
+ "end": 2497.6,
+ "text": "University."
+ },
+ {
+ "id": 2604,
+ "start": 2497.6,
+ "end": 2498.76,
+ "text": "As"
+ },
+ {
+ "id": 2605,
+ "start": 2498.76,
+ "end": 2498.86,
+ "text": "I"
+ },
+ {
+ "id": 2606,
+ "start": 2498.86,
+ "end": 2499.3,
+ "text": "mentioned"
+ },
+ {
+ "id": 2607,
+ "start": 2499.3,
+ "end": 2499.84,
+ "text": "previously,"
+ },
+ {
+ "id": 2608,
+ "start": 2499.84,
+ "end": 2500.08,
+ "text": "his"
+ },
+ {
+ "id": 2609,
+ "start": 2500.08,
+ "end": 2500.44,
+ "text": "company"
+ },
+ {
+ "id": 2610,
+ "start": 2500.44,
+ "end": 2500.72,
+ "text": "now"
+ },
+ {
+ "id": 2611,
+ "start": 2500.72,
+ "end": 2501.08,
+ "text": "has"
+ },
+ {
+ "id": 2612,
+ "start": 2501.08,
+ "end": 2501.4,
+ "text": "over"
+ },
+ {
+ "id": 2613,
+ "start": 2501.4,
+ "end": 2502.7,
+ "text": "40,000,000,000"
+ },
+ {
+ "id": 2614,
+ "start": 2502.7,
+ "end": 2503.04,
+ "text": "of"
+ },
+ {
+ "id": 2615,
+ "start": 2503.04,
+ "end": 2503.44,
+ "text": "annual"
+ },
+ {
+ "id": 2616,
+ "start": 2503.44,
+ "end": 2503.84,
+ "text": "revenue"
+ },
+ {
+ "id": 2617,
+ "start": 2503.84,
+ "end": 2504.9,
+ "text": "and"
+ },
+ {
+ "id": 2618,
+ "start": 2504.9,
+ "end": 2505.24,
+ "text": "over"
+ },
+ {
+ "id": 2619,
+ "start": 2505.24,
+ "end": 2506.01,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 2620,
+ "start": 2506.01,
+ "end": 2506.49,
+ "text": "monthly"
+ },
+ {
+ "id": 2621,
+ "start": 2506.49,
+ "end": 2507.15,
+ "text": "active"
+ },
+ {
+ "id": 2622,
+ "start": 2507.15,
+ "end": 2508.01,
+ "text": "users."
+ },
+ {
+ "id": 2623,
+ "start": 2508.01,
+ "end": 2509.03,
+ "text": "Mr"
+ },
+ {
+ "id": 2624,
+ "start": 2509.03,
+ "end": 2509.65,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 2625,
+ "start": 2509.65,
+ "end": 2510.21,
+ "text": "along"
+ },
+ {
+ "id": 2626,
+ "start": 2510.21,
+ "end": 2510.51,
+ "text": "with"
+ },
+ {
+ "id": 2627,
+ "start": 2510.51,
+ "end": 2510.83,
+ "text": "his"
+ },
+ {
+ "id": 2628,
+ "start": 2510.83,
+ "end": 2511.35,
+ "text": "wife,"
+ },
+ {
+ "id": 2629,
+ "start": 2511.35,
+ "end": 2511.85,
+ "text": "also"
+ },
+ {
+ "id": 2630,
+ "start": 2511.85,
+ "end": 2512.53,
+ "text": "established"
+ },
+ {
+ "id": 2631,
+ "start": 2512.53,
+ "end": 2513.19,
+ "text": "the"
+ },
+ {
+ "id": 2632,
+ "start": 2513.19,
+ "end": 2513.71,
+ "text": "Chan"
+ },
+ {
+ "id": 2633,
+ "start": 2513.71,
+ "end": 2514.53,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 2634,
+ "start": 2514.53,
+ "end": 2515.43,
+ "text": "initiative"
+ },
+ {
+ "id": 2635,
+ "start": 2515.43,
+ "end": 2516.01,
+ "text": "to"
+ },
+ {
+ "id": 2636,
+ "start": 2516.01,
+ "end": 2518.22,
+ "text": "further"
+ },
+ {
+ "id": 2637,
+ "start": 2518.22,
+ "end": 2519.24,
+ "text": "causes."
+ },
+ {
+ "id": 2638,
+ "start": 2519.24,
+ "end": 2519.98,
+ "text": "I"
+ },
+ {
+ "id": 2639,
+ "start": 2519.98,
+ "end": 2520.26,
+ "text": "now"
+ },
+ {
+ "id": 2640,
+ "start": 2520.26,
+ "end": 2520.5,
+ "text": "turn"
+ },
+ {
+ "id": 2641,
+ "start": 2520.5,
+ "end": 2520.66,
+ "text": "to"
+ },
+ {
+ "id": 2642,
+ "start": 2520.66,
+ "end": 2520.92,
+ "text": "you."
+ },
+ {
+ "id": 2643,
+ "start": 2520.92,
+ "end": 2521.56,
+ "text": "Welcome"
+ },
+ {
+ "id": 2644,
+ "start": 2521.56,
+ "end": 2521.7,
+ "text": "to"
+ },
+ {
+ "id": 2645,
+ "start": 2521.7,
+ "end": 2521.86,
+ "text": "the"
+ },
+ {
+ "id": 2646,
+ "start": 2521.86,
+ "end": 2522.3,
+ "text": "committee."
+ },
+ {
+ "id": 2647,
+ "start": 2522.3,
+ "end": 2523.52,
+ "text": "And"
+ },
+ {
+ "id": 2648,
+ "start": 2523.52,
+ "end": 2524.14,
+ "text": "whatever"
+ },
+ {
+ "id": 2649,
+ "start": 2524.14,
+ "end": 2524.34,
+ "text": "your"
+ },
+ {
+ "id": 2650,
+ "start": 2524.34,
+ "end": 2524.76,
+ "text": "statement"
+ },
+ {
+ "id": 2651,
+ "start": 2524.76,
+ "end": 2524.96,
+ "text": "is"
+ },
+ {
+ "id": 2652,
+ "start": 2524.96,
+ "end": 2525.44,
+ "text": "orally."
+ },
+ {
+ "id": 2653,
+ "start": 2525.44,
+ "end": 2525.56,
+ "text": "If"
+ },
+ {
+ "id": 2654,
+ "start": 2525.56,
+ "end": 2525.74,
+ "text": "you"
+ },
+ {
+ "id": 2655,
+ "start": 2525.74,
+ "end": 2525.88,
+ "text": "have"
+ },
+ {
+ "id": 2656,
+ "start": 2525.88,
+ "end": 2525.96,
+ "text": "a"
+ },
+ {
+ "id": 2657,
+ "start": 2525.96,
+ "end": 2526.34,
+ "text": "longer"
+ },
+ {
+ "id": 2658,
+ "start": 2526.34,
+ "end": 2526.58,
+ "text": "one,"
+ },
+ {
+ "id": 2659,
+ "start": 2526.58,
+ "end": 2527.04,
+ "text": "it"
+ },
+ {
+ "id": 2660,
+ "start": 2527.04,
+ "end": 2527.2,
+ "text": "will"
+ },
+ {
+ "id": 2661,
+ "start": 2527.2,
+ "end": 2527.28,
+ "text": "be"
+ },
+ {
+ "id": 2662,
+ "start": 2527.28,
+ "end": 2527.7,
+ "text": "included"
+ },
+ {
+ "id": 2663,
+ "start": 2527.7,
+ "end": 2527.8,
+ "text": "in"
+ },
+ {
+ "id": 2664,
+ "start": 2527.8,
+ "end": 2527.92,
+ "text": "the"
+ },
+ {
+ "id": 2665,
+ "start": 2527.92,
+ "end": 2528.26,
+ "text": "record."
+ },
+ {
+ "id": 2666,
+ "start": 2528.26,
+ "end": 2528.74,
+ "text": "So"
+ },
+ {
+ "id": 2667,
+ "start": 2528.74,
+ "end": 2529.3,
+ "text": "proceed"
+ },
+ {
+ "id": 2668,
+ "start": 2529.3,
+ "end": 2530.38,
+ "text": "Sir"
+ },
+ {
+ "id": 2669,
+ "start": 2530.38,
+ "end": 2531.5,
+ "text": "Chairman"
+ },
+ {
+ "id": 2670,
+ "start": 2531.5,
+ "end": 2531.96,
+ "text": "Grassley"
+ },
+ {
+ "id": 2671,
+ "start": 2531.96,
+ "end": 2532.7,
+ "text": "chairman"
+ },
+ {
+ "id": 2672,
+ "start": 2532.7,
+ "end": 2533.38,
+ "text": "Thon,"
+ },
+ {
+ "id": 2673,
+ "start": 2533.38,
+ "end": 2534.34,
+ "text": "ranking"
+ },
+ {
+ "id": 2674,
+ "start": 2534.34,
+ "end": 2534.6,
+ "text": "member,"
+ },
+ {
+ "id": 2675,
+ "start": 2534.6,
+ "end": 2535.18,
+ "text": "Feinstein"
+ },
+ {
+ "id": 2676,
+ "start": 2535.18,
+ "end": 2535.32,
+ "text": "and"
+ },
+ {
+ "id": 2677,
+ "start": 2535.32,
+ "end": 2535.64,
+ "text": "ranking"
+ },
+ {
+ "id": 2678,
+ "start": 2535.64,
+ "end": 2535.86,
+ "text": "member"
+ },
+ {
+ "id": 2679,
+ "start": 2535.86,
+ "end": 2536.32,
+ "text": "Nelson"
+ },
+ {
+ "id": 2680,
+ "start": 2536.32,
+ "end": 2536.42,
+ "text": "and"
+ },
+ {
+ "id": 2681,
+ "start": 2536.42,
+ "end": 2536.72,
+ "text": "members"
+ },
+ {
+ "id": 2682,
+ "start": 2536.72,
+ "end": 2536.84,
+ "text": "of"
+ },
+ {
+ "id": 2683,
+ "start": 2536.84,
+ "end": 2536.94,
+ "text": "the"
+ },
+ {
+ "id": 2684,
+ "start": 2536.94,
+ "end": 2537.92,
+ "text": "committee."
+ },
+ {
+ "id": 2685,
+ "start": 2537.92,
+ "end": 2538.64,
+ "text": "We"
+ },
+ {
+ "id": 2686,
+ "start": 2538.64,
+ "end": 2538.92,
+ "text": "face"
+ },
+ {
+ "id": 2687,
+ "start": 2538.92,
+ "end": 2539.04,
+ "text": "a"
+ },
+ {
+ "id": 2688,
+ "start": 2539.04,
+ "end": 2539.34,
+ "text": "number"
+ },
+ {
+ "id": 2689,
+ "start": 2539.34,
+ "end": 2539.44,
+ "text": "of"
+ },
+ {
+ "id": 2690,
+ "start": 2539.44,
+ "end": 2539.86,
+ "text": "important"
+ },
+ {
+ "id": 2691,
+ "start": 2539.86,
+ "end": 2540.24,
+ "text": "issues"
+ },
+ {
+ "id": 2692,
+ "start": 2540.24,
+ "end": 2540.72,
+ "text": "around"
+ },
+ {
+ "id": 2693,
+ "start": 2540.72,
+ "end": 2541.3,
+ "text": "privacy"
+ },
+ {
+ "id": 2694,
+ "start": 2541.3,
+ "end": 2542.16,
+ "text": "safety"
+ },
+ {
+ "id": 2695,
+ "start": 2542.16,
+ "end": 2542.52,
+ "text": "and"
+ },
+ {
+ "id": 2696,
+ "start": 2542.52,
+ "end": 2543.1,
+ "text": "democracy"
+ },
+ {
+ "id": 2697,
+ "start": 2543.1,
+ "end": 2543.8,
+ "text": "and"
+ },
+ {
+ "id": 2698,
+ "start": 2543.8,
+ "end": 2543.9,
+ "text": "you"
+ },
+ {
+ "id": 2699,
+ "start": 2543.9,
+ "end": 2544.06,
+ "text": "will"
+ },
+ {
+ "id": 2700,
+ "start": 2544.06,
+ "end": 2544.52,
+ "text": "rightfully"
+ },
+ {
+ "id": 2701,
+ "start": 2544.52,
+ "end": 2544.84,
+ "text": "have"
+ },
+ {
+ "id": 2702,
+ "start": 2544.84,
+ "end": 2545.1,
+ "text": "some"
+ },
+ {
+ "id": 2703,
+ "start": 2545.1,
+ "end": 2545.34,
+ "text": "hard"
+ },
+ {
+ "id": 2704,
+ "start": 2545.34,
+ "end": 2545.8,
+ "text": "questions"
+ },
+ {
+ "id": 2705,
+ "start": 2545.8,
+ "end": 2545.98,
+ "text": "for"
+ },
+ {
+ "id": 2706,
+ "start": 2545.98,
+ "end": 2546.08,
+ "text": "me"
+ },
+ {
+ "id": 2707,
+ "start": 2546.08,
+ "end": 2546.18,
+ "text": "to"
+ },
+ {
+ "id": 2708,
+ "start": 2546.18,
+ "end": 2547.16,
+ "text": "answer"
+ },
+ {
+ "id": 2709,
+ "start": 2547.16,
+ "end": 2548.1,
+ "text": "before"
+ },
+ {
+ "id": 2710,
+ "start": 2548.1,
+ "end": 2548.14,
+ "text": "I"
+ },
+ {
+ "id": 2711,
+ "start": 2548.14,
+ "end": 2548.4,
+ "text": "talk"
+ },
+ {
+ "id": 2712,
+ "start": 2548.4,
+ "end": 2548.62,
+ "text": "about"
+ },
+ {
+ "id": 2713,
+ "start": 2548.62,
+ "end": 2548.74,
+ "text": "the"
+ },
+ {
+ "id": 2714,
+ "start": 2548.74,
+ "end": 2548.96,
+ "text": "steps"
+ },
+ {
+ "id": 2715,
+ "start": 2548.96,
+ "end": 2549.2,
+ "text": "we're"
+ },
+ {
+ "id": 2716,
+ "start": 2549.2,
+ "end": 2549.44,
+ "text": "taking"
+ },
+ {
+ "id": 2717,
+ "start": 2549.44,
+ "end": 2549.56,
+ "text": "to"
+ },
+ {
+ "id": 2718,
+ "start": 2549.56,
+ "end": 2549.86,
+ "text": "address"
+ },
+ {
+ "id": 2719,
+ "start": 2549.86,
+ "end": 2550.08,
+ "text": "them."
+ },
+ {
+ "id": 2720,
+ "start": 2550.08,
+ "end": 2550.72,
+ "text": "I"
+ },
+ {
+ "id": 2721,
+ "start": 2550.72,
+ "end": 2550.86,
+ "text": "want"
+ },
+ {
+ "id": 2722,
+ "start": 2550.86,
+ "end": 2550.96,
+ "text": "to"
+ },
+ {
+ "id": 2723,
+ "start": 2550.96,
+ "end": 2551.12,
+ "text": "talk"
+ },
+ {
+ "id": 2724,
+ "start": 2551.12,
+ "end": 2551.3,
+ "text": "about"
+ },
+ {
+ "id": 2725,
+ "start": 2551.3,
+ "end": 2551.42,
+ "text": "how"
+ },
+ {
+ "id": 2726,
+ "start": 2551.42,
+ "end": 2551.52,
+ "text": "we"
+ },
+ {
+ "id": 2727,
+ "start": 2551.52,
+ "end": 2551.72,
+ "text": "got"
+ },
+ {
+ "id": 2728,
+ "start": 2551.72,
+ "end": 2553.12,
+ "text": "here,"
+ },
+ {
+ "id": 2729,
+ "start": 2553.12,
+ "end": 2554.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 2730,
+ "start": 2554.1,
+ "end": 2554.48,
+ "text": "is"
+ },
+ {
+ "id": 2731,
+ "start": 2554.48,
+ "end": 2554.6,
+ "text": "an"
+ },
+ {
+ "id": 2732,
+ "start": 2554.6,
+ "end": 2555.38,
+ "text": "idealistic"
+ },
+ {
+ "id": 2733,
+ "start": 2555.38,
+ "end": 2555.6,
+ "text": "and"
+ },
+ {
+ "id": 2734,
+ "start": 2555.6,
+ "end": 2556.22,
+ "text": "optimistic"
+ },
+ {
+ "id": 2735,
+ "start": 2556.22,
+ "end": 2556.66,
+ "text": "company."
+ },
+ {
+ "id": 2736,
+ "start": 2556.66,
+ "end": 2557.7,
+ "text": "For"
+ },
+ {
+ "id": 2737,
+ "start": 2557.7,
+ "end": 2557.92,
+ "text": "most"
+ },
+ {
+ "id": 2738,
+ "start": 2557.92,
+ "end": 2558.02,
+ "text": "of"
+ },
+ {
+ "id": 2739,
+ "start": 2558.02,
+ "end": 2558.16,
+ "text": "our"
+ },
+ {
+ "id": 2740,
+ "start": 2558.16,
+ "end": 2558.64,
+ "text": "existence."
+ },
+ {
+ "id": 2741,
+ "start": 2558.64,
+ "end": 2559.34,
+ "text": "We"
+ },
+ {
+ "id": 2742,
+ "start": 2559.34,
+ "end": 2559.82,
+ "text": "focused"
+ },
+ {
+ "id": 2743,
+ "start": 2559.82,
+ "end": 2560.04,
+ "text": "on"
+ },
+ {
+ "id": 2744,
+ "start": 2560.04,
+ "end": 2560.3,
+ "text": "all"
+ },
+ {
+ "id": 2745,
+ "start": 2560.3,
+ "end": 2560.36,
+ "text": "of"
+ },
+ {
+ "id": 2746,
+ "start": 2560.36,
+ "end": 2560.48,
+ "text": "the"
+ },
+ {
+ "id": 2747,
+ "start": 2560.48,
+ "end": 2560.74,
+ "text": "good"
+ },
+ {
+ "id": 2748,
+ "start": 2560.74,
+ "end": 2560.96,
+ "text": "that"
+ },
+ {
+ "id": 2749,
+ "start": 2560.96,
+ "end": 2561.38,
+ "text": "connecting"
+ },
+ {
+ "id": 2750,
+ "start": 2561.38,
+ "end": 2561.68,
+ "text": "people"
+ },
+ {
+ "id": 2751,
+ "start": 2561.68,
+ "end": 2561.9,
+ "text": "can"
+ },
+ {
+ "id": 2752,
+ "start": 2561.9,
+ "end": 2562.04,
+ "text": "do."
+ },
+ {
+ "id": 2753,
+ "start": 2562.04,
+ "end": 2562.94,
+ "text": "And"
+ },
+ {
+ "id": 2754,
+ "start": 2562.94,
+ "end": 2563.1,
+ "text": "as"
+ },
+ {
+ "id": 2755,
+ "start": 2563.1,
+ "end": 2563.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 2756,
+ "start": 2563.46,
+ "end": 2563.6,
+ "text": "has"
+ },
+ {
+ "id": 2757,
+ "start": 2563.6,
+ "end": 2563.92,
+ "text": "grown"
+ },
+ {
+ "id": 2758,
+ "start": 2563.92,
+ "end": 2564.24,
+ "text": "people"
+ },
+ {
+ "id": 2759,
+ "start": 2564.24,
+ "end": 2564.68,
+ "text": "everywhere"
+ },
+ {
+ "id": 2760,
+ "start": 2564.68,
+ "end": 2564.88,
+ "text": "have"
+ },
+ {
+ "id": 2761,
+ "start": 2564.88,
+ "end": 2565.22,
+ "text": "gotten"
+ },
+ {
+ "id": 2762,
+ "start": 2565.22,
+ "end": 2565.66,
+ "text": "a"
+ },
+ {
+ "id": 2763,
+ "start": 2565.66,
+ "end": 2566.18,
+ "text": "powerful"
+ },
+ {
+ "id": 2764,
+ "start": 2566.18,
+ "end": 2566.34,
+ "text": "new"
+ },
+ {
+ "id": 2765,
+ "start": 2566.34,
+ "end": 2566.7,
+ "text": "tool"
+ },
+ {
+ "id": 2766,
+ "start": 2566.7,
+ "end": 2567.28,
+ "text": "for"
+ },
+ {
+ "id": 2767,
+ "start": 2567.28,
+ "end": 2567.54,
+ "text": "staying"
+ },
+ {
+ "id": 2768,
+ "start": 2567.54,
+ "end": 2567.9,
+ "text": "connected"
+ },
+ {
+ "id": 2769,
+ "start": 2567.9,
+ "end": 2568,
+ "text": "to"
+ },
+ {
+ "id": 2770,
+ "start": 2568,
+ "end": 2568.12,
+ "text": "the"
+ },
+ {
+ "id": 2771,
+ "start": 2568.12,
+ "end": 2568.34,
+ "text": "people"
+ },
+ {
+ "id": 2772,
+ "start": 2568.34,
+ "end": 2568.52,
+ "text": "they"
+ },
+ {
+ "id": 2773,
+ "start": 2568.52,
+ "end": 2570.08,
+ "text": "love"
+ },
+ {
+ "id": 2774,
+ "start": 2570.08,
+ "end": 2571.08,
+ "text": "for"
+ },
+ {
+ "id": 2775,
+ "start": 2571.08,
+ "end": 2571.32,
+ "text": "making"
+ },
+ {
+ "id": 2776,
+ "start": 2571.32,
+ "end": 2571.5,
+ "text": "their"
+ },
+ {
+ "id": 2777,
+ "start": 2571.5,
+ "end": 2571.8,
+ "text": "voices"
+ },
+ {
+ "id": 2778,
+ "start": 2571.8,
+ "end": 2572.06,
+ "text": "heard"
+ },
+ {
+ "id": 2779,
+ "start": 2572.06,
+ "end": 2572.26,
+ "text": "and"
+ },
+ {
+ "id": 2780,
+ "start": 2572.26,
+ "end": 2572.46,
+ "text": "for"
+ },
+ {
+ "id": 2781,
+ "start": 2572.46,
+ "end": 2572.84,
+ "text": "building"
+ },
+ {
+ "id": 2782,
+ "start": 2572.84,
+ "end": 2573.38,
+ "text": "communities"
+ },
+ {
+ "id": 2783,
+ "start": 2573.38,
+ "end": 2573.62,
+ "text": "and"
+ },
+ {
+ "id": 2784,
+ "start": 2573.62,
+ "end": 2574.2,
+ "text": "businesses"
+ },
+ {
+ "id": 2785,
+ "start": 2574.2,
+ "end": 2575.26,
+ "text": "just"
+ },
+ {
+ "id": 2786,
+ "start": 2575.26,
+ "end": 2575.72,
+ "text": "recently"
+ },
+ {
+ "id": 2787,
+ "start": 2575.72,
+ "end": 2576.44,
+ "text": "we've"
+ },
+ {
+ "id": 2788,
+ "start": 2576.44,
+ "end": 2576.66,
+ "text": "seen"
+ },
+ {
+ "id": 2789,
+ "start": 2576.66,
+ "end": 2576.8,
+ "text": "the"
+ },
+ {
+ "id": 2790,
+ "start": 2576.8,
+ "end": 2576.94,
+ "text": "me"
+ },
+ {
+ "id": 2791,
+ "start": 2576.94,
+ "end": 2577.2,
+ "text": "too"
+ },
+ {
+ "id": 2792,
+ "start": 2577.2,
+ "end": 2577.6,
+ "text": "movement"
+ },
+ {
+ "id": 2793,
+ "start": 2577.6,
+ "end": 2577.78,
+ "text": "and"
+ },
+ {
+ "id": 2794,
+ "start": 2577.78,
+ "end": 2577.9,
+ "text": "the"
+ },
+ {
+ "id": 2795,
+ "start": 2577.9,
+ "end": 2578.14,
+ "text": "March"
+ },
+ {
+ "id": 2796,
+ "start": 2578.14,
+ "end": 2578.3,
+ "text": "for"
+ },
+ {
+ "id": 2797,
+ "start": 2578.3,
+ "end": 2578.44,
+ "text": "our"
+ },
+ {
+ "id": 2798,
+ "start": 2578.44,
+ "end": 2578.8,
+ "text": "lives"
+ },
+ {
+ "id": 2799,
+ "start": 2578.8,
+ "end": 2579.34,
+ "text": "organized"
+ },
+ {
+ "id": 2800,
+ "start": 2579.34,
+ "end": 2579.48,
+ "text": "at"
+ },
+ {
+ "id": 2801,
+ "start": 2579.48,
+ "end": 2579.68,
+ "text": "least"
+ },
+ {
+ "id": 2802,
+ "start": 2579.68,
+ "end": 2579.84,
+ "text": "in"
+ },
+ {
+ "id": 2803,
+ "start": 2579.84,
+ "end": 2580.16,
+ "text": "part"
+ },
+ {
+ "id": 2804,
+ "start": 2580.16,
+ "end": 2580.7,
+ "text": "on"
+ },
+ {
+ "id": 2805,
+ "start": 2580.7,
+ "end": 2582.1,
+ "text": "Facebook."
+ },
+ {
+ "id": 2806,
+ "start": 2582.1,
+ "end": 2582.36,
+ "text": "After"
+ },
+ {
+ "id": 2807,
+ "start": 2582.36,
+ "end": 2582.74,
+ "text": "Hurricane"
+ },
+ {
+ "id": 2808,
+ "start": 2582.74,
+ "end": 2583.08,
+ "text": "Harvey,"
+ },
+ {
+ "id": 2809,
+ "start": 2583.08,
+ "end": 2583.82,
+ "text": "people"
+ },
+ {
+ "id": 2810,
+ "start": 2583.82,
+ "end": 2584.04,
+ "text": "came"
+ },
+ {
+ "id": 2811,
+ "start": 2584.04,
+ "end": 2584.4,
+ "text": "together"
+ },
+ {
+ "id": 2812,
+ "start": 2584.4,
+ "end": 2584.54,
+ "text": "to"
+ },
+ {
+ "id": 2813,
+ "start": 2584.54,
+ "end": 2584.76,
+ "text": "raise"
+ },
+ {
+ "id": 2814,
+ "start": 2584.76,
+ "end": 2584.98,
+ "text": "more"
+ },
+ {
+ "id": 2815,
+ "start": 2584.98,
+ "end": 2585.12,
+ "text": "than"
+ },
+ {
+ "id": 2816,
+ "start": 2585.12,
+ "end": 2585.72,
+ "text": "20,000,000"
+ },
+ {
+ "id": 2817,
+ "start": 2585.72,
+ "end": 2586.1,
+ "text": "dollars"
+ },
+ {
+ "id": 2818,
+ "start": 2586.1,
+ "end": 2586.34,
+ "text": "for"
+ },
+ {
+ "id": 2819,
+ "start": 2586.34,
+ "end": 2586.7,
+ "text": "relief"
+ },
+ {
+ "id": 2820,
+ "start": 2586.7,
+ "end": 2587.8,
+ "text": "and"
+ },
+ {
+ "id": 2821,
+ "start": 2587.8,
+ "end": 2588,
+ "text": "more"
+ },
+ {
+ "id": 2822,
+ "start": 2588,
+ "end": 2588.14,
+ "text": "than"
+ },
+ {
+ "id": 2823,
+ "start": 2588.14,
+ "end": 2589.04,
+ "text": "70,000,000"
+ },
+ {
+ "id": 2824,
+ "start": 2589.04,
+ "end": 2589.78,
+ "text": "small"
+ },
+ {
+ "id": 2825,
+ "start": 2589.78,
+ "end": 2590.34,
+ "text": "businesses"
+ },
+ {
+ "id": 2826,
+ "start": 2590.34,
+ "end": 2591,
+ "text": "use"
+ },
+ {
+ "id": 2827,
+ "start": 2591,
+ "end": 2591.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 2828,
+ "start": 2591.5,
+ "end": 2591.94,
+ "text": "to"
+ },
+ {
+ "id": 2829,
+ "start": 2591.94,
+ "end": 2592.26,
+ "text": "create"
+ },
+ {
+ "id": 2830,
+ "start": 2592.26,
+ "end": 2592.72,
+ "text": "jobs"
+ },
+ {
+ "id": 2831,
+ "start": 2592.72,
+ "end": 2593.26,
+ "text": "and"
+ },
+ {
+ "id": 2832,
+ "start": 2593.26,
+ "end": 2594.34,
+ "text": "grow."
+ },
+ {
+ "id": 2833,
+ "start": 2594.34,
+ "end": 2595.22,
+ "text": "But"
+ },
+ {
+ "id": 2834,
+ "start": 2595.22,
+ "end": 2595.38,
+ "text": "it's"
+ },
+ {
+ "id": 2835,
+ "start": 2595.38,
+ "end": 2595.66,
+ "text": "clear"
+ },
+ {
+ "id": 2836,
+ "start": 2595.66,
+ "end": 2595.86,
+ "text": "now"
+ },
+ {
+ "id": 2837,
+ "start": 2595.86,
+ "end": 2596.2,
+ "text": "that"
+ },
+ {
+ "id": 2838,
+ "start": 2596.2,
+ "end": 2596.3,
+ "text": "we"
+ },
+ {
+ "id": 2839,
+ "start": 2596.3,
+ "end": 2596.6,
+ "text": "didn't"
+ },
+ {
+ "id": 2840,
+ "start": 2596.6,
+ "end": 2596.76,
+ "text": "do"
+ },
+ {
+ "id": 2841,
+ "start": 2596.76,
+ "end": 2597.16,
+ "text": "enough"
+ },
+ {
+ "id": 2842,
+ "start": 2597.16,
+ "end": 2597.36,
+ "text": "to"
+ },
+ {
+ "id": 2843,
+ "start": 2597.36,
+ "end": 2597.68,
+ "text": "prevent"
+ },
+ {
+ "id": 2844,
+ "start": 2597.68,
+ "end": 2597.92,
+ "text": "these"
+ },
+ {
+ "id": 2845,
+ "start": 2597.92,
+ "end": 2598.28,
+ "text": "tools"
+ },
+ {
+ "id": 2846,
+ "start": 2598.28,
+ "end": 2598.52,
+ "text": "from"
+ },
+ {
+ "id": 2847,
+ "start": 2598.52,
+ "end": 2598.74,
+ "text": "being"
+ },
+ {
+ "id": 2848,
+ "start": 2598.74,
+ "end": 2599,
+ "text": "used"
+ },
+ {
+ "id": 2849,
+ "start": 2599,
+ "end": 2599.18,
+ "text": "for"
+ },
+ {
+ "id": 2850,
+ "start": 2599.18,
+ "end": 2599.48,
+ "text": "harm"
+ },
+ {
+ "id": 2851,
+ "start": 2599.48,
+ "end": 2599.74,
+ "text": "as"
+ },
+ {
+ "id": 2852,
+ "start": 2599.74,
+ "end": 2599.96,
+ "text": "well."
+ },
+ {
+ "id": 2853,
+ "start": 2599.96,
+ "end": 2600.68,
+ "text": "And"
+ },
+ {
+ "id": 2854,
+ "start": 2600.68,
+ "end": 2600.84,
+ "text": "that"
+ },
+ {
+ "id": 2855,
+ "start": 2600.84,
+ "end": 2601.12,
+ "text": "goes"
+ },
+ {
+ "id": 2856,
+ "start": 2601.12,
+ "end": 2601.34,
+ "text": "for"
+ },
+ {
+ "id": 2857,
+ "start": 2601.34,
+ "end": 2601.7,
+ "text": "Fake"
+ },
+ {
+ "id": 2858,
+ "start": 2601.7,
+ "end": 2602.06,
+ "text": "News"
+ },
+ {
+ "id": 2859,
+ "start": 2602.06,
+ "end": 2602.72,
+ "text": "for"
+ },
+ {
+ "id": 2860,
+ "start": 2602.72,
+ "end": 2603,
+ "text": "foreign"
+ },
+ {
+ "id": 2861,
+ "start": 2603,
+ "end": 2603.52,
+ "text": "interference"
+ },
+ {
+ "id": 2862,
+ "start": 2603.52,
+ "end": 2603.62,
+ "text": "in"
+ },
+ {
+ "id": 2863,
+ "start": 2603.62,
+ "end": 2604.06,
+ "text": "elections"
+ },
+ {
+ "id": 2864,
+ "start": 2604.06,
+ "end": 2604.28,
+ "text": "and"
+ },
+ {
+ "id": 2865,
+ "start": 2604.28,
+ "end": 2604.54,
+ "text": "hate"
+ },
+ {
+ "id": 2866,
+ "start": 2604.54,
+ "end": 2604.86,
+ "text": "speech"
+ },
+ {
+ "id": 2867,
+ "start": 2604.86,
+ "end": 2605.63,
+ "text": "is"
+ },
+ {
+ "id": 2868,
+ "start": 2605.63,
+ "end": 2605.89,
+ "text": "well"
+ },
+ {
+ "id": 2869,
+ "start": 2605.89,
+ "end": 2606.15,
+ "text": "as"
+ },
+ {
+ "id": 2870,
+ "start": 2606.15,
+ "end": 2606.71,
+ "text": "developers"
+ },
+ {
+ "id": 2871,
+ "start": 2606.71,
+ "end": 2606.83,
+ "text": "and"
+ },
+ {
+ "id": 2872,
+ "start": 2606.83,
+ "end": 2607.09,
+ "text": "data"
+ },
+ {
+ "id": 2873,
+ "start": 2607.09,
+ "end": 2607.81,
+ "text": "privacy,"
+ },
+ {
+ "id": 2874,
+ "start": 2607.81,
+ "end": 2608.85,
+ "text": "we"
+ },
+ {
+ "id": 2875,
+ "start": 2608.85,
+ "end": 2609.13,
+ "text": "didn't"
+ },
+ {
+ "id": 2876,
+ "start": 2609.13,
+ "end": 2609.41,
+ "text": "take"
+ },
+ {
+ "id": 2877,
+ "start": 2609.41,
+ "end": 2609.59,
+ "text": "a"
+ },
+ {
+ "id": 2878,
+ "start": 2609.59,
+ "end": 2609.89,
+ "text": "broad"
+ },
+ {
+ "id": 2879,
+ "start": 2609.89,
+ "end": 2610.13,
+ "text": "enough"
+ },
+ {
+ "id": 2880,
+ "start": 2610.13,
+ "end": 2610.37,
+ "text": "view"
+ },
+ {
+ "id": 2881,
+ "start": 2610.37,
+ "end": 2610.49,
+ "text": "of"
+ },
+ {
+ "id": 2882,
+ "start": 2610.49,
+ "end": 2610.67,
+ "text": "our"
+ },
+ {
+ "id": 2883,
+ "start": 2610.67,
+ "end": 2611.51,
+ "text": "responsibility."
+ },
+ {
+ "id": 2884,
+ "start": 2611.51,
+ "end": 2612.23,
+ "text": "And"
+ },
+ {
+ "id": 2885,
+ "start": 2612.23,
+ "end": 2612.41,
+ "text": "that"
+ },
+ {
+ "id": 2886,
+ "start": 2612.41,
+ "end": 2612.57,
+ "text": "was"
+ },
+ {
+ "id": 2887,
+ "start": 2612.57,
+ "end": 2612.65,
+ "text": "a"
+ },
+ {
+ "id": 2888,
+ "start": 2612.65,
+ "end": 2612.93,
+ "text": "big"
+ },
+ {
+ "id": 2889,
+ "start": 2612.93,
+ "end": 2613.35,
+ "text": "mistake."
+ },
+ {
+ "id": 2890,
+ "start": 2613.35,
+ "end": 2614.21,
+ "text": "And"
+ },
+ {
+ "id": 2891,
+ "start": 2614.21,
+ "end": 2614.31,
+ "text": "it"
+ },
+ {
+ "id": 2892,
+ "start": 2614.31,
+ "end": 2614.45,
+ "text": "was"
+ },
+ {
+ "id": 2893,
+ "start": 2614.45,
+ "end": 2614.65,
+ "text": "my"
+ },
+ {
+ "id": 2894,
+ "start": 2614.65,
+ "end": 2615.05,
+ "text": "mistake."
+ },
+ {
+ "id": 2895,
+ "start": 2615.05,
+ "end": 2615.69,
+ "text": "And"
+ },
+ {
+ "id": 2896,
+ "start": 2615.69,
+ "end": 2615.85,
+ "text": "I'm"
+ },
+ {
+ "id": 2897,
+ "start": 2615.85,
+ "end": 2616.92,
+ "text": "sorry,"
+ },
+ {
+ "id": 2898,
+ "start": 2616.92,
+ "end": 2616.96,
+ "text": "I"
+ },
+ {
+ "id": 2899,
+ "start": 2616.96,
+ "end": 2618.12,
+ "text": "started"
+ },
+ {
+ "id": 2900,
+ "start": 2618.12,
+ "end": 2618.56,
+ "text": "Facebook,"
+ },
+ {
+ "id": 2901,
+ "start": 2618.56,
+ "end": 2619.54,
+ "text": "I"
+ },
+ {
+ "id": 2902,
+ "start": 2619.54,
+ "end": 2619.76,
+ "text": "run"
+ },
+ {
+ "id": 2903,
+ "start": 2619.76,
+ "end": 2619.9,
+ "text": "it"
+ },
+ {
+ "id": 2904,
+ "start": 2619.9,
+ "end": 2620.68,
+ "text": "and"
+ },
+ {
+ "id": 2905,
+ "start": 2620.68,
+ "end": 2620.86,
+ "text": "I'm"
+ },
+ {
+ "id": 2906,
+ "start": 2620.86,
+ "end": 2621.48,
+ "text": "responsible"
+ },
+ {
+ "id": 2907,
+ "start": 2621.48,
+ "end": 2621.64,
+ "text": "for"
+ },
+ {
+ "id": 2908,
+ "start": 2621.64,
+ "end": 2621.78,
+ "text": "what"
+ },
+ {
+ "id": 2909,
+ "start": 2621.78,
+ "end": 2622.1,
+ "text": "happens"
+ },
+ {
+ "id": 2910,
+ "start": 2622.1,
+ "end": 2623.28,
+ "text": "here."
+ },
+ {
+ "id": 2911,
+ "start": 2623.28,
+ "end": 2624.32,
+ "text": "So"
+ },
+ {
+ "id": 2912,
+ "start": 2624.32,
+ "end": 2624.58,
+ "text": "now"
+ },
+ {
+ "id": 2913,
+ "start": 2624.58,
+ "end": 2625.3,
+ "text": "we"
+ },
+ {
+ "id": 2914,
+ "start": 2625.3,
+ "end": 2625.48,
+ "text": "have"
+ },
+ {
+ "id": 2915,
+ "start": 2625.48,
+ "end": 2625.58,
+ "text": "to"
+ },
+ {
+ "id": 2916,
+ "start": 2625.58,
+ "end": 2625.68,
+ "text": "go"
+ },
+ {
+ "id": 2917,
+ "start": 2625.68,
+ "end": 2626.74,
+ "text": "through"
+ },
+ {
+ "id": 2918,
+ "start": 2626.74,
+ "end": 2627.7,
+ "text": "all"
+ },
+ {
+ "id": 2919,
+ "start": 2627.7,
+ "end": 2627.78,
+ "text": "of"
+ },
+ {
+ "id": 2920,
+ "start": 2627.78,
+ "end": 2627.92,
+ "text": "our"
+ },
+ {
+ "id": 2921,
+ "start": 2627.92,
+ "end": 2628.48,
+ "text": "relationship"
+ },
+ {
+ "id": 2922,
+ "start": 2628.48,
+ "end": 2628.68,
+ "text": "with"
+ },
+ {
+ "id": 2923,
+ "start": 2628.68,
+ "end": 2628.94,
+ "text": "people"
+ },
+ {
+ "id": 2924,
+ "start": 2628.94,
+ "end": 2629.18,
+ "text": "and"
+ },
+ {
+ "id": 2925,
+ "start": 2629.18,
+ "end": 2630.1,
+ "text": "make"
+ },
+ {
+ "id": 2926,
+ "start": 2630.1,
+ "end": 2630.26,
+ "text": "sure"
+ },
+ {
+ "id": 2927,
+ "start": 2630.26,
+ "end": 2630.38,
+ "text": "that"
+ },
+ {
+ "id": 2928,
+ "start": 2630.38,
+ "end": 2630.54,
+ "text": "we're"
+ },
+ {
+ "id": 2929,
+ "start": 2630.54,
+ "end": 2630.76,
+ "text": "taking"
+ },
+ {
+ "id": 2930,
+ "start": 2630.76,
+ "end": 2630.82,
+ "text": "a"
+ },
+ {
+ "id": 2931,
+ "start": 2630.82,
+ "end": 2631.06,
+ "text": "broad"
+ },
+ {
+ "id": 2932,
+ "start": 2631.06,
+ "end": 2631.28,
+ "text": "enough"
+ },
+ {
+ "id": 2933,
+ "start": 2631.28,
+ "end": 2631.44,
+ "text": "for"
+ },
+ {
+ "id": 2934,
+ "start": 2631.44,
+ "end": 2631.66,
+ "text": "you"
+ },
+ {
+ "id": 2935,
+ "start": 2631.66,
+ "end": 2631.86,
+ "text": "of"
+ },
+ {
+ "id": 2936,
+ "start": 2631.86,
+ "end": 2632.02,
+ "text": "our"
+ },
+ {
+ "id": 2937,
+ "start": 2632.02,
+ "end": 2633.5,
+ "text": "responsibility"
+ },
+ {
+ "id": 2938,
+ "start": 2633.5,
+ "end": 2634.4,
+ "text": "it's"
+ },
+ {
+ "id": 2939,
+ "start": 2634.4,
+ "end": 2634.6,
+ "text": "not"
+ },
+ {
+ "id": 2940,
+ "start": 2634.6,
+ "end": 2634.88,
+ "text": "enough"
+ },
+ {
+ "id": 2941,
+ "start": 2634.88,
+ "end": 2635,
+ "text": "to"
+ },
+ {
+ "id": 2942,
+ "start": 2635,
+ "end": 2635.16,
+ "text": "just"
+ },
+ {
+ "id": 2943,
+ "start": 2635.16,
+ "end": 2635.44,
+ "text": "connect"
+ },
+ {
+ "id": 2944,
+ "start": 2635.44,
+ "end": 2635.7,
+ "text": "people."
+ },
+ {
+ "id": 2945,
+ "start": 2635.7,
+ "end": 2636.2,
+ "text": "We"
+ },
+ {
+ "id": 2946,
+ "start": 2636.2,
+ "end": 2636.36,
+ "text": "have"
+ },
+ {
+ "id": 2947,
+ "start": 2636.36,
+ "end": 2636.44,
+ "text": "to"
+ },
+ {
+ "id": 2948,
+ "start": 2636.44,
+ "end": 2636.58,
+ "text": "make"
+ },
+ {
+ "id": 2949,
+ "start": 2636.58,
+ "end": 2636.74,
+ "text": "sure"
+ },
+ {
+ "id": 2950,
+ "start": 2636.74,
+ "end": 2636.9,
+ "text": "that"
+ },
+ {
+ "id": 2951,
+ "start": 2636.9,
+ "end": 2637.08,
+ "text": "those"
+ },
+ {
+ "id": 2952,
+ "start": 2637.08,
+ "end": 2637.5,
+ "text": "connections"
+ },
+ {
+ "id": 2953,
+ "start": 2637.5,
+ "end": 2637.66,
+ "text": "are"
+ },
+ {
+ "id": 2954,
+ "start": 2637.66,
+ "end": 2638.12,
+ "text": "positive"
+ },
+ {
+ "id": 2955,
+ "start": 2638.12,
+ "end": 2639.22,
+ "text": "it's"
+ },
+ {
+ "id": 2956,
+ "start": 2639.22,
+ "end": 2639.4,
+ "text": "not"
+ },
+ {
+ "id": 2957,
+ "start": 2639.4,
+ "end": 2639.66,
+ "text": "enough"
+ },
+ {
+ "id": 2958,
+ "start": 2639.66,
+ "end": 2639.82,
+ "text": "to"
+ },
+ {
+ "id": 2959,
+ "start": 2639.82,
+ "end": 2639.98,
+ "text": "just"
+ },
+ {
+ "id": 2960,
+ "start": 2639.98,
+ "end": 2640.18,
+ "text": "give"
+ },
+ {
+ "id": 2961,
+ "start": 2640.18,
+ "end": 2640.4,
+ "text": "people"
+ },
+ {
+ "id": 2962,
+ "start": 2640.4,
+ "end": 2640.46,
+ "text": "a"
+ },
+ {
+ "id": 2963,
+ "start": 2640.46,
+ "end": 2640.8,
+ "text": "voice,"
+ },
+ {
+ "id": 2964,
+ "start": 2640.8,
+ "end": 2641.46,
+ "text": "we"
+ },
+ {
+ "id": 2965,
+ "start": 2641.46,
+ "end": 2641.66,
+ "text": "need"
+ },
+ {
+ "id": 2966,
+ "start": 2641.66,
+ "end": 2641.74,
+ "text": "to"
+ },
+ {
+ "id": 2967,
+ "start": 2641.74,
+ "end": 2641.88,
+ "text": "make"
+ },
+ {
+ "id": 2968,
+ "start": 2641.88,
+ "end": 2642.1,
+ "text": "sure"
+ },
+ {
+ "id": 2969,
+ "start": 2642.1,
+ "end": 2642.32,
+ "text": "that"
+ },
+ {
+ "id": 2970,
+ "start": 2642.32,
+ "end": 2642.54,
+ "text": "people"
+ },
+ {
+ "id": 2971,
+ "start": 2642.54,
+ "end": 2642.76,
+ "text": "aren't"
+ },
+ {
+ "id": 2972,
+ "start": 2642.76,
+ "end": 2643.02,
+ "text": "using"
+ },
+ {
+ "id": 2973,
+ "start": 2643.02,
+ "end": 2643.12,
+ "text": "it"
+ },
+ {
+ "id": 2974,
+ "start": 2643.12,
+ "end": 2643.22,
+ "text": "to"
+ },
+ {
+ "id": 2975,
+ "start": 2643.22,
+ "end": 2643.5,
+ "text": "harm"
+ },
+ {
+ "id": 2976,
+ "start": 2643.5,
+ "end": 2643.74,
+ "text": "other"
+ },
+ {
+ "id": 2977,
+ "start": 2643.74,
+ "end": 2644.24,
+ "text": "people"
+ },
+ {
+ "id": 2978,
+ "start": 2644.24,
+ "end": 2644.98,
+ "text": "or"
+ },
+ {
+ "id": 2979,
+ "start": 2644.98,
+ "end": 2645.12,
+ "text": "to"
+ },
+ {
+ "id": 2980,
+ "start": 2645.12,
+ "end": 2645.4,
+ "text": "spread"
+ },
+ {
+ "id": 2981,
+ "start": 2645.4,
+ "end": 2646.14,
+ "text": "misinformation"
+ },
+ {
+ "id": 2982,
+ "start": 2646.14,
+ "end": 2647,
+ "text": "and"
+ },
+ {
+ "id": 2983,
+ "start": 2647,
+ "end": 2647.16,
+ "text": "it's."
+ },
+ {
+ "id": 2984,
+ "start": 2647.16,
+ "end": 2647.34,
+ "text": "Not"
+ },
+ {
+ "id": 2985,
+ "start": 2647.34,
+ "end": 2647.6,
+ "text": "enough"
+ },
+ {
+ "id": 2986,
+ "start": 2647.6,
+ "end": 2647.74,
+ "text": "to"
+ },
+ {
+ "id": 2987,
+ "start": 2647.74,
+ "end": 2647.92,
+ "text": "just"
+ },
+ {
+ "id": 2988,
+ "start": 2647.92,
+ "end": 2648.12,
+ "text": "give"
+ },
+ {
+ "id": 2989,
+ "start": 2648.12,
+ "end": 2648.36,
+ "text": "people"
+ },
+ {
+ "id": 2990,
+ "start": 2648.36,
+ "end": 2648.8,
+ "text": "control"
+ },
+ {
+ "id": 2991,
+ "start": 2648.8,
+ "end": 2648.98,
+ "text": "over"
+ },
+ {
+ "id": 2992,
+ "start": 2648.98,
+ "end": 2649.16,
+ "text": "their"
+ },
+ {
+ "id": 2993,
+ "start": 2649.16,
+ "end": 2649.68,
+ "text": "information."
+ },
+ {
+ "id": 2994,
+ "start": 2649.68,
+ "end": 2650.54,
+ "text": "We"
+ },
+ {
+ "id": 2995,
+ "start": 2650.54,
+ "end": 2650.72,
+ "text": "need"
+ },
+ {
+ "id": 2996,
+ "start": 2650.72,
+ "end": 2650.8,
+ "text": "to"
+ },
+ {
+ "id": 2997,
+ "start": 2650.8,
+ "end": 2650.96,
+ "text": "make"
+ },
+ {
+ "id": 2998,
+ "start": 2650.96,
+ "end": 2651.22,
+ "text": "sure"
+ },
+ {
+ "id": 2999,
+ "start": 2651.22,
+ "end": 2651.42,
+ "text": "that"
+ },
+ {
+ "id": 3000,
+ "start": 2651.42,
+ "end": 2651.54,
+ "text": "the"
+ },
+ {
+ "id": 3001,
+ "start": 2651.54,
+ "end": 2652.04,
+ "text": "developers"
+ },
+ {
+ "id": 3002,
+ "start": 2652.04,
+ "end": 2652.2,
+ "text": "they"
+ },
+ {
+ "id": 3003,
+ "start": 2652.2,
+ "end": 2652.46,
+ "text": "share"
+ },
+ {
+ "id": 3004,
+ "start": 2652.46,
+ "end": 2652.56,
+ "text": "it"
+ },
+ {
+ "id": 3005,
+ "start": 2652.56,
+ "end": 2652.76,
+ "text": "with"
+ },
+ {
+ "id": 3006,
+ "start": 2652.76,
+ "end": 2653.42,
+ "text": "protect"
+ },
+ {
+ "id": 3007,
+ "start": 2653.42,
+ "end": 2653.62,
+ "text": "their"
+ },
+ {
+ "id": 3008,
+ "start": 2653.62,
+ "end": 2654.12,
+ "text": "information"
+ },
+ {
+ "id": 3009,
+ "start": 2654.12,
+ "end": 2654.98,
+ "text": "too"
+ },
+ {
+ "id": 3010,
+ "start": 2654.98,
+ "end": 2656,
+ "text": "across"
+ },
+ {
+ "id": 3011,
+ "start": 2656,
+ "end": 2656.16,
+ "text": "the"
+ },
+ {
+ "id": 3012,
+ "start": 2656.16,
+ "end": 2656.42,
+ "text": "board."
+ },
+ {
+ "id": 3013,
+ "start": 2656.42,
+ "end": 2657.18,
+ "text": "We"
+ },
+ {
+ "id": 3014,
+ "start": 2657.18,
+ "end": 2657.34,
+ "text": "have"
+ },
+ {
+ "id": 3015,
+ "start": 2657.34,
+ "end": 2657.38,
+ "text": "a"
+ },
+ {
+ "id": 3016,
+ "start": 2657.38,
+ "end": 2658.14,
+ "text": "responsibility"
+ },
+ {
+ "id": 3017,
+ "start": 2658.14,
+ "end": 2658.3,
+ "text": "to"
+ },
+ {
+ "id": 3018,
+ "start": 2658.3,
+ "end": 2658.52,
+ "text": "not"
+ },
+ {
+ "id": 3019,
+ "start": 2658.52,
+ "end": 2658.68,
+ "text": "just"
+ },
+ {
+ "id": 3020,
+ "start": 2658.68,
+ "end": 2658.94,
+ "text": "build"
+ },
+ {
+ "id": 3021,
+ "start": 2658.94,
+ "end": 2659.4,
+ "text": "tools"
+ },
+ {
+ "id": 3022,
+ "start": 2659.4,
+ "end": 2660.1,
+ "text": "but"
+ },
+ {
+ "id": 3023,
+ "start": 2660.1,
+ "end": 2660.28,
+ "text": "to"
+ },
+ {
+ "id": 3024,
+ "start": 2660.28,
+ "end": 2660.46,
+ "text": "make"
+ },
+ {
+ "id": 3025,
+ "start": 2660.46,
+ "end": 2660.66,
+ "text": "sure"
+ },
+ {
+ "id": 3026,
+ "start": 2660.66,
+ "end": 2660.84,
+ "text": "that"
+ },
+ {
+ "id": 3027,
+ "start": 2660.84,
+ "end": 2660.96,
+ "text": "they"
+ },
+ {
+ "id": 3028,
+ "start": 2660.96,
+ "end": 2661.06,
+ "text": "are"
+ },
+ {
+ "id": 3029,
+ "start": 2661.06,
+ "end": 2661.32,
+ "text": "used"
+ },
+ {
+ "id": 3030,
+ "start": 2661.32,
+ "end": 2661.52,
+ "text": "for"
+ },
+ {
+ "id": 3031,
+ "start": 2661.52,
+ "end": 2662.66,
+ "text": "good."
+ },
+ {
+ "id": 3032,
+ "start": 2662.66,
+ "end": 2663.62,
+ "text": "It"
+ },
+ {
+ "id": 3033,
+ "start": 2663.62,
+ "end": 2663.82,
+ "text": "will"
+ },
+ {
+ "id": 3034,
+ "start": 2663.82,
+ "end": 2663.98,
+ "text": "take"
+ },
+ {
+ "id": 3035,
+ "start": 2663.98,
+ "end": 2664.2,
+ "text": "some"
+ },
+ {
+ "id": 3036,
+ "start": 2664.2,
+ "end": 2664.46,
+ "text": "time"
+ },
+ {
+ "id": 3037,
+ "start": 2664.46,
+ "end": 2664.6,
+ "text": "to"
+ },
+ {
+ "id": 3038,
+ "start": 2664.6,
+ "end": 2664.76,
+ "text": "work"
+ },
+ {
+ "id": 3039,
+ "start": 2664.76,
+ "end": 2664.98,
+ "text": "through"
+ },
+ {
+ "id": 3040,
+ "start": 2664.98,
+ "end": 2665.1,
+ "text": "all"
+ },
+ {
+ "id": 3041,
+ "start": 2665.1,
+ "end": 2665.22,
+ "text": "the"
+ },
+ {
+ "id": 3042,
+ "start": 2665.22,
+ "end": 2665.56,
+ "text": "changes."
+ },
+ {
+ "id": 3043,
+ "start": 2665.56,
+ "end": 2665.72,
+ "text": "We"
+ },
+ {
+ "id": 3044,
+ "start": 2665.72,
+ "end": 2665.9,
+ "text": "need"
+ },
+ {
+ "id": 3045,
+ "start": 2665.9,
+ "end": 2665.98,
+ "text": "to"
+ },
+ {
+ "id": 3046,
+ "start": 2665.98,
+ "end": 2666.16,
+ "text": "make"
+ },
+ {
+ "id": 3047,
+ "start": 2666.16,
+ "end": 2666.44,
+ "text": "across"
+ },
+ {
+ "id": 3048,
+ "start": 2666.44,
+ "end": 2666.62,
+ "text": "the"
+ },
+ {
+ "id": 3049,
+ "start": 2666.62,
+ "end": 2666.94,
+ "text": "company,"
+ },
+ {
+ "id": 3050,
+ "start": 2666.94,
+ "end": 2667.62,
+ "text": "but"
+ },
+ {
+ "id": 3051,
+ "start": 2667.62,
+ "end": 2667.88,
+ "text": "I'm"
+ },
+ {
+ "id": 3052,
+ "start": 2667.88,
+ "end": 2668.26,
+ "text": "committed"
+ },
+ {
+ "id": 3053,
+ "start": 2668.26,
+ "end": 2668.4,
+ "text": "to"
+ },
+ {
+ "id": 3054,
+ "start": 2668.4,
+ "end": 2668.68,
+ "text": "getting"
+ },
+ {
+ "id": 3055,
+ "start": 2668.68,
+ "end": 2668.88,
+ "text": "this"
+ },
+ {
+ "id": 3056,
+ "start": 2668.88,
+ "end": 2669.94,
+ "text": "right."
+ },
+ {
+ "id": 3057,
+ "start": 2669.94,
+ "end": 2670.88,
+ "text": "This"
+ },
+ {
+ "id": 3058,
+ "start": 2670.88,
+ "end": 2671.28,
+ "text": "includes"
+ },
+ {
+ "id": 3059,
+ "start": 2671.28,
+ "end": 2671.44,
+ "text": "the"
+ },
+ {
+ "id": 3060,
+ "start": 2671.44,
+ "end": 2671.76,
+ "text": "basic"
+ },
+ {
+ "id": 3061,
+ "start": 2671.76,
+ "end": 2672.58,
+ "text": "responsibility"
+ },
+ {
+ "id": 3062,
+ "start": 2672.58,
+ "end": 2673.14,
+ "text": "of"
+ },
+ {
+ "id": 3063,
+ "start": 2673.14,
+ "end": 2673.66,
+ "text": "protecting"
+ },
+ {
+ "id": 3064,
+ "start": 2673.66,
+ "end": 2673.98,
+ "text": "people's"
+ },
+ {
+ "id": 3065,
+ "start": 2673.98,
+ "end": 2674.56,
+ "text": "information"
+ },
+ {
+ "id": 3066,
+ "start": 2674.56,
+ "end": 2675.24,
+ "text": "which"
+ },
+ {
+ "id": 3067,
+ "start": 2675.24,
+ "end": 2675.36,
+ "text": "we"
+ },
+ {
+ "id": 3068,
+ "start": 2675.36,
+ "end": 2675.74,
+ "text": "failed"
+ },
+ {
+ "id": 3069,
+ "start": 2675.74,
+ "end": 2675.88,
+ "text": "to"
+ },
+ {
+ "id": 3070,
+ "start": 2675.88,
+ "end": 2676,
+ "text": "do"
+ },
+ {
+ "id": 3071,
+ "start": 2676,
+ "end": 2676.28,
+ "text": "with"
+ },
+ {
+ "id": 3072,
+ "start": 2676.28,
+ "end": 2676.68,
+ "text": "Cambridge"
+ },
+ {
+ "id": 3073,
+ "start": 2676.68,
+ "end": 2677.36,
+ "text": "Analytica"
+ },
+ {
+ "id": 3074,
+ "start": 2677.36,
+ "end": 2678.46,
+ "text": "so"
+ },
+ {
+ "id": 3075,
+ "start": 2678.46,
+ "end": 2678.92,
+ "text": "here"
+ },
+ {
+ "id": 3076,
+ "start": 2678.92,
+ "end": 2679.18,
+ "text": "are"
+ },
+ {
+ "id": 3077,
+ "start": 2679.18,
+ "end": 2679.3,
+ "text": "a"
+ },
+ {
+ "id": 3078,
+ "start": 2679.3,
+ "end": 2679.6,
+ "text": "few"
+ },
+ {
+ "id": 3079,
+ "start": 2679.6,
+ "end": 2679.92,
+ "text": "things"
+ },
+ {
+ "id": 3080,
+ "start": 2679.92,
+ "end": 2680.2,
+ "text": "that"
+ },
+ {
+ "id": 3081,
+ "start": 2680.2,
+ "end": 2680.3,
+ "text": "we"
+ },
+ {
+ "id": 3082,
+ "start": 2680.3,
+ "end": 2680.46,
+ "text": "are"
+ },
+ {
+ "id": 3083,
+ "start": 2680.46,
+ "end": 2681.18,
+ "text": "doing"
+ },
+ {
+ "id": 3084,
+ "start": 2681.18,
+ "end": 2681.76,
+ "text": "to"
+ },
+ {
+ "id": 3085,
+ "start": 2681.76,
+ "end": 2682.24,
+ "text": "address"
+ },
+ {
+ "id": 3086,
+ "start": 2682.24,
+ "end": 2682.46,
+ "text": "this."
+ },
+ {
+ "id": 3087,
+ "start": 2682.46,
+ "end": 2682.8,
+ "text": "And"
+ },
+ {
+ "id": 3088,
+ "start": 2682.8,
+ "end": 2682.92,
+ "text": "to"
+ },
+ {
+ "id": 3089,
+ "start": 2682.92,
+ "end": 2683.3,
+ "text": "prevent"
+ },
+ {
+ "id": 3090,
+ "start": 2683.3,
+ "end": 2683.46,
+ "text": "it"
+ },
+ {
+ "id": 3091,
+ "start": 2683.46,
+ "end": 2683.64,
+ "text": "from"
+ },
+ {
+ "id": 3092,
+ "start": 2683.64,
+ "end": 2684.02,
+ "text": "happening"
+ },
+ {
+ "id": 3093,
+ "start": 2684.02,
+ "end": 2684.56,
+ "text": "again"
+ },
+ {
+ "id": 3094,
+ "start": 2684.56,
+ "end": 2685.56,
+ "text": "first"
+ },
+ {
+ "id": 3095,
+ "start": 2685.56,
+ "end": 2686.54,
+ "text": "we're"
+ },
+ {
+ "id": 3096,
+ "start": 2686.54,
+ "end": 2686.76,
+ "text": "getting"
+ },
+ {
+ "id": 3097,
+ "start": 2686.76,
+ "end": 2686.84,
+ "text": "to"
+ },
+ {
+ "id": 3098,
+ "start": 2686.84,
+ "end": 2686.96,
+ "text": "the"
+ },
+ {
+ "id": 3099,
+ "start": 2686.96,
+ "end": 2687.24,
+ "text": "bottom"
+ },
+ {
+ "id": 3100,
+ "start": 2687.24,
+ "end": 2687.5,
+ "text": "of"
+ },
+ {
+ "id": 3101,
+ "start": 2687.5,
+ "end": 2688.04,
+ "text": "exactly"
+ },
+ {
+ "id": 3102,
+ "start": 2688.04,
+ "end": 2688.24,
+ "text": "what"
+ },
+ {
+ "id": 3103,
+ "start": 2688.24,
+ "end": 2688.68,
+ "text": "Cambridge"
+ },
+ {
+ "id": 3104,
+ "start": 2688.68,
+ "end": 2689.1,
+ "text": "Analytica"
+ },
+ {
+ "id": 3105,
+ "start": 2689.1,
+ "end": 2689.4,
+ "text": "did"
+ },
+ {
+ "id": 3106,
+ "start": 2689.4,
+ "end": 2690.22,
+ "text": "and"
+ },
+ {
+ "id": 3107,
+ "start": 2690.22,
+ "end": 2690.52,
+ "text": "telling"
+ },
+ {
+ "id": 3108,
+ "start": 2690.52,
+ "end": 2690.88,
+ "text": "everyone"
+ },
+ {
+ "id": 3109,
+ "start": 2690.88,
+ "end": 2691.72,
+ "text": "affected."
+ },
+ {
+ "id": 3110,
+ "start": 2691.72,
+ "end": 2692.34,
+ "text": "What"
+ },
+ {
+ "id": 3111,
+ "start": 2692.34,
+ "end": 2692.48,
+ "text": "we"
+ },
+ {
+ "id": 3112,
+ "start": 2692.48,
+ "end": 2692.62,
+ "text": "know"
+ },
+ {
+ "id": 3113,
+ "start": 2692.62,
+ "end": 2692.82,
+ "text": "now"
+ },
+ {
+ "id": 3114,
+ "start": 2692.82,
+ "end": 2693.34,
+ "text": "is"
+ },
+ {
+ "id": 3115,
+ "start": 2693.34,
+ "end": 2693.52,
+ "text": "that"
+ },
+ {
+ "id": 3116,
+ "start": 2693.52,
+ "end": 2693.88,
+ "text": "Cambridge"
+ },
+ {
+ "id": 3117,
+ "start": 2693.88,
+ "end": 2694.26,
+ "text": "Analytica"
+ },
+ {
+ "id": 3118,
+ "start": 2694.26,
+ "end": 2695.1,
+ "text": "improperly"
+ },
+ {
+ "id": 3119,
+ "start": 2695.1,
+ "end": 2695.6,
+ "text": "accessed"
+ },
+ {
+ "id": 3120,
+ "start": 2695.6,
+ "end": 2696.14,
+ "text": "some"
+ },
+ {
+ "id": 3121,
+ "start": 2696.14,
+ "end": 2696.68,
+ "text": "information"
+ },
+ {
+ "id": 3122,
+ "start": 2696.68,
+ "end": 2697.04,
+ "text": "about"
+ },
+ {
+ "id": 3123,
+ "start": 2697.04,
+ "end": 2697.52,
+ "text": "millions"
+ },
+ {
+ "id": 3124,
+ "start": 2697.52,
+ "end": 2697.66,
+ "text": "of"
+ },
+ {
+ "id": 3125,
+ "start": 2697.66,
+ "end": 2698.08,
+ "text": "Facebook"
+ },
+ {
+ "id": 3126,
+ "start": 2698.08,
+ "end": 2698.44,
+ "text": "members"
+ },
+ {
+ "id": 3127,
+ "start": 2698.44,
+ "end": 2699.2,
+ "text": "by"
+ },
+ {
+ "id": 3128,
+ "start": 2699.2,
+ "end": 2699.54,
+ "text": "buying"
+ },
+ {
+ "id": 3129,
+ "start": 2699.54,
+ "end": 2699.68,
+ "text": "it"
+ },
+ {
+ "id": 3130,
+ "start": 2699.68,
+ "end": 2700.28,
+ "text": "from"
+ },
+ {
+ "id": 3131,
+ "start": 2700.28,
+ "end": 2700.38,
+ "text": "an"
+ },
+ {
+ "id": 3132,
+ "start": 2700.38,
+ "end": 2700.54,
+ "text": "app"
+ },
+ {
+ "id": 3133,
+ "start": 2700.54,
+ "end": 2701.72,
+ "text": "developer,"
+ },
+ {
+ "id": 3134,
+ "start": 2701.72,
+ "end": 2702.6,
+ "text": "that"
+ },
+ {
+ "id": 3135,
+ "start": 2702.6,
+ "end": 2704.14,
+ "text": "information."
+ },
+ {
+ "id": 3136,
+ "start": 2704.14,
+ "end": 2705.12,
+ "text": "This"
+ },
+ {
+ "id": 3137,
+ "start": 2705.12,
+ "end": 2705.3,
+ "text": "was"
+ },
+ {
+ "id": 3138,
+ "start": 2705.3,
+ "end": 2705.76,
+ "text": "information"
+ },
+ {
+ "id": 3139,
+ "start": 2705.76,
+ "end": 2705.94,
+ "text": "that"
+ },
+ {
+ "id": 3140,
+ "start": 2705.94,
+ "end": 2706.22,
+ "text": "people"
+ },
+ {
+ "id": 3141,
+ "start": 2706.22,
+ "end": 2706.68,
+ "text": "generally"
+ },
+ {
+ "id": 3142,
+ "start": 2706.68,
+ "end": 2706.92,
+ "text": "share"
+ },
+ {
+ "id": 3143,
+ "start": 2706.92,
+ "end": 2707.42,
+ "text": "publicly"
+ },
+ {
+ "id": 3144,
+ "start": 2707.42,
+ "end": 2707.68,
+ "text": "on"
+ },
+ {
+ "id": 3145,
+ "start": 2707.68,
+ "end": 2707.88,
+ "text": "their"
+ },
+ {
+ "id": 3146,
+ "start": 2707.88,
+ "end": 2708.24,
+ "text": "Facebook"
+ },
+ {
+ "id": 3147,
+ "start": 2708.24,
+ "end": 2708.62,
+ "text": "pages,"
+ },
+ {
+ "id": 3148,
+ "start": 2708.62,
+ "end": 2708.84,
+ "text": "like"
+ },
+ {
+ "id": 3149,
+ "start": 2708.84,
+ "end": 2709.28,
+ "text": "names"
+ },
+ {
+ "id": 3150,
+ "start": 2709.28,
+ "end": 2710.16,
+ "text": "and"
+ },
+ {
+ "id": 3151,
+ "start": 2710.16,
+ "end": 2710.8,
+ "text": "profile"
+ },
+ {
+ "id": 3152,
+ "start": 2710.8,
+ "end": 2711.14,
+ "text": "picture"
+ },
+ {
+ "id": 3153,
+ "start": 2711.14,
+ "end": 2711.44,
+ "text": "and"
+ },
+ {
+ "id": 3154,
+ "start": 2711.44,
+ "end": 2711.56,
+ "text": "the"
+ },
+ {
+ "id": 3155,
+ "start": 2711.56,
+ "end": 2711.9,
+ "text": "pages"
+ },
+ {
+ "id": 3156,
+ "start": 2711.9,
+ "end": 2712.12,
+ "text": "they"
+ },
+ {
+ "id": 3157,
+ "start": 2712.12,
+ "end": 2713.16,
+ "text": "follow."
+ },
+ {
+ "id": 3158,
+ "start": 2713.16,
+ "end": 2714.02,
+ "text": "When"
+ },
+ {
+ "id": 3159,
+ "start": 2714.02,
+ "end": 2714.12,
+ "text": "we"
+ },
+ {
+ "id": 3160,
+ "start": 2714.12,
+ "end": 2714.38,
+ "text": "first"
+ },
+ {
+ "id": 3161,
+ "start": 2714.38,
+ "end": 2714.98,
+ "text": "contacted"
+ },
+ {
+ "id": 3162,
+ "start": 2714.98,
+ "end": 2715.34,
+ "text": "Cambridge"
+ },
+ {
+ "id": 3163,
+ "start": 2715.34,
+ "end": 2715.74,
+ "text": "Analytica."
+ },
+ {
+ "id": 3164,
+ "start": 2715.74,
+ "end": 2716.72,
+ "text": "They"
+ },
+ {
+ "id": 3165,
+ "start": 2716.72,
+ "end": 2716.94,
+ "text": "told"
+ },
+ {
+ "id": 3166,
+ "start": 2716.94,
+ "end": 2717.08,
+ "text": "us"
+ },
+ {
+ "id": 3167,
+ "start": 2717.08,
+ "end": 2717.24,
+ "text": "that"
+ },
+ {
+ "id": 3168,
+ "start": 2717.24,
+ "end": 2717.38,
+ "text": "they"
+ },
+ {
+ "id": 3169,
+ "start": 2717.38,
+ "end": 2717.48,
+ "text": "had"
+ },
+ {
+ "id": 3170,
+ "start": 2717.48,
+ "end": 2717.8,
+ "text": "deleted"
+ },
+ {
+ "id": 3171,
+ "start": 2717.8,
+ "end": 2717.92,
+ "text": "the"
+ },
+ {
+ "id": 3172,
+ "start": 2717.92,
+ "end": 2718.44,
+ "text": "data"
+ },
+ {
+ "id": 3173,
+ "start": 2718.44,
+ "end": 2719.4,
+ "text": "about"
+ },
+ {
+ "id": 3174,
+ "start": 2719.4,
+ "end": 2719.48,
+ "text": "a"
+ },
+ {
+ "id": 3175,
+ "start": 2719.48,
+ "end": 2719.68,
+ "text": "month"
+ },
+ {
+ "id": 3176,
+ "start": 2719.68,
+ "end": 2719.86,
+ "text": "ago."
+ },
+ {
+ "id": 3177,
+ "start": 2719.86,
+ "end": 2720.28,
+ "text": "We"
+ },
+ {
+ "id": 3178,
+ "start": 2720.28,
+ "end": 2720.48,
+ "text": "heard"
+ },
+ {
+ "id": 3179,
+ "start": 2720.48,
+ "end": 2720.68,
+ "text": "new"
+ },
+ {
+ "id": 3180,
+ "start": 2720.68,
+ "end": 2721.12,
+ "text": "reports"
+ },
+ {
+ "id": 3181,
+ "start": 2721.12,
+ "end": 2721.56,
+ "text": "that"
+ },
+ {
+ "id": 3182,
+ "start": 2721.56,
+ "end": 2722.04,
+ "text": "suggested"
+ },
+ {
+ "id": 3183,
+ "start": 2722.04,
+ "end": 2722.18,
+ "text": "that"
+ },
+ {
+ "id": 3184,
+ "start": 2722.18,
+ "end": 2722.44,
+ "text": "wasn't"
+ },
+ {
+ "id": 3185,
+ "start": 2722.44,
+ "end": 2722.72,
+ "text": "true."
+ },
+ {
+ "id": 3186,
+ "start": 2722.72,
+ "end": 2723.68,
+ "text": "And"
+ },
+ {
+ "id": 3187,
+ "start": 2723.68,
+ "end": 2724,
+ "text": "now"
+ },
+ {
+ "id": 3188,
+ "start": 2724,
+ "end": 2724.32,
+ "text": "we're"
+ },
+ {
+ "id": 3189,
+ "start": 2724.32,
+ "end": 2724.56,
+ "text": "working"
+ },
+ {
+ "id": 3190,
+ "start": 2724.56,
+ "end": 2724.7,
+ "text": "with"
+ },
+ {
+ "id": 3191,
+ "start": 2724.7,
+ "end": 2725.12,
+ "text": "governments"
+ },
+ {
+ "id": 3192,
+ "start": 2725.12,
+ "end": 2725.24,
+ "text": "in"
+ },
+ {
+ "id": 3193,
+ "start": 2725.24,
+ "end": 2725.36,
+ "text": "the"
+ },
+ {
+ "id": 3194,
+ "start": 2725.36,
+ "end": 2725.48,
+ "text": "U"
+ },
+ {
+ "id": 3195,
+ "start": 2725.48,
+ "end": 2725.6,
+ "text": "s"
+ },
+ {
+ "id": 3196,
+ "start": 2725.6,
+ "end": 2725.88,
+ "text": "the"
+ },
+ {
+ "id": 3197,
+ "start": 2725.88,
+ "end": 2726.34,
+ "text": "UK"
+ },
+ {
+ "id": 3198,
+ "start": 2726.34,
+ "end": 2727,
+ "text": "and"
+ },
+ {
+ "id": 3199,
+ "start": 2727,
+ "end": 2727.26,
+ "text": "around"
+ },
+ {
+ "id": 3200,
+ "start": 2727.26,
+ "end": 2727.38,
+ "text": "the"
+ },
+ {
+ "id": 3201,
+ "start": 2727.38,
+ "end": 2727.62,
+ "text": "world"
+ },
+ {
+ "id": 3202,
+ "start": 2727.62,
+ "end": 2727.86,
+ "text": "to"
+ },
+ {
+ "id": 3203,
+ "start": 2727.86,
+ "end": 2728,
+ "text": "do"
+ },
+ {
+ "id": 3204,
+ "start": 2728,
+ "end": 2728.08,
+ "text": "a"
+ },
+ {
+ "id": 3205,
+ "start": 2728.08,
+ "end": 2728.36,
+ "text": "full"
+ },
+ {
+ "id": 3206,
+ "start": 2728.36,
+ "end": 2728.66,
+ "text": "audit"
+ },
+ {
+ "id": 3207,
+ "start": 2728.66,
+ "end": 2728.88,
+ "text": "of"
+ },
+ {
+ "id": 3208,
+ "start": 2728.88,
+ "end": 2729.04,
+ "text": "what"
+ },
+ {
+ "id": 3209,
+ "start": 2729.04,
+ "end": 2729.3,
+ "text": "they've"
+ },
+ {
+ "id": 3210,
+ "start": 2729.3,
+ "end": 2729.52,
+ "text": "done."
+ },
+ {
+ "id": 3211,
+ "start": 2729.52,
+ "end": 2729.98,
+ "text": "And"
+ },
+ {
+ "id": 3212,
+ "start": 2729.98,
+ "end": 2730.08,
+ "text": "to"
+ },
+ {
+ "id": 3213,
+ "start": 2730.08,
+ "end": 2730.26,
+ "text": "make"
+ },
+ {
+ "id": 3214,
+ "start": 2730.26,
+ "end": 2730.44,
+ "text": "sure"
+ },
+ {
+ "id": 3215,
+ "start": 2730.44,
+ "end": 2730.64,
+ "text": "they"
+ },
+ {
+ "id": 3216,
+ "start": 2730.64,
+ "end": 2730.78,
+ "text": "get"
+ },
+ {
+ "id": 3217,
+ "start": 2730.78,
+ "end": 2730.94,
+ "text": "rid"
+ },
+ {
+ "id": 3218,
+ "start": 2730.94,
+ "end": 2731.02,
+ "text": "of"
+ },
+ {
+ "id": 3219,
+ "start": 2731.02,
+ "end": 2731.36,
+ "text": "any"
+ },
+ {
+ "id": 3220,
+ "start": 2731.36,
+ "end": 2731.62,
+ "text": "data"
+ },
+ {
+ "id": 3221,
+ "start": 2731.62,
+ "end": 2731.8,
+ "text": "they"
+ },
+ {
+ "id": 3222,
+ "start": 2731.8,
+ "end": 2732.02,
+ "text": "may"
+ },
+ {
+ "id": 3223,
+ "start": 2732.02,
+ "end": 2732.26,
+ "text": "still"
+ },
+ {
+ "id": 3224,
+ "start": 2732.26,
+ "end": 2733.16,
+ "text": "have"
+ },
+ {
+ "id": 3225,
+ "start": 2733.16,
+ "end": 2734.38,
+ "text": "second"
+ },
+ {
+ "id": 3226,
+ "start": 2734.38,
+ "end": 2735.36,
+ "text": "to"
+ },
+ {
+ "id": 3227,
+ "start": 2735.36,
+ "end": 2735.52,
+ "text": "make"
+ },
+ {
+ "id": 3228,
+ "start": 2735.52,
+ "end": 2735.7,
+ "text": "sure"
+ },
+ {
+ "id": 3229,
+ "start": 2735.7,
+ "end": 2735.92,
+ "text": "no"
+ },
+ {
+ "id": 3230,
+ "start": 2735.92,
+ "end": 2736.24,
+ "text": "other"
+ },
+ {
+ "id": 3231,
+ "start": 2736.24,
+ "end": 2736.46,
+ "text": "app"
+ },
+ {
+ "id": 3232,
+ "start": 2736.46,
+ "end": 2736.94,
+ "text": "developers"
+ },
+ {
+ "id": 3233,
+ "start": 2736.94,
+ "end": 2737.08,
+ "text": "out"
+ },
+ {
+ "id": 3234,
+ "start": 2737.08,
+ "end": 2737.28,
+ "text": "there"
+ },
+ {
+ "id": 3235,
+ "start": 2737.28,
+ "end": 2737.38,
+ "text": "are"
+ },
+ {
+ "id": 3236,
+ "start": 2737.38,
+ "end": 2737.88,
+ "text": "misusing"
+ },
+ {
+ "id": 3237,
+ "start": 2737.88,
+ "end": 2738.2,
+ "text": "data."
+ },
+ {
+ "id": 3238,
+ "start": 2738.2,
+ "end": 2738.82,
+ "text": "We"
+ },
+ {
+ "id": 3239,
+ "start": 2738.82,
+ "end": 2738.94,
+ "text": "are"
+ },
+ {
+ "id": 3240,
+ "start": 2738.94,
+ "end": 2739.08,
+ "text": "now"
+ },
+ {
+ "id": 3241,
+ "start": 2739.08,
+ "end": 2739.74,
+ "text": "investigating"
+ },
+ {
+ "id": 3242,
+ "start": 2739.74,
+ "end": 2740.28,
+ "text": "every"
+ },
+ {
+ "id": 3243,
+ "start": 2740.28,
+ "end": 2740.6,
+ "text": "single"
+ },
+ {
+ "id": 3244,
+ "start": 2740.6,
+ "end": 2740.84,
+ "text": "app"
+ },
+ {
+ "id": 3245,
+ "start": 2740.84,
+ "end": 2741.08,
+ "text": "that"
+ },
+ {
+ "id": 3246,
+ "start": 2741.08,
+ "end": 2741.28,
+ "text": "had"
+ },
+ {
+ "id": 3247,
+ "start": 2741.28,
+ "end": 2741.68,
+ "text": "access"
+ },
+ {
+ "id": 3248,
+ "start": 2741.68,
+ "end": 2741.84,
+ "text": "to"
+ },
+ {
+ "id": 3249,
+ "start": 2741.84,
+ "end": 2741.92,
+ "text": "a"
+ },
+ {
+ "id": 3250,
+ "start": 2741.92,
+ "end": 2742.2,
+ "text": "large"
+ },
+ {
+ "id": 3251,
+ "start": 2742.2,
+ "end": 2742.44,
+ "text": "amount"
+ },
+ {
+ "id": 3252,
+ "start": 2742.44,
+ "end": 2742.54,
+ "text": "of"
+ },
+ {
+ "id": 3253,
+ "start": 2742.54,
+ "end": 2743,
+ "text": "information"
+ },
+ {
+ "id": 3254,
+ "start": 2743,
+ "end": 2743.12,
+ "text": "in"
+ },
+ {
+ "id": 3255,
+ "start": 2743.12,
+ "end": 2743.24,
+ "text": "the"
+ },
+ {
+ "id": 3256,
+ "start": 2743.24,
+ "end": 2744.06,
+ "text": "past."
+ },
+ {
+ "id": 3257,
+ "start": 2744.06,
+ "end": 2744.8,
+ "text": "And"
+ },
+ {
+ "id": 3258,
+ "start": 2744.8,
+ "end": 2745.1,
+ "text": "if"
+ },
+ {
+ "id": 3259,
+ "start": 2745.1,
+ "end": 2745.22,
+ "text": "we"
+ },
+ {
+ "id": 3260,
+ "start": 2745.22,
+ "end": 2745.52,
+ "text": "find"
+ },
+ {
+ "id": 3261,
+ "start": 2745.52,
+ "end": 2745.68,
+ "text": "that"
+ },
+ {
+ "id": 3262,
+ "start": 2745.68,
+ "end": 2745.98,
+ "text": "someone"
+ },
+ {
+ "id": 3263,
+ "start": 2745.98,
+ "end": 2746.54,
+ "text": "improperly"
+ },
+ {
+ "id": 3264,
+ "start": 2746.54,
+ "end": 2746.76,
+ "text": "used"
+ },
+ {
+ "id": 3265,
+ "start": 2746.76,
+ "end": 2747.08,
+ "text": "data"
+ },
+ {
+ "id": 3266,
+ "start": 2747.08,
+ "end": 2747.84,
+ "text": "we're"
+ },
+ {
+ "id": 3267,
+ "start": 2747.84,
+ "end": 2747.98,
+ "text": "going"
+ },
+ {
+ "id": 3268,
+ "start": 2747.98,
+ "end": 2748.06,
+ "text": "to"
+ },
+ {
+ "id": 3269,
+ "start": 2748.06,
+ "end": 2748.26,
+ "text": "ban"
+ },
+ {
+ "id": 3270,
+ "start": 2748.26,
+ "end": 2748.42,
+ "text": "them"
+ },
+ {
+ "id": 3271,
+ "start": 2748.42,
+ "end": 2748.62,
+ "text": "from"
+ },
+ {
+ "id": 3272,
+ "start": 2748.62,
+ "end": 2749.06,
+ "text": "Facebook"
+ },
+ {
+ "id": 3273,
+ "start": 2749.06,
+ "end": 2749.26,
+ "text": "and"
+ },
+ {
+ "id": 3274,
+ "start": 2749.26,
+ "end": 2749.44,
+ "text": "tell"
+ },
+ {
+ "id": 3275,
+ "start": 2749.44,
+ "end": 2749.76,
+ "text": "everyone"
+ },
+ {
+ "id": 3276,
+ "start": 2749.76,
+ "end": 2750.68,
+ "text": "affected"
+ },
+ {
+ "id": 3277,
+ "start": 2750.68,
+ "end": 2751.52,
+ "text": "third"
+ },
+ {
+ "id": 3278,
+ "start": 2751.52,
+ "end": 2752.5,
+ "text": "to"
+ },
+ {
+ "id": 3279,
+ "start": 2752.5,
+ "end": 2752.8,
+ "text": "prevent"
+ },
+ {
+ "id": 3280,
+ "start": 2752.8,
+ "end": 2752.96,
+ "text": "this"
+ },
+ {
+ "id": 3281,
+ "start": 2752.96,
+ "end": 2753.14,
+ "text": "from"
+ },
+ {
+ "id": 3282,
+ "start": 2753.14,
+ "end": 2753.38,
+ "text": "ever"
+ },
+ {
+ "id": 3283,
+ "start": 2753.38,
+ "end": 2753.82,
+ "text": "happening"
+ },
+ {
+ "id": 3284,
+ "start": 2753.82,
+ "end": 2754.1,
+ "text": "again,"
+ },
+ {
+ "id": 3285,
+ "start": 2754.1,
+ "end": 2754.48,
+ "text": "going"
+ },
+ {
+ "id": 3286,
+ "start": 2754.48,
+ "end": 2754.9,
+ "text": "forward"
+ },
+ {
+ "id": 3287,
+ "start": 2754.9,
+ "end": 2755.54,
+ "text": "we're"
+ },
+ {
+ "id": 3288,
+ "start": 2755.54,
+ "end": 2755.78,
+ "text": "making"
+ },
+ {
+ "id": 3289,
+ "start": 2755.78,
+ "end": 2755.96,
+ "text": "sure"
+ },
+ {
+ "id": 3290,
+ "start": 2755.96,
+ "end": 2756.12,
+ "text": "that"
+ },
+ {
+ "id": 3291,
+ "start": 2756.12,
+ "end": 2756.58,
+ "text": "developers"
+ },
+ {
+ "id": 3292,
+ "start": 2756.58,
+ "end": 2756.8,
+ "text": "can"
+ },
+ {
+ "id": 3293,
+ "start": 2756.8,
+ "end": 2757.2,
+ "text": "access"
+ },
+ {
+ "id": 3294,
+ "start": 2757.2,
+ "end": 2757.36,
+ "text": "as"
+ },
+ {
+ "id": 3295,
+ "start": 2757.36,
+ "end": 2757.56,
+ "text": "much"
+ },
+ {
+ "id": 3296,
+ "start": 2757.56,
+ "end": 2758.1,
+ "text": "information."
+ },
+ {
+ "id": 3297,
+ "start": 2758.1,
+ "end": 2758.36,
+ "text": "Now,"
+ },
+ {
+ "id": 3298,
+ "start": 2758.36,
+ "end": 2759.46,
+ "text": "the"
+ },
+ {
+ "id": 3299,
+ "start": 2759.46,
+ "end": 2759.64,
+ "text": "good"
+ },
+ {
+ "id": 3300,
+ "start": 2759.64,
+ "end": 2759.86,
+ "text": "news"
+ },
+ {
+ "id": 3301,
+ "start": 2759.86,
+ "end": 2760.16,
+ "text": "here"
+ },
+ {
+ "id": 3302,
+ "start": 2760.16,
+ "end": 2760.56,
+ "text": "is"
+ },
+ {
+ "id": 3303,
+ "start": 2760.56,
+ "end": 2760.72,
+ "text": "that"
+ },
+ {
+ "id": 3304,
+ "start": 2760.72,
+ "end": 2760.82,
+ "text": "we"
+ },
+ {
+ "id": 3305,
+ "start": 2760.82,
+ "end": 2761.34,
+ "text": "already"
+ },
+ {
+ "id": 3306,
+ "start": 2761.34,
+ "end": 2761.54,
+ "text": "made"
+ },
+ {
+ "id": 3307,
+ "start": 2761.54,
+ "end": 2761.92,
+ "text": "big"
+ },
+ {
+ "id": 3308,
+ "start": 2761.92,
+ "end": 2762.28,
+ "text": "changes"
+ },
+ {
+ "id": 3309,
+ "start": 2762.28,
+ "end": 2762.38,
+ "text": "to"
+ },
+ {
+ "id": 3310,
+ "start": 2762.38,
+ "end": 2762.54,
+ "text": "our"
+ },
+ {
+ "id": 3311,
+ "start": 2762.54,
+ "end": 2763.04,
+ "text": "platform."
+ },
+ {
+ "id": 3312,
+ "start": 2763.04,
+ "end": 2763.63,
+ "text": "And"
+ },
+ {
+ "id": 3313,
+ "start": 2763.63,
+ "end": 2764.59,
+ "text": "that"
+ },
+ {
+ "id": 3314,
+ "start": 2764.59,
+ "end": 2764.77,
+ "text": "would"
+ },
+ {
+ "id": 3315,
+ "start": 2764.77,
+ "end": 2764.89,
+ "text": "have"
+ },
+ {
+ "id": 3316,
+ "start": 2764.89,
+ "end": 2765.35,
+ "text": "prevented"
+ },
+ {
+ "id": 3317,
+ "start": 2765.35,
+ "end": 2765.55,
+ "text": "this"
+ },
+ {
+ "id": 3318,
+ "start": 2765.55,
+ "end": 2766.53,
+ "text": "specific"
+ },
+ {
+ "id": 3319,
+ "start": 2766.53,
+ "end": 2767.13,
+ "text": "situation"
+ },
+ {
+ "id": 3320,
+ "start": 2767.13,
+ "end": 2767.85,
+ "text": "with"
+ },
+ {
+ "id": 3321,
+ "start": 2767.85,
+ "end": 2768.15,
+ "text": "Cambridge"
+ },
+ {
+ "id": 3322,
+ "start": 2768.15,
+ "end": 2768.57,
+ "text": "Analytica"
+ },
+ {
+ "id": 3323,
+ "start": 2768.57,
+ "end": 2769.03,
+ "text": "from"
+ },
+ {
+ "id": 3324,
+ "start": 2769.03,
+ "end": 2769.39,
+ "text": "occurring"
+ },
+ {
+ "id": 3325,
+ "start": 2769.39,
+ "end": 2769.65,
+ "text": "again"
+ },
+ {
+ "id": 3326,
+ "start": 2769.65,
+ "end": 2770.09,
+ "text": "today."
+ },
+ {
+ "id": 3327,
+ "start": 2770.09,
+ "end": 2771.03,
+ "text": "But"
+ },
+ {
+ "id": 3328,
+ "start": 2771.03,
+ "end": 2771.29,
+ "text": "there's"
+ },
+ {
+ "id": 3329,
+ "start": 2771.29,
+ "end": 2771.45,
+ "text": "more"
+ },
+ {
+ "id": 3330,
+ "start": 2771.45,
+ "end": 2771.55,
+ "text": "to"
+ },
+ {
+ "id": 3331,
+ "start": 2771.55,
+ "end": 2771.77,
+ "text": "do."
+ },
+ {
+ "id": 3332,
+ "start": 2771.77,
+ "end": 2772.33,
+ "text": "And"
+ },
+ {
+ "id": 3333,
+ "start": 2772.33,
+ "end": 2772.47,
+ "text": "you"
+ },
+ {
+ "id": 3334,
+ "start": 2772.47,
+ "end": 2772.63,
+ "text": "can"
+ },
+ {
+ "id": 3335,
+ "start": 2772.63,
+ "end": 2772.99,
+ "text": "find"
+ },
+ {
+ "id": 3336,
+ "start": 2772.99,
+ "end": 2773.23,
+ "text": "more"
+ },
+ {
+ "id": 3337,
+ "start": 2773.23,
+ "end": 2773.65,
+ "text": "details"
+ },
+ {
+ "id": 3338,
+ "start": 2773.65,
+ "end": 2773.83,
+ "text": "on"
+ },
+ {
+ "id": 3339,
+ "start": 2773.83,
+ "end": 2773.95,
+ "text": "the"
+ },
+ {
+ "id": 3340,
+ "start": 2773.95,
+ "end": 2774.21,
+ "text": "steps"
+ },
+ {
+ "id": 3341,
+ "start": 2774.21,
+ "end": 2774.41,
+ "text": "we're"
+ },
+ {
+ "id": 3342,
+ "start": 2774.41,
+ "end": 2774.69,
+ "text": "taking"
+ },
+ {
+ "id": 3343,
+ "start": 2774.69,
+ "end": 2774.89,
+ "text": "in"
+ },
+ {
+ "id": 3344,
+ "start": 2774.89,
+ "end": 2775.05,
+ "text": "my"
+ },
+ {
+ "id": 3345,
+ "start": 2775.05,
+ "end": 2775.31,
+ "text": "written"
+ },
+ {
+ "id": 3346,
+ "start": 2775.31,
+ "end": 2776.58,
+ "text": "statement,"
+ },
+ {
+ "id": 3347,
+ "start": 2776.58,
+ "end": 2777.52,
+ "text": "my"
+ },
+ {
+ "id": 3348,
+ "start": 2777.52,
+ "end": 2777.78,
+ "text": "top"
+ },
+ {
+ "id": 3349,
+ "start": 2777.78,
+ "end": 2778.36,
+ "text": "priority"
+ },
+ {
+ "id": 3350,
+ "start": 2778.36,
+ "end": 2778.96,
+ "text": "has"
+ },
+ {
+ "id": 3351,
+ "start": 2778.96,
+ "end": 2779.38,
+ "text": "always"
+ },
+ {
+ "id": 3352,
+ "start": 2779.38,
+ "end": 2779.64,
+ "text": "been"
+ },
+ {
+ "id": 3353,
+ "start": 2779.64,
+ "end": 2779.9,
+ "text": "our"
+ },
+ {
+ "id": 3354,
+ "start": 2779.9,
+ "end": 2780.36,
+ "text": "social"
+ },
+ {
+ "id": 3355,
+ "start": 2780.36,
+ "end": 2780.66,
+ "text": "mission"
+ },
+ {
+ "id": 3356,
+ "start": 2780.66,
+ "end": 2781.28,
+ "text": "of"
+ },
+ {
+ "id": 3357,
+ "start": 2781.28,
+ "end": 2781.74,
+ "text": "connecting"
+ },
+ {
+ "id": 3358,
+ "start": 2781.74,
+ "end": 2782.04,
+ "text": "people"
+ },
+ {
+ "id": 3359,
+ "start": 2782.04,
+ "end": 2782.9,
+ "text": "building"
+ },
+ {
+ "id": 3360,
+ "start": 2782.9,
+ "end": 2783.34,
+ "text": "community"
+ },
+ {
+ "id": 3361,
+ "start": 2783.34,
+ "end": 2783.9,
+ "text": "and"
+ },
+ {
+ "id": 3362,
+ "start": 2783.9,
+ "end": 2784.2,
+ "text": "bringing"
+ },
+ {
+ "id": 3363,
+ "start": 2784.2,
+ "end": 2784.32,
+ "text": "the"
+ },
+ {
+ "id": 3364,
+ "start": 2784.32,
+ "end": 2784.56,
+ "text": "world"
+ },
+ {
+ "id": 3365,
+ "start": 2784.56,
+ "end": 2784.96,
+ "text": "closer"
+ },
+ {
+ "id": 3366,
+ "start": 2784.96,
+ "end": 2786,
+ "text": "together,"
+ },
+ {
+ "id": 3367,
+ "start": 2786,
+ "end": 2786.98,
+ "text": "advertisers"
+ },
+ {
+ "id": 3368,
+ "start": 2786.98,
+ "end": 2787.12,
+ "text": "and"
+ },
+ {
+ "id": 3369,
+ "start": 2787.12,
+ "end": 2787.7,
+ "text": "developers"
+ },
+ {
+ "id": 3370,
+ "start": 2787.7,
+ "end": 2788.16,
+ "text": "will"
+ },
+ {
+ "id": 3371,
+ "start": 2788.16,
+ "end": 2788.5,
+ "text": "never"
+ },
+ {
+ "id": 3372,
+ "start": 2788.5,
+ "end": 2788.78,
+ "text": "take"
+ },
+ {
+ "id": 3373,
+ "start": 2788.78,
+ "end": 2789.26,
+ "text": "priority"
+ },
+ {
+ "id": 3374,
+ "start": 2789.26,
+ "end": 2789.56,
+ "text": "over"
+ },
+ {
+ "id": 3375,
+ "start": 2789.56,
+ "end": 2789.82,
+ "text": "that."
+ },
+ {
+ "id": 3376,
+ "start": 2789.82,
+ "end": 2790.24,
+ "text": "As"
+ },
+ {
+ "id": 3377,
+ "start": 2790.24,
+ "end": 2790.46,
+ "text": "long"
+ },
+ {
+ "id": 3378,
+ "start": 2790.46,
+ "end": 2790.6,
+ "text": "as"
+ },
+ {
+ "id": 3379,
+ "start": 2790.6,
+ "end": 2790.88,
+ "text": "I'm"
+ },
+ {
+ "id": 3380,
+ "start": 2790.88,
+ "end": 2791.2,
+ "text": "running"
+ },
+ {
+ "id": 3381,
+ "start": 2791.2,
+ "end": 2792.46,
+ "text": "Facebook."
+ },
+ {
+ "id": 3382,
+ "start": 2792.46,
+ "end": 2792.74,
+ "text": "I"
+ },
+ {
+ "id": 3383,
+ "start": 2792.74,
+ "end": 2793.72,
+ "text": "started"
+ },
+ {
+ "id": 3384,
+ "start": 2793.72,
+ "end": 2794.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 3385,
+ "start": 2794.1,
+ "end": 2794.22,
+ "text": "when"
+ },
+ {
+ "id": 3386,
+ "start": 2794.22,
+ "end": 2794.28,
+ "text": "I"
+ },
+ {
+ "id": 3387,
+ "start": 2794.28,
+ "end": 2794.38,
+ "text": "was"
+ },
+ {
+ "id": 3388,
+ "start": 2794.38,
+ "end": 2794.5,
+ "text": "in"
+ },
+ {
+ "id": 3389,
+ "start": 2794.5,
+ "end": 2795.12,
+ "text": "college"
+ },
+ {
+ "id": 3390,
+ "start": 2795.12,
+ "end": 2796.1,
+ "text": "we've"
+ },
+ {
+ "id": 3391,
+ "start": 2796.1,
+ "end": 2796.22,
+ "text": "come"
+ },
+ {
+ "id": 3392,
+ "start": 2796.22,
+ "end": 2796.28,
+ "text": "a"
+ },
+ {
+ "id": 3393,
+ "start": 2796.28,
+ "end": 2796.44,
+ "text": "long"
+ },
+ {
+ "id": 3394,
+ "start": 2796.44,
+ "end": 2796.62,
+ "text": "way"
+ },
+ {
+ "id": 3395,
+ "start": 2796.62,
+ "end": 2796.86,
+ "text": "since"
+ },
+ {
+ "id": 3396,
+ "start": 2796.86,
+ "end": 2797.02,
+ "text": "then."
+ },
+ {
+ "id": 3397,
+ "start": 2797.02,
+ "end": 2798.2,
+ "text": "We"
+ },
+ {
+ "id": 3398,
+ "start": 2798.2,
+ "end": 2798.44,
+ "text": "now"
+ },
+ {
+ "id": 3399,
+ "start": 2798.44,
+ "end": 2798.8,
+ "text": "serve"
+ },
+ {
+ "id": 3400,
+ "start": 2798.8,
+ "end": 2799,
+ "text": "more"
+ },
+ {
+ "id": 3401,
+ "start": 2799,
+ "end": 2799.14,
+ "text": "than"
+ },
+ {
+ "id": 3402,
+ "start": 2799.14,
+ "end": 2799.78,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 3403,
+ "start": 2799.78,
+ "end": 2800.06,
+ "text": "people"
+ },
+ {
+ "id": 3404,
+ "start": 2800.06,
+ "end": 2800.6,
+ "text": "around"
+ },
+ {
+ "id": 3405,
+ "start": 2800.6,
+ "end": 2800.7,
+ "text": "the"
+ },
+ {
+ "id": 3406,
+ "start": 2800.7,
+ "end": 2801,
+ "text": "world."
+ },
+ {
+ "id": 3407,
+ "start": 2801,
+ "end": 2801.9,
+ "text": "And"
+ },
+ {
+ "id": 3408,
+ "start": 2801.9,
+ "end": 2802.14,
+ "text": "every"
+ },
+ {
+ "id": 3409,
+ "start": 2802.14,
+ "end": 2802.36,
+ "text": "day,"
+ },
+ {
+ "id": 3410,
+ "start": 2802.36,
+ "end": 2803.34,
+ "text": "people"
+ },
+ {
+ "id": 3411,
+ "start": 2803.34,
+ "end": 2803.56,
+ "text": "use"
+ },
+ {
+ "id": 3412,
+ "start": 2803.56,
+ "end": 2803.76,
+ "text": "our"
+ },
+ {
+ "id": 3413,
+ "start": 2803.76,
+ "end": 2804.28,
+ "text": "services"
+ },
+ {
+ "id": 3414,
+ "start": 2804.28,
+ "end": 2804.44,
+ "text": "to"
+ },
+ {
+ "id": 3415,
+ "start": 2804.44,
+ "end": 2804.66,
+ "text": "stay"
+ },
+ {
+ "id": 3416,
+ "start": 2804.66,
+ "end": 2805.02,
+ "text": "connected"
+ },
+ {
+ "id": 3417,
+ "start": 2805.02,
+ "end": 2805.16,
+ "text": "with"
+ },
+ {
+ "id": 3418,
+ "start": 2805.16,
+ "end": 2805.26,
+ "text": "the"
+ },
+ {
+ "id": 3419,
+ "start": 2805.26,
+ "end": 2805.48,
+ "text": "people"
+ },
+ {
+ "id": 3420,
+ "start": 2805.48,
+ "end": 2805.64,
+ "text": "that"
+ },
+ {
+ "id": 3421,
+ "start": 2805.64,
+ "end": 2805.9,
+ "text": "matter"
+ },
+ {
+ "id": 3422,
+ "start": 2805.9,
+ "end": 2806,
+ "text": "to"
+ },
+ {
+ "id": 3423,
+ "start": 2806,
+ "end": 2806.18,
+ "text": "them"
+ },
+ {
+ "id": 3424,
+ "start": 2806.18,
+ "end": 2807.26,
+ "text": "most,"
+ },
+ {
+ "id": 3425,
+ "start": 2807.26,
+ "end": 2808.16,
+ "text": "I"
+ },
+ {
+ "id": 3426,
+ "start": 2808.16,
+ "end": 2808.54,
+ "text": "believe"
+ },
+ {
+ "id": 3427,
+ "start": 2808.54,
+ "end": 2808.92,
+ "text": "deeply"
+ },
+ {
+ "id": 3428,
+ "start": 2808.92,
+ "end": 2809.1,
+ "text": "in"
+ },
+ {
+ "id": 3429,
+ "start": 2809.1,
+ "end": 2809.28,
+ "text": "what"
+ },
+ {
+ "id": 3430,
+ "start": 2809.28,
+ "end": 2809.52,
+ "text": "we're"
+ },
+ {
+ "id": 3431,
+ "start": 2809.52,
+ "end": 2809.78,
+ "text": "doing."
+ },
+ {
+ "id": 3432,
+ "start": 2809.78,
+ "end": 2810.62,
+ "text": "And"
+ },
+ {
+ "id": 3433,
+ "start": 2810.62,
+ "end": 2810.76,
+ "text": "I"
+ },
+ {
+ "id": 3434,
+ "start": 2810.76,
+ "end": 2810.94,
+ "text": "know"
+ },
+ {
+ "id": 3435,
+ "start": 2810.94,
+ "end": 2811.96,
+ "text": "that"
+ },
+ {
+ "id": 3436,
+ "start": 2811.96,
+ "end": 2812.08,
+ "text": "when"
+ },
+ {
+ "id": 3437,
+ "start": 2812.08,
+ "end": 2812.2,
+ "text": "we"
+ },
+ {
+ "id": 3438,
+ "start": 2812.2,
+ "end": 2812.5,
+ "text": "address"
+ },
+ {
+ "id": 3439,
+ "start": 2812.5,
+ "end": 2812.72,
+ "text": "these"
+ },
+ {
+ "id": 3440,
+ "start": 2812.72,
+ "end": 2813.2,
+ "text": "challenges"
+ },
+ {
+ "id": 3441,
+ "start": 2813.2,
+ "end": 2813.98,
+ "text": "we'll"
+ },
+ {
+ "id": 3442,
+ "start": 2813.98,
+ "end": 2814.16,
+ "text": "look"
+ },
+ {
+ "id": 3443,
+ "start": 2814.16,
+ "end": 2814.44,
+ "text": "back"
+ },
+ {
+ "id": 3444,
+ "start": 2814.44,
+ "end": 2814.72,
+ "text": "and"
+ },
+ {
+ "id": 3445,
+ "start": 2814.72,
+ "end": 2814.94,
+ "text": "view,"
+ },
+ {
+ "id": 3446,
+ "start": 2814.94,
+ "end": 2815.26,
+ "text": "helping"
+ },
+ {
+ "id": 3447,
+ "start": 2815.26,
+ "end": 2815.52,
+ "text": "people"
+ },
+ {
+ "id": 3448,
+ "start": 2815.52,
+ "end": 2815.88,
+ "text": "connect"
+ },
+ {
+ "id": 3449,
+ "start": 2815.88,
+ "end": 2816.04,
+ "text": "and"
+ },
+ {
+ "id": 3450,
+ "start": 2816.04,
+ "end": 2816.3,
+ "text": "giving"
+ },
+ {
+ "id": 3451,
+ "start": 2816.3,
+ "end": 2816.5,
+ "text": "more"
+ },
+ {
+ "id": 3452,
+ "start": 2816.5,
+ "end": 2816.74,
+ "text": "people"
+ },
+ {
+ "id": 3453,
+ "start": 2816.74,
+ "end": 2816.86,
+ "text": "a"
+ },
+ {
+ "id": 3454,
+ "start": 2816.86,
+ "end": 2817.87,
+ "text": "voice"
+ },
+ {
+ "id": 3455,
+ "start": 2817.87,
+ "end": 2818.33,
+ "text": "positive"
+ },
+ {
+ "id": 3456,
+ "start": 2818.33,
+ "end": 2818.57,
+ "text": "force"
+ },
+ {
+ "id": 3457,
+ "start": 2818.57,
+ "end": 2818.69,
+ "text": "in"
+ },
+ {
+ "id": 3458,
+ "start": 2818.69,
+ "end": 2818.81,
+ "text": "the"
+ },
+ {
+ "id": 3459,
+ "start": 2818.81,
+ "end": 2819.01,
+ "text": "world."
+ },
+ {
+ "id": 3460,
+ "start": 2819.01,
+ "end": 2820.77,
+ "text": "I"
+ },
+ {
+ "id": 3461,
+ "start": 2820.77,
+ "end": 2821.11,
+ "text": "realized"
+ },
+ {
+ "id": 3462,
+ "start": 2821.11,
+ "end": 2821.23,
+ "text": "the"
+ },
+ {
+ "id": 3463,
+ "start": 2821.23,
+ "end": 2821.51,
+ "text": "issues"
+ },
+ {
+ "id": 3464,
+ "start": 2821.51,
+ "end": 2821.71,
+ "text": "we're"
+ },
+ {
+ "id": 3465,
+ "start": 2821.71,
+ "end": 2821.95,
+ "text": "talking"
+ },
+ {
+ "id": 3466,
+ "start": 2821.95,
+ "end": 2822.13,
+ "text": "about"
+ },
+ {
+ "id": 3467,
+ "start": 2822.13,
+ "end": 2822.33,
+ "text": "today"
+ },
+ {
+ "id": 3468,
+ "start": 2822.33,
+ "end": 2822.61,
+ "text": "aren't"
+ },
+ {
+ "id": 3469,
+ "start": 2822.61,
+ "end": 2822.77,
+ "text": "just"
+ },
+ {
+ "id": 3470,
+ "start": 2822.77,
+ "end": 2823.11,
+ "text": "issues"
+ },
+ {
+ "id": 3471,
+ "start": 2823.11,
+ "end": 2823.29,
+ "text": "for"
+ },
+ {
+ "id": 3472,
+ "start": 2823.29,
+ "end": 2823.71,
+ "text": "Facebook"
+ },
+ {
+ "id": 3473,
+ "start": 2823.71,
+ "end": 2823.81,
+ "text": "and"
+ },
+ {
+ "id": 3474,
+ "start": 2823.81,
+ "end": 2823.95,
+ "text": "our"
+ },
+ {
+ "id": 3475,
+ "start": 2823.95,
+ "end": 2824.43,
+ "text": "community,"
+ },
+ {
+ "id": 3476,
+ "start": 2824.43,
+ "end": 2825.27,
+ "text": "their"
+ },
+ {
+ "id": 3477,
+ "start": 2825.27,
+ "end": 2825.63,
+ "text": "issues"
+ },
+ {
+ "id": 3478,
+ "start": 2825.63,
+ "end": 2825.95,
+ "text": "and"
+ },
+ {
+ "id": 3479,
+ "start": 2825.95,
+ "end": 2826.45,
+ "text": "challenges"
+ },
+ {
+ "id": 3480,
+ "start": 2826.45,
+ "end": 2826.65,
+ "text": "for"
+ },
+ {
+ "id": 3481,
+ "start": 2826.65,
+ "end": 2826.83,
+ "text": "all"
+ },
+ {
+ "id": 3482,
+ "start": 2826.83,
+ "end": 2826.91,
+ "text": "of"
+ },
+ {
+ "id": 3483,
+ "start": 2826.91,
+ "end": 2827.11,
+ "text": "us"
+ },
+ {
+ "id": 3484,
+ "start": 2827.11,
+ "end": 2827.35,
+ "text": "as"
+ },
+ {
+ "id": 3485,
+ "start": 2827.35,
+ "end": 2828.48,
+ "text": "Americans."
+ },
+ {
+ "id": 3486,
+ "start": 2828.48,
+ "end": 2829.26,
+ "text": "Thank"
+ },
+ {
+ "id": 3487,
+ "start": 2829.26,
+ "end": 2829.38,
+ "text": "you"
+ },
+ {
+ "id": 3488,
+ "start": 2829.38,
+ "end": 2829.54,
+ "text": "for"
+ },
+ {
+ "id": 3489,
+ "start": 2829.54,
+ "end": 2829.8,
+ "text": "having"
+ },
+ {
+ "id": 3490,
+ "start": 2829.8,
+ "end": 2829.9,
+ "text": "me"
+ },
+ {
+ "id": 3491,
+ "start": 2829.9,
+ "end": 2830.1,
+ "text": "here"
+ },
+ {
+ "id": 3492,
+ "start": 2830.1,
+ "end": 2830.36,
+ "text": "today."
+ },
+ {
+ "id": 3493,
+ "start": 2830.36,
+ "end": 2831.22,
+ "text": "And"
+ },
+ {
+ "id": 3494,
+ "start": 2831.22,
+ "end": 2831.38,
+ "text": "I'm"
+ },
+ {
+ "id": 3495,
+ "start": 2831.38,
+ "end": 2831.58,
+ "text": "ready"
+ },
+ {
+ "id": 3496,
+ "start": 2831.58,
+ "end": 2831.7,
+ "text": "to"
+ },
+ {
+ "id": 3497,
+ "start": 2831.7,
+ "end": 2831.88,
+ "text": "take"
+ },
+ {
+ "id": 3498,
+ "start": 2831.88,
+ "end": 2832.02,
+ "text": "your"
+ },
+ {
+ "id": 3499,
+ "start": 2832.02,
+ "end": 2833.9,
+ "text": "questions"
+ },
+ {
+ "id": 3500,
+ "start": 2833.9,
+ "end": 2834.88,
+ "text": "I'll"
+ },
+ {
+ "id": 3501,
+ "start": 2834.88,
+ "end": 2835.28,
+ "text": "remind"
+ },
+ {
+ "id": 3502,
+ "start": 2835.28,
+ "end": 2835.78,
+ "text": "members"
+ },
+ {
+ "id": 3503,
+ "start": 2835.78,
+ "end": 2836.12,
+ "text": "that"
+ },
+ {
+ "id": 3504,
+ "start": 2836.12,
+ "end": 2836.48,
+ "text": "maybe"
+ },
+ {
+ "id": 3505,
+ "start": 2836.48,
+ "end": 2836.82,
+ "text": "weren't"
+ },
+ {
+ "id": 3506,
+ "start": 2836.82,
+ "end": 2837,
+ "text": "here."
+ },
+ {
+ "id": 3507,
+ "start": 2837,
+ "end": 2837.2,
+ "text": "When"
+ },
+ {
+ "id": 3508,
+ "start": 2837.2,
+ "end": 2837.32,
+ "text": "I"
+ },
+ {
+ "id": 3509,
+ "start": 2837.32,
+ "end": 2837.52,
+ "text": "had"
+ },
+ {
+ "id": 3510,
+ "start": 2837.52,
+ "end": 2837.68,
+ "text": "my"
+ },
+ {
+ "id": 3511,
+ "start": 2837.68,
+ "end": 2838.16,
+ "text": "opening"
+ },
+ {
+ "id": 3512,
+ "start": 2838.16,
+ "end": 2838.74,
+ "text": "comments"
+ },
+ {
+ "id": 3513,
+ "start": 2838.74,
+ "end": 2839.5,
+ "text": "that"
+ },
+ {
+ "id": 3514,
+ "start": 2839.5,
+ "end": 2839.66,
+ "text": "we"
+ },
+ {
+ "id": 3515,
+ "start": 2839.66,
+ "end": 2839.9,
+ "text": "are"
+ },
+ {
+ "id": 3516,
+ "start": 2839.9,
+ "end": 2840.52,
+ "text": "operating"
+ },
+ {
+ "id": 3517,
+ "start": 2840.52,
+ "end": 2840.82,
+ "text": "under"
+ },
+ {
+ "id": 3518,
+ "start": 2840.82,
+ "end": 2840.96,
+ "text": "the"
+ },
+ {
+ "id": 3519,
+ "start": 2840.96,
+ "end": 2842.1,
+ "text": "five"
+ },
+ {
+ "id": 3520,
+ "start": 2842.1,
+ "end": 2842.36,
+ "text": "minute"
+ },
+ {
+ "id": 3521,
+ "start": 2842.36,
+ "end": 2842.56,
+ "text": "rule."
+ },
+ {
+ "id": 3522,
+ "start": 2842.56,
+ "end": 2842.72,
+ "text": "And"
+ },
+ {
+ "id": 3523,
+ "start": 2842.72,
+ "end": 2842.94,
+ "text": "that"
+ },
+ {
+ "id": 3524,
+ "start": 2842.94,
+ "end": 2843.42,
+ "text": "applies"
+ },
+ {
+ "id": 3525,
+ "start": 2843.42,
+ "end": 2845.26,
+ "text": "to"
+ },
+ {
+ "id": 3526,
+ "start": 2845.26,
+ "end": 2846.26,
+ "text": "the"
+ },
+ {
+ "id": 3527,
+ "start": 2846.26,
+ "end": 2846.58,
+ "text": "five"
+ },
+ {
+ "id": 3528,
+ "start": 2846.58,
+ "end": 2846.94,
+ "text": "minute"
+ },
+ {
+ "id": 3529,
+ "start": 2846.94,
+ "end": 2847.2,
+ "text": "rule."
+ },
+ {
+ "id": 3530,
+ "start": 2847.2,
+ "end": 2847.58,
+ "text": "And"
+ },
+ {
+ "id": 3531,
+ "start": 2847.58,
+ "end": 2847.76,
+ "text": "that"
+ },
+ {
+ "id": 3532,
+ "start": 2847.76,
+ "end": 2848.18,
+ "text": "applies"
+ },
+ {
+ "id": 3533,
+ "start": 2848.18,
+ "end": 2848.34,
+ "text": "to"
+ },
+ {
+ "id": 3534,
+ "start": 2848.34,
+ "end": 2848.64,
+ "text": "those"
+ },
+ {
+ "id": 3535,
+ "start": 2848.64,
+ "end": 2848.8,
+ "text": "of"
+ },
+ {
+ "id": 3536,
+ "start": 2848.8,
+ "end": 2848.98,
+ "text": "us"
+ },
+ {
+ "id": 3537,
+ "start": 2848.98,
+ "end": 2849.16,
+ "text": "who"
+ },
+ {
+ "id": 3538,
+ "start": 2849.16,
+ "end": 2849.76,
+ "text": "are"
+ },
+ {
+ "id": 3539,
+ "start": 2849.76,
+ "end": 2850.1,
+ "text": "chairing"
+ },
+ {
+ "id": 3540,
+ "start": 2850.1,
+ "end": 2850.26,
+ "text": "the"
+ },
+ {
+ "id": 3541,
+ "start": 2850.26,
+ "end": 2850.64,
+ "text": "committee"
+ },
+ {
+ "id": 3542,
+ "start": 2850.64,
+ "end": 2850.76,
+ "text": "as"
+ },
+ {
+ "id": 3543,
+ "start": 2850.76,
+ "end": 2853.34,
+ "text": "well."
+ },
+ {
+ "id": 3544,
+ "start": 2853.34,
+ "end": 2854.36,
+ "text": "Start"
+ },
+ {
+ "id": 3545,
+ "start": 2854.36,
+ "end": 2854.74,
+ "text": "with"
+ },
+ {
+ "id": 3546,
+ "start": 2854.74,
+ "end": 2854.98,
+ "text": "you,"
+ },
+ {
+ "id": 3547,
+ "start": 2854.98,
+ "end": 2856.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 3548,
+ "start": 2856.16,
+ "end": 2856.64,
+ "text": "handles"
+ },
+ {
+ "id": 3549,
+ "start": 2856.64,
+ "end": 2857.34,
+ "text": "extensive"
+ },
+ {
+ "id": 3550,
+ "start": 2857.34,
+ "end": 2857.72,
+ "text": "amounts"
+ },
+ {
+ "id": 3551,
+ "start": 2857.72,
+ "end": 2857.88,
+ "text": "of"
+ },
+ {
+ "id": 3552,
+ "start": 2857.88,
+ "end": 2858.38,
+ "text": "personal"
+ },
+ {
+ "id": 3553,
+ "start": 2858.38,
+ "end": 2858.8,
+ "text": "data"
+ },
+ {
+ "id": 3554,
+ "start": 2858.8,
+ "end": 2859.1,
+ "text": "for"
+ },
+ {
+ "id": 3555,
+ "start": 2859.1,
+ "end": 2859.58,
+ "text": "billions"
+ },
+ {
+ "id": 3556,
+ "start": 2859.58,
+ "end": 2859.72,
+ "text": "of"
+ },
+ {
+ "id": 3557,
+ "start": 2859.72,
+ "end": 2860.22,
+ "text": "users"
+ },
+ {
+ "id": 3558,
+ "start": 2860.22,
+ "end": 2861.38,
+ "text": "as"
+ },
+ {
+ "id": 3559,
+ "start": 2861.38,
+ "end": 2862.44,
+ "text": "significant"
+ },
+ {
+ "id": 3560,
+ "start": 2862.44,
+ "end": 2862.78,
+ "text": "amount"
+ },
+ {
+ "id": 3561,
+ "start": 2862.78,
+ "end": 2862.86,
+ "text": "of"
+ },
+ {
+ "id": 3562,
+ "start": 2862.86,
+ "end": 2863.04,
+ "text": "that"
+ },
+ {
+ "id": 3563,
+ "start": 2863.04,
+ "end": 2863.34,
+ "text": "data"
+ },
+ {
+ "id": 3564,
+ "start": 2863.34,
+ "end": 2863.54,
+ "text": "is"
+ },
+ {
+ "id": 3565,
+ "start": 2863.54,
+ "end": 2863.96,
+ "text": "shared"
+ },
+ {
+ "id": 3566,
+ "start": 2863.96,
+ "end": 2864.74,
+ "text": "with"
+ },
+ {
+ "id": 3567,
+ "start": 2864.74,
+ "end": 2865.12,
+ "text": "third"
+ },
+ {
+ "id": 3568,
+ "start": 2865.12,
+ "end": 2865.58,
+ "text": "party"
+ },
+ {
+ "id": 3569,
+ "start": 2865.58,
+ "end": 2866.42,
+ "text": "developers"
+ },
+ {
+ "id": 3570,
+ "start": 2866.42,
+ "end": 2866.56,
+ "text": "who"
+ },
+ {
+ "id": 3571,
+ "start": 2866.56,
+ "end": 2867.7,
+ "text": "utilize"
+ },
+ {
+ "id": 3572,
+ "start": 2867.7,
+ "end": 2867.9,
+ "text": "your"
+ },
+ {
+ "id": 3573,
+ "start": 2867.9,
+ "end": 2868.46,
+ "text": "platform."
+ },
+ {
+ "id": 3574,
+ "start": 2868.46,
+ "end": 2869.3,
+ "text": "As"
+ },
+ {
+ "id": 3575,
+ "start": 2869.3,
+ "end": 2869.44,
+ "text": "of"
+ },
+ {
+ "id": 3576,
+ "start": 2869.44,
+ "end": 2870.08,
+ "text": "this"
+ },
+ {
+ "id": 3577,
+ "start": 2870.08,
+ "end": 2870.78,
+ "text": "early"
+ },
+ {
+ "id": 3578,
+ "start": 2870.78,
+ "end": 2871,
+ "text": "this"
+ },
+ {
+ "id": 3579,
+ "start": 2871,
+ "end": 2871.22,
+ "text": "year,"
+ },
+ {
+ "id": 3580,
+ "start": 2871.22,
+ "end": 2872.28,
+ "text": "you"
+ },
+ {
+ "id": 3581,
+ "start": 2872.28,
+ "end": 2872.52,
+ "text": "did"
+ },
+ {
+ "id": 3582,
+ "start": 2872.52,
+ "end": 2872.76,
+ "text": "not"
+ },
+ {
+ "id": 3583,
+ "start": 2872.76,
+ "end": 2873.38,
+ "text": "actively"
+ },
+ {
+ "id": 3584,
+ "start": 2873.38,
+ "end": 2874.04,
+ "text": "monitor"
+ },
+ {
+ "id": 3585,
+ "start": 2874.04,
+ "end": 2874.9,
+ "text": "whether"
+ },
+ {
+ "id": 3586,
+ "start": 2874.9,
+ "end": 2875.18,
+ "text": "that"
+ },
+ {
+ "id": 3587,
+ "start": 2875.18,
+ "end": 2875.52,
+ "text": "data"
+ },
+ {
+ "id": 3588,
+ "start": 2875.52,
+ "end": 2875.72,
+ "text": "was"
+ },
+ {
+ "id": 3589,
+ "start": 2875.72,
+ "end": 2876.38,
+ "text": "transferred"
+ },
+ {
+ "id": 3590,
+ "start": 2876.38,
+ "end": 2876.6,
+ "text": "by"
+ },
+ {
+ "id": 3591,
+ "start": 2876.6,
+ "end": 2877.04,
+ "text": "such"
+ },
+ {
+ "id": 3592,
+ "start": 2877.04,
+ "end": 2877.78,
+ "text": "developers"
+ },
+ {
+ "id": 3593,
+ "start": 2877.78,
+ "end": 2878.46,
+ "text": "to"
+ },
+ {
+ "id": 3594,
+ "start": 2878.46,
+ "end": 2878.76,
+ "text": "other"
+ },
+ {
+ "id": 3595,
+ "start": 2878.76,
+ "end": 2879.2,
+ "text": "parties."
+ },
+ {
+ "id": 3596,
+ "start": 2879.2,
+ "end": 2879.88,
+ "text": "Moreover"
+ },
+ {
+ "id": 3597,
+ "start": 2879.88,
+ "end": 2880.14,
+ "text": "your"
+ },
+ {
+ "id": 3598,
+ "start": 2880.14,
+ "end": 2880.76,
+ "text": "policies"
+ },
+ {
+ "id": 3599,
+ "start": 2880.76,
+ "end": 2881.48,
+ "text": "only"
+ },
+ {
+ "id": 3600,
+ "start": 2881.48,
+ "end": 2882.44,
+ "text": "prohibit"
+ },
+ {
+ "id": 3601,
+ "start": 2882.44,
+ "end": 2883.42,
+ "text": "by"
+ },
+ {
+ "id": 3602,
+ "start": 2883.42,
+ "end": 2884.14,
+ "text": "developers"
+ },
+ {
+ "id": 3603,
+ "start": 2884.14,
+ "end": 2884.38,
+ "text": "to"
+ },
+ {
+ "id": 3604,
+ "start": 2884.38,
+ "end": 2884.84,
+ "text": "parties"
+ },
+ {
+ "id": 3605,
+ "start": 2884.84,
+ "end": 2885.3,
+ "text": "seeking"
+ },
+ {
+ "id": 3606,
+ "start": 2885.3,
+ "end": 2885.44,
+ "text": "to"
+ },
+ {
+ "id": 3607,
+ "start": 2885.44,
+ "end": 2885.92,
+ "text": "profit"
+ },
+ {
+ "id": 3608,
+ "start": 2885.92,
+ "end": 2886.56,
+ "text": "from"
+ },
+ {
+ "id": 3609,
+ "start": 2886.56,
+ "end": 2886.86,
+ "text": "such"
+ },
+ {
+ "id": 3610,
+ "start": 2886.86,
+ "end": 2887.34,
+ "text": "data."
+ },
+ {
+ "id": 3611,
+ "start": 2887.34,
+ "end": 2888.52,
+ "text": "Number"
+ },
+ {
+ "id": 3612,
+ "start": 2888.52,
+ "end": 2888.8,
+ "text": "one,"
+ },
+ {
+ "id": 3613,
+ "start": 2888.8,
+ "end": 2889.44,
+ "text": "besides"
+ },
+ {
+ "id": 3614,
+ "start": 2889.44,
+ "end": 2890.22,
+ "text": "professor"
+ },
+ {
+ "id": 3615,
+ "start": 2890.22,
+ "end": 2890.94,
+ "text": "Cogan"
+ },
+ {
+ "id": 3616,
+ "start": 2890.94,
+ "end": 2891.76,
+ "text": "transfer"
+ },
+ {
+ "id": 3617,
+ "start": 2891.76,
+ "end": 2892.54,
+ "text": "and"
+ },
+ {
+ "id": 3618,
+ "start": 2892.54,
+ "end": 2892.8,
+ "text": "now"
+ },
+ {
+ "id": 3619,
+ "start": 2892.8,
+ "end": 2893.42,
+ "text": "potentially"
+ },
+ {
+ "id": 3620,
+ "start": 2893.42,
+ "end": 2894.8,
+ "text": "cube."
+ },
+ {
+ "id": 3621,
+ "start": 2894.8,
+ "end": 2895.46,
+ "text": "Do"
+ },
+ {
+ "id": 3622,
+ "start": 2895.46,
+ "end": 2895.6,
+ "text": "you"
+ },
+ {
+ "id": 3623,
+ "start": 2895.6,
+ "end": 2895.76,
+ "text": "know"
+ },
+ {
+ "id": 3624,
+ "start": 2895.76,
+ "end": 2895.94,
+ "text": "of"
+ },
+ {
+ "id": 3625,
+ "start": 2895.94,
+ "end": 2896.2,
+ "text": "any"
+ },
+ {
+ "id": 3626,
+ "start": 2896.2,
+ "end": 2896.96,
+ "text": "instances"
+ },
+ {
+ "id": 3627,
+ "start": 2896.96,
+ "end": 2897.84,
+ "text": "where"
+ },
+ {
+ "id": 3628,
+ "start": 2897.84,
+ "end": 2898.26,
+ "text": "user"
+ },
+ {
+ "id": 3629,
+ "start": 2898.26,
+ "end": 2898.64,
+ "text": "data"
+ },
+ {
+ "id": 3630,
+ "start": 2898.64,
+ "end": 2898.92,
+ "text": "was"
+ },
+ {
+ "id": 3631,
+ "start": 2898.92,
+ "end": 2899.6,
+ "text": "improperly"
+ },
+ {
+ "id": 3632,
+ "start": 2899.6,
+ "end": 2900.28,
+ "text": "transferred"
+ },
+ {
+ "id": 3633,
+ "start": 2900.28,
+ "end": 2900.82,
+ "text": "to"
+ },
+ {
+ "id": 3634,
+ "start": 2900.82,
+ "end": 2901.24,
+ "text": "third"
+ },
+ {
+ "id": 3635,
+ "start": 2901.24,
+ "end": 2901.68,
+ "text": "party"
+ },
+ {
+ "id": 3636,
+ "start": 2901.68,
+ "end": 2901.9,
+ "text": "in"
+ },
+ {
+ "id": 3637,
+ "start": 2901.9,
+ "end": 2902.24,
+ "text": "breach"
+ },
+ {
+ "id": 3638,
+ "start": 2902.24,
+ "end": 2902.4,
+ "text": "of"
+ },
+ {
+ "id": 3639,
+ "start": 2902.4,
+ "end": 2903.04,
+ "text": "Facebook's"
+ },
+ {
+ "id": 3640,
+ "start": 2903.04,
+ "end": 2903.64,
+ "text": "terms."
+ },
+ {
+ "id": 3641,
+ "start": 2903.64,
+ "end": 2904.44,
+ "text": "If"
+ },
+ {
+ "id": 3642,
+ "start": 2904.44,
+ "end": 2904.9,
+ "text": "so,"
+ },
+ {
+ "id": 3643,
+ "start": 2904.9,
+ "end": 2905.44,
+ "text": "how"
+ },
+ {
+ "id": 3644,
+ "start": 2905.44,
+ "end": 2905.66,
+ "text": "many"
+ },
+ {
+ "id": 3645,
+ "start": 2905.66,
+ "end": 2906.04,
+ "text": "times"
+ },
+ {
+ "id": 3646,
+ "start": 2906.04,
+ "end": 2906.24,
+ "text": "does"
+ },
+ {
+ "id": 3647,
+ "start": 2906.24,
+ "end": 2906.48,
+ "text": "that"
+ },
+ {
+ "id": 3648,
+ "start": 2906.48,
+ "end": 2906.96,
+ "text": "happen?"
+ },
+ {
+ "id": 3649,
+ "start": 2906.96,
+ "end": 2907.64,
+ "text": "And"
+ },
+ {
+ "id": 3650,
+ "start": 2907.64,
+ "end": 2907.88,
+ "text": "was"
+ },
+ {
+ "id": 3651,
+ "start": 2907.88,
+ "end": 2908.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 3652,
+ "start": 2908.46,
+ "end": 2908.8,
+ "text": "only"
+ },
+ {
+ "id": 3653,
+ "start": 2908.8,
+ "end": 2909.04,
+ "text": "made"
+ },
+ {
+ "id": 3654,
+ "start": 2909.04,
+ "end": 2909.42,
+ "text": "aware"
+ },
+ {
+ "id": 3655,
+ "start": 2909.42,
+ "end": 2909.5,
+ "text": "of"
+ },
+ {
+ "id": 3656,
+ "start": 2909.5,
+ "end": 2909.74,
+ "text": "that"
+ },
+ {
+ "id": 3657,
+ "start": 2909.74,
+ "end": 2910.38,
+ "text": "transfer"
+ },
+ {
+ "id": 3658,
+ "start": 2910.38,
+ "end": 2911,
+ "text": "by"
+ },
+ {
+ "id": 3659,
+ "start": 2911,
+ "end": 2911.3,
+ "text": "some"
+ },
+ {
+ "id": 3660,
+ "start": 2911.3,
+ "end": 2911.66,
+ "text": "third"
+ },
+ {
+ "id": 3661,
+ "start": 2911.66,
+ "end": 2913.66,
+ "text": "party."
+ },
+ {
+ "id": 3662,
+ "start": 2913.66,
+ "end": 2914.64,
+ "text": "Mr"
+ },
+ {
+ "id": 3663,
+ "start": 2914.64,
+ "end": 2914.94,
+ "text": "Chairman,"
+ },
+ {
+ "id": 3664,
+ "start": 2914.94,
+ "end": 2915.2,
+ "text": "thank"
+ },
+ {
+ "id": 3665,
+ "start": 2915.2,
+ "end": 2915.6,
+ "text": "you."
+ },
+ {
+ "id": 3666,
+ "start": 2915.6,
+ "end": 2917.14,
+ "text": "As"
+ },
+ {
+ "id": 3667,
+ "start": 2917.14,
+ "end": 2917.24,
+ "text": "I"
+ },
+ {
+ "id": 3668,
+ "start": 2917.24,
+ "end": 2917.64,
+ "text": "mentioned,"
+ },
+ {
+ "id": 3669,
+ "start": 2917.64,
+ "end": 2918.06,
+ "text": "we're"
+ },
+ {
+ "id": 3670,
+ "start": 2918.06,
+ "end": 2918.24,
+ "text": "now"
+ },
+ {
+ "id": 3671,
+ "start": 2918.24,
+ "end": 2918.8,
+ "text": "conducting"
+ },
+ {
+ "id": 3672,
+ "start": 2918.8,
+ "end": 2918.84,
+ "text": "a"
+ },
+ {
+ "id": 3673,
+ "start": 2918.84,
+ "end": 2919.16,
+ "text": "full"
+ },
+ {
+ "id": 3674,
+ "start": 2919.16,
+ "end": 2919.88,
+ "text": "investigation"
+ },
+ {
+ "id": 3675,
+ "start": 2919.88,
+ "end": 2920.3,
+ "text": "into"
+ },
+ {
+ "id": 3676,
+ "start": 2920.3,
+ "end": 2920.72,
+ "text": "every"
+ },
+ {
+ "id": 3677,
+ "start": 2920.72,
+ "end": 2921.02,
+ "text": "single"
+ },
+ {
+ "id": 3678,
+ "start": 2921.02,
+ "end": 2921.26,
+ "text": "app"
+ },
+ {
+ "id": 3679,
+ "start": 2921.26,
+ "end": 2921.56,
+ "text": "that"
+ },
+ {
+ "id": 3680,
+ "start": 2921.56,
+ "end": 2921.88,
+ "text": "had"
+ },
+ {
+ "id": 3681,
+ "start": 2921.88,
+ "end": 2922.02,
+ "text": "a"
+ },
+ {
+ "id": 3682,
+ "start": 2922.02,
+ "end": 2922.68,
+ "text": "access"
+ },
+ {
+ "id": 3683,
+ "start": 2922.68,
+ "end": 2922.78,
+ "text": "to"
+ },
+ {
+ "id": 3684,
+ "start": 2922.78,
+ "end": 2922.88,
+ "text": "a"
+ },
+ {
+ "id": 3685,
+ "start": 2922.88,
+ "end": 2923.14,
+ "text": "large"
+ },
+ {
+ "id": 3686,
+ "start": 2923.14,
+ "end": 2923.34,
+ "text": "amount"
+ },
+ {
+ "id": 3687,
+ "start": 2923.34,
+ "end": 2923.4,
+ "text": "of"
+ },
+ {
+ "id": 3688,
+ "start": 2923.4,
+ "end": 2923.96,
+ "text": "information"
+ },
+ {
+ "id": 3689,
+ "start": 2923.96,
+ "end": 2924.9,
+ "text": "before"
+ },
+ {
+ "id": 3690,
+ "start": 2924.9,
+ "end": 2925,
+ "text": "we"
+ },
+ {
+ "id": 3691,
+ "start": 2925,
+ "end": 2925.3,
+ "text": "locked"
+ },
+ {
+ "id": 3692,
+ "start": 2925.3,
+ "end": 2925.6,
+ "text": "down"
+ },
+ {
+ "id": 3693,
+ "start": 2925.6,
+ "end": 2926.18,
+ "text": "platform"
+ },
+ {
+ "id": 3694,
+ "start": 2926.18,
+ "end": 2926.88,
+ "text": "to"
+ },
+ {
+ "id": 3695,
+ "start": 2926.88,
+ "end": 2927.16,
+ "text": "prevent"
+ },
+ {
+ "id": 3696,
+ "start": 2927.16,
+ "end": 2927.64,
+ "text": "developers"
+ },
+ {
+ "id": 3697,
+ "start": 2927.64,
+ "end": 2927.82,
+ "text": "from"
+ },
+ {
+ "id": 3698,
+ "start": 2927.82,
+ "end": 2928.26,
+ "text": "accessing"
+ },
+ {
+ "id": 3699,
+ "start": 2928.26,
+ "end": 2928.42,
+ "text": "this"
+ },
+ {
+ "id": 3700,
+ "start": 2928.42,
+ "end": 2928.96,
+ "text": "information"
+ },
+ {
+ "id": 3701,
+ "start": 2928.96,
+ "end": 2929.42,
+ "text": "around"
+ },
+ {
+ "id": 3702,
+ "start": 2929.42,
+ "end": 2929.7,
+ "text": "20"
+ },
+ {
+ "id": 3703,
+ "start": 2929.7,
+ "end": 2930.62,
+ "text": "14"
+ },
+ {
+ "id": 3704,
+ "start": 2930.62,
+ "end": 2931.24,
+ "text": "we"
+ },
+ {
+ "id": 3705,
+ "start": 2931.24,
+ "end": 2931.76,
+ "text": "believe"
+ },
+ {
+ "id": 3706,
+ "start": 2931.76,
+ "end": 2931.88,
+ "text": "that"
+ },
+ {
+ "id": 3707,
+ "start": 2931.88,
+ "end": 2932.02,
+ "text": "we're"
+ },
+ {
+ "id": 3708,
+ "start": 2932.02,
+ "end": 2932.16,
+ "text": "going"
+ },
+ {
+ "id": 3709,
+ "start": 2932.16,
+ "end": 2932.22,
+ "text": "to"
+ },
+ {
+ "id": 3710,
+ "start": 2932.22,
+ "end": 2932.28,
+ "text": "be"
+ },
+ {
+ "id": 3711,
+ "start": 2932.28,
+ "end": 2932.82,
+ "text": "investigating"
+ },
+ {
+ "id": 3712,
+ "start": 2932.82,
+ "end": 2933.64,
+ "text": "many"
+ },
+ {
+ "id": 3713,
+ "start": 2933.64,
+ "end": 2933.88,
+ "text": "apps,"
+ },
+ {
+ "id": 3714,
+ "start": 2933.88,
+ "end": 2934.24,
+ "text": "tens"
+ },
+ {
+ "id": 3715,
+ "start": 2934.24,
+ "end": 2934.34,
+ "text": "of"
+ },
+ {
+ "id": 3716,
+ "start": 2934.34,
+ "end": 2934.72,
+ "text": "thousands"
+ },
+ {
+ "id": 3717,
+ "start": 2934.72,
+ "end": 2934.82,
+ "text": "of"
+ },
+ {
+ "id": 3718,
+ "start": 2934.82,
+ "end": 2935.08,
+ "text": "apps."
+ },
+ {
+ "id": 3719,
+ "start": 2935.08,
+ "end": 2935.72,
+ "text": "And"
+ },
+ {
+ "id": 3720,
+ "start": 2935.72,
+ "end": 2935.82,
+ "text": "if"
+ },
+ {
+ "id": 3721,
+ "start": 2935.82,
+ "end": 2935.92,
+ "text": "we"
+ },
+ {
+ "id": 3722,
+ "start": 2935.92,
+ "end": 2936.18,
+ "text": "find"
+ },
+ {
+ "id": 3723,
+ "start": 2936.18,
+ "end": 2936.44,
+ "text": "any"
+ },
+ {
+ "id": 3724,
+ "start": 2936.44,
+ "end": 2937,
+ "text": "suspicious"
+ },
+ {
+ "id": 3725,
+ "start": 2937,
+ "end": 2937.44,
+ "text": "activity"
+ },
+ {
+ "id": 3726,
+ "start": 2937.44,
+ "end": 2938.12,
+ "text": "we're"
+ },
+ {
+ "id": 3727,
+ "start": 2938.12,
+ "end": 2938.32,
+ "text": "going"
+ },
+ {
+ "id": 3728,
+ "start": 2938.32,
+ "end": 2938.44,
+ "text": "to"
+ },
+ {
+ "id": 3729,
+ "start": 2938.44,
+ "end": 2938.8,
+ "text": "conduct"
+ },
+ {
+ "id": 3730,
+ "start": 2938.8,
+ "end": 2938.86,
+ "text": "a"
+ },
+ {
+ "id": 3731,
+ "start": 2938.86,
+ "end": 2939.24,
+ "text": "full"
+ },
+ {
+ "id": 3732,
+ "start": 2939.24,
+ "end": 2939.54,
+ "text": "audit"
+ },
+ {
+ "id": 3733,
+ "start": 2939.54,
+ "end": 2939.8,
+ "text": "of"
+ },
+ {
+ "id": 3734,
+ "start": 2939.8,
+ "end": 2940.04,
+ "text": "those"
+ },
+ {
+ "id": 3735,
+ "start": 2940.04,
+ "end": 2940.32,
+ "text": "apps"
+ },
+ {
+ "id": 3736,
+ "start": 2940.32,
+ "end": 2940.8,
+ "text": "to"
+ },
+ {
+ "id": 3737,
+ "start": 2940.8,
+ "end": 2941.18,
+ "text": "understand"
+ },
+ {
+ "id": 3738,
+ "start": 2941.18,
+ "end": 2941.34,
+ "text": "how"
+ },
+ {
+ "id": 3739,
+ "start": 2941.34,
+ "end": 2941.58,
+ "text": "they're"
+ },
+ {
+ "id": 3740,
+ "start": 2941.58,
+ "end": 2941.82,
+ "text": "using"
+ },
+ {
+ "id": 3741,
+ "start": 2941.82,
+ "end": 2942,
+ "text": "their"
+ },
+ {
+ "id": 3742,
+ "start": 2942,
+ "end": 2942.3,
+ "text": "data"
+ },
+ {
+ "id": 3743,
+ "start": 2942.3,
+ "end": 2942.56,
+ "text": "and"
+ },
+ {
+ "id": 3744,
+ "start": 2942.56,
+ "end": 2942.66,
+ "text": "if"
+ },
+ {
+ "id": 3745,
+ "start": 2942.66,
+ "end": 2942.86,
+ "text": "they're"
+ },
+ {
+ "id": 3746,
+ "start": 2942.86,
+ "end": 2943.02,
+ "text": "doing"
+ },
+ {
+ "id": 3747,
+ "start": 2943.02,
+ "end": 2943.28,
+ "text": "anything"
+ },
+ {
+ "id": 3748,
+ "start": 2943.28,
+ "end": 2944.31,
+ "text": "improper,"
+ },
+ {
+ "id": 3749,
+ "start": 2944.31,
+ "end": 2944.51,
+ "text": "if"
+ },
+ {
+ "id": 3750,
+ "start": 2944.51,
+ "end": 2944.61,
+ "text": "we"
+ },
+ {
+ "id": 3751,
+ "start": 2944.61,
+ "end": 2944.81,
+ "text": "find"
+ },
+ {
+ "id": 3752,
+ "start": 2944.81,
+ "end": 2944.91,
+ "text": "that"
+ },
+ {
+ "id": 3753,
+ "start": 2944.91,
+ "end": 2945.11,
+ "text": "they're"
+ },
+ {
+ "id": 3754,
+ "start": 2945.11,
+ "end": 2945.25,
+ "text": "doing"
+ },
+ {
+ "id": 3755,
+ "start": 2945.25,
+ "end": 2945.51,
+ "text": "anything"
+ },
+ {
+ "id": 3756,
+ "start": 2945.51,
+ "end": 2945.93,
+ "text": "improper"
+ },
+ {
+ "id": 3757,
+ "start": 2945.93,
+ "end": 2946.15,
+ "text": "will"
+ },
+ {
+ "id": 3758,
+ "start": 2946.15,
+ "end": 2946.37,
+ "text": "ban"
+ },
+ {
+ "id": 3759,
+ "start": 2946.37,
+ "end": 2946.51,
+ "text": "them"
+ },
+ {
+ "id": 3760,
+ "start": 2946.51,
+ "end": 2946.69,
+ "text": "from"
+ },
+ {
+ "id": 3761,
+ "start": 2946.69,
+ "end": 2947.15,
+ "text": "Facebook"
+ },
+ {
+ "id": 3762,
+ "start": 2947.15,
+ "end": 2947.89,
+ "text": "and"
+ },
+ {
+ "id": 3763,
+ "start": 2947.89,
+ "end": 2948.05,
+ "text": "we"
+ },
+ {
+ "id": 3764,
+ "start": 2948.05,
+ "end": 2948.21,
+ "text": "will"
+ },
+ {
+ "id": 3765,
+ "start": 2948.21,
+ "end": 2948.39,
+ "text": "tell"
+ },
+ {
+ "id": 3766,
+ "start": 2948.39,
+ "end": 2948.73,
+ "text": "everyone"
+ },
+ {
+ "id": 3767,
+ "start": 2948.73,
+ "end": 2949.13,
+ "text": "affected."
+ },
+ {
+ "id": 3768,
+ "start": 2949.13,
+ "end": 2950.11,
+ "text": "As"
+ },
+ {
+ "id": 3769,
+ "start": 2950.11,
+ "end": 2950.29,
+ "text": "for"
+ },
+ {
+ "id": 3770,
+ "start": 2950.29,
+ "end": 2950.57,
+ "text": "past"
+ },
+ {
+ "id": 3771,
+ "start": 2950.57,
+ "end": 2951.09,
+ "text": "activity,"
+ },
+ {
+ "id": 3772,
+ "start": 2951.09,
+ "end": 2951.57,
+ "text": "I"
+ },
+ {
+ "id": 3773,
+ "start": 2951.57,
+ "end": 2951.81,
+ "text": "don't"
+ },
+ {
+ "id": 3774,
+ "start": 2951.81,
+ "end": 2952.11,
+ "text": "have"
+ },
+ {
+ "id": 3775,
+ "start": 2952.11,
+ "end": 2952.97,
+ "text": "all"
+ },
+ {
+ "id": 3776,
+ "start": 2952.97,
+ "end": 2953.13,
+ "text": "the"
+ },
+ {
+ "id": 3777,
+ "start": 2953.13,
+ "end": 2953.57,
+ "text": "examples"
+ },
+ {
+ "id": 3778,
+ "start": 2953.57,
+ "end": 2953.65,
+ "text": "of"
+ },
+ {
+ "id": 3779,
+ "start": 2953.65,
+ "end": 2953.89,
+ "text": "apps"
+ },
+ {
+ "id": 3780,
+ "start": 2953.89,
+ "end": 2954.01,
+ "text": "that"
+ },
+ {
+ "id": 3781,
+ "start": 2954.01,
+ "end": 2954.19,
+ "text": "we've"
+ },
+ {
+ "id": 3782,
+ "start": 2954.19,
+ "end": 2954.49,
+ "text": "banned"
+ },
+ {
+ "id": 3783,
+ "start": 2954.49,
+ "end": 2954.77,
+ "text": "here."
+ },
+ {
+ "id": 3784,
+ "start": 2954.77,
+ "end": 2955.45,
+ "text": "But"
+ },
+ {
+ "id": 3785,
+ "start": 2955.45,
+ "end": 2955.55,
+ "text": "if"
+ },
+ {
+ "id": 3786,
+ "start": 2955.55,
+ "end": 2955.79,
+ "text": "you'd"
+ },
+ {
+ "id": 3787,
+ "start": 2955.79,
+ "end": 2955.93,
+ "text": "like,"
+ },
+ {
+ "id": 3788,
+ "start": 2955.93,
+ "end": 2956.03,
+ "text": "I"
+ },
+ {
+ "id": 3789,
+ "start": 2956.03,
+ "end": 2956.15,
+ "text": "can"
+ },
+ {
+ "id": 3790,
+ "start": 2956.15,
+ "end": 2956.31,
+ "text": "have"
+ },
+ {
+ "id": 3791,
+ "start": 2956.31,
+ "end": 2956.41,
+ "text": "my"
+ },
+ {
+ "id": 3792,
+ "start": 2956.41,
+ "end": 2956.59,
+ "text": "team"
+ },
+ {
+ "id": 3793,
+ "start": 2956.59,
+ "end": 2956.85,
+ "text": "follow"
+ },
+ {
+ "id": 3794,
+ "start": 2956.85,
+ "end": 2956.95,
+ "text": "up"
+ },
+ {
+ "id": 3795,
+ "start": 2956.95,
+ "end": 2957.07,
+ "text": "with"
+ },
+ {
+ "id": 3796,
+ "start": 2957.07,
+ "end": 2957.17,
+ "text": "you"
+ },
+ {
+ "id": 3797,
+ "start": 2957.17,
+ "end": 2957.41,
+ "text": "after"
+ },
+ {
+ "id": 3798,
+ "start": 2957.41,
+ "end": 2958,
+ "text": "this"
+ },
+ {
+ "id": 3799,
+ "start": 2958,
+ "end": 2958.66,
+ "text": "have"
+ },
+ {
+ "id": 3800,
+ "start": 2958.66,
+ "end": 2958.82,
+ "text": "you"
+ },
+ {
+ "id": 3801,
+ "start": 2958.82,
+ "end": 2959.58,
+ "text": "ever"
+ },
+ {
+ "id": 3802,
+ "start": 2959.58,
+ "end": 2960.28,
+ "text": "required"
+ },
+ {
+ "id": 3803,
+ "start": 2960.28,
+ "end": 2960.48,
+ "text": "an"
+ },
+ {
+ "id": 3804,
+ "start": 2960.48,
+ "end": 2960.86,
+ "text": "audit"
+ },
+ {
+ "id": 3805,
+ "start": 2960.86,
+ "end": 2961.06,
+ "text": "to"
+ },
+ {
+ "id": 3806,
+ "start": 2961.06,
+ "end": 2961.5,
+ "text": "ensure"
+ },
+ {
+ "id": 3807,
+ "start": 2961.5,
+ "end": 2961.7,
+ "text": "the"
+ },
+ {
+ "id": 3808,
+ "start": 2961.7,
+ "end": 2962.32,
+ "text": "deletion"
+ },
+ {
+ "id": 3809,
+ "start": 2962.32,
+ "end": 2962.54,
+ "text": "of"
+ },
+ {
+ "id": 3810,
+ "start": 2962.54,
+ "end": 2963.24,
+ "text": "improperly"
+ },
+ {
+ "id": 3811,
+ "start": 2963.24,
+ "end": 2963.82,
+ "text": "transfer"
+ },
+ {
+ "id": 3812,
+ "start": 2963.82,
+ "end": 2964.26,
+ "text": "data?"
+ },
+ {
+ "id": 3813,
+ "start": 2964.26,
+ "end": 2964.76,
+ "text": "And"
+ },
+ {
+ "id": 3814,
+ "start": 2964.76,
+ "end": 2964.94,
+ "text": "if"
+ },
+ {
+ "id": 3815,
+ "start": 2964.94,
+ "end": 2965.16,
+ "text": "so,"
+ },
+ {
+ "id": 3816,
+ "start": 2965.16,
+ "end": 2965.28,
+ "text": "how"
+ },
+ {
+ "id": 3817,
+ "start": 2965.28,
+ "end": 2965.5,
+ "text": "many"
+ },
+ {
+ "id": 3818,
+ "start": 2965.5,
+ "end": 2966.28,
+ "text": "times,"
+ },
+ {
+ "id": 3819,
+ "start": 2966.28,
+ "end": 2967.26,
+ "text": "Mr"
+ },
+ {
+ "id": 3820,
+ "start": 2967.26,
+ "end": 2968.01,
+ "text": "Chairman?"
+ },
+ {
+ "id": 3821,
+ "start": 2968.01,
+ "end": 2968.69,
+ "text": "Yes,"
+ },
+ {
+ "id": 3822,
+ "start": 2968.69,
+ "end": 2968.87,
+ "text": "we"
+ },
+ {
+ "id": 3823,
+ "start": 2968.87,
+ "end": 2969.19,
+ "text": "have."
+ },
+ {
+ "id": 3824,
+ "start": 2969.19,
+ "end": 2969.77,
+ "text": "I"
+ },
+ {
+ "id": 3825,
+ "start": 2969.77,
+ "end": 2969.99,
+ "text": "don't"
+ },
+ {
+ "id": 3826,
+ "start": 2969.99,
+ "end": 2970.13,
+ "text": "have"
+ },
+ {
+ "id": 3827,
+ "start": 2970.13,
+ "end": 2970.23,
+ "text": "the"
+ },
+ {
+ "id": 3828,
+ "start": 2970.23,
+ "end": 2970.59,
+ "text": "exact"
+ },
+ {
+ "id": 3829,
+ "start": 2970.59,
+ "end": 2970.91,
+ "text": "figure"
+ },
+ {
+ "id": 3830,
+ "start": 2970.91,
+ "end": 2971.05,
+ "text": "on"
+ },
+ {
+ "id": 3831,
+ "start": 2971.05,
+ "end": 2971.25,
+ "text": "how"
+ },
+ {
+ "id": 3832,
+ "start": 2971.25,
+ "end": 2971.41,
+ "text": "many"
+ },
+ {
+ "id": 3833,
+ "start": 2971.41,
+ "end": 2971.69,
+ "text": "times"
+ },
+ {
+ "id": 3834,
+ "start": 2971.69,
+ "end": 2971.89,
+ "text": "we"
+ },
+ {
+ "id": 3835,
+ "start": 2971.89,
+ "end": 2972.19,
+ "text": "have."
+ },
+ {
+ "id": 3836,
+ "start": 2972.19,
+ "end": 2973.07,
+ "text": "But"
+ },
+ {
+ "id": 3837,
+ "start": 2973.07,
+ "end": 2974.03,
+ "text": "overall"
+ },
+ {
+ "id": 3838,
+ "start": 2974.03,
+ "end": 2974.27,
+ "text": "the"
+ },
+ {
+ "id": 3839,
+ "start": 2974.27,
+ "end": 2974.43,
+ "text": "way"
+ },
+ {
+ "id": 3840,
+ "start": 2974.43,
+ "end": 2974.63,
+ "text": "we've"
+ },
+ {
+ "id": 3841,
+ "start": 2974.63,
+ "end": 2975.13,
+ "text": "enforced"
+ },
+ {
+ "id": 3842,
+ "start": 2975.13,
+ "end": 2975.33,
+ "text": "our"
+ },
+ {
+ "id": 3843,
+ "start": 2975.33,
+ "end": 2975.79,
+ "text": "platform"
+ },
+ {
+ "id": 3844,
+ "start": 2975.79,
+ "end": 2976.37,
+ "text": "policies"
+ },
+ {
+ "id": 3845,
+ "start": 2976.37,
+ "end": 2976.95,
+ "text": "in"
+ },
+ {
+ "id": 3846,
+ "start": 2976.95,
+ "end": 2977.07,
+ "text": "the"
+ },
+ {
+ "id": 3847,
+ "start": 2977.07,
+ "end": 2978.02,
+ "text": "past."
+ },
+ {
+ "id": 3848,
+ "start": 2978.02,
+ "end": 2978.84,
+ "text": "As"
+ },
+ {
+ "id": 3849,
+ "start": 2978.84,
+ "end": 2979.06,
+ "text": "we"
+ },
+ {
+ "id": 3850,
+ "start": 2979.06,
+ "end": 2979.4,
+ "text": "have"
+ },
+ {
+ "id": 3851,
+ "start": 2979.4,
+ "end": 2979.94,
+ "text": "looked"
+ },
+ {
+ "id": 3852,
+ "start": 2979.94,
+ "end": 2980.24,
+ "text": "at"
+ },
+ {
+ "id": 3853,
+ "start": 2980.24,
+ "end": 2980.86,
+ "text": "patterns"
+ },
+ {
+ "id": 3854,
+ "start": 2980.86,
+ "end": 2981.04,
+ "text": "of"
+ },
+ {
+ "id": 3855,
+ "start": 2981.04,
+ "end": 2981.22,
+ "text": "how"
+ },
+ {
+ "id": 3856,
+ "start": 2981.22,
+ "end": 2981.48,
+ "text": "apps"
+ },
+ {
+ "id": 3857,
+ "start": 2981.48,
+ "end": 2981.94,
+ "text": "have"
+ },
+ {
+ "id": 3858,
+ "start": 2981.94,
+ "end": 2982.14,
+ "text": "used"
+ },
+ {
+ "id": 3859,
+ "start": 2982.14,
+ "end": 2982.3,
+ "text": "our"
+ },
+ {
+ "id": 3860,
+ "start": 2982.3,
+ "end": 2982.76,
+ "text": "API's"
+ },
+ {
+ "id": 3861,
+ "start": 2982.76,
+ "end": 2982.88,
+ "text": "and"
+ },
+ {
+ "id": 3862,
+ "start": 2982.88,
+ "end": 2983.22,
+ "text": "access"
+ },
+ {
+ "id": 3863,
+ "start": 2983.22,
+ "end": 2983.3,
+ "text": "to"
+ },
+ {
+ "id": 3864,
+ "start": 2983.3,
+ "end": 2983.82,
+ "text": "information"
+ },
+ {
+ "id": 3865,
+ "start": 2983.82,
+ "end": 2984.44,
+ "text": "as"
+ },
+ {
+ "id": 3866,
+ "start": 2984.44,
+ "end": 2984.7,
+ "text": "well"
+ },
+ {
+ "id": 3867,
+ "start": 2984.7,
+ "end": 2984.92,
+ "text": "as"
+ },
+ {
+ "id": 3868,
+ "start": 2984.92,
+ "end": 2985.2,
+ "text": "looked"
+ },
+ {
+ "id": 3869,
+ "start": 2985.2,
+ "end": 2985.64,
+ "text": "into"
+ },
+ {
+ "id": 3870,
+ "start": 2985.64,
+ "end": 2986.48,
+ "text": "reports"
+ },
+ {
+ "id": 3871,
+ "start": 2986.48,
+ "end": 2986.66,
+ "text": "that"
+ },
+ {
+ "id": 3872,
+ "start": 2986.66,
+ "end": 2986.88,
+ "text": "people"
+ },
+ {
+ "id": 3873,
+ "start": 2986.88,
+ "end": 2987.04,
+ "text": "have"
+ },
+ {
+ "id": 3874,
+ "start": 2987.04,
+ "end": 2987.2,
+ "text": "made"
+ },
+ {
+ "id": 3875,
+ "start": 2987.2,
+ "end": 2987.46,
+ "text": "us"
+ },
+ {
+ "id": 3876,
+ "start": 2987.46,
+ "end": 2987.64,
+ "text": "about"
+ },
+ {
+ "id": 3877,
+ "start": 2987.64,
+ "end": 2987.88,
+ "text": "apps"
+ },
+ {
+ "id": 3878,
+ "start": 2987.88,
+ "end": 2988.02,
+ "text": "that"
+ },
+ {
+ "id": 3879,
+ "start": 2988.02,
+ "end": 2988.2,
+ "text": "might"
+ },
+ {
+ "id": 3880,
+ "start": 2988.2,
+ "end": 2988.3,
+ "text": "be"
+ },
+ {
+ "id": 3881,
+ "start": 2988.3,
+ "end": 2988.52,
+ "text": "doing"
+ },
+ {
+ "id": 3882,
+ "start": 2988.52,
+ "end": 2988.94,
+ "text": "sketchy"
+ },
+ {
+ "id": 3883,
+ "start": 2988.94,
+ "end": 2989.24,
+ "text": "things"
+ },
+ {
+ "id": 3884,
+ "start": 2989.24,
+ "end": 2990.14,
+ "text": "going"
+ },
+ {
+ "id": 3885,
+ "start": 2990.14,
+ "end": 2990.54,
+ "text": "forward."
+ },
+ {
+ "id": 3886,
+ "start": 2990.54,
+ "end": 2991.1,
+ "text": "We're"
+ },
+ {
+ "id": 3887,
+ "start": 2991.1,
+ "end": 2991.3,
+ "text": "going"
+ },
+ {
+ "id": 3888,
+ "start": 2991.3,
+ "end": 2991.4,
+ "text": "to"
+ },
+ {
+ "id": 3889,
+ "start": 2991.4,
+ "end": 2991.56,
+ "text": "take"
+ },
+ {
+ "id": 3890,
+ "start": 2991.56,
+ "end": 2991.64,
+ "text": "a"
+ },
+ {
+ "id": 3891,
+ "start": 2991.64,
+ "end": 2991.84,
+ "text": "more"
+ },
+ {
+ "id": 3892,
+ "start": 2991.84,
+ "end": 2992.4,
+ "text": "proactive"
+ },
+ {
+ "id": 3893,
+ "start": 2992.4,
+ "end": 2992.94,
+ "text": "position"
+ },
+ {
+ "id": 3894,
+ "start": 2992.94,
+ "end": 2993.1,
+ "text": "on"
+ },
+ {
+ "id": 3895,
+ "start": 2993.1,
+ "end": 2993.82,
+ "text": "this"
+ },
+ {
+ "id": 3896,
+ "start": 2993.82,
+ "end": 2994.48,
+ "text": "and"
+ },
+ {
+ "id": 3897,
+ "start": 2994.48,
+ "end": 2994.84,
+ "text": "do"
+ },
+ {
+ "id": 3898,
+ "start": 2994.84,
+ "end": 2995.64,
+ "text": "much"
+ },
+ {
+ "id": 3899,
+ "start": 2995.64,
+ "end": 2995.82,
+ "text": "more"
+ },
+ {
+ "id": 3900,
+ "start": 2995.82,
+ "end": 2996.16,
+ "text": "regular"
+ },
+ {
+ "id": 3901,
+ "start": 2996.16,
+ "end": 2996.5,
+ "text": "spot"
+ },
+ {
+ "id": 3902,
+ "start": 2996.5,
+ "end": 2996.78,
+ "text": "checks"
+ },
+ {
+ "id": 3903,
+ "start": 2996.78,
+ "end": 2996.92,
+ "text": "and"
+ },
+ {
+ "id": 3904,
+ "start": 2996.92,
+ "end": 2997.14,
+ "text": "other"
+ },
+ {
+ "id": 3905,
+ "start": 2997.14,
+ "end": 2997.62,
+ "text": "reviews"
+ },
+ {
+ "id": 3906,
+ "start": 2997.62,
+ "end": 2997.78,
+ "text": "of"
+ },
+ {
+ "id": 3907,
+ "start": 2997.78,
+ "end": 2998.06,
+ "text": "apps"
+ },
+ {
+ "id": 3908,
+ "start": 2998.06,
+ "end": 2999.04,
+ "text": "as"
+ },
+ {
+ "id": 3909,
+ "start": 2999.04,
+ "end": 2999.32,
+ "text": "well"
+ },
+ {
+ "id": 3910,
+ "start": 2999.32,
+ "end": 2999.62,
+ "text": "as"
+ },
+ {
+ "id": 3911,
+ "start": 2999.62,
+ "end": 3000.1,
+ "text": "increasing"
+ },
+ {
+ "id": 3912,
+ "start": 3000.1,
+ "end": 3000.2,
+ "text": "the"
+ },
+ {
+ "id": 3913,
+ "start": 3000.2,
+ "end": 3000.44,
+ "text": "amount"
+ },
+ {
+ "id": 3914,
+ "start": 3000.44,
+ "end": 3000.62,
+ "text": "of"
+ },
+ {
+ "id": 3915,
+ "start": 3000.62,
+ "end": 3001.04,
+ "text": "audits"
+ },
+ {
+ "id": 3916,
+ "start": 3001.04,
+ "end": 3001.2,
+ "text": "that"
+ },
+ {
+ "id": 3917,
+ "start": 3001.2,
+ "end": 3001.32,
+ "text": "we"
+ },
+ {
+ "id": 3918,
+ "start": 3001.32,
+ "end": 3001.52,
+ "text": "do"
+ },
+ {
+ "id": 3919,
+ "start": 3001.52,
+ "end": 3002.28,
+ "text": "and"
+ },
+ {
+ "id": 3920,
+ "start": 3002.28,
+ "end": 3002.72,
+ "text": "again,"
+ },
+ {
+ "id": 3921,
+ "start": 3002.72,
+ "end": 3002.84,
+ "text": "I"
+ },
+ {
+ "id": 3922,
+ "start": 3002.84,
+ "end": 3003.04,
+ "text": "can"
+ },
+ {
+ "id": 3923,
+ "start": 3003.04,
+ "end": 3003.38,
+ "text": "make"
+ },
+ {
+ "id": 3924,
+ "start": 3003.38,
+ "end": 3003.52,
+ "text": "sure"
+ },
+ {
+ "id": 3925,
+ "start": 3003.52,
+ "end": 3003.66,
+ "text": "that"
+ },
+ {
+ "id": 3926,
+ "start": 3003.66,
+ "end": 3003.76,
+ "text": "our"
+ },
+ {
+ "id": 3927,
+ "start": 3003.76,
+ "end": 3004.07,
+ "text": "team"
+ },
+ {
+ "id": 3928,
+ "start": 3004.07,
+ "end": 3004.47,
+ "text": "up"
+ },
+ {
+ "id": 3929,
+ "start": 3004.47,
+ "end": 3004.61,
+ "text": "with"
+ },
+ {
+ "id": 3930,
+ "start": 3004.61,
+ "end": 3004.77,
+ "text": "you"
+ },
+ {
+ "id": 3931,
+ "start": 3004.77,
+ "end": 3005.15,
+ "text": "on"
+ },
+ {
+ "id": 3932,
+ "start": 3005.15,
+ "end": 3005.53,
+ "text": "anything"
+ },
+ {
+ "id": 3933,
+ "start": 3005.53,
+ "end": 3005.77,
+ "text": "about"
+ },
+ {
+ "id": 3934,
+ "start": 3005.77,
+ "end": 3006.25,
+ "text": "the"
+ },
+ {
+ "id": 3935,
+ "start": 3006.25,
+ "end": 3007.01,
+ "text": "specific"
+ },
+ {
+ "id": 3936,
+ "start": 3007.01,
+ "end": 3007.25,
+ "text": "past"
+ },
+ {
+ "id": 3937,
+ "start": 3007.25,
+ "end": 3007.55,
+ "text": "stats."
+ },
+ {
+ "id": 3938,
+ "start": 3007.55,
+ "end": 3007.67,
+ "text": "That"
+ },
+ {
+ "id": 3939,
+ "start": 3007.67,
+ "end": 3007.83,
+ "text": "would"
+ },
+ {
+ "id": 3940,
+ "start": 3007.83,
+ "end": 3007.91,
+ "text": "be"
+ },
+ {
+ "id": 3941,
+ "start": 3007.91,
+ "end": 3008.29,
+ "text": "interesting."
+ },
+ {
+ "id": 3942,
+ "start": 3008.29,
+ "end": 3009.33,
+ "text": "I"
+ },
+ {
+ "id": 3943,
+ "start": 3009.33,
+ "end": 3009.51,
+ "text": "was"
+ },
+ {
+ "id": 3944,
+ "start": 3009.51,
+ "end": 3009.79,
+ "text": "going"
+ },
+ {
+ "id": 3945,
+ "start": 3009.79,
+ "end": 3009.95,
+ "text": "to"
+ },
+ {
+ "id": 3946,
+ "start": 3009.95,
+ "end": 3010.79,
+ "text": "assume"
+ },
+ {
+ "id": 3947,
+ "start": 3010.79,
+ "end": 3011.03,
+ "text": "that"
+ },
+ {
+ "id": 3948,
+ "start": 3011.03,
+ "end": 3012.05,
+ "text": "sitting"
+ },
+ {
+ "id": 3949,
+ "start": 3012.05,
+ "end": 3012.25,
+ "text": "here"
+ },
+ {
+ "id": 3950,
+ "start": 3012.25,
+ "end": 3012.63,
+ "text": "today,"
+ },
+ {
+ "id": 3951,
+ "start": 3012.63,
+ "end": 3012.83,
+ "text": "you"
+ },
+ {
+ "id": 3952,
+ "start": 3012.83,
+ "end": 3013.01,
+ "text": "have"
+ },
+ {
+ "id": 3953,
+ "start": 3013.01,
+ "end": 3013.21,
+ "text": "no"
+ },
+ {
+ "id": 3954,
+ "start": 3013.21,
+ "end": 3014.32,
+ "text": "idea."
+ },
+ {
+ "id": 3955,
+ "start": 3014.32,
+ "end": 3015.12,
+ "text": "And"
+ },
+ {
+ "id": 3956,
+ "start": 3015.12,
+ "end": 3015.52,
+ "text": "if"
+ },
+ {
+ "id": 3957,
+ "start": 3015.52,
+ "end": 3015.86,
+ "text": "I'm"
+ },
+ {
+ "id": 3958,
+ "start": 3015.86,
+ "end": 3016.14,
+ "text": "wrong"
+ },
+ {
+ "id": 3959,
+ "start": 3016.14,
+ "end": 3016.34,
+ "text": "on"
+ },
+ {
+ "id": 3960,
+ "start": 3016.34,
+ "end": 3016.64,
+ "text": "that"
+ },
+ {
+ "id": 3961,
+ "start": 3016.64,
+ "end": 3018.1,
+ "text": "you're"
+ },
+ {
+ "id": 3962,
+ "start": 3018.1,
+ "end": 3018.5,
+ "text": "telling"
+ },
+ {
+ "id": 3963,
+ "start": 3018.5,
+ "end": 3018.64,
+ "text": "me,"
+ },
+ {
+ "id": 3964,
+ "start": 3018.64,
+ "end": 3018.74,
+ "text": "I"
+ },
+ {
+ "id": 3965,
+ "start": 3018.74,
+ "end": 3019.06,
+ "text": "think"
+ },
+ {
+ "id": 3966,
+ "start": 3019.06,
+ "end": 3019.28,
+ "text": "that"
+ },
+ {
+ "id": 3967,
+ "start": 3019.28,
+ "end": 3019.54,
+ "text": "you're"
+ },
+ {
+ "id": 3968,
+ "start": 3019.54,
+ "end": 3019.78,
+ "text": "able"
+ },
+ {
+ "id": 3969,
+ "start": 3019.78,
+ "end": 3019.88,
+ "text": "to"
+ },
+ {
+ "id": 3970,
+ "start": 3019.88,
+ "end": 3020.28,
+ "text": "supply"
+ },
+ {
+ "id": 3971,
+ "start": 3020.28,
+ "end": 3020.66,
+ "text": "those"
+ },
+ {
+ "id": 3972,
+ "start": 3020.66,
+ "end": 3021.18,
+ "text": "figures"
+ },
+ {
+ "id": 3973,
+ "start": 3021.18,
+ "end": 3021.42,
+ "text": "to"
+ },
+ {
+ "id": 3974,
+ "start": 3021.42,
+ "end": 3021.66,
+ "text": "us,"
+ },
+ {
+ "id": 3975,
+ "start": 3021.66,
+ "end": 3022.82,
+ "text": "at"
+ },
+ {
+ "id": 3976,
+ "start": 3022.82,
+ "end": 3023.1,
+ "text": "least"
+ },
+ {
+ "id": 3977,
+ "start": 3023.1,
+ "end": 3023.36,
+ "text": "as"
+ },
+ {
+ "id": 3978,
+ "start": 3023.36,
+ "end": 3023.52,
+ "text": "of"
+ },
+ {
+ "id": 3979,
+ "start": 3023.52,
+ "end": 3023.76,
+ "text": "this"
+ },
+ {
+ "id": 3980,
+ "start": 3023.76,
+ "end": 3024.78,
+ "text": "point,"
+ },
+ {
+ "id": 3981,
+ "start": 3024.78,
+ "end": 3025.7,
+ "text": "Mr"
+ },
+ {
+ "id": 3982,
+ "start": 3025.7,
+ "end": 3026.02,
+ "text": "Chairman,"
+ },
+ {
+ "id": 3983,
+ "start": 3026.02,
+ "end": 3026.48,
+ "text": "I"
+ },
+ {
+ "id": 3984,
+ "start": 3026.48,
+ "end": 3026.76,
+ "text": "will"
+ },
+ {
+ "id": 3985,
+ "start": 3026.76,
+ "end": 3026.9,
+ "text": "have"
+ },
+ {
+ "id": 3986,
+ "start": 3026.9,
+ "end": 3027.02,
+ "text": "my"
+ },
+ {
+ "id": 3987,
+ "start": 3027.02,
+ "end": 3027.26,
+ "text": "team"
+ },
+ {
+ "id": 3988,
+ "start": 3027.26,
+ "end": 3027.66,
+ "text": "follow"
+ },
+ {
+ "id": 3989,
+ "start": 3027.66,
+ "end": 3027.78,
+ "text": "up"
+ },
+ {
+ "id": 3990,
+ "start": 3027.78,
+ "end": 3027.94,
+ "text": "with"
+ },
+ {
+ "id": 3991,
+ "start": 3027.94,
+ "end": 3028.04,
+ "text": "you"
+ },
+ {
+ "id": 3992,
+ "start": 3028.04,
+ "end": 3028.2,
+ "text": "on"
+ },
+ {
+ "id": 3993,
+ "start": 3028.2,
+ "end": 3028.34,
+ "text": "what"
+ },
+ {
+ "id": 3994,
+ "start": 3028.34,
+ "end": 3028.82,
+ "text": "information"
+ },
+ {
+ "id": 3995,
+ "start": 3028.82,
+ "end": 3028.98,
+ "text": "we"
+ },
+ {
+ "id": 3996,
+ "start": 3028.98,
+ "end": 3029.16,
+ "text": "have."
+ },
+ {
+ "id": 3997,
+ "start": 3029.16,
+ "end": 3029.68,
+ "text": "Okay,"
+ },
+ {
+ "id": 3998,
+ "start": 3029.68,
+ "end": 3029.84,
+ "text": "but"
+ },
+ {
+ "id": 3999,
+ "start": 3029.84,
+ "end": 3030.08,
+ "text": "right"
+ },
+ {
+ "id": 4000,
+ "start": 3030.08,
+ "end": 3030.24,
+ "text": "now,"
+ },
+ {
+ "id": 4001,
+ "start": 3030.24,
+ "end": 3030.44,
+ "text": "you"
+ },
+ {
+ "id": 4002,
+ "start": 3030.44,
+ "end": 3030.6,
+ "text": "have"
+ },
+ {
+ "id": 4003,
+ "start": 3030.6,
+ "end": 3030.82,
+ "text": "no"
+ },
+ {
+ "id": 4004,
+ "start": 3030.82,
+ "end": 3031.3,
+ "text": "certainty"
+ },
+ {
+ "id": 4005,
+ "start": 3031.3,
+ "end": 3031.44,
+ "text": "of"
+ },
+ {
+ "id": 4006,
+ "start": 3031.44,
+ "end": 3031.76,
+ "text": "whether"
+ },
+ {
+ "id": 4007,
+ "start": 3031.76,
+ "end": 3031.9,
+ "text": "or"
+ },
+ {
+ "id": 4008,
+ "start": 3031.9,
+ "end": 3032.14,
+ "text": "not"
+ },
+ {
+ "id": 4009,
+ "start": 3032.14,
+ "end": 3033.34,
+ "text": "how"
+ },
+ {
+ "id": 4010,
+ "start": 3033.34,
+ "end": 3033.54,
+ "text": "much"
+ },
+ {
+ "id": 4011,
+ "start": 3033.54,
+ "end": 3033.7,
+ "text": "of"
+ },
+ {
+ "id": 4012,
+ "start": 3033.7,
+ "end": 3034,
+ "text": "that's"
+ },
+ {
+ "id": 4013,
+ "start": 3034,
+ "end": 3034.66,
+ "text": "going"
+ },
+ {
+ "id": 4014,
+ "start": 3034.66,
+ "end": 3034.94,
+ "text": "on,"
+ },
+ {
+ "id": 4015,
+ "start": 3034.94,
+ "end": 3036.08,
+ "text": "right,"
+ },
+ {
+ "id": 4016,
+ "start": 3036.08,
+ "end": 3037.22,
+ "text": "okay."
+ },
+ {
+ "id": 4017,
+ "start": 3037.22,
+ "end": 3038.2,
+ "text": "Facebook"
+ },
+ {
+ "id": 4018,
+ "start": 3038.2,
+ "end": 3038.64,
+ "text": "collects"
+ },
+ {
+ "id": 4019,
+ "start": 3038.64,
+ "end": 3039.26,
+ "text": "massive"
+ },
+ {
+ "id": 4020,
+ "start": 3039.26,
+ "end": 3039.66,
+ "text": "amounts"
+ },
+ {
+ "id": 4021,
+ "start": 3039.66,
+ "end": 3039.84,
+ "text": "of"
+ },
+ {
+ "id": 4022,
+ "start": 3039.84,
+ "end": 3040.18,
+ "text": "data"
+ },
+ {
+ "id": 4023,
+ "start": 3040.18,
+ "end": 3040.4,
+ "text": "from"
+ },
+ {
+ "id": 4024,
+ "start": 3040.4,
+ "end": 3041,
+ "text": "consumers,"
+ },
+ {
+ "id": 4025,
+ "start": 3041,
+ "end": 3041.56,
+ "text": "including"
+ },
+ {
+ "id": 4026,
+ "start": 3041.56,
+ "end": 3042.54,
+ "text": "content"
+ },
+ {
+ "id": 4027,
+ "start": 3042.54,
+ "end": 3043.96,
+ "text": "networks"
+ },
+ {
+ "id": 4028,
+ "start": 3043.96,
+ "end": 3044.98,
+ "text": "contact"
+ },
+ {
+ "id": 4029,
+ "start": 3044.98,
+ "end": 3045.5,
+ "text": "lists"
+ },
+ {
+ "id": 4030,
+ "start": 3045.5,
+ "end": 3046.16,
+ "text": "device"
+ },
+ {
+ "id": 4031,
+ "start": 3046.16,
+ "end": 3047,
+ "text": "information"
+ },
+ {
+ "id": 4032,
+ "start": 3047,
+ "end": 3047.98,
+ "text": "location"
+ },
+ {
+ "id": 4033,
+ "start": 3047.98,
+ "end": 3048.18,
+ "text": "and"
+ },
+ {
+ "id": 4034,
+ "start": 3048.18,
+ "end": 3048.88,
+ "text": "information"
+ },
+ {
+ "id": 4035,
+ "start": 3048.88,
+ "end": 3049.06,
+ "text": "from"
+ },
+ {
+ "id": 4036,
+ "start": 3049.06,
+ "end": 3049.4,
+ "text": "third"
+ },
+ {
+ "id": 4037,
+ "start": 3049.4,
+ "end": 3049.84,
+ "text": "parties"
+ },
+ {
+ "id": 4038,
+ "start": 3049.84,
+ "end": 3050.66,
+ "text": "yet."
+ },
+ {
+ "id": 4039,
+ "start": 3050.66,
+ "end": 3050.88,
+ "text": "Your"
+ },
+ {
+ "id": 4040,
+ "start": 3050.88,
+ "end": 3051.24,
+ "text": "data"
+ },
+ {
+ "id": 4041,
+ "start": 3051.24,
+ "end": 3051.78,
+ "text": "policy"
+ },
+ {
+ "id": 4042,
+ "start": 3051.78,
+ "end": 3051.98,
+ "text": "is"
+ },
+ {
+ "id": 4043,
+ "start": 3051.98,
+ "end": 3052.34,
+ "text": "only"
+ },
+ {
+ "id": 4044,
+ "start": 3052.34,
+ "end": 3052.44,
+ "text": "a"
+ },
+ {
+ "id": 4045,
+ "start": 3052.44,
+ "end": 3052.68,
+ "text": "few"
+ },
+ {
+ "id": 4046,
+ "start": 3052.68,
+ "end": 3053.12,
+ "text": "pages"
+ },
+ {
+ "id": 4047,
+ "start": 3053.12,
+ "end": 3053.46,
+ "text": "long"
+ },
+ {
+ "id": 4048,
+ "start": 3053.46,
+ "end": 3053.6,
+ "text": "and"
+ },
+ {
+ "id": 4049,
+ "start": 3053.6,
+ "end": 3054.02,
+ "text": "provide"
+ },
+ {
+ "id": 4050,
+ "start": 3054.02,
+ "end": 3054.66,
+ "text": "consumers"
+ },
+ {
+ "id": 4051,
+ "start": 3054.66,
+ "end": 3055.18,
+ "text": "with"
+ },
+ {
+ "id": 4052,
+ "start": 3055.18,
+ "end": 3055.42,
+ "text": "only"
+ },
+ {
+ "id": 4053,
+ "start": 3055.42,
+ "end": 3055.48,
+ "text": "a"
+ },
+ {
+ "id": 4054,
+ "start": 3055.48,
+ "end": 3055.7,
+ "text": "few"
+ },
+ {
+ "id": 4055,
+ "start": 3055.7,
+ "end": 3056.3,
+ "text": "examples"
+ },
+ {
+ "id": 4056,
+ "start": 3056.3,
+ "end": 3056.46,
+ "text": "of"
+ },
+ {
+ "id": 4057,
+ "start": 3056.46,
+ "end": 3056.62,
+ "text": "what"
+ },
+ {
+ "id": 4058,
+ "start": 3056.62,
+ "end": 3056.82,
+ "text": "is"
+ },
+ {
+ "id": 4059,
+ "start": 3056.82,
+ "end": 3057.32,
+ "text": "collected"
+ },
+ {
+ "id": 4060,
+ "start": 3057.32,
+ "end": 3057.82,
+ "text": "and"
+ },
+ {
+ "id": 4061,
+ "start": 3057.82,
+ "end": 3058.3,
+ "text": "how"
+ },
+ {
+ "id": 4062,
+ "start": 3058.3,
+ "end": 3058.48,
+ "text": "it"
+ },
+ {
+ "id": 4063,
+ "start": 3058.48,
+ "end": 3058.78,
+ "text": "might"
+ },
+ {
+ "id": 4064,
+ "start": 3058.78,
+ "end": 3058.94,
+ "text": "be"
+ },
+ {
+ "id": 4065,
+ "start": 3058.94,
+ "end": 3059.32,
+ "text": "used."
+ },
+ {
+ "id": 4066,
+ "start": 3059.32,
+ "end": 3060.16,
+ "text": "The"
+ },
+ {
+ "id": 4067,
+ "start": 3060.16,
+ "end": 3060.74,
+ "text": "examples"
+ },
+ {
+ "id": 4068,
+ "start": 3060.74,
+ "end": 3061.14,
+ "text": "given"
+ },
+ {
+ "id": 4069,
+ "start": 3061.14,
+ "end": 3061.94,
+ "text": "emphasized"
+ },
+ {
+ "id": 4070,
+ "start": 3061.94,
+ "end": 3062.52,
+ "text": "benign"
+ },
+ {
+ "id": 4071,
+ "start": 3062.52,
+ "end": 3062.98,
+ "text": "uses"
+ },
+ {
+ "id": 4072,
+ "start": 3062.98,
+ "end": 3063.8,
+ "text": "such"
+ },
+ {
+ "id": 4073,
+ "start": 3063.8,
+ "end": 3064,
+ "text": "as"
+ },
+ {
+ "id": 4074,
+ "start": 3064,
+ "end": 3064.54,
+ "text": "connecting"
+ },
+ {
+ "id": 4075,
+ "start": 3064.54,
+ "end": 3064.74,
+ "text": "with"
+ },
+ {
+ "id": 4076,
+ "start": 3064.74,
+ "end": 3065.5,
+ "text": "friends."
+ },
+ {
+ "id": 4077,
+ "start": 3065.5,
+ "end": 3065.94,
+ "text": "But"
+ },
+ {
+ "id": 4078,
+ "start": 3065.94,
+ "end": 3066.16,
+ "text": "your"
+ },
+ {
+ "id": 4079,
+ "start": 3066.16,
+ "end": 3066.64,
+ "text": "policy"
+ },
+ {
+ "id": 4080,
+ "start": 3066.64,
+ "end": 3066.92,
+ "text": "does"
+ },
+ {
+ "id": 4081,
+ "start": 3066.92,
+ "end": 3067.2,
+ "text": "not"
+ },
+ {
+ "id": 4082,
+ "start": 3067.2,
+ "end": 3067.42,
+ "text": "give"
+ },
+ {
+ "id": 4083,
+ "start": 3067.42,
+ "end": 3067.74,
+ "text": "any"
+ },
+ {
+ "id": 4084,
+ "start": 3067.74,
+ "end": 3068.46,
+ "text": "indication"
+ },
+ {
+ "id": 4085,
+ "start": 3068.46,
+ "end": 3069.28,
+ "text": "for"
+ },
+ {
+ "id": 4086,
+ "start": 3069.28,
+ "end": 3069.72,
+ "text": "more"
+ },
+ {
+ "id": 4087,
+ "start": 3069.72,
+ "end": 3070.54,
+ "text": "controversial"
+ },
+ {
+ "id": 4088,
+ "start": 3070.54,
+ "end": 3071.04,
+ "text": "issues."
+ },
+ {
+ "id": 4089,
+ "start": 3071.04,
+ "end": 3071.24,
+ "text": "Of"
+ },
+ {
+ "id": 4090,
+ "start": 3071.24,
+ "end": 3071.52,
+ "text": "such"
+ },
+ {
+ "id": 4091,
+ "start": 3071.52,
+ "end": 3072.04,
+ "text": "data,"
+ },
+ {
+ "id": 4092,
+ "start": 3072.04,
+ "end": 3072.68,
+ "text": "my"
+ },
+ {
+ "id": 4093,
+ "start": 3072.68,
+ "end": 3073.14,
+ "text": "question"
+ },
+ {
+ "id": 4094,
+ "start": 3073.14,
+ "end": 3073.74,
+ "text": "why"
+ },
+ {
+ "id": 4095,
+ "start": 3073.74,
+ "end": 3074.2,
+ "text": "doesn't"
+ },
+ {
+ "id": 4096,
+ "start": 3074.2,
+ "end": 3074.78,
+ "text": "Facebook"
+ },
+ {
+ "id": 4097,
+ "start": 3074.78,
+ "end": 3075.5,
+ "text": "disclose"
+ },
+ {
+ "id": 4098,
+ "start": 3075.5,
+ "end": 3075.7,
+ "text": "to"
+ },
+ {
+ "id": 4099,
+ "start": 3075.7,
+ "end": 3076.76,
+ "text": "accusers"
+ },
+ {
+ "id": 4100,
+ "start": 3076.76,
+ "end": 3077.24,
+ "text": "all"
+ },
+ {
+ "id": 4101,
+ "start": 3077.24,
+ "end": 3077.4,
+ "text": "the"
+ },
+ {
+ "id": 4102,
+ "start": 3077.4,
+ "end": 3077.78,
+ "text": "ways"
+ },
+ {
+ "id": 4103,
+ "start": 3077.78,
+ "end": 3078.04,
+ "text": "the"
+ },
+ {
+ "id": 4104,
+ "start": 3078.04,
+ "end": 3078.4,
+ "text": "data"
+ },
+ {
+ "id": 4105,
+ "start": 3078.4,
+ "end": 3078.64,
+ "text": "might"
+ },
+ {
+ "id": 4106,
+ "start": 3078.64,
+ "end": 3078.8,
+ "text": "be"
+ },
+ {
+ "id": 4107,
+ "start": 3078.8,
+ "end": 3079.12,
+ "text": "used"
+ },
+ {
+ "id": 4108,
+ "start": 3079.12,
+ "end": 3079.26,
+ "text": "by"
+ },
+ {
+ "id": 4109,
+ "start": 3079.26,
+ "end": 3079.84,
+ "text": "Facebook"
+ },
+ {
+ "id": 4110,
+ "start": 3079.84,
+ "end": 3080.4,
+ "text": "and"
+ },
+ {
+ "id": 4111,
+ "start": 3080.4,
+ "end": 3080.82,
+ "text": "other"
+ },
+ {
+ "id": 4112,
+ "start": 3080.82,
+ "end": 3081.32,
+ "text": "third"
+ },
+ {
+ "id": 4113,
+ "start": 3081.32,
+ "end": 3081.76,
+ "text": "parties."
+ },
+ {
+ "id": 4114,
+ "start": 3081.76,
+ "end": 3082.3,
+ "text": "And"
+ },
+ {
+ "id": 4115,
+ "start": 3082.3,
+ "end": 3082.54,
+ "text": "what"
+ },
+ {
+ "id": 4116,
+ "start": 3082.54,
+ "end": 3082.72,
+ "text": "is"
+ },
+ {
+ "id": 4117,
+ "start": 3082.72,
+ "end": 3083.34,
+ "text": "Facebook's"
+ },
+ {
+ "id": 4118,
+ "start": 3083.34,
+ "end": 3084.38,
+ "text": "responsibility"
+ },
+ {
+ "id": 4119,
+ "start": 3084.38,
+ "end": 3084.64,
+ "text": "to"
+ },
+ {
+ "id": 4120,
+ "start": 3084.64,
+ "end": 3085.12,
+ "text": "inform"
+ },
+ {
+ "id": 4121,
+ "start": 3085.12,
+ "end": 3085.58,
+ "text": "users"
+ },
+ {
+ "id": 4122,
+ "start": 3085.58,
+ "end": 3086.24,
+ "text": "about"
+ },
+ {
+ "id": 4123,
+ "start": 3086.24,
+ "end": 3086.5,
+ "text": "that"
+ },
+ {
+ "id": 4124,
+ "start": 3086.5,
+ "end": 3088.02,
+ "text": "information."
+ },
+ {
+ "id": 4125,
+ "start": 3088.02,
+ "end": 3089.12,
+ "text": "Mr"
+ },
+ {
+ "id": 4126,
+ "start": 3089.12,
+ "end": 3089.5,
+ "text": "Chairman,"
+ },
+ {
+ "id": 4127,
+ "start": 3089.5,
+ "end": 3090.54,
+ "text": "I"
+ },
+ {
+ "id": 4128,
+ "start": 3090.54,
+ "end": 3090.94,
+ "text": "believe"
+ },
+ {
+ "id": 4129,
+ "start": 3090.94,
+ "end": 3091.12,
+ "text": "it's"
+ },
+ {
+ "id": 4130,
+ "start": 3091.12,
+ "end": 3091.58,
+ "text": "important"
+ },
+ {
+ "id": 4131,
+ "start": 3091.58,
+ "end": 3091.7,
+ "text": "to"
+ },
+ {
+ "id": 4132,
+ "start": 3091.7,
+ "end": 3091.96,
+ "text": "tell"
+ },
+ {
+ "id": 4133,
+ "start": 3091.96,
+ "end": 3092.22,
+ "text": "people"
+ },
+ {
+ "id": 4134,
+ "start": 3092.22,
+ "end": 3092.88,
+ "text": "exactly"
+ },
+ {
+ "id": 4135,
+ "start": 3092.88,
+ "end": 3093.04,
+ "text": "how"
+ },
+ {
+ "id": 4136,
+ "start": 3093.04,
+ "end": 3093.16,
+ "text": "the"
+ },
+ {
+ "id": 4137,
+ "start": 3093.16,
+ "end": 3093.72,
+ "text": "information"
+ },
+ {
+ "id": 4138,
+ "start": 3093.72,
+ "end": 3093.9,
+ "text": "that"
+ },
+ {
+ "id": 4139,
+ "start": 3093.9,
+ "end": 3094.08,
+ "text": "they"
+ },
+ {
+ "id": 4140,
+ "start": 3094.08,
+ "end": 3094.88,
+ "text": "Share"
+ },
+ {
+ "id": 4141,
+ "start": 3094.88,
+ "end": 3095.02,
+ "text": "On"
+ },
+ {
+ "id": 4142,
+ "start": 3095.02,
+ "end": 3095.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 4143,
+ "start": 3095.44,
+ "end": 3095.58,
+ "text": "is"
+ },
+ {
+ "id": 4144,
+ "start": 3095.58,
+ "end": 3095.78,
+ "text": "going"
+ },
+ {
+ "id": 4145,
+ "start": 3095.78,
+ "end": 3095.88,
+ "text": "to"
+ },
+ {
+ "id": 4146,
+ "start": 3095.88,
+ "end": 3096,
+ "text": "be"
+ },
+ {
+ "id": 4147,
+ "start": 3096,
+ "end": 3096.28,
+ "text": "used"
+ },
+ {
+ "id": 4148,
+ "start": 3096.28,
+ "end": 3096.98,
+ "text": "that's"
+ },
+ {
+ "id": 4149,
+ "start": 3096.98,
+ "end": 3097.1,
+ "text": "why"
+ },
+ {
+ "id": 4150,
+ "start": 3097.1,
+ "end": 3097.5,
+ "text": "every"
+ },
+ {
+ "id": 4151,
+ "start": 3097.5,
+ "end": 3097.78,
+ "text": "single"
+ },
+ {
+ "id": 4152,
+ "start": 3097.78,
+ "end": 3098.14,
+ "text": "time"
+ },
+ {
+ "id": 4153,
+ "start": 3098.14,
+ "end": 3098.32,
+ "text": "you"
+ },
+ {
+ "id": 4154,
+ "start": 3098.32,
+ "end": 3098.48,
+ "text": "go"
+ },
+ {
+ "id": 4155,
+ "start": 3098.48,
+ "end": 3098.64,
+ "text": "to"
+ },
+ {
+ "id": 4156,
+ "start": 3098.64,
+ "end": 3098.88,
+ "text": "share"
+ },
+ {
+ "id": 4157,
+ "start": 3098.88,
+ "end": 3099.2,
+ "text": "something"
+ },
+ {
+ "id": 4158,
+ "start": 3099.2,
+ "end": 3099.34,
+ "text": "on"
+ },
+ {
+ "id": 4159,
+ "start": 3099.34,
+ "end": 3099.74,
+ "text": "Facebook,"
+ },
+ {
+ "id": 4160,
+ "start": 3099.74,
+ "end": 3099.98,
+ "text": "whether"
+ },
+ {
+ "id": 4161,
+ "start": 3099.98,
+ "end": 3100.14,
+ "text": "it's"
+ },
+ {
+ "id": 4162,
+ "start": 3100.14,
+ "end": 3100.2,
+ "text": "a"
+ },
+ {
+ "id": 4163,
+ "start": 3100.2,
+ "end": 3100.62,
+ "text": "photo"
+ },
+ {
+ "id": 4164,
+ "start": 3100.62,
+ "end": 3100.78,
+ "text": "and"
+ },
+ {
+ "id": 4165,
+ "start": 3100.78,
+ "end": 3101.32,
+ "text": "Facebook"
+ },
+ {
+ "id": 4166,
+ "start": 3101.32,
+ "end": 3102.36,
+ "text": "or"
+ },
+ {
+ "id": 4167,
+ "start": 3102.36,
+ "end": 3102.58,
+ "text": "a"
+ },
+ {
+ "id": 4168,
+ "start": 3102.58,
+ "end": 3103.04,
+ "text": "message"
+ },
+ {
+ "id": 4169,
+ "start": 3103.04,
+ "end": 3103.5,
+ "text": "and"
+ },
+ {
+ "id": 4170,
+ "start": 3103.5,
+ "end": 3103.98,
+ "text": "Messenger"
+ },
+ {
+ "id": 4171,
+ "start": 3103.98,
+ "end": 3104.1,
+ "text": "or"
+ },
+ {
+ "id": 4172,
+ "start": 3104.1,
+ "end": 3104.56,
+ "text": "WhatsApp"
+ },
+ {
+ "id": 4173,
+ "start": 3104.56,
+ "end": 3105.38,
+ "text": "every"
+ },
+ {
+ "id": 4174,
+ "start": 3105.38,
+ "end": 3105.62,
+ "text": "single"
+ },
+ {
+ "id": 4175,
+ "start": 3105.62,
+ "end": 3105.9,
+ "text": "time"
+ },
+ {
+ "id": 4176,
+ "start": 3105.9,
+ "end": 3106.54,
+ "text": "there's"
+ },
+ {
+ "id": 4177,
+ "start": 3106.54,
+ "end": 3106.6,
+ "text": "a"
+ },
+ {
+ "id": 4178,
+ "start": 3106.6,
+ "end": 3107,
+ "text": "control"
+ },
+ {
+ "id": 4179,
+ "start": 3107,
+ "end": 3107.26,
+ "text": "right"
+ },
+ {
+ "id": 4180,
+ "start": 3107.26,
+ "end": 3107.56,
+ "text": "there"
+ },
+ {
+ "id": 4181,
+ "start": 3107.56,
+ "end": 3108.24,
+ "text": "about"
+ },
+ {
+ "id": 4182,
+ "start": 3108.24,
+ "end": 3108.46,
+ "text": "who"
+ },
+ {
+ "id": 4183,
+ "start": 3108.46,
+ "end": 3108.7,
+ "text": "you're"
+ },
+ {
+ "id": 4184,
+ "start": 3108.7,
+ "end": 3108.86,
+ "text": "going"
+ },
+ {
+ "id": 4185,
+ "start": 3108.86,
+ "end": 3108.92,
+ "text": "to"
+ },
+ {
+ "id": 4186,
+ "start": 3108.92,
+ "end": 3109,
+ "text": "be"
+ },
+ {
+ "id": 4187,
+ "start": 3109,
+ "end": 3109.24,
+ "text": "sharing"
+ },
+ {
+ "id": 4188,
+ "start": 3109.24,
+ "end": 3109.32,
+ "text": "it"
+ },
+ {
+ "id": 4189,
+ "start": 3109.32,
+ "end": 3109.5,
+ "text": "with"
+ },
+ {
+ "id": 4190,
+ "start": 3109.5,
+ "end": 3109.78,
+ "text": "whether"
+ },
+ {
+ "id": 4191,
+ "start": 3109.78,
+ "end": 3109.94,
+ "text": "it's"
+ },
+ {
+ "id": 4192,
+ "start": 3109.94,
+ "end": 3110.14,
+ "text": "your"
+ },
+ {
+ "id": 4193,
+ "start": 3110.14,
+ "end": 3110.86,
+ "text": "friends"
+ },
+ {
+ "id": 4194,
+ "start": 3110.86,
+ "end": 3111.1,
+ "text": "or"
+ },
+ {
+ "id": 4195,
+ "start": 3111.1,
+ "end": 3111.52,
+ "text": "public"
+ },
+ {
+ "id": 4196,
+ "start": 3111.52,
+ "end": 3111.72,
+ "text": "or"
+ },
+ {
+ "id": 4197,
+ "start": 3111.72,
+ "end": 3111.78,
+ "text": "a"
+ },
+ {
+ "id": 4198,
+ "start": 3111.78,
+ "end": 3112.3,
+ "text": "specific"
+ },
+ {
+ "id": 4199,
+ "start": 3112.3,
+ "end": 3112.56,
+ "text": "group"
+ },
+ {
+ "id": 4200,
+ "start": 3112.56,
+ "end": 3113.3,
+ "text": "and"
+ },
+ {
+ "id": 4201,
+ "start": 3113.3,
+ "end": 3113.46,
+ "text": "you"
+ },
+ {
+ "id": 4202,
+ "start": 3113.46,
+ "end": 3113.9,
+ "text": "can"
+ },
+ {
+ "id": 4203,
+ "start": 3113.9,
+ "end": 3114.14,
+ "text": "change"
+ },
+ {
+ "id": 4204,
+ "start": 3114.14,
+ "end": 3114.28,
+ "text": "that"
+ },
+ {
+ "id": 4205,
+ "start": 3114.28,
+ "end": 3114.4,
+ "text": "and"
+ },
+ {
+ "id": 4206,
+ "start": 3114.4,
+ "end": 3114.68,
+ "text": "control"
+ },
+ {
+ "id": 4207,
+ "start": 3114.68,
+ "end": 3114.84,
+ "text": "that"
+ },
+ {
+ "id": 4208,
+ "start": 3114.84,
+ "end": 3114.96,
+ "text": "in"
+ },
+ {
+ "id": 4209,
+ "start": 3114.96,
+ "end": 3115.24,
+ "text": "line"
+ },
+ {
+ "id": 4210,
+ "start": 3115.24,
+ "end": 3115.9,
+ "text": "to"
+ },
+ {
+ "id": 4211,
+ "start": 3115.9,
+ "end": 3116.04,
+ "text": "your"
+ },
+ {
+ "id": 4212,
+ "start": 3116.04,
+ "end": 3116.42,
+ "text": "broader"
+ },
+ {
+ "id": 4213,
+ "start": 3116.42,
+ "end": 3116.7,
+ "text": "point"
+ },
+ {
+ "id": 4214,
+ "start": 3116.7,
+ "end": 3117.02,
+ "text": "about"
+ },
+ {
+ "id": 4215,
+ "start": 3117.02,
+ "end": 3117.22,
+ "text": "the"
+ },
+ {
+ "id": 4216,
+ "start": 3117.22,
+ "end": 3117.8,
+ "text": "privacy"
+ },
+ {
+ "id": 4217,
+ "start": 3117.8,
+ "end": 3118.98,
+ "text": "policy."
+ },
+ {
+ "id": 4218,
+ "start": 3118.98,
+ "end": 3119.82,
+ "text": "This"
+ },
+ {
+ "id": 4219,
+ "start": 3119.82,
+ "end": 3120.02,
+ "text": "gets"
+ },
+ {
+ "id": 4220,
+ "start": 3120.02,
+ "end": 3120.3,
+ "text": "into"
+ },
+ {
+ "id": 4221,
+ "start": 3120.3,
+ "end": 3120.78,
+ "text": "an"
+ },
+ {
+ "id": 4222,
+ "start": 3120.78,
+ "end": 3121.08,
+ "text": "issue"
+ },
+ {
+ "id": 4223,
+ "start": 3121.08,
+ "end": 3121.4,
+ "text": "that"
+ },
+ {
+ "id": 4224,
+ "start": 3121.4,
+ "end": 3121.92,
+ "text": "I"
+ },
+ {
+ "id": 4225,
+ "start": 3121.92,
+ "end": 3122.22,
+ "text": "think"
+ },
+ {
+ "id": 4226,
+ "start": 3122.22,
+ "end": 3122.44,
+ "text": "we"
+ },
+ {
+ "id": 4227,
+ "start": 3122.44,
+ "end": 3123,
+ "text": "and"
+ },
+ {
+ "id": 4228,
+ "start": 3123,
+ "end": 3123.48,
+ "text": "others"
+ },
+ {
+ "id": 4229,
+ "start": 3123.48,
+ "end": 3123.68,
+ "text": "in"
+ },
+ {
+ "id": 4230,
+ "start": 3123.68,
+ "end": 3123.82,
+ "text": "the"
+ },
+ {
+ "id": 4231,
+ "start": 3123.82,
+ "end": 3124,
+ "text": "tech"
+ },
+ {
+ "id": 4232,
+ "start": 3124,
+ "end": 3124.36,
+ "text": "industry"
+ },
+ {
+ "id": 4233,
+ "start": 3124.36,
+ "end": 3124.52,
+ "text": "of"
+ },
+ {
+ "id": 4234,
+ "start": 3124.52,
+ "end": 3124.76,
+ "text": "found"
+ },
+ {
+ "id": 4235,
+ "start": 3124.76,
+ "end": 3125.3,
+ "text": "challenging,"
+ },
+ {
+ "id": 4236,
+ "start": 3125.3,
+ "end": 3125.94,
+ "text": "which"
+ },
+ {
+ "id": 4237,
+ "start": 3125.94,
+ "end": 3126.08,
+ "text": "is"
+ },
+ {
+ "id": 4238,
+ "start": 3126.08,
+ "end": 3126.68,
+ "text": "that"
+ },
+ {
+ "id": 4239,
+ "start": 3126.68,
+ "end": 3127.3,
+ "text": "long."
+ },
+ {
+ "id": 4240,
+ "start": 3127.3,
+ "end": 3127.8,
+ "text": "Privacy"
+ },
+ {
+ "id": 4241,
+ "start": 3127.8,
+ "end": 3128.26,
+ "text": "policies"
+ },
+ {
+ "id": 4242,
+ "start": 3128.26,
+ "end": 3128.44,
+ "text": "are"
+ },
+ {
+ "id": 4243,
+ "start": 3128.44,
+ "end": 3128.78,
+ "text": "very"
+ },
+ {
+ "id": 4244,
+ "start": 3128.78,
+ "end": 3129.38,
+ "text": "confusing."
+ },
+ {
+ "id": 4245,
+ "start": 3129.38,
+ "end": 3129.8,
+ "text": "And"
+ },
+ {
+ "id": 4246,
+ "start": 3129.8,
+ "end": 3129.98,
+ "text": "if"
+ },
+ {
+ "id": 4247,
+ "start": 3129.98,
+ "end": 3130.12,
+ "text": "you"
+ },
+ {
+ "id": 4248,
+ "start": 3130.12,
+ "end": 3130.32,
+ "text": "make"
+ },
+ {
+ "id": 4249,
+ "start": 3130.32,
+ "end": 3130.44,
+ "text": "it"
+ },
+ {
+ "id": 4250,
+ "start": 3130.44,
+ "end": 3131.08,
+ "text": "long"
+ },
+ {
+ "id": 4251,
+ "start": 3131.08,
+ "end": 3131.26,
+ "text": "and"
+ },
+ {
+ "id": 4252,
+ "start": 3131.26,
+ "end": 3131.86,
+ "text": "spell"
+ },
+ {
+ "id": 4253,
+ "start": 3131.86,
+ "end": 3131.98,
+ "text": "out"
+ },
+ {
+ "id": 4254,
+ "start": 3131.98,
+ "end": 3132.1,
+ "text": "all"
+ },
+ {
+ "id": 4255,
+ "start": 3132.1,
+ "end": 3132.26,
+ "text": "the"
+ },
+ {
+ "id": 4256,
+ "start": 3132.26,
+ "end": 3132.6,
+ "text": "detail,"
+ },
+ {
+ "id": 4257,
+ "start": 3132.6,
+ "end": 3133.2,
+ "text": "then"
+ },
+ {
+ "id": 4258,
+ "start": 3133.2,
+ "end": 3133.42,
+ "text": "you're"
+ },
+ {
+ "id": 4259,
+ "start": 3133.42,
+ "end": 3133.84,
+ "text": "probably"
+ },
+ {
+ "id": 4260,
+ "start": 3133.84,
+ "end": 3134,
+ "text": "going"
+ },
+ {
+ "id": 4261,
+ "start": 3134,
+ "end": 3134.08,
+ "text": "to"
+ },
+ {
+ "id": 4262,
+ "start": 3134.08,
+ "end": 3134.36,
+ "text": "reduce"
+ },
+ {
+ "id": 4263,
+ "start": 3134.36,
+ "end": 3134.6,
+ "text": "the"
+ },
+ {
+ "id": 4264,
+ "start": 3134.6,
+ "end": 3135.08,
+ "text": "percent"
+ },
+ {
+ "id": 4265,
+ "start": 3135.08,
+ "end": 3135.2,
+ "text": "of"
+ },
+ {
+ "id": 4266,
+ "start": 3135.2,
+ "end": 3135.46,
+ "text": "people"
+ },
+ {
+ "id": 4267,
+ "start": 3135.46,
+ "end": 3135.62,
+ "text": "who"
+ },
+ {
+ "id": 4268,
+ "start": 3135.62,
+ "end": 3135.88,
+ "text": "read"
+ },
+ {
+ "id": 4269,
+ "start": 3135.88,
+ "end": 3136,
+ "text": "it"
+ },
+ {
+ "id": 4270,
+ "start": 3136,
+ "end": 3136.38,
+ "text": "and"
+ },
+ {
+ "id": 4271,
+ "start": 3136.38,
+ "end": 3136.56,
+ "text": "make"
+ },
+ {
+ "id": 4272,
+ "start": 3136.56,
+ "end": 3136.64,
+ "text": "it"
+ },
+ {
+ "id": 4273,
+ "start": 3136.64,
+ "end": 3137.14,
+ "text": "accessible"
+ },
+ {
+ "id": 4274,
+ "start": 3137.14,
+ "end": 3137.26,
+ "text": "to"
+ },
+ {
+ "id": 4275,
+ "start": 3137.26,
+ "end": 3137.46,
+ "text": "them."
+ },
+ {
+ "id": 4276,
+ "start": 3137.46,
+ "end": 3138.16,
+ "text": "So"
+ },
+ {
+ "id": 4277,
+ "start": 3138.16,
+ "end": 3138.52,
+ "text": "one"
+ },
+ {
+ "id": 4278,
+ "start": 3138.52,
+ "end": 3138.6,
+ "text": "of"
+ },
+ {
+ "id": 4279,
+ "start": 3138.6,
+ "end": 3138.72,
+ "text": "the"
+ },
+ {
+ "id": 4280,
+ "start": 3138.72,
+ "end": 3138.92,
+ "text": "things"
+ },
+ {
+ "id": 4281,
+ "start": 3138.92,
+ "end": 3139.2,
+ "text": "that"
+ },
+ {
+ "id": 4282,
+ "start": 3139.2,
+ "end": 3139.36,
+ "text": "that"
+ },
+ {
+ "id": 4283,
+ "start": 3139.36,
+ "end": 3139.62,
+ "text": "we've"
+ },
+ {
+ "id": 4284,
+ "start": 3139.62,
+ "end": 3140,
+ "text": "struggled"
+ },
+ {
+ "id": 4285,
+ "start": 3140,
+ "end": 3140.18,
+ "text": "with"
+ },
+ {
+ "id": 4286,
+ "start": 3140.18,
+ "end": 3140.44,
+ "text": "over"
+ },
+ {
+ "id": 4287,
+ "start": 3140.44,
+ "end": 3140.78,
+ "text": "time"
+ },
+ {
+ "id": 4288,
+ "start": 3140.78,
+ "end": 3141.26,
+ "text": "is"
+ },
+ {
+ "id": 4289,
+ "start": 3141.26,
+ "end": 3141.38,
+ "text": "to"
+ },
+ {
+ "id": 4290,
+ "start": 3141.38,
+ "end": 3141.56,
+ "text": "make"
+ },
+ {
+ "id": 4291,
+ "start": 3141.56,
+ "end": 3141.84,
+ "text": "something"
+ },
+ {
+ "id": 4292,
+ "start": 3141.84,
+ "end": 3141.96,
+ "text": "that"
+ },
+ {
+ "id": 4293,
+ "start": 3141.96,
+ "end": 3142.12,
+ "text": "is"
+ },
+ {
+ "id": 4294,
+ "start": 3142.12,
+ "end": 3142.3,
+ "text": "as"
+ },
+ {
+ "id": 4295,
+ "start": 3142.3,
+ "end": 3142.61,
+ "text": "simple"
+ },
+ {
+ "id": 4296,
+ "start": 3142.61,
+ "end": 3142.73,
+ "text": "as"
+ },
+ {
+ "id": 4297,
+ "start": 3142.73,
+ "end": 3143.15,
+ "text": "possible."
+ },
+ {
+ "id": 4298,
+ "start": 3143.15,
+ "end": 3143.33,
+ "text": "So"
+ },
+ {
+ "id": 4299,
+ "start": 3143.33,
+ "end": 3143.61,
+ "text": "people"
+ },
+ {
+ "id": 4300,
+ "start": 3143.61,
+ "end": 3143.81,
+ "text": "can"
+ },
+ {
+ "id": 4301,
+ "start": 3143.81,
+ "end": 3144.27,
+ "text": "understand"
+ },
+ {
+ "id": 4302,
+ "start": 3144.27,
+ "end": 3144.41,
+ "text": "it"
+ },
+ {
+ "id": 4303,
+ "start": 3144.41,
+ "end": 3145.01,
+ "text": "as"
+ },
+ {
+ "id": 4304,
+ "start": 3145.01,
+ "end": 3145.29,
+ "text": "well"
+ },
+ {
+ "id": 4305,
+ "start": 3145.29,
+ "end": 3145.47,
+ "text": "as"
+ },
+ {
+ "id": 4306,
+ "start": 3145.47,
+ "end": 3145.71,
+ "text": "giving"
+ },
+ {
+ "id": 4307,
+ "start": 3145.71,
+ "end": 3145.85,
+ "text": "them"
+ },
+ {
+ "id": 4308,
+ "start": 3145.85,
+ "end": 3146.25,
+ "text": "controls"
+ },
+ {
+ "id": 4309,
+ "start": 3146.25,
+ "end": 3146.43,
+ "text": "in"
+ },
+ {
+ "id": 4310,
+ "start": 3146.43,
+ "end": 3146.67,
+ "text": "line"
+ },
+ {
+ "id": 4311,
+ "start": 3146.67,
+ "end": 3146.77,
+ "text": "in"
+ },
+ {
+ "id": 4312,
+ "start": 3146.77,
+ "end": 3146.89,
+ "text": "the"
+ },
+ {
+ "id": 4313,
+ "start": 3146.89,
+ "end": 3147.25,
+ "text": "product"
+ },
+ {
+ "id": 4314,
+ "start": 3147.25,
+ "end": 3147.59,
+ "text": "in"
+ },
+ {
+ "id": 4315,
+ "start": 3147.59,
+ "end": 3147.71,
+ "text": "the"
+ },
+ {
+ "id": 4316,
+ "start": 3147.71,
+ "end": 3148.13,
+ "text": "context"
+ },
+ {
+ "id": 4317,
+ "start": 3148.13,
+ "end": 3148.25,
+ "text": "of"
+ },
+ {
+ "id": 4318,
+ "start": 3148.25,
+ "end": 3148.39,
+ "text": "when"
+ },
+ {
+ "id": 4319,
+ "start": 3148.39,
+ "end": 3148.63,
+ "text": "they're"
+ },
+ {
+ "id": 4320,
+ "start": 3148.63,
+ "end": 3148.87,
+ "text": "trying"
+ },
+ {
+ "id": 4321,
+ "start": 3148.87,
+ "end": 3148.97,
+ "text": "to"
+ },
+ {
+ "id": 4322,
+ "start": 3148.97,
+ "end": 3149.25,
+ "text": "actually"
+ },
+ {
+ "id": 4323,
+ "start": 3149.25,
+ "end": 3149.47,
+ "text": "use"
+ },
+ {
+ "id": 4324,
+ "start": 3149.47,
+ "end": 3149.69,
+ "text": "them"
+ },
+ {
+ "id": 4325,
+ "start": 3149.69,
+ "end": 3150.79,
+ "text": "taking"
+ },
+ {
+ "id": 4326,
+ "start": 3150.79,
+ "end": 3150.95,
+ "text": "into"
+ },
+ {
+ "id": 4327,
+ "start": 3150.95,
+ "end": 3151.25,
+ "text": "account"
+ },
+ {
+ "id": 4328,
+ "start": 3151.25,
+ "end": 3151.49,
+ "text": "that"
+ },
+ {
+ "id": 4329,
+ "start": 3151.49,
+ "end": 3152.07,
+ "text": "we"
+ },
+ {
+ "id": 4330,
+ "start": 3152.07,
+ "end": 3152.25,
+ "text": "don't"
+ },
+ {
+ "id": 4331,
+ "start": 3152.25,
+ "end": 3152.57,
+ "text": "expect"
+ },
+ {
+ "id": 4332,
+ "start": 3152.57,
+ "end": 3152.71,
+ "text": "that"
+ },
+ {
+ "id": 4333,
+ "start": 3152.71,
+ "end": 3152.93,
+ "text": "most"
+ },
+ {
+ "id": 4334,
+ "start": 3152.93,
+ "end": 3153.23,
+ "text": "people"
+ },
+ {
+ "id": 4335,
+ "start": 3153.23,
+ "end": 3153.47,
+ "text": "will"
+ },
+ {
+ "id": 4336,
+ "start": 3153.47,
+ "end": 3153.63,
+ "text": "want"
+ },
+ {
+ "id": 4337,
+ "start": 3153.63,
+ "end": 3153.71,
+ "text": "to"
+ },
+ {
+ "id": 4338,
+ "start": 3153.71,
+ "end": 3153.81,
+ "text": "go"
+ },
+ {
+ "id": 4339,
+ "start": 3153.81,
+ "end": 3154.45,
+ "text": "through"
+ },
+ {
+ "id": 4340,
+ "start": 3154.45,
+ "end": 3154.59,
+ "text": "and"
+ },
+ {
+ "id": 4341,
+ "start": 3154.59,
+ "end": 3154.81,
+ "text": "read"
+ },
+ {
+ "id": 4342,
+ "start": 3154.81,
+ "end": 3154.87,
+ "text": "a"
+ },
+ {
+ "id": 4343,
+ "start": 3154.87,
+ "end": 3155.09,
+ "text": "full"
+ },
+ {
+ "id": 4344,
+ "start": 3155.09,
+ "end": 3155.37,
+ "text": "legal"
+ },
+ {
+ "id": 4345,
+ "start": 3155.37,
+ "end": 3156.51,
+ "text": "document."
+ },
+ {
+ "id": 4346,
+ "start": 3156.51,
+ "end": 3157.51,
+ "text": "Senator"
+ },
+ {
+ "id": 4347,
+ "start": 3157.51,
+ "end": 3158.54,
+ "text": "Nelson,"
+ },
+ {
+ "id": 4348,
+ "start": 3158.54,
+ "end": 3159.36,
+ "text": "thank"
+ },
+ {
+ "id": 4349,
+ "start": 3159.36,
+ "end": 3159.5,
+ "text": "you"
+ },
+ {
+ "id": 4350,
+ "start": 3159.5,
+ "end": 3159.74,
+ "text": "Mr"
+ },
+ {
+ "id": 4351,
+ "start": 3159.74,
+ "end": 3161.2,
+ "text": "Chairman"
+ },
+ {
+ "id": 4352,
+ "start": 3161.2,
+ "end": 3162.18,
+ "text": "yesterday"
+ },
+ {
+ "id": 4353,
+ "start": 3162.18,
+ "end": 3162.42,
+ "text": "when"
+ },
+ {
+ "id": 4354,
+ "start": 3162.42,
+ "end": 3162.54,
+ "text": "we"
+ },
+ {
+ "id": 4355,
+ "start": 3162.54,
+ "end": 3162.94,
+ "text": "talked,"
+ },
+ {
+ "id": 4356,
+ "start": 3162.94,
+ "end": 3163.08,
+ "text": "I"
+ },
+ {
+ "id": 4357,
+ "start": 3163.08,
+ "end": 3163.48,
+ "text": "gave"
+ },
+ {
+ "id": 4358,
+ "start": 3163.48,
+ "end": 3163.92,
+ "text": "the"
+ },
+ {
+ "id": 4359,
+ "start": 3163.92,
+ "end": 3164.9,
+ "text": "relatively"
+ },
+ {
+ "id": 4360,
+ "start": 3164.9,
+ "end": 3165.84,
+ "text": "harmless"
+ },
+ {
+ "id": 4361,
+ "start": 3165.84,
+ "end": 3166.52,
+ "text": "example"
+ },
+ {
+ "id": 4362,
+ "start": 3166.52,
+ "end": 3167.38,
+ "text": "that"
+ },
+ {
+ "id": 4363,
+ "start": 3167.38,
+ "end": 3168.16,
+ "text": "I'm"
+ },
+ {
+ "id": 4364,
+ "start": 3168.16,
+ "end": 3169.2,
+ "text": "communicating"
+ },
+ {
+ "id": 4365,
+ "start": 3169.2,
+ "end": 3169.44,
+ "text": "with"
+ },
+ {
+ "id": 4366,
+ "start": 3169.44,
+ "end": 3169.68,
+ "text": "my"
+ },
+ {
+ "id": 4367,
+ "start": 3169.68,
+ "end": 3170.2,
+ "text": "friends"
+ },
+ {
+ "id": 4368,
+ "start": 3170.2,
+ "end": 3170.56,
+ "text": "on"
+ },
+ {
+ "id": 4369,
+ "start": 3170.56,
+ "end": 3171.32,
+ "text": "Facebook"
+ },
+ {
+ "id": 4370,
+ "start": 3171.32,
+ "end": 3172.36,
+ "text": "and"
+ },
+ {
+ "id": 4371,
+ "start": 3172.36,
+ "end": 3173.36,
+ "text": "indicate"
+ },
+ {
+ "id": 4372,
+ "start": 3173.36,
+ "end": 3174.38,
+ "text": "that"
+ },
+ {
+ "id": 4373,
+ "start": 3174.38,
+ "end": 3174.74,
+ "text": "I"
+ },
+ {
+ "id": 4374,
+ "start": 3174.74,
+ "end": 3175.7,
+ "text": "love"
+ },
+ {
+ "id": 4375,
+ "start": 3175.7,
+ "end": 3175.76,
+ "text": "a"
+ },
+ {
+ "id": 4376,
+ "start": 3175.76,
+ "end": 3176.24,
+ "text": "certain"
+ },
+ {
+ "id": 4377,
+ "start": 3176.24,
+ "end": 3176.56,
+ "text": "kind"
+ },
+ {
+ "id": 4378,
+ "start": 3176.56,
+ "end": 3176.74,
+ "text": "of"
+ },
+ {
+ "id": 4379,
+ "start": 3176.74,
+ "end": 3177.4,
+ "text": "chocolate"
+ },
+ {
+ "id": 4380,
+ "start": 3177.4,
+ "end": 3179.18,
+ "text": "and"
+ },
+ {
+ "id": 4381,
+ "start": 3179.18,
+ "end": 3180.16,
+ "text": "all"
+ },
+ {
+ "id": 4382,
+ "start": 3180.16,
+ "end": 3180.26,
+ "text": "of"
+ },
+ {
+ "id": 4383,
+ "start": 3180.26,
+ "end": 3180.3,
+ "text": "a"
+ },
+ {
+ "id": 4384,
+ "start": 3180.3,
+ "end": 3180.7,
+ "text": "sudden"
+ },
+ {
+ "id": 4385,
+ "start": 3180.7,
+ "end": 3180.92,
+ "text": "I"
+ },
+ {
+ "id": 4386,
+ "start": 3180.92,
+ "end": 3181.54,
+ "text": "start"
+ },
+ {
+ "id": 4387,
+ "start": 3181.54,
+ "end": 3183.04,
+ "text": "receiving"
+ },
+ {
+ "id": 4388,
+ "start": 3183.04,
+ "end": 3184.04,
+ "text": "advertisements"
+ },
+ {
+ "id": 4389,
+ "start": 3184.04,
+ "end": 3184.64,
+ "text": "for"
+ },
+ {
+ "id": 4390,
+ "start": 3184.64,
+ "end": 3186.24,
+ "text": "chocolate."
+ },
+ {
+ "id": 4391,
+ "start": 3186.24,
+ "end": 3187.44,
+ "text": "What"
+ },
+ {
+ "id": 4392,
+ "start": 3187.44,
+ "end": 3187.58,
+ "text": "if"
+ },
+ {
+ "id": 4393,
+ "start": 3187.58,
+ "end": 3187.7,
+ "text": "I"
+ },
+ {
+ "id": 4394,
+ "start": 3187.7,
+ "end": 3188.1,
+ "text": "don't"
+ },
+ {
+ "id": 4395,
+ "start": 3188.1,
+ "end": 3188.5,
+ "text": "want"
+ },
+ {
+ "id": 4396,
+ "start": 3188.5,
+ "end": 3189.2,
+ "text": "to"
+ },
+ {
+ "id": 4397,
+ "start": 3189.2,
+ "end": 3189.94,
+ "text": "receive"
+ },
+ {
+ "id": 4398,
+ "start": 3189.94,
+ "end": 3190.8,
+ "text": "those"
+ },
+ {
+ "id": 4399,
+ "start": 3190.8,
+ "end": 3191.46,
+ "text": "commercial"
+ },
+ {
+ "id": 4400,
+ "start": 3191.46,
+ "end": 3192.66,
+ "text": "advertisements?"
+ },
+ {
+ "id": 4401,
+ "start": 3192.66,
+ "end": 3193.66,
+ "text": "So"
+ },
+ {
+ "id": 4402,
+ "start": 3193.66,
+ "end": 3195,
+ "text": "your"
+ },
+ {
+ "id": 4403,
+ "start": 3195,
+ "end": 3195.94,
+ "text": "chief"
+ },
+ {
+ "id": 4404,
+ "start": 3195.94,
+ "end": 3196.64,
+ "text": "operating"
+ },
+ {
+ "id": 4405,
+ "start": 3196.64,
+ "end": 3197.3,
+ "text": "officer,"
+ },
+ {
+ "id": 4406,
+ "start": 3197.3,
+ "end": 3197.78,
+ "text": "miss"
+ },
+ {
+ "id": 4407,
+ "start": 3197.78,
+ "end": 3198.58,
+ "text": "Sandberg"
+ },
+ {
+ "id": 4408,
+ "start": 3198.58,
+ "end": 3199.64,
+ "text": "suggested"
+ },
+ {
+ "id": 4409,
+ "start": 3199.64,
+ "end": 3200.18,
+ "text": "on"
+ },
+ {
+ "id": 4410,
+ "start": 3200.18,
+ "end": 3200.86,
+ "text": "the"
+ },
+ {
+ "id": 4411,
+ "start": 3200.86,
+ "end": 3201.82,
+ "text": "Today"
+ },
+ {
+ "id": 4412,
+ "start": 3201.82,
+ "end": 3202.3,
+ "text": "show"
+ },
+ {
+ "id": 4413,
+ "start": 3202.3,
+ "end": 3203.38,
+ "text": "that"
+ },
+ {
+ "id": 4414,
+ "start": 3203.38,
+ "end": 3204.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 4415,
+ "start": 3204.46,
+ "end": 3205.08,
+ "text": "users"
+ },
+ {
+ "id": 4416,
+ "start": 3205.08,
+ "end": 3205.58,
+ "text": "who"
+ },
+ {
+ "id": 4417,
+ "start": 3205.58,
+ "end": 3205.8,
+ "text": "do"
+ },
+ {
+ "id": 4418,
+ "start": 3205.8,
+ "end": 3206.26,
+ "text": "not"
+ },
+ {
+ "id": 4419,
+ "start": 3206.26,
+ "end": 3206.56,
+ "text": "want"
+ },
+ {
+ "id": 4420,
+ "start": 3206.56,
+ "end": 3206.86,
+ "text": "their"
+ },
+ {
+ "id": 4421,
+ "start": 3206.86,
+ "end": 3207.44,
+ "text": "personal"
+ },
+ {
+ "id": 4422,
+ "start": 3207.44,
+ "end": 3208.42,
+ "text": "information"
+ },
+ {
+ "id": 4423,
+ "start": 3208.42,
+ "end": 3208.86,
+ "text": "used"
+ },
+ {
+ "id": 4424,
+ "start": 3208.86,
+ "end": 3209.1,
+ "text": "for"
+ },
+ {
+ "id": 4425,
+ "start": 3209.1,
+ "end": 3210.04,
+ "text": "advertising"
+ },
+ {
+ "id": 4426,
+ "start": 3210.04,
+ "end": 3211.06,
+ "text": "might"
+ },
+ {
+ "id": 4427,
+ "start": 3211.06,
+ "end": 3211.38,
+ "text": "have"
+ },
+ {
+ "id": 4428,
+ "start": 3211.38,
+ "end": 3211.62,
+ "text": "to"
+ },
+ {
+ "id": 4429,
+ "start": 3211.62,
+ "end": 3212.18,
+ "text": "pay"
+ },
+ {
+ "id": 4430,
+ "start": 3212.18,
+ "end": 3213.1,
+ "text": "for"
+ },
+ {
+ "id": 4431,
+ "start": 3213.1,
+ "end": 3213.36,
+ "text": "that"
+ },
+ {
+ "id": 4432,
+ "start": 3213.36,
+ "end": 3214.04,
+ "text": "protection"
+ },
+ {
+ "id": 4433,
+ "start": 3214.04,
+ "end": 3214.54,
+ "text": "pay"
+ },
+ {
+ "id": 4434,
+ "start": 3214.54,
+ "end": 3215.48,
+ "text": "for."
+ },
+ {
+ "id": 4435,
+ "start": 3215.48,
+ "end": 3216.28,
+ "text": "Are"
+ },
+ {
+ "id": 4436,
+ "start": 3216.28,
+ "end": 3216.42,
+ "text": "you"
+ },
+ {
+ "id": 4437,
+ "start": 3216.42,
+ "end": 3217.92,
+ "text": "actually"
+ },
+ {
+ "id": 4438,
+ "start": 3217.92,
+ "end": 3218.9,
+ "text": "considering"
+ },
+ {
+ "id": 4439,
+ "start": 3218.9,
+ "end": 3220.04,
+ "text": "having"
+ },
+ {
+ "id": 4440,
+ "start": 3220.04,
+ "end": 3220.74,
+ "text": "Facebook"
+ },
+ {
+ "id": 4441,
+ "start": 3220.74,
+ "end": 3222.24,
+ "text": "users"
+ },
+ {
+ "id": 4442,
+ "start": 3222.24,
+ "end": 3223.44,
+ "text": "pay"
+ },
+ {
+ "id": 4443,
+ "start": 3223.44,
+ "end": 3224.16,
+ "text": "for"
+ },
+ {
+ "id": 4444,
+ "start": 3224.16,
+ "end": 3224.36,
+ "text": "you"
+ },
+ {
+ "id": 4445,
+ "start": 3224.36,
+ "end": 3224.7,
+ "text": "not"
+ },
+ {
+ "id": 4446,
+ "start": 3224.7,
+ "end": 3224.92,
+ "text": "to"
+ },
+ {
+ "id": 4447,
+ "start": 3224.92,
+ "end": 3225.3,
+ "text": "use"
+ },
+ {
+ "id": 4448,
+ "start": 3225.3,
+ "end": 3225.58,
+ "text": "that"
+ },
+ {
+ "id": 4449,
+ "start": 3225.58,
+ "end": 3227.92,
+ "text": "information."
+ },
+ {
+ "id": 4450,
+ "start": 3227.92,
+ "end": 3228.94,
+ "text": "Senator"
+ },
+ {
+ "id": 4451,
+ "start": 3228.94,
+ "end": 3230.06,
+ "text": "people"
+ },
+ {
+ "id": 4452,
+ "start": 3230.06,
+ "end": 3230.3,
+ "text": "have"
+ },
+ {
+ "id": 4453,
+ "start": 3230.3,
+ "end": 3230.36,
+ "text": "a"
+ },
+ {
+ "id": 4454,
+ "start": 3230.36,
+ "end": 3230.84,
+ "text": "control"
+ },
+ {
+ "id": 4455,
+ "start": 3230.84,
+ "end": 3231.12,
+ "text": "over"
+ },
+ {
+ "id": 4456,
+ "start": 3231.12,
+ "end": 3231.3,
+ "text": "how"
+ },
+ {
+ "id": 4457,
+ "start": 3231.3,
+ "end": 3231.5,
+ "text": "their"
+ },
+ {
+ "id": 4458,
+ "start": 3231.5,
+ "end": 3232,
+ "text": "information"
+ },
+ {
+ "id": 4459,
+ "start": 3232,
+ "end": 3232.18,
+ "text": "is"
+ },
+ {
+ "id": 4460,
+ "start": 3232.18,
+ "end": 3232.4,
+ "text": "used"
+ },
+ {
+ "id": 4461,
+ "start": 3232.4,
+ "end": 3232.52,
+ "text": "in"
+ },
+ {
+ "id": 4462,
+ "start": 3232.52,
+ "end": 3232.88,
+ "text": "ads"
+ },
+ {
+ "id": 4463,
+ "start": 3232.88,
+ "end": 3233.02,
+ "text": "in"
+ },
+ {
+ "id": 4464,
+ "start": 3233.02,
+ "end": 3233.14,
+ "text": "the"
+ },
+ {
+ "id": 4465,
+ "start": 3233.14,
+ "end": 3233.46,
+ "text": "product"
+ },
+ {
+ "id": 4466,
+ "start": 3233.46,
+ "end": 3233.82,
+ "text": "today,"
+ },
+ {
+ "id": 4467,
+ "start": 3233.82,
+ "end": 3234.46,
+ "text": "so"
+ },
+ {
+ "id": 4468,
+ "start": 3234.46,
+ "end": 3234.56,
+ "text": "if"
+ },
+ {
+ "id": 4469,
+ "start": 3234.56,
+ "end": 3234.74,
+ "text": "you"
+ },
+ {
+ "id": 4470,
+ "start": 3234.74,
+ "end": 3234.96,
+ "text": "want"
+ },
+ {
+ "id": 4471,
+ "start": 3234.96,
+ "end": 3235.1,
+ "text": "to"
+ },
+ {
+ "id": 4472,
+ "start": 3235.1,
+ "end": 3235.28,
+ "text": "have"
+ },
+ {
+ "id": 4473,
+ "start": 3235.28,
+ "end": 3235.36,
+ "text": "an"
+ },
+ {
+ "id": 4474,
+ "start": 3235.36,
+ "end": 3235.98,
+ "text": "experience"
+ },
+ {
+ "id": 4475,
+ "start": 3235.98,
+ "end": 3236.88,
+ "text": "where"
+ },
+ {
+ "id": 4476,
+ "start": 3236.88,
+ "end": 3237.36,
+ "text": "your"
+ },
+ {
+ "id": 4477,
+ "start": 3237.36,
+ "end": 3237.72,
+ "text": "ads"
+ },
+ {
+ "id": 4478,
+ "start": 3237.72,
+ "end": 3238.7,
+ "text": "aren't"
+ },
+ {
+ "id": 4479,
+ "start": 3238.7,
+ "end": 3239.1,
+ "text": "you"
+ },
+ {
+ "id": 4480,
+ "start": 3239.1,
+ "end": 3239.4,
+ "text": "aren't"
+ },
+ {
+ "id": 4481,
+ "start": 3239.4,
+ "end": 3239.86,
+ "text": "targeted"
+ },
+ {
+ "id": 4482,
+ "start": 3239.86,
+ "end": 3240.28,
+ "text": "using"
+ },
+ {
+ "id": 4483,
+ "start": 3240.28,
+ "end": 3241.04,
+ "text": "all"
+ },
+ {
+ "id": 4484,
+ "start": 3241.04,
+ "end": 3241.18,
+ "text": "the"
+ },
+ {
+ "id": 4485,
+ "start": 3241.18,
+ "end": 3241.6,
+ "text": "information"
+ },
+ {
+ "id": 4486,
+ "start": 3241.6,
+ "end": 3241.76,
+ "text": "that"
+ },
+ {
+ "id": 4487,
+ "start": 3241.76,
+ "end": 3241.84,
+ "text": "we"
+ },
+ {
+ "id": 4488,
+ "start": 3241.84,
+ "end": 3241.96,
+ "text": "have"
+ },
+ {
+ "id": 4489,
+ "start": 3241.96,
+ "end": 3242.36,
+ "text": "available,"
+ },
+ {
+ "id": 4490,
+ "start": 3242.36,
+ "end": 3243.08,
+ "text": "you"
+ },
+ {
+ "id": 4491,
+ "start": 3243.08,
+ "end": 3243.2,
+ "text": "can"
+ },
+ {
+ "id": 4492,
+ "start": 3243.2,
+ "end": 3243.4,
+ "text": "turn"
+ },
+ {
+ "id": 4493,
+ "start": 3243.4,
+ "end": 3243.6,
+ "text": "off"
+ },
+ {
+ "id": 4494,
+ "start": 3243.6,
+ "end": 3243.9,
+ "text": "third"
+ },
+ {
+ "id": 4495,
+ "start": 3243.9,
+ "end": 3244.14,
+ "text": "party"
+ },
+ {
+ "id": 4496,
+ "start": 3244.14,
+ "end": 3244.68,
+ "text": "information,"
+ },
+ {
+ "id": 4497,
+ "start": 3244.68,
+ "end": 3245.5,
+ "text": "what"
+ },
+ {
+ "id": 4498,
+ "start": 3245.5,
+ "end": 3245.6,
+ "text": "we"
+ },
+ {
+ "id": 4499,
+ "start": 3245.6,
+ "end": 3246.16,
+ "text": "found"
+ },
+ {
+ "id": 4500,
+ "start": 3246.16,
+ "end": 3246.88,
+ "text": "is"
+ },
+ {
+ "id": 4501,
+ "start": 3246.88,
+ "end": 3247.16,
+ "text": "that"
+ },
+ {
+ "id": 4502,
+ "start": 3247.16,
+ "end": 3248.02,
+ "text": "even"
+ },
+ {
+ "id": 4503,
+ "start": 3248.02,
+ "end": 3248.2,
+ "text": "though"
+ },
+ {
+ "id": 4504,
+ "start": 3248.2,
+ "end": 3248.44,
+ "text": "some"
+ },
+ {
+ "id": 4505,
+ "start": 3248.44,
+ "end": 3248.64,
+ "text": "people"
+ },
+ {
+ "id": 4506,
+ "start": 3248.64,
+ "end": 3248.94,
+ "text": "don't"
+ },
+ {
+ "id": 4507,
+ "start": 3248.94,
+ "end": 3249.14,
+ "text": "like"
+ },
+ {
+ "id": 4508,
+ "start": 3249.14,
+ "end": 3249.96,
+ "text": "ads,"
+ },
+ {
+ "id": 4509,
+ "start": 3249.96,
+ "end": 3250.62,
+ "text": "people"
+ },
+ {
+ "id": 4510,
+ "start": 3250.62,
+ "end": 3251.16,
+ "text": "really"
+ },
+ {
+ "id": 4511,
+ "start": 3251.16,
+ "end": 3251.38,
+ "text": "don't"
+ },
+ {
+ "id": 4512,
+ "start": 3251.38,
+ "end": 3251.56,
+ "text": "like,"
+ },
+ {
+ "id": 4513,
+ "start": 3251.56,
+ "end": 3251.8,
+ "text": "ads"
+ },
+ {
+ "id": 4514,
+ "start": 3251.8,
+ "end": 3251.94,
+ "text": "that"
+ },
+ {
+ "id": 4515,
+ "start": 3251.94,
+ "end": 3252.14,
+ "text": "aren't"
+ },
+ {
+ "id": 4516,
+ "start": 3252.14,
+ "end": 3252.5,
+ "text": "relevant."
+ },
+ {
+ "id": 4517,
+ "start": 3252.5,
+ "end": 3253.3,
+ "text": "And"
+ },
+ {
+ "id": 4518,
+ "start": 3253.3,
+ "end": 3254.12,
+ "text": "while"
+ },
+ {
+ "id": 4519,
+ "start": 3254.12,
+ "end": 3254.4,
+ "text": "there"
+ },
+ {
+ "id": 4520,
+ "start": 3254.4,
+ "end": 3254.52,
+ "text": "is"
+ },
+ {
+ "id": 4521,
+ "start": 3254.52,
+ "end": 3254.82,
+ "text": "some"
+ },
+ {
+ "id": 4522,
+ "start": 3254.82,
+ "end": 3255.5,
+ "text": "discomfort"
+ },
+ {
+ "id": 4523,
+ "start": 3255.5,
+ "end": 3255.88,
+ "text": "for"
+ },
+ {
+ "id": 4524,
+ "start": 3255.88,
+ "end": 3256.28,
+ "text": "sure"
+ },
+ {
+ "id": 4525,
+ "start": 3256.28,
+ "end": 3256.68,
+ "text": "with"
+ },
+ {
+ "id": 4526,
+ "start": 3256.68,
+ "end": 3257.4,
+ "text": "using"
+ },
+ {
+ "id": 4527,
+ "start": 3257.4,
+ "end": 3257.94,
+ "text": "information"
+ },
+ {
+ "id": 4528,
+ "start": 3257.94,
+ "end": 3258.12,
+ "text": "in"
+ },
+ {
+ "id": 4529,
+ "start": 3258.12,
+ "end": 3258.4,
+ "text": "making"
+ },
+ {
+ "id": 4530,
+ "start": 3258.4,
+ "end": 3259.06,
+ "text": "ads"
+ },
+ {
+ "id": 4531,
+ "start": 3259.06,
+ "end": 3260.04,
+ "text": "more"
+ },
+ {
+ "id": 4532,
+ "start": 3260.04,
+ "end": 3261.28,
+ "text": "relevant."
+ },
+ {
+ "id": 4533,
+ "start": 3261.28,
+ "end": 3261.8,
+ "text": "Overwhelming"
+ },
+ {
+ "id": 4534,
+ "start": 3261.8,
+ "end": 3262.18,
+ "text": "feedback"
+ },
+ {
+ "id": 4535,
+ "start": 3262.18,
+ "end": 3262.34,
+ "text": "that"
+ },
+ {
+ "id": 4536,
+ "start": 3262.34,
+ "end": 3262.46,
+ "text": "we"
+ },
+ {
+ "id": 4537,
+ "start": 3262.46,
+ "end": 3262.7,
+ "text": "get"
+ },
+ {
+ "id": 4538,
+ "start": 3262.7,
+ "end": 3262.92,
+ "text": "from"
+ },
+ {
+ "id": 4539,
+ "start": 3262.92,
+ "end": 3263.08,
+ "text": "our"
+ },
+ {
+ "id": 4540,
+ "start": 3263.08,
+ "end": 3263.56,
+ "text": "community"
+ },
+ {
+ "id": 4541,
+ "start": 3263.56,
+ "end": 3264.14,
+ "text": "is"
+ },
+ {
+ "id": 4542,
+ "start": 3264.14,
+ "end": 3264.3,
+ "text": "that"
+ },
+ {
+ "id": 4543,
+ "start": 3264.3,
+ "end": 3264.56,
+ "text": "people"
+ },
+ {
+ "id": 4544,
+ "start": 3264.56,
+ "end": 3264.76,
+ "text": "would"
+ },
+ {
+ "id": 4545,
+ "start": 3264.76,
+ "end": 3265.1,
+ "text": "rather"
+ },
+ {
+ "id": 4546,
+ "start": 3265.1,
+ "end": 3265.38,
+ "text": "have"
+ },
+ {
+ "id": 4547,
+ "start": 3265.38,
+ "end": 3265.6,
+ "text": "us"
+ },
+ {
+ "id": 4548,
+ "start": 3265.6,
+ "end": 3266.48,
+ "text": "show"
+ },
+ {
+ "id": 4549,
+ "start": 3266.48,
+ "end": 3266.9,
+ "text": "relevant"
+ },
+ {
+ "id": 4550,
+ "start": 3266.9,
+ "end": 3267.32,
+ "text": "content"
+ },
+ {
+ "id": 4551,
+ "start": 3267.32,
+ "end": 3267.68,
+ "text": "there"
+ },
+ {
+ "id": 4552,
+ "start": 3267.68,
+ "end": 3268.72,
+ "text": "than"
+ },
+ {
+ "id": 4553,
+ "start": 3268.72,
+ "end": 3269,
+ "text": "not"
+ },
+ {
+ "id": 4554,
+ "start": 3269,
+ "end": 3269.78,
+ "text": "so"
+ },
+ {
+ "id": 4555,
+ "start": 3269.78,
+ "end": 3269.92,
+ "text": "we"
+ },
+ {
+ "id": 4556,
+ "start": 3269.92,
+ "end": 3270.2,
+ "text": "offer"
+ },
+ {
+ "id": 4557,
+ "start": 3270.2,
+ "end": 3270.36,
+ "text": "this"
+ },
+ {
+ "id": 4558,
+ "start": 3270.36,
+ "end": 3270.78,
+ "text": "control"
+ },
+ {
+ "id": 4559,
+ "start": 3270.78,
+ "end": 3271.02,
+ "text": "that"
+ },
+ {
+ "id": 4560,
+ "start": 3271.02,
+ "end": 3271.44,
+ "text": "you're"
+ },
+ {
+ "id": 4561,
+ "start": 3271.44,
+ "end": 3272.6,
+ "text": "referencing."
+ },
+ {
+ "id": 4562,
+ "start": 3272.6,
+ "end": 3273.44,
+ "text": "Some"
+ },
+ {
+ "id": 4563,
+ "start": 3273.44,
+ "end": 3273.64,
+ "text": "people"
+ },
+ {
+ "id": 4564,
+ "start": 3273.64,
+ "end": 3273.86,
+ "text": "use"
+ },
+ {
+ "id": 4565,
+ "start": 3273.86,
+ "end": 3274,
+ "text": "it"
+ },
+ {
+ "id": 4566,
+ "start": 3274,
+ "end": 3274.88,
+ "text": "it's"
+ },
+ {
+ "id": 4567,
+ "start": 3274.88,
+ "end": 3274.98,
+ "text": "not"
+ },
+ {
+ "id": 4568,
+ "start": 3274.98,
+ "end": 3275.1,
+ "text": "the"
+ },
+ {
+ "id": 4569,
+ "start": 3275.1,
+ "end": 3275.5,
+ "text": "majority"
+ },
+ {
+ "id": 4570,
+ "start": 3275.5,
+ "end": 3275.62,
+ "text": "of"
+ },
+ {
+ "id": 4571,
+ "start": 3275.62,
+ "end": 3275.84,
+ "text": "people"
+ },
+ {
+ "id": 4572,
+ "start": 3275.84,
+ "end": 3275.98,
+ "text": "on"
+ },
+ {
+ "id": 4573,
+ "start": 3275.98,
+ "end": 3276.84,
+ "text": "Facebook."
+ },
+ {
+ "id": 4574,
+ "start": 3276.84,
+ "end": 3277.84,
+ "text": "And"
+ },
+ {
+ "id": 4575,
+ "start": 3277.84,
+ "end": 3278.16,
+ "text": "I"
+ },
+ {
+ "id": 4576,
+ "start": 3278.16,
+ "end": 3278.34,
+ "text": "think"
+ },
+ {
+ "id": 4577,
+ "start": 3278.34,
+ "end": 3278.46,
+ "text": "that"
+ },
+ {
+ "id": 4578,
+ "start": 3278.46,
+ "end": 3280.08,
+ "text": "that's"
+ },
+ {
+ "id": 4579,
+ "start": 3280.08,
+ "end": 3280.48,
+ "text": "a"
+ },
+ {
+ "id": 4580,
+ "start": 3280.48,
+ "end": 3280.7,
+ "text": "good"
+ },
+ {
+ "id": 4581,
+ "start": 3280.7,
+ "end": 3280.92,
+ "text": "level"
+ },
+ {
+ "id": 4582,
+ "start": 3280.92,
+ "end": 3281.02,
+ "text": "of"
+ },
+ {
+ "id": 4583,
+ "start": 3281.02,
+ "end": 3281.34,
+ "text": "control"
+ },
+ {
+ "id": 4584,
+ "start": 3281.34,
+ "end": 3281.5,
+ "text": "to"
+ },
+ {
+ "id": 4585,
+ "start": 3281.5,
+ "end": 3281.82,
+ "text": "offer."
+ },
+ {
+ "id": 4586,
+ "start": 3281.82,
+ "end": 3282.16,
+ "text": "I"
+ },
+ {
+ "id": 4587,
+ "start": 3282.16,
+ "end": 3282.32,
+ "text": "think"
+ },
+ {
+ "id": 4588,
+ "start": 3282.32,
+ "end": 3282.48,
+ "text": "what"
+ },
+ {
+ "id": 4589,
+ "start": 3282.48,
+ "end": 3282.78,
+ "text": "Cheryl"
+ },
+ {
+ "id": 4590,
+ "start": 3282.78,
+ "end": 3282.94,
+ "text": "was"
+ },
+ {
+ "id": 4591,
+ "start": 3282.94,
+ "end": 3283.26,
+ "text": "saying"
+ },
+ {
+ "id": 4592,
+ "start": 3283.26,
+ "end": 3283.62,
+ "text": "was"
+ },
+ {
+ "id": 4593,
+ "start": 3283.62,
+ "end": 3283.92,
+ "text": "that"
+ },
+ {
+ "id": 4594,
+ "start": 3283.92,
+ "end": 3284.4,
+ "text": "in"
+ },
+ {
+ "id": 4595,
+ "start": 3284.4,
+ "end": 3284.62,
+ "text": "order"
+ },
+ {
+ "id": 4596,
+ "start": 3284.62,
+ "end": 3284.72,
+ "text": "to"
+ },
+ {
+ "id": 4597,
+ "start": 3284.72,
+ "end": 3284.92,
+ "text": "not"
+ },
+ {
+ "id": 4598,
+ "start": 3284.92,
+ "end": 3285.14,
+ "text": "run"
+ },
+ {
+ "id": 4599,
+ "start": 3285.14,
+ "end": 3285.38,
+ "text": "ads"
+ },
+ {
+ "id": 4600,
+ "start": 3285.38,
+ "end": 3285.5,
+ "text": "at"
+ },
+ {
+ "id": 4601,
+ "start": 3285.5,
+ "end": 3285.78,
+ "text": "all."
+ },
+ {
+ "id": 4602,
+ "start": 3285.78,
+ "end": 3286,
+ "text": "We"
+ },
+ {
+ "id": 4603,
+ "start": 3286,
+ "end": 3286.16,
+ "text": "would"
+ },
+ {
+ "id": 4604,
+ "start": 3286.16,
+ "end": 3286.34,
+ "text": "still"
+ },
+ {
+ "id": 4605,
+ "start": 3286.34,
+ "end": 3286.5,
+ "text": "need"
+ },
+ {
+ "id": 4606,
+ "start": 3286.5,
+ "end": 3286.7,
+ "text": "some"
+ },
+ {
+ "id": 4607,
+ "start": 3286.7,
+ "end": 3286.9,
+ "text": "sort"
+ },
+ {
+ "id": 4608,
+ "start": 3286.9,
+ "end": 3287,
+ "text": "of"
+ },
+ {
+ "id": 4609,
+ "start": 3287,
+ "end": 3287.34,
+ "text": "business"
+ },
+ {
+ "id": 4610,
+ "start": 3287.34,
+ "end": 3288.42,
+ "text": "model"
+ },
+ {
+ "id": 4611,
+ "start": 3288.42,
+ "end": 3289.42,
+ "text": "and"
+ },
+ {
+ "id": 4612,
+ "start": 3289.42,
+ "end": 3289.64,
+ "text": "that"
+ },
+ {
+ "id": 4613,
+ "start": 3289.64,
+ "end": 3289.88,
+ "text": "is"
+ },
+ {
+ "id": 4614,
+ "start": 3289.88,
+ "end": 3290.12,
+ "text": "your"
+ },
+ {
+ "id": 4615,
+ "start": 3290.12,
+ "end": 3290.58,
+ "text": "business"
+ },
+ {
+ "id": 4616,
+ "start": 3290.58,
+ "end": 3290.92,
+ "text": "model."
+ },
+ {
+ "id": 4617,
+ "start": 3290.92,
+ "end": 3291.3,
+ "text": "So"
+ },
+ {
+ "id": 4618,
+ "start": 3291.3,
+ "end": 3291.72,
+ "text": "I"
+ },
+ {
+ "id": 4619,
+ "start": 3291.72,
+ "end": 3292.14,
+ "text": "take"
+ },
+ {
+ "id": 4620,
+ "start": 3292.14,
+ "end": 3292.24,
+ "text": "it"
+ },
+ {
+ "id": 4621,
+ "start": 3292.24,
+ "end": 3293.42,
+ "text": "that"
+ },
+ {
+ "id": 4622,
+ "start": 3293.42,
+ "end": 3294.38,
+ "text": "and"
+ },
+ {
+ "id": 4623,
+ "start": 3294.38,
+ "end": 3294.48,
+ "text": "I"
+ },
+ {
+ "id": 4624,
+ "start": 3294.48,
+ "end": 3294.78,
+ "text": "use"
+ },
+ {
+ "id": 4625,
+ "start": 3294.78,
+ "end": 3294.98,
+ "text": "the"
+ },
+ {
+ "id": 4626,
+ "start": 3294.98,
+ "end": 3295.48,
+ "text": "harmless"
+ },
+ {
+ "id": 4627,
+ "start": 3295.48,
+ "end": 3296.1,
+ "text": "example"
+ },
+ {
+ "id": 4628,
+ "start": 3296.1,
+ "end": 3296.24,
+ "text": "of"
+ },
+ {
+ "id": 4629,
+ "start": 3296.24,
+ "end": 3296.84,
+ "text": "chocolate."
+ },
+ {
+ "id": 4630,
+ "start": 3296.84,
+ "end": 3297.04,
+ "text": "But"
+ },
+ {
+ "id": 4631,
+ "start": 3297.04,
+ "end": 3297.16,
+ "text": "if"
+ },
+ {
+ "id": 4632,
+ "start": 3297.16,
+ "end": 3297.34,
+ "text": "it"
+ },
+ {
+ "id": 4633,
+ "start": 3297.34,
+ "end": 3297.56,
+ "text": "got"
+ },
+ {
+ "id": 4634,
+ "start": 3297.56,
+ "end": 3297.98,
+ "text": "into"
+ },
+ {
+ "id": 4635,
+ "start": 3297.98,
+ "end": 3298.28,
+ "text": "more"
+ },
+ {
+ "id": 4636,
+ "start": 3298.28,
+ "end": 3298.94,
+ "text": "personal"
+ },
+ {
+ "id": 4637,
+ "start": 3298.94,
+ "end": 3299.36,
+ "text": "thing"
+ },
+ {
+ "id": 4638,
+ "start": 3299.36,
+ "end": 3300.28,
+ "text": "communicating"
+ },
+ {
+ "id": 4639,
+ "start": 3300.28,
+ "end": 3300.66,
+ "text": "with"
+ },
+ {
+ "id": 4640,
+ "start": 3300.66,
+ "end": 3301.64,
+ "text": "friends"
+ },
+ {
+ "id": 4641,
+ "start": 3301.64,
+ "end": 3302.62,
+ "text": "and"
+ },
+ {
+ "id": 4642,
+ "start": 3302.62,
+ "end": 3302.8,
+ "text": "I"
+ },
+ {
+ "id": 4643,
+ "start": 3302.8,
+ "end": 3303.02,
+ "text": "want"
+ },
+ {
+ "id": 4644,
+ "start": 3303.02,
+ "end": 3303.12,
+ "text": "to"
+ },
+ {
+ "id": 4645,
+ "start": 3303.12,
+ "end": 3303.34,
+ "text": "cut"
+ },
+ {
+ "id": 4646,
+ "start": 3303.34,
+ "end": 3303.48,
+ "text": "it"
+ },
+ {
+ "id": 4647,
+ "start": 3303.48,
+ "end": 3304.48,
+ "text": "off"
+ },
+ {
+ "id": 4648,
+ "start": 3304.48,
+ "end": 3305.3,
+ "text": "I'm"
+ },
+ {
+ "id": 4649,
+ "start": 3305.3,
+ "end": 3305.52,
+ "text": "going"
+ },
+ {
+ "id": 4650,
+ "start": 3305.52,
+ "end": 3305.6,
+ "text": "to"
+ },
+ {
+ "id": 4651,
+ "start": 3305.6,
+ "end": 3305.82,
+ "text": "have"
+ },
+ {
+ "id": 4652,
+ "start": 3305.82,
+ "end": 3305.96,
+ "text": "to"
+ },
+ {
+ "id": 4653,
+ "start": 3305.96,
+ "end": 3306.18,
+ "text": "pay"
+ },
+ {
+ "id": 4654,
+ "start": 3306.18,
+ "end": 3307.34,
+ "text": "you"
+ },
+ {
+ "id": 4655,
+ "start": 3307.34,
+ "end": 3308.36,
+ "text": "in"
+ },
+ {
+ "id": 4656,
+ "start": 3308.36,
+ "end": 3309.06,
+ "text": "order,"
+ },
+ {
+ "id": 4657,
+ "start": 3309.06,
+ "end": 3309.5,
+ "text": "not"
+ },
+ {
+ "id": 4658,
+ "start": 3309.5,
+ "end": 3309.86,
+ "text": "to"
+ },
+ {
+ "id": 4659,
+ "start": 3309.86,
+ "end": 3310.32,
+ "text": "send"
+ },
+ {
+ "id": 4660,
+ "start": 3310.32,
+ "end": 3311.26,
+ "text": "me"
+ },
+ {
+ "id": 4661,
+ "start": 3311.26,
+ "end": 3312.22,
+ "text": "using"
+ },
+ {
+ "id": 4662,
+ "start": 3312.22,
+ "end": 3312.56,
+ "text": "my"
+ },
+ {
+ "id": 4663,
+ "start": 3312.56,
+ "end": 3313.02,
+ "text": "personal"
+ },
+ {
+ "id": 4664,
+ "start": 3313.02,
+ "end": 3313.86,
+ "text": "information."
+ },
+ {
+ "id": 4665,
+ "start": 3313.86,
+ "end": 3315.02,
+ "text": "Something"
+ },
+ {
+ "id": 4666,
+ "start": 3315.02,
+ "end": 3315.22,
+ "text": "that"
+ },
+ {
+ "id": 4667,
+ "start": 3315.22,
+ "end": 3315.36,
+ "text": "I"
+ },
+ {
+ "id": 4668,
+ "start": 3315.36,
+ "end": 3315.64,
+ "text": "don't"
+ },
+ {
+ "id": 4669,
+ "start": 3315.64,
+ "end": 3316.2,
+ "text": "want"
+ },
+ {
+ "id": 4670,
+ "start": 3316.2,
+ "end": 3317.18,
+ "text": "that"
+ },
+ {
+ "id": 4671,
+ "start": 3317.18,
+ "end": 3317.62,
+ "text": "in"
+ },
+ {
+ "id": 4672,
+ "start": 3317.62,
+ "end": 3318.04,
+ "text": "essence"
+ },
+ {
+ "id": 4673,
+ "start": 3318.04,
+ "end": 3318.24,
+ "text": "is"
+ },
+ {
+ "id": 4674,
+ "start": 3318.24,
+ "end": 3318.46,
+ "text": "what"
+ },
+ {
+ "id": 4675,
+ "start": 3318.46,
+ "end": 3318.54,
+ "text": "I"
+ },
+ {
+ "id": 4676,
+ "start": 3318.54,
+ "end": 3319.3,
+ "text": "understood"
+ },
+ {
+ "id": 4677,
+ "start": 3319.3,
+ "end": 3319.6,
+ "text": "miss"
+ },
+ {
+ "id": 4678,
+ "start": 3319.6,
+ "end": 3320.12,
+ "text": "Sandberg"
+ },
+ {
+ "id": 4679,
+ "start": 3320.12,
+ "end": 3320.28,
+ "text": "to"
+ },
+ {
+ "id": 4680,
+ "start": 3320.28,
+ "end": 3320.56,
+ "text": "say,"
+ },
+ {
+ "id": 4681,
+ "start": 3320.56,
+ "end": 3320.72,
+ "text": "is"
+ },
+ {
+ "id": 4682,
+ "start": 3320.72,
+ "end": 3320.94,
+ "text": "that"
+ },
+ {
+ "id": 4683,
+ "start": 3320.94,
+ "end": 3321.96,
+ "text": "correct?"
+ },
+ {
+ "id": 4684,
+ "start": 3321.96,
+ "end": 3322.74,
+ "text": "Yes,"
+ },
+ {
+ "id": 4685,
+ "start": 3322.74,
+ "end": 3323.24,
+ "text": "Senator,"
+ },
+ {
+ "id": 4686,
+ "start": 3323.24,
+ "end": 3323.66,
+ "text": "although"
+ },
+ {
+ "id": 4687,
+ "start": 3323.66,
+ "end": 3323.88,
+ "text": "to"
+ },
+ {
+ "id": 4688,
+ "start": 3323.88,
+ "end": 3324.04,
+ "text": "be"
+ },
+ {
+ "id": 4689,
+ "start": 3324.04,
+ "end": 3324.3,
+ "text": "clear,"
+ },
+ {
+ "id": 4690,
+ "start": 3324.3,
+ "end": 3324.46,
+ "text": "we"
+ },
+ {
+ "id": 4691,
+ "start": 3324.46,
+ "end": 3324.72,
+ "text": "don't"
+ },
+ {
+ "id": 4692,
+ "start": 3324.72,
+ "end": 3325.08,
+ "text": "offer"
+ },
+ {
+ "id": 4693,
+ "start": 3325.08,
+ "end": 3325.22,
+ "text": "an"
+ },
+ {
+ "id": 4694,
+ "start": 3325.22,
+ "end": 3325.58,
+ "text": "option"
+ },
+ {
+ "id": 4695,
+ "start": 3325.58,
+ "end": 3325.94,
+ "text": "today"
+ },
+ {
+ "id": 4696,
+ "start": 3325.94,
+ "end": 3326.22,
+ "text": "for"
+ },
+ {
+ "id": 4697,
+ "start": 3326.22,
+ "end": 3326.46,
+ "text": "people"
+ },
+ {
+ "id": 4698,
+ "start": 3326.46,
+ "end": 3326.62,
+ "text": "to"
+ },
+ {
+ "id": 4699,
+ "start": 3326.62,
+ "end": 3326.84,
+ "text": "pay"
+ },
+ {
+ "id": 4700,
+ "start": 3326.84,
+ "end": 3326.96,
+ "text": "to"
+ },
+ {
+ "id": 4701,
+ "start": 3326.96,
+ "end": 3327.2,
+ "text": "not"
+ },
+ {
+ "id": 4702,
+ "start": 3327.2,
+ "end": 3327.42,
+ "text": "show"
+ },
+ {
+ "id": 4703,
+ "start": 3327.42,
+ "end": 3327.74,
+ "text": "ads,"
+ },
+ {
+ "id": 4704,
+ "start": 3327.74,
+ "end": 3328.32,
+ "text": "we"
+ },
+ {
+ "id": 4705,
+ "start": 3328.32,
+ "end": 3328.54,
+ "text": "think"
+ },
+ {
+ "id": 4706,
+ "start": 3328.54,
+ "end": 3328.94,
+ "text": "offering"
+ },
+ {
+ "id": 4707,
+ "start": 3328.94,
+ "end": 3329.02,
+ "text": "an"
+ },
+ {
+ "id": 4708,
+ "start": 3329.02,
+ "end": 3329.2,
+ "text": "ad"
+ },
+ {
+ "id": 4709,
+ "start": 3329.2,
+ "end": 3329.68,
+ "text": "supported"
+ },
+ {
+ "id": 4710,
+ "start": 3329.68,
+ "end": 3330.1,
+ "text": "service"
+ },
+ {
+ "id": 4711,
+ "start": 3330.1,
+ "end": 3330.66,
+ "text": "is"
+ },
+ {
+ "id": 4712,
+ "start": 3330.66,
+ "end": 3330.8,
+ "text": "the"
+ },
+ {
+ "id": 4713,
+ "start": 3330.8,
+ "end": 3331,
+ "text": "most"
+ },
+ {
+ "id": 4714,
+ "start": 3331,
+ "end": 3331.36,
+ "text": "aligned"
+ },
+ {
+ "id": 4715,
+ "start": 3331.36,
+ "end": 3331.5,
+ "text": "with"
+ },
+ {
+ "id": 4716,
+ "start": 3331.5,
+ "end": 3331.62,
+ "text": "our"
+ },
+ {
+ "id": 4717,
+ "start": 3331.62,
+ "end": 3331.92,
+ "text": "mission"
+ },
+ {
+ "id": 4718,
+ "start": 3331.92,
+ "end": 3332.06,
+ "text": "of"
+ },
+ {
+ "id": 4719,
+ "start": 3332.06,
+ "end": 3332.36,
+ "text": "trying"
+ },
+ {
+ "id": 4720,
+ "start": 3332.36,
+ "end": 3332.46,
+ "text": "to"
+ },
+ {
+ "id": 4721,
+ "start": 3332.46,
+ "end": 3332.62,
+ "text": "help"
+ },
+ {
+ "id": 4722,
+ "start": 3332.62,
+ "end": 3332.9,
+ "text": "connect"
+ },
+ {
+ "id": 4723,
+ "start": 3332.9,
+ "end": 3333.22,
+ "text": "everyone"
+ },
+ {
+ "id": 4724,
+ "start": 3333.22,
+ "end": 3333.3,
+ "text": "in"
+ },
+ {
+ "id": 4725,
+ "start": 3333.3,
+ "end": 3333.4,
+ "text": "the"
+ },
+ {
+ "id": 4726,
+ "start": 3333.4,
+ "end": 3333.68,
+ "text": "world."
+ },
+ {
+ "id": 4727,
+ "start": 3333.68,
+ "end": 3334.4,
+ "text": "Because"
+ },
+ {
+ "id": 4728,
+ "start": 3334.4,
+ "end": 3334.8,
+ "text": "we"
+ },
+ {
+ "id": 4729,
+ "start": 3334.8,
+ "end": 3334.98,
+ "text": "want"
+ },
+ {
+ "id": 4730,
+ "start": 3334.98,
+ "end": 3335.06,
+ "text": "to"
+ },
+ {
+ "id": 4731,
+ "start": 3335.06,
+ "end": 3335.36,
+ "text": "offer"
+ },
+ {
+ "id": 4732,
+ "start": 3335.36,
+ "end": 3335.44,
+ "text": "a"
+ },
+ {
+ "id": 4733,
+ "start": 3335.44,
+ "end": 3335.82,
+ "text": "free"
+ },
+ {
+ "id": 4734,
+ "start": 3335.82,
+ "end": 3336.12,
+ "text": "service"
+ },
+ {
+ "id": 4735,
+ "start": 3336.12,
+ "end": 3336.32,
+ "text": "that"
+ },
+ {
+ "id": 4736,
+ "start": 3336.32,
+ "end": 3336.62,
+ "text": "everyone"
+ },
+ {
+ "id": 4737,
+ "start": 3336.62,
+ "end": 3336.78,
+ "text": "can"
+ },
+ {
+ "id": 4738,
+ "start": 3336.78,
+ "end": 3337.12,
+ "text": "afford."
+ },
+ {
+ "id": 4739,
+ "start": 3337.12,
+ "end": 3337.58,
+ "text": "OK"
+ },
+ {
+ "id": 4740,
+ "start": 3337.58,
+ "end": 3337.76,
+ "text": "that's"
+ },
+ {
+ "id": 4741,
+ "start": 3337.76,
+ "end": 3337.88,
+ "text": "the"
+ },
+ {
+ "id": 4742,
+ "start": 3337.88,
+ "end": 3338.04,
+ "text": "only"
+ },
+ {
+ "id": 4743,
+ "start": 3338.04,
+ "end": 3338.2,
+ "text": "way"
+ },
+ {
+ "id": 4744,
+ "start": 3338.2,
+ "end": 3338.34,
+ "text": "that"
+ },
+ {
+ "id": 4745,
+ "start": 3338.34,
+ "end": 3338.44,
+ "text": "we"
+ },
+ {
+ "id": 4746,
+ "start": 3338.44,
+ "end": 3338.6,
+ "text": "can"
+ },
+ {
+ "id": 4747,
+ "start": 3338.6,
+ "end": 3338.82,
+ "text": "reach"
+ },
+ {
+ "id": 4748,
+ "start": 3338.82,
+ "end": 3339.22,
+ "text": "billions"
+ },
+ {
+ "id": 4749,
+ "start": 3339.22,
+ "end": 3339.36,
+ "text": "of"
+ },
+ {
+ "id": 4750,
+ "start": 3339.36,
+ "end": 3339.62,
+ "text": "people."
+ },
+ {
+ "id": 4751,
+ "start": 3339.62,
+ "end": 3340.3,
+ "text": "So"
+ },
+ {
+ "id": 4752,
+ "start": 3340.3,
+ "end": 3341.16,
+ "text": "therefore"
+ },
+ {
+ "id": 4753,
+ "start": 3341.16,
+ "end": 3341.46,
+ "text": "you"
+ },
+ {
+ "id": 4754,
+ "start": 3341.46,
+ "end": 3342.1,
+ "text": "consider"
+ },
+ {
+ "id": 4755,
+ "start": 3342.1,
+ "end": 3342.48,
+ "text": "my"
+ },
+ {
+ "id": 4756,
+ "start": 3342.48,
+ "end": 3343.14,
+ "text": "personally,"
+ },
+ {
+ "id": 4757,
+ "start": 3343.14,
+ "end": 3344.1,
+ "text": "identifiable"
+ },
+ {
+ "id": 4758,
+ "start": 3344.1,
+ "end": 3345.1,
+ "text": "data,"
+ },
+ {
+ "id": 4759,
+ "start": 3345.1,
+ "end": 3345.84,
+ "text": "the"
+ },
+ {
+ "id": 4760,
+ "start": 3345.84,
+ "end": 3346.5,
+ "text": "company's"
+ },
+ {
+ "id": 4761,
+ "start": 3346.5,
+ "end": 3347,
+ "text": "data."
+ },
+ {
+ "id": 4762,
+ "start": 3347,
+ "end": 3347.5,
+ "text": "Not"
+ },
+ {
+ "id": 4763,
+ "start": 3347.5,
+ "end": 3347.8,
+ "text": "my"
+ },
+ {
+ "id": 4764,
+ "start": 3347.8,
+ "end": 3348.2,
+ "text": "data,"
+ },
+ {
+ "id": 4765,
+ "start": 3348.2,
+ "end": 3348.58,
+ "text": "is"
+ },
+ {
+ "id": 4766,
+ "start": 3348.58,
+ "end": 3348.8,
+ "text": "that"
+ },
+ {
+ "id": 4767,
+ "start": 3348.8,
+ "end": 3349.68,
+ "text": "it?"
+ },
+ {
+ "id": 4768,
+ "start": 3349.68,
+ "end": 3350.5,
+ "text": "No,"
+ },
+ {
+ "id": 4769,
+ "start": 3350.5,
+ "end": 3350.94,
+ "text": "Senator,"
+ },
+ {
+ "id": 4770,
+ "start": 3350.94,
+ "end": 3351.64,
+ "text": "actually."
+ },
+ {
+ "id": 4771,
+ "start": 3351.64,
+ "end": 3351.84,
+ "text": "At"
+ },
+ {
+ "id": 4772,
+ "start": 3351.84,
+ "end": 3352.2,
+ "text": "the"
+ },
+ {
+ "id": 4773,
+ "start": 3352.2,
+ "end": 3352.52,
+ "text": "first"
+ },
+ {
+ "id": 4774,
+ "start": 3352.52,
+ "end": 3352.9,
+ "text": "line"
+ },
+ {
+ "id": 4775,
+ "start": 3352.9,
+ "end": 3353.1,
+ "text": "of"
+ },
+ {
+ "id": 4776,
+ "start": 3353.1,
+ "end": 3353.3,
+ "text": "our"
+ },
+ {
+ "id": 4777,
+ "start": 3353.3,
+ "end": 3353.6,
+ "text": "terms"
+ },
+ {
+ "id": 4778,
+ "start": 3353.6,
+ "end": 3353.74,
+ "text": "of"
+ },
+ {
+ "id": 4779,
+ "start": 3353.74,
+ "end": 3354.16,
+ "text": "service"
+ },
+ {
+ "id": 4780,
+ "start": 3354.16,
+ "end": 3354.94,
+ "text": "say"
+ },
+ {
+ "id": 4781,
+ "start": 3354.94,
+ "end": 3355.14,
+ "text": "that"
+ },
+ {
+ "id": 4782,
+ "start": 3355.14,
+ "end": 3355.3,
+ "text": "you"
+ },
+ {
+ "id": 4783,
+ "start": 3355.3,
+ "end": 3355.88,
+ "text": "control"
+ },
+ {
+ "id": 4784,
+ "start": 3355.88,
+ "end": 3356,
+ "text": "and"
+ },
+ {
+ "id": 4785,
+ "start": 3356,
+ "end": 3356.22,
+ "text": "own"
+ },
+ {
+ "id": 4786,
+ "start": 3356.22,
+ "end": 3356.42,
+ "text": "the"
+ },
+ {
+ "id": 4787,
+ "start": 3356.42,
+ "end": 3357.02,
+ "text": "information"
+ },
+ {
+ "id": 4788,
+ "start": 3357.02,
+ "end": 3357.18,
+ "text": "and"
+ },
+ {
+ "id": 4789,
+ "start": 3357.18,
+ "end": 3357.58,
+ "text": "content"
+ },
+ {
+ "id": 4790,
+ "start": 3357.58,
+ "end": 3357.72,
+ "text": "that"
+ },
+ {
+ "id": 4791,
+ "start": 3357.72,
+ "end": 3357.88,
+ "text": "you"
+ },
+ {
+ "id": 4792,
+ "start": 3357.88,
+ "end": 3358.02,
+ "text": "put"
+ },
+ {
+ "id": 4793,
+ "start": 3358.02,
+ "end": 3358.18,
+ "text": "on"
+ },
+ {
+ "id": 4794,
+ "start": 3358.18,
+ "end": 3360.62,
+ "text": "Facebook."
+ },
+ {
+ "id": 4795,
+ "start": 3360.62,
+ "end": 3361.62,
+ "text": "Well,"
+ },
+ {
+ "id": 4796,
+ "start": 3361.62,
+ "end": 3361.94,
+ "text": "the"
+ },
+ {
+ "id": 4797,
+ "start": 3361.94,
+ "end": 3362.36,
+ "text": "recent"
+ },
+ {
+ "id": 4798,
+ "start": 3362.36,
+ "end": 3363.14,
+ "text": "scandal"
+ },
+ {
+ "id": 4799,
+ "start": 3363.14,
+ "end": 3365.22,
+ "text": "is"
+ },
+ {
+ "id": 4800,
+ "start": 3365.22,
+ "end": 3365.92,
+ "text": "obviously"
+ },
+ {
+ "id": 4801,
+ "start": 3365.92,
+ "end": 3366.8,
+ "text": "frustrating."
+ },
+ {
+ "id": 4802,
+ "start": 3366.8,
+ "end": 3367.7,
+ "text": "Not"
+ },
+ {
+ "id": 4803,
+ "start": 3367.7,
+ "end": 3367.96,
+ "text": "only"
+ },
+ {
+ "id": 4804,
+ "start": 3367.96,
+ "end": 3368.38,
+ "text": "because"
+ },
+ {
+ "id": 4805,
+ "start": 3368.38,
+ "end": 3368.58,
+ "text": "it"
+ },
+ {
+ "id": 4806,
+ "start": 3368.58,
+ "end": 3369.12,
+ "text": "affected"
+ },
+ {
+ "id": 4807,
+ "start": 3369.12,
+ "end": 3370.44,
+ "text": "87,000,000"
+ },
+ {
+ "id": 4808,
+ "start": 3370.44,
+ "end": 3370.9,
+ "text": "but"
+ },
+ {
+ "id": 4809,
+ "start": 3370.9,
+ "end": 3371.8,
+ "text": "because"
+ },
+ {
+ "id": 4810,
+ "start": 3371.8,
+ "end": 3372.02,
+ "text": "it"
+ },
+ {
+ "id": 4811,
+ "start": 3372.02,
+ "end": 3372.36,
+ "text": "seems"
+ },
+ {
+ "id": 4812,
+ "start": 3372.36,
+ "end": 3372.52,
+ "text": "to"
+ },
+ {
+ "id": 4813,
+ "start": 3372.52,
+ "end": 3372.66,
+ "text": "be"
+ },
+ {
+ "id": 4814,
+ "start": 3372.66,
+ "end": 3373.04,
+ "text": "part"
+ },
+ {
+ "id": 4815,
+ "start": 3373.04,
+ "end": 3373.44,
+ "text": "of"
+ },
+ {
+ "id": 4816,
+ "start": 3373.44,
+ "end": 3373.98,
+ "text": "a"
+ },
+ {
+ "id": 4817,
+ "start": 3373.98,
+ "end": 3374.94,
+ "text": "of"
+ },
+ {
+ "id": 4818,
+ "start": 3374.94,
+ "end": 3375.8,
+ "text": "lax"
+ },
+ {
+ "id": 4819,
+ "start": 3375.8,
+ "end": 3376.22,
+ "text": "data"
+ },
+ {
+ "id": 4820,
+ "start": 3376.22,
+ "end": 3377.02,
+ "text": "practices"
+ },
+ {
+ "id": 4821,
+ "start": 3377.02,
+ "end": 3377.36,
+ "text": "by"
+ },
+ {
+ "id": 4822,
+ "start": 3377.36,
+ "end": 3377.5,
+ "text": "the"
+ },
+ {
+ "id": 4823,
+ "start": 3377.5,
+ "end": 3377.96,
+ "text": "company"
+ },
+ {
+ "id": 4824,
+ "start": 3377.96,
+ "end": 3378.28,
+ "text": "going"
+ },
+ {
+ "id": 4825,
+ "start": 3378.28,
+ "end": 3378.6,
+ "text": "back"
+ },
+ {
+ "id": 4826,
+ "start": 3378.6,
+ "end": 3378.96,
+ "text": "years."
+ },
+ {
+ "id": 4827,
+ "start": 3378.96,
+ "end": 3379.62,
+ "text": "So"
+ },
+ {
+ "id": 4828,
+ "start": 3379.62,
+ "end": 3379.96,
+ "text": "back"
+ },
+ {
+ "id": 4829,
+ "start": 3379.96,
+ "end": 3380.22,
+ "text": "in"
+ },
+ {
+ "id": 4830,
+ "start": 3380.22,
+ "end": 3380.74,
+ "text": "20"
+ },
+ {
+ "id": 4831,
+ "start": 3380.74,
+ "end": 3381.4,
+ "text": "11"
+ },
+ {
+ "id": 4832,
+ "start": 3381.4,
+ "end": 3381.78,
+ "text": "it"
+ },
+ {
+ "id": 4833,
+ "start": 3381.78,
+ "end": 3381.92,
+ "text": "was"
+ },
+ {
+ "id": 4834,
+ "start": 3381.92,
+ "end": 3382.06,
+ "text": "a"
+ },
+ {
+ "id": 4835,
+ "start": 3382.06,
+ "end": 3382.64,
+ "text": "settlement"
+ },
+ {
+ "id": 4836,
+ "start": 3382.64,
+ "end": 3382.82,
+ "text": "with"
+ },
+ {
+ "id": 4837,
+ "start": 3382.82,
+ "end": 3382.94,
+ "text": "the"
+ },
+ {
+ "id": 4838,
+ "start": 3382.94,
+ "end": 3383.76,
+ "text": "FTC."
+ },
+ {
+ "id": 4839,
+ "start": 3383.76,
+ "end": 3383.94,
+ "text": "And"
+ },
+ {
+ "id": 4840,
+ "start": 3383.94,
+ "end": 3384.34,
+ "text": "now"
+ },
+ {
+ "id": 4841,
+ "start": 3384.34,
+ "end": 3385.2,
+ "text": "we"
+ },
+ {
+ "id": 4842,
+ "start": 3385.2,
+ "end": 3385.74,
+ "text": "discover"
+ },
+ {
+ "id": 4843,
+ "start": 3385.74,
+ "end": 3385.96,
+ "text": "yet"
+ },
+ {
+ "id": 4844,
+ "start": 3385.96,
+ "end": 3386.38,
+ "text": "another"
+ },
+ {
+ "id": 4845,
+ "start": 3386.38,
+ "end": 3387.34,
+ "text": "incidence"
+ },
+ {
+ "id": 4846,
+ "start": 3387.34,
+ "end": 3388,
+ "text": "where"
+ },
+ {
+ "id": 4847,
+ "start": 3388,
+ "end": 3388.68,
+ "text": "the"
+ },
+ {
+ "id": 4848,
+ "start": 3388.68,
+ "end": 3389.38,
+ "text": "data"
+ },
+ {
+ "id": 4849,
+ "start": 3389.38,
+ "end": 3389.86,
+ "text": "was"
+ },
+ {
+ "id": 4850,
+ "start": 3389.86,
+ "end": 3390.68,
+ "text": "failed"
+ },
+ {
+ "id": 4851,
+ "start": 3390.68,
+ "end": 3390.88,
+ "text": "to"
+ },
+ {
+ "id": 4852,
+ "start": 3390.88,
+ "end": 3391.08,
+ "text": "be"
+ },
+ {
+ "id": 4853,
+ "start": 3391.08,
+ "end": 3391.74,
+ "text": "protected."
+ },
+ {
+ "id": 4854,
+ "start": 3391.74,
+ "end": 3392.3,
+ "text": "When"
+ },
+ {
+ "id": 4855,
+ "start": 3392.3,
+ "end": 3392.48,
+ "text": "you"
+ },
+ {
+ "id": 4856,
+ "start": 3392.48,
+ "end": 3393.3,
+ "text": "discovered"
+ },
+ {
+ "id": 4857,
+ "start": 3393.3,
+ "end": 3393.54,
+ "text": "the"
+ },
+ {
+ "id": 4858,
+ "start": 3393.54,
+ "end": 3394.24,
+ "text": "Cambridge"
+ },
+ {
+ "id": 4859,
+ "start": 3394.24,
+ "end": 3395.22,
+ "text": "Analytica"
+ },
+ {
+ "id": 4860,
+ "start": 3395.22,
+ "end": 3395.78,
+ "text": "that"
+ },
+ {
+ "id": 4861,
+ "start": 3395.78,
+ "end": 3396.1,
+ "text": "had"
+ },
+ {
+ "id": 4862,
+ "start": 3396.1,
+ "end": 3396.52,
+ "text": "fraud"
+ },
+ {
+ "id": 4863,
+ "start": 3396.52,
+ "end": 3396.9,
+ "text": "only"
+ },
+ {
+ "id": 4864,
+ "start": 3396.9,
+ "end": 3397.7,
+ "text": "obtained"
+ },
+ {
+ "id": 4865,
+ "start": 3397.7,
+ "end": 3397.96,
+ "text": "all"
+ },
+ {
+ "id": 4866,
+ "start": 3397.96,
+ "end": 3398.06,
+ "text": "of"
+ },
+ {
+ "id": 4867,
+ "start": 3398.06,
+ "end": 3398.26,
+ "text": "this"
+ },
+ {
+ "id": 4868,
+ "start": 3398.26,
+ "end": 3399.42,
+ "text": "information."
+ },
+ {
+ "id": 4869,
+ "start": 3399.42,
+ "end": 3400.48,
+ "text": "Why"
+ },
+ {
+ "id": 4870,
+ "start": 3400.48,
+ "end": 3400.82,
+ "text": "didn't"
+ },
+ {
+ "id": 4871,
+ "start": 3400.82,
+ "end": 3401.04,
+ "text": "you"
+ },
+ {
+ "id": 4872,
+ "start": 3401.04,
+ "end": 3401.82,
+ "text": "inform"
+ },
+ {
+ "id": 4873,
+ "start": 3401.82,
+ "end": 3402.46,
+ "text": "those"
+ },
+ {
+ "id": 4874,
+ "start": 3402.46,
+ "end": 3405,
+ "text": "87,000,000"
+ },
+ {
+ "id": 4875,
+ "start": 3405,
+ "end": 3406.1,
+ "text": "when"
+ },
+ {
+ "id": 4876,
+ "start": 3406.1,
+ "end": 3406.24,
+ "text": "we"
+ },
+ {
+ "id": 4877,
+ "start": 3406.24,
+ "end": 3406.58,
+ "text": "learned"
+ },
+ {
+ "id": 4878,
+ "start": 3406.58,
+ "end": 3406.84,
+ "text": "in"
+ },
+ {
+ "id": 4879,
+ "start": 3406.84,
+ "end": 3407.16,
+ "text": "20"
+ },
+ {
+ "id": 4880,
+ "start": 3407.16,
+ "end": 3407.7,
+ "text": "15"
+ },
+ {
+ "id": 4881,
+ "start": 3407.7,
+ "end": 3408.7,
+ "text": "that"
+ },
+ {
+ "id": 4882,
+ "start": 3408.7,
+ "end": 3409.1,
+ "text": "Cambridge"
+ },
+ {
+ "id": 4883,
+ "start": 3409.1,
+ "end": 3409.58,
+ "text": "Analytica"
+ },
+ {
+ "id": 4884,
+ "start": 3409.58,
+ "end": 3410.3,
+ "text": "had"
+ },
+ {
+ "id": 4885,
+ "start": 3410.3,
+ "end": 3411.36,
+ "text": "bought"
+ },
+ {
+ "id": 4886,
+ "start": 3411.36,
+ "end": 3411.86,
+ "text": "data"
+ },
+ {
+ "id": 4887,
+ "start": 3411.86,
+ "end": 3412.28,
+ "text": "from"
+ },
+ {
+ "id": 4888,
+ "start": 3412.28,
+ "end": 3412.38,
+ "text": "an"
+ },
+ {
+ "id": 4889,
+ "start": 3412.38,
+ "end": 3412.58,
+ "text": "app"
+ },
+ {
+ "id": 4890,
+ "start": 3412.58,
+ "end": 3413.04,
+ "text": "developer"
+ },
+ {
+ "id": 4891,
+ "start": 3413.04,
+ "end": 3413.18,
+ "text": "on"
+ },
+ {
+ "id": 4892,
+ "start": 3413.18,
+ "end": 3413.64,
+ "text": "Facebook"
+ },
+ {
+ "id": 4893,
+ "start": 3413.64,
+ "end": 3413.8,
+ "text": "that"
+ },
+ {
+ "id": 4894,
+ "start": 3413.8,
+ "end": 3414.12,
+ "text": "people"
+ },
+ {
+ "id": 4895,
+ "start": 3414.12,
+ "end": 3414.3,
+ "text": "had"
+ },
+ {
+ "id": 4896,
+ "start": 3414.3,
+ "end": 3414.54,
+ "text": "shared"
+ },
+ {
+ "id": 4897,
+ "start": 3414.54,
+ "end": 3414.64,
+ "text": "it"
+ },
+ {
+ "id": 4898,
+ "start": 3414.64,
+ "end": 3414.82,
+ "text": "with."
+ },
+ {
+ "id": 4899,
+ "start": 3414.82,
+ "end": 3415.92,
+ "text": "We"
+ },
+ {
+ "id": 4900,
+ "start": 3415.92,
+ "end": 3416.12,
+ "text": "did"
+ },
+ {
+ "id": 4901,
+ "start": 3416.12,
+ "end": 3416.32,
+ "text": "take"
+ },
+ {
+ "id": 4902,
+ "start": 3416.32,
+ "end": 3416.72,
+ "text": "action,"
+ },
+ {
+ "id": 4903,
+ "start": 3416.72,
+ "end": 3417.02,
+ "text": "we"
+ },
+ {
+ "id": 4904,
+ "start": 3417.02,
+ "end": 3417.22,
+ "text": "took"
+ },
+ {
+ "id": 4905,
+ "start": 3417.22,
+ "end": 3417.42,
+ "text": "down"
+ },
+ {
+ "id": 4906,
+ "start": 3417.42,
+ "end": 3417.6,
+ "text": "the"
+ },
+ {
+ "id": 4907,
+ "start": 3417.6,
+ "end": 3417.82,
+ "text": "app"
+ },
+ {
+ "id": 4908,
+ "start": 3417.82,
+ "end": 3418.92,
+ "text": "and"
+ },
+ {
+ "id": 4909,
+ "start": 3418.92,
+ "end": 3419.3,
+ "text": "we"
+ },
+ {
+ "id": 4910,
+ "start": 3419.3,
+ "end": 3420.2,
+ "text": "demanded"
+ },
+ {
+ "id": 4911,
+ "start": 3420.2,
+ "end": 3420.54,
+ "text": "that."
+ },
+ {
+ "id": 4912,
+ "start": 3420.54,
+ "end": 3420.74,
+ "text": "Both"
+ },
+ {
+ "id": 4913,
+ "start": 3420.74,
+ "end": 3420.88,
+ "text": "the"
+ },
+ {
+ "id": 4914,
+ "start": 3420.88,
+ "end": 3421.08,
+ "text": "app"
+ },
+ {
+ "id": 4915,
+ "start": 3421.08,
+ "end": 3421.52,
+ "text": "developer"
+ },
+ {
+ "id": 4916,
+ "start": 3421.52,
+ "end": 3421.86,
+ "text": "and"
+ },
+ {
+ "id": 4917,
+ "start": 3421.86,
+ "end": 3422.22,
+ "text": "Cambridge"
+ },
+ {
+ "id": 4918,
+ "start": 3422.22,
+ "end": 3422.68,
+ "text": "Analytica"
+ },
+ {
+ "id": 4919,
+ "start": 3422.68,
+ "end": 3423.5,
+ "text": "delete"
+ },
+ {
+ "id": 4920,
+ "start": 3423.5,
+ "end": 3423.68,
+ "text": "and"
+ },
+ {
+ "id": 4921,
+ "start": 3423.68,
+ "end": 3424,
+ "text": "stop"
+ },
+ {
+ "id": 4922,
+ "start": 3424,
+ "end": 3424.34,
+ "text": "using"
+ },
+ {
+ "id": 4923,
+ "start": 3424.34,
+ "end": 3424.66,
+ "text": "any"
+ },
+ {
+ "id": 4924,
+ "start": 3424.66,
+ "end": 3425.08,
+ "text": "data"
+ },
+ {
+ "id": 4925,
+ "start": 3425.08,
+ "end": 3425.24,
+ "text": "that"
+ },
+ {
+ "id": 4926,
+ "start": 3425.24,
+ "end": 3425.4,
+ "text": "they"
+ },
+ {
+ "id": 4927,
+ "start": 3425.4,
+ "end": 3425.7,
+ "text": "had."
+ },
+ {
+ "id": 4928,
+ "start": 3425.7,
+ "end": 3426.62,
+ "text": "They"
+ },
+ {
+ "id": 4929,
+ "start": 3426.62,
+ "end": 3426.8,
+ "text": "told"
+ },
+ {
+ "id": 4930,
+ "start": 3426.8,
+ "end": 3426.92,
+ "text": "us"
+ },
+ {
+ "id": 4931,
+ "start": 3426.92,
+ "end": 3427.1,
+ "text": "that"
+ },
+ {
+ "id": 4932,
+ "start": 3427.1,
+ "end": 3427.24,
+ "text": "they"
+ },
+ {
+ "id": 4933,
+ "start": 3427.24,
+ "end": 3427.46,
+ "text": "did"
+ },
+ {
+ "id": 4934,
+ "start": 3427.46,
+ "end": 3427.64,
+ "text": "this."
+ },
+ {
+ "id": 4935,
+ "start": 3427.64,
+ "end": 3428.44,
+ "text": "In"
+ },
+ {
+ "id": 4936,
+ "start": 3428.44,
+ "end": 3429,
+ "text": "retrospect."
+ },
+ {
+ "id": 4937,
+ "start": 3429,
+ "end": 3429.26,
+ "text": "It"
+ },
+ {
+ "id": 4938,
+ "start": 3429.26,
+ "end": 3429.42,
+ "text": "was"
+ },
+ {
+ "id": 4939,
+ "start": 3429.42,
+ "end": 3429.82,
+ "text": "clearly"
+ },
+ {
+ "id": 4940,
+ "start": 3429.82,
+ "end": 3429.9,
+ "text": "a"
+ },
+ {
+ "id": 4941,
+ "start": 3429.9,
+ "end": 3430.32,
+ "text": "mistake"
+ },
+ {
+ "id": 4942,
+ "start": 3430.32,
+ "end": 3430.46,
+ "text": "to"
+ },
+ {
+ "id": 4943,
+ "start": 3430.46,
+ "end": 3430.8,
+ "text": "believe"
+ },
+ {
+ "id": 4944,
+ "start": 3430.8,
+ "end": 3431,
+ "text": "them"
+ },
+ {
+ "id": 4945,
+ "start": 3431,
+ "end": 3431.36,
+ "text": "and"
+ },
+ {
+ "id": 4946,
+ "start": 3431.36,
+ "end": 3431.48,
+ "text": "we"
+ },
+ {
+ "id": 4947,
+ "start": 3431.48,
+ "end": 3431.68,
+ "text": "should"
+ },
+ {
+ "id": 4948,
+ "start": 3431.68,
+ "end": 3431.8,
+ "text": "have"
+ },
+ {
+ "id": 4949,
+ "start": 3431.8,
+ "end": 3432.1,
+ "text": "followed"
+ },
+ {
+ "id": 4950,
+ "start": 3432.1,
+ "end": 3432.24,
+ "text": "up"
+ },
+ {
+ "id": 4951,
+ "start": 3432.24,
+ "end": 3432.42,
+ "text": "and"
+ },
+ {
+ "id": 4952,
+ "start": 3432.42,
+ "end": 3432.6,
+ "text": "done"
+ },
+ {
+ "id": 4953,
+ "start": 3432.6,
+ "end": 3432.66,
+ "text": "a"
+ },
+ {
+ "id": 4954,
+ "start": 3432.66,
+ "end": 3432.88,
+ "text": "full"
+ },
+ {
+ "id": 4955,
+ "start": 3432.88,
+ "end": 3433.04,
+ "text": "out"
+ },
+ {
+ "id": 4956,
+ "start": 3433.04,
+ "end": 3433.14,
+ "text": "it"
+ },
+ {
+ "id": 4957,
+ "start": 3433.14,
+ "end": 3433.42,
+ "text": "then"
+ },
+ {
+ "id": 4958,
+ "start": 3433.42,
+ "end": 3434.12,
+ "text": "and"
+ },
+ {
+ "id": 4959,
+ "start": 3434.12,
+ "end": 3434.4,
+ "text": "that"
+ },
+ {
+ "id": 4960,
+ "start": 3434.4,
+ "end": 3434.56,
+ "text": "is"
+ },
+ {
+ "id": 4961,
+ "start": 3434.56,
+ "end": 3434.74,
+ "text": "not"
+ },
+ {
+ "id": 4962,
+ "start": 3434.74,
+ "end": 3434.82,
+ "text": "a"
+ },
+ {
+ "id": 4963,
+ "start": 3434.82,
+ "end": 3435.22,
+ "text": "mistake"
+ },
+ {
+ "id": 4964,
+ "start": 3435.22,
+ "end": 3435.36,
+ "text": "that"
+ },
+ {
+ "id": 4965,
+ "start": 3435.36,
+ "end": 3435.48,
+ "text": "we"
+ },
+ {
+ "id": 4966,
+ "start": 3435.48,
+ "end": 3435.66,
+ "text": "will"
+ },
+ {
+ "id": 4967,
+ "start": 3435.66,
+ "end": 3435.84,
+ "text": "make."
+ },
+ {
+ "id": 4968,
+ "start": 3435.84,
+ "end": 3436.26,
+ "text": "Yes,"
+ },
+ {
+ "id": 4969,
+ "start": 3436.26,
+ "end": 3436.52,
+ "text": "you"
+ },
+ {
+ "id": 4970,
+ "start": 3436.52,
+ "end": 3436.76,
+ "text": "did"
+ },
+ {
+ "id": 4971,
+ "start": 3436.76,
+ "end": 3437.06,
+ "text": "that."
+ },
+ {
+ "id": 4972,
+ "start": 3437.06,
+ "end": 3437.3,
+ "text": "And"
+ },
+ {
+ "id": 4973,
+ "start": 3437.3,
+ "end": 3438.36,
+ "text": "you"
+ },
+ {
+ "id": 4974,
+ "start": 3438.36,
+ "end": 3439.34,
+ "text": "apologize"
+ },
+ {
+ "id": 4975,
+ "start": 3439.34,
+ "end": 3439.66,
+ "text": "for"
+ },
+ {
+ "id": 4976,
+ "start": 3439.66,
+ "end": 3439.82,
+ "text": "it."
+ },
+ {
+ "id": 4977,
+ "start": 3439.82,
+ "end": 3440.66,
+ "text": "But"
+ },
+ {
+ "id": 4978,
+ "start": 3440.66,
+ "end": 3440.96,
+ "text": "you"
+ },
+ {
+ "id": 4979,
+ "start": 3440.96,
+ "end": 3441.8,
+ "text": "didn't"
+ },
+ {
+ "id": 4980,
+ "start": 3441.8,
+ "end": 3442.8,
+ "text": "notify"
+ },
+ {
+ "id": 4981,
+ "start": 3442.8,
+ "end": 3445.72,
+ "text": "them."
+ },
+ {
+ "id": 4982,
+ "start": 3445.72,
+ "end": 3446.72,
+ "text": "Do"
+ },
+ {
+ "id": 4983,
+ "start": 3446.72,
+ "end": 3446.9,
+ "text": "you"
+ },
+ {
+ "id": 4984,
+ "start": 3446.9,
+ "end": 3447.18,
+ "text": "think"
+ },
+ {
+ "id": 4985,
+ "start": 3447.18,
+ "end": 3447.42,
+ "text": "that"
+ },
+ {
+ "id": 4986,
+ "start": 3447.42,
+ "end": 3447.58,
+ "text": "you"
+ },
+ {
+ "id": 4987,
+ "start": 3447.58,
+ "end": 3447.86,
+ "text": "have"
+ },
+ {
+ "id": 4988,
+ "start": 3447.86,
+ "end": 3448,
+ "text": "an"
+ },
+ {
+ "id": 4989,
+ "start": 3448,
+ "end": 3448.58,
+ "text": "ethical"
+ },
+ {
+ "id": 4990,
+ "start": 3448.58,
+ "end": 3449.58,
+ "text": "obligation"
+ },
+ {
+ "id": 4991,
+ "start": 3449.58,
+ "end": 3449.98,
+ "text": "to"
+ },
+ {
+ "id": 4992,
+ "start": 3449.98,
+ "end": 3450.58,
+ "text": "notify"
+ },
+ {
+ "id": 4993,
+ "start": 3450.58,
+ "end": 3451.86,
+ "text": "87,000,000"
+ },
+ {
+ "id": 4994,
+ "start": 3451.86,
+ "end": 3452.62,
+ "text": "Facebook"
+ },
+ {
+ "id": 4995,
+ "start": 3452.62,
+ "end": 3455.58,
+ "text": "users"
+ },
+ {
+ "id": 4996,
+ "start": 3455.58,
+ "end": 3456.58,
+ "text": "Senator,"
+ },
+ {
+ "id": 4997,
+ "start": 3456.58,
+ "end": 3456.9,
+ "text": "when"
+ },
+ {
+ "id": 4998,
+ "start": 3456.9,
+ "end": 3457.06,
+ "text": "we"
+ },
+ {
+ "id": 4999,
+ "start": 3457.06,
+ "end": 3457.4,
+ "text": "heard"
+ },
+ {
+ "id": 5000,
+ "start": 3457.4,
+ "end": 3457.74,
+ "text": "back"
+ },
+ {
+ "id": 5001,
+ "start": 3457.74,
+ "end": 3458.04,
+ "text": "from"
+ },
+ {
+ "id": 5002,
+ "start": 3458.04,
+ "end": 3458.38,
+ "text": "Cambridge"
+ },
+ {
+ "id": 5003,
+ "start": 3458.38,
+ "end": 3458.78,
+ "text": "Analytica"
+ },
+ {
+ "id": 5004,
+ "start": 3458.78,
+ "end": 3459.04,
+ "text": "that"
+ },
+ {
+ "id": 5005,
+ "start": 3459.04,
+ "end": 3459.16,
+ "text": "they"
+ },
+ {
+ "id": 5006,
+ "start": 3459.16,
+ "end": 3459.28,
+ "text": "had"
+ },
+ {
+ "id": 5007,
+ "start": 3459.28,
+ "end": 3459.46,
+ "text": "told"
+ },
+ {
+ "id": 5008,
+ "start": 3459.46,
+ "end": 3459.6,
+ "text": "us"
+ },
+ {
+ "id": 5009,
+ "start": 3459.6,
+ "end": 3459.82,
+ "text": "that"
+ },
+ {
+ "id": 5010,
+ "start": 3459.82,
+ "end": 3460,
+ "text": "they"
+ },
+ {
+ "id": 5011,
+ "start": 3460,
+ "end": 3460.82,
+ "text": "weren't"
+ },
+ {
+ "id": 5012,
+ "start": 3460.82,
+ "end": 3461.08,
+ "text": "using"
+ },
+ {
+ "id": 5013,
+ "start": 3461.08,
+ "end": 3461.2,
+ "text": "the"
+ },
+ {
+ "id": 5014,
+ "start": 3461.2,
+ "end": 3461.46,
+ "text": "data"
+ },
+ {
+ "id": 5015,
+ "start": 3461.46,
+ "end": 3461.58,
+ "text": "and"
+ },
+ {
+ "id": 5016,
+ "start": 3461.58,
+ "end": 3462.06,
+ "text": "deleted"
+ },
+ {
+ "id": 5017,
+ "start": 3462.06,
+ "end": 3462.2,
+ "text": "it"
+ },
+ {
+ "id": 5018,
+ "start": 3462.2,
+ "end": 3462.74,
+ "text": "we"
+ },
+ {
+ "id": 5019,
+ "start": 3462.74,
+ "end": 3463.2,
+ "text": "considered"
+ },
+ {
+ "id": 5020,
+ "start": 3463.2,
+ "end": 3463.3,
+ "text": "it"
+ },
+ {
+ "id": 5021,
+ "start": 3463.3,
+ "end": 3463.38,
+ "text": "a"
+ },
+ {
+ "id": 5022,
+ "start": 3463.38,
+ "end": 3463.78,
+ "text": "closed"
+ },
+ {
+ "id": 5023,
+ "start": 3463.78,
+ "end": 3464.08,
+ "text": "case."
+ },
+ {
+ "id": 5024,
+ "start": 3464.08,
+ "end": 3464.7,
+ "text": "In"
+ },
+ {
+ "id": 5025,
+ "start": 3464.7,
+ "end": 3465.2,
+ "text": "retrospect,"
+ },
+ {
+ "id": 5026,
+ "start": 3465.2,
+ "end": 3465.38,
+ "text": "that"
+ },
+ {
+ "id": 5027,
+ "start": 3465.38,
+ "end": 3465.59,
+ "text": "was"
+ },
+ {
+ "id": 5028,
+ "start": 3465.59,
+ "end": 3465.95,
+ "text": "clearly"
+ },
+ {
+ "id": 5029,
+ "start": 3465.95,
+ "end": 3466.01,
+ "text": "a"
+ },
+ {
+ "id": 5030,
+ "start": 3466.01,
+ "end": 3466.37,
+ "text": "mistake."
+ },
+ {
+ "id": 5031,
+ "start": 3466.37,
+ "end": 3466.65,
+ "text": "We"
+ },
+ {
+ "id": 5032,
+ "start": 3466.65,
+ "end": 3466.93,
+ "text": "shouldn't"
+ },
+ {
+ "id": 5033,
+ "start": 3466.93,
+ "end": 3467.05,
+ "text": "have"
+ },
+ {
+ "id": 5034,
+ "start": 3467.05,
+ "end": 3467.25,
+ "text": "taken"
+ },
+ {
+ "id": 5035,
+ "start": 3467.25,
+ "end": 3467.43,
+ "text": "their"
+ },
+ {
+ "id": 5036,
+ "start": 3467.43,
+ "end": 3467.65,
+ "text": "word"
+ },
+ {
+ "id": 5037,
+ "start": 3467.65,
+ "end": 3467.83,
+ "text": "for"
+ },
+ {
+ "id": 5038,
+ "start": 3467.83,
+ "end": 3467.97,
+ "text": "it"
+ },
+ {
+ "id": 5039,
+ "start": 3467.97,
+ "end": 3468.35,
+ "text": "and"
+ },
+ {
+ "id": 5040,
+ "start": 3468.35,
+ "end": 3468.57,
+ "text": "we've"
+ },
+ {
+ "id": 5041,
+ "start": 3468.57,
+ "end": 3468.97,
+ "text": "updated"
+ },
+ {
+ "id": 5042,
+ "start": 3468.97,
+ "end": 3469.13,
+ "text": "our"
+ },
+ {
+ "id": 5043,
+ "start": 3469.13,
+ "end": 3469.71,
+ "text": "policies."
+ },
+ {
+ "id": 5044,
+ "start": 3469.71,
+ "end": 3469.85,
+ "text": "And"
+ },
+ {
+ "id": 5045,
+ "start": 3469.85,
+ "end": 3469.97,
+ "text": "how"
+ },
+ {
+ "id": 5046,
+ "start": 3469.97,
+ "end": 3470.15,
+ "text": "we're"
+ },
+ {
+ "id": 5047,
+ "start": 3470.15,
+ "end": 3470.27,
+ "text": "going"
+ },
+ {
+ "id": 5048,
+ "start": 3470.27,
+ "end": 3470.35,
+ "text": "to"
+ },
+ {
+ "id": 5049,
+ "start": 3470.35,
+ "end": 3470.63,
+ "text": "operate"
+ },
+ {
+ "id": 5050,
+ "start": 3470.63,
+ "end": 3470.75,
+ "text": "the"
+ },
+ {
+ "id": 5051,
+ "start": 3470.75,
+ "end": 3471.11,
+ "text": "company"
+ },
+ {
+ "id": 5052,
+ "start": 3471.11,
+ "end": 3471.23,
+ "text": "to"
+ },
+ {
+ "id": 5053,
+ "start": 3471.23,
+ "end": 3471.37,
+ "text": "make"
+ },
+ {
+ "id": 5054,
+ "start": 3471.37,
+ "end": 3471.51,
+ "text": "sure"
+ },
+ {
+ "id": 5055,
+ "start": 3471.51,
+ "end": 3471.65,
+ "text": "that"
+ },
+ {
+ "id": 5056,
+ "start": 3471.65,
+ "end": 3471.71,
+ "text": "we"
+ },
+ {
+ "id": 5057,
+ "start": 3471.71,
+ "end": 3471.89,
+ "text": "don't"
+ },
+ {
+ "id": 5058,
+ "start": 3471.89,
+ "end": 3472.03,
+ "text": "make"
+ },
+ {
+ "id": 5059,
+ "start": 3472.03,
+ "end": 3472.19,
+ "text": "that"
+ },
+ {
+ "id": 5060,
+ "start": 3472.19,
+ "end": 3472.53,
+ "text": "mistake"
+ },
+ {
+ "id": 5061,
+ "start": 3472.53,
+ "end": 3472.79,
+ "text": "again."
+ },
+ {
+ "id": 5062,
+ "start": 3472.79,
+ "end": 3473.29,
+ "text": "Did"
+ },
+ {
+ "id": 5063,
+ "start": 3473.29,
+ "end": 3473.81,
+ "text": "anybody"
+ },
+ {
+ "id": 5064,
+ "start": 3473.81,
+ "end": 3474.39,
+ "text": "notify"
+ },
+ {
+ "id": 5065,
+ "start": 3474.39,
+ "end": 3474.53,
+ "text": "the"
+ },
+ {
+ "id": 5066,
+ "start": 3474.53,
+ "end": 3476.34,
+ "text": "FTC?"
+ },
+ {
+ "id": 5067,
+ "start": 3476.34,
+ "end": 3477.36,
+ "text": "No"
+ },
+ {
+ "id": 5068,
+ "start": 3477.36,
+ "end": 3477.82,
+ "text": "Senator,"
+ },
+ {
+ "id": 5069,
+ "start": 3477.82,
+ "end": 3478.1,
+ "text": "for"
+ },
+ {
+ "id": 5070,
+ "start": 3478.1,
+ "end": 3478.22,
+ "text": "the"
+ },
+ {
+ "id": 5071,
+ "start": 3478.22,
+ "end": 3478.4,
+ "text": "same"
+ },
+ {
+ "id": 5072,
+ "start": 3478.4,
+ "end": 3478.7,
+ "text": "reason"
+ },
+ {
+ "id": 5073,
+ "start": 3478.7,
+ "end": 3478.86,
+ "text": "that"
+ },
+ {
+ "id": 5074,
+ "start": 3478.86,
+ "end": 3478.94,
+ "text": "we"
+ },
+ {
+ "id": 5075,
+ "start": 3478.94,
+ "end": 3479.44,
+ "text": "considered"
+ },
+ {
+ "id": 5076,
+ "start": 3479.44,
+ "end": 3479.56,
+ "text": "it"
+ },
+ {
+ "id": 5077,
+ "start": 3479.56,
+ "end": 3479.64,
+ "text": "a"
+ },
+ {
+ "id": 5078,
+ "start": 3479.64,
+ "end": 3480.52,
+ "text": "closed"
+ },
+ {
+ "id": 5079,
+ "start": 3480.52,
+ "end": 3480.82,
+ "text": "closed"
+ },
+ {
+ "id": 5080,
+ "start": 3480.82,
+ "end": 3481.28,
+ "text": "case"
+ },
+ {
+ "id": 5081,
+ "start": 3481.28,
+ "end": 3482.3,
+ "text": "Senator"
+ },
+ {
+ "id": 5082,
+ "start": 3482.3,
+ "end": 3482.82,
+ "text": "zone"
+ },
+ {
+ "id": 5083,
+ "start": 3482.82,
+ "end": 3483.3,
+ "text": "and"
+ },
+ {
+ "id": 5084,
+ "start": 3483.3,
+ "end": 3483.54,
+ "text": "Mr"
+ },
+ {
+ "id": 5085,
+ "start": 3483.54,
+ "end": 3483.86,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 5086,
+ "start": 3483.86,
+ "end": 3483.98,
+ "text": "would"
+ },
+ {
+ "id": 5087,
+ "start": 3483.98,
+ "end": 3484.06,
+ "text": "do"
+ },
+ {
+ "id": 5088,
+ "start": 3484.06,
+ "end": 3484.4,
+ "text": "that"
+ },
+ {
+ "id": 5089,
+ "start": 3484.4,
+ "end": 3485.06,
+ "text": "differently"
+ },
+ {
+ "id": 5090,
+ "start": 3485.06,
+ "end": 3485.4,
+ "text": "today."
+ },
+ {
+ "id": 5091,
+ "start": 3485.4,
+ "end": 3486.06,
+ "text": "Presumably"
+ },
+ {
+ "id": 5092,
+ "start": 3486.06,
+ "end": 3487.24,
+ "text": "that"
+ },
+ {
+ "id": 5093,
+ "start": 3487.24,
+ "end": 3487.56,
+ "text": "in"
+ },
+ {
+ "id": 5094,
+ "start": 3487.56,
+ "end": 3487.96,
+ "text": "response"
+ },
+ {
+ "id": 5095,
+ "start": 3487.96,
+ "end": 3488.06,
+ "text": "to"
+ },
+ {
+ "id": 5096,
+ "start": 3488.06,
+ "end": 3488.3,
+ "text": "Senator"
+ },
+ {
+ "id": 5097,
+ "start": 3488.3,
+ "end": 3488.78,
+ "text": "Nelson's"
+ },
+ {
+ "id": 5098,
+ "start": 3488.78,
+ "end": 3489.2,
+ "text": "question."
+ },
+ {
+ "id": 5099,
+ "start": 3489.2,
+ "end": 3489.7,
+ "text": "Yes,"
+ },
+ {
+ "id": 5100,
+ "start": 3489.7,
+ "end": 3490.12,
+ "text": "having"
+ },
+ {
+ "id": 5101,
+ "start": 3490.12,
+ "end": 3490.22,
+ "text": "to"
+ },
+ {
+ "id": 5102,
+ "start": 3490.22,
+ "end": 3490.32,
+ "text": "do"
+ },
+ {
+ "id": 5103,
+ "start": 3490.32,
+ "end": 3490.42,
+ "text": "it"
+ },
+ {
+ "id": 5104,
+ "start": 3490.42,
+ "end": 3492.02,
+ "text": "over"
+ },
+ {
+ "id": 5105,
+ "start": 3492.02,
+ "end": 3493.02,
+ "text": "this"
+ },
+ {
+ "id": 5106,
+ "start": 3493.02,
+ "end": 3493.24,
+ "text": "may"
+ },
+ {
+ "id": 5107,
+ "start": 3493.24,
+ "end": 3493.38,
+ "text": "be"
+ },
+ {
+ "id": 5108,
+ "start": 3493.38,
+ "end": 3493.68,
+ "text": "your"
+ },
+ {
+ "id": 5109,
+ "start": 3493.68,
+ "end": 3494.22,
+ "text": "first"
+ },
+ {
+ "id": 5110,
+ "start": 3494.22,
+ "end": 3494.68,
+ "text": "appearance"
+ },
+ {
+ "id": 5111,
+ "start": 3494.68,
+ "end": 3495.02,
+ "text": "before"
+ },
+ {
+ "id": 5112,
+ "start": 3495.02,
+ "end": 3495.56,
+ "text": "Congress,"
+ },
+ {
+ "id": 5113,
+ "start": 3495.56,
+ "end": 3495.78,
+ "text": "but"
+ },
+ {
+ "id": 5114,
+ "start": 3495.78,
+ "end": 3495.94,
+ "text": "it's"
+ },
+ {
+ "id": 5115,
+ "start": 3495.94,
+ "end": 3496.08,
+ "text": "not"
+ },
+ {
+ "id": 5116,
+ "start": 3496.08,
+ "end": 3496.26,
+ "text": "the"
+ },
+ {
+ "id": 5117,
+ "start": 3496.26,
+ "end": 3496.48,
+ "text": "first"
+ },
+ {
+ "id": 5118,
+ "start": 3496.48,
+ "end": 3496.68,
+ "text": "time"
+ },
+ {
+ "id": 5119,
+ "start": 3496.68,
+ "end": 3496.86,
+ "text": "that"
+ },
+ {
+ "id": 5120,
+ "start": 3496.86,
+ "end": 3497.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 5121,
+ "start": 3497.34,
+ "end": 3497.5,
+ "text": "is"
+ },
+ {
+ "id": 5122,
+ "start": 3497.5,
+ "end": 3497.84,
+ "text": "faced"
+ },
+ {
+ "id": 5123,
+ "start": 3497.84,
+ "end": 3498.7,
+ "text": "tough"
+ },
+ {
+ "id": 5124,
+ "start": 3498.7,
+ "end": 3499.22,
+ "text": "questions"
+ },
+ {
+ "id": 5125,
+ "start": 3499.22,
+ "end": 3499.5,
+ "text": "about"
+ },
+ {
+ "id": 5126,
+ "start": 3499.5,
+ "end": 3499.68,
+ "text": "its"
+ },
+ {
+ "id": 5127,
+ "start": 3499.68,
+ "end": 3500.22,
+ "text": "privacy"
+ },
+ {
+ "id": 5128,
+ "start": 3500.22,
+ "end": 3501.08,
+ "text": "policies."
+ },
+ {
+ "id": 5129,
+ "start": 3501.08,
+ "end": 3502.08,
+ "text": "Wired"
+ },
+ {
+ "id": 5130,
+ "start": 3502.08,
+ "end": 3502.92,
+ "text": "magazine"
+ },
+ {
+ "id": 5131,
+ "start": 3502.92,
+ "end": 3503.62,
+ "text": "noted"
+ },
+ {
+ "id": 5132,
+ "start": 3503.62,
+ "end": 3504.02,
+ "text": "that"
+ },
+ {
+ "id": 5133,
+ "start": 3504.02,
+ "end": 3504.18,
+ "text": "you"
+ },
+ {
+ "id": 5134,
+ "start": 3504.18,
+ "end": 3504.32,
+ "text": "have"
+ },
+ {
+ "id": 5135,
+ "start": 3504.32,
+ "end": 3504.38,
+ "text": "a"
+ },
+ {
+ "id": 5136,
+ "start": 3504.38,
+ "end": 3504.78,
+ "text": "14"
+ },
+ {
+ "id": 5137,
+ "start": 3504.78,
+ "end": 3504.92,
+ "text": "year"
+ },
+ {
+ "id": 5138,
+ "start": 3504.92,
+ "end": 3505.36,
+ "text": "history"
+ },
+ {
+ "id": 5139,
+ "start": 3505.36,
+ "end": 3505.46,
+ "text": "of"
+ },
+ {
+ "id": 5140,
+ "start": 3505.46,
+ "end": 3506.3,
+ "text": "apologizing"
+ },
+ {
+ "id": 5141,
+ "start": 3506.3,
+ "end": 3506.46,
+ "text": "for"
+ },
+ {
+ "id": 5142,
+ "start": 3506.46,
+ "end": 3506.7,
+ "text": "ill"
+ },
+ {
+ "id": 5143,
+ "start": 3506.7,
+ "end": 3507.06,
+ "text": "advised"
+ },
+ {
+ "id": 5144,
+ "start": 3507.06,
+ "end": 3507.62,
+ "text": "decisions"
+ },
+ {
+ "id": 5145,
+ "start": 3507.62,
+ "end": 3508.62,
+ "text": "regarding"
+ },
+ {
+ "id": 5146,
+ "start": 3508.62,
+ "end": 3508.98,
+ "text": "user"
+ },
+ {
+ "id": 5147,
+ "start": 3508.98,
+ "end": 3509.52,
+ "text": "privacy."
+ },
+ {
+ "id": 5148,
+ "start": 3509.52,
+ "end": 3509.72,
+ "text": "Not"
+ },
+ {
+ "id": 5149,
+ "start": 3509.72,
+ "end": 3510.02,
+ "text": "unlike"
+ },
+ {
+ "id": 5150,
+ "start": 3510.02,
+ "end": 3510.14,
+ "text": "the"
+ },
+ {
+ "id": 5151,
+ "start": 3510.14,
+ "end": 3510.32,
+ "text": "one"
+ },
+ {
+ "id": 5152,
+ "start": 3510.32,
+ "end": 3510.46,
+ "text": "that"
+ },
+ {
+ "id": 5153,
+ "start": 3510.46,
+ "end": 3510.74,
+ "text": "you"
+ },
+ {
+ "id": 5154,
+ "start": 3510.74,
+ "end": 3511.26,
+ "text": "made"
+ },
+ {
+ "id": 5155,
+ "start": 3511.26,
+ "end": 3512.26,
+ "text": "just"
+ },
+ {
+ "id": 5156,
+ "start": 3512.26,
+ "end": 3512.4,
+ "text": "now"
+ },
+ {
+ "id": 5157,
+ "start": 3512.4,
+ "end": 3512.54,
+ "text": "in"
+ },
+ {
+ "id": 5158,
+ "start": 3512.54,
+ "end": 3512.72,
+ "text": "your"
+ },
+ {
+ "id": 5159,
+ "start": 3512.72,
+ "end": 3513.08,
+ "text": "opening"
+ },
+ {
+ "id": 5160,
+ "start": 3513.08,
+ "end": 3514.12,
+ "text": "statement"
+ },
+ {
+ "id": 5161,
+ "start": 3514.12,
+ "end": 3515,
+ "text": "after"
+ },
+ {
+ "id": 5162,
+ "start": 3515,
+ "end": 3515.34,
+ "text": "more"
+ },
+ {
+ "id": 5163,
+ "start": 3515.34,
+ "end": 3516.18,
+ "text": "than"
+ },
+ {
+ "id": 5164,
+ "start": 3516.18,
+ "end": 3516.58,
+ "text": "a"
+ },
+ {
+ "id": 5165,
+ "start": 3516.58,
+ "end": 3517.56,
+ "text": "decade"
+ },
+ {
+ "id": 5166,
+ "start": 3517.56,
+ "end": 3517.66,
+ "text": "of"
+ },
+ {
+ "id": 5167,
+ "start": 3517.66,
+ "end": 3518.18,
+ "text": "promises"
+ },
+ {
+ "id": 5168,
+ "start": 3518.18,
+ "end": 3518.32,
+ "text": "to"
+ },
+ {
+ "id": 5169,
+ "start": 3518.32,
+ "end": 3518.44,
+ "text": "do"
+ },
+ {
+ "id": 5170,
+ "start": 3518.44,
+ "end": 3518.82,
+ "text": "better."
+ },
+ {
+ "id": 5171,
+ "start": 3518.82,
+ "end": 3519.48,
+ "text": "How"
+ },
+ {
+ "id": 5172,
+ "start": 3519.48,
+ "end": 3519.74,
+ "text": "is"
+ },
+ {
+ "id": 5173,
+ "start": 3519.74,
+ "end": 3520.82,
+ "text": "today's"
+ },
+ {
+ "id": 5174,
+ "start": 3520.82,
+ "end": 3521.8,
+ "text": "apology"
+ },
+ {
+ "id": 5175,
+ "start": 3521.8,
+ "end": 3522.2,
+ "text": "different"
+ },
+ {
+ "id": 5176,
+ "start": 3522.2,
+ "end": 3522.34,
+ "text": "and"
+ },
+ {
+ "id": 5177,
+ "start": 3522.34,
+ "end": 3522.64,
+ "text": "why"
+ },
+ {
+ "id": 5178,
+ "start": 3522.64,
+ "end": 3522.88,
+ "text": "should"
+ },
+ {
+ "id": 5179,
+ "start": 3522.88,
+ "end": 3523.02,
+ "text": "we"
+ },
+ {
+ "id": 5180,
+ "start": 3523.02,
+ "end": 3523.88,
+ "text": "trust"
+ },
+ {
+ "id": 5181,
+ "start": 3523.88,
+ "end": 3524.84,
+ "text": "Facebook"
+ },
+ {
+ "id": 5182,
+ "start": 3524.84,
+ "end": 3525,
+ "text": "to"
+ },
+ {
+ "id": 5183,
+ "start": 3525,
+ "end": 3525.18,
+ "text": "make"
+ },
+ {
+ "id": 5184,
+ "start": 3525.18,
+ "end": 3525.32,
+ "text": "the"
+ },
+ {
+ "id": 5185,
+ "start": 3525.32,
+ "end": 3525.9,
+ "text": "necessary"
+ },
+ {
+ "id": 5186,
+ "start": 3525.9,
+ "end": 3526.4,
+ "text": "changes"
+ },
+ {
+ "id": 5187,
+ "start": 3526.4,
+ "end": 3526.58,
+ "text": "to"
+ },
+ {
+ "id": 5188,
+ "start": 3526.58,
+ "end": 3527.08,
+ "text": "ensure"
+ },
+ {
+ "id": 5189,
+ "start": 3527.08,
+ "end": 3527.48,
+ "text": "user"
+ },
+ {
+ "id": 5190,
+ "start": 3527.48,
+ "end": 3528.02,
+ "text": "privacy?"
+ },
+ {
+ "id": 5191,
+ "start": 3528.02,
+ "end": 3528.22,
+ "text": "And"
+ },
+ {
+ "id": 5192,
+ "start": 3528.22,
+ "end": 3528.44,
+ "text": "give"
+ },
+ {
+ "id": 5193,
+ "start": 3528.44,
+ "end": 3528.72,
+ "text": "people"
+ },
+ {
+ "id": 5194,
+ "start": 3528.72,
+ "end": 3528.92,
+ "text": "a"
+ },
+ {
+ "id": 5195,
+ "start": 3528.92,
+ "end": 3529.4,
+ "text": "clearer"
+ },
+ {
+ "id": 5196,
+ "start": 3529.4,
+ "end": 3529.86,
+ "text": "picture"
+ },
+ {
+ "id": 5197,
+ "start": 3529.86,
+ "end": 3530.64,
+ "text": "of"
+ },
+ {
+ "id": 5198,
+ "start": 3530.64,
+ "end": 3530.82,
+ "text": "your"
+ },
+ {
+ "id": 5199,
+ "start": 3530.82,
+ "end": 3531.28,
+ "text": "privacy"
+ },
+ {
+ "id": 5200,
+ "start": 3531.28,
+ "end": 3533.14,
+ "text": "policies."
+ },
+ {
+ "id": 5201,
+ "start": 3533.14,
+ "end": 3534.1,
+ "text": "Thank"
+ },
+ {
+ "id": 5202,
+ "start": 3534.1,
+ "end": 3534.2,
+ "text": "you,"
+ },
+ {
+ "id": 5203,
+ "start": 3534.2,
+ "end": 3534.46,
+ "text": "Mr"
+ },
+ {
+ "id": 5204,
+ "start": 3534.46,
+ "end": 3535.12,
+ "text": "Chairman."
+ },
+ {
+ "id": 5205,
+ "start": 3535.12,
+ "end": 3536.24,
+ "text": "So"
+ },
+ {
+ "id": 5206,
+ "start": 3536.24,
+ "end": 3536.42,
+ "text": "we"
+ },
+ {
+ "id": 5207,
+ "start": 3536.42,
+ "end": 3536.64,
+ "text": "have"
+ },
+ {
+ "id": 5208,
+ "start": 3536.64,
+ "end": 3536.84,
+ "text": "made"
+ },
+ {
+ "id": 5209,
+ "start": 3536.84,
+ "end": 3536.88,
+ "text": "a"
+ },
+ {
+ "id": 5210,
+ "start": 3536.88,
+ "end": 3537.04,
+ "text": "lot"
+ },
+ {
+ "id": 5211,
+ "start": 3537.04,
+ "end": 3537.14,
+ "text": "of"
+ },
+ {
+ "id": 5212,
+ "start": 3537.14,
+ "end": 3537.46,
+ "text": "mistakes"
+ },
+ {
+ "id": 5213,
+ "start": 3537.46,
+ "end": 3537.58,
+ "text": "in"
+ },
+ {
+ "id": 5214,
+ "start": 3537.58,
+ "end": 3537.82,
+ "text": "running"
+ },
+ {
+ "id": 5215,
+ "start": 3537.82,
+ "end": 3537.94,
+ "text": "the"
+ },
+ {
+ "id": 5216,
+ "start": 3537.94,
+ "end": 3538.24,
+ "text": "company."
+ },
+ {
+ "id": 5217,
+ "start": 3538.24,
+ "end": 3538.48,
+ "text": "I"
+ },
+ {
+ "id": 5218,
+ "start": 3538.48,
+ "end": 3538.66,
+ "text": "think"
+ },
+ {
+ "id": 5219,
+ "start": 3538.66,
+ "end": 3539.18,
+ "text": "it's"
+ },
+ {
+ "id": 5220,
+ "start": 3539.18,
+ "end": 3539.56,
+ "text": "pretty"
+ },
+ {
+ "id": 5221,
+ "start": 3539.56,
+ "end": 3539.74,
+ "text": "much"
+ },
+ {
+ "id": 5222,
+ "start": 3539.74,
+ "end": 3540.4,
+ "text": "impossible,"
+ },
+ {
+ "id": 5223,
+ "start": 3540.4,
+ "end": 3540.76,
+ "text": "I"
+ },
+ {
+ "id": 5224,
+ "start": 3540.76,
+ "end": 3541.1,
+ "text": "believe."
+ },
+ {
+ "id": 5225,
+ "start": 3541.1,
+ "end": 3541.28,
+ "text": "To"
+ },
+ {
+ "id": 5226,
+ "start": 3541.28,
+ "end": 3541.6,
+ "text": "start"
+ },
+ {
+ "id": 5227,
+ "start": 3541.6,
+ "end": 3541.68,
+ "text": "a"
+ },
+ {
+ "id": 5228,
+ "start": 3541.68,
+ "end": 3542.04,
+ "text": "company"
+ },
+ {
+ "id": 5229,
+ "start": 3542.04,
+ "end": 3542.18,
+ "text": "in"
+ },
+ {
+ "id": 5230,
+ "start": 3542.18,
+ "end": 3542.36,
+ "text": "your"
+ },
+ {
+ "id": 5231,
+ "start": 3542.36,
+ "end": 3542.66,
+ "text": "dorm"
+ },
+ {
+ "id": 5232,
+ "start": 3542.66,
+ "end": 3542.88,
+ "text": "room"
+ },
+ {
+ "id": 5233,
+ "start": 3542.88,
+ "end": 3543.02,
+ "text": "and"
+ },
+ {
+ "id": 5234,
+ "start": 3543.02,
+ "end": 3543.18,
+ "text": "then"
+ },
+ {
+ "id": 5235,
+ "start": 3543.18,
+ "end": 3543.46,
+ "text": "grow"
+ },
+ {
+ "id": 5236,
+ "start": 3543.46,
+ "end": 3543.58,
+ "text": "it"
+ },
+ {
+ "id": 5237,
+ "start": 3543.58,
+ "end": 3543.72,
+ "text": "to"
+ },
+ {
+ "id": 5238,
+ "start": 3543.72,
+ "end": 3543.86,
+ "text": "be"
+ },
+ {
+ "id": 5239,
+ "start": 3543.86,
+ "end": 3543.94,
+ "text": "at"
+ },
+ {
+ "id": 5240,
+ "start": 3543.94,
+ "end": 3544.06,
+ "text": "the"
+ },
+ {
+ "id": 5241,
+ "start": 3544.06,
+ "end": 3544.32,
+ "text": "scale."
+ },
+ {
+ "id": 5242,
+ "start": 3544.32,
+ "end": 3544.46,
+ "text": "That"
+ },
+ {
+ "id": 5243,
+ "start": 3544.46,
+ "end": 3544.62,
+ "text": "we're"
+ },
+ {
+ "id": 5244,
+ "start": 3544.62,
+ "end": 3544.74,
+ "text": "at"
+ },
+ {
+ "id": 5245,
+ "start": 3544.74,
+ "end": 3545,
+ "text": "now"
+ },
+ {
+ "id": 5246,
+ "start": 3545,
+ "end": 3545.4,
+ "text": "without"
+ },
+ {
+ "id": 5247,
+ "start": 3545.4,
+ "end": 3546.16,
+ "text": "making"
+ },
+ {
+ "id": 5248,
+ "start": 3546.16,
+ "end": 3546.36,
+ "text": "some"
+ },
+ {
+ "id": 5249,
+ "start": 3546.36,
+ "end": 3546.78,
+ "text": "mistakes"
+ },
+ {
+ "id": 5250,
+ "start": 3546.78,
+ "end": 3546.96,
+ "text": "and"
+ },
+ {
+ "id": 5251,
+ "start": 3546.96,
+ "end": 3547.26,
+ "text": "because"
+ },
+ {
+ "id": 5252,
+ "start": 3547.26,
+ "end": 3547.48,
+ "text": "our"
+ },
+ {
+ "id": 5253,
+ "start": 3547.48,
+ "end": 3547.9,
+ "text": "service"
+ },
+ {
+ "id": 5254,
+ "start": 3547.9,
+ "end": 3548.42,
+ "text": "is"
+ },
+ {
+ "id": 5255,
+ "start": 3548.42,
+ "end": 3549.06,
+ "text": "about"
+ },
+ {
+ "id": 5256,
+ "start": 3549.06,
+ "end": 3550.02,
+ "text": "helping"
+ },
+ {
+ "id": 5257,
+ "start": 3550.02,
+ "end": 3550.28,
+ "text": "people"
+ },
+ {
+ "id": 5258,
+ "start": 3550.28,
+ "end": 3550.66,
+ "text": "connect"
+ },
+ {
+ "id": 5259,
+ "start": 3550.66,
+ "end": 3550.78,
+ "text": "and"
+ },
+ {
+ "id": 5260,
+ "start": 3550.78,
+ "end": 3551.96,
+ "text": "information."
+ },
+ {
+ "id": 5261,
+ "start": 3551.96,
+ "end": 3552.78,
+ "text": "Those"
+ },
+ {
+ "id": 5262,
+ "start": 3552.78,
+ "end": 3553.22,
+ "text": "mistakes"
+ },
+ {
+ "id": 5263,
+ "start": 3553.22,
+ "end": 3553.74,
+ "text": "have"
+ },
+ {
+ "id": 5264,
+ "start": 3553.74,
+ "end": 3553.9,
+ "text": "been"
+ },
+ {
+ "id": 5265,
+ "start": 3553.9,
+ "end": 3554.24,
+ "text": "different"
+ },
+ {
+ "id": 5266,
+ "start": 3554.24,
+ "end": 3554.72,
+ "text": "and"
+ },
+ {
+ "id": 5267,
+ "start": 3554.72,
+ "end": 3554.94,
+ "text": "how"
+ },
+ {
+ "id": 5268,
+ "start": 3554.94,
+ "end": 3555.8,
+ "text": "we"
+ },
+ {
+ "id": 5269,
+ "start": 3555.8,
+ "end": 3555.96,
+ "text": "try"
+ },
+ {
+ "id": 5270,
+ "start": 3555.96,
+ "end": 3556.1,
+ "text": "not"
+ },
+ {
+ "id": 5271,
+ "start": 3556.1,
+ "end": 3556.18,
+ "text": "to"
+ },
+ {
+ "id": 5272,
+ "start": 3556.18,
+ "end": 3556.32,
+ "text": "make"
+ },
+ {
+ "id": 5273,
+ "start": 3556.32,
+ "end": 3556.42,
+ "text": "the"
+ },
+ {
+ "id": 5274,
+ "start": 3556.42,
+ "end": 3556.58,
+ "text": "same"
+ },
+ {
+ "id": 5275,
+ "start": 3556.58,
+ "end": 3556.88,
+ "text": "mistake."
+ },
+ {
+ "id": 5276,
+ "start": 3556.88,
+ "end": 3557.26,
+ "text": "Multiple"
+ },
+ {
+ "id": 5277,
+ "start": 3557.26,
+ "end": 3557.62,
+ "text": "times"
+ },
+ {
+ "id": 5278,
+ "start": 3557.62,
+ "end": 3558.24,
+ "text": "but"
+ },
+ {
+ "id": 5279,
+ "start": 3558.24,
+ "end": 3558.42,
+ "text": "in"
+ },
+ {
+ "id": 5280,
+ "start": 3558.42,
+ "end": 3558.8,
+ "text": "general,"
+ },
+ {
+ "id": 5281,
+ "start": 3558.8,
+ "end": 3558.88,
+ "text": "a"
+ },
+ {
+ "id": 5282,
+ "start": 3558.88,
+ "end": 3559.02,
+ "text": "lot"
+ },
+ {
+ "id": 5283,
+ "start": 3559.02,
+ "end": 3559.1,
+ "text": "of"
+ },
+ {
+ "id": 5284,
+ "start": 3559.1,
+ "end": 3559.2,
+ "text": "the"
+ },
+ {
+ "id": 5285,
+ "start": 3559.2,
+ "end": 3559.56,
+ "text": "mistakes"
+ },
+ {
+ "id": 5286,
+ "start": 3559.56,
+ "end": 3559.86,
+ "text": "are"
+ },
+ {
+ "id": 5287,
+ "start": 3559.86,
+ "end": 3560.36,
+ "text": "around"
+ },
+ {
+ "id": 5288,
+ "start": 3560.36,
+ "end": 3561.18,
+ "text": "how"
+ },
+ {
+ "id": 5289,
+ "start": 3561.18,
+ "end": 3561.4,
+ "text": "people"
+ },
+ {
+ "id": 5290,
+ "start": 3561.4,
+ "end": 3561.64,
+ "text": "connect"
+ },
+ {
+ "id": 5291,
+ "start": 3561.64,
+ "end": 3561.74,
+ "text": "to"
+ },
+ {
+ "id": 5292,
+ "start": 3561.74,
+ "end": 3561.9,
+ "text": "each"
+ },
+ {
+ "id": 5293,
+ "start": 3561.9,
+ "end": 3562.12,
+ "text": "other."
+ },
+ {
+ "id": 5294,
+ "start": 3562.12,
+ "end": 3562.3,
+ "text": "Just"
+ },
+ {
+ "id": 5295,
+ "start": 3562.3,
+ "end": 3562.54,
+ "text": "because"
+ },
+ {
+ "id": 5296,
+ "start": 3562.54,
+ "end": 3562.68,
+ "text": "of"
+ },
+ {
+ "id": 5297,
+ "start": 3562.68,
+ "end": 3562.82,
+ "text": "the"
+ },
+ {
+ "id": 5298,
+ "start": 3562.82,
+ "end": 3563.14,
+ "text": "nature"
+ },
+ {
+ "id": 5299,
+ "start": 3563.14,
+ "end": 3563.24,
+ "text": "of"
+ },
+ {
+ "id": 5300,
+ "start": 3563.24,
+ "end": 3563.38,
+ "text": "the"
+ },
+ {
+ "id": 5301,
+ "start": 3563.38,
+ "end": 3564.3,
+ "text": "service"
+ },
+ {
+ "id": 5302,
+ "start": 3564.3,
+ "end": 3565.34,
+ "text": "overall,"
+ },
+ {
+ "id": 5303,
+ "start": 3565.34,
+ "end": 3566.02,
+ "text": "I"
+ },
+ {
+ "id": 5304,
+ "start": 3566.02,
+ "end": 3566.2,
+ "text": "would"
+ },
+ {
+ "id": 5305,
+ "start": 3566.2,
+ "end": 3566.32,
+ "text": "say"
+ },
+ {
+ "id": 5306,
+ "start": 3566.32,
+ "end": 3566.44,
+ "text": "that"
+ },
+ {
+ "id": 5307,
+ "start": 3566.44,
+ "end": 3566.6,
+ "text": "we're"
+ },
+ {
+ "id": 5308,
+ "start": 3566.6,
+ "end": 3566.78,
+ "text": "going"
+ },
+ {
+ "id": 5309,
+ "start": 3566.78,
+ "end": 3567.02,
+ "text": "through"
+ },
+ {
+ "id": 5310,
+ "start": 3567.02,
+ "end": 3567.08,
+ "text": "a"
+ },
+ {
+ "id": 5311,
+ "start": 3567.08,
+ "end": 3567.52,
+ "text": "broader"
+ },
+ {
+ "id": 5312,
+ "start": 3567.52,
+ "end": 3568.3,
+ "text": "philosophical"
+ },
+ {
+ "id": 5313,
+ "start": 3568.3,
+ "end": 3568.74,
+ "text": "shift"
+ },
+ {
+ "id": 5314,
+ "start": 3568.74,
+ "end": 3569.04,
+ "text": "in"
+ },
+ {
+ "id": 5315,
+ "start": 3569.04,
+ "end": 3569.28,
+ "text": "how"
+ },
+ {
+ "id": 5316,
+ "start": 3569.28,
+ "end": 3569.48,
+ "text": "we"
+ },
+ {
+ "id": 5317,
+ "start": 3569.48,
+ "end": 3569.92,
+ "text": "approach"
+ },
+ {
+ "id": 5318,
+ "start": 3569.92,
+ "end": 3570.06,
+ "text": "our"
+ },
+ {
+ "id": 5319,
+ "start": 3570.06,
+ "end": 3570.78,
+ "text": "responsibility"
+ },
+ {
+ "id": 5320,
+ "start": 3570.78,
+ "end": 3570.88,
+ "text": "of"
+ },
+ {
+ "id": 5321,
+ "start": 3570.88,
+ "end": 3570.98,
+ "text": "the"
+ },
+ {
+ "id": 5322,
+ "start": 3570.98,
+ "end": 3571.36,
+ "text": "company"
+ },
+ {
+ "id": 5323,
+ "start": 3571.36,
+ "end": 3572.1,
+ "text": "for"
+ },
+ {
+ "id": 5324,
+ "start": 3572.1,
+ "end": 3572.22,
+ "text": "the"
+ },
+ {
+ "id": 5325,
+ "start": 3572.22,
+ "end": 3572.5,
+ "text": "first"
+ },
+ {
+ "id": 5326,
+ "start": 3572.5,
+ "end": 3573.2,
+ "text": "10"
+ },
+ {
+ "id": 5327,
+ "start": 3573.2,
+ "end": 3573.34,
+ "text": "or"
+ },
+ {
+ "id": 5328,
+ "start": 3573.34,
+ "end": 3573.64,
+ "text": "12"
+ },
+ {
+ "id": 5329,
+ "start": 3573.64,
+ "end": 3573.86,
+ "text": "years"
+ },
+ {
+ "id": 5330,
+ "start": 3573.86,
+ "end": 3574,
+ "text": "of"
+ },
+ {
+ "id": 5331,
+ "start": 3574,
+ "end": 3574.1,
+ "text": "the"
+ },
+ {
+ "id": 5332,
+ "start": 3574.1,
+ "end": 3574.46,
+ "text": "company."
+ },
+ {
+ "id": 5333,
+ "start": 3574.46,
+ "end": 3575.42,
+ "text": "I"
+ },
+ {
+ "id": 5334,
+ "start": 3575.42,
+ "end": 3575.72,
+ "text": "viewed"
+ },
+ {
+ "id": 5335,
+ "start": 3575.72,
+ "end": 3575.86,
+ "text": "our"
+ },
+ {
+ "id": 5336,
+ "start": 3575.86,
+ "end": 3576.6,
+ "text": "responsibility"
+ },
+ {
+ "id": 5337,
+ "start": 3576.6,
+ "end": 3576.72,
+ "text": "is"
+ },
+ {
+ "id": 5338,
+ "start": 3576.72,
+ "end": 3577.32,
+ "text": "primarily"
+ },
+ {
+ "id": 5339,
+ "start": 3577.32,
+ "end": 3577.66,
+ "text": "building"
+ },
+ {
+ "id": 5340,
+ "start": 3577.66,
+ "end": 3578.08,
+ "text": "tools"
+ },
+ {
+ "id": 5341,
+ "start": 3578.08,
+ "end": 3578.58,
+ "text": "that"
+ },
+ {
+ "id": 5342,
+ "start": 3578.58,
+ "end": 3578.68,
+ "text": "if"
+ },
+ {
+ "id": 5343,
+ "start": 3578.68,
+ "end": 3578.76,
+ "text": "we"
+ },
+ {
+ "id": 5344,
+ "start": 3578.76,
+ "end": 3578.92,
+ "text": "could"
+ },
+ {
+ "id": 5345,
+ "start": 3578.92,
+ "end": 3579.04,
+ "text": "put"
+ },
+ {
+ "id": 5346,
+ "start": 3579.04,
+ "end": 3579.28,
+ "text": "those"
+ },
+ {
+ "id": 5347,
+ "start": 3579.28,
+ "end": 3579.6,
+ "text": "tools"
+ },
+ {
+ "id": 5348,
+ "start": 3579.6,
+ "end": 3579.76,
+ "text": "in"
+ },
+ {
+ "id": 5349,
+ "start": 3579.76,
+ "end": 3580.08,
+ "text": "people's"
+ },
+ {
+ "id": 5350,
+ "start": 3580.08,
+ "end": 3580.44,
+ "text": "hands,"
+ },
+ {
+ "id": 5351,
+ "start": 3580.44,
+ "end": 3581.18,
+ "text": "then"
+ },
+ {
+ "id": 5352,
+ "start": 3581.18,
+ "end": 3581.54,
+ "text": "that"
+ },
+ {
+ "id": 5353,
+ "start": 3581.54,
+ "end": 3581.7,
+ "text": "would"
+ },
+ {
+ "id": 5354,
+ "start": 3581.7,
+ "end": 3582.1,
+ "text": "empower"
+ },
+ {
+ "id": 5355,
+ "start": 3582.1,
+ "end": 3582.4,
+ "text": "people"
+ },
+ {
+ "id": 5356,
+ "start": 3582.4,
+ "end": 3582.52,
+ "text": "to"
+ },
+ {
+ "id": 5357,
+ "start": 3582.52,
+ "end": 3582.68,
+ "text": "do"
+ },
+ {
+ "id": 5358,
+ "start": 3582.68,
+ "end": 3582.94,
+ "text": "good"
+ },
+ {
+ "id": 5359,
+ "start": 3582.94,
+ "end": 3583.52,
+ "text": "things."
+ },
+ {
+ "id": 5360,
+ "start": 3583.52,
+ "end": 3583.96,
+ "text": "What"
+ },
+ {
+ "id": 5361,
+ "start": 3583.96,
+ "end": 3584.02,
+ "text": "I"
+ },
+ {
+ "id": 5362,
+ "start": 3584.02,
+ "end": 3584.22,
+ "text": "think"
+ },
+ {
+ "id": 5363,
+ "start": 3584.22,
+ "end": 3584.44,
+ "text": "we've"
+ },
+ {
+ "id": 5364,
+ "start": 3584.44,
+ "end": 3584.66,
+ "text": "learned"
+ },
+ {
+ "id": 5365,
+ "start": 3584.66,
+ "end": 3584.9,
+ "text": "now"
+ },
+ {
+ "id": 5366,
+ "start": 3584.9,
+ "end": 3585.38,
+ "text": "across"
+ },
+ {
+ "id": 5367,
+ "start": 3585.38,
+ "end": 3585.48,
+ "text": "a"
+ },
+ {
+ "id": 5368,
+ "start": 3585.48,
+ "end": 3585.76,
+ "text": "number"
+ },
+ {
+ "id": 5369,
+ "start": 3585.76,
+ "end": 3585.84,
+ "text": "of"
+ },
+ {
+ "id": 5370,
+ "start": 3585.84,
+ "end": 3586.18,
+ "text": "issues,"
+ },
+ {
+ "id": 5371,
+ "start": 3586.18,
+ "end": 3586.46,
+ "text": "not"
+ },
+ {
+ "id": 5372,
+ "start": 3586.46,
+ "end": 3586.64,
+ "text": "just"
+ },
+ {
+ "id": 5373,
+ "start": 3586.64,
+ "end": 3586.9,
+ "text": "data"
+ },
+ {
+ "id": 5374,
+ "start": 3586.9,
+ "end": 3587.36,
+ "text": "privacy."
+ },
+ {
+ "id": 5375,
+ "start": 3587.36,
+ "end": 3587.52,
+ "text": "But"
+ },
+ {
+ "id": 5376,
+ "start": 3587.52,
+ "end": 3587.76,
+ "text": "also"
+ },
+ {
+ "id": 5377,
+ "start": 3587.76,
+ "end": 3588.06,
+ "text": "Fake"
+ },
+ {
+ "id": 5378,
+ "start": 3588.06,
+ "end": 3588.36,
+ "text": "News"
+ },
+ {
+ "id": 5379,
+ "start": 3588.36,
+ "end": 3588.54,
+ "text": "and"
+ },
+ {
+ "id": 5380,
+ "start": 3588.54,
+ "end": 3588.82,
+ "text": "foreign"
+ },
+ {
+ "id": 5381,
+ "start": 3588.82,
+ "end": 3589.34,
+ "text": "interference"
+ },
+ {
+ "id": 5382,
+ "start": 3589.34,
+ "end": 3589.42,
+ "text": "in"
+ },
+ {
+ "id": 5383,
+ "start": 3589.42,
+ "end": 3589.92,
+ "text": "elections"
+ },
+ {
+ "id": 5384,
+ "start": 3589.92,
+ "end": 3590.52,
+ "text": "is"
+ },
+ {
+ "id": 5385,
+ "start": 3590.52,
+ "end": 3590.7,
+ "text": "that"
+ },
+ {
+ "id": 5386,
+ "start": 3590.7,
+ "end": 3590.82,
+ "text": "we"
+ },
+ {
+ "id": 5387,
+ "start": 3590.82,
+ "end": 3591.02,
+ "text": "need"
+ },
+ {
+ "id": 5388,
+ "start": 3591.02,
+ "end": 3591.12,
+ "text": "to"
+ },
+ {
+ "id": 5389,
+ "start": 3591.12,
+ "end": 3591.32,
+ "text": "take"
+ },
+ {
+ "id": 5390,
+ "start": 3591.32,
+ "end": 3591.38,
+ "text": "a"
+ },
+ {
+ "id": 5391,
+ "start": 3591.38,
+ "end": 3591.6,
+ "text": "more"
+ },
+ {
+ "id": 5392,
+ "start": 3591.6,
+ "end": 3592.14,
+ "text": "proactive"
+ },
+ {
+ "id": 5393,
+ "start": 3592.14,
+ "end": 3592.4,
+ "text": "role."
+ },
+ {
+ "id": 5394,
+ "start": 3592.4,
+ "end": 3592.54,
+ "text": "In"
+ },
+ {
+ "id": 5395,
+ "start": 3592.54,
+ "end": 3592.64,
+ "text": "a"
+ },
+ {
+ "id": 5396,
+ "start": 3592.64,
+ "end": 3592.98,
+ "text": "broader"
+ },
+ {
+ "id": 5397,
+ "start": 3592.98,
+ "end": 3593.18,
+ "text": "view"
+ },
+ {
+ "id": 5398,
+ "start": 3593.18,
+ "end": 3593.28,
+ "text": "of"
+ },
+ {
+ "id": 5399,
+ "start": 3593.28,
+ "end": 3593.46,
+ "text": "our"
+ },
+ {
+ "id": 5400,
+ "start": 3593.46,
+ "end": 3594.24,
+ "text": "responsibility"
+ },
+ {
+ "id": 5401,
+ "start": 3594.24,
+ "end": 3594.84,
+ "text": "it's"
+ },
+ {
+ "id": 5402,
+ "start": 3594.84,
+ "end": 3595,
+ "text": "not"
+ },
+ {
+ "id": 5403,
+ "start": 3595,
+ "end": 3595.22,
+ "text": "enough"
+ },
+ {
+ "id": 5404,
+ "start": 3595.22,
+ "end": 3595.32,
+ "text": "to"
+ },
+ {
+ "id": 5405,
+ "start": 3595.32,
+ "end": 3595.48,
+ "text": "just"
+ },
+ {
+ "id": 5406,
+ "start": 3595.48,
+ "end": 3595.7,
+ "text": "build"
+ },
+ {
+ "id": 5407,
+ "start": 3595.7,
+ "end": 3596,
+ "text": "tools."
+ },
+ {
+ "id": 5408,
+ "start": 3596,
+ "end": 3596.62,
+ "text": "We"
+ },
+ {
+ "id": 5409,
+ "start": 3596.62,
+ "end": 3596.8,
+ "text": "need"
+ },
+ {
+ "id": 5410,
+ "start": 3596.8,
+ "end": 3596.88,
+ "text": "to"
+ },
+ {
+ "id": 5411,
+ "start": 3596.88,
+ "end": 3597.04,
+ "text": "make"
+ },
+ {
+ "id": 5412,
+ "start": 3597.04,
+ "end": 3597.22,
+ "text": "sure"
+ },
+ {
+ "id": 5413,
+ "start": 3597.22,
+ "end": 3597.38,
+ "text": "that"
+ },
+ {
+ "id": 5414,
+ "start": 3597.38,
+ "end": 3597.62,
+ "text": "they're"
+ },
+ {
+ "id": 5415,
+ "start": 3597.62,
+ "end": 3597.88,
+ "text": "used"
+ },
+ {
+ "id": 5416,
+ "start": 3597.88,
+ "end": 3598.06,
+ "text": "for"
+ },
+ {
+ "id": 5417,
+ "start": 3598.06,
+ "end": 3598.32,
+ "text": "good."
+ },
+ {
+ "id": 5418,
+ "start": 3598.32,
+ "end": 3599.17,
+ "text": "And"
+ },
+ {
+ "id": 5419,
+ "start": 3599.17,
+ "end": 3599.41,
+ "text": "that"
+ },
+ {
+ "id": 5420,
+ "start": 3599.41,
+ "end": 3599.69,
+ "text": "means"
+ },
+ {
+ "id": 5421,
+ "start": 3599.69,
+ "end": 3599.95,
+ "text": "that"
+ },
+ {
+ "id": 5422,
+ "start": 3599.95,
+ "end": 3600.11,
+ "text": "we"
+ },
+ {
+ "id": 5423,
+ "start": 3600.11,
+ "end": 3600.33,
+ "text": "need"
+ },
+ {
+ "id": 5424,
+ "start": 3600.33,
+ "end": 3600.43,
+ "text": "to"
+ },
+ {
+ "id": 5425,
+ "start": 3600.43,
+ "end": 3600.73,
+ "text": "now"
+ },
+ {
+ "id": 5426,
+ "start": 3600.73,
+ "end": 3600.99,
+ "text": "take"
+ },
+ {
+ "id": 5427,
+ "start": 3600.99,
+ "end": 3601.03,
+ "text": "a"
+ },
+ {
+ "id": 5428,
+ "start": 3601.03,
+ "end": 3601.23,
+ "text": "more"
+ },
+ {
+ "id": 5429,
+ "start": 3601.23,
+ "end": 3601.59,
+ "text": "active"
+ },
+ {
+ "id": 5430,
+ "start": 3601.59,
+ "end": 3601.75,
+ "text": "view"
+ },
+ {
+ "id": 5431,
+ "start": 3601.75,
+ "end": 3602.47,
+ "text": "in"
+ },
+ {
+ "id": 5432,
+ "start": 3602.47,
+ "end": 3602.93,
+ "text": "policing."
+ },
+ {
+ "id": 5433,
+ "start": 3602.93,
+ "end": 3603.05,
+ "text": "The"
+ },
+ {
+ "id": 5434,
+ "start": 3603.05,
+ "end": 3603.63,
+ "text": "ecosystem"
+ },
+ {
+ "id": 5435,
+ "start": 3603.63,
+ "end": 3604.67,
+ "text": "and"
+ },
+ {
+ "id": 5436,
+ "start": 3604.67,
+ "end": 3604.99,
+ "text": "in"
+ },
+ {
+ "id": 5437,
+ "start": 3604.99,
+ "end": 3605.53,
+ "text": "watching"
+ },
+ {
+ "id": 5438,
+ "start": 3605.53,
+ "end": 3605.95,
+ "text": "and"
+ },
+ {
+ "id": 5439,
+ "start": 3605.95,
+ "end": 3606.23,
+ "text": "kind"
+ },
+ {
+ "id": 5440,
+ "start": 3606.23,
+ "end": 3606.33,
+ "text": "of"
+ },
+ {
+ "id": 5441,
+ "start": 3606.33,
+ "end": 3606.61,
+ "text": "looking"
+ },
+ {
+ "id": 5442,
+ "start": 3606.61,
+ "end": 3606.85,
+ "text": "out"
+ },
+ {
+ "id": 5443,
+ "start": 3606.85,
+ "end": 3607.19,
+ "text": "and"
+ },
+ {
+ "id": 5444,
+ "start": 3607.19,
+ "end": 3607.45,
+ "text": "making"
+ },
+ {
+ "id": 5445,
+ "start": 3607.45,
+ "end": 3607.61,
+ "text": "sure"
+ },
+ {
+ "id": 5446,
+ "start": 3607.61,
+ "end": 3607.77,
+ "text": "that"
+ },
+ {
+ "id": 5447,
+ "start": 3607.77,
+ "end": 3607.93,
+ "text": "all"
+ },
+ {
+ "id": 5448,
+ "start": 3607.93,
+ "end": 3608.01,
+ "text": "of"
+ },
+ {
+ "id": 5449,
+ "start": 3608.01,
+ "end": 3608.15,
+ "text": "the"
+ },
+ {
+ "id": 5450,
+ "start": 3608.15,
+ "end": 3608.75,
+ "text": "members"
+ },
+ {
+ "id": 5451,
+ "start": 3608.75,
+ "end": 3608.87,
+ "text": "in"
+ },
+ {
+ "id": 5452,
+ "start": 3608.87,
+ "end": 3609.03,
+ "text": "our"
+ },
+ {
+ "id": 5453,
+ "start": 3609.03,
+ "end": 3609.41,
+ "text": "community"
+ },
+ {
+ "id": 5454,
+ "start": 3609.41,
+ "end": 3609.57,
+ "text": "are"
+ },
+ {
+ "id": 5455,
+ "start": 3609.57,
+ "end": 3609.83,
+ "text": "using"
+ },
+ {
+ "id": 5456,
+ "start": 3609.83,
+ "end": 3610.07,
+ "text": "these"
+ },
+ {
+ "id": 5457,
+ "start": 3610.07,
+ "end": 3610.43,
+ "text": "tools"
+ },
+ {
+ "id": 5458,
+ "start": 3610.43,
+ "end": 3610.85,
+ "text": "in"
+ },
+ {
+ "id": 5459,
+ "start": 3610.85,
+ "end": 3610.91,
+ "text": "a"
+ },
+ {
+ "id": 5460,
+ "start": 3610.91,
+ "end": 3611.05,
+ "text": "way"
+ },
+ {
+ "id": 5461,
+ "start": 3611.05,
+ "end": 3611.25,
+ "text": "that's"
+ },
+ {
+ "id": 5462,
+ "start": 3611.25,
+ "end": 3611.41,
+ "text": "going"
+ },
+ {
+ "id": 5463,
+ "start": 3611.41,
+ "end": 3611.47,
+ "text": "to"
+ },
+ {
+ "id": 5464,
+ "start": 3611.47,
+ "end": 3611.55,
+ "text": "be"
+ },
+ {
+ "id": 5465,
+ "start": 3611.55,
+ "end": 3611.69,
+ "text": "good"
+ },
+ {
+ "id": 5466,
+ "start": 3611.69,
+ "end": 3611.81,
+ "text": "and"
+ },
+ {
+ "id": 5467,
+ "start": 3611.81,
+ "end": 3612.17,
+ "text": "healthy."
+ },
+ {
+ "id": 5468,
+ "start": 3612.17,
+ "end": 3612.77,
+ "text": "So"
+ },
+ {
+ "id": 5469,
+ "start": 3612.77,
+ "end": 3613.59,
+ "text": "at"
+ },
+ {
+ "id": 5470,
+ "start": 3613.59,
+ "end": 3613.73,
+ "text": "the"
+ },
+ {
+ "id": 5471,
+ "start": 3613.73,
+ "end": 3613.85,
+ "text": "end"
+ },
+ {
+ "id": 5472,
+ "start": 3613.85,
+ "end": 3613.91,
+ "text": "of"
+ },
+ {
+ "id": 5473,
+ "start": 3613.91,
+ "end": 3614.01,
+ "text": "the"
+ },
+ {
+ "id": 5474,
+ "start": 3614.01,
+ "end": 3614.82,
+ "text": "day,"
+ },
+ {
+ "id": 5475,
+ "start": 3614.82,
+ "end": 3615.6,
+ "text": "this"
+ },
+ {
+ "id": 5476,
+ "start": 3615.6,
+ "end": 3615.72,
+ "text": "is"
+ },
+ {
+ "id": 5477,
+ "start": 3615.72,
+ "end": 3615.88,
+ "text": "going"
+ },
+ {
+ "id": 5478,
+ "start": 3615.88,
+ "end": 3615.96,
+ "text": "to"
+ },
+ {
+ "id": 5479,
+ "start": 3615.96,
+ "end": 3616.02,
+ "text": "be"
+ },
+ {
+ "id": 5480,
+ "start": 3616.02,
+ "end": 3616.24,
+ "text": "something"
+ },
+ {
+ "id": 5481,
+ "start": 3616.24,
+ "end": 3616.4,
+ "text": "where"
+ },
+ {
+ "id": 5482,
+ "start": 3616.4,
+ "end": 3616.6,
+ "text": "people"
+ },
+ {
+ "id": 5483,
+ "start": 3616.6,
+ "end": 3616.78,
+ "text": "will"
+ },
+ {
+ "id": 5484,
+ "start": 3616.78,
+ "end": 3617.04,
+ "text": "measure"
+ },
+ {
+ "id": 5485,
+ "start": 3617.04,
+ "end": 3617.18,
+ "text": "us"
+ },
+ {
+ "id": 5486,
+ "start": 3617.18,
+ "end": 3617.36,
+ "text": "by"
+ },
+ {
+ "id": 5487,
+ "start": 3617.36,
+ "end": 3617.5,
+ "text": "our"
+ },
+ {
+ "id": 5488,
+ "start": 3617.5,
+ "end": 3617.88,
+ "text": "results"
+ },
+ {
+ "id": 5489,
+ "start": 3617.88,
+ "end": 3618.78,
+ "text": "on"
+ },
+ {
+ "id": 5490,
+ "start": 3618.78,
+ "end": 3618.98,
+ "text": "this"
+ },
+ {
+ "id": 5491,
+ "start": 3618.98,
+ "end": 3619.84,
+ "text": "it's"
+ },
+ {
+ "id": 5492,
+ "start": 3619.84,
+ "end": 3619.96,
+ "text": "not"
+ },
+ {
+ "id": 5493,
+ "start": 3619.96,
+ "end": 3620.1,
+ "text": "that"
+ },
+ {
+ "id": 5494,
+ "start": 3620.1,
+ "end": 3620.16,
+ "text": "I"
+ },
+ {
+ "id": 5495,
+ "start": 3620.16,
+ "end": 3620.46,
+ "text": "expect"
+ },
+ {
+ "id": 5496,
+ "start": 3620.46,
+ "end": 3620.6,
+ "text": "that"
+ },
+ {
+ "id": 5497,
+ "start": 3620.6,
+ "end": 3620.92,
+ "text": "anything"
+ },
+ {
+ "id": 5498,
+ "start": 3620.92,
+ "end": 3620.98,
+ "text": "I"
+ },
+ {
+ "id": 5499,
+ "start": 3620.98,
+ "end": 3621.24,
+ "text": "say"
+ },
+ {
+ "id": 5500,
+ "start": 3621.24,
+ "end": 3621.46,
+ "text": "here"
+ },
+ {
+ "id": 5501,
+ "start": 3621.46,
+ "end": 3621.84,
+ "text": "today"
+ },
+ {
+ "id": 5502,
+ "start": 3621.84,
+ "end": 3622.6,
+ "text": "to"
+ },
+ {
+ "id": 5503,
+ "start": 3622.6,
+ "end": 3623.18,
+ "text": "necessarily"
+ },
+ {
+ "id": 5504,
+ "start": 3623.18,
+ "end": 3623.44,
+ "text": "change"
+ },
+ {
+ "id": 5505,
+ "start": 3623.44,
+ "end": 3623.78,
+ "text": "people's"
+ },
+ {
+ "id": 5506,
+ "start": 3623.78,
+ "end": 3624.1,
+ "text": "view."
+ },
+ {
+ "id": 5507,
+ "start": 3624.1,
+ "end": 3624.98,
+ "text": "But"
+ },
+ {
+ "id": 5508,
+ "start": 3624.98,
+ "end": 3625.12,
+ "text": "I'm"
+ },
+ {
+ "id": 5509,
+ "start": 3625.12,
+ "end": 3625.42,
+ "text": "committed"
+ },
+ {
+ "id": 5510,
+ "start": 3625.42,
+ "end": 3625.5,
+ "text": "to"
+ },
+ {
+ "id": 5511,
+ "start": 3625.5,
+ "end": 3625.72,
+ "text": "getting"
+ },
+ {
+ "id": 5512,
+ "start": 3625.72,
+ "end": 3625.86,
+ "text": "this"
+ },
+ {
+ "id": 5513,
+ "start": 3625.86,
+ "end": 3626.31,
+ "text": "right."
+ },
+ {
+ "id": 5514,
+ "start": 3626.31,
+ "end": 3626.45,
+ "text": "And"
+ },
+ {
+ "id": 5515,
+ "start": 3626.45,
+ "end": 3626.55,
+ "text": "I"
+ },
+ {
+ "id": 5516,
+ "start": 3626.55,
+ "end": 3626.87,
+ "text": "believe"
+ },
+ {
+ "id": 5517,
+ "start": 3626.87,
+ "end": 3627.17,
+ "text": "that"
+ },
+ {
+ "id": 5518,
+ "start": 3627.17,
+ "end": 3627.61,
+ "text": "over"
+ },
+ {
+ "id": 5519,
+ "start": 3627.61,
+ "end": 3627.73,
+ "text": "the"
+ },
+ {
+ "id": 5520,
+ "start": 3627.73,
+ "end": 3627.97,
+ "text": "coming"
+ },
+ {
+ "id": 5521,
+ "start": 3627.97,
+ "end": 3628.21,
+ "text": "years,"
+ },
+ {
+ "id": 5522,
+ "start": 3628.21,
+ "end": 3628.47,
+ "text": "once"
+ },
+ {
+ "id": 5523,
+ "start": 3628.47,
+ "end": 3628.63,
+ "text": "we"
+ },
+ {
+ "id": 5524,
+ "start": 3628.63,
+ "end": 3629.23,
+ "text": "fully"
+ },
+ {
+ "id": 5525,
+ "start": 3629.23,
+ "end": 3629.45,
+ "text": "work,"
+ },
+ {
+ "id": 5526,
+ "start": 3629.45,
+ "end": 3629.71,
+ "text": "all"
+ },
+ {
+ "id": 5527,
+ "start": 3629.71,
+ "end": 3629.95,
+ "text": "these"
+ },
+ {
+ "id": 5528,
+ "start": 3629.95,
+ "end": 3630.43,
+ "text": "solutions"
+ },
+ {
+ "id": 5529,
+ "start": 3630.43,
+ "end": 3630.83,
+ "text": "through"
+ },
+ {
+ "id": 5530,
+ "start": 3630.83,
+ "end": 3631.69,
+ "text": "people"
+ },
+ {
+ "id": 5531,
+ "start": 3631.69,
+ "end": 3631.93,
+ "text": "will"
+ },
+ {
+ "id": 5532,
+ "start": 3631.93,
+ "end": 3632.09,
+ "text": "see"
+ },
+ {
+ "id": 5533,
+ "start": 3632.09,
+ "end": 3632.59,
+ "text": "real"
+ },
+ {
+ "id": 5534,
+ "start": 3632.59,
+ "end": 3633.03,
+ "text": "differences"
+ },
+ {
+ "id": 5535,
+ "start": 3633.03,
+ "end": 3634.21,
+ "text": "and"
+ },
+ {
+ "id": 5536,
+ "start": 3634.21,
+ "end": 3634.65,
+ "text": "I'm"
+ },
+ {
+ "id": 5537,
+ "start": 3634.65,
+ "end": 3635.11,
+ "text": "glad"
+ },
+ {
+ "id": 5538,
+ "start": 3635.11,
+ "end": 3635.31,
+ "text": "that"
+ },
+ {
+ "id": 5539,
+ "start": 3635.31,
+ "end": 3635.77,
+ "text": "you"
+ },
+ {
+ "id": 5540,
+ "start": 3635.77,
+ "end": 3635.93,
+ "text": "all"
+ },
+ {
+ "id": 5541,
+ "start": 3635.93,
+ "end": 3636.09,
+ "text": "have"
+ },
+ {
+ "id": 5542,
+ "start": 3636.09,
+ "end": 3636.37,
+ "text": "gotten"
+ },
+ {
+ "id": 5543,
+ "start": 3636.37,
+ "end": 3636.59,
+ "text": "that"
+ },
+ {
+ "id": 5544,
+ "start": 3636.59,
+ "end": 3637.8,
+ "text": "message"
+ },
+ {
+ "id": 5545,
+ "start": 3637.8,
+ "end": 3638.76,
+ "text": "as"
+ },
+ {
+ "id": 5546,
+ "start": 3638.76,
+ "end": 3638.88,
+ "text": "we"
+ },
+ {
+ "id": 5547,
+ "start": 3638.88,
+ "end": 3639.34,
+ "text": "discussed"
+ },
+ {
+ "id": 5548,
+ "start": 3639.34,
+ "end": 3639.44,
+ "text": "in"
+ },
+ {
+ "id": 5549,
+ "start": 3639.44,
+ "end": 3639.62,
+ "text": "my"
+ },
+ {
+ "id": 5550,
+ "start": 3639.62,
+ "end": 3639.96,
+ "text": "office"
+ },
+ {
+ "id": 5551,
+ "start": 3639.96,
+ "end": 3640.98,
+ "text": "yesterday."
+ },
+ {
+ "id": 5552,
+ "start": 3640.98,
+ "end": 3641.74,
+ "text": "The"
+ },
+ {
+ "id": 5553,
+ "start": 3641.74,
+ "end": 3642.06,
+ "text": "line"
+ },
+ {
+ "id": 5554,
+ "start": 3642.06,
+ "end": 3643.04,
+ "text": "between"
+ },
+ {
+ "id": 5555,
+ "start": 3643.04,
+ "end": 3644.02,
+ "text": "legitimate"
+ },
+ {
+ "id": 5556,
+ "start": 3644.02,
+ "end": 3644.46,
+ "text": "political"
+ },
+ {
+ "id": 5557,
+ "start": 3644.46,
+ "end": 3645.08,
+ "text": "discourse"
+ },
+ {
+ "id": 5558,
+ "start": 3645.08,
+ "end": 3645.26,
+ "text": "and"
+ },
+ {
+ "id": 5559,
+ "start": 3645.26,
+ "end": 3645.52,
+ "text": "hate"
+ },
+ {
+ "id": 5560,
+ "start": 3645.52,
+ "end": 3645.88,
+ "text": "speech"
+ },
+ {
+ "id": 5561,
+ "start": 3645.88,
+ "end": 3646.08,
+ "text": "can"
+ },
+ {
+ "id": 5562,
+ "start": 3646.08,
+ "end": 3646.52,
+ "text": "sometimes"
+ },
+ {
+ "id": 5563,
+ "start": 3646.52,
+ "end": 3646.7,
+ "text": "be"
+ },
+ {
+ "id": 5564,
+ "start": 3646.7,
+ "end": 3646.9,
+ "text": "hard"
+ },
+ {
+ "id": 5565,
+ "start": 3646.9,
+ "end": 3647,
+ "text": "to"
+ },
+ {
+ "id": 5566,
+ "start": 3647,
+ "end": 3647.5,
+ "text": "identify"
+ },
+ {
+ "id": 5567,
+ "start": 3647.5,
+ "end": 3647.8,
+ "text": "and"
+ },
+ {
+ "id": 5568,
+ "start": 3647.8,
+ "end": 3648.56,
+ "text": "especially"
+ },
+ {
+ "id": 5569,
+ "start": 3648.56,
+ "end": 3648.68,
+ "text": "when"
+ },
+ {
+ "id": 5570,
+ "start": 3648.68,
+ "end": 3648.78,
+ "text": "your"
+ },
+ {
+ "id": 5571,
+ "start": 3648.78,
+ "end": 3649.08,
+ "text": "relying"
+ },
+ {
+ "id": 5572,
+ "start": 3649.08,
+ "end": 3649.24,
+ "text": "on"
+ },
+ {
+ "id": 5573,
+ "start": 3649.24,
+ "end": 3649.82,
+ "text": "artificial"
+ },
+ {
+ "id": 5574,
+ "start": 3649.82,
+ "end": 3650.32,
+ "text": "intelligence"
+ },
+ {
+ "id": 5575,
+ "start": 3650.32,
+ "end": 3650.44,
+ "text": "and"
+ },
+ {
+ "id": 5576,
+ "start": 3650.44,
+ "end": 3650.64,
+ "text": "other"
+ },
+ {
+ "id": 5577,
+ "start": 3650.64,
+ "end": 3651.28,
+ "text": "technologies"
+ },
+ {
+ "id": 5578,
+ "start": 3651.28,
+ "end": 3651.42,
+ "text": "for"
+ },
+ {
+ "id": 5579,
+ "start": 3651.42,
+ "end": 3651.52,
+ "text": "the"
+ },
+ {
+ "id": 5580,
+ "start": 3651.52,
+ "end": 3651.8,
+ "text": "initial"
+ },
+ {
+ "id": 5581,
+ "start": 3651.8,
+ "end": 3653.1,
+ "text": "discovery,"
+ },
+ {
+ "id": 5582,
+ "start": 3653.1,
+ "end": 3654.06,
+ "text": "can"
+ },
+ {
+ "id": 5583,
+ "start": 3654.06,
+ "end": 3654.2,
+ "text": "you"
+ },
+ {
+ "id": 5584,
+ "start": 3654.2,
+ "end": 3654.74,
+ "text": "discuss"
+ },
+ {
+ "id": 5585,
+ "start": 3654.74,
+ "end": 3655,
+ "text": "what"
+ },
+ {
+ "id": 5586,
+ "start": 3655,
+ "end": 3655.48,
+ "text": "steps"
+ },
+ {
+ "id": 5587,
+ "start": 3655.48,
+ "end": 3656.28,
+ "text": "that"
+ },
+ {
+ "id": 5588,
+ "start": 3656.28,
+ "end": 3656.78,
+ "text": "Facebook"
+ },
+ {
+ "id": 5589,
+ "start": 3656.78,
+ "end": 3657.2,
+ "text": "currently"
+ },
+ {
+ "id": 5590,
+ "start": 3657.2,
+ "end": 3657.52,
+ "text": "takes"
+ },
+ {
+ "id": 5591,
+ "start": 3657.52,
+ "end": 3657.72,
+ "text": "when"
+ },
+ {
+ "id": 5592,
+ "start": 3657.72,
+ "end": 3658.06,
+ "text": "making"
+ },
+ {
+ "id": 5593,
+ "start": 3658.06,
+ "end": 3658.26,
+ "text": "these"
+ },
+ {
+ "id": 5594,
+ "start": 3658.26,
+ "end": 3659.02,
+ "text": "evaluations?"
+ },
+ {
+ "id": 5595,
+ "start": 3659.02,
+ "end": 3659.2,
+ "text": "The"
+ },
+ {
+ "id": 5596,
+ "start": 3659.2,
+ "end": 3659.56,
+ "text": "challenges"
+ },
+ {
+ "id": 5597,
+ "start": 3659.56,
+ "end": 3659.76,
+ "text": "that"
+ },
+ {
+ "id": 5598,
+ "start": 3659.76,
+ "end": 3659.92,
+ "text": "you"
+ },
+ {
+ "id": 5599,
+ "start": 3659.92,
+ "end": 3660.14,
+ "text": "face"
+ },
+ {
+ "id": 5600,
+ "start": 3660.14,
+ "end": 3660.28,
+ "text": "in"
+ },
+ {
+ "id": 5601,
+ "start": 3660.28,
+ "end": 3660.44,
+ "text": "any"
+ },
+ {
+ "id": 5602,
+ "start": 3660.44,
+ "end": 3661.02,
+ "text": "examples"
+ },
+ {
+ "id": 5603,
+ "start": 3661.02,
+ "end": 3661.72,
+ "text": "of"
+ },
+ {
+ "id": 5604,
+ "start": 3661.72,
+ "end": 3662.14,
+ "text": "where"
+ },
+ {
+ "id": 5605,
+ "start": 3662.14,
+ "end": 3662.44,
+ "text": "you"
+ },
+ {
+ "id": 5606,
+ "start": 3662.44,
+ "end": 3662.68,
+ "text": "may"
+ },
+ {
+ "id": 5607,
+ "start": 3662.68,
+ "end": 3662.92,
+ "text": "draw"
+ },
+ {
+ "id": 5608,
+ "start": 3662.92,
+ "end": 3663.08,
+ "text": "the"
+ },
+ {
+ "id": 5609,
+ "start": 3663.08,
+ "end": 3663.3,
+ "text": "line"
+ },
+ {
+ "id": 5610,
+ "start": 3663.3,
+ "end": 3663.6,
+ "text": "between"
+ },
+ {
+ "id": 5611,
+ "start": 3663.6,
+ "end": 3663.82,
+ "text": "what"
+ },
+ {
+ "id": 5612,
+ "start": 3663.82,
+ "end": 3664.06,
+ "text": "is?"
+ },
+ {
+ "id": 5613,
+ "start": 3664.06,
+ "end": 3664.2,
+ "text": "And"
+ },
+ {
+ "id": 5614,
+ "start": 3664.2,
+ "end": 3664.36,
+ "text": "what"
+ },
+ {
+ "id": 5615,
+ "start": 3664.36,
+ "end": 3664.56,
+ "text": "is"
+ },
+ {
+ "id": 5616,
+ "start": 3664.56,
+ "end": 3664.86,
+ "text": "not"
+ },
+ {
+ "id": 5617,
+ "start": 3664.86,
+ "end": 3665.22,
+ "text": "hate"
+ },
+ {
+ "id": 5618,
+ "start": 3665.22,
+ "end": 3666.58,
+ "text": "speech?"
+ },
+ {
+ "id": 5619,
+ "start": 3666.58,
+ "end": 3667.86,
+ "text": "Yes,"
+ },
+ {
+ "id": 5620,
+ "start": 3667.86,
+ "end": 3668.16,
+ "text": "Mr"
+ },
+ {
+ "id": 5621,
+ "start": 3668.16,
+ "end": 3668.46,
+ "text": "Chairman"
+ },
+ {
+ "id": 5622,
+ "start": 3668.46,
+ "end": 3668.82,
+ "text": "I'll"
+ },
+ {
+ "id": 5623,
+ "start": 3668.82,
+ "end": 3669.02,
+ "text": "speak"
+ },
+ {
+ "id": 5624,
+ "start": 3669.02,
+ "end": 3669.14,
+ "text": "to"
+ },
+ {
+ "id": 5625,
+ "start": 3669.14,
+ "end": 3669.42,
+ "text": "hate"
+ },
+ {
+ "id": 5626,
+ "start": 3669.42,
+ "end": 3669.8,
+ "text": "speech"
+ },
+ {
+ "id": 5627,
+ "start": 3669.8,
+ "end": 3670.06,
+ "text": "and"
+ },
+ {
+ "id": 5628,
+ "start": 3670.06,
+ "end": 3670.46,
+ "text": "then"
+ },
+ {
+ "id": 5629,
+ "start": 3670.46,
+ "end": 3671.38,
+ "text": "I'll"
+ },
+ {
+ "id": 5630,
+ "start": 3671.38,
+ "end": 3671.56,
+ "text": "talk"
+ },
+ {
+ "id": 5631,
+ "start": 3671.56,
+ "end": 3672.14,
+ "text": "about"
+ },
+ {
+ "id": 5632,
+ "start": 3672.14,
+ "end": 3672.76,
+ "text": "enforcing"
+ },
+ {
+ "id": 5633,
+ "start": 3672.76,
+ "end": 3672.88,
+ "text": "our"
+ },
+ {
+ "id": 5634,
+ "start": 3672.88,
+ "end": 3673.18,
+ "text": "content"
+ },
+ {
+ "id": 5635,
+ "start": 3673.18,
+ "end": 3673.64,
+ "text": "policies"
+ },
+ {
+ "id": 5636,
+ "start": 3673.64,
+ "end": 3673.82,
+ "text": "more"
+ },
+ {
+ "id": 5637,
+ "start": 3673.82,
+ "end": 3675.98,
+ "text": "broadly,"
+ },
+ {
+ "id": 5638,
+ "start": 3675.98,
+ "end": 3677.02,
+ "text": "actually,"
+ },
+ {
+ "id": 5639,
+ "start": 3677.02,
+ "end": 3677.24,
+ "text": "maybe"
+ },
+ {
+ "id": 5640,
+ "start": 3677.24,
+ "end": 3677.92,
+ "text": "if"
+ },
+ {
+ "id": 5641,
+ "start": 3677.92,
+ "end": 3678.1,
+ "text": "you're"
+ },
+ {
+ "id": 5642,
+ "start": 3678.1,
+ "end": 3678.28,
+ "text": "okay,"
+ },
+ {
+ "id": 5643,
+ "start": 3678.28,
+ "end": 3678.42,
+ "text": "with"
+ },
+ {
+ "id": 5644,
+ "start": 3678.42,
+ "end": 3678.52,
+ "text": "it"
+ },
+ {
+ "id": 5645,
+ "start": 3678.52,
+ "end": 3678.7,
+ "text": "I'll"
+ },
+ {
+ "id": 5646,
+ "start": 3678.7,
+ "end": 3678.78,
+ "text": "go"
+ },
+ {
+ "id": 5647,
+ "start": 3678.78,
+ "end": 3678.88,
+ "text": "in"
+ },
+ {
+ "id": 5648,
+ "start": 3678.88,
+ "end": 3678.98,
+ "text": "the"
+ },
+ {
+ "id": 5649,
+ "start": 3678.98,
+ "end": 3679.16,
+ "text": "other"
+ },
+ {
+ "id": 5650,
+ "start": 3679.16,
+ "end": 3679.4,
+ "text": "order."
+ },
+ {
+ "id": 5651,
+ "start": 3679.4,
+ "end": 3680.56,
+ "text": "So"
+ },
+ {
+ "id": 5652,
+ "start": 3680.56,
+ "end": 3681.52,
+ "text": "from"
+ },
+ {
+ "id": 5653,
+ "start": 3681.52,
+ "end": 3681.66,
+ "text": "the"
+ },
+ {
+ "id": 5654,
+ "start": 3681.66,
+ "end": 3681.98,
+ "text": "beginning"
+ },
+ {
+ "id": 5655,
+ "start": 3681.98,
+ "end": 3682.06,
+ "text": "of"
+ },
+ {
+ "id": 5656,
+ "start": 3682.06,
+ "end": 3682.2,
+ "text": "the"
+ },
+ {
+ "id": 5657,
+ "start": 3682.2,
+ "end": 3682.5,
+ "text": "company"
+ },
+ {
+ "id": 5658,
+ "start": 3682.5,
+ "end": 3682.62,
+ "text": "and"
+ },
+ {
+ "id": 5659,
+ "start": 3682.62,
+ "end": 3683.32,
+ "text": "2,004"
+ },
+ {
+ "id": 5660,
+ "start": 3683.32,
+ "end": 3683.5,
+ "text": "I"
+ },
+ {
+ "id": 5661,
+ "start": 3683.5,
+ "end": 3683.86,
+ "text": "started"
+ },
+ {
+ "id": 5662,
+ "start": 3683.86,
+ "end": 3683.96,
+ "text": "it"
+ },
+ {
+ "id": 5663,
+ "start": 3683.96,
+ "end": 3684.08,
+ "text": "in"
+ },
+ {
+ "id": 5664,
+ "start": 3684.08,
+ "end": 3684.2,
+ "text": "my"
+ },
+ {
+ "id": 5665,
+ "start": 3684.2,
+ "end": 3684.42,
+ "text": "dorm"
+ },
+ {
+ "id": 5666,
+ "start": 3684.42,
+ "end": 3684.68,
+ "text": "room."
+ },
+ {
+ "id": 5667,
+ "start": 3684.68,
+ "end": 3685.74,
+ "text": "It"
+ },
+ {
+ "id": 5668,
+ "start": 3685.74,
+ "end": 3685.88,
+ "text": "was"
+ },
+ {
+ "id": 5669,
+ "start": 3685.88,
+ "end": 3685.98,
+ "text": "me"
+ },
+ {
+ "id": 5670,
+ "start": 3685.98,
+ "end": 3686.08,
+ "text": "and"
+ },
+ {
+ "id": 5671,
+ "start": 3686.08,
+ "end": 3686.2,
+ "text": "my"
+ },
+ {
+ "id": 5672,
+ "start": 3686.2,
+ "end": 3686.58,
+ "text": "roommate."
+ },
+ {
+ "id": 5673,
+ "start": 3686.58,
+ "end": 3687.3,
+ "text": "We"
+ },
+ {
+ "id": 5674,
+ "start": 3687.3,
+ "end": 3687.52,
+ "text": "didn't"
+ },
+ {
+ "id": 5675,
+ "start": 3687.52,
+ "end": 3687.66,
+ "text": "have"
+ },
+ {
+ "id": 5676,
+ "start": 3687.66,
+ "end": 3687.96,
+ "text": "AI"
+ },
+ {
+ "id": 5677,
+ "start": 3687.96,
+ "end": 3688.52,
+ "text": "technology."
+ },
+ {
+ "id": 5678,
+ "start": 3688.52,
+ "end": 3688.68,
+ "text": "That"
+ },
+ {
+ "id": 5679,
+ "start": 3688.68,
+ "end": 3688.88,
+ "text": "could"
+ },
+ {
+ "id": 5680,
+ "start": 3688.88,
+ "end": 3689.08,
+ "text": "look"
+ },
+ {
+ "id": 5681,
+ "start": 3689.08,
+ "end": 3689.16,
+ "text": "at"
+ },
+ {
+ "id": 5682,
+ "start": 3689.16,
+ "end": 3689.26,
+ "text": "the"
+ },
+ {
+ "id": 5683,
+ "start": 3689.26,
+ "end": 3689.6,
+ "text": "content"
+ },
+ {
+ "id": 5684,
+ "start": 3689.6,
+ "end": 3689.74,
+ "text": "that"
+ },
+ {
+ "id": 5685,
+ "start": 3689.74,
+ "end": 3689.94,
+ "text": "people"
+ },
+ {
+ "id": 5686,
+ "start": 3689.94,
+ "end": 3690.14,
+ "text": "were"
+ },
+ {
+ "id": 5687,
+ "start": 3690.14,
+ "end": 3691.6,
+ "text": "sharing."
+ },
+ {
+ "id": 5688,
+ "start": 3691.6,
+ "end": 3692.5,
+ "text": "So"
+ },
+ {
+ "id": 5689,
+ "start": 3692.5,
+ "end": 3693.14,
+ "text": "we"
+ },
+ {
+ "id": 5690,
+ "start": 3693.14,
+ "end": 3693.86,
+ "text": "basically"
+ },
+ {
+ "id": 5691,
+ "start": 3693.86,
+ "end": 3694.12,
+ "text": "had"
+ },
+ {
+ "id": 5692,
+ "start": 3694.12,
+ "end": 3695.58,
+ "text": "to"
+ },
+ {
+ "id": 5693,
+ "start": 3695.58,
+ "end": 3696.56,
+ "text": "enforce"
+ },
+ {
+ "id": 5694,
+ "start": 3696.56,
+ "end": 3696.74,
+ "text": "our"
+ },
+ {
+ "id": 5695,
+ "start": 3696.74,
+ "end": 3697.1,
+ "text": "content"
+ },
+ {
+ "id": 5696,
+ "start": 3697.1,
+ "end": 3697.52,
+ "text": "policies."
+ },
+ {
+ "id": 5697,
+ "start": 3697.52,
+ "end": 3698.08,
+ "text": "Reactively"
+ },
+ {
+ "id": 5698,
+ "start": 3698.08,
+ "end": 3698.38,
+ "text": "people"
+ },
+ {
+ "id": 5699,
+ "start": 3698.38,
+ "end": 3698.56,
+ "text": "could"
+ },
+ {
+ "id": 5700,
+ "start": 3698.56,
+ "end": 3698.76,
+ "text": "share"
+ },
+ {
+ "id": 5701,
+ "start": 3698.76,
+ "end": 3698.88,
+ "text": "what"
+ },
+ {
+ "id": 5702,
+ "start": 3698.88,
+ "end": 3699.02,
+ "text": "they"
+ },
+ {
+ "id": 5703,
+ "start": 3699.02,
+ "end": 3699.32,
+ "text": "wanted."
+ },
+ {
+ "id": 5704,
+ "start": 3699.32,
+ "end": 3700.54,
+ "text": "And"
+ },
+ {
+ "id": 5705,
+ "start": 3700.54,
+ "end": 3701.32,
+ "text": "and"
+ },
+ {
+ "id": 5706,
+ "start": 3701.32,
+ "end": 3701.5,
+ "text": "then"
+ },
+ {
+ "id": 5707,
+ "start": 3701.5,
+ "end": 3701.82,
+ "text": "if"
+ },
+ {
+ "id": 5708,
+ "start": 3701.82,
+ "end": 3702.1,
+ "text": "someone"
+ },
+ {
+ "id": 5709,
+ "start": 3702.1,
+ "end": 3702.18,
+ "text": "in"
+ },
+ {
+ "id": 5710,
+ "start": 3702.18,
+ "end": 3702.28,
+ "text": "the"
+ },
+ {
+ "id": 5711,
+ "start": 3702.28,
+ "end": 3702.64,
+ "text": "community"
+ },
+ {
+ "id": 5712,
+ "start": 3702.64,
+ "end": 3702.9,
+ "text": "found"
+ },
+ {
+ "id": 5713,
+ "start": 3702.9,
+ "end": 3703.02,
+ "text": "it"
+ },
+ {
+ "id": 5714,
+ "start": 3703.02,
+ "end": 3703.14,
+ "text": "to"
+ },
+ {
+ "id": 5715,
+ "start": 3703.14,
+ "end": 3703.28,
+ "text": "be"
+ },
+ {
+ "id": 5716,
+ "start": 3703.28,
+ "end": 3704.34,
+ "text": "offensive"
+ },
+ {
+ "id": 5717,
+ "start": 3704.34,
+ "end": 3704.54,
+ "text": "or"
+ },
+ {
+ "id": 5718,
+ "start": 3704.54,
+ "end": 3704.82,
+ "text": "against"
+ },
+ {
+ "id": 5719,
+ "start": 3704.82,
+ "end": 3704.98,
+ "text": "our"
+ },
+ {
+ "id": 5720,
+ "start": 3704.98,
+ "end": 3705.4,
+ "text": "policies."
+ },
+ {
+ "id": 5721,
+ "start": 3705.4,
+ "end": 3705.64,
+ "text": "They'd"
+ },
+ {
+ "id": 5722,
+ "start": 3705.64,
+ "end": 3705.86,
+ "text": "flag"
+ },
+ {
+ "id": 5723,
+ "start": 3705.86,
+ "end": 3705.96,
+ "text": "it"
+ },
+ {
+ "id": 5724,
+ "start": 3705.96,
+ "end": 3706.08,
+ "text": "for"
+ },
+ {
+ "id": 5725,
+ "start": 3706.08,
+ "end": 3706.16,
+ "text": "us"
+ },
+ {
+ "id": 5726,
+ "start": 3706.16,
+ "end": 3706.32,
+ "text": "and"
+ },
+ {
+ "id": 5727,
+ "start": 3706.32,
+ "end": 3706.48,
+ "text": "we'd"
+ },
+ {
+ "id": 5728,
+ "start": 3706.48,
+ "end": 3706.7,
+ "text": "look"
+ },
+ {
+ "id": 5729,
+ "start": 3706.7,
+ "end": 3706.78,
+ "text": "at"
+ },
+ {
+ "id": 5730,
+ "start": 3706.78,
+ "end": 3706.88,
+ "text": "it"
+ },
+ {
+ "id": 5731,
+ "start": 3706.88,
+ "end": 3707.46,
+ "text": "reactively"
+ },
+ {
+ "id": 5732,
+ "start": 3707.46,
+ "end": 3708.52,
+ "text": "now"
+ },
+ {
+ "id": 5733,
+ "start": 3708.52,
+ "end": 3709.34,
+ "text": "increasingly."
+ },
+ {
+ "id": 5734,
+ "start": 3709.34,
+ "end": 3709.82,
+ "text": "We"
+ },
+ {
+ "id": 5735,
+ "start": 3709.82,
+ "end": 3709.94,
+ "text": "are"
+ },
+ {
+ "id": 5736,
+ "start": 3709.94,
+ "end": 3710.4,
+ "text": "developing"
+ },
+ {
+ "id": 5737,
+ "start": 3710.4,
+ "end": 3710.82,
+ "text": "AI"
+ },
+ {
+ "id": 5738,
+ "start": 3710.82,
+ "end": 3711.2,
+ "text": "tools"
+ },
+ {
+ "id": 5739,
+ "start": 3711.2,
+ "end": 3711.94,
+ "text": "that"
+ },
+ {
+ "id": 5740,
+ "start": 3711.94,
+ "end": 3712.28,
+ "text": "can"
+ },
+ {
+ "id": 5741,
+ "start": 3712.28,
+ "end": 3713,
+ "text": "identify"
+ },
+ {
+ "id": 5742,
+ "start": 3713,
+ "end": 3713.4,
+ "text": "certain"
+ },
+ {
+ "id": 5743,
+ "start": 3713.4,
+ "end": 3714.02,
+ "text": "classes"
+ },
+ {
+ "id": 5744,
+ "start": 3714.02,
+ "end": 3714.22,
+ "text": "of"
+ },
+ {
+ "id": 5745,
+ "start": 3714.22,
+ "end": 3714.5,
+ "text": "bad"
+ },
+ {
+ "id": 5746,
+ "start": 3714.5,
+ "end": 3715.08,
+ "text": "activity"
+ },
+ {
+ "id": 5747,
+ "start": 3715.08,
+ "end": 3716.34,
+ "text": "proactively"
+ },
+ {
+ "id": 5748,
+ "start": 3716.34,
+ "end": 3716.5,
+ "text": "and"
+ },
+ {
+ "id": 5749,
+ "start": 3716.5,
+ "end": 3716.76,
+ "text": "flag"
+ },
+ {
+ "id": 5750,
+ "start": 3716.76,
+ "end": 3716.86,
+ "text": "it"
+ },
+ {
+ "id": 5751,
+ "start": 3716.86,
+ "end": 3717,
+ "text": "for"
+ },
+ {
+ "id": 5752,
+ "start": 3717,
+ "end": 3717.12,
+ "text": "our"
+ },
+ {
+ "id": 5753,
+ "start": 3717.12,
+ "end": 3717.36,
+ "text": "team"
+ },
+ {
+ "id": 5754,
+ "start": 3717.36,
+ "end": 3717.54,
+ "text": "at"
+ },
+ {
+ "id": 5755,
+ "start": 3717.54,
+ "end": 3717.96,
+ "text": "Facebook"
+ },
+ {
+ "id": 5756,
+ "start": 3717.96,
+ "end": 3718.56,
+ "text": "by"
+ },
+ {
+ "id": 5757,
+ "start": 3718.56,
+ "end": 3718.7,
+ "text": "the"
+ },
+ {
+ "id": 5758,
+ "start": 3718.7,
+ "end": 3718.8,
+ "text": "end"
+ },
+ {
+ "id": 5759,
+ "start": 3718.8,
+ "end": 3718.88,
+ "text": "of"
+ },
+ {
+ "id": 5760,
+ "start": 3718.88,
+ "end": 3718.98,
+ "text": "this"
+ },
+ {
+ "id": 5761,
+ "start": 3718.98,
+ "end": 3719.1,
+ "text": "year."
+ },
+ {
+ "id": 5762,
+ "start": 3719.1,
+ "end": 3719.22,
+ "text": "By"
+ },
+ {
+ "id": 5763,
+ "start": 3719.22,
+ "end": 3719.32,
+ "text": "the"
+ },
+ {
+ "id": 5764,
+ "start": 3719.32,
+ "end": 3719.4,
+ "text": "way"
+ },
+ {
+ "id": 5765,
+ "start": 3719.4,
+ "end": 3719.56,
+ "text": "we're"
+ },
+ {
+ "id": 5766,
+ "start": 3719.56,
+ "end": 3719.7,
+ "text": "going"
+ },
+ {
+ "id": 5767,
+ "start": 3719.7,
+ "end": 3719.76,
+ "text": "to"
+ },
+ {
+ "id": 5768,
+ "start": 3719.76,
+ "end": 3719.94,
+ "text": "have"
+ },
+ {
+ "id": 5769,
+ "start": 3719.94,
+ "end": 3720.64,
+ "text": "more"
+ },
+ {
+ "id": 5770,
+ "start": 3720.64,
+ "end": 3720.78,
+ "text": "than"
+ },
+ {
+ "id": 5771,
+ "start": 3720.78,
+ "end": 3721.54,
+ "text": "20,000"
+ },
+ {
+ "id": 5772,
+ "start": 3721.54,
+ "end": 3721.8,
+ "text": "people"
+ },
+ {
+ "id": 5773,
+ "start": 3721.8,
+ "end": 3722.16,
+ "text": "working"
+ },
+ {
+ "id": 5774,
+ "start": 3722.16,
+ "end": 3722.28,
+ "text": "on"
+ },
+ {
+ "id": 5775,
+ "start": 3722.28,
+ "end": 3722.88,
+ "text": "security"
+ },
+ {
+ "id": 5776,
+ "start": 3722.88,
+ "end": 3723.1,
+ "text": "and"
+ },
+ {
+ "id": 5777,
+ "start": 3723.1,
+ "end": 3723.54,
+ "text": "content"
+ },
+ {
+ "id": 5778,
+ "start": 3723.54,
+ "end": 3723.92,
+ "text": "review"
+ },
+ {
+ "id": 5779,
+ "start": 3723.92,
+ "end": 3724.88,
+ "text": "working"
+ },
+ {
+ "id": 5780,
+ "start": 3724.88,
+ "end": 3725.2,
+ "text": "across"
+ },
+ {
+ "id": 5781,
+ "start": 3725.2,
+ "end": 3725.34,
+ "text": "all"
+ },
+ {
+ "id": 5782,
+ "start": 3725.34,
+ "end": 3725.52,
+ "text": "these"
+ },
+ {
+ "id": 5783,
+ "start": 3725.52,
+ "end": 3725.68,
+ "text": "things."
+ },
+ {
+ "id": 5784,
+ "start": 3725.68,
+ "end": 3725.82,
+ "text": "So"
+ },
+ {
+ "id": 5785,
+ "start": 3725.82,
+ "end": 3726.26,
+ "text": "when"
+ },
+ {
+ "id": 5786,
+ "start": 3726.26,
+ "end": 3726.6,
+ "text": "content"
+ },
+ {
+ "id": 5787,
+ "start": 3726.6,
+ "end": 3726.8,
+ "text": "gets"
+ },
+ {
+ "id": 5788,
+ "start": 3726.8,
+ "end": 3727.1,
+ "text": "flagged"
+ },
+ {
+ "id": 5789,
+ "start": 3727.1,
+ "end": 3727.34,
+ "text": "us,"
+ },
+ {
+ "id": 5790,
+ "start": 3727.34,
+ "end": 3727.82,
+ "text": "we"
+ },
+ {
+ "id": 5791,
+ "start": 3727.82,
+ "end": 3727.96,
+ "text": "have"
+ },
+ {
+ "id": 5792,
+ "start": 3727.96,
+ "end": 3728.48,
+ "text": "those"
+ },
+ {
+ "id": 5793,
+ "start": 3728.48,
+ "end": 3728.7,
+ "text": "people"
+ },
+ {
+ "id": 5794,
+ "start": 3728.7,
+ "end": 3728.94,
+ "text": "look"
+ },
+ {
+ "id": 5795,
+ "start": 3728.94,
+ "end": 3729.04,
+ "text": "at"
+ },
+ {
+ "id": 5796,
+ "start": 3729.04,
+ "end": 3729.14,
+ "text": "it"
+ },
+ {
+ "id": 5797,
+ "start": 3729.14,
+ "end": 3729.36,
+ "text": "and"
+ },
+ {
+ "id": 5798,
+ "start": 3729.36,
+ "end": 3729.44,
+ "text": "if"
+ },
+ {
+ "id": 5799,
+ "start": 3729.44,
+ "end": 3729.58,
+ "text": "it"
+ },
+ {
+ "id": 5800,
+ "start": 3729.58,
+ "end": 3729.92,
+ "text": "violates"
+ },
+ {
+ "id": 5801,
+ "start": 3729.92,
+ "end": 3730.08,
+ "text": "our"
+ },
+ {
+ "id": 5802,
+ "start": 3730.08,
+ "end": 3730.56,
+ "text": "policies,"
+ },
+ {
+ "id": 5803,
+ "start": 3730.56,
+ "end": 3730.74,
+ "text": "then"
+ },
+ {
+ "id": 5804,
+ "start": 3730.74,
+ "end": 3730.9,
+ "text": "we"
+ },
+ {
+ "id": 5805,
+ "start": 3730.9,
+ "end": 3731.08,
+ "text": "take"
+ },
+ {
+ "id": 5806,
+ "start": 3731.08,
+ "end": 3731.18,
+ "text": "it"
+ },
+ {
+ "id": 5807,
+ "start": 3731.18,
+ "end": 3732.14,
+ "text": "down"
+ },
+ {
+ "id": 5808,
+ "start": 3732.14,
+ "end": 3733.02,
+ "text": "some"
+ },
+ {
+ "id": 5809,
+ "start": 3733.02,
+ "end": 3733.68,
+ "text": "problems"
+ },
+ {
+ "id": 5810,
+ "start": 3733.68,
+ "end": 3733.98,
+ "text": "lend"
+ },
+ {
+ "id": 5811,
+ "start": 3733.98,
+ "end": 3734.5,
+ "text": "themselves"
+ },
+ {
+ "id": 5812,
+ "start": 3734.5,
+ "end": 3734.78,
+ "text": "more"
+ },
+ {
+ "id": 5813,
+ "start": 3734.78,
+ "end": 3735.16,
+ "text": "easily"
+ },
+ {
+ "id": 5814,
+ "start": 3735.16,
+ "end": 3735.38,
+ "text": "to"
+ },
+ {
+ "id": 5815,
+ "start": 3735.38,
+ "end": 3735.9,
+ "text": "AI"
+ },
+ {
+ "id": 5816,
+ "start": 3735.9,
+ "end": 3736.5,
+ "text": "solutions"
+ },
+ {
+ "id": 5817,
+ "start": 3736.5,
+ "end": 3736.66,
+ "text": "than"
+ },
+ {
+ "id": 5818,
+ "start": 3736.66,
+ "end": 3736.92,
+ "text": "others."
+ },
+ {
+ "id": 5819,
+ "start": 3736.92,
+ "end": 3737.5,
+ "text": "So"
+ },
+ {
+ "id": 5820,
+ "start": 3737.5,
+ "end": 3738.16,
+ "text": "hate"
+ },
+ {
+ "id": 5821,
+ "start": 3738.16,
+ "end": 3738.48,
+ "text": "speech"
+ },
+ {
+ "id": 5822,
+ "start": 3738.48,
+ "end": 3739.16,
+ "text": "is"
+ },
+ {
+ "id": 5823,
+ "start": 3739.16,
+ "end": 3739.9,
+ "text": "one"
+ },
+ {
+ "id": 5824,
+ "start": 3739.9,
+ "end": 3739.98,
+ "text": "of"
+ },
+ {
+ "id": 5825,
+ "start": 3739.98,
+ "end": 3740.1,
+ "text": "the"
+ },
+ {
+ "id": 5826,
+ "start": 3740.1,
+ "end": 3740.46,
+ "text": "hardest"
+ },
+ {
+ "id": 5827,
+ "start": 3740.46,
+ "end": 3741.4,
+ "text": "because"
+ },
+ {
+ "id": 5828,
+ "start": 3741.4,
+ "end": 3742.08,
+ "text": "determining"
+ },
+ {
+ "id": 5829,
+ "start": 3742.08,
+ "end": 3742.18,
+ "text": "if"
+ },
+ {
+ "id": 5830,
+ "start": 3742.18,
+ "end": 3742.46,
+ "text": "something"
+ },
+ {
+ "id": 5831,
+ "start": 3742.46,
+ "end": 3742.58,
+ "text": "as"
+ },
+ {
+ "id": 5832,
+ "start": 3742.58,
+ "end": 3742.82,
+ "text": "hate"
+ },
+ {
+ "id": 5833,
+ "start": 3742.82,
+ "end": 3743.12,
+ "text": "speech"
+ },
+ {
+ "id": 5834,
+ "start": 3743.12,
+ "end": 3743.68,
+ "text": "is"
+ },
+ {
+ "id": 5835,
+ "start": 3743.68,
+ "end": 3744.02,
+ "text": "very"
+ },
+ {
+ "id": 5836,
+ "start": 3744.02,
+ "end": 3744.74,
+ "text": "linguistically"
+ },
+ {
+ "id": 5837,
+ "start": 3744.74,
+ "end": 3745.18,
+ "text": "nuanced,"
+ },
+ {
+ "id": 5838,
+ "start": 3745.18,
+ "end": 3746.58,
+ "text": "right,"
+ },
+ {
+ "id": 5839,
+ "start": 3746.58,
+ "end": 3746.7,
+ "text": "you"
+ },
+ {
+ "id": 5840,
+ "start": 3746.7,
+ "end": 3746.88,
+ "text": "need"
+ },
+ {
+ "id": 5841,
+ "start": 3746.88,
+ "end": 3747.04,
+ "text": "to"
+ },
+ {
+ "id": 5842,
+ "start": 3747.04,
+ "end": 3747.98,
+ "text": "understand,"
+ },
+ {
+ "id": 5843,
+ "start": 3747.98,
+ "end": 3748.68,
+ "text": "you"
+ },
+ {
+ "id": 5844,
+ "start": 3748.68,
+ "end": 3748.82,
+ "text": "know,"
+ },
+ {
+ "id": 5845,
+ "start": 3748.82,
+ "end": 3748.94,
+ "text": "what"
+ },
+ {
+ "id": 5846,
+ "start": 3748.94,
+ "end": 3749.06,
+ "text": "is"
+ },
+ {
+ "id": 5847,
+ "start": 3749.06,
+ "end": 3749.16,
+ "text": "a"
+ },
+ {
+ "id": 5848,
+ "start": 3749.16,
+ "end": 3749.72,
+ "text": "slur?"
+ },
+ {
+ "id": 5849,
+ "start": 3749.72,
+ "end": 3749.94,
+ "text": "And"
+ },
+ {
+ "id": 5850,
+ "start": 3749.94,
+ "end": 3751.5,
+ "text": "what"
+ },
+ {
+ "id": 5851,
+ "start": 3751.5,
+ "end": 3752.46,
+ "text": "whether"
+ },
+ {
+ "id": 5852,
+ "start": 3752.46,
+ "end": 3752.78,
+ "text": "something"
+ },
+ {
+ "id": 5853,
+ "start": 3752.78,
+ "end": 3752.88,
+ "text": "is"
+ },
+ {
+ "id": 5854,
+ "start": 3752.88,
+ "end": 3753.26,
+ "text": "hateful?"
+ },
+ {
+ "id": 5855,
+ "start": 3753.26,
+ "end": 3753.86,
+ "text": "Not"
+ },
+ {
+ "id": 5856,
+ "start": 3753.86,
+ "end": 3754,
+ "text": "just"
+ },
+ {
+ "id": 5857,
+ "start": 3754,
+ "end": 3754.12,
+ "text": "in"
+ },
+ {
+ "id": 5858,
+ "start": 3754.12,
+ "end": 3754.42,
+ "text": "English,"
+ },
+ {
+ "id": 5859,
+ "start": 3754.42,
+ "end": 3754.58,
+ "text": "but"
+ },
+ {
+ "id": 5860,
+ "start": 3754.58,
+ "end": 3754.7,
+ "text": "the"
+ },
+ {
+ "id": 5861,
+ "start": 3754.7,
+ "end": 3755.02,
+ "text": "majority"
+ },
+ {
+ "id": 5862,
+ "start": 3755.02,
+ "end": 3755.14,
+ "text": "of"
+ },
+ {
+ "id": 5863,
+ "start": 3755.14,
+ "end": 3755.34,
+ "text": "people"
+ },
+ {
+ "id": 5864,
+ "start": 3755.34,
+ "end": 3755.48,
+ "text": "on"
+ },
+ {
+ "id": 5865,
+ "start": 3755.48,
+ "end": 3755.92,
+ "text": "Facebook"
+ },
+ {
+ "id": 5866,
+ "start": 3755.92,
+ "end": 3756.12,
+ "text": "use"
+ },
+ {
+ "id": 5867,
+ "start": 3756.12,
+ "end": 3756.24,
+ "text": "it"
+ },
+ {
+ "id": 5868,
+ "start": 3756.24,
+ "end": 3756.38,
+ "text": "in"
+ },
+ {
+ "id": 5869,
+ "start": 3756.38,
+ "end": 3756.94,
+ "text": "languages"
+ },
+ {
+ "id": 5870,
+ "start": 3756.94,
+ "end": 3757.1,
+ "text": "that"
+ },
+ {
+ "id": 5871,
+ "start": 3757.1,
+ "end": 3757.22,
+ "text": "are"
+ },
+ {
+ "id": 5872,
+ "start": 3757.22,
+ "end": 3757.5,
+ "text": "different"
+ },
+ {
+ "id": 5873,
+ "start": 3757.5,
+ "end": 3757.84,
+ "text": "across"
+ },
+ {
+ "id": 5874,
+ "start": 3757.84,
+ "end": 3757.98,
+ "text": "the"
+ },
+ {
+ "id": 5875,
+ "start": 3757.98,
+ "end": 3759.02,
+ "text": "world"
+ },
+ {
+ "id": 5876,
+ "start": 3759.02,
+ "end": 3759.74,
+ "text": "can"
+ },
+ {
+ "id": 5877,
+ "start": 3759.74,
+ "end": 3759.98,
+ "text": "trust"
+ },
+ {
+ "id": 5878,
+ "start": 3759.98,
+ "end": 3760.26,
+ "text": "that."
+ },
+ {
+ "id": 5879,
+ "start": 3760.26,
+ "end": 3760.44,
+ "text": "For"
+ },
+ {
+ "id": 5880,
+ "start": 3760.44,
+ "end": 3760.88,
+ "text": "example,"
+ },
+ {
+ "id": 5881,
+ "start": 3760.88,
+ "end": 3761.32,
+ "text": "with"
+ },
+ {
+ "id": 5882,
+ "start": 3761.32,
+ "end": 3761.72,
+ "text": "an"
+ },
+ {
+ "id": 5883,
+ "start": 3761.72,
+ "end": 3761.98,
+ "text": "area"
+ },
+ {
+ "id": 5884,
+ "start": 3761.98,
+ "end": 3762.5,
+ "text": "like"
+ },
+ {
+ "id": 5885,
+ "start": 3762.5,
+ "end": 3763.06,
+ "text": "finding"
+ },
+ {
+ "id": 5886,
+ "start": 3763.06,
+ "end": 3763.42,
+ "text": "terrorist"
+ },
+ {
+ "id": 5887,
+ "start": 3763.42,
+ "end": 3764.1,
+ "text": "propaganda"
+ },
+ {
+ "id": 5888,
+ "start": 3764.1,
+ "end": 3764.64,
+ "text": "which"
+ },
+ {
+ "id": 5889,
+ "start": 3764.64,
+ "end": 3764.86,
+ "text": "we've"
+ },
+ {
+ "id": 5890,
+ "start": 3764.86,
+ "end": 3765.18,
+ "text": "actually"
+ },
+ {
+ "id": 5891,
+ "start": 3765.18,
+ "end": 3765.46,
+ "text": "been"
+ },
+ {
+ "id": 5892,
+ "start": 3765.46,
+ "end": 3765.94,
+ "text": "very"
+ },
+ {
+ "id": 5893,
+ "start": 3765.94,
+ "end": 3766.44,
+ "text": "successful"
+ },
+ {
+ "id": 5894,
+ "start": 3766.44,
+ "end": 3766.56,
+ "text": "at"
+ },
+ {
+ "id": 5895,
+ "start": 3766.56,
+ "end": 3766.92,
+ "text": "deploying."
+ },
+ {
+ "id": 5896,
+ "start": 3766.92,
+ "end": 3767.22,
+ "text": "AI,"
+ },
+ {
+ "id": 5897,
+ "start": 3767.22,
+ "end": 3767.48,
+ "text": "tools"
+ },
+ {
+ "id": 5898,
+ "start": 3767.48,
+ "end": 3767.64,
+ "text": "on"
+ },
+ {
+ "id": 5899,
+ "start": 3767.64,
+ "end": 3768.28,
+ "text": "already"
+ },
+ {
+ "id": 5900,
+ "start": 3768.28,
+ "end": 3768.78,
+ "text": "today"
+ },
+ {
+ "id": 5901,
+ "start": 3768.78,
+ "end": 3769.38,
+ "text": "as"
+ },
+ {
+ "id": 5902,
+ "start": 3769.38,
+ "end": 3769.48,
+ "text": "we"
+ },
+ {
+ "id": 5903,
+ "start": 3769.48,
+ "end": 3769.7,
+ "text": "sit"
+ },
+ {
+ "id": 5904,
+ "start": 3769.7,
+ "end": 3769.88,
+ "text": "here."
+ },
+ {
+ "id": 5905,
+ "start": 3769.88,
+ "end": 3770.84,
+ "text": "90"
+ },
+ {
+ "id": 5906,
+ "start": 3770.84,
+ "end": 3771.58,
+ "text": "of"
+ },
+ {
+ "id": 5907,
+ "start": 3771.58,
+ "end": 3771.7,
+ "text": "the"
+ },
+ {
+ "id": 5908,
+ "start": 3771.7,
+ "end": 3772.06,
+ "text": "ISIS"
+ },
+ {
+ "id": 5909,
+ "start": 3772.06,
+ "end": 3772.18,
+ "text": "and"
+ },
+ {
+ "id": 5910,
+ "start": 3772.18,
+ "end": 3772.36,
+ "text": "Al"
+ },
+ {
+ "id": 5911,
+ "start": 3772.36,
+ "end": 3772.6,
+ "text": "Qaeda"
+ },
+ {
+ "id": 5912,
+ "start": 3772.6,
+ "end": 3773.04,
+ "text": "content"
+ },
+ {
+ "id": 5913,
+ "start": 3773.04,
+ "end": 3773.2,
+ "text": "that"
+ },
+ {
+ "id": 5914,
+ "start": 3773.2,
+ "end": 3773.36,
+ "text": "we"
+ },
+ {
+ "id": 5915,
+ "start": 3773.36,
+ "end": 3773.54,
+ "text": "take"
+ },
+ {
+ "id": 5916,
+ "start": 3773.54,
+ "end": 3773.78,
+ "text": "down"
+ },
+ {
+ "id": 5917,
+ "start": 3773.78,
+ "end": 3773.92,
+ "text": "on"
+ },
+ {
+ "id": 5918,
+ "start": 3773.92,
+ "end": 3774.38,
+ "text": "Facebook,"
+ },
+ {
+ "id": 5919,
+ "start": 3774.38,
+ "end": 3774.98,
+ "text": "our"
+ },
+ {
+ "id": 5920,
+ "start": 3774.98,
+ "end": 3775.3,
+ "text": "AI"
+ },
+ {
+ "id": 5921,
+ "start": 3775.3,
+ "end": 3775.66,
+ "text": "systems"
+ },
+ {
+ "id": 5922,
+ "start": 3775.66,
+ "end": 3776,
+ "text": "flagged"
+ },
+ {
+ "id": 5923,
+ "start": 3776,
+ "end": 3776.24,
+ "text": "before"
+ },
+ {
+ "id": 5924,
+ "start": 3776.24,
+ "end": 3776.44,
+ "text": "any"
+ },
+ {
+ "id": 5925,
+ "start": 3776.44,
+ "end": 3776.72,
+ "text": "human"
+ },
+ {
+ "id": 5926,
+ "start": 3776.72,
+ "end": 3777,
+ "text": "see"
+ },
+ {
+ "id": 5927,
+ "start": 3777,
+ "end": 3777.32,
+ "text": "it."
+ },
+ {
+ "id": 5928,
+ "start": 3777.32,
+ "end": 3777.66,
+ "text": "So"
+ },
+ {
+ "id": 5929,
+ "start": 3777.66,
+ "end": 3778.22,
+ "text": "that's"
+ },
+ {
+ "id": 5930,
+ "start": 3778.22,
+ "end": 3778.26,
+ "text": "a"
+ },
+ {
+ "id": 5931,
+ "start": 3778.26,
+ "end": 3778.98,
+ "text": "success"
+ },
+ {
+ "id": 5932,
+ "start": 3778.98,
+ "end": 3779.2,
+ "text": "in"
+ },
+ {
+ "id": 5933,
+ "start": 3779.2,
+ "end": 3779.48,
+ "text": "terms"
+ },
+ {
+ "id": 5934,
+ "start": 3779.48,
+ "end": 3779.68,
+ "text": "of"
+ },
+ {
+ "id": 5935,
+ "start": 3779.68,
+ "end": 3780.22,
+ "text": "rolling"
+ },
+ {
+ "id": 5936,
+ "start": 3780.22,
+ "end": 3780.38,
+ "text": "out"
+ },
+ {
+ "id": 5937,
+ "start": 3780.38,
+ "end": 3780.7,
+ "text": "AI"
+ },
+ {
+ "id": 5938,
+ "start": 3780.7,
+ "end": 3781.04,
+ "text": "tools"
+ },
+ {
+ "id": 5939,
+ "start": 3781.04,
+ "end": 3781.88,
+ "text": "that"
+ },
+ {
+ "id": 5940,
+ "start": 3781.88,
+ "end": 3782.3,
+ "text": "that"
+ },
+ {
+ "id": 5941,
+ "start": 3782.3,
+ "end": 3782.48,
+ "text": "can"
+ },
+ {
+ "id": 5942,
+ "start": 3782.48,
+ "end": 3783.24,
+ "text": "proactively"
+ },
+ {
+ "id": 5943,
+ "start": 3783.24,
+ "end": 3784.24,
+ "text": "police"
+ },
+ {
+ "id": 5944,
+ "start": 3784.24,
+ "end": 3784.38,
+ "text": "and"
+ },
+ {
+ "id": 5945,
+ "start": 3784.38,
+ "end": 3784.76,
+ "text": "enforce"
+ },
+ {
+ "id": 5946,
+ "start": 3784.76,
+ "end": 3785.14,
+ "text": "safety"
+ },
+ {
+ "id": 5947,
+ "start": 3785.14,
+ "end": 3785.46,
+ "text": "across"
+ },
+ {
+ "id": 5948,
+ "start": 3785.46,
+ "end": 3785.6,
+ "text": "the"
+ },
+ {
+ "id": 5949,
+ "start": 3785.6,
+ "end": 3786.36,
+ "text": "community"
+ },
+ {
+ "id": 5950,
+ "start": 3786.36,
+ "end": 3787.36,
+ "text": "hate"
+ },
+ {
+ "id": 5951,
+ "start": 3787.36,
+ "end": 3787.66,
+ "text": "speech."
+ },
+ {
+ "id": 5952,
+ "start": 3787.66,
+ "end": 3787.82,
+ "text": "I"
+ },
+ {
+ "id": 5953,
+ "start": 3787.82,
+ "end": 3787.94,
+ "text": "am"
+ },
+ {
+ "id": 5954,
+ "start": 3787.94,
+ "end": 3788.6,
+ "text": "optimistic"
+ },
+ {
+ "id": 5955,
+ "start": 3788.6,
+ "end": 3789.04,
+ "text": "that"
+ },
+ {
+ "id": 5956,
+ "start": 3789.04,
+ "end": 3789.44,
+ "text": "over"
+ },
+ {
+ "id": 5957,
+ "start": 3789.44,
+ "end": 3789.64,
+ "text": "a"
+ },
+ {
+ "id": 5958,
+ "start": 3789.64,
+ "end": 3790,
+ "text": "five"
+ },
+ {
+ "id": 5959,
+ "start": 3790,
+ "end": 3790.32,
+ "text": "to"
+ },
+ {
+ "id": 5960,
+ "start": 3790.32,
+ "end": 3790.52,
+ "text": "10"
+ },
+ {
+ "id": 5961,
+ "start": 3790.52,
+ "end": 3790.68,
+ "text": "year"
+ },
+ {
+ "id": 5962,
+ "start": 3790.68,
+ "end": 3791.06,
+ "text": "period"
+ },
+ {
+ "id": 5963,
+ "start": 3791.06,
+ "end": 3791.42,
+ "text": "we"
+ },
+ {
+ "id": 5964,
+ "start": 3791.42,
+ "end": 3791.58,
+ "text": "will"
+ },
+ {
+ "id": 5965,
+ "start": 3791.58,
+ "end": 3791.72,
+ "text": "have"
+ },
+ {
+ "id": 5966,
+ "start": 3791.72,
+ "end": 3792.02,
+ "text": "AI"
+ },
+ {
+ "id": 5967,
+ "start": 3792.02,
+ "end": 3792.34,
+ "text": "tools"
+ },
+ {
+ "id": 5968,
+ "start": 3792.34,
+ "end": 3792.56,
+ "text": "that"
+ },
+ {
+ "id": 5969,
+ "start": 3792.56,
+ "end": 3793.4,
+ "text": "can"
+ },
+ {
+ "id": 5970,
+ "start": 3793.4,
+ "end": 3794.22,
+ "text": "get"
+ },
+ {
+ "id": 5971,
+ "start": 3794.22,
+ "end": 3794.44,
+ "text": "into"
+ },
+ {
+ "id": 5972,
+ "start": 3794.44,
+ "end": 3794.6,
+ "text": "some"
+ },
+ {
+ "id": 5973,
+ "start": 3794.6,
+ "end": 3794.68,
+ "text": "of"
+ },
+ {
+ "id": 5974,
+ "start": 3794.68,
+ "end": 3794.76,
+ "text": "the"
+ },
+ {
+ "id": 5975,
+ "start": 3794.76,
+ "end": 3795.2,
+ "text": "nuances,"
+ },
+ {
+ "id": 5976,
+ "start": 3795.2,
+ "end": 3795.38,
+ "text": "the"
+ },
+ {
+ "id": 5977,
+ "start": 3795.38,
+ "end": 3795.86,
+ "text": "linguistic"
+ },
+ {
+ "id": 5978,
+ "start": 3795.86,
+ "end": 3796.4,
+ "text": "nuances"
+ },
+ {
+ "id": 5979,
+ "start": 3796.4,
+ "end": 3796.64,
+ "text": "of"
+ },
+ {
+ "id": 5980,
+ "start": 3796.64,
+ "end": 3797.66,
+ "text": "different"
+ },
+ {
+ "id": 5981,
+ "start": 3797.66,
+ "end": 3797.84,
+ "text": "types"
+ },
+ {
+ "id": 5982,
+ "start": 3797.84,
+ "end": 3797.96,
+ "text": "of"
+ },
+ {
+ "id": 5983,
+ "start": 3797.96,
+ "end": 3798.3,
+ "text": "content"
+ },
+ {
+ "id": 5984,
+ "start": 3798.3,
+ "end": 3798.4,
+ "text": "to"
+ },
+ {
+ "id": 5985,
+ "start": 3798.4,
+ "end": 3798.5,
+ "text": "be"
+ },
+ {
+ "id": 5986,
+ "start": 3798.5,
+ "end": 3798.68,
+ "text": "more"
+ },
+ {
+ "id": 5987,
+ "start": 3798.68,
+ "end": 3799.04,
+ "text": "accurate"
+ },
+ {
+ "id": 5988,
+ "start": 3799.04,
+ "end": 3799.16,
+ "text": "and"
+ },
+ {
+ "id": 5989,
+ "start": 3799.16,
+ "end": 3799.54,
+ "text": "flagging"
+ },
+ {
+ "id": 5990,
+ "start": 3799.54,
+ "end": 3799.76,
+ "text": "things"
+ },
+ {
+ "id": 5991,
+ "start": 3799.76,
+ "end": 3799.92,
+ "text": "for"
+ },
+ {
+ "id": 5992,
+ "start": 3799.92,
+ "end": 3800.04,
+ "text": "our"
+ },
+ {
+ "id": 5993,
+ "start": 3800.04,
+ "end": 3800.44,
+ "text": "systems."
+ },
+ {
+ "id": 5994,
+ "start": 3800.44,
+ "end": 3801.02,
+ "text": "But"
+ },
+ {
+ "id": 5995,
+ "start": 3801.02,
+ "end": 3801.32,
+ "text": "today"
+ },
+ {
+ "id": 5996,
+ "start": 3801.32,
+ "end": 3801.56,
+ "text": "we're"
+ },
+ {
+ "id": 5997,
+ "start": 3801.56,
+ "end": 3801.74,
+ "text": "just"
+ },
+ {
+ "id": 5998,
+ "start": 3801.74,
+ "end": 3801.92,
+ "text": "not"
+ },
+ {
+ "id": 5999,
+ "start": 3801.92,
+ "end": 3802.16,
+ "text": "there"
+ },
+ {
+ "id": 6000,
+ "start": 3802.16,
+ "end": 3802.32,
+ "text": "on"
+ },
+ {
+ "id": 6001,
+ "start": 3802.32,
+ "end": 3802.56,
+ "text": "that."
+ },
+ {
+ "id": 6002,
+ "start": 3802.56,
+ "end": 3803,
+ "text": "So"
+ },
+ {
+ "id": 6003,
+ "start": 3803,
+ "end": 3803.06,
+ "text": "a"
+ },
+ {
+ "id": 6004,
+ "start": 3803.06,
+ "end": 3803.22,
+ "text": "lot"
+ },
+ {
+ "id": 6005,
+ "start": 3803.22,
+ "end": 3803.3,
+ "text": "of"
+ },
+ {
+ "id": 6006,
+ "start": 3803.3,
+ "end": 3803.42,
+ "text": "this"
+ },
+ {
+ "id": 6007,
+ "start": 3803.42,
+ "end": 3803.58,
+ "text": "is"
+ },
+ {
+ "id": 6008,
+ "start": 3803.58,
+ "end": 3803.78,
+ "text": "still"
+ },
+ {
+ "id": 6009,
+ "start": 3803.78,
+ "end": 3804.26,
+ "text": "reactive"
+ },
+ {
+ "id": 6010,
+ "start": 3804.26,
+ "end": 3804.56,
+ "text": "people"
+ },
+ {
+ "id": 6011,
+ "start": 3804.56,
+ "end": 3804.8,
+ "text": "flag"
+ },
+ {
+ "id": 6012,
+ "start": 3804.8,
+ "end": 3804.9,
+ "text": "at"
+ },
+ {
+ "id": 6013,
+ "start": 3804.9,
+ "end": 3805.82,
+ "text": "us."
+ },
+ {
+ "id": 6014,
+ "start": 3805.82,
+ "end": 3806.36,
+ "text": "We"
+ },
+ {
+ "id": 6015,
+ "start": 3806.36,
+ "end": 3806.86,
+ "text": "have"
+ },
+ {
+ "id": 6016,
+ "start": 3806.86,
+ "end": 3807.12,
+ "text": "people"
+ },
+ {
+ "id": 6017,
+ "start": 3807.12,
+ "end": 3807.4,
+ "text": "look"
+ },
+ {
+ "id": 6018,
+ "start": 3807.4,
+ "end": 3807.52,
+ "text": "at"
+ },
+ {
+ "id": 6019,
+ "start": 3807.52,
+ "end": 3807.64,
+ "text": "it."
+ },
+ {
+ "id": 6020,
+ "start": 3807.64,
+ "end": 3808.78,
+ "text": "We"
+ },
+ {
+ "id": 6021,
+ "start": 3808.78,
+ "end": 3808.92,
+ "text": "have"
+ },
+ {
+ "id": 6022,
+ "start": 3808.92,
+ "end": 3809.42,
+ "text": "policies"
+ },
+ {
+ "id": 6023,
+ "start": 3809.42,
+ "end": 3809.54,
+ "text": "to"
+ },
+ {
+ "id": 6024,
+ "start": 3809.54,
+ "end": 3809.7,
+ "text": "try"
+ },
+ {
+ "id": 6025,
+ "start": 3809.7,
+ "end": 3809.8,
+ "text": "to"
+ },
+ {
+ "id": 6026,
+ "start": 3809.8,
+ "end": 3809.92,
+ "text": "make"
+ },
+ {
+ "id": 6027,
+ "start": 3809.92,
+ "end": 3810,
+ "text": "it"
+ },
+ {
+ "id": 6028,
+ "start": 3810,
+ "end": 3810.12,
+ "text": "as"
+ },
+ {
+ "id": 6029,
+ "start": 3810.12,
+ "end": 3810.28,
+ "text": "not"
+ },
+ {
+ "id": 6030,
+ "start": 3810.28,
+ "end": 3810.76,
+ "text": "subjective"
+ },
+ {
+ "id": 6031,
+ "start": 3810.76,
+ "end": 3810.88,
+ "text": "as"
+ },
+ {
+ "id": 6032,
+ "start": 3810.88,
+ "end": 3811.34,
+ "text": "possible,"
+ },
+ {
+ "id": 6033,
+ "start": 3811.34,
+ "end": 3811.86,
+ "text": "but"
+ },
+ {
+ "id": 6034,
+ "start": 3811.86,
+ "end": 3812.14,
+ "text": "until"
+ },
+ {
+ "id": 6035,
+ "start": 3812.14,
+ "end": 3812.26,
+ "text": "we"
+ },
+ {
+ "id": 6036,
+ "start": 3812.26,
+ "end": 3812.38,
+ "text": "get"
+ },
+ {
+ "id": 6037,
+ "start": 3812.38,
+ "end": 3812.48,
+ "text": "it"
+ },
+ {
+ "id": 6038,
+ "start": 3812.48,
+ "end": 3812.64,
+ "text": "more"
+ },
+ {
+ "id": 6039,
+ "start": 3812.64,
+ "end": 3813.08,
+ "text": "automated"
+ },
+ {
+ "id": 6040,
+ "start": 3813.08,
+ "end": 3813.4,
+ "text": "there's"
+ },
+ {
+ "id": 6041,
+ "start": 3813.4,
+ "end": 3813.44,
+ "text": "a"
+ },
+ {
+ "id": 6042,
+ "start": 3813.44,
+ "end": 3813.76,
+ "text": "higher"
+ },
+ {
+ "id": 6043,
+ "start": 3813.76,
+ "end": 3814,
+ "text": "error"
+ },
+ {
+ "id": 6044,
+ "start": 3814,
+ "end": 3814.2,
+ "text": "rate"
+ },
+ {
+ "id": 6045,
+ "start": 3814.2,
+ "end": 3814.38,
+ "text": "than"
+ },
+ {
+ "id": 6046,
+ "start": 3814.38,
+ "end": 3814.48,
+ "text": "I"
+ },
+ {
+ "id": 6047,
+ "start": 3814.48,
+ "end": 3814.62,
+ "text": "am"
+ },
+ {
+ "id": 6048,
+ "start": 3814.62,
+ "end": 3814.92,
+ "text": "happy"
+ },
+ {
+ "id": 6049,
+ "start": 3814.92,
+ "end": 3815.08,
+ "text": "with."
+ },
+ {
+ "id": 6050,
+ "start": 3815.08,
+ "end": 3815.5,
+ "text": "Thank"
+ },
+ {
+ "id": 6051,
+ "start": 3815.5,
+ "end": 3815.62,
+ "text": "you,"
+ },
+ {
+ "id": 6052,
+ "start": 3815.62,
+ "end": 3816,
+ "text": "Senator"
+ },
+ {
+ "id": 6053,
+ "start": 3816,
+ "end": 3817.4,
+ "text": "Feinstein."
+ },
+ {
+ "id": 6054,
+ "start": 3817.4,
+ "end": 3818.08,
+ "text": "Thanks,"
+ },
+ {
+ "id": 6055,
+ "start": 3818.08,
+ "end": 3818.46,
+ "text": "Mr"
+ },
+ {
+ "id": 6056,
+ "start": 3818.46,
+ "end": 3820.24,
+ "text": "Chairman,"
+ },
+ {
+ "id": 6057,
+ "start": 3820.24,
+ "end": 3821.36,
+ "text": "Mr"
+ },
+ {
+ "id": 6058,
+ "start": 3821.36,
+ "end": 3821.82,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 6059,
+ "start": 3821.82,
+ "end": 3822.06,
+ "text": "What"
+ },
+ {
+ "id": 6060,
+ "start": 3822.06,
+ "end": 3822.3,
+ "text": "is"
+ },
+ {
+ "id": 6061,
+ "start": 3822.3,
+ "end": 3823.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 6062,
+ "start": 3823.1,
+ "end": 3823.64,
+ "text": "doing"
+ },
+ {
+ "id": 6063,
+ "start": 3823.64,
+ "end": 3824.32,
+ "text": "to"
+ },
+ {
+ "id": 6064,
+ "start": 3824.32,
+ "end": 3824.7,
+ "text": "prevent"
+ },
+ {
+ "id": 6065,
+ "start": 3824.7,
+ "end": 3825.22,
+ "text": "foreign"
+ },
+ {
+ "id": 6066,
+ "start": 3825.22,
+ "end": 3825.74,
+ "text": "actors"
+ },
+ {
+ "id": 6067,
+ "start": 3825.74,
+ "end": 3826.06,
+ "text": "from"
+ },
+ {
+ "id": 6068,
+ "start": 3826.06,
+ "end": 3826.86,
+ "text": "interfering"
+ },
+ {
+ "id": 6069,
+ "start": 3826.86,
+ "end": 3827.16,
+ "text": "in"
+ },
+ {
+ "id": 6070,
+ "start": 3827.16,
+ "end": 3827.38,
+ "text": "U"
+ },
+ {
+ "id": 6071,
+ "start": 3827.38,
+ "end": 3827.6,
+ "text": "S"
+ },
+ {
+ "id": 6072,
+ "start": 3827.6,
+ "end": 3828.98,
+ "text": "elections."
+ },
+ {
+ "id": 6073,
+ "start": 3828.98,
+ "end": 3829.92,
+ "text": "Thank"
+ },
+ {
+ "id": 6074,
+ "start": 3829.92,
+ "end": 3830.04,
+ "text": "you,"
+ },
+ {
+ "id": 6075,
+ "start": 3830.04,
+ "end": 3830.42,
+ "text": "Senator."
+ },
+ {
+ "id": 6076,
+ "start": 3830.42,
+ "end": 3831.1,
+ "text": "This"
+ },
+ {
+ "id": 6077,
+ "start": 3831.1,
+ "end": 3831.36,
+ "text": "is"
+ },
+ {
+ "id": 6078,
+ "start": 3831.36,
+ "end": 3832.34,
+ "text": "one"
+ },
+ {
+ "id": 6079,
+ "start": 3832.34,
+ "end": 3832.42,
+ "text": "of"
+ },
+ {
+ "id": 6080,
+ "start": 3832.42,
+ "end": 3832.58,
+ "text": "my"
+ },
+ {
+ "id": 6081,
+ "start": 3832.58,
+ "end": 3832.78,
+ "text": "top"
+ },
+ {
+ "id": 6082,
+ "start": 3832.78,
+ "end": 3833.22,
+ "text": "priorities"
+ },
+ {
+ "id": 6083,
+ "start": 3833.22,
+ "end": 3833.36,
+ "text": "in"
+ },
+ {
+ "id": 6084,
+ "start": 3833.36,
+ "end": 3833.72,
+ "text": "20"
+ },
+ {
+ "id": 6085,
+ "start": 3833.72,
+ "end": 3834.2,
+ "text": "18"
+ },
+ {
+ "id": 6086,
+ "start": 3834.2,
+ "end": 3834.9,
+ "text": "is"
+ },
+ {
+ "id": 6087,
+ "start": 3834.9,
+ "end": 3835,
+ "text": "to"
+ },
+ {
+ "id": 6088,
+ "start": 3835,
+ "end": 3835.1,
+ "text": "get"
+ },
+ {
+ "id": 6089,
+ "start": 3835.1,
+ "end": 3835.26,
+ "text": "this"
+ },
+ {
+ "id": 6090,
+ "start": 3835.26,
+ "end": 3836.02,
+ "text": "right,"
+ },
+ {
+ "id": 6091,
+ "start": 3836.02,
+ "end": 3836.98,
+ "text": "one"
+ },
+ {
+ "id": 6092,
+ "start": 3836.98,
+ "end": 3837.06,
+ "text": "of"
+ },
+ {
+ "id": 6093,
+ "start": 3837.06,
+ "end": 3837.22,
+ "text": "my"
+ },
+ {
+ "id": 6094,
+ "start": 3837.22,
+ "end": 3837.68,
+ "text": "greatest"
+ },
+ {
+ "id": 6095,
+ "start": 3837.68,
+ "end": 3838.14,
+ "text": "regrets"
+ },
+ {
+ "id": 6096,
+ "start": 3838.14,
+ "end": 3838.3,
+ "text": "in"
+ },
+ {
+ "id": 6097,
+ "start": 3838.3,
+ "end": 3838.56,
+ "text": "running"
+ },
+ {
+ "id": 6098,
+ "start": 3838.56,
+ "end": 3838.68,
+ "text": "the"
+ },
+ {
+ "id": 6099,
+ "start": 3838.68,
+ "end": 3839.08,
+ "text": "company"
+ },
+ {
+ "id": 6100,
+ "start": 3839.08,
+ "end": 3839.28,
+ "text": "is"
+ },
+ {
+ "id": 6101,
+ "start": 3839.28,
+ "end": 3839.49,
+ "text": "that"
+ },
+ {
+ "id": 6102,
+ "start": 3839.49,
+ "end": 3839.55,
+ "text": "we"
+ },
+ {
+ "id": 6103,
+ "start": 3839.55,
+ "end": 3839.81,
+ "text": "were"
+ },
+ {
+ "id": 6104,
+ "start": 3839.81,
+ "end": 3840.35,
+ "text": "slow"
+ },
+ {
+ "id": 6105,
+ "start": 3840.35,
+ "end": 3840.85,
+ "text": "in"
+ },
+ {
+ "id": 6106,
+ "start": 3840.85,
+ "end": 3841.55,
+ "text": "identifying"
+ },
+ {
+ "id": 6107,
+ "start": 3841.55,
+ "end": 3841.81,
+ "text": "the"
+ },
+ {
+ "id": 6108,
+ "start": 3841.81,
+ "end": 3842.13,
+ "text": "Russian"
+ },
+ {
+ "id": 6109,
+ "start": 3842.13,
+ "end": 3842.71,
+ "text": "information"
+ },
+ {
+ "id": 6110,
+ "start": 3842.71,
+ "end": 3843.31,
+ "text": "operations"
+ },
+ {
+ "id": 6111,
+ "start": 3843.31,
+ "end": 3843.49,
+ "text": "and"
+ },
+ {
+ "id": 6112,
+ "start": 3843.49,
+ "end": 3843.83,
+ "text": "20"
+ },
+ {
+ "id": 6113,
+ "start": 3843.83,
+ "end": 3844.31,
+ "text": "16"
+ },
+ {
+ "id": 6114,
+ "start": 3844.31,
+ "end": 3844.51,
+ "text": "we"
+ },
+ {
+ "id": 6115,
+ "start": 3844.51,
+ "end": 3845.01,
+ "text": "expected"
+ },
+ {
+ "id": 6116,
+ "start": 3845.01,
+ "end": 3845.25,
+ "text": "them"
+ },
+ {
+ "id": 6117,
+ "start": 3845.25,
+ "end": 3845.93,
+ "text": "to"
+ },
+ {
+ "id": 6118,
+ "start": 3845.93,
+ "end": 3846.23,
+ "text": "do"
+ },
+ {
+ "id": 6119,
+ "start": 3846.23,
+ "end": 3846.43,
+ "text": "a"
+ },
+ {
+ "id": 6120,
+ "start": 3846.43,
+ "end": 3846.73,
+ "text": "number"
+ },
+ {
+ "id": 6121,
+ "start": 3846.73,
+ "end": 3846.81,
+ "text": "of"
+ },
+ {
+ "id": 6122,
+ "start": 3846.81,
+ "end": 3847.01,
+ "text": "more"
+ },
+ {
+ "id": 6123,
+ "start": 3847.01,
+ "end": 3847.49,
+ "text": "traditional"
+ },
+ {
+ "id": 6124,
+ "start": 3847.49,
+ "end": 3847.81,
+ "text": "cyber"
+ },
+ {
+ "id": 6125,
+ "start": 3847.81,
+ "end": 3848.15,
+ "text": "attacks"
+ },
+ {
+ "id": 6126,
+ "start": 3848.15,
+ "end": 3848.35,
+ "text": "which"
+ },
+ {
+ "id": 6127,
+ "start": 3848.35,
+ "end": 3848.47,
+ "text": "we"
+ },
+ {
+ "id": 6128,
+ "start": 3848.47,
+ "end": 3848.61,
+ "text": "did"
+ },
+ {
+ "id": 6129,
+ "start": 3848.61,
+ "end": 3849.19,
+ "text": "identify"
+ },
+ {
+ "id": 6130,
+ "start": 3849.19,
+ "end": 3849.31,
+ "text": "and"
+ },
+ {
+ "id": 6131,
+ "start": 3849.31,
+ "end": 3850,
+ "text": "notify"
+ },
+ {
+ "id": 6132,
+ "start": 3850,
+ "end": 3850.38,
+ "text": "the"
+ },
+ {
+ "id": 6133,
+ "start": 3850.38,
+ "end": 3850.86,
+ "text": "campaigns"
+ },
+ {
+ "id": 6134,
+ "start": 3850.86,
+ "end": 3851,
+ "text": "that"
+ },
+ {
+ "id": 6135,
+ "start": 3851,
+ "end": 3851.12,
+ "text": "they"
+ },
+ {
+ "id": 6136,
+ "start": 3851.12,
+ "end": 3851.24,
+ "text": "were"
+ },
+ {
+ "id": 6137,
+ "start": 3851.24,
+ "end": 3851.46,
+ "text": "trying"
+ },
+ {
+ "id": 6138,
+ "start": 3851.46,
+ "end": 3851.52,
+ "text": "to"
+ },
+ {
+ "id": 6139,
+ "start": 3851.52,
+ "end": 3851.68,
+ "text": "hack"
+ },
+ {
+ "id": 6140,
+ "start": 3851.68,
+ "end": 3851.88,
+ "text": "into"
+ },
+ {
+ "id": 6141,
+ "start": 3851.88,
+ "end": 3852.08,
+ "text": "them."
+ },
+ {
+ "id": 6142,
+ "start": 3852.08,
+ "end": 3852.52,
+ "text": "But"
+ },
+ {
+ "id": 6143,
+ "start": 3852.52,
+ "end": 3852.62,
+ "text": "we"
+ },
+ {
+ "id": 6144,
+ "start": 3852.62,
+ "end": 3852.76,
+ "text": "were"
+ },
+ {
+ "id": 6145,
+ "start": 3852.76,
+ "end": 3853,
+ "text": "slow"
+ },
+ {
+ "id": 6146,
+ "start": 3853,
+ "end": 3853.1,
+ "text": "to"
+ },
+ {
+ "id": 6147,
+ "start": 3853.1,
+ "end": 3853.76,
+ "text": "identifying"
+ },
+ {
+ "id": 6148,
+ "start": 3853.76,
+ "end": 3854.18,
+ "text": "the"
+ },
+ {
+ "id": 6149,
+ "start": 3854.18,
+ "end": 3854.46,
+ "text": "type"
+ },
+ {
+ "id": 6150,
+ "start": 3854.46,
+ "end": 3854.6,
+ "text": "of"
+ },
+ {
+ "id": 6151,
+ "start": 3854.6,
+ "end": 3855.18,
+ "text": "new"
+ },
+ {
+ "id": 6152,
+ "start": 3855.18,
+ "end": 3855.76,
+ "text": "information"
+ },
+ {
+ "id": 6153,
+ "start": 3855.76,
+ "end": 3856.34,
+ "text": "operations."
+ },
+ {
+ "id": 6154,
+ "start": 3856.34,
+ "end": 3856.82,
+ "text": "When"
+ },
+ {
+ "id": 6155,
+ "start": 3856.82,
+ "end": 3857,
+ "text": "did"
+ },
+ {
+ "id": 6156,
+ "start": 3857,
+ "end": 3857.18,
+ "text": "you"
+ },
+ {
+ "id": 6157,
+ "start": 3857.18,
+ "end": 3858.16,
+ "text": "identify"
+ },
+ {
+ "id": 6158,
+ "start": 3858.16,
+ "end": 3858.76,
+ "text": "new"
+ },
+ {
+ "id": 6159,
+ "start": 3858.76,
+ "end": 3859.92,
+ "text": "operations?"
+ },
+ {
+ "id": 6160,
+ "start": 3859.92,
+ "end": 3861,
+ "text": "It"
+ },
+ {
+ "id": 6161,
+ "start": 3861,
+ "end": 3861.16,
+ "text": "was"
+ },
+ {
+ "id": 6162,
+ "start": 3861.16,
+ "end": 3861.44,
+ "text": "right"
+ },
+ {
+ "id": 6163,
+ "start": 3861.44,
+ "end": 3861.8,
+ "text": "around"
+ },
+ {
+ "id": 6164,
+ "start": 3861.8,
+ "end": 3861.98,
+ "text": "the"
+ },
+ {
+ "id": 6165,
+ "start": 3861.98,
+ "end": 3862.26,
+ "text": "time"
+ },
+ {
+ "id": 6166,
+ "start": 3862.26,
+ "end": 3862.38,
+ "text": "of"
+ },
+ {
+ "id": 6167,
+ "start": 3862.38,
+ "end": 3862.5,
+ "text": "the"
+ },
+ {
+ "id": 6168,
+ "start": 3862.5,
+ "end": 3862.72,
+ "text": "20"
+ },
+ {
+ "id": 6169,
+ "start": 3862.72,
+ "end": 3863.1,
+ "text": "16"
+ },
+ {
+ "id": 6170,
+ "start": 3863.1,
+ "end": 3863.46,
+ "text": "election"
+ },
+ {
+ "id": 6171,
+ "start": 3863.46,
+ "end": 3863.84,
+ "text": "itself."
+ },
+ {
+ "id": 6172,
+ "start": 3863.84,
+ "end": 3864.46,
+ "text": "So"
+ },
+ {
+ "id": 6173,
+ "start": 3864.46,
+ "end": 3864.72,
+ "text": "since"
+ },
+ {
+ "id": 6174,
+ "start": 3864.72,
+ "end": 3866.8,
+ "text": "then,"
+ },
+ {
+ "id": 6175,
+ "start": 3866.8,
+ "end": 3867.82,
+ "text": "this"
+ },
+ {
+ "id": 6176,
+ "start": 3867.82,
+ "end": 3867.94,
+ "text": "is"
+ },
+ {
+ "id": 6177,
+ "start": 3867.94,
+ "end": 3868.04,
+ "text": "an"
+ },
+ {
+ "id": 6178,
+ "start": 3868.04,
+ "end": 3868.52,
+ "text": "incredibly"
+ },
+ {
+ "id": 6179,
+ "start": 3868.52,
+ "end": 3868.84,
+ "text": "important"
+ },
+ {
+ "id": 6180,
+ "start": 3868.84,
+ "end": 3869,
+ "text": "year"
+ },
+ {
+ "id": 6181,
+ "start": 3869,
+ "end": 3869.14,
+ "text": "for"
+ },
+ {
+ "id": 6182,
+ "start": 3869.14,
+ "end": 3869.6,
+ "text": "elections."
+ },
+ {
+ "id": 6183,
+ "start": 3869.6,
+ "end": 3869.86,
+ "text": "Not"
+ },
+ {
+ "id": 6184,
+ "start": 3869.86,
+ "end": 3870.04,
+ "text": "just"
+ },
+ {
+ "id": 6185,
+ "start": 3870.04,
+ "end": 3870.36,
+ "text": "with"
+ },
+ {
+ "id": 6186,
+ "start": 3870.36,
+ "end": 3870.46,
+ "text": "the"
+ },
+ {
+ "id": 6187,
+ "start": 3870.46,
+ "end": 3870.56,
+ "text": "U"
+ },
+ {
+ "id": 6188,
+ "start": 3870.56,
+ "end": 3870.7,
+ "text": "S"
+ },
+ {
+ "id": 6189,
+ "start": 3870.7,
+ "end": 3871.18,
+ "text": "Midterms"
+ },
+ {
+ "id": 6190,
+ "start": 3871.18,
+ "end": 3871.74,
+ "text": "but"
+ },
+ {
+ "id": 6191,
+ "start": 3871.74,
+ "end": 3872.04,
+ "text": "around"
+ },
+ {
+ "id": 6192,
+ "start": 3872.04,
+ "end": 3872.16,
+ "text": "the"
+ },
+ {
+ "id": 6193,
+ "start": 3872.16,
+ "end": 3872.44,
+ "text": "world."
+ },
+ {
+ "id": 6194,
+ "start": 3872.44,
+ "end": 3872.64,
+ "text": "There"
+ },
+ {
+ "id": 6195,
+ "start": 3872.64,
+ "end": 3872.76,
+ "text": "are"
+ },
+ {
+ "id": 6196,
+ "start": 3872.76,
+ "end": 3873.14,
+ "text": "important"
+ },
+ {
+ "id": 6197,
+ "start": 3873.14,
+ "end": 3873.64,
+ "text": "elections"
+ },
+ {
+ "id": 6198,
+ "start": 3873.64,
+ "end": 3873.9,
+ "text": "in"
+ },
+ {
+ "id": 6199,
+ "start": 3873.9,
+ "end": 3874.38,
+ "text": "India"
+ },
+ {
+ "id": 6200,
+ "start": 3874.38,
+ "end": 3874.92,
+ "text": "in"
+ },
+ {
+ "id": 6201,
+ "start": 3874.92,
+ "end": 3875.4,
+ "text": "Brazil"
+ },
+ {
+ "id": 6202,
+ "start": 3875.4,
+ "end": 3875.62,
+ "text": "and"
+ },
+ {
+ "id": 6203,
+ "start": 3875.62,
+ "end": 3876.14,
+ "text": "Mexico"
+ },
+ {
+ "id": 6204,
+ "start": 3876.14,
+ "end": 3876.3,
+ "text": "and"
+ },
+ {
+ "id": 6205,
+ "start": 3876.3,
+ "end": 3876.84,
+ "text": "Pakistan"
+ },
+ {
+ "id": 6206,
+ "start": 3876.84,
+ "end": 3876.96,
+ "text": "and"
+ },
+ {
+ "id": 6207,
+ "start": 3876.96,
+ "end": 3877.08,
+ "text": "and"
+ },
+ {
+ "id": 6208,
+ "start": 3877.08,
+ "end": 3877.52,
+ "text": "Hungary"
+ },
+ {
+ "id": 6209,
+ "start": 3877.52,
+ "end": 3877.88,
+ "text": "that"
+ },
+ {
+ "id": 6210,
+ "start": 3877.88,
+ "end": 3877.98,
+ "text": "we"
+ },
+ {
+ "id": 6211,
+ "start": 3877.98,
+ "end": 3878.12,
+ "text": "want"
+ },
+ {
+ "id": 6212,
+ "start": 3878.12,
+ "end": 3878.18,
+ "text": "to"
+ },
+ {
+ "id": 6213,
+ "start": 3878.18,
+ "end": 3878.32,
+ "text": "make"
+ },
+ {
+ "id": 6214,
+ "start": 3878.32,
+ "end": 3878.54,
+ "text": "sure"
+ },
+ {
+ "id": 6215,
+ "start": 3878.54,
+ "end": 3878.7,
+ "text": "that"
+ },
+ {
+ "id": 6216,
+ "start": 3878.7,
+ "end": 3878.98,
+ "text": "we"
+ },
+ {
+ "id": 6217,
+ "start": 3878.98,
+ "end": 3879.36,
+ "text": "do"
+ },
+ {
+ "id": 6218,
+ "start": 3879.36,
+ "end": 3879.74,
+ "text": "everything"
+ },
+ {
+ "id": 6219,
+ "start": 3879.74,
+ "end": 3879.86,
+ "text": "we"
+ },
+ {
+ "id": 6220,
+ "start": 3879.86,
+ "end": 3880.13,
+ "text": "can"
+ },
+ {
+ "id": 6221,
+ "start": 3880.13,
+ "end": 3880.19,
+ "text": "to"
+ },
+ {
+ "id": 6222,
+ "start": 3880.19,
+ "end": 3880.45,
+ "text": "protect"
+ },
+ {
+ "id": 6223,
+ "start": 3880.45,
+ "end": 3880.59,
+ "text": "the"
+ },
+ {
+ "id": 6224,
+ "start": 3880.59,
+ "end": 3880.99,
+ "text": "integrity"
+ },
+ {
+ "id": 6225,
+ "start": 3880.99,
+ "end": 3881.07,
+ "text": "of"
+ },
+ {
+ "id": 6226,
+ "start": 3881.07,
+ "end": 3881.25,
+ "text": "those"
+ },
+ {
+ "id": 6227,
+ "start": 3881.25,
+ "end": 3881.69,
+ "text": "elections."
+ },
+ {
+ "id": 6228,
+ "start": 3881.69,
+ "end": 3881.89,
+ "text": "Now,"
+ },
+ {
+ "id": 6229,
+ "start": 3881.89,
+ "end": 3882.57,
+ "text": "I"
+ },
+ {
+ "id": 6230,
+ "start": 3882.57,
+ "end": 3882.73,
+ "text": "have"
+ },
+ {
+ "id": 6231,
+ "start": 3882.73,
+ "end": 3882.95,
+ "text": "more"
+ },
+ {
+ "id": 6232,
+ "start": 3882.95,
+ "end": 3883.47,
+ "text": "confidence"
+ },
+ {
+ "id": 6233,
+ "start": 3883.47,
+ "end": 3883.63,
+ "text": "that"
+ },
+ {
+ "id": 6234,
+ "start": 3883.63,
+ "end": 3883.77,
+ "text": "we're"
+ },
+ {
+ "id": 6235,
+ "start": 3883.77,
+ "end": 3883.93,
+ "text": "going"
+ },
+ {
+ "id": 6236,
+ "start": 3883.93,
+ "end": 3883.99,
+ "text": "to"
+ },
+ {
+ "id": 6237,
+ "start": 3883.99,
+ "end": 3884.07,
+ "text": "get"
+ },
+ {
+ "id": 6238,
+ "start": 3884.07,
+ "end": 3884.21,
+ "text": "this"
+ },
+ {
+ "id": 6239,
+ "start": 3884.21,
+ "end": 3884.49,
+ "text": "right"
+ },
+ {
+ "id": 6240,
+ "start": 3884.49,
+ "end": 3884.85,
+ "text": "because"
+ },
+ {
+ "id": 6241,
+ "start": 3884.85,
+ "end": 3885.11,
+ "text": "since"
+ },
+ {
+ "id": 6242,
+ "start": 3885.11,
+ "end": 3885.25,
+ "text": "the"
+ },
+ {
+ "id": 6243,
+ "start": 3885.25,
+ "end": 3885.45,
+ "text": "20"
+ },
+ {
+ "id": 6244,
+ "start": 3885.45,
+ "end": 3885.83,
+ "text": "16"
+ },
+ {
+ "id": 6245,
+ "start": 3885.83,
+ "end": 3886.19,
+ "text": "election,"
+ },
+ {
+ "id": 6246,
+ "start": 3886.19,
+ "end": 3886.67,
+ "text": "there"
+ },
+ {
+ "id": 6247,
+ "start": 3886.67,
+ "end": 3886.81,
+ "text": "have"
+ },
+ {
+ "id": 6248,
+ "start": 3886.81,
+ "end": 3886.99,
+ "text": "been"
+ },
+ {
+ "id": 6249,
+ "start": 3886.99,
+ "end": 3887.43,
+ "text": "several"
+ },
+ {
+ "id": 6250,
+ "start": 3887.43,
+ "end": 3887.85,
+ "text": "important"
+ },
+ {
+ "id": 6251,
+ "start": 3887.85,
+ "end": 3888.31,
+ "text": "elections"
+ },
+ {
+ "id": 6252,
+ "start": 3888.31,
+ "end": 3888.59,
+ "text": "around"
+ },
+ {
+ "id": 6253,
+ "start": 3888.59,
+ "end": 3888.71,
+ "text": "the"
+ },
+ {
+ "id": 6254,
+ "start": 3888.71,
+ "end": 3888.95,
+ "text": "world"
+ },
+ {
+ "id": 6255,
+ "start": 3888.95,
+ "end": 3889.41,
+ "text": "where"
+ },
+ {
+ "id": 6256,
+ "start": 3889.41,
+ "end": 3889.61,
+ "text": "we've"
+ },
+ {
+ "id": 6257,
+ "start": 3889.61,
+ "end": 3889.73,
+ "text": "had"
+ },
+ {
+ "id": 6258,
+ "start": 3889.73,
+ "end": 3889.79,
+ "text": "a"
+ },
+ {
+ "id": 6259,
+ "start": 3889.79,
+ "end": 3890.01,
+ "text": "better"
+ },
+ {
+ "id": 6260,
+ "start": 3890.01,
+ "end": 3890.31,
+ "text": "record"
+ },
+ {
+ "id": 6261,
+ "start": 3890.31,
+ "end": 3890.67,
+ "text": "there's"
+ },
+ {
+ "id": 6262,
+ "start": 3890.67,
+ "end": 3890.79,
+ "text": "the"
+ },
+ {
+ "id": 6263,
+ "start": 3890.79,
+ "end": 3891.05,
+ "text": "French"
+ },
+ {
+ "id": 6264,
+ "start": 3891.05,
+ "end": 3891.55,
+ "text": "presidential"
+ },
+ {
+ "id": 6265,
+ "start": 3891.55,
+ "end": 3891.91,
+ "text": "election"
+ },
+ {
+ "id": 6266,
+ "start": 3891.91,
+ "end": 3892.57,
+ "text": "there's"
+ },
+ {
+ "id": 6267,
+ "start": 3892.57,
+ "end": 3892.67,
+ "text": "the"
+ },
+ {
+ "id": 6268,
+ "start": 3892.67,
+ "end": 3892.93,
+ "text": "German"
+ },
+ {
+ "id": 6269,
+ "start": 3892.93,
+ "end": 3893.23,
+ "text": "election."
+ },
+ {
+ "id": 6270,
+ "start": 3893.23,
+ "end": 3893.39,
+ "text": "There"
+ },
+ {
+ "id": 6271,
+ "start": 3893.39,
+ "end": 3893.49,
+ "text": "was"
+ },
+ {
+ "id": 6272,
+ "start": 3893.49,
+ "end": 3893.63,
+ "text": "the"
+ },
+ {
+ "id": 6273,
+ "start": 3893.63,
+ "end": 3894.2,
+ "text": "US"
+ },
+ {
+ "id": 6274,
+ "start": 3894.2,
+ "end": 3894.8,
+ "text": "Senate"
+ },
+ {
+ "id": 6275,
+ "start": 3894.8,
+ "end": 3895.24,
+ "text": "Alabama"
+ },
+ {
+ "id": 6276,
+ "start": 3895.24,
+ "end": 3895.66,
+ "text": "special"
+ },
+ {
+ "id": 6277,
+ "start": 3895.66,
+ "end": 3896,
+ "text": "election"
+ },
+ {
+ "id": 6278,
+ "start": 3896,
+ "end": 3896.26,
+ "text": "last"
+ },
+ {
+ "id": 6279,
+ "start": 3896.26,
+ "end": 3896.42,
+ "text": "year."
+ },
+ {
+ "id": 6280,
+ "start": 3896.42,
+ "end": 3897.26,
+ "text": "Explain"
+ },
+ {
+ "id": 6281,
+ "start": 3897.26,
+ "end": 3897.5,
+ "text": "what"
+ },
+ {
+ "id": 6282,
+ "start": 3897.5,
+ "end": 3897.68,
+ "text": "is"
+ },
+ {
+ "id": 6283,
+ "start": 3897.68,
+ "end": 3898.02,
+ "text": "better"
+ },
+ {
+ "id": 6284,
+ "start": 3898.02,
+ "end": 3898.3,
+ "text": "about"
+ },
+ {
+ "id": 6285,
+ "start": 3898.3,
+ "end": 3898.48,
+ "text": "the"
+ },
+ {
+ "id": 6286,
+ "start": 3898.48,
+ "end": 3898.86,
+ "text": "record."
+ },
+ {
+ "id": 6287,
+ "start": 3898.86,
+ "end": 3899.46,
+ "text": "So"
+ },
+ {
+ "id": 6288,
+ "start": 3899.46,
+ "end": 3899.74,
+ "text": "we've"
+ },
+ {
+ "id": 6289,
+ "start": 3899.74,
+ "end": 3900.28,
+ "text": "deployed."
+ },
+ {
+ "id": 6290,
+ "start": 3900.28,
+ "end": 3900.66,
+ "text": "New"
+ },
+ {
+ "id": 6291,
+ "start": 3900.66,
+ "end": 3901.04,
+ "text": "AI"
+ },
+ {
+ "id": 6292,
+ "start": 3901.04,
+ "end": 3901.9,
+ "text": "tools"
+ },
+ {
+ "id": 6293,
+ "start": 3901.9,
+ "end": 3902.58,
+ "text": "that"
+ },
+ {
+ "id": 6294,
+ "start": 3902.58,
+ "end": 3903.24,
+ "text": "do"
+ },
+ {
+ "id": 6295,
+ "start": 3903.24,
+ "end": 3903.34,
+ "text": "a"
+ },
+ {
+ "id": 6296,
+ "start": 3903.34,
+ "end": 3903.64,
+ "text": "better"
+ },
+ {
+ "id": 6297,
+ "start": 3903.64,
+ "end": 3903.96,
+ "text": "job"
+ },
+ {
+ "id": 6298,
+ "start": 3903.96,
+ "end": 3904.18,
+ "text": "of"
+ },
+ {
+ "id": 6299,
+ "start": 3904.18,
+ "end": 3904.9,
+ "text": "identifying"
+ },
+ {
+ "id": 6300,
+ "start": 3904.9,
+ "end": 3905.22,
+ "text": "fake"
+ },
+ {
+ "id": 6301,
+ "start": 3905.22,
+ "end": 3905.64,
+ "text": "accounts"
+ },
+ {
+ "id": 6302,
+ "start": 3905.64,
+ "end": 3906.3,
+ "text": "that"
+ },
+ {
+ "id": 6303,
+ "start": 3906.3,
+ "end": 3906.54,
+ "text": "may"
+ },
+ {
+ "id": 6304,
+ "start": 3906.54,
+ "end": 3906.66,
+ "text": "be"
+ },
+ {
+ "id": 6305,
+ "start": 3906.66,
+ "end": 3907.12,
+ "text": "trying"
+ },
+ {
+ "id": 6306,
+ "start": 3907.12,
+ "end": 3907.34,
+ "text": "to"
+ },
+ {
+ "id": 6307,
+ "start": 3907.34,
+ "end": 3907.92,
+ "text": "interfere"
+ },
+ {
+ "id": 6308,
+ "start": 3907.92,
+ "end": 3907.98,
+ "text": "in"
+ },
+ {
+ "id": 6309,
+ "start": 3907.98,
+ "end": 3908.42,
+ "text": "elections"
+ },
+ {
+ "id": 6310,
+ "start": 3908.42,
+ "end": 3908.6,
+ "text": "or"
+ },
+ {
+ "id": 6311,
+ "start": 3908.6,
+ "end": 3908.92,
+ "text": "spread"
+ },
+ {
+ "id": 6312,
+ "start": 3908.92,
+ "end": 3909.66,
+ "text": "misinformation."
+ },
+ {
+ "id": 6313,
+ "start": 3909.66,
+ "end": 3910.26,
+ "text": "And"
+ },
+ {
+ "id": 6314,
+ "start": 3910.26,
+ "end": 3910.62,
+ "text": "between"
+ },
+ {
+ "id": 6315,
+ "start": 3910.62,
+ "end": 3910.94,
+ "text": "those"
+ },
+ {
+ "id": 6316,
+ "start": 3910.94,
+ "end": 3911.24,
+ "text": "three"
+ },
+ {
+ "id": 6317,
+ "start": 3911.24,
+ "end": 3911.72,
+ "text": "elections."
+ },
+ {
+ "id": 6318,
+ "start": 3911.72,
+ "end": 3912.22,
+ "text": "We"
+ },
+ {
+ "id": 6319,
+ "start": 3912.22,
+ "end": 3912.4,
+ "text": "were"
+ },
+ {
+ "id": 6320,
+ "start": 3912.4,
+ "end": 3912.6,
+ "text": "able"
+ },
+ {
+ "id": 6321,
+ "start": 3912.6,
+ "end": 3912.72,
+ "text": "to"
+ },
+ {
+ "id": 6322,
+ "start": 3912.72,
+ "end": 3913.42,
+ "text": "proactively"
+ },
+ {
+ "id": 6323,
+ "start": 3913.42,
+ "end": 3913.84,
+ "text": "remove"
+ },
+ {
+ "id": 6324,
+ "start": 3913.84,
+ "end": 3914.44,
+ "text": "tens"
+ },
+ {
+ "id": 6325,
+ "start": 3914.44,
+ "end": 3914.56,
+ "text": "of"
+ },
+ {
+ "id": 6326,
+ "start": 3914.56,
+ "end": 3915,
+ "text": "thousands"
+ },
+ {
+ "id": 6327,
+ "start": 3915,
+ "end": 3915.14,
+ "text": "of"
+ },
+ {
+ "id": 6328,
+ "start": 3915.14,
+ "end": 3915.54,
+ "text": "accounts"
+ },
+ {
+ "id": 6329,
+ "start": 3915.54,
+ "end": 3916.1,
+ "text": "that"
+ },
+ {
+ "id": 6330,
+ "start": 3916.1,
+ "end": 3916.94,
+ "text": "before"
+ },
+ {
+ "id": 6331,
+ "start": 3916.94,
+ "end": 3917.28,
+ "text": "they"
+ },
+ {
+ "id": 6332,
+ "start": 3917.28,
+ "end": 3917.74,
+ "text": "they"
+ },
+ {
+ "id": 6333,
+ "start": 3917.74,
+ "end": 3918.1,
+ "text": "could"
+ },
+ {
+ "id": 6334,
+ "start": 3918.1,
+ "end": 3919.16,
+ "text": "contribute"
+ },
+ {
+ "id": 6335,
+ "start": 3919.16,
+ "end": 3919.66,
+ "text": "significant"
+ },
+ {
+ "id": 6336,
+ "start": 3919.66,
+ "end": 3919.94,
+ "text": "harm."
+ },
+ {
+ "id": 6337,
+ "start": 3919.94,
+ "end": 3920.96,
+ "text": "And"
+ },
+ {
+ "id": 6338,
+ "start": 3920.96,
+ "end": 3921.42,
+ "text": "the"
+ },
+ {
+ "id": 6339,
+ "start": 3921.42,
+ "end": 3921.82,
+ "text": "nature"
+ },
+ {
+ "id": 6340,
+ "start": 3921.82,
+ "end": 3921.9,
+ "text": "of"
+ },
+ {
+ "id": 6341,
+ "start": 3921.9,
+ "end": 3922.2,
+ "text": "his"
+ },
+ {
+ "id": 6342,
+ "start": 3922.2,
+ "end": 3923.26,
+ "text": "attacks,"
+ },
+ {
+ "id": 6343,
+ "start": 3923.26,
+ "end": 3923.56,
+ "text": "though,"
+ },
+ {
+ "id": 6344,
+ "start": 3923.56,
+ "end": 3924.38,
+ "text": "is"
+ },
+ {
+ "id": 6345,
+ "start": 3924.38,
+ "end": 3924.66,
+ "text": "that"
+ },
+ {
+ "id": 6346,
+ "start": 3924.66,
+ "end": 3925.2,
+ "text": "there"
+ },
+ {
+ "id": 6347,
+ "start": 3925.2,
+ "end": 3925.32,
+ "text": "are"
+ },
+ {
+ "id": 6348,
+ "start": 3925.32,
+ "end": 3925.52,
+ "text": "people"
+ },
+ {
+ "id": 6349,
+ "start": 3925.52,
+ "end": 3925.64,
+ "text": "in"
+ },
+ {
+ "id": 6350,
+ "start": 3925.64,
+ "end": 3926,
+ "text": "Russia"
+ },
+ {
+ "id": 6351,
+ "start": 3926,
+ "end": 3926.66,
+ "text": "whose"
+ },
+ {
+ "id": 6352,
+ "start": 3926.66,
+ "end": 3926.94,
+ "text": "job"
+ },
+ {
+ "id": 6353,
+ "start": 3926.94,
+ "end": 3927.04,
+ "text": "it"
+ },
+ {
+ "id": 6354,
+ "start": 3927.04,
+ "end": 3927.22,
+ "text": "is"
+ },
+ {
+ "id": 6355,
+ "start": 3927.22,
+ "end": 3927.38,
+ "text": "is"
+ },
+ {
+ "id": 6356,
+ "start": 3927.38,
+ "end": 3927.5,
+ "text": "to"
+ },
+ {
+ "id": 6357,
+ "start": 3927.5,
+ "end": 3927.68,
+ "text": "try"
+ },
+ {
+ "id": 6358,
+ "start": 3927.68,
+ "end": 3927.78,
+ "text": "to"
+ },
+ {
+ "id": 6359,
+ "start": 3927.78,
+ "end": 3928.22,
+ "text": "exploit"
+ },
+ {
+ "id": 6360,
+ "start": 3928.22,
+ "end": 3928.42,
+ "text": "our"
+ },
+ {
+ "id": 6361,
+ "start": 3928.42,
+ "end": 3928.84,
+ "text": "systems"
+ },
+ {
+ "id": 6362,
+ "start": 3928.84,
+ "end": 3929.14,
+ "text": "and"
+ },
+ {
+ "id": 6363,
+ "start": 3929.14,
+ "end": 3929.54,
+ "text": "other"
+ },
+ {
+ "id": 6364,
+ "start": 3929.54,
+ "end": 3930.1,
+ "text": "Internet"
+ },
+ {
+ "id": 6365,
+ "start": 3930.1,
+ "end": 3930.44,
+ "text": "systems"
+ },
+ {
+ "id": 6366,
+ "start": 3930.44,
+ "end": 3930.54,
+ "text": "and"
+ },
+ {
+ "id": 6367,
+ "start": 3930.54,
+ "end": 3930.74,
+ "text": "other"
+ },
+ {
+ "id": 6368,
+ "start": 3930.74,
+ "end": 3931.17,
+ "text": "systems"
+ },
+ {
+ "id": 6369,
+ "start": 3931.17,
+ "end": 3931.29,
+ "text": "as"
+ },
+ {
+ "id": 6370,
+ "start": 3931.29,
+ "end": 3931.55,
+ "text": "well."
+ },
+ {
+ "id": 6371,
+ "start": 3931.55,
+ "end": 3932.09,
+ "text": "So"
+ },
+ {
+ "id": 6372,
+ "start": 3932.09,
+ "end": 3932.23,
+ "text": "this"
+ },
+ {
+ "id": 6373,
+ "start": 3932.23,
+ "end": 3932.33,
+ "text": "is"
+ },
+ {
+ "id": 6374,
+ "start": 3932.33,
+ "end": 3932.43,
+ "text": "an"
+ },
+ {
+ "id": 6375,
+ "start": 3932.43,
+ "end": 3932.67,
+ "text": "arms"
+ },
+ {
+ "id": 6376,
+ "start": 3932.67,
+ "end": 3932.91,
+ "text": "race"
+ },
+ {
+ "id": 6377,
+ "start": 3932.91,
+ "end": 3933.83,
+ "text": "they're"
+ },
+ {
+ "id": 6378,
+ "start": 3933.83,
+ "end": 3933.95,
+ "text": "going"
+ },
+ {
+ "id": 6379,
+ "start": 3933.95,
+ "end": 3934.01,
+ "text": "to"
+ },
+ {
+ "id": 6380,
+ "start": 3934.01,
+ "end": 3934.15,
+ "text": "keep"
+ },
+ {
+ "id": 6381,
+ "start": 3934.15,
+ "end": 3934.25,
+ "text": "on"
+ },
+ {
+ "id": 6382,
+ "start": 3934.25,
+ "end": 3934.51,
+ "text": "getting"
+ },
+ {
+ "id": 6383,
+ "start": 3934.51,
+ "end": 3934.71,
+ "text": "better"
+ },
+ {
+ "id": 6384,
+ "start": 3934.71,
+ "end": 3934.79,
+ "text": "at"
+ },
+ {
+ "id": 6385,
+ "start": 3934.79,
+ "end": 3934.95,
+ "text": "this."
+ },
+ {
+ "id": 6386,
+ "start": 3934.95,
+ "end": 3935.63,
+ "text": "And"
+ },
+ {
+ "id": 6387,
+ "start": 3935.63,
+ "end": 3935.87,
+ "text": "we"
+ },
+ {
+ "id": 6388,
+ "start": 3935.87,
+ "end": 3936.03,
+ "text": "need"
+ },
+ {
+ "id": 6389,
+ "start": 3936.03,
+ "end": 3936.15,
+ "text": "to"
+ },
+ {
+ "id": 6390,
+ "start": 3936.15,
+ "end": 3936.47,
+ "text": "invest"
+ },
+ {
+ "id": 6391,
+ "start": 3936.47,
+ "end": 3936.61,
+ "text": "in"
+ },
+ {
+ "id": 6392,
+ "start": 3936.61,
+ "end": 3936.85,
+ "text": "keep"
+ },
+ {
+ "id": 6393,
+ "start": 3936.85,
+ "end": 3937.39,
+ "text": "getting"
+ },
+ {
+ "id": 6394,
+ "start": 3937.39,
+ "end": 3937.59,
+ "text": "better"
+ },
+ {
+ "id": 6395,
+ "start": 3937.59,
+ "end": 3937.67,
+ "text": "at"
+ },
+ {
+ "id": 6396,
+ "start": 3937.67,
+ "end": 3937.83,
+ "text": "this"
+ },
+ {
+ "id": 6397,
+ "start": 3937.83,
+ "end": 3938.11,
+ "text": "too."
+ },
+ {
+ "id": 6398,
+ "start": 3938.11,
+ "end": 3938.57,
+ "text": "Which"
+ },
+ {
+ "id": 6399,
+ "start": 3938.57,
+ "end": 3938.69,
+ "text": "is"
+ },
+ {
+ "id": 6400,
+ "start": 3938.69,
+ "end": 3939.05,
+ "text": "why"
+ },
+ {
+ "id": 6401,
+ "start": 3939.05,
+ "end": 3939.41,
+ "text": "one"
+ },
+ {
+ "id": 6402,
+ "start": 3939.41,
+ "end": 3939.49,
+ "text": "of"
+ },
+ {
+ "id": 6403,
+ "start": 3939.49,
+ "end": 3939.59,
+ "text": "the"
+ },
+ {
+ "id": 6404,
+ "start": 3939.59,
+ "end": 3939.75,
+ "text": "things"
+ },
+ {
+ "id": 6405,
+ "start": 3939.75,
+ "end": 3939.85,
+ "text": "I"
+ },
+ {
+ "id": 6406,
+ "start": 3939.85,
+ "end": 3940.15,
+ "text": "mentioned"
+ },
+ {
+ "id": 6407,
+ "start": 3940.15,
+ "end": 3940.37,
+ "text": "before"
+ },
+ {
+ "id": 6408,
+ "start": 3940.37,
+ "end": 3940.49,
+ "text": "is"
+ },
+ {
+ "id": 6409,
+ "start": 3940.49,
+ "end": 3940.67,
+ "text": "we're"
+ },
+ {
+ "id": 6410,
+ "start": 3940.67,
+ "end": 3940.83,
+ "text": "going"
+ },
+ {
+ "id": 6411,
+ "start": 3940.83,
+ "end": 3940.89,
+ "text": "to"
+ },
+ {
+ "id": 6412,
+ "start": 3940.89,
+ "end": 3941.38,
+ "text": "have"
+ },
+ {
+ "id": 6413,
+ "start": 3941.38,
+ "end": 3941.88,
+ "text": "more"
+ },
+ {
+ "id": 6414,
+ "start": 3941.88,
+ "end": 3942,
+ "text": "than"
+ },
+ {
+ "id": 6415,
+ "start": 3942,
+ "end": 3942.68,
+ "text": "20,000"
+ },
+ {
+ "id": 6416,
+ "start": 3942.68,
+ "end": 3942.92,
+ "text": "people"
+ },
+ {
+ "id": 6417,
+ "start": 3942.92,
+ "end": 3943.08,
+ "text": "by"
+ },
+ {
+ "id": 6418,
+ "start": 3943.08,
+ "end": 3943.2,
+ "text": "the"
+ },
+ {
+ "id": 6419,
+ "start": 3943.2,
+ "end": 3943.32,
+ "text": "end"
+ },
+ {
+ "id": 6420,
+ "start": 3943.32,
+ "end": 3943.4,
+ "text": "of"
+ },
+ {
+ "id": 6421,
+ "start": 3943.4,
+ "end": 3943.52,
+ "text": "this"
+ },
+ {
+ "id": 6422,
+ "start": 3943.52,
+ "end": 3943.66,
+ "text": "year"
+ },
+ {
+ "id": 6423,
+ "start": 3943.66,
+ "end": 3943.98,
+ "text": "working"
+ },
+ {
+ "id": 6424,
+ "start": 3943.98,
+ "end": 3944.1,
+ "text": "on"
+ },
+ {
+ "id": 6425,
+ "start": 3944.1,
+ "end": 3944.54,
+ "text": "security"
+ },
+ {
+ "id": 6426,
+ "start": 3944.54,
+ "end": 3944.66,
+ "text": "and"
+ },
+ {
+ "id": 6427,
+ "start": 3944.66,
+ "end": 3945.02,
+ "text": "content"
+ },
+ {
+ "id": 6428,
+ "start": 3945.02,
+ "end": 3945.32,
+ "text": "review"
+ },
+ {
+ "id": 6429,
+ "start": 3945.32,
+ "end": 3946.02,
+ "text": "across"
+ },
+ {
+ "id": 6430,
+ "start": 3946.02,
+ "end": 3946.18,
+ "text": "the"
+ },
+ {
+ "id": 6431,
+ "start": 3946.18,
+ "end": 3946.52,
+ "text": "company."
+ },
+ {
+ "id": 6432,
+ "start": 3946.52,
+ "end": 3947.3,
+ "text": "Speak"
+ },
+ {
+ "id": 6433,
+ "start": 3947.3,
+ "end": 3947.52,
+ "text": "for"
+ },
+ {
+ "id": 6434,
+ "start": 3947.52,
+ "end": 3947.6,
+ "text": "a"
+ },
+ {
+ "id": 6435,
+ "start": 3947.6,
+ "end": 3948.1,
+ "text": "moment"
+ },
+ {
+ "id": 6436,
+ "start": 3948.1,
+ "end": 3948.88,
+ "text": "about"
+ },
+ {
+ "id": 6437,
+ "start": 3948.88,
+ "end": 3949.74,
+ "text": "automated"
+ },
+ {
+ "id": 6438,
+ "start": 3949.74,
+ "end": 3950.24,
+ "text": "bots"
+ },
+ {
+ "id": 6439,
+ "start": 3950.24,
+ "end": 3950.62,
+ "text": "that"
+ },
+ {
+ "id": 6440,
+ "start": 3950.62,
+ "end": 3951.46,
+ "text": "spread"
+ },
+ {
+ "id": 6441,
+ "start": 3951.46,
+ "end": 3952.94,
+ "text": "disinformation."
+ },
+ {
+ "id": 6442,
+ "start": 3952.94,
+ "end": 3953.44,
+ "text": "What"
+ },
+ {
+ "id": 6443,
+ "start": 3953.44,
+ "end": 3953.58,
+ "text": "are"
+ },
+ {
+ "id": 6444,
+ "start": 3953.58,
+ "end": 3953.74,
+ "text": "you"
+ },
+ {
+ "id": 6445,
+ "start": 3953.74,
+ "end": 3954.24,
+ "text": "doing"
+ },
+ {
+ "id": 6446,
+ "start": 3954.24,
+ "end": 3954.58,
+ "text": "to"
+ },
+ {
+ "id": 6447,
+ "start": 3954.58,
+ "end": 3955.22,
+ "text": "punish"
+ },
+ {
+ "id": 6448,
+ "start": 3955.22,
+ "end": 3955.62,
+ "text": "those"
+ },
+ {
+ "id": 6449,
+ "start": 3955.62,
+ "end": 3955.86,
+ "text": "who"
+ },
+ {
+ "id": 6450,
+ "start": 3955.86,
+ "end": 3956.78,
+ "text": "exploit"
+ },
+ {
+ "id": 6451,
+ "start": 3956.78,
+ "end": 3957.04,
+ "text": "your"
+ },
+ {
+ "id": 6452,
+ "start": 3957.04,
+ "end": 3957.62,
+ "text": "platform"
+ },
+ {
+ "id": 6453,
+ "start": 3957.62,
+ "end": 3957.78,
+ "text": "in"
+ },
+ {
+ "id": 6454,
+ "start": 3957.78,
+ "end": 3958.06,
+ "text": "that"
+ },
+ {
+ "id": 6455,
+ "start": 3958.06,
+ "end": 3959.6,
+ "text": "regard?"
+ },
+ {
+ "id": 6456,
+ "start": 3959.6,
+ "end": 3961.04,
+ "text": "Well"
+ },
+ {
+ "id": 6457,
+ "start": 3961.04,
+ "end": 3961.68,
+ "text": "you're"
+ },
+ {
+ "id": 6458,
+ "start": 3961.68,
+ "end": 3961.88,
+ "text": "not"
+ },
+ {
+ "id": 6459,
+ "start": 3961.88,
+ "end": 3962.18,
+ "text": "allowed"
+ },
+ {
+ "id": 6460,
+ "start": 3962.18,
+ "end": 3962.28,
+ "text": "to"
+ },
+ {
+ "id": 6461,
+ "start": 3962.28,
+ "end": 3962.52,
+ "text": "have"
+ },
+ {
+ "id": 6462,
+ "start": 3962.52,
+ "end": 3962.56,
+ "text": "a"
+ },
+ {
+ "id": 6463,
+ "start": 3962.56,
+ "end": 3962.84,
+ "text": "fake"
+ },
+ {
+ "id": 6464,
+ "start": 3962.84,
+ "end": 3963.16,
+ "text": "account"
+ },
+ {
+ "id": 6465,
+ "start": 3963.16,
+ "end": 3963.32,
+ "text": "on"
+ },
+ {
+ "id": 6466,
+ "start": 3963.32,
+ "end": 3963.8,
+ "text": "Facebook."
+ },
+ {
+ "id": 6467,
+ "start": 3963.8,
+ "end": 3964.2,
+ "text": "Your"
+ },
+ {
+ "id": 6468,
+ "start": 3964.2,
+ "end": 3964.54,
+ "text": "content"
+ },
+ {
+ "id": 6469,
+ "start": 3964.54,
+ "end": 3964.74,
+ "text": "has"
+ },
+ {
+ "id": 6470,
+ "start": 3964.74,
+ "end": 3964.88,
+ "text": "to"
+ },
+ {
+ "id": 6471,
+ "start": 3964.88,
+ "end": 3964.98,
+ "text": "be"
+ },
+ {
+ "id": 6472,
+ "start": 3964.98,
+ "end": 3965.42,
+ "text": "authentic."
+ },
+ {
+ "id": 6473,
+ "start": 3965.42,
+ "end": 3966.24,
+ "text": "So"
+ },
+ {
+ "id": 6474,
+ "start": 3966.24,
+ "end": 3966.86,
+ "text": "we"
+ },
+ {
+ "id": 6475,
+ "start": 3966.86,
+ "end": 3967.28,
+ "text": "build"
+ },
+ {
+ "id": 6476,
+ "start": 3967.28,
+ "end": 3967.8,
+ "text": "technical"
+ },
+ {
+ "id": 6477,
+ "start": 3967.8,
+ "end": 3968.2,
+ "text": "tools"
+ },
+ {
+ "id": 6478,
+ "start": 3968.2,
+ "end": 3968.68,
+ "text": "to"
+ },
+ {
+ "id": 6479,
+ "start": 3968.68,
+ "end": 3968.86,
+ "text": "try"
+ },
+ {
+ "id": 6480,
+ "start": 3968.86,
+ "end": 3969,
+ "text": "to"
+ },
+ {
+ "id": 6481,
+ "start": 3969,
+ "end": 3969.56,
+ "text": "identify"
+ },
+ {
+ "id": 6482,
+ "start": 3969.56,
+ "end": 3969.84,
+ "text": "when"
+ },
+ {
+ "id": 6483,
+ "start": 3969.84,
+ "end": 3970.1,
+ "text": "people"
+ },
+ {
+ "id": 6484,
+ "start": 3970.1,
+ "end": 3970.24,
+ "text": "are"
+ },
+ {
+ "id": 6485,
+ "start": 3970.24,
+ "end": 3970.62,
+ "text": "creating"
+ },
+ {
+ "id": 6486,
+ "start": 3970.62,
+ "end": 3970.84,
+ "text": "fake"
+ },
+ {
+ "id": 6487,
+ "start": 3970.84,
+ "end": 3971.22,
+ "text": "accounts."
+ },
+ {
+ "id": 6488,
+ "start": 3971.22,
+ "end": 3971.84,
+ "text": "Especially"
+ },
+ {
+ "id": 6489,
+ "start": 3971.84,
+ "end": 3972.18,
+ "text": "large"
+ },
+ {
+ "id": 6490,
+ "start": 3972.18,
+ "end": 3972.54,
+ "text": "networks"
+ },
+ {
+ "id": 6491,
+ "start": 3972.54,
+ "end": 3972.68,
+ "text": "of"
+ },
+ {
+ "id": 6492,
+ "start": 3972.68,
+ "end": 3972.9,
+ "text": "fake"
+ },
+ {
+ "id": 6493,
+ "start": 3972.9,
+ "end": 3973.22,
+ "text": "accounts"
+ },
+ {
+ "id": 6494,
+ "start": 3973.22,
+ "end": 3973.4,
+ "text": "like"
+ },
+ {
+ "id": 6495,
+ "start": 3973.4,
+ "end": 3973.5,
+ "text": "the"
+ },
+ {
+ "id": 6496,
+ "start": 3973.5,
+ "end": 3973.86,
+ "text": "Russians"
+ },
+ {
+ "id": 6497,
+ "start": 3973.86,
+ "end": 3974.12,
+ "text": "have"
+ },
+ {
+ "id": 6498,
+ "start": 3974.12,
+ "end": 3974.78,
+ "text": "in"
+ },
+ {
+ "id": 6499,
+ "start": 3974.78,
+ "end": 3975.08,
+ "text": "order"
+ },
+ {
+ "id": 6500,
+ "start": 3975.08,
+ "end": 3975.26,
+ "text": "to"
+ },
+ {
+ "id": 6501,
+ "start": 3975.26,
+ "end": 3975.74,
+ "text": "remove"
+ },
+ {
+ "id": 6502,
+ "start": 3975.74,
+ "end": 3976.1,
+ "text": "all"
+ },
+ {
+ "id": 6503,
+ "start": 3976.1,
+ "end": 3976.18,
+ "text": "of"
+ },
+ {
+ "id": 6504,
+ "start": 3976.18,
+ "end": 3976.36,
+ "text": "that"
+ },
+ {
+ "id": 6505,
+ "start": 3976.36,
+ "end": 3977.43,
+ "text": "content"
+ },
+ {
+ "id": 6506,
+ "start": 3977.43,
+ "end": 3977.63,
+ "text": "after"
+ },
+ {
+ "id": 6507,
+ "start": 3977.63,
+ "end": 3977.79,
+ "text": "the"
+ },
+ {
+ "id": 6508,
+ "start": 3977.79,
+ "end": 3978.07,
+ "text": "20"
+ },
+ {
+ "id": 6509,
+ "start": 3978.07,
+ "end": 3978.37,
+ "text": "16"
+ },
+ {
+ "id": 6510,
+ "start": 3978.37,
+ "end": 3978.73,
+ "text": "election."
+ },
+ {
+ "id": 6511,
+ "start": 3978.73,
+ "end": 3979.31,
+ "text": "Our"
+ },
+ {
+ "id": 6512,
+ "start": 3979.31,
+ "end": 3979.57,
+ "text": "top"
+ },
+ {
+ "id": 6513,
+ "start": 3979.57,
+ "end": 3979.97,
+ "text": "priority"
+ },
+ {
+ "id": 6514,
+ "start": 3979.97,
+ "end": 3980.19,
+ "text": "was"
+ },
+ {
+ "id": 6515,
+ "start": 3980.19,
+ "end": 3980.73,
+ "text": "protecting"
+ },
+ {
+ "id": 6516,
+ "start": 3980.73,
+ "end": 3980.85,
+ "text": "the"
+ },
+ {
+ "id": 6517,
+ "start": 3980.85,
+ "end": 3981.35,
+ "text": "integrity"
+ },
+ {
+ "id": 6518,
+ "start": 3981.35,
+ "end": 3981.89,
+ "text": "of"
+ },
+ {
+ "id": 6519,
+ "start": 3981.89,
+ "end": 3982.15,
+ "text": "other"
+ },
+ {
+ "id": 6520,
+ "start": 3982.15,
+ "end": 3982.67,
+ "text": "elections"
+ },
+ {
+ "id": 6521,
+ "start": 3982.67,
+ "end": 3983.17,
+ "text": "around"
+ },
+ {
+ "id": 6522,
+ "start": 3983.17,
+ "end": 3983.27,
+ "text": "the"
+ },
+ {
+ "id": 6523,
+ "start": 3983.27,
+ "end": 3983.55,
+ "text": "world."
+ },
+ {
+ "id": 6524,
+ "start": 3983.55,
+ "end": 3983.99,
+ "text": "But"
+ },
+ {
+ "id": 6525,
+ "start": 3983.99,
+ "end": 3984.09,
+ "text": "at"
+ },
+ {
+ "id": 6526,
+ "start": 3984.09,
+ "end": 3984.21,
+ "text": "the"
+ },
+ {
+ "id": 6527,
+ "start": 3984.21,
+ "end": 3984.43,
+ "text": "same"
+ },
+ {
+ "id": 6528,
+ "start": 3984.43,
+ "end": 3984.77,
+ "text": "time"
+ },
+ {
+ "id": 6529,
+ "start": 3984.77,
+ "end": 3985.01,
+ "text": "we"
+ },
+ {
+ "id": 6530,
+ "start": 3985.01,
+ "end": 3985.15,
+ "text": "had"
+ },
+ {
+ "id": 6531,
+ "start": 3985.15,
+ "end": 3985.21,
+ "text": "a"
+ },
+ {
+ "id": 6532,
+ "start": 3985.21,
+ "end": 3985.61,
+ "text": "parallel"
+ },
+ {
+ "id": 6533,
+ "start": 3985.61,
+ "end": 3985.87,
+ "text": "effort"
+ },
+ {
+ "id": 6534,
+ "start": 3985.87,
+ "end": 3986.33,
+ "text": "to"
+ },
+ {
+ "id": 6535,
+ "start": 3986.33,
+ "end": 3986.67,
+ "text": "trace"
+ },
+ {
+ "id": 6536,
+ "start": 3986.67,
+ "end": 3986.99,
+ "text": "back"
+ },
+ {
+ "id": 6537,
+ "start": 3986.99,
+ "end": 3987.33,
+ "text": "to"
+ },
+ {
+ "id": 6538,
+ "start": 3987.33,
+ "end": 3987.87,
+ "text": "Russia."
+ },
+ {
+ "id": 6539,
+ "start": 3987.87,
+ "end": 3988.75,
+ "text": "The"
+ },
+ {
+ "id": 6540,
+ "start": 3988.75,
+ "end": 3989.31,
+ "text": "IRA"
+ },
+ {
+ "id": 6541,
+ "start": 3989.31,
+ "end": 3989.81,
+ "text": "activity,"
+ },
+ {
+ "id": 6542,
+ "start": 3989.81,
+ "end": 3989.97,
+ "text": "the"
+ },
+ {
+ "id": 6543,
+ "start": 3989.97,
+ "end": 3990.29,
+ "text": "Internet"
+ },
+ {
+ "id": 6544,
+ "start": 3990.29,
+ "end": 3990.65,
+ "text": "Research"
+ },
+ {
+ "id": 6545,
+ "start": 3990.65,
+ "end": 3991.01,
+ "text": "Agency"
+ },
+ {
+ "id": 6546,
+ "start": 3991.01,
+ "end": 3991.41,
+ "text": "activity."
+ },
+ {
+ "id": 6547,
+ "start": 3991.41,
+ "end": 3991.55,
+ "text": "That"
+ },
+ {
+ "id": 6548,
+ "start": 3991.55,
+ "end": 3991.65,
+ "text": "is"
+ },
+ {
+ "id": 6549,
+ "start": 3991.65,
+ "end": 3992.09,
+ "text": "the"
+ },
+ {
+ "id": 6550,
+ "start": 3992.09,
+ "end": 3992.27,
+ "text": "part"
+ },
+ {
+ "id": 6551,
+ "start": 3992.27,
+ "end": 3992.35,
+ "text": "of"
+ },
+ {
+ "id": 6552,
+ "start": 3992.35,
+ "end": 3992.45,
+ "text": "the"
+ },
+ {
+ "id": 6553,
+ "start": 3992.45,
+ "end": 3992.73,
+ "text": "Russian"
+ },
+ {
+ "id": 6554,
+ "start": 3992.73,
+ "end": 3993.15,
+ "text": "government"
+ },
+ {
+ "id": 6555,
+ "start": 3993.15,
+ "end": 3993.82,
+ "text": "that"
+ },
+ {
+ "id": 6556,
+ "start": 3993.82,
+ "end": 3994.66,
+ "text": "that"
+ },
+ {
+ "id": 6557,
+ "start": 3994.66,
+ "end": 3995.3,
+ "text": "did"
+ },
+ {
+ "id": 6558,
+ "start": 3995.3,
+ "end": 3995.46,
+ "text": "this"
+ },
+ {
+ "id": 6559,
+ "start": 3995.46,
+ "end": 3995.94,
+ "text": "activity"
+ },
+ {
+ "id": 6560,
+ "start": 3995.94,
+ "end": 3996.2,
+ "text": "in"
+ },
+ {
+ "id": 6561,
+ "start": 3996.2,
+ "end": 3996.78,
+ "text": "20"
+ },
+ {
+ "id": 6562,
+ "start": 3996.78,
+ "end": 3997.26,
+ "text": "16"
+ },
+ {
+ "id": 6563,
+ "start": 3997.26,
+ "end": 3997.8,
+ "text": "and"
+ },
+ {
+ "id": 6564,
+ "start": 3997.8,
+ "end": 3997.96,
+ "text": "just"
+ },
+ {
+ "id": 6565,
+ "start": 3997.96,
+ "end": 3998.24,
+ "text": "last"
+ },
+ {
+ "id": 6566,
+ "start": 3998.24,
+ "end": 3998.52,
+ "text": "week"
+ },
+ {
+ "id": 6567,
+ "start": 3998.52,
+ "end": 3999.36,
+ "text": "we"
+ },
+ {
+ "id": 6568,
+ "start": 3999.36,
+ "end": 3999.56,
+ "text": "were"
+ },
+ {
+ "id": 6569,
+ "start": 3999.56,
+ "end": 3999.76,
+ "text": "able"
+ },
+ {
+ "id": 6570,
+ "start": 3999.76,
+ "end": 3999.96,
+ "text": "to"
+ },
+ {
+ "id": 6571,
+ "start": 3999.96,
+ "end": 4000.98,
+ "text": "determine"
+ },
+ {
+ "id": 6572,
+ "start": 4000.98,
+ "end": 4001.58,
+ "text": "that"
+ },
+ {
+ "id": 6573,
+ "start": 4001.58,
+ "end": 4002.14,
+ "text": "a"
+ },
+ {
+ "id": 6574,
+ "start": 4002.14,
+ "end": 4002.54,
+ "text": "number"
+ },
+ {
+ "id": 6575,
+ "start": 4002.54,
+ "end": 4002.64,
+ "text": "of"
+ },
+ {
+ "id": 6576,
+ "start": 4002.64,
+ "end": 4003.06,
+ "text": "Russian"
+ },
+ {
+ "id": 6577,
+ "start": 4003.06,
+ "end": 4003.46,
+ "text": "media"
+ },
+ {
+ "id": 6578,
+ "start": 4003.46,
+ "end": 4004.2,
+ "text": "organizations"
+ },
+ {
+ "id": 6579,
+ "start": 4004.2,
+ "end": 4004.36,
+ "text": "that"
+ },
+ {
+ "id": 6580,
+ "start": 4004.36,
+ "end": 4004.5,
+ "text": "were"
+ },
+ {
+ "id": 6581,
+ "start": 4004.5,
+ "end": 4004.9,
+ "text": "sanctioned"
+ },
+ {
+ "id": 6582,
+ "start": 4004.9,
+ "end": 4005.04,
+ "text": "by"
+ },
+ {
+ "id": 6583,
+ "start": 4005.04,
+ "end": 4005.16,
+ "text": "the"
+ },
+ {
+ "id": 6584,
+ "start": 4005.16,
+ "end": 4005.42,
+ "text": "Russian"
+ },
+ {
+ "id": 6585,
+ "start": 4005.42,
+ "end": 4005.92,
+ "text": "regulator"
+ },
+ {
+ "id": 6586,
+ "start": 4005.92,
+ "end": 4006.62,
+ "text": "were"
+ },
+ {
+ "id": 6587,
+ "start": 4006.62,
+ "end": 4007.34,
+ "text": "operated"
+ },
+ {
+ "id": 6588,
+ "start": 4007.34,
+ "end": 4007.54,
+ "text": "and"
+ },
+ {
+ "id": 6589,
+ "start": 4007.54,
+ "end": 4008.2,
+ "text": "controlled"
+ },
+ {
+ "id": 6590,
+ "start": 4008.2,
+ "end": 4008.76,
+ "text": "by"
+ },
+ {
+ "id": 6591,
+ "start": 4008.76,
+ "end": 4009.28,
+ "text": "this"
+ },
+ {
+ "id": 6592,
+ "start": 4009.28,
+ "end": 4009.7,
+ "text": "Internet"
+ },
+ {
+ "id": 6593,
+ "start": 4009.7,
+ "end": 4010.1,
+ "text": "Research"
+ },
+ {
+ "id": 6594,
+ "start": 4010.1,
+ "end": 4010.5,
+ "text": "agency."
+ },
+ {
+ "id": 6595,
+ "start": 4010.5,
+ "end": 4010.76,
+ "text": "So"
+ },
+ {
+ "id": 6596,
+ "start": 4010.76,
+ "end": 4011.12,
+ "text": "we"
+ },
+ {
+ "id": 6597,
+ "start": 4011.12,
+ "end": 4011.3,
+ "text": "took"
+ },
+ {
+ "id": 6598,
+ "start": 4011.3,
+ "end": 4011.42,
+ "text": "the"
+ },
+ {
+ "id": 6599,
+ "start": 4011.42,
+ "end": 4011.7,
+ "text": "step"
+ },
+ {
+ "id": 6600,
+ "start": 4011.7,
+ "end": 4011.92,
+ "text": "last"
+ },
+ {
+ "id": 6601,
+ "start": 4011.92,
+ "end": 4012.1,
+ "text": "week."
+ },
+ {
+ "id": 6602,
+ "start": 4012.1,
+ "end": 4012.43,
+ "text": "The"
+ },
+ {
+ "id": 6603,
+ "start": 4012.43,
+ "end": 4012.71,
+ "text": "pretty"
+ },
+ {
+ "id": 6604,
+ "start": 4012.71,
+ "end": 4013.01,
+ "text": "big"
+ },
+ {
+ "id": 6605,
+ "start": 4013.01,
+ "end": 4013.21,
+ "text": "step"
+ },
+ {
+ "id": 6606,
+ "start": 4013.21,
+ "end": 4013.37,
+ "text": "for"
+ },
+ {
+ "id": 6607,
+ "start": 4013.37,
+ "end": 4013.45,
+ "text": "us"
+ },
+ {
+ "id": 6608,
+ "start": 4013.45,
+ "end": 4013.63,
+ "text": "of"
+ },
+ {
+ "id": 6609,
+ "start": 4013.63,
+ "end": 4013.99,
+ "text": "taking"
+ },
+ {
+ "id": 6610,
+ "start": 4013.99,
+ "end": 4014.33,
+ "text": "down"
+ },
+ {
+ "id": 6611,
+ "start": 4014.33,
+ "end": 4015.43,
+ "text": "sanctioned"
+ },
+ {
+ "id": 6612,
+ "start": 4015.43,
+ "end": 4015.73,
+ "text": "news"
+ },
+ {
+ "id": 6613,
+ "start": 4015.73,
+ "end": 4016.43,
+ "text": "organizations"
+ },
+ {
+ "id": 6614,
+ "start": 4016.43,
+ "end": 4016.61,
+ "text": "in"
+ },
+ {
+ "id": 6615,
+ "start": 4016.61,
+ "end": 4016.97,
+ "text": "Russia"
+ },
+ {
+ "id": 6616,
+ "start": 4016.97,
+ "end": 4017.45,
+ "text": "as"
+ },
+ {
+ "id": 6617,
+ "start": 4017.45,
+ "end": 4017.63,
+ "text": "part"
+ },
+ {
+ "id": 6618,
+ "start": 4017.63,
+ "end": 4017.71,
+ "text": "of"
+ },
+ {
+ "id": 6619,
+ "start": 4017.71,
+ "end": 4017.81,
+ "text": "an"
+ },
+ {
+ "id": 6620,
+ "start": 4017.81,
+ "end": 4018.29,
+ "text": "operation"
+ },
+ {
+ "id": 6621,
+ "start": 4018.29,
+ "end": 4018.41,
+ "text": "to"
+ },
+ {
+ "id": 6622,
+ "start": 4018.41,
+ "end": 4018.71,
+ "text": "remove"
+ },
+ {
+ "id": 6623,
+ "start": 4018.71,
+ "end": 4020.13,
+ "text": "270"
+ },
+ {
+ "id": 6624,
+ "start": 4020.13,
+ "end": 4020.87,
+ "text": "fake"
+ },
+ {
+ "id": 6625,
+ "start": 4020.87,
+ "end": 4021.19,
+ "text": "accounts"
+ },
+ {
+ "id": 6626,
+ "start": 4021.19,
+ "end": 4021.33,
+ "text": "and"
+ },
+ {
+ "id": 6627,
+ "start": 4021.33,
+ "end": 4021.69,
+ "text": "pages."
+ },
+ {
+ "id": 6628,
+ "start": 4021.69,
+ "end": 4021.87,
+ "text": "Part"
+ },
+ {
+ "id": 6629,
+ "start": 4021.87,
+ "end": 4021.93,
+ "text": "of"
+ },
+ {
+ "id": 6630,
+ "start": 4021.93,
+ "end": 4022.09,
+ "text": "their"
+ },
+ {
+ "id": 6631,
+ "start": 4022.09,
+ "end": 4022.45,
+ "text": "broader"
+ },
+ {
+ "id": 6632,
+ "start": 4022.45,
+ "end": 4022.77,
+ "text": "network"
+ },
+ {
+ "id": 6633,
+ "start": 4022.77,
+ "end": 4022.89,
+ "text": "in"
+ },
+ {
+ "id": 6634,
+ "start": 4022.89,
+ "end": 4023.88,
+ "text": "Russia."
+ },
+ {
+ "id": 6635,
+ "start": 4023.88,
+ "end": 4024.3,
+ "text": "That"
+ },
+ {
+ "id": 6636,
+ "start": 4024.3,
+ "end": 4024.8,
+ "text": "was"
+ },
+ {
+ "id": 6637,
+ "start": 4024.8,
+ "end": 4025.16,
+ "text": "actually"
+ },
+ {
+ "id": 6638,
+ "start": 4025.16,
+ "end": 4025.34,
+ "text": "not"
+ },
+ {
+ "id": 6639,
+ "start": 4025.34,
+ "end": 4025.72,
+ "text": "targeting"
+ },
+ {
+ "id": 6640,
+ "start": 4025.72,
+ "end": 4026.26,
+ "text": "international"
+ },
+ {
+ "id": 6641,
+ "start": 4026.26,
+ "end": 4026.8,
+ "text": "interference"
+ },
+ {
+ "id": 6642,
+ "start": 4026.8,
+ "end": 4026.94,
+ "text": "as"
+ },
+ {
+ "id": 6643,
+ "start": 4026.94,
+ "end": 4027.16,
+ "text": "much"
+ },
+ {
+ "id": 6644,
+ "start": 4027.16,
+ "end": 4027.32,
+ "text": "as"
+ },
+ {
+ "id": 6645,
+ "start": 4027.32,
+ "end": 4028.08,
+ "text": "sorry."
+ },
+ {
+ "id": 6646,
+ "start": 4028.08,
+ "end": 4028.38,
+ "text": "Let"
+ },
+ {
+ "id": 6647,
+ "start": 4028.38,
+ "end": 4028.46,
+ "text": "me"
+ },
+ {
+ "id": 6648,
+ "start": 4028.46,
+ "end": 4028.68,
+ "text": "correct"
+ },
+ {
+ "id": 6649,
+ "start": 4028.68,
+ "end": 4028.84,
+ "text": "that"
+ },
+ {
+ "id": 6650,
+ "start": 4028.84,
+ "end": 4029.26,
+ "text": "this"
+ },
+ {
+ "id": 6651,
+ "start": 4029.26,
+ "end": 4029.34,
+ "text": "is"
+ },
+ {
+ "id": 6652,
+ "start": 4029.34,
+ "end": 4029.92,
+ "text": "primarily"
+ },
+ {
+ "id": 6653,
+ "start": 4029.92,
+ "end": 4031.2,
+ "text": "targeting"
+ },
+ {
+ "id": 6654,
+ "start": 4031.2,
+ "end": 4031.46,
+ "text": "spreading"
+ },
+ {
+ "id": 6655,
+ "start": 4031.46,
+ "end": 4032.02,
+ "text": "misinformation"
+ },
+ {
+ "id": 6656,
+ "start": 4032.02,
+ "end": 4032.24,
+ "text": "in"
+ },
+ {
+ "id": 6657,
+ "start": 4032.24,
+ "end": 4032.56,
+ "text": "Russia"
+ },
+ {
+ "id": 6658,
+ "start": 4032.56,
+ "end": 4033.02,
+ "text": "itself"
+ },
+ {
+ "id": 6659,
+ "start": 4033.02,
+ "end": 4033.26,
+ "text": "as"
+ },
+ {
+ "id": 6660,
+ "start": 4033.26,
+ "end": 4033.46,
+ "text": "well"
+ },
+ {
+ "id": 6661,
+ "start": 4033.46,
+ "end": 4033.6,
+ "text": "as"
+ },
+ {
+ "id": 6662,
+ "start": 4033.6,
+ "end": 4033.94,
+ "text": "certain"
+ },
+ {
+ "id": 6663,
+ "start": 4033.94,
+ "end": 4034.4,
+ "text": "Russian"
+ },
+ {
+ "id": 6664,
+ "start": 4034.4,
+ "end": 4035.12,
+ "text": "speaking"
+ },
+ {
+ "id": 6665,
+ "start": 4035.12,
+ "end": 4035.54,
+ "text": "neighboring"
+ },
+ {
+ "id": 6666,
+ "start": 4035.54,
+ "end": 4035.96,
+ "text": "countries."
+ },
+ {
+ "id": 6667,
+ "start": 4035.96,
+ "end": 4036.22,
+ "text": "How"
+ },
+ {
+ "id": 6668,
+ "start": 4036.22,
+ "end": 4036.6,
+ "text": "many"
+ },
+ {
+ "id": 6669,
+ "start": 4036.6,
+ "end": 4037.2,
+ "text": "accounts"
+ },
+ {
+ "id": 6670,
+ "start": 4037.2,
+ "end": 4037.58,
+ "text": "of"
+ },
+ {
+ "id": 6671,
+ "start": 4037.58,
+ "end": 4037.86,
+ "text": "this"
+ },
+ {
+ "id": 6672,
+ "start": 4037.86,
+ "end": 4038.24,
+ "text": "type,"
+ },
+ {
+ "id": 6673,
+ "start": 4038.24,
+ "end": 4038.58,
+ "text": "have"
+ },
+ {
+ "id": 6674,
+ "start": 4038.58,
+ "end": 4038.78,
+ "text": "you"
+ },
+ {
+ "id": 6675,
+ "start": 4038.78,
+ "end": 4039.18,
+ "text": "taken"
+ },
+ {
+ "id": 6676,
+ "start": 4039.18,
+ "end": 4040.84,
+ "text": "down"
+ },
+ {
+ "id": 6677,
+ "start": 4040.84,
+ "end": 4041.84,
+ "text": "across"
+ },
+ {
+ "id": 6678,
+ "start": 4041.84,
+ "end": 4042.2,
+ "text": "in"
+ },
+ {
+ "id": 6679,
+ "start": 4042.2,
+ "end": 4042.32,
+ "text": "the"
+ },
+ {
+ "id": 6680,
+ "start": 4042.32,
+ "end": 4042.76,
+ "text": "IRA?"
+ },
+ {
+ "id": 6681,
+ "start": 4042.76,
+ "end": 4043.48,
+ "text": "Specifically,"
+ },
+ {
+ "id": 6682,
+ "start": 4043.48,
+ "end": 4044.06,
+ "text": "the"
+ },
+ {
+ "id": 6683,
+ "start": 4044.06,
+ "end": 4044.24,
+ "text": "ones"
+ },
+ {
+ "id": 6684,
+ "start": 4044.24,
+ "end": 4044.36,
+ "text": "that"
+ },
+ {
+ "id": 6685,
+ "start": 4044.36,
+ "end": 4044.56,
+ "text": "we've"
+ },
+ {
+ "id": 6686,
+ "start": 4044.56,
+ "end": 4044.86,
+ "text": "pegged"
+ },
+ {
+ "id": 6687,
+ "start": 4044.86,
+ "end": 4045.06,
+ "text": "back"
+ },
+ {
+ "id": 6688,
+ "start": 4045.06,
+ "end": 4045.14,
+ "text": "to"
+ },
+ {
+ "id": 6689,
+ "start": 4045.14,
+ "end": 4045.26,
+ "text": "the"
+ },
+ {
+ "id": 6690,
+ "start": 4045.26,
+ "end": 4046.44,
+ "text": "IRA,"
+ },
+ {
+ "id": 6691,
+ "start": 4046.44,
+ "end": 4047.3,
+ "text": "we"
+ },
+ {
+ "id": 6692,
+ "start": 4047.3,
+ "end": 4047.44,
+ "text": "can"
+ },
+ {
+ "id": 6693,
+ "start": 4047.44,
+ "end": 4047.86,
+ "text": "identify"
+ },
+ {
+ "id": 6694,
+ "start": 4047.86,
+ "end": 4048.04,
+ "text": "the"
+ },
+ {
+ "id": 6695,
+ "start": 4048.04,
+ "end": 4048.88,
+ "text": "470"
+ },
+ {
+ "id": 6696,
+ "start": 4048.88,
+ "end": 4049.26,
+ "text": "in"
+ },
+ {
+ "id": 6697,
+ "start": 4049.26,
+ "end": 4049.36,
+ "text": "the"
+ },
+ {
+ "id": 6698,
+ "start": 4049.36,
+ "end": 4049.66,
+ "text": "American"
+ },
+ {
+ "id": 6699,
+ "start": 4049.66,
+ "end": 4050.1,
+ "text": "elections"
+ },
+ {
+ "id": 6700,
+ "start": 4050.1,
+ "end": 4050.62,
+ "text": "and"
+ },
+ {
+ "id": 6701,
+ "start": 4050.62,
+ "end": 4050.74,
+ "text": "the"
+ },
+ {
+ "id": 6702,
+ "start": 4050.74,
+ "end": 4051.58,
+ "text": "270"
+ },
+ {
+ "id": 6703,
+ "start": 4051.58,
+ "end": 4051.78,
+ "text": "that"
+ },
+ {
+ "id": 6704,
+ "start": 4051.78,
+ "end": 4051.86,
+ "text": "we"
+ },
+ {
+ "id": 6705,
+ "start": 4051.86,
+ "end": 4052.44,
+ "text": "specifically"
+ },
+ {
+ "id": 6706,
+ "start": 4052.44,
+ "end": 4052.6,
+ "text": "went"
+ },
+ {
+ "id": 6707,
+ "start": 4052.6,
+ "end": 4052.88,
+ "text": "after"
+ },
+ {
+ "id": 6708,
+ "start": 4052.88,
+ "end": 4053.06,
+ "text": "in"
+ },
+ {
+ "id": 6709,
+ "start": 4053.06,
+ "end": 4053.34,
+ "text": "Russia"
+ },
+ {
+ "id": 6710,
+ "start": 4053.34,
+ "end": 4053.6,
+ "text": "last"
+ },
+ {
+ "id": 6711,
+ "start": 4053.6,
+ "end": 4053.84,
+ "text": "week."
+ },
+ {
+ "id": 6712,
+ "start": 4053.84,
+ "end": 4054.68,
+ "text": "There"
+ },
+ {
+ "id": 6713,
+ "start": 4054.68,
+ "end": 4054.82,
+ "text": "are"
+ },
+ {
+ "id": 6714,
+ "start": 4054.82,
+ "end": 4055.02,
+ "text": "many"
+ },
+ {
+ "id": 6715,
+ "start": 4055.02,
+ "end": 4055.34,
+ "text": "others"
+ },
+ {
+ "id": 6716,
+ "start": 4055.34,
+ "end": 4055.48,
+ "text": "that"
+ },
+ {
+ "id": 6717,
+ "start": 4055.48,
+ "end": 4055.62,
+ "text": "our"
+ },
+ {
+ "id": 6718,
+ "start": 4055.62,
+ "end": 4056.04,
+ "text": "systems"
+ },
+ {
+ "id": 6719,
+ "start": 4056.04,
+ "end": 4056.4,
+ "text": "catch"
+ },
+ {
+ "id": 6720,
+ "start": 4056.4,
+ "end": 4057.08,
+ "text": "which"
+ },
+ {
+ "id": 6721,
+ "start": 4057.08,
+ "end": 4057.84,
+ "text": "are"
+ },
+ {
+ "id": 6722,
+ "start": 4057.84,
+ "end": 4058.84,
+ "text": "more"
+ },
+ {
+ "id": 6723,
+ "start": 4058.84,
+ "end": 4059.18,
+ "text": "difficult"
+ },
+ {
+ "id": 6724,
+ "start": 4059.18,
+ "end": 4059.3,
+ "text": "to"
+ },
+ {
+ "id": 6725,
+ "start": 4059.3,
+ "end": 4060,
+ "text": "attribute"
+ },
+ {
+ "id": 6726,
+ "start": 4060,
+ "end": 4060.54,
+ "text": "specifically"
+ },
+ {
+ "id": 6727,
+ "start": 4060.54,
+ "end": 4060.76,
+ "text": "to"
+ },
+ {
+ "id": 6728,
+ "start": 4060.76,
+ "end": 4061.2,
+ "text": "Russian"
+ },
+ {
+ "id": 6729,
+ "start": 4061.2,
+ "end": 4061.82,
+ "text": "intelligence,"
+ },
+ {
+ "id": 6730,
+ "start": 4061.82,
+ "end": 4062.66,
+ "text": "but"
+ },
+ {
+ "id": 6731,
+ "start": 4062.66,
+ "end": 4062.92,
+ "text": "the"
+ },
+ {
+ "id": 6732,
+ "start": 4062.92,
+ "end": 4063.2,
+ "text": "number"
+ },
+ {
+ "id": 6733,
+ "start": 4063.2,
+ "end": 4063.46,
+ "text": "would"
+ },
+ {
+ "id": 6734,
+ "start": 4063.46,
+ "end": 4063.58,
+ "text": "be"
+ },
+ {
+ "id": 6735,
+ "start": 4063.58,
+ "end": 4063.78,
+ "text": "in"
+ },
+ {
+ "id": 6736,
+ "start": 4063.78,
+ "end": 4063.92,
+ "text": "the"
+ },
+ {
+ "id": 6737,
+ "start": 4063.92,
+ "end": 4064.2,
+ "text": "tens"
+ },
+ {
+ "id": 6738,
+ "start": 4064.2,
+ "end": 4064.3,
+ "text": "of"
+ },
+ {
+ "id": 6739,
+ "start": 4064.3,
+ "end": 4064.72,
+ "text": "thousands"
+ },
+ {
+ "id": 6740,
+ "start": 4064.72,
+ "end": 4064.86,
+ "text": "of"
+ },
+ {
+ "id": 6741,
+ "start": 4064.86,
+ "end": 4065.06,
+ "text": "fake"
+ },
+ {
+ "id": 6742,
+ "start": 4065.06,
+ "end": 4065.4,
+ "text": "accounts"
+ },
+ {
+ "id": 6743,
+ "start": 4065.4,
+ "end": 4065.58,
+ "text": "that"
+ },
+ {
+ "id": 6744,
+ "start": 4065.58,
+ "end": 4065.68,
+ "text": "we"
+ },
+ {
+ "id": 6745,
+ "start": 4065.68,
+ "end": 4066.1,
+ "text": "remove"
+ },
+ {
+ "id": 6746,
+ "start": 4066.1,
+ "end": 4066.9,
+ "text": "and"
+ },
+ {
+ "id": 6747,
+ "start": 4066.9,
+ "end": 4067.18,
+ "text": "I'm."
+ },
+ {
+ "id": 6748,
+ "start": 4067.18,
+ "end": 4067.46,
+ "text": "Happy"
+ },
+ {
+ "id": 6749,
+ "start": 4067.46,
+ "end": 4067.58,
+ "text": "to"
+ },
+ {
+ "id": 6750,
+ "start": 4067.58,
+ "end": 4067.74,
+ "text": "have"
+ },
+ {
+ "id": 6751,
+ "start": 4067.74,
+ "end": 4067.84,
+ "text": "my"
+ },
+ {
+ "id": 6752,
+ "start": 4067.84,
+ "end": 4068.02,
+ "text": "team"
+ },
+ {
+ "id": 6753,
+ "start": 4068.02,
+ "end": 4068.32,
+ "text": "follow"
+ },
+ {
+ "id": 6754,
+ "start": 4068.32,
+ "end": 4068.42,
+ "text": "up"
+ },
+ {
+ "id": 6755,
+ "start": 4068.42,
+ "end": 4068.56,
+ "text": "with"
+ },
+ {
+ "id": 6756,
+ "start": 4068.56,
+ "end": 4068.66,
+ "text": "you"
+ },
+ {
+ "id": 6757,
+ "start": 4068.66,
+ "end": 4068.78,
+ "text": "on"
+ },
+ {
+ "id": 6758,
+ "start": 4068.78,
+ "end": 4068.92,
+ "text": "more"
+ },
+ {
+ "id": 6759,
+ "start": 4068.92,
+ "end": 4069.36,
+ "text": "information"
+ },
+ {
+ "id": 6760,
+ "start": 4069.36,
+ "end": 4069.46,
+ "text": "if"
+ },
+ {
+ "id": 6761,
+ "start": 4069.46,
+ "end": 4069.6,
+ "text": "that"
+ },
+ {
+ "id": 6762,
+ "start": 4069.6,
+ "end": 4069.74,
+ "text": "would"
+ },
+ {
+ "id": 6763,
+ "start": 4069.74,
+ "end": 4069.84,
+ "text": "be"
+ },
+ {
+ "id": 6764,
+ "start": 4069.84,
+ "end": 4070.08,
+ "text": "helpful,"
+ },
+ {
+ "id": 6765,
+ "start": 4070.08,
+ "end": 4070.36,
+ "text": "would"
+ },
+ {
+ "id": 6766,
+ "start": 4070.36,
+ "end": 4070.5,
+ "text": "you"
+ },
+ {
+ "id": 6767,
+ "start": 4070.5,
+ "end": 4070.9,
+ "text": "please?"
+ },
+ {
+ "id": 6768,
+ "start": 4070.9,
+ "end": 4071.42,
+ "text": "I"
+ },
+ {
+ "id": 6769,
+ "start": 4071.42,
+ "end": 4071.64,
+ "text": "think"
+ },
+ {
+ "id": 6770,
+ "start": 4071.64,
+ "end": 4071.88,
+ "text": "this"
+ },
+ {
+ "id": 6771,
+ "start": 4071.88,
+ "end": 4072.06,
+ "text": "is"
+ },
+ {
+ "id": 6772,
+ "start": 4072.06,
+ "end": 4072.44,
+ "text": "very"
+ },
+ {
+ "id": 6773,
+ "start": 4072.44,
+ "end": 4073.56,
+ "text": "important."
+ },
+ {
+ "id": 6774,
+ "start": 4073.56,
+ "end": 4074.22,
+ "text": "If"
+ },
+ {
+ "id": 6775,
+ "start": 4074.22,
+ "end": 4074.38,
+ "text": "you"
+ },
+ {
+ "id": 6776,
+ "start": 4074.38,
+ "end": 4074.66,
+ "text": "knew"
+ },
+ {
+ "id": 6777,
+ "start": 4074.66,
+ "end": 4074.84,
+ "text": "in"
+ },
+ {
+ "id": 6778,
+ "start": 4074.84,
+ "end": 4076.34,
+ "text": "2,015"
+ },
+ {
+ "id": 6779,
+ "start": 4076.34,
+ "end": 4076.7,
+ "text": "that"
+ },
+ {
+ "id": 6780,
+ "start": 4076.7,
+ "end": 4077.28,
+ "text": "Cambridge"
+ },
+ {
+ "id": 6781,
+ "start": 4077.28,
+ "end": 4078.04,
+ "text": "analytic"
+ },
+ {
+ "id": 6782,
+ "start": 4078.04,
+ "end": 4078.92,
+ "text": "was"
+ },
+ {
+ "id": 6783,
+ "start": 4078.92,
+ "end": 4079.42,
+ "text": "using"
+ },
+ {
+ "id": 6784,
+ "start": 4079.42,
+ "end": 4079.6,
+ "text": "the"
+ },
+ {
+ "id": 6785,
+ "start": 4079.6,
+ "end": 4080.54,
+ "text": "information"
+ },
+ {
+ "id": 6786,
+ "start": 4080.54,
+ "end": 4080.74,
+ "text": "of"
+ },
+ {
+ "id": 6787,
+ "start": 4080.74,
+ "end": 4081.38,
+ "text": "Professor"
+ },
+ {
+ "id": 6788,
+ "start": 4081.38,
+ "end": 4081.96,
+ "text": "Cogens"
+ },
+ {
+ "id": 6789,
+ "start": 4081.96,
+ "end": 4082.82,
+ "text": "why"
+ },
+ {
+ "id": 6790,
+ "start": 4082.82,
+ "end": 4083.18,
+ "text": "didn't"
+ },
+ {
+ "id": 6791,
+ "start": 4083.18,
+ "end": 4084,
+ "text": "Facebook"
+ },
+ {
+ "id": 6792,
+ "start": 4084,
+ "end": 4084.82,
+ "text": "band"
+ },
+ {
+ "id": 6793,
+ "start": 4084.82,
+ "end": 4085.46,
+ "text": "Cambridge"
+ },
+ {
+ "id": 6794,
+ "start": 4085.46,
+ "end": 4085.78,
+ "text": "in"
+ },
+ {
+ "id": 6795,
+ "start": 4085.78,
+ "end": 4087.22,
+ "text": "2,015"
+ },
+ {
+ "id": 6796,
+ "start": 4087.22,
+ "end": 4088.12,
+ "text": "why'd"
+ },
+ {
+ "id": 6797,
+ "start": 4088.12,
+ "end": 4088.28,
+ "text": "you"
+ },
+ {
+ "id": 6798,
+ "start": 4088.28,
+ "end": 4088.64,
+ "text": "wait."
+ },
+ {
+ "id": 6799,
+ "start": 4088.64,
+ "end": 4089.6,
+ "text": "So"
+ },
+ {
+ "id": 6800,
+ "start": 4089.6,
+ "end": 4089.8,
+ "text": "that's"
+ },
+ {
+ "id": 6801,
+ "start": 4089.8,
+ "end": 4090.22,
+ "text": "a"
+ },
+ {
+ "id": 6802,
+ "start": 4090.22,
+ "end": 4090.5,
+ "text": "great"
+ },
+ {
+ "id": 6803,
+ "start": 4090.5,
+ "end": 4092.08,
+ "text": "question."
+ },
+ {
+ "id": 6804,
+ "start": 4092.08,
+ "end": 4093.04,
+ "text": "Cambridge"
+ },
+ {
+ "id": 6805,
+ "start": 4093.04,
+ "end": 4093.42,
+ "text": "Analytica"
+ },
+ {
+ "id": 6806,
+ "start": 4093.42,
+ "end": 4093.7,
+ "text": "wasn't"
+ },
+ {
+ "id": 6807,
+ "start": 4093.7,
+ "end": 4094,
+ "text": "using"
+ },
+ {
+ "id": 6808,
+ "start": 4094,
+ "end": 4094.16,
+ "text": "our"
+ },
+ {
+ "id": 6809,
+ "start": 4094.16,
+ "end": 4094.64,
+ "text": "services"
+ },
+ {
+ "id": 6810,
+ "start": 4094.64,
+ "end": 4094.78,
+ "text": "in"
+ },
+ {
+ "id": 6811,
+ "start": 4094.78,
+ "end": 4095.18,
+ "text": "20"
+ },
+ {
+ "id": 6812,
+ "start": 4095.18,
+ "end": 4095.58,
+ "text": "15"
+ },
+ {
+ "id": 6813,
+ "start": 4095.58,
+ "end": 4095.7,
+ "text": "as"
+ },
+ {
+ "id": 6814,
+ "start": 4095.7,
+ "end": 4095.86,
+ "text": "far"
+ },
+ {
+ "id": 6815,
+ "start": 4095.86,
+ "end": 4095.98,
+ "text": "as"
+ },
+ {
+ "id": 6816,
+ "start": 4095.98,
+ "end": 4096.12,
+ "text": "we"
+ },
+ {
+ "id": 6817,
+ "start": 4096.12,
+ "end": 4096.28,
+ "text": "can"
+ },
+ {
+ "id": 6818,
+ "start": 4096.28,
+ "end": 4096.52,
+ "text": "tell."
+ },
+ {
+ "id": 6819,
+ "start": 4096.52,
+ "end": 4097.3,
+ "text": "So"
+ },
+ {
+ "id": 6820,
+ "start": 4097.3,
+ "end": 4097.94,
+ "text": "this"
+ },
+ {
+ "id": 6821,
+ "start": 4097.94,
+ "end": 4098.06,
+ "text": "is"
+ },
+ {
+ "id": 6822,
+ "start": 4098.06,
+ "end": 4098.86,
+ "text": "clearly"
+ },
+ {
+ "id": 6823,
+ "start": 4098.86,
+ "end": 4098.98,
+ "text": "one"
+ },
+ {
+ "id": 6824,
+ "start": 4098.98,
+ "end": 4099.06,
+ "text": "of"
+ },
+ {
+ "id": 6825,
+ "start": 4099.06,
+ "end": 4099.14,
+ "text": "the"
+ },
+ {
+ "id": 6826,
+ "start": 4099.14,
+ "end": 4099.42,
+ "text": "questions"
+ },
+ {
+ "id": 6827,
+ "start": 4099.42,
+ "end": 4099.56,
+ "text": "that"
+ },
+ {
+ "id": 6828,
+ "start": 4099.56,
+ "end": 4099.62,
+ "text": "I"
+ },
+ {
+ "id": 6829,
+ "start": 4099.62,
+ "end": 4099.82,
+ "text": "asked"
+ },
+ {
+ "id": 6830,
+ "start": 4099.82,
+ "end": 4099.96,
+ "text": "our"
+ },
+ {
+ "id": 6831,
+ "start": 4099.96,
+ "end": 4100.16,
+ "text": "team."
+ },
+ {
+ "id": 6832,
+ "start": 4100.16,
+ "end": 4100.28,
+ "text": "As"
+ },
+ {
+ "id": 6833,
+ "start": 4100.28,
+ "end": 4100.44,
+ "text": "soon"
+ },
+ {
+ "id": 6834,
+ "start": 4100.44,
+ "end": 4100.52,
+ "text": "as"
+ },
+ {
+ "id": 6835,
+ "start": 4100.52,
+ "end": 4100.6,
+ "text": "I"
+ },
+ {
+ "id": 6836,
+ "start": 4100.6,
+ "end": 4100.82,
+ "text": "learned"
+ },
+ {
+ "id": 6837,
+ "start": 4100.82,
+ "end": 4100.98,
+ "text": "about"
+ },
+ {
+ "id": 6838,
+ "start": 4100.98,
+ "end": 4101.12,
+ "text": "this"
+ },
+ {
+ "id": 6839,
+ "start": 4101.12,
+ "end": 4101.26,
+ "text": "is"
+ },
+ {
+ "id": 6840,
+ "start": 4101.26,
+ "end": 4101.7,
+ "text": "why"
+ },
+ {
+ "id": 6841,
+ "start": 4101.7,
+ "end": 4101.84,
+ "text": "did"
+ },
+ {
+ "id": 6842,
+ "start": 4101.84,
+ "end": 4101.96,
+ "text": "we"
+ },
+ {
+ "id": 6843,
+ "start": 4101.96,
+ "end": 4102.14,
+ "text": "wait"
+ },
+ {
+ "id": 6844,
+ "start": 4102.14,
+ "end": 4102.5,
+ "text": "until"
+ },
+ {
+ "id": 6845,
+ "start": 4102.5,
+ "end": 4102.92,
+ "text": "we"
+ },
+ {
+ "id": 6846,
+ "start": 4102.92,
+ "end": 4103.1,
+ "text": "found"
+ },
+ {
+ "id": 6847,
+ "start": 4103.1,
+ "end": 4103.22,
+ "text": "out"
+ },
+ {
+ "id": 6848,
+ "start": 4103.22,
+ "end": 4103.4,
+ "text": "about"
+ },
+ {
+ "id": 6849,
+ "start": 4103.4,
+ "end": 4103.52,
+ "text": "the"
+ },
+ {
+ "id": 6850,
+ "start": 4103.52,
+ "end": 4103.88,
+ "text": "reports"
+ },
+ {
+ "id": 6851,
+ "start": 4103.88,
+ "end": 4104.18,
+ "text": "last"
+ },
+ {
+ "id": 6852,
+ "start": 4104.18,
+ "end": 4104.46,
+ "text": "month"
+ },
+ {
+ "id": 6853,
+ "start": 4104.46,
+ "end": 4104.86,
+ "text": "to"
+ },
+ {
+ "id": 6854,
+ "start": 4104.86,
+ "end": 4105.38,
+ "text": "to"
+ },
+ {
+ "id": 6855,
+ "start": 4105.38,
+ "end": 4105.64,
+ "text": "ban"
+ },
+ {
+ "id": 6856,
+ "start": 4105.64,
+ "end": 4105.82,
+ "text": "them"
+ },
+ {
+ "id": 6857,
+ "start": 4105.82,
+ "end": 4106.42,
+ "text": "it's"
+ },
+ {
+ "id": 6858,
+ "start": 4106.42,
+ "end": 4106.76,
+ "text": "because"
+ },
+ {
+ "id": 6859,
+ "start": 4106.76,
+ "end": 4107.32,
+ "text": "as"
+ },
+ {
+ "id": 6860,
+ "start": 4107.32,
+ "end": 4107.42,
+ "text": "of"
+ },
+ {
+ "id": 6861,
+ "start": 4107.42,
+ "end": 4107.54,
+ "text": "the"
+ },
+ {
+ "id": 6862,
+ "start": 4107.54,
+ "end": 4107.76,
+ "text": "time"
+ },
+ {
+ "id": 6863,
+ "start": 4107.76,
+ "end": 4107.9,
+ "text": "that"
+ },
+ {
+ "id": 6864,
+ "start": 4107.9,
+ "end": 4107.98,
+ "text": "we"
+ },
+ {
+ "id": 6865,
+ "start": 4107.98,
+ "end": 4108.3,
+ "text": "learned"
+ },
+ {
+ "id": 6866,
+ "start": 4108.3,
+ "end": 4108.48,
+ "text": "about"
+ },
+ {
+ "id": 6867,
+ "start": 4108.48,
+ "end": 4108.68,
+ "text": "their"
+ },
+ {
+ "id": 6868,
+ "start": 4108.68,
+ "end": 4109.06,
+ "text": "activity"
+ },
+ {
+ "id": 6869,
+ "start": 4109.06,
+ "end": 4109.18,
+ "text": "and"
+ },
+ {
+ "id": 6870,
+ "start": 4109.18,
+ "end": 4109.42,
+ "text": "20"
+ },
+ {
+ "id": 6871,
+ "start": 4109.42,
+ "end": 4109.84,
+ "text": "15"
+ },
+ {
+ "id": 6872,
+ "start": 4109.84,
+ "end": 4110.22,
+ "text": "they"
+ },
+ {
+ "id": 6873,
+ "start": 4110.22,
+ "end": 4110.46,
+ "text": "weren't"
+ },
+ {
+ "id": 6874,
+ "start": 4110.46,
+ "end": 4110.56,
+ "text": "an"
+ },
+ {
+ "id": 6875,
+ "start": 4110.56,
+ "end": 4111.16,
+ "text": "advertiser,"
+ },
+ {
+ "id": 6876,
+ "start": 4111.16,
+ "end": 4111.34,
+ "text": "they"
+ },
+ {
+ "id": 6877,
+ "start": 4111.34,
+ "end": 4111.54,
+ "text": "weren't"
+ },
+ {
+ "id": 6878,
+ "start": 4111.54,
+ "end": 4111.8,
+ "text": "running"
+ },
+ {
+ "id": 6879,
+ "start": 4111.8,
+ "end": 4112.22,
+ "text": "pages."
+ },
+ {
+ "id": 6880,
+ "start": 4112.22,
+ "end": 4112.92,
+ "text": "So"
+ },
+ {
+ "id": 6881,
+ "start": 4112.92,
+ "end": 4113.08,
+ "text": "we"
+ },
+ {
+ "id": 6882,
+ "start": 4113.08,
+ "end": 4113.34,
+ "text": "actually"
+ },
+ {
+ "id": 6883,
+ "start": 4113.34,
+ "end": 4113.48,
+ "text": "had"
+ },
+ {
+ "id": 6884,
+ "start": 4113.48,
+ "end": 4113.78,
+ "text": "nothing"
+ },
+ {
+ "id": 6885,
+ "start": 4113.78,
+ "end": 4113.9,
+ "text": "to"
+ },
+ {
+ "id": 6886,
+ "start": 4113.9,
+ "end": 4114.64,
+ "text": "ban."
+ },
+ {
+ "id": 6887,
+ "start": 4114.64,
+ "end": 4115.32,
+ "text": "Thank"
+ },
+ {
+ "id": 6888,
+ "start": 4115.32,
+ "end": 4115.48,
+ "text": "you,"
+ },
+ {
+ "id": 6889,
+ "start": 4115.48,
+ "end": 4116.1,
+ "text": "thank"
+ },
+ {
+ "id": 6890,
+ "start": 4116.1,
+ "end": 4116.22,
+ "text": "you,"
+ },
+ {
+ "id": 6891,
+ "start": 4116.22,
+ "end": 4116.52,
+ "text": "Mr"
+ },
+ {
+ "id": 6892,
+ "start": 4116.52,
+ "end": 4116.84,
+ "text": "Chairman."
+ },
+ {
+ "id": 6893,
+ "start": 4116.84,
+ "end": 4117.22,
+ "text": "Thank"
+ },
+ {
+ "id": 6894,
+ "start": 4117.22,
+ "end": 4117.36,
+ "text": "you,"
+ },
+ {
+ "id": 6895,
+ "start": 4117.36,
+ "end": 4117.82,
+ "text": "Senator"
+ },
+ {
+ "id": 6896,
+ "start": 4117.82,
+ "end": 4118.3,
+ "text": "Feinstein."
+ },
+ {
+ "id": 6897,
+ "start": 4118.3,
+ "end": 4118.5,
+ "text": "Now,"
+ },
+ {
+ "id": 6898,
+ "start": 4118.5,
+ "end": 4118.88,
+ "text": "Senator"
+ },
+ {
+ "id": 6899,
+ "start": 4118.88,
+ "end": 4120.62,
+ "text": "Hatch."
+ },
+ {
+ "id": 6900,
+ "start": 4120.62,
+ "end": 4122.02,
+ "text": "Well,"
+ },
+ {
+ "id": 6901,
+ "start": 4122.02,
+ "end": 4123.02,
+ "text": "this"
+ },
+ {
+ "id": 6902,
+ "start": 4123.02,
+ "end": 4124.78,
+ "text": "is"
+ },
+ {
+ "id": 6903,
+ "start": 4124.78,
+ "end": 4125.2,
+ "text": "the"
+ },
+ {
+ "id": 6904,
+ "start": 4125.2,
+ "end": 4125.4,
+ "text": "most"
+ },
+ {
+ "id": 6905,
+ "start": 4125.4,
+ "end": 4125.86,
+ "text": "intense"
+ },
+ {
+ "id": 6906,
+ "start": 4125.86,
+ "end": 4126.24,
+ "text": "public"
+ },
+ {
+ "id": 6907,
+ "start": 4126.24,
+ "end": 4126.7,
+ "text": "scrutiny"
+ },
+ {
+ "id": 6908,
+ "start": 4126.7,
+ "end": 4126.9,
+ "text": "I've"
+ },
+ {
+ "id": 6909,
+ "start": 4126.9,
+ "end": 4127.26,
+ "text": "seen"
+ },
+ {
+ "id": 6910,
+ "start": 4127.26,
+ "end": 4128.44,
+ "text": "for"
+ },
+ {
+ "id": 6911,
+ "start": 4128.44,
+ "end": 4128.48,
+ "text": "a"
+ },
+ {
+ "id": 6912,
+ "start": 4128.48,
+ "end": 4128.72,
+ "text": "tech"
+ },
+ {
+ "id": 6913,
+ "start": 4128.72,
+ "end": 4129.12,
+ "text": "related"
+ },
+ {
+ "id": 6914,
+ "start": 4129.12,
+ "end": 4129.42,
+ "text": "hearing"
+ },
+ {
+ "id": 6915,
+ "start": 4129.42,
+ "end": 4129.72,
+ "text": "since"
+ },
+ {
+ "id": 6916,
+ "start": 4129.72,
+ "end": 4129.86,
+ "text": "the"
+ },
+ {
+ "id": 6917,
+ "start": 4129.86,
+ "end": 4130.46,
+ "text": "Microsoft"
+ },
+ {
+ "id": 6918,
+ "start": 4130.46,
+ "end": 4130.82,
+ "text": "hearing"
+ },
+ {
+ "id": 6919,
+ "start": 4130.82,
+ "end": 4131.62,
+ "text": "that"
+ },
+ {
+ "id": 6920,
+ "start": 4131.62,
+ "end": 4131.8,
+ "text": "I"
+ },
+ {
+ "id": 6921,
+ "start": 4131.8,
+ "end": 4132.1,
+ "text": "shared"
+ },
+ {
+ "id": 6922,
+ "start": 4132.1,
+ "end": 4132.32,
+ "text": "back"
+ },
+ {
+ "id": 6923,
+ "start": 4132.32,
+ "end": 4132.46,
+ "text": "in"
+ },
+ {
+ "id": 6924,
+ "start": 4132.46,
+ "end": 4132.58,
+ "text": "the"
+ },
+ {
+ "id": 6925,
+ "start": 4132.58,
+ "end": 4132.76,
+ "text": "late"
+ },
+ {
+ "id": 6926,
+ "start": 4132.76,
+ "end": 4133.12,
+ "text": "19"
+ },
+ {
+ "id": 6927,
+ "start": 4133.12,
+ "end": 4133.68,
+ "text": "nineties."
+ },
+ {
+ "id": 6928,
+ "start": 4133.68,
+ "end": 4135.01,
+ "text": "The"
+ },
+ {
+ "id": 6929,
+ "start": 4135.01,
+ "end": 4135.45,
+ "text": "stories"
+ },
+ {
+ "id": 6930,
+ "start": 4135.45,
+ "end": 4135.73,
+ "text": "about"
+ },
+ {
+ "id": 6931,
+ "start": 4135.73,
+ "end": 4136.21,
+ "text": "Cambridge"
+ },
+ {
+ "id": 6932,
+ "start": 4136.21,
+ "end": 4137.01,
+ "text": "analytic"
+ },
+ {
+ "id": 6933,
+ "start": 4137.01,
+ "end": 4138.11,
+ "text": "and"
+ },
+ {
+ "id": 6934,
+ "start": 4138.11,
+ "end": 4138.43,
+ "text": "data"
+ },
+ {
+ "id": 6935,
+ "start": 4138.43,
+ "end": 4138.73,
+ "text": "mining"
+ },
+ {
+ "id": 6936,
+ "start": 4138.73,
+ "end": 4138.87,
+ "text": "on"
+ },
+ {
+ "id": 6937,
+ "start": 4138.87,
+ "end": 4139.23,
+ "text": "social"
+ },
+ {
+ "id": 6938,
+ "start": 4139.23,
+ "end": 4139.49,
+ "text": "media"
+ },
+ {
+ "id": 6939,
+ "start": 4139.49,
+ "end": 4139.63,
+ "text": "have"
+ },
+ {
+ "id": 6940,
+ "start": 4139.63,
+ "end": 4139.89,
+ "text": "raised"
+ },
+ {
+ "id": 6941,
+ "start": 4139.89,
+ "end": 4140.23,
+ "text": "serious"
+ },
+ {
+ "id": 6942,
+ "start": 4140.23,
+ "end": 4140.67,
+ "text": "concerns"
+ },
+ {
+ "id": 6943,
+ "start": 4140.67,
+ "end": 4140.93,
+ "text": "about"
+ },
+ {
+ "id": 6944,
+ "start": 4140.93,
+ "end": 4141.49,
+ "text": "consumer"
+ },
+ {
+ "id": 6945,
+ "start": 4141.49,
+ "end": 4142.13,
+ "text": "privacy."
+ },
+ {
+ "id": 6946,
+ "start": 4142.13,
+ "end": 4143.17,
+ "text": "And"
+ },
+ {
+ "id": 6947,
+ "start": 4143.17,
+ "end": 4143.69,
+ "text": "naturally"
+ },
+ {
+ "id": 6948,
+ "start": 4143.69,
+ "end": 4143.91,
+ "text": "I"
+ },
+ {
+ "id": 6949,
+ "start": 4143.91,
+ "end": 4144.07,
+ "text": "know"
+ },
+ {
+ "id": 6950,
+ "start": 4144.07,
+ "end": 4144.21,
+ "text": "you"
+ },
+ {
+ "id": 6951,
+ "start": 4144.21,
+ "end": 4144.79,
+ "text": "understand"
+ },
+ {
+ "id": 6952,
+ "start": 4144.79,
+ "end": 4145.03,
+ "text": "that"
+ },
+ {
+ "id": 6953,
+ "start": 4145.03,
+ "end": 4145.15,
+ "text": "at"
+ },
+ {
+ "id": 6954,
+ "start": 4145.15,
+ "end": 4145.33,
+ "text": "the"
+ },
+ {
+ "id": 6955,
+ "start": 4145.33,
+ "end": 4145.57,
+ "text": "same"
+ },
+ {
+ "id": 6956,
+ "start": 4145.57,
+ "end": 4145.79,
+ "text": "time,"
+ },
+ {
+ "id": 6957,
+ "start": 4145.79,
+ "end": 4146.05,
+ "text": "these"
+ },
+ {
+ "id": 6958,
+ "start": 4146.05,
+ "end": 4146.37,
+ "text": "stories"
+ },
+ {
+ "id": 6959,
+ "start": 4146.37,
+ "end": 4146.61,
+ "text": "touch"
+ },
+ {
+ "id": 6960,
+ "start": 4146.61,
+ "end": 4146.75,
+ "text": "on"
+ },
+ {
+ "id": 6961,
+ "start": 4146.75,
+ "end": 4146.87,
+ "text": "the"
+ },
+ {
+ "id": 6962,
+ "start": 4146.87,
+ "end": 4147.09,
+ "text": "very"
+ },
+ {
+ "id": 6963,
+ "start": 4147.09,
+ "end": 4147.65,
+ "text": "foundation"
+ },
+ {
+ "id": 6964,
+ "start": 4147.65,
+ "end": 4147.77,
+ "text": "of"
+ },
+ {
+ "id": 6965,
+ "start": 4147.77,
+ "end": 4147.87,
+ "text": "the"
+ },
+ {
+ "id": 6966,
+ "start": 4147.87,
+ "end": 4148.19,
+ "text": "Internet"
+ },
+ {
+ "id": 6967,
+ "start": 4148.19,
+ "end": 4149.4,
+ "text": "economy"
+ },
+ {
+ "id": 6968,
+ "start": 4149.4,
+ "end": 4150.24,
+ "text": "and"
+ },
+ {
+ "id": 6969,
+ "start": 4150.24,
+ "end": 4150.98,
+ "text": "the"
+ },
+ {
+ "id": 6970,
+ "start": 4150.98,
+ "end": 4151.32,
+ "text": "way"
+ },
+ {
+ "id": 6971,
+ "start": 4151.32,
+ "end": 4151.84,
+ "text": "the"
+ },
+ {
+ "id": 6972,
+ "start": 4151.84,
+ "end": 4152.4,
+ "text": "websites"
+ },
+ {
+ "id": 6973,
+ "start": 4152.4,
+ "end": 4153.48,
+ "text": "that"
+ },
+ {
+ "id": 6974,
+ "start": 4153.48,
+ "end": 4153.76,
+ "text": "drive"
+ },
+ {
+ "id": 6975,
+ "start": 4153.76,
+ "end": 4153.96,
+ "text": "our"
+ },
+ {
+ "id": 6976,
+ "start": 4153.96,
+ "end": 4154.5,
+ "text": "Internet"
+ },
+ {
+ "id": 6977,
+ "start": 4154.5,
+ "end": 4154.98,
+ "text": "economy"
+ },
+ {
+ "id": 6978,
+ "start": 4154.98,
+ "end": 4155.24,
+ "text": "make"
+ },
+ {
+ "id": 6979,
+ "start": 4155.24,
+ "end": 4155.54,
+ "text": "money"
+ },
+ {
+ "id": 6980,
+ "start": 4155.54,
+ "end": 4156.62,
+ "text": "some"
+ },
+ {
+ "id": 6981,
+ "start": 4156.62,
+ "end": 4156.78,
+ "text": "of"
+ },
+ {
+ "id": 6982,
+ "start": 4156.78,
+ "end": 4157.16,
+ "text": "professed"
+ },
+ {
+ "id": 6983,
+ "start": 4157.16,
+ "end": 4157.58,
+ "text": "themselves"
+ },
+ {
+ "id": 6984,
+ "start": 4157.58,
+ "end": 4158.08,
+ "text": "shocked"
+ },
+ {
+ "id": 6985,
+ "start": 4158.08,
+ "end": 4159.68,
+ "text": "shocked."
+ },
+ {
+ "id": 6986,
+ "start": 4159.68,
+ "end": 4160.66,
+ "text": "The"
+ },
+ {
+ "id": 6987,
+ "start": 4160.66,
+ "end": 4161.06,
+ "text": "companies"
+ },
+ {
+ "id": 6988,
+ "start": 4161.06,
+ "end": 4161.24,
+ "text": "like"
+ },
+ {
+ "id": 6989,
+ "start": 4161.24,
+ "end": 4161.81,
+ "text": "Facebook"
+ },
+ {
+ "id": 6990,
+ "start": 4161.81,
+ "end": 4162.29,
+ "text": "Google"
+ },
+ {
+ "id": 6991,
+ "start": 4162.29,
+ "end": 4163.11,
+ "text": "user"
+ },
+ {
+ "id": 6992,
+ "start": 4163.11,
+ "end": 4163.39,
+ "text": "data"
+ },
+ {
+ "id": 6993,
+ "start": 4163.39,
+ "end": 4163.65,
+ "text": "with"
+ },
+ {
+ "id": 6994,
+ "start": 4163.65,
+ "end": 4164.45,
+ "text": "advertisers."
+ },
+ {
+ "id": 6995,
+ "start": 4164.45,
+ "end": 4165.53,
+ "text": "Did"
+ },
+ {
+ "id": 6996,
+ "start": 4165.53,
+ "end": 4165.73,
+ "text": "any"
+ },
+ {
+ "id": 6997,
+ "start": 4165.73,
+ "end": 4165.81,
+ "text": "of"
+ },
+ {
+ "id": 6998,
+ "start": 4165.81,
+ "end": 4166.01,
+ "text": "these"
+ },
+ {
+ "id": 6999,
+ "start": 4166.01,
+ "end": 4166.51,
+ "text": "individuals"
+ },
+ {
+ "id": 7000,
+ "start": 4166.51,
+ "end": 4166.75,
+ "text": "ever"
+ },
+ {
+ "id": 7001,
+ "start": 4166.75,
+ "end": 4166.99,
+ "text": "stopped?"
+ },
+ {
+ "id": 7002,
+ "start": 4166.99,
+ "end": 4167.21,
+ "text": "Ask"
+ },
+ {
+ "id": 7003,
+ "start": 4167.21,
+ "end": 4167.65,
+ "text": "themselves"
+ },
+ {
+ "id": 7004,
+ "start": 4167.65,
+ "end": 4167.95,
+ "text": "why"
+ },
+ {
+ "id": 7005,
+ "start": 4167.95,
+ "end": 4168.43,
+ "text": "Facebook"
+ },
+ {
+ "id": 7006,
+ "start": 4168.43,
+ "end": 4168.57,
+ "text": "and"
+ },
+ {
+ "id": 7007,
+ "start": 4168.57,
+ "end": 4169.21,
+ "text": "Google"
+ },
+ {
+ "id": 7008,
+ "start": 4169.21,
+ "end": 4170.73,
+ "text": "don't"
+ },
+ {
+ "id": 7009,
+ "start": 4170.73,
+ "end": 4170.97,
+ "text": "don't"
+ },
+ {
+ "id": 7010,
+ "start": 4170.97,
+ "end": 4171.29,
+ "text": "charge"
+ },
+ {
+ "id": 7011,
+ "start": 4171.29,
+ "end": 4171.45,
+ "text": "for"
+ },
+ {
+ "id": 7012,
+ "start": 4171.45,
+ "end": 4171.93,
+ "text": "access."
+ },
+ {
+ "id": 7013,
+ "start": 4171.93,
+ "end": 4172.79,
+ "text": "Nothing"
+ },
+ {
+ "id": 7014,
+ "start": 4172.79,
+ "end": 4173.13,
+ "text": "like"
+ },
+ {
+ "id": 7015,
+ "start": 4173.13,
+ "end": 4173.33,
+ "text": "is"
+ },
+ {
+ "id": 7016,
+ "start": 4173.33,
+ "end": 4174.22,
+ "text": "free"
+ },
+ {
+ "id": 7017,
+ "start": 4174.22,
+ "end": 4175.16,
+ "text": "everything"
+ },
+ {
+ "id": 7018,
+ "start": 4175.16,
+ "end": 4175.54,
+ "text": "involves"
+ },
+ {
+ "id": 7019,
+ "start": 4175.54,
+ "end": 4175.86,
+ "text": "trade"
+ },
+ {
+ "id": 7020,
+ "start": 4175.86,
+ "end": 4176.1,
+ "text": "offs,"
+ },
+ {
+ "id": 7021,
+ "start": 4176.1,
+ "end": 4176.26,
+ "text": "if"
+ },
+ {
+ "id": 7022,
+ "start": 4176.26,
+ "end": 4176.38,
+ "text": "you"
+ },
+ {
+ "id": 7023,
+ "start": 4176.38,
+ "end": 4176.58,
+ "text": "want"
+ },
+ {
+ "id": 7024,
+ "start": 4176.58,
+ "end": 4177,
+ "text": "something"
+ },
+ {
+ "id": 7025,
+ "start": 4177,
+ "end": 4177.32,
+ "text": "without"
+ },
+ {
+ "id": 7026,
+ "start": 4177.32,
+ "end": 4177.6,
+ "text": "having"
+ },
+ {
+ "id": 7027,
+ "start": 4177.6,
+ "end": 4177.68,
+ "text": "to"
+ },
+ {
+ "id": 7028,
+ "start": 4177.68,
+ "end": 4177.86,
+ "text": "pay"
+ },
+ {
+ "id": 7029,
+ "start": 4177.86,
+ "end": 4178.12,
+ "text": "money"
+ },
+ {
+ "id": 7030,
+ "start": 4178.12,
+ "end": 4178.32,
+ "text": "for"
+ },
+ {
+ "id": 7031,
+ "start": 4178.32,
+ "end": 4178.46,
+ "text": "it"
+ },
+ {
+ "id": 7032,
+ "start": 4178.46,
+ "end": 4179.4,
+ "text": "you're"
+ },
+ {
+ "id": 7033,
+ "start": 4179.4,
+ "end": 4179.56,
+ "text": "going"
+ },
+ {
+ "id": 7034,
+ "start": 4179.56,
+ "end": 4179.62,
+ "text": "to"
+ },
+ {
+ "id": 7035,
+ "start": 4179.62,
+ "end": 4179.76,
+ "text": "have"
+ },
+ {
+ "id": 7036,
+ "start": 4179.76,
+ "end": 4179.84,
+ "text": "to"
+ },
+ {
+ "id": 7037,
+ "start": 4179.84,
+ "end": 4180.04,
+ "text": "pay"
+ },
+ {
+ "id": 7038,
+ "start": 4180.04,
+ "end": 4180.22,
+ "text": "for"
+ },
+ {
+ "id": 7039,
+ "start": 4180.22,
+ "end": 4180.3,
+ "text": "it."
+ },
+ {
+ "id": 7040,
+ "start": 4180.3,
+ "end": 4180.46,
+ "text": "In"
+ },
+ {
+ "id": 7041,
+ "start": 4180.46,
+ "end": 4180.7,
+ "text": "some"
+ },
+ {
+ "id": 7042,
+ "start": 4180.7,
+ "end": 4180.96,
+ "text": "other"
+ },
+ {
+ "id": 7043,
+ "start": 4180.96,
+ "end": 4181.12,
+ "text": "way."
+ },
+ {
+ "id": 7044,
+ "start": 4181.12,
+ "end": 4181.26,
+ "text": "It"
+ },
+ {
+ "id": 7045,
+ "start": 4181.26,
+ "end": 4181.56,
+ "text": "seems"
+ },
+ {
+ "id": 7046,
+ "start": 4181.56,
+ "end": 4181.72,
+ "text": "to"
+ },
+ {
+ "id": 7047,
+ "start": 4181.72,
+ "end": 4181.84,
+ "text": "me"
+ },
+ {
+ "id": 7048,
+ "start": 4181.84,
+ "end": 4182.52,
+ "text": "and"
+ },
+ {
+ "id": 7049,
+ "start": 4182.52,
+ "end": 4182.76,
+ "text": "that's"
+ },
+ {
+ "id": 7050,
+ "start": 4182.76,
+ "end": 4183.02,
+ "text": "where?"
+ },
+ {
+ "id": 7051,
+ "start": 4183.02,
+ "end": 4183.34,
+ "text": "What"
+ },
+ {
+ "id": 7052,
+ "start": 4183.34,
+ "end": 4183.52,
+ "text": "we're"
+ },
+ {
+ "id": 7053,
+ "start": 4183.52,
+ "end": 4183.78,
+ "text": "seeing"
+ },
+ {
+ "id": 7054,
+ "start": 4183.78,
+ "end": 4184.02,
+ "text": "here?"
+ },
+ {
+ "id": 7055,
+ "start": 4184.02,
+ "end": 4184.96,
+ "text": "And"
+ },
+ {
+ "id": 7056,
+ "start": 4184.96,
+ "end": 4185.16,
+ "text": "these"
+ },
+ {
+ "id": 7057,
+ "start": 4185.16,
+ "end": 4185.38,
+ "text": "great"
+ },
+ {
+ "id": 7058,
+ "start": 4185.38,
+ "end": 4185.9,
+ "text": "websites"
+ },
+ {
+ "id": 7059,
+ "start": 4185.9,
+ "end": 4186.08,
+ "text": "that"
+ },
+ {
+ "id": 7060,
+ "start": 4186.08,
+ "end": 4186.32,
+ "text": "don't"
+ },
+ {
+ "id": 7061,
+ "start": 4186.32,
+ "end": 4186.66,
+ "text": "charge"
+ },
+ {
+ "id": 7062,
+ "start": 4186.66,
+ "end": 4186.84,
+ "text": "for"
+ },
+ {
+ "id": 7063,
+ "start": 4186.84,
+ "end": 4187.38,
+ "text": "access."
+ },
+ {
+ "id": 7064,
+ "start": 4187.38,
+ "end": 4188.44,
+ "text": "They"
+ },
+ {
+ "id": 7065,
+ "start": 4188.44,
+ "end": 4188.96,
+ "text": "extract"
+ },
+ {
+ "id": 7066,
+ "start": 4188.96,
+ "end": 4189.36,
+ "text": "value"
+ },
+ {
+ "id": 7067,
+ "start": 4189.36,
+ "end": 4189.5,
+ "text": "in"
+ },
+ {
+ "id": 7068,
+ "start": 4189.5,
+ "end": 4189.74,
+ "text": "some"
+ },
+ {
+ "id": 7069,
+ "start": 4189.74,
+ "end": 4190,
+ "text": "other"
+ },
+ {
+ "id": 7070,
+ "start": 4190,
+ "end": 4190.88,
+ "text": "way."
+ },
+ {
+ "id": 7071,
+ "start": 4190.88,
+ "end": 4191.54,
+ "text": "And"
+ },
+ {
+ "id": 7072,
+ "start": 4191.54,
+ "end": 4191.74,
+ "text": "there's"
+ },
+ {
+ "id": 7073,
+ "start": 4191.74,
+ "end": 4192,
+ "text": "nothing"
+ },
+ {
+ "id": 7074,
+ "start": 4192,
+ "end": 4192.2,
+ "text": "wrong"
+ },
+ {
+ "id": 7075,
+ "start": 4192.2,
+ "end": 4192.38,
+ "text": "with"
+ },
+ {
+ "id": 7076,
+ "start": 4192.38,
+ "end": 4192.58,
+ "text": "that"
+ },
+ {
+ "id": 7077,
+ "start": 4192.58,
+ "end": 4192.78,
+ "text": "as"
+ },
+ {
+ "id": 7078,
+ "start": 4192.78,
+ "end": 4193.02,
+ "text": "long"
+ },
+ {
+ "id": 7079,
+ "start": 4193.02,
+ "end": 4193.18,
+ "text": "as"
+ },
+ {
+ "id": 7080,
+ "start": 4193.18,
+ "end": 4193.48,
+ "text": "they're"
+ },
+ {
+ "id": 7081,
+ "start": 4193.48,
+ "end": 4193.84,
+ "text": "upfront"
+ },
+ {
+ "id": 7082,
+ "start": 4193.84,
+ "end": 4194.14,
+ "text": "about"
+ },
+ {
+ "id": 7083,
+ "start": 4194.14,
+ "end": 4194.36,
+ "text": "what"
+ },
+ {
+ "id": 7084,
+ "start": 4194.36,
+ "end": 4194.62,
+ "text": "they're"
+ },
+ {
+ "id": 7085,
+ "start": 4194.62,
+ "end": 4194.92,
+ "text": "doing"
+ },
+ {
+ "id": 7086,
+ "start": 4194.92,
+ "end": 4195.8,
+ "text": "to"
+ },
+ {
+ "id": 7087,
+ "start": 4195.8,
+ "end": 4196,
+ "text": "my"
+ },
+ {
+ "id": 7088,
+ "start": 4196,
+ "end": 4196.26,
+ "text": "mind."
+ },
+ {
+ "id": 7089,
+ "start": 4196.26,
+ "end": 4196.38,
+ "text": "The"
+ },
+ {
+ "id": 7090,
+ "start": 4196.38,
+ "end": 4196.66,
+ "text": "issue"
+ },
+ {
+ "id": 7091,
+ "start": 4196.66,
+ "end": 4196.88,
+ "text": "here"
+ },
+ {
+ "id": 7092,
+ "start": 4196.88,
+ "end": 4197.04,
+ "text": "is"
+ },
+ {
+ "id": 7093,
+ "start": 4197.04,
+ "end": 4198.04,
+ "text": "transparency"
+ },
+ {
+ "id": 7094,
+ "start": 4198.04,
+ "end": 4198.9,
+ "text": "it's"
+ },
+ {
+ "id": 7095,
+ "start": 4198.9,
+ "end": 4199.48,
+ "text": "consumer"
+ },
+ {
+ "id": 7096,
+ "start": 4199.48,
+ "end": 4199.88,
+ "text": "choice"
+ },
+ {
+ "id": 7097,
+ "start": 4199.88,
+ "end": 4201.02,
+ "text": "to"
+ },
+ {
+ "id": 7098,
+ "start": 4201.02,
+ "end": 4201.4,
+ "text": "users"
+ },
+ {
+ "id": 7099,
+ "start": 4201.4,
+ "end": 4201.84,
+ "text": "understand"
+ },
+ {
+ "id": 7100,
+ "start": 4201.84,
+ "end": 4201.98,
+ "text": "what"
+ },
+ {
+ "id": 7101,
+ "start": 4201.98,
+ "end": 4202.18,
+ "text": "they're"
+ },
+ {
+ "id": 7102,
+ "start": 4202.18,
+ "end": 4202.5,
+ "text": "agreeing"
+ },
+ {
+ "id": 7103,
+ "start": 4202.5,
+ "end": 4203.24,
+ "text": "to"
+ },
+ {
+ "id": 7104,
+ "start": 4203.24,
+ "end": 4203.58,
+ "text": "when"
+ },
+ {
+ "id": 7105,
+ "start": 4203.58,
+ "end": 4203.84,
+ "text": "they"
+ },
+ {
+ "id": 7106,
+ "start": 4203.84,
+ "end": 4204.9,
+ "text": "access"
+ },
+ {
+ "id": 7107,
+ "start": 4204.9,
+ "end": 4205.02,
+ "text": "a"
+ },
+ {
+ "id": 7108,
+ "start": 4205.02,
+ "end": 4205.5,
+ "text": "website"
+ },
+ {
+ "id": 7109,
+ "start": 4205.5,
+ "end": 4205.62,
+ "text": "or"
+ },
+ {
+ "id": 7110,
+ "start": 4205.62,
+ "end": 4205.9,
+ "text": "agree"
+ },
+ {
+ "id": 7111,
+ "start": 4205.9,
+ "end": 4206.02,
+ "text": "to"
+ },
+ {
+ "id": 7112,
+ "start": 4206.02,
+ "end": 4206.32,
+ "text": "terms"
+ },
+ {
+ "id": 7113,
+ "start": 4206.32,
+ "end": 4206.46,
+ "text": "of"
+ },
+ {
+ "id": 7114,
+ "start": 4206.46,
+ "end": 4207.34,
+ "text": "service,"
+ },
+ {
+ "id": 7115,
+ "start": 4207.34,
+ "end": 4207.9,
+ "text": "our"
+ },
+ {
+ "id": 7116,
+ "start": 4207.9,
+ "end": 4208.42,
+ "text": "websites,"
+ },
+ {
+ "id": 7117,
+ "start": 4208.42,
+ "end": 4209.14,
+ "text": "upfront"
+ },
+ {
+ "id": 7118,
+ "start": 4209.14,
+ "end": 4210.06,
+ "text": "about"
+ },
+ {
+ "id": 7119,
+ "start": 4210.06,
+ "end": 4210.3,
+ "text": "how"
+ },
+ {
+ "id": 7120,
+ "start": 4210.3,
+ "end": 4210.48,
+ "text": "they"
+ },
+ {
+ "id": 7121,
+ "start": 4210.48,
+ "end": 4211.1,
+ "text": "extract"
+ },
+ {
+ "id": 7122,
+ "start": 4211.1,
+ "end": 4212.02,
+ "text": "value"
+ },
+ {
+ "id": 7123,
+ "start": 4212.02,
+ "end": 4212.2,
+ "text": "from"
+ },
+ {
+ "id": 7124,
+ "start": 4212.2,
+ "end": 4212.56,
+ "text": "users"
+ },
+ {
+ "id": 7125,
+ "start": 4212.56,
+ "end": 4212.74,
+ "text": "who"
+ },
+ {
+ "id": 7126,
+ "start": 4212.74,
+ "end": 4212.86,
+ "text": "do"
+ },
+ {
+ "id": 7127,
+ "start": 4212.86,
+ "end": 4213.02,
+ "text": "they"
+ },
+ {
+ "id": 7128,
+ "start": 4213.02,
+ "end": 4213.28,
+ "text": "hide"
+ },
+ {
+ "id": 7129,
+ "start": 4213.28,
+ "end": 4213.4,
+ "text": "the"
+ },
+ {
+ "id": 7130,
+ "start": 4213.4,
+ "end": 4213.78,
+ "text": "ball?"
+ },
+ {
+ "id": 7131,
+ "start": 4213.78,
+ "end": 4214.62,
+ "text": "The"
+ },
+ {
+ "id": 7132,
+ "start": 4214.62,
+ "end": 4215.1,
+ "text": "consumers"
+ },
+ {
+ "id": 7133,
+ "start": 4215.1,
+ "end": 4215.32,
+ "text": "have"
+ },
+ {
+ "id": 7134,
+ "start": 4215.32,
+ "end": 4215.44,
+ "text": "the"
+ },
+ {
+ "id": 7135,
+ "start": 4215.44,
+ "end": 4215.96,
+ "text": "information"
+ },
+ {
+ "id": 7136,
+ "start": 4215.96,
+ "end": 4216.16,
+ "text": "they"
+ },
+ {
+ "id": 7137,
+ "start": 4216.16,
+ "end": 4216.36,
+ "text": "need"
+ },
+ {
+ "id": 7138,
+ "start": 4216.36,
+ "end": 4216.48,
+ "text": "to"
+ },
+ {
+ "id": 7139,
+ "start": 4216.48,
+ "end": 4216.64,
+ "text": "make"
+ },
+ {
+ "id": 7140,
+ "start": 4216.64,
+ "end": 4216.74,
+ "text": "an"
+ },
+ {
+ "id": 7141,
+ "start": 4216.74,
+ "end": 4217.18,
+ "text": "informed"
+ },
+ {
+ "id": 7142,
+ "start": 4217.18,
+ "end": 4217.56,
+ "text": "choice"
+ },
+ {
+ "id": 7143,
+ "start": 4217.56,
+ "end": 4218.58,
+ "text": "regarding"
+ },
+ {
+ "id": 7144,
+ "start": 4218.58,
+ "end": 4218.9,
+ "text": "whether"
+ },
+ {
+ "id": 7145,
+ "start": 4218.9,
+ "end": 4219.04,
+ "text": "or"
+ },
+ {
+ "id": 7146,
+ "start": 4219.04,
+ "end": 4219.22,
+ "text": "not"
+ },
+ {
+ "id": 7147,
+ "start": 4219.22,
+ "end": 4219.36,
+ "text": "to"
+ },
+ {
+ "id": 7148,
+ "start": 4219.36,
+ "end": 4219.64,
+ "text": "visit"
+ },
+ {
+ "id": 7149,
+ "start": 4219.64,
+ "end": 4219.72,
+ "text": "a"
+ },
+ {
+ "id": 7150,
+ "start": 4219.72,
+ "end": 4220.28,
+ "text": "particular"
+ },
+ {
+ "id": 7151,
+ "start": 4220.28,
+ "end": 4220.92,
+ "text": "website"
+ },
+ {
+ "id": 7152,
+ "start": 4220.92,
+ "end": 4221.76,
+ "text": "to"
+ },
+ {
+ "id": 7153,
+ "start": 4221.76,
+ "end": 4222.32,
+ "text": "mind"
+ },
+ {
+ "id": 7154,
+ "start": 4222.32,
+ "end": 4222.46,
+ "text": "to"
+ },
+ {
+ "id": 7155,
+ "start": 4222.46,
+ "end": 4222.62,
+ "text": "my"
+ },
+ {
+ "id": 7156,
+ "start": 4222.62,
+ "end": 4222.84,
+ "text": "mind."
+ },
+ {
+ "id": 7157,
+ "start": 4222.84,
+ "end": 4223.04,
+ "text": "These"
+ },
+ {
+ "id": 7158,
+ "start": 4223.04,
+ "end": 4223.2,
+ "text": "are"
+ },
+ {
+ "id": 7159,
+ "start": 4223.2,
+ "end": 4223.56,
+ "text": "questions"
+ },
+ {
+ "id": 7160,
+ "start": 4223.56,
+ "end": 4223.7,
+ "text": "that"
+ },
+ {
+ "id": 7161,
+ "start": 4223.7,
+ "end": 4223.84,
+ "text": "we"
+ },
+ {
+ "id": 7162,
+ "start": 4223.84,
+ "end": 4224.06,
+ "text": "should"
+ },
+ {
+ "id": 7163,
+ "start": 4224.06,
+ "end": 4224.42,
+ "text": "ask"
+ },
+ {
+ "id": 7164,
+ "start": 4224.42,
+ "end": 4225,
+ "text": "or"
+ },
+ {
+ "id": 7165,
+ "start": 4225,
+ "end": 4225.18,
+ "text": "be"
+ },
+ {
+ "id": 7166,
+ "start": 4225.18,
+ "end": 4225.66,
+ "text": "focusing"
+ },
+ {
+ "id": 7167,
+ "start": 4225.66,
+ "end": 4226.48,
+ "text": "on"
+ },
+ {
+ "id": 7168,
+ "start": 4226.48,
+ "end": 4227.32,
+ "text": "now,"
+ },
+ {
+ "id": 7169,
+ "start": 4227.32,
+ "end": 4228.34,
+ "text": "Mr"
+ },
+ {
+ "id": 7170,
+ "start": 4228.34,
+ "end": 4228.76,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 7171,
+ "start": 4228.76,
+ "end": 4228.98,
+ "text": "I"
+ },
+ {
+ "id": 7172,
+ "start": 4228.98,
+ "end": 4229.34,
+ "text": "remember"
+ },
+ {
+ "id": 7173,
+ "start": 4229.34,
+ "end": 4229.62,
+ "text": "well,"
+ },
+ {
+ "id": 7174,
+ "start": 4229.62,
+ "end": 4229.84,
+ "text": "your"
+ },
+ {
+ "id": 7175,
+ "start": 4229.84,
+ "end": 4230.08,
+ "text": "first"
+ },
+ {
+ "id": 7176,
+ "start": 4230.08,
+ "end": 4230.38,
+ "text": "visit,"
+ },
+ {
+ "id": 7177,
+ "start": 4230.38,
+ "end": 4230.52,
+ "text": "the"
+ },
+ {
+ "id": 7178,
+ "start": 4230.52,
+ "end": 4230.88,
+ "text": "Capital"
+ },
+ {
+ "id": 7179,
+ "start": 4230.88,
+ "end": 4231.1,
+ "text": "Hill."
+ },
+ {
+ "id": 7180,
+ "start": 4231.1,
+ "end": 4231.28,
+ "text": "Back"
+ },
+ {
+ "id": 7181,
+ "start": 4231.28,
+ "end": 4231.42,
+ "text": "in"
+ },
+ {
+ "id": 7182,
+ "start": 4231.42,
+ "end": 4232.36,
+ "text": "2,010"
+ },
+ {
+ "id": 7183,
+ "start": 4232.36,
+ "end": 4233.44,
+ "text": "you"
+ },
+ {
+ "id": 7184,
+ "start": 4233.44,
+ "end": 4233.68,
+ "text": "spoke"
+ },
+ {
+ "id": 7185,
+ "start": 4233.68,
+ "end": 4233.8,
+ "text": "to"
+ },
+ {
+ "id": 7186,
+ "start": 4233.8,
+ "end": 4233.94,
+ "text": "the"
+ },
+ {
+ "id": 7187,
+ "start": 4233.94,
+ "end": 4234.24,
+ "text": "Senate"
+ },
+ {
+ "id": 7188,
+ "start": 4234.24,
+ "end": 4234.76,
+ "text": "Republican"
+ },
+ {
+ "id": 7189,
+ "start": 4234.76,
+ "end": 4234.94,
+ "text": "high"
+ },
+ {
+ "id": 7190,
+ "start": 4234.94,
+ "end": 4235.18,
+ "text": "tech"
+ },
+ {
+ "id": 7191,
+ "start": 4235.18,
+ "end": 4235.48,
+ "text": "task"
+ },
+ {
+ "id": 7192,
+ "start": 4235.48,
+ "end": 4235.76,
+ "text": "force,"
+ },
+ {
+ "id": 7193,
+ "start": 4235.76,
+ "end": 4235.96,
+ "text": "which"
+ },
+ {
+ "id": 7194,
+ "start": 4235.96,
+ "end": 4236.2,
+ "text": "I"
+ },
+ {
+ "id": 7195,
+ "start": 4236.2,
+ "end": 4236.58,
+ "text": "chair."
+ },
+ {
+ "id": 7196,
+ "start": 4236.58,
+ "end": 4237.46,
+ "text": "You"
+ },
+ {
+ "id": 7197,
+ "start": 4237.46,
+ "end": 4237.68,
+ "text": "said"
+ },
+ {
+ "id": 7198,
+ "start": 4237.68,
+ "end": 4237.92,
+ "text": "back"
+ },
+ {
+ "id": 7199,
+ "start": 4237.92,
+ "end": 4238.22,
+ "text": "then,"
+ },
+ {
+ "id": 7200,
+ "start": 4238.22,
+ "end": 4238.44,
+ "text": "that"
+ },
+ {
+ "id": 7201,
+ "start": 4238.44,
+ "end": 4239,
+ "text": "Facebook"
+ },
+ {
+ "id": 7202,
+ "start": 4239,
+ "end": 4239.22,
+ "text": "would"
+ },
+ {
+ "id": 7203,
+ "start": 4239.22,
+ "end": 4239.8,
+ "text": "always"
+ },
+ {
+ "id": 7204,
+ "start": 4239.8,
+ "end": 4240.04,
+ "text": "be"
+ },
+ {
+ "id": 7205,
+ "start": 4240.04,
+ "end": 4241.02,
+ "text": "free."
+ },
+ {
+ "id": 7206,
+ "start": 4241.02,
+ "end": 4241.8,
+ "text": "Is"
+ },
+ {
+ "id": 7207,
+ "start": 4241.8,
+ "end": 4241.96,
+ "text": "that"
+ },
+ {
+ "id": 7208,
+ "start": 4241.96,
+ "end": 4242.2,
+ "text": "still"
+ },
+ {
+ "id": 7209,
+ "start": 4242.2,
+ "end": 4242.36,
+ "text": "your"
+ },
+ {
+ "id": 7210,
+ "start": 4242.36,
+ "end": 4244.1,
+ "text": "objective,"
+ },
+ {
+ "id": 7211,
+ "start": 4244.1,
+ "end": 4245.12,
+ "text": "Senator?"
+ },
+ {
+ "id": 7212,
+ "start": 4245.12,
+ "end": 4246.08,
+ "text": "Yes,"
+ },
+ {
+ "id": 7213,
+ "start": 4246.08,
+ "end": 4246.7,
+ "text": "there"
+ },
+ {
+ "id": 7214,
+ "start": 4246.7,
+ "end": 4246.9,
+ "text": "will"
+ },
+ {
+ "id": 7215,
+ "start": 4246.9,
+ "end": 4247.22,
+ "text": "always"
+ },
+ {
+ "id": 7216,
+ "start": 4247.22,
+ "end": 4247.36,
+ "text": "be"
+ },
+ {
+ "id": 7217,
+ "start": 4247.36,
+ "end": 4247.46,
+ "text": "a"
+ },
+ {
+ "id": 7218,
+ "start": 4247.46,
+ "end": 4247.76,
+ "text": "version"
+ },
+ {
+ "id": 7219,
+ "start": 4247.76,
+ "end": 4247.88,
+ "text": "of"
+ },
+ {
+ "id": 7220,
+ "start": 4247.88,
+ "end": 4248.28,
+ "text": "Facebook."
+ },
+ {
+ "id": 7221,
+ "start": 4248.28,
+ "end": 4248.42,
+ "text": "That"
+ },
+ {
+ "id": 7222,
+ "start": 4248.42,
+ "end": 4248.58,
+ "text": "is"
+ },
+ {
+ "id": 7223,
+ "start": 4248.58,
+ "end": 4248.84,
+ "text": "free"
+ },
+ {
+ "id": 7224,
+ "start": 4248.84,
+ "end": 4249.02,
+ "text": "it"
+ },
+ {
+ "id": 7225,
+ "start": 4249.02,
+ "end": 4249.16,
+ "text": "is"
+ },
+ {
+ "id": 7226,
+ "start": 4249.16,
+ "end": 4249.32,
+ "text": "our"
+ },
+ {
+ "id": 7227,
+ "start": 4249.32,
+ "end": 4249.6,
+ "text": "mission"
+ },
+ {
+ "id": 7228,
+ "start": 4249.6,
+ "end": 4249.78,
+ "text": "to"
+ },
+ {
+ "id": 7229,
+ "start": 4249.78,
+ "end": 4249.94,
+ "text": "try"
+ },
+ {
+ "id": 7230,
+ "start": 4249.94,
+ "end": 4250.08,
+ "text": "to"
+ },
+ {
+ "id": 7231,
+ "start": 4250.08,
+ "end": 4250.28,
+ "text": "help"
+ },
+ {
+ "id": 7232,
+ "start": 4250.28,
+ "end": 4250.64,
+ "text": "connect"
+ },
+ {
+ "id": 7233,
+ "start": 4250.64,
+ "end": 4251.06,
+ "text": "everyone"
+ },
+ {
+ "id": 7234,
+ "start": 4251.06,
+ "end": 4251.28,
+ "text": "around"
+ },
+ {
+ "id": 7235,
+ "start": 4251.28,
+ "end": 4251.38,
+ "text": "the"
+ },
+ {
+ "id": 7236,
+ "start": 4251.38,
+ "end": 4251.62,
+ "text": "world"
+ },
+ {
+ "id": 7237,
+ "start": 4251.62,
+ "end": 4251.86,
+ "text": "and"
+ },
+ {
+ "id": 7238,
+ "start": 4251.86,
+ "end": 4251.96,
+ "text": "to"
+ },
+ {
+ "id": 7239,
+ "start": 4251.96,
+ "end": 4252.16,
+ "text": "bring"
+ },
+ {
+ "id": 7240,
+ "start": 4252.16,
+ "end": 4252.28,
+ "text": "the"
+ },
+ {
+ "id": 7241,
+ "start": 4252.28,
+ "end": 4252.44,
+ "text": "world"
+ },
+ {
+ "id": 7242,
+ "start": 4252.44,
+ "end": 4252.77,
+ "text": "closer"
+ },
+ {
+ "id": 7243,
+ "start": 4252.77,
+ "end": 4253.59,
+ "text": "together"
+ },
+ {
+ "id": 7244,
+ "start": 4253.59,
+ "end": 4253.71,
+ "text": "in"
+ },
+ {
+ "id": 7245,
+ "start": 4253.71,
+ "end": 4253.93,
+ "text": "order"
+ },
+ {
+ "id": 7246,
+ "start": 4253.93,
+ "end": 4254.01,
+ "text": "to"
+ },
+ {
+ "id": 7247,
+ "start": 4254.01,
+ "end": 4254.15,
+ "text": "do"
+ },
+ {
+ "id": 7248,
+ "start": 4254.15,
+ "end": 4254.31,
+ "text": "that."
+ },
+ {
+ "id": 7249,
+ "start": 4254.31,
+ "end": 4254.55,
+ "text": "We"
+ },
+ {
+ "id": 7250,
+ "start": 4254.55,
+ "end": 4254.89,
+ "text": "believe"
+ },
+ {
+ "id": 7251,
+ "start": 4254.89,
+ "end": 4255.11,
+ "text": "that"
+ },
+ {
+ "id": 7252,
+ "start": 4255.11,
+ "end": 4255.21,
+ "text": "we"
+ },
+ {
+ "id": 7253,
+ "start": 4255.21,
+ "end": 4255.41,
+ "text": "need"
+ },
+ {
+ "id": 7254,
+ "start": 4255.41,
+ "end": 4255.47,
+ "text": "to"
+ },
+ {
+ "id": 7255,
+ "start": 4255.47,
+ "end": 4255.69,
+ "text": "offer"
+ },
+ {
+ "id": 7256,
+ "start": 4255.69,
+ "end": 4255.75,
+ "text": "a"
+ },
+ {
+ "id": 7257,
+ "start": 4255.75,
+ "end": 4256.09,
+ "text": "service"
+ },
+ {
+ "id": 7258,
+ "start": 4256.09,
+ "end": 4256.23,
+ "text": "that"
+ },
+ {
+ "id": 7259,
+ "start": 4256.23,
+ "end": 4256.55,
+ "text": "everyone"
+ },
+ {
+ "id": 7260,
+ "start": 4256.55,
+ "end": 4256.69,
+ "text": "can"
+ },
+ {
+ "id": 7261,
+ "start": 4256.69,
+ "end": 4257.07,
+ "text": "afford"
+ },
+ {
+ "id": 7262,
+ "start": 4257.07,
+ "end": 4257.67,
+ "text": "and"
+ },
+ {
+ "id": 7263,
+ "start": 4257.67,
+ "end": 4257.87,
+ "text": "we're"
+ },
+ {
+ "id": 7264,
+ "start": 4257.87,
+ "end": 4258.25,
+ "text": "committed"
+ },
+ {
+ "id": 7265,
+ "start": 4258.25,
+ "end": 4258.47,
+ "text": "to"
+ },
+ {
+ "id": 7266,
+ "start": 4258.47,
+ "end": 4258.69,
+ "text": "doing"
+ },
+ {
+ "id": 7267,
+ "start": 4258.69,
+ "end": 4258.85,
+ "text": "that."
+ },
+ {
+ "id": 7268,
+ "start": 4258.85,
+ "end": 4259.17,
+ "text": "Well,"
+ },
+ {
+ "id": 7269,
+ "start": 4259.17,
+ "end": 4259.37,
+ "text": "if"
+ },
+ {
+ "id": 7270,
+ "start": 4259.37,
+ "end": 4259.69,
+ "text": "so,"
+ },
+ {
+ "id": 7271,
+ "start": 4259.69,
+ "end": 4259.87,
+ "text": "how"
+ },
+ {
+ "id": 7272,
+ "start": 4259.87,
+ "end": 4259.99,
+ "text": "do"
+ },
+ {
+ "id": 7273,
+ "start": 4259.99,
+ "end": 4260.13,
+ "text": "you"
+ },
+ {
+ "id": 7274,
+ "start": 4260.13,
+ "end": 4260.59,
+ "text": "sustain"
+ },
+ {
+ "id": 7275,
+ "start": 4260.59,
+ "end": 4260.71,
+ "text": "a"
+ },
+ {
+ "id": 7276,
+ "start": 4260.71,
+ "end": 4261.03,
+ "text": "business"
+ },
+ {
+ "id": 7277,
+ "start": 4261.03,
+ "end": 4261.31,
+ "text": "model"
+ },
+ {
+ "id": 7278,
+ "start": 4261.31,
+ "end": 4261.39,
+ "text": "in"
+ },
+ {
+ "id": 7279,
+ "start": 4261.39,
+ "end": 4261.57,
+ "text": "which"
+ },
+ {
+ "id": 7280,
+ "start": 4261.57,
+ "end": 4261.97,
+ "text": "users"
+ },
+ {
+ "id": 7281,
+ "start": 4261.97,
+ "end": 4262.21,
+ "text": "don't"
+ },
+ {
+ "id": 7282,
+ "start": 4262.21,
+ "end": 4262.41,
+ "text": "pay"
+ },
+ {
+ "id": 7283,
+ "start": 4262.41,
+ "end": 4262.53,
+ "text": "for"
+ },
+ {
+ "id": 7284,
+ "start": 4262.53,
+ "end": 4262.67,
+ "text": "your"
+ },
+ {
+ "id": 7285,
+ "start": 4262.67,
+ "end": 4265.34,
+ "text": "service."
+ },
+ {
+ "id": 7286,
+ "start": 4265.34,
+ "end": 4266.3,
+ "text": "Senator,"
+ },
+ {
+ "id": 7287,
+ "start": 4266.3,
+ "end": 4266.44,
+ "text": "we"
+ },
+ {
+ "id": 7288,
+ "start": 4266.44,
+ "end": 4266.6,
+ "text": "run"
+ },
+ {
+ "id": 7289,
+ "start": 4266.6,
+ "end": 4266.88,
+ "text": "ads."
+ },
+ {
+ "id": 7290,
+ "start": 4266.88,
+ "end": 4269.22,
+ "text": "I"
+ },
+ {
+ "id": 7291,
+ "start": 4269.22,
+ "end": 4269.78,
+ "text": "see"
+ },
+ {
+ "id": 7292,
+ "start": 4269.78,
+ "end": 4270.76,
+ "text": "that's"
+ },
+ {
+ "id": 7293,
+ "start": 4270.76,
+ "end": 4271.02,
+ "text": "great."
+ },
+ {
+ "id": 7294,
+ "start": 4271.02,
+ "end": 4271.4,
+ "text": "Whenever"
+ },
+ {
+ "id": 7295,
+ "start": 4271.4,
+ "end": 4271.48,
+ "text": "a"
+ },
+ {
+ "id": 7296,
+ "start": 4271.48,
+ "end": 4272.1,
+ "text": "controversy"
+ },
+ {
+ "id": 7297,
+ "start": 4272.1,
+ "end": 4272.34,
+ "text": "like"
+ },
+ {
+ "id": 7298,
+ "start": 4272.34,
+ "end": 4272.52,
+ "text": "this"
+ },
+ {
+ "id": 7299,
+ "start": 4272.52,
+ "end": 4273.04,
+ "text": "arises"
+ },
+ {
+ "id": 7300,
+ "start": 4273.04,
+ "end": 4273.26,
+ "text": "there's"
+ },
+ {
+ "id": 7301,
+ "start": 4273.26,
+ "end": 4273.5,
+ "text": "always"
+ },
+ {
+ "id": 7302,
+ "start": 4273.5,
+ "end": 4273.6,
+ "text": "a"
+ },
+ {
+ "id": 7303,
+ "start": 4273.6,
+ "end": 4273.98,
+ "text": "danger"
+ },
+ {
+ "id": 7304,
+ "start": 4273.98,
+ "end": 4274.18,
+ "text": "that"
+ },
+ {
+ "id": 7305,
+ "start": 4274.18,
+ "end": 4274.82,
+ "text": "Congress's"
+ },
+ {
+ "id": 7306,
+ "start": 4274.82,
+ "end": 4275.66,
+ "text": "response"
+ },
+ {
+ "id": 7307,
+ "start": 4275.66,
+ "end": 4276.62,
+ "text": "will"
+ },
+ {
+ "id": 7308,
+ "start": 4276.62,
+ "end": 4276.74,
+ "text": "be"
+ },
+ {
+ "id": 7309,
+ "start": 4276.74,
+ "end": 4276.9,
+ "text": "to"
+ },
+ {
+ "id": 7310,
+ "start": 4276.9,
+ "end": 4277.2,
+ "text": "step"
+ },
+ {
+ "id": 7311,
+ "start": 4277.2,
+ "end": 4277.52,
+ "text": "in"
+ },
+ {
+ "id": 7312,
+ "start": 4277.52,
+ "end": 4278.06,
+ "text": "and"
+ },
+ {
+ "id": 7313,
+ "start": 4278.06,
+ "end": 4278.36,
+ "text": "over"
+ },
+ {
+ "id": 7314,
+ "start": 4278.36,
+ "end": 4278.88,
+ "text": "regulate"
+ },
+ {
+ "id": 7315,
+ "start": 4278.88,
+ "end": 4279.79,
+ "text": "that's"
+ },
+ {
+ "id": 7316,
+ "start": 4279.79,
+ "end": 4280.11,
+ "text": "the"
+ },
+ {
+ "id": 7317,
+ "start": 4280.11,
+ "end": 4280.55,
+ "text": "experience"
+ },
+ {
+ "id": 7318,
+ "start": 4280.55,
+ "end": 4280.71,
+ "text": "that"
+ },
+ {
+ "id": 7319,
+ "start": 4280.71,
+ "end": 4280.89,
+ "text": "I've"
+ },
+ {
+ "id": 7320,
+ "start": 4280.89,
+ "end": 4281.01,
+ "text": "had"
+ },
+ {
+ "id": 7321,
+ "start": 4281.01,
+ "end": 4281.29,
+ "text": "in"
+ },
+ {
+ "id": 7322,
+ "start": 4281.29,
+ "end": 4281.43,
+ "text": "my"
+ },
+ {
+ "id": 7323,
+ "start": 4281.43,
+ "end": 4281.99,
+ "text": "42"
+ },
+ {
+ "id": 7324,
+ "start": 4281.99,
+ "end": 4282.25,
+ "text": "years"
+ },
+ {
+ "id": 7325,
+ "start": 4282.25,
+ "end": 4282.49,
+ "text": "here."
+ },
+ {
+ "id": 7326,
+ "start": 4282.49,
+ "end": 4283.27,
+ "text": "In"
+ },
+ {
+ "id": 7327,
+ "start": 4283.27,
+ "end": 4283.47,
+ "text": "your"
+ },
+ {
+ "id": 7328,
+ "start": 4283.47,
+ "end": 4283.71,
+ "text": "view,"
+ },
+ {
+ "id": 7329,
+ "start": 4283.71,
+ "end": 4283.93,
+ "text": "what"
+ },
+ {
+ "id": 7330,
+ "start": 4283.93,
+ "end": 4284.17,
+ "text": "sorts"
+ },
+ {
+ "id": 7331,
+ "start": 4284.17,
+ "end": 4284.27,
+ "text": "of"
+ },
+ {
+ "id": 7332,
+ "start": 4284.27,
+ "end": 4284.87,
+ "text": "legislative"
+ },
+ {
+ "id": 7333,
+ "start": 4284.87,
+ "end": 4285.21,
+ "text": "changes"
+ },
+ {
+ "id": 7334,
+ "start": 4285.21,
+ "end": 4285.41,
+ "text": "would"
+ },
+ {
+ "id": 7335,
+ "start": 4285.41,
+ "end": 4285.61,
+ "text": "help"
+ },
+ {
+ "id": 7336,
+ "start": 4285.61,
+ "end": 4285.71,
+ "text": "to"
+ },
+ {
+ "id": 7337,
+ "start": 4285.71,
+ "end": 4286.03,
+ "text": "solve"
+ },
+ {
+ "id": 7338,
+ "start": 4286.03,
+ "end": 4286.17,
+ "text": "the"
+ },
+ {
+ "id": 7339,
+ "start": 4286.17,
+ "end": 4286.59,
+ "text": "problems"
+ },
+ {
+ "id": 7340,
+ "start": 4286.59,
+ "end": 4286.75,
+ "text": "the"
+ },
+ {
+ "id": 7341,
+ "start": 4286.75,
+ "end": 4287.21,
+ "text": "Cambridge"
+ },
+ {
+ "id": 7342,
+ "start": 4287.21,
+ "end": 4287.69,
+ "text": "Analytica"
+ },
+ {
+ "id": 7343,
+ "start": 4287.69,
+ "end": 4288.11,
+ "text": "story"
+ },
+ {
+ "id": 7344,
+ "start": 4288.11,
+ "end": 4288.31,
+ "text": "has"
+ },
+ {
+ "id": 7345,
+ "start": 4288.31,
+ "end": 4288.85,
+ "text": "revealed"
+ },
+ {
+ "id": 7346,
+ "start": 4288.85,
+ "end": 4289.51,
+ "text": "and"
+ },
+ {
+ "id": 7347,
+ "start": 4289.51,
+ "end": 4289.71,
+ "text": "what"
+ },
+ {
+ "id": 7348,
+ "start": 4289.71,
+ "end": 4290.07,
+ "text": "sorts"
+ },
+ {
+ "id": 7349,
+ "start": 4290.07,
+ "end": 4290.21,
+ "text": "of"
+ },
+ {
+ "id": 7350,
+ "start": 4290.21,
+ "end": 4290.85,
+ "text": "legislative"
+ },
+ {
+ "id": 7351,
+ "start": 4290.85,
+ "end": 4291.29,
+ "text": "changes"
+ },
+ {
+ "id": 7352,
+ "start": 4291.29,
+ "end": 4291.63,
+ "text": "would"
+ },
+ {
+ "id": 7353,
+ "start": 4291.63,
+ "end": 4292.39,
+ "text": "not"
+ },
+ {
+ "id": 7354,
+ "start": 4292.39,
+ "end": 4292.71,
+ "text": "help"
+ },
+ {
+ "id": 7355,
+ "start": 4292.71,
+ "end": 4292.93,
+ "text": "to"
+ },
+ {
+ "id": 7356,
+ "start": 4292.93,
+ "end": 4293.27,
+ "text": "solve"
+ },
+ {
+ "id": 7357,
+ "start": 4293.27,
+ "end": 4293.47,
+ "text": "this"
+ },
+ {
+ "id": 7358,
+ "start": 4293.47,
+ "end": 4295.64,
+ "text": "issue."
+ },
+ {
+ "id": 7359,
+ "start": 4295.64,
+ "end": 4296.64,
+ "text": "Senator,"
+ },
+ {
+ "id": 7360,
+ "start": 4296.64,
+ "end": 4296.7,
+ "text": "I"
+ },
+ {
+ "id": 7361,
+ "start": 4296.7,
+ "end": 4296.86,
+ "text": "think"
+ },
+ {
+ "id": 7362,
+ "start": 4296.86,
+ "end": 4297,
+ "text": "that"
+ },
+ {
+ "id": 7363,
+ "start": 4297,
+ "end": 4297.14,
+ "text": "there"
+ },
+ {
+ "id": 7364,
+ "start": 4297.14,
+ "end": 4297.26,
+ "text": "are"
+ },
+ {
+ "id": 7365,
+ "start": 4297.26,
+ "end": 4297.32,
+ "text": "a"
+ },
+ {
+ "id": 7366,
+ "start": 4297.32,
+ "end": 4297.6,
+ "text": "few"
+ },
+ {
+ "id": 7367,
+ "start": 4297.6,
+ "end": 4298.36,
+ "text": "categories"
+ },
+ {
+ "id": 7368,
+ "start": 4298.36,
+ "end": 4298.84,
+ "text": "of"
+ },
+ {
+ "id": 7369,
+ "start": 4298.84,
+ "end": 4299.82,
+ "text": "legislation"
+ },
+ {
+ "id": 7370,
+ "start": 4299.82,
+ "end": 4301.2,
+ "text": "that"
+ },
+ {
+ "id": 7371,
+ "start": 4301.2,
+ "end": 4301.38,
+ "text": "makes"
+ },
+ {
+ "id": 7372,
+ "start": 4301.38,
+ "end": 4301.62,
+ "text": "sense"
+ },
+ {
+ "id": 7373,
+ "start": 4301.62,
+ "end": 4301.78,
+ "text": "to"
+ },
+ {
+ "id": 7374,
+ "start": 4301.78,
+ "end": 4302.28,
+ "text": "consider"
+ },
+ {
+ "id": 7375,
+ "start": 4302.28,
+ "end": 4303.04,
+ "text": "around"
+ },
+ {
+ "id": 7376,
+ "start": 4303.04,
+ "end": 4303.58,
+ "text": "privacy."
+ },
+ {
+ "id": 7377,
+ "start": 4303.58,
+ "end": 4305.18,
+ "text": "Specifically,"
+ },
+ {
+ "id": 7378,
+ "start": 4305.18,
+ "end": 4306.14,
+ "text": "there"
+ },
+ {
+ "id": 7379,
+ "start": 4306.14,
+ "end": 4306.26,
+ "text": "are"
+ },
+ {
+ "id": 7380,
+ "start": 4306.26,
+ "end": 4306.3,
+ "text": "a"
+ },
+ {
+ "id": 7381,
+ "start": 4306.3,
+ "end": 4306.42,
+ "text": "few"
+ },
+ {
+ "id": 7382,
+ "start": 4306.42,
+ "end": 4306.96,
+ "text": "principles"
+ },
+ {
+ "id": 7383,
+ "start": 4306.96,
+ "end": 4307.14,
+ "text": "that"
+ },
+ {
+ "id": 7384,
+ "start": 4307.14,
+ "end": 4307.2,
+ "text": "I"
+ },
+ {
+ "id": 7385,
+ "start": 4307.2,
+ "end": 4307.42,
+ "text": "think"
+ },
+ {
+ "id": 7386,
+ "start": 4307.42,
+ "end": 4307.54,
+ "text": "it"
+ },
+ {
+ "id": 7387,
+ "start": 4307.54,
+ "end": 4307.74,
+ "text": "would"
+ },
+ {
+ "id": 7388,
+ "start": 4307.74,
+ "end": 4307.86,
+ "text": "be"
+ },
+ {
+ "id": 7389,
+ "start": 4307.86,
+ "end": 4308.22,
+ "text": "useful"
+ },
+ {
+ "id": 7390,
+ "start": 4308.22,
+ "end": 4308.74,
+ "text": "to"
+ },
+ {
+ "id": 7391,
+ "start": 4308.74,
+ "end": 4309.2,
+ "text": "discuss"
+ },
+ {
+ "id": 7392,
+ "start": 4309.2,
+ "end": 4310.04,
+ "text": "and"
+ },
+ {
+ "id": 7393,
+ "start": 4310.04,
+ "end": 4311,
+ "text": "potentially"
+ },
+ {
+ "id": 7394,
+ "start": 4311,
+ "end": 4311.46,
+ "text": "codify"
+ },
+ {
+ "id": 7395,
+ "start": 4311.46,
+ "end": 4311.8,
+ "text": "into"
+ },
+ {
+ "id": 7396,
+ "start": 4311.8,
+ "end": 4312.08,
+ "text": "law"
+ },
+ {
+ "id": 7397,
+ "start": 4312.08,
+ "end": 4313.14,
+ "text": "one"
+ },
+ {
+ "id": 7398,
+ "start": 4313.14,
+ "end": 4313.64,
+ "text": "is"
+ },
+ {
+ "id": 7399,
+ "start": 4313.64,
+ "end": 4314.64,
+ "text": "around"
+ },
+ {
+ "id": 7400,
+ "start": 4314.64,
+ "end": 4315.04,
+ "text": "having"
+ },
+ {
+ "id": 7401,
+ "start": 4315.04,
+ "end": 4315.12,
+ "text": "a"
+ },
+ {
+ "id": 7402,
+ "start": 4315.12,
+ "end": 4315.64,
+ "text": "simple"
+ },
+ {
+ "id": 7403,
+ "start": 4315.64,
+ "end": 4315.88,
+ "text": "and"
+ },
+ {
+ "id": 7404,
+ "start": 4315.88,
+ "end": 4317.26,
+ "text": "practical"
+ },
+ {
+ "id": 7405,
+ "start": 4317.26,
+ "end": 4318.16,
+ "text": "set"
+ },
+ {
+ "id": 7406,
+ "start": 4318.16,
+ "end": 4318.44,
+ "text": "of"
+ },
+ {
+ "id": 7407,
+ "start": 4318.44,
+ "end": 4319.44,
+ "text": "ways"
+ },
+ {
+ "id": 7408,
+ "start": 4319.44,
+ "end": 4319.58,
+ "text": "that"
+ },
+ {
+ "id": 7409,
+ "start": 4319.58,
+ "end": 4319.68,
+ "text": "you"
+ },
+ {
+ "id": 7410,
+ "start": 4319.68,
+ "end": 4320.06,
+ "text": "explain"
+ },
+ {
+ "id": 7411,
+ "start": 4320.06,
+ "end": 4320.2,
+ "text": "what"
+ },
+ {
+ "id": 7412,
+ "start": 4320.2,
+ "end": 4320.4,
+ "text": "you're"
+ },
+ {
+ "id": 7413,
+ "start": 4320.4,
+ "end": 4320.56,
+ "text": "doing"
+ },
+ {
+ "id": 7414,
+ "start": 4320.56,
+ "end": 4320.7,
+ "text": "with"
+ },
+ {
+ "id": 7415,
+ "start": 4320.7,
+ "end": 4320.98,
+ "text": "data."
+ },
+ {
+ "id": 7416,
+ "start": 4320.98,
+ "end": 4321.4,
+ "text": "And"
+ },
+ {
+ "id": 7417,
+ "start": 4321.4,
+ "end": 4321.48,
+ "text": "we"
+ },
+ {
+ "id": 7418,
+ "start": 4321.48,
+ "end": 4321.7,
+ "text": "talked"
+ },
+ {
+ "id": 7419,
+ "start": 4321.7,
+ "end": 4321.78,
+ "text": "a"
+ },
+ {
+ "id": 7420,
+ "start": 4321.78,
+ "end": 4321.98,
+ "text": "little"
+ },
+ {
+ "id": 7421,
+ "start": 4321.98,
+ "end": 4322.08,
+ "text": "bit"
+ },
+ {
+ "id": 7422,
+ "start": 4322.08,
+ "end": 4322.38,
+ "text": "earlier"
+ },
+ {
+ "id": 7423,
+ "start": 4322.38,
+ "end": 4322.88,
+ "text": "around"
+ },
+ {
+ "id": 7424,
+ "start": 4322.88,
+ "end": 4323.54,
+ "text": "the"
+ },
+ {
+ "id": 7425,
+ "start": 4323.54,
+ "end": 4324.22,
+ "text": "complexity"
+ },
+ {
+ "id": 7426,
+ "start": 4324.22,
+ "end": 4324.34,
+ "text": "of"
+ },
+ {
+ "id": 7427,
+ "start": 4324.34,
+ "end": 4324.68,
+ "text": "laying"
+ },
+ {
+ "id": 7428,
+ "start": 4324.68,
+ "end": 4324.92,
+ "text": "out"
+ },
+ {
+ "id": 7429,
+ "start": 4324.92,
+ "end": 4325.34,
+ "text": "the"
+ },
+ {
+ "id": 7430,
+ "start": 4325.34,
+ "end": 4325.9,
+ "text": "it's"
+ },
+ {
+ "id": 7431,
+ "start": 4325.9,
+ "end": 4325.96,
+ "text": "a"
+ },
+ {
+ "id": 7432,
+ "start": 4325.96,
+ "end": 4326.22,
+ "text": "long"
+ },
+ {
+ "id": 7433,
+ "start": 4326.22,
+ "end": 4326.74,
+ "text": "privacy"
+ },
+ {
+ "id": 7434,
+ "start": 4326.74,
+ "end": 4327.18,
+ "text": "policy"
+ },
+ {
+ "id": 7435,
+ "start": 4327.18,
+ "end": 4328.18,
+ "text": "it's"
+ },
+ {
+ "id": 7436,
+ "start": 4328.18,
+ "end": 4328.56,
+ "text": "hard"
+ },
+ {
+ "id": 7437,
+ "start": 4328.56,
+ "end": 4328.86,
+ "text": "to"
+ },
+ {
+ "id": 7438,
+ "start": 4328.86,
+ "end": 4329.12,
+ "text": "say"
+ },
+ {
+ "id": 7439,
+ "start": 4329.12,
+ "end": 4329.28,
+ "text": "that"
+ },
+ {
+ "id": 7440,
+ "start": 4329.28,
+ "end": 4329.7,
+ "text": "people,"
+ },
+ {
+ "id": 7441,
+ "start": 4329.7,
+ "end": 4330.14,
+ "text": "you"
+ },
+ {
+ "id": 7442,
+ "start": 4330.14,
+ "end": 4330.26,
+ "text": "know,"
+ },
+ {
+ "id": 7443,
+ "start": 4330.26,
+ "end": 4330.5,
+ "text": "fully"
+ },
+ {
+ "id": 7444,
+ "start": 4330.5,
+ "end": 4330.94,
+ "text": "understand"
+ },
+ {
+ "id": 7445,
+ "start": 4330.94,
+ "end": 4331.26,
+ "text": "something"
+ },
+ {
+ "id": 7446,
+ "start": 4331.26,
+ "end": 4331.4,
+ "text": "when"
+ },
+ {
+ "id": 7447,
+ "start": 4331.4,
+ "end": 4331.56,
+ "text": "it's"
+ },
+ {
+ "id": 7448,
+ "start": 4331.56,
+ "end": 4331.8,
+ "text": "only"
+ },
+ {
+ "id": 7449,
+ "start": 4331.8,
+ "end": 4332.08,
+ "text": "written"
+ },
+ {
+ "id": 7450,
+ "start": 4332.08,
+ "end": 4332.2,
+ "text": "out"
+ },
+ {
+ "id": 7451,
+ "start": 4332.2,
+ "end": 4332.3,
+ "text": "in"
+ },
+ {
+ "id": 7452,
+ "start": 4332.3,
+ "end": 4332.4,
+ "text": "a"
+ },
+ {
+ "id": 7453,
+ "start": 4332.4,
+ "end": 4332.6,
+ "text": "long"
+ },
+ {
+ "id": 7454,
+ "start": 4332.6,
+ "end": 4332.9,
+ "text": "legal"
+ },
+ {
+ "id": 7455,
+ "start": 4332.9,
+ "end": 4333.34,
+ "text": "document,"
+ },
+ {
+ "id": 7456,
+ "start": 4333.34,
+ "end": 4333.58,
+ "text": "this"
+ },
+ {
+ "id": 7457,
+ "start": 4333.58,
+ "end": 4333.9,
+ "text": "the"
+ },
+ {
+ "id": 7458,
+ "start": 4333.9,
+ "end": 4334.1,
+ "text": "stuff"
+ },
+ {
+ "id": 7459,
+ "start": 4334.1,
+ "end": 4334.38,
+ "text": "needs"
+ },
+ {
+ "id": 7460,
+ "start": 4334.38,
+ "end": 4334.52,
+ "text": "to"
+ },
+ {
+ "id": 7461,
+ "start": 4334.52,
+ "end": 4334.74,
+ "text": "be"
+ },
+ {
+ "id": 7462,
+ "start": 4334.74,
+ "end": 4335.72,
+ "text": "implemented"
+ },
+ {
+ "id": 7463,
+ "start": 4335.72,
+ "end": 4335.84,
+ "text": "in"
+ },
+ {
+ "id": 7464,
+ "start": 4335.84,
+ "end": 4335.92,
+ "text": "a"
+ },
+ {
+ "id": 7465,
+ "start": 4335.92,
+ "end": 4336.04,
+ "text": "way"
+ },
+ {
+ "id": 7466,
+ "start": 4336.04,
+ "end": 4336.22,
+ "text": "where"
+ },
+ {
+ "id": 7467,
+ "start": 4336.22,
+ "end": 4336.46,
+ "text": "people"
+ },
+ {
+ "id": 7468,
+ "start": 4336.46,
+ "end": 4336.6,
+ "text": "can"
+ },
+ {
+ "id": 7469,
+ "start": 4336.6,
+ "end": 4336.86,
+ "text": "actually"
+ },
+ {
+ "id": 7470,
+ "start": 4336.86,
+ "end": 4337.28,
+ "text": "understand"
+ },
+ {
+ "id": 7471,
+ "start": 4337.28,
+ "end": 4337.4,
+ "text": "it"
+ },
+ {
+ "id": 7472,
+ "start": 4337.4,
+ "end": 4337.6,
+ "text": "where"
+ },
+ {
+ "id": 7473,
+ "start": 4337.6,
+ "end": 4338.16,
+ "text": "consumers"
+ },
+ {
+ "id": 7474,
+ "start": 4338.16,
+ "end": 4338.52,
+ "text": "can"
+ },
+ {
+ "id": 7475,
+ "start": 4338.52,
+ "end": 4338.96,
+ "text": "understand"
+ },
+ {
+ "id": 7476,
+ "start": 4338.96,
+ "end": 4339.12,
+ "text": "it."
+ },
+ {
+ "id": 7477,
+ "start": 4339.12,
+ "end": 4340.14,
+ "text": "But"
+ },
+ {
+ "id": 7478,
+ "start": 4340.14,
+ "end": 4340.3,
+ "text": "that"
+ },
+ {
+ "id": 7479,
+ "start": 4340.3,
+ "end": 4340.46,
+ "text": "can"
+ },
+ {
+ "id": 7480,
+ "start": 4340.46,
+ "end": 4341.36,
+ "text": "also"
+ },
+ {
+ "id": 7481,
+ "start": 4341.36,
+ "end": 4342.14,
+ "text": "capture"
+ },
+ {
+ "id": 7482,
+ "start": 4342.14,
+ "end": 4342.26,
+ "text": "all"
+ },
+ {
+ "id": 7483,
+ "start": 4342.26,
+ "end": 4342.36,
+ "text": "the"
+ },
+ {
+ "id": 7484,
+ "start": 4342.36,
+ "end": 4342.82,
+ "text": "nuances"
+ },
+ {
+ "id": 7485,
+ "start": 4342.82,
+ "end": 4343.12,
+ "text": "of"
+ },
+ {
+ "id": 7486,
+ "start": 4343.12,
+ "end": 4343.36,
+ "text": "how"
+ },
+ {
+ "id": 7487,
+ "start": 4343.36,
+ "end": 4344.36,
+ "text": "these"
+ },
+ {
+ "id": 7488,
+ "start": 4344.36,
+ "end": 4344.78,
+ "text": "services"
+ },
+ {
+ "id": 7489,
+ "start": 4344.78,
+ "end": 4345,
+ "text": "work"
+ },
+ {
+ "id": 7490,
+ "start": 4345,
+ "end": 4345.12,
+ "text": "in"
+ },
+ {
+ "id": 7491,
+ "start": 4345.12,
+ "end": 4345.2,
+ "text": "a"
+ },
+ {
+ "id": 7492,
+ "start": 4345.2,
+ "end": 4345.36,
+ "text": "way"
+ },
+ {
+ "id": 7493,
+ "start": 4345.36,
+ "end": 4345.52,
+ "text": "that"
+ },
+ {
+ "id": 7494,
+ "start": 4345.52,
+ "end": 4345.84,
+ "text": "doesn't"
+ },
+ {
+ "id": 7495,
+ "start": 4345.84,
+ "end": 4346.02,
+ "text": "that's"
+ },
+ {
+ "id": 7496,
+ "start": 4346.02,
+ "end": 4346.14,
+ "text": "not"
+ },
+ {
+ "id": 7497,
+ "start": 4346.14,
+ "end": 4346.5,
+ "text": "overly"
+ },
+ {
+ "id": 7498,
+ "start": 4346.5,
+ "end": 4346.98,
+ "text": "restrictive"
+ },
+ {
+ "id": 7499,
+ "start": 4346.98,
+ "end": 4347.7,
+ "text": "on"
+ },
+ {
+ "id": 7500,
+ "start": 4347.7,
+ "end": 4348.32,
+ "text": "providing"
+ },
+ {
+ "id": 7501,
+ "start": 4348.32,
+ "end": 4348.44,
+ "text": "the"
+ },
+ {
+ "id": 7502,
+ "start": 4348.44,
+ "end": 4348.88,
+ "text": "services"
+ },
+ {
+ "id": 7503,
+ "start": 4348.88,
+ "end": 4349.54,
+ "text": "that's"
+ },
+ {
+ "id": 7504,
+ "start": 4349.54,
+ "end": 4349.8,
+ "text": "one."
+ },
+ {
+ "id": 7505,
+ "start": 4349.8,
+ "end": 4350.46,
+ "text": "The"
+ },
+ {
+ "id": 7506,
+ "start": 4350.46,
+ "end": 4350.92,
+ "text": "second"
+ },
+ {
+ "id": 7507,
+ "start": 4350.92,
+ "end": 4352.02,
+ "text": "is"
+ },
+ {
+ "id": 7508,
+ "start": 4352.02,
+ "end": 4352.36,
+ "text": "around"
+ },
+ {
+ "id": 7509,
+ "start": 4352.36,
+ "end": 4352.62,
+ "text": "giving"
+ },
+ {
+ "id": 7510,
+ "start": 4352.62,
+ "end": 4352.92,
+ "text": "people"
+ },
+ {
+ "id": 7511,
+ "start": 4352.92,
+ "end": 4353.34,
+ "text": "complete"
+ },
+ {
+ "id": 7512,
+ "start": 4353.34,
+ "end": 4353.82,
+ "text": "control,"
+ },
+ {
+ "id": 7513,
+ "start": 4353.82,
+ "end": 4354.64,
+ "text": "this"
+ },
+ {
+ "id": 7514,
+ "start": 4354.64,
+ "end": 4354.76,
+ "text": "is"
+ },
+ {
+ "id": 7515,
+ "start": 4354.76,
+ "end": 4354.86,
+ "text": "the"
+ },
+ {
+ "id": 7516,
+ "start": 4354.86,
+ "end": 4355.11,
+ "text": "most"
+ },
+ {
+ "id": 7517,
+ "start": 4355.11,
+ "end": 4355.49,
+ "text": "important"
+ },
+ {
+ "id": 7518,
+ "start": 4355.49,
+ "end": 4355.93,
+ "text": "principle"
+ },
+ {
+ "id": 7519,
+ "start": 4355.93,
+ "end": 4356.13,
+ "text": "for"
+ },
+ {
+ "id": 7520,
+ "start": 4356.13,
+ "end": 4356.57,
+ "text": "Facebook."
+ },
+ {
+ "id": 7521,
+ "start": 4356.57,
+ "end": 4357.39,
+ "text": "Every"
+ },
+ {
+ "id": 7522,
+ "start": 4357.39,
+ "end": 4357.61,
+ "text": "piece"
+ },
+ {
+ "id": 7523,
+ "start": 4357.61,
+ "end": 4357.73,
+ "text": "of"
+ },
+ {
+ "id": 7524,
+ "start": 4357.73,
+ "end": 4358.15,
+ "text": "content"
+ },
+ {
+ "id": 7525,
+ "start": 4358.15,
+ "end": 4358.39,
+ "text": "that"
+ },
+ {
+ "id": 7526,
+ "start": 4358.39,
+ "end": 4358.53,
+ "text": "you"
+ },
+ {
+ "id": 7527,
+ "start": 4358.53,
+ "end": 4358.81,
+ "text": "share"
+ },
+ {
+ "id": 7528,
+ "start": 4358.81,
+ "end": 4359.05,
+ "text": "on"
+ },
+ {
+ "id": 7529,
+ "start": 4359.05,
+ "end": 4359.85,
+ "text": "Facebook,"
+ },
+ {
+ "id": 7530,
+ "start": 4359.85,
+ "end": 4360.87,
+ "text": "you"
+ },
+ {
+ "id": 7531,
+ "start": 4360.87,
+ "end": 4361.17,
+ "text": "own."
+ },
+ {
+ "id": 7532,
+ "start": 4361.17,
+ "end": 4361.65,
+ "text": "And"
+ },
+ {
+ "id": 7533,
+ "start": 4361.65,
+ "end": 4361.87,
+ "text": "you"
+ },
+ {
+ "id": 7534,
+ "start": 4361.87,
+ "end": 4362.03,
+ "text": "have"
+ },
+ {
+ "id": 7535,
+ "start": 4362.03,
+ "end": 4362.39,
+ "text": "complete"
+ },
+ {
+ "id": 7536,
+ "start": 4362.39,
+ "end": 4362.71,
+ "text": "control"
+ },
+ {
+ "id": 7537,
+ "start": 4362.71,
+ "end": 4362.97,
+ "text": "over"
+ },
+ {
+ "id": 7538,
+ "start": 4362.97,
+ "end": 4363.11,
+ "text": "who"
+ },
+ {
+ "id": 7539,
+ "start": 4363.11,
+ "end": 4363.51,
+ "text": "sees"
+ },
+ {
+ "id": 7540,
+ "start": 4363.51,
+ "end": 4363.65,
+ "text": "it"
+ },
+ {
+ "id": 7541,
+ "start": 4363.65,
+ "end": 4364.29,
+ "text": "and"
+ },
+ {
+ "id": 7542,
+ "start": 4364.29,
+ "end": 4364.59,
+ "text": "how"
+ },
+ {
+ "id": 7543,
+ "start": 4364.59,
+ "end": 4364.75,
+ "text": "you"
+ },
+ {
+ "id": 7544,
+ "start": 4364.75,
+ "end": 4364.97,
+ "text": "share"
+ },
+ {
+ "id": 7545,
+ "start": 4364.97,
+ "end": 4365.07,
+ "text": "it"
+ },
+ {
+ "id": 7546,
+ "start": 4365.07,
+ "end": 4365.23,
+ "text": "and"
+ },
+ {
+ "id": 7547,
+ "start": 4365.23,
+ "end": 4365.33,
+ "text": "you"
+ },
+ {
+ "id": 7548,
+ "start": 4365.33,
+ "end": 4365.47,
+ "text": "can"
+ },
+ {
+ "id": 7549,
+ "start": 4365.47,
+ "end": 4365.77,
+ "text": "remove"
+ },
+ {
+ "id": 7550,
+ "start": 4365.77,
+ "end": 4365.89,
+ "text": "it"
+ },
+ {
+ "id": 7551,
+ "start": 4365.89,
+ "end": 4366.11,
+ "text": "at"
+ },
+ {
+ "id": 7552,
+ "start": 4366.11,
+ "end": 4366.35,
+ "text": "any"
+ },
+ {
+ "id": 7553,
+ "start": 4366.35,
+ "end": 4366.69,
+ "text": "time"
+ },
+ {
+ "id": 7554,
+ "start": 4366.69,
+ "end": 4367.51,
+ "text": "that's"
+ },
+ {
+ "id": 7555,
+ "start": 4367.51,
+ "end": 4367.71,
+ "text": "why"
+ },
+ {
+ "id": 7556,
+ "start": 4367.71,
+ "end": 4368.23,
+ "text": "every"
+ },
+ {
+ "id": 7557,
+ "start": 4368.23,
+ "end": 4368.86,
+ "text": "day"
+ },
+ {
+ "id": 7558,
+ "start": 4368.86,
+ "end": 4369.42,
+ "text": "about"
+ },
+ {
+ "id": 7559,
+ "start": 4369.42,
+ "end": 4370.3,
+ "text": "100,000,000,000"
+ },
+ {
+ "id": 7560,
+ "start": 4370.3,
+ "end": 4370.68,
+ "text": "times"
+ },
+ {
+ "id": 7561,
+ "start": 4370.68,
+ "end": 4370.8,
+ "text": "a"
+ },
+ {
+ "id": 7562,
+ "start": 4370.8,
+ "end": 4371,
+ "text": "day,"
+ },
+ {
+ "id": 7563,
+ "start": 4371,
+ "end": 4371.94,
+ "text": "people"
+ },
+ {
+ "id": 7564,
+ "start": 4371.94,
+ "end": 4372.2,
+ "text": "come"
+ },
+ {
+ "id": 7565,
+ "start": 4372.2,
+ "end": 4372.36,
+ "text": "to"
+ },
+ {
+ "id": 7566,
+ "start": 4372.36,
+ "end": 4372.56,
+ "text": "one"
+ },
+ {
+ "id": 7567,
+ "start": 4372.56,
+ "end": 4372.64,
+ "text": "of"
+ },
+ {
+ "id": 7568,
+ "start": 4372.64,
+ "end": 4372.76,
+ "text": "our"
+ },
+ {
+ "id": 7569,
+ "start": 4372.76,
+ "end": 4373.28,
+ "text": "services"
+ },
+ {
+ "id": 7570,
+ "start": 4373.28,
+ "end": 4373.8,
+ "text": "and"
+ },
+ {
+ "id": 7571,
+ "start": 4373.8,
+ "end": 4374.52,
+ "text": "either"
+ },
+ {
+ "id": 7572,
+ "start": 4374.52,
+ "end": 4374.8,
+ "text": "post"
+ },
+ {
+ "id": 7573,
+ "start": 4374.8,
+ "end": 4374.9,
+ "text": "a"
+ },
+ {
+ "id": 7574,
+ "start": 4374.9,
+ "end": 4375.28,
+ "text": "photo"
+ },
+ {
+ "id": 7575,
+ "start": 4375.28,
+ "end": 4375.5,
+ "text": "or"
+ },
+ {
+ "id": 7576,
+ "start": 4375.5,
+ "end": 4375.74,
+ "text": "send"
+ },
+ {
+ "id": 7577,
+ "start": 4375.74,
+ "end": 4375.82,
+ "text": "a"
+ },
+ {
+ "id": 7578,
+ "start": 4375.82,
+ "end": 4376.18,
+ "text": "message"
+ },
+ {
+ "id": 7579,
+ "start": 4376.18,
+ "end": 4376.3,
+ "text": "to"
+ },
+ {
+ "id": 7580,
+ "start": 4376.3,
+ "end": 4376.66,
+ "text": "someone."
+ },
+ {
+ "id": 7581,
+ "start": 4376.66,
+ "end": 4377.26,
+ "text": "Because"
+ },
+ {
+ "id": 7582,
+ "start": 4377.26,
+ "end": 4377.4,
+ "text": "they"
+ },
+ {
+ "id": 7583,
+ "start": 4377.4,
+ "end": 4377.62,
+ "text": "know"
+ },
+ {
+ "id": 7584,
+ "start": 4377.62,
+ "end": 4378.18,
+ "text": "that"
+ },
+ {
+ "id": 7585,
+ "start": 4378.18,
+ "end": 4378.32,
+ "text": "they"
+ },
+ {
+ "id": 7586,
+ "start": 4378.32,
+ "end": 4378.48,
+ "text": "have"
+ },
+ {
+ "id": 7587,
+ "start": 4378.48,
+ "end": 4378.66,
+ "text": "that"
+ },
+ {
+ "id": 7588,
+ "start": 4378.66,
+ "end": 4379.14,
+ "text": "control"
+ },
+ {
+ "id": 7589,
+ "start": 4379.14,
+ "end": 4380.02,
+ "text": "and"
+ },
+ {
+ "id": 7590,
+ "start": 4380.02,
+ "end": 4380.2,
+ "text": "that"
+ },
+ {
+ "id": 7591,
+ "start": 4380.2,
+ "end": 4380.52,
+ "text": "who"
+ },
+ {
+ "id": 7592,
+ "start": 4380.52,
+ "end": 4380.68,
+ "text": "they"
+ },
+ {
+ "id": 7593,
+ "start": 4380.68,
+ "end": 4380.8,
+ "text": "say"
+ },
+ {
+ "id": 7594,
+ "start": 4380.8,
+ "end": 4381,
+ "text": "it's"
+ },
+ {
+ "id": 7595,
+ "start": 4381,
+ "end": 4381.14,
+ "text": "going"
+ },
+ {
+ "id": 7596,
+ "start": 4381.14,
+ "end": 4381.22,
+ "text": "to"
+ },
+ {
+ "id": 7597,
+ "start": 4381.22,
+ "end": 4381.32,
+ "text": "go"
+ },
+ {
+ "id": 7598,
+ "start": 4381.32,
+ "end": 4381.48,
+ "text": "to"
+ },
+ {
+ "id": 7599,
+ "start": 4381.48,
+ "end": 4381.68,
+ "text": "is"
+ },
+ {
+ "id": 7600,
+ "start": 4381.68,
+ "end": 4381.84,
+ "text": "going"
+ },
+ {
+ "id": 7601,
+ "start": 4381.84,
+ "end": 4381.92,
+ "text": "to"
+ },
+ {
+ "id": 7602,
+ "start": 4381.92,
+ "end": 4383.05,
+ "text": "be"
+ },
+ {
+ "id": 7603,
+ "start": 4383.05,
+ "end": 4383.15,
+ "text": "who"
+ },
+ {
+ "id": 7604,
+ "start": 4383.15,
+ "end": 4383.45,
+ "text": "sees"
+ },
+ {
+ "id": 7605,
+ "start": 4383.45,
+ "end": 4383.57,
+ "text": "the"
+ },
+ {
+ "id": 7606,
+ "start": 4383.57,
+ "end": 4383.89,
+ "text": "content"
+ },
+ {
+ "id": 7607,
+ "start": 4383.89,
+ "end": 4384.03,
+ "text": "and"
+ },
+ {
+ "id": 7608,
+ "start": 4384.03,
+ "end": 4384.07,
+ "text": "I"
+ },
+ {
+ "id": 7609,
+ "start": 4384.07,
+ "end": 4384.25,
+ "text": "think"
+ },
+ {
+ "id": 7610,
+ "start": 4384.25,
+ "end": 4384.35,
+ "text": "that"
+ },
+ {
+ "id": 7611,
+ "start": 4384.35,
+ "end": 4384.55,
+ "text": "that"
+ },
+ {
+ "id": 7612,
+ "start": 4384.55,
+ "end": 4384.99,
+ "text": "control"
+ },
+ {
+ "id": 7613,
+ "start": 4384.99,
+ "end": 4385.09,
+ "text": "is"
+ },
+ {
+ "id": 7614,
+ "start": 4385.09,
+ "end": 4385.35,
+ "text": "something"
+ },
+ {
+ "id": 7615,
+ "start": 4385.35,
+ "end": 4385.53,
+ "text": "that's"
+ },
+ {
+ "id": 7616,
+ "start": 4385.53,
+ "end": 4385.93,
+ "text": "important"
+ },
+ {
+ "id": 7617,
+ "start": 4385.93,
+ "end": 4386.17,
+ "text": "that"
+ },
+ {
+ "id": 7618,
+ "start": 4386.17,
+ "end": 4386.53,
+ "text": "I"
+ },
+ {
+ "id": 7619,
+ "start": 4386.53,
+ "end": 4386.71,
+ "text": "think"
+ },
+ {
+ "id": 7620,
+ "start": 4386.71,
+ "end": 4386.93,
+ "text": "should"
+ },
+ {
+ "id": 7621,
+ "start": 4386.93,
+ "end": 4387.35,
+ "text": "apply"
+ },
+ {
+ "id": 7622,
+ "start": 4387.35,
+ "end": 4387.57,
+ "text": "to"
+ },
+ {
+ "id": 7623,
+ "start": 4387.57,
+ "end": 4388.67,
+ "text": "every"
+ },
+ {
+ "id": 7624,
+ "start": 4388.67,
+ "end": 4389.01,
+ "text": "service"
+ },
+ {
+ "id": 7625,
+ "start": 4389.01,
+ "end": 4390.09,
+ "text": "and"
+ },
+ {
+ "id": 7626,
+ "start": 4390.09,
+ "end": 4390.83,
+ "text": "go"
+ },
+ {
+ "id": 7627,
+ "start": 4390.83,
+ "end": 4391.01,
+ "text": "ahead,"
+ },
+ {
+ "id": 7628,
+ "start": 4391.01,
+ "end": 4391.73,
+ "text": "the"
+ },
+ {
+ "id": 7629,
+ "start": 4391.73,
+ "end": 4391.97,
+ "text": "third"
+ },
+ {
+ "id": 7630,
+ "start": 4391.97,
+ "end": 4392.27,
+ "text": "point"
+ },
+ {
+ "id": 7631,
+ "start": 4392.27,
+ "end": 4392.85,
+ "text": "is"
+ },
+ {
+ "id": 7632,
+ "start": 4392.85,
+ "end": 4393.03,
+ "text": "just"
+ },
+ {
+ "id": 7633,
+ "start": 4393.03,
+ "end": 4393.35,
+ "text": "around"
+ },
+ {
+ "id": 7634,
+ "start": 4393.35,
+ "end": 4393.77,
+ "text": "enabling"
+ },
+ {
+ "id": 7635,
+ "start": 4393.77,
+ "end": 4394.29,
+ "text": "innovation"
+ },
+ {
+ "id": 7636,
+ "start": 4394.29,
+ "end": 4394.91,
+ "text": "because"
+ },
+ {
+ "id": 7637,
+ "start": 4394.91,
+ "end": 4395.09,
+ "text": "some"
+ },
+ {
+ "id": 7638,
+ "start": 4395.09,
+ "end": 4395.17,
+ "text": "of"
+ },
+ {
+ "id": 7639,
+ "start": 4395.17,
+ "end": 4395.39,
+ "text": "these"
+ },
+ {
+ "id": 7640,
+ "start": 4395.39,
+ "end": 4395.63,
+ "text": "use"
+ },
+ {
+ "id": 7641,
+ "start": 4395.63,
+ "end": 4396.09,
+ "text": "cases"
+ },
+ {
+ "id": 7642,
+ "start": 4396.09,
+ "end": 4397.24,
+ "text": "that"
+ },
+ {
+ "id": 7643,
+ "start": 4397.24,
+ "end": 4398.3,
+ "text": "that"
+ },
+ {
+ "id": 7644,
+ "start": 4398.3,
+ "end": 4398.7,
+ "text": "are"
+ },
+ {
+ "id": 7645,
+ "start": 4398.7,
+ "end": 4398.92,
+ "text": "very"
+ },
+ {
+ "id": 7646,
+ "start": 4398.92,
+ "end": 4399.36,
+ "text": "sensitive,"
+ },
+ {
+ "id": 7647,
+ "start": 4399.36,
+ "end": 4399.54,
+ "text": "like"
+ },
+ {
+ "id": 7648,
+ "start": 4399.54,
+ "end": 4399.82,
+ "text": "face"
+ },
+ {
+ "id": 7649,
+ "start": 4399.82,
+ "end": 4400.38,
+ "text": "recognition,"
+ },
+ {
+ "id": 7650,
+ "start": 4400.38,
+ "end": 4400.58,
+ "text": "for"
+ },
+ {
+ "id": 7651,
+ "start": 4400.58,
+ "end": 4400.98,
+ "text": "example."
+ },
+ {
+ "id": 7652,
+ "start": 4400.98,
+ "end": 4401.68,
+ "text": "And"
+ },
+ {
+ "id": 7653,
+ "start": 4401.68,
+ "end": 4401.86,
+ "text": "I"
+ },
+ {
+ "id": 7654,
+ "start": 4401.86,
+ "end": 4402.02,
+ "text": "think"
+ },
+ {
+ "id": 7655,
+ "start": 4402.02,
+ "end": 4402.16,
+ "text": "that"
+ },
+ {
+ "id": 7656,
+ "start": 4402.16,
+ "end": 4402.38,
+ "text": "there's"
+ },
+ {
+ "id": 7657,
+ "start": 4402.38,
+ "end": 4402.46,
+ "text": "a"
+ },
+ {
+ "id": 7658,
+ "start": 4402.46,
+ "end": 4402.84,
+ "text": "balance"
+ },
+ {
+ "id": 7659,
+ "start": 4402.84,
+ "end": 4403.1,
+ "text": "that's"
+ },
+ {
+ "id": 7660,
+ "start": 4403.1,
+ "end": 4403.6,
+ "text": "extremely"
+ },
+ {
+ "id": 7661,
+ "start": 4403.6,
+ "end": 4403.96,
+ "text": "important"
+ },
+ {
+ "id": 7662,
+ "start": 4403.96,
+ "end": 4404.06,
+ "text": "to"
+ },
+ {
+ "id": 7663,
+ "start": 4404.06,
+ "end": 4404.36,
+ "text": "strike"
+ },
+ {
+ "id": 7664,
+ "start": 4404.36,
+ "end": 4404.6,
+ "text": "here"
+ },
+ {
+ "id": 7665,
+ "start": 4404.6,
+ "end": 4405.28,
+ "text": "where"
+ },
+ {
+ "id": 7666,
+ "start": 4405.28,
+ "end": 4405.5,
+ "text": "you"
+ },
+ {
+ "id": 7667,
+ "start": 4405.5,
+ "end": 4406.62,
+ "text": "obtain"
+ },
+ {
+ "id": 7668,
+ "start": 4406.62,
+ "end": 4407.34,
+ "text": "special"
+ },
+ {
+ "id": 7669,
+ "start": 4407.34,
+ "end": 4407.86,
+ "text": "consent"
+ },
+ {
+ "id": 7670,
+ "start": 4407.86,
+ "end": 4408.7,
+ "text": "for"
+ },
+ {
+ "id": 7671,
+ "start": 4408.7,
+ "end": 4409.6,
+ "text": "sensitive"
+ },
+ {
+ "id": 7672,
+ "start": 4409.6,
+ "end": 4410.04,
+ "text": "features"
+ },
+ {
+ "id": 7673,
+ "start": 4410.04,
+ "end": 4410.28,
+ "text": "like"
+ },
+ {
+ "id": 7674,
+ "start": 4410.28,
+ "end": 4410.54,
+ "text": "face"
+ },
+ {
+ "id": 7675,
+ "start": 4410.54,
+ "end": 4411.14,
+ "text": "recognition."
+ },
+ {
+ "id": 7676,
+ "start": 4411.14,
+ "end": 4411.86,
+ "text": "But"
+ },
+ {
+ "id": 7677,
+ "start": 4411.86,
+ "end": 4412.92,
+ "text": "don't"
+ },
+ {
+ "id": 7678,
+ "start": 4412.92,
+ "end": 4413.5,
+ "text": "but"
+ },
+ {
+ "id": 7679,
+ "start": 4413.5,
+ "end": 4413.78,
+ "text": "we"
+ },
+ {
+ "id": 7680,
+ "start": 4413.78,
+ "end": 4414,
+ "text": "still"
+ },
+ {
+ "id": 7681,
+ "start": 4414,
+ "end": 4414.16,
+ "text": "need"
+ },
+ {
+ "id": 7682,
+ "start": 4414.16,
+ "end": 4414.24,
+ "text": "to"
+ },
+ {
+ "id": 7683,
+ "start": 4414.24,
+ "end": 4414.42,
+ "text": "make"
+ },
+ {
+ "id": 7684,
+ "start": 4414.42,
+ "end": 4414.52,
+ "text": "it"
+ },
+ {
+ "id": 7685,
+ "start": 4414.52,
+ "end": 4414.66,
+ "text": "so"
+ },
+ {
+ "id": 7686,
+ "start": 4414.66,
+ "end": 4414.82,
+ "text": "that"
+ },
+ {
+ "id": 7687,
+ "start": 4414.82,
+ "end": 4415.24,
+ "text": "American"
+ },
+ {
+ "id": 7688,
+ "start": 4415.24,
+ "end": 4415.7,
+ "text": "companies"
+ },
+ {
+ "id": 7689,
+ "start": 4415.7,
+ "end": 4415.92,
+ "text": "can"
+ },
+ {
+ "id": 7690,
+ "start": 4415.92,
+ "end": 4416.26,
+ "text": "innovate"
+ },
+ {
+ "id": 7691,
+ "start": 4416.26,
+ "end": 4416.34,
+ "text": "in"
+ },
+ {
+ "id": 7692,
+ "start": 4416.34,
+ "end": 4416.58,
+ "text": "those"
+ },
+ {
+ "id": 7693,
+ "start": 4416.58,
+ "end": 4416.96,
+ "text": "areas"
+ },
+ {
+ "id": 7694,
+ "start": 4416.96,
+ "end": 4417.52,
+ "text": "or"
+ },
+ {
+ "id": 7695,
+ "start": 4417.52,
+ "end": 4417.72,
+ "text": "else"
+ },
+ {
+ "id": 7696,
+ "start": 4417.72,
+ "end": 4417.92,
+ "text": "we're"
+ },
+ {
+ "id": 7697,
+ "start": 4417.92,
+ "end": 4418.08,
+ "text": "going"
+ },
+ {
+ "id": 7698,
+ "start": 4418.08,
+ "end": 4418.14,
+ "text": "to"
+ },
+ {
+ "id": 7699,
+ "start": 4418.14,
+ "end": 4418.38,
+ "text": "fall"
+ },
+ {
+ "id": 7700,
+ "start": 4418.38,
+ "end": 4418.72,
+ "text": "behind"
+ },
+ {
+ "id": 7701,
+ "start": 4418.72,
+ "end": 4419.16,
+ "text": "Chinese"
+ },
+ {
+ "id": 7702,
+ "start": 4419.16,
+ "end": 4419.8,
+ "text": "competitors"
+ },
+ {
+ "id": 7703,
+ "start": 4419.8,
+ "end": 4420.64,
+ "text": "and"
+ },
+ {
+ "id": 7704,
+ "start": 4420.64,
+ "end": 4420.94,
+ "text": "others"
+ },
+ {
+ "id": 7705,
+ "start": 4420.94,
+ "end": 4421.22,
+ "text": "around"
+ },
+ {
+ "id": 7706,
+ "start": 4421.22,
+ "end": 4421.36,
+ "text": "the"
+ },
+ {
+ "id": 7707,
+ "start": 4421.36,
+ "end": 4421.66,
+ "text": "world"
+ },
+ {
+ "id": 7708,
+ "start": 4421.66,
+ "end": 4422.12,
+ "text": "who"
+ },
+ {
+ "id": 7709,
+ "start": 4422.12,
+ "end": 4422.36,
+ "text": "have"
+ },
+ {
+ "id": 7710,
+ "start": 4422.36,
+ "end": 4422.76,
+ "text": "different"
+ },
+ {
+ "id": 7711,
+ "start": 4422.76,
+ "end": 4423.44,
+ "text": "regimes"
+ },
+ {
+ "id": 7712,
+ "start": 4423.44,
+ "end": 4424.4,
+ "text": "for"
+ },
+ {
+ "id": 7713,
+ "start": 4424.4,
+ "end": 4424.6,
+ "text": "for"
+ },
+ {
+ "id": 7714,
+ "start": 4424.6,
+ "end": 4424.98,
+ "text": "different"
+ },
+ {
+ "id": 7715,
+ "start": 4424.98,
+ "end": 4425.4,
+ "text": "new"
+ },
+ {
+ "id": 7716,
+ "start": 4425.4,
+ "end": 4426.28,
+ "text": "features"
+ },
+ {
+ "id": 7717,
+ "start": 4426.28,
+ "end": 4426.46,
+ "text": "like"
+ },
+ {
+ "id": 7718,
+ "start": 4426.46,
+ "end": 4426.68,
+ "text": "that."
+ },
+ {
+ "id": 7719,
+ "start": 4426.68,
+ "end": 4427.08,
+ "text": "So,"
+ },
+ {
+ "id": 7720,
+ "start": 4427.08,
+ "end": 4427.4,
+ "text": "under"
+ },
+ {
+ "id": 7721,
+ "start": 4427.4,
+ "end": 4427.62,
+ "text": "grant."
+ },
+ {
+ "id": 7722,
+ "start": 4427.62,
+ "end": 4428.56,
+ "text": "Well,"
+ },
+ {
+ "id": 7723,
+ "start": 4428.56,
+ "end": 4429.46,
+ "text": "thank"
+ },
+ {
+ "id": 7724,
+ "start": 4429.46,
+ "end": 4429.56,
+ "text": "you,"
+ },
+ {
+ "id": 7725,
+ "start": 4429.56,
+ "end": 4429.82,
+ "text": "Mr"
+ },
+ {
+ "id": 7726,
+ "start": 4429.82,
+ "end": 4430.2,
+ "text": "Chairman."
+ },
+ {
+ "id": 7727,
+ "start": 4430.2,
+ "end": 4430.56,
+ "text": "Welcome"
+ },
+ {
+ "id": 7728,
+ "start": 4430.56,
+ "end": 4430.84,
+ "text": "Mr"
+ },
+ {
+ "id": 7729,
+ "start": 4430.84,
+ "end": 4431.98,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 7730,
+ "start": 4431.98,
+ "end": 4432.96,
+ "text": "Do"
+ },
+ {
+ "id": 7731,
+ "start": 4432.96,
+ "end": 4433.06,
+ "text": "you"
+ },
+ {
+ "id": 7732,
+ "start": 4433.06,
+ "end": 4433.2,
+ "text": "know"
+ },
+ {
+ "id": 7733,
+ "start": 4433.2,
+ "end": 4433.32,
+ "text": "who"
+ },
+ {
+ "id": 7734,
+ "start": 4433.32,
+ "end": 4433.98,
+ "text": "Palantir"
+ },
+ {
+ "id": 7735,
+ "start": 4433.98,
+ "end": 4435.22,
+ "text": "is"
+ },
+ {
+ "id": 7736,
+ "start": 4435.22,
+ "end": 4436.22,
+ "text": "I"
+ },
+ {
+ "id": 7737,
+ "start": 4436.22,
+ "end": 4438.5,
+ "text": "do?"
+ },
+ {
+ "id": 7738,
+ "start": 4438.5,
+ "end": 4439.5,
+ "text": "Some"
+ },
+ {
+ "id": 7739,
+ "start": 4439.5,
+ "end": 4439.72,
+ "text": "people"
+ },
+ {
+ "id": 7740,
+ "start": 4439.72,
+ "end": 4439.88,
+ "text": "have"
+ },
+ {
+ "id": 7741,
+ "start": 4439.88,
+ "end": 4440.2,
+ "text": "referred"
+ },
+ {
+ "id": 7742,
+ "start": 4440.2,
+ "end": 4440.28,
+ "text": "to"
+ },
+ {
+ "id": 7743,
+ "start": 4440.28,
+ "end": 4440.48,
+ "text": "them"
+ },
+ {
+ "id": 7744,
+ "start": 4440.48,
+ "end": 4440.68,
+ "text": "as"
+ },
+ {
+ "id": 7745,
+ "start": 4440.68,
+ "end": 4440.82,
+ "text": "a"
+ },
+ {
+ "id": 7746,
+ "start": 4440.82,
+ "end": 4441.64,
+ "text": "Stanford"
+ },
+ {
+ "id": 7747,
+ "start": 4441.64,
+ "end": 4444.08,
+ "text": "analytic."
+ },
+ {
+ "id": 7748,
+ "start": 4444.08,
+ "end": 4445.82,
+ "text": "Do"
+ },
+ {
+ "id": 7749,
+ "start": 4445.82,
+ "end": 4445.94,
+ "text": "you"
+ },
+ {
+ "id": 7750,
+ "start": 4445.94,
+ "end": 4446.68,
+ "text": "agree,"
+ },
+ {
+ "id": 7751,
+ "start": 4446.68,
+ "end": 4447.66,
+ "text": "Senator?"
+ },
+ {
+ "id": 7752,
+ "start": 4447.66,
+ "end": 4447.74,
+ "text": "I"
+ },
+ {
+ "id": 7753,
+ "start": 4447.74,
+ "end": 4447.9,
+ "text": "have"
+ },
+ {
+ "id": 7754,
+ "start": 4447.9,
+ "end": 4448.04,
+ "text": "not"
+ },
+ {
+ "id": 7755,
+ "start": 4448.04,
+ "end": 4448.24,
+ "text": "heard"
+ },
+ {
+ "id": 7756,
+ "start": 4448.24,
+ "end": 4448.44,
+ "text": "that."
+ },
+ {
+ "id": 7757,
+ "start": 4448.44,
+ "end": 4449.2,
+ "text": "Okay,"
+ },
+ {
+ "id": 7758,
+ "start": 4449.2,
+ "end": 4449.52,
+ "text": "do"
+ },
+ {
+ "id": 7759,
+ "start": 4449.52,
+ "end": 4449.62,
+ "text": "you"
+ },
+ {
+ "id": 7760,
+ "start": 4449.62,
+ "end": 4449.82,
+ "text": "think"
+ },
+ {
+ "id": 7761,
+ "start": 4449.82,
+ "end": 4450.54,
+ "text": "Palantir"
+ },
+ {
+ "id": 7762,
+ "start": 4450.54,
+ "end": 4451.24,
+ "text": "taught"
+ },
+ {
+ "id": 7763,
+ "start": 4451.24,
+ "end": 4452.24,
+ "text": "Cambridge"
+ },
+ {
+ "id": 7764,
+ "start": 4452.24,
+ "end": 4452.9,
+ "text": "Analytica"
+ },
+ {
+ "id": 7765,
+ "start": 4452.9,
+ "end": 4453.3,
+ "text": "press"
+ },
+ {
+ "id": 7766,
+ "start": 4453.3,
+ "end": 4453.66,
+ "text": "reports"
+ },
+ {
+ "id": 7767,
+ "start": 4453.66,
+ "end": 4453.86,
+ "text": "are"
+ },
+ {
+ "id": 7768,
+ "start": 4453.86,
+ "end": 4454.18,
+ "text": "saying"
+ },
+ {
+ "id": 7769,
+ "start": 4454.18,
+ "end": 4455.18,
+ "text": "how"
+ },
+ {
+ "id": 7770,
+ "start": 4455.18,
+ "end": 4455.3,
+ "text": "to"
+ },
+ {
+ "id": 7771,
+ "start": 4455.3,
+ "end": 4455.46,
+ "text": "do"
+ },
+ {
+ "id": 7772,
+ "start": 4455.46,
+ "end": 4455.66,
+ "text": "these"
+ },
+ {
+ "id": 7773,
+ "start": 4455.66,
+ "end": 4457.56,
+ "text": "tactics,"
+ },
+ {
+ "id": 7774,
+ "start": 4457.56,
+ "end": 4458.54,
+ "text": "Senator,"
+ },
+ {
+ "id": 7775,
+ "start": 4458.54,
+ "end": 4458.6,
+ "text": "I"
+ },
+ {
+ "id": 7776,
+ "start": 4458.6,
+ "end": 4458.8,
+ "text": "don't"
+ },
+ {
+ "id": 7777,
+ "start": 4458.8,
+ "end": 4460,
+ "text": "know,"
+ },
+ {
+ "id": 7778,
+ "start": 4460,
+ "end": 4460.98,
+ "text": "do"
+ },
+ {
+ "id": 7779,
+ "start": 4460.98,
+ "end": 4461.12,
+ "text": "you"
+ },
+ {
+ "id": 7780,
+ "start": 4461.12,
+ "end": 4461.52,
+ "text": "think"
+ },
+ {
+ "id": 7781,
+ "start": 4461.52,
+ "end": 4461.88,
+ "text": "that"
+ },
+ {
+ "id": 7782,
+ "start": 4461.88,
+ "end": 4462.46,
+ "text": "Palantir"
+ },
+ {
+ "id": 7783,
+ "start": 4462.46,
+ "end": 4462.58,
+ "text": "has"
+ },
+ {
+ "id": 7784,
+ "start": 4462.58,
+ "end": 4462.84,
+ "text": "ever"
+ },
+ {
+ "id": 7785,
+ "start": 4462.84,
+ "end": 4463.12,
+ "text": "scrape"
+ },
+ {
+ "id": 7786,
+ "start": 4463.12,
+ "end": 4463.52,
+ "text": "data"
+ },
+ {
+ "id": 7787,
+ "start": 4463.52,
+ "end": 4463.94,
+ "text": "from"
+ },
+ {
+ "id": 7788,
+ "start": 4463.94,
+ "end": 4465.58,
+ "text": "Facebook?"
+ },
+ {
+ "id": 7789,
+ "start": 4465.58,
+ "end": 4466.56,
+ "text": "Senator"
+ },
+ {
+ "id": 7790,
+ "start": 4466.56,
+ "end": 4466.7,
+ "text": "I'm"
+ },
+ {
+ "id": 7791,
+ "start": 4466.7,
+ "end": 4466.84,
+ "text": "not"
+ },
+ {
+ "id": 7792,
+ "start": 4466.84,
+ "end": 4467.08,
+ "text": "aware"
+ },
+ {
+ "id": 7793,
+ "start": 4467.08,
+ "end": 4467.18,
+ "text": "of"
+ },
+ {
+ "id": 7794,
+ "start": 4467.18,
+ "end": 4469.26,
+ "text": "that,"
+ },
+ {
+ "id": 7795,
+ "start": 4469.26,
+ "end": 4471.14,
+ "text": "okay?"
+ },
+ {
+ "id": 7796,
+ "start": 4471.14,
+ "end": 4471.98,
+ "text": "Do"
+ },
+ {
+ "id": 7797,
+ "start": 4471.98,
+ "end": 4472.14,
+ "text": "you"
+ },
+ {
+ "id": 7798,
+ "start": 4472.14,
+ "end": 4472.58,
+ "text": "think"
+ },
+ {
+ "id": 7799,
+ "start": 4472.58,
+ "end": 4473.3,
+ "text": "that"
+ },
+ {
+ "id": 7800,
+ "start": 4473.3,
+ "end": 4474.24,
+ "text": "during"
+ },
+ {
+ "id": 7801,
+ "start": 4474.24,
+ "end": 4474.82,
+ "text": "the"
+ },
+ {
+ "id": 7802,
+ "start": 4474.82,
+ "end": 4475.8,
+ "text": "20"
+ },
+ {
+ "id": 7803,
+ "start": 4475.8,
+ "end": 4476.44,
+ "text": "16"
+ },
+ {
+ "id": 7804,
+ "start": 4476.44,
+ "end": 4477.1,
+ "text": "campaign"
+ },
+ {
+ "id": 7805,
+ "start": 4477.1,
+ "end": 4477.96,
+ "text": "as"
+ },
+ {
+ "id": 7806,
+ "start": 4477.96,
+ "end": 4478.4,
+ "text": "Cambridge"
+ },
+ {
+ "id": 7807,
+ "start": 4478.4,
+ "end": 4478.92,
+ "text": "Analytica"
+ },
+ {
+ "id": 7808,
+ "start": 4478.92,
+ "end": 4479.14,
+ "text": "is"
+ },
+ {
+ "id": 7809,
+ "start": 4479.14,
+ "end": 4479.58,
+ "text": "providing"
+ },
+ {
+ "id": 7810,
+ "start": 4479.58,
+ "end": 4480,
+ "text": "support"
+ },
+ {
+ "id": 7811,
+ "start": 4480,
+ "end": 4480.22,
+ "text": "to"
+ },
+ {
+ "id": 7812,
+ "start": 4480.22,
+ "end": 4480.34,
+ "text": "the"
+ },
+ {
+ "id": 7813,
+ "start": 4480.34,
+ "end": 4480.58,
+ "text": "Trump"
+ },
+ {
+ "id": 7814,
+ "start": 4480.58,
+ "end": 4481.18,
+ "text": "campaign"
+ },
+ {
+ "id": 7815,
+ "start": 4481.18,
+ "end": 4481.84,
+ "text": "under"
+ },
+ {
+ "id": 7816,
+ "start": 4481.84,
+ "end": 4482.3,
+ "text": "project"
+ },
+ {
+ "id": 7817,
+ "start": 4482.3,
+ "end": 4482.92,
+ "text": "Alamo."
+ },
+ {
+ "id": 7818,
+ "start": 4482.92,
+ "end": 4483.5,
+ "text": "Were"
+ },
+ {
+ "id": 7819,
+ "start": 4483.5,
+ "end": 4483.64,
+ "text": "there"
+ },
+ {
+ "id": 7820,
+ "start": 4483.64,
+ "end": 4483.96,
+ "text": "any"
+ },
+ {
+ "id": 7821,
+ "start": 4483.96,
+ "end": 4484.56,
+ "text": "Facebook"
+ },
+ {
+ "id": 7822,
+ "start": 4484.56,
+ "end": 4484.96,
+ "text": "people"
+ },
+ {
+ "id": 7823,
+ "start": 4484.96,
+ "end": 4485.48,
+ "text": "involved"
+ },
+ {
+ "id": 7824,
+ "start": 4485.48,
+ "end": 4485.72,
+ "text": "in"
+ },
+ {
+ "id": 7825,
+ "start": 4485.72,
+ "end": 4486.02,
+ "text": "that"
+ },
+ {
+ "id": 7826,
+ "start": 4486.02,
+ "end": 4486.64,
+ "text": "sharing"
+ },
+ {
+ "id": 7827,
+ "start": 4486.64,
+ "end": 4486.84,
+ "text": "of"
+ },
+ {
+ "id": 7828,
+ "start": 4486.84,
+ "end": 4487.8,
+ "text": "technique"
+ },
+ {
+ "id": 7829,
+ "start": 4487.8,
+ "end": 4487.92,
+ "text": "and"
+ },
+ {
+ "id": 7830,
+ "start": 4487.92,
+ "end": 4489.8,
+ "text": "information,"
+ },
+ {
+ "id": 7831,
+ "start": 4489.8,
+ "end": 4490.76,
+ "text": "Senator,"
+ },
+ {
+ "id": 7832,
+ "start": 4490.76,
+ "end": 4490.94,
+ "text": "we"
+ },
+ {
+ "id": 7833,
+ "start": 4490.94,
+ "end": 4491.48,
+ "text": "provided"
+ },
+ {
+ "id": 7834,
+ "start": 4491.48,
+ "end": 4492,
+ "text": "support"
+ },
+ {
+ "id": 7835,
+ "start": 4492,
+ "end": 4492.34,
+ "text": "to"
+ },
+ {
+ "id": 7836,
+ "start": 4492.34,
+ "end": 4492.54,
+ "text": "the"
+ },
+ {
+ "id": 7837,
+ "start": 4492.54,
+ "end": 4492.86,
+ "text": "Trump"
+ },
+ {
+ "id": 7838,
+ "start": 4492.86,
+ "end": 4493.36,
+ "text": "Campaign"
+ },
+ {
+ "id": 7839,
+ "start": 4493.36,
+ "end": 4494.3,
+ "text": "similar"
+ },
+ {
+ "id": 7840,
+ "start": 4494.3,
+ "end": 4494.48,
+ "text": "to"
+ },
+ {
+ "id": 7841,
+ "start": 4494.48,
+ "end": 4494.72,
+ "text": "what"
+ },
+ {
+ "id": 7842,
+ "start": 4494.72,
+ "end": 4494.92,
+ "text": "we"
+ },
+ {
+ "id": 7843,
+ "start": 4494.92,
+ "end": 4495.52,
+ "text": "provide"
+ },
+ {
+ "id": 7844,
+ "start": 4495.52,
+ "end": 4495.8,
+ "text": "to"
+ },
+ {
+ "id": 7845,
+ "start": 4495.8,
+ "end": 4496.64,
+ "text": "any"
+ },
+ {
+ "id": 7846,
+ "start": 4496.64,
+ "end": 4497.42,
+ "text": "advertiser"
+ },
+ {
+ "id": 7847,
+ "start": 4497.42,
+ "end": 4497.78,
+ "text": "or"
+ },
+ {
+ "id": 7848,
+ "start": 4497.78,
+ "end": 4498.44,
+ "text": "campaign."
+ },
+ {
+ "id": 7849,
+ "start": 4498.44,
+ "end": 4499.64,
+ "text": "Who"
+ },
+ {
+ "id": 7850,
+ "start": 4499.64,
+ "end": 4499.92,
+ "text": "asks"
+ },
+ {
+ "id": 7851,
+ "start": 4499.92,
+ "end": 4500.1,
+ "text": "for"
+ },
+ {
+ "id": 7852,
+ "start": 4500.1,
+ "end": 4500.22,
+ "text": "it."
+ },
+ {
+ "id": 7853,
+ "start": 4500.22,
+ "end": 4500.74,
+ "text": "So"
+ },
+ {
+ "id": 7854,
+ "start": 4500.74,
+ "end": 4500.94,
+ "text": "that"
+ },
+ {
+ "id": 7855,
+ "start": 4500.94,
+ "end": 4501.1,
+ "text": "was"
+ },
+ {
+ "id": 7856,
+ "start": 4501.1,
+ "end": 4501.16,
+ "text": "a"
+ },
+ {
+ "id": 7857,
+ "start": 4501.16,
+ "end": 4502.06,
+ "text": "yes."
+ },
+ {
+ "id": 7858,
+ "start": 4502.06,
+ "end": 4502.78,
+ "text": "Is"
+ },
+ {
+ "id": 7859,
+ "start": 4502.78,
+ "end": 4502.92,
+ "text": "that"
+ },
+ {
+ "id": 7860,
+ "start": 4502.92,
+ "end": 4503.52,
+ "text": "yes,"
+ },
+ {
+ "id": 7861,
+ "start": 4503.52,
+ "end": 4504.5,
+ "text": "Senator."
+ },
+ {
+ "id": 7862,
+ "start": 4504.5,
+ "end": 4504.62,
+ "text": "Can"
+ },
+ {
+ "id": 7863,
+ "start": 4504.62,
+ "end": 4504.72,
+ "text": "you"
+ },
+ {
+ "id": 7864,
+ "start": 4504.72,
+ "end": 4504.96,
+ "text": "repeat"
+ },
+ {
+ "id": 7865,
+ "start": 4504.96,
+ "end": 4505.08,
+ "text": "the"
+ },
+ {
+ "id": 7866,
+ "start": 4505.08,
+ "end": 4505.5,
+ "text": "specific"
+ },
+ {
+ "id": 7867,
+ "start": 4505.5,
+ "end": 4505.82,
+ "text": "question?"
+ },
+ {
+ "id": 7868,
+ "start": 4505.82,
+ "end": 4505.96,
+ "text": "I"
+ },
+ {
+ "id": 7869,
+ "start": 4505.96,
+ "end": 4506.18,
+ "text": "just"
+ },
+ {
+ "id": 7870,
+ "start": 4506.18,
+ "end": 4506.3,
+ "text": "want"
+ },
+ {
+ "id": 7871,
+ "start": 4506.3,
+ "end": 4506.38,
+ "text": "to"
+ },
+ {
+ "id": 7872,
+ "start": 4506.38,
+ "end": 4506.48,
+ "text": "make"
+ },
+ {
+ "id": 7873,
+ "start": 4506.48,
+ "end": 4506.6,
+ "text": "sure"
+ },
+ {
+ "id": 7874,
+ "start": 4506.6,
+ "end": 4506.74,
+ "text": "I"
+ },
+ {
+ "id": 7875,
+ "start": 4506.74,
+ "end": 4507.38,
+ "text": "get"
+ },
+ {
+ "id": 7876,
+ "start": 4507.38,
+ "end": 4507.88,
+ "text": "specifically"
+ },
+ {
+ "id": 7877,
+ "start": 4507.88,
+ "end": 4507.98,
+ "text": "what"
+ },
+ {
+ "id": 7878,
+ "start": 4507.98,
+ "end": 4508.14,
+ "text": "you're"
+ },
+ {
+ "id": 7879,
+ "start": 4508.14,
+ "end": 4508.38,
+ "text": "asking"
+ },
+ {
+ "id": 7880,
+ "start": 4508.38,
+ "end": 4508.88,
+ "text": "during"
+ },
+ {
+ "id": 7881,
+ "start": 4508.88,
+ "end": 4509.02,
+ "text": "the"
+ },
+ {
+ "id": 7882,
+ "start": 4509.02,
+ "end": 4509.38,
+ "text": "20"
+ },
+ {
+ "id": 7883,
+ "start": 4509.38,
+ "end": 4510.06,
+ "text": "16"
+ },
+ {
+ "id": 7884,
+ "start": 4510.06,
+ "end": 4510.84,
+ "text": "campaign."
+ },
+ {
+ "id": 7885,
+ "start": 4510.84,
+ "end": 4511.96,
+ "text": "Cambridge"
+ },
+ {
+ "id": 7886,
+ "start": 4511.96,
+ "end": 4512.72,
+ "text": "Analytica"
+ },
+ {
+ "id": 7887,
+ "start": 4512.72,
+ "end": 4513.06,
+ "text": "worked"
+ },
+ {
+ "id": 7888,
+ "start": 4513.06,
+ "end": 4513.24,
+ "text": "with"
+ },
+ {
+ "id": 7889,
+ "start": 4513.24,
+ "end": 4513.36,
+ "text": "the"
+ },
+ {
+ "id": 7890,
+ "start": 4513.36,
+ "end": 4513.66,
+ "text": "Trump"
+ },
+ {
+ "id": 7891,
+ "start": 4513.66,
+ "end": 4514.32,
+ "text": "campaign"
+ },
+ {
+ "id": 7892,
+ "start": 4514.32,
+ "end": 4514.8,
+ "text": "to"
+ },
+ {
+ "id": 7893,
+ "start": 4514.8,
+ "end": 4515.34,
+ "text": "refine"
+ },
+ {
+ "id": 7894,
+ "start": 4515.34,
+ "end": 4516.1,
+ "text": "tactics"
+ },
+ {
+ "id": 7895,
+ "start": 4516.1,
+ "end": 4516.58,
+ "text": "and"
+ },
+ {
+ "id": 7896,
+ "start": 4516.58,
+ "end": 4516.94,
+ "text": "were"
+ },
+ {
+ "id": 7897,
+ "start": 4516.94,
+ "end": 4517.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 7898,
+ "start": 4517.5,
+ "end": 4518.33,
+ "text": "employees"
+ },
+ {
+ "id": 7899,
+ "start": 4518.33,
+ "end": 4518.61,
+ "text": "in"
+ },
+ {
+ "id": 7900,
+ "start": 4518.61,
+ "end": 4519.97,
+ "text": "that,"
+ },
+ {
+ "id": 7901,
+ "start": 4519.97,
+ "end": 4520.95,
+ "text": "Senator,"
+ },
+ {
+ "id": 7902,
+ "start": 4520.95,
+ "end": 4521.29,
+ "text": "I"
+ },
+ {
+ "id": 7903,
+ "start": 4521.29,
+ "end": 4521.53,
+ "text": "don't"
+ },
+ {
+ "id": 7904,
+ "start": 4521.53,
+ "end": 4521.69,
+ "text": "know"
+ },
+ {
+ "id": 7905,
+ "start": 4521.69,
+ "end": 4521.99,
+ "text": "that"
+ },
+ {
+ "id": 7906,
+ "start": 4521.99,
+ "end": 4522.15,
+ "text": "our"
+ },
+ {
+ "id": 7907,
+ "start": 4522.15,
+ "end": 4522.55,
+ "text": "employees"
+ },
+ {
+ "id": 7908,
+ "start": 4522.55,
+ "end": 4522.75,
+ "text": "were"
+ },
+ {
+ "id": 7909,
+ "start": 4522.75,
+ "end": 4523.05,
+ "text": "involved"
+ },
+ {
+ "id": 7910,
+ "start": 4523.05,
+ "end": 4523.25,
+ "text": "with"
+ },
+ {
+ "id": 7911,
+ "start": 4523.25,
+ "end": 4523.71,
+ "text": "Cambridge"
+ },
+ {
+ "id": 7912,
+ "start": 4523.71,
+ "end": 4524.11,
+ "text": "Analytica."
+ },
+ {
+ "id": 7913,
+ "start": 4524.11,
+ "end": 4524.59,
+ "text": "Although."
+ },
+ {
+ "id": 7914,
+ "start": 4524.59,
+ "end": 4524.65,
+ "text": "I"
+ },
+ {
+ "id": 7915,
+ "start": 4524.65,
+ "end": 4524.83,
+ "text": "know"
+ },
+ {
+ "id": 7916,
+ "start": 4524.83,
+ "end": 4524.97,
+ "text": "that"
+ },
+ {
+ "id": 7917,
+ "start": 4524.97,
+ "end": 4525.09,
+ "text": "we"
+ },
+ {
+ "id": 7918,
+ "start": 4525.09,
+ "end": 4525.37,
+ "text": "did"
+ },
+ {
+ "id": 7919,
+ "start": 4525.37,
+ "end": 4525.83,
+ "text": "help"
+ },
+ {
+ "id": 7920,
+ "start": 4525.83,
+ "end": 4525.97,
+ "text": "out"
+ },
+ {
+ "id": 7921,
+ "start": 4525.97,
+ "end": 4526.15,
+ "text": "the"
+ },
+ {
+ "id": 7922,
+ "start": 4526.15,
+ "end": 4526.37,
+ "text": "Trump"
+ },
+ {
+ "id": 7923,
+ "start": 4526.37,
+ "end": 4526.75,
+ "text": "Campaign"
+ },
+ {
+ "id": 7924,
+ "start": 4526.75,
+ "end": 4527.35,
+ "text": "overall"
+ },
+ {
+ "id": 7925,
+ "start": 4527.35,
+ "end": 4527.61,
+ "text": "and"
+ },
+ {
+ "id": 7926,
+ "start": 4527.61,
+ "end": 4528.01,
+ "text": "sales"
+ },
+ {
+ "id": 7927,
+ "start": 4528.01,
+ "end": 4528.35,
+ "text": "support"
+ },
+ {
+ "id": 7928,
+ "start": 4528.35,
+ "end": 4528.43,
+ "text": "in"
+ },
+ {
+ "id": 7929,
+ "start": 4528.43,
+ "end": 4528.55,
+ "text": "the"
+ },
+ {
+ "id": 7930,
+ "start": 4528.55,
+ "end": 4528.73,
+ "text": "same"
+ },
+ {
+ "id": 7931,
+ "start": 4528.73,
+ "end": 4528.83,
+ "text": "way"
+ },
+ {
+ "id": 7932,
+ "start": 4528.83,
+ "end": 4528.97,
+ "text": "that"
+ },
+ {
+ "id": 7933,
+ "start": 4528.97,
+ "end": 4529.05,
+ "text": "we"
+ },
+ {
+ "id": 7934,
+ "start": 4529.05,
+ "end": 4529.17,
+ "text": "do"
+ },
+ {
+ "id": 7935,
+ "start": 4529.17,
+ "end": 4529.31,
+ "text": "with"
+ },
+ {
+ "id": 7936,
+ "start": 4529.31,
+ "end": 4529.53,
+ "text": "other"
+ },
+ {
+ "id": 7937,
+ "start": 4529.53,
+ "end": 4529.97,
+ "text": "campaigns."
+ },
+ {
+ "id": 7938,
+ "start": 4529.97,
+ "end": 4530.85,
+ "text": "So"
+ },
+ {
+ "id": 7939,
+ "start": 4530.85,
+ "end": 4531.43,
+ "text": "they"
+ },
+ {
+ "id": 7940,
+ "start": 4531.43,
+ "end": 4531.59,
+ "text": "may"
+ },
+ {
+ "id": 7941,
+ "start": 4531.59,
+ "end": 4531.73,
+ "text": "have"
+ },
+ {
+ "id": 7942,
+ "start": 4531.73,
+ "end": 4531.87,
+ "text": "been"
+ },
+ {
+ "id": 7943,
+ "start": 4531.87,
+ "end": 4532.15,
+ "text": "involved"
+ },
+ {
+ "id": 7944,
+ "start": 4532.15,
+ "end": 4532.29,
+ "text": "in"
+ },
+ {
+ "id": 7945,
+ "start": 4532.29,
+ "end": 4532.47,
+ "text": "all"
+ },
+ {
+ "id": 7946,
+ "start": 4532.47,
+ "end": 4532.83,
+ "text": "working"
+ },
+ {
+ "id": 7947,
+ "start": 4532.83,
+ "end": 4533.17,
+ "text": "together"
+ },
+ {
+ "id": 7948,
+ "start": 4533.17,
+ "end": 4533.41,
+ "text": "during"
+ },
+ {
+ "id": 7949,
+ "start": 4533.41,
+ "end": 4533.55,
+ "text": "that"
+ },
+ {
+ "id": 7950,
+ "start": 4533.55,
+ "end": 4533.79,
+ "text": "time"
+ },
+ {
+ "id": 7951,
+ "start": 4533.79,
+ "end": 4534.6,
+ "text": "period."
+ },
+ {
+ "id": 7952,
+ "start": 4534.6,
+ "end": 4535.28,
+ "text": "Maybe"
+ },
+ {
+ "id": 7953,
+ "start": 4535.28,
+ "end": 4535.5,
+ "text": "that's"
+ },
+ {
+ "id": 7954,
+ "start": 4535.5,
+ "end": 4535.74,
+ "text": "something"
+ },
+ {
+ "id": 7955,
+ "start": 4535.74,
+ "end": 4535.9,
+ "text": "your"
+ },
+ {
+ "id": 7956,
+ "start": 4535.9,
+ "end": 4536.46,
+ "text": "investigation"
+ },
+ {
+ "id": 7957,
+ "start": 4536.46,
+ "end": 4536.7,
+ "text": "will"
+ },
+ {
+ "id": 7958,
+ "start": 4536.7,
+ "end": 4536.86,
+ "text": "find"
+ },
+ {
+ "id": 7959,
+ "start": 4536.86,
+ "end": 4537.4,
+ "text": "out."
+ },
+ {
+ "id": 7960,
+ "start": 4537.4,
+ "end": 4538.38,
+ "text": "Senator."
+ },
+ {
+ "id": 7961,
+ "start": 4538.38,
+ "end": 4538.84,
+ "text": "I"
+ },
+ {
+ "id": 7962,
+ "start": 4538.84,
+ "end": 4539.02,
+ "text": "can"
+ },
+ {
+ "id": 7963,
+ "start": 4539.02,
+ "end": 4539.36,
+ "text": "certainly"
+ },
+ {
+ "id": 7964,
+ "start": 4539.36,
+ "end": 4539.52,
+ "text": "have"
+ },
+ {
+ "id": 7965,
+ "start": 4539.52,
+ "end": 4539.64,
+ "text": "my"
+ },
+ {
+ "id": 7966,
+ "start": 4539.64,
+ "end": 4539.84,
+ "text": "team"
+ },
+ {
+ "id": 7967,
+ "start": 4539.84,
+ "end": 4540.02,
+ "text": "get"
+ },
+ {
+ "id": 7968,
+ "start": 4540.02,
+ "end": 4540.2,
+ "text": "back"
+ },
+ {
+ "id": 7969,
+ "start": 4540.2,
+ "end": 4540.32,
+ "text": "to"
+ },
+ {
+ "id": 7970,
+ "start": 4540.32,
+ "end": 4540.58,
+ "text": "you"
+ },
+ {
+ "id": 7971,
+ "start": 4540.58,
+ "end": 4541.06,
+ "text": "on"
+ },
+ {
+ "id": 7972,
+ "start": 4541.06,
+ "end": 4541.32,
+ "text": "any"
+ },
+ {
+ "id": 7973,
+ "start": 4541.32,
+ "end": 4541.8,
+ "text": "specifics."
+ },
+ {
+ "id": 7974,
+ "start": 4541.8,
+ "end": 4542.04,
+ "text": "There"
+ },
+ {
+ "id": 7975,
+ "start": 4542.04,
+ "end": 4542.18,
+ "text": "that"
+ },
+ {
+ "id": 7976,
+ "start": 4542.18,
+ "end": 4542.24,
+ "text": "I"
+ },
+ {
+ "id": 7977,
+ "start": 4542.24,
+ "end": 4542.44,
+ "text": "don't"
+ },
+ {
+ "id": 7978,
+ "start": 4542.44,
+ "end": 4542.68,
+ "text": "know"
+ },
+ {
+ "id": 7979,
+ "start": 4542.68,
+ "end": 4543.26,
+ "text": "sitting"
+ },
+ {
+ "id": 7980,
+ "start": 4543.26,
+ "end": 4543.42,
+ "text": "here"
+ },
+ {
+ "id": 7981,
+ "start": 4543.42,
+ "end": 4543.68,
+ "text": "today."
+ },
+ {
+ "id": 7982,
+ "start": 4543.68,
+ "end": 4544.14,
+ "text": "Have"
+ },
+ {
+ "id": 7983,
+ "start": 4544.14,
+ "end": 4544.26,
+ "text": "you"
+ },
+ {
+ "id": 7984,
+ "start": 4544.26,
+ "end": 4544.48,
+ "text": "heard"
+ },
+ {
+ "id": 7985,
+ "start": 4544.48,
+ "end": 4544.58,
+ "text": "of"
+ },
+ {
+ "id": 7986,
+ "start": 4544.58,
+ "end": 4545.08,
+ "text": "total"
+ },
+ {
+ "id": 7987,
+ "start": 4545.08,
+ "end": 4545.72,
+ "text": "Information"
+ },
+ {
+ "id": 7988,
+ "start": 4545.72,
+ "end": 4546.16,
+ "text": "awareness?"
+ },
+ {
+ "id": 7989,
+ "start": 4546.16,
+ "end": 4546.46,
+ "text": "Do"
+ },
+ {
+ "id": 7990,
+ "start": 4546.46,
+ "end": 4546.56,
+ "text": "you"
+ },
+ {
+ "id": 7991,
+ "start": 4546.56,
+ "end": 4546.66,
+ "text": "know"
+ },
+ {
+ "id": 7992,
+ "start": 4546.66,
+ "end": 4546.78,
+ "text": "what"
+ },
+ {
+ "id": 7993,
+ "start": 4546.78,
+ "end": 4546.86,
+ "text": "I'm"
+ },
+ {
+ "id": 7994,
+ "start": 4546.86,
+ "end": 4547.12,
+ "text": "talking"
+ },
+ {
+ "id": 7995,
+ "start": 4547.12,
+ "end": 4547.88,
+ "text": "about?"
+ },
+ {
+ "id": 7996,
+ "start": 4547.88,
+ "end": 4548.54,
+ "text": "No,"
+ },
+ {
+ "id": 7997,
+ "start": 4548.54,
+ "end": 4548.6,
+ "text": "I"
+ },
+ {
+ "id": 7998,
+ "start": 4548.6,
+ "end": 4548.72,
+ "text": "do"
+ },
+ {
+ "id": 7999,
+ "start": 4548.72,
+ "end": 4548.92,
+ "text": "not."
+ },
+ {
+ "id": 8000,
+ "start": 4548.92,
+ "end": 4549.84,
+ "text": "Okay,"
+ },
+ {
+ "id": 8001,
+ "start": 4549.84,
+ "end": 4550.82,
+ "text": "total"
+ },
+ {
+ "id": 8002,
+ "start": 4550.82,
+ "end": 4551.38,
+ "text": "Information"
+ },
+ {
+ "id": 8003,
+ "start": 4551.38,
+ "end": 4551.98,
+ "text": "awareness"
+ },
+ {
+ "id": 8004,
+ "start": 4551.98,
+ "end": 4552.9,
+ "text": "was"
+ },
+ {
+ "id": 8005,
+ "start": 4552.9,
+ "end": 4554.76,
+ "text": "2,003"
+ },
+ {
+ "id": 8006,
+ "start": 4554.76,
+ "end": 4555.7,
+ "text": "John"
+ },
+ {
+ "id": 8007,
+ "start": 4555.7,
+ "end": 4556.1,
+ "text": "Ashcroft"
+ },
+ {
+ "id": 8008,
+ "start": 4556.1,
+ "end": 4556.26,
+ "text": "and"
+ },
+ {
+ "id": 8009,
+ "start": 4556.26,
+ "end": 4556.42,
+ "text": "other"
+ },
+ {
+ "id": 8010,
+ "start": 4556.42,
+ "end": 4556.56,
+ "text": "is"
+ },
+ {
+ "id": 8011,
+ "start": 4556.56,
+ "end": 4556.76,
+ "text": "trying"
+ },
+ {
+ "id": 8012,
+ "start": 4556.76,
+ "end": 4556.86,
+ "text": "to"
+ },
+ {
+ "id": 8013,
+ "start": 4556.86,
+ "end": 4557.1,
+ "text": "do"
+ },
+ {
+ "id": 8014,
+ "start": 4557.1,
+ "end": 4557.7,
+ "text": "similar"
+ },
+ {
+ "id": 8015,
+ "start": 4557.7,
+ "end": 4558.14,
+ "text": "things"
+ },
+ {
+ "id": 8016,
+ "start": 4558.14,
+ "end": 4558.3,
+ "text": "to"
+ },
+ {
+ "id": 8017,
+ "start": 4558.3,
+ "end": 4558.46,
+ "text": "what"
+ },
+ {
+ "id": 8018,
+ "start": 4558.46,
+ "end": 4558.58,
+ "text": "I"
+ },
+ {
+ "id": 8019,
+ "start": 4558.58,
+ "end": 4558.8,
+ "text": "think"
+ },
+ {
+ "id": 8020,
+ "start": 4558.8,
+ "end": 4559.06,
+ "text": "is"
+ },
+ {
+ "id": 8021,
+ "start": 4559.06,
+ "end": 4559.94,
+ "text": "behind"
+ },
+ {
+ "id": 8022,
+ "start": 4559.94,
+ "end": 4560.14,
+ "text": "all"
+ },
+ {
+ "id": 8023,
+ "start": 4560.14,
+ "end": 4560.24,
+ "text": "of"
+ },
+ {
+ "id": 8024,
+ "start": 4560.24,
+ "end": 4560.96,
+ "text": "this"
+ },
+ {
+ "id": 8025,
+ "start": 4560.96,
+ "end": 4561.96,
+ "text": "geopolitical"
+ },
+ {
+ "id": 8026,
+ "start": 4561.96,
+ "end": 4562.48,
+ "text": "forces"
+ },
+ {
+ "id": 8027,
+ "start": 4562.48,
+ "end": 4562.78,
+ "text": "trying"
+ },
+ {
+ "id": 8028,
+ "start": 4562.78,
+ "end": 4562.88,
+ "text": "to"
+ },
+ {
+ "id": 8029,
+ "start": 4562.88,
+ "end": 4563.04,
+ "text": "get"
+ },
+ {
+ "id": 8030,
+ "start": 4563.04,
+ "end": 4563.53,
+ "text": "data"
+ },
+ {
+ "id": 8031,
+ "start": 4563.53,
+ "end": 4564.23,
+ "text": "information"
+ },
+ {
+ "id": 8032,
+ "start": 4564.23,
+ "end": 4564.45,
+ "text": "to"
+ },
+ {
+ "id": 8033,
+ "start": 4564.45,
+ "end": 4565.33,
+ "text": "influence"
+ },
+ {
+ "id": 8034,
+ "start": 4565.33,
+ "end": 4565.81,
+ "text": "a"
+ },
+ {
+ "id": 8035,
+ "start": 4565.81,
+ "end": 4566.41,
+ "text": "process,"
+ },
+ {
+ "id": 8036,
+ "start": 4566.41,
+ "end": 4567.35,
+ "text": "so"
+ },
+ {
+ "id": 8037,
+ "start": 4567.35,
+ "end": 4567.73,
+ "text": "when"
+ },
+ {
+ "id": 8038,
+ "start": 4567.73,
+ "end": 4567.81,
+ "text": "I"
+ },
+ {
+ "id": 8039,
+ "start": 4567.81,
+ "end": 4568.03,
+ "text": "look"
+ },
+ {
+ "id": 8040,
+ "start": 4568.03,
+ "end": 4568.23,
+ "text": "at"
+ },
+ {
+ "id": 8041,
+ "start": 4568.23,
+ "end": 4569.41,
+ "text": "volunteer"
+ },
+ {
+ "id": 8042,
+ "start": 4569.41,
+ "end": 4569.55,
+ "text": "and"
+ },
+ {
+ "id": 8043,
+ "start": 4569.55,
+ "end": 4569.69,
+ "text": "what"
+ },
+ {
+ "id": 8044,
+ "start": 4569.69,
+ "end": 4569.97,
+ "text": "they're"
+ },
+ {
+ "id": 8045,
+ "start": 4569.97,
+ "end": 4570.31,
+ "text": "doing?"
+ },
+ {
+ "id": 8046,
+ "start": 4570.31,
+ "end": 4570.71,
+ "text": "And"
+ },
+ {
+ "id": 8047,
+ "start": 4570.71,
+ "end": 4570.83,
+ "text": "I"
+ },
+ {
+ "id": 8048,
+ "start": 4570.83,
+ "end": 4571.01,
+ "text": "look"
+ },
+ {
+ "id": 8049,
+ "start": 4571.01,
+ "end": 4571.15,
+ "text": "at"
+ },
+ {
+ "id": 8050,
+ "start": 4571.15,
+ "end": 4571.39,
+ "text": "what"
+ },
+ {
+ "id": 8051,
+ "start": 4571.39,
+ "end": 4571.85,
+ "text": "app,"
+ },
+ {
+ "id": 8052,
+ "start": 4571.85,
+ "end": 4572.41,
+ "text": "which"
+ },
+ {
+ "id": 8053,
+ "start": 4572.41,
+ "end": 4572.55,
+ "text": "is"
+ },
+ {
+ "id": 8054,
+ "start": 4572.55,
+ "end": 4572.87,
+ "text": "another"
+ },
+ {
+ "id": 8055,
+ "start": 4572.87,
+ "end": 4574.16,
+ "text": "acquisition."
+ },
+ {
+ "id": 8056,
+ "start": 4574.16,
+ "end": 4574.82,
+ "text": "And"
+ },
+ {
+ "id": 8057,
+ "start": 4574.82,
+ "end": 4574.9,
+ "text": "I"
+ },
+ {
+ "id": 8058,
+ "start": 4574.9,
+ "end": 4575.12,
+ "text": "look"
+ },
+ {
+ "id": 8059,
+ "start": 4575.12,
+ "end": 4575.28,
+ "text": "at"
+ },
+ {
+ "id": 8060,
+ "start": 4575.28,
+ "end": 4575.56,
+ "text": "where"
+ },
+ {
+ "id": 8061,
+ "start": 4575.56,
+ "end": 4576.34,
+ "text": "you"
+ },
+ {
+ "id": 8062,
+ "start": 4576.34,
+ "end": 4576.58,
+ "text": "are"
+ },
+ {
+ "id": 8063,
+ "start": 4576.58,
+ "end": 4576.98,
+ "text": "from"
+ },
+ {
+ "id": 8064,
+ "start": 4576.98,
+ "end": 4577.24,
+ "text": "the"
+ },
+ {
+ "id": 8065,
+ "start": 4577.24,
+ "end": 4578.74,
+ "text": "2,011"
+ },
+ {
+ "id": 8066,
+ "start": 4578.74,
+ "end": 4579.72,
+ "text": "consent"
+ },
+ {
+ "id": 8067,
+ "start": 4579.72,
+ "end": 4580.14,
+ "text": "decree"
+ },
+ {
+ "id": 8068,
+ "start": 4580.14,
+ "end": 4580.98,
+ "text": "and"
+ },
+ {
+ "id": 8069,
+ "start": 4580.98,
+ "end": 4581.2,
+ "text": "where"
+ },
+ {
+ "id": 8070,
+ "start": 4581.2,
+ "end": 4581.36,
+ "text": "you"
+ },
+ {
+ "id": 8071,
+ "start": 4581.36,
+ "end": 4581.52,
+ "text": "are"
+ },
+ {
+ "id": 8072,
+ "start": 4581.52,
+ "end": 4581.92,
+ "text": "today."
+ },
+ {
+ "id": 8073,
+ "start": 4581.92,
+ "end": 4582.74,
+ "text": "I'm"
+ },
+ {
+ "id": 8074,
+ "start": 4582.74,
+ "end": 4583.68,
+ "text": "thinking"
+ },
+ {
+ "id": 8075,
+ "start": 4583.68,
+ "end": 4584.26,
+ "text": "is"
+ },
+ {
+ "id": 8076,
+ "start": 4584.26,
+ "end": 4584.52,
+ "text": "this"
+ },
+ {
+ "id": 8077,
+ "start": 4584.52,
+ "end": 4584.7,
+ "text": "guy"
+ },
+ {
+ "id": 8078,
+ "start": 4584.7,
+ "end": 4585.64,
+ "text": "Outfoxing"
+ },
+ {
+ "id": 8079,
+ "start": 4585.64,
+ "end": 4585.76,
+ "text": "the"
+ },
+ {
+ "id": 8080,
+ "start": 4585.76,
+ "end": 4586.36,
+ "text": "foxes"
+ },
+ {
+ "id": 8081,
+ "start": 4586.36,
+ "end": 4586.74,
+ "text": "or"
+ },
+ {
+ "id": 8082,
+ "start": 4586.74,
+ "end": 4587.1,
+ "text": "is"
+ },
+ {
+ "id": 8083,
+ "start": 4587.1,
+ "end": 4587.54,
+ "text": "he"
+ },
+ {
+ "id": 8084,
+ "start": 4587.54,
+ "end": 4588.6,
+ "text": "going"
+ },
+ {
+ "id": 8085,
+ "start": 4588.6,
+ "end": 4589.14,
+ "text": "along"
+ },
+ {
+ "id": 8086,
+ "start": 4589.14,
+ "end": 4589.36,
+ "text": "with"
+ },
+ {
+ "id": 8087,
+ "start": 4589.36,
+ "end": 4589.56,
+ "text": "what"
+ },
+ {
+ "id": 8088,
+ "start": 4589.56,
+ "end": 4589.96,
+ "text": "is"
+ },
+ {
+ "id": 8089,
+ "start": 4589.96,
+ "end": 4590.24,
+ "text": "a"
+ },
+ {
+ "id": 8090,
+ "start": 4590.24,
+ "end": 4590.88,
+ "text": "major"
+ },
+ {
+ "id": 8091,
+ "start": 4590.88,
+ "end": 4591.3,
+ "text": "trend"
+ },
+ {
+ "id": 8092,
+ "start": 4591.3,
+ "end": 4591.44,
+ "text": "in"
+ },
+ {
+ "id": 8093,
+ "start": 4591.44,
+ "end": 4591.56,
+ "text": "an"
+ },
+ {
+ "id": 8094,
+ "start": 4591.56,
+ "end": 4592.16,
+ "text": "information"
+ },
+ {
+ "id": 8095,
+ "start": 4592.16,
+ "end": 4592.54,
+ "text": "age"
+ },
+ {
+ "id": 8096,
+ "start": 4592.54,
+ "end": 4592.72,
+ "text": "to"
+ },
+ {
+ "id": 8097,
+ "start": 4592.72,
+ "end": 4592.96,
+ "text": "try"
+ },
+ {
+ "id": 8098,
+ "start": 4592.96,
+ "end": 4593.08,
+ "text": "to"
+ },
+ {
+ "id": 8099,
+ "start": 4593.08,
+ "end": 4593.58,
+ "text": "harvest"
+ },
+ {
+ "id": 8100,
+ "start": 4593.58,
+ "end": 4594.5,
+ "text": "information"
+ },
+ {
+ "id": 8101,
+ "start": 4594.5,
+ "end": 4595.36,
+ "text": "for"
+ },
+ {
+ "id": 8102,
+ "start": 4595.36,
+ "end": 4595.88,
+ "text": "political"
+ },
+ {
+ "id": 8103,
+ "start": 4595.88,
+ "end": 4598.23,
+ "text": "forces."
+ },
+ {
+ "id": 8104,
+ "start": 4598.23,
+ "end": 4598.99,
+ "text": "Question"
+ },
+ {
+ "id": 8105,
+ "start": 4598.99,
+ "end": 4599.17,
+ "text": "to"
+ },
+ {
+ "id": 8106,
+ "start": 4599.17,
+ "end": 4599.35,
+ "text": "you"
+ },
+ {
+ "id": 8107,
+ "start": 4599.35,
+ "end": 4599.99,
+ "text": "is"
+ },
+ {
+ "id": 8108,
+ "start": 4599.99,
+ "end": 4600.83,
+ "text": "do"
+ },
+ {
+ "id": 8109,
+ "start": 4600.83,
+ "end": 4600.97,
+ "text": "you"
+ },
+ {
+ "id": 8110,
+ "start": 4600.97,
+ "end": 4601.39,
+ "text": "see"
+ },
+ {
+ "id": 8111,
+ "start": 4601.39,
+ "end": 4601.59,
+ "text": "that"
+ },
+ {
+ "id": 8112,
+ "start": 4601.59,
+ "end": 4601.87,
+ "text": "those"
+ },
+ {
+ "id": 8113,
+ "start": 4601.87,
+ "end": 4602.79,
+ "text": "applications"
+ },
+ {
+ "id": 8114,
+ "start": 4602.79,
+ "end": 4603.09,
+ "text": "that"
+ },
+ {
+ "id": 8115,
+ "start": 4603.09,
+ "end": 4603.43,
+ "text": "those"
+ },
+ {
+ "id": 8116,
+ "start": 4603.43,
+ "end": 4604.13,
+ "text": "companies"
+ },
+ {
+ "id": 8117,
+ "start": 4604.13,
+ "end": 4604.81,
+ "text": "volunteer"
+ },
+ {
+ "id": 8118,
+ "start": 4604.81,
+ "end": 4605.45,
+ "text": "and"
+ },
+ {
+ "id": 8119,
+ "start": 4605.45,
+ "end": 4605.79,
+ "text": "even"
+ },
+ {
+ "id": 8120,
+ "start": 4605.79,
+ "end": 4606.11,
+ "text": "what's"
+ },
+ {
+ "id": 8121,
+ "start": 4606.11,
+ "end": 4606.35,
+ "text": "app"
+ },
+ {
+ "id": 8122,
+ "start": 4606.35,
+ "end": 4606.49,
+ "text": "are"
+ },
+ {
+ "id": 8123,
+ "start": 4606.49,
+ "end": 4606.67,
+ "text": "going"
+ },
+ {
+ "id": 8124,
+ "start": 4606.67,
+ "end": 4606.77,
+ "text": "to"
+ },
+ {
+ "id": 8125,
+ "start": 4606.77,
+ "end": 4607.05,
+ "text": "fall"
+ },
+ {
+ "id": 8126,
+ "start": 4607.05,
+ "end": 4607.25,
+ "text": "into"
+ },
+ {
+ "id": 8127,
+ "start": 4607.25,
+ "end": 4607.39,
+ "text": "the"
+ },
+ {
+ "id": 8128,
+ "start": 4607.39,
+ "end": 4607.67,
+ "text": "same"
+ },
+ {
+ "id": 8129,
+ "start": 4607.67,
+ "end": 4608.45,
+ "text": "situation"
+ },
+ {
+ "id": 8130,
+ "start": 4608.45,
+ "end": 4609.05,
+ "text": "that"
+ },
+ {
+ "id": 8131,
+ "start": 4609.05,
+ "end": 4609.31,
+ "text": "you've"
+ },
+ {
+ "id": 8132,
+ "start": 4609.31,
+ "end": 4609.47,
+ "text": "just"
+ },
+ {
+ "id": 8133,
+ "start": 4609.47,
+ "end": 4609.85,
+ "text": "fallen"
+ },
+ {
+ "id": 8134,
+ "start": 4609.85,
+ "end": 4610.15,
+ "text": "into"
+ },
+ {
+ "id": 8135,
+ "start": 4610.15,
+ "end": 4610.35,
+ "text": "over"
+ },
+ {
+ "id": 8136,
+ "start": 4610.35,
+ "end": 4610.47,
+ "text": "the"
+ },
+ {
+ "id": 8137,
+ "start": 4610.47,
+ "end": 4610.69,
+ "text": "last"
+ },
+ {
+ "id": 8138,
+ "start": 4610.69,
+ "end": 4611.05,
+ "text": "several"
+ },
+ {
+ "id": 8139,
+ "start": 4611.05,
+ "end": 4613.64,
+ "text": "years."
+ },
+ {
+ "id": 8140,
+ "start": 4613.64,
+ "end": 4614.62,
+ "text": "Senator"
+ },
+ {
+ "id": 8141,
+ "start": 4614.62,
+ "end": 4614.86,
+ "text": "I'm"
+ },
+ {
+ "id": 8142,
+ "start": 4614.86,
+ "end": 4615.66,
+ "text": "not"
+ },
+ {
+ "id": 8143,
+ "start": 4615.66,
+ "end": 4616.64,
+ "text": "I'm"
+ },
+ {
+ "id": 8144,
+ "start": 4616.64,
+ "end": 4616.84,
+ "text": "not"
+ },
+ {
+ "id": 8145,
+ "start": 4616.84,
+ "end": 4617.1,
+ "text": "sure,"
+ },
+ {
+ "id": 8146,
+ "start": 4617.1,
+ "end": 4617.8,
+ "text": "specifically."
+ },
+ {
+ "id": 8147,
+ "start": 4617.8,
+ "end": 4618.94,
+ "text": "Overall,"
+ },
+ {
+ "id": 8148,
+ "start": 4618.94,
+ "end": 4619.4,
+ "text": "I"
+ },
+ {
+ "id": 8149,
+ "start": 4619.4,
+ "end": 4619.72,
+ "text": "do"
+ },
+ {
+ "id": 8150,
+ "start": 4619.72,
+ "end": 4619.94,
+ "text": "think"
+ },
+ {
+ "id": 8151,
+ "start": 4619.94,
+ "end": 4620.32,
+ "text": "that"
+ },
+ {
+ "id": 8152,
+ "start": 4620.32,
+ "end": 4621.02,
+ "text": "these"
+ },
+ {
+ "id": 8153,
+ "start": 4621.02,
+ "end": 4621.44,
+ "text": "issues"
+ },
+ {
+ "id": 8154,
+ "start": 4621.44,
+ "end": 4621.7,
+ "text": "around"
+ },
+ {
+ "id": 8155,
+ "start": 4621.7,
+ "end": 4622.3,
+ "text": "information"
+ },
+ {
+ "id": 8156,
+ "start": 4622.3,
+ "end": 4623,
+ "text": "access"
+ },
+ {
+ "id": 8157,
+ "start": 4623,
+ "end": 4624.04,
+ "text": "are"
+ },
+ {
+ "id": 8158,
+ "start": 4624.04,
+ "end": 4624.68,
+ "text": "challenging"
+ },
+ {
+ "id": 8159,
+ "start": 4624.68,
+ "end": 4625.38,
+ "text": "to"
+ },
+ {
+ "id": 8160,
+ "start": 4625.38,
+ "end": 4625.5,
+ "text": "the"
+ },
+ {
+ "id": 8161,
+ "start": 4625.5,
+ "end": 4626.12,
+ "text": "specifics"
+ },
+ {
+ "id": 8162,
+ "start": 4626.12,
+ "end": 4626.38,
+ "text": "about"
+ },
+ {
+ "id": 8163,
+ "start": 4626.38,
+ "end": 4626.78,
+ "text": "those"
+ },
+ {
+ "id": 8164,
+ "start": 4626.78,
+ "end": 4627.18,
+ "text": "apps"
+ },
+ {
+ "id": 8165,
+ "start": 4627.18,
+ "end": 4627.88,
+ "text": "I'm"
+ },
+ {
+ "id": 8166,
+ "start": 4627.88,
+ "end": 4628.18,
+ "text": "not"
+ },
+ {
+ "id": 8167,
+ "start": 4628.18,
+ "end": 4628.48,
+ "text": "really"
+ },
+ {
+ "id": 8168,
+ "start": 4628.48,
+ "end": 4628.7,
+ "text": "that"
+ },
+ {
+ "id": 8169,
+ "start": 4628.7,
+ "end": 4629.16,
+ "text": "familiar"
+ },
+ {
+ "id": 8170,
+ "start": 4629.16,
+ "end": 4629.34,
+ "text": "with"
+ },
+ {
+ "id": 8171,
+ "start": 4629.34,
+ "end": 4629.52,
+ "text": "what"
+ },
+ {
+ "id": 8172,
+ "start": 4629.52,
+ "end": 4630.08,
+ "text": "planter"
+ },
+ {
+ "id": 8173,
+ "start": 4630.08,
+ "end": 4630.96,
+ "text": "does."
+ },
+ {
+ "id": 8174,
+ "start": 4630.96,
+ "end": 4632.02,
+ "text": "WhatsApp"
+ },
+ {
+ "id": 8175,
+ "start": 4632.02,
+ "end": 4632.98,
+ "text": "collects"
+ },
+ {
+ "id": 8176,
+ "start": 4632.98,
+ "end": 4633.26,
+ "text": "very"
+ },
+ {
+ "id": 8177,
+ "start": 4633.26,
+ "end": 4633.5,
+ "text": "little"
+ },
+ {
+ "id": 8178,
+ "start": 4633.5,
+ "end": 4634.3,
+ "text": "information"
+ },
+ {
+ "id": 8179,
+ "start": 4634.3,
+ "end": 4635.3,
+ "text": "and"
+ },
+ {
+ "id": 8180,
+ "start": 4635.3,
+ "end": 4635.74,
+ "text": "I"
+ },
+ {
+ "id": 8181,
+ "start": 4635.74,
+ "end": 4635.92,
+ "text": "think"
+ },
+ {
+ "id": 8182,
+ "start": 4635.92,
+ "end": 4636.1,
+ "text": "is"
+ },
+ {
+ "id": 8183,
+ "start": 4636.1,
+ "end": 4636.34,
+ "text": "less"
+ },
+ {
+ "id": 8184,
+ "start": 4636.34,
+ "end": 4636.68,
+ "text": "likely"
+ },
+ {
+ "id": 8185,
+ "start": 4636.68,
+ "end": 4636.8,
+ "text": "to"
+ },
+ {
+ "id": 8186,
+ "start": 4636.8,
+ "end": 4637.12,
+ "text": "have"
+ },
+ {
+ "id": 8187,
+ "start": 4637.12,
+ "end": 4637.68,
+ "text": "the"
+ },
+ {
+ "id": 8188,
+ "start": 4637.68,
+ "end": 4637.82,
+ "text": "kind"
+ },
+ {
+ "id": 8189,
+ "start": 4637.82,
+ "end": 4637.92,
+ "text": "of"
+ },
+ {
+ "id": 8190,
+ "start": 4637.92,
+ "end": 4638.28,
+ "text": "issues"
+ },
+ {
+ "id": 8191,
+ "start": 4638.28,
+ "end": 4638.54,
+ "text": "because"
+ },
+ {
+ "id": 8192,
+ "start": 4638.54,
+ "end": 4638.66,
+ "text": "of"
+ },
+ {
+ "id": 8193,
+ "start": 4638.66,
+ "end": 4638.78,
+ "text": "the"
+ },
+ {
+ "id": 8194,
+ "start": 4638.78,
+ "end": 4638.86,
+ "text": "way"
+ },
+ {
+ "id": 8195,
+ "start": 4638.86,
+ "end": 4639,
+ "text": "that"
+ },
+ {
+ "id": 8196,
+ "start": 4639,
+ "end": 4639.12,
+ "text": "the"
+ },
+ {
+ "id": 8197,
+ "start": 4639.12,
+ "end": 4639.56,
+ "text": "services"
+ },
+ {
+ "id": 8198,
+ "start": 4639.56,
+ "end": 4640.18,
+ "text": "architected"
+ },
+ {
+ "id": 8199,
+ "start": 4640.18,
+ "end": 4640.36,
+ "text": "but"
+ },
+ {
+ "id": 8200,
+ "start": 4640.36,
+ "end": 4640.72,
+ "text": "certainly"
+ },
+ {
+ "id": 8201,
+ "start": 4640.72,
+ "end": 4640.8,
+ "text": "I"
+ },
+ {
+ "id": 8202,
+ "start": 4640.8,
+ "end": 4640.96,
+ "text": "think"
+ },
+ {
+ "id": 8203,
+ "start": 4640.96,
+ "end": 4641.1,
+ "text": "that"
+ },
+ {
+ "id": 8204,
+ "start": 4641.1,
+ "end": 4641.34,
+ "text": "these"
+ },
+ {
+ "id": 8205,
+ "start": 4641.34,
+ "end": 4641.5,
+ "text": "are"
+ },
+ {
+ "id": 8206,
+ "start": 4641.5,
+ "end": 4641.8,
+ "text": "broad"
+ },
+ {
+ "id": 8207,
+ "start": 4641.8,
+ "end": 4642.16,
+ "text": "issues"
+ },
+ {
+ "id": 8208,
+ "start": 4642.16,
+ "end": 4642.58,
+ "text": "across"
+ },
+ {
+ "id": 8209,
+ "start": 4642.58,
+ "end": 4642.72,
+ "text": "the"
+ },
+ {
+ "id": 8210,
+ "start": 4642.72,
+ "end": 4642.9,
+ "text": "tech"
+ },
+ {
+ "id": 8211,
+ "start": 4642.9,
+ "end": 4643.94,
+ "text": "industry."
+ },
+ {
+ "id": 8212,
+ "start": 4643.94,
+ "end": 4644.78,
+ "text": "Well,"
+ },
+ {
+ "id": 8213,
+ "start": 4644.78,
+ "end": 4644.9,
+ "text": "I"
+ },
+ {
+ "id": 8214,
+ "start": 4644.9,
+ "end": 4645.2,
+ "text": "guess"
+ },
+ {
+ "id": 8215,
+ "start": 4645.2,
+ "end": 4646.14,
+ "text": "given"
+ },
+ {
+ "id": 8216,
+ "start": 4646.14,
+ "end": 4646.6,
+ "text": "the"
+ },
+ {
+ "id": 8217,
+ "start": 4646.6,
+ "end": 4646.94,
+ "text": "track"
+ },
+ {
+ "id": 8218,
+ "start": 4646.94,
+ "end": 4647.26,
+ "text": "record"
+ },
+ {
+ "id": 8219,
+ "start": 4647.26,
+ "end": 4647.36,
+ "text": "of"
+ },
+ {
+ "id": 8220,
+ "start": 4647.36,
+ "end": 4647.54,
+ "text": "where"
+ },
+ {
+ "id": 8221,
+ "start": 4647.54,
+ "end": 4648.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 8222,
+ "start": 4648.02,
+ "end": 4648.18,
+ "text": "is"
+ },
+ {
+ "id": 8223,
+ "start": 4648.18,
+ "end": 4648.32,
+ "text": "and"
+ },
+ {
+ "id": 8224,
+ "start": 4648.32,
+ "end": 4648.46,
+ "text": "why"
+ },
+ {
+ "id": 8225,
+ "start": 4648.46,
+ "end": 4648.66,
+ "text": "you're"
+ },
+ {
+ "id": 8226,
+ "start": 4648.66,
+ "end": 4648.86,
+ "text": "here"
+ },
+ {
+ "id": 8227,
+ "start": 4648.86,
+ "end": 4649.4,
+ "text": "today,"
+ },
+ {
+ "id": 8228,
+ "start": 4649.4,
+ "end": 4649.86,
+ "text": "I"
+ },
+ {
+ "id": 8229,
+ "start": 4649.86,
+ "end": 4650.16,
+ "text": "guess"
+ },
+ {
+ "id": 8230,
+ "start": 4650.16,
+ "end": 4650.46,
+ "text": "people"
+ },
+ {
+ "id": 8231,
+ "start": 4650.46,
+ "end": 4650.66,
+ "text": "would"
+ },
+ {
+ "id": 8232,
+ "start": 4650.66,
+ "end": 4650.82,
+ "text": "say"
+ },
+ {
+ "id": 8233,
+ "start": 4650.82,
+ "end": 4650.98,
+ "text": "that"
+ },
+ {
+ "id": 8234,
+ "start": 4650.98,
+ "end": 4651.1,
+ "text": "they"
+ },
+ {
+ "id": 8235,
+ "start": 4651.1,
+ "end": 4651.34,
+ "text": "didn't"
+ },
+ {
+ "id": 8236,
+ "start": 4651.34,
+ "end": 4651.68,
+ "text": "act"
+ },
+ {
+ "id": 8237,
+ "start": 4651.68,
+ "end": 4652.76,
+ "text": "boldly"
+ },
+ {
+ "id": 8238,
+ "start": 4652.76,
+ "end": 4653.1,
+ "text": "enough."
+ },
+ {
+ "id": 8239,
+ "start": 4653.1,
+ "end": 4654.3,
+ "text": "And"
+ },
+ {
+ "id": 8240,
+ "start": 4654.3,
+ "end": 4655.04,
+ "text": "the"
+ },
+ {
+ "id": 8241,
+ "start": 4655.04,
+ "end": 4655.42,
+ "text": "fact"
+ },
+ {
+ "id": 8242,
+ "start": 4655.42,
+ "end": 4657.4,
+ "text": "that"
+ },
+ {
+ "id": 8243,
+ "start": 4657.4,
+ "end": 4658.38,
+ "text": "people"
+ },
+ {
+ "id": 8244,
+ "start": 4658.38,
+ "end": 4658.64,
+ "text": "like"
+ },
+ {
+ "id": 8245,
+ "start": 4658.64,
+ "end": 4658.94,
+ "text": "John"
+ },
+ {
+ "id": 8246,
+ "start": 4658.94,
+ "end": 4659.78,
+ "text": "Bolton"
+ },
+ {
+ "id": 8247,
+ "start": 4659.78,
+ "end": 4660.76,
+ "text": "basically"
+ },
+ {
+ "id": 8248,
+ "start": 4660.76,
+ "end": 4661.12,
+ "text": "was"
+ },
+ {
+ "id": 8249,
+ "start": 4661.12,
+ "end": 4661.4,
+ "text": "an"
+ },
+ {
+ "id": 8250,
+ "start": 4661.4,
+ "end": 4662,
+ "text": "investor"
+ },
+ {
+ "id": 8251,
+ "start": 4662,
+ "end": 4663.78,
+ "text": "in"
+ },
+ {
+ "id": 8252,
+ "start": 4663.78,
+ "end": 4664.94,
+ "text": "New"
+ },
+ {
+ "id": 8253,
+ "start": 4664.94,
+ "end": 4665.14,
+ "text": "York"
+ },
+ {
+ "id": 8254,
+ "start": 4665.14,
+ "end": 4665.5,
+ "text": "Times"
+ },
+ {
+ "id": 8255,
+ "start": 4665.5,
+ "end": 4666,
+ "text": "article"
+ },
+ {
+ "id": 8256,
+ "start": 4666,
+ "end": 4666.5,
+ "text": "earlier."
+ },
+ {
+ "id": 8257,
+ "start": 4666.5,
+ "end": 4667.18,
+ "text": "I"
+ },
+ {
+ "id": 8258,
+ "start": 4667.18,
+ "end": 4667.38,
+ "text": "guess"
+ },
+ {
+ "id": 8259,
+ "start": 4667.38,
+ "end": 4667.5,
+ "text": "it"
+ },
+ {
+ "id": 8260,
+ "start": 4667.5,
+ "end": 4667.64,
+ "text": "was"
+ },
+ {
+ "id": 8261,
+ "start": 4667.64,
+ "end": 4668.12,
+ "text": "actually"
+ },
+ {
+ "id": 8262,
+ "start": 4668.12,
+ "end": 4668.52,
+ "text": "last"
+ },
+ {
+ "id": 8263,
+ "start": 4668.52,
+ "end": 4669.46,
+ "text": "month"
+ },
+ {
+ "id": 8264,
+ "start": 4669.46,
+ "end": 4670.22,
+ "text": "that"
+ },
+ {
+ "id": 8265,
+ "start": 4670.22,
+ "end": 4670.36,
+ "text": "the"
+ },
+ {
+ "id": 8266,
+ "start": 4670.36,
+ "end": 4670.72,
+ "text": "Bolton"
+ },
+ {
+ "id": 8267,
+ "start": 4670.72,
+ "end": 4670.96,
+ "text": "pack"
+ },
+ {
+ "id": 8268,
+ "start": 4670.96,
+ "end": 4671.12,
+ "text": "was"
+ },
+ {
+ "id": 8269,
+ "start": 4671.12,
+ "end": 4671.58,
+ "text": "obsessed"
+ },
+ {
+ "id": 8270,
+ "start": 4671.58,
+ "end": 4671.72,
+ "text": "with"
+ },
+ {
+ "id": 8271,
+ "start": 4671.72,
+ "end": 4671.86,
+ "text": "how"
+ },
+ {
+ "id": 8272,
+ "start": 4671.86,
+ "end": 4672.28,
+ "text": "America"
+ },
+ {
+ "id": 8273,
+ "start": 4672.28,
+ "end": 4672.44,
+ "text": "was"
+ },
+ {
+ "id": 8274,
+ "start": 4672.44,
+ "end": 4672.82,
+ "text": "becoming"
+ },
+ {
+ "id": 8275,
+ "start": 4672.82,
+ "end": 4673.18,
+ "text": "limp,"
+ },
+ {
+ "id": 8276,
+ "start": 4673.18,
+ "end": 4673.54,
+ "text": "rested"
+ },
+ {
+ "id": 8277,
+ "start": 4673.54,
+ "end": 4673.72,
+ "text": "and"
+ },
+ {
+ "id": 8278,
+ "start": 4673.72,
+ "end": 4674.34,
+ "text": "spineless"
+ },
+ {
+ "id": 8279,
+ "start": 4674.34,
+ "end": 4674.46,
+ "text": "and"
+ },
+ {
+ "id": 8280,
+ "start": 4674.46,
+ "end": 4674.6,
+ "text": "had"
+ },
+ {
+ "id": 8281,
+ "start": 4674.6,
+ "end": 4674.9,
+ "text": "wanted"
+ },
+ {
+ "id": 8282,
+ "start": 4674.9,
+ "end": 4675.3,
+ "text": "research"
+ },
+ {
+ "id": 8283,
+ "start": 4675.3,
+ "end": 4675.42,
+ "text": "and"
+ },
+ {
+ "id": 8284,
+ "start": 4675.42,
+ "end": 4675.94,
+ "text": "messaging"
+ },
+ {
+ "id": 8285,
+ "start": 4675.94,
+ "end": 4676.12,
+ "text": "for"
+ },
+ {
+ "id": 8286,
+ "start": 4676.12,
+ "end": 4676.58,
+ "text": "national"
+ },
+ {
+ "id": 8287,
+ "start": 4676.58,
+ "end": 4677.08,
+ "text": "security"
+ },
+ {
+ "id": 8288,
+ "start": 4677.08,
+ "end": 4677.5,
+ "text": "issues."
+ },
+ {
+ "id": 8289,
+ "start": 4677.5,
+ "end": 4678.8,
+ "text": "So"
+ },
+ {
+ "id": 8290,
+ "start": 4678.8,
+ "end": 4679.14,
+ "text": "the"
+ },
+ {
+ "id": 8291,
+ "start": 4679.14,
+ "end": 4679.46,
+ "text": "fact"
+ },
+ {
+ "id": 8292,
+ "start": 4679.46,
+ "end": 4679.92,
+ "text": "that"
+ },
+ {
+ "id": 8293,
+ "start": 4679.92,
+ "end": 4681.1,
+ "text": "you"
+ },
+ {
+ "id": 8294,
+ "start": 4681.1,
+ "end": 4681.26,
+ "text": "know,"
+ },
+ {
+ "id": 8295,
+ "start": 4681.26,
+ "end": 4681.42,
+ "text": "there"
+ },
+ {
+ "id": 8296,
+ "start": 4681.42,
+ "end": 4681.58,
+ "text": "are"
+ },
+ {
+ "id": 8297,
+ "start": 4681.58,
+ "end": 4681.64,
+ "text": "a"
+ },
+ {
+ "id": 8298,
+ "start": 4681.64,
+ "end": 4681.96,
+ "text": "lot"
+ },
+ {
+ "id": 8299,
+ "start": 4681.96,
+ "end": 4682.14,
+ "text": "of"
+ },
+ {
+ "id": 8300,
+ "start": 4682.14,
+ "end": 4683.03,
+ "text": "people"
+ },
+ {
+ "id": 8301,
+ "start": 4683.03,
+ "end": 4683.13,
+ "text": "who"
+ },
+ {
+ "id": 8302,
+ "start": 4683.13,
+ "end": 4683.35,
+ "text": "are"
+ },
+ {
+ "id": 8303,
+ "start": 4683.35,
+ "end": 4684.11,
+ "text": "interested"
+ },
+ {
+ "id": 8304,
+ "start": 4684.11,
+ "end": 4684.27,
+ "text": "in"
+ },
+ {
+ "id": 8305,
+ "start": 4684.27,
+ "end": 4684.51,
+ "text": "this"
+ },
+ {
+ "id": 8306,
+ "start": 4684.51,
+ "end": 4685.57,
+ "text": "larger"
+ },
+ {
+ "id": 8307,
+ "start": 4685.57,
+ "end": 4685.99,
+ "text": "effort."
+ },
+ {
+ "id": 8308,
+ "start": 4685.99,
+ "end": 4686.59,
+ "text": "And"
+ },
+ {
+ "id": 8309,
+ "start": 4686.59,
+ "end": 4687.15,
+ "text": "what"
+ },
+ {
+ "id": 8310,
+ "start": 4687.15,
+ "end": 4687.23,
+ "text": "I"
+ },
+ {
+ "id": 8311,
+ "start": 4687.23,
+ "end": 4687.47,
+ "text": "think"
+ },
+ {
+ "id": 8312,
+ "start": 4687.47,
+ "end": 4687.75,
+ "text": "my"
+ },
+ {
+ "id": 8313,
+ "start": 4687.75,
+ "end": 4688.55,
+ "text": "constituents"
+ },
+ {
+ "id": 8314,
+ "start": 4688.55,
+ "end": 4688.81,
+ "text": "want"
+ },
+ {
+ "id": 8315,
+ "start": 4688.81,
+ "end": 4688.93,
+ "text": "to"
+ },
+ {
+ "id": 8316,
+ "start": 4688.93,
+ "end": 4689.13,
+ "text": "know"
+ },
+ {
+ "id": 8317,
+ "start": 4689.13,
+ "end": 4689.43,
+ "text": "is"
+ },
+ {
+ "id": 8318,
+ "start": 4689.43,
+ "end": 4689.67,
+ "text": "was"
+ },
+ {
+ "id": 8319,
+ "start": 4689.67,
+ "end": 4689.89,
+ "text": "this"
+ },
+ {
+ "id": 8320,
+ "start": 4689.89,
+ "end": 4690.37,
+ "text": "discussed"
+ },
+ {
+ "id": 8321,
+ "start": 4690.37,
+ "end": 4690.51,
+ "text": "at"
+ },
+ {
+ "id": 8322,
+ "start": 4690.51,
+ "end": 4690.69,
+ "text": "your"
+ },
+ {
+ "id": 8323,
+ "start": 4690.69,
+ "end": 4690.97,
+ "text": "board"
+ },
+ {
+ "id": 8324,
+ "start": 4690.97,
+ "end": 4691.43,
+ "text": "meetings"
+ },
+ {
+ "id": 8325,
+ "start": 4691.43,
+ "end": 4692.33,
+ "text": "and"
+ },
+ {
+ "id": 8326,
+ "start": 4692.33,
+ "end": 4692.95,
+ "text": "what"
+ },
+ {
+ "id": 8327,
+ "start": 4692.95,
+ "end": 4693.09,
+ "text": "are"
+ },
+ {
+ "id": 8328,
+ "start": 4693.09,
+ "end": 4693.29,
+ "text": "the"
+ },
+ {
+ "id": 8329,
+ "start": 4693.29,
+ "end": 4694.31,
+ "text": "applications"
+ },
+ {
+ "id": 8330,
+ "start": 4694.31,
+ "end": 4694.61,
+ "text": "and"
+ },
+ {
+ "id": 8331,
+ "start": 4694.61,
+ "end": 4695.13,
+ "text": "interests"
+ },
+ {
+ "id": 8332,
+ "start": 4695.13,
+ "end": 4695.49,
+ "text": "that"
+ },
+ {
+ "id": 8333,
+ "start": 4695.49,
+ "end": 4696.6,
+ "text": "are"
+ },
+ {
+ "id": 8334,
+ "start": 4696.6,
+ "end": 4697.42,
+ "text": "being"
+ },
+ {
+ "id": 8335,
+ "start": 4697.42,
+ "end": 4698,
+ "text": "discussed"
+ },
+ {
+ "id": 8336,
+ "start": 4698,
+ "end": 4698.4,
+ "text": "without"
+ },
+ {
+ "id": 8337,
+ "start": 4698.4,
+ "end": 4698.82,
+ "text": "putting"
+ },
+ {
+ "id": 8338,
+ "start": 4698.82,
+ "end": 4699.38,
+ "text": "real"
+ },
+ {
+ "id": 8339,
+ "start": 4699.38,
+ "end": 4699.8,
+ "text": "teeth"
+ },
+ {
+ "id": 8340,
+ "start": 4699.8,
+ "end": 4700.1,
+ "text": "into"
+ },
+ {
+ "id": 8341,
+ "start": 4700.1,
+ "end": 4700.26,
+ "text": "this?"
+ },
+ {
+ "id": 8342,
+ "start": 4700.26,
+ "end": 4700.46,
+ "text": "We"
+ },
+ {
+ "id": 8343,
+ "start": 4700.46,
+ "end": 4700.68,
+ "text": "don't"
+ },
+ {
+ "id": 8344,
+ "start": 4700.68,
+ "end": 4701.06,
+ "text": "want"
+ },
+ {
+ "id": 8345,
+ "start": 4701.06,
+ "end": 4701.2,
+ "text": "to"
+ },
+ {
+ "id": 8346,
+ "start": 4701.2,
+ "end": 4701.38,
+ "text": "come"
+ },
+ {
+ "id": 8347,
+ "start": 4701.38,
+ "end": 4701.56,
+ "text": "back"
+ },
+ {
+ "id": 8348,
+ "start": 4701.56,
+ "end": 4701.7,
+ "text": "to"
+ },
+ {
+ "id": 8349,
+ "start": 4701.7,
+ "end": 4701.88,
+ "text": "this"
+ },
+ {
+ "id": 8350,
+ "start": 4701.88,
+ "end": 4702.4,
+ "text": "situation"
+ },
+ {
+ "id": 8351,
+ "start": 4702.4,
+ "end": 4702.72,
+ "text": "again."
+ },
+ {
+ "id": 8352,
+ "start": 4702.72,
+ "end": 4703.42,
+ "text": "I"
+ },
+ {
+ "id": 8353,
+ "start": 4703.42,
+ "end": 4703.7,
+ "text": "believe"
+ },
+ {
+ "id": 8354,
+ "start": 4703.7,
+ "end": 4703.82,
+ "text": "you"
+ },
+ {
+ "id": 8355,
+ "start": 4703.82,
+ "end": 4703.96,
+ "text": "have"
+ },
+ {
+ "id": 8356,
+ "start": 4703.96,
+ "end": 4704.08,
+ "text": "all"
+ },
+ {
+ "id": 8357,
+ "start": 4704.08,
+ "end": 4704.22,
+ "text": "the"
+ },
+ {
+ "id": 8358,
+ "start": 4704.22,
+ "end": 4704.68,
+ "text": "talent."
+ },
+ {
+ "id": 8359,
+ "start": 4704.68,
+ "end": 4704.96,
+ "text": "My"
+ },
+ {
+ "id": 8360,
+ "start": 4704.96,
+ "end": 4705.32,
+ "text": "question"
+ },
+ {
+ "id": 8361,
+ "start": 4705.32,
+ "end": 4705.48,
+ "text": "is"
+ },
+ {
+ "id": 8362,
+ "start": 4705.48,
+ "end": 4705.74,
+ "text": "whether"
+ },
+ {
+ "id": 8363,
+ "start": 4705.74,
+ "end": 4705.84,
+ "text": "you"
+ },
+ {
+ "id": 8364,
+ "start": 4705.84,
+ "end": 4706,
+ "text": "have"
+ },
+ {
+ "id": 8365,
+ "start": 4706,
+ "end": 4706.16,
+ "text": "all"
+ },
+ {
+ "id": 8366,
+ "start": 4706.16,
+ "end": 4706.32,
+ "text": "the"
+ },
+ {
+ "id": 8367,
+ "start": 4706.32,
+ "end": 4706.76,
+ "text": "will"
+ },
+ {
+ "id": 8368,
+ "start": 4706.76,
+ "end": 4707.16,
+ "text": "to"
+ },
+ {
+ "id": 8369,
+ "start": 4707.16,
+ "end": 4707.38,
+ "text": "help"
+ },
+ {
+ "id": 8370,
+ "start": 4707.38,
+ "end": 4707.56,
+ "text": "us"
+ },
+ {
+ "id": 8371,
+ "start": 4707.56,
+ "end": 4707.84,
+ "text": "solve"
+ },
+ {
+ "id": 8372,
+ "start": 4707.84,
+ "end": 4708.04,
+ "text": "this"
+ },
+ {
+ "id": 8373,
+ "start": 4708.04,
+ "end": 4709.38,
+ "text": "problem."
+ },
+ {
+ "id": 8374,
+ "start": 4709.38,
+ "end": 4710.4,
+ "text": "Yes,"
+ },
+ {
+ "id": 8375,
+ "start": 4710.4,
+ "end": 4710.86,
+ "text": "Senator,"
+ },
+ {
+ "id": 8376,
+ "start": 4710.86,
+ "end": 4711.32,
+ "text": "so"
+ },
+ {
+ "id": 8377,
+ "start": 4711.32,
+ "end": 4711.94,
+ "text": "data,"
+ },
+ {
+ "id": 8378,
+ "start": 4711.94,
+ "end": 4712.46,
+ "text": "privacy"
+ },
+ {
+ "id": 8379,
+ "start": 4712.46,
+ "end": 4713.44,
+ "text": "and"
+ },
+ {
+ "id": 8380,
+ "start": 4713.44,
+ "end": 4714.18,
+ "text": "foreign"
+ },
+ {
+ "id": 8381,
+ "start": 4714.18,
+ "end": 4714.68,
+ "text": "interference"
+ },
+ {
+ "id": 8382,
+ "start": 4714.68,
+ "end": 4714.78,
+ "text": "in"
+ },
+ {
+ "id": 8383,
+ "start": 4714.78,
+ "end": 4715.24,
+ "text": "elections"
+ },
+ {
+ "id": 8384,
+ "start": 4715.24,
+ "end": 4715.5,
+ "text": "are"
+ },
+ {
+ "id": 8385,
+ "start": 4715.5,
+ "end": 4715.9,
+ "text": "certainly"
+ },
+ {
+ "id": 8386,
+ "start": 4715.9,
+ "end": 4716.36,
+ "text": "topics"
+ },
+ {
+ "id": 8387,
+ "start": 4716.36,
+ "end": 4716.52,
+ "text": "that"
+ },
+ {
+ "id": 8388,
+ "start": 4716.52,
+ "end": 4716.62,
+ "text": "we"
+ },
+ {
+ "id": 8389,
+ "start": 4716.62,
+ "end": 4716.78,
+ "text": "have"
+ },
+ {
+ "id": 8390,
+ "start": 4716.78,
+ "end": 4717.18,
+ "text": "discussed"
+ },
+ {
+ "id": 8391,
+ "start": 4717.18,
+ "end": 4717.28,
+ "text": "at"
+ },
+ {
+ "id": 8392,
+ "start": 4717.28,
+ "end": 4717.38,
+ "text": "the"
+ },
+ {
+ "id": 8393,
+ "start": 4717.38,
+ "end": 4717.62,
+ "text": "board"
+ },
+ {
+ "id": 8394,
+ "start": 4717.62,
+ "end": 4717.9,
+ "text": "meeting."
+ },
+ {
+ "id": 8395,
+ "start": 4717.9,
+ "end": 4718.14,
+ "text": "These"
+ },
+ {
+ "id": 8396,
+ "start": 4718.14,
+ "end": 4718.32,
+ "text": "are"
+ },
+ {
+ "id": 8397,
+ "start": 4718.32,
+ "end": 4718.48,
+ "text": "some"
+ },
+ {
+ "id": 8398,
+ "start": 4718.48,
+ "end": 4718.56,
+ "text": "of"
+ },
+ {
+ "id": 8399,
+ "start": 4718.56,
+ "end": 4718.66,
+ "text": "the"
+ },
+ {
+ "id": 8400,
+ "start": 4718.66,
+ "end": 4718.9,
+ "text": "biggest"
+ },
+ {
+ "id": 8401,
+ "start": 4718.9,
+ "end": 4719.24,
+ "text": "issues"
+ },
+ {
+ "id": 8402,
+ "start": 4719.24,
+ "end": 4719.38,
+ "text": "that"
+ },
+ {
+ "id": 8403,
+ "start": 4719.38,
+ "end": 4719.52,
+ "text": "the"
+ },
+ {
+ "id": 8404,
+ "start": 4719.52,
+ "end": 4719.84,
+ "text": "company"
+ },
+ {
+ "id": 8405,
+ "start": 4719.84,
+ "end": 4720.04,
+ "text": "has"
+ },
+ {
+ "id": 8406,
+ "start": 4720.04,
+ "end": 4720.36,
+ "text": "faced"
+ },
+ {
+ "id": 8407,
+ "start": 4720.36,
+ "end": 4720.58,
+ "text": "and"
+ },
+ {
+ "id": 8408,
+ "start": 4720.58,
+ "end": 4720.78,
+ "text": "we"
+ },
+ {
+ "id": 8409,
+ "start": 4720.78,
+ "end": 4720.96,
+ "text": "feel"
+ },
+ {
+ "id": 8410,
+ "start": 4720.96,
+ "end": 4721.08,
+ "text": "a"
+ },
+ {
+ "id": 8411,
+ "start": 4721.08,
+ "end": 4721.62,
+ "text": "huge"
+ },
+ {
+ "id": 8412,
+ "start": 4721.62,
+ "end": 4722.42,
+ "text": "responsibility"
+ },
+ {
+ "id": 8413,
+ "start": 4722.42,
+ "end": 4722.94,
+ "text": "to"
+ },
+ {
+ "id": 8414,
+ "start": 4722.94,
+ "end": 4723.06,
+ "text": "get"
+ },
+ {
+ "id": 8415,
+ "start": 4723.06,
+ "end": 4723.34,
+ "text": "these"
+ },
+ {
+ "id": 8416,
+ "start": 4723.34,
+ "end": 4724.54,
+ "text": "right."
+ },
+ {
+ "id": 8417,
+ "start": 4724.54,
+ "end": 4725.54,
+ "text": "Do"
+ },
+ {
+ "id": 8418,
+ "start": 4725.54,
+ "end": 4725.66,
+ "text": "you"
+ },
+ {
+ "id": 8419,
+ "start": 4725.66,
+ "end": 4725.88,
+ "text": "believe"
+ },
+ {
+ "id": 8420,
+ "start": 4725.88,
+ "end": 4725.96,
+ "text": "the"
+ },
+ {
+ "id": 8421,
+ "start": 4725.96,
+ "end": 4726.42,
+ "text": "European"
+ },
+ {
+ "id": 8422,
+ "start": 4726.42,
+ "end": 4726.94,
+ "text": "regulation"
+ },
+ {
+ "id": 8423,
+ "start": 4726.94,
+ "end": 4727.2,
+ "text": "should"
+ },
+ {
+ "id": 8424,
+ "start": 4727.2,
+ "end": 4727.28,
+ "text": "be"
+ },
+ {
+ "id": 8425,
+ "start": 4727.28,
+ "end": 4727.58,
+ "text": "applied"
+ },
+ {
+ "id": 8426,
+ "start": 4727.58,
+ "end": 4727.76,
+ "text": "here"
+ },
+ {
+ "id": 8427,
+ "start": 4727.76,
+ "end": 4727.86,
+ "text": "in"
+ },
+ {
+ "id": 8428,
+ "start": 4727.86,
+ "end": 4727.96,
+ "text": "the"
+ },
+ {
+ "id": 8429,
+ "start": 4727.96,
+ "end": 4728.02,
+ "text": "U"
+ },
+ {
+ "id": 8430,
+ "start": 4728.02,
+ "end": 4729.68,
+ "text": "S"
+ },
+ {
+ "id": 8431,
+ "start": 4729.68,
+ "end": 4730.66,
+ "text": "Senator?"
+ },
+ {
+ "id": 8432,
+ "start": 4730.66,
+ "end": 4730.76,
+ "text": "I"
+ },
+ {
+ "id": 8433,
+ "start": 4730.76,
+ "end": 4730.96,
+ "text": "think"
+ },
+ {
+ "id": 8434,
+ "start": 4730.96,
+ "end": 4731.42,
+ "text": "everyone"
+ },
+ {
+ "id": 8435,
+ "start": 4731.42,
+ "end": 4731.5,
+ "text": "in"
+ },
+ {
+ "id": 8436,
+ "start": 4731.5,
+ "end": 4731.62,
+ "text": "the"
+ },
+ {
+ "id": 8437,
+ "start": 4731.62,
+ "end": 4731.9,
+ "text": "world"
+ },
+ {
+ "id": 8438,
+ "start": 4731.9,
+ "end": 4732.52,
+ "text": "deserves"
+ },
+ {
+ "id": 8439,
+ "start": 4732.52,
+ "end": 4732.86,
+ "text": "good"
+ },
+ {
+ "id": 8440,
+ "start": 4732.86,
+ "end": 4733.36,
+ "text": "privacy"
+ },
+ {
+ "id": 8441,
+ "start": 4733.36,
+ "end": 4733.8,
+ "text": "protection."
+ },
+ {
+ "id": 8442,
+ "start": 4733.8,
+ "end": 4735.96,
+ "text": "And"
+ },
+ {
+ "id": 8443,
+ "start": 4735.96,
+ "end": 4736.96,
+ "text": "regardless"
+ },
+ {
+ "id": 8444,
+ "start": 4736.96,
+ "end": 4737.12,
+ "text": "of"
+ },
+ {
+ "id": 8445,
+ "start": 4737.12,
+ "end": 4737.44,
+ "text": "whether"
+ },
+ {
+ "id": 8446,
+ "start": 4737.44,
+ "end": 4737.94,
+ "text": "we"
+ },
+ {
+ "id": 8447,
+ "start": 4737.94,
+ "end": 4738.32,
+ "text": "implement"
+ },
+ {
+ "id": 8448,
+ "start": 4738.32,
+ "end": 4738.48,
+ "text": "the"
+ },
+ {
+ "id": 8449,
+ "start": 4738.48,
+ "end": 4738.82,
+ "text": "exact"
+ },
+ {
+ "id": 8450,
+ "start": 4738.82,
+ "end": 4739.04,
+ "text": "same"
+ },
+ {
+ "id": 8451,
+ "start": 4739.04,
+ "end": 4739.58,
+ "text": "regulation,"
+ },
+ {
+ "id": 8452,
+ "start": 4739.58,
+ "end": 4739.64,
+ "text": "I"
+ },
+ {
+ "id": 8453,
+ "start": 4739.64,
+ "end": 4739.92,
+ "text": "would"
+ },
+ {
+ "id": 8454,
+ "start": 4739.92,
+ "end": 4740.92,
+ "text": "guess"
+ },
+ {
+ "id": 8455,
+ "start": 4740.92,
+ "end": 4741.08,
+ "text": "that"
+ },
+ {
+ "id": 8456,
+ "start": 4741.08,
+ "end": 4741.16,
+ "text": "it"
+ },
+ {
+ "id": 8457,
+ "start": 4741.16,
+ "end": 4741.3,
+ "text": "would"
+ },
+ {
+ "id": 8458,
+ "start": 4741.3,
+ "end": 4741.4,
+ "text": "be"
+ },
+ {
+ "id": 8459,
+ "start": 4741.4,
+ "end": 4741.68,
+ "text": "somewhat"
+ },
+ {
+ "id": 8460,
+ "start": 4741.68,
+ "end": 4741.96,
+ "text": "different"
+ },
+ {
+ "id": 8461,
+ "start": 4741.96,
+ "end": 4742.16,
+ "text": "because"
+ },
+ {
+ "id": 8462,
+ "start": 4742.16,
+ "end": 4742.24,
+ "text": "we"
+ },
+ {
+ "id": 8463,
+ "start": 4742.24,
+ "end": 4742.36,
+ "text": "have"
+ },
+ {
+ "id": 8464,
+ "start": 4742.36,
+ "end": 4742.64,
+ "text": "somewhat"
+ },
+ {
+ "id": 8465,
+ "start": 4742.64,
+ "end": 4742.9,
+ "text": "different"
+ },
+ {
+ "id": 8466,
+ "start": 4742.9,
+ "end": 4743.56,
+ "text": "sensibilities"
+ },
+ {
+ "id": 8467,
+ "start": 4743.56,
+ "end": 4743.78,
+ "text": "in"
+ },
+ {
+ "id": 8468,
+ "start": 4743.78,
+ "end": 4743.92,
+ "text": "the"
+ },
+ {
+ "id": 8469,
+ "start": 4743.92,
+ "end": 4744.24,
+ "text": "US"
+ },
+ {
+ "id": 8470,
+ "start": 4744.24,
+ "end": 4744.54,
+ "text": "as"
+ },
+ {
+ "id": 8471,
+ "start": 4744.54,
+ "end": 4745.24,
+ "text": "other"
+ },
+ {
+ "id": 8472,
+ "start": 4745.24,
+ "end": 4746.94,
+ "text": "countries"
+ },
+ {
+ "id": 8473,
+ "start": 4746.94,
+ "end": 4747.92,
+ "text": "we're"
+ },
+ {
+ "id": 8474,
+ "start": 4747.92,
+ "end": 4748.32,
+ "text": "committed"
+ },
+ {
+ "id": 8475,
+ "start": 4748.32,
+ "end": 4748.56,
+ "text": "to"
+ },
+ {
+ "id": 8476,
+ "start": 4748.56,
+ "end": 4749.58,
+ "text": "rolling"
+ },
+ {
+ "id": 8477,
+ "start": 4749.58,
+ "end": 4749.72,
+ "text": "out"
+ },
+ {
+ "id": 8478,
+ "start": 4749.72,
+ "end": 4749.92,
+ "text": "the"
+ },
+ {
+ "id": 8479,
+ "start": 4749.92,
+ "end": 4750.58,
+ "text": "controls"
+ },
+ {
+ "id": 8480,
+ "start": 4750.58,
+ "end": 4751.4,
+ "text": "and"
+ },
+ {
+ "id": 8481,
+ "start": 4751.4,
+ "end": 4751.64,
+ "text": "the"
+ },
+ {
+ "id": 8482,
+ "start": 4751.64,
+ "end": 4752.32,
+ "text": "affirmative"
+ },
+ {
+ "id": 8483,
+ "start": 4752.32,
+ "end": 4752.74,
+ "text": "consent."
+ },
+ {
+ "id": 8484,
+ "start": 4752.74,
+ "end": 4753.96,
+ "text": "And"
+ },
+ {
+ "id": 8485,
+ "start": 4753.96,
+ "end": 4755.04,
+ "text": "the"
+ },
+ {
+ "id": 8486,
+ "start": 4755.04,
+ "end": 4756.04,
+ "text": "special"
+ },
+ {
+ "id": 8487,
+ "start": 4756.04,
+ "end": 4756.46,
+ "text": "controls"
+ },
+ {
+ "id": 8488,
+ "start": 4756.46,
+ "end": 4756.76,
+ "text": "around"
+ },
+ {
+ "id": 8489,
+ "start": 4756.76,
+ "end": 4758.04,
+ "text": "sensitive"
+ },
+ {
+ "id": 8490,
+ "start": 4758.04,
+ "end": 4759.04,
+ "text": "types"
+ },
+ {
+ "id": 8491,
+ "start": 4759.04,
+ "end": 4759.16,
+ "text": "of"
+ },
+ {
+ "id": 8492,
+ "start": 4759.16,
+ "end": 4759.68,
+ "text": "technology"
+ },
+ {
+ "id": 8493,
+ "start": 4759.68,
+ "end": 4759.86,
+ "text": "like"
+ },
+ {
+ "id": 8494,
+ "start": 4759.86,
+ "end": 4760.1,
+ "text": "face"
+ },
+ {
+ "id": 8495,
+ "start": 4760.1,
+ "end": 4760.64,
+ "text": "recognition."
+ },
+ {
+ "id": 8496,
+ "start": 4760.64,
+ "end": 4761.76,
+ "text": "That"
+ },
+ {
+ "id": 8497,
+ "start": 4761.76,
+ "end": 4762.02,
+ "text": "are"
+ },
+ {
+ "id": 8498,
+ "start": 4762.02,
+ "end": 4762.5,
+ "text": "required"
+ },
+ {
+ "id": 8499,
+ "start": 4762.5,
+ "end": 4762.62,
+ "text": "in"
+ },
+ {
+ "id": 8500,
+ "start": 4762.62,
+ "end": 4763.18,
+ "text": "GDPR"
+ },
+ {
+ "id": 8501,
+ "start": 4763.18,
+ "end": 4763.4,
+ "text": "we're"
+ },
+ {
+ "id": 8502,
+ "start": 4763.4,
+ "end": 4763.6,
+ "text": "doing"
+ },
+ {
+ "id": 8503,
+ "start": 4763.6,
+ "end": 4763.74,
+ "text": "that"
+ },
+ {
+ "id": 8504,
+ "start": 4763.74,
+ "end": 4764,
+ "text": "around"
+ },
+ {
+ "id": 8505,
+ "start": 4764,
+ "end": 4764.12,
+ "text": "the"
+ },
+ {
+ "id": 8506,
+ "start": 4764.12,
+ "end": 4764.88,
+ "text": "world."
+ },
+ {
+ "id": 8507,
+ "start": 4764.88,
+ "end": 4765.42,
+ "text": "So"
+ },
+ {
+ "id": 8508,
+ "start": 4765.42,
+ "end": 4765.92,
+ "text": "I"
+ },
+ {
+ "id": 8509,
+ "start": 4765.92,
+ "end": 4766.12,
+ "text": "think,"
+ },
+ {
+ "id": 8510,
+ "start": 4766.12,
+ "end": 4766.28,
+ "text": "it's"
+ },
+ {
+ "id": 8511,
+ "start": 4766.28,
+ "end": 4766.58,
+ "text": "certainly"
+ },
+ {
+ "id": 8512,
+ "start": 4766.58,
+ "end": 4766.84,
+ "text": "worth"
+ },
+ {
+ "id": 8513,
+ "start": 4766.84,
+ "end": 4767.38,
+ "text": "discussing"
+ },
+ {
+ "id": 8514,
+ "start": 4767.38,
+ "end": 4767.72,
+ "text": "whether"
+ },
+ {
+ "id": 8515,
+ "start": 4767.72,
+ "end": 4767.88,
+ "text": "we"
+ },
+ {
+ "id": 8516,
+ "start": 4767.88,
+ "end": 4768.14,
+ "text": "should"
+ },
+ {
+ "id": 8517,
+ "start": 4768.14,
+ "end": 4768.72,
+ "text": "have"
+ },
+ {
+ "id": 8518,
+ "start": 4768.72,
+ "end": 4769.04,
+ "text": "something"
+ },
+ {
+ "id": 8519,
+ "start": 4769.04,
+ "end": 4769.44,
+ "text": "similar"
+ },
+ {
+ "id": 8520,
+ "start": 4769.44,
+ "end": 4769.72,
+ "text": "in"
+ },
+ {
+ "id": 8521,
+ "start": 4769.72,
+ "end": 4769.86,
+ "text": "the"
+ },
+ {
+ "id": 8522,
+ "start": 4769.86,
+ "end": 4770.16,
+ "text": "US."
+ },
+ {
+ "id": 8523,
+ "start": 4770.16,
+ "end": 4771.1,
+ "text": "But"
+ },
+ {
+ "id": 8524,
+ "start": 4771.1,
+ "end": 4771.24,
+ "text": "what"
+ },
+ {
+ "id": 8525,
+ "start": 4771.24,
+ "end": 4771.32,
+ "text": "I"
+ },
+ {
+ "id": 8526,
+ "start": 4771.32,
+ "end": 4771.48,
+ "text": "would"
+ },
+ {
+ "id": 8527,
+ "start": 4771.48,
+ "end": 4771.6,
+ "text": "like"
+ },
+ {
+ "id": 8528,
+ "start": 4771.6,
+ "end": 4771.7,
+ "text": "to"
+ },
+ {
+ "id": 8529,
+ "start": 4771.7,
+ "end": 4771.84,
+ "text": "say"
+ },
+ {
+ "id": 8530,
+ "start": 4771.84,
+ "end": 4772.08,
+ "text": "today"
+ },
+ {
+ "id": 8531,
+ "start": 4772.08,
+ "end": 4772.26,
+ "text": "is"
+ },
+ {
+ "id": 8532,
+ "start": 4772.26,
+ "end": 4772.44,
+ "text": "that"
+ },
+ {
+ "id": 8533,
+ "start": 4772.44,
+ "end": 4772.68,
+ "text": "we're"
+ },
+ {
+ "id": 8534,
+ "start": 4772.68,
+ "end": 4772.9,
+ "text": "going"
+ },
+ {
+ "id": 8535,
+ "start": 4772.9,
+ "end": 4773.04,
+ "text": "to"
+ },
+ {
+ "id": 8536,
+ "start": 4773.04,
+ "end": 4773.46,
+ "text": "go"
+ },
+ {
+ "id": 8537,
+ "start": 4773.46,
+ "end": 4773.8,
+ "text": "forward"
+ },
+ {
+ "id": 8538,
+ "start": 4773.8,
+ "end": 4774,
+ "text": "and"
+ },
+ {
+ "id": 8539,
+ "start": 4774,
+ "end": 4774.7,
+ "text": "implement"
+ },
+ {
+ "id": 8540,
+ "start": 4774.7,
+ "end": 4774.96,
+ "text": "that"
+ },
+ {
+ "id": 8541,
+ "start": 4774.96,
+ "end": 4775.76,
+ "text": "regardless"
+ },
+ {
+ "id": 8542,
+ "start": 4775.76,
+ "end": 4775.86,
+ "text": "of"
+ },
+ {
+ "id": 8543,
+ "start": 4775.86,
+ "end": 4776.02,
+ "text": "what"
+ },
+ {
+ "id": 8544,
+ "start": 4776.02,
+ "end": 4776.14,
+ "text": "the"
+ },
+ {
+ "id": 8545,
+ "start": 4776.14,
+ "end": 4776.66,
+ "text": "regulatory"
+ },
+ {
+ "id": 8546,
+ "start": 4776.66,
+ "end": 4776.96,
+ "text": "outcome"
+ },
+ {
+ "id": 8547,
+ "start": 4776.96,
+ "end": 4777.08,
+ "text": "is,"
+ },
+ {
+ "id": 8548,
+ "start": 4777.08,
+ "end": 4778.14,
+ "text": "Senator"
+ },
+ {
+ "id": 8549,
+ "start": 4778.14,
+ "end": 4778.92,
+ "text": "wicker."
+ },
+ {
+ "id": 8550,
+ "start": 4778.92,
+ "end": 4779.7,
+ "text": "Senator"
+ },
+ {
+ "id": 8551,
+ "start": 4779.7,
+ "end": 4780.4,
+ "text": "tone"
+ },
+ {
+ "id": 8552,
+ "start": 4780.4,
+ "end": 4780.78,
+ "text": "well,"
+ },
+ {
+ "id": 8553,
+ "start": 4780.78,
+ "end": 4782.7,
+ "text": "chair"
+ },
+ {
+ "id": 8554,
+ "start": 4782.7,
+ "end": 4784.08,
+ "text": "next,"
+ },
+ {
+ "id": 8555,
+ "start": 4784.08,
+ "end": 4785.06,
+ "text": "Senator"
+ },
+ {
+ "id": 8556,
+ "start": 4785.06,
+ "end": 4785.4,
+ "text": "wicker,"
+ },
+ {
+ "id": 8557,
+ "start": 4785.4,
+ "end": 4785.6,
+ "text": "thank"
+ },
+ {
+ "id": 8558,
+ "start": 4785.6,
+ "end": 4785.78,
+ "text": "you,"
+ },
+ {
+ "id": 8559,
+ "start": 4785.78,
+ "end": 4786.06,
+ "text": "Mr"
+ },
+ {
+ "id": 8560,
+ "start": 4786.06,
+ "end": 4786.38,
+ "text": "Chairman"
+ },
+ {
+ "id": 8561,
+ "start": 4786.38,
+ "end": 4786.56,
+ "text": "and"
+ },
+ {
+ "id": 8562,
+ "start": 4786.56,
+ "end": 4786.82,
+ "text": "Mr"
+ },
+ {
+ "id": 8563,
+ "start": 4786.82,
+ "end": 4787.24,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 8564,
+ "start": 4787.24,
+ "end": 4787.44,
+ "text": "Thank"
+ },
+ {
+ "id": 8565,
+ "start": 4787.44,
+ "end": 4787.54,
+ "text": "you"
+ },
+ {
+ "id": 8566,
+ "start": 4787.54,
+ "end": 4787.7,
+ "text": "for"
+ },
+ {
+ "id": 8567,
+ "start": 4787.7,
+ "end": 4787.9,
+ "text": "being"
+ },
+ {
+ "id": 8568,
+ "start": 4787.9,
+ "end": 4788.12,
+ "text": "with"
+ },
+ {
+ "id": 8569,
+ "start": 4788.12,
+ "end": 4788.28,
+ "text": "us."
+ },
+ {
+ "id": 8570,
+ "start": 4788.28,
+ "end": 4789.24,
+ "text": "My"
+ },
+ {
+ "id": 8571,
+ "start": 4789.24,
+ "end": 4789.6,
+ "text": "question"
+ },
+ {
+ "id": 8572,
+ "start": 4789.6,
+ "end": 4789.8,
+ "text": "is"
+ },
+ {
+ "id": 8573,
+ "start": 4789.8,
+ "end": 4790.04,
+ "text": "going"
+ },
+ {
+ "id": 8574,
+ "start": 4790.04,
+ "end": 4790.1,
+ "text": "to"
+ },
+ {
+ "id": 8575,
+ "start": 4790.1,
+ "end": 4790.22,
+ "text": "be"
+ },
+ {
+ "id": 8576,
+ "start": 4790.22,
+ "end": 4790.44,
+ "text": "sort"
+ },
+ {
+ "id": 8577,
+ "start": 4790.44,
+ "end": 4790.54,
+ "text": "of"
+ },
+ {
+ "id": 8578,
+ "start": 4790.54,
+ "end": 4790.62,
+ "text": "a"
+ },
+ {
+ "id": 8579,
+ "start": 4790.62,
+ "end": 4791.08,
+ "text": "follow"
+ },
+ {
+ "id": 8580,
+ "start": 4791.08,
+ "end": 4791.26,
+ "text": "up"
+ },
+ {
+ "id": 8581,
+ "start": 4791.26,
+ "end": 4791.68,
+ "text": "on"
+ },
+ {
+ "id": 8582,
+ "start": 4791.68,
+ "end": 4791.86,
+ "text": "what"
+ },
+ {
+ "id": 8583,
+ "start": 4791.86,
+ "end": 4792.28,
+ "text": "Senator"
+ },
+ {
+ "id": 8584,
+ "start": 4792.28,
+ "end": 4792.56,
+ "text": "Hatch"
+ },
+ {
+ "id": 8585,
+ "start": 4792.56,
+ "end": 4792.76,
+ "text": "was"
+ },
+ {
+ "id": 8586,
+ "start": 4792.76,
+ "end": 4793.12,
+ "text": "talking"
+ },
+ {
+ "id": 8587,
+ "start": 4793.12,
+ "end": 4793.4,
+ "text": "about"
+ },
+ {
+ "id": 8588,
+ "start": 4793.4,
+ "end": 4793.94,
+ "text": "and"
+ },
+ {
+ "id": 8589,
+ "start": 4793.94,
+ "end": 4794.28,
+ "text": "let"
+ },
+ {
+ "id": 8590,
+ "start": 4794.28,
+ "end": 4794.62,
+ "text": "me"
+ },
+ {
+ "id": 8591,
+ "start": 4794.62,
+ "end": 4795.32,
+ "text": "agree"
+ },
+ {
+ "id": 8592,
+ "start": 4795.32,
+ "end": 4796.04,
+ "text": "with,"
+ },
+ {
+ "id": 8593,
+ "start": 4796.04,
+ "end": 4797.18,
+ "text": "basically"
+ },
+ {
+ "id": 8594,
+ "start": 4797.18,
+ "end": 4799.38,
+ "text": "his"
+ },
+ {
+ "id": 8595,
+ "start": 4799.38,
+ "end": 4799.74,
+ "text": "vice"
+ },
+ {
+ "id": 8596,
+ "start": 4799.74,
+ "end": 4799.96,
+ "text": "that"
+ },
+ {
+ "id": 8597,
+ "start": 4799.96,
+ "end": 4800.2,
+ "text": "we"
+ },
+ {
+ "id": 8598,
+ "start": 4800.2,
+ "end": 4800.42,
+ "text": "don't"
+ },
+ {
+ "id": 8599,
+ "start": 4800.42,
+ "end": 4800.72,
+ "text": "want"
+ },
+ {
+ "id": 8600,
+ "start": 4800.72,
+ "end": 4800.84,
+ "text": "to"
+ },
+ {
+ "id": 8601,
+ "start": 4800.84,
+ "end": 4801.28,
+ "text": "over"
+ },
+ {
+ "id": 8602,
+ "start": 4801.28,
+ "end": 4801.78,
+ "text": "regulate"
+ },
+ {
+ "id": 8603,
+ "start": 4801.78,
+ "end": 4801.94,
+ "text": "to"
+ },
+ {
+ "id": 8604,
+ "start": 4801.94,
+ "end": 4802.7,
+ "text": "the"
+ },
+ {
+ "id": 8605,
+ "start": 4802.7,
+ "end": 4803.08,
+ "text": "point"
+ },
+ {
+ "id": 8606,
+ "start": 4803.08,
+ "end": 4803.74,
+ "text": "where"
+ },
+ {
+ "id": 8607,
+ "start": 4803.74,
+ "end": 4803.96,
+ "text": "we're"
+ },
+ {
+ "id": 8608,
+ "start": 4803.96,
+ "end": 4804.68,
+ "text": "stifling"
+ },
+ {
+ "id": 8609,
+ "start": 4804.68,
+ "end": 4805.54,
+ "text": "innovation"
+ },
+ {
+ "id": 8610,
+ "start": 4805.54,
+ "end": 4806.16,
+ "text": "and"
+ },
+ {
+ "id": 8611,
+ "start": 4806.16,
+ "end": 4806.78,
+ "text": "investment."
+ },
+ {
+ "id": 8612,
+ "start": 4806.78,
+ "end": 4807.66,
+ "text": "I"
+ },
+ {
+ "id": 8613,
+ "start": 4807.66,
+ "end": 4808.28,
+ "text": "understand"
+ },
+ {
+ "id": 8614,
+ "start": 4808.28,
+ "end": 4808.48,
+ "text": "with"
+ },
+ {
+ "id": 8615,
+ "start": 4808.48,
+ "end": 4809.02,
+ "text": "regard"
+ },
+ {
+ "id": 8616,
+ "start": 4809.02,
+ "end": 4809.98,
+ "text": "to"
+ },
+ {
+ "id": 8617,
+ "start": 4809.98,
+ "end": 4810.98,
+ "text": "suggested"
+ },
+ {
+ "id": 8618,
+ "start": 4810.98,
+ "end": 4811.82,
+ "text": "rules"
+ },
+ {
+ "id": 8619,
+ "start": 4811.82,
+ "end": 4812.2,
+ "text": "or"
+ },
+ {
+ "id": 8620,
+ "start": 4812.2,
+ "end": 4812.86,
+ "text": "suggested"
+ },
+ {
+ "id": 8621,
+ "start": 4812.86,
+ "end": 4813.7,
+ "text": "legislation"
+ },
+ {
+ "id": 8622,
+ "start": 4813.7,
+ "end": 4814.14,
+ "text": "there"
+ },
+ {
+ "id": 8623,
+ "start": 4814.14,
+ "end": 4814.28,
+ "text": "at"
+ },
+ {
+ "id": 8624,
+ "start": 4814.28,
+ "end": 4814.48,
+ "text": "least"
+ },
+ {
+ "id": 8625,
+ "start": 4814.48,
+ "end": 4814.78,
+ "text": "two"
+ },
+ {
+ "id": 8626,
+ "start": 4814.78,
+ "end": 4815.2,
+ "text": "schools"
+ },
+ {
+ "id": 8627,
+ "start": 4815.2,
+ "end": 4815.36,
+ "text": "of"
+ },
+ {
+ "id": 8628,
+ "start": 4815.36,
+ "end": 4816.52,
+ "text": "thought"
+ },
+ {
+ "id": 8629,
+ "start": 4816.52,
+ "end": 4817.28,
+ "text": "out"
+ },
+ {
+ "id": 8630,
+ "start": 4817.28,
+ "end": 4817.64,
+ "text": "there."
+ },
+ {
+ "id": 8631,
+ "start": 4817.64,
+ "end": 4818.48,
+ "text": "One"
+ },
+ {
+ "id": 8632,
+ "start": 4818.48,
+ "end": 4818.72,
+ "text": "would"
+ },
+ {
+ "id": 8633,
+ "start": 4818.72,
+ "end": 4818.84,
+ "text": "be"
+ },
+ {
+ "id": 8634,
+ "start": 4818.84,
+ "end": 4819.18,
+ "text": "the"
+ },
+ {
+ "id": 8635,
+ "start": 4819.18,
+ "end": 4819.92,
+ "text": "ISPs."
+ },
+ {
+ "id": 8636,
+ "start": 4819.92,
+ "end": 4820.06,
+ "text": "The"
+ },
+ {
+ "id": 8637,
+ "start": 4820.06,
+ "end": 4820.84,
+ "text": "Internet"
+ },
+ {
+ "id": 8638,
+ "start": 4820.84,
+ "end": 4821.34,
+ "text": "service"
+ },
+ {
+ "id": 8639,
+ "start": 4821.34,
+ "end": 4822.44,
+ "text": "providers"
+ },
+ {
+ "id": 8640,
+ "start": 4822.44,
+ "end": 4823.32,
+ "text": "who"
+ },
+ {
+ "id": 8641,
+ "start": 4823.32,
+ "end": 4823.48,
+ "text": "are"
+ },
+ {
+ "id": 8642,
+ "start": 4823.48,
+ "end": 4824.04,
+ "text": "advocating"
+ },
+ {
+ "id": 8643,
+ "start": 4824.04,
+ "end": 4824.24,
+ "text": "for"
+ },
+ {
+ "id": 8644,
+ "start": 4824.24,
+ "end": 4824.78,
+ "text": "privacy"
+ },
+ {
+ "id": 8645,
+ "start": 4824.78,
+ "end": 4825.46,
+ "text": "protections"
+ },
+ {
+ "id": 8646,
+ "start": 4825.46,
+ "end": 4826.2,
+ "text": "for"
+ },
+ {
+ "id": 8647,
+ "start": 4826.2,
+ "end": 4826.9,
+ "text": "consumers"
+ },
+ {
+ "id": 8648,
+ "start": 4826.9,
+ "end": 4827.18,
+ "text": "that"
+ },
+ {
+ "id": 8649,
+ "start": 4827.18,
+ "end": 4827.86,
+ "text": "apply"
+ },
+ {
+ "id": 8650,
+ "start": 4827.86,
+ "end": 4828.06,
+ "text": "to"
+ },
+ {
+ "id": 8651,
+ "start": 4828.06,
+ "end": 4828.6,
+ "text": "all"
+ },
+ {
+ "id": 8652,
+ "start": 4828.6,
+ "end": 4829.28,
+ "text": "online"
+ },
+ {
+ "id": 8653,
+ "start": 4829.28,
+ "end": 4829.88,
+ "text": "entities"
+ },
+ {
+ "id": 8654,
+ "start": 4829.88,
+ "end": 4830.94,
+ "text": "equally"
+ },
+ {
+ "id": 8655,
+ "start": 4830.94,
+ "end": 4831.96,
+ "text": "across"
+ },
+ {
+ "id": 8656,
+ "start": 4831.96,
+ "end": 4832.14,
+ "text": "the"
+ },
+ {
+ "id": 8657,
+ "start": 4832.14,
+ "end": 4832.58,
+ "text": "entire"
+ },
+ {
+ "id": 8658,
+ "start": 4832.58,
+ "end": 4833.08,
+ "text": "Internet"
+ },
+ {
+ "id": 8659,
+ "start": 4833.08,
+ "end": 4835.38,
+ "text": "ecosystem."
+ },
+ {
+ "id": 8660,
+ "start": 4835.38,
+ "end": 4836.38,
+ "text": "Facebook"
+ },
+ {
+ "id": 8661,
+ "start": 4836.38,
+ "end": 4836.54,
+ "text": "is"
+ },
+ {
+ "id": 8662,
+ "start": 4836.54,
+ "end": 4836.68,
+ "text": "an"
+ },
+ {
+ "id": 8663,
+ "start": 4836.68,
+ "end": 4837.18,
+ "text": "edge"
+ },
+ {
+ "id": 8664,
+ "start": 4837.18,
+ "end": 4837.94,
+ "text": "provider"
+ },
+ {
+ "id": 8665,
+ "start": 4837.94,
+ "end": 4838.08,
+ "text": "on"
+ },
+ {
+ "id": 8666,
+ "start": 4838.08,
+ "end": 4838.22,
+ "text": "the"
+ },
+ {
+ "id": 8667,
+ "start": 4838.22,
+ "end": 4838.44,
+ "text": "other"
+ },
+ {
+ "id": 8668,
+ "start": 4838.44,
+ "end": 4838.68,
+ "text": "hand"
+ },
+ {
+ "id": 8669,
+ "start": 4838.68,
+ "end": 4838.9,
+ "text": "it's"
+ },
+ {
+ "id": 8670,
+ "start": 4838.9,
+ "end": 4839.06,
+ "text": "my"
+ },
+ {
+ "id": 8671,
+ "start": 4839.06,
+ "end": 4839.58,
+ "text": "understanding"
+ },
+ {
+ "id": 8672,
+ "start": 4839.58,
+ "end": 4839.8,
+ "text": "that"
+ },
+ {
+ "id": 8673,
+ "start": 4839.8,
+ "end": 4840.1,
+ "text": "many"
+ },
+ {
+ "id": 8674,
+ "start": 4840.1,
+ "end": 4840.92,
+ "text": "edge"
+ },
+ {
+ "id": 8675,
+ "start": 4840.92,
+ "end": 4841.42,
+ "text": "providers"
+ },
+ {
+ "id": 8676,
+ "start": 4841.42,
+ "end": 4841.62,
+ "text": "such"
+ },
+ {
+ "id": 8677,
+ "start": 4841.62,
+ "end": 4841.74,
+ "text": "as"
+ },
+ {
+ "id": 8678,
+ "start": 4841.74,
+ "end": 4842.28,
+ "text": "Facebook"
+ },
+ {
+ "id": 8679,
+ "start": 4842.28,
+ "end": 4842.5,
+ "text": "may"
+ },
+ {
+ "id": 8680,
+ "start": 4842.5,
+ "end": 4842.72,
+ "text": "not"
+ },
+ {
+ "id": 8681,
+ "start": 4842.72,
+ "end": 4843.24,
+ "text": "support"
+ },
+ {
+ "id": 8682,
+ "start": 4843.24,
+ "end": 4843.52,
+ "text": "that"
+ },
+ {
+ "id": 8683,
+ "start": 4843.52,
+ "end": 4844,
+ "text": "effort"
+ },
+ {
+ "id": 8684,
+ "start": 4844,
+ "end": 4845,
+ "text": "because"
+ },
+ {
+ "id": 8685,
+ "start": 4845,
+ "end": 4845.28,
+ "text": "edge"
+ },
+ {
+ "id": 8686,
+ "start": 4845.28,
+ "end": 4845.68,
+ "text": "providers"
+ },
+ {
+ "id": 8687,
+ "start": 4845.68,
+ "end": 4845.84,
+ "text": "have"
+ },
+ {
+ "id": 8688,
+ "start": 4845.84,
+ "end": 4846.18,
+ "text": "different"
+ },
+ {
+ "id": 8689,
+ "start": 4846.18,
+ "end": 4846.7,
+ "text": "business"
+ },
+ {
+ "id": 8690,
+ "start": 4846.7,
+ "end": 4847.86,
+ "text": "models."
+ },
+ {
+ "id": 8691,
+ "start": 4847.86,
+ "end": 4848.72,
+ "text": "Then"
+ },
+ {
+ "id": 8692,
+ "start": 4848.72,
+ "end": 4848.92,
+ "text": "the"
+ },
+ {
+ "id": 8693,
+ "start": 4848.92,
+ "end": 4849.78,
+ "text": "ISPs"
+ },
+ {
+ "id": 8694,
+ "start": 4849.78,
+ "end": 4850.28,
+ "text": "and"
+ },
+ {
+ "id": 8695,
+ "start": 4850.28,
+ "end": 4850.58,
+ "text": "should"
+ },
+ {
+ "id": 8696,
+ "start": 4850.58,
+ "end": 4850.76,
+ "text": "not"
+ },
+ {
+ "id": 8697,
+ "start": 4850.76,
+ "end": 4850.88,
+ "text": "be"
+ },
+ {
+ "id": 8698,
+ "start": 4850.88,
+ "end": 4851.34,
+ "text": "considered"
+ },
+ {
+ "id": 8699,
+ "start": 4851.34,
+ "end": 4851.7,
+ "text": "like"
+ },
+ {
+ "id": 8700,
+ "start": 4851.7,
+ "end": 4852.38,
+ "text": "services"
+ },
+ {
+ "id": 8701,
+ "start": 4852.38,
+ "end": 4853.34,
+ "text": "so"
+ },
+ {
+ "id": 8702,
+ "start": 4853.34,
+ "end": 4854,
+ "text": "do"
+ },
+ {
+ "id": 8703,
+ "start": 4854,
+ "end": 4854.14,
+ "text": "you"
+ },
+ {
+ "id": 8704,
+ "start": 4854.14,
+ "end": 4854.36,
+ "text": "think"
+ },
+ {
+ "id": 8705,
+ "start": 4854.36,
+ "end": 4854.5,
+ "text": "we"
+ },
+ {
+ "id": 8706,
+ "start": 4854.5,
+ "end": 4854.92,
+ "text": "need"
+ },
+ {
+ "id": 8707,
+ "start": 4854.92,
+ "end": 4855.62,
+ "text": "consistent"
+ },
+ {
+ "id": 8708,
+ "start": 4855.62,
+ "end": 4856.16,
+ "text": "privacy"
+ },
+ {
+ "id": 8709,
+ "start": 4856.16,
+ "end": 4856.88,
+ "text": "protections"
+ },
+ {
+ "id": 8710,
+ "start": 4856.88,
+ "end": 4857.46,
+ "text": "for"
+ },
+ {
+ "id": 8711,
+ "start": 4857.46,
+ "end": 4858,
+ "text": "consumers"
+ },
+ {
+ "id": 8712,
+ "start": 4858,
+ "end": 4858.4,
+ "text": "across"
+ },
+ {
+ "id": 8713,
+ "start": 4858.4,
+ "end": 4858.64,
+ "text": "the"
+ },
+ {
+ "id": 8714,
+ "start": 4858.64,
+ "end": 4859.91,
+ "text": "entire"
+ },
+ {
+ "id": 8715,
+ "start": 4859.91,
+ "end": 4860.47,
+ "text": "Internet"
+ },
+ {
+ "id": 8716,
+ "start": 4860.47,
+ "end": 4861.45,
+ "text": "ecosystem"
+ },
+ {
+ "id": 8717,
+ "start": 4861.45,
+ "end": 4862.09,
+ "text": "that"
+ },
+ {
+ "id": 8718,
+ "start": 4862.09,
+ "end": 4862.23,
+ "text": "are"
+ },
+ {
+ "id": 8719,
+ "start": 4862.23,
+ "end": 4862.45,
+ "text": "based"
+ },
+ {
+ "id": 8720,
+ "start": 4862.45,
+ "end": 4862.57,
+ "text": "on"
+ },
+ {
+ "id": 8721,
+ "start": 4862.57,
+ "end": 4862.69,
+ "text": "the"
+ },
+ {
+ "id": 8722,
+ "start": 4862.69,
+ "end": 4862.89,
+ "text": "type"
+ },
+ {
+ "id": 8723,
+ "start": 4862.89,
+ "end": 4862.99,
+ "text": "of"
+ },
+ {
+ "id": 8724,
+ "start": 4862.99,
+ "end": 4863.49,
+ "text": "consumer"
+ },
+ {
+ "id": 8725,
+ "start": 4863.49,
+ "end": 4864.45,
+ "text": "information"
+ },
+ {
+ "id": 8726,
+ "start": 4864.45,
+ "end": 4864.73,
+ "text": "being"
+ },
+ {
+ "id": 8727,
+ "start": 4864.73,
+ "end": 4865.17,
+ "text": "collected?"
+ },
+ {
+ "id": 8728,
+ "start": 4865.17,
+ "end": 4865.73,
+ "text": "Used"
+ },
+ {
+ "id": 8729,
+ "start": 4865.73,
+ "end": 4865.95,
+ "text": "or"
+ },
+ {
+ "id": 8730,
+ "start": 4865.95,
+ "end": 4866.43,
+ "text": "shared,"
+ },
+ {
+ "id": 8731,
+ "start": 4866.43,
+ "end": 4867.55,
+ "text": "regardless"
+ },
+ {
+ "id": 8732,
+ "start": 4867.55,
+ "end": 4868.05,
+ "text": "of"
+ },
+ {
+ "id": 8733,
+ "start": 4868.05,
+ "end": 4868.21,
+ "text": "the"
+ },
+ {
+ "id": 8734,
+ "start": 4868.21,
+ "end": 4868.85,
+ "text": "entity"
+ },
+ {
+ "id": 8735,
+ "start": 4868.85,
+ "end": 4869.67,
+ "text": "doing"
+ },
+ {
+ "id": 8736,
+ "start": 4869.67,
+ "end": 4869.83,
+ "text": "the"
+ },
+ {
+ "id": 8737,
+ "start": 4869.83,
+ "end": 4870.27,
+ "text": "collecting"
+ },
+ {
+ "id": 8738,
+ "start": 4870.27,
+ "end": 4870.47,
+ "text": "or"
+ },
+ {
+ "id": 8739,
+ "start": 4870.47,
+ "end": 4870.77,
+ "text": "using"
+ },
+ {
+ "id": 8740,
+ "start": 4870.77,
+ "end": 4870.91,
+ "text": "or"
+ },
+ {
+ "id": 8741,
+ "start": 4870.91,
+ "end": 4871.96,
+ "text": "sharing"
+ },
+ {
+ "id": 8742,
+ "start": 4871.96,
+ "end": 4873,
+ "text": "Senator."
+ },
+ {
+ "id": 8743,
+ "start": 4873,
+ "end": 4873.14,
+ "text": "This"
+ },
+ {
+ "id": 8744,
+ "start": 4873.14,
+ "end": 4873.26,
+ "text": "is"
+ },
+ {
+ "id": 8745,
+ "start": 4873.26,
+ "end": 4873.36,
+ "text": "an"
+ },
+ {
+ "id": 8746,
+ "start": 4873.36,
+ "end": 4873.84,
+ "text": "important"
+ },
+ {
+ "id": 8747,
+ "start": 4873.84,
+ "end": 4874.26,
+ "text": "question."
+ },
+ {
+ "id": 8748,
+ "start": 4874.26,
+ "end": 4874.84,
+ "text": "I"
+ },
+ {
+ "id": 8749,
+ "start": 4874.84,
+ "end": 4875.04,
+ "text": "would"
+ },
+ {
+ "id": 8750,
+ "start": 4875.04,
+ "end": 4875.74,
+ "text": "differentiate"
+ },
+ {
+ "id": 8751,
+ "start": 4875.74,
+ "end": 4876.14,
+ "text": "between"
+ },
+ {
+ "id": 8752,
+ "start": 4876.14,
+ "end": 4876.96,
+ "text": "ISPs"
+ },
+ {
+ "id": 8753,
+ "start": 4876.96,
+ "end": 4877.56,
+ "text": "which"
+ },
+ {
+ "id": 8754,
+ "start": 4877.56,
+ "end": 4877.7,
+ "text": "I"
+ },
+ {
+ "id": 8755,
+ "start": 4877.7,
+ "end": 4878.08,
+ "text": "consider"
+ },
+ {
+ "id": 8756,
+ "start": 4878.08,
+ "end": 4878.18,
+ "text": "to"
+ },
+ {
+ "id": 8757,
+ "start": 4878.18,
+ "end": 4878.28,
+ "text": "be"
+ },
+ {
+ "id": 8758,
+ "start": 4878.28,
+ "end": 4878.42,
+ "text": "the"
+ },
+ {
+ "id": 8759,
+ "start": 4878.42,
+ "end": 4878.72,
+ "text": "pipes"
+ },
+ {
+ "id": 8760,
+ "start": 4878.72,
+ "end": 4878.86,
+ "text": "of"
+ },
+ {
+ "id": 8761,
+ "start": 4878.86,
+ "end": 4878.98,
+ "text": "the"
+ },
+ {
+ "id": 8762,
+ "start": 4878.98,
+ "end": 4879.42,
+ "text": "Internet"
+ },
+ {
+ "id": 8763,
+ "start": 4879.42,
+ "end": 4880.22,
+ "text": "and"
+ },
+ {
+ "id": 8764,
+ "start": 4880.22,
+ "end": 4880.44,
+ "text": "the"
+ },
+ {
+ "id": 8765,
+ "start": 4880.44,
+ "end": 4881.16,
+ "text": "platforms"
+ },
+ {
+ "id": 8766,
+ "start": 4881.16,
+ "end": 4881.58,
+ "text": "like"
+ },
+ {
+ "id": 8767,
+ "start": 4881.58,
+ "end": 4882.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 8768,
+ "start": 4882.16,
+ "end": 4882.44,
+ "text": "or"
+ },
+ {
+ "id": 8769,
+ "start": 4882.44,
+ "end": 4882.75,
+ "text": "Google"
+ },
+ {
+ "id": 8770,
+ "start": 4882.75,
+ "end": 4883.63,
+ "text": "or"
+ },
+ {
+ "id": 8771,
+ "start": 4883.63,
+ "end": 4884.15,
+ "text": "Twitter"
+ },
+ {
+ "id": 8772,
+ "start": 4884.15,
+ "end": 4885.05,
+ "text": "YouTube"
+ },
+ {
+ "id": 8773,
+ "start": 4885.05,
+ "end": 4885.35,
+ "text": "that"
+ },
+ {
+ "id": 8774,
+ "start": 4885.35,
+ "end": 4885.83,
+ "text": "are"
+ },
+ {
+ "id": 8775,
+ "start": 4885.83,
+ "end": 4886.17,
+ "text": "the"
+ },
+ {
+ "id": 8776,
+ "start": 4886.17,
+ "end": 4886.95,
+ "text": "apps"
+ },
+ {
+ "id": 8777,
+ "start": 4886.95,
+ "end": 4887.37,
+ "text": "or"
+ },
+ {
+ "id": 8778,
+ "start": 4887.37,
+ "end": 4887.87,
+ "text": "platforms"
+ },
+ {
+ "id": 8779,
+ "start": 4887.87,
+ "end": 4888.03,
+ "text": "on"
+ },
+ {
+ "id": 8780,
+ "start": 4888.03,
+ "end": 4888.27,
+ "text": "top"
+ },
+ {
+ "id": 8781,
+ "start": 4888.27,
+ "end": 4888.39,
+ "text": "of"
+ },
+ {
+ "id": 8782,
+ "start": 4888.39,
+ "end": 4888.59,
+ "text": "that."
+ },
+ {
+ "id": 8783,
+ "start": 4888.59,
+ "end": 4889.33,
+ "text": "I"
+ },
+ {
+ "id": 8784,
+ "start": 4889.33,
+ "end": 4889.51,
+ "text": "think"
+ },
+ {
+ "id": 8785,
+ "start": 4889.51,
+ "end": 4889.67,
+ "text": "in"
+ },
+ {
+ "id": 8786,
+ "start": 4889.67,
+ "end": 4890.13,
+ "text": "general"
+ },
+ {
+ "id": 8787,
+ "start": 4890.13,
+ "end": 4890.61,
+ "text": "the"
+ },
+ {
+ "id": 8788,
+ "start": 4890.61,
+ "end": 4891.57,
+ "text": "expectations"
+ },
+ {
+ "id": 8789,
+ "start": 4891.57,
+ "end": 4891.77,
+ "text": "that"
+ },
+ {
+ "id": 8790,
+ "start": 4891.77,
+ "end": 4892.07,
+ "text": "people"
+ },
+ {
+ "id": 8791,
+ "start": 4892.07,
+ "end": 4892.37,
+ "text": "have"
+ },
+ {
+ "id": 8792,
+ "start": 4892.37,
+ "end": 4892.63,
+ "text": "of"
+ },
+ {
+ "id": 8793,
+ "start": 4892.63,
+ "end": 4892.77,
+ "text": "the"
+ },
+ {
+ "id": 8794,
+ "start": 4892.77,
+ "end": 4893.54,
+ "text": "pipes"
+ },
+ {
+ "id": 8795,
+ "start": 4893.54,
+ "end": 4894.14,
+ "text": "are"
+ },
+ {
+ "id": 8796,
+ "start": 4894.14,
+ "end": 4894.4,
+ "text": "somewhat"
+ },
+ {
+ "id": 8797,
+ "start": 4894.4,
+ "end": 4894.72,
+ "text": "different"
+ },
+ {
+ "id": 8798,
+ "start": 4894.72,
+ "end": 4895.02,
+ "text": "from"
+ },
+ {
+ "id": 8799,
+ "start": 4895.02,
+ "end": 4895.14,
+ "text": "the"
+ },
+ {
+ "id": 8800,
+ "start": 4895.14,
+ "end": 4895.64,
+ "text": "platforms."
+ },
+ {
+ "id": 8801,
+ "start": 4895.64,
+ "end": 4896.2,
+ "text": "So"
+ },
+ {
+ "id": 8802,
+ "start": 4896.2,
+ "end": 4896.4,
+ "text": "there"
+ },
+ {
+ "id": 8803,
+ "start": 4896.4,
+ "end": 4896.58,
+ "text": "might"
+ },
+ {
+ "id": 8804,
+ "start": 4896.58,
+ "end": 4896.68,
+ "text": "be"
+ },
+ {
+ "id": 8805,
+ "start": 4896.68,
+ "end": 4896.98,
+ "text": "areas"
+ },
+ {
+ "id": 8806,
+ "start": 4896.98,
+ "end": 4897.24,
+ "text": "where"
+ },
+ {
+ "id": 8807,
+ "start": 4897.24,
+ "end": 4897.46,
+ "text": "there"
+ },
+ {
+ "id": 8808,
+ "start": 4897.46,
+ "end": 4897.72,
+ "text": "needs"
+ },
+ {
+ "id": 8809,
+ "start": 4897.72,
+ "end": 4897.86,
+ "text": "to"
+ },
+ {
+ "id": 8810,
+ "start": 4897.86,
+ "end": 4898.06,
+ "text": "be"
+ },
+ {
+ "id": 8811,
+ "start": 4898.06,
+ "end": 4898.68,
+ "text": "more"
+ },
+ {
+ "id": 8812,
+ "start": 4898.68,
+ "end": 4899.2,
+ "text": "regulation."
+ },
+ {
+ "id": 8813,
+ "start": 4899.2,
+ "end": 4899.36,
+ "text": "And"
+ },
+ {
+ "id": 8814,
+ "start": 4899.36,
+ "end": 4899.66,
+ "text": "one"
+ },
+ {
+ "id": 8815,
+ "start": 4899.66,
+ "end": 4899.86,
+ "text": "and"
+ },
+ {
+ "id": 8816,
+ "start": 4899.86,
+ "end": 4900.04,
+ "text": "less"
+ },
+ {
+ "id": 8817,
+ "start": 4900.04,
+ "end": 4900.16,
+ "text": "than"
+ },
+ {
+ "id": 8818,
+ "start": 4900.16,
+ "end": 4900.28,
+ "text": "the"
+ },
+ {
+ "id": 8819,
+ "start": 4900.28,
+ "end": 4900.46,
+ "text": "other."
+ },
+ {
+ "id": 8820,
+ "start": 4900.46,
+ "end": 4900.56,
+ "text": "But"
+ },
+ {
+ "id": 8821,
+ "start": 4900.56,
+ "end": 4900.74,
+ "text": "I"
+ },
+ {
+ "id": 8822,
+ "start": 4900.74,
+ "end": 4900.88,
+ "text": "think"
+ },
+ {
+ "id": 8823,
+ "start": 4900.88,
+ "end": 4901.36,
+ "text": "there"
+ },
+ {
+ "id": 8824,
+ "start": 4901.36,
+ "end": 4901.46,
+ "text": "are"
+ },
+ {
+ "id": 8825,
+ "start": 4901.46,
+ "end": 4901.58,
+ "text": "going"
+ },
+ {
+ "id": 8826,
+ "start": 4901.58,
+ "end": 4901.64,
+ "text": "to"
+ },
+ {
+ "id": 8827,
+ "start": 4901.64,
+ "end": 4901.7,
+ "text": "be"
+ },
+ {
+ "id": 8828,
+ "start": 4901.7,
+ "end": 4901.86,
+ "text": "other"
+ },
+ {
+ "id": 8829,
+ "start": 4901.86,
+ "end": 4902.14,
+ "text": "places"
+ },
+ {
+ "id": 8830,
+ "start": 4902.14,
+ "end": 4902.3,
+ "text": "where"
+ },
+ {
+ "id": 8831,
+ "start": 4902.3,
+ "end": 4902.44,
+ "text": "there"
+ },
+ {
+ "id": 8832,
+ "start": 4902.44,
+ "end": 4902.6,
+ "text": "needs"
+ },
+ {
+ "id": 8833,
+ "start": 4902.6,
+ "end": 4902.66,
+ "text": "to"
+ },
+ {
+ "id": 8834,
+ "start": 4902.66,
+ "end": 4902.74,
+ "text": "be"
+ },
+ {
+ "id": 8835,
+ "start": 4902.74,
+ "end": 4902.88,
+ "text": "more"
+ },
+ {
+ "id": 8836,
+ "start": 4902.88,
+ "end": 4903.32,
+ "text": "regulation"
+ },
+ {
+ "id": 8837,
+ "start": 4903.32,
+ "end": 4903.46,
+ "text": "of"
+ },
+ {
+ "id": 8838,
+ "start": 4903.46,
+ "end": 4903.72,
+ "text": "the"
+ },
+ {
+ "id": 8839,
+ "start": 4903.72,
+ "end": 4903.94,
+ "text": "other"
+ },
+ {
+ "id": 8840,
+ "start": 4903.94,
+ "end": 4905.68,
+ "text": "type"
+ },
+ {
+ "id": 8841,
+ "start": 4905.68,
+ "end": 4906.64,
+ "text": "specifically,"
+ },
+ {
+ "id": 8842,
+ "start": 4906.64,
+ "end": 4906.88,
+ "text": "though."
+ },
+ {
+ "id": 8843,
+ "start": 4906.88,
+ "end": 4907.96,
+ "text": "On"
+ },
+ {
+ "id": 8844,
+ "start": 4907.96,
+ "end": 4908.82,
+ "text": "the"
+ },
+ {
+ "id": 8845,
+ "start": 4908.82,
+ "end": 4909.44,
+ "text": "pipes"
+ },
+ {
+ "id": 8846,
+ "start": 4909.44,
+ "end": 4910.4,
+ "text": "one"
+ },
+ {
+ "id": 8847,
+ "start": 4910.4,
+ "end": 4910.5,
+ "text": "of"
+ },
+ {
+ "id": 8848,
+ "start": 4910.5,
+ "end": 4910.62,
+ "text": "the"
+ },
+ {
+ "id": 8849,
+ "start": 4910.62,
+ "end": 4911.14,
+ "text": "important"
+ },
+ {
+ "id": 8850,
+ "start": 4911.14,
+ "end": 4911.52,
+ "text": "issues"
+ },
+ {
+ "id": 8851,
+ "start": 4911.52,
+ "end": 4912.8,
+ "text": "that"
+ },
+ {
+ "id": 8852,
+ "start": 4912.8,
+ "end": 4912.86,
+ "text": "I"
+ },
+ {
+ "id": 8853,
+ "start": 4912.86,
+ "end": 4913.06,
+ "text": "think"
+ },
+ {
+ "id": 8854,
+ "start": 4913.06,
+ "end": 4913.22,
+ "text": "we"
+ },
+ {
+ "id": 8855,
+ "start": 4913.22,
+ "end": 4913.52,
+ "text": "face"
+ },
+ {
+ "id": 8856,
+ "start": 4913.52,
+ "end": 4913.92,
+ "text": "and"
+ },
+ {
+ "id": 8857,
+ "start": 4913.92,
+ "end": 4914.06,
+ "text": "I"
+ },
+ {
+ "id": 8858,
+ "start": 4914.06,
+ "end": 4914.4,
+ "text": "debated"
+ },
+ {
+ "id": 8859,
+ "start": 4914.4,
+ "end": 4914.58,
+ "text": "is"
+ },
+ {
+ "id": 8860,
+ "start": 4914.58,
+ "end": 4915.16,
+ "text": "when"
+ },
+ {
+ "id": 8861,
+ "start": 4915.16,
+ "end": 4915.32,
+ "text": "you"
+ },
+ {
+ "id": 8862,
+ "start": 4915.32,
+ "end": 4915.5,
+ "text": "say"
+ },
+ {
+ "id": 8863,
+ "start": 4915.5,
+ "end": 4915.86,
+ "text": "pipe,"
+ },
+ {
+ "id": 8864,
+ "start": 4915.86,
+ "end": 4916.04,
+ "text": "you"
+ },
+ {
+ "id": 8865,
+ "start": 4916.04,
+ "end": 4916.56,
+ "text": "man"
+ },
+ {
+ "id": 8866,
+ "start": 4916.56,
+ "end": 4916.86,
+ "text": "is"
+ },
+ {
+ "id": 8867,
+ "start": 4916.86,
+ "end": 4918.62,
+ "text": "pipe"
+ },
+ {
+ "id": 8868,
+ "start": 4918.62,
+ "end": 4919.46,
+ "text": "and"
+ },
+ {
+ "id": 8869,
+ "start": 4919.46,
+ "end": 4919.5,
+ "text": "I"
+ },
+ {
+ "id": 8870,
+ "start": 4919.5,
+ "end": 4919.64,
+ "text": "know"
+ },
+ {
+ "id": 8871,
+ "start": 4919.64,
+ "end": 4919.82,
+ "text": "net"
+ },
+ {
+ "id": 8872,
+ "start": 4919.82,
+ "end": 4920.34,
+ "text": "neutrality"
+ },
+ {
+ "id": 8873,
+ "start": 4920.34,
+ "end": 4920.6,
+ "text": "has"
+ },
+ {
+ "id": 8874,
+ "start": 4920.6,
+ "end": 4920.78,
+ "text": "been"
+ },
+ {
+ "id": 8875,
+ "start": 4920.78,
+ "end": 4921.22,
+ "text": "a"
+ },
+ {
+ "id": 8876,
+ "start": 4921.22,
+ "end": 4921.88,
+ "text": "hotly"
+ },
+ {
+ "id": 8877,
+ "start": 4921.88,
+ "end": 4922.26,
+ "text": "debated"
+ },
+ {
+ "id": 8878,
+ "start": 4922.26,
+ "end": 4922.74,
+ "text": "topic."
+ },
+ {
+ "id": 8879,
+ "start": 4922.74,
+ "end": 4923.32,
+ "text": "And"
+ },
+ {
+ "id": 8880,
+ "start": 4923.32,
+ "end": 4923.56,
+ "text": "one"
+ },
+ {
+ "id": 8881,
+ "start": 4923.56,
+ "end": 4923.64,
+ "text": "of"
+ },
+ {
+ "id": 8882,
+ "start": 4923.64,
+ "end": 4923.74,
+ "text": "the"
+ },
+ {
+ "id": 8883,
+ "start": 4923.74,
+ "end": 4924.04,
+ "text": "reasons"
+ },
+ {
+ "id": 8884,
+ "start": 4924.04,
+ "end": 4924.34,
+ "text": "why"
+ },
+ {
+ "id": 8885,
+ "start": 4924.34,
+ "end": 4924.58,
+ "text": "I"
+ },
+ {
+ "id": 8886,
+ "start": 4924.58,
+ "end": 4924.76,
+ "text": "have"
+ },
+ {
+ "id": 8887,
+ "start": 4924.76,
+ "end": 4925.08,
+ "text": "been"
+ },
+ {
+ "id": 8888,
+ "start": 4925.08,
+ "end": 4925.62,
+ "text": "out"
+ },
+ {
+ "id": 8889,
+ "start": 4925.62,
+ "end": 4925.86,
+ "text": "there"
+ },
+ {
+ "id": 8890,
+ "start": 4925.86,
+ "end": 4926.84,
+ "text": "saying"
+ },
+ {
+ "id": 8891,
+ "start": 4926.84,
+ "end": 4926.96,
+ "text": "that"
+ },
+ {
+ "id": 8892,
+ "start": 4926.96,
+ "end": 4927.02,
+ "text": "I"
+ },
+ {
+ "id": 8893,
+ "start": 4927.02,
+ "end": 4927.16,
+ "text": "think"
+ },
+ {
+ "id": 8894,
+ "start": 4927.16,
+ "end": 4927.28,
+ "text": "that"
+ },
+ {
+ "id": 8895,
+ "start": 4927.28,
+ "end": 4927.44,
+ "text": "that"
+ },
+ {
+ "id": 8896,
+ "start": 4927.44,
+ "end": 4927.68,
+ "text": "should"
+ },
+ {
+ "id": 8897,
+ "start": 4927.68,
+ "end": 4927.76,
+ "text": "be"
+ },
+ {
+ "id": 8898,
+ "start": 4927.76,
+ "end": 4927.88,
+ "text": "the"
+ },
+ {
+ "id": 8899,
+ "start": 4927.88,
+ "end": 4928.1,
+ "text": "case"
+ },
+ {
+ "id": 8900,
+ "start": 4928.1,
+ "end": 4928.3,
+ "text": "is"
+ },
+ {
+ "id": 8901,
+ "start": 4928.3,
+ "end": 4928.64,
+ "text": "because"
+ },
+ {
+ "id": 8902,
+ "start": 4928.64,
+ "end": 4929.26,
+ "text": "I"
+ },
+ {
+ "id": 8903,
+ "start": 4929.26,
+ "end": 4929.42,
+ "text": "look"
+ },
+ {
+ "id": 8904,
+ "start": 4929.42,
+ "end": 4929.5,
+ "text": "at"
+ },
+ {
+ "id": 8905,
+ "start": 4929.5,
+ "end": 4929.62,
+ "text": "my"
+ },
+ {
+ "id": 8906,
+ "start": 4929.62,
+ "end": 4929.8,
+ "text": "own"
+ },
+ {
+ "id": 8907,
+ "start": 4929.8,
+ "end": 4930.28,
+ "text": "story"
+ },
+ {
+ "id": 8908,
+ "start": 4930.28,
+ "end": 4930.58,
+ "text": "of"
+ },
+ {
+ "id": 8909,
+ "start": 4930.58,
+ "end": 4930.74,
+ "text": "when"
+ },
+ {
+ "id": 8910,
+ "start": 4930.74,
+ "end": 4930.8,
+ "text": "I"
+ },
+ {
+ "id": 8911,
+ "start": 4930.8,
+ "end": 4930.94,
+ "text": "was"
+ },
+ {
+ "id": 8912,
+ "start": 4930.94,
+ "end": 4931.18,
+ "text": "getting"
+ },
+ {
+ "id": 8913,
+ "start": 4931.18,
+ "end": 4931.54,
+ "text": "started"
+ },
+ {
+ "id": 8914,
+ "start": 4931.54,
+ "end": 4931.86,
+ "text": "building"
+ },
+ {
+ "id": 8915,
+ "start": 4931.86,
+ "end": 4932.36,
+ "text": "Facebook"
+ },
+ {
+ "id": 8916,
+ "start": 4932.36,
+ "end": 4932.64,
+ "text": "at"
+ },
+ {
+ "id": 8917,
+ "start": 4932.64,
+ "end": 4933.7,
+ "text": "Harvard."
+ },
+ {
+ "id": 8918,
+ "start": 4933.7,
+ "end": 4934.04,
+ "text": "I"
+ },
+ {
+ "id": 8919,
+ "start": 4934.04,
+ "end": 4934.66,
+ "text": "only"
+ },
+ {
+ "id": 8920,
+ "start": 4934.66,
+ "end": 4934.78,
+ "text": "had"
+ },
+ {
+ "id": 8921,
+ "start": 4934.78,
+ "end": 4934.94,
+ "text": "one"
+ },
+ {
+ "id": 8922,
+ "start": 4934.94,
+ "end": 4935.32,
+ "text": "option"
+ },
+ {
+ "id": 8923,
+ "start": 4935.32,
+ "end": 4935.64,
+ "text": "for"
+ },
+ {
+ "id": 8924,
+ "start": 4935.64,
+ "end": 4935.74,
+ "text": "an"
+ },
+ {
+ "id": 8925,
+ "start": 4935.74,
+ "end": 4936.2,
+ "text": "ISP"
+ },
+ {
+ "id": 8926,
+ "start": 4936.2,
+ "end": 4936.3,
+ "text": "to"
+ },
+ {
+ "id": 8927,
+ "start": 4936.3,
+ "end": 4936.58,
+ "text": "us."
+ },
+ {
+ "id": 8928,
+ "start": 4936.58,
+ "end": 4937.4,
+ "text": "And"
+ },
+ {
+ "id": 8929,
+ "start": 4937.4,
+ "end": 4937.56,
+ "text": "if"
+ },
+ {
+ "id": 8930,
+ "start": 4937.56,
+ "end": 4937.68,
+ "text": "I"
+ },
+ {
+ "id": 8931,
+ "start": 4937.68,
+ "end": 4937.84,
+ "text": "had"
+ },
+ {
+ "id": 8932,
+ "start": 4937.84,
+ "end": 4937.94,
+ "text": "to"
+ },
+ {
+ "id": 8933,
+ "start": 4937.94,
+ "end": 4938.14,
+ "text": "pay"
+ },
+ {
+ "id": 8934,
+ "start": 4938.14,
+ "end": 4938.62,
+ "text": "extra"
+ },
+ {
+ "id": 8935,
+ "start": 4938.62,
+ "end": 4938.76,
+ "text": "in"
+ },
+ {
+ "id": 8936,
+ "start": 4938.76,
+ "end": 4939.02,
+ "text": "order"
+ },
+ {
+ "id": 8937,
+ "start": 4939.02,
+ "end": 4939.38,
+ "text": "to"
+ },
+ {
+ "id": 8938,
+ "start": 4939.38,
+ "end": 4940.4,
+ "text": "make"
+ },
+ {
+ "id": 8939,
+ "start": 4940.4,
+ "end": 4940.54,
+ "text": "it"
+ },
+ {
+ "id": 8940,
+ "start": 4940.54,
+ "end": 4940.78,
+ "text": "that"
+ },
+ {
+ "id": 8941,
+ "start": 4940.78,
+ "end": 4940.96,
+ "text": "my"
+ },
+ {
+ "id": 8942,
+ "start": 4940.96,
+ "end": 4941.18,
+ "text": "app"
+ },
+ {
+ "id": 8943,
+ "start": 4941.18,
+ "end": 4941.38,
+ "text": "could"
+ },
+ {
+ "id": 8944,
+ "start": 4941.38,
+ "end": 4941.82,
+ "text": "potentially"
+ },
+ {
+ "id": 8945,
+ "start": 4941.82,
+ "end": 4942.1,
+ "text": "be"
+ },
+ {
+ "id": 8946,
+ "start": 4942.1,
+ "end": 4942.46,
+ "text": "seen"
+ },
+ {
+ "id": 8947,
+ "start": 4942.46,
+ "end": 4942.62,
+ "text": "or"
+ },
+ {
+ "id": 8948,
+ "start": 4942.62,
+ "end": 4942.82,
+ "text": "used"
+ },
+ {
+ "id": 8949,
+ "start": 4942.82,
+ "end": 4942.94,
+ "text": "by"
+ },
+ {
+ "id": 8950,
+ "start": 4942.94,
+ "end": 4943.2,
+ "text": "other"
+ },
+ {
+ "id": 8951,
+ "start": 4943.2,
+ "end": 4943.54,
+ "text": "people,"
+ },
+ {
+ "id": 8952,
+ "start": 4943.54,
+ "end": 4944.62,
+ "text": "then"
+ },
+ {
+ "id": 8953,
+ "start": 4944.62,
+ "end": 4944.7,
+ "text": "we"
+ },
+ {
+ "id": 8954,
+ "start": 4944.7,
+ "end": 4945.03,
+ "text": "probably"
+ },
+ {
+ "id": 8955,
+ "start": 4945.03,
+ "end": 4945.37,
+ "text": "here"
+ },
+ {
+ "id": 8956,
+ "start": 4945.37,
+ "end": 4945.59,
+ "text": "today."
+ },
+ {
+ "id": 8957,
+ "start": 4945.59,
+ "end": 4946.81,
+ "text": "Okay,"
+ },
+ {
+ "id": 8958,
+ "start": 4946.81,
+ "end": 4946.97,
+ "text": "but"
+ },
+ {
+ "id": 8959,
+ "start": 4946.97,
+ "end": 4947.17,
+ "text": "we're"
+ },
+ {
+ "id": 8960,
+ "start": 4947.17,
+ "end": 4947.47,
+ "text": "talking"
+ },
+ {
+ "id": 8961,
+ "start": 4947.47,
+ "end": 4947.71,
+ "text": "about"
+ },
+ {
+ "id": 8962,
+ "start": 4947.71,
+ "end": 4948.23,
+ "text": "privacy"
+ },
+ {
+ "id": 8963,
+ "start": 4948.23,
+ "end": 4948.73,
+ "text": "concerns"
+ },
+ {
+ "id": 8964,
+ "start": 4948.73,
+ "end": 4949.45,
+ "text": "and"
+ },
+ {
+ "id": 8965,
+ "start": 4949.45,
+ "end": 4949.59,
+ "text": "let"
+ },
+ {
+ "id": 8966,
+ "start": 4949.59,
+ "end": 4949.73,
+ "text": "me"
+ },
+ {
+ "id": 8967,
+ "start": 4949.73,
+ "end": 4949.87,
+ "text": "just"
+ },
+ {
+ "id": 8968,
+ "start": 4949.87,
+ "end": 4950.05,
+ "text": "say,"
+ },
+ {
+ "id": 8969,
+ "start": 4950.05,
+ "end": 4950.63,
+ "text": "we'll"
+ },
+ {
+ "id": 8970,
+ "start": 4950.63,
+ "end": 4950.79,
+ "text": "have"
+ },
+ {
+ "id": 8971,
+ "start": 4950.79,
+ "end": 4950.93,
+ "text": "to"
+ },
+ {
+ "id": 8972,
+ "start": 4950.93,
+ "end": 4951.27,
+ "text": "follow"
+ },
+ {
+ "id": 8973,
+ "start": 4951.27,
+ "end": 4951.41,
+ "text": "up"
+ },
+ {
+ "id": 8974,
+ "start": 4951.41,
+ "end": 4951.55,
+ "text": "on"
+ },
+ {
+ "id": 8975,
+ "start": 4951.55,
+ "end": 4951.73,
+ "text": "this."
+ },
+ {
+ "id": 8976,
+ "start": 4951.73,
+ "end": 4951.89,
+ "text": "But"
+ },
+ {
+ "id": 8977,
+ "start": 4951.89,
+ "end": 4952.77,
+ "text": "I"
+ },
+ {
+ "id": 8978,
+ "start": 4952.77,
+ "end": 4952.99,
+ "text": "think"
+ },
+ {
+ "id": 8979,
+ "start": 4952.99,
+ "end": 4953.13,
+ "text": "you"
+ },
+ {
+ "id": 8980,
+ "start": 4953.13,
+ "end": 4953.29,
+ "text": "and"
+ },
+ {
+ "id": 8981,
+ "start": 4953.29,
+ "end": 4953.39,
+ "text": "I"
+ },
+ {
+ "id": 8982,
+ "start": 4953.39,
+ "end": 4953.63,
+ "text": "agree"
+ },
+ {
+ "id": 8983,
+ "start": 4953.63,
+ "end": 4953.81,
+ "text": "this"
+ },
+ {
+ "id": 8984,
+ "start": 4953.81,
+ "end": 4953.95,
+ "text": "is"
+ },
+ {
+ "id": 8985,
+ "start": 4953.95,
+ "end": 4954.11,
+ "text": "going"
+ },
+ {
+ "id": 8986,
+ "start": 4954.11,
+ "end": 4954.19,
+ "text": "to"
+ },
+ {
+ "id": 8987,
+ "start": 4954.19,
+ "end": 4954.31,
+ "text": "be"
+ },
+ {
+ "id": 8988,
+ "start": 4954.31,
+ "end": 4954.67,
+ "text": "one"
+ },
+ {
+ "id": 8989,
+ "start": 4954.67,
+ "end": 4955.17,
+ "text": "of"
+ },
+ {
+ "id": 8990,
+ "start": 4955.17,
+ "end": 4955.31,
+ "text": "the"
+ },
+ {
+ "id": 8991,
+ "start": 4955.31,
+ "end": 4956.36,
+ "text": "major"
+ },
+ {
+ "id": 8992,
+ "start": 4956.36,
+ "end": 4957.24,
+ "text": "items"
+ },
+ {
+ "id": 8993,
+ "start": 4957.24,
+ "end": 4957.52,
+ "text": "of"
+ },
+ {
+ "id": 8994,
+ "start": 4957.52,
+ "end": 4958.02,
+ "text": "debate."
+ },
+ {
+ "id": 8995,
+ "start": 4958.02,
+ "end": 4958.86,
+ "text": "If"
+ },
+ {
+ "id": 8996,
+ "start": 4958.86,
+ "end": 4958.98,
+ "text": "we"
+ },
+ {
+ "id": 8997,
+ "start": 4958.98,
+ "end": 4959.18,
+ "text": "have"
+ },
+ {
+ "id": 8998,
+ "start": 4959.18,
+ "end": 4959.28,
+ "text": "to"
+ },
+ {
+ "id": 8999,
+ "start": 4959.28,
+ "end": 4959.44,
+ "text": "go"
+ },
+ {
+ "id": 9000,
+ "start": 4959.44,
+ "end": 4959.94,
+ "text": "forward"
+ },
+ {
+ "id": 9001,
+ "start": 4959.94,
+ "end": 4960.64,
+ "text": "and"
+ },
+ {
+ "id": 9002,
+ "start": 4960.64,
+ "end": 4960.82,
+ "text": "do"
+ },
+ {
+ "id": 9003,
+ "start": 4960.82,
+ "end": 4960.98,
+ "text": "this"
+ },
+ {
+ "id": 9004,
+ "start": 4960.98,
+ "end": 4961.16,
+ "text": "from"
+ },
+ {
+ "id": 9005,
+ "start": 4961.16,
+ "end": 4961.22,
+ "text": "a"
+ },
+ {
+ "id": 9006,
+ "start": 4961.22,
+ "end": 4961.76,
+ "text": "governmental"
+ },
+ {
+ "id": 9007,
+ "start": 4961.76,
+ "end": 4962.34,
+ "text": "standpoint."
+ },
+ {
+ "id": 9008,
+ "start": 4962.34,
+ "end": 4962.68,
+ "text": "Let"
+ },
+ {
+ "id": 9009,
+ "start": 4962.68,
+ "end": 4962.84,
+ "text": "me"
+ },
+ {
+ "id": 9010,
+ "start": 4962.84,
+ "end": 4963.02,
+ "text": "just"
+ },
+ {
+ "id": 9011,
+ "start": 4963.02,
+ "end": 4963.74,
+ "text": "move"
+ },
+ {
+ "id": 9012,
+ "start": 4963.74,
+ "end": 4963.88,
+ "text": "on"
+ },
+ {
+ "id": 9013,
+ "start": 4963.88,
+ "end": 4964.04,
+ "text": "to"
+ },
+ {
+ "id": 9014,
+ "start": 4964.04,
+ "end": 4964.44,
+ "text": "another"
+ },
+ {
+ "id": 9015,
+ "start": 4964.44,
+ "end": 4964.72,
+ "text": "couple"
+ },
+ {
+ "id": 9016,
+ "start": 4964.72,
+ "end": 4964.84,
+ "text": "of"
+ },
+ {
+ "id": 9017,
+ "start": 4964.84,
+ "end": 4965.66,
+ "text": "items"
+ },
+ {
+ "id": 9018,
+ "start": 4965.66,
+ "end": 4965.82,
+ "text": "is"
+ },
+ {
+ "id": 9019,
+ "start": 4965.82,
+ "end": 4965.96,
+ "text": "it"
+ },
+ {
+ "id": 9020,
+ "start": 4965.96,
+ "end": 4967.32,
+ "text": "true"
+ },
+ {
+ "id": 9021,
+ "start": 4967.32,
+ "end": 4968.04,
+ "text": "that"
+ },
+ {
+ "id": 9022,
+ "start": 4968.04,
+ "end": 4969.28,
+ "text": "as"
+ },
+ {
+ "id": 9023,
+ "start": 4969.28,
+ "end": 4969.48,
+ "text": "was"
+ },
+ {
+ "id": 9024,
+ "start": 4969.48,
+ "end": 4969.88,
+ "text": "recently"
+ },
+ {
+ "id": 9025,
+ "start": 4969.88,
+ "end": 4970.48,
+ "text": "publicized"
+ },
+ {
+ "id": 9026,
+ "start": 4970.48,
+ "end": 4970.64,
+ "text": "that"
+ },
+ {
+ "id": 9027,
+ "start": 4970.64,
+ "end": 4971.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 9028,
+ "start": 4971.16,
+ "end": 4971.58,
+ "text": "collects"
+ },
+ {
+ "id": 9029,
+ "start": 4971.58,
+ "end": 4971.74,
+ "text": "the"
+ },
+ {
+ "id": 9030,
+ "start": 4971.74,
+ "end": 4972.16,
+ "text": "call"
+ },
+ {
+ "id": 9031,
+ "start": 4972.16,
+ "end": 4972.48,
+ "text": "and"
+ },
+ {
+ "id": 9032,
+ "start": 4972.48,
+ "end": 4973.14,
+ "text": "text"
+ },
+ {
+ "id": 9033,
+ "start": 4973.14,
+ "end": 4974.16,
+ "text": "histories"
+ },
+ {
+ "id": 9034,
+ "start": 4974.16,
+ "end": 4974.94,
+ "text": "of"
+ },
+ {
+ "id": 9035,
+ "start": 4974.94,
+ "end": 4975.3,
+ "text": "its"
+ },
+ {
+ "id": 9036,
+ "start": 4975.3,
+ "end": 4975.94,
+ "text": "users"
+ },
+ {
+ "id": 9037,
+ "start": 4975.94,
+ "end": 4976.18,
+ "text": "that"
+ },
+ {
+ "id": 9038,
+ "start": 4976.18,
+ "end": 4976.42,
+ "text": "use"
+ },
+ {
+ "id": 9039,
+ "start": 4976.42,
+ "end": 4977.04,
+ "text": "Android"
+ },
+ {
+ "id": 9040,
+ "start": 4977.04,
+ "end": 4978.28,
+ "text": "phones."
+ },
+ {
+ "id": 9041,
+ "start": 4978.28,
+ "end": 4979.26,
+ "text": "Senator,"
+ },
+ {
+ "id": 9042,
+ "start": 4979.26,
+ "end": 4979.78,
+ "text": "we"
+ },
+ {
+ "id": 9043,
+ "start": 4979.78,
+ "end": 4979.94,
+ "text": "have"
+ },
+ {
+ "id": 9044,
+ "start": 4979.94,
+ "end": 4980.02,
+ "text": "an"
+ },
+ {
+ "id": 9045,
+ "start": 4980.02,
+ "end": 4980.22,
+ "text": "app"
+ },
+ {
+ "id": 9046,
+ "start": 4980.22,
+ "end": 4980.48,
+ "text": "called"
+ },
+ {
+ "id": 9047,
+ "start": 4980.48,
+ "end": 4981,
+ "text": "Messenger"
+ },
+ {
+ "id": 9048,
+ "start": 4981,
+ "end": 4981.96,
+ "text": "for"
+ },
+ {
+ "id": 9049,
+ "start": 4981.96,
+ "end": 4982.26,
+ "text": "sending"
+ },
+ {
+ "id": 9050,
+ "start": 4982.26,
+ "end": 4982.84,
+ "text": "messages"
+ },
+ {
+ "id": 9051,
+ "start": 4982.84,
+ "end": 4983,
+ "text": "to"
+ },
+ {
+ "id": 9052,
+ "start": 4983,
+ "end": 4983.16,
+ "text": "your"
+ },
+ {
+ "id": 9053,
+ "start": 4983.16,
+ "end": 4983.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 9054,
+ "start": 4983.54,
+ "end": 4983.88,
+ "text": "friends."
+ },
+ {
+ "id": 9055,
+ "start": 4983.88,
+ "end": 4984.66,
+ "text": "And"
+ },
+ {
+ "id": 9056,
+ "start": 4984.66,
+ "end": 4984.94,
+ "text": "that"
+ },
+ {
+ "id": 9057,
+ "start": 4984.94,
+ "end": 4985.22,
+ "text": "app"
+ },
+ {
+ "id": 9058,
+ "start": 4985.22,
+ "end": 4985.66,
+ "text": "offers"
+ },
+ {
+ "id": 9059,
+ "start": 4985.66,
+ "end": 4985.94,
+ "text": "people"
+ },
+ {
+ "id": 9060,
+ "start": 4985.94,
+ "end": 4986.06,
+ "text": "an"
+ },
+ {
+ "id": 9061,
+ "start": 4986.06,
+ "end": 4986.54,
+ "text": "option"
+ },
+ {
+ "id": 9062,
+ "start": 4986.54,
+ "end": 4987.14,
+ "text": "to"
+ },
+ {
+ "id": 9063,
+ "start": 4987.14,
+ "end": 4988.35,
+ "text": "sync"
+ },
+ {
+ "id": 9064,
+ "start": 4988.35,
+ "end": 4989.51,
+ "text": "their"
+ },
+ {
+ "id": 9065,
+ "start": 4989.51,
+ "end": 4989.95,
+ "text": "text"
+ },
+ {
+ "id": 9066,
+ "start": 4989.95,
+ "end": 4990.51,
+ "text": "messages"
+ },
+ {
+ "id": 9067,
+ "start": 4990.51,
+ "end": 4991.25,
+ "text": "into"
+ },
+ {
+ "id": 9068,
+ "start": 4991.25,
+ "end": 4991.37,
+ "text": "the"
+ },
+ {
+ "id": 9069,
+ "start": 4991.37,
+ "end": 4991.77,
+ "text": "messaging"
+ },
+ {
+ "id": 9070,
+ "start": 4991.77,
+ "end": 4992.01,
+ "text": "app"
+ },
+ {
+ "id": 9071,
+ "start": 4992.01,
+ "end": 4992.71,
+ "text": "and"
+ },
+ {
+ "id": 9072,
+ "start": 4992.71,
+ "end": 4992.99,
+ "text": "to"
+ },
+ {
+ "id": 9073,
+ "start": 4992.99,
+ "end": 4993.17,
+ "text": "make"
+ },
+ {
+ "id": 9074,
+ "start": 4993.17,
+ "end": 4993.27,
+ "text": "it"
+ },
+ {
+ "id": 9075,
+ "start": 4993.27,
+ "end": 4993.47,
+ "text": "so"
+ },
+ {
+ "id": 9076,
+ "start": 4993.47,
+ "end": 4993.71,
+ "text": "that"
+ },
+ {
+ "id": 9077,
+ "start": 4993.71,
+ "end": 4994.63,
+ "text": "basically,"
+ },
+ {
+ "id": 9078,
+ "start": 4994.63,
+ "end": 4994.79,
+ "text": "so"
+ },
+ {
+ "id": 9079,
+ "start": 4994.79,
+ "end": 4994.89,
+ "text": "you"
+ },
+ {
+ "id": 9080,
+ "start": 4994.89,
+ "end": 4995.01,
+ "text": "can"
+ },
+ {
+ "id": 9081,
+ "start": 4995.01,
+ "end": 4995.15,
+ "text": "have"
+ },
+ {
+ "id": 9082,
+ "start": 4995.15,
+ "end": 4995.29,
+ "text": "one"
+ },
+ {
+ "id": 9083,
+ "start": 4995.29,
+ "end": 4995.53,
+ "text": "app"
+ },
+ {
+ "id": 9084,
+ "start": 4995.53,
+ "end": 4995.99,
+ "text": "where"
+ },
+ {
+ "id": 9085,
+ "start": 4995.99,
+ "end": 4996.15,
+ "text": "it"
+ },
+ {
+ "id": 9086,
+ "start": 4996.15,
+ "end": 4996.37,
+ "text": "has"
+ },
+ {
+ "id": 9087,
+ "start": 4996.37,
+ "end": 4996.67,
+ "text": "both"
+ },
+ {
+ "id": 9088,
+ "start": 4996.67,
+ "end": 4996.99,
+ "text": "your"
+ },
+ {
+ "id": 9089,
+ "start": 4996.99,
+ "end": 4997.33,
+ "text": "texts."
+ },
+ {
+ "id": 9090,
+ "start": 4997.33,
+ "end": 4998.84,
+ "text": "And"
+ },
+ {
+ "id": 9091,
+ "start": 4998.84,
+ "end": 4999.8,
+ "text": "and"
+ },
+ {
+ "id": 9092,
+ "start": 4999.8,
+ "end": 5000.06,
+ "text": "your"
+ },
+ {
+ "id": 9093,
+ "start": 5000.06,
+ "end": 5000.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 9094,
+ "start": 5000.44,
+ "end": 5000.8,
+ "text": "messages"
+ },
+ {
+ "id": 9095,
+ "start": 5000.8,
+ "end": 5000.98,
+ "text": "in"
+ },
+ {
+ "id": 9096,
+ "start": 5000.98,
+ "end": 5001.2,
+ "text": "one"
+ },
+ {
+ "id": 9097,
+ "start": 5001.2,
+ "end": 5001.74,
+ "text": "place."
+ },
+ {
+ "id": 9098,
+ "start": 5001.74,
+ "end": 5002.74,
+ "text": "We"
+ },
+ {
+ "id": 9099,
+ "start": 5002.74,
+ "end": 5003.22,
+ "text": "also"
+ },
+ {
+ "id": 9100,
+ "start": 5003.22,
+ "end": 5003.58,
+ "text": "allow"
+ },
+ {
+ "id": 9101,
+ "start": 5003.58,
+ "end": 5003.84,
+ "text": "people"
+ },
+ {
+ "id": 9102,
+ "start": 5003.84,
+ "end": 5004.04,
+ "text": "the"
+ },
+ {
+ "id": 9103,
+ "start": 5004.04,
+ "end": 5004.42,
+ "text": "option"
+ },
+ {
+ "id": 9104,
+ "start": 5004.42,
+ "end": 5005.14,
+ "text": "you"
+ },
+ {
+ "id": 9105,
+ "start": 5005.14,
+ "end": 5005.3,
+ "text": "can"
+ },
+ {
+ "id": 9106,
+ "start": 5005.3,
+ "end": 5005.54,
+ "text": "opt"
+ },
+ {
+ "id": 9107,
+ "start": 5005.54,
+ "end": 5005.72,
+ "text": "in"
+ },
+ {
+ "id": 9108,
+ "start": 5005.72,
+ "end": 5006,
+ "text": "around"
+ },
+ {
+ "id": 9109,
+ "start": 5006,
+ "end": 5006.4,
+ "text": "that."
+ },
+ {
+ "id": 9110,
+ "start": 5006.4,
+ "end": 5006.82,
+ "text": "Yes,"
+ },
+ {
+ "id": 9111,
+ "start": 5006.82,
+ "end": 5007.14,
+ "text": "it"
+ },
+ {
+ "id": 9112,
+ "start": 5007.14,
+ "end": 5007.28,
+ "text": "is."
+ },
+ {
+ "id": 9113,
+ "start": 5007.28,
+ "end": 5008.1,
+ "text": "It"
+ },
+ {
+ "id": 9114,
+ "start": 5008.1,
+ "end": 5008.36,
+ "text": "is"
+ },
+ {
+ "id": 9115,
+ "start": 5008.36,
+ "end": 5009.38,
+ "text": "in."
+ },
+ {
+ "id": 9116,
+ "start": 5009.38,
+ "end": 5010.16,
+ "text": "You"
+ },
+ {
+ "id": 9117,
+ "start": 5010.16,
+ "end": 5010.36,
+ "text": "have"
+ },
+ {
+ "id": 9118,
+ "start": 5010.36,
+ "end": 5010.76,
+ "text": "to"
+ },
+ {
+ "id": 9119,
+ "start": 5010.76,
+ "end": 5011.72,
+ "text": "affirmatively"
+ },
+ {
+ "id": 9120,
+ "start": 5011.72,
+ "end": 5012,
+ "text": "say"
+ },
+ {
+ "id": 9121,
+ "start": 5012,
+ "end": 5012.22,
+ "text": "that"
+ },
+ {
+ "id": 9122,
+ "start": 5012.22,
+ "end": 5012.36,
+ "text": "you"
+ },
+ {
+ "id": 9123,
+ "start": 5012.36,
+ "end": 5012.52,
+ "text": "want"
+ },
+ {
+ "id": 9124,
+ "start": 5012.52,
+ "end": 5012.66,
+ "text": "to"
+ },
+ {
+ "id": 9125,
+ "start": 5012.66,
+ "end": 5012.98,
+ "text": "sync"
+ },
+ {
+ "id": 9126,
+ "start": 5012.98,
+ "end": 5013.28,
+ "text": "that"
+ },
+ {
+ "id": 9127,
+ "start": 5013.28,
+ "end": 5013.86,
+ "text": "information"
+ },
+ {
+ "id": 9128,
+ "start": 5013.86,
+ "end": 5014.5,
+ "text": "before"
+ },
+ {
+ "id": 9129,
+ "start": 5014.5,
+ "end": 5014.62,
+ "text": "we"
+ },
+ {
+ "id": 9130,
+ "start": 5014.62,
+ "end": 5014.76,
+ "text": "get"
+ },
+ {
+ "id": 9131,
+ "start": 5014.76,
+ "end": 5015.02,
+ "text": "access."
+ },
+ {
+ "id": 9132,
+ "start": 5015.02,
+ "end": 5015.76,
+ "text": "Unless"
+ },
+ {
+ "id": 9133,
+ "start": 5015.76,
+ "end": 5015.88,
+ "text": "you"
+ },
+ {
+ "id": 9134,
+ "start": 5015.88,
+ "end": 5016.18,
+ "text": "opt"
+ },
+ {
+ "id": 9135,
+ "start": 5016.18,
+ "end": 5016.56,
+ "text": "in"
+ },
+ {
+ "id": 9136,
+ "start": 5016.56,
+ "end": 5017.44,
+ "text": "you"
+ },
+ {
+ "id": 9137,
+ "start": 5017.44,
+ "end": 5017.86,
+ "text": "don't"
+ },
+ {
+ "id": 9138,
+ "start": 5017.86,
+ "end": 5018.36,
+ "text": "collect"
+ },
+ {
+ "id": 9139,
+ "start": 5018.36,
+ "end": 5019.3,
+ "text": "that"
+ },
+ {
+ "id": 9140,
+ "start": 5019.3,
+ "end": 5019.74,
+ "text": "college"
+ },
+ {
+ "id": 9141,
+ "start": 5019.74,
+ "end": 5020.54,
+ "text": "history"
+ },
+ {
+ "id": 9142,
+ "start": 5020.54,
+ "end": 5020.94,
+ "text": "that"
+ },
+ {
+ "id": 9143,
+ "start": 5020.94,
+ "end": 5021.1,
+ "text": "is"
+ },
+ {
+ "id": 9144,
+ "start": 5021.1,
+ "end": 5021.38,
+ "text": "correct."
+ },
+ {
+ "id": 9145,
+ "start": 5021.38,
+ "end": 5021.5,
+ "text": "And"
+ },
+ {
+ "id": 9146,
+ "start": 5021.5,
+ "end": 5021.66,
+ "text": "is"
+ },
+ {
+ "id": 9147,
+ "start": 5021.66,
+ "end": 5021.84,
+ "text": "that"
+ },
+ {
+ "id": 9148,
+ "start": 5021.84,
+ "end": 5022.18,
+ "text": "true?"
+ },
+ {
+ "id": 9149,
+ "start": 5022.18,
+ "end": 5022.68,
+ "text": "Or"
+ },
+ {
+ "id": 9150,
+ "start": 5022.68,
+ "end": 5023.84,
+ "text": "is"
+ },
+ {
+ "id": 9151,
+ "start": 5023.84,
+ "end": 5024.02,
+ "text": "this"
+ },
+ {
+ "id": 9152,
+ "start": 5024.02,
+ "end": 5024.42,
+ "text": "practice"
+ },
+ {
+ "id": 9153,
+ "start": 5024.42,
+ "end": 5024.68,
+ "text": "done"
+ },
+ {
+ "id": 9154,
+ "start": 5024.68,
+ "end": 5024.78,
+ "text": "at"
+ },
+ {
+ "id": 9155,
+ "start": 5024.78,
+ "end": 5025,
+ "text": "all"
+ },
+ {
+ "id": 9156,
+ "start": 5025,
+ "end": 5025.16,
+ "text": "with"
+ },
+ {
+ "id": 9157,
+ "start": 5025.16,
+ "end": 5025.64,
+ "text": "minors?"
+ },
+ {
+ "id": 9158,
+ "start": 5025.64,
+ "end": 5025.76,
+ "text": "Or"
+ },
+ {
+ "id": 9159,
+ "start": 5025.76,
+ "end": 5025.86,
+ "text": "do"
+ },
+ {
+ "id": 9160,
+ "start": 5025.86,
+ "end": 5025.98,
+ "text": "you"
+ },
+ {
+ "id": 9161,
+ "start": 5025.98,
+ "end": 5026.12,
+ "text": "make"
+ },
+ {
+ "id": 9162,
+ "start": 5026.12,
+ "end": 5026.22,
+ "text": "an"
+ },
+ {
+ "id": 9163,
+ "start": 5026.22,
+ "end": 5026.7,
+ "text": "exception?"
+ },
+ {
+ "id": 9164,
+ "start": 5026.7,
+ "end": 5026.92,
+ "text": "There"
+ },
+ {
+ "id": 9165,
+ "start": 5026.92,
+ "end": 5027.1,
+ "text": "for"
+ },
+ {
+ "id": 9166,
+ "start": 5027.1,
+ "end": 5027.98,
+ "text": "persons"
+ },
+ {
+ "id": 9167,
+ "start": 5027.98,
+ "end": 5028.4,
+ "text": "age"
+ },
+ {
+ "id": 9168,
+ "start": 5028.4,
+ "end": 5028.8,
+ "text": "13"
+ },
+ {
+ "id": 9169,
+ "start": 5028.8,
+ "end": 5028.94,
+ "text": "to"
+ },
+ {
+ "id": 9170,
+ "start": 5028.94,
+ "end": 5030.1,
+ "text": "17"
+ },
+ {
+ "id": 9171,
+ "start": 5030.1,
+ "end": 5030.58,
+ "text": "I"
+ },
+ {
+ "id": 9172,
+ "start": 5030.58,
+ "end": 5031.08,
+ "text": "do"
+ },
+ {
+ "id": 9173,
+ "start": 5031.08,
+ "end": 5031.28,
+ "text": "not"
+ },
+ {
+ "id": 9174,
+ "start": 5031.28,
+ "end": 5031.44,
+ "text": "know"
+ },
+ {
+ "id": 9175,
+ "start": 5031.44,
+ "end": 5031.66,
+ "text": "we"
+ },
+ {
+ "id": 9176,
+ "start": 5031.66,
+ "end": 5031.84,
+ "text": "can"
+ },
+ {
+ "id": 9177,
+ "start": 5031.84,
+ "end": 5032.08,
+ "text": "follow"
+ },
+ {
+ "id": 9178,
+ "start": 5032.08,
+ "end": 5032.18,
+ "text": "up."
+ },
+ {
+ "id": 9179,
+ "start": 5032.18,
+ "end": 5032.46,
+ "text": "Okay,"
+ },
+ {
+ "id": 9180,
+ "start": 5032.46,
+ "end": 5032.7,
+ "text": "do"
+ },
+ {
+ "id": 9181,
+ "start": 5032.7,
+ "end": 5032.84,
+ "text": "that"
+ },
+ {
+ "id": 9182,
+ "start": 5032.84,
+ "end": 5033.06,
+ "text": "let's"
+ },
+ {
+ "id": 9183,
+ "start": 5033.06,
+ "end": 5033.18,
+ "text": "do"
+ },
+ {
+ "id": 9184,
+ "start": 5033.18,
+ "end": 5033.32,
+ "text": "that"
+ },
+ {
+ "id": 9185,
+ "start": 5033.32,
+ "end": 5033.52,
+ "text": "one"
+ },
+ {
+ "id": 9186,
+ "start": 5033.52,
+ "end": 5033.78,
+ "text": "other"
+ },
+ {
+ "id": 9187,
+ "start": 5033.78,
+ "end": 5034.04,
+ "text": "thing"
+ },
+ {
+ "id": 9188,
+ "start": 5034.04,
+ "end": 5034.94,
+ "text": "there"
+ },
+ {
+ "id": 9189,
+ "start": 5034.94,
+ "end": 5035.06,
+ "text": "have"
+ },
+ {
+ "id": 9190,
+ "start": 5035.06,
+ "end": 5035.22,
+ "text": "been"
+ },
+ {
+ "id": 9191,
+ "start": 5035.22,
+ "end": 5035.6,
+ "text": "reports"
+ },
+ {
+ "id": 9192,
+ "start": 5035.6,
+ "end": 5035.76,
+ "text": "that"
+ },
+ {
+ "id": 9193,
+ "start": 5035.76,
+ "end": 5036.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 9194,
+ "start": 5036.26,
+ "end": 5036.48,
+ "text": "can"
+ },
+ {
+ "id": 9195,
+ "start": 5036.48,
+ "end": 5036.92,
+ "text": "track"
+ },
+ {
+ "id": 9196,
+ "start": 5036.92,
+ "end": 5038.08,
+ "text": "users"
+ },
+ {
+ "id": 9197,
+ "start": 5038.08,
+ "end": 5038.74,
+ "text": "Internet"
+ },
+ {
+ "id": 9198,
+ "start": 5038.74,
+ "end": 5039.42,
+ "text": "browsing"
+ },
+ {
+ "id": 9199,
+ "start": 5039.42,
+ "end": 5040.31,
+ "text": "activity"
+ },
+ {
+ "id": 9200,
+ "start": 5040.31,
+ "end": 5040.85,
+ "text": "even"
+ },
+ {
+ "id": 9201,
+ "start": 5040.85,
+ "end": 5041.23,
+ "text": "after"
+ },
+ {
+ "id": 9202,
+ "start": 5041.23,
+ "end": 5041.45,
+ "text": "that"
+ },
+ {
+ "id": 9203,
+ "start": 5041.45,
+ "end": 5041.83,
+ "text": "user"
+ },
+ {
+ "id": 9204,
+ "start": 5041.83,
+ "end": 5042.43,
+ "text": "has"
+ },
+ {
+ "id": 9205,
+ "start": 5042.43,
+ "end": 5043.05,
+ "text": "logged"
+ },
+ {
+ "id": 9206,
+ "start": 5043.05,
+ "end": 5043.49,
+ "text": "off"
+ },
+ {
+ "id": 9207,
+ "start": 5043.49,
+ "end": 5044.45,
+ "text": "of"
+ },
+ {
+ "id": 9208,
+ "start": 5044.45,
+ "end": 5044.59,
+ "text": "the"
+ },
+ {
+ "id": 9209,
+ "start": 5044.59,
+ "end": 5045.23,
+ "text": "Facebook"
+ },
+ {
+ "id": 9210,
+ "start": 5045.23,
+ "end": 5045.89,
+ "text": "platform."
+ },
+ {
+ "id": 9211,
+ "start": 5045.89,
+ "end": 5046.43,
+ "text": "Can"
+ },
+ {
+ "id": 9212,
+ "start": 5046.43,
+ "end": 5046.55,
+ "text": "you"
+ },
+ {
+ "id": 9213,
+ "start": 5046.55,
+ "end": 5046.93,
+ "text": "confirm"
+ },
+ {
+ "id": 9214,
+ "start": 5046.93,
+ "end": 5047.29,
+ "text": "whether"
+ },
+ {
+ "id": 9215,
+ "start": 5047.29,
+ "end": 5047.51,
+ "text": "or"
+ },
+ {
+ "id": 9216,
+ "start": 5047.51,
+ "end": 5047.79,
+ "text": "not"
+ },
+ {
+ "id": 9217,
+ "start": 5047.79,
+ "end": 5048.63,
+ "text": "this"
+ },
+ {
+ "id": 9218,
+ "start": 5048.63,
+ "end": 5048.83,
+ "text": "is"
+ },
+ {
+ "id": 9219,
+ "start": 5048.83,
+ "end": 5051.14,
+ "text": "true?"
+ },
+ {
+ "id": 9220,
+ "start": 5051.14,
+ "end": 5052.18,
+ "text": "Senator?"
+ },
+ {
+ "id": 9221,
+ "start": 5052.18,
+ "end": 5053.14,
+ "text": "I"
+ },
+ {
+ "id": 9222,
+ "start": 5053.14,
+ "end": 5053.36,
+ "text": "want"
+ },
+ {
+ "id": 9223,
+ "start": 5053.36,
+ "end": 5053.44,
+ "text": "to"
+ },
+ {
+ "id": 9224,
+ "start": 5053.44,
+ "end": 5053.56,
+ "text": "make"
+ },
+ {
+ "id": 9225,
+ "start": 5053.56,
+ "end": 5053.68,
+ "text": "sure"
+ },
+ {
+ "id": 9226,
+ "start": 5053.68,
+ "end": 5053.72,
+ "text": "I"
+ },
+ {
+ "id": 9227,
+ "start": 5053.72,
+ "end": 5053.86,
+ "text": "get"
+ },
+ {
+ "id": 9228,
+ "start": 5053.86,
+ "end": 5054,
+ "text": "this"
+ },
+ {
+ "id": 9229,
+ "start": 5054,
+ "end": 5054.46,
+ "text": "accurate?"
+ },
+ {
+ "id": 9230,
+ "start": 5054.46,
+ "end": 5054.6,
+ "text": "So"
+ },
+ {
+ "id": 9231,
+ "start": 5054.6,
+ "end": 5055.12,
+ "text": "probably"
+ },
+ {
+ "id": 9232,
+ "start": 5055.12,
+ "end": 5055.46,
+ "text": "better"
+ },
+ {
+ "id": 9233,
+ "start": 5055.46,
+ "end": 5055.58,
+ "text": "to"
+ },
+ {
+ "id": 9234,
+ "start": 5055.58,
+ "end": 5055.9,
+ "text": "have"
+ },
+ {
+ "id": 9235,
+ "start": 5055.9,
+ "end": 5056.26,
+ "text": "my"
+ },
+ {
+ "id": 9236,
+ "start": 5056.26,
+ "end": 5056.54,
+ "text": "team"
+ },
+ {
+ "id": 9237,
+ "start": 5056.54,
+ "end": 5056.88,
+ "text": "follow"
+ },
+ {
+ "id": 9238,
+ "start": 5056.88,
+ "end": 5056.98,
+ "text": "up."
+ },
+ {
+ "id": 9239,
+ "start": 5056.98,
+ "end": 5057.24,
+ "text": "So"
+ },
+ {
+ "id": 9240,
+ "start": 5057.24,
+ "end": 5057.34,
+ "text": "you"
+ },
+ {
+ "id": 9241,
+ "start": 5057.34,
+ "end": 5057.5,
+ "text": "don't"
+ },
+ {
+ "id": 9242,
+ "start": 5057.5,
+ "end": 5057.64,
+ "text": "know"
+ },
+ {
+ "id": 9243,
+ "start": 5057.64,
+ "end": 5058.04,
+ "text": "it."
+ },
+ {
+ "id": 9244,
+ "start": 5058.04,
+ "end": 5059.02,
+ "text": "I"
+ },
+ {
+ "id": 9245,
+ "start": 5059.02,
+ "end": 5059.2,
+ "text": "know"
+ },
+ {
+ "id": 9246,
+ "start": 5059.2,
+ "end": 5059.38,
+ "text": "that"
+ },
+ {
+ "id": 9247,
+ "start": 5059.38,
+ "end": 5059.96,
+ "text": "people"
+ },
+ {
+ "id": 9248,
+ "start": 5059.96,
+ "end": 5060.96,
+ "text": "use"
+ },
+ {
+ "id": 9249,
+ "start": 5060.96,
+ "end": 5061.44,
+ "text": "cookies"
+ },
+ {
+ "id": 9250,
+ "start": 5061.44,
+ "end": 5061.72,
+ "text": "on"
+ },
+ {
+ "id": 9251,
+ "start": 5061.72,
+ "end": 5061.82,
+ "text": "the"
+ },
+ {
+ "id": 9252,
+ "start": 5061.82,
+ "end": 5062.24,
+ "text": "Internet"
+ },
+ {
+ "id": 9253,
+ "start": 5062.24,
+ "end": 5062.84,
+ "text": "and"
+ },
+ {
+ "id": 9254,
+ "start": 5062.84,
+ "end": 5063.06,
+ "text": "that"
+ },
+ {
+ "id": 9255,
+ "start": 5063.06,
+ "end": 5063.16,
+ "text": "you"
+ },
+ {
+ "id": 9256,
+ "start": 5063.16,
+ "end": 5063.34,
+ "text": "can"
+ },
+ {
+ "id": 9257,
+ "start": 5063.34,
+ "end": 5063.76,
+ "text": "probably"
+ },
+ {
+ "id": 9258,
+ "start": 5063.76,
+ "end": 5064.18,
+ "text": "correlate"
+ },
+ {
+ "id": 9259,
+ "start": 5064.18,
+ "end": 5064.7,
+ "text": "activity"
+ },
+ {
+ "id": 9260,
+ "start": 5064.7,
+ "end": 5065.9,
+ "text": "between"
+ },
+ {
+ "id": 9261,
+ "start": 5065.9,
+ "end": 5066.98,
+ "text": "between"
+ },
+ {
+ "id": 9262,
+ "start": 5066.98,
+ "end": 5067.74,
+ "text": "sessions."
+ },
+ {
+ "id": 9263,
+ "start": 5067.74,
+ "end": 5068.72,
+ "text": "We"
+ },
+ {
+ "id": 9264,
+ "start": 5068.72,
+ "end": 5068.88,
+ "text": "do"
+ },
+ {
+ "id": 9265,
+ "start": 5068.88,
+ "end": 5069.08,
+ "text": "that"
+ },
+ {
+ "id": 9266,
+ "start": 5069.08,
+ "end": 5069.28,
+ "text": "for"
+ },
+ {
+ "id": 9267,
+ "start": 5069.28,
+ "end": 5069.32,
+ "text": "a"
+ },
+ {
+ "id": 9268,
+ "start": 5069.32,
+ "end": 5069.64,
+ "text": "number"
+ },
+ {
+ "id": 9269,
+ "start": 5069.64,
+ "end": 5069.74,
+ "text": "of"
+ },
+ {
+ "id": 9270,
+ "start": 5069.74,
+ "end": 5070.16,
+ "text": "reasons,"
+ },
+ {
+ "id": 9271,
+ "start": 5070.16,
+ "end": 5070.94,
+ "text": "including"
+ },
+ {
+ "id": 9272,
+ "start": 5070.94,
+ "end": 5071.82,
+ "text": "security"
+ },
+ {
+ "id": 9273,
+ "start": 5071.82,
+ "end": 5072.56,
+ "text": "and"
+ },
+ {
+ "id": 9274,
+ "start": 5072.56,
+ "end": 5073.2,
+ "text": "including"
+ },
+ {
+ "id": 9275,
+ "start": 5073.2,
+ "end": 5074.14,
+ "text": "measuring"
+ },
+ {
+ "id": 9276,
+ "start": 5074.14,
+ "end": 5074.5,
+ "text": "ads"
+ },
+ {
+ "id": 9277,
+ "start": 5074.5,
+ "end": 5074.68,
+ "text": "to"
+ },
+ {
+ "id": 9278,
+ "start": 5074.68,
+ "end": 5074.84,
+ "text": "make"
+ },
+ {
+ "id": 9279,
+ "start": 5074.84,
+ "end": 5074.98,
+ "text": "sure"
+ },
+ {
+ "id": 9280,
+ "start": 5074.98,
+ "end": 5075.1,
+ "text": "that"
+ },
+ {
+ "id": 9281,
+ "start": 5075.1,
+ "end": 5075.22,
+ "text": "the"
+ },
+ {
+ "id": 9282,
+ "start": 5075.22,
+ "end": 5075.46,
+ "text": "ad"
+ },
+ {
+ "id": 9283,
+ "start": 5075.46,
+ "end": 5076.04,
+ "text": "experiences"
+ },
+ {
+ "id": 9284,
+ "start": 5076.04,
+ "end": 5076.18,
+ "text": "are"
+ },
+ {
+ "id": 9285,
+ "start": 5076.18,
+ "end": 5076.28,
+ "text": "the"
+ },
+ {
+ "id": 9286,
+ "start": 5076.28,
+ "end": 5076.44,
+ "text": "most"
+ },
+ {
+ "id": 9287,
+ "start": 5076.44,
+ "end": 5076.9,
+ "text": "effective"
+ },
+ {
+ "id": 9288,
+ "start": 5076.9,
+ "end": 5077.12,
+ "text": "which,"
+ },
+ {
+ "id": 9289,
+ "start": 5077.12,
+ "end": 5077.58,
+ "text": "of"
+ },
+ {
+ "id": 9290,
+ "start": 5077.58,
+ "end": 5077.78,
+ "text": "course,"
+ },
+ {
+ "id": 9291,
+ "start": 5077.78,
+ "end": 5078.04,
+ "text": "people"
+ },
+ {
+ "id": 9292,
+ "start": 5078.04,
+ "end": 5078.2,
+ "text": "can"
+ },
+ {
+ "id": 9293,
+ "start": 5078.2,
+ "end": 5078.38,
+ "text": "opt"
+ },
+ {
+ "id": 9294,
+ "start": 5078.38,
+ "end": 5078.56,
+ "text": "out"
+ },
+ {
+ "id": 9295,
+ "start": 5078.56,
+ "end": 5078.74,
+ "text": "of."
+ },
+ {
+ "id": 9296,
+ "start": 5078.74,
+ "end": 5079.38,
+ "text": "But"
+ },
+ {
+ "id": 9297,
+ "start": 5079.38,
+ "end": 5079.44,
+ "text": "I"
+ },
+ {
+ "id": 9298,
+ "start": 5079.44,
+ "end": 5079.58,
+ "text": "want"
+ },
+ {
+ "id": 9299,
+ "start": 5079.58,
+ "end": 5079.66,
+ "text": "to"
+ },
+ {
+ "id": 9300,
+ "start": 5079.66,
+ "end": 5079.76,
+ "text": "make"
+ },
+ {
+ "id": 9301,
+ "start": 5079.76,
+ "end": 5079.88,
+ "text": "sure"
+ },
+ {
+ "id": 9302,
+ "start": 5079.88,
+ "end": 5079.99,
+ "text": "that"
+ },
+ {
+ "id": 9303,
+ "start": 5079.99,
+ "end": 5081.99,
+ "text": "precisely"
+ },
+ {
+ "id": 9304,
+ "start": 5081.99,
+ "end": 5082.99,
+ "text": "that"
+ },
+ {
+ "id": 9305,
+ "start": 5082.99,
+ "end": 5083.13,
+ "text": "to"
+ },
+ {
+ "id": 9306,
+ "start": 5083.13,
+ "end": 5084.59,
+ "text": "me."
+ },
+ {
+ "id": 9307,
+ "start": 5084.59,
+ "end": 5084.75,
+ "text": "Would"
+ },
+ {
+ "id": 9308,
+ "start": 5084.75,
+ "end": 5084.89,
+ "text": "you"
+ },
+ {
+ "id": 9309,
+ "start": 5084.89,
+ "end": 5085.45,
+ "text": "also,"
+ },
+ {
+ "id": 9310,
+ "start": 5085.45,
+ "end": 5085.87,
+ "text": "let"
+ },
+ {
+ "id": 9311,
+ "start": 5085.87,
+ "end": 5086.01,
+ "text": "us"
+ },
+ {
+ "id": 9312,
+ "start": 5086.01,
+ "end": 5086.21,
+ "text": "know"
+ },
+ {
+ "id": 9313,
+ "start": 5086.21,
+ "end": 5086.45,
+ "text": "how"
+ },
+ {
+ "id": 9314,
+ "start": 5086.45,
+ "end": 5087.19,
+ "text": "Facebook"
+ },
+ {
+ "id": 9315,
+ "start": 5087.19,
+ "end": 5088.19,
+ "text": "discloses"
+ },
+ {
+ "id": 9316,
+ "start": 5088.19,
+ "end": 5088.97,
+ "text": "to"
+ },
+ {
+ "id": 9317,
+ "start": 5088.97,
+ "end": 5089.15,
+ "text": "its"
+ },
+ {
+ "id": 9318,
+ "start": 5089.15,
+ "end": 5089.87,
+ "text": "users"
+ },
+ {
+ "id": 9319,
+ "start": 5089.87,
+ "end": 5090.09,
+ "text": "that"
+ },
+ {
+ "id": 9320,
+ "start": 5090.09,
+ "end": 5090.83,
+ "text": "engaging"
+ },
+ {
+ "id": 9321,
+ "start": 5090.83,
+ "end": 5091.69,
+ "text": "in"
+ },
+ {
+ "id": 9322,
+ "start": 5091.69,
+ "end": 5091.95,
+ "text": "this"
+ },
+ {
+ "id": 9323,
+ "start": 5091.95,
+ "end": 5092.53,
+ "text": "type"
+ },
+ {
+ "id": 9324,
+ "start": 5092.53,
+ "end": 5092.67,
+ "text": "of"
+ },
+ {
+ "id": 9325,
+ "start": 5092.67,
+ "end": 5094.08,
+ "text": "tracking"
+ },
+ {
+ "id": 9326,
+ "start": 5094.08,
+ "end": 5095.18,
+ "text": "gives"
+ },
+ {
+ "id": 9327,
+ "start": 5095.18,
+ "end": 5095.3,
+ "text": "us"
+ },
+ {
+ "id": 9328,
+ "start": 5095.3,
+ "end": 5095.52,
+ "text": "that"
+ },
+ {
+ "id": 9329,
+ "start": 5095.52,
+ "end": 5096.46,
+ "text": "result."
+ },
+ {
+ "id": 9330,
+ "start": 5096.46,
+ "end": 5097.44,
+ "text": "And"
+ },
+ {
+ "id": 9331,
+ "start": 5097.44,
+ "end": 5097.62,
+ "text": "thank"
+ },
+ {
+ "id": 9332,
+ "start": 5097.62,
+ "end": 5097.74,
+ "text": "you"
+ },
+ {
+ "id": 9333,
+ "start": 5097.74,
+ "end": 5097.94,
+ "text": "very"
+ },
+ {
+ "id": 9334,
+ "start": 5097.94,
+ "end": 5098.12,
+ "text": "much."
+ },
+ {
+ "id": 9335,
+ "start": 5098.12,
+ "end": 5098.44,
+ "text": "Thank"
+ },
+ {
+ "id": 9336,
+ "start": 5098.44,
+ "end": 5098.58,
+ "text": "you,"
+ },
+ {
+ "id": 9337,
+ "start": 5098.58,
+ "end": 5098.88,
+ "text": "Senator."
+ },
+ {
+ "id": 9338,
+ "start": 5098.88,
+ "end": 5099.2,
+ "text": "Wicker"
+ },
+ {
+ "id": 9339,
+ "start": 5099.2,
+ "end": 5099.48,
+ "text": "Senator"
+ },
+ {
+ "id": 9340,
+ "start": 5099.48,
+ "end": 5099.68,
+ "text": "LA"
+ },
+ {
+ "id": 9341,
+ "start": 5099.68,
+ "end": 5099.86,
+ "text": "he's."
+ },
+ {
+ "id": 9342,
+ "start": 5099.86,
+ "end": 5100.04,
+ "text": "Up"
+ },
+ {
+ "id": 9343,
+ "start": 5100.04,
+ "end": 5101.04,
+ "text": "next,"
+ },
+ {
+ "id": 9344,
+ "start": 5101.04,
+ "end": 5102.12,
+ "text": "thank"
+ },
+ {
+ "id": 9345,
+ "start": 5102.12,
+ "end": 5102.28,
+ "text": "you."
+ },
+ {
+ "id": 9346,
+ "start": 5102.28,
+ "end": 5104,
+ "text": "I"
+ },
+ {
+ "id": 9347,
+ "start": 5104,
+ "end": 5105.62,
+ "text": "I"
+ },
+ {
+ "id": 9348,
+ "start": 5105.62,
+ "end": 5107.18,
+ "text": "assume"
+ },
+ {
+ "id": 9349,
+ "start": 5107.18,
+ "end": 5108.14,
+ "text": "Facebook"
+ },
+ {
+ "id": 9350,
+ "start": 5108.14,
+ "end": 5108.46,
+ "text": "been"
+ },
+ {
+ "id": 9351,
+ "start": 5108.46,
+ "end": 5108.78,
+ "text": "served"
+ },
+ {
+ "id": 9352,
+ "start": 5108.78,
+ "end": 5108.96,
+ "text": "with"
+ },
+ {
+ "id": 9353,
+ "start": 5108.96,
+ "end": 5110.06,
+ "text": "subpoenas"
+ },
+ {
+ "id": 9354,
+ "start": 5110.06,
+ "end": 5111.04,
+ "text": "for"
+ },
+ {
+ "id": 9355,
+ "start": 5111.04,
+ "end": 5111.18,
+ "text": "the"
+ },
+ {
+ "id": 9356,
+ "start": 5111.18,
+ "end": 5111.54,
+ "text": "special"
+ },
+ {
+ "id": 9357,
+ "start": 5111.54,
+ "end": 5111.96,
+ "text": "counsel"
+ },
+ {
+ "id": 9358,
+ "start": 5111.96,
+ "end": 5112.34,
+ "text": "moles"
+ },
+ {
+ "id": 9359,
+ "start": 5112.34,
+ "end": 5112.66,
+ "text": "office"
+ },
+ {
+ "id": 9360,
+ "start": 5112.66,
+ "end": 5112.76,
+ "text": "is"
+ },
+ {
+ "id": 9361,
+ "start": 5112.76,
+ "end": 5112.98,
+ "text": "that"
+ },
+ {
+ "id": 9362,
+ "start": 5112.98,
+ "end": 5114.3,
+ "text": "quick?"
+ },
+ {
+ "id": 9363,
+ "start": 5114.3,
+ "end": 5116.28,
+ "text": "Yes,"
+ },
+ {
+ "id": 9364,
+ "start": 5116.28,
+ "end": 5117.26,
+ "text": "have"
+ },
+ {
+ "id": 9365,
+ "start": 5117.26,
+ "end": 5117.44,
+ "text": "you"
+ },
+ {
+ "id": 9366,
+ "start": 5117.44,
+ "end": 5117.64,
+ "text": "or"
+ },
+ {
+ "id": 9367,
+ "start": 5117.64,
+ "end": 5117.98,
+ "text": "anyone"
+ },
+ {
+ "id": 9368,
+ "start": 5117.98,
+ "end": 5118.6,
+ "text": "Facebook"
+ },
+ {
+ "id": 9369,
+ "start": 5118.6,
+ "end": 5118.82,
+ "text": "but"
+ },
+ {
+ "id": 9370,
+ "start": 5118.82,
+ "end": 5119.32,
+ "text": "interviewed"
+ },
+ {
+ "id": 9371,
+ "start": 5119.32,
+ "end": 5119.52,
+ "text": "by"
+ },
+ {
+ "id": 9372,
+ "start": 5119.52,
+ "end": 5119.62,
+ "text": "the"
+ },
+ {
+ "id": 9373,
+ "start": 5119.62,
+ "end": 5120,
+ "text": "special"
+ },
+ {
+ "id": 9374,
+ "start": 5120,
+ "end": 5120.5,
+ "text": "counsels"
+ },
+ {
+ "id": 9375,
+ "start": 5120.5,
+ "end": 5121.86,
+ "text": "office?"
+ },
+ {
+ "id": 9376,
+ "start": 5121.86,
+ "end": 5123.04,
+ "text": "Yes,"
+ },
+ {
+ "id": 9377,
+ "start": 5123.04,
+ "end": 5123.7,
+ "text": "have"
+ },
+ {
+ "id": 9378,
+ "start": 5123.7,
+ "end": 5123.82,
+ "text": "you"
+ },
+ {
+ "id": 9379,
+ "start": 5123.82,
+ "end": 5124.06,
+ "text": "been"
+ },
+ {
+ "id": 9380,
+ "start": 5124.06,
+ "end": 5124.4,
+ "text": "interview?"
+ },
+ {
+ "id": 9381,
+ "start": 5124.4,
+ "end": 5124.56,
+ "text": "I"
+ },
+ {
+ "id": 9382,
+ "start": 5124.56,
+ "end": 5124.78,
+ "text": "have"
+ },
+ {
+ "id": 9383,
+ "start": 5124.78,
+ "end": 5125.9,
+ "text": "not,"
+ },
+ {
+ "id": 9384,
+ "start": 5125.9,
+ "end": 5127.72,
+ "text": "I"
+ },
+ {
+ "id": 9385,
+ "start": 5127.72,
+ "end": 5127.86,
+ "text": "have"
+ },
+ {
+ "id": 9386,
+ "start": 5127.86,
+ "end": 5128.04,
+ "text": "not"
+ },
+ {
+ "id": 9387,
+ "start": 5128.04,
+ "end": 5128.44,
+ "text": "others."
+ },
+ {
+ "id": 9388,
+ "start": 5128.44,
+ "end": 5129.12,
+ "text": "Am"
+ },
+ {
+ "id": 9389,
+ "start": 5129.12,
+ "end": 5129.42,
+ "text": "I"
+ },
+ {
+ "id": 9390,
+ "start": 5129.42,
+ "end": 5129.7,
+ "text": "believe"
+ },
+ {
+ "id": 9391,
+ "start": 5129.7,
+ "end": 5130.04,
+ "text": "so?"
+ },
+ {
+ "id": 9392,
+ "start": 5130.04,
+ "end": 5130.18,
+ "text": "And"
+ },
+ {
+ "id": 9393,
+ "start": 5130.18,
+ "end": 5130.32,
+ "text": "I"
+ },
+ {
+ "id": 9394,
+ "start": 5130.32,
+ "end": 5130.54,
+ "text": "want"
+ },
+ {
+ "id": 9395,
+ "start": 5130.54,
+ "end": 5130.64,
+ "text": "to"
+ },
+ {
+ "id": 9396,
+ "start": 5130.64,
+ "end": 5130.78,
+ "text": "be"
+ },
+ {
+ "id": 9397,
+ "start": 5130.78,
+ "end": 5131.38,
+ "text": "careful"
+ },
+ {
+ "id": 9398,
+ "start": 5131.38,
+ "end": 5131.7,
+ "text": "here"
+ },
+ {
+ "id": 9399,
+ "start": 5131.7,
+ "end": 5132.2,
+ "text": "because"
+ },
+ {
+ "id": 9400,
+ "start": 5132.2,
+ "end": 5133.36,
+ "text": "that"
+ },
+ {
+ "id": 9401,
+ "start": 5133.36,
+ "end": 5134.44,
+ "text": "our"
+ },
+ {
+ "id": 9402,
+ "start": 5134.44,
+ "end": 5135.42,
+ "text": "work"
+ },
+ {
+ "id": 9403,
+ "start": 5135.42,
+ "end": 5135.6,
+ "text": "with"
+ },
+ {
+ "id": 9404,
+ "start": 5135.6,
+ "end": 5135.7,
+ "text": "the"
+ },
+ {
+ "id": 9405,
+ "start": 5135.7,
+ "end": 5136.04,
+ "text": "special"
+ },
+ {
+ "id": 9406,
+ "start": 5136.04,
+ "end": 5136.46,
+ "text": "counsel"
+ },
+ {
+ "id": 9407,
+ "start": 5136.46,
+ "end": 5136.82,
+ "text": "is"
+ },
+ {
+ "id": 9408,
+ "start": 5136.82,
+ "end": 5137.88,
+ "text": "confidential."
+ },
+ {
+ "id": 9409,
+ "start": 5137.88,
+ "end": 5138.12,
+ "text": "And"
+ },
+ {
+ "id": 9410,
+ "start": 5138.12,
+ "end": 5138.18,
+ "text": "I"
+ },
+ {
+ "id": 9411,
+ "start": 5138.18,
+ "end": 5138.34,
+ "text": "want"
+ },
+ {
+ "id": 9412,
+ "start": 5138.34,
+ "end": 5138.42,
+ "text": "to"
+ },
+ {
+ "id": 9413,
+ "start": 5138.42,
+ "end": 5138.54,
+ "text": "make"
+ },
+ {
+ "id": 9414,
+ "start": 5138.54,
+ "end": 5138.72,
+ "text": "sure"
+ },
+ {
+ "id": 9415,
+ "start": 5138.72,
+ "end": 5138.9,
+ "text": "that"
+ },
+ {
+ "id": 9416,
+ "start": 5138.9,
+ "end": 5139.06,
+ "text": "in"
+ },
+ {
+ "id": 9417,
+ "start": 5139.06,
+ "end": 5139.18,
+ "text": "an"
+ },
+ {
+ "id": 9418,
+ "start": 5139.18,
+ "end": 5139.42,
+ "text": "open"
+ },
+ {
+ "id": 9419,
+ "start": 5139.42,
+ "end": 5139.84,
+ "text": "session"
+ },
+ {
+ "id": 9420,
+ "start": 5139.84,
+ "end": 5140.04,
+ "text": "I'm"
+ },
+ {
+ "id": 9421,
+ "start": 5140.04,
+ "end": 5140.24,
+ "text": "not"
+ },
+ {
+ "id": 9422,
+ "start": 5140.24,
+ "end": 5140.7,
+ "text": "revealing"
+ },
+ {
+ "id": 9423,
+ "start": 5140.7,
+ "end": 5141.02,
+ "text": "something"
+ },
+ {
+ "id": 9424,
+ "start": 5141.02,
+ "end": 5142.1,
+ "text": "Confidential"
+ },
+ {
+ "id": 9425,
+ "start": 5142.1,
+ "end": 5142.74,
+ "text": "I"
+ },
+ {
+ "id": 9426,
+ "start": 5142.74,
+ "end": 5143.44,
+ "text": "understand"
+ },
+ {
+ "id": 9427,
+ "start": 5143.44,
+ "end": 5144.42,
+ "text": "that's"
+ },
+ {
+ "id": 9428,
+ "start": 5144.42,
+ "end": 5144.56,
+ "text": "why"
+ },
+ {
+ "id": 9429,
+ "start": 5144.56,
+ "end": 5144.62,
+ "text": "I"
+ },
+ {
+ "id": 9430,
+ "start": 5144.62,
+ "end": 5144.84,
+ "text": "made"
+ },
+ {
+ "id": 9431,
+ "start": 5144.84,
+ "end": 5145.16,
+ "text": "clear"
+ },
+ {
+ "id": 9432,
+ "start": 5145.16,
+ "end": 5145.32,
+ "text": "that"
+ },
+ {
+ "id": 9433,
+ "start": 5145.32,
+ "end": 5145.5,
+ "text": "you"
+ },
+ {
+ "id": 9434,
+ "start": 5145.5,
+ "end": 5145.72,
+ "text": "have"
+ },
+ {
+ "id": 9435,
+ "start": 5145.72,
+ "end": 5145.92,
+ "text": "been"
+ },
+ {
+ "id": 9436,
+ "start": 5145.92,
+ "end": 5146.6,
+ "text": "contacted."
+ },
+ {
+ "id": 9437,
+ "start": 5146.6,
+ "end": 5146.76,
+ "text": "You"
+ },
+ {
+ "id": 9438,
+ "start": 5146.76,
+ "end": 5146.94,
+ "text": "have"
+ },
+ {
+ "id": 9439,
+ "start": 5146.94,
+ "end": 5147.2,
+ "text": "an"
+ },
+ {
+ "id": 9440,
+ "start": 5147.2,
+ "end": 5148.26,
+ "text": "subpoenas,"
+ },
+ {
+ "id": 9441,
+ "start": 5148.26,
+ "end": 5149.12,
+ "text": "actually."
+ },
+ {
+ "id": 9442,
+ "start": 5149.12,
+ "end": 5149.26,
+ "text": "Let"
+ },
+ {
+ "id": 9443,
+ "start": 5149.26,
+ "end": 5149.34,
+ "text": "me"
+ },
+ {
+ "id": 9444,
+ "start": 5149.34,
+ "end": 5149.68,
+ "text": "clarify"
+ },
+ {
+ "id": 9445,
+ "start": 5149.68,
+ "end": 5149.9,
+ "text": "that."
+ },
+ {
+ "id": 9446,
+ "start": 5149.9,
+ "end": 5150.14,
+ "text": "I"
+ },
+ {
+ "id": 9447,
+ "start": 5150.14,
+ "end": 5150.62,
+ "text": "actually"
+ },
+ {
+ "id": 9448,
+ "start": 5150.62,
+ "end": 5150.78,
+ "text": "am"
+ },
+ {
+ "id": 9449,
+ "start": 5150.78,
+ "end": 5150.96,
+ "text": "not"
+ },
+ {
+ "id": 9450,
+ "start": 5150.96,
+ "end": 5151.26,
+ "text": "aware"
+ },
+ {
+ "id": 9451,
+ "start": 5151.26,
+ "end": 5151.9,
+ "text": "of"
+ },
+ {
+ "id": 9452,
+ "start": 5151.9,
+ "end": 5152.22,
+ "text": "a"
+ },
+ {
+ "id": 9453,
+ "start": 5152.22,
+ "end": 5152.62,
+ "text": "subpoena."
+ },
+ {
+ "id": 9454,
+ "start": 5152.62,
+ "end": 5152.74,
+ "text": "I"
+ },
+ {
+ "id": 9455,
+ "start": 5152.74,
+ "end": 5153.04,
+ "text": "believe"
+ },
+ {
+ "id": 9456,
+ "start": 5153.04,
+ "end": 5153.2,
+ "text": "that"
+ },
+ {
+ "id": 9457,
+ "start": 5153.2,
+ "end": 5153.4,
+ "text": "there"
+ },
+ {
+ "id": 9458,
+ "start": 5153.4,
+ "end": 5153.58,
+ "text": "may"
+ },
+ {
+ "id": 9459,
+ "start": 5153.58,
+ "end": 5153.8,
+ "text": "be"
+ },
+ {
+ "id": 9460,
+ "start": 5153.8,
+ "end": 5154.42,
+ "text": "but"
+ },
+ {
+ "id": 9461,
+ "start": 5154.42,
+ "end": 5154.62,
+ "text": "I"
+ },
+ {
+ "id": 9462,
+ "start": 5154.62,
+ "end": 5154.78,
+ "text": "know"
+ },
+ {
+ "id": 9463,
+ "start": 5154.78,
+ "end": 5155.02,
+ "text": "we're"
+ },
+ {
+ "id": 9464,
+ "start": 5155.02,
+ "end": 5155.3,
+ "text": "working"
+ },
+ {
+ "id": 9465,
+ "start": 5155.3,
+ "end": 5155.46,
+ "text": "with"
+ },
+ {
+ "id": 9466,
+ "start": 5155.46,
+ "end": 5155.62,
+ "text": "them,"
+ },
+ {
+ "id": 9467,
+ "start": 5155.62,
+ "end": 5156.26,
+ "text": "thank"
+ },
+ {
+ "id": 9468,
+ "start": 5156.26,
+ "end": 5159.12,
+ "text": "you."
+ },
+ {
+ "id": 9469,
+ "start": 5159.12,
+ "end": 5160.14,
+ "text": "Six"
+ },
+ {
+ "id": 9470,
+ "start": 5160.14,
+ "end": 5160.34,
+ "text": "months"
+ },
+ {
+ "id": 9471,
+ "start": 5160.34,
+ "end": 5160.88,
+ "text": "ago,"
+ },
+ {
+ "id": 9472,
+ "start": 5160.88,
+ "end": 5161.74,
+ "text": "Council"
+ },
+ {
+ "id": 9473,
+ "start": 5161.74,
+ "end": 5162.6,
+ "text": "promises"
+ },
+ {
+ "id": 9474,
+ "start": 5162.6,
+ "end": 5162.88,
+ "text": "you"
+ },
+ {
+ "id": 9475,
+ "start": 5162.88,
+ "end": 5163.04,
+ "text": "are"
+ },
+ {
+ "id": 9476,
+ "start": 5163.04,
+ "end": 5163.4,
+ "text": "taking"
+ },
+ {
+ "id": 9477,
+ "start": 5163.4,
+ "end": 5163.8,
+ "text": "steps"
+ },
+ {
+ "id": 9478,
+ "start": 5163.8,
+ "end": 5164,
+ "text": "to"
+ },
+ {
+ "id": 9479,
+ "start": 5164,
+ "end": 5164.86,
+ "text": "prevent"
+ },
+ {
+ "id": 9480,
+ "start": 5164.86,
+ "end": 5165.86,
+ "text": "Facebook"
+ },
+ {
+ "id": 9481,
+ "start": 5165.86,
+ "end": 5166.08,
+ "text": "for"
+ },
+ {
+ "id": 9482,
+ "start": 5166.08,
+ "end": 5166.62,
+ "text": "serving"
+ },
+ {
+ "id": 9483,
+ "start": 5166.62,
+ "end": 5167.16,
+ "text": "what"
+ },
+ {
+ "id": 9484,
+ "start": 5167.16,
+ "end": 5167.62,
+ "text": "is"
+ },
+ {
+ "id": 9485,
+ "start": 5167.62,
+ "end": 5167.92,
+ "text": "called"
+ },
+ {
+ "id": 9486,
+ "start": 5167.92,
+ "end": 5168.58,
+ "text": "unwitting"
+ },
+ {
+ "id": 9487,
+ "start": 5168.58,
+ "end": 5168.88,
+ "text": "cold"
+ },
+ {
+ "id": 9488,
+ "start": 5168.88,
+ "end": 5169.5,
+ "text": "Conspira"
+ },
+ {
+ "id": 9489,
+ "start": 5169.5,
+ "end": 5169.68,
+ "text": "and"
+ },
+ {
+ "id": 9490,
+ "start": 5169.68,
+ "end": 5170.06,
+ "text": "Russian"
+ },
+ {
+ "id": 9491,
+ "start": 5170.06,
+ "end": 5170.92,
+ "text": "interference."
+ },
+ {
+ "id": 9492,
+ "start": 5170.92,
+ "end": 5171.94,
+ "text": "But"
+ },
+ {
+ "id": 9493,
+ "start": 5171.94,
+ "end": 5174.22,
+ "text": "these"
+ },
+ {
+ "id": 9494,
+ "start": 5174.22,
+ "end": 5176.56,
+ "text": "these"
+ },
+ {
+ "id": 9495,
+ "start": 5176.56,
+ "end": 5177.52,
+ "text": "unverified"
+ },
+ {
+ "id": 9496,
+ "start": 5177.52,
+ "end": 5178.06,
+ "text": "device"
+ },
+ {
+ "id": 9497,
+ "start": 5178.06,
+ "end": 5178.2,
+ "text": "of"
+ },
+ {
+ "id": 9498,
+ "start": 5178.2,
+ "end": 5178.62,
+ "text": "pages"
+ },
+ {
+ "id": 9499,
+ "start": 5178.62,
+ "end": 5178.8,
+ "text": "are"
+ },
+ {
+ "id": 9500,
+ "start": 5178.8,
+ "end": 5178.92,
+ "text": "on"
+ },
+ {
+ "id": 9501,
+ "start": 5178.92,
+ "end": 5179.48,
+ "text": "Facebook."
+ },
+ {
+ "id": 9502,
+ "start": 5179.48,
+ "end": 5179.96,
+ "text": "Today."
+ },
+ {
+ "id": 9503,
+ "start": 5179.96,
+ "end": 5181.12,
+ "text": "They"
+ },
+ {
+ "id": 9504,
+ "start": 5181.12,
+ "end": 5181.34,
+ "text": "look"
+ },
+ {
+ "id": 9505,
+ "start": 5181.34,
+ "end": 5181.4,
+ "text": "a"
+ },
+ {
+ "id": 9506,
+ "start": 5181.4,
+ "end": 5181.76,
+ "text": "lot"
+ },
+ {
+ "id": 9507,
+ "start": 5181.76,
+ "end": 5181.94,
+ "text": "like"
+ },
+ {
+ "id": 9508,
+ "start": 5181.94,
+ "end": 5182.08,
+ "text": "the"
+ },
+ {
+ "id": 9509,
+ "start": 5182.08,
+ "end": 5182.62,
+ "text": "anonymous"
+ },
+ {
+ "id": 9510,
+ "start": 5182.62,
+ "end": 5182.86,
+ "text": "group"
+ },
+ {
+ "id": 9511,
+ "start": 5182.86,
+ "end": 5182.96,
+ "text": "of"
+ },
+ {
+ "id": 9512,
+ "start": 5182.96,
+ "end": 5183.46,
+ "text": "Russian"
+ },
+ {
+ "id": 9513,
+ "start": 5183.46,
+ "end": 5184.06,
+ "text": "agency"
+ },
+ {
+ "id": 9514,
+ "start": 5184.06,
+ "end": 5185.04,
+ "text": "use"
+ },
+ {
+ "id": 9515,
+ "start": 5185.04,
+ "end": 5186.14,
+ "text": "this"
+ },
+ {
+ "id": 9516,
+ "start": 5186.14,
+ "end": 5186.52,
+ "text": "print"
+ },
+ {
+ "id": 9517,
+ "start": 5186.52,
+ "end": 5187.18,
+ "text": "propaganda"
+ },
+ {
+ "id": 9518,
+ "start": 5187.18,
+ "end": 5187.48,
+ "text": "during"
+ },
+ {
+ "id": 9519,
+ "start": 5187.48,
+ "end": 5187.58,
+ "text": "the"
+ },
+ {
+ "id": 9520,
+ "start": 5187.58,
+ "end": 5187.84,
+ "text": "20"
+ },
+ {
+ "id": 9521,
+ "start": 5187.84,
+ "end": 5188.26,
+ "text": "16"
+ },
+ {
+ "id": 9522,
+ "start": 5188.26,
+ "end": 5189.68,
+ "text": "election."
+ },
+ {
+ "id": 9523,
+ "start": 5189.68,
+ "end": 5190.88,
+ "text": "You"
+ },
+ {
+ "id": 9524,
+ "start": 5190.88,
+ "end": 5191.18,
+ "text": "ever"
+ },
+ {
+ "id": 9525,
+ "start": 5191.18,
+ "end": 5191.68,
+ "text": "confirm"
+ },
+ {
+ "id": 9526,
+ "start": 5191.68,
+ "end": 5192.1,
+ "text": "with"
+ },
+ {
+ "id": 9527,
+ "start": 5192.1,
+ "end": 5192.48,
+ "text": "their"
+ },
+ {
+ "id": 9528,
+ "start": 5192.48,
+ "end": 5193.4,
+ "text": "Russian"
+ },
+ {
+ "id": 9529,
+ "start": 5193.4,
+ "end": 5193.78,
+ "text": "create"
+ },
+ {
+ "id": 9530,
+ "start": 5193.78,
+ "end": 5194.08,
+ "text": "groups,"
+ },
+ {
+ "id": 9531,
+ "start": 5194.08,
+ "end": 5194.76,
+ "text": "yes"
+ },
+ {
+ "id": 9532,
+ "start": 5194.76,
+ "end": 5194.92,
+ "text": "or"
+ },
+ {
+ "id": 9533,
+ "start": 5194.92,
+ "end": 5196.08,
+ "text": "no"
+ },
+ {
+ "id": 9534,
+ "start": 5196.08,
+ "end": 5197.06,
+ "text": "Senator."
+ },
+ {
+ "id": 9535,
+ "start": 5197.06,
+ "end": 5197.14,
+ "text": "Are"
+ },
+ {
+ "id": 9536,
+ "start": 5197.14,
+ "end": 5197.22,
+ "text": "you"
+ },
+ {
+ "id": 9537,
+ "start": 5197.22,
+ "end": 5197.5,
+ "text": "asking"
+ },
+ {
+ "id": 9538,
+ "start": 5197.5,
+ "end": 5197.64,
+ "text": "about"
+ },
+ {
+ "id": 9539,
+ "start": 5197.64,
+ "end": 5197.84,
+ "text": "those"
+ },
+ {
+ "id": 9540,
+ "start": 5197.84,
+ "end": 5198.42,
+ "text": "specifically"
+ },
+ {
+ "id": 9541,
+ "start": 5198.42,
+ "end": 5199.62,
+ "text": "yes,"
+ },
+ {
+ "id": 9542,
+ "start": 5199.62,
+ "end": 5200.6,
+ "text": "Senator,"
+ },
+ {
+ "id": 9543,
+ "start": 5200.6,
+ "end": 5201.04,
+ "text": "last"
+ },
+ {
+ "id": 9544,
+ "start": 5201.04,
+ "end": 5201.48,
+ "text": "week"
+ },
+ {
+ "id": 9545,
+ "start": 5201.48,
+ "end": 5201.88,
+ "text": "we"
+ },
+ {
+ "id": 9546,
+ "start": 5201.88,
+ "end": 5202.32,
+ "text": "actually"
+ },
+ {
+ "id": 9547,
+ "start": 5202.32,
+ "end": 5202.8,
+ "text": "announced"
+ },
+ {
+ "id": 9548,
+ "start": 5202.8,
+ "end": 5203.42,
+ "text": "a"
+ },
+ {
+ "id": 9549,
+ "start": 5203.42,
+ "end": 5203.82,
+ "text": "major"
+ },
+ {
+ "id": 9550,
+ "start": 5203.82,
+ "end": 5204.2,
+ "text": "change"
+ },
+ {
+ "id": 9551,
+ "start": 5204.2,
+ "end": 5204.4,
+ "text": "to"
+ },
+ {
+ "id": 9552,
+ "start": 5204.4,
+ "end": 5204.54,
+ "text": "our"
+ },
+ {
+ "id": 9553,
+ "start": 5204.54,
+ "end": 5204.92,
+ "text": "ads"
+ },
+ {
+ "id": 9554,
+ "start": 5204.92,
+ "end": 5205.08,
+ "text": "and"
+ },
+ {
+ "id": 9555,
+ "start": 5205.08,
+ "end": 5205.5,
+ "text": "pages."
+ },
+ {
+ "id": 9556,
+ "start": 5205.5,
+ "end": 5205.88,
+ "text": "Policy"
+ },
+ {
+ "id": 9557,
+ "start": 5205.88,
+ "end": 5205.94,
+ "text": "Y"
+ },
+ {
+ "id": 9558,
+ "start": 5205.94,
+ "end": 5206.66,
+ "text": "that"
+ },
+ {
+ "id": 9559,
+ "start": 5206.66,
+ "end": 5206.8,
+ "text": "we"
+ },
+ {
+ "id": 9560,
+ "start": 5206.8,
+ "end": 5207,
+ "text": "will"
+ },
+ {
+ "id": 9561,
+ "start": 5207,
+ "end": 5207.12,
+ "text": "be"
+ },
+ {
+ "id": 9562,
+ "start": 5207.12,
+ "end": 5207.7,
+ "text": "verifying"
+ },
+ {
+ "id": 9563,
+ "start": 5207.7,
+ "end": 5207.88,
+ "text": "the"
+ },
+ {
+ "id": 9564,
+ "start": 5207.88,
+ "end": 5208.48,
+ "text": "identity"
+ },
+ {
+ "id": 9565,
+ "start": 5208.48,
+ "end": 5209.46,
+ "text": "of"
+ },
+ {
+ "id": 9566,
+ "start": 5209.46,
+ "end": 5210.6,
+ "text": "every"
+ },
+ {
+ "id": 9567,
+ "start": 5210.6,
+ "end": 5210.88,
+ "text": "single"
+ },
+ {
+ "id": 9568,
+ "start": 5210.88,
+ "end": 5211.72,
+ "text": "Advertiser"
+ },
+ {
+ "id": 9569,
+ "start": 5211.72,
+ "end": 5212.36,
+ "text": "specific"
+ },
+ {
+ "id": 9570,
+ "start": 5212.36,
+ "end": 5212.54,
+ "text": "ones,"
+ },
+ {
+ "id": 9571,
+ "start": 5212.54,
+ "end": 5212.82,
+ "text": "you"
+ },
+ {
+ "id": 9572,
+ "start": 5212.82,
+ "end": 5212.98,
+ "text": "know"
+ },
+ {
+ "id": 9573,
+ "start": 5212.98,
+ "end": 5213.36,
+ "text": "what"
+ },
+ {
+ "id": 9574,
+ "start": 5213.36,
+ "end": 5213.52,
+ "text": "they"
+ },
+ {
+ "id": 9575,
+ "start": 5213.52,
+ "end": 5213.78,
+ "text": "are?"
+ },
+ {
+ "id": 9576,
+ "start": 5213.78,
+ "end": 5214.14,
+ "text": "I"
+ },
+ {
+ "id": 9577,
+ "start": 5214.14,
+ "end": 5214.28,
+ "text": "am"
+ },
+ {
+ "id": 9578,
+ "start": 5214.28,
+ "end": 5214.52,
+ "text": "not"
+ },
+ {
+ "id": 9579,
+ "start": 5214.52,
+ "end": 5215.02,
+ "text": "familiar"
+ },
+ {
+ "id": 9580,
+ "start": 5215.02,
+ "end": 5215.18,
+ "text": "with"
+ },
+ {
+ "id": 9581,
+ "start": 5215.18,
+ "end": 5216.02,
+ "text": "this"
+ },
+ {
+ "id": 9582,
+ "start": 5216.02,
+ "end": 5216.7,
+ "text": "piece"
+ },
+ {
+ "id": 9583,
+ "start": 5216.7,
+ "end": 5216.86,
+ "text": "of"
+ },
+ {
+ "id": 9584,
+ "start": 5216.86,
+ "end": 5217.24,
+ "text": "content"
+ },
+ {
+ "id": 9585,
+ "start": 5217.24,
+ "end": 5217.84,
+ "text": "specifically."
+ },
+ {
+ "id": 9586,
+ "start": 5217.84,
+ "end": 5218.76,
+ "text": "But"
+ },
+ {
+ "id": 9587,
+ "start": 5218.76,
+ "end": 5218.88,
+ "text": "if"
+ },
+ {
+ "id": 9588,
+ "start": 5218.88,
+ "end": 5219,
+ "text": "you"
+ },
+ {
+ "id": 9589,
+ "start": 5219,
+ "end": 5219.44,
+ "text": "decide"
+ },
+ {
+ "id": 9590,
+ "start": 5219.44,
+ "end": 5219.68,
+ "text": "this"
+ },
+ {
+ "id": 9591,
+ "start": 5219.68,
+ "end": 5220.2,
+ "text": "policy"
+ },
+ {
+ "id": 9592,
+ "start": 5220.2,
+ "end": 5220.3,
+ "text": "of"
+ },
+ {
+ "id": 9593,
+ "start": 5220.3,
+ "end": 5220.44,
+ "text": "a"
+ },
+ {
+ "id": 9594,
+ "start": 5220.44,
+ "end": 5220.64,
+ "text": "week"
+ },
+ {
+ "id": 9595,
+ "start": 5220.64,
+ "end": 5221.2,
+ "text": "ago"
+ },
+ {
+ "id": 9596,
+ "start": 5221.2,
+ "end": 5221.92,
+ "text": "you'd"
+ },
+ {
+ "id": 9597,
+ "start": 5221.92,
+ "end": 5222.06,
+ "text": "be"
+ },
+ {
+ "id": 9598,
+ "start": 5222.06,
+ "end": 5222.26,
+ "text": "able"
+ },
+ {
+ "id": 9599,
+ "start": 5222.26,
+ "end": 5222.38,
+ "text": "to"
+ },
+ {
+ "id": 9600,
+ "start": 5222.38,
+ "end": 5222.94,
+ "text": "verify"
+ },
+ {
+ "id": 9601,
+ "start": 5222.94,
+ "end": 5223.12,
+ "text": "them,"
+ },
+ {
+ "id": 9602,
+ "start": 5223.12,
+ "end": 5224.24,
+ "text": "we"
+ },
+ {
+ "id": 9603,
+ "start": 5224.24,
+ "end": 5224.58,
+ "text": "are"
+ },
+ {
+ "id": 9604,
+ "start": 5224.58,
+ "end": 5225.04,
+ "text": "working"
+ },
+ {
+ "id": 9605,
+ "start": 5225.04,
+ "end": 5225.16,
+ "text": "on"
+ },
+ {
+ "id": 9606,
+ "start": 5225.16,
+ "end": 5225.34,
+ "text": "that."
+ },
+ {
+ "id": 9607,
+ "start": 5225.34,
+ "end": 5225.64,
+ "text": "Now,"
+ },
+ {
+ "id": 9608,
+ "start": 5225.64,
+ "end": 5226.16,
+ "text": "what"
+ },
+ {
+ "id": 9609,
+ "start": 5226.16,
+ "end": 5226.32,
+ "text": "we're"
+ },
+ {
+ "id": 9610,
+ "start": 5226.32,
+ "end": 5226.6,
+ "text": "doing"
+ },
+ {
+ "id": 9611,
+ "start": 5226.6,
+ "end": 5226.92,
+ "text": "is"
+ },
+ {
+ "id": 9612,
+ "start": 5226.92,
+ "end": 5227.3,
+ "text": "we're"
+ },
+ {
+ "id": 9613,
+ "start": 5227.3,
+ "end": 5227.48,
+ "text": "going"
+ },
+ {
+ "id": 9614,
+ "start": 5227.48,
+ "end": 5227.72,
+ "text": "to"
+ },
+ {
+ "id": 9615,
+ "start": 5227.72,
+ "end": 5228.24,
+ "text": "verify"
+ },
+ {
+ "id": 9616,
+ "start": 5228.24,
+ "end": 5228.36,
+ "text": "the"
+ },
+ {
+ "id": 9617,
+ "start": 5228.36,
+ "end": 5228.86,
+ "text": "identity"
+ },
+ {
+ "id": 9618,
+ "start": 5228.86,
+ "end": 5229.42,
+ "text": "of"
+ },
+ {
+ "id": 9619,
+ "start": 5229.42,
+ "end": 5229.74,
+ "text": "any"
+ },
+ {
+ "id": 9620,
+ "start": 5229.74,
+ "end": 5230.38,
+ "text": "advertiser"
+ },
+ {
+ "id": 9621,
+ "start": 5230.38,
+ "end": 5230.62,
+ "text": "who's"
+ },
+ {
+ "id": 9622,
+ "start": 5230.62,
+ "end": 5230.88,
+ "text": "running"
+ },
+ {
+ "id": 9623,
+ "start": 5230.88,
+ "end": 5230.94,
+ "text": "a"
+ },
+ {
+ "id": 9624,
+ "start": 5230.94,
+ "end": 5231.48,
+ "text": "political"
+ },
+ {
+ "id": 9625,
+ "start": 5231.48,
+ "end": 5232.64,
+ "text": "or"
+ },
+ {
+ "id": 9626,
+ "start": 5232.64,
+ "end": 5233.06,
+ "text": "issue"
+ },
+ {
+ "id": 9627,
+ "start": 5233.06,
+ "end": 5233.6,
+ "text": "related"
+ },
+ {
+ "id": 9628,
+ "start": 5233.6,
+ "end": 5234.38,
+ "text": "ad,"
+ },
+ {
+ "id": 9629,
+ "start": 5234.38,
+ "end": 5235.16,
+ "text": "this"
+ },
+ {
+ "id": 9630,
+ "start": 5235.16,
+ "end": 5235.3,
+ "text": "is"
+ },
+ {
+ "id": 9631,
+ "start": 5235.3,
+ "end": 5235.74,
+ "text": "basically"
+ },
+ {
+ "id": 9632,
+ "start": 5235.74,
+ "end": 5235.96,
+ "text": "what"
+ },
+ {
+ "id": 9633,
+ "start": 5235.96,
+ "end": 5236.32,
+ "text": "the"
+ },
+ {
+ "id": 9634,
+ "start": 5236.32,
+ "end": 5236.62,
+ "text": "honest"
+ },
+ {
+ "id": 9635,
+ "start": 5236.62,
+ "end": 5236.88,
+ "text": "ads"
+ },
+ {
+ "id": 9636,
+ "start": 5236.88,
+ "end": 5237.16,
+ "text": "act"
+ },
+ {
+ "id": 9637,
+ "start": 5237.16,
+ "end": 5237.36,
+ "text": "is"
+ },
+ {
+ "id": 9638,
+ "start": 5237.36,
+ "end": 5238.04,
+ "text": "proposing"
+ },
+ {
+ "id": 9639,
+ "start": 5238.04,
+ "end": 5238.74,
+ "text": "and"
+ },
+ {
+ "id": 9640,
+ "start": 5238.74,
+ "end": 5238.94,
+ "text": "we're"
+ },
+ {
+ "id": 9641,
+ "start": 5238.94,
+ "end": 5239.3,
+ "text": "following"
+ },
+ {
+ "id": 9642,
+ "start": 5239.3,
+ "end": 5240.58,
+ "text": "that."
+ },
+ {
+ "id": 9643,
+ "start": 5240.58,
+ "end": 5241.52,
+ "text": "And"
+ },
+ {
+ "id": 9644,
+ "start": 5241.52,
+ "end": 5241.9,
+ "text": "we're"
+ },
+ {
+ "id": 9645,
+ "start": 5241.9,
+ "end": 5242.08,
+ "text": "also"
+ },
+ {
+ "id": 9646,
+ "start": 5242.08,
+ "end": 5242.26,
+ "text": "going"
+ },
+ {
+ "id": 9647,
+ "start": 5242.26,
+ "end": 5242.32,
+ "text": "to"
+ },
+ {
+ "id": 9648,
+ "start": 5242.32,
+ "end": 5242.38,
+ "text": "do"
+ },
+ {
+ "id": 9649,
+ "start": 5242.38,
+ "end": 5242.5,
+ "text": "that"
+ },
+ {
+ "id": 9650,
+ "start": 5242.5,
+ "end": 5242.62,
+ "text": "for"
+ },
+ {
+ "id": 9651,
+ "start": 5242.62,
+ "end": 5242.98,
+ "text": "pages."
+ },
+ {
+ "id": 9652,
+ "start": 5242.98,
+ "end": 5243.28,
+ "text": "Would"
+ },
+ {
+ "id": 9653,
+ "start": 5243.28,
+ "end": 5243.38,
+ "text": "you"
+ },
+ {
+ "id": 9654,
+ "start": 5243.38,
+ "end": 5243.52,
+ "text": "get"
+ },
+ {
+ "id": 9655,
+ "start": 5243.52,
+ "end": 5244.14,
+ "text": "on"
+ },
+ {
+ "id": 9656,
+ "start": 5244.14,
+ "end": 5244.42,
+ "text": "these"
+ },
+ {
+ "id": 9657,
+ "start": 5244.42,
+ "end": 5245.54,
+ "text": "I'm"
+ },
+ {
+ "id": 9658,
+ "start": 5245.54,
+ "end": 5245.7,
+ "text": "not"
+ },
+ {
+ "id": 9659,
+ "start": 5245.7,
+ "end": 5246.04,
+ "text": "familiar"
+ },
+ {
+ "id": 9660,
+ "start": 5246.04,
+ "end": 5246.2,
+ "text": "with"
+ },
+ {
+ "id": 9661,
+ "start": 5246.2,
+ "end": 5246.38,
+ "text": "those"
+ },
+ {
+ "id": 9662,
+ "start": 5246.38,
+ "end": 5246.82,
+ "text": "specific."
+ },
+ {
+ "id": 9663,
+ "start": 5246.82,
+ "end": 5247.3,
+ "text": "I"
+ },
+ {
+ "id": 9664,
+ "start": 5247.3,
+ "end": 5247.52,
+ "text": "will"
+ },
+ {
+ "id": 9665,
+ "start": 5247.52,
+ "end": 5247.72,
+ "text": "you"
+ },
+ {
+ "id": 9666,
+ "start": 5247.72,
+ "end": 5248.06,
+ "text": "find"
+ },
+ {
+ "id": 9667,
+ "start": 5248.06,
+ "end": 5248.26,
+ "text": "out"
+ },
+ {
+ "id": 9668,
+ "start": 5248.26,
+ "end": 5248.42,
+ "text": "the"
+ },
+ {
+ "id": 9669,
+ "start": 5248.42,
+ "end": 5248.72,
+ "text": "answer"
+ },
+ {
+ "id": 9670,
+ "start": 5248.72,
+ "end": 5248.88,
+ "text": "and"
+ },
+ {
+ "id": 9671,
+ "start": 5248.88,
+ "end": 5249.02,
+ "text": "get"
+ },
+ {
+ "id": 9672,
+ "start": 5249.02,
+ "end": 5249.28,
+ "text": "back"
+ },
+ {
+ "id": 9673,
+ "start": 5249.28,
+ "end": 5249.44,
+ "text": "to"
+ },
+ {
+ "id": 9674,
+ "start": 5249.44,
+ "end": 5249.62,
+ "text": "me."
+ },
+ {
+ "id": 9675,
+ "start": 5249.62,
+ "end": 5250.12,
+ "text": "I'll"
+ },
+ {
+ "id": 9676,
+ "start": 5250.12,
+ "end": 5250.26,
+ "text": "have"
+ },
+ {
+ "id": 9677,
+ "start": 5250.26,
+ "end": 5250.36,
+ "text": "my"
+ },
+ {
+ "id": 9678,
+ "start": 5250.36,
+ "end": 5250.54,
+ "text": "team"
+ },
+ {
+ "id": 9679,
+ "start": 5250.54,
+ "end": 5250.7,
+ "text": "get"
+ },
+ {
+ "id": 9680,
+ "start": 5250.7,
+ "end": 5250.86,
+ "text": "back"
+ },
+ {
+ "id": 9681,
+ "start": 5250.86,
+ "end": 5250.96,
+ "text": "to"
+ },
+ {
+ "id": 9682,
+ "start": 5250.96,
+ "end": 5251.66,
+ "text": "you?"
+ },
+ {
+ "id": 9683,
+ "start": 5251.66,
+ "end": 5251.82,
+ "text": "I"
+ },
+ {
+ "id": 9684,
+ "start": 5251.82,
+ "end": 5252.46,
+ "text": "do"
+ },
+ {
+ "id": 9685,
+ "start": 5252.46,
+ "end": 5252.66,
+ "text": "think"
+ },
+ {
+ "id": 9686,
+ "start": 5252.66,
+ "end": 5252.8,
+ "text": "it's"
+ },
+ {
+ "id": 9687,
+ "start": 5252.8,
+ "end": 5253.68,
+ "text": "worth"
+ },
+ {
+ "id": 9688,
+ "start": 5253.68,
+ "end": 5254.64,
+ "text": "adding,"
+ },
+ {
+ "id": 9689,
+ "start": 5254.64,
+ "end": 5254.84,
+ "text": "though."
+ },
+ {
+ "id": 9690,
+ "start": 5254.84,
+ "end": 5255.5,
+ "text": "That"
+ },
+ {
+ "id": 9691,
+ "start": 5255.5,
+ "end": 5256.4,
+ "text": "we're"
+ },
+ {
+ "id": 9692,
+ "start": 5256.4,
+ "end": 5256.6,
+ "text": "going"
+ },
+ {
+ "id": 9693,
+ "start": 5256.6,
+ "end": 5256.7,
+ "text": "to"
+ },
+ {
+ "id": 9694,
+ "start": 5256.7,
+ "end": 5256.8,
+ "text": "do"
+ },
+ {
+ "id": 9695,
+ "start": 5256.8,
+ "end": 5256.94,
+ "text": "the"
+ },
+ {
+ "id": 9696,
+ "start": 5256.94,
+ "end": 5257.24,
+ "text": "same"
+ },
+ {
+ "id": 9697,
+ "start": 5257.24,
+ "end": 5258,
+ "text": "verification"
+ },
+ {
+ "id": 9698,
+ "start": 5258,
+ "end": 5258.76,
+ "text": "of"
+ },
+ {
+ "id": 9699,
+ "start": 5258.76,
+ "end": 5259.04,
+ "text": "the"
+ },
+ {
+ "id": 9700,
+ "start": 5259.04,
+ "end": 5259.74,
+ "text": "identity"
+ },
+ {
+ "id": 9701,
+ "start": 5259.74,
+ "end": 5259.9,
+ "text": "and"
+ },
+ {
+ "id": 9702,
+ "start": 5259.9,
+ "end": 5260.48,
+ "text": "location"
+ },
+ {
+ "id": 9703,
+ "start": 5260.48,
+ "end": 5261,
+ "text": "of"
+ },
+ {
+ "id": 9704,
+ "start": 5261,
+ "end": 5261.48,
+ "text": "admins"
+ },
+ {
+ "id": 9705,
+ "start": 5261.48,
+ "end": 5261.62,
+ "text": "who"
+ },
+ {
+ "id": 9706,
+ "start": 5261.62,
+ "end": 5261.76,
+ "text": "are"
+ },
+ {
+ "id": 9707,
+ "start": 5261.76,
+ "end": 5262.08,
+ "text": "running"
+ },
+ {
+ "id": 9708,
+ "start": 5262.08,
+ "end": 5262.46,
+ "text": "large"
+ },
+ {
+ "id": 9709,
+ "start": 5262.46,
+ "end": 5262.9,
+ "text": "pages."
+ },
+ {
+ "id": 9710,
+ "start": 5262.9,
+ "end": 5263.34,
+ "text": "So"
+ },
+ {
+ "id": 9711,
+ "start": 5263.34,
+ "end": 5263.48,
+ "text": "that"
+ },
+ {
+ "id": 9712,
+ "start": 5263.48,
+ "end": 5263.66,
+ "text": "way,"
+ },
+ {
+ "id": 9713,
+ "start": 5263.66,
+ "end": 5263.88,
+ "text": "even"
+ },
+ {
+ "id": 9714,
+ "start": 5263.88,
+ "end": 5264,
+ "text": "if"
+ },
+ {
+ "id": 9715,
+ "start": 5264,
+ "end": 5264.26,
+ "text": "they"
+ },
+ {
+ "id": 9716,
+ "start": 5264.26,
+ "end": 5264.56,
+ "text": "aren't"
+ },
+ {
+ "id": 9717,
+ "start": 5264.56,
+ "end": 5264.76,
+ "text": "going"
+ },
+ {
+ "id": 9718,
+ "start": 5264.76,
+ "end": 5264.84,
+ "text": "to"
+ },
+ {
+ "id": 9719,
+ "start": 5264.84,
+ "end": 5264.92,
+ "text": "be"
+ },
+ {
+ "id": 9720,
+ "start": 5264.92,
+ "end": 5265.42,
+ "text": "buying"
+ },
+ {
+ "id": 9721,
+ "start": 5265.42,
+ "end": 5265.72,
+ "text": "ads"
+ },
+ {
+ "id": 9722,
+ "start": 5265.72,
+ "end": 5265.82,
+ "text": "in"
+ },
+ {
+ "id": 9723,
+ "start": 5265.82,
+ "end": 5266,
+ "text": "our"
+ },
+ {
+ "id": 9724,
+ "start": 5266,
+ "end": 5266.8,
+ "text": "system."
+ },
+ {
+ "id": 9725,
+ "start": 5266.8,
+ "end": 5267.38,
+ "text": "That"
+ },
+ {
+ "id": 9726,
+ "start": 5267.38,
+ "end": 5267.58,
+ "text": "will"
+ },
+ {
+ "id": 9727,
+ "start": 5267.58,
+ "end": 5267.74,
+ "text": "make"
+ },
+ {
+ "id": 9728,
+ "start": 5267.74,
+ "end": 5267.84,
+ "text": "it"
+ },
+ {
+ "id": 9729,
+ "start": 5267.84,
+ "end": 5268.48,
+ "text": "significantly"
+ },
+ {
+ "id": 9730,
+ "start": 5268.48,
+ "end": 5268.82,
+ "text": "harder"
+ },
+ {
+ "id": 9731,
+ "start": 5268.82,
+ "end": 5269.38,
+ "text": "for"
+ },
+ {
+ "id": 9732,
+ "start": 5269.38,
+ "end": 5270.66,
+ "text": "Russian"
+ },
+ {
+ "id": 9733,
+ "start": 5270.66,
+ "end": 5271.62,
+ "text": "interference,"
+ },
+ {
+ "id": 9734,
+ "start": 5271.62,
+ "end": 5272,
+ "text": "efforts"
+ },
+ {
+ "id": 9735,
+ "start": 5272,
+ "end": 5272.24,
+ "text": "or"
+ },
+ {
+ "id": 9736,
+ "start": 5272.24,
+ "end": 5272.62,
+ "text": "other"
+ },
+ {
+ "id": 9737,
+ "start": 5272.62,
+ "end": 5272.74,
+ "text": "in"
+ },
+ {
+ "id": 9738,
+ "start": 5272.74,
+ "end": 5273.2,
+ "text": "authentic"
+ },
+ {
+ "id": 9739,
+ "start": 5273.2,
+ "end": 5273.54,
+ "text": "efforts"
+ },
+ {
+ "id": 9740,
+ "start": 5273.54,
+ "end": 5274.36,
+ "text": "to"
+ },
+ {
+ "id": 9741,
+ "start": 5274.36,
+ "end": 5274.5,
+ "text": "try"
+ },
+ {
+ "id": 9742,
+ "start": 5274.5,
+ "end": 5274.58,
+ "text": "to"
+ },
+ {
+ "id": 9743,
+ "start": 5274.58,
+ "end": 5274.8,
+ "text": "spread"
+ },
+ {
+ "id": 9744,
+ "start": 5274.8,
+ "end": 5275.42,
+ "text": "misinformation"
+ },
+ {
+ "id": 9745,
+ "start": 5275.42,
+ "end": 5275.66,
+ "text": "through"
+ },
+ {
+ "id": 9746,
+ "start": 5275.66,
+ "end": 5275.76,
+ "text": "the"
+ },
+ {
+ "id": 9747,
+ "start": 5275.76,
+ "end": 5276.04,
+ "text": "network"
+ },
+ {
+ "id": 9748,
+ "start": 5276.04,
+ "end": 5276.84,
+ "text": "surprise"
+ },
+ {
+ "id": 9749,
+ "start": 5276.84,
+ "end": 5277,
+ "text": "it's"
+ },
+ {
+ "id": 9750,
+ "start": 5277,
+ "end": 5277.16,
+ "text": "been"
+ },
+ {
+ "id": 9751,
+ "start": 5277.16,
+ "end": 5277.36,
+ "text": "going"
+ },
+ {
+ "id": 9752,
+ "start": 5277.36,
+ "end": 5277.56,
+ "text": "on"
+ },
+ {
+ "id": 9753,
+ "start": 5277.56,
+ "end": 5277.74,
+ "text": "for"
+ },
+ {
+ "id": 9754,
+ "start": 5277.74,
+ "end": 5278.09,
+ "text": "some"
+ },
+ {
+ "id": 9755,
+ "start": 5278.09,
+ "end": 5278.65,
+ "text": "some"
+ },
+ {
+ "id": 9756,
+ "start": 5278.65,
+ "end": 5278.87,
+ "text": "might"
+ },
+ {
+ "id": 9757,
+ "start": 5278.87,
+ "end": 5279.05,
+ "text": "say"
+ },
+ {
+ "id": 9758,
+ "start": 5279.05,
+ "end": 5279.27,
+ "text": "that's"
+ },
+ {
+ "id": 9759,
+ "start": 5279.27,
+ "end": 5279.55,
+ "text": "about"
+ },
+ {
+ "id": 9760,
+ "start": 5279.55,
+ "end": 5279.87,
+ "text": "time"
+ },
+ {
+ "id": 9761,
+ "start": 5279.87,
+ "end": 5280.73,
+ "text": "six"
+ },
+ {
+ "id": 9762,
+ "start": 5280.73,
+ "end": 5280.97,
+ "text": "months"
+ },
+ {
+ "id": 9763,
+ "start": 5280.97,
+ "end": 5281.15,
+ "text": "ago."
+ },
+ {
+ "id": 9764,
+ "start": 5281.15,
+ "end": 5281.31,
+ "text": "I"
+ },
+ {
+ "id": 9765,
+ "start": 5281.31,
+ "end": 5281.53,
+ "text": "asked"
+ },
+ {
+ "id": 9766,
+ "start": 5281.53,
+ "end": 5281.69,
+ "text": "you"
+ },
+ {
+ "id": 9767,
+ "start": 5281.69,
+ "end": 5282.05,
+ "text": "general"
+ },
+ {
+ "id": 9768,
+ "start": 5282.05,
+ "end": 5282.41,
+ "text": "counsel"
+ },
+ {
+ "id": 9769,
+ "start": 5282.41,
+ "end": 5282.75,
+ "text": "about"
+ },
+ {
+ "id": 9770,
+ "start": 5282.75,
+ "end": 5283.89,
+ "text": "Facebook's"
+ },
+ {
+ "id": 9771,
+ "start": 5283.89,
+ "end": 5284.35,
+ "text": "roles,"
+ },
+ {
+ "id": 9772,
+ "start": 5284.35,
+ "end": 5284.49,
+ "text": "a"
+ },
+ {
+ "id": 9773,
+ "start": 5284.49,
+ "end": 5284.85,
+ "text": "breeding"
+ },
+ {
+ "id": 9774,
+ "start": 5284.85,
+ "end": 5285.21,
+ "text": "ground"
+ },
+ {
+ "id": 9775,
+ "start": 5285.21,
+ "end": 5285.39,
+ "text": "for"
+ },
+ {
+ "id": 9776,
+ "start": 5285.39,
+ "end": 5285.75,
+ "text": "hate"
+ },
+ {
+ "id": 9777,
+ "start": 5285.75,
+ "end": 5286.13,
+ "text": "speech"
+ },
+ {
+ "id": 9778,
+ "start": 5286.13,
+ "end": 5287.13,
+ "text": "against"
+ },
+ {
+ "id": 9779,
+ "start": 5287.13,
+ "end": 5288.17,
+ "text": "in"
+ },
+ {
+ "id": 9780,
+ "start": 5288.17,
+ "end": 5289.38,
+ "text": "refugees."
+ },
+ {
+ "id": 9781,
+ "start": 5289.38,
+ "end": 5290.48,
+ "text": "Recently"
+ },
+ {
+ "id": 9782,
+ "start": 5290.48,
+ "end": 5290.94,
+ "text": "UN"
+ },
+ {
+ "id": 9783,
+ "start": 5290.94,
+ "end": 5291.72,
+ "text": "investigators"
+ },
+ {
+ "id": 9784,
+ "start": 5291.72,
+ "end": 5292.28,
+ "text": "blamed"
+ },
+ {
+ "id": 9785,
+ "start": 5292.28,
+ "end": 5293.6,
+ "text": "Facebook"
+ },
+ {
+ "id": 9786,
+ "start": 5293.6,
+ "end": 5294.58,
+ "text": "for"
+ },
+ {
+ "id": 9787,
+ "start": 5294.58,
+ "end": 5294.92,
+ "text": "playing"
+ },
+ {
+ "id": 9788,
+ "start": 5294.92,
+ "end": 5294.98,
+ "text": "a"
+ },
+ {
+ "id": 9789,
+ "start": 5294.98,
+ "end": 5295.24,
+ "text": "role"
+ },
+ {
+ "id": 9790,
+ "start": 5295.24,
+ "end": 5295.4,
+ "text": "in"
+ },
+ {
+ "id": 9791,
+ "start": 5295.4,
+ "end": 5295.78,
+ "text": "citing"
+ },
+ {
+ "id": 9792,
+ "start": 5295.78,
+ "end": 5296.3,
+ "text": "possible"
+ },
+ {
+ "id": 9793,
+ "start": 5296.3,
+ "end": 5297.06,
+ "text": "genocide."
+ },
+ {
+ "id": 9794,
+ "start": 5297.06,
+ "end": 5298.22,
+ "text": "Emma"
+ },
+ {
+ "id": 9795,
+ "start": 5298.22,
+ "end": 5298.42,
+ "text": "and"
+ },
+ {
+ "id": 9796,
+ "start": 5298.42,
+ "end": 5298.8,
+ "text": "has"
+ },
+ {
+ "id": 9797,
+ "start": 5298.8,
+ "end": 5299,
+ "text": "been"
+ },
+ {
+ "id": 9798,
+ "start": 5299,
+ "end": 5299.66,
+ "text": "genocide"
+ },
+ {
+ "id": 9799,
+ "start": 5299.66,
+ "end": 5300.59,
+ "text": "there."
+ },
+ {
+ "id": 9800,
+ "start": 5300.59,
+ "end": 5301.21,
+ "text": "You"
+ },
+ {
+ "id": 9801,
+ "start": 5301.21,
+ "end": 5301.37,
+ "text": "say"
+ },
+ {
+ "id": 9802,
+ "start": 5301.37,
+ "end": 5301.51,
+ "text": "you"
+ },
+ {
+ "id": 9803,
+ "start": 5301.51,
+ "end": 5301.81,
+ "text": "use"
+ },
+ {
+ "id": 9804,
+ "start": 5301.81,
+ "end": 5302.89,
+ "text": "AI"
+ },
+ {
+ "id": 9805,
+ "start": 5302.89,
+ "end": 5303.15,
+ "text": "to"
+ },
+ {
+ "id": 9806,
+ "start": 5303.15,
+ "end": 5303.53,
+ "text": "find"
+ },
+ {
+ "id": 9807,
+ "start": 5303.53,
+ "end": 5303.77,
+ "text": "this."
+ },
+ {
+ "id": 9808,
+ "start": 5303.77,
+ "end": 5304.83,
+ "text": "This"
+ },
+ {
+ "id": 9809,
+ "start": 5304.83,
+ "end": 5304.99,
+ "text": "is"
+ },
+ {
+ "id": 9810,
+ "start": 5304.99,
+ "end": 5305.09,
+ "text": "a"
+ },
+ {
+ "id": 9811,
+ "start": 5305.09,
+ "end": 5305.41,
+ "text": "type"
+ },
+ {
+ "id": 9812,
+ "start": 5305.41,
+ "end": 5305.69,
+ "text": "of"
+ },
+ {
+ "id": 9813,
+ "start": 5305.69,
+ "end": 5306.85,
+ "text": "content"
+ },
+ {
+ "id": 9814,
+ "start": 5306.85,
+ "end": 5307.31,
+ "text": "referring"
+ },
+ {
+ "id": 9815,
+ "start": 5307.31,
+ "end": 5307.41,
+ "text": "to"
+ },
+ {
+ "id": 9816,
+ "start": 5307.41,
+ "end": 5308.15,
+ "text": "it."
+ },
+ {
+ "id": 9817,
+ "start": 5308.15,
+ "end": 5308.53,
+ "text": "Calls"
+ },
+ {
+ "id": 9818,
+ "start": 5308.53,
+ "end": 5308.73,
+ "text": "for"
+ },
+ {
+ "id": 9819,
+ "start": 5308.73,
+ "end": 5308.87,
+ "text": "the"
+ },
+ {
+ "id": 9820,
+ "start": 5308.87,
+ "end": 5309.23,
+ "text": "death"
+ },
+ {
+ "id": 9821,
+ "start": 5309.23,
+ "end": 5309.65,
+ "text": "of"
+ },
+ {
+ "id": 9822,
+ "start": 5309.65,
+ "end": 5309.75,
+ "text": "a"
+ },
+ {
+ "id": 9823,
+ "start": 5309.75,
+ "end": 5310.25,
+ "text": "Muslim"
+ },
+ {
+ "id": 9824,
+ "start": 5310.25,
+ "end": 5311.8,
+ "text": "journalists"
+ },
+ {
+ "id": 9825,
+ "start": 5311.8,
+ "end": 5312.86,
+ "text": "that"
+ },
+ {
+ "id": 9826,
+ "start": 5312.86,
+ "end": 5313.48,
+ "text": "threat"
+ },
+ {
+ "id": 9827,
+ "start": 5313.48,
+ "end": 5313.78,
+ "text": "went"
+ },
+ {
+ "id": 9828,
+ "start": 5313.78,
+ "end": 5314.22,
+ "text": "straight"
+ },
+ {
+ "id": 9829,
+ "start": 5314.22,
+ "end": 5314.52,
+ "text": "through"
+ },
+ {
+ "id": 9830,
+ "start": 5314.52,
+ "end": 5314.8,
+ "text": "your"
+ },
+ {
+ "id": 9831,
+ "start": 5314.8,
+ "end": 5315.38,
+ "text": "detection"
+ },
+ {
+ "id": 9832,
+ "start": 5315.38,
+ "end": 5315.88,
+ "text": "systems,"
+ },
+ {
+ "id": 9833,
+ "start": 5315.88,
+ "end": 5316.5,
+ "text": "I"
+ },
+ {
+ "id": 9834,
+ "start": 5316.5,
+ "end": 5316.84,
+ "text": "spread"
+ },
+ {
+ "id": 9835,
+ "start": 5316.84,
+ "end": 5317.2,
+ "text": "very"
+ },
+ {
+ "id": 9836,
+ "start": 5317.2,
+ "end": 5317.86,
+ "text": "quickly"
+ },
+ {
+ "id": 9837,
+ "start": 5317.86,
+ "end": 5318.86,
+ "text": "and"
+ },
+ {
+ "id": 9838,
+ "start": 5318.86,
+ "end": 5319.32,
+ "text": "then"
+ },
+ {
+ "id": 9839,
+ "start": 5319.32,
+ "end": 5319.58,
+ "text": "it"
+ },
+ {
+ "id": 9840,
+ "start": 5319.58,
+ "end": 5319.86,
+ "text": "took"
+ },
+ {
+ "id": 9841,
+ "start": 5319.86,
+ "end": 5320.44,
+ "text": "attempt"
+ },
+ {
+ "id": 9842,
+ "start": 5320.44,
+ "end": 5320.76,
+ "text": "after"
+ },
+ {
+ "id": 9843,
+ "start": 5320.76,
+ "end": 5321.14,
+ "text": "attempt"
+ },
+ {
+ "id": 9844,
+ "start": 5321.14,
+ "end": 5321.46,
+ "text": "after"
+ },
+ {
+ "id": 9845,
+ "start": 5321.46,
+ "end": 5321.96,
+ "text": "attempt"
+ },
+ {
+ "id": 9846,
+ "start": 5321.96,
+ "end": 5322.86,
+ "text": "and"
+ },
+ {
+ "id": 9847,
+ "start": 5322.86,
+ "end": 5322.98,
+ "text": "the"
+ },
+ {
+ "id": 9848,
+ "start": 5322.98,
+ "end": 5323.6,
+ "text": "involvement"
+ },
+ {
+ "id": 9849,
+ "start": 5323.6,
+ "end": 5323.96,
+ "text": "of"
+ },
+ {
+ "id": 9850,
+ "start": 5323.96,
+ "end": 5324.34,
+ "text": "civil"
+ },
+ {
+ "id": 9851,
+ "start": 5324.34,
+ "end": 5324.98,
+ "text": "society"
+ },
+ {
+ "id": 9852,
+ "start": 5324.98,
+ "end": 5325.3,
+ "text": "groups"
+ },
+ {
+ "id": 9853,
+ "start": 5325.3,
+ "end": 5326.08,
+ "text": "to"
+ },
+ {
+ "id": 9854,
+ "start": 5326.08,
+ "end": 5326.26,
+ "text": "get"
+ },
+ {
+ "id": 9855,
+ "start": 5326.26,
+ "end": 5326.44,
+ "text": "you"
+ },
+ {
+ "id": 9856,
+ "start": 5326.44,
+ "end": 5326.6,
+ "text": "to"
+ },
+ {
+ "id": 9857,
+ "start": 5326.6,
+ "end": 5327.26,
+ "text": "remove"
+ },
+ {
+ "id": 9858,
+ "start": 5327.26,
+ "end": 5329.86,
+ "text": "it."
+ },
+ {
+ "id": 9859,
+ "start": 5329.86,
+ "end": 5330.82,
+ "text": "Why"
+ },
+ {
+ "id": 9860,
+ "start": 5330.82,
+ "end": 5331.12,
+ "text": "couldn't"
+ },
+ {
+ "id": 9861,
+ "start": 5331.12,
+ "end": 5331.24,
+ "text": "it"
+ },
+ {
+ "id": 9862,
+ "start": 5331.24,
+ "end": 5331.36,
+ "text": "be"
+ },
+ {
+ "id": 9863,
+ "start": 5331.36,
+ "end": 5331.72,
+ "text": "removed"
+ },
+ {
+ "id": 9864,
+ "start": 5331.72,
+ "end": 5332.04,
+ "text": "within"
+ },
+ {
+ "id": 9865,
+ "start": 5332.04,
+ "end": 5332.48,
+ "text": "24"
+ },
+ {
+ "id": 9866,
+ "start": 5332.48,
+ "end": 5333.72,
+ "text": "hours."
+ },
+ {
+ "id": 9867,
+ "start": 5333.72,
+ "end": 5334.72,
+ "text": "Senator"
+ },
+ {
+ "id": 9868,
+ "start": 5334.72,
+ "end": 5335.26,
+ "text": "what's"
+ },
+ {
+ "id": 9869,
+ "start": 5335.26,
+ "end": 5335.58,
+ "text": "happening"
+ },
+ {
+ "id": 9870,
+ "start": 5335.58,
+ "end": 5335.68,
+ "text": "in"
+ },
+ {
+ "id": 9871,
+ "start": 5335.68,
+ "end": 5336.28,
+ "text": "Myanmar"
+ },
+ {
+ "id": 9872,
+ "start": 5336.28,
+ "end": 5336.46,
+ "text": "is"
+ },
+ {
+ "id": 9873,
+ "start": 5336.46,
+ "end": 5336.56,
+ "text": "a"
+ },
+ {
+ "id": 9874,
+ "start": 5336.56,
+ "end": 5337.12,
+ "text": "terrible"
+ },
+ {
+ "id": 9875,
+ "start": 5337.12,
+ "end": 5337.64,
+ "text": "tragedy."
+ },
+ {
+ "id": 9876,
+ "start": 5337.64,
+ "end": 5338.3,
+ "text": "And"
+ },
+ {
+ "id": 9877,
+ "start": 5338.3,
+ "end": 5338.42,
+ "text": "we"
+ },
+ {
+ "id": 9878,
+ "start": 5338.42,
+ "end": 5338.62,
+ "text": "need"
+ },
+ {
+ "id": 9879,
+ "start": 5338.62,
+ "end": 5338.72,
+ "text": "to"
+ },
+ {
+ "id": 9880,
+ "start": 5338.72,
+ "end": 5338.88,
+ "text": "do"
+ },
+ {
+ "id": 9881,
+ "start": 5338.88,
+ "end": 5339.2,
+ "text": "more."
+ },
+ {
+ "id": 9882,
+ "start": 5339.2,
+ "end": 5339.38,
+ "text": "We"
+ },
+ {
+ "id": 9883,
+ "start": 5339.38,
+ "end": 5339.58,
+ "text": "all"
+ },
+ {
+ "id": 9884,
+ "start": 5339.58,
+ "end": 5339.86,
+ "text": "agree"
+ },
+ {
+ "id": 9885,
+ "start": 5339.86,
+ "end": 5340.02,
+ "text": "with"
+ },
+ {
+ "id": 9886,
+ "start": 5340.02,
+ "end": 5340.28,
+ "text": "that."
+ },
+ {
+ "id": 9887,
+ "start": 5340.28,
+ "end": 5340.7,
+ "text": "Okay?"
+ },
+ {
+ "id": 9888,
+ "start": 5340.7,
+ "end": 5342.12,
+ "text": "But"
+ },
+ {
+ "id": 9889,
+ "start": 5342.12,
+ "end": 5342.98,
+ "text": "you"
+ },
+ {
+ "id": 9890,
+ "start": 5342.98,
+ "end": 5343.16,
+ "text": "and"
+ },
+ {
+ "id": 9891,
+ "start": 5343.16,
+ "end": 5344.06,
+ "text": "investigators"
+ },
+ {
+ "id": 9892,
+ "start": 5344.06,
+ "end": 5344.36,
+ "text": "have"
+ },
+ {
+ "id": 9893,
+ "start": 5344.36,
+ "end": 5345.2,
+ "text": "blamed"
+ },
+ {
+ "id": 9894,
+ "start": 5345.2,
+ "end": 5346.46,
+ "text": "you"
+ },
+ {
+ "id": 9895,
+ "start": 5346.46,
+ "end": 5346.86,
+ "text": "blame"
+ },
+ {
+ "id": 9896,
+ "start": 5346.86,
+ "end": 5347.4,
+ "text": "Facebook"
+ },
+ {
+ "id": 9897,
+ "start": 5347.4,
+ "end": 5348.14,
+ "text": "we're"
+ },
+ {
+ "id": 9898,
+ "start": 5348.14,
+ "end": 5348.44,
+ "text": "playing"
+ },
+ {
+ "id": 9899,
+ "start": 5348.44,
+ "end": 5348.54,
+ "text": "a"
+ },
+ {
+ "id": 9900,
+ "start": 5348.54,
+ "end": 5348.78,
+ "text": "role"
+ },
+ {
+ "id": 9901,
+ "start": 5348.78,
+ "end": 5348.84,
+ "text": "in"
+ },
+ {
+ "id": 9902,
+ "start": 5348.84,
+ "end": 5349.06,
+ "text": "the"
+ },
+ {
+ "id": 9903,
+ "start": 5349.06,
+ "end": 5349.56,
+ "text": "genocide."
+ },
+ {
+ "id": 9904,
+ "start": 5349.56,
+ "end": 5349.86,
+ "text": "We"
+ },
+ {
+ "id": 9905,
+ "start": 5349.86,
+ "end": 5350.02,
+ "text": "all"
+ },
+ {
+ "id": 9906,
+ "start": 5350.02,
+ "end": 5350.26,
+ "text": "agree"
+ },
+ {
+ "id": 9907,
+ "start": 5350.26,
+ "end": 5350.38,
+ "text": "is"
+ },
+ {
+ "id": 9908,
+ "start": 5350.38,
+ "end": 5352.18,
+ "text": "terrible."
+ },
+ {
+ "id": 9909,
+ "start": 5352.18,
+ "end": 5353.16,
+ "text": "How"
+ },
+ {
+ "id": 9910,
+ "start": 5353.16,
+ "end": 5353.4,
+ "text": "can"
+ },
+ {
+ "id": 9911,
+ "start": 5353.4,
+ "end": 5353.56,
+ "text": "you"
+ },
+ {
+ "id": 9912,
+ "start": 5353.56,
+ "end": 5354.12,
+ "text": "dedicate"
+ },
+ {
+ "id": 9913,
+ "start": 5354.12,
+ "end": 5354.3,
+ "text": "the?"
+ },
+ {
+ "id": 9914,
+ "start": 5354.3,
+ "end": 5354.48,
+ "text": "Will"
+ },
+ {
+ "id": 9915,
+ "start": 5354.48,
+ "end": 5354.62,
+ "text": "you"
+ },
+ {
+ "id": 9916,
+ "start": 5354.62,
+ "end": 5356.16,
+ "text": "dedicate"
+ },
+ {
+ "id": 9917,
+ "start": 5356.16,
+ "end": 5357.14,
+ "text": "resources"
+ },
+ {
+ "id": 9918,
+ "start": 5357.14,
+ "end": 5357.36,
+ "text": "make"
+ },
+ {
+ "id": 9919,
+ "start": 5357.36,
+ "end": 5358.1,
+ "text": "sure"
+ },
+ {
+ "id": 9920,
+ "start": 5358.1,
+ "end": 5358.44,
+ "text": "such"
+ },
+ {
+ "id": 9921,
+ "start": 5358.44,
+ "end": 5358.74,
+ "text": "hate"
+ },
+ {
+ "id": 9922,
+ "start": 5358.74,
+ "end": 5359.04,
+ "text": "speech"
+ },
+ {
+ "id": 9923,
+ "start": 5359.04,
+ "end": 5359.2,
+ "text": "is"
+ },
+ {
+ "id": 9924,
+ "start": 5359.2,
+ "end": 5359.48,
+ "text": "taken"
+ },
+ {
+ "id": 9925,
+ "start": 5359.48,
+ "end": 5359.66,
+ "text": "down"
+ },
+ {
+ "id": 9926,
+ "start": 5359.66,
+ "end": 5359.96,
+ "text": "within"
+ },
+ {
+ "id": 9927,
+ "start": 5359.96,
+ "end": 5361.34,
+ "text": "24"
+ },
+ {
+ "id": 9928,
+ "start": 5361.34,
+ "end": 5362.26,
+ "text": "Yes"
+ },
+ {
+ "id": 9929,
+ "start": 5362.26,
+ "end": 5362.56,
+ "text": "we're"
+ },
+ {
+ "id": 9930,
+ "start": 5362.56,
+ "end": 5362.84,
+ "text": "working"
+ },
+ {
+ "id": 9931,
+ "start": 5362.84,
+ "end": 5362.96,
+ "text": "on"
+ },
+ {
+ "id": 9932,
+ "start": 5362.96,
+ "end": 5363.12,
+ "text": "this."
+ },
+ {
+ "id": 9933,
+ "start": 5363.12,
+ "end": 5363.66,
+ "text": "And"
+ },
+ {
+ "id": 9934,
+ "start": 5363.66,
+ "end": 5363.92,
+ "text": "there"
+ },
+ {
+ "id": 9935,
+ "start": 5363.92,
+ "end": 5364.04,
+ "text": "are"
+ },
+ {
+ "id": 9936,
+ "start": 5364.04,
+ "end": 5364.32,
+ "text": "three"
+ },
+ {
+ "id": 9937,
+ "start": 5364.32,
+ "end": 5364.88,
+ "text": "specific"
+ },
+ {
+ "id": 9938,
+ "start": 5364.88,
+ "end": 5365.22,
+ "text": "things"
+ },
+ {
+ "id": 9939,
+ "start": 5365.22,
+ "end": 5365.42,
+ "text": "that"
+ },
+ {
+ "id": 9940,
+ "start": 5365.42,
+ "end": 5365.6,
+ "text": "we're"
+ },
+ {
+ "id": 9941,
+ "start": 5365.6,
+ "end": 5365.86,
+ "text": "doing."
+ },
+ {
+ "id": 9942,
+ "start": 5365.86,
+ "end": 5366.66,
+ "text": "One"
+ },
+ {
+ "id": 9943,
+ "start": 5366.66,
+ "end": 5367.02,
+ "text": "is"
+ },
+ {
+ "id": 9944,
+ "start": 5367.02,
+ "end": 5367.24,
+ "text": "we're"
+ },
+ {
+ "id": 9945,
+ "start": 5367.24,
+ "end": 5367.68,
+ "text": "hiring"
+ },
+ {
+ "id": 9946,
+ "start": 5367.68,
+ "end": 5368.14,
+ "text": "dozens"
+ },
+ {
+ "id": 9947,
+ "start": 5368.14,
+ "end": 5368.28,
+ "text": "of"
+ },
+ {
+ "id": 9948,
+ "start": 5368.28,
+ "end": 5368.54,
+ "text": "more"
+ },
+ {
+ "id": 9949,
+ "start": 5368.54,
+ "end": 5369.08,
+ "text": "Burmese"
+ },
+ {
+ "id": 9950,
+ "start": 5369.08,
+ "end": 5369.58,
+ "text": "language"
+ },
+ {
+ "id": 9951,
+ "start": 5369.58,
+ "end": 5370.6,
+ "text": "content"
+ },
+ {
+ "id": 9952,
+ "start": 5370.6,
+ "end": 5371.06,
+ "text": "reviewers,"
+ },
+ {
+ "id": 9953,
+ "start": 5371.06,
+ "end": 5371.72,
+ "text": "because"
+ },
+ {
+ "id": 9954,
+ "start": 5371.72,
+ "end": 5372.44,
+ "text": "hate"
+ },
+ {
+ "id": 9955,
+ "start": 5372.44,
+ "end": 5372.72,
+ "text": "speech"
+ },
+ {
+ "id": 9956,
+ "start": 5372.72,
+ "end": 5372.84,
+ "text": "is"
+ },
+ {
+ "id": 9957,
+ "start": 5372.84,
+ "end": 5373.1,
+ "text": "very"
+ },
+ {
+ "id": 9958,
+ "start": 5373.1,
+ "end": 5373.46,
+ "text": "language."
+ },
+ {
+ "id": 9959,
+ "start": 5373.46,
+ "end": 5374.42,
+ "text": "Specific"
+ },
+ {
+ "id": 9960,
+ "start": 5374.42,
+ "end": 5374.68,
+ "text": "had"
+ },
+ {
+ "id": 9961,
+ "start": 5374.68,
+ "end": 5374.76,
+ "text": "to"
+ },
+ {
+ "id": 9962,
+ "start": 5374.76,
+ "end": 5374.88,
+ "text": "do"
+ },
+ {
+ "id": 9963,
+ "start": 5374.88,
+ "end": 5375,
+ "text": "it"
+ },
+ {
+ "id": 9964,
+ "start": 5375,
+ "end": 5375.38,
+ "text": "without"
+ },
+ {
+ "id": 9965,
+ "start": 5375.38,
+ "end": 5375.62,
+ "text": "people"
+ },
+ {
+ "id": 9966,
+ "start": 5375.62,
+ "end": 5375.72,
+ "text": "who"
+ },
+ {
+ "id": 9967,
+ "start": 5375.72,
+ "end": 5375.98,
+ "text": "speak"
+ },
+ {
+ "id": 9968,
+ "start": 5375.98,
+ "end": 5376.1,
+ "text": "the"
+ },
+ {
+ "id": 9969,
+ "start": 5376.1,
+ "end": 5376.34,
+ "text": "local"
+ },
+ {
+ "id": 9970,
+ "start": 5376.34,
+ "end": 5376.72,
+ "text": "language."
+ },
+ {
+ "id": 9971,
+ "start": 5376.72,
+ "end": 5377.2,
+ "text": "And"
+ },
+ {
+ "id": 9972,
+ "start": 5377.2,
+ "end": 5377.32,
+ "text": "we"
+ },
+ {
+ "id": 9973,
+ "start": 5377.32,
+ "end": 5377.5,
+ "text": "need"
+ },
+ {
+ "id": 9974,
+ "start": 5377.5,
+ "end": 5377.58,
+ "text": "to"
+ },
+ {
+ "id": 9975,
+ "start": 5377.58,
+ "end": 5377.84,
+ "text": "ramp"
+ },
+ {
+ "id": 9976,
+ "start": 5377.84,
+ "end": 5377.96,
+ "text": "up"
+ },
+ {
+ "id": 9977,
+ "start": 5377.96,
+ "end": 5378.12,
+ "text": "our"
+ },
+ {
+ "id": 9978,
+ "start": 5378.12,
+ "end": 5378.38,
+ "text": "effort"
+ },
+ {
+ "id": 9979,
+ "start": 5378.38,
+ "end": 5378.62,
+ "text": "there"
+ },
+ {
+ "id": 9980,
+ "start": 5378.62,
+ "end": 5379.16,
+ "text": "dramatically,"
+ },
+ {
+ "id": 9981,
+ "start": 5379.16,
+ "end": 5380.04,
+ "text": "second"
+ },
+ {
+ "id": 9982,
+ "start": 5380.04,
+ "end": 5380.16,
+ "text": "is"
+ },
+ {
+ "id": 9983,
+ "start": 5380.16,
+ "end": 5380.34,
+ "text": "we're"
+ },
+ {
+ "id": 9984,
+ "start": 5380.34,
+ "end": 5380.6,
+ "text": "working"
+ },
+ {
+ "id": 9985,
+ "start": 5380.6,
+ "end": 5380.74,
+ "text": "with"
+ },
+ {
+ "id": 9986,
+ "start": 5380.74,
+ "end": 5381.08,
+ "text": "civil"
+ },
+ {
+ "id": 9987,
+ "start": 5381.08,
+ "end": 5381.68,
+ "text": "society"
+ },
+ {
+ "id": 9988,
+ "start": 5381.68,
+ "end": 5382.2,
+ "text": "in"
+ },
+ {
+ "id": 9989,
+ "start": 5382.2,
+ "end": 5382.72,
+ "text": "Myanmar"
+ },
+ {
+ "id": 9990,
+ "start": 5382.72,
+ "end": 5383.24,
+ "text": "to"
+ },
+ {
+ "id": 9991,
+ "start": 5383.24,
+ "end": 5383.9,
+ "text": "identify"
+ },
+ {
+ "id": 9992,
+ "start": 5383.9,
+ "end": 5384.78,
+ "text": "specific"
+ },
+ {
+ "id": 9993,
+ "start": 5384.78,
+ "end": 5385.04,
+ "text": "hate"
+ },
+ {
+ "id": 9994,
+ "start": 5385.04,
+ "end": 5385.54,
+ "text": "figures."
+ },
+ {
+ "id": 9995,
+ "start": 5385.54,
+ "end": 5385.84,
+ "text": "So"
+ },
+ {
+ "id": 9996,
+ "start": 5385.84,
+ "end": 5385.96,
+ "text": "we"
+ },
+ {
+ "id": 9997,
+ "start": 5385.96,
+ "end": 5386.1,
+ "text": "can"
+ },
+ {
+ "id": 9998,
+ "start": 5386.1,
+ "end": 5386.3,
+ "text": "take"
+ },
+ {
+ "id": 9999,
+ "start": 5386.3,
+ "end": 5386.5,
+ "text": "down"
+ },
+ {
+ "id": 10000,
+ "start": 5386.5,
+ "end": 5386.7,
+ "text": "their"
+ },
+ {
+ "id": 10001,
+ "start": 5386.7,
+ "end": 5387.5,
+ "text": "accounts"
+ },
+ {
+ "id": 10002,
+ "start": 5387.5,
+ "end": 5388.14,
+ "text": "rather"
+ },
+ {
+ "id": 10003,
+ "start": 5388.14,
+ "end": 5388.34,
+ "text": "than"
+ },
+ {
+ "id": 10004,
+ "start": 5388.34,
+ "end": 5388.9,
+ "text": "specific"
+ },
+ {
+ "id": 10005,
+ "start": 5388.9,
+ "end": 5389.18,
+ "text": "pieces"
+ },
+ {
+ "id": 10006,
+ "start": 5389.18,
+ "end": 5389.3,
+ "text": "of"
+ },
+ {
+ "id": 10007,
+ "start": 5389.3,
+ "end": 5389.68,
+ "text": "content"
+ },
+ {
+ "id": 10008,
+ "start": 5389.68,
+ "end": 5390.22,
+ "text": "and"
+ },
+ {
+ "id": 10009,
+ "start": 5390.22,
+ "end": 5390.64,
+ "text": "third"
+ },
+ {
+ "id": 10010,
+ "start": 5390.64,
+ "end": 5391.12,
+ "text": "is"
+ },
+ {
+ "id": 10011,
+ "start": 5391.12,
+ "end": 5391.22,
+ "text": "we"
+ },
+ {
+ "id": 10012,
+ "start": 5391.22,
+ "end": 5391.32,
+ "text": "are"
+ },
+ {
+ "id": 10013,
+ "start": 5391.32,
+ "end": 5391.68,
+ "text": "standing"
+ },
+ {
+ "id": 10014,
+ "start": 5391.68,
+ "end": 5391.8,
+ "text": "up"
+ },
+ {
+ "id": 10015,
+ "start": 5391.8,
+ "end": 5392,
+ "text": "a"
+ },
+ {
+ "id": 10016,
+ "start": 5392,
+ "end": 5392.38,
+ "text": "product"
+ },
+ {
+ "id": 10017,
+ "start": 5392.38,
+ "end": 5392.72,
+ "text": "team"
+ },
+ {
+ "id": 10018,
+ "start": 5392.72,
+ "end": 5393.46,
+ "text": "to"
+ },
+ {
+ "id": 10019,
+ "start": 5393.46,
+ "end": 5393.9,
+ "text": "do"
+ },
+ {
+ "id": 10020,
+ "start": 5393.9,
+ "end": 5394.54,
+ "text": "specific"
+ },
+ {
+ "id": 10021,
+ "start": 5394.54,
+ "end": 5394.92,
+ "text": "product"
+ },
+ {
+ "id": 10022,
+ "start": 5394.92,
+ "end": 5395.38,
+ "text": "changes"
+ },
+ {
+ "id": 10023,
+ "start": 5395.38,
+ "end": 5395.66,
+ "text": "in"
+ },
+ {
+ "id": 10024,
+ "start": 5395.66,
+ "end": 5396.2,
+ "text": "Myanmar"
+ },
+ {
+ "id": 10025,
+ "start": 5396.2,
+ "end": 5396.62,
+ "text": "and"
+ },
+ {
+ "id": 10026,
+ "start": 5396.62,
+ "end": 5396.9,
+ "text": "other"
+ },
+ {
+ "id": 10027,
+ "start": 5396.9,
+ "end": 5397.36,
+ "text": "countries"
+ },
+ {
+ "id": 10028,
+ "start": 5397.36,
+ "end": 5397.8,
+ "text": "that"
+ },
+ {
+ "id": 10029,
+ "start": 5397.8,
+ "end": 5398.02,
+ "text": "may"
+ },
+ {
+ "id": 10030,
+ "start": 5398.02,
+ "end": 5398.24,
+ "text": "have"
+ },
+ {
+ "id": 10031,
+ "start": 5398.24,
+ "end": 5398.84,
+ "text": "similar"
+ },
+ {
+ "id": 10032,
+ "start": 5398.84,
+ "end": 5399.18,
+ "text": "issues"
+ },
+ {
+ "id": 10033,
+ "start": 5399.18,
+ "end": 5399.3,
+ "text": "in"
+ },
+ {
+ "id": 10034,
+ "start": 5399.3,
+ "end": 5399.42,
+ "text": "the"
+ },
+ {
+ "id": 10035,
+ "start": 5399.42,
+ "end": 5399.78,
+ "text": "future"
+ },
+ {
+ "id": 10036,
+ "start": 5399.78,
+ "end": 5400.62,
+ "text": "to"
+ },
+ {
+ "id": 10037,
+ "start": 5400.62,
+ "end": 5400.96,
+ "text": "prevent"
+ },
+ {
+ "id": 10038,
+ "start": 5400.96,
+ "end": 5401.14,
+ "text": "this"
+ },
+ {
+ "id": 10039,
+ "start": 5401.14,
+ "end": 5401.48,
+ "text": "from"
+ },
+ {
+ "id": 10040,
+ "start": 5401.48,
+ "end": 5401.7,
+ "text": "from"
+ },
+ {
+ "id": 10041,
+ "start": 5401.7,
+ "end": 5402.06,
+ "text": "happening"
+ },
+ {
+ "id": 10042,
+ "start": 5402.06,
+ "end": 5402.9,
+ "text": "in"
+ },
+ {
+ "id": 10043,
+ "start": 5402.9,
+ "end": 5403.36,
+ "text": "Santa"
+ },
+ {
+ "id": 10044,
+ "start": 5403.36,
+ "end": 5403.66,
+ "text": "Cruz"
+ },
+ {
+ "id": 10045,
+ "start": 5403.66,
+ "end": 5403.82,
+ "text": "and"
+ },
+ {
+ "id": 10046,
+ "start": 5403.82,
+ "end": 5404.8,
+ "text": "I"
+ },
+ {
+ "id": 10047,
+ "start": 5404.8,
+ "end": 5405.72,
+ "text": "sent"
+ },
+ {
+ "id": 10048,
+ "start": 5405.72,
+ "end": 5405.82,
+ "text": "a"
+ },
+ {
+ "id": 10049,
+ "start": 5405.82,
+ "end": 5406.34,
+ "text": "letter"
+ },
+ {
+ "id": 10050,
+ "start": 5406.34,
+ "end": 5406.62,
+ "text": "to"
+ },
+ {
+ "id": 10051,
+ "start": 5406.62,
+ "end": 5408.7,
+ "text": "Apple"
+ },
+ {
+ "id": 10052,
+ "start": 5408.7,
+ "end": 5409.68,
+ "text": "asking"
+ },
+ {
+ "id": 10053,
+ "start": 5409.68,
+ "end": 5409.8,
+ "text": "what"
+ },
+ {
+ "id": 10054,
+ "start": 5409.8,
+ "end": 5410,
+ "text": "they're"
+ },
+ {
+ "id": 10055,
+ "start": 5410,
+ "end": 5410.14,
+ "text": "going"
+ },
+ {
+ "id": 10056,
+ "start": 5410.14,
+ "end": 5410.2,
+ "text": "to"
+ },
+ {
+ "id": 10057,
+ "start": 5410.2,
+ "end": 5410.28,
+ "text": "do"
+ },
+ {
+ "id": 10058,
+ "start": 5410.28,
+ "end": 5410.5,
+ "text": "about"
+ },
+ {
+ "id": 10059,
+ "start": 5410.5,
+ "end": 5411.04,
+ "text": "Chinese"
+ },
+ {
+ "id": 10060,
+ "start": 5411.04,
+ "end": 5413.34,
+ "text": "censorship."
+ },
+ {
+ "id": 10061,
+ "start": 5413.34,
+ "end": 5414.46,
+ "text": "My"
+ },
+ {
+ "id": 10062,
+ "start": 5414.46,
+ "end": 5414.86,
+ "text": "question"
+ },
+ {
+ "id": 10063,
+ "start": 5414.86,
+ "end": 5415.02,
+ "text": "I"
+ },
+ {
+ "id": 10064,
+ "start": 5415.02,
+ "end": 5415.32,
+ "text": "place"
+ },
+ {
+ "id": 10065,
+ "start": 5415.32,
+ "end": 5415.66,
+ "text": "that"
+ },
+ {
+ "id": 10066,
+ "start": 5415.66,
+ "end": 5415.8,
+ "text": "would"
+ },
+ {
+ "id": 10067,
+ "start": 5415.8,
+ "end": 5415.86,
+ "text": "be"
+ },
+ {
+ "id": 10068,
+ "start": 5415.86,
+ "end": 5416.04,
+ "text": "great."
+ },
+ {
+ "id": 10069,
+ "start": 5416.04,
+ "end": 5416.22,
+ "text": "Thank"
+ },
+ {
+ "id": 10070,
+ "start": 5416.22,
+ "end": 5416.36,
+ "text": "you,"
+ },
+ {
+ "id": 10071,
+ "start": 5416.36,
+ "end": 5417.02,
+ "text": "sir."
+ },
+ {
+ "id": 10072,
+ "start": 5417.02,
+ "end": 5417.16,
+ "text": "For"
+ },
+ {
+ "id": 10073,
+ "start": 5417.16,
+ "end": 5417.28,
+ "text": "the"
+ },
+ {
+ "id": 10074,
+ "start": 5417.28,
+ "end": 5417.56,
+ "text": "record,"
+ },
+ {
+ "id": 10075,
+ "start": 5417.56,
+ "end": 5417.62,
+ "text": "I"
+ },
+ {
+ "id": 10076,
+ "start": 5417.62,
+ "end": 5417.8,
+ "text": "want"
+ },
+ {
+ "id": 10077,
+ "start": 5417.8,
+ "end": 5417.86,
+ "text": "to"
+ },
+ {
+ "id": 10078,
+ "start": 5417.86,
+ "end": 5417.98,
+ "text": "know"
+ },
+ {
+ "id": 10079,
+ "start": 5417.98,
+ "end": 5418.14,
+ "text": "what"
+ },
+ {
+ "id": 10080,
+ "start": 5418.14,
+ "end": 5418.3,
+ "text": "you"
+ },
+ {
+ "id": 10081,
+ "start": 5418.3,
+ "end": 5418.66,
+ "text": "do"
+ },
+ {
+ "id": 10082,
+ "start": 5418.66,
+ "end": 5419.28,
+ "text": "about"
+ },
+ {
+ "id": 10083,
+ "start": 5419.28,
+ "end": 5420.26,
+ "text": "Chinese"
+ },
+ {
+ "id": 10084,
+ "start": 5420.26,
+ "end": 5420.84,
+ "text": "censorship"
+ },
+ {
+ "id": 10085,
+ "start": 5420.84,
+ "end": 5421.02,
+ "text": "when"
+ },
+ {
+ "id": 10086,
+ "start": 5421.02,
+ "end": 5421.22,
+ "text": "they"
+ },
+ {
+ "id": 10087,
+ "start": 5421.22,
+ "end": 5421.42,
+ "text": "come"
+ },
+ {
+ "id": 10088,
+ "start": 5421.42,
+ "end": 5421.52,
+ "text": "to"
+ },
+ {
+ "id": 10089,
+ "start": 5421.52,
+ "end": 5422.32,
+ "text": "you"
+ },
+ {
+ "id": 10090,
+ "start": 5422.32,
+ "end": 5423.3,
+ "text": "Seagrams"
+ },
+ {
+ "id": 10091,
+ "start": 5423.3,
+ "end": 5423.44,
+ "text": "up"
+ },
+ {
+ "id": 10092,
+ "start": 5423.44,
+ "end": 5424.42,
+ "text": "next,"
+ },
+ {
+ "id": 10093,
+ "start": 5424.42,
+ "end": 5425.32,
+ "text": "thank"
+ },
+ {
+ "id": 10094,
+ "start": 5425.32,
+ "end": 5425.7,
+ "text": "you."
+ },
+ {
+ "id": 10095,
+ "start": 5425.7,
+ "end": 5426.68,
+ "text": "Are"
+ },
+ {
+ "id": 10096,
+ "start": 5426.68,
+ "end": 5426.78,
+ "text": "you"
+ },
+ {
+ "id": 10097,
+ "start": 5426.78,
+ "end": 5427.16,
+ "text": "familiar"
+ },
+ {
+ "id": 10098,
+ "start": 5427.16,
+ "end": 5427.38,
+ "text": "with"
+ },
+ {
+ "id": 10099,
+ "start": 5427.38,
+ "end": 5427.8,
+ "text": "Andrew"
+ },
+ {
+ "id": 10100,
+ "start": 5427.8,
+ "end": 5430.2,
+ "text": "Bosworth?"
+ },
+ {
+ "id": 10101,
+ "start": 5430.2,
+ "end": 5431.18,
+ "text": "Yes,"
+ },
+ {
+ "id": 10102,
+ "start": 5431.18,
+ "end": 5431.62,
+ "text": "Senator,"
+ },
+ {
+ "id": 10103,
+ "start": 5431.62,
+ "end": 5431.68,
+ "text": "I"
+ },
+ {
+ "id": 10104,
+ "start": 5431.68,
+ "end": 5431.9,
+ "text": "am."
+ },
+ {
+ "id": 10105,
+ "start": 5431.9,
+ "end": 5432.96,
+ "text": "He"
+ },
+ {
+ "id": 10106,
+ "start": 5432.96,
+ "end": 5433.38,
+ "text": "said"
+ },
+ {
+ "id": 10107,
+ "start": 5433.38,
+ "end": 5434.18,
+ "text": "so"
+ },
+ {
+ "id": 10108,
+ "start": 5434.18,
+ "end": 5434.3,
+ "text": "we"
+ },
+ {
+ "id": 10109,
+ "start": 5434.3,
+ "end": 5434.7,
+ "text": "connect"
+ },
+ {
+ "id": 10110,
+ "start": 5434.7,
+ "end": 5434.94,
+ "text": "more"
+ },
+ {
+ "id": 10111,
+ "start": 5434.94,
+ "end": 5435.3,
+ "text": "people."
+ },
+ {
+ "id": 10112,
+ "start": 5435.3,
+ "end": 5435.88,
+ "text": "Maybe"
+ },
+ {
+ "id": 10113,
+ "start": 5435.88,
+ "end": 5436.32,
+ "text": "someone"
+ },
+ {
+ "id": 10114,
+ "start": 5436.32,
+ "end": 5436.64,
+ "text": "dies"
+ },
+ {
+ "id": 10115,
+ "start": 5436.64,
+ "end": 5436.8,
+ "text": "in"
+ },
+ {
+ "id": 10116,
+ "start": 5436.8,
+ "end": 5436.94,
+ "text": "a"
+ },
+ {
+ "id": 10117,
+ "start": 5436.94,
+ "end": 5437.28,
+ "text": "terrorist"
+ },
+ {
+ "id": 10118,
+ "start": 5437.28,
+ "end": 5437.96,
+ "text": "attack"
+ },
+ {
+ "id": 10119,
+ "start": 5437.96,
+ "end": 5438.94,
+ "text": "coordinated"
+ },
+ {
+ "id": 10120,
+ "start": 5438.94,
+ "end": 5439.18,
+ "text": "on"
+ },
+ {
+ "id": 10121,
+ "start": 5439.18,
+ "end": 5439.66,
+ "text": "our"
+ },
+ {
+ "id": 10122,
+ "start": 5439.66,
+ "end": 5441.56,
+ "text": "tools,"
+ },
+ {
+ "id": 10123,
+ "start": 5441.56,
+ "end": 5441.88,
+ "text": "the"
+ },
+ {
+ "id": 10124,
+ "start": 5441.88,
+ "end": 5442.24,
+ "text": "ugly"
+ },
+ {
+ "id": 10125,
+ "start": 5442.24,
+ "end": 5442.52,
+ "text": "truth"
+ },
+ {
+ "id": 10126,
+ "start": 5442.52,
+ "end": 5442.72,
+ "text": "is"
+ },
+ {
+ "id": 10127,
+ "start": 5442.72,
+ "end": 5442.92,
+ "text": "that"
+ },
+ {
+ "id": 10128,
+ "start": 5442.92,
+ "end": 5443.04,
+ "text": "we"
+ },
+ {
+ "id": 10129,
+ "start": 5443.04,
+ "end": 5443.42,
+ "text": "believe"
+ },
+ {
+ "id": 10130,
+ "start": 5443.42,
+ "end": 5443.58,
+ "text": "in"
+ },
+ {
+ "id": 10131,
+ "start": 5443.58,
+ "end": 5444.12,
+ "text": "connecting"
+ },
+ {
+ "id": 10132,
+ "start": 5444.12,
+ "end": 5444.44,
+ "text": "people"
+ },
+ {
+ "id": 10133,
+ "start": 5444.44,
+ "end": 5444.78,
+ "text": "so"
+ },
+ {
+ "id": 10134,
+ "start": 5444.78,
+ "end": 5445.22,
+ "text": "deeply"
+ },
+ {
+ "id": 10135,
+ "start": 5445.22,
+ "end": 5446.24,
+ "text": "that"
+ },
+ {
+ "id": 10136,
+ "start": 5446.24,
+ "end": 5446.74,
+ "text": "anything"
+ },
+ {
+ "id": 10137,
+ "start": 5446.74,
+ "end": 5446.96,
+ "text": "that"
+ },
+ {
+ "id": 10138,
+ "start": 5446.96,
+ "end": 5447.38,
+ "text": "allows"
+ },
+ {
+ "id": 10139,
+ "start": 5447.38,
+ "end": 5447.58,
+ "text": "us"
+ },
+ {
+ "id": 10140,
+ "start": 5447.58,
+ "end": 5447.74,
+ "text": "to"
+ },
+ {
+ "id": 10141,
+ "start": 5447.74,
+ "end": 5448.16,
+ "text": "connect"
+ },
+ {
+ "id": 10142,
+ "start": 5448.16,
+ "end": 5448.38,
+ "text": "more"
+ },
+ {
+ "id": 10143,
+ "start": 5448.38,
+ "end": 5448.74,
+ "text": "people"
+ },
+ {
+ "id": 10144,
+ "start": 5448.74,
+ "end": 5449.02,
+ "text": "more"
+ },
+ {
+ "id": 10145,
+ "start": 5449.02,
+ "end": 5449.4,
+ "text": "often"
+ },
+ {
+ "id": 10146,
+ "start": 5449.4,
+ "end": 5450.2,
+ "text": "is"
+ },
+ {
+ "id": 10147,
+ "start": 5450.2,
+ "end": 5450.34,
+ "text": "to"
+ },
+ {
+ "id": 10148,
+ "start": 5450.34,
+ "end": 5450.64,
+ "text": "fact."
+ },
+ {
+ "id": 10149,
+ "start": 5450.64,
+ "end": 5450.9,
+ "text": "Do"
+ },
+ {
+ "id": 10150,
+ "start": 5450.9,
+ "end": 5451.26,
+ "text": "good,"
+ },
+ {
+ "id": 10151,
+ "start": 5451.26,
+ "end": 5451.94,
+ "text": "do"
+ },
+ {
+ "id": 10152,
+ "start": 5451.94,
+ "end": 5452.12,
+ "text": "you"
+ },
+ {
+ "id": 10153,
+ "start": 5452.12,
+ "end": 5452.34,
+ "text": "agree"
+ },
+ {
+ "id": 10154,
+ "start": 5452.34,
+ "end": 5452.48,
+ "text": "with"
+ },
+ {
+ "id": 10155,
+ "start": 5452.48,
+ "end": 5453.38,
+ "text": "that?"
+ },
+ {
+ "id": 10156,
+ "start": 5453.38,
+ "end": 5454.22,
+ "text": "No,"
+ },
+ {
+ "id": 10157,
+ "start": 5454.22,
+ "end": 5454.64,
+ "text": "Senator,"
+ },
+ {
+ "id": 10158,
+ "start": 5454.64,
+ "end": 5454.74,
+ "text": "I"
+ },
+ {
+ "id": 10159,
+ "start": 5454.74,
+ "end": 5454.88,
+ "text": "do"
+ },
+ {
+ "id": 10160,
+ "start": 5454.88,
+ "end": 5455.14,
+ "text": "not."
+ },
+ {
+ "id": 10161,
+ "start": 5455.14,
+ "end": 5455.9,
+ "text": "And"
+ },
+ {
+ "id": 10162,
+ "start": 5455.9,
+ "end": 5456.5,
+ "text": "as"
+ },
+ {
+ "id": 10163,
+ "start": 5456.5,
+ "end": 5457.36,
+ "text": "context,"
+ },
+ {
+ "id": 10164,
+ "start": 5457.36,
+ "end": 5458.34,
+ "text": "Boz"
+ },
+ {
+ "id": 10165,
+ "start": 5458.34,
+ "end": 5458.6,
+ "text": "wrote"
+ },
+ {
+ "id": 10166,
+ "start": 5458.6,
+ "end": 5458.86,
+ "text": "that"
+ },
+ {
+ "id": 10167,
+ "start": 5458.86,
+ "end": 5459.18,
+ "text": "bus"
+ },
+ {
+ "id": 10168,
+ "start": 5459.18,
+ "end": 5459.3,
+ "text": "is"
+ },
+ {
+ "id": 10169,
+ "start": 5459.3,
+ "end": 5459.42,
+ "text": "what"
+ },
+ {
+ "id": 10170,
+ "start": 5459.42,
+ "end": 5459.52,
+ "text": "we"
+ },
+ {
+ "id": 10171,
+ "start": 5459.52,
+ "end": 5459.68,
+ "text": "call"
+ },
+ {
+ "id": 10172,
+ "start": 5459.68,
+ "end": 5459.8,
+ "text": "them"
+ },
+ {
+ "id": 10173,
+ "start": 5459.8,
+ "end": 5461.02,
+ "text": "internally."
+ },
+ {
+ "id": 10174,
+ "start": 5461.02,
+ "end": 5461.9,
+ "text": "He"
+ },
+ {
+ "id": 10175,
+ "start": 5461.9,
+ "end": 5462.1,
+ "text": "wrote"
+ },
+ {
+ "id": 10176,
+ "start": 5462.1,
+ "end": 5462.22,
+ "text": "that"
+ },
+ {
+ "id": 10177,
+ "start": 5462.22,
+ "end": 5462.34,
+ "text": "as"
+ },
+ {
+ "id": 10178,
+ "start": 5462.34,
+ "end": 5462.44,
+ "text": "an"
+ },
+ {
+ "id": 10179,
+ "start": 5462.44,
+ "end": 5463,
+ "text": "internal"
+ },
+ {
+ "id": 10180,
+ "start": 5463,
+ "end": 5464.98,
+ "text": "note"
+ },
+ {
+ "id": 10181,
+ "start": 5464.98,
+ "end": 5465.96,
+ "text": "we"
+ },
+ {
+ "id": 10182,
+ "start": 5465.96,
+ "end": 5466.1,
+ "text": "have"
+ },
+ {
+ "id": 10183,
+ "start": 5466.1,
+ "end": 5466.14,
+ "text": "a"
+ },
+ {
+ "id": 10184,
+ "start": 5466.14,
+ "end": 5466.26,
+ "text": "lot"
+ },
+ {
+ "id": 10185,
+ "start": 5466.26,
+ "end": 5466.34,
+ "text": "of"
+ },
+ {
+ "id": 10186,
+ "start": 5466.34,
+ "end": 5466.76,
+ "text": "discussion"
+ },
+ {
+ "id": 10187,
+ "start": 5466.76,
+ "end": 5467.26,
+ "text": "internally."
+ },
+ {
+ "id": 10188,
+ "start": 5467.26,
+ "end": 5467.94,
+ "text": "I"
+ },
+ {
+ "id": 10189,
+ "start": 5467.94,
+ "end": 5468.46,
+ "text": "disagreed"
+ },
+ {
+ "id": 10190,
+ "start": 5468.46,
+ "end": 5468.62,
+ "text": "with"
+ },
+ {
+ "id": 10191,
+ "start": 5468.62,
+ "end": 5468.74,
+ "text": "it"
+ },
+ {
+ "id": 10192,
+ "start": 5468.74,
+ "end": 5468.96,
+ "text": "at"
+ },
+ {
+ "id": 10193,
+ "start": 5468.96,
+ "end": 5469.08,
+ "text": "the"
+ },
+ {
+ "id": 10194,
+ "start": 5469.08,
+ "end": 5469.28,
+ "text": "time"
+ },
+ {
+ "id": 10195,
+ "start": 5469.28,
+ "end": 5469.42,
+ "text": "that"
+ },
+ {
+ "id": 10196,
+ "start": 5469.42,
+ "end": 5469.5,
+ "text": "he"
+ },
+ {
+ "id": 10197,
+ "start": 5469.5,
+ "end": 5469.7,
+ "text": "wrote"
+ },
+ {
+ "id": 10198,
+ "start": 5469.7,
+ "end": 5469.8,
+ "text": "it."
+ },
+ {
+ "id": 10199,
+ "start": 5469.8,
+ "end": 5470.1,
+ "text": "If"
+ },
+ {
+ "id": 10200,
+ "start": 5470.1,
+ "end": 5470.22,
+ "text": "you"
+ },
+ {
+ "id": 10201,
+ "start": 5470.22,
+ "end": 5470.42,
+ "text": "looked"
+ },
+ {
+ "id": 10202,
+ "start": 5470.42,
+ "end": 5470.5,
+ "text": "at"
+ },
+ {
+ "id": 10203,
+ "start": 5470.5,
+ "end": 5470.6,
+ "text": "the"
+ },
+ {
+ "id": 10204,
+ "start": 5470.6,
+ "end": 5470.9,
+ "text": "comments"
+ },
+ {
+ "id": 10205,
+ "start": 5470.9,
+ "end": 5471,
+ "text": "on"
+ },
+ {
+ "id": 10206,
+ "start": 5471,
+ "end": 5471.12,
+ "text": "the"
+ },
+ {
+ "id": 10207,
+ "start": 5471.12,
+ "end": 5471.44,
+ "text": "internal"
+ },
+ {
+ "id": 10208,
+ "start": 5471.44,
+ "end": 5471.84,
+ "text": "discussion"
+ },
+ {
+ "id": 10209,
+ "start": 5471.84,
+ "end": 5472,
+ "text": "the"
+ },
+ {
+ "id": 10210,
+ "start": 5472,
+ "end": 5472.89,
+ "text": "Georgia"
+ },
+ {
+ "id": 10211,
+ "start": 5472.89,
+ "end": 5473.47,
+ "text": "internally"
+ },
+ {
+ "id": 10212,
+ "start": 5473.47,
+ "end": 5473.67,
+ "text": "did"
+ },
+ {
+ "id": 10213,
+ "start": 5473.67,
+ "end": 5473.91,
+ "text": "too."
+ },
+ {
+ "id": 10214,
+ "start": 5473.91,
+ "end": 5474.21,
+ "text": "That"
+ },
+ {
+ "id": 10215,
+ "start": 5474.21,
+ "end": 5474.37,
+ "text": "you"
+ },
+ {
+ "id": 10216,
+ "start": 5474.37,
+ "end": 5474.53,
+ "text": "did"
+ },
+ {
+ "id": 10217,
+ "start": 5474.53,
+ "end": 5474.67,
+ "text": "a"
+ },
+ {
+ "id": 10218,
+ "start": 5474.67,
+ "end": 5474.99,
+ "text": "four"
+ },
+ {
+ "id": 10219,
+ "start": 5474.99,
+ "end": 5475.27,
+ "text": "job"
+ },
+ {
+ "id": 10220,
+ "start": 5475.27,
+ "end": 5475.49,
+ "text": "as"
+ },
+ {
+ "id": 10221,
+ "start": 5475.49,
+ "end": 5475.99,
+ "text": "CEO"
+ },
+ {
+ "id": 10222,
+ "start": 5475.99,
+ "end": 5476.79,
+ "text": "communicating"
+ },
+ {
+ "id": 10223,
+ "start": 5476.79,
+ "end": 5477.71,
+ "text": "your"
+ },
+ {
+ "id": 10224,
+ "start": 5477.71,
+ "end": 5478.43,
+ "text": "displeasure"
+ },
+ {
+ "id": 10225,
+ "start": 5478.43,
+ "end": 5478.61,
+ "text": "with"
+ },
+ {
+ "id": 10226,
+ "start": 5478.61,
+ "end": 5478.87,
+ "text": "such"
+ },
+ {
+ "id": 10227,
+ "start": 5478.87,
+ "end": 5479.29,
+ "text": "thoughts."
+ },
+ {
+ "id": 10228,
+ "start": 5479.29,
+ "end": 5480.13,
+ "text": "Because"
+ },
+ {
+ "id": 10229,
+ "start": 5480.13,
+ "end": 5480.31,
+ "text": "if"
+ },
+ {
+ "id": 10230,
+ "start": 5480.31,
+ "end": 5480.45,
+ "text": "he"
+ },
+ {
+ "id": 10231,
+ "start": 5480.45,
+ "end": 5480.61,
+ "text": "had"
+ },
+ {
+ "id": 10232,
+ "start": 5480.61,
+ "end": 5481.09,
+ "text": "understood"
+ },
+ {
+ "id": 10233,
+ "start": 5481.09,
+ "end": 5482.13,
+ "text": "where"
+ },
+ {
+ "id": 10234,
+ "start": 5482.13,
+ "end": 5482.39,
+ "text": "you're"
+ },
+ {
+ "id": 10235,
+ "start": 5482.39,
+ "end": 5482.57,
+ "text": "at"
+ },
+ {
+ "id": 10236,
+ "start": 5482.57,
+ "end": 5482.69,
+ "text": "he"
+ },
+ {
+ "id": 10237,
+ "start": 5482.69,
+ "end": 5482.85,
+ "text": "would"
+ },
+ {
+ "id": 10238,
+ "start": 5482.85,
+ "end": 5483.05,
+ "text": "never"
+ },
+ {
+ "id": 10239,
+ "start": 5483.05,
+ "end": 5483.23,
+ "text": "said"
+ },
+ {
+ "id": 10240,
+ "start": 5483.23,
+ "end": 5483.31,
+ "text": "it"
+ },
+ {
+ "id": 10241,
+ "start": 5483.31,
+ "end": 5483.43,
+ "text": "to"
+ },
+ {
+ "id": 10242,
+ "start": 5483.43,
+ "end": 5483.71,
+ "text": "begin"
+ },
+ {
+ "id": 10243,
+ "start": 5483.71,
+ "end": 5484.76,
+ "text": "with."
+ },
+ {
+ "id": 10244,
+ "start": 5484.76,
+ "end": 5485.86,
+ "text": "Well,"
+ },
+ {
+ "id": 10245,
+ "start": 5485.86,
+ "end": 5486.3,
+ "text": "Senator,"
+ },
+ {
+ "id": 10246,
+ "start": 5486.3,
+ "end": 5487.02,
+ "text": "we"
+ },
+ {
+ "id": 10247,
+ "start": 5487.02,
+ "end": 5487.22,
+ "text": "try"
+ },
+ {
+ "id": 10248,
+ "start": 5487.22,
+ "end": 5487.32,
+ "text": "to"
+ },
+ {
+ "id": 10249,
+ "start": 5487.32,
+ "end": 5487.52,
+ "text": "run"
+ },
+ {
+ "id": 10250,
+ "start": 5487.52,
+ "end": 5487.68,
+ "text": "our"
+ },
+ {
+ "id": 10251,
+ "start": 5487.68,
+ "end": 5488.1,
+ "text": "company"
+ },
+ {
+ "id": 10252,
+ "start": 5488.1,
+ "end": 5488.3,
+ "text": "in"
+ },
+ {
+ "id": 10253,
+ "start": 5488.3,
+ "end": 5488.38,
+ "text": "a"
+ },
+ {
+ "id": 10254,
+ "start": 5488.38,
+ "end": 5488.58,
+ "text": "way"
+ },
+ {
+ "id": 10255,
+ "start": 5488.58,
+ "end": 5488.8,
+ "text": "where"
+ },
+ {
+ "id": 10256,
+ "start": 5488.8,
+ "end": 5489.1,
+ "text": "people"
+ },
+ {
+ "id": 10257,
+ "start": 5489.1,
+ "end": 5489.26,
+ "text": "can"
+ },
+ {
+ "id": 10258,
+ "start": 5489.26,
+ "end": 5489.7,
+ "text": "express"
+ },
+ {
+ "id": 10259,
+ "start": 5489.7,
+ "end": 5490.04,
+ "text": "different"
+ },
+ {
+ "id": 10260,
+ "start": 5490.04,
+ "end": 5490.44,
+ "text": "opinions"
+ },
+ {
+ "id": 10261,
+ "start": 5490.44,
+ "end": 5491,
+ "text": "internally."
+ },
+ {
+ "id": 10262,
+ "start": 5491,
+ "end": 5491.46,
+ "text": "Well,"
+ },
+ {
+ "id": 10263,
+ "start": 5491.46,
+ "end": 5491.64,
+ "text": "this"
+ },
+ {
+ "id": 10264,
+ "start": 5491.64,
+ "end": 5491.82,
+ "text": "is"
+ },
+ {
+ "id": 10265,
+ "start": 5491.82,
+ "end": 5491.92,
+ "text": "an"
+ },
+ {
+ "id": 10266,
+ "start": 5491.92,
+ "end": 5492.42,
+ "text": "opinion"
+ },
+ {
+ "id": 10267,
+ "start": 5492.42,
+ "end": 5492.6,
+ "text": "that"
+ },
+ {
+ "id": 10268,
+ "start": 5492.6,
+ "end": 5492.9,
+ "text": "really"
+ },
+ {
+ "id": 10269,
+ "start": 5492.9,
+ "end": 5493.4,
+ "text": "disturbs"
+ },
+ {
+ "id": 10270,
+ "start": 5493.4,
+ "end": 5493.6,
+ "text": "me."
+ },
+ {
+ "id": 10271,
+ "start": 5493.6,
+ "end": 5494.54,
+ "text": "And"
+ },
+ {
+ "id": 10272,
+ "start": 5494.54,
+ "end": 5494.7,
+ "text": "if"
+ },
+ {
+ "id": 10273,
+ "start": 5494.7,
+ "end": 5495.16,
+ "text": "somebody"
+ },
+ {
+ "id": 10274,
+ "start": 5495.16,
+ "end": 5495.54,
+ "text": "work"
+ },
+ {
+ "id": 10275,
+ "start": 5495.54,
+ "end": 5495.72,
+ "text": "for"
+ },
+ {
+ "id": 10276,
+ "start": 5495.72,
+ "end": 5495.92,
+ "text": "me,"
+ },
+ {
+ "id": 10277,
+ "start": 5495.92,
+ "end": 5496.16,
+ "text": "that"
+ },
+ {
+ "id": 10278,
+ "start": 5496.16,
+ "end": 5496.42,
+ "text": "said"
+ },
+ {
+ "id": 10279,
+ "start": 5496.42,
+ "end": 5496.64,
+ "text": "this"
+ },
+ {
+ "id": 10280,
+ "start": 5496.64,
+ "end": 5496.94,
+ "text": "I'd"
+ },
+ {
+ "id": 10281,
+ "start": 5496.94,
+ "end": 5498.04,
+ "text": "fire"
+ },
+ {
+ "id": 10282,
+ "start": 5498.04,
+ "end": 5498.96,
+ "text": "who's"
+ },
+ {
+ "id": 10283,
+ "start": 5498.96,
+ "end": 5499.12,
+ "text": "your"
+ },
+ {
+ "id": 10284,
+ "start": 5499.12,
+ "end": 5499.42,
+ "text": "biggest"
+ },
+ {
+ "id": 10285,
+ "start": 5499.42,
+ "end": 5500.82,
+ "text": "competitor,"
+ },
+ {
+ "id": 10286,
+ "start": 5500.82,
+ "end": 5502,
+ "text": "Senator."
+ },
+ {
+ "id": 10287,
+ "start": 5502,
+ "end": 5502.1,
+ "text": "We"
+ },
+ {
+ "id": 10288,
+ "start": 5502.1,
+ "end": 5502.24,
+ "text": "have"
+ },
+ {
+ "id": 10289,
+ "start": 5502.24,
+ "end": 5502.28,
+ "text": "a"
+ },
+ {
+ "id": 10290,
+ "start": 5502.28,
+ "end": 5502.42,
+ "text": "lot"
+ },
+ {
+ "id": 10291,
+ "start": 5502.42,
+ "end": 5502.52,
+ "text": "of"
+ },
+ {
+ "id": 10292,
+ "start": 5502.52,
+ "end": 5503.04,
+ "text": "competitors"
+ },
+ {
+ "id": 10293,
+ "start": 5503.04,
+ "end": 5503.58,
+ "text": "who's"
+ },
+ {
+ "id": 10294,
+ "start": 5503.58,
+ "end": 5503.74,
+ "text": "your"
+ },
+ {
+ "id": 10295,
+ "start": 5503.74,
+ "end": 5504.08,
+ "text": "biggest"
+ },
+ {
+ "id": 10296,
+ "start": 5504.08,
+ "end": 5505.66,
+ "text": "I"
+ },
+ {
+ "id": 10297,
+ "start": 5505.66,
+ "end": 5505.9,
+ "text": "think"
+ },
+ {
+ "id": 10298,
+ "start": 5505.9,
+ "end": 5506.62,
+ "text": "the"
+ },
+ {
+ "id": 10299,
+ "start": 5506.62,
+ "end": 5507.16,
+ "text": "categories"
+ },
+ {
+ "id": 10300,
+ "start": 5507.16,
+ "end": 5508,
+ "text": "you"
+ },
+ {
+ "id": 10301,
+ "start": 5508,
+ "end": 5508.14,
+ "text": "want"
+ },
+ {
+ "id": 10302,
+ "start": 5508.14,
+ "end": 5508.28,
+ "text": "just"
+ },
+ {
+ "id": 10303,
+ "start": 5508.28,
+ "end": 5508.5,
+ "text": "one"
+ },
+ {
+ "id": 10304,
+ "start": 5508.5,
+ "end": 5508.78,
+ "text": "I'm"
+ },
+ {
+ "id": 10305,
+ "start": 5508.78,
+ "end": 5508.88,
+ "text": "not"
+ },
+ {
+ "id": 10306,
+ "start": 5508.88,
+ "end": 5509.04,
+ "text": "sure"
+ },
+ {
+ "id": 10307,
+ "start": 5509.04,
+ "end": 5509.08,
+ "text": "I"
+ },
+ {
+ "id": 10308,
+ "start": 5509.08,
+ "end": 5509.2,
+ "text": "can"
+ },
+ {
+ "id": 10309,
+ "start": 5509.2,
+ "end": 5509.34,
+ "text": "give"
+ },
+ {
+ "id": 10310,
+ "start": 5509.34,
+ "end": 5509.5,
+ "text": "one."
+ },
+ {
+ "id": 10311,
+ "start": 5509.5,
+ "end": 5509.62,
+ "text": "But"
+ },
+ {
+ "id": 10312,
+ "start": 5509.62,
+ "end": 5509.76,
+ "text": "can"
+ },
+ {
+ "id": 10313,
+ "start": 5509.76,
+ "end": 5509.84,
+ "text": "I"
+ },
+ {
+ "id": 10314,
+ "start": 5509.84,
+ "end": 5510,
+ "text": "give"
+ },
+ {
+ "id": 10315,
+ "start": 5510,
+ "end": 5510.58,
+ "text": "a"
+ },
+ {
+ "id": 10316,
+ "start": 5510.58,
+ "end": 5512.41,
+ "text": "bunch"
+ },
+ {
+ "id": 10317,
+ "start": 5512.41,
+ "end": 5512.51,
+ "text": "here"
+ },
+ {
+ "id": 10318,
+ "start": 5512.51,
+ "end": 5512.63,
+ "text": "are"
+ },
+ {
+ "id": 10319,
+ "start": 5512.63,
+ "end": 5512.83,
+ "text": "three"
+ },
+ {
+ "id": 10320,
+ "start": 5512.83,
+ "end": 5513.37,
+ "text": "categories"
+ },
+ {
+ "id": 10321,
+ "start": 5513.37,
+ "end": 5513.55,
+ "text": "that"
+ },
+ {
+ "id": 10322,
+ "start": 5513.55,
+ "end": 5513.63,
+ "text": "I"
+ },
+ {
+ "id": 10323,
+ "start": 5513.63,
+ "end": 5513.85,
+ "text": "would"
+ },
+ {
+ "id": 10324,
+ "start": 5513.85,
+ "end": 5514.47,
+ "text": "focus"
+ },
+ {
+ "id": 10325,
+ "start": 5514.47,
+ "end": 5514.67,
+ "text": "on"
+ },
+ {
+ "id": 10326,
+ "start": 5514.67,
+ "end": 5515.35,
+ "text": "one"
+ },
+ {
+ "id": 10327,
+ "start": 5515.35,
+ "end": 5515.77,
+ "text": "are"
+ },
+ {
+ "id": 10328,
+ "start": 5515.77,
+ "end": 5515.91,
+ "text": "the"
+ },
+ {
+ "id": 10329,
+ "start": 5515.91,
+ "end": 5516.15,
+ "text": "other"
+ },
+ {
+ "id": 10330,
+ "start": 5516.15,
+ "end": 5516.35,
+ "text": "tech"
+ },
+ {
+ "id": 10331,
+ "start": 5516.35,
+ "end": 5516.89,
+ "text": "platforms."
+ },
+ {
+ "id": 10332,
+ "start": 5516.89,
+ "end": 5517.15,
+ "text": "So"
+ },
+ {
+ "id": 10333,
+ "start": 5517.15,
+ "end": 5517.89,
+ "text": "Google,"
+ },
+ {
+ "id": 10334,
+ "start": 5517.89,
+ "end": 5518.37,
+ "text": "Apple,"
+ },
+ {
+ "id": 10335,
+ "start": 5518.37,
+ "end": 5518.95,
+ "text": "Amazon"
+ },
+ {
+ "id": 10336,
+ "start": 5518.95,
+ "end": 5519.53,
+ "text": "Microsoft."
+ },
+ {
+ "id": 10337,
+ "start": 5519.53,
+ "end": 5519.69,
+ "text": "We"
+ },
+ {
+ "id": 10338,
+ "start": 5519.69,
+ "end": 5520.05,
+ "text": "overlap"
+ },
+ {
+ "id": 10339,
+ "start": 5520.05,
+ "end": 5520.19,
+ "text": "with"
+ },
+ {
+ "id": 10340,
+ "start": 5520.19,
+ "end": 5520.31,
+ "text": "them"
+ },
+ {
+ "id": 10341,
+ "start": 5520.31,
+ "end": 5520.39,
+ "text": "in"
+ },
+ {
+ "id": 10342,
+ "start": 5520.39,
+ "end": 5520.87,
+ "text": "different."
+ },
+ {
+ "id": 10343,
+ "start": 5520.87,
+ "end": 5521.07,
+ "text": "They"
+ },
+ {
+ "id": 10344,
+ "start": 5521.07,
+ "end": 5521.39,
+ "text": "do."
+ },
+ {
+ "id": 10345,
+ "start": 5521.39,
+ "end": 5521.51,
+ "text": "Do"
+ },
+ {
+ "id": 10346,
+ "start": 5521.51,
+ "end": 5521.69,
+ "text": "they"
+ },
+ {
+ "id": 10347,
+ "start": 5521.69,
+ "end": 5521.99,
+ "text": "provide"
+ },
+ {
+ "id": 10348,
+ "start": 5521.99,
+ "end": 5522.13,
+ "text": "the"
+ },
+ {
+ "id": 10349,
+ "start": 5522.13,
+ "end": 5522.35,
+ "text": "same"
+ },
+ {
+ "id": 10350,
+ "start": 5522.35,
+ "end": 5522.67,
+ "text": "service?"
+ },
+ {
+ "id": 10351,
+ "start": 5522.67,
+ "end": 5522.83,
+ "text": "She"
+ },
+ {
+ "id": 10352,
+ "start": 5522.83,
+ "end": 5524,
+ "text": "provide"
+ },
+ {
+ "id": 10353,
+ "start": 5524,
+ "end": 5524.92,
+ "text": "in"
+ },
+ {
+ "id": 10354,
+ "start": 5524.92,
+ "end": 5525.32,
+ "text": "different"
+ },
+ {
+ "id": 10355,
+ "start": 5525.32,
+ "end": 5525.64,
+ "text": "ways,"
+ },
+ {
+ "id": 10356,
+ "start": 5525.64,
+ "end": 5526.38,
+ "text": "different"
+ },
+ {
+ "id": 10357,
+ "start": 5526.38,
+ "end": 5526.98,
+ "text": "in"
+ },
+ {
+ "id": 10358,
+ "start": 5526.98,
+ "end": 5527.18,
+ "text": "this"
+ },
+ {
+ "id": 10359,
+ "start": 5527.18,
+ "end": 5527.44,
+ "text": "way,"
+ },
+ {
+ "id": 10360,
+ "start": 5527.44,
+ "end": 5527.56,
+ "text": "if"
+ },
+ {
+ "id": 10361,
+ "start": 5527.56,
+ "end": 5527.76,
+ "text": "I"
+ },
+ {
+ "id": 10362,
+ "start": 5527.76,
+ "end": 5527.96,
+ "text": "buy"
+ },
+ {
+ "id": 10363,
+ "start": 5527.96,
+ "end": 5528.06,
+ "text": "it"
+ },
+ {
+ "id": 10364,
+ "start": 5528.06,
+ "end": 5528.54,
+ "text": "forward"
+ },
+ {
+ "id": 10365,
+ "start": 5528.54,
+ "end": 5528.76,
+ "text": "and"
+ },
+ {
+ "id": 10366,
+ "start": 5528.76,
+ "end": 5528.92,
+ "text": "it"
+ },
+ {
+ "id": 10367,
+ "start": 5528.92,
+ "end": 5529.26,
+ "text": "doesn't"
+ },
+ {
+ "id": 10368,
+ "start": 5529.26,
+ "end": 5529.62,
+ "text": "work"
+ },
+ {
+ "id": 10369,
+ "start": 5529.62,
+ "end": 5529.92,
+ "text": "well."
+ },
+ {
+ "id": 10370,
+ "start": 5529.92,
+ "end": 5530.08,
+ "text": "And"
+ },
+ {
+ "id": 10371,
+ "start": 5530.08,
+ "end": 5530.18,
+ "text": "I"
+ },
+ {
+ "id": 10372,
+ "start": 5530.18,
+ "end": 5530.4,
+ "text": "don't"
+ },
+ {
+ "id": 10373,
+ "start": 5530.4,
+ "end": 5530.64,
+ "text": "like"
+ },
+ {
+ "id": 10374,
+ "start": 5530.64,
+ "end": 5530.78,
+ "text": "it."
+ },
+ {
+ "id": 10375,
+ "start": 5530.78,
+ "end": 5530.94,
+ "text": "I"
+ },
+ {
+ "id": 10376,
+ "start": 5530.94,
+ "end": 5531.1,
+ "text": "can"
+ },
+ {
+ "id": 10377,
+ "start": 5531.1,
+ "end": 5531.3,
+ "text": "buy"
+ },
+ {
+ "id": 10378,
+ "start": 5531.3,
+ "end": 5531.36,
+ "text": "a"
+ },
+ {
+ "id": 10379,
+ "start": 5531.36,
+ "end": 5532.5,
+ "text": "shitty."
+ },
+ {
+ "id": 10380,
+ "start": 5532.5,
+ "end": 5532.64,
+ "text": "If"
+ },
+ {
+ "id": 10381,
+ "start": 5532.64,
+ "end": 5532.82,
+ "text": "I'm"
+ },
+ {
+ "id": 10382,
+ "start": 5532.82,
+ "end": 5533.26,
+ "text": "upset"
+ },
+ {
+ "id": 10383,
+ "start": 5533.26,
+ "end": 5533.48,
+ "text": "with"
+ },
+ {
+ "id": 10384,
+ "start": 5533.48,
+ "end": 5534.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 10385,
+ "start": 5534.12,
+ "end": 5534.84,
+ "text": "what's"
+ },
+ {
+ "id": 10386,
+ "start": 5534.84,
+ "end": 5535.02,
+ "text": "the"
+ },
+ {
+ "id": 10387,
+ "start": 5535.02,
+ "end": 5535.58,
+ "text": "equivalent"
+ },
+ {
+ "id": 10388,
+ "start": 5535.58,
+ "end": 5535.98,
+ "text": "product"
+ },
+ {
+ "id": 10389,
+ "start": 5535.98,
+ "end": 5536.18,
+ "text": "that"
+ },
+ {
+ "id": 10390,
+ "start": 5536.18,
+ "end": 5536.28,
+ "text": "I"
+ },
+ {
+ "id": 10391,
+ "start": 5536.28,
+ "end": 5536.48,
+ "text": "can"
+ },
+ {
+ "id": 10392,
+ "start": 5536.48,
+ "end": 5536.72,
+ "text": "go"
+ },
+ {
+ "id": 10393,
+ "start": 5536.72,
+ "end": 5537.66,
+ "text": "sign"
+ },
+ {
+ "id": 10394,
+ "start": 5537.66,
+ "end": 5537.78,
+ "text": "up"
+ },
+ {
+ "id": 10395,
+ "start": 5537.78,
+ "end": 5538.74,
+ "text": "for."
+ },
+ {
+ "id": 10396,
+ "start": 5538.74,
+ "end": 5539.68,
+ "text": "Well,"
+ },
+ {
+ "id": 10397,
+ "start": 5539.68,
+ "end": 5539.92,
+ "text": "the"
+ },
+ {
+ "id": 10398,
+ "start": 5539.92,
+ "end": 5540.16,
+ "text": "the"
+ },
+ {
+ "id": 10399,
+ "start": 5540.16,
+ "end": 5540.46,
+ "text": "second"
+ },
+ {
+ "id": 10400,
+ "start": 5540.46,
+ "end": 5540.88,
+ "text": "category"
+ },
+ {
+ "id": 10401,
+ "start": 5540.88,
+ "end": 5541.02,
+ "text": "that"
+ },
+ {
+ "id": 10402,
+ "start": 5541.02,
+ "end": 5541.08,
+ "text": "I"
+ },
+ {
+ "id": 10403,
+ "start": 5541.08,
+ "end": 5541.2,
+ "text": "was"
+ },
+ {
+ "id": 10404,
+ "start": 5541.2,
+ "end": 5541.34,
+ "text": "going"
+ },
+ {
+ "id": 10405,
+ "start": 5541.34,
+ "end": 5541.4,
+ "text": "to"
+ },
+ {
+ "id": 10406,
+ "start": 5541.4,
+ "end": 5541.56,
+ "text": "talk"
+ },
+ {
+ "id": 10407,
+ "start": 5541.56,
+ "end": 5541.72,
+ "text": "about,"
+ },
+ {
+ "id": 10408,
+ "start": 5541.72,
+ "end": 5541.88,
+ "text": "er,"
+ },
+ {
+ "id": 10409,
+ "start": 5541.88,
+ "end": 5542.12,
+ "text": "not"
+ },
+ {
+ "id": 10410,
+ "start": 5542.12,
+ "end": 5542.32,
+ "text": "song"
+ },
+ {
+ "id": 10411,
+ "start": 5542.32,
+ "end": 5542.46,
+ "text": "that"
+ },
+ {
+ "id": 10412,
+ "start": 5542.46,
+ "end": 5542.92,
+ "text": "categories"
+ },
+ {
+ "id": 10413,
+ "start": 5542.92,
+ "end": 5543.1,
+ "text": "I'm"
+ },
+ {
+ "id": 10414,
+ "start": 5543.1,
+ "end": 5543.36,
+ "text": "talking"
+ },
+ {
+ "id": 10415,
+ "start": 5543.36,
+ "end": 5543.6,
+ "text": "about"
+ },
+ {
+ "id": 10416,
+ "start": 5543.6,
+ "end": 5543.84,
+ "text": "is"
+ },
+ {
+ "id": 10417,
+ "start": 5543.84,
+ "end": 5543.98,
+ "text": "a"
+ },
+ {
+ "id": 10418,
+ "start": 5543.98,
+ "end": 5544.26,
+ "text": "real"
+ },
+ {
+ "id": 10419,
+ "start": 5544.26,
+ "end": 5544.94,
+ "text": "competition."
+ },
+ {
+ "id": 10420,
+ "start": 5544.94,
+ "end": 5545.16,
+ "text": "You"
+ },
+ {
+ "id": 10421,
+ "start": 5545.16,
+ "end": 5545.46,
+ "text": "face"
+ },
+ {
+ "id": 10422,
+ "start": 5545.46,
+ "end": 5546.2,
+ "text": "because"
+ },
+ {
+ "id": 10423,
+ "start": 5546.2,
+ "end": 5546.52,
+ "text": "car"
+ },
+ {
+ "id": 10424,
+ "start": 5546.52,
+ "end": 5546.94,
+ "text": "companies"
+ },
+ {
+ "id": 10425,
+ "start": 5546.94,
+ "end": 5547.18,
+ "text": "face"
+ },
+ {
+ "id": 10426,
+ "start": 5547.18,
+ "end": 5547.26,
+ "text": "a"
+ },
+ {
+ "id": 10427,
+ "start": 5547.26,
+ "end": 5547.44,
+ "text": "lot"
+ },
+ {
+ "id": 10428,
+ "start": 5547.44,
+ "end": 5547.52,
+ "text": "of"
+ },
+ {
+ "id": 10429,
+ "start": 5547.52,
+ "end": 5548.1,
+ "text": "competition."
+ },
+ {
+ "id": 10430,
+ "start": 5548.1,
+ "end": 5548.28,
+ "text": "If"
+ },
+ {
+ "id": 10431,
+ "start": 5548.28,
+ "end": 5548.48,
+ "text": "they"
+ },
+ {
+ "id": 10432,
+ "start": 5548.48,
+ "end": 5548.64,
+ "text": "make"
+ },
+ {
+ "id": 10433,
+ "start": 5548.64,
+ "end": 5548.72,
+ "text": "a"
+ },
+ {
+ "id": 10434,
+ "start": 5548.72,
+ "end": 5549.2,
+ "text": "defective"
+ },
+ {
+ "id": 10435,
+ "start": 5549.2,
+ "end": 5549.98,
+ "text": "car,"
+ },
+ {
+ "id": 10436,
+ "start": 5549.98,
+ "end": 5550.1,
+ "text": "it"
+ },
+ {
+ "id": 10437,
+ "start": 5550.1,
+ "end": 5550.3,
+ "text": "gets"
+ },
+ {
+ "id": 10438,
+ "start": 5550.3,
+ "end": 5550.52,
+ "text": "out"
+ },
+ {
+ "id": 10439,
+ "start": 5550.52,
+ "end": 5550.66,
+ "text": "in"
+ },
+ {
+ "id": 10440,
+ "start": 5550.66,
+ "end": 5550.76,
+ "text": "the"
+ },
+ {
+ "id": 10441,
+ "start": 5550.76,
+ "end": 5551.08,
+ "text": "world"
+ },
+ {
+ "id": 10442,
+ "start": 5551.08,
+ "end": 5551.42,
+ "text": "people"
+ },
+ {
+ "id": 10443,
+ "start": 5551.42,
+ "end": 5551.68,
+ "text": "stop"
+ },
+ {
+ "id": 10444,
+ "start": 5551.68,
+ "end": 5551.92,
+ "text": "buying"
+ },
+ {
+ "id": 10445,
+ "start": 5551.92,
+ "end": 5552.1,
+ "text": "that"
+ },
+ {
+ "id": 10446,
+ "start": 5552.1,
+ "end": 5552.34,
+ "text": "car"
+ },
+ {
+ "id": 10447,
+ "start": 5552.34,
+ "end": 5552.58,
+ "text": "they"
+ },
+ {
+ "id": 10448,
+ "start": 5552.58,
+ "end": 5552.72,
+ "text": "buy."
+ },
+ {
+ "id": 10449,
+ "start": 5552.72,
+ "end": 5553.06,
+ "text": "Another"
+ },
+ {
+ "id": 10450,
+ "start": 5553.06,
+ "end": 5553.2,
+ "text": "one"
+ },
+ {
+ "id": 10451,
+ "start": 5553.2,
+ "end": 5553.64,
+ "text": "is"
+ },
+ {
+ "id": 10452,
+ "start": 5553.64,
+ "end": 5553.78,
+ "text": "in"
+ },
+ {
+ "id": 10453,
+ "start": 5553.78,
+ "end": 5553.86,
+ "text": "an"
+ },
+ {
+ "id": 10454,
+ "start": 5553.86,
+ "end": 5554.72,
+ "text": "alternative"
+ },
+ {
+ "id": 10455,
+ "start": 5554.72,
+ "end": 5554.88,
+ "text": "to"
+ },
+ {
+ "id": 10456,
+ "start": 5554.88,
+ "end": 5555.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 10457,
+ "start": 5555.44,
+ "end": 5555.58,
+ "text": "in"
+ },
+ {
+ "id": 10458,
+ "start": 5555.58,
+ "end": 5555.7,
+ "text": "the"
+ },
+ {
+ "id": 10459,
+ "start": 5555.7,
+ "end": 5556.08,
+ "text": "private"
+ },
+ {
+ "id": 10460,
+ "start": 5556.08,
+ "end": 5557.06,
+ "text": "sector."
+ },
+ {
+ "id": 10461,
+ "start": 5557.06,
+ "end": 5557.82,
+ "text": "Yes,"
+ },
+ {
+ "id": 10462,
+ "start": 5557.82,
+ "end": 5558.24,
+ "text": "Senator,"
+ },
+ {
+ "id": 10463,
+ "start": 5558.24,
+ "end": 5558.44,
+ "text": "the"
+ },
+ {
+ "id": 10464,
+ "start": 5558.44,
+ "end": 5558.78,
+ "text": "average"
+ },
+ {
+ "id": 10465,
+ "start": 5558.78,
+ "end": 5559.24,
+ "text": "American"
+ },
+ {
+ "id": 10466,
+ "start": 5559.24,
+ "end": 5559.58,
+ "text": "uses"
+ },
+ {
+ "id": 10467,
+ "start": 5559.58,
+ "end": 5559.86,
+ "text": "eight"
+ },
+ {
+ "id": 10468,
+ "start": 5559.86,
+ "end": 5560.26,
+ "text": "different"
+ },
+ {
+ "id": 10469,
+ "start": 5560.26,
+ "end": 5560.58,
+ "text": "apps,"
+ },
+ {
+ "id": 10470,
+ "start": 5560.58,
+ "end": 5561.22,
+ "text": "okay,"
+ },
+ {
+ "id": 10471,
+ "start": 5561.22,
+ "end": 5561.72,
+ "text": "communicate"
+ },
+ {
+ "id": 10472,
+ "start": 5561.72,
+ "end": 5561.88,
+ "text": "with"
+ },
+ {
+ "id": 10473,
+ "start": 5561.88,
+ "end": 5562.06,
+ "text": "their"
+ },
+ {
+ "id": 10474,
+ "start": 5562.06,
+ "end": 5562.42,
+ "text": "friends"
+ },
+ {
+ "id": 10475,
+ "start": 5562.42,
+ "end": 5562.58,
+ "text": "and"
+ },
+ {
+ "id": 10476,
+ "start": 5562.58,
+ "end": 5562.82,
+ "text": "stay"
+ },
+ {
+ "id": 10477,
+ "start": 5562.82,
+ "end": 5562.9,
+ "text": "in"
+ },
+ {
+ "id": 10478,
+ "start": 5562.9,
+ "end": 5563.12,
+ "text": "touch"
+ },
+ {
+ "id": 10479,
+ "start": 5563.12,
+ "end": 5563.3,
+ "text": "with"
+ },
+ {
+ "id": 10480,
+ "start": 5563.3,
+ "end": 5563.58,
+ "text": "people,"
+ },
+ {
+ "id": 10481,
+ "start": 5563.58,
+ "end": 5564.34,
+ "text": "ranging"
+ },
+ {
+ "id": 10482,
+ "start": 5564.34,
+ "end": 5564.52,
+ "text": "from"
+ },
+ {
+ "id": 10483,
+ "start": 5564.52,
+ "end": 5565.06,
+ "text": "Technic"
+ },
+ {
+ "id": 10484,
+ "start": 5565.06,
+ "end": 5565.28,
+ "text": "apps"
+ },
+ {
+ "id": 10485,
+ "start": 5565.28,
+ "end": 5565.46,
+ "text": "to"
+ },
+ {
+ "id": 10486,
+ "start": 5565.46,
+ "end": 5565.84,
+ "text": "email"
+ },
+ {
+ "id": 10487,
+ "start": 5565.84,
+ "end": 5566.24,
+ "text": "to"
+ },
+ {
+ "id": 10488,
+ "start": 5566.24,
+ "end": 5566.46,
+ "text": "serve"
+ },
+ {
+ "id": 10489,
+ "start": 5566.46,
+ "end": 5566.58,
+ "text": "as"
+ },
+ {
+ "id": 10490,
+ "start": 5566.58,
+ "end": 5566.76,
+ "text": "you"
+ },
+ {
+ "id": 10491,
+ "start": 5566.76,
+ "end": 5567.2,
+ "text": "provide."
+ },
+ {
+ "id": 10492,
+ "start": 5567.2,
+ "end": 5567.76,
+ "text": "Well,"
+ },
+ {
+ "id": 10493,
+ "start": 5567.76,
+ "end": 5567.94,
+ "text": "we"
+ },
+ {
+ "id": 10494,
+ "start": 5567.94,
+ "end": 5568.22,
+ "text": "provide"
+ },
+ {
+ "id": 10495,
+ "start": 5568.22,
+ "end": 5568.28,
+ "text": "a"
+ },
+ {
+ "id": 10496,
+ "start": 5568.28,
+ "end": 5568.48,
+ "text": "number"
+ },
+ {
+ "id": 10497,
+ "start": 5568.48,
+ "end": 5568.56,
+ "text": "of"
+ },
+ {
+ "id": 10498,
+ "start": 5568.56,
+ "end": 5568.86,
+ "text": "difference"
+ },
+ {
+ "id": 10499,
+ "start": 5568.86,
+ "end": 5569.14,
+ "text": "is"
+ },
+ {
+ "id": 10500,
+ "start": 5569.14,
+ "end": 5569.52,
+ "text": "Twitter"
+ },
+ {
+ "id": 10501,
+ "start": 5569.52,
+ "end": 5569.78,
+ "text": "the"
+ },
+ {
+ "id": 10502,
+ "start": 5569.78,
+ "end": 5570.04,
+ "text": "same"
+ },
+ {
+ "id": 10503,
+ "start": 5570.04,
+ "end": 5570.2,
+ "text": "as"
+ },
+ {
+ "id": 10504,
+ "start": 5570.2,
+ "end": 5570.38,
+ "text": "what"
+ },
+ {
+ "id": 10505,
+ "start": 5570.38,
+ "end": 5570.52,
+ "text": "you"
+ },
+ {
+ "id": 10506,
+ "start": 5570.52,
+ "end": 5570.7,
+ "text": "do."
+ },
+ {
+ "id": 10507,
+ "start": 5570.7,
+ "end": 5571.28,
+ "text": "It"
+ },
+ {
+ "id": 10508,
+ "start": 5571.28,
+ "end": 5571.84,
+ "text": "overlaps"
+ },
+ {
+ "id": 10509,
+ "start": 5571.84,
+ "end": 5571.96,
+ "text": "of"
+ },
+ {
+ "id": 10510,
+ "start": 5571.96,
+ "end": 5572.16,
+ "text": "the"
+ },
+ {
+ "id": 10511,
+ "start": 5572.16,
+ "end": 5572.36,
+ "text": "course."
+ },
+ {
+ "id": 10512,
+ "start": 5572.36,
+ "end": 5572.46,
+ "text": "You"
+ },
+ {
+ "id": 10513,
+ "start": 5572.46,
+ "end": 5572.92,
+ "text": "don't"
+ },
+ {
+ "id": 10514,
+ "start": 5572.92,
+ "end": 5573.06,
+ "text": "you"
+ },
+ {
+ "id": 10515,
+ "start": 5573.06,
+ "end": 5573.2,
+ "text": "have"
+ },
+ {
+ "id": 10516,
+ "start": 5573.2,
+ "end": 5573.26,
+ "text": "a"
+ },
+ {
+ "id": 10517,
+ "start": 5573.26,
+ "end": 5574.8,
+ "text": "monopoly."
+ },
+ {
+ "id": 10518,
+ "start": 5574.8,
+ "end": 5576.06,
+ "text": "It"
+ },
+ {
+ "id": 10519,
+ "start": 5576.06,
+ "end": 5576.34,
+ "text": "certainly"
+ },
+ {
+ "id": 10520,
+ "start": 5576.34,
+ "end": 5576.6,
+ "text": "doesn't"
+ },
+ {
+ "id": 10521,
+ "start": 5576.6,
+ "end": 5576.76,
+ "text": "feel"
+ },
+ {
+ "id": 10522,
+ "start": 5576.76,
+ "end": 5576.9,
+ "text": "like"
+ },
+ {
+ "id": 10523,
+ "start": 5576.9,
+ "end": 5577.06,
+ "text": "that"
+ },
+ {
+ "id": 10524,
+ "start": 5577.06,
+ "end": 5577.18,
+ "text": "to"
+ },
+ {
+ "id": 10525,
+ "start": 5577.18,
+ "end": 5577.4,
+ "text": "me."
+ },
+ {
+ "id": 10526,
+ "start": 5577.4,
+ "end": 5579.28,
+ "text": "Okay,"
+ },
+ {
+ "id": 10527,
+ "start": 5579.28,
+ "end": 5580.64,
+ "text": "so"
+ },
+ {
+ "id": 10528,
+ "start": 5580.64,
+ "end": 5580.8,
+ "text": "it"
+ },
+ {
+ "id": 10529,
+ "start": 5580.8,
+ "end": 5583.74,
+ "text": "doesn't"
+ },
+ {
+ "id": 10530,
+ "start": 5583.74,
+ "end": 5584.78,
+ "text": "Instagram."
+ },
+ {
+ "id": 10531,
+ "start": 5584.78,
+ "end": 5584.96,
+ "text": "You"
+ },
+ {
+ "id": 10532,
+ "start": 5584.96,
+ "end": 5585.16,
+ "text": "bought"
+ },
+ {
+ "id": 10533,
+ "start": 5585.16,
+ "end": 5585.22,
+ "text": "an"
+ },
+ {
+ "id": 10534,
+ "start": 5585.22,
+ "end": 5585.68,
+ "text": "Instagram"
+ },
+ {
+ "id": 10535,
+ "start": 5585.68,
+ "end": 5585.84,
+ "text": "hear."
+ },
+ {
+ "id": 10536,
+ "start": 5585.84,
+ "end": 5586,
+ "text": "Did"
+ },
+ {
+ "id": 10537,
+ "start": 5586,
+ "end": 5586.1,
+ "text": "you"
+ },
+ {
+ "id": 10538,
+ "start": 5586.1,
+ "end": 5586.26,
+ "text": "buy"
+ },
+ {
+ "id": 10539,
+ "start": 5586.26,
+ "end": 5587.34,
+ "text": "Instagram"
+ },
+ {
+ "id": 10540,
+ "start": 5587.34,
+ "end": 5588.34,
+ "text": "because"
+ },
+ {
+ "id": 10541,
+ "start": 5588.34,
+ "end": 5588.78,
+ "text": "they"
+ },
+ {
+ "id": 10542,
+ "start": 5588.78,
+ "end": 5589.82,
+ "text": "were"
+ },
+ {
+ "id": 10543,
+ "start": 5589.82,
+ "end": 5590.08,
+ "text": "very"
+ },
+ {
+ "id": 10544,
+ "start": 5590.08,
+ "end": 5590.52,
+ "text": "talented"
+ },
+ {
+ "id": 10545,
+ "start": 5590.52,
+ "end": 5591.04,
+ "text": "app"
+ },
+ {
+ "id": 10546,
+ "start": 5591.04,
+ "end": 5591.58,
+ "text": "developers"
+ },
+ {
+ "id": 10547,
+ "start": 5591.58,
+ "end": 5591.78,
+ "text": "who"
+ },
+ {
+ "id": 10548,
+ "start": 5591.78,
+ "end": 5591.92,
+ "text": "are"
+ },
+ {
+ "id": 10549,
+ "start": 5591.92,
+ "end": 5592.16,
+ "text": "making"
+ },
+ {
+ "id": 10550,
+ "start": 5592.16,
+ "end": 5592.38,
+ "text": "good"
+ },
+ {
+ "id": 10551,
+ "start": 5592.38,
+ "end": 5592.58,
+ "text": "use"
+ },
+ {
+ "id": 10552,
+ "start": 5592.58,
+ "end": 5592.7,
+ "text": "of"
+ },
+ {
+ "id": 10553,
+ "start": 5592.7,
+ "end": 5592.86,
+ "text": "our"
+ },
+ {
+ "id": 10554,
+ "start": 5592.86,
+ "end": 5593.38,
+ "text": "platform"
+ },
+ {
+ "id": 10555,
+ "start": 5593.38,
+ "end": 5593.54,
+ "text": "and"
+ },
+ {
+ "id": 10556,
+ "start": 5593.54,
+ "end": 5594.02,
+ "text": "understood"
+ },
+ {
+ "id": 10557,
+ "start": 5594.02,
+ "end": 5594.16,
+ "text": "our"
+ },
+ {
+ "id": 10558,
+ "start": 5594.16,
+ "end": 5594.64,
+ "text": "values"
+ },
+ {
+ "id": 10559,
+ "start": 5594.64,
+ "end": 5595.04,
+ "text": "as"
+ },
+ {
+ "id": 10560,
+ "start": 5595.04,
+ "end": 5595.14,
+ "text": "a"
+ },
+ {
+ "id": 10561,
+ "start": 5595.14,
+ "end": 5595.34,
+ "text": "good"
+ },
+ {
+ "id": 10562,
+ "start": 5595.34,
+ "end": 5595.58,
+ "text": "bus"
+ },
+ {
+ "id": 10563,
+ "start": 5595.58,
+ "end": 5595.96,
+ "text": "decision."
+ },
+ {
+ "id": 10564,
+ "start": 5595.96,
+ "end": 5596.22,
+ "text": "My"
+ },
+ {
+ "id": 10565,
+ "start": 5596.22,
+ "end": 5596.52,
+ "text": "point"
+ },
+ {
+ "id": 10566,
+ "start": 5596.52,
+ "end": 5596.78,
+ "text": "is"
+ },
+ {
+ "id": 10567,
+ "start": 5596.78,
+ "end": 5598.52,
+ "text": "that"
+ },
+ {
+ "id": 10568,
+ "start": 5598.52,
+ "end": 5599.32,
+ "text": "one"
+ },
+ {
+ "id": 10569,
+ "start": 5599.32,
+ "end": 5599.48,
+ "text": "way"
+ },
+ {
+ "id": 10570,
+ "start": 5599.48,
+ "end": 5599.62,
+ "text": "to"
+ },
+ {
+ "id": 10571,
+ "start": 5599.62,
+ "end": 5600.08,
+ "text": "regulate"
+ },
+ {
+ "id": 10572,
+ "start": 5600.08,
+ "end": 5600.16,
+ "text": "a"
+ },
+ {
+ "id": 10573,
+ "start": 5600.16,
+ "end": 5600.58,
+ "text": "companies"
+ },
+ {
+ "id": 10574,
+ "start": 5600.58,
+ "end": 5600.8,
+ "text": "through"
+ },
+ {
+ "id": 10575,
+ "start": 5600.8,
+ "end": 5601.44,
+ "text": "competition"
+ },
+ {
+ "id": 10576,
+ "start": 5601.44,
+ "end": 5602.48,
+ "text": "through"
+ },
+ {
+ "id": 10577,
+ "start": 5602.48,
+ "end": 5602.94,
+ "text": "government"
+ },
+ {
+ "id": 10578,
+ "start": 5602.94,
+ "end": 5603.62,
+ "text": "regulation"
+ },
+ {
+ "id": 10579,
+ "start": 5603.62,
+ "end": 5604.52,
+ "text": "here's"
+ },
+ {
+ "id": 10580,
+ "start": 5604.52,
+ "end": 5604.66,
+ "text": "the"
+ },
+ {
+ "id": 10581,
+ "start": 5604.66,
+ "end": 5605.04,
+ "text": "question"
+ },
+ {
+ "id": 10582,
+ "start": 5605.04,
+ "end": 5605.3,
+ "text": "that"
+ },
+ {
+ "id": 10583,
+ "start": 5605.3,
+ "end": 5605.66,
+ "text": "all"
+ },
+ {
+ "id": 10584,
+ "start": 5605.66,
+ "end": 5605.74,
+ "text": "of"
+ },
+ {
+ "id": 10585,
+ "start": 5605.74,
+ "end": 5605.88,
+ "text": "us"
+ },
+ {
+ "id": 10586,
+ "start": 5605.88,
+ "end": 5606.04,
+ "text": "got"
+ },
+ {
+ "id": 10587,
+ "start": 5606.04,
+ "end": 5606.16,
+ "text": "an"
+ },
+ {
+ "id": 10588,
+ "start": 5606.16,
+ "end": 5606.52,
+ "text": "answer."
+ },
+ {
+ "id": 10589,
+ "start": 5606.52,
+ "end": 5606.96,
+ "text": "What"
+ },
+ {
+ "id": 10590,
+ "start": 5606.96,
+ "end": 5607.06,
+ "text": "do"
+ },
+ {
+ "id": 10591,
+ "start": 5607.06,
+ "end": 5607.2,
+ "text": "we"
+ },
+ {
+ "id": 10592,
+ "start": 5607.2,
+ "end": 5607.42,
+ "text": "tell"
+ },
+ {
+ "id": 10593,
+ "start": 5607.42,
+ "end": 5607.58,
+ "text": "our"
+ },
+ {
+ "id": 10594,
+ "start": 5607.58,
+ "end": 5608.42,
+ "text": "constituents?"
+ },
+ {
+ "id": 10595,
+ "start": 5608.42,
+ "end": 5609.38,
+ "text": "Given"
+ },
+ {
+ "id": 10596,
+ "start": 5609.38,
+ "end": 5609.68,
+ "text": "what's"
+ },
+ {
+ "id": 10597,
+ "start": 5609.68,
+ "end": 5610.14,
+ "text": "happened"
+ },
+ {
+ "id": 10598,
+ "start": 5610.14,
+ "end": 5610.96,
+ "text": "here,"
+ },
+ {
+ "id": 10599,
+ "start": 5610.96,
+ "end": 5611.56,
+ "text": "why"
+ },
+ {
+ "id": 10600,
+ "start": 5611.56,
+ "end": 5611.8,
+ "text": "we"
+ },
+ {
+ "id": 10601,
+ "start": 5611.8,
+ "end": 5612.1,
+ "text": "should"
+ },
+ {
+ "id": 10602,
+ "start": 5612.1,
+ "end": 5612.32,
+ "text": "let"
+ },
+ {
+ "id": 10603,
+ "start": 5612.32,
+ "end": 5612.48,
+ "text": "you"
+ },
+ {
+ "id": 10604,
+ "start": 5612.48,
+ "end": 5612.82,
+ "text": "self"
+ },
+ {
+ "id": 10605,
+ "start": 5612.82,
+ "end": 5613.4,
+ "text": "regulate."
+ },
+ {
+ "id": 10606,
+ "start": 5613.4,
+ "end": 5614.4,
+ "text": "What"
+ },
+ {
+ "id": 10607,
+ "start": 5614.4,
+ "end": 5614.6,
+ "text": "would"
+ },
+ {
+ "id": 10608,
+ "start": 5614.6,
+ "end": 5614.74,
+ "text": "you"
+ },
+ {
+ "id": 10609,
+ "start": 5614.74,
+ "end": 5615.12,
+ "text": "tell"
+ },
+ {
+ "id": 10610,
+ "start": 5615.12,
+ "end": 5615.46,
+ "text": "people"
+ },
+ {
+ "id": 10611,
+ "start": 5615.46,
+ "end": 5615.6,
+ "text": "in"
+ },
+ {
+ "id": 10612,
+ "start": 5615.6,
+ "end": 5615.94,
+ "text": "South"
+ },
+ {
+ "id": 10613,
+ "start": 5615.94,
+ "end": 5616.46,
+ "text": "Carolina"
+ },
+ {
+ "id": 10614,
+ "start": 5616.46,
+ "end": 5616.76,
+ "text": "that"
+ },
+ {
+ "id": 10615,
+ "start": 5616.76,
+ "end": 5616.98,
+ "text": "given"
+ },
+ {
+ "id": 10616,
+ "start": 5616.98,
+ "end": 5617.16,
+ "text": "all"
+ },
+ {
+ "id": 10617,
+ "start": 5617.16,
+ "end": 5617.3,
+ "text": "the"
+ },
+ {
+ "id": 10618,
+ "start": 5617.3,
+ "end": 5617.54,
+ "text": "things"
+ },
+ {
+ "id": 10619,
+ "start": 5617.54,
+ "end": 5617.68,
+ "text": "we"
+ },
+ {
+ "id": 10620,
+ "start": 5617.68,
+ "end": 5617.96,
+ "text": "just"
+ },
+ {
+ "id": 10621,
+ "start": 5617.96,
+ "end": 5618.5,
+ "text": "discovered"
+ },
+ {
+ "id": 10622,
+ "start": 5618.5,
+ "end": 5618.76,
+ "text": "here"
+ },
+ {
+ "id": 10623,
+ "start": 5618.76,
+ "end": 5619.56,
+ "text": "it's"
+ },
+ {
+ "id": 10624,
+ "start": 5619.56,
+ "end": 5619.66,
+ "text": "a"
+ },
+ {
+ "id": 10625,
+ "start": 5619.66,
+ "end": 5619.88,
+ "text": "good"
+ },
+ {
+ "id": 10626,
+ "start": 5619.88,
+ "end": 5620.3,
+ "text": "idea"
+ },
+ {
+ "id": 10627,
+ "start": 5620.3,
+ "end": 5620.52,
+ "text": "for"
+ },
+ {
+ "id": 10628,
+ "start": 5620.52,
+ "end": 5620.86,
+ "text": "us"
+ },
+ {
+ "id": 10629,
+ "start": 5620.86,
+ "end": 5621.26,
+ "text": "to"
+ },
+ {
+ "id": 10630,
+ "start": 5621.26,
+ "end": 5621.62,
+ "text": "rely"
+ },
+ {
+ "id": 10631,
+ "start": 5621.62,
+ "end": 5622.02,
+ "text": "upon"
+ },
+ {
+ "id": 10632,
+ "start": 5622.02,
+ "end": 5622.26,
+ "text": "you"
+ },
+ {
+ "id": 10633,
+ "start": 5622.26,
+ "end": 5622.42,
+ "text": "to"
+ },
+ {
+ "id": 10634,
+ "start": 5622.42,
+ "end": 5623.02,
+ "text": "regulate"
+ },
+ {
+ "id": 10635,
+ "start": 5623.02,
+ "end": 5623.28,
+ "text": "your"
+ },
+ {
+ "id": 10636,
+ "start": 5623.28,
+ "end": 5623.56,
+ "text": "own"
+ },
+ {
+ "id": 10637,
+ "start": 5623.56,
+ "end": 5624.34,
+ "text": "business"
+ },
+ {
+ "id": 10638,
+ "start": 5624.34,
+ "end": 5625.42,
+ "text": "practices."
+ },
+ {
+ "id": 10639,
+ "start": 5625.42,
+ "end": 5626.18,
+ "text": "Well,"
+ },
+ {
+ "id": 10640,
+ "start": 5626.18,
+ "end": 5626.68,
+ "text": "Senator,"
+ },
+ {
+ "id": 10641,
+ "start": 5626.68,
+ "end": 5627.08,
+ "text": "my"
+ },
+ {
+ "id": 10642,
+ "start": 5627.08,
+ "end": 5627.5,
+ "text": "position"
+ },
+ {
+ "id": 10643,
+ "start": 5627.5,
+ "end": 5627.68,
+ "text": "is"
+ },
+ {
+ "id": 10644,
+ "start": 5627.68,
+ "end": 5627.94,
+ "text": "not"
+ },
+ {
+ "id": 10645,
+ "start": 5627.94,
+ "end": 5628.08,
+ "text": "that"
+ },
+ {
+ "id": 10646,
+ "start": 5628.08,
+ "end": 5628.24,
+ "text": "there"
+ },
+ {
+ "id": 10647,
+ "start": 5628.24,
+ "end": 5628.48,
+ "text": "should"
+ },
+ {
+ "id": 10648,
+ "start": 5628.48,
+ "end": 5628.58,
+ "text": "be"
+ },
+ {
+ "id": 10649,
+ "start": 5628.58,
+ "end": 5628.72,
+ "text": "no"
+ },
+ {
+ "id": 10650,
+ "start": 5628.72,
+ "end": 5629.36,
+ "text": "regulation."
+ },
+ {
+ "id": 10651,
+ "start": 5629.36,
+ "end": 5629.98,
+ "text": "I"
+ },
+ {
+ "id": 10652,
+ "start": 5629.98,
+ "end": 5630.14,
+ "text": "think"
+ },
+ {
+ "id": 10653,
+ "start": 5630.14,
+ "end": 5630.28,
+ "text": "the"
+ },
+ {
+ "id": 10654,
+ "start": 5630.28,
+ "end": 5630.64,
+ "text": "Internet"
+ },
+ {
+ "id": 10655,
+ "start": 5630.64,
+ "end": 5630.76,
+ "text": "is"
+ },
+ {
+ "id": 10656,
+ "start": 5630.76,
+ "end": 5631.32,
+ "text": "increasingly"
+ },
+ {
+ "id": 10657,
+ "start": 5631.32,
+ "end": 5631.76,
+ "text": "embrace"
+ },
+ {
+ "id": 10658,
+ "start": 5631.76,
+ "end": 5632.46,
+ "text": "regulation."
+ },
+ {
+ "id": 10659,
+ "start": 5632.46,
+ "end": 5633.52,
+ "text": "I"
+ },
+ {
+ "id": 10660,
+ "start": 5633.52,
+ "end": 5633.7,
+ "text": "think"
+ },
+ {
+ "id": 10661,
+ "start": 5633.7,
+ "end": 5633.88,
+ "text": "the"
+ },
+ {
+ "id": 10662,
+ "start": 5633.88,
+ "end": 5634.14,
+ "text": "real"
+ },
+ {
+ "id": 10663,
+ "start": 5634.14,
+ "end": 5634.54,
+ "text": "question"
+ },
+ {
+ "id": 10664,
+ "start": 5634.54,
+ "end": 5635.1,
+ "text": "as"
+ },
+ {
+ "id": 10665,
+ "start": 5635.1,
+ "end": 5635.22,
+ "text": "the"
+ },
+ {
+ "id": 10666,
+ "start": 5635.22,
+ "end": 5635.58,
+ "text": "Internet"
+ },
+ {
+ "id": 10667,
+ "start": 5635.58,
+ "end": 5635.88,
+ "text": "becomes"
+ },
+ {
+ "id": 10668,
+ "start": 5635.88,
+ "end": 5636.1,
+ "text": "more"
+ },
+ {
+ "id": 10669,
+ "start": 5636.1,
+ "end": 5636.44,
+ "text": "important"
+ },
+ {
+ "id": 10670,
+ "start": 5636.44,
+ "end": 5636.52,
+ "text": "in"
+ },
+ {
+ "id": 10671,
+ "start": 5636.52,
+ "end": 5636.84,
+ "text": "people's"
+ },
+ {
+ "id": 10672,
+ "start": 5636.84,
+ "end": 5637.2,
+ "text": "lives"
+ },
+ {
+ "id": 10673,
+ "start": 5637.2,
+ "end": 5637.76,
+ "text": "is"
+ },
+ {
+ "id": 10674,
+ "start": 5637.76,
+ "end": 5637.94,
+ "text": "what"
+ },
+ {
+ "id": 10675,
+ "start": 5637.94,
+ "end": 5638.04,
+ "text": "is"
+ },
+ {
+ "id": 10676,
+ "start": 5638.04,
+ "end": 5638.29,
+ "text": "the"
+ },
+ {
+ "id": 10677,
+ "start": 5638.29,
+ "end": 5639.05,
+ "text": "regulation?"
+ },
+ {
+ "id": 10678,
+ "start": 5639.05,
+ "end": 5639.29,
+ "text": "Not"
+ },
+ {
+ "id": 10679,
+ "start": 5639.29,
+ "end": 5639.51,
+ "text": "whether"
+ },
+ {
+ "id": 10680,
+ "start": 5639.51,
+ "end": 5639.71,
+ "text": "there"
+ },
+ {
+ "id": 10681,
+ "start": 5639.71,
+ "end": 5639.95,
+ "text": "should"
+ },
+ {
+ "id": 10682,
+ "start": 5639.95,
+ "end": 5640.07,
+ "text": "be"
+ },
+ {
+ "id": 10683,
+ "start": 5640.07,
+ "end": 5640.23,
+ "text": "or"
+ },
+ {
+ "id": 10684,
+ "start": 5640.23,
+ "end": 5640.35,
+ "text": "you"
+ },
+ {
+ "id": 10685,
+ "start": 5640.35,
+ "end": 5640.53,
+ "text": "as"
+ },
+ {
+ "id": 10686,
+ "start": 5640.53,
+ "end": 5640.65,
+ "text": "a"
+ },
+ {
+ "id": 10687,
+ "start": 5640.65,
+ "end": 5641.17,
+ "text": "company."
+ },
+ {
+ "id": 10688,
+ "start": 5641.17,
+ "end": 5641.69,
+ "text": "Welcome"
+ },
+ {
+ "id": 10689,
+ "start": 5641.69,
+ "end": 5642.27,
+ "text": "regulation,"
+ },
+ {
+ "id": 10690,
+ "start": 5642.27,
+ "end": 5642.99,
+ "text": "I"
+ },
+ {
+ "id": 10691,
+ "start": 5642.99,
+ "end": 5643.15,
+ "text": "think."
+ },
+ {
+ "id": 10692,
+ "start": 5643.15,
+ "end": 5643.27,
+ "text": "If"
+ },
+ {
+ "id": 10693,
+ "start": 5643.27,
+ "end": 5643.49,
+ "text": "it's"
+ },
+ {
+ "id": 10694,
+ "start": 5643.49,
+ "end": 5643.65,
+ "text": "the"
+ },
+ {
+ "id": 10695,
+ "start": 5643.65,
+ "end": 5643.93,
+ "text": "right"
+ },
+ {
+ "id": 10696,
+ "start": 5643.93,
+ "end": 5644.45,
+ "text": "regulation,"
+ },
+ {
+ "id": 10697,
+ "start": 5644.45,
+ "end": 5644.65,
+ "text": "then"
+ },
+ {
+ "id": 10698,
+ "start": 5644.65,
+ "end": 5644.81,
+ "text": "you"
+ },
+ {
+ "id": 10699,
+ "start": 5644.81,
+ "end": 5645.03,
+ "text": "think"
+ },
+ {
+ "id": 10700,
+ "start": 5645.03,
+ "end": 5645.15,
+ "text": "the"
+ },
+ {
+ "id": 10701,
+ "start": 5645.15,
+ "end": 5645.67,
+ "text": "Europeans"
+ },
+ {
+ "id": 10702,
+ "start": 5645.67,
+ "end": 5645.85,
+ "text": "had"
+ },
+ {
+ "id": 10703,
+ "start": 5645.85,
+ "end": 5646.03,
+ "text": "it"
+ },
+ {
+ "id": 10704,
+ "start": 5646.03,
+ "end": 5646.31,
+ "text": "right."
+ },
+ {
+ "id": 10705,
+ "start": 5646.31,
+ "end": 5647.25,
+ "text": "I"
+ },
+ {
+ "id": 10706,
+ "start": 5647.25,
+ "end": 5647.43,
+ "text": "think"
+ },
+ {
+ "id": 10707,
+ "start": 5647.43,
+ "end": 5647.57,
+ "text": "that"
+ },
+ {
+ "id": 10708,
+ "start": 5647.57,
+ "end": 5647.85,
+ "text": "they"
+ },
+ {
+ "id": 10709,
+ "start": 5647.85,
+ "end": 5648.29,
+ "text": "get"
+ },
+ {
+ "id": 10710,
+ "start": 5648.29,
+ "end": 5648.77,
+ "text": "things"
+ },
+ {
+ "id": 10711,
+ "start": 5648.77,
+ "end": 5649.07,
+ "text": "right."
+ },
+ {
+ "id": 10712,
+ "start": 5649.07,
+ "end": 5649.31,
+ "text": "Have"
+ },
+ {
+ "id": 10713,
+ "start": 5649.31,
+ "end": 5649.43,
+ "text": "you"
+ },
+ {
+ "id": 10714,
+ "start": 5649.43,
+ "end": 5649.69,
+ "text": "ever"
+ },
+ {
+ "id": 10715,
+ "start": 5649.69,
+ "end": 5651.16,
+ "text": "submitted"
+ },
+ {
+ "id": 10716,
+ "start": 5651.16,
+ "end": 5652.34,
+ "text": "that's"
+ },
+ {
+ "id": 10717,
+ "start": 5652.34,
+ "end": 5653.24,
+ "text": "true."
+ },
+ {
+ "id": 10718,
+ "start": 5653.24,
+ "end": 5654.38,
+ "text": "So,"
+ },
+ {
+ "id": 10719,
+ "start": 5654.38,
+ "end": 5654.64,
+ "text": "would"
+ },
+ {
+ "id": 10720,
+ "start": 5654.64,
+ "end": 5654.78,
+ "text": "you"
+ },
+ {
+ "id": 10721,
+ "start": 5654.78,
+ "end": 5655.04,
+ "text": "work"
+ },
+ {
+ "id": 10722,
+ "start": 5655.04,
+ "end": 5655.24,
+ "text": "with"
+ },
+ {
+ "id": 10723,
+ "start": 5655.24,
+ "end": 5655.52,
+ "text": "us"
+ },
+ {
+ "id": 10724,
+ "start": 5655.52,
+ "end": 5655.7,
+ "text": "in"
+ },
+ {
+ "id": 10725,
+ "start": 5655.7,
+ "end": 5656,
+ "text": "terms"
+ },
+ {
+ "id": 10726,
+ "start": 5656,
+ "end": 5656.14,
+ "text": "of"
+ },
+ {
+ "id": 10727,
+ "start": 5656.14,
+ "end": 5656.32,
+ "text": "what"
+ },
+ {
+ "id": 10728,
+ "start": 5656.32,
+ "end": 5657.02,
+ "text": "regulations"
+ },
+ {
+ "id": 10729,
+ "start": 5657.02,
+ "end": 5657.24,
+ "text": "you"
+ },
+ {
+ "id": 10730,
+ "start": 5657.24,
+ "end": 5657.44,
+ "text": "think"
+ },
+ {
+ "id": 10731,
+ "start": 5657.44,
+ "end": 5657.6,
+ "text": "are"
+ },
+ {
+ "id": 10732,
+ "start": 5657.6,
+ "end": 5658.16,
+ "text": "necessary"
+ },
+ {
+ "id": 10733,
+ "start": 5658.16,
+ "end": 5658.26,
+ "text": "in"
+ },
+ {
+ "id": 10734,
+ "start": 5658.26,
+ "end": 5658.44,
+ "text": "your"
+ },
+ {
+ "id": 10735,
+ "start": 5658.44,
+ "end": 5658.86,
+ "text": "industry,"
+ },
+ {
+ "id": 10736,
+ "start": 5658.86,
+ "end": 5659.86,
+ "text": "absolutely,"
+ },
+ {
+ "id": 10737,
+ "start": 5659.86,
+ "end": 5660.3,
+ "text": "okay,"
+ },
+ {
+ "id": 10738,
+ "start": 5660.3,
+ "end": 5660.5,
+ "text": "would"
+ },
+ {
+ "id": 10739,
+ "start": 5660.5,
+ "end": 5660.64,
+ "text": "you"
+ },
+ {
+ "id": 10740,
+ "start": 5660.64,
+ "end": 5661.02,
+ "text": "submit"
+ },
+ {
+ "id": 10741,
+ "start": 5661.02,
+ "end": 5661.52,
+ "text": "some"
+ },
+ {
+ "id": 10742,
+ "start": 5661.52,
+ "end": 5661.9,
+ "text": "proposed"
+ },
+ {
+ "id": 10743,
+ "start": 5661.9,
+ "end": 5662.56,
+ "text": "regulations?"
+ },
+ {
+ "id": 10744,
+ "start": 5662.56,
+ "end": 5663.46,
+ "text": "Yes,"
+ },
+ {
+ "id": 10745,
+ "start": 5663.46,
+ "end": 5663.62,
+ "text": "and"
+ },
+ {
+ "id": 10746,
+ "start": 5663.62,
+ "end": 5663.82,
+ "text": "I'll"
+ },
+ {
+ "id": 10747,
+ "start": 5663.82,
+ "end": 5663.96,
+ "text": "have"
+ },
+ {
+ "id": 10748,
+ "start": 5663.96,
+ "end": 5664.12,
+ "text": "my"
+ },
+ {
+ "id": 10749,
+ "start": 5664.12,
+ "end": 5664.42,
+ "text": "team"
+ },
+ {
+ "id": 10750,
+ "start": 5664.42,
+ "end": 5664.72,
+ "text": "follow"
+ },
+ {
+ "id": 10751,
+ "start": 5664.72,
+ "end": 5664.84,
+ "text": "up"
+ },
+ {
+ "id": 10752,
+ "start": 5664.84,
+ "end": 5665.08,
+ "text": "with"
+ },
+ {
+ "id": 10753,
+ "start": 5665.08,
+ "end": 5665.3,
+ "text": "you?"
+ },
+ {
+ "id": 10754,
+ "start": 5665.3,
+ "end": 5665.64,
+ "text": "So"
+ },
+ {
+ "id": 10755,
+ "start": 5665.64,
+ "end": 5665.78,
+ "text": "that"
+ },
+ {
+ "id": 10756,
+ "start": 5665.78,
+ "end": 5665.94,
+ "text": "way"
+ },
+ {
+ "id": 10757,
+ "start": 5665.94,
+ "end": 5666.1,
+ "text": "we"
+ },
+ {
+ "id": 10758,
+ "start": 5666.1,
+ "end": 5666.34,
+ "text": "can"
+ },
+ {
+ "id": 10759,
+ "start": 5666.34,
+ "end": 5666.96,
+ "text": "have"
+ },
+ {
+ "id": 10760,
+ "start": 5666.96,
+ "end": 5667.12,
+ "text": "this"
+ },
+ {
+ "id": 10761,
+ "start": 5667.12,
+ "end": 5667.52,
+ "text": "discussion"
+ },
+ {
+ "id": 10762,
+ "start": 5667.52,
+ "end": 5667.8,
+ "text": "across"
+ },
+ {
+ "id": 10763,
+ "start": 5667.8,
+ "end": 5667.94,
+ "text": "the"
+ },
+ {
+ "id": 10764,
+ "start": 5667.94,
+ "end": 5668.22,
+ "text": "different"
+ },
+ {
+ "id": 10765,
+ "start": 5668.22,
+ "end": 5668.76,
+ "text": "categories"
+ },
+ {
+ "id": 10766,
+ "start": 5668.76,
+ "end": 5669.06,
+ "text": "where"
+ },
+ {
+ "id": 10767,
+ "start": 5669.06,
+ "end": 5669.42,
+ "text": "I"
+ },
+ {
+ "id": 10768,
+ "start": 5669.42,
+ "end": 5669.58,
+ "text": "think"
+ },
+ {
+ "id": 10769,
+ "start": 5669.58,
+ "end": 5669.7,
+ "text": "that"
+ },
+ {
+ "id": 10770,
+ "start": 5669.7,
+ "end": 5669.88,
+ "text": "this"
+ },
+ {
+ "id": 10771,
+ "start": 5669.88,
+ "end": 5670.26,
+ "text": "discussion"
+ },
+ {
+ "id": 10772,
+ "start": 5670.26,
+ "end": 5670.46,
+ "text": "needs"
+ },
+ {
+ "id": 10773,
+ "start": 5670.46,
+ "end": 5670.56,
+ "text": "to"
+ },
+ {
+ "id": 10774,
+ "start": 5670.56,
+ "end": 5671.1,
+ "text": "forward"
+ },
+ {
+ "id": 10775,
+ "start": 5671.1,
+ "end": 5671.28,
+ "text": "to?"
+ },
+ {
+ "id": 10776,
+ "start": 5671.28,
+ "end": 5671.5,
+ "text": "When"
+ },
+ {
+ "id": 10777,
+ "start": 5671.5,
+ "end": 5671.64,
+ "text": "you"
+ },
+ {
+ "id": 10778,
+ "start": 5671.64,
+ "end": 5671.88,
+ "text": "sign"
+ },
+ {
+ "id": 10779,
+ "start": 5671.88,
+ "end": 5671.98,
+ "text": "up"
+ },
+ {
+ "id": 10780,
+ "start": 5671.98,
+ "end": 5672.16,
+ "text": "for"
+ },
+ {
+ "id": 10781,
+ "start": 5672.16,
+ "end": 5672.74,
+ "text": "Facebook,"
+ },
+ {
+ "id": 10782,
+ "start": 5672.74,
+ "end": 5673.52,
+ "text": "you"
+ },
+ {
+ "id": 10783,
+ "start": 5673.52,
+ "end": 5673.94,
+ "text": "sign"
+ },
+ {
+ "id": 10784,
+ "start": 5673.94,
+ "end": 5674.2,
+ "text": "up"
+ },
+ {
+ "id": 10785,
+ "start": 5674.2,
+ "end": 5674.82,
+ "text": "for"
+ },
+ {
+ "id": 10786,
+ "start": 5674.82,
+ "end": 5675.18,
+ "text": "terms"
+ },
+ {
+ "id": 10787,
+ "start": 5675.18,
+ "end": 5675.32,
+ "text": "of"
+ },
+ {
+ "id": 10788,
+ "start": 5675.32,
+ "end": 5675.68,
+ "text": "service,"
+ },
+ {
+ "id": 10789,
+ "start": 5675.68,
+ "end": 5675.84,
+ "text": "are"
+ },
+ {
+ "id": 10790,
+ "start": 5675.84,
+ "end": 5675.96,
+ "text": "you"
+ },
+ {
+ "id": 10791,
+ "start": 5675.96,
+ "end": 5676.26,
+ "text": "familiar"
+ },
+ {
+ "id": 10792,
+ "start": 5676.26,
+ "end": 5676.38,
+ "text": "with"
+ },
+ {
+ "id": 10793,
+ "start": 5676.38,
+ "end": 5676.58,
+ "text": "that?"
+ },
+ {
+ "id": 10794,
+ "start": 5676.58,
+ "end": 5677.44,
+ "text": "Yes,"
+ },
+ {
+ "id": 10795,
+ "start": 5677.44,
+ "end": 5678.52,
+ "text": "okay,"
+ },
+ {
+ "id": 10796,
+ "start": 5678.52,
+ "end": 5679.18,
+ "text": "it"
+ },
+ {
+ "id": 10797,
+ "start": 5679.18,
+ "end": 5679.62,
+ "text": "says"
+ },
+ {
+ "id": 10798,
+ "start": 5679.62,
+ "end": 5680.38,
+ "text": "the"
+ },
+ {
+ "id": 10799,
+ "start": 5680.38,
+ "end": 5680.76,
+ "text": "terms"
+ },
+ {
+ "id": 10800,
+ "start": 5680.76,
+ "end": 5681.12,
+ "text": "govern"
+ },
+ {
+ "id": 10801,
+ "start": 5681.12,
+ "end": 5681.34,
+ "text": "our"
+ },
+ {
+ "id": 10802,
+ "start": 5681.34,
+ "end": 5681.56,
+ "text": "use"
+ },
+ {
+ "id": 10803,
+ "start": 5681.56,
+ "end": 5681.7,
+ "text": "of"
+ },
+ {
+ "id": 10804,
+ "start": 5681.7,
+ "end": 5682.24,
+ "text": "Facebook"
+ },
+ {
+ "id": 10805,
+ "start": 5682.24,
+ "end": 5682.4,
+ "text": "and"
+ },
+ {
+ "id": 10806,
+ "start": 5682.4,
+ "end": 5682.52,
+ "text": "the"
+ },
+ {
+ "id": 10807,
+ "start": 5682.52,
+ "end": 5682.96,
+ "text": "products"
+ },
+ {
+ "id": 10808,
+ "start": 5682.96,
+ "end": 5683.6,
+ "text": "features"
+ },
+ {
+ "id": 10809,
+ "start": 5683.6,
+ "end": 5684.02,
+ "text": "app"
+ },
+ {
+ "id": 10810,
+ "start": 5684.02,
+ "end": 5684.52,
+ "text": "services"
+ },
+ {
+ "id": 10811,
+ "start": 5684.52,
+ "end": 5685.18,
+ "text": "technology"
+ },
+ {
+ "id": 10812,
+ "start": 5685.18,
+ "end": 5685.74,
+ "text": "software."
+ },
+ {
+ "id": 10813,
+ "start": 5685.74,
+ "end": 5685.92,
+ "text": "We"
+ },
+ {
+ "id": 10814,
+ "start": 5685.92,
+ "end": 5686.28,
+ "text": "offer"
+ },
+ {
+ "id": 10815,
+ "start": 5686.28,
+ "end": 5687.26,
+ "text": "Facebook's"
+ },
+ {
+ "id": 10816,
+ "start": 5687.26,
+ "end": 5687.7,
+ "text": "products"
+ },
+ {
+ "id": 10817,
+ "start": 5687.7,
+ "end": 5687.88,
+ "text": "or"
+ },
+ {
+ "id": 10818,
+ "start": 5687.88,
+ "end": 5688.72,
+ "text": "products,"
+ },
+ {
+ "id": 10819,
+ "start": 5688.72,
+ "end": 5689.06,
+ "text": "except"
+ },
+ {
+ "id": 10820,
+ "start": 5689.06,
+ "end": 5689.28,
+ "text": "where"
+ },
+ {
+ "id": 10821,
+ "start": 5689.28,
+ "end": 5689.38,
+ "text": "we"
+ },
+ {
+ "id": 10822,
+ "start": 5689.38,
+ "end": 5690,
+ "text": "expressly"
+ },
+ {
+ "id": 10823,
+ "start": 5690,
+ "end": 5690.36,
+ "text": "state"
+ },
+ {
+ "id": 10824,
+ "start": 5690.36,
+ "end": 5690.6,
+ "text": "that"
+ },
+ {
+ "id": 10825,
+ "start": 5690.6,
+ "end": 5691,
+ "text": "separate"
+ },
+ {
+ "id": 10826,
+ "start": 5691,
+ "end": 5691.36,
+ "text": "terms"
+ },
+ {
+ "id": 10827,
+ "start": 5691.36,
+ "end": 5691.62,
+ "text": "and"
+ },
+ {
+ "id": 10828,
+ "start": 5691.62,
+ "end": 5691.84,
+ "text": "not"
+ },
+ {
+ "id": 10829,
+ "start": 5691.84,
+ "end": 5692.1,
+ "text": "these"
+ },
+ {
+ "id": 10830,
+ "start": 5692.1,
+ "end": 5692.62,
+ "text": "apply"
+ },
+ {
+ "id": 10831,
+ "start": 5692.62,
+ "end": 5693.32,
+ "text": "I'm"
+ },
+ {
+ "id": 10832,
+ "start": 5693.32,
+ "end": 5693.42,
+ "text": "a"
+ },
+ {
+ "id": 10833,
+ "start": 5693.42,
+ "end": 5693.68,
+ "text": "lawyer."
+ },
+ {
+ "id": 10834,
+ "start": 5693.68,
+ "end": 5693.74,
+ "text": "I"
+ },
+ {
+ "id": 10835,
+ "start": 5693.74,
+ "end": 5693.88,
+ "text": "have"
+ },
+ {
+ "id": 10836,
+ "start": 5693.88,
+ "end": 5694,
+ "text": "no"
+ },
+ {
+ "id": 10837,
+ "start": 5694,
+ "end": 5694.22,
+ "text": "idea"
+ },
+ {
+ "id": 10838,
+ "start": 5694.22,
+ "end": 5694.38,
+ "text": "what"
+ },
+ {
+ "id": 10839,
+ "start": 5694.38,
+ "end": 5694.54,
+ "text": "that"
+ },
+ {
+ "id": 10840,
+ "start": 5694.54,
+ "end": 5694.82,
+ "text": "means."
+ },
+ {
+ "id": 10841,
+ "start": 5694.82,
+ "end": 5695.48,
+ "text": "But"
+ },
+ {
+ "id": 10842,
+ "start": 5695.48,
+ "end": 5695.62,
+ "text": "when"
+ },
+ {
+ "id": 10843,
+ "start": 5695.62,
+ "end": 5695.78,
+ "text": "you"
+ },
+ {
+ "id": 10844,
+ "start": 5695.78,
+ "end": 5695.98,
+ "text": "look"
+ },
+ {
+ "id": 10845,
+ "start": 5695.98,
+ "end": 5696.1,
+ "text": "at"
+ },
+ {
+ "id": 10846,
+ "start": 5696.1,
+ "end": 5696.48,
+ "text": "terms"
+ },
+ {
+ "id": 10847,
+ "start": 5696.48,
+ "end": 5696.62,
+ "text": "of"
+ },
+ {
+ "id": 10848,
+ "start": 5696.62,
+ "end": 5697.02,
+ "text": "service,"
+ },
+ {
+ "id": 10849,
+ "start": 5697.02,
+ "end": 5697.64,
+ "text": "this"
+ },
+ {
+ "id": 10850,
+ "start": 5697.64,
+ "end": 5697.78,
+ "text": "is"
+ },
+ {
+ "id": 10851,
+ "start": 5697.78,
+ "end": 5697.96,
+ "text": "what"
+ },
+ {
+ "id": 10852,
+ "start": 5697.96,
+ "end": 5698.14,
+ "text": "you"
+ },
+ {
+ "id": 10853,
+ "start": 5698.14,
+ "end": 5698.92,
+ "text": "get."
+ },
+ {
+ "id": 10854,
+ "start": 5698.92,
+ "end": 5699.46,
+ "text": "Do"
+ },
+ {
+ "id": 10855,
+ "start": 5699.46,
+ "end": 5699.6,
+ "text": "you"
+ },
+ {
+ "id": 10856,
+ "start": 5699.6,
+ "end": 5699.76,
+ "text": "think"
+ },
+ {
+ "id": 10857,
+ "start": 5699.76,
+ "end": 5699.92,
+ "text": "the"
+ },
+ {
+ "id": 10858,
+ "start": 5699.92,
+ "end": 5700.38,
+ "text": "average"
+ },
+ {
+ "id": 10859,
+ "start": 5700.38,
+ "end": 5701.06,
+ "text": "consumer"
+ },
+ {
+ "id": 10860,
+ "start": 5701.06,
+ "end": 5702.2,
+ "text": "understands"
+ },
+ {
+ "id": 10861,
+ "start": 5702.2,
+ "end": 5702.4,
+ "text": "what"
+ },
+ {
+ "id": 10862,
+ "start": 5702.4,
+ "end": 5702.62,
+ "text": "they're"
+ },
+ {
+ "id": 10863,
+ "start": 5702.62,
+ "end": 5702.98,
+ "text": "signing"
+ },
+ {
+ "id": 10864,
+ "start": 5702.98,
+ "end": 5703.14,
+ "text": "up"
+ },
+ {
+ "id": 10865,
+ "start": 5703.14,
+ "end": 5704.38,
+ "text": "for?"
+ },
+ {
+ "id": 10866,
+ "start": 5704.38,
+ "end": 5704.6,
+ "text": "I"
+ },
+ {
+ "id": 10867,
+ "start": 5704.6,
+ "end": 5705.62,
+ "text": "don't"
+ },
+ {
+ "id": 10868,
+ "start": 5705.62,
+ "end": 5705.84,
+ "text": "think"
+ },
+ {
+ "id": 10869,
+ "start": 5705.84,
+ "end": 5705.98,
+ "text": "that"
+ },
+ {
+ "id": 10870,
+ "start": 5705.98,
+ "end": 5706.12,
+ "text": "the"
+ },
+ {
+ "id": 10871,
+ "start": 5706.12,
+ "end": 5706.5,
+ "text": "average"
+ },
+ {
+ "id": 10872,
+ "start": 5706.5,
+ "end": 5706.94,
+ "text": "person"
+ },
+ {
+ "id": 10873,
+ "start": 5706.94,
+ "end": 5707.58,
+ "text": "likely"
+ },
+ {
+ "id": 10874,
+ "start": 5707.58,
+ "end": 5707.92,
+ "text": "reads"
+ },
+ {
+ "id": 10875,
+ "start": 5707.92,
+ "end": 5708.16,
+ "text": "that"
+ },
+ {
+ "id": 10876,
+ "start": 5708.16,
+ "end": 5708.38,
+ "text": "whole"
+ },
+ {
+ "id": 10877,
+ "start": 5708.38,
+ "end": 5708.84,
+ "text": "document,"
+ },
+ {
+ "id": 10878,
+ "start": 5708.84,
+ "end": 5709.2,
+ "text": "but"
+ },
+ {
+ "id": 10879,
+ "start": 5709.2,
+ "end": 5709.24,
+ "text": "I"
+ },
+ {
+ "id": 10880,
+ "start": 5709.24,
+ "end": 5709.4,
+ "text": "think"
+ },
+ {
+ "id": 10881,
+ "start": 5709.4,
+ "end": 5709.5,
+ "text": "that"
+ },
+ {
+ "id": 10882,
+ "start": 5709.5,
+ "end": 5709.64,
+ "text": "there"
+ },
+ {
+ "id": 10883,
+ "start": 5709.64,
+ "end": 5709.74,
+ "text": "are"
+ },
+ {
+ "id": 10884,
+ "start": 5709.74,
+ "end": 5710.04,
+ "text": "different"
+ },
+ {
+ "id": 10885,
+ "start": 5710.04,
+ "end": 5710.32,
+ "text": "ways"
+ },
+ {
+ "id": 10886,
+ "start": 5710.32,
+ "end": 5710.56,
+ "text": "that"
+ },
+ {
+ "id": 10887,
+ "start": 5710.56,
+ "end": 5710.66,
+ "text": "we"
+ },
+ {
+ "id": 10888,
+ "start": 5710.66,
+ "end": 5710.86,
+ "text": "can"
+ },
+ {
+ "id": 10889,
+ "start": 5710.86,
+ "end": 5711.42,
+ "text": "communicate"
+ },
+ {
+ "id": 10890,
+ "start": 5711.42,
+ "end": 5711.58,
+ "text": "that"
+ },
+ {
+ "id": 10891,
+ "start": 5711.58,
+ "end": 5711.72,
+ "text": "and"
+ },
+ {
+ "id": 10892,
+ "start": 5711.72,
+ "end": 5711.88,
+ "text": "have"
+ },
+ {
+ "id": 10893,
+ "start": 5711.88,
+ "end": 5711.94,
+ "text": "a"
+ },
+ {
+ "id": 10894,
+ "start": 5711.94,
+ "end": 5712.7,
+ "text": "responsibility"
+ },
+ {
+ "id": 10895,
+ "start": 5712.7,
+ "end": 5712.8,
+ "text": "to"
+ },
+ {
+ "id": 10896,
+ "start": 5712.8,
+ "end": 5712.96,
+ "text": "do."
+ },
+ {
+ "id": 10897,
+ "start": 5712.96,
+ "end": 5713.2,
+ "text": "So"
+ },
+ {
+ "id": 10898,
+ "start": 5713.2,
+ "end": 5713.38,
+ "text": "do"
+ },
+ {
+ "id": 10899,
+ "start": 5713.38,
+ "end": 5713.9,
+ "text": "you"
+ },
+ {
+ "id": 10900,
+ "start": 5713.9,
+ "end": 5714.14,
+ "text": "agree"
+ },
+ {
+ "id": 10901,
+ "start": 5714.14,
+ "end": 5714.28,
+ "text": "with"
+ },
+ {
+ "id": 10902,
+ "start": 5714.28,
+ "end": 5714.4,
+ "text": "me?"
+ },
+ {
+ "id": 10903,
+ "start": 5714.4,
+ "end": 5714.6,
+ "text": "That"
+ },
+ {
+ "id": 10904,
+ "start": 5714.6,
+ "end": 5714.72,
+ "text": "you"
+ },
+ {
+ "id": 10905,
+ "start": 5714.72,
+ "end": 5715.02,
+ "text": "better"
+ },
+ {
+ "id": 10906,
+ "start": 5715.02,
+ "end": 5715.18,
+ "text": "come"
+ },
+ {
+ "id": 10907,
+ "start": 5715.18,
+ "end": 5715.3,
+ "text": "up"
+ },
+ {
+ "id": 10908,
+ "start": 5715.3,
+ "end": 5715.44,
+ "text": "with"
+ },
+ {
+ "id": 10909,
+ "start": 5715.44,
+ "end": 5715.76,
+ "text": "different"
+ },
+ {
+ "id": 10910,
+ "start": 5715.76,
+ "end": 5716.06,
+ "text": "ways"
+ },
+ {
+ "id": 10911,
+ "start": 5716.06,
+ "end": 5716.38,
+ "text": "because"
+ },
+ {
+ "id": 10912,
+ "start": 5716.38,
+ "end": 5716.6,
+ "text": "this"
+ },
+ {
+ "id": 10913,
+ "start": 5716.6,
+ "end": 5716.68,
+ "text": "I"
+ },
+ {
+ "id": 10914,
+ "start": 5716.68,
+ "end": 5716.92,
+ "text": "ain't"
+ },
+ {
+ "id": 10915,
+ "start": 5716.92,
+ "end": 5718.86,
+ "text": "working"
+ },
+ {
+ "id": 10916,
+ "start": 5718.86,
+ "end": 5719.86,
+ "text": "well,"
+ },
+ {
+ "id": 10917,
+ "start": 5719.86,
+ "end": 5720.26,
+ "text": "Senator,"
+ },
+ {
+ "id": 10918,
+ "start": 5720.26,
+ "end": 5720.34,
+ "text": "I"
+ },
+ {
+ "id": 10919,
+ "start": 5720.34,
+ "end": 5720.52,
+ "text": "think"
+ },
+ {
+ "id": 10920,
+ "start": 5720.52,
+ "end": 5720.68,
+ "text": "in"
+ },
+ {
+ "id": 10921,
+ "start": 5720.68,
+ "end": 5721.04,
+ "text": "certain"
+ },
+ {
+ "id": 10922,
+ "start": 5721.04,
+ "end": 5721.46,
+ "text": "areas"
+ },
+ {
+ "id": 10923,
+ "start": 5721.46,
+ "end": 5722.24,
+ "text": "that"
+ },
+ {
+ "id": 10924,
+ "start": 5722.24,
+ "end": 5722.76,
+ "text": "is"
+ },
+ {
+ "id": 10925,
+ "start": 5722.76,
+ "end": 5723.26,
+ "text": "true."
+ },
+ {
+ "id": 10926,
+ "start": 5723.26,
+ "end": 5723.7,
+ "text": "And"
+ },
+ {
+ "id": 10927,
+ "start": 5723.7,
+ "end": 5723.76,
+ "text": "I"
+ },
+ {
+ "id": 10928,
+ "start": 5723.76,
+ "end": 5723.94,
+ "text": "think"
+ },
+ {
+ "id": 10929,
+ "start": 5723.94,
+ "end": 5724.06,
+ "text": "in"
+ },
+ {
+ "id": 10930,
+ "start": 5724.06,
+ "end": 5724.3,
+ "text": "other"
+ },
+ {
+ "id": 10931,
+ "start": 5724.3,
+ "end": 5724.62,
+ "text": "areas"
+ },
+ {
+ "id": 10932,
+ "start": 5724.62,
+ "end": 5724.8,
+ "text": "like"
+ },
+ {
+ "id": 10933,
+ "start": 5724.8,
+ "end": 5724.92,
+ "text": "the"
+ },
+ {
+ "id": 10934,
+ "start": 5724.92,
+ "end": 5725.24,
+ "text": "core"
+ },
+ {
+ "id": 10935,
+ "start": 5725.24,
+ "end": 5725.48,
+ "text": "part"
+ },
+ {
+ "id": 10936,
+ "start": 5725.48,
+ "end": 5725.56,
+ "text": "of"
+ },
+ {
+ "id": 10937,
+ "start": 5725.56,
+ "end": 5725.72,
+ "text": "what"
+ },
+ {
+ "id": 10938,
+ "start": 5725.72,
+ "end": 5725.82,
+ "text": "we"
+ },
+ {
+ "id": 10939,
+ "start": 5725.82,
+ "end": 5726.04,
+ "text": "do."
+ },
+ {
+ "id": 10940,
+ "start": 5726.04,
+ "end": 5726.48,
+ "text": "But"
+ },
+ {
+ "id": 10941,
+ "start": 5726.48,
+ "end": 5726.56,
+ "text": "if"
+ },
+ {
+ "id": 10942,
+ "start": 5726.56,
+ "end": 5726.84,
+ "text": "you"
+ },
+ {
+ "id": 10943,
+ "start": 5726.84,
+ "end": 5726.98,
+ "text": "think"
+ },
+ {
+ "id": 10944,
+ "start": 5726.98,
+ "end": 5727.18,
+ "text": "about"
+ },
+ {
+ "id": 10945,
+ "start": 5727.18,
+ "end": 5727.32,
+ "text": "just"
+ },
+ {
+ "id": 10946,
+ "start": 5727.32,
+ "end": 5727.46,
+ "text": "at"
+ },
+ {
+ "id": 10947,
+ "start": 5727.46,
+ "end": 5727.56,
+ "text": "the"
+ },
+ {
+ "id": 10948,
+ "start": 5727.56,
+ "end": 5727.76,
+ "text": "most"
+ },
+ {
+ "id": 10949,
+ "start": 5727.76,
+ "end": 5728.12,
+ "text": "basic"
+ },
+ {
+ "id": 10950,
+ "start": 5728.12,
+ "end": 5728.4,
+ "text": "level,"
+ },
+ {
+ "id": 10951,
+ "start": 5728.4,
+ "end": 5729.24,
+ "text": "people"
+ },
+ {
+ "id": 10952,
+ "start": 5729.24,
+ "end": 5729.48,
+ "text": "come"
+ },
+ {
+ "id": 10953,
+ "start": 5729.48,
+ "end": 5729.64,
+ "text": "to"
+ },
+ {
+ "id": 10954,
+ "start": 5729.64,
+ "end": 5730.2,
+ "text": "Facebook"
+ },
+ {
+ "id": 10955,
+ "start": 5730.2,
+ "end": 5730.72,
+ "text": "Instagram"
+ },
+ {
+ "id": 10956,
+ "start": 5730.72,
+ "end": 5730.96,
+ "text": "what's"
+ },
+ {
+ "id": 10957,
+ "start": 5730.96,
+ "end": 5731.2,
+ "text": "that"
+ },
+ {
+ "id": 10958,
+ "start": 5731.2,
+ "end": 5732.02,
+ "text": "Messenger"
+ },
+ {
+ "id": 10959,
+ "start": 5732.02,
+ "end": 5732.66,
+ "text": "about"
+ },
+ {
+ "id": 10960,
+ "start": 5732.66,
+ "end": 5733.54,
+ "text": "100,000,000,000"
+ },
+ {
+ "id": 10961,
+ "start": 5733.54,
+ "end": 5733.92,
+ "text": "times"
+ },
+ {
+ "id": 10962,
+ "start": 5733.92,
+ "end": 5734.02,
+ "text": "a"
+ },
+ {
+ "id": 10963,
+ "start": 5734.02,
+ "end": 5734.2,
+ "text": "day"
+ },
+ {
+ "id": 10964,
+ "start": 5734.2,
+ "end": 5734.8,
+ "text": "to"
+ },
+ {
+ "id": 10965,
+ "start": 5734.8,
+ "end": 5735.12,
+ "text": "share"
+ },
+ {
+ "id": 10966,
+ "start": 5735.12,
+ "end": 5735.18,
+ "text": "a"
+ },
+ {
+ "id": 10967,
+ "start": 5735.18,
+ "end": 5735.48,
+ "text": "piece"
+ },
+ {
+ "id": 10968,
+ "start": 5735.48,
+ "end": 5735.6,
+ "text": "of"
+ },
+ {
+ "id": 10969,
+ "start": 5735.6,
+ "end": 5736,
+ "text": "content"
+ },
+ {
+ "id": 10970,
+ "start": 5736,
+ "end": 5736.12,
+ "text": "or"
+ },
+ {
+ "id": 10971,
+ "start": 5736.12,
+ "end": 5736.22,
+ "text": "a"
+ },
+ {
+ "id": 10972,
+ "start": 5736.22,
+ "end": 5736.66,
+ "text": "message"
+ },
+ {
+ "id": 10973,
+ "start": 5736.66,
+ "end": 5737.14,
+ "text": "with"
+ },
+ {
+ "id": 10974,
+ "start": 5737.14,
+ "end": 5737.24,
+ "text": "a"
+ },
+ {
+ "id": 10975,
+ "start": 5737.24,
+ "end": 5737.78,
+ "text": "specific"
+ },
+ {
+ "id": 10976,
+ "start": 5737.78,
+ "end": 5737.98,
+ "text": "set"
+ },
+ {
+ "id": 10977,
+ "start": 5737.98,
+ "end": 5738.08,
+ "text": "of"
+ },
+ {
+ "id": 10978,
+ "start": 5738.08,
+ "end": 5738.36,
+ "text": "people."
+ },
+ {
+ "id": 10979,
+ "start": 5738.36,
+ "end": 5739.22,
+ "text": "And"
+ },
+ {
+ "id": 10980,
+ "start": 5739.22,
+ "end": 5739.66,
+ "text": "I"
+ },
+ {
+ "id": 10981,
+ "start": 5739.66,
+ "end": 5739.86,
+ "text": "think"
+ },
+ {
+ "id": 10982,
+ "start": 5739.86,
+ "end": 5740,
+ "text": "that"
+ },
+ {
+ "id": 10983,
+ "start": 5740,
+ "end": 5740.28,
+ "text": "that"
+ },
+ {
+ "id": 10984,
+ "start": 5740.28,
+ "end": 5740.76,
+ "text": "basic"
+ },
+ {
+ "id": 10985,
+ "start": 5740.76,
+ "end": 5741.46,
+ "text": "functionality,"
+ },
+ {
+ "id": 10986,
+ "start": 5741.46,
+ "end": 5742.16,
+ "text": "people"
+ },
+ {
+ "id": 10987,
+ "start": 5742.16,
+ "end": 5742.68,
+ "text": "understand"
+ },
+ {
+ "id": 10988,
+ "start": 5742.68,
+ "end": 5742.96,
+ "text": "because"
+ },
+ {
+ "id": 10989,
+ "start": 5742.96,
+ "end": 5743.06,
+ "text": "we"
+ },
+ {
+ "id": 10990,
+ "start": 5743.06,
+ "end": 5743.18,
+ "text": "have"
+ },
+ {
+ "id": 10991,
+ "start": 5743.18,
+ "end": 5743.28,
+ "text": "the"
+ },
+ {
+ "id": 10992,
+ "start": 5743.28,
+ "end": 5743.68,
+ "text": "controls"
+ },
+ {
+ "id": 10993,
+ "start": 5743.68,
+ "end": 5743.84,
+ "text": "in"
+ },
+ {
+ "id": 10994,
+ "start": 5743.84,
+ "end": 5744.06,
+ "text": "line"
+ },
+ {
+ "id": 10995,
+ "start": 5744.06,
+ "end": 5744.3,
+ "text": "every"
+ },
+ {
+ "id": 10996,
+ "start": 5744.3,
+ "end": 5744.58,
+ "text": "time"
+ },
+ {
+ "id": 10997,
+ "start": 5744.58,
+ "end": 5745.3,
+ "text": "and"
+ },
+ {
+ "id": 10998,
+ "start": 5745.3,
+ "end": 5745.8,
+ "text": "given"
+ },
+ {
+ "id": 10999,
+ "start": 5745.8,
+ "end": 5746.48,
+ "text": "the"
+ },
+ {
+ "id": 11000,
+ "start": 5746.48,
+ "end": 5746.96,
+ "text": "volume"
+ },
+ {
+ "id": 11001,
+ "start": 5746.96,
+ "end": 5747.36,
+ "text": "of"
+ },
+ {
+ "id": 11002,
+ "start": 5747.36,
+ "end": 5748.16,
+ "text": "the"
+ },
+ {
+ "id": 11003,
+ "start": 5748.16,
+ "end": 5748.62,
+ "text": "activity"
+ },
+ {
+ "id": 11004,
+ "start": 5748.62,
+ "end": 5748.82,
+ "text": "and"
+ },
+ {
+ "id": 11005,
+ "start": 5748.82,
+ "end": 5748.94,
+ "text": "the"
+ },
+ {
+ "id": 11006,
+ "start": 5748.94,
+ "end": 5749.28,
+ "text": "value"
+ },
+ {
+ "id": 11007,
+ "start": 5749.28,
+ "end": 5749.44,
+ "text": "that"
+ },
+ {
+ "id": 11008,
+ "start": 5749.44,
+ "end": 5749.76,
+ "text": "people"
+ },
+ {
+ "id": 11009,
+ "start": 5749.76,
+ "end": 5750.16,
+ "text": "tell"
+ },
+ {
+ "id": 11010,
+ "start": 5750.16,
+ "end": 5750.26,
+ "text": "us"
+ },
+ {
+ "id": 11011,
+ "start": 5750.26,
+ "end": 5750.4,
+ "text": "that"
+ },
+ {
+ "id": 11012,
+ "start": 5750.4,
+ "end": 5750.58,
+ "text": "they're"
+ },
+ {
+ "id": 11013,
+ "start": 5750.58,
+ "end": 5750.8,
+ "text": "getting"
+ },
+ {
+ "id": 11014,
+ "start": 5750.8,
+ "end": 5750.96,
+ "text": "from"
+ },
+ {
+ "id": 11015,
+ "start": 5750.96,
+ "end": 5751.56,
+ "text": "that."
+ },
+ {
+ "id": 11016,
+ "start": 5751.56,
+ "end": 5751.9,
+ "text": "I"
+ },
+ {
+ "id": 11017,
+ "start": 5751.9,
+ "end": 5752.26,
+ "text": "think"
+ },
+ {
+ "id": 11018,
+ "start": 5752.26,
+ "end": 5752.4,
+ "text": "that"
+ },
+ {
+ "id": 11019,
+ "start": 5752.4,
+ "end": 5752.72,
+ "text": "that"
+ },
+ {
+ "id": 11020,
+ "start": 5752.72,
+ "end": 5753.32,
+ "text": "control"
+ },
+ {
+ "id": 11021,
+ "start": 5753.32,
+ "end": 5753.54,
+ "text": "in"
+ },
+ {
+ "id": 11022,
+ "start": 5753.54,
+ "end": 5753.86,
+ "text": "line"
+ },
+ {
+ "id": 11023,
+ "start": 5753.86,
+ "end": 5754.32,
+ "text": "does"
+ },
+ {
+ "id": 11024,
+ "start": 5754.32,
+ "end": 5754.58,
+ "text": "seem"
+ },
+ {
+ "id": 11025,
+ "start": 5754.58,
+ "end": 5754.7,
+ "text": "to"
+ },
+ {
+ "id": 11026,
+ "start": 5754.7,
+ "end": 5754.82,
+ "text": "be"
+ },
+ {
+ "id": 11027,
+ "start": 5754.82,
+ "end": 5755.1,
+ "text": "working"
+ },
+ {
+ "id": 11028,
+ "start": 5755.1,
+ "end": 5755.48,
+ "text": "fairly"
+ },
+ {
+ "id": 11029,
+ "start": 5755.48,
+ "end": 5755.7,
+ "text": "well."
+ },
+ {
+ "id": 11030,
+ "start": 5755.7,
+ "end": 5756.2,
+ "text": "Now"
+ },
+ {
+ "id": 11031,
+ "start": 5756.2,
+ "end": 5756.3,
+ "text": "we"
+ },
+ {
+ "id": 11032,
+ "start": 5756.3,
+ "end": 5756.44,
+ "text": "can"
+ },
+ {
+ "id": 11033,
+ "start": 5756.44,
+ "end": 5756.7,
+ "text": "always"
+ },
+ {
+ "id": 11034,
+ "start": 5756.7,
+ "end": 5756.8,
+ "text": "do"
+ },
+ {
+ "id": 11035,
+ "start": 5756.8,
+ "end": 5757.06,
+ "text": "better"
+ },
+ {
+ "id": 11036,
+ "start": 5757.06,
+ "end": 5757.64,
+ "text": "and"
+ },
+ {
+ "id": 11037,
+ "start": 5757.64,
+ "end": 5757.8,
+ "text": "there"
+ },
+ {
+ "id": 11038,
+ "start": 5757.8,
+ "end": 5757.92,
+ "text": "are"
+ },
+ {
+ "id": 11039,
+ "start": 5757.92,
+ "end": 5758.16,
+ "text": "other"
+ },
+ {
+ "id": 11040,
+ "start": 5758.16,
+ "end": 5759.14,
+ "text": "services"
+ },
+ {
+ "id": 11041,
+ "start": 5759.14,
+ "end": 5759.32,
+ "text": "are"
+ },
+ {
+ "id": 11042,
+ "start": 5759.32,
+ "end": 5759.74,
+ "text": "complex"
+ },
+ {
+ "id": 11043,
+ "start": 5759.74,
+ "end": 5759.9,
+ "text": "and"
+ },
+ {
+ "id": 11044,
+ "start": 5759.9,
+ "end": 5760.04,
+ "text": "there"
+ },
+ {
+ "id": 11045,
+ "start": 5760.04,
+ "end": 5760.6,
+ "text": "is"
+ },
+ {
+ "id": 11046,
+ "start": 5760.6,
+ "end": 5760.88,
+ "text": "more"
+ },
+ {
+ "id": 11047,
+ "start": 5760.88,
+ "end": 5761.04,
+ "text": "to"
+ },
+ {
+ "id": 11048,
+ "start": 5761.04,
+ "end": 5761.14,
+ "text": "it."
+ },
+ {
+ "id": 11049,
+ "start": 5761.14,
+ "end": 5761.38,
+ "text": "Than"
+ },
+ {
+ "id": 11050,
+ "start": 5761.38,
+ "end": 5762.4,
+ "text": "just"
+ },
+ {
+ "id": 11051,
+ "start": 5762.4,
+ "end": 5763.54,
+ "text": "you"
+ },
+ {
+ "id": 11052,
+ "start": 5763.54,
+ "end": 5763.66,
+ "text": "go"
+ },
+ {
+ "id": 11053,
+ "start": 5763.66,
+ "end": 5763.82,
+ "text": "and"
+ },
+ {
+ "id": 11054,
+ "start": 5763.82,
+ "end": 5763.94,
+ "text": "you"
+ },
+ {
+ "id": 11055,
+ "start": 5763.94,
+ "end": 5764.14,
+ "text": "post"
+ },
+ {
+ "id": 11056,
+ "start": 5764.14,
+ "end": 5764.24,
+ "text": "a"
+ },
+ {
+ "id": 11057,
+ "start": 5764.24,
+ "end": 5764.52,
+ "text": "photo."
+ },
+ {
+ "id": 11058,
+ "start": 5764.52,
+ "end": 5765.64,
+ "text": "So"
+ },
+ {
+ "id": 11059,
+ "start": 5765.64,
+ "end": 5766.54,
+ "text": "I"
+ },
+ {
+ "id": 11060,
+ "start": 5766.54,
+ "end": 5766.84,
+ "text": "agree"
+ },
+ {
+ "id": 11061,
+ "start": 5766.84,
+ "end": 5767.36,
+ "text": "that"
+ },
+ {
+ "id": 11062,
+ "start": 5767.36,
+ "end": 5767.48,
+ "text": "in"
+ },
+ {
+ "id": 11063,
+ "start": 5767.48,
+ "end": 5767.68,
+ "text": "many"
+ },
+ {
+ "id": 11064,
+ "start": 5767.68,
+ "end": 5768,
+ "text": "places"
+ },
+ {
+ "id": 11065,
+ "start": 5768,
+ "end": 5768.1,
+ "text": "we"
+ },
+ {
+ "id": 11066,
+ "start": 5768.1,
+ "end": 5768.24,
+ "text": "could"
+ },
+ {
+ "id": 11067,
+ "start": 5768.24,
+ "end": 5768.32,
+ "text": "do"
+ },
+ {
+ "id": 11068,
+ "start": 5768.32,
+ "end": 5768.52,
+ "text": "better."
+ },
+ {
+ "id": 11069,
+ "start": 5768.52,
+ "end": 5768.62,
+ "text": "But"
+ },
+ {
+ "id": 11070,
+ "start": 5768.62,
+ "end": 5768.66,
+ "text": "I"
+ },
+ {
+ "id": 11071,
+ "start": 5768.66,
+ "end": 5768.82,
+ "text": "think"
+ },
+ {
+ "id": 11072,
+ "start": 5768.82,
+ "end": 5768.92,
+ "text": "for"
+ },
+ {
+ "id": 11073,
+ "start": 5768.92,
+ "end": 5769.04,
+ "text": "the"
+ },
+ {
+ "id": 11074,
+ "start": 5769.04,
+ "end": 5769.24,
+ "text": "core"
+ },
+ {
+ "id": 11075,
+ "start": 5769.24,
+ "end": 5769.32,
+ "text": "of"
+ },
+ {
+ "id": 11076,
+ "start": 5769.32,
+ "end": 5769.44,
+ "text": "the"
+ },
+ {
+ "id": 11077,
+ "start": 5769.44,
+ "end": 5769.8,
+ "text": "service"
+ },
+ {
+ "id": 11078,
+ "start": 5769.8,
+ "end": 5770.06,
+ "text": "it"
+ },
+ {
+ "id": 11079,
+ "start": 5770.06,
+ "end": 5770.46,
+ "text": "actually"
+ },
+ {
+ "id": 11080,
+ "start": 5770.46,
+ "end": 5770.7,
+ "text": "is"
+ },
+ {
+ "id": 11081,
+ "start": 5770.7,
+ "end": 5771.46,
+ "text": "quite"
+ },
+ {
+ "id": 11082,
+ "start": 5771.46,
+ "end": 5771.74,
+ "text": "clear."
+ },
+ {
+ "id": 11083,
+ "start": 5771.74,
+ "end": 5772.42,
+ "text": "Thank"
+ },
+ {
+ "id": 11084,
+ "start": 5772.42,
+ "end": 5772.52,
+ "text": "you,"
+ },
+ {
+ "id": 11085,
+ "start": 5772.52,
+ "end": 5772.82,
+ "text": "Senator."
+ },
+ {
+ "id": 11086,
+ "start": 5772.82,
+ "end": 5773.04,
+ "text": "Graham"
+ },
+ {
+ "id": 11087,
+ "start": 5773.04,
+ "end": 5773.24,
+ "text": "center"
+ },
+ {
+ "id": 11088,
+ "start": 5773.24,
+ "end": 5774.26,
+ "text": "kosher."
+ },
+ {
+ "id": 11089,
+ "start": 5774.26,
+ "end": 5774.44,
+ "text": "Thank"
+ },
+ {
+ "id": 11090,
+ "start": 5774.44,
+ "end": 5774.56,
+ "text": "you,"
+ },
+ {
+ "id": 11091,
+ "start": 5774.56,
+ "end": 5775,
+ "text": "Mr"
+ },
+ {
+ "id": 11092,
+ "start": 5775,
+ "end": 5775.52,
+ "text": "Mr"
+ },
+ {
+ "id": 11093,
+ "start": 5775.52,
+ "end": 5776,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 11094,
+ "start": 5776,
+ "end": 5776.28,
+ "text": "I"
+ },
+ {
+ "id": 11095,
+ "start": 5776.28,
+ "end": 5776.46,
+ "text": "think"
+ },
+ {
+ "id": 11096,
+ "start": 5776.46,
+ "end": 5776.58,
+ "text": "we"
+ },
+ {
+ "id": 11097,
+ "start": 5776.58,
+ "end": 5776.74,
+ "text": "all"
+ },
+ {
+ "id": 11098,
+ "start": 5776.74,
+ "end": 5777.06,
+ "text": "agree"
+ },
+ {
+ "id": 11099,
+ "start": 5777.06,
+ "end": 5777.28,
+ "text": "that"
+ },
+ {
+ "id": 11100,
+ "start": 5777.28,
+ "end": 5777.48,
+ "text": "what"
+ },
+ {
+ "id": 11101,
+ "start": 5777.48,
+ "end": 5777.82,
+ "text": "happened"
+ },
+ {
+ "id": 11102,
+ "start": 5777.82,
+ "end": 5777.96,
+ "text": "here"
+ },
+ {
+ "id": 11103,
+ "start": 5777.96,
+ "end": 5778.14,
+ "text": "was"
+ },
+ {
+ "id": 11104,
+ "start": 5778.14,
+ "end": 5778.46,
+ "text": "bad"
+ },
+ {
+ "id": 11105,
+ "start": 5778.46,
+ "end": 5778.64,
+ "text": "you"
+ },
+ {
+ "id": 11106,
+ "start": 5778.64,
+ "end": 5779.14,
+ "text": "acknowledge"
+ },
+ {
+ "id": 11107,
+ "start": 5779.14,
+ "end": 5779.28,
+ "text": "it"
+ },
+ {
+ "id": 11108,
+ "start": 5779.28,
+ "end": 5779.42,
+ "text": "was"
+ },
+ {
+ "id": 11109,
+ "start": 5779.42,
+ "end": 5779.5,
+ "text": "a"
+ },
+ {
+ "id": 11110,
+ "start": 5779.5,
+ "end": 5779.8,
+ "text": "breach"
+ },
+ {
+ "id": 11111,
+ "start": 5779.8,
+ "end": 5779.92,
+ "text": "of"
+ },
+ {
+ "id": 11112,
+ "start": 5779.92,
+ "end": 5780.34,
+ "text": "trust"
+ },
+ {
+ "id": 11113,
+ "start": 5780.34,
+ "end": 5780.56,
+ "text": "and"
+ },
+ {
+ "id": 11114,
+ "start": 5780.56,
+ "end": 5780.94,
+ "text": "the"
+ },
+ {
+ "id": 11115,
+ "start": 5780.94,
+ "end": 5781.06,
+ "text": "way"
+ },
+ {
+ "id": 11116,
+ "start": 5781.06,
+ "end": 5781.14,
+ "text": "I"
+ },
+ {
+ "id": 11117,
+ "start": 5781.14,
+ "end": 5781.52,
+ "text": "explained"
+ },
+ {
+ "id": 11118,
+ "start": 5781.52,
+ "end": 5781.62,
+ "text": "it"
+ },
+ {
+ "id": 11119,
+ "start": 5781.62,
+ "end": 5781.72,
+ "text": "to"
+ },
+ {
+ "id": 11120,
+ "start": 5781.72,
+ "end": 5781.88,
+ "text": "my"
+ },
+ {
+ "id": 11121,
+ "start": 5781.88,
+ "end": 5782.6,
+ "text": "constituents."
+ },
+ {
+ "id": 11122,
+ "start": 5782.6,
+ "end": 5782.76,
+ "text": "Is"
+ },
+ {
+ "id": 11123,
+ "start": 5782.76,
+ "end": 5782.92,
+ "text": "that"
+ },
+ {
+ "id": 11124,
+ "start": 5782.92,
+ "end": 5783.04,
+ "text": "if"
+ },
+ {
+ "id": 11125,
+ "start": 5783.04,
+ "end": 5783.4,
+ "text": "someone"
+ },
+ {
+ "id": 11126,
+ "start": 5783.4,
+ "end": 5783.96,
+ "text": "breaks"
+ },
+ {
+ "id": 11127,
+ "start": 5783.96,
+ "end": 5784.22,
+ "text": "into"
+ },
+ {
+ "id": 11128,
+ "start": 5784.22,
+ "end": 5784.36,
+ "text": "my"
+ },
+ {
+ "id": 11129,
+ "start": 5784.36,
+ "end": 5784.76,
+ "text": "apartment"
+ },
+ {
+ "id": 11130,
+ "start": 5784.76,
+ "end": 5784.92,
+ "text": "with"
+ },
+ {
+ "id": 11131,
+ "start": 5784.92,
+ "end": 5785.04,
+ "text": "a"
+ },
+ {
+ "id": 11132,
+ "start": 5785.04,
+ "end": 5785.58,
+ "text": "crowbar"
+ },
+ {
+ "id": 11133,
+ "start": 5785.58,
+ "end": 5786.22,
+ "text": "and"
+ },
+ {
+ "id": 11134,
+ "start": 5786.22,
+ "end": 5786.46,
+ "text": "they"
+ },
+ {
+ "id": 11135,
+ "start": 5786.46,
+ "end": 5786.74,
+ "text": "take"
+ },
+ {
+ "id": 11136,
+ "start": 5786.74,
+ "end": 5787,
+ "text": "my"
+ },
+ {
+ "id": 11137,
+ "start": 5787,
+ "end": 5787.6,
+ "text": "stuff"
+ },
+ {
+ "id": 11138,
+ "start": 5787.6,
+ "end": 5788.14,
+ "text": "it's"
+ },
+ {
+ "id": 11139,
+ "start": 5788.14,
+ "end": 5788.36,
+ "text": "just"
+ },
+ {
+ "id": 11140,
+ "start": 5788.36,
+ "end": 5788.58,
+ "text": "like"
+ },
+ {
+ "id": 11141,
+ "start": 5788.58,
+ "end": 5788.72,
+ "text": "if"
+ },
+ {
+ "id": 11142,
+ "start": 5788.72,
+ "end": 5788.86,
+ "text": "the"
+ },
+ {
+ "id": 11143,
+ "start": 5788.86,
+ "end": 5789.28,
+ "text": "manager"
+ },
+ {
+ "id": 11144,
+ "start": 5789.28,
+ "end": 5789.46,
+ "text": "gave"
+ },
+ {
+ "id": 11145,
+ "start": 5789.46,
+ "end": 5789.64,
+ "text": "them"
+ },
+ {
+ "id": 11146,
+ "start": 5789.64,
+ "end": 5789.76,
+ "text": "the"
+ },
+ {
+ "id": 11147,
+ "start": 5789.76,
+ "end": 5790.14,
+ "text": "keys"
+ },
+ {
+ "id": 11148,
+ "start": 5790.14,
+ "end": 5790.32,
+ "text": "or"
+ },
+ {
+ "id": 11149,
+ "start": 5790.32,
+ "end": 5790.46,
+ "text": "if"
+ },
+ {
+ "id": 11150,
+ "start": 5790.46,
+ "end": 5790.6,
+ "text": "they"
+ },
+ {
+ "id": 11151,
+ "start": 5790.6,
+ "end": 5790.84,
+ "text": "didn't"
+ },
+ {
+ "id": 11152,
+ "start": 5790.84,
+ "end": 5791,
+ "text": "have"
+ },
+ {
+ "id": 11153,
+ "start": 5791,
+ "end": 5791.22,
+ "text": "any"
+ },
+ {
+ "id": 11154,
+ "start": 5791.22,
+ "end": 5791.54,
+ "text": "locks"
+ },
+ {
+ "id": 11155,
+ "start": 5791.54,
+ "end": 5791.7,
+ "text": "on"
+ },
+ {
+ "id": 11156,
+ "start": 5791.7,
+ "end": 5791.84,
+ "text": "the"
+ },
+ {
+ "id": 11157,
+ "start": 5791.84,
+ "end": 5792.22,
+ "text": "doors"
+ },
+ {
+ "id": 11158,
+ "start": 5792.22,
+ "end": 5792.44,
+ "text": "it's"
+ },
+ {
+ "id": 11159,
+ "start": 5792.44,
+ "end": 5792.72,
+ "text": "still"
+ },
+ {
+ "id": 11160,
+ "start": 5792.72,
+ "end": 5792.8,
+ "text": "a"
+ },
+ {
+ "id": 11161,
+ "start": 5792.8,
+ "end": 5793.18,
+ "text": "breach"
+ },
+ {
+ "id": 11162,
+ "start": 5793.18,
+ "end": 5793.76,
+ "text": "I'd"
+ },
+ {
+ "id": 11163,
+ "start": 5793.76,
+ "end": 5794,
+ "text": "still"
+ },
+ {
+ "id": 11164,
+ "start": 5794,
+ "end": 5794.08,
+ "text": "a"
+ },
+ {
+ "id": 11165,
+ "start": 5794.08,
+ "end": 5794.38,
+ "text": "break"
+ },
+ {
+ "id": 11166,
+ "start": 5794.38,
+ "end": 5794.62,
+ "text": "in"
+ },
+ {
+ "id": 11167,
+ "start": 5794.62,
+ "end": 5795.28,
+ "text": "and"
+ },
+ {
+ "id": 11168,
+ "start": 5795.28,
+ "end": 5795.86,
+ "text": "I"
+ },
+ {
+ "id": 11169,
+ "start": 5795.86,
+ "end": 5796.18,
+ "text": "believe"
+ },
+ {
+ "id": 11170,
+ "start": 5796.18,
+ "end": 5796.32,
+ "text": "we"
+ },
+ {
+ "id": 11171,
+ "start": 5796.32,
+ "end": 5796.52,
+ "text": "need"
+ },
+ {
+ "id": 11172,
+ "start": 5796.52,
+ "end": 5796.6,
+ "text": "to"
+ },
+ {
+ "id": 11173,
+ "start": 5796.6,
+ "end": 5796.78,
+ "text": "have"
+ },
+ {
+ "id": 11174,
+ "start": 5796.78,
+ "end": 5797.2,
+ "text": "laws"
+ },
+ {
+ "id": 11175,
+ "start": 5797.2,
+ "end": 5797.36,
+ "text": "and"
+ },
+ {
+ "id": 11176,
+ "start": 5797.36,
+ "end": 5797.8,
+ "text": "rules"
+ },
+ {
+ "id": 11177,
+ "start": 5797.8,
+ "end": 5798.24,
+ "text": "that"
+ },
+ {
+ "id": 11178,
+ "start": 5798.24,
+ "end": 5798.4,
+ "text": "are"
+ },
+ {
+ "id": 11179,
+ "start": 5798.4,
+ "end": 5799.32,
+ "text": "sophisticated"
+ },
+ {
+ "id": 11180,
+ "start": 5799.32,
+ "end": 5799.64,
+ "text": "as"
+ },
+ {
+ "id": 11181,
+ "start": 5799.64,
+ "end": 5799.98,
+ "text": "the"
+ },
+ {
+ "id": 11182,
+ "start": 5799.98,
+ "end": 5801.21,
+ "text": "brilliant"
+ },
+ {
+ "id": 11183,
+ "start": 5801.21,
+ "end": 5801.63,
+ "text": "products"
+ },
+ {
+ "id": 11184,
+ "start": 5801.63,
+ "end": 5801.85,
+ "text": "that"
+ },
+ {
+ "id": 11185,
+ "start": 5801.85,
+ "end": 5802.05,
+ "text": "you've"
+ },
+ {
+ "id": 11186,
+ "start": 5802.05,
+ "end": 5802.47,
+ "text": "developed"
+ },
+ {
+ "id": 11187,
+ "start": 5802.47,
+ "end": 5802.71,
+ "text": "here."
+ },
+ {
+ "id": 11188,
+ "start": 5802.71,
+ "end": 5803.13,
+ "text": "And"
+ },
+ {
+ "id": 11189,
+ "start": 5803.13,
+ "end": 5803.27,
+ "text": "we"
+ },
+ {
+ "id": 11190,
+ "start": 5803.27,
+ "end": 5803.45,
+ "text": "just"
+ },
+ {
+ "id": 11191,
+ "start": 5803.45,
+ "end": 5803.75,
+ "text": "haven't"
+ },
+ {
+ "id": 11192,
+ "start": 5803.75,
+ "end": 5803.95,
+ "text": "done"
+ },
+ {
+ "id": 11193,
+ "start": 5803.95,
+ "end": 5804.17,
+ "text": "that"
+ },
+ {
+ "id": 11194,
+ "start": 5804.17,
+ "end": 5804.39,
+ "text": "yet"
+ },
+ {
+ "id": 11195,
+ "start": 5804.39,
+ "end": 5804.95,
+ "text": "and"
+ },
+ {
+ "id": 11196,
+ "start": 5804.95,
+ "end": 5805.25,
+ "text": "one"
+ },
+ {
+ "id": 11197,
+ "start": 5805.25,
+ "end": 5805.35,
+ "text": "of"
+ },
+ {
+ "id": 11198,
+ "start": 5805.35,
+ "end": 5805.49,
+ "text": "the"
+ },
+ {
+ "id": 11199,
+ "start": 5805.49,
+ "end": 5805.91,
+ "text": "areas"
+ },
+ {
+ "id": 11200,
+ "start": 5805.91,
+ "end": 5806.09,
+ "text": "that"
+ },
+ {
+ "id": 11201,
+ "start": 5806.09,
+ "end": 5806.17,
+ "text": "I"
+ },
+ {
+ "id": 11202,
+ "start": 5806.17,
+ "end": 5806.69,
+ "text": "focused"
+ },
+ {
+ "id": 11203,
+ "start": 5806.69,
+ "end": 5806.89,
+ "text": "on"
+ },
+ {
+ "id": 11204,
+ "start": 5806.89,
+ "end": 5807.11,
+ "text": "is"
+ },
+ {
+ "id": 11205,
+ "start": 5807.11,
+ "end": 5807.27,
+ "text": "the"
+ },
+ {
+ "id": 11206,
+ "start": 5807.27,
+ "end": 5807.77,
+ "text": "election."
+ },
+ {
+ "id": 11207,
+ "start": 5807.77,
+ "end": 5808.03,
+ "text": "And"
+ },
+ {
+ "id": 11208,
+ "start": 5808.03,
+ "end": 5808.13,
+ "text": "I"
+ },
+ {
+ "id": 11209,
+ "start": 5808.13,
+ "end": 5808.73,
+ "text": "appreciate"
+ },
+ {
+ "id": 11210,
+ "start": 5808.73,
+ "end": 5809.13,
+ "text": "the"
+ },
+ {
+ "id": 11211,
+ "start": 5809.13,
+ "end": 5809.53,
+ "text": "support"
+ },
+ {
+ "id": 11212,
+ "start": 5809.53,
+ "end": 5809.71,
+ "text": "that"
+ },
+ {
+ "id": 11213,
+ "start": 5809.71,
+ "end": 5809.83,
+ "text": "you"
+ },
+ {
+ "id": 11214,
+ "start": 5809.83,
+ "end": 5810.01,
+ "text": "and"
+ },
+ {
+ "id": 11215,
+ "start": 5810.01,
+ "end": 5810.55,
+ "text": "Facebook."
+ },
+ {
+ "id": 11216,
+ "start": 5810.55,
+ "end": 5811.13,
+ "text": "And"
+ },
+ {
+ "id": 11217,
+ "start": 5811.13,
+ "end": 5811.35,
+ "text": "now"
+ },
+ {
+ "id": 11218,
+ "start": 5811.35,
+ "end": 5811.77,
+ "text": "Twitter"
+ },
+ {
+ "id": 11219,
+ "start": 5811.77,
+ "end": 5812.29,
+ "text": "actually"
+ },
+ {
+ "id": 11220,
+ "start": 5812.29,
+ "end": 5812.51,
+ "text": "have"
+ },
+ {
+ "id": 11221,
+ "start": 5812.51,
+ "end": 5812.85,
+ "text": "given"
+ },
+ {
+ "id": 11222,
+ "start": 5812.85,
+ "end": 5813.05,
+ "text": "to"
+ },
+ {
+ "id": 11223,
+ "start": 5813.05,
+ "end": 5813.17,
+ "text": "the"
+ },
+ {
+ "id": 11224,
+ "start": 5813.17,
+ "end": 5813.55,
+ "text": "honest"
+ },
+ {
+ "id": 11225,
+ "start": 5813.55,
+ "end": 5813.85,
+ "text": "ads"
+ },
+ {
+ "id": 11226,
+ "start": 5813.85,
+ "end": 5814.21,
+ "text": "act."
+ },
+ {
+ "id": 11227,
+ "start": 5814.21,
+ "end": 5814.33,
+ "text": "A"
+ },
+ {
+ "id": 11228,
+ "start": 5814.33,
+ "end": 5814.82,
+ "text": "bill"
+ },
+ {
+ "id": 11229,
+ "start": 5814.82,
+ "end": 5815.22,
+ "text": "that"
+ },
+ {
+ "id": 11230,
+ "start": 5815.22,
+ "end": 5815.36,
+ "text": "you"
+ },
+ {
+ "id": 11231,
+ "start": 5815.36,
+ "end": 5815.78,
+ "text": "mentioned"
+ },
+ {
+ "id": 11232,
+ "start": 5815.78,
+ "end": 5815.98,
+ "text": "that"
+ },
+ {
+ "id": 11233,
+ "start": 5815.98,
+ "end": 5816.14,
+ "text": "I'm"
+ },
+ {
+ "id": 11234,
+ "start": 5816.14,
+ "end": 5816.48,
+ "text": "leading"
+ },
+ {
+ "id": 11235,
+ "start": 5816.48,
+ "end": 5816.68,
+ "text": "with"
+ },
+ {
+ "id": 11236,
+ "start": 5816.68,
+ "end": 5817.18,
+ "text": "Senator"
+ },
+ {
+ "id": 11237,
+ "start": 5817.18,
+ "end": 5818.06,
+ "text": "McCain"
+ },
+ {
+ "id": 11238,
+ "start": 5818.06,
+ "end": 5818.26,
+ "text": "and"
+ },
+ {
+ "id": 11239,
+ "start": 5818.26,
+ "end": 5818.68,
+ "text": "Senator"
+ },
+ {
+ "id": 11240,
+ "start": 5818.68,
+ "end": 5819.1,
+ "text": "Warner."
+ },
+ {
+ "id": 11241,
+ "start": 5819.1,
+ "end": 5819.66,
+ "text": "And"
+ },
+ {
+ "id": 11242,
+ "start": 5819.66,
+ "end": 5819.78,
+ "text": "I"
+ },
+ {
+ "id": 11243,
+ "start": 5819.78,
+ "end": 5819.96,
+ "text": "just"
+ },
+ {
+ "id": 11244,
+ "start": 5819.96,
+ "end": 5820.14,
+ "text": "want"
+ },
+ {
+ "id": 11245,
+ "start": 5820.14,
+ "end": 5820.2,
+ "text": "to"
+ },
+ {
+ "id": 11246,
+ "start": 5820.2,
+ "end": 5820.32,
+ "text": "be"
+ },
+ {
+ "id": 11247,
+ "start": 5820.32,
+ "end": 5820.56,
+ "text": "clear"
+ },
+ {
+ "id": 11248,
+ "start": 5820.56,
+ "end": 5820.86,
+ "text": "as"
+ },
+ {
+ "id": 11249,
+ "start": 5820.86,
+ "end": 5820.96,
+ "text": "we"
+ },
+ {
+ "id": 11250,
+ "start": 5820.96,
+ "end": 5821.24,
+ "text": "work"
+ },
+ {
+ "id": 11251,
+ "start": 5821.24,
+ "end": 5821.38,
+ "text": "to"
+ },
+ {
+ "id": 11252,
+ "start": 5821.38,
+ "end": 5821.8,
+ "text": "pass"
+ },
+ {
+ "id": 11253,
+ "start": 5821.8,
+ "end": 5822.08,
+ "text": "this"
+ },
+ {
+ "id": 11254,
+ "start": 5822.08,
+ "end": 5822.36,
+ "text": "law"
+ },
+ {
+ "id": 11255,
+ "start": 5822.36,
+ "end": 5822.92,
+ "text": "so"
+ },
+ {
+ "id": 11256,
+ "start": 5822.92,
+ "end": 5823.08,
+ "text": "that"
+ },
+ {
+ "id": 11257,
+ "start": 5823.08,
+ "end": 5823.2,
+ "text": "we"
+ },
+ {
+ "id": 11258,
+ "start": 5823.2,
+ "end": 5823.32,
+ "text": "have"
+ },
+ {
+ "id": 11259,
+ "start": 5823.32,
+ "end": 5823.44,
+ "text": "the"
+ },
+ {
+ "id": 11260,
+ "start": 5823.44,
+ "end": 5823.66,
+ "text": "same"
+ },
+ {
+ "id": 11261,
+ "start": 5823.66,
+ "end": 5823.88,
+ "text": "rules"
+ },
+ {
+ "id": 11262,
+ "start": 5823.88,
+ "end": 5824.08,
+ "text": "in"
+ },
+ {
+ "id": 11263,
+ "start": 5824.08,
+ "end": 5824.44,
+ "text": "place"
+ },
+ {
+ "id": 11264,
+ "start": 5824.44,
+ "end": 5824.66,
+ "text": "to"
+ },
+ {
+ "id": 11265,
+ "start": 5824.66,
+ "end": 5825.26,
+ "text": "disclose"
+ },
+ {
+ "id": 11266,
+ "start": 5825.26,
+ "end": 5826.1,
+ "text": "political"
+ },
+ {
+ "id": 11267,
+ "start": 5826.1,
+ "end": 5826.48,
+ "text": "ads"
+ },
+ {
+ "id": 11268,
+ "start": 5826.48,
+ "end": 5826.88,
+ "text": "and"
+ },
+ {
+ "id": 11269,
+ "start": 5826.88,
+ "end": 5827.32,
+ "text": "issue"
+ },
+ {
+ "id": 11270,
+ "start": 5827.32,
+ "end": 5828,
+ "text": "ads"
+ },
+ {
+ "id": 11271,
+ "start": 5828,
+ "end": 5828.56,
+ "text": "as"
+ },
+ {
+ "id": 11272,
+ "start": 5828.56,
+ "end": 5828.7,
+ "text": "we"
+ },
+ {
+ "id": 11273,
+ "start": 5828.7,
+ "end": 5828.9,
+ "text": "do"
+ },
+ {
+ "id": 11274,
+ "start": 5828.9,
+ "end": 5829.2,
+ "text": "for"
+ },
+ {
+ "id": 11275,
+ "start": 5829.2,
+ "end": 5829.6,
+ "text": "TV"
+ },
+ {
+ "id": 11276,
+ "start": 5829.6,
+ "end": 5829.72,
+ "text": "and"
+ },
+ {
+ "id": 11277,
+ "start": 5829.72,
+ "end": 5830.16,
+ "text": "radio"
+ },
+ {
+ "id": 11278,
+ "start": 5830.16,
+ "end": 5830.52,
+ "text": "as"
+ },
+ {
+ "id": 11279,
+ "start": 5830.52,
+ "end": 5830.7,
+ "text": "well"
+ },
+ {
+ "id": 11280,
+ "start": 5830.7,
+ "end": 5830.8,
+ "text": "as"
+ },
+ {
+ "id": 11281,
+ "start": 5830.8,
+ "end": 5831.46,
+ "text": "disclaimers"
+ },
+ {
+ "id": 11282,
+ "start": 5831.46,
+ "end": 5831.82,
+ "text": "that"
+ },
+ {
+ "id": 11283,
+ "start": 5831.82,
+ "end": 5832.02,
+ "text": "you're"
+ },
+ {
+ "id": 11284,
+ "start": 5832.02,
+ "end": 5832.16,
+ "text": "going"
+ },
+ {
+ "id": 11285,
+ "start": 5832.16,
+ "end": 5832.24,
+ "text": "to"
+ },
+ {
+ "id": 11286,
+ "start": 5832.24,
+ "end": 5832.4,
+ "text": "take"
+ },
+ {
+ "id": 11287,
+ "start": 5832.4,
+ "end": 5832.8,
+ "text": "early"
+ },
+ {
+ "id": 11288,
+ "start": 5832.8,
+ "end": 5833.3,
+ "text": "action"
+ },
+ {
+ "id": 11289,
+ "start": 5833.3,
+ "end": 5833.48,
+ "text": "as"
+ },
+ {
+ "id": 11290,
+ "start": 5833.48,
+ "end": 5833.7,
+ "text": "soon"
+ },
+ {
+ "id": 11291,
+ "start": 5833.7,
+ "end": 5833.86,
+ "text": "as"
+ },
+ {
+ "id": 11292,
+ "start": 5833.86,
+ "end": 5834.24,
+ "text": "June."
+ },
+ {
+ "id": 11293,
+ "start": 5834.24,
+ "end": 5834.4,
+ "text": "I"
+ },
+ {
+ "id": 11294,
+ "start": 5834.4,
+ "end": 5834.68,
+ "text": "heard"
+ },
+ {
+ "id": 11295,
+ "start": 5834.68,
+ "end": 5835.52,
+ "text": "before"
+ },
+ {
+ "id": 11296,
+ "start": 5835.52,
+ "end": 5835.72,
+ "text": "this"
+ },
+ {
+ "id": 11297,
+ "start": 5835.72,
+ "end": 5836.2,
+ "text": "election"
+ },
+ {
+ "id": 11298,
+ "start": 5836.2,
+ "end": 5836.62,
+ "text": "so"
+ },
+ {
+ "id": 11299,
+ "start": 5836.62,
+ "end": 5836.8,
+ "text": "that"
+ },
+ {
+ "id": 11300,
+ "start": 5836.8,
+ "end": 5837.06,
+ "text": "people"
+ },
+ {
+ "id": 11301,
+ "start": 5837.06,
+ "end": 5837.24,
+ "text": "can"
+ },
+ {
+ "id": 11302,
+ "start": 5837.24,
+ "end": 5837.46,
+ "text": "view"
+ },
+ {
+ "id": 11303,
+ "start": 5837.46,
+ "end": 5837.68,
+ "text": "these"
+ },
+ {
+ "id": 11304,
+ "start": 5837.68,
+ "end": 5838.02,
+ "text": "ads,"
+ },
+ {
+ "id": 11305,
+ "start": 5838.02,
+ "end": 5838.54,
+ "text": "including"
+ },
+ {
+ "id": 11306,
+ "start": 5838.54,
+ "end": 5838.98,
+ "text": "issue"
+ },
+ {
+ "id": 11307,
+ "start": 5838.98,
+ "end": 5839.22,
+ "text": "ads."
+ },
+ {
+ "id": 11308,
+ "start": 5839.22,
+ "end": 5839.4,
+ "text": "Is"
+ },
+ {
+ "id": 11309,
+ "start": 5839.4,
+ "end": 5839.6,
+ "text": "that"
+ },
+ {
+ "id": 11310,
+ "start": 5839.6,
+ "end": 5839.96,
+ "text": "correct,"
+ },
+ {
+ "id": 11311,
+ "start": 5839.96,
+ "end": 5841.08,
+ "text": "that"
+ },
+ {
+ "id": 11312,
+ "start": 5841.08,
+ "end": 5841.22,
+ "text": "is"
+ },
+ {
+ "id": 11313,
+ "start": 5841.22,
+ "end": 5841.48,
+ "text": "correct,"
+ },
+ {
+ "id": 11314,
+ "start": 5841.48,
+ "end": 5841.94,
+ "text": "Senator."
+ },
+ {
+ "id": 11315,
+ "start": 5841.94,
+ "end": 5842.32,
+ "text": "And"
+ },
+ {
+ "id": 11316,
+ "start": 5842.32,
+ "end": 5842.98,
+ "text": "I"
+ },
+ {
+ "id": 11317,
+ "start": 5842.98,
+ "end": 5843.14,
+ "text": "just"
+ },
+ {
+ "id": 11318,
+ "start": 5843.14,
+ "end": 5843.28,
+ "text": "want"
+ },
+ {
+ "id": 11319,
+ "start": 5843.28,
+ "end": 5843.36,
+ "text": "to"
+ },
+ {
+ "id": 11320,
+ "start": 5843.36,
+ "end": 5843.5,
+ "text": "take"
+ },
+ {
+ "id": 11321,
+ "start": 5843.5,
+ "end": 5843.56,
+ "text": "a"
+ },
+ {
+ "id": 11322,
+ "start": 5843.56,
+ "end": 5843.8,
+ "text": "moment"
+ },
+ {
+ "id": 11323,
+ "start": 5843.8,
+ "end": 5844.02,
+ "text": "before"
+ },
+ {
+ "id": 11324,
+ "start": 5844.02,
+ "end": 5844.12,
+ "text": "I"
+ },
+ {
+ "id": 11325,
+ "start": 5844.12,
+ "end": 5844.22,
+ "text": "go"
+ },
+ {
+ "id": 11326,
+ "start": 5844.22,
+ "end": 5844.38,
+ "text": "into"
+ },
+ {
+ "id": 11327,
+ "start": 5844.38,
+ "end": 5844.5,
+ "text": "this"
+ },
+ {
+ "id": 11328,
+ "start": 5844.5,
+ "end": 5844.6,
+ "text": "in"
+ },
+ {
+ "id": 11329,
+ "start": 5844.6,
+ "end": 5844.76,
+ "text": "more"
+ },
+ {
+ "id": 11330,
+ "start": 5844.76,
+ "end": 5845.02,
+ "text": "detail"
+ },
+ {
+ "id": 11331,
+ "start": 5845.02,
+ "end": 5845.14,
+ "text": "to"
+ },
+ {
+ "id": 11332,
+ "start": 5845.14,
+ "end": 5845.32,
+ "text": "thank"
+ },
+ {
+ "id": 11333,
+ "start": 5845.32,
+ "end": 5845.46,
+ "text": "you"
+ },
+ {
+ "id": 11334,
+ "start": 5845.46,
+ "end": 5845.6,
+ "text": "for"
+ },
+ {
+ "id": 11335,
+ "start": 5845.6,
+ "end": 5845.76,
+ "text": "your"
+ },
+ {
+ "id": 11336,
+ "start": 5845.76,
+ "end": 5846.22,
+ "text": "leadership"
+ },
+ {
+ "id": 11337,
+ "start": 5846.22,
+ "end": 5846.4,
+ "text": "on"
+ },
+ {
+ "id": 11338,
+ "start": 5846.4,
+ "end": 5847.3,
+ "text": "this"
+ },
+ {
+ "id": 11339,
+ "start": 5847.3,
+ "end": 5848.22,
+ "text": "this"
+ },
+ {
+ "id": 11340,
+ "start": 5848.22,
+ "end": 5848.32,
+ "text": "I"
+ },
+ {
+ "id": 11341,
+ "start": 5848.32,
+ "end": 5848.48,
+ "text": "think"
+ },
+ {
+ "id": 11342,
+ "start": 5848.48,
+ "end": 5848.64,
+ "text": "is"
+ },
+ {
+ "id": 11343,
+ "start": 5848.64,
+ "end": 5848.74,
+ "text": "an"
+ },
+ {
+ "id": 11344,
+ "start": 5848.74,
+ "end": 5849.2,
+ "text": "important"
+ },
+ {
+ "id": 11345,
+ "start": 5849.2,
+ "end": 5850.02,
+ "text": "area"
+ },
+ {
+ "id": 11346,
+ "start": 5850.02,
+ "end": 5850.48,
+ "text": "for"
+ },
+ {
+ "id": 11347,
+ "start": 5850.48,
+ "end": 5850.64,
+ "text": "the"
+ },
+ {
+ "id": 11348,
+ "start": 5850.64,
+ "end": 5850.84,
+ "text": "whole"
+ },
+ {
+ "id": 11349,
+ "start": 5850.84,
+ "end": 5851.3,
+ "text": "industry"
+ },
+ {
+ "id": 11350,
+ "start": 5851.3,
+ "end": 5851.5,
+ "text": "to"
+ },
+ {
+ "id": 11351,
+ "start": 5851.5,
+ "end": 5851.72,
+ "text": "move"
+ },
+ {
+ "id": 11352,
+ "start": 5851.72,
+ "end": 5851.92,
+ "text": "on."
+ },
+ {
+ "id": 11353,
+ "start": 5851.92,
+ "end": 5852.92,
+ "text": "The"
+ },
+ {
+ "id": 11354,
+ "start": 5852.92,
+ "end": 5853.16,
+ "text": "two"
+ },
+ {
+ "id": 11355,
+ "start": 5853.16,
+ "end": 5853.74,
+ "text": "specific"
+ },
+ {
+ "id": 11356,
+ "start": 5853.74,
+ "end": 5854,
+ "text": "things"
+ },
+ {
+ "id": 11357,
+ "start": 5854,
+ "end": 5854.2,
+ "text": "that"
+ },
+ {
+ "id": 11358,
+ "start": 5854.2,
+ "end": 5854.46,
+ "text": "we're"
+ },
+ {
+ "id": 11359,
+ "start": 5854.46,
+ "end": 5854.74,
+ "text": "doing"
+ },
+ {
+ "id": 11360,
+ "start": 5854.74,
+ "end": 5855.56,
+ "text": "are"
+ },
+ {
+ "id": 11361,
+ "start": 5855.56,
+ "end": 5855.84,
+ "text": "one"
+ },
+ {
+ "id": 11362,
+ "start": 5855.84,
+ "end": 5855.96,
+ "text": "is"
+ },
+ {
+ "id": 11363,
+ "start": 5855.96,
+ "end": 5856.22,
+ "text": "around"
+ },
+ {
+ "id": 11364,
+ "start": 5856.22,
+ "end": 5856.98,
+ "text": "transparency."
+ },
+ {
+ "id": 11365,
+ "start": 5856.98,
+ "end": 5858.04,
+ "text": "So"
+ },
+ {
+ "id": 11366,
+ "start": 5858.04,
+ "end": 5858.92,
+ "text": "now"
+ },
+ {
+ "id": 11367,
+ "start": 5858.92,
+ "end": 5859.12,
+ "text": "you're"
+ },
+ {
+ "id": 11368,
+ "start": 5859.12,
+ "end": 5859.32,
+ "text": "going"
+ },
+ {
+ "id": 11369,
+ "start": 5859.32,
+ "end": 5859.42,
+ "text": "to"
+ },
+ {
+ "id": 11370,
+ "start": 5859.42,
+ "end": 5859.5,
+ "text": "be"
+ },
+ {
+ "id": 11371,
+ "start": 5859.5,
+ "end": 5859.64,
+ "text": "able"
+ },
+ {
+ "id": 11372,
+ "start": 5859.64,
+ "end": 5859.72,
+ "text": "to"
+ },
+ {
+ "id": 11373,
+ "start": 5859.72,
+ "end": 5860,
+ "text": "go"
+ },
+ {
+ "id": 11374,
+ "start": 5860,
+ "end": 5860.52,
+ "text": "and"
+ },
+ {
+ "id": 11375,
+ "start": 5860.52,
+ "end": 5860.8,
+ "text": "click"
+ },
+ {
+ "id": 11376,
+ "start": 5860.8,
+ "end": 5861.04,
+ "text": "on"
+ },
+ {
+ "id": 11377,
+ "start": 5861.04,
+ "end": 5861.52,
+ "text": "any"
+ },
+ {
+ "id": 11378,
+ "start": 5861.52,
+ "end": 5862.08,
+ "text": "advertiser,"
+ },
+ {
+ "id": 11379,
+ "start": 5862.08,
+ "end": 5862.4,
+ "text": "any"
+ },
+ {
+ "id": 11380,
+ "start": 5862.4,
+ "end": 5862.76,
+ "text": "page"
+ },
+ {
+ "id": 11381,
+ "start": 5862.76,
+ "end": 5863.28,
+ "text": "on"
+ },
+ {
+ "id": 11382,
+ "start": 5863.28,
+ "end": 5863.76,
+ "text": "Facebook"
+ },
+ {
+ "id": 11383,
+ "start": 5863.76,
+ "end": 5864.04,
+ "text": "and"
+ },
+ {
+ "id": 11384,
+ "start": 5864.04,
+ "end": 5864.34,
+ "text": "see"
+ },
+ {
+ "id": 11385,
+ "start": 5864.34,
+ "end": 5864.56,
+ "text": "all"
+ },
+ {
+ "id": 11386,
+ "start": 5864.56,
+ "end": 5864.64,
+ "text": "of"
+ },
+ {
+ "id": 11387,
+ "start": 5864.64,
+ "end": 5864.78,
+ "text": "the"
+ },
+ {
+ "id": 11388,
+ "start": 5864.78,
+ "end": 5865,
+ "text": "ads"
+ },
+ {
+ "id": 11389,
+ "start": 5865,
+ "end": 5865.14,
+ "text": "that"
+ },
+ {
+ "id": 11390,
+ "start": 5865.14,
+ "end": 5865.36,
+ "text": "they're"
+ },
+ {
+ "id": 11391,
+ "start": 5865.36,
+ "end": 5865.88,
+ "text": "running."
+ },
+ {
+ "id": 11392,
+ "start": 5865.88,
+ "end": 5866.28,
+ "text": "So"
+ },
+ {
+ "id": 11393,
+ "start": 5866.28,
+ "end": 5866.46,
+ "text": "that"
+ },
+ {
+ "id": 11394,
+ "start": 5866.46,
+ "end": 5866.76,
+ "text": "actually"
+ },
+ {
+ "id": 11395,
+ "start": 5866.76,
+ "end": 5867.12,
+ "text": "brings"
+ },
+ {
+ "id": 11396,
+ "start": 5867.12,
+ "end": 5867.86,
+ "text": "advertising"
+ },
+ {
+ "id": 11397,
+ "start": 5867.86,
+ "end": 5868.36,
+ "text": "online"
+ },
+ {
+ "id": 11398,
+ "start": 5868.36,
+ "end": 5869.02,
+ "text": "on"
+ },
+ {
+ "id": 11399,
+ "start": 5869.02,
+ "end": 5869.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 11400,
+ "start": 5869.44,
+ "end": 5869.54,
+ "text": "to"
+ },
+ {
+ "id": 11401,
+ "start": 5869.54,
+ "end": 5869.68,
+ "text": "an"
+ },
+ {
+ "id": 11402,
+ "start": 5869.68,
+ "end": 5869.86,
+ "text": "even"
+ },
+ {
+ "id": 11403,
+ "start": 5869.86,
+ "end": 5870.16,
+ "text": "higher"
+ },
+ {
+ "id": 11404,
+ "start": 5870.16,
+ "end": 5870.68,
+ "text": "standard"
+ },
+ {
+ "id": 11405,
+ "start": 5870.68,
+ "end": 5870.9,
+ "text": "than"
+ },
+ {
+ "id": 11406,
+ "start": 5870.9,
+ "end": 5871.02,
+ "text": "what"
+ },
+ {
+ "id": 11407,
+ "start": 5871.02,
+ "end": 5871.12,
+ "text": "you"
+ },
+ {
+ "id": 11408,
+ "start": 5871.12,
+ "end": 5871.28,
+ "text": "would"
+ },
+ {
+ "id": 11409,
+ "start": 5871.28,
+ "end": 5871.44,
+ "text": "have"
+ },
+ {
+ "id": 11410,
+ "start": 5871.44,
+ "end": 5871.56,
+ "text": "on"
+ },
+ {
+ "id": 11411,
+ "start": 5871.56,
+ "end": 5872.06,
+ "text": "TV"
+ },
+ {
+ "id": 11412,
+ "start": 5872.06,
+ "end": 5872.22,
+ "text": "or"
+ },
+ {
+ "id": 11413,
+ "start": 5872.22,
+ "end": 5872.5,
+ "text": "print"
+ },
+ {
+ "id": 11414,
+ "start": 5872.5,
+ "end": 5872.84,
+ "text": "media."
+ },
+ {
+ "id": 11415,
+ "start": 5872.84,
+ "end": 5873.64,
+ "text": "Because"
+ },
+ {
+ "id": 11416,
+ "start": 5873.64,
+ "end": 5874.36,
+ "text": "there's"
+ },
+ {
+ "id": 11417,
+ "start": 5874.36,
+ "end": 5874.7,
+ "text": "nowhere"
+ },
+ {
+ "id": 11418,
+ "start": 5874.7,
+ "end": 5874.9,
+ "text": "where"
+ },
+ {
+ "id": 11419,
+ "start": 5874.9,
+ "end": 5875.02,
+ "text": "you"
+ },
+ {
+ "id": 11420,
+ "start": 5875.02,
+ "end": 5875.16,
+ "text": "can"
+ },
+ {
+ "id": 11421,
+ "start": 5875.16,
+ "end": 5875.36,
+ "text": "see"
+ },
+ {
+ "id": 11422,
+ "start": 5875.36,
+ "end": 5875.56,
+ "text": "all"
+ },
+ {
+ "id": 11423,
+ "start": 5875.56,
+ "end": 5875.64,
+ "text": "of"
+ },
+ {
+ "id": 11424,
+ "start": 5875.64,
+ "end": 5875.78,
+ "text": "the"
+ },
+ {
+ "id": 11425,
+ "start": 5875.78,
+ "end": 5876.12,
+ "text": "TV"
+ },
+ {
+ "id": 11426,
+ "start": 5876.12,
+ "end": 5876.38,
+ "text": "ads"
+ },
+ {
+ "id": 11427,
+ "start": 5876.38,
+ "end": 5876.58,
+ "text": "that"
+ },
+ {
+ "id": 11428,
+ "start": 5876.58,
+ "end": 5876.86,
+ "text": "someone"
+ },
+ {
+ "id": 11429,
+ "start": 5876.86,
+ "end": 5877,
+ "text": "is"
+ },
+ {
+ "id": 11430,
+ "start": 5877,
+ "end": 5877.26,
+ "text": "running,"
+ },
+ {
+ "id": 11431,
+ "start": 5877.26,
+ "end": 5877.44,
+ "text": "for"
+ },
+ {
+ "id": 11432,
+ "start": 5877.44,
+ "end": 5877.84,
+ "text": "example,"
+ },
+ {
+ "id": 11433,
+ "start": 5877.84,
+ "end": 5878.02,
+ "text": "where"
+ },
+ {
+ "id": 11434,
+ "start": 5878.02,
+ "end": 5878.2,
+ "text": "you"
+ },
+ {
+ "id": 11435,
+ "start": 5878.2,
+ "end": 5878.42,
+ "text": "will"
+ },
+ {
+ "id": 11436,
+ "start": 5878.42,
+ "end": 5878.52,
+ "text": "be"
+ },
+ {
+ "id": 11437,
+ "start": 5878.52,
+ "end": 5878.66,
+ "text": "able"
+ },
+ {
+ "id": 11438,
+ "start": 5878.66,
+ "end": 5878.76,
+ "text": "to"
+ },
+ {
+ "id": 11439,
+ "start": 5878.76,
+ "end": 5879.08,
+ "text": "see"
+ },
+ {
+ "id": 11440,
+ "start": 5879.08,
+ "end": 5879.62,
+ "text": "now"
+ },
+ {
+ "id": 11441,
+ "start": 5879.62,
+ "end": 5879.86,
+ "text": "on"
+ },
+ {
+ "id": 11442,
+ "start": 5879.86,
+ "end": 5880.36,
+ "text": "Facebook."
+ },
+ {
+ "id": 11443,
+ "start": 5880.36,
+ "end": 5881.24,
+ "text": "Whether"
+ },
+ {
+ "id": 11444,
+ "start": 5881.24,
+ "end": 5882.04,
+ "text": "this"
+ },
+ {
+ "id": 11445,
+ "start": 5882.04,
+ "end": 5883.1,
+ "text": "campaign"
+ },
+ {
+ "id": 11446,
+ "start": 5883.1,
+ "end": 5883.76,
+ "text": "or"
+ },
+ {
+ "id": 11447,
+ "start": 5883.76,
+ "end": 5884.2,
+ "text": "third"
+ },
+ {
+ "id": 11448,
+ "start": 5884.2,
+ "end": 5884.54,
+ "text": "party"
+ },
+ {
+ "id": 11449,
+ "start": 5884.54,
+ "end": 5884.72,
+ "text": "is"
+ },
+ {
+ "id": 11450,
+ "start": 5884.72,
+ "end": 5885.22,
+ "text": "saying"
+ },
+ {
+ "id": 11451,
+ "start": 5885.22,
+ "end": 5885.5,
+ "text": "different"
+ },
+ {
+ "id": 11452,
+ "start": 5885.5,
+ "end": 5885.92,
+ "text": "messages"
+ },
+ {
+ "id": 11453,
+ "start": 5885.92,
+ "end": 5886.06,
+ "text": "to"
+ },
+ {
+ "id": 11454,
+ "start": 5886.06,
+ "end": 5886.36,
+ "text": "different"
+ },
+ {
+ "id": 11455,
+ "start": 5886.36,
+ "end": 5886.62,
+ "text": "types"
+ },
+ {
+ "id": 11456,
+ "start": 5886.62,
+ "end": 5886.76,
+ "text": "of"
+ },
+ {
+ "id": 11457,
+ "start": 5886.76,
+ "end": 5887.02,
+ "text": "people"
+ },
+ {
+ "id": 11458,
+ "start": 5887.02,
+ "end": 5887.54,
+ "text": "in"
+ },
+ {
+ "id": 11459,
+ "start": 5887.54,
+ "end": 5887.66,
+ "text": "that"
+ },
+ {
+ "id": 11460,
+ "start": 5887.66,
+ "end": 5887.86,
+ "text": "that's"
+ },
+ {
+ "id": 11461,
+ "start": 5887.86,
+ "end": 5887.92,
+ "text": "a"
+ },
+ {
+ "id": 11462,
+ "start": 5887.92,
+ "end": 5888.2,
+ "text": "really"
+ },
+ {
+ "id": 11463,
+ "start": 5888.2,
+ "end": 5888.58,
+ "text": "important"
+ },
+ {
+ "id": 11464,
+ "start": 5888.58,
+ "end": 5888.9,
+ "text": "element"
+ },
+ {
+ "id": 11465,
+ "start": 5888.9,
+ "end": 5889,
+ "text": "of"
+ },
+ {
+ "id": 11466,
+ "start": 5889,
+ "end": 5889.7,
+ "text": "transparency."
+ },
+ {
+ "id": 11467,
+ "start": 5889.7,
+ "end": 5890.2,
+ "text": "Then"
+ },
+ {
+ "id": 11468,
+ "start": 5890.2,
+ "end": 5890.3,
+ "text": "the"
+ },
+ {
+ "id": 11469,
+ "start": 5890.3,
+ "end": 5890.5,
+ "text": "other"
+ },
+ {
+ "id": 11470,
+ "start": 5890.5,
+ "end": 5890.76,
+ "text": "really"
+ },
+ {
+ "id": 11471,
+ "start": 5890.76,
+ "end": 5891.14,
+ "text": "important"
+ },
+ {
+ "id": 11472,
+ "start": 5891.14,
+ "end": 5891.38,
+ "text": "piece"
+ },
+ {
+ "id": 11473,
+ "start": 5891.38,
+ "end": 5891.54,
+ "text": "is"
+ },
+ {
+ "id": 11474,
+ "start": 5891.54,
+ "end": 5891.82,
+ "text": "around"
+ },
+ {
+ "id": 11475,
+ "start": 5891.82,
+ "end": 5892.4,
+ "text": "verifying"
+ },
+ {
+ "id": 11476,
+ "start": 5892.4,
+ "end": 5892.76,
+ "text": "every"
+ },
+ {
+ "id": 11477,
+ "start": 5892.76,
+ "end": 5893.4,
+ "text": "single"
+ },
+ {
+ "id": 11478,
+ "start": 5893.4,
+ "end": 5894.42,
+ "text": "Advertiser"
+ },
+ {
+ "id": 11479,
+ "start": 5894.42,
+ "end": 5894.86,
+ "text": "who's"
+ },
+ {
+ "id": 11480,
+ "start": 5894.86,
+ "end": 5895.02,
+ "text": "going"
+ },
+ {
+ "id": 11481,
+ "start": 5895.02,
+ "end": 5895.08,
+ "text": "to"
+ },
+ {
+ "id": 11482,
+ "start": 5895.08,
+ "end": 5895.14,
+ "text": "be"
+ },
+ {
+ "id": 11483,
+ "start": 5895.14,
+ "end": 5895.38,
+ "text": "running"
+ },
+ {
+ "id": 11484,
+ "start": 5895.38,
+ "end": 5895.88,
+ "text": "political"
+ },
+ {
+ "id": 11485,
+ "start": 5895.88,
+ "end": 5896.8,
+ "text": "or"
+ },
+ {
+ "id": 11486,
+ "start": 5896.8,
+ "end": 5897.08,
+ "text": "issue"
+ },
+ {
+ "id": 11487,
+ "start": 5897.08,
+ "end": 5897.32,
+ "text": "ads."
+ },
+ {
+ "id": 11488,
+ "start": 5897.32,
+ "end": 5897.66,
+ "text": "I"
+ },
+ {
+ "id": 11489,
+ "start": 5897.66,
+ "end": 5898.12,
+ "text": "appreciate"
+ },
+ {
+ "id": 11490,
+ "start": 5898.12,
+ "end": 5898.3,
+ "text": "that"
+ },
+ {
+ "id": 11491,
+ "start": 5898.3,
+ "end": 5898.5,
+ "text": "in"
+ },
+ {
+ "id": 11492,
+ "start": 5898.5,
+ "end": 5898.78,
+ "text": "center"
+ },
+ {
+ "id": 11493,
+ "start": 5898.78,
+ "end": 5899.04,
+ "text": "Warner"
+ },
+ {
+ "id": 11494,
+ "start": 5899.04,
+ "end": 5899.14,
+ "text": "and"
+ },
+ {
+ "id": 11495,
+ "start": 5899.14,
+ "end": 5899.49,
+ "text": "I"
+ },
+ {
+ "id": 11496,
+ "start": 5899.49,
+ "end": 5899.91,
+ "text": "called"
+ },
+ {
+ "id": 11497,
+ "start": 5899.91,
+ "end": 5900.05,
+ "text": "on"
+ },
+ {
+ "id": 11498,
+ "start": 5900.05,
+ "end": 5900.51,
+ "text": "Google"
+ },
+ {
+ "id": 11499,
+ "start": 5900.51,
+ "end": 5900.67,
+ "text": "and"
+ },
+ {
+ "id": 11500,
+ "start": 5900.67,
+ "end": 5900.79,
+ "text": "the"
+ },
+ {
+ "id": 11501,
+ "start": 5900.79,
+ "end": 5901.01,
+ "text": "other"
+ },
+ {
+ "id": 11502,
+ "start": 5901.01,
+ "end": 5901.61,
+ "text": "platforms"
+ },
+ {
+ "id": 11503,
+ "start": 5901.61,
+ "end": 5901.79,
+ "text": "to"
+ },
+ {
+ "id": 11504,
+ "start": 5901.79,
+ "end": 5901.93,
+ "text": "do"
+ },
+ {
+ "id": 11505,
+ "start": 5901.93,
+ "end": 5902.07,
+ "text": "the"
+ },
+ {
+ "id": 11506,
+ "start": 5902.07,
+ "end": 5902.41,
+ "text": "same."
+ },
+ {
+ "id": 11507,
+ "start": 5902.41,
+ "end": 5902.63,
+ "text": "So"
+ },
+ {
+ "id": 11508,
+ "start": 5902.63,
+ "end": 5903.37,
+ "text": "memo"
+ },
+ {
+ "id": 11509,
+ "start": 5903.37,
+ "end": 5903.51,
+ "text": "to"
+ },
+ {
+ "id": 11510,
+ "start": 5903.51,
+ "end": 5903.69,
+ "text": "the"
+ },
+ {
+ "id": 11511,
+ "start": 5903.69,
+ "end": 5903.93,
+ "text": "rest"
+ },
+ {
+ "id": 11512,
+ "start": 5903.93,
+ "end": 5904.05,
+ "text": "of"
+ },
+ {
+ "id": 11513,
+ "start": 5904.05,
+ "end": 5904.29,
+ "text": "you"
+ },
+ {
+ "id": 11514,
+ "start": 5904.29,
+ "end": 5904.99,
+ "text": "we"
+ },
+ {
+ "id": 11515,
+ "start": 5904.99,
+ "end": 5905.17,
+ "text": "have"
+ },
+ {
+ "id": 11516,
+ "start": 5905.17,
+ "end": 5905.29,
+ "text": "to"
+ },
+ {
+ "id": 11517,
+ "start": 5905.29,
+ "end": 5905.41,
+ "text": "get"
+ },
+ {
+ "id": 11518,
+ "start": 5905.41,
+ "end": 5905.63,
+ "text": "this"
+ },
+ {
+ "id": 11519,
+ "start": 5905.63,
+ "end": 5905.83,
+ "text": "done"
+ },
+ {
+ "id": 11520,
+ "start": 5905.83,
+ "end": 5905.93,
+ "text": "or"
+ },
+ {
+ "id": 11521,
+ "start": 5905.93,
+ "end": 5906.11,
+ "text": "we're"
+ },
+ {
+ "id": 11522,
+ "start": 5906.11,
+ "end": 5906.25,
+ "text": "going"
+ },
+ {
+ "id": 11523,
+ "start": 5906.25,
+ "end": 5906.33,
+ "text": "to"
+ },
+ {
+ "id": 11524,
+ "start": 5906.33,
+ "end": 5906.55,
+ "text": "have"
+ },
+ {
+ "id": 11525,
+ "start": 5906.55,
+ "end": 5906.63,
+ "text": "a"
+ },
+ {
+ "id": 11526,
+ "start": 5906.63,
+ "end": 5907.25,
+ "text": "patchwork"
+ },
+ {
+ "id": 11527,
+ "start": 5907.25,
+ "end": 5907.37,
+ "text": "of"
+ },
+ {
+ "id": 11528,
+ "start": 5907.37,
+ "end": 5907.67,
+ "text": "ads."
+ },
+ {
+ "id": 11529,
+ "start": 5907.67,
+ "end": 5907.85,
+ "text": "And"
+ },
+ {
+ "id": 11530,
+ "start": 5907.85,
+ "end": 5908.07,
+ "text": "I"
+ },
+ {
+ "id": 11531,
+ "start": 5908.07,
+ "end": 5908.83,
+ "text": "hope"
+ },
+ {
+ "id": 11532,
+ "start": 5908.83,
+ "end": 5908.99,
+ "text": "that"
+ },
+ {
+ "id": 11533,
+ "start": 5908.99,
+ "end": 5909.21,
+ "text": "you'll"
+ },
+ {
+ "id": 11534,
+ "start": 5909.21,
+ "end": 5909.31,
+ "text": "be"
+ },
+ {
+ "id": 11535,
+ "start": 5909.31,
+ "end": 5909.63,
+ "text": "working"
+ },
+ {
+ "id": 11536,
+ "start": 5909.63,
+ "end": 5909.79,
+ "text": "with"
+ },
+ {
+ "id": 11537,
+ "start": 5909.79,
+ "end": 5910.01,
+ "text": "us"
+ },
+ {
+ "id": 11538,
+ "start": 5910.01,
+ "end": 5910.17,
+ "text": "to"
+ },
+ {
+ "id": 11539,
+ "start": 5910.17,
+ "end": 5910.51,
+ "text": "pass"
+ },
+ {
+ "id": 11540,
+ "start": 5910.51,
+ "end": 5910.71,
+ "text": "this."
+ },
+ {
+ "id": 11541,
+ "start": 5910.71,
+ "end": 5910.99,
+ "text": "Bill"
+ },
+ {
+ "id": 11542,
+ "start": 5910.99,
+ "end": 5911.23,
+ "text": "is"
+ },
+ {
+ "id": 11543,
+ "start": 5911.23,
+ "end": 5911.39,
+ "text": "that"
+ },
+ {
+ "id": 11544,
+ "start": 5911.39,
+ "end": 5911.61,
+ "text": "right,"
+ },
+ {
+ "id": 11545,
+ "start": 5911.61,
+ "end": 5912.03,
+ "text": "we"
+ },
+ {
+ "id": 11546,
+ "start": 5912.03,
+ "end": 5912.29,
+ "text": "will."
+ },
+ {
+ "id": 11547,
+ "start": 5912.29,
+ "end": 5912.85,
+ "text": "Okay,"
+ },
+ {
+ "id": 11548,
+ "start": 5912.85,
+ "end": 5913.09,
+ "text": "thank"
+ },
+ {
+ "id": 11549,
+ "start": 5913.09,
+ "end": 5913.29,
+ "text": "you."
+ },
+ {
+ "id": 11550,
+ "start": 5913.29,
+ "end": 5914.33,
+ "text": "Now,"
+ },
+ {
+ "id": 11551,
+ "start": 5914.33,
+ "end": 5914.49,
+ "text": "on"
+ },
+ {
+ "id": 11552,
+ "start": 5914.49,
+ "end": 5914.65,
+ "text": "the"
+ },
+ {
+ "id": 11553,
+ "start": 5914.65,
+ "end": 5915.03,
+ "text": "subject"
+ },
+ {
+ "id": 11554,
+ "start": 5915.03,
+ "end": 5915.15,
+ "text": "of"
+ },
+ {
+ "id": 11555,
+ "start": 5915.15,
+ "end": 5915.57,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11556,
+ "start": 5915.57,
+ "end": 5916.94,
+ "text": "Analytica,"
+ },
+ {
+ "id": 11557,
+ "start": 5916.94,
+ "end": 5917.86,
+ "text": "were"
+ },
+ {
+ "id": 11558,
+ "start": 5917.86,
+ "end": 5918.22,
+ "text": "these"
+ },
+ {
+ "id": 11559,
+ "start": 5918.22,
+ "end": 5918.54,
+ "text": "people"
+ },
+ {
+ "id": 11560,
+ "start": 5918.54,
+ "end": 5919.12,
+ "text": "that"
+ },
+ {
+ "id": 11561,
+ "start": 5919.12,
+ "end": 5920.16,
+ "text": "87,000,000"
+ },
+ {
+ "id": 11562,
+ "start": 5920.16,
+ "end": 5920.56,
+ "text": "people"
+ },
+ {
+ "id": 11563,
+ "start": 5920.56,
+ "end": 5922.4,
+ "text": "users"
+ },
+ {
+ "id": 11564,
+ "start": 5922.4,
+ "end": 5923.38,
+ "text": "concentrated"
+ },
+ {
+ "id": 11565,
+ "start": 5923.38,
+ "end": 5923.54,
+ "text": "in"
+ },
+ {
+ "id": 11566,
+ "start": 5923.54,
+ "end": 5923.88,
+ "text": "certain"
+ },
+ {
+ "id": 11567,
+ "start": 5923.88,
+ "end": 5924.2,
+ "text": "states."
+ },
+ {
+ "id": 11568,
+ "start": 5924.2,
+ "end": 5924.34,
+ "text": "Are"
+ },
+ {
+ "id": 11569,
+ "start": 5924.34,
+ "end": 5924.44,
+ "text": "you"
+ },
+ {
+ "id": 11570,
+ "start": 5924.44,
+ "end": 5924.76,
+ "text": "able"
+ },
+ {
+ "id": 11571,
+ "start": 5924.76,
+ "end": 5924.88,
+ "text": "to"
+ },
+ {
+ "id": 11572,
+ "start": 5924.88,
+ "end": 5925.18,
+ "text": "figure"
+ },
+ {
+ "id": 11573,
+ "start": 5925.18,
+ "end": 5925.42,
+ "text": "out"
+ },
+ {
+ "id": 11574,
+ "start": 5925.42,
+ "end": 5925.84,
+ "text": "where"
+ },
+ {
+ "id": 11575,
+ "start": 5925.84,
+ "end": 5926.2,
+ "text": "they're"
+ },
+ {
+ "id": 11576,
+ "start": 5926.2,
+ "end": 5927.14,
+ "text": "from."
+ },
+ {
+ "id": 11577,
+ "start": 5927.14,
+ "end": 5927.92,
+ "text": "I"
+ },
+ {
+ "id": 11578,
+ "start": 5927.92,
+ "end": 5928.06,
+ "text": "do"
+ },
+ {
+ "id": 11579,
+ "start": 5928.06,
+ "end": 5928.42,
+ "text": "not"
+ },
+ {
+ "id": 11580,
+ "start": 5928.42,
+ "end": 5928.78,
+ "text": "have"
+ },
+ {
+ "id": 11581,
+ "start": 5928.78,
+ "end": 5929.06,
+ "text": "that"
+ },
+ {
+ "id": 11582,
+ "start": 5929.06,
+ "end": 5929.74,
+ "text": "information"
+ },
+ {
+ "id": 11583,
+ "start": 5929.74,
+ "end": 5930.78,
+ "text": "with"
+ },
+ {
+ "id": 11584,
+ "start": 5930.78,
+ "end": 5930.92,
+ "text": "me,"
+ },
+ {
+ "id": 11585,
+ "start": 5930.92,
+ "end": 5932.04,
+ "text": "but"
+ },
+ {
+ "id": 11586,
+ "start": 5932.04,
+ "end": 5932.26,
+ "text": "we"
+ },
+ {
+ "id": 11587,
+ "start": 5932.26,
+ "end": 5932.44,
+ "text": "can"
+ },
+ {
+ "id": 11588,
+ "start": 5932.44,
+ "end": 5932.74,
+ "text": "follow"
+ },
+ {
+ "id": 11589,
+ "start": 5932.74,
+ "end": 5932.88,
+ "text": "up"
+ },
+ {
+ "id": 11590,
+ "start": 5932.88,
+ "end": 5933.04,
+ "text": "with"
+ },
+ {
+ "id": 11591,
+ "start": 5933.04,
+ "end": 5933.42,
+ "text": "your"
+ },
+ {
+ "id": 11592,
+ "start": 5933.42,
+ "end": 5933.82,
+ "text": "office."
+ },
+ {
+ "id": 11593,
+ "start": 5933.82,
+ "end": 5934.28,
+ "text": "Okay,"
+ },
+ {
+ "id": 11594,
+ "start": 5934.28,
+ "end": 5934.5,
+ "text": "because"
+ },
+ {
+ "id": 11595,
+ "start": 5934.5,
+ "end": 5934.68,
+ "text": "as"
+ },
+ {
+ "id": 11596,
+ "start": 5934.68,
+ "end": 5934.84,
+ "text": "we"
+ },
+ {
+ "id": 11597,
+ "start": 5934.84,
+ "end": 5935,
+ "text": "know"
+ },
+ {
+ "id": 11598,
+ "start": 5935,
+ "end": 5935.24,
+ "text": "the"
+ },
+ {
+ "id": 11599,
+ "start": 5935.24,
+ "end": 5935.8,
+ "text": "election"
+ },
+ {
+ "id": 11600,
+ "start": 5935.8,
+ "end": 5935.98,
+ "text": "was"
+ },
+ {
+ "id": 11601,
+ "start": 5935.98,
+ "end": 5936.3,
+ "text": "close"
+ },
+ {
+ "id": 11602,
+ "start": 5936.3,
+ "end": 5936.62,
+ "text": "and"
+ },
+ {
+ "id": 11603,
+ "start": 5936.62,
+ "end": 5936.84,
+ "text": "it"
+ },
+ {
+ "id": 11604,
+ "start": 5936.84,
+ "end": 5937,
+ "text": "was"
+ },
+ {
+ "id": 11605,
+ "start": 5937,
+ "end": 5937.34,
+ "text": "only"
+ },
+ {
+ "id": 11606,
+ "start": 5937.34,
+ "end": 5938.08,
+ "text": "thousands"
+ },
+ {
+ "id": 11607,
+ "start": 5938.08,
+ "end": 5938.18,
+ "text": "of"
+ },
+ {
+ "id": 11608,
+ "start": 5938.18,
+ "end": 5938.44,
+ "text": "votes"
+ },
+ {
+ "id": 11609,
+ "start": 5938.44,
+ "end": 5938.62,
+ "text": "in"
+ },
+ {
+ "id": 11610,
+ "start": 5938.62,
+ "end": 5939.04,
+ "text": "certain"
+ },
+ {
+ "id": 11611,
+ "start": 5939.04,
+ "end": 5939.38,
+ "text": "states."
+ },
+ {
+ "id": 11612,
+ "start": 5939.38,
+ "end": 5940.32,
+ "text": "You've"
+ },
+ {
+ "id": 11613,
+ "start": 5940.32,
+ "end": 5940.6,
+ "text": "also"
+ },
+ {
+ "id": 11614,
+ "start": 5940.6,
+ "end": 5941.14,
+ "text": "estimated"
+ },
+ {
+ "id": 11615,
+ "start": 5941.14,
+ "end": 5941.32,
+ "text": "that"
+ },
+ {
+ "id": 11616,
+ "start": 5941.32,
+ "end": 5941.76,
+ "text": "roughly"
+ },
+ {
+ "id": 11617,
+ "start": 5941.76,
+ "end": 5944.09,
+ "text": "126,000,000"
+ },
+ {
+ "id": 11618,
+ "start": 5944.09,
+ "end": 5944.39,
+ "text": "people"
+ },
+ {
+ "id": 11619,
+ "start": 5944.39,
+ "end": 5944.63,
+ "text": "may"
+ },
+ {
+ "id": 11620,
+ "start": 5944.63,
+ "end": 5944.77,
+ "text": "have"
+ },
+ {
+ "id": 11621,
+ "start": 5944.77,
+ "end": 5944.99,
+ "text": "been"
+ },
+ {
+ "id": 11622,
+ "start": 5944.99,
+ "end": 5945.27,
+ "text": "shown"
+ },
+ {
+ "id": 11623,
+ "start": 5945.27,
+ "end": 5945.79,
+ "text": "content"
+ },
+ {
+ "id": 11624,
+ "start": 5945.79,
+ "end": 5946.01,
+ "text": "from"
+ },
+ {
+ "id": 11625,
+ "start": 5946.01,
+ "end": 5946.09,
+ "text": "a"
+ },
+ {
+ "id": 11626,
+ "start": 5946.09,
+ "end": 5946.53,
+ "text": "Facebook"
+ },
+ {
+ "id": 11627,
+ "start": 5946.53,
+ "end": 5946.79,
+ "text": "page"
+ },
+ {
+ "id": 11628,
+ "start": 5946.79,
+ "end": 5947.81,
+ "text": "associated"
+ },
+ {
+ "id": 11629,
+ "start": 5947.81,
+ "end": 5947.97,
+ "text": "with"
+ },
+ {
+ "id": 11630,
+ "start": 5947.97,
+ "end": 5948.09,
+ "text": "the"
+ },
+ {
+ "id": 11631,
+ "start": 5948.09,
+ "end": 5948.53,
+ "text": "Internet"
+ },
+ {
+ "id": 11632,
+ "start": 5948.53,
+ "end": 5948.97,
+ "text": "Research"
+ },
+ {
+ "id": 11633,
+ "start": 5948.97,
+ "end": 5949.63,
+ "text": "Agency,"
+ },
+ {
+ "id": 11634,
+ "start": 5949.63,
+ "end": 5950.21,
+ "text": "have"
+ },
+ {
+ "id": 11635,
+ "start": 5950.21,
+ "end": 5950.37,
+ "text": "you"
+ },
+ {
+ "id": 11636,
+ "start": 5950.37,
+ "end": 5950.91,
+ "text": "determined"
+ },
+ {
+ "id": 11637,
+ "start": 5950.91,
+ "end": 5951.77,
+ "text": "whether"
+ },
+ {
+ "id": 11638,
+ "start": 5951.77,
+ "end": 5951.99,
+ "text": "any"
+ },
+ {
+ "id": 11639,
+ "start": 5951.99,
+ "end": 5952.07,
+ "text": "of"
+ },
+ {
+ "id": 11640,
+ "start": 5952.07,
+ "end": 5952.43,
+ "text": "those"
+ },
+ {
+ "id": 11641,
+ "start": 5952.43,
+ "end": 5952.77,
+ "text": "people"
+ },
+ {
+ "id": 11642,
+ "start": 5952.77,
+ "end": 5953.25,
+ "text": "were"
+ },
+ {
+ "id": 11643,
+ "start": 5953.25,
+ "end": 5953.37,
+ "text": "the"
+ },
+ {
+ "id": 11644,
+ "start": 5953.37,
+ "end": 5953.77,
+ "text": "same"
+ },
+ {
+ "id": 11645,
+ "start": 5953.77,
+ "end": 5954.21,
+ "text": "Facebook"
+ },
+ {
+ "id": 11646,
+ "start": 5954.21,
+ "end": 5954.57,
+ "text": "users"
+ },
+ {
+ "id": 11647,
+ "start": 5954.57,
+ "end": 5954.79,
+ "text": "whose"
+ },
+ {
+ "id": 11648,
+ "start": 5954.79,
+ "end": 5955.07,
+ "text": "data"
+ },
+ {
+ "id": 11649,
+ "start": 5955.07,
+ "end": 5955.23,
+ "text": "was"
+ },
+ {
+ "id": 11650,
+ "start": 5955.23,
+ "end": 5955.51,
+ "text": "shared"
+ },
+ {
+ "id": 11651,
+ "start": 5955.51,
+ "end": 5955.69,
+ "text": "with"
+ },
+ {
+ "id": 11652,
+ "start": 5955.69,
+ "end": 5956.17,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11653,
+ "start": 5956.17,
+ "end": 5956.75,
+ "text": "Analytica?"
+ },
+ {
+ "id": 11654,
+ "start": 5956.75,
+ "end": 5957.29,
+ "text": "Are"
+ },
+ {
+ "id": 11655,
+ "start": 5957.29,
+ "end": 5957.43,
+ "text": "you"
+ },
+ {
+ "id": 11656,
+ "start": 5957.43,
+ "end": 5957.65,
+ "text": "able"
+ },
+ {
+ "id": 11657,
+ "start": 5957.65,
+ "end": 5957.75,
+ "text": "to"
+ },
+ {
+ "id": 11658,
+ "start": 5957.75,
+ "end": 5957.89,
+ "text": "make"
+ },
+ {
+ "id": 11659,
+ "start": 5957.89,
+ "end": 5958.09,
+ "text": "that"
+ },
+ {
+ "id": 11660,
+ "start": 5958.09,
+ "end": 5959.16,
+ "text": "determination,"
+ },
+ {
+ "id": 11661,
+ "start": 5959.16,
+ "end": 5959.82,
+ "text": "Senator"
+ },
+ {
+ "id": 11662,
+ "start": 5959.82,
+ "end": 5960.04,
+ "text": "we're"
+ },
+ {
+ "id": 11663,
+ "start": 5960.04,
+ "end": 5960.64,
+ "text": "investigating"
+ },
+ {
+ "id": 11664,
+ "start": 5960.64,
+ "end": 5960.8,
+ "text": "that"
+ },
+ {
+ "id": 11665,
+ "start": 5960.8,
+ "end": 5961.54,
+ "text": "now"
+ },
+ {
+ "id": 11666,
+ "start": 5961.54,
+ "end": 5962.14,
+ "text": "we"
+ },
+ {
+ "id": 11667,
+ "start": 5962.14,
+ "end": 5962.76,
+ "text": "believe"
+ },
+ {
+ "id": 11668,
+ "start": 5962.76,
+ "end": 5962.92,
+ "text": "that"
+ },
+ {
+ "id": 11669,
+ "start": 5962.92,
+ "end": 5963,
+ "text": "it"
+ },
+ {
+ "id": 11670,
+ "start": 5963,
+ "end": 5963.12,
+ "text": "is"
+ },
+ {
+ "id": 11671,
+ "start": 5963.12,
+ "end": 5963.68,
+ "text": "entirely"
+ },
+ {
+ "id": 11672,
+ "start": 5963.68,
+ "end": 5964.16,
+ "text": "possible"
+ },
+ {
+ "id": 11673,
+ "start": 5964.16,
+ "end": 5964.34,
+ "text": "that"
+ },
+ {
+ "id": 11674,
+ "start": 5964.34,
+ "end": 5964.52,
+ "text": "there"
+ },
+ {
+ "id": 11675,
+ "start": 5964.52,
+ "end": 5964.72,
+ "text": "will"
+ },
+ {
+ "id": 11676,
+ "start": 5964.72,
+ "end": 5964.84,
+ "text": "be"
+ },
+ {
+ "id": 11677,
+ "start": 5964.84,
+ "end": 5964.92,
+ "text": "a"
+ },
+ {
+ "id": 11678,
+ "start": 5964.92,
+ "end": 5965.34,
+ "text": "connection"
+ },
+ {
+ "id": 11679,
+ "start": 5965.34,
+ "end": 5965.56,
+ "text": "there."
+ },
+ {
+ "id": 11680,
+ "start": 5965.56,
+ "end": 5966.56,
+ "text": "Okay,"
+ },
+ {
+ "id": 11681,
+ "start": 5966.56,
+ "end": 5966.8,
+ "text": "that"
+ },
+ {
+ "id": 11682,
+ "start": 5966.8,
+ "end": 5967.1,
+ "text": "seems"
+ },
+ {
+ "id": 11683,
+ "start": 5967.1,
+ "end": 5967.28,
+ "text": "like"
+ },
+ {
+ "id": 11684,
+ "start": 5967.28,
+ "end": 5967.4,
+ "text": "a"
+ },
+ {
+ "id": 11685,
+ "start": 5967.4,
+ "end": 5967.68,
+ "text": "big"
+ },
+ {
+ "id": 11686,
+ "start": 5967.68,
+ "end": 5967.9,
+ "text": "deal."
+ },
+ {
+ "id": 11687,
+ "start": 5967.9,
+ "end": 5968.1,
+ "text": "As"
+ },
+ {
+ "id": 11688,
+ "start": 5968.1,
+ "end": 5968.22,
+ "text": "we"
+ },
+ {
+ "id": 11689,
+ "start": 5968.22,
+ "end": 5968.48,
+ "text": "look"
+ },
+ {
+ "id": 11690,
+ "start": 5968.48,
+ "end": 5968.74,
+ "text": "back"
+ },
+ {
+ "id": 11691,
+ "start": 5968.74,
+ "end": 5968.88,
+ "text": "at"
+ },
+ {
+ "id": 11692,
+ "start": 5968.88,
+ "end": 5969.1,
+ "text": "that"
+ },
+ {
+ "id": 11693,
+ "start": 5969.1,
+ "end": 5969.38,
+ "text": "last"
+ },
+ {
+ "id": 11694,
+ "start": 5969.38,
+ "end": 5969.92,
+ "text": "election,"
+ },
+ {
+ "id": 11695,
+ "start": 5969.92,
+ "end": 5970.88,
+ "text": "former"
+ },
+ {
+ "id": 11696,
+ "start": 5970.88,
+ "end": 5971.34,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11697,
+ "start": 5971.34,
+ "end": 5971.88,
+ "text": "Analytica"
+ },
+ {
+ "id": 11698,
+ "start": 5971.88,
+ "end": 5972.46,
+ "text": "employee"
+ },
+ {
+ "id": 11699,
+ "start": 5972.46,
+ "end": 5973.04,
+ "text": "Christopher"
+ },
+ {
+ "id": 11700,
+ "start": 5973.04,
+ "end": 5974,
+ "text": "Wiley"
+ },
+ {
+ "id": 11701,
+ "start": 5974,
+ "end": 5974.28,
+ "text": "said"
+ },
+ {
+ "id": 11702,
+ "start": 5974.28,
+ "end": 5974.5,
+ "text": "that"
+ },
+ {
+ "id": 11703,
+ "start": 5974.5,
+ "end": 5974.7,
+ "text": "the"
+ },
+ {
+ "id": 11704,
+ "start": 5974.7,
+ "end": 5975.2,
+ "text": "data"
+ },
+ {
+ "id": 11705,
+ "start": 5975.2,
+ "end": 5975.86,
+ "text": "that"
+ },
+ {
+ "id": 11706,
+ "start": 5975.86,
+ "end": 5976.02,
+ "text": "it"
+ },
+ {
+ "id": 11707,
+ "start": 5976.02,
+ "end": 5976.96,
+ "text": "improperly"
+ },
+ {
+ "id": 11708,
+ "start": 5976.96,
+ "end": 5977.56,
+ "text": "obtained"
+ },
+ {
+ "id": 11709,
+ "start": 5977.56,
+ "end": 5977.72,
+ "text": "that"
+ },
+ {
+ "id": 11710,
+ "start": 5977.72,
+ "end": 5978.12,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11711,
+ "start": 5978.12,
+ "end": 5978.62,
+ "text": "analytic"
+ },
+ {
+ "id": 11712,
+ "start": 5978.62,
+ "end": 5978.94,
+ "text": "and"
+ },
+ {
+ "id": 11713,
+ "start": 5978.94,
+ "end": 5979.42,
+ "text": "properly"
+ },
+ {
+ "id": 11714,
+ "start": 5979.42,
+ "end": 5979.84,
+ "text": "obtained"
+ },
+ {
+ "id": 11715,
+ "start": 5979.84,
+ "end": 5980.02,
+ "text": "from"
+ },
+ {
+ "id": 11716,
+ "start": 5980.02,
+ "end": 5980.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 11717,
+ "start": 5980.46,
+ "end": 5980.9,
+ "text": "users"
+ },
+ {
+ "id": 11718,
+ "start": 5980.9,
+ "end": 5981.46,
+ "text": "could"
+ },
+ {
+ "id": 11719,
+ "start": 5981.46,
+ "end": 5981.62,
+ "text": "be"
+ },
+ {
+ "id": 11720,
+ "start": 5981.62,
+ "end": 5982.04,
+ "text": "stored"
+ },
+ {
+ "id": 11721,
+ "start": 5982.04,
+ "end": 5982.2,
+ "text": "in"
+ },
+ {
+ "id": 11722,
+ "start": 5982.2,
+ "end": 5982.64,
+ "text": "Russia."
+ },
+ {
+ "id": 11723,
+ "start": 5982.64,
+ "end": 5983.18,
+ "text": "Do"
+ },
+ {
+ "id": 11724,
+ "start": 5983.18,
+ "end": 5983.32,
+ "text": "you"
+ },
+ {
+ "id": 11725,
+ "start": 5983.32,
+ "end": 5983.62,
+ "text": "agree"
+ },
+ {
+ "id": 11726,
+ "start": 5983.62,
+ "end": 5983.8,
+ "text": "that"
+ },
+ {
+ "id": 11727,
+ "start": 5983.8,
+ "end": 5984.06,
+ "text": "that's"
+ },
+ {
+ "id": 11728,
+ "start": 5984.06,
+ "end": 5984.16,
+ "text": "a"
+ },
+ {
+ "id": 11729,
+ "start": 5984.16,
+ "end": 5987.28,
+ "text": "possibility?"
+ },
+ {
+ "id": 11730,
+ "start": 5987.28,
+ "end": 5988.26,
+ "text": "Sorry,"
+ },
+ {
+ "id": 11731,
+ "start": 5988.26,
+ "end": 5988.66,
+ "text": "are"
+ },
+ {
+ "id": 11732,
+ "start": 5988.66,
+ "end": 5988.76,
+ "text": "you"
+ },
+ {
+ "id": 11733,
+ "start": 5988.76,
+ "end": 5989.14,
+ "text": "asking"
+ },
+ {
+ "id": 11734,
+ "start": 5989.14,
+ "end": 5989.42,
+ "text": "if"
+ },
+ {
+ "id": 11735,
+ "start": 5989.42,
+ "end": 5990.14,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11736,
+ "start": 5990.14,
+ "end": 5990.58,
+ "text": "analytics"
+ },
+ {
+ "id": 11737,
+ "start": 5990.58,
+ "end": 5991.18,
+ "text": "data"
+ },
+ {
+ "id": 11738,
+ "start": 5991.18,
+ "end": 5991.36,
+ "text": "could"
+ },
+ {
+ "id": 11739,
+ "start": 5991.36,
+ "end": 5991.46,
+ "text": "be"
+ },
+ {
+ "id": 11740,
+ "start": 5991.46,
+ "end": 5991.68,
+ "text": "stored"
+ },
+ {
+ "id": 11741,
+ "start": 5991.68,
+ "end": 5991.78,
+ "text": "in"
+ },
+ {
+ "id": 11742,
+ "start": 5991.78,
+ "end": 5992.12,
+ "text": "Russia?"
+ },
+ {
+ "id": 11743,
+ "start": 5992.12,
+ "end": 5992.66,
+ "text": "That's"
+ },
+ {
+ "id": 11744,
+ "start": 5992.66,
+ "end": 5992.8,
+ "text": "what"
+ },
+ {
+ "id": 11745,
+ "start": 5992.8,
+ "end": 5992.94,
+ "text": "he"
+ },
+ {
+ "id": 11746,
+ "start": 5992.94,
+ "end": 5993.18,
+ "text": "said"
+ },
+ {
+ "id": 11747,
+ "start": 5993.18,
+ "end": 5993.38,
+ "text": "this"
+ },
+ {
+ "id": 11748,
+ "start": 5993.38,
+ "end": 5993.76,
+ "text": "weekend"
+ },
+ {
+ "id": 11749,
+ "start": 5993.76,
+ "end": 5993.9,
+ "text": "on"
+ },
+ {
+ "id": 11750,
+ "start": 5993.9,
+ "end": 5994,
+ "text": "a"
+ },
+ {
+ "id": 11751,
+ "start": 5994,
+ "end": 5994.34,
+ "text": "Sunday"
+ },
+ {
+ "id": 11752,
+ "start": 5994.34,
+ "end": 5995.76,
+ "text": "show,"
+ },
+ {
+ "id": 11753,
+ "start": 5995.76,
+ "end": 5996.78,
+ "text": "Senator,"
+ },
+ {
+ "id": 11754,
+ "start": 5996.78,
+ "end": 5997.12,
+ "text": "I"
+ },
+ {
+ "id": 11755,
+ "start": 5997.12,
+ "end": 5997.32,
+ "text": "don't"
+ },
+ {
+ "id": 11756,
+ "start": 5997.32,
+ "end": 5997.52,
+ "text": "have"
+ },
+ {
+ "id": 11757,
+ "start": 5997.52,
+ "end": 5997.76,
+ "text": "any"
+ },
+ {
+ "id": 11758,
+ "start": 5997.76,
+ "end": 5998.88,
+ "text": "specific"
+ },
+ {
+ "id": 11759,
+ "start": 5998.88,
+ "end": 5999.16,
+ "text": "knowledge"
+ },
+ {
+ "id": 11760,
+ "start": 5999.16,
+ "end": 5999.28,
+ "text": "that"
+ },
+ {
+ "id": 11761,
+ "start": 5999.28,
+ "end": 5999.46,
+ "text": "would"
+ },
+ {
+ "id": 11762,
+ "start": 5999.46,
+ "end": 5999.82,
+ "text": "suggest"
+ },
+ {
+ "id": 11763,
+ "start": 5999.82,
+ "end": 6000.08,
+ "text": "that."
+ },
+ {
+ "id": 11764,
+ "start": 6000.08,
+ "end": 6000.28,
+ "text": "But"
+ },
+ {
+ "id": 11765,
+ "start": 6000.28,
+ "end": 6000.74,
+ "text": "one"
+ },
+ {
+ "id": 11766,
+ "start": 6000.74,
+ "end": 6000.84,
+ "text": "of"
+ },
+ {
+ "id": 11767,
+ "start": 6000.84,
+ "end": 6000.94,
+ "text": "the"
+ },
+ {
+ "id": 11768,
+ "start": 6000.94,
+ "end": 6001.36,
+ "text": "steps"
+ },
+ {
+ "id": 11769,
+ "start": 6001.36,
+ "end": 6001.52,
+ "text": "that"
+ },
+ {
+ "id": 11770,
+ "start": 6001.52,
+ "end": 6001.62,
+ "text": "we"
+ },
+ {
+ "id": 11771,
+ "start": 6001.62,
+ "end": 6001.8,
+ "text": "need"
+ },
+ {
+ "id": 11772,
+ "start": 6001.8,
+ "end": 6001.88,
+ "text": "to"
+ },
+ {
+ "id": 11773,
+ "start": 6001.88,
+ "end": 6002.08,
+ "text": "take"
+ },
+ {
+ "id": 11774,
+ "start": 6002.08,
+ "end": 6002.34,
+ "text": "now"
+ },
+ {
+ "id": 11775,
+ "start": 6002.34,
+ "end": 6002.88,
+ "text": "is"
+ },
+ {
+ "id": 11776,
+ "start": 6002.88,
+ "end": 6003.02,
+ "text": "go"
+ },
+ {
+ "id": 11777,
+ "start": 6003.02,
+ "end": 6003.14,
+ "text": "to"
+ },
+ {
+ "id": 11778,
+ "start": 6003.14,
+ "end": 6003.22,
+ "text": "a"
+ },
+ {
+ "id": 11779,
+ "start": 6003.22,
+ "end": 6003.52,
+ "text": "full"
+ },
+ {
+ "id": 11780,
+ "start": 6003.52,
+ "end": 6003.84,
+ "text": "audit"
+ },
+ {
+ "id": 11781,
+ "start": 6003.84,
+ "end": 6004,
+ "text": "of"
+ },
+ {
+ "id": 11782,
+ "start": 6004,
+ "end": 6004.24,
+ "text": "all"
+ },
+ {
+ "id": 11783,
+ "start": 6004.24,
+ "end": 6004.36,
+ "text": "of"
+ },
+ {
+ "id": 11784,
+ "start": 6004.36,
+ "end": 6004.74,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11785,
+ "start": 6004.74,
+ "end": 6005.2,
+ "text": "analytical"
+ },
+ {
+ "id": 11786,
+ "start": 6005.2,
+ "end": 6005.64,
+ "text": "systems"
+ },
+ {
+ "id": 11787,
+ "start": 6005.64,
+ "end": 6005.74,
+ "text": "to"
+ },
+ {
+ "id": 11788,
+ "start": 6005.74,
+ "end": 6006.28,
+ "text": "understand"
+ },
+ {
+ "id": 11789,
+ "start": 6006.28,
+ "end": 6006.96,
+ "text": "what"
+ },
+ {
+ "id": 11790,
+ "start": 6006.96,
+ "end": 6007.2,
+ "text": "they're"
+ },
+ {
+ "id": 11791,
+ "start": 6007.2,
+ "end": 6007.44,
+ "text": "doing."
+ },
+ {
+ "id": 11792,
+ "start": 6007.44,
+ "end": 6007.94,
+ "text": "Whether"
+ },
+ {
+ "id": 11793,
+ "start": 6007.94,
+ "end": 6008.08,
+ "text": "they"
+ },
+ {
+ "id": 11794,
+ "start": 6008.08,
+ "end": 6008.3,
+ "text": "still"
+ },
+ {
+ "id": 11795,
+ "start": 6008.3,
+ "end": 6008.42,
+ "text": "have"
+ },
+ {
+ "id": 11796,
+ "start": 6008.42,
+ "end": 6008.58,
+ "text": "any"
+ },
+ {
+ "id": 11797,
+ "start": 6008.58,
+ "end": 6008.88,
+ "text": "data"
+ },
+ {
+ "id": 11798,
+ "start": 6008.88,
+ "end": 6009.34,
+ "text": "to"
+ },
+ {
+ "id": 11799,
+ "start": 6009.34,
+ "end": 6009.48,
+ "text": "make"
+ },
+ {
+ "id": 11800,
+ "start": 6009.48,
+ "end": 6009.6,
+ "text": "sure"
+ },
+ {
+ "id": 11801,
+ "start": 6009.6,
+ "end": 6009.86,
+ "text": "they"
+ },
+ {
+ "id": 11802,
+ "start": 6009.86,
+ "end": 6010.12,
+ "text": "remove"
+ },
+ {
+ "id": 11803,
+ "start": 6010.12,
+ "end": 6010.24,
+ "text": "all"
+ },
+ {
+ "id": 11804,
+ "start": 6010.24,
+ "end": 6010.36,
+ "text": "the"
+ },
+ {
+ "id": 11805,
+ "start": 6010.36,
+ "end": 6010.56,
+ "text": "data"
+ },
+ {
+ "id": 11806,
+ "start": 6010.56,
+ "end": 6010.62,
+ "text": "if"
+ },
+ {
+ "id": 11807,
+ "start": 6010.62,
+ "end": 6010.76,
+ "text": "they"
+ },
+ {
+ "id": 11808,
+ "start": 6010.76,
+ "end": 6010.94,
+ "text": "don't"
+ },
+ {
+ "id": 11809,
+ "start": 6010.94,
+ "end": 6011.1,
+ "text": "we're"
+ },
+ {
+ "id": 11810,
+ "start": 6011.1,
+ "end": 6011.24,
+ "text": "going"
+ },
+ {
+ "id": 11811,
+ "start": 6011.24,
+ "end": 6011.3,
+ "text": "to"
+ },
+ {
+ "id": 11812,
+ "start": 6011.3,
+ "end": 6011.42,
+ "text": "take"
+ },
+ {
+ "id": 11813,
+ "start": 6011.42,
+ "end": 6011.68,
+ "text": "legal"
+ },
+ {
+ "id": 11814,
+ "start": 6011.68,
+ "end": 6011.94,
+ "text": "action"
+ },
+ {
+ "id": 11815,
+ "start": 6011.94,
+ "end": 6012.22,
+ "text": "against"
+ },
+ {
+ "id": 11816,
+ "start": 6012.22,
+ "end": 6012.42,
+ "text": "them"
+ },
+ {
+ "id": 11817,
+ "start": 6012.42,
+ "end": 6012.52,
+ "text": "to"
+ },
+ {
+ "id": 11818,
+ "start": 6012.52,
+ "end": 6012.68,
+ "text": "do"
+ },
+ {
+ "id": 11819,
+ "start": 6012.68,
+ "end": 6012.92,
+ "text": "so"
+ },
+ {
+ "id": 11820,
+ "start": 6012.92,
+ "end": 6013.86,
+ "text": "that"
+ },
+ {
+ "id": 11821,
+ "start": 6013.86,
+ "end": 6014.82,
+ "text": "audit."
+ },
+ {
+ "id": 11822,
+ "start": 6014.82,
+ "end": 6015.44,
+ "text": "We"
+ },
+ {
+ "id": 11823,
+ "start": 6015.44,
+ "end": 6015.6,
+ "text": "have"
+ },
+ {
+ "id": 11824,
+ "start": 6015.6,
+ "end": 6016.26,
+ "text": "temporarily"
+ },
+ {
+ "id": 11825,
+ "start": 6016.26,
+ "end": 6017.38,
+ "text": "seated"
+ },
+ {
+ "id": 11826,
+ "start": 6017.38,
+ "end": 6017.64,
+ "text": "that"
+ },
+ {
+ "id": 11827,
+ "start": 6017.64,
+ "end": 6017.8,
+ "text": "in"
+ },
+ {
+ "id": 11828,
+ "start": 6017.8,
+ "end": 6018.04,
+ "text": "order"
+ },
+ {
+ "id": 11829,
+ "start": 6018.04,
+ "end": 6018.14,
+ "text": "to"
+ },
+ {
+ "id": 11830,
+ "start": 6018.14,
+ "end": 6018.34,
+ "text": "let"
+ },
+ {
+ "id": 11831,
+ "start": 6018.34,
+ "end": 6018.54,
+ "text": "the"
+ },
+ {
+ "id": 11832,
+ "start": 6018.54,
+ "end": 6018.92,
+ "text": "UK"
+ },
+ {
+ "id": 11833,
+ "start": 6018.92,
+ "end": 6019.4,
+ "text": "Government"
+ },
+ {
+ "id": 11834,
+ "start": 6019.4,
+ "end": 6019.88,
+ "text": "complete"
+ },
+ {
+ "id": 11835,
+ "start": 6019.88,
+ "end": 6020.18,
+ "text": "their"
+ },
+ {
+ "id": 11836,
+ "start": 6020.18,
+ "end": 6020.62,
+ "text": "government"
+ },
+ {
+ "id": 11837,
+ "start": 6020.62,
+ "end": 6021.3,
+ "text": "investigation"
+ },
+ {
+ "id": 11838,
+ "start": 6021.3,
+ "end": 6021.56,
+ "text": "first,"
+ },
+ {
+ "id": 11839,
+ "start": 6021.56,
+ "end": 6021.78,
+ "text": "because,"
+ },
+ {
+ "id": 11840,
+ "start": 6021.78,
+ "end": 6021.88,
+ "text": "of"
+ },
+ {
+ "id": 11841,
+ "start": 6021.88,
+ "end": 6022.06,
+ "text": "course,"
+ },
+ {
+ "id": 11842,
+ "start": 6022.06,
+ "end": 6022.18,
+ "text": "the"
+ },
+ {
+ "id": 11843,
+ "start": 6022.18,
+ "end": 6022.52,
+ "text": "government"
+ },
+ {
+ "id": 11844,
+ "start": 6022.52,
+ "end": 6023.08,
+ "text": "investigation"
+ },
+ {
+ "id": 11845,
+ "start": 6023.08,
+ "end": 6023.32,
+ "text": "takes"
+ },
+ {
+ "id": 11846,
+ "start": 6023.32,
+ "end": 6023.86,
+ "text": "precedence"
+ },
+ {
+ "id": 11847,
+ "start": 6023.86,
+ "end": 6024.16,
+ "text": "over"
+ },
+ {
+ "id": 11848,
+ "start": 6024.16,
+ "end": 6024.58,
+ "text": "a"
+ },
+ {
+ "id": 11849,
+ "start": 6024.58,
+ "end": 6024.98,
+ "text": "company"
+ },
+ {
+ "id": 11850,
+ "start": 6024.98,
+ "end": 6025.22,
+ "text": "doing"
+ },
+ {
+ "id": 11851,
+ "start": 6025.22,
+ "end": 6025.72,
+ "text": "that."
+ },
+ {
+ "id": 11852,
+ "start": 6025.72,
+ "end": 6026.04,
+ "text": "But"
+ },
+ {
+ "id": 11853,
+ "start": 6026.04,
+ "end": 6026.42,
+ "text": "we"
+ },
+ {
+ "id": 11854,
+ "start": 6026.42,
+ "end": 6026.54,
+ "text": "are"
+ },
+ {
+ "id": 11855,
+ "start": 6026.54,
+ "end": 6026.98,
+ "text": "committed"
+ },
+ {
+ "id": 11856,
+ "start": 6026.98,
+ "end": 6027.2,
+ "text": "to"
+ },
+ {
+ "id": 11857,
+ "start": 6027.2,
+ "end": 6027.92,
+ "text": "completing"
+ },
+ {
+ "id": 11858,
+ "start": 6027.92,
+ "end": 6028.08,
+ "text": "this."
+ },
+ {
+ "id": 11859,
+ "start": 6028.08,
+ "end": 6028.32,
+ "text": "Full"
+ },
+ {
+ "id": 11860,
+ "start": 6028.32,
+ "end": 6028.56,
+ "text": "audit"
+ },
+ {
+ "id": 11861,
+ "start": 6028.56,
+ "end": 6028.7,
+ "text": "and"
+ },
+ {
+ "id": 11862,
+ "start": 6028.7,
+ "end": 6028.94,
+ "text": "getting"
+ },
+ {
+ "id": 11863,
+ "start": 6028.94,
+ "end": 6029,
+ "text": "to"
+ },
+ {
+ "id": 11864,
+ "start": 6029,
+ "end": 6029.12,
+ "text": "the"
+ },
+ {
+ "id": 11865,
+ "start": 6029.12,
+ "end": 6029.34,
+ "text": "bottom"
+ },
+ {
+ "id": 11866,
+ "start": 6029.34,
+ "end": 6029.44,
+ "text": "of"
+ },
+ {
+ "id": 11867,
+ "start": 6029.44,
+ "end": 6029.66,
+ "text": "what's"
+ },
+ {
+ "id": 11868,
+ "start": 6029.66,
+ "end": 6029.86,
+ "text": "going"
+ },
+ {
+ "id": 11869,
+ "start": 6029.86,
+ "end": 6029.98,
+ "text": "on"
+ },
+ {
+ "id": 11870,
+ "start": 6029.98,
+ "end": 6030.2,
+ "text": "here."
+ },
+ {
+ "id": 11871,
+ "start": 6030.2,
+ "end": 6030.7,
+ "text": "So"
+ },
+ {
+ "id": 11872,
+ "start": 6030.7,
+ "end": 6030.86,
+ "text": "that"
+ },
+ {
+ "id": 11873,
+ "start": 6030.86,
+ "end": 6031,
+ "text": "way,"
+ },
+ {
+ "id": 11874,
+ "start": 6031,
+ "end": 6031.12,
+ "text": "we"
+ },
+ {
+ "id": 11875,
+ "start": 6031.12,
+ "end": 6031.24,
+ "text": "can"
+ },
+ {
+ "id": 11876,
+ "start": 6031.24,
+ "end": 6031.4,
+ "text": "have"
+ },
+ {
+ "id": 11877,
+ "start": 6031.4,
+ "end": 6031.54,
+ "text": "more"
+ },
+ {
+ "id": 11878,
+ "start": 6031.54,
+ "end": 6031.88,
+ "text": "answers"
+ },
+ {
+ "id": 11879,
+ "start": 6031.88,
+ "end": 6031.98,
+ "text": "to"
+ },
+ {
+ "id": 11880,
+ "start": 6031.98,
+ "end": 6032.14,
+ "text": "this."
+ },
+ {
+ "id": 11881,
+ "start": 6032.14,
+ "end": 6032.84,
+ "text": "Okay?"
+ },
+ {
+ "id": 11882,
+ "start": 6032.84,
+ "end": 6033.2,
+ "text": "You"
+ },
+ {
+ "id": 11883,
+ "start": 6033.2,
+ "end": 6034.08,
+ "text": "earlier"
+ },
+ {
+ "id": 11884,
+ "start": 6034.08,
+ "end": 6034.78,
+ "text": "stated"
+ },
+ {
+ "id": 11885,
+ "start": 6034.78,
+ "end": 6035.66,
+ "text": "publicly"
+ },
+ {
+ "id": 11886,
+ "start": 6035.66,
+ "end": 6035.92,
+ "text": "and"
+ },
+ {
+ "id": 11887,
+ "start": 6035.92,
+ "end": 6036.62,
+ "text": "here"
+ },
+ {
+ "id": 11888,
+ "start": 6036.62,
+ "end": 6037.16,
+ "text": "that"
+ },
+ {
+ "id": 11889,
+ "start": 6037.16,
+ "end": 6037.34,
+ "text": "you"
+ },
+ {
+ "id": 11890,
+ "start": 6037.34,
+ "end": 6037.52,
+ "text": "would"
+ },
+ {
+ "id": 11891,
+ "start": 6037.52,
+ "end": 6037.92,
+ "text": "support"
+ },
+ {
+ "id": 11892,
+ "start": 6037.92,
+ "end": 6038.18,
+ "text": "some"
+ },
+ {
+ "id": 11893,
+ "start": 6038.18,
+ "end": 6038.7,
+ "text": "privacy"
+ },
+ {
+ "id": 11894,
+ "start": 6038.7,
+ "end": 6039.12,
+ "text": "rules"
+ },
+ {
+ "id": 11895,
+ "start": 6039.12,
+ "end": 6039.78,
+ "text": "so"
+ },
+ {
+ "id": 11896,
+ "start": 6039.78,
+ "end": 6039.98,
+ "text": "that"
+ },
+ {
+ "id": 11897,
+ "start": 6039.98,
+ "end": 6040.3,
+ "text": "everyone"
+ },
+ {
+ "id": 11898,
+ "start": 6040.3,
+ "end": 6040.38,
+ "text": "is"
+ },
+ {
+ "id": 11899,
+ "start": 6040.38,
+ "end": 6041.4,
+ "text": "playing"
+ },
+ {
+ "id": 11900,
+ "start": 6041.4,
+ "end": 6041.52,
+ "text": "by"
+ },
+ {
+ "id": 11901,
+ "start": 6041.52,
+ "end": 6041.7,
+ "text": "the"
+ },
+ {
+ "id": 11902,
+ "start": 6041.7,
+ "end": 6041.94,
+ "text": "same"
+ },
+ {
+ "id": 11903,
+ "start": 6041.94,
+ "end": 6042.24,
+ "text": "rules"
+ },
+ {
+ "id": 11904,
+ "start": 6042.24,
+ "end": 6042.58,
+ "text": "here"
+ },
+ {
+ "id": 11905,
+ "start": 6042.58,
+ "end": 6043.48,
+ "text": "and"
+ },
+ {
+ "id": 11906,
+ "start": 6043.48,
+ "end": 6043.58,
+ "text": "you"
+ },
+ {
+ "id": 11907,
+ "start": 6043.58,
+ "end": 6043.86,
+ "text": "also"
+ },
+ {
+ "id": 11908,
+ "start": 6043.86,
+ "end": 6044.12,
+ "text": "said"
+ },
+ {
+ "id": 11909,
+ "start": 6044.12,
+ "end": 6044.38,
+ "text": "here"
+ },
+ {
+ "id": 11910,
+ "start": 6044.38,
+ "end": 6044.58,
+ "text": "that"
+ },
+ {
+ "id": 11911,
+ "start": 6044.58,
+ "end": 6044.7,
+ "text": "you"
+ },
+ {
+ "id": 11912,
+ "start": 6044.7,
+ "end": 6044.9,
+ "text": "should"
+ },
+ {
+ "id": 11913,
+ "start": 6044.9,
+ "end": 6045.02,
+ "text": "have"
+ },
+ {
+ "id": 11914,
+ "start": 6045.02,
+ "end": 6045.52,
+ "text": "notified"
+ },
+ {
+ "id": 11915,
+ "start": 6045.52,
+ "end": 6046.1,
+ "text": "customers"
+ },
+ {
+ "id": 11916,
+ "start": 6046.1,
+ "end": 6046.56,
+ "text": "earlier."
+ },
+ {
+ "id": 11917,
+ "start": 6046.56,
+ "end": 6047.32,
+ "text": "Would"
+ },
+ {
+ "id": 11918,
+ "start": 6047.32,
+ "end": 6047.44,
+ "text": "you"
+ },
+ {
+ "id": 11919,
+ "start": 6047.44,
+ "end": 6047.88,
+ "text": "support"
+ },
+ {
+ "id": 11920,
+ "start": 6047.88,
+ "end": 6048,
+ "text": "a"
+ },
+ {
+ "id": 11921,
+ "start": 6048,
+ "end": 6048.5,
+ "text": "rule"
+ },
+ {
+ "id": 11922,
+ "start": 6048.5,
+ "end": 6049.18,
+ "text": "that"
+ },
+ {
+ "id": 11923,
+ "start": 6049.18,
+ "end": 6049.4,
+ "text": "would"
+ },
+ {
+ "id": 11924,
+ "start": 6049.4,
+ "end": 6049.82,
+ "text": "require"
+ },
+ {
+ "id": 11925,
+ "start": 6049.82,
+ "end": 6050.02,
+ "text": "you"
+ },
+ {
+ "id": 11926,
+ "start": 6050.02,
+ "end": 6050.14,
+ "text": "to"
+ },
+ {
+ "id": 11927,
+ "start": 6050.14,
+ "end": 6050.56,
+ "text": "notify"
+ },
+ {
+ "id": 11928,
+ "start": 6050.56,
+ "end": 6050.88,
+ "text": "your"
+ },
+ {
+ "id": 11929,
+ "start": 6050.88,
+ "end": 6051.32,
+ "text": "users"
+ },
+ {
+ "id": 11930,
+ "start": 6051.32,
+ "end": 6051.54,
+ "text": "of"
+ },
+ {
+ "id": 11931,
+ "start": 6051.54,
+ "end": 6051.64,
+ "text": "a"
+ },
+ {
+ "id": 11932,
+ "start": 6051.64,
+ "end": 6051.94,
+ "text": "breach"
+ },
+ {
+ "id": 11933,
+ "start": 6051.94,
+ "end": 6052.3,
+ "text": "within"
+ },
+ {
+ "id": 11934,
+ "start": 6052.3,
+ "end": 6052.96,
+ "text": "72"
+ },
+ {
+ "id": 11935,
+ "start": 6052.96,
+ "end": 6054.18,
+ "text": "hours."
+ },
+ {
+ "id": 11936,
+ "start": 6054.18,
+ "end": 6055.34,
+ "text": "Senator,"
+ },
+ {
+ "id": 11937,
+ "start": 6055.34,
+ "end": 6055.78,
+ "text": "that"
+ },
+ {
+ "id": 11938,
+ "start": 6055.78,
+ "end": 6056.04,
+ "text": "makes"
+ },
+ {
+ "id": 11939,
+ "start": 6056.04,
+ "end": 6056.36,
+ "text": "sense"
+ },
+ {
+ "id": 11940,
+ "start": 6056.36,
+ "end": 6056.52,
+ "text": "to"
+ },
+ {
+ "id": 11941,
+ "start": 6056.52,
+ "end": 6056.64,
+ "text": "me."
+ },
+ {
+ "id": 11942,
+ "start": 6056.64,
+ "end": 6057.4,
+ "text": "And"
+ },
+ {
+ "id": 11943,
+ "start": 6057.4,
+ "end": 6057.84,
+ "text": "I"
+ },
+ {
+ "id": 11944,
+ "start": 6057.84,
+ "end": 6058.14,
+ "text": "think"
+ },
+ {
+ "id": 11945,
+ "start": 6058.14,
+ "end": 6058.34,
+ "text": "we"
+ },
+ {
+ "id": 11946,
+ "start": 6058.34,
+ "end": 6059.54,
+ "text": "should"
+ },
+ {
+ "id": 11947,
+ "start": 6059.54,
+ "end": 6060.5,
+ "text": "have"
+ },
+ {
+ "id": 11948,
+ "start": 6060.5,
+ "end": 6060.64,
+ "text": "our"
+ },
+ {
+ "id": 11949,
+ "start": 6060.64,
+ "end": 6060.88,
+ "text": "team"
+ },
+ {
+ "id": 11950,
+ "start": 6060.88,
+ "end": 6061.42,
+ "text": "follow"
+ },
+ {
+ "id": 11951,
+ "start": 6061.42,
+ "end": 6061.56,
+ "text": "up"
+ },
+ {
+ "id": 11952,
+ "start": 6061.56,
+ "end": 6061.96,
+ "text": "with"
+ },
+ {
+ "id": 11953,
+ "start": 6061.96,
+ "end": 6062.24,
+ "text": "yours"
+ },
+ {
+ "id": 11954,
+ "start": 6062.24,
+ "end": 6062.8,
+ "text": "to"
+ },
+ {
+ "id": 11955,
+ "start": 6062.8,
+ "end": 6063.12,
+ "text": "discuss"
+ },
+ {
+ "id": 11956,
+ "start": 6063.12,
+ "end": 6063.38,
+ "text": "the"
+ },
+ {
+ "id": 11957,
+ "start": 6063.38,
+ "end": 6063.78,
+ "text": "details"
+ },
+ {
+ "id": 11958,
+ "start": 6063.78,
+ "end": 6064.02,
+ "text": "around"
+ },
+ {
+ "id": 11959,
+ "start": 6064.02,
+ "end": 6064.16,
+ "text": "that"
+ },
+ {
+ "id": 11960,
+ "start": 6064.16,
+ "end": 6064.54,
+ "text": "more."
+ },
+ {
+ "id": 11961,
+ "start": 6064.54,
+ "end": 6065.04,
+ "text": "Thank"
+ },
+ {
+ "id": 11962,
+ "start": 6065.04,
+ "end": 6065.18,
+ "text": "you."
+ },
+ {
+ "id": 11963,
+ "start": 6065.18,
+ "end": 6065.36,
+ "text": "I"
+ },
+ {
+ "id": 11964,
+ "start": 6065.36,
+ "end": 6065.56,
+ "text": "just"
+ },
+ {
+ "id": 11965,
+ "start": 6065.56,
+ "end": 6065.74,
+ "text": "think"
+ },
+ {
+ "id": 11966,
+ "start": 6065.74,
+ "end": 6066.12,
+ "text": "part"
+ },
+ {
+ "id": 11967,
+ "start": 6066.12,
+ "end": 6066.22,
+ "text": "of"
+ },
+ {
+ "id": 11968,
+ "start": 6066.22,
+ "end": 6066.4,
+ "text": "this"
+ },
+ {
+ "id": 11969,
+ "start": 6066.4,
+ "end": 6066.68,
+ "text": "was"
+ },
+ {
+ "id": 11970,
+ "start": 6066.68,
+ "end": 6067.12,
+ "text": "when"
+ },
+ {
+ "id": 11971,
+ "start": 6067.12,
+ "end": 6067.34,
+ "text": "people"
+ },
+ {
+ "id": 11972,
+ "start": 6067.34,
+ "end": 6067.58,
+ "text": "don't"
+ },
+ {
+ "id": 11973,
+ "start": 6067.58,
+ "end": 6067.82,
+ "text": "even"
+ },
+ {
+ "id": 11974,
+ "start": 6067.82,
+ "end": 6068.02,
+ "text": "know"
+ },
+ {
+ "id": 11975,
+ "start": 6068.02,
+ "end": 6068.3,
+ "text": "that"
+ },
+ {
+ "id": 11976,
+ "start": 6068.3,
+ "end": 6068.52,
+ "text": "their"
+ },
+ {
+ "id": 11977,
+ "start": 6068.52,
+ "end": 6068.68,
+ "text": "dad"
+ },
+ {
+ "id": 11978,
+ "start": 6068.68,
+ "end": 6068.84,
+ "text": "has"
+ },
+ {
+ "id": 11979,
+ "start": 6068.84,
+ "end": 6069,
+ "text": "been"
+ },
+ {
+ "id": 11980,
+ "start": 6069,
+ "end": 6069.34,
+ "text": "breached"
+ },
+ {
+ "id": 11981,
+ "start": 6069.34,
+ "end": 6070.06,
+ "text": "that's"
+ },
+ {
+ "id": 11982,
+ "start": 6070.06,
+ "end": 6070.16,
+ "text": "a"
+ },
+ {
+ "id": 11983,
+ "start": 6070.16,
+ "end": 6070.46,
+ "text": "huge"
+ },
+ {
+ "id": 11984,
+ "start": 6070.46,
+ "end": 6070.82,
+ "text": "problem."
+ },
+ {
+ "id": 11985,
+ "start": 6070.82,
+ "end": 6070.96,
+ "text": "And"
+ },
+ {
+ "id": 11986,
+ "start": 6070.96,
+ "end": 6071,
+ "text": "I"
+ },
+ {
+ "id": 11987,
+ "start": 6071,
+ "end": 6071.28,
+ "text": "also"
+ },
+ {
+ "id": 11988,
+ "start": 6071.28,
+ "end": 6071.48,
+ "text": "think"
+ },
+ {
+ "id": 11989,
+ "start": 6071.48,
+ "end": 6071.66,
+ "text": "we"
+ },
+ {
+ "id": 11990,
+ "start": 6071.66,
+ "end": 6071.78,
+ "text": "get"
+ },
+ {
+ "id": 11991,
+ "start": 6071.78,
+ "end": 6071.92,
+ "text": "to"
+ },
+ {
+ "id": 11992,
+ "start": 6071.92,
+ "end": 6072.48,
+ "text": "solutions"
+ },
+ {
+ "id": 11993,
+ "start": 6072.48,
+ "end": 6072.9,
+ "text": "faster"
+ },
+ {
+ "id": 11994,
+ "start": 6072.9,
+ "end": 6073.08,
+ "text": "when"
+ },
+ {
+ "id": 11995,
+ "start": 6073.08,
+ "end": 6073.22,
+ "text": "we"
+ },
+ {
+ "id": 11996,
+ "start": 6073.22,
+ "end": 6073.38,
+ "text": "get"
+ },
+ {
+ "id": 11997,
+ "start": 6073.38,
+ "end": 6073.6,
+ "text": "that"
+ },
+ {
+ "id": 11998,
+ "start": 6073.6,
+ "end": 6074.16,
+ "text": "information"
+ },
+ {
+ "id": 11999,
+ "start": 6074.16,
+ "end": 6074.34,
+ "text": "out"
+ },
+ {
+ "id": 12000,
+ "start": 6074.34,
+ "end": 6074.9,
+ "text": "there,"
+ },
+ {
+ "id": 12001,
+ "start": 6074.9,
+ "end": 6075.44,
+ "text": "thank"
+ },
+ {
+ "id": 12002,
+ "start": 6075.44,
+ "end": 6075.62,
+ "text": "you,"
+ },
+ {
+ "id": 12003,
+ "start": 6075.62,
+ "end": 6075.82,
+ "text": "and"
+ },
+ {
+ "id": 12004,
+ "start": 6075.82,
+ "end": 6075.9,
+ "text": "we"
+ },
+ {
+ "id": 12005,
+ "start": 6075.9,
+ "end": 6076.1,
+ "text": "look"
+ },
+ {
+ "id": 12006,
+ "start": 6076.1,
+ "end": 6076.36,
+ "text": "forward"
+ },
+ {
+ "id": 12007,
+ "start": 6076.36,
+ "end": 6076.48,
+ "text": "to"
+ },
+ {
+ "id": 12008,
+ "start": 6076.48,
+ "end": 6076.88,
+ "text": "passing"
+ },
+ {
+ "id": 12009,
+ "start": 6076.88,
+ "end": 6077.04,
+ "text": "this."
+ },
+ {
+ "id": 12010,
+ "start": 6077.04,
+ "end": 6077.26,
+ "text": "Bill"
+ },
+ {
+ "id": 12011,
+ "start": 6077.26,
+ "end": 6077.5,
+ "text": "we'd"
+ },
+ {
+ "id": 12012,
+ "start": 6077.5,
+ "end": 6077.64,
+ "text": "love"
+ },
+ {
+ "id": 12013,
+ "start": 6077.64,
+ "end": 6077.76,
+ "text": "to"
+ },
+ {
+ "id": 12014,
+ "start": 6077.76,
+ "end": 6078,
+ "text": "pass"
+ },
+ {
+ "id": 12015,
+ "start": 6078,
+ "end": 6078.14,
+ "text": "it"
+ },
+ {
+ "id": 12016,
+ "start": 6078.14,
+ "end": 6078.58,
+ "text": "before"
+ },
+ {
+ "id": 12017,
+ "start": 6078.58,
+ "end": 6078.94,
+ "text": "the"
+ },
+ {
+ "id": 12018,
+ "start": 6078.94,
+ "end": 6079.34,
+ "text": "election"
+ },
+ {
+ "id": 12019,
+ "start": 6079.34,
+ "end": 6079.52,
+ "text": "on"
+ },
+ {
+ "id": 12020,
+ "start": 6079.52,
+ "end": 6079.64,
+ "text": "the"
+ },
+ {
+ "id": 12021,
+ "start": 6079.64,
+ "end": 6079.98,
+ "text": "honest"
+ },
+ {
+ "id": 12022,
+ "start": 6079.98,
+ "end": 6080.34,
+ "text": "ads"
+ },
+ {
+ "id": 12023,
+ "start": 6080.34,
+ "end": 6080.76,
+ "text": "and"
+ },
+ {
+ "id": 12024,
+ "start": 6080.76,
+ "end": 6081.66,
+ "text": "looking"
+ },
+ {
+ "id": 12025,
+ "start": 6081.66,
+ "end": 6082.04,
+ "text": "forward"
+ },
+ {
+ "id": 12026,
+ "start": 6082.04,
+ "end": 6082.22,
+ "text": "to"
+ },
+ {
+ "id": 12027,
+ "start": 6082.22,
+ "end": 6082.84,
+ "text": "better"
+ },
+ {
+ "id": 12028,
+ "start": 6082.84,
+ "end": 6083.5,
+ "text": "disclosure"
+ },
+ {
+ "id": 12029,
+ "start": 6083.5,
+ "end": 6084.12,
+ "text": "this"
+ },
+ {
+ "id": 12030,
+ "start": 6084.12,
+ "end": 6084.6,
+ "text": "election."
+ },
+ {
+ "id": 12031,
+ "start": 6084.6,
+ "end": 6084.96,
+ "text": "Thank"
+ },
+ {
+ "id": 12032,
+ "start": 6084.96,
+ "end": 6085.14,
+ "text": "you,"
+ },
+ {
+ "id": 12033,
+ "start": 6085.14,
+ "end": 6085.54,
+ "text": "thank"
+ },
+ {
+ "id": 12034,
+ "start": 6085.54,
+ "end": 6085.66,
+ "text": "you."
+ },
+ {
+ "id": 12035,
+ "start": 6085.66,
+ "end": 6085.94,
+ "text": "Senator"
+ },
+ {
+ "id": 12036,
+ "start": 6085.94,
+ "end": 6086.2,
+ "text": "Kobe"
+ },
+ {
+ "id": 12037,
+ "start": 6086.2,
+ "end": 6086.48,
+ "text": "Shar"
+ },
+ {
+ "id": 12038,
+ "start": 6086.48,
+ "end": 6086.72,
+ "text": "center"
+ },
+ {
+ "id": 12039,
+ "start": 6086.72,
+ "end": 6086.92,
+ "text": "blown."
+ },
+ {
+ "id": 12040,
+ "start": 6086.92,
+ "end": 6087.1,
+ "text": "So"
+ },
+ {
+ "id": 12041,
+ "start": 6087.1,
+ "end": 6087.68,
+ "text": "next,"
+ },
+ {
+ "id": 12042,
+ "start": 6087.68,
+ "end": 6088.26,
+ "text": "thank"
+ },
+ {
+ "id": 12043,
+ "start": 6088.26,
+ "end": 6088.34,
+ "text": "you,"
+ },
+ {
+ "id": 12044,
+ "start": 6088.34,
+ "end": 6088.52,
+ "text": "Mr"
+ },
+ {
+ "id": 12045,
+ "start": 6088.52,
+ "end": 6088.88,
+ "text": "Chairman,"
+ },
+ {
+ "id": 12046,
+ "start": 6088.88,
+ "end": 6089.62,
+ "text": "Mr"
+ },
+ {
+ "id": 12047,
+ "start": 6089.62,
+ "end": 6089.82,
+ "text": "Berg,"
+ },
+ {
+ "id": 12048,
+ "start": 6089.82,
+ "end": 6090.1,
+ "text": "nice"
+ },
+ {
+ "id": 12049,
+ "start": 6090.1,
+ "end": 6090.24,
+ "text": "to"
+ },
+ {
+ "id": 12050,
+ "start": 6090.24,
+ "end": 6090.42,
+ "text": "see"
+ },
+ {
+ "id": 12051,
+ "start": 6090.42,
+ "end": 6090.56,
+ "text": "you."
+ },
+ {
+ "id": 12052,
+ "start": 6090.56,
+ "end": 6090.96,
+ "text": "When"
+ },
+ {
+ "id": 12053,
+ "start": 6090.96,
+ "end": 6091.18,
+ "text": "I"
+ },
+ {
+ "id": 12054,
+ "start": 6091.18,
+ "end": 6091.44,
+ "text": "saw"
+ },
+ {
+ "id": 12055,
+ "start": 6091.44,
+ "end": 6091.62,
+ "text": "you"
+ },
+ {
+ "id": 12056,
+ "start": 6091.62,
+ "end": 6091.88,
+ "text": "not"
+ },
+ {
+ "id": 12057,
+ "start": 6091.88,
+ "end": 6092.12,
+ "text": "too"
+ },
+ {
+ "id": 12058,
+ "start": 6092.12,
+ "end": 6092.42,
+ "text": "long"
+ },
+ {
+ "id": 12059,
+ "start": 6092.42,
+ "end": 6092.96,
+ "text": "after"
+ },
+ {
+ "id": 12060,
+ "start": 6092.96,
+ "end": 6093.34,
+ "text": "I"
+ },
+ {
+ "id": 12061,
+ "start": 6093.34,
+ "end": 6093.66,
+ "text": "entered"
+ },
+ {
+ "id": 12062,
+ "start": 6093.66,
+ "end": 6093.8,
+ "text": "the"
+ },
+ {
+ "id": 12063,
+ "start": 6093.8,
+ "end": 6094.14,
+ "text": "Senate"
+ },
+ {
+ "id": 12064,
+ "start": 6094.14,
+ "end": 6094.26,
+ "text": "in"
+ },
+ {
+ "id": 12065,
+ "start": 6094.26,
+ "end": 6095.34,
+ "text": "2,011"
+ },
+ {
+ "id": 12066,
+ "start": 6095.34,
+ "end": 6095.46,
+ "text": "I"
+ },
+ {
+ "id": 12067,
+ "start": 6095.46,
+ "end": 6095.7,
+ "text": "told"
+ },
+ {
+ "id": 12068,
+ "start": 6095.7,
+ "end": 6095.84,
+ "text": "you"
+ },
+ {
+ "id": 12069,
+ "start": 6095.84,
+ "end": 6096.04,
+ "text": "when"
+ },
+ {
+ "id": 12070,
+ "start": 6096.04,
+ "end": 6096.6,
+ "text": "I"
+ },
+ {
+ "id": 12071,
+ "start": 6096.6,
+ "end": 6097.22,
+ "text": "sent"
+ },
+ {
+ "id": 12072,
+ "start": 6097.22,
+ "end": 6097.5,
+ "text": "my"
+ },
+ {
+ "id": 12073,
+ "start": 6097.5,
+ "end": 6098.28,
+ "text": "business"
+ },
+ {
+ "id": 12074,
+ "start": 6098.28,
+ "end": 6098.7,
+ "text": "cards"
+ },
+ {
+ "id": 12075,
+ "start": 6098.7,
+ "end": 6099.1,
+ "text": "down"
+ },
+ {
+ "id": 12076,
+ "start": 6099.1,
+ "end": 6099.26,
+ "text": "to"
+ },
+ {
+ "id": 12077,
+ "start": 6099.26,
+ "end": 6099.4,
+ "text": "be"
+ },
+ {
+ "id": 12078,
+ "start": 6099.4,
+ "end": 6099.78,
+ "text": "printed,"
+ },
+ {
+ "id": 12079,
+ "start": 6099.78,
+ "end": 6100,
+ "text": "they"
+ },
+ {
+ "id": 12080,
+ "start": 6100,
+ "end": 6100.3,
+ "text": "came"
+ },
+ {
+ "id": 12081,
+ "start": 6100.3,
+ "end": 6100.56,
+ "text": "back"
+ },
+ {
+ "id": 12082,
+ "start": 6100.56,
+ "end": 6100.76,
+ "text": "from"
+ },
+ {
+ "id": 12083,
+ "start": 6100.76,
+ "end": 6100.88,
+ "text": "the"
+ },
+ {
+ "id": 12084,
+ "start": 6100.88,
+ "end": 6101.22,
+ "text": "Senate"
+ },
+ {
+ "id": 12085,
+ "start": 6101.22,
+ "end": 6101.5,
+ "text": "print"
+ },
+ {
+ "id": 12086,
+ "start": 6101.5,
+ "end": 6101.8,
+ "text": "shop"
+ },
+ {
+ "id": 12087,
+ "start": 6101.8,
+ "end": 6101.96,
+ "text": "with"
+ },
+ {
+ "id": 12088,
+ "start": 6101.96,
+ "end": 6102.08,
+ "text": "the"
+ },
+ {
+ "id": 12089,
+ "start": 6102.08,
+ "end": 6102.54,
+ "text": "message."
+ },
+ {
+ "id": 12090,
+ "start": 6102.54,
+ "end": 6103.14,
+ "text": "That"
+ },
+ {
+ "id": 12091,
+ "start": 6103.14,
+ "end": 6103.28,
+ "text": "was"
+ },
+ {
+ "id": 12092,
+ "start": 6103.28,
+ "end": 6103.4,
+ "text": "the"
+ },
+ {
+ "id": 12093,
+ "start": 6103.4,
+ "end": 6103.64,
+ "text": "first"
+ },
+ {
+ "id": 12094,
+ "start": 6103.64,
+ "end": 6104.32,
+ "text": "business"
+ },
+ {
+ "id": 12095,
+ "start": 6104.32,
+ "end": 6104.6,
+ "text": "card,"
+ },
+ {
+ "id": 12096,
+ "start": 6104.6,
+ "end": 6104.76,
+ "text": "they"
+ },
+ {
+ "id": 12097,
+ "start": 6104.76,
+ "end": 6105.32,
+ "text": "ever"
+ },
+ {
+ "id": 12098,
+ "start": 6105.32,
+ "end": 6106.1,
+ "text": "printed"
+ },
+ {
+ "id": 12099,
+ "start": 6106.1,
+ "end": 6106.4,
+ "text": "a"
+ },
+ {
+ "id": 12100,
+ "start": 6106.4,
+ "end": 6107.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 12101,
+ "start": 6107.1,
+ "end": 6108.32,
+ "text": "address"
+ },
+ {
+ "id": 12102,
+ "start": 6108.32,
+ "end": 6109.28,
+ "text": "on"
+ },
+ {
+ "id": 12103,
+ "start": 6109.28,
+ "end": 6110,
+ "text": "there"
+ },
+ {
+ "id": 12104,
+ "start": 6110,
+ "end": 6110.14,
+ "text": "are"
+ },
+ {
+ "id": 12105,
+ "start": 6110.14,
+ "end": 6110.42,
+ "text": "days"
+ },
+ {
+ "id": 12106,
+ "start": 6110.42,
+ "end": 6110.62,
+ "text": "when"
+ },
+ {
+ "id": 12107,
+ "start": 6110.62,
+ "end": 6110.84,
+ "text": "I've"
+ },
+ {
+ "id": 12108,
+ "start": 6110.84,
+ "end": 6111.34,
+ "text": "regretted"
+ },
+ {
+ "id": 12109,
+ "start": 6111.34,
+ "end": 6111.64,
+ "text": "that."
+ },
+ {
+ "id": 12110,
+ "start": 6111.64,
+ "end": 6111.92,
+ "text": "But"
+ },
+ {
+ "id": 12111,
+ "start": 6111.92,
+ "end": 6112.14,
+ "text": "more"
+ },
+ {
+ "id": 12112,
+ "start": 6112.14,
+ "end": 6112.42,
+ "text": "days"
+ },
+ {
+ "id": 12113,
+ "start": 6112.42,
+ "end": 6112.62,
+ "text": "when"
+ },
+ {
+ "id": 12114,
+ "start": 6112.62,
+ "end": 6112.72,
+ "text": "we"
+ },
+ {
+ "id": 12115,
+ "start": 6112.72,
+ "end": 6112.96,
+ "text": "get"
+ },
+ {
+ "id": 12116,
+ "start": 6112.96,
+ "end": 6113.22,
+ "text": "lots"
+ },
+ {
+ "id": 12117,
+ "start": 6113.22,
+ "end": 6113.34,
+ "text": "of"
+ },
+ {
+ "id": 12118,
+ "start": 6113.34,
+ "end": 6114,
+ "text": "information"
+ },
+ {
+ "id": 12119,
+ "start": 6114,
+ "end": 6114.26,
+ "text": "that"
+ },
+ {
+ "id": 12120,
+ "start": 6114.26,
+ "end": 6114.4,
+ "text": "we"
+ },
+ {
+ "id": 12121,
+ "start": 6114.4,
+ "end": 6115.2,
+ "text": "need"
+ },
+ {
+ "id": 12122,
+ "start": 6115.2,
+ "end": 6115.32,
+ "text": "to"
+ },
+ {
+ "id": 12123,
+ "start": 6115.32,
+ "end": 6115.46,
+ "text": "get"
+ },
+ {
+ "id": 12124,
+ "start": 6115.46,
+ "end": 6115.7,
+ "text": "there"
+ },
+ {
+ "id": 12125,
+ "start": 6115.7,
+ "end": 6115.8,
+ "text": "are"
+ },
+ {
+ "id": 12126,
+ "start": 6115.8,
+ "end": 6116.04,
+ "text": "days"
+ },
+ {
+ "id": 12127,
+ "start": 6116.04,
+ "end": 6116.2,
+ "text": "when"
+ },
+ {
+ "id": 12128,
+ "start": 6116.2,
+ "end": 6116.28,
+ "text": "I"
+ },
+ {
+ "id": 12129,
+ "start": 6116.28,
+ "end": 6116.58,
+ "text": "wonder"
+ },
+ {
+ "id": 12130,
+ "start": 6116.58,
+ "end": 6116.68,
+ "text": "if"
+ },
+ {
+ "id": 12131,
+ "start": 6116.68,
+ "end": 6117.38,
+ "text": "Facebook"
+ },
+ {
+ "id": 12132,
+ "start": 6117.38,
+ "end": 6117.76,
+ "text": "friends"
+ },
+ {
+ "id": 12133,
+ "start": 6117.76,
+ "end": 6117.94,
+ "text": "is"
+ },
+ {
+ "id": 12134,
+ "start": 6117.94,
+ "end": 6118.02,
+ "text": "a"
+ },
+ {
+ "id": 12135,
+ "start": 6118.02,
+ "end": 6118.28,
+ "text": "little"
+ },
+ {
+ "id": 12136,
+ "start": 6118.28,
+ "end": 6118.92,
+ "text": "misstated"
+ },
+ {
+ "id": 12137,
+ "start": 6118.92,
+ "end": 6119.22,
+ "text": "that"
+ },
+ {
+ "id": 12138,
+ "start": 6119.22,
+ "end": 6119.48,
+ "text": "doesn't"
+ },
+ {
+ "id": 12139,
+ "start": 6119.48,
+ "end": 6119.7,
+ "text": "seem"
+ },
+ {
+ "id": 12140,
+ "start": 6119.7,
+ "end": 6119.9,
+ "text": "like"
+ },
+ {
+ "id": 12141,
+ "start": 6119.9,
+ "end": 6120.04,
+ "text": "I"
+ },
+ {
+ "id": 12142,
+ "start": 6120.04,
+ "end": 6120.24,
+ "text": "have"
+ },
+ {
+ "id": 12143,
+ "start": 6120.24,
+ "end": 6120.5,
+ "text": "those"
+ },
+ {
+ "id": 12144,
+ "start": 6120.5,
+ "end": 6120.98,
+ "text": "every"
+ },
+ {
+ "id": 12145,
+ "start": 6120.98,
+ "end": 6121.38,
+ "text": "single"
+ },
+ {
+ "id": 12146,
+ "start": 6121.38,
+ "end": 6121.67,
+ "text": "day."
+ },
+ {
+ "id": 12147,
+ "start": 6121.67,
+ "end": 6122.57,
+ "text": "But"
+ },
+ {
+ "id": 12148,
+ "start": 6122.57,
+ "end": 6122.93,
+ "text": "you"
+ },
+ {
+ "id": 12149,
+ "start": 6122.93,
+ "end": 6123.11,
+ "text": "know,"
+ },
+ {
+ "id": 12150,
+ "start": 6123.11,
+ "end": 6123.61,
+ "text": "the"
+ },
+ {
+ "id": 12151,
+ "start": 6123.61,
+ "end": 6124.35,
+ "text": "platform"
+ },
+ {
+ "id": 12152,
+ "start": 6124.35,
+ "end": 6124.77,
+ "text": "you've"
+ },
+ {
+ "id": 12153,
+ "start": 6124.77,
+ "end": 6125.15,
+ "text": "created"
+ },
+ {
+ "id": 12154,
+ "start": 6125.15,
+ "end": 6125.59,
+ "text": "is"
+ },
+ {
+ "id": 12155,
+ "start": 6125.59,
+ "end": 6126.33,
+ "text": "really"
+ },
+ {
+ "id": 12156,
+ "start": 6126.33,
+ "end": 6126.69,
+ "text": "important."
+ },
+ {
+ "id": 12157,
+ "start": 6126.69,
+ "end": 6126.85,
+ "text": "And"
+ },
+ {
+ "id": 12158,
+ "start": 6126.85,
+ "end": 6127.01,
+ "text": "my"
+ },
+ {
+ "id": 12159,
+ "start": 6127.01,
+ "end": 6127.29,
+ "text": "son,"
+ },
+ {
+ "id": 12160,
+ "start": 6127.29,
+ "end": 6127.69,
+ "text": "Charlie"
+ },
+ {
+ "id": 12161,
+ "start": 6127.69,
+ "end": 6127.93,
+ "text": "who's"
+ },
+ {
+ "id": 12162,
+ "start": 6127.93,
+ "end": 6128.47,
+ "text": "13"
+ },
+ {
+ "id": 12163,
+ "start": 6128.47,
+ "end": 6128.69,
+ "text": "is"
+ },
+ {
+ "id": 12164,
+ "start": 6128.69,
+ "end": 6129.39,
+ "text": "dedicated"
+ },
+ {
+ "id": 12165,
+ "start": 6129.39,
+ "end": 6129.47,
+ "text": "to"
+ },
+ {
+ "id": 12166,
+ "start": 6129.47,
+ "end": 6130.25,
+ "text": "Instagram."
+ },
+ {
+ "id": 12167,
+ "start": 6130.25,
+ "end": 6130.53,
+ "text": "So"
+ },
+ {
+ "id": 12168,
+ "start": 6130.53,
+ "end": 6131.31,
+ "text": "he'd"
+ },
+ {
+ "id": 12169,
+ "start": 6131.31,
+ "end": 6131.47,
+ "text": "want"
+ },
+ {
+ "id": 12170,
+ "start": 6131.47,
+ "end": 6131.53,
+ "text": "to"
+ },
+ {
+ "id": 12171,
+ "start": 6131.53,
+ "end": 6131.65,
+ "text": "be"
+ },
+ {
+ "id": 12172,
+ "start": 6131.65,
+ "end": 6131.83,
+ "text": "sure."
+ },
+ {
+ "id": 12173,
+ "start": 6131.83,
+ "end": 6131.95,
+ "text": "I"
+ },
+ {
+ "id": 12174,
+ "start": 6131.95,
+ "end": 6132.31,
+ "text": "mentioned"
+ },
+ {
+ "id": 12175,
+ "start": 6132.31,
+ "end": 6132.49,
+ "text": "him"
+ },
+ {
+ "id": 12176,
+ "start": 6132.49,
+ "end": 6132.71,
+ "text": "while"
+ },
+ {
+ "id": 12177,
+ "start": 6132.71,
+ "end": 6132.79,
+ "text": "I"
+ },
+ {
+ "id": 12178,
+ "start": 6132.79,
+ "end": 6133.01,
+ "text": "was"
+ },
+ {
+ "id": 12179,
+ "start": 6133.01,
+ "end": 6133.29,
+ "text": "here."
+ },
+ {
+ "id": 12180,
+ "start": 6133.29,
+ "end": 6134.06,
+ "text": "With"
+ },
+ {
+ "id": 12181,
+ "start": 6134.06,
+ "end": 6135.02,
+ "text": "with"
+ },
+ {
+ "id": 12182,
+ "start": 6135.02,
+ "end": 6135.18,
+ "text": "you,"
+ },
+ {
+ "id": 12183,
+ "start": 6135.18,
+ "end": 6135.46,
+ "text": "I"
+ },
+ {
+ "id": 12184,
+ "start": 6135.46,
+ "end": 6135.86,
+ "text": "haven't"
+ },
+ {
+ "id": 12185,
+ "start": 6135.86,
+ "end": 6136.18,
+ "text": "printed"
+ },
+ {
+ "id": 12186,
+ "start": 6136.18,
+ "end": 6136.34,
+ "text": "that"
+ },
+ {
+ "id": 12187,
+ "start": 6136.34,
+ "end": 6136.5,
+ "text": "on"
+ },
+ {
+ "id": 12188,
+ "start": 6136.5,
+ "end": 6136.7,
+ "text": "my"
+ },
+ {
+ "id": 12189,
+ "start": 6136.7,
+ "end": 6136.98,
+ "text": "card"
+ },
+ {
+ "id": 12190,
+ "start": 6136.98,
+ "end": 6137.2,
+ "text": "yet."
+ },
+ {
+ "id": 12191,
+ "start": 6137.2,
+ "end": 6137.54,
+ "text": "I"
+ },
+ {
+ "id": 12192,
+ "start": 6137.54,
+ "end": 6138.22,
+ "text": "will"
+ },
+ {
+ "id": 12193,
+ "start": 6138.22,
+ "end": 6138.44,
+ "text": "say"
+ },
+ {
+ "id": 12194,
+ "start": 6138.44,
+ "end": 6138.64,
+ "text": "that."
+ },
+ {
+ "id": 12195,
+ "start": 6138.64,
+ "end": 6138.78,
+ "text": "But"
+ },
+ {
+ "id": 12196,
+ "start": 6138.78,
+ "end": 6138.84,
+ "text": "I"
+ },
+ {
+ "id": 12197,
+ "start": 6138.84,
+ "end": 6139.04,
+ "text": "think"
+ },
+ {
+ "id": 12198,
+ "start": 6139.04,
+ "end": 6139.18,
+ "text": "we"
+ },
+ {
+ "id": 12199,
+ "start": 6139.18,
+ "end": 6139.38,
+ "text": "have"
+ },
+ {
+ "id": 12200,
+ "start": 6139.38,
+ "end": 6139.56,
+ "text": "that"
+ },
+ {
+ "id": 12201,
+ "start": 6139.56,
+ "end": 6139.96,
+ "text": "account"
+ },
+ {
+ "id": 12202,
+ "start": 6139.96,
+ "end": 6140.26,
+ "text": "as"
+ },
+ {
+ "id": 12203,
+ "start": 6140.26,
+ "end": 6140.58,
+ "text": "well."
+ },
+ {
+ "id": 12204,
+ "start": 6140.58,
+ "end": 6141.06,
+ "text": "Lots"
+ },
+ {
+ "id": 12205,
+ "start": 6141.06,
+ "end": 6141.2,
+ "text": "of"
+ },
+ {
+ "id": 12206,
+ "start": 6141.2,
+ "end": 6141.52,
+ "text": "ways"
+ },
+ {
+ "id": 12207,
+ "start": 6141.52,
+ "end": 6141.68,
+ "text": "to"
+ },
+ {
+ "id": 12208,
+ "start": 6141.68,
+ "end": 6142.08,
+ "text": "connect"
+ },
+ {
+ "id": 12209,
+ "start": 6142.08,
+ "end": 6142.42,
+ "text": "people"
+ },
+ {
+ "id": 12210,
+ "start": 6142.42,
+ "end": 6143.32,
+ "text": "and"
+ },
+ {
+ "id": 12211,
+ "start": 6143.32,
+ "end": 6143.98,
+ "text": "the"
+ },
+ {
+ "id": 12212,
+ "start": 6143.98,
+ "end": 6144.78,
+ "text": "the"
+ },
+ {
+ "id": 12213,
+ "start": 6144.78,
+ "end": 6145.46,
+ "text": "information"
+ },
+ {
+ "id": 12214,
+ "start": 6145.46,
+ "end": 6146.36,
+ "text": "obviously"
+ },
+ {
+ "id": 12215,
+ "start": 6146.36,
+ "end": 6146.58,
+ "text": "is"
+ },
+ {
+ "id": 12216,
+ "start": 6146.58,
+ "end": 6146.7,
+ "text": "an"
+ },
+ {
+ "id": 12217,
+ "start": 6146.7,
+ "end": 6147.2,
+ "text": "important"
+ },
+ {
+ "id": 12218,
+ "start": 6147.2,
+ "end": 6147.8,
+ "text": "commodity"
+ },
+ {
+ "id": 12219,
+ "start": 6147.8,
+ "end": 6148.26,
+ "text": "and"
+ },
+ {
+ "id": 12220,
+ "start": 6148.26,
+ "end": 6149.26,
+ "text": "it's"
+ },
+ {
+ "id": 12221,
+ "start": 6149.26,
+ "end": 6149.5,
+ "text": "what"
+ },
+ {
+ "id": 12222,
+ "start": 6149.5,
+ "end": 6149.82,
+ "text": "makes"
+ },
+ {
+ "id": 12223,
+ "start": 6149.82,
+ "end": 6150.6,
+ "text": "your"
+ },
+ {
+ "id": 12224,
+ "start": 6150.6,
+ "end": 6151.32,
+ "text": "business"
+ },
+ {
+ "id": 12225,
+ "start": 6151.32,
+ "end": 6151.72,
+ "text": "work?"
+ },
+ {
+ "id": 12226,
+ "start": 6151.72,
+ "end": 6152,
+ "text": "I"
+ },
+ {
+ "id": 12227,
+ "start": 6152,
+ "end": 6152.2,
+ "text": "get"
+ },
+ {
+ "id": 12228,
+ "start": 6152.2,
+ "end": 6152.5,
+ "text": "that,"
+ },
+ {
+ "id": 12229,
+ "start": 6152.5,
+ "end": 6153.14,
+ "text": "however."
+ },
+ {
+ "id": 12230,
+ "start": 6153.14,
+ "end": 6153.98,
+ "text": "I"
+ },
+ {
+ "id": 12231,
+ "start": 6153.98,
+ "end": 6154.32,
+ "text": "wonder"
+ },
+ {
+ "id": 12232,
+ "start": 6154.32,
+ "end": 6154.54,
+ "text": "about"
+ },
+ {
+ "id": 12233,
+ "start": 6154.54,
+ "end": 6154.78,
+ "text": "some"
+ },
+ {
+ "id": 12234,
+ "start": 6154.78,
+ "end": 6154.86,
+ "text": "of"
+ },
+ {
+ "id": 12235,
+ "start": 6154.86,
+ "end": 6155,
+ "text": "the"
+ },
+ {
+ "id": 12236,
+ "start": 6155,
+ "end": 6155.56,
+ "text": "collection"
+ },
+ {
+ "id": 12237,
+ "start": 6155.56,
+ "end": 6156.08,
+ "text": "efforts"
+ },
+ {
+ "id": 12238,
+ "start": 6156.08,
+ "end": 6156.28,
+ "text": "and"
+ },
+ {
+ "id": 12239,
+ "start": 6156.28,
+ "end": 6156.48,
+ "text": "maybe"
+ },
+ {
+ "id": 12240,
+ "start": 6156.48,
+ "end": 6156.6,
+ "text": "we"
+ },
+ {
+ "id": 12241,
+ "start": 6156.6,
+ "end": 6156.74,
+ "text": "can"
+ },
+ {
+ "id": 12242,
+ "start": 6156.74,
+ "end": 6156.82,
+ "text": "go"
+ },
+ {
+ "id": 12243,
+ "start": 6156.82,
+ "end": 6157.27,
+ "text": "through"
+ },
+ {
+ "id": 12244,
+ "start": 6157.27,
+ "end": 6157.89,
+ "text": "largely"
+ },
+ {
+ "id": 12245,
+ "start": 6157.89,
+ "end": 6158.61,
+ "text": "seven."
+ },
+ {
+ "id": 12246,
+ "start": 6158.61,
+ "end": 6158.85,
+ "text": "Yes,"
+ },
+ {
+ "id": 12247,
+ "start": 6158.85,
+ "end": 6158.99,
+ "text": "and"
+ },
+ {
+ "id": 12248,
+ "start": 6158.99,
+ "end": 6159.13,
+ "text": "now"
+ },
+ {
+ "id": 12249,
+ "start": 6159.13,
+ "end": 6159.25,
+ "text": "and"
+ },
+ {
+ "id": 12250,
+ "start": 6159.25,
+ "end": 6159.37,
+ "text": "then"
+ },
+ {
+ "id": 12251,
+ "start": 6159.37,
+ "end": 6159.53,
+ "text": "we'll"
+ },
+ {
+ "id": 12252,
+ "start": 6159.53,
+ "end": 6159.65,
+ "text": "get"
+ },
+ {
+ "id": 12253,
+ "start": 6159.65,
+ "end": 6159.85,
+ "text": "back"
+ },
+ {
+ "id": 12254,
+ "start": 6159.85,
+ "end": 6160.03,
+ "text": "to"
+ },
+ {
+ "id": 12255,
+ "start": 6160.03,
+ "end": 6160.91,
+ "text": "more"
+ },
+ {
+ "id": 12256,
+ "start": 6160.91,
+ "end": 6161.87,
+ "text": "expensive"
+ },
+ {
+ "id": 12257,
+ "start": 6161.87,
+ "end": 6162.37,
+ "text": "discussion"
+ },
+ {
+ "id": 12258,
+ "start": 6162.37,
+ "end": 6162.47,
+ "text": "of"
+ },
+ {
+ "id": 12259,
+ "start": 6162.47,
+ "end": 6163.01,
+ "text": "this."
+ },
+ {
+ "id": 12260,
+ "start": 6163.01,
+ "end": 6164.31,
+ "text": "But"
+ },
+ {
+ "id": 12261,
+ "start": 6164.31,
+ "end": 6164.95,
+ "text": "do"
+ },
+ {
+ "id": 12262,
+ "start": 6164.95,
+ "end": 6165.31,
+ "text": "you"
+ },
+ {
+ "id": 12263,
+ "start": 6165.31,
+ "end": 6166.37,
+ "text": "collect"
+ },
+ {
+ "id": 12264,
+ "start": 6166.37,
+ "end": 6166.77,
+ "text": "user"
+ },
+ {
+ "id": 12265,
+ "start": 6166.77,
+ "end": 6167.11,
+ "text": "data"
+ },
+ {
+ "id": 12266,
+ "start": 6167.11,
+ "end": 6167.65,
+ "text": "through"
+ },
+ {
+ "id": 12267,
+ "start": 6167.65,
+ "end": 6168.13,
+ "text": "cross"
+ },
+ {
+ "id": 12268,
+ "start": 6168.13,
+ "end": 6168.55,
+ "text": "device"
+ },
+ {
+ "id": 12269,
+ "start": 6168.55,
+ "end": 6171.36,
+ "text": "tracking"
+ },
+ {
+ "id": 12270,
+ "start": 6171.36,
+ "end": 6172.34,
+ "text": "Senator."
+ },
+ {
+ "id": 12271,
+ "start": 6172.34,
+ "end": 6172.44,
+ "text": "I"
+ },
+ {
+ "id": 12272,
+ "start": 6172.44,
+ "end": 6172.72,
+ "text": "believe"
+ },
+ {
+ "id": 12273,
+ "start": 6172.72,
+ "end": 6172.86,
+ "text": "we"
+ },
+ {
+ "id": 12274,
+ "start": 6172.86,
+ "end": 6173.08,
+ "text": "do"
+ },
+ {
+ "id": 12275,
+ "start": 6173.08,
+ "end": 6173.58,
+ "text": "link"
+ },
+ {
+ "id": 12276,
+ "start": 6173.58,
+ "end": 6174.18,
+ "text": "people's"
+ },
+ {
+ "id": 12277,
+ "start": 6174.18,
+ "end": 6174.62,
+ "text": "accounts"
+ },
+ {
+ "id": 12278,
+ "start": 6174.62,
+ "end": 6175.24,
+ "text": "between"
+ },
+ {
+ "id": 12279,
+ "start": 6175.24,
+ "end": 6175.88,
+ "text": "devices"
+ },
+ {
+ "id": 12280,
+ "start": 6175.88,
+ "end": 6176.1,
+ "text": "in"
+ },
+ {
+ "id": 12281,
+ "start": 6176.1,
+ "end": 6176.38,
+ "text": "order"
+ },
+ {
+ "id": 12282,
+ "start": 6176.38,
+ "end": 6176.66,
+ "text": "to"
+ },
+ {
+ "id": 12283,
+ "start": 6176.66,
+ "end": 6176.94,
+ "text": "make"
+ },
+ {
+ "id": 12284,
+ "start": 6176.94,
+ "end": 6177.18,
+ "text": "sure"
+ },
+ {
+ "id": 12285,
+ "start": 6177.18,
+ "end": 6177.48,
+ "text": "that"
+ },
+ {
+ "id": 12286,
+ "start": 6177.48,
+ "end": 6177.82,
+ "text": "their"
+ },
+ {
+ "id": 12287,
+ "start": 6177.82,
+ "end": 6178.4,
+ "text": "Facebook"
+ },
+ {
+ "id": 12288,
+ "start": 6178.4,
+ "end": 6178.52,
+ "text": "and"
+ },
+ {
+ "id": 12289,
+ "start": 6178.52,
+ "end": 6179,
+ "text": "Instagram"
+ },
+ {
+ "id": 12290,
+ "start": 6179,
+ "end": 6179.14,
+ "text": "and"
+ },
+ {
+ "id": 12291,
+ "start": 6179.14,
+ "end": 6179.28,
+ "text": "there"
+ },
+ {
+ "id": 12292,
+ "start": 6179.28,
+ "end": 6179.38,
+ "text": "are"
+ },
+ {
+ "id": 12293,
+ "start": 6179.38,
+ "end": 6179.54,
+ "text": "other"
+ },
+ {
+ "id": 12294,
+ "start": 6179.54,
+ "end": 6180.06,
+ "text": "experiences"
+ },
+ {
+ "id": 12295,
+ "start": 6180.06,
+ "end": 6180.22,
+ "text": "can"
+ },
+ {
+ "id": 12296,
+ "start": 6180.22,
+ "end": 6180.34,
+ "text": "be"
+ },
+ {
+ "id": 12297,
+ "start": 6180.34,
+ "end": 6180.64,
+ "text": "synced"
+ },
+ {
+ "id": 12298,
+ "start": 6180.64,
+ "end": 6180.98,
+ "text": "between"
+ },
+ {
+ "id": 12299,
+ "start": 6180.98,
+ "end": 6181.18,
+ "text": "their"
+ },
+ {
+ "id": 12300,
+ "start": 6181.18,
+ "end": 6181.7,
+ "text": "devices"
+ },
+ {
+ "id": 12301,
+ "start": 6181.7,
+ "end": 6181.86,
+ "text": "and"
+ },
+ {
+ "id": 12302,
+ "start": 6181.86,
+ "end": 6181.98,
+ "text": "that"
+ },
+ {
+ "id": 12303,
+ "start": 6181.98,
+ "end": 6182.16,
+ "text": "would"
+ },
+ {
+ "id": 12304,
+ "start": 6182.16,
+ "end": 6182.46,
+ "text": "also"
+ },
+ {
+ "id": 12305,
+ "start": 6182.46,
+ "end": 6182.96,
+ "text": "include"
+ },
+ {
+ "id": 12306,
+ "start": 6182.96,
+ "end": 6183.72,
+ "text": "offline."
+ },
+ {
+ "id": 12307,
+ "start": 6183.72,
+ "end": 6184.38,
+ "text": "Data"
+ },
+ {
+ "id": 12308,
+ "start": 6184.38,
+ "end": 6184.78,
+ "text": "data"
+ },
+ {
+ "id": 12309,
+ "start": 6184.78,
+ "end": 6185.02,
+ "text": "that's"
+ },
+ {
+ "id": 12310,
+ "start": 6185.02,
+ "end": 6185.7,
+ "text": "tracking"
+ },
+ {
+ "id": 12311,
+ "start": 6185.7,
+ "end": 6185.98,
+ "text": "that's"
+ },
+ {
+ "id": 12312,
+ "start": 6185.98,
+ "end": 6186.16,
+ "text": "not"
+ },
+ {
+ "id": 12313,
+ "start": 6186.16,
+ "end": 6186.94,
+ "text": "necessarily"
+ },
+ {
+ "id": 12314,
+ "start": 6186.94,
+ "end": 6187.34,
+ "text": "linked"
+ },
+ {
+ "id": 12315,
+ "start": 6187.34,
+ "end": 6187.5,
+ "text": "to"
+ },
+ {
+ "id": 12316,
+ "start": 6187.5,
+ "end": 6188.2,
+ "text": "Facebook"
+ },
+ {
+ "id": 12317,
+ "start": 6188.2,
+ "end": 6188.44,
+ "text": "but"
+ },
+ {
+ "id": 12318,
+ "start": 6188.44,
+ "end": 6188.76,
+ "text": "linked"
+ },
+ {
+ "id": 12319,
+ "start": 6188.76,
+ "end": 6189.24,
+ "text": "to"
+ },
+ {
+ "id": 12320,
+ "start": 6189.24,
+ "end": 6189.64,
+ "text": "some"
+ },
+ {
+ "id": 12321,
+ "start": 6189.64,
+ "end": 6190.02,
+ "text": "device."
+ },
+ {
+ "id": 12322,
+ "start": 6190.02,
+ "end": 6190.32,
+ "text": "They"
+ },
+ {
+ "id": 12323,
+ "start": 6190.32,
+ "end": 6190.68,
+ "text": "went"
+ },
+ {
+ "id": 12324,
+ "start": 6190.68,
+ "end": 6191.06,
+ "text": "through"
+ },
+ {
+ "id": 12325,
+ "start": 6191.06,
+ "end": 6191.7,
+ "text": "Facebook"
+ },
+ {
+ "id": 12326,
+ "start": 6191.7,
+ "end": 6191.98,
+ "text": "on"
+ },
+ {
+ "id": 12327,
+ "start": 6191.98,
+ "end": 6192.14,
+ "text": "is"
+ },
+ {
+ "id": 12328,
+ "start": 6192.14,
+ "end": 6192.32,
+ "text": "that"
+ },
+ {
+ "id": 12329,
+ "start": 6192.32,
+ "end": 6192.84,
+ "text": "right,"
+ },
+ {
+ "id": 12330,
+ "start": 6192.84,
+ "end": 6193.46,
+ "text": "Senator?"
+ },
+ {
+ "id": 12331,
+ "start": 6193.46,
+ "end": 6193.5,
+ "text": "I"
+ },
+ {
+ "id": 12332,
+ "start": 6193.5,
+ "end": 6193.66,
+ "text": "want"
+ },
+ {
+ "id": 12333,
+ "start": 6193.66,
+ "end": 6193.72,
+ "text": "to"
+ },
+ {
+ "id": 12334,
+ "start": 6193.72,
+ "end": 6193.86,
+ "text": "make"
+ },
+ {
+ "id": 12335,
+ "start": 6193.86,
+ "end": 6194,
+ "text": "sure"
+ },
+ {
+ "id": 12336,
+ "start": 6194,
+ "end": 6194.14,
+ "text": "we"
+ },
+ {
+ "id": 12337,
+ "start": 6194.14,
+ "end": 6194.72,
+ "text": "get"
+ },
+ {
+ "id": 12338,
+ "start": 6194.72,
+ "end": 6194.94,
+ "text": "this"
+ },
+ {
+ "id": 12339,
+ "start": 6194.94,
+ "end": 6195.26,
+ "text": "right."
+ },
+ {
+ "id": 12340,
+ "start": 6195.26,
+ "end": 6195.72,
+ "text": "So"
+ },
+ {
+ "id": 12341,
+ "start": 6195.72,
+ "end": 6196.62,
+ "text": "I"
+ },
+ {
+ "id": 12342,
+ "start": 6196.62,
+ "end": 6196.78,
+ "text": "want"
+ },
+ {
+ "id": 12343,
+ "start": 6196.78,
+ "end": 6196.9,
+ "text": "to"
+ },
+ {
+ "id": 12344,
+ "start": 6196.9,
+ "end": 6197.18,
+ "text": "have"
+ },
+ {
+ "id": 12345,
+ "start": 6197.18,
+ "end": 6197.3,
+ "text": "my"
+ },
+ {
+ "id": 12346,
+ "start": 6197.3,
+ "end": 6197.48,
+ "text": "team."
+ },
+ {
+ "id": 12347,
+ "start": 6197.48,
+ "end": 6197.78,
+ "text": "Follow"
+ },
+ {
+ "id": 12348,
+ "start": 6197.78,
+ "end": 6197.86,
+ "text": "up"
+ },
+ {
+ "id": 12349,
+ "start": 6197.86,
+ "end": 6198,
+ "text": "with"
+ },
+ {
+ "id": 12350,
+ "start": 6198,
+ "end": 6198.12,
+ "text": "you"
+ },
+ {
+ "id": 12351,
+ "start": 6198.12,
+ "end": 6198.24,
+ "text": "on"
+ },
+ {
+ "id": 12352,
+ "start": 6198.24,
+ "end": 6198.38,
+ "text": "that"
+ },
+ {
+ "id": 12353,
+ "start": 6198.38,
+ "end": 6199.38,
+ "text": "afterwards."
+ },
+ {
+ "id": 12354,
+ "start": 6199.38,
+ "end": 6200.36,
+ "text": "That"
+ },
+ {
+ "id": 12355,
+ "start": 6200.36,
+ "end": 6200.62,
+ "text": "doesn't"
+ },
+ {
+ "id": 12356,
+ "start": 6200.62,
+ "end": 6200.84,
+ "text": "seem"
+ },
+ {
+ "id": 12357,
+ "start": 6200.84,
+ "end": 6201.06,
+ "text": "that"
+ },
+ {
+ "id": 12358,
+ "start": 6201.06,
+ "end": 6201.7,
+ "text": "complicated"
+ },
+ {
+ "id": 12359,
+ "start": 6201.7,
+ "end": 6201.8,
+ "text": "to"
+ },
+ {
+ "id": 12360,
+ "start": 6201.8,
+ "end": 6201.94,
+ "text": "me."
+ },
+ {
+ "id": 12361,
+ "start": 6201.94,
+ "end": 6202.46,
+ "text": "You"
+ },
+ {
+ "id": 12362,
+ "start": 6202.46,
+ "end": 6202.86,
+ "text": "understand"
+ },
+ {
+ "id": 12363,
+ "start": 6202.86,
+ "end": 6203.19,
+ "text": "this"
+ },
+ {
+ "id": 12364,
+ "start": 6203.19,
+ "end": 6203.53,
+ "text": "than"
+ },
+ {
+ "id": 12365,
+ "start": 6203.53,
+ "end": 6203.63,
+ "text": "I"
+ },
+ {
+ "id": 12366,
+ "start": 6203.63,
+ "end": 6203.85,
+ "text": "do."
+ },
+ {
+ "id": 12367,
+ "start": 6203.85,
+ "end": 6203.99,
+ "text": "But"
+ },
+ {
+ "id": 12368,
+ "start": 6203.99,
+ "end": 6205.09,
+ "text": "maybe"
+ },
+ {
+ "id": 12369,
+ "start": 6205.09,
+ "end": 6205.21,
+ "text": "you"
+ },
+ {
+ "id": 12370,
+ "start": 6205.21,
+ "end": 6205.37,
+ "text": "can"
+ },
+ {
+ "id": 12371,
+ "start": 6205.37,
+ "end": 6205.65,
+ "text": "explain"
+ },
+ {
+ "id": 12372,
+ "start": 6205.65,
+ "end": 6205.77,
+ "text": "to"
+ },
+ {
+ "id": 12373,
+ "start": 6205.77,
+ "end": 6205.89,
+ "text": "me"
+ },
+ {
+ "id": 12374,
+ "start": 6205.89,
+ "end": 6206.15,
+ "text": "why"
+ },
+ {
+ "id": 12375,
+ "start": 6206.15,
+ "end": 6207.05,
+ "text": "that"
+ },
+ {
+ "id": 12376,
+ "start": 6207.05,
+ "end": 6207.23,
+ "text": "why"
+ },
+ {
+ "id": 12377,
+ "start": 6207.23,
+ "end": 6207.45,
+ "text": "that's"
+ },
+ {
+ "id": 12378,
+ "start": 6207.45,
+ "end": 6208.05,
+ "text": "complicated."
+ },
+ {
+ "id": 12379,
+ "start": 6208.05,
+ "end": 6208.35,
+ "text": "Do"
+ },
+ {
+ "id": 12380,
+ "start": 6208.35,
+ "end": 6208.55,
+ "text": "you"
+ },
+ {
+ "id": 12381,
+ "start": 6208.55,
+ "end": 6209.01,
+ "text": "track"
+ },
+ {
+ "id": 12382,
+ "start": 6209.01,
+ "end": 6209.95,
+ "text": "devices"
+ },
+ {
+ "id": 12383,
+ "start": 6209.95,
+ "end": 6210.77,
+ "text": "that"
+ },
+ {
+ "id": 12384,
+ "start": 6210.77,
+ "end": 6210.85,
+ "text": "an"
+ },
+ {
+ "id": 12385,
+ "start": 6210.85,
+ "end": 6211.51,
+ "text": "individual"
+ },
+ {
+ "id": 12386,
+ "start": 6211.51,
+ "end": 6211.73,
+ "text": "who"
+ },
+ {
+ "id": 12387,
+ "start": 6211.73,
+ "end": 6212.15,
+ "text": "uses"
+ },
+ {
+ "id": 12388,
+ "start": 6212.15,
+ "end": 6213.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 12389,
+ "start": 6213.54,
+ "end": 6214.98,
+ "text": "as"
+ },
+ {
+ "id": 12390,
+ "start": 6214.98,
+ "end": 6215.94,
+ "text": "that"
+ },
+ {
+ "id": 12391,
+ "start": 6215.94,
+ "end": 6217.06,
+ "text": "is"
+ },
+ {
+ "id": 12392,
+ "start": 6217.06,
+ "end": 6217.66,
+ "text": "connected"
+ },
+ {
+ "id": 12393,
+ "start": 6217.66,
+ "end": 6217.82,
+ "text": "to"
+ },
+ {
+ "id": 12394,
+ "start": 6217.82,
+ "end": 6218.02,
+ "text": "the"
+ },
+ {
+ "id": 12395,
+ "start": 6218.02,
+ "end": 6218.38,
+ "text": "device"
+ },
+ {
+ "id": 12396,
+ "start": 6218.38,
+ "end": 6218.54,
+ "text": "that"
+ },
+ {
+ "id": 12397,
+ "start": 6218.54,
+ "end": 6218.76,
+ "text": "they"
+ },
+ {
+ "id": 12398,
+ "start": 6218.76,
+ "end": 6219,
+ "text": "use"
+ },
+ {
+ "id": 12399,
+ "start": 6219,
+ "end": 6219.18,
+ "text": "for"
+ },
+ {
+ "id": 12400,
+ "start": 6219.18,
+ "end": 6219.4,
+ "text": "their"
+ },
+ {
+ "id": 12401,
+ "start": 6219.4,
+ "end": 6219.92,
+ "text": "Facebook"
+ },
+ {
+ "id": 12402,
+ "start": 6219.92,
+ "end": 6220.44,
+ "text": "connection."
+ },
+ {
+ "id": 12403,
+ "start": 6220.44,
+ "end": 6220.6,
+ "text": "But"
+ },
+ {
+ "id": 12404,
+ "start": 6220.6,
+ "end": 6220.84,
+ "text": "not"
+ },
+ {
+ "id": 12405,
+ "start": 6220.84,
+ "end": 6221.64,
+ "text": "necessarily"
+ },
+ {
+ "id": 12406,
+ "start": 6221.64,
+ "end": 6222.16,
+ "text": "connected"
+ },
+ {
+ "id": 12407,
+ "start": 6222.16,
+ "end": 6222.28,
+ "text": "to"
+ },
+ {
+ "id": 12408,
+ "start": 6222.28,
+ "end": 6223.86,
+ "text": "Facebook"
+ },
+ {
+ "id": 12409,
+ "start": 6223.86,
+ "end": 6224.58,
+ "text": "I'm"
+ },
+ {
+ "id": 12410,
+ "start": 6224.58,
+ "end": 6225.62,
+ "text": "not"
+ },
+ {
+ "id": 12411,
+ "start": 6225.62,
+ "end": 6225.88,
+ "text": "sure"
+ },
+ {
+ "id": 12412,
+ "start": 6225.88,
+ "end": 6226.08,
+ "text": "the"
+ },
+ {
+ "id": 12413,
+ "start": 6226.08,
+ "end": 6226.4,
+ "text": "answer"
+ },
+ {
+ "id": 12414,
+ "start": 6226.4,
+ "end": 6226.52,
+ "text": "to"
+ },
+ {
+ "id": 12415,
+ "start": 6226.52,
+ "end": 6226.72,
+ "text": "that"
+ },
+ {
+ "id": 12416,
+ "start": 6226.72,
+ "end": 6227.1,
+ "text": "question,"
+ },
+ {
+ "id": 12417,
+ "start": 6227.1,
+ "end": 6227.42,
+ "text": "really."
+ },
+ {
+ "id": 12418,
+ "start": 6227.42,
+ "end": 6228.14,
+ "text": "Yes,"
+ },
+ {
+ "id": 12419,
+ "start": 6228.14,
+ "end": 6229.08,
+ "text": "there"
+ },
+ {
+ "id": 12420,
+ "start": 6229.08,
+ "end": 6229.24,
+ "text": "may"
+ },
+ {
+ "id": 12421,
+ "start": 6229.24,
+ "end": 6229.36,
+ "text": "be"
+ },
+ {
+ "id": 12422,
+ "start": 6229.36,
+ "end": 6229.78,
+ "text": "some"
+ },
+ {
+ "id": 12423,
+ "start": 6229.78,
+ "end": 6230.2,
+ "text": "data"
+ },
+ {
+ "id": 12424,
+ "start": 6230.2,
+ "end": 6230.54,
+ "text": "that"
+ },
+ {
+ "id": 12425,
+ "start": 6230.54,
+ "end": 6231.44,
+ "text": "is"
+ },
+ {
+ "id": 12426,
+ "start": 6231.44,
+ "end": 6232.04,
+ "text": "necessary"
+ },
+ {
+ "id": 12427,
+ "start": 6232.04,
+ "end": 6232.16,
+ "text": "to"
+ },
+ {
+ "id": 12428,
+ "start": 6232.16,
+ "end": 6232.46,
+ "text": "provide"
+ },
+ {
+ "id": 12429,
+ "start": 6232.46,
+ "end": 6232.58,
+ "text": "the"
+ },
+ {
+ "id": 12430,
+ "start": 6232.58,
+ "end": 6232.96,
+ "text": "service"
+ },
+ {
+ "id": 12431,
+ "start": 6232.96,
+ "end": 6233.12,
+ "text": "that"
+ },
+ {
+ "id": 12432,
+ "start": 6233.12,
+ "end": 6233.22,
+ "text": "we"
+ },
+ {
+ "id": 12433,
+ "start": 6233.22,
+ "end": 6234.18,
+ "text": "do."
+ },
+ {
+ "id": 12434,
+ "start": 6234.18,
+ "end": 6235.02,
+ "text": "But"
+ },
+ {
+ "id": 12435,
+ "start": 6235.02,
+ "end": 6235.22,
+ "text": "I"
+ },
+ {
+ "id": 12436,
+ "start": 6235.22,
+ "end": 6236.08,
+ "text": "don't"
+ },
+ {
+ "id": 12437,
+ "start": 6236.08,
+ "end": 6236.24,
+ "text": "have"
+ },
+ {
+ "id": 12438,
+ "start": 6236.24,
+ "end": 6236.86,
+ "text": "that"
+ },
+ {
+ "id": 12439,
+ "start": 6236.86,
+ "end": 6237.82,
+ "text": "sitting"
+ },
+ {
+ "id": 12440,
+ "start": 6237.82,
+ "end": 6237.96,
+ "text": "here."
+ },
+ {
+ "id": 12441,
+ "start": 6237.96,
+ "end": 6238.22,
+ "text": "Today,"
+ },
+ {
+ "id": 12442,
+ "start": 6238.22,
+ "end": 6238.62,
+ "text": "so"
+ },
+ {
+ "id": 12443,
+ "start": 6238.62,
+ "end": 6238.96,
+ "text": "that's"
+ },
+ {
+ "id": 12444,
+ "start": 6238.96,
+ "end": 6239.3,
+ "text": "something"
+ },
+ {
+ "id": 12445,
+ "start": 6239.3,
+ "end": 6239.42,
+ "text": "that"
+ },
+ {
+ "id": 12446,
+ "start": 6239.42,
+ "end": 6239.46,
+ "text": "I"
+ },
+ {
+ "id": 12447,
+ "start": 6239.46,
+ "end": 6239.62,
+ "text": "would"
+ },
+ {
+ "id": 12448,
+ "start": 6239.62,
+ "end": 6239.74,
+ "text": "want"
+ },
+ {
+ "id": 12449,
+ "start": 6239.74,
+ "end": 6239.8,
+ "text": "to"
+ },
+ {
+ "id": 12450,
+ "start": 6239.8,
+ "end": 6239.98,
+ "text": "follow"
+ },
+ {
+ "id": 12451,
+ "start": 6239.98,
+ "end": 6240.16,
+ "text": "now."
+ },
+ {
+ "id": 12452,
+ "start": 6240.16,
+ "end": 6240.3,
+ "text": "The"
+ },
+ {
+ "id": 12453,
+ "start": 6240.3,
+ "end": 6241.06,
+ "text": "FTC"
+ },
+ {
+ "id": 12454,
+ "start": 6241.06,
+ "end": 6241.44,
+ "text": "last"
+ },
+ {
+ "id": 12455,
+ "start": 6241.44,
+ "end": 6241.82,
+ "text": "year"
+ },
+ {
+ "id": 12456,
+ "start": 6241.82,
+ "end": 6242.76,
+ "text": "flag"
+ },
+ {
+ "id": 12457,
+ "start": 6242.76,
+ "end": 6243.12,
+ "text": "cross"
+ },
+ {
+ "id": 12458,
+ "start": 6243.12,
+ "end": 6243.64,
+ "text": "device"
+ },
+ {
+ "id": 12459,
+ "start": 6243.64,
+ "end": 6244.32,
+ "text": "tracking"
+ },
+ {
+ "id": 12460,
+ "start": 6244.32,
+ "end": 6244.8,
+ "text": "as"
+ },
+ {
+ "id": 12461,
+ "start": 6244.8,
+ "end": 6245.02,
+ "text": "one"
+ },
+ {
+ "id": 12462,
+ "start": 6245.02,
+ "end": 6245.12,
+ "text": "of"
+ },
+ {
+ "id": 12463,
+ "start": 6245.12,
+ "end": 6245.36,
+ "text": "their"
+ },
+ {
+ "id": 12464,
+ "start": 6245.36,
+ "end": 6246.64,
+ "text": "concerns."
+ },
+ {
+ "id": 12465,
+ "start": 6246.64,
+ "end": 6247.72,
+ "text": "Generally"
+ },
+ {
+ "id": 12466,
+ "start": 6247.72,
+ "end": 6248.04,
+ "text": "that"
+ },
+ {
+ "id": 12467,
+ "start": 6248.04,
+ "end": 6248.42,
+ "text": "people"
+ },
+ {
+ "id": 12468,
+ "start": 6248.42,
+ "end": 6248.78,
+ "text": "are"
+ },
+ {
+ "id": 12469,
+ "start": 6248.78,
+ "end": 6249.38,
+ "text": "tracking"
+ },
+ {
+ "id": 12470,
+ "start": 6249.38,
+ "end": 6250.06,
+ "text": "devices"
+ },
+ {
+ "id": 12471,
+ "start": 6250.06,
+ "end": 6250.34,
+ "text": "that"
+ },
+ {
+ "id": 12472,
+ "start": 6250.34,
+ "end": 6251.2,
+ "text": "the"
+ },
+ {
+ "id": 12473,
+ "start": 6251.2,
+ "end": 6251.62,
+ "text": "users"
+ },
+ {
+ "id": 12474,
+ "start": 6251.62,
+ "end": 6251.8,
+ "text": "of"
+ },
+ {
+ "id": 12475,
+ "start": 6251.8,
+ "end": 6252.16,
+ "text": "something"
+ },
+ {
+ "id": 12476,
+ "start": 6252.16,
+ "end": 6252.5,
+ "text": "like"
+ },
+ {
+ "id": 12477,
+ "start": 6252.5,
+ "end": 6253.08,
+ "text": "Facebook"
+ },
+ {
+ "id": 12478,
+ "start": 6253.08,
+ "end": 6253.46,
+ "text": "don't"
+ },
+ {
+ "id": 12479,
+ "start": 6253.46,
+ "end": 6253.7,
+ "text": "know"
+ },
+ {
+ "id": 12480,
+ "start": 6253.7,
+ "end": 6254.82,
+ "text": "that"
+ },
+ {
+ "id": 12481,
+ "start": 6254.82,
+ "end": 6254.96,
+ "text": "are"
+ },
+ {
+ "id": 12482,
+ "start": 6254.96,
+ "end": 6255.26,
+ "text": "being"
+ },
+ {
+ "id": 12483,
+ "start": 6255.26,
+ "end": 6255.68,
+ "text": "tracked."
+ },
+ {
+ "id": 12484,
+ "start": 6255.68,
+ "end": 6255.92,
+ "text": "How"
+ },
+ {
+ "id": 12485,
+ "start": 6255.92,
+ "end": 6256.04,
+ "text": "do"
+ },
+ {
+ "id": 12486,
+ "start": 6256.04,
+ "end": 6256.18,
+ "text": "you"
+ },
+ {
+ "id": 12487,
+ "start": 6256.18,
+ "end": 6256.9,
+ "text": "disclose"
+ },
+ {
+ "id": 12488,
+ "start": 6256.9,
+ "end": 6258.12,
+ "text": "your"
+ },
+ {
+ "id": 12489,
+ "start": 6258.12,
+ "end": 6259.14,
+ "text": "collected"
+ },
+ {
+ "id": 12490,
+ "start": 6259.14,
+ "end": 6260.02,
+ "text": "collection"
+ },
+ {
+ "id": 12491,
+ "start": 6260.02,
+ "end": 6260.8,
+ "text": "methods"
+ },
+ {
+ "id": 12492,
+ "start": 6260.8,
+ "end": 6260.96,
+ "text": "is"
+ },
+ {
+ "id": 12493,
+ "start": 6260.96,
+ "end": 6261.16,
+ "text": "at"
+ },
+ {
+ "id": 12494,
+ "start": 6261.16,
+ "end": 6261.42,
+ "text": "all"
+ },
+ {
+ "id": 12495,
+ "start": 6261.42,
+ "end": 6261.68,
+ "text": "in"
+ },
+ {
+ "id": 12496,
+ "start": 6261.68,
+ "end": 6262.3,
+ "text": "this"
+ },
+ {
+ "id": 12497,
+ "start": 6262.3,
+ "end": 6263.18,
+ "text": "document"
+ },
+ {
+ "id": 12498,
+ "start": 6263.18,
+ "end": 6263.36,
+ "text": "that"
+ },
+ {
+ "id": 12499,
+ "start": 6263.36,
+ "end": 6263.48,
+ "text": "I"
+ },
+ {
+ "id": 12500,
+ "start": 6263.48,
+ "end": 6263.7,
+ "text": "would"
+ },
+ {
+ "id": 12501,
+ "start": 6263.7,
+ "end": 6263.96,
+ "text": "see"
+ },
+ {
+ "id": 12502,
+ "start": 6263.96,
+ "end": 6264.08,
+ "text": "and"
+ },
+ {
+ "id": 12503,
+ "start": 6264.08,
+ "end": 6264.46,
+ "text": "agree"
+ },
+ {
+ "id": 12504,
+ "start": 6264.46,
+ "end": 6264.6,
+ "text": "to"
+ },
+ {
+ "id": 12505,
+ "start": 6264.6,
+ "end": 6265.1,
+ "text": "before"
+ },
+ {
+ "id": 12506,
+ "start": 6265.1,
+ "end": 6265.84,
+ "text": "I"
+ },
+ {
+ "id": 12507,
+ "start": 6265.84,
+ "end": 6266.6,
+ "text": "entered"
+ },
+ {
+ "id": 12508,
+ "start": 6266.6,
+ "end": 6266.88,
+ "text": "into"
+ },
+ {
+ "id": 12509,
+ "start": 6266.88,
+ "end": 6267.14,
+ "text": "a"
+ },
+ {
+ "id": 12510,
+ "start": 6267.14,
+ "end": 6268,
+ "text": "Facebook."
+ },
+ {
+ "id": 12511,
+ "start": 6268,
+ "end": 6269,
+ "text": "Yes,"
+ },
+ {
+ "id": 12512,
+ "start": 6269,
+ "end": 6269.34,
+ "text": "Senator,"
+ },
+ {
+ "id": 12513,
+ "start": 6269.34,
+ "end": 6269.5,
+ "text": "so"
+ },
+ {
+ "id": 12514,
+ "start": 6269.5,
+ "end": 6269.98,
+ "text": "there"
+ },
+ {
+ "id": 12515,
+ "start": 6269.98,
+ "end": 6270.08,
+ "text": "are"
+ },
+ {
+ "id": 12516,
+ "start": 6270.08,
+ "end": 6270.32,
+ "text": "two"
+ },
+ {
+ "id": 12517,
+ "start": 6270.32,
+ "end": 6270.66,
+ "text": "ways"
+ },
+ {
+ "id": 12518,
+ "start": 6270.66,
+ "end": 6270.84,
+ "text": "that"
+ },
+ {
+ "id": 12519,
+ "start": 6270.84,
+ "end": 6270.96,
+ "text": "we"
+ },
+ {
+ "id": 12520,
+ "start": 6270.96,
+ "end": 6271.1,
+ "text": "do."
+ },
+ {
+ "id": 12521,
+ "start": 6271.1,
+ "end": 6271.28,
+ "text": "This"
+ },
+ {
+ "id": 12522,
+ "start": 6271.28,
+ "end": 6271.8,
+ "text": "one"
+ },
+ {
+ "id": 12523,
+ "start": 6271.8,
+ "end": 6271.94,
+ "text": "is"
+ },
+ {
+ "id": 12524,
+ "start": 6271.94,
+ "end": 6272.1,
+ "text": "we"
+ },
+ {
+ "id": 12525,
+ "start": 6272.1,
+ "end": 6272.32,
+ "text": "try"
+ },
+ {
+ "id": 12526,
+ "start": 6272.32,
+ "end": 6272.42,
+ "text": "to"
+ },
+ {
+ "id": 12527,
+ "start": 6272.42,
+ "end": 6272.54,
+ "text": "be"
+ },
+ {
+ "id": 12528,
+ "start": 6272.54,
+ "end": 6273.24,
+ "text": "exhaustive"
+ },
+ {
+ "id": 12529,
+ "start": 6273.24,
+ "end": 6273.78,
+ "text": "in"
+ },
+ {
+ "id": 12530,
+ "start": 6273.78,
+ "end": 6273.88,
+ "text": "the"
+ },
+ {
+ "id": 12531,
+ "start": 6273.88,
+ "end": 6274.2,
+ "text": "legal"
+ },
+ {
+ "id": 12532,
+ "start": 6274.2,
+ "end": 6274.64,
+ "text": "documents"
+ },
+ {
+ "id": 12533,
+ "start": 6274.64,
+ "end": 6274.9,
+ "text": "around"
+ },
+ {
+ "id": 12534,
+ "start": 6274.9,
+ "end": 6275,
+ "text": "the"
+ },
+ {
+ "id": 12535,
+ "start": 6275,
+ "end": 6275.24,
+ "text": "terms"
+ },
+ {
+ "id": 12536,
+ "start": 6275.24,
+ "end": 6275.36,
+ "text": "of"
+ },
+ {
+ "id": 12537,
+ "start": 6275.36,
+ "end": 6275.72,
+ "text": "service"
+ },
+ {
+ "id": 12538,
+ "start": 6275.72,
+ "end": 6275.84,
+ "text": "and"
+ },
+ {
+ "id": 12539,
+ "start": 6275.84,
+ "end": 6276.3,
+ "text": "privacy"
+ },
+ {
+ "id": 12540,
+ "start": 6276.3,
+ "end": 6276.8,
+ "text": "policies."
+ },
+ {
+ "id": 12541,
+ "start": 6276.8,
+ "end": 6277.44,
+ "text": "But"
+ },
+ {
+ "id": 12542,
+ "start": 6277.44,
+ "end": 6277.66,
+ "text": "more"
+ },
+ {
+ "id": 12543,
+ "start": 6277.66,
+ "end": 6278.24,
+ "text": "importantly,"
+ },
+ {
+ "id": 12544,
+ "start": 6278.24,
+ "end": 6279.08,
+ "text": "we"
+ },
+ {
+ "id": 12545,
+ "start": 6279.08,
+ "end": 6279.32,
+ "text": "try"
+ },
+ {
+ "id": 12546,
+ "start": 6279.32,
+ "end": 6279.44,
+ "text": "to"
+ },
+ {
+ "id": 12547,
+ "start": 6279.44,
+ "end": 6279.74,
+ "text": "provide"
+ },
+ {
+ "id": 12548,
+ "start": 6279.74,
+ "end": 6280.26,
+ "text": "inline"
+ },
+ {
+ "id": 12549,
+ "start": 6280.26,
+ "end": 6280.94,
+ "text": "controls."
+ },
+ {
+ "id": 12550,
+ "start": 6280.94,
+ "end": 6281.78,
+ "text": "So"
+ },
+ {
+ "id": 12551,
+ "start": 6281.78,
+ "end": 6282.1,
+ "text": "people"
+ },
+ {
+ "id": 12552,
+ "start": 6282.1,
+ "end": 6282.22,
+ "text": "that"
+ },
+ {
+ "id": 12553,
+ "start": 6282.22,
+ "end": 6282.42,
+ "text": "are"
+ },
+ {
+ "id": 12554,
+ "start": 6282.42,
+ "end": 6282.68,
+ "text": "in"
+ },
+ {
+ "id": 12555,
+ "start": 6282.68,
+ "end": 6282.98,
+ "text": "plain"
+ },
+ {
+ "id": 12556,
+ "start": 6282.98,
+ "end": 6283.22,
+ "text": "English"
+ },
+ {
+ "id": 12557,
+ "start": 6283.22,
+ "end": 6283.46,
+ "text": "that"
+ },
+ {
+ "id": 12558,
+ "start": 6283.46,
+ "end": 6283.72,
+ "text": "people"
+ },
+ {
+ "id": 12559,
+ "start": 6283.72,
+ "end": 6283.88,
+ "text": "can"
+ },
+ {
+ "id": 12560,
+ "start": 6283.88,
+ "end": 6284.44,
+ "text": "understand."
+ },
+ {
+ "id": 12561,
+ "start": 6284.44,
+ "end": 6285.28,
+ "text": "They"
+ },
+ {
+ "id": 12562,
+ "start": 6285.28,
+ "end": 6285.44,
+ "text": "can"
+ },
+ {
+ "id": 12563,
+ "start": 6285.44,
+ "end": 6285.86,
+ "text": "either"
+ },
+ {
+ "id": 12564,
+ "start": 6285.86,
+ "end": 6285.98,
+ "text": "go"
+ },
+ {
+ "id": 12565,
+ "start": 6285.98,
+ "end": 6286.08,
+ "text": "to"
+ },
+ {
+ "id": 12566,
+ "start": 6286.08,
+ "end": 6286.42,
+ "text": "settings"
+ },
+ {
+ "id": 12567,
+ "start": 6286.42,
+ "end": 6286.58,
+ "text": "or"
+ },
+ {
+ "id": 12568,
+ "start": 6286.58,
+ "end": 6286.7,
+ "text": "we"
+ },
+ {
+ "id": 12569,
+ "start": 6286.7,
+ "end": 6286.84,
+ "text": "can"
+ },
+ {
+ "id": 12570,
+ "start": 6286.84,
+ "end": 6287.02,
+ "text": "show"
+ },
+ {
+ "id": 12571,
+ "start": 6287.02,
+ "end": 6287.16,
+ "text": "them"
+ },
+ {
+ "id": 12572,
+ "start": 6287.16,
+ "end": 6287.24,
+ "text": "at"
+ },
+ {
+ "id": 12573,
+ "start": 6287.24,
+ "end": 6287.36,
+ "text": "the"
+ },
+ {
+ "id": 12574,
+ "start": 6287.36,
+ "end": 6287.5,
+ "text": "top"
+ },
+ {
+ "id": 12575,
+ "start": 6287.5,
+ "end": 6287.62,
+ "text": "of"
+ },
+ {
+ "id": 12576,
+ "start": 6287.62,
+ "end": 6287.74,
+ "text": "the"
+ },
+ {
+ "id": 12577,
+ "start": 6287.74,
+ "end": 6287.98,
+ "text": "app"
+ },
+ {
+ "id": 12578,
+ "start": 6287.98,
+ "end": 6289.08,
+ "text": "periodically"
+ },
+ {
+ "id": 12579,
+ "start": 6289.08,
+ "end": 6289.64,
+ "text": "is"
+ },
+ {
+ "id": 12580,
+ "start": 6289.64,
+ "end": 6289.8,
+ "text": "that"
+ },
+ {
+ "id": 12581,
+ "start": 6289.8,
+ "end": 6290.04,
+ "text": "people"
+ },
+ {
+ "id": 12582,
+ "start": 6290.04,
+ "end": 6290.62,
+ "text": "understand"
+ },
+ {
+ "id": 12583,
+ "start": 6290.62,
+ "end": 6290.86,
+ "text": "all"
+ },
+ {
+ "id": 12584,
+ "start": 6290.86,
+ "end": 6291.02,
+ "text": "the"
+ },
+ {
+ "id": 12585,
+ "start": 6291.02,
+ "end": 6291.44,
+ "text": "controls"
+ },
+ {
+ "id": 12586,
+ "start": 6291.44,
+ "end": 6291.58,
+ "text": "and"
+ },
+ {
+ "id": 12587,
+ "start": 6291.58,
+ "end": 6291.94,
+ "text": "settings"
+ },
+ {
+ "id": 12588,
+ "start": 6291.94,
+ "end": 6292.14,
+ "text": "they"
+ },
+ {
+ "id": 12589,
+ "start": 6292.14,
+ "end": 6292.46,
+ "text": "have"
+ },
+ {
+ "id": 12590,
+ "start": 6292.46,
+ "end": 6293.5,
+ "text": "and"
+ },
+ {
+ "id": 12591,
+ "start": 6293.5,
+ "end": 6294.4,
+ "text": "can"
+ },
+ {
+ "id": 12592,
+ "start": 6294.4,
+ "end": 6294.92,
+ "text": "configure"
+ },
+ {
+ "id": 12593,
+ "start": 6294.92,
+ "end": 6295.1,
+ "text": "their"
+ },
+ {
+ "id": 12594,
+ "start": 6295.1,
+ "end": 6295.5,
+ "text": "experience"
+ },
+ {
+ "id": 12595,
+ "start": 6295.5,
+ "end": 6295.64,
+ "text": "the"
+ },
+ {
+ "id": 12596,
+ "start": 6295.64,
+ "end": 6295.74,
+ "text": "way"
+ },
+ {
+ "id": 12597,
+ "start": 6295.74,
+ "end": 6295.86,
+ "text": "that"
+ },
+ {
+ "id": 12598,
+ "start": 6295.86,
+ "end": 6295.98,
+ "text": "they"
+ },
+ {
+ "id": 12599,
+ "start": 6295.98,
+ "end": 6296.22,
+ "text": "want."
+ },
+ {
+ "id": 12600,
+ "start": 6296.22,
+ "end": 6297.36,
+ "text": "So"
+ },
+ {
+ "id": 12601,
+ "start": 6297.36,
+ "end": 6298.06,
+ "text": "the"
+ },
+ {
+ "id": 12602,
+ "start": 6298.06,
+ "end": 6299,
+ "text": "people"
+ },
+ {
+ "id": 12603,
+ "start": 6299,
+ "end": 6299.7,
+ "text": "people"
+ },
+ {
+ "id": 12604,
+ "start": 6299.7,
+ "end": 6299.98,
+ "text": "now"
+ },
+ {
+ "id": 12605,
+ "start": 6299.98,
+ "end": 6300.24,
+ "text": "give"
+ },
+ {
+ "id": 12606,
+ "start": 6300.24,
+ "end": 6300.38,
+ "text": "you"
+ },
+ {
+ "id": 12607,
+ "start": 6300.38,
+ "end": 6301.18,
+ "text": "permission"
+ },
+ {
+ "id": 12608,
+ "start": 6301.18,
+ "end": 6301.66,
+ "text": "to"
+ },
+ {
+ "id": 12609,
+ "start": 6301.66,
+ "end": 6302.06,
+ "text": "track"
+ },
+ {
+ "id": 12610,
+ "start": 6302.06,
+ "end": 6302.8,
+ "text": "specific"
+ },
+ {
+ "id": 12611,
+ "start": 6302.8,
+ "end": 6303.44,
+ "text": "devices"
+ },
+ {
+ "id": 12612,
+ "start": 6303.44,
+ "end": 6303.72,
+ "text": "in"
+ },
+ {
+ "id": 12613,
+ "start": 6303.72,
+ "end": 6303.96,
+ "text": "their"
+ },
+ {
+ "id": 12614,
+ "start": 6303.96,
+ "end": 6304.48,
+ "text": "contract."
+ },
+ {
+ "id": 12615,
+ "start": 6304.48,
+ "end": 6304.66,
+ "text": "And"
+ },
+ {
+ "id": 12616,
+ "start": 6304.66,
+ "end": 6304.8,
+ "text": "if"
+ },
+ {
+ "id": 12617,
+ "start": 6304.8,
+ "end": 6304.98,
+ "text": "they"
+ },
+ {
+ "id": 12618,
+ "start": 6304.98,
+ "end": 6305.16,
+ "text": "do,"
+ },
+ {
+ "id": 12619,
+ "start": 6305.16,
+ "end": 6305.4,
+ "text": "is"
+ },
+ {
+ "id": 12620,
+ "start": 6305.4,
+ "end": 6305.6,
+ "text": "that"
+ },
+ {
+ "id": 12621,
+ "start": 6305.6,
+ "end": 6305.78,
+ "text": "a"
+ },
+ {
+ "id": 12622,
+ "start": 6305.78,
+ "end": 6306.88,
+ "text": "relatively"
+ },
+ {
+ "id": 12623,
+ "start": 6306.88,
+ "end": 6307.16,
+ "text": "new"
+ },
+ {
+ "id": 12624,
+ "start": 6307.16,
+ "end": 6307.64,
+ "text": "addition"
+ },
+ {
+ "id": 12625,
+ "start": 6307.64,
+ "end": 6307.8,
+ "text": "to"
+ },
+ {
+ "id": 12626,
+ "start": 6307.8,
+ "end": 6308,
+ "text": "what"
+ },
+ {
+ "id": 12627,
+ "start": 6308,
+ "end": 6308.14,
+ "text": "you"
+ },
+ {
+ "id": 12628,
+ "start": 6308.14,
+ "end": 6309.52,
+ "text": "do,"
+ },
+ {
+ "id": 12629,
+ "start": 6309.52,
+ "end": 6310.52,
+ "text": "Senator"
+ },
+ {
+ "id": 12630,
+ "start": 6310.52,
+ "end": 6311.3,
+ "text": "or"
+ },
+ {
+ "id": 12631,
+ "start": 6311.3,
+ "end": 6312.44,
+ "text": "able"
+ },
+ {
+ "id": 12632,
+ "start": 6312.44,
+ "end": 6312.54,
+ "text": "to"
+ },
+ {
+ "id": 12633,
+ "start": 6312.54,
+ "end": 6312.84,
+ "text": "opt"
+ },
+ {
+ "id": 12634,
+ "start": 6312.84,
+ "end": 6313.04,
+ "text": "out"
+ },
+ {
+ "id": 12635,
+ "start": 6313.04,
+ "end": 6313.18,
+ "text": "and"
+ },
+ {
+ "id": 12636,
+ "start": 6313.18,
+ "end": 6313.28,
+ "text": "I"
+ },
+ {
+ "id": 12637,
+ "start": 6313.28,
+ "end": 6313.5,
+ "text": "will"
+ },
+ {
+ "id": 12638,
+ "start": 6313.5,
+ "end": 6313.66,
+ "text": "say,"
+ },
+ {
+ "id": 12639,
+ "start": 6313.66,
+ "end": 6313.84,
+ "text": "it's"
+ },
+ {
+ "id": 12640,
+ "start": 6313.84,
+ "end": 6314.3,
+ "text": "okay,"
+ },
+ {
+ "id": 12641,
+ "start": 6314.3,
+ "end": 6314.52,
+ "text": "for"
+ },
+ {
+ "id": 12642,
+ "start": 6314.52,
+ "end": 6314.72,
+ "text": "you"
+ },
+ {
+ "id": 12643,
+ "start": 6314.72,
+ "end": 6315.78,
+ "text": "to"
+ },
+ {
+ "id": 12644,
+ "start": 6315.78,
+ "end": 6316.9,
+ "text": "track"
+ },
+ {
+ "id": 12645,
+ "start": 6316.9,
+ "end": 6317.1,
+ "text": "what"
+ },
+ {
+ "id": 12646,
+ "start": 6317.1,
+ "end": 6317.3,
+ "text": "I'm"
+ },
+ {
+ "id": 12647,
+ "start": 6317.3,
+ "end": 6317.74,
+ "text": "saying"
+ },
+ {
+ "id": 12648,
+ "start": 6317.74,
+ "end": 6318.1,
+ "text": "on"
+ },
+ {
+ "id": 12649,
+ "start": 6318.1,
+ "end": 6318.72,
+ "text": "Facebook?"
+ },
+ {
+ "id": 12650,
+ "start": 6318.72,
+ "end": 6318.88,
+ "text": "But"
+ },
+ {
+ "id": 12651,
+ "start": 6318.88,
+ "end": 6318.98,
+ "text": "I"
+ },
+ {
+ "id": 12652,
+ "start": 6318.98,
+ "end": 6319.18,
+ "text": "don't"
+ },
+ {
+ "id": 12653,
+ "start": 6319.18,
+ "end": 6319.34,
+ "text": "want"
+ },
+ {
+ "id": 12654,
+ "start": 6319.34,
+ "end": 6319.5,
+ "text": "you"
+ },
+ {
+ "id": 12655,
+ "start": 6319.5,
+ "end": 6319.58,
+ "text": "to"
+ },
+ {
+ "id": 12656,
+ "start": 6319.58,
+ "end": 6320.06,
+ "text": "track"
+ },
+ {
+ "id": 12657,
+ "start": 6320.06,
+ "end": 6320.46,
+ "text": "what"
+ },
+ {
+ "id": 12658,
+ "start": 6320.46,
+ "end": 6320.7,
+ "text": "I'm"
+ },
+ {
+ "id": 12659,
+ "start": 6320.7,
+ "end": 6321.36,
+ "text": "texting"
+ },
+ {
+ "id": 12660,
+ "start": 6321.36,
+ "end": 6321.72,
+ "text": "to"
+ },
+ {
+ "id": 12661,
+ "start": 6321.72,
+ "end": 6322.22,
+ "text": "somebody"
+ },
+ {
+ "id": 12662,
+ "start": 6322.22,
+ "end": 6322.48,
+ "text": "else"
+ },
+ {
+ "id": 12663,
+ "start": 6322.48,
+ "end": 6322.82,
+ "text": "off"
+ },
+ {
+ "id": 12664,
+ "start": 6322.82,
+ "end": 6323.66,
+ "text": "Facebook"
+ },
+ {
+ "id": 12665,
+ "start": 6323.66,
+ "end": 6323.98,
+ "text": "on"
+ },
+ {
+ "id": 12666,
+ "start": 6323.98,
+ "end": 6324.48,
+ "text": "an"
+ },
+ {
+ "id": 12667,
+ "start": 6324.48,
+ "end": 6324.92,
+ "text": "Android."
+ },
+ {
+ "id": 12668,
+ "start": 6324.92,
+ "end": 6326.1,
+ "text": "Okay,"
+ },
+ {
+ "id": 12669,
+ "start": 6326.1,
+ "end": 6327.14,
+ "text": "yes,"
+ },
+ {
+ "id": 12670,
+ "start": 6327.14,
+ "end": 6328.32,
+ "text": "Senator,"
+ },
+ {
+ "id": 12671,
+ "start": 6328.32,
+ "end": 6329.3,
+ "text": "in"
+ },
+ {
+ "id": 12672,
+ "start": 6329.3,
+ "end": 6329.72,
+ "text": "general,"
+ },
+ {
+ "id": 12673,
+ "start": 6329.72,
+ "end": 6330.42,
+ "text": "Facebook"
+ },
+ {
+ "id": 12674,
+ "start": 6330.42,
+ "end": 6330.56,
+ "text": "is"
+ },
+ {
+ "id": 12675,
+ "start": 6330.56,
+ "end": 6330.92,
+ "text": "not"
+ },
+ {
+ "id": 12676,
+ "start": 6330.92,
+ "end": 6331.52,
+ "text": "collecting"
+ },
+ {
+ "id": 12677,
+ "start": 6331.52,
+ "end": 6331.86,
+ "text": "data"
+ },
+ {
+ "id": 12678,
+ "start": 6331.86,
+ "end": 6332.08,
+ "text": "from"
+ },
+ {
+ "id": 12679,
+ "start": 6332.08,
+ "end": 6332.36,
+ "text": "other"
+ },
+ {
+ "id": 12680,
+ "start": 6332.36,
+ "end": 6332.6,
+ "text": "apps"
+ },
+ {
+ "id": 12681,
+ "start": 6332.6,
+ "end": 6332.78,
+ "text": "that"
+ },
+ {
+ "id": 12682,
+ "start": 6332.78,
+ "end": 6332.9,
+ "text": "you"
+ },
+ {
+ "id": 12683,
+ "start": 6332.9,
+ "end": 6333.3,
+ "text": "use."
+ },
+ {
+ "id": 12684,
+ "start": 6333.3,
+ "end": 6334.02,
+ "text": "There"
+ },
+ {
+ "id": 12685,
+ "start": 6334.02,
+ "end": 6334.24,
+ "text": "may"
+ },
+ {
+ "id": 12686,
+ "start": 6334.24,
+ "end": 6334.38,
+ "text": "be"
+ },
+ {
+ "id": 12687,
+ "start": 6334.38,
+ "end": 6334.64,
+ "text": "some"
+ },
+ {
+ "id": 12688,
+ "start": 6334.64,
+ "end": 6335.24,
+ "text": "specific"
+ },
+ {
+ "id": 12689,
+ "start": 6335.24,
+ "end": 6335.52,
+ "text": "things"
+ },
+ {
+ "id": 12690,
+ "start": 6335.52,
+ "end": 6335.78,
+ "text": "about"
+ },
+ {
+ "id": 12691,
+ "start": 6335.78,
+ "end": 6335.9,
+ "text": "the"
+ },
+ {
+ "id": 12692,
+ "start": 6335.9,
+ "end": 6336.26,
+ "text": "device"
+ },
+ {
+ "id": 12693,
+ "start": 6336.26,
+ "end": 6336.44,
+ "text": "that"
+ },
+ {
+ "id": 12694,
+ "start": 6336.44,
+ "end": 6336.64,
+ "text": "you're"
+ },
+ {
+ "id": 12695,
+ "start": 6336.64,
+ "end": 6337.04,
+ "text": "using"
+ },
+ {
+ "id": 12696,
+ "start": 6337.04,
+ "end": 6337.72,
+ "text": "that"
+ },
+ {
+ "id": 12697,
+ "start": 6337.72,
+ "end": 6338.58,
+ "text": "Facebook"
+ },
+ {
+ "id": 12698,
+ "start": 6338.58,
+ "end": 6338.94,
+ "text": "needs"
+ },
+ {
+ "id": 12699,
+ "start": 6338.94,
+ "end": 6339.04,
+ "text": "to"
+ },
+ {
+ "id": 12700,
+ "start": 6339.04,
+ "end": 6339.54,
+ "text": "understand"
+ },
+ {
+ "id": 12701,
+ "start": 6339.54,
+ "end": 6339.68,
+ "text": "in"
+ },
+ {
+ "id": 12702,
+ "start": 6339.68,
+ "end": 6339.9,
+ "text": "order"
+ },
+ {
+ "id": 12703,
+ "start": 6339.9,
+ "end": 6340,
+ "text": "to"
+ },
+ {
+ "id": 12704,
+ "start": 6340,
+ "end": 6340.28,
+ "text": "offer"
+ },
+ {
+ "id": 12705,
+ "start": 6340.28,
+ "end": 6340.42,
+ "text": "the"
+ },
+ {
+ "id": 12706,
+ "start": 6340.42,
+ "end": 6340.82,
+ "text": "service."
+ },
+ {
+ "id": 12707,
+ "start": 6340.82,
+ "end": 6341.54,
+ "text": "But"
+ },
+ {
+ "id": 12708,
+ "start": 6341.54,
+ "end": 6341.76,
+ "text": "if"
+ },
+ {
+ "id": 12709,
+ "start": 6341.76,
+ "end": 6342.06,
+ "text": "you're"
+ },
+ {
+ "id": 12710,
+ "start": 6342.06,
+ "end": 6342.5,
+ "text": "using"
+ },
+ {
+ "id": 12711,
+ "start": 6342.5,
+ "end": 6342.86,
+ "text": "Google"
+ },
+ {
+ "id": 12712,
+ "start": 6342.86,
+ "end": 6343.16,
+ "text": "or"
+ },
+ {
+ "id": 12713,
+ "start": 6343.16,
+ "end": 6343.4,
+ "text": "you're"
+ },
+ {
+ "id": 12714,
+ "start": 6343.4,
+ "end": 6344.62,
+ "text": "using"
+ },
+ {
+ "id": 12715,
+ "start": 6344.62,
+ "end": 6345.6,
+ "text": "some"
+ },
+ {
+ "id": 12716,
+ "start": 6345.6,
+ "end": 6346.12,
+ "text": "texting"
+ },
+ {
+ "id": 12717,
+ "start": 6346.12,
+ "end": 6346.62,
+ "text": "app"
+ },
+ {
+ "id": 12718,
+ "start": 6346.62,
+ "end": 6347.78,
+ "text": "unless"
+ },
+ {
+ "id": 12719,
+ "start": 6347.78,
+ "end": 6347.92,
+ "text": "you"
+ },
+ {
+ "id": 12720,
+ "start": 6347.92,
+ "end": 6348.66,
+ "text": "specifically"
+ },
+ {
+ "id": 12721,
+ "start": 6348.66,
+ "end": 6349,
+ "text": "opt"
+ },
+ {
+ "id": 12722,
+ "start": 6349,
+ "end": 6349.28,
+ "text": "in"
+ },
+ {
+ "id": 12723,
+ "start": 6349.28,
+ "end": 6349.76,
+ "text": "that"
+ },
+ {
+ "id": 12724,
+ "start": 6349.76,
+ "end": 6349.86,
+ "text": "you"
+ },
+ {
+ "id": 12725,
+ "start": 6349.86,
+ "end": 6350.02,
+ "text": "want"
+ },
+ {
+ "id": 12726,
+ "start": 6350.02,
+ "end": 6350.1,
+ "text": "to"
+ },
+ {
+ "id": 12727,
+ "start": 6350.1,
+ "end": 6350.36,
+ "text": "share"
+ },
+ {
+ "id": 12728,
+ "start": 6350.36,
+ "end": 6350.94,
+ "text": "the"
+ },
+ {
+ "id": 12729,
+ "start": 6350.94,
+ "end": 6351.46,
+ "text": "texting"
+ },
+ {
+ "id": 12730,
+ "start": 6351.46,
+ "end": 6351.66,
+ "text": "app"
+ },
+ {
+ "id": 12731,
+ "start": 6351.66,
+ "end": 6352.98,
+ "text": "information,"
+ },
+ {
+ "id": 12732,
+ "start": 6352.98,
+ "end": 6354,
+ "text": "Facebook"
+ },
+ {
+ "id": 12733,
+ "start": 6354,
+ "end": 6354.26,
+ "text": "won't"
+ },
+ {
+ "id": 12734,
+ "start": 6354.26,
+ "end": 6354.44,
+ "text": "see"
+ },
+ {
+ "id": 12735,
+ "start": 6354.44,
+ "end": 6354.64,
+ "text": "that?"
+ },
+ {
+ "id": 12736,
+ "start": 6354.64,
+ "end": 6355.4,
+ "text": "Has"
+ },
+ {
+ "id": 12737,
+ "start": 6355.4,
+ "end": 6355.58,
+ "text": "it"
+ },
+ {
+ "id": 12738,
+ "start": 6355.58,
+ "end": 6355.98,
+ "text": "always"
+ },
+ {
+ "id": 12739,
+ "start": 6355.98,
+ "end": 6356.18,
+ "text": "been"
+ },
+ {
+ "id": 12740,
+ "start": 6356.18,
+ "end": 6356.38,
+ "text": "that"
+ },
+ {
+ "id": 12741,
+ "start": 6356.38,
+ "end": 6357.16,
+ "text": "way?"
+ },
+ {
+ "id": 12742,
+ "start": 6357.16,
+ "end": 6358.14,
+ "text": "That"
+ },
+ {
+ "id": 12743,
+ "start": 6358.14,
+ "end": 6358.24,
+ "text": "a"
+ },
+ {
+ "id": 12744,
+ "start": 6358.24,
+ "end": 6359.6,
+ "text": "recent"
+ },
+ {
+ "id": 12745,
+ "start": 6359.6,
+ "end": 6360.64,
+ "text": "addition"
+ },
+ {
+ "id": 12746,
+ "start": 6360.64,
+ "end": 6361,
+ "text": "to"
+ },
+ {
+ "id": 12747,
+ "start": 6361,
+ "end": 6361.22,
+ "text": "how"
+ },
+ {
+ "id": 12748,
+ "start": 6361.22,
+ "end": 6361.44,
+ "text": "you"
+ },
+ {
+ "id": 12749,
+ "start": 6361.44,
+ "end": 6361.7,
+ "text": "deal"
+ },
+ {
+ "id": 12750,
+ "start": 6361.7,
+ "end": 6361.88,
+ "text": "with"
+ },
+ {
+ "id": 12751,
+ "start": 6361.88,
+ "end": 6362.1,
+ "text": "those"
+ },
+ {
+ "id": 12752,
+ "start": 6362.1,
+ "end": 6363.98,
+ "text": "other"
+ },
+ {
+ "id": 12753,
+ "start": 6363.98,
+ "end": 6364.96,
+ "text": "ways"
+ },
+ {
+ "id": 12754,
+ "start": 6364.96,
+ "end": 6365.38,
+ "text": "that"
+ },
+ {
+ "id": 12755,
+ "start": 6365.38,
+ "end": 6365.76,
+ "text": "might"
+ },
+ {
+ "id": 12756,
+ "start": 6365.76,
+ "end": 6366.4,
+ "text": "communicate,"
+ },
+ {
+ "id": 12757,
+ "start": 6366.4,
+ "end": 6367.56,
+ "text": "Senator,"
+ },
+ {
+ "id": 12758,
+ "start": 6367.56,
+ "end": 6367.72,
+ "text": "my"
+ },
+ {
+ "id": 12759,
+ "start": 6367.72,
+ "end": 6368.4,
+ "text": "understanding"
+ },
+ {
+ "id": 12760,
+ "start": 6368.4,
+ "end": 6368.66,
+ "text": "is"
+ },
+ {
+ "id": 12761,
+ "start": 6368.66,
+ "end": 6368.9,
+ "text": "that"
+ },
+ {
+ "id": 12762,
+ "start": 6368.9,
+ "end": 6369.3,
+ "text": "that"
+ },
+ {
+ "id": 12763,
+ "start": 6369.3,
+ "end": 6369.46,
+ "text": "is"
+ },
+ {
+ "id": 12764,
+ "start": 6369.46,
+ "end": 6369.74,
+ "text": "how"
+ },
+ {
+ "id": 12765,
+ "start": 6369.74,
+ "end": 6369.94,
+ "text": "the"
+ },
+ {
+ "id": 12766,
+ "start": 6369.94,
+ "end": 6370.28,
+ "text": "mobile"
+ },
+ {
+ "id": 12767,
+ "start": 6370.28,
+ "end": 6370.68,
+ "text": "operating"
+ },
+ {
+ "id": 12768,
+ "start": 6370.68,
+ "end": 6371.06,
+ "text": "systems"
+ },
+ {
+ "id": 12769,
+ "start": 6371.06,
+ "end": 6371.24,
+ "text": "are"
+ },
+ {
+ "id": 12770,
+ "start": 6371.24,
+ "end": 6375.32,
+ "text": "architected"
+ },
+ {
+ "id": 12771,
+ "start": 6375.32,
+ "end": 6379.06,
+ "text": "so"
+ },
+ {
+ "id": 12772,
+ "start": 6379.06,
+ "end": 6380.26,
+ "text": "you"
+ },
+ {
+ "id": 12773,
+ "start": 6380.26,
+ "end": 6380.46,
+ "text": "don't"
+ },
+ {
+ "id": 12774,
+ "start": 6380.46,
+ "end": 6380.64,
+ "text": "have"
+ },
+ {
+ "id": 12775,
+ "start": 6380.64,
+ "end": 6381.24,
+ "text": "bundled"
+ },
+ {
+ "id": 12776,
+ "start": 6381.24,
+ "end": 6382,
+ "text": "permissions"
+ },
+ {
+ "id": 12777,
+ "start": 6382,
+ "end": 6382.82,
+ "text": "for"
+ },
+ {
+ "id": 12778,
+ "start": 6382.82,
+ "end": 6383.18,
+ "text": "how"
+ },
+ {
+ "id": 12779,
+ "start": 6383.18,
+ "end": 6383.52,
+ "text": "I"
+ },
+ {
+ "id": 12780,
+ "start": 6383.52,
+ "end": 6384.58,
+ "text": "can"
+ },
+ {
+ "id": 12781,
+ "start": 6384.58,
+ "end": 6385.32,
+ "text": "agree"
+ },
+ {
+ "id": 12782,
+ "start": 6385.32,
+ "end": 6385.74,
+ "text": "to"
+ },
+ {
+ "id": 12783,
+ "start": 6385.74,
+ "end": 6386.74,
+ "text": "what"
+ },
+ {
+ "id": 12784,
+ "start": 6386.74,
+ "end": 6387.4,
+ "text": "devices"
+ },
+ {
+ "id": 12785,
+ "start": 6387.4,
+ "end": 6387.58,
+ "text": "I"
+ },
+ {
+ "id": 12786,
+ "start": 6387.58,
+ "end": 6387.8,
+ "text": "may"
+ },
+ {
+ "id": 12787,
+ "start": 6387.8,
+ "end": 6388.1,
+ "text": "use"
+ },
+ {
+ "id": 12788,
+ "start": 6388.1,
+ "end": 6388.26,
+ "text": "that"
+ },
+ {
+ "id": 12789,
+ "start": 6388.26,
+ "end": 6388.42,
+ "text": "you"
+ },
+ {
+ "id": 12790,
+ "start": 6388.42,
+ "end": 6388.64,
+ "text": "may"
+ },
+ {
+ "id": 12791,
+ "start": 6388.64,
+ "end": 6388.8,
+ "text": "have"
+ },
+ {
+ "id": 12792,
+ "start": 6388.8,
+ "end": 6389.34,
+ "text": "contact"
+ },
+ {
+ "id": 12793,
+ "start": 6389.34,
+ "end": 6391.76,
+ "text": "with,"
+ },
+ {
+ "id": 12794,
+ "start": 6391.76,
+ "end": 6392.86,
+ "text": "did"
+ },
+ {
+ "id": 12795,
+ "start": 6392.86,
+ "end": 6393,
+ "text": "you?"
+ },
+ {
+ "id": 12796,
+ "start": 6393,
+ "end": 6393.36,
+ "text": "You"
+ },
+ {
+ "id": 12797,
+ "start": 6393.36,
+ "end": 6393.78,
+ "text": "bundle"
+ },
+ {
+ "id": 12798,
+ "start": 6393.78,
+ "end": 6393.98,
+ "text": "that"
+ },
+ {
+ "id": 12799,
+ "start": 6393.98,
+ "end": 6394.52,
+ "text": "permission."
+ },
+ {
+ "id": 12800,
+ "start": 6394.52,
+ "end": 6394.72,
+ "text": "Or"
+ },
+ {
+ "id": 12801,
+ "start": 6394.72,
+ "end": 6395.02,
+ "text": "am"
+ },
+ {
+ "id": 12802,
+ "start": 6395.02,
+ "end": 6395.2,
+ "text": "I"
+ },
+ {
+ "id": 12803,
+ "start": 6395.2,
+ "end": 6395.44,
+ "text": "able"
+ },
+ {
+ "id": 12804,
+ "start": 6395.44,
+ "end": 6395.58,
+ "text": "to"
+ },
+ {
+ "id": 12805,
+ "start": 6395.58,
+ "end": 6395.82,
+ "text": "want"
+ },
+ {
+ "id": 12806,
+ "start": 6395.82,
+ "end": 6397.58,
+ "text": "individually"
+ },
+ {
+ "id": 12807,
+ "start": 6397.58,
+ "end": 6398.6,
+ "text": "say"
+ },
+ {
+ "id": 12808,
+ "start": 6398.6,
+ "end": 6399.06,
+ "text": "what"
+ },
+ {
+ "id": 12809,
+ "start": 6399.06,
+ "end": 6399.44,
+ "text": "I'm"
+ },
+ {
+ "id": 12810,
+ "start": 6399.44,
+ "end": 6399.9,
+ "text": "willing"
+ },
+ {
+ "id": 12811,
+ "start": 6399.9,
+ "end": 6400.06,
+ "text": "for"
+ },
+ {
+ "id": 12812,
+ "start": 6400.06,
+ "end": 6400.2,
+ "text": "you"
+ },
+ {
+ "id": 12813,
+ "start": 6400.2,
+ "end": 6400.6,
+ "text": "to"
+ },
+ {
+ "id": 12814,
+ "start": 6400.6,
+ "end": 6401.7,
+ "text": "to"
+ },
+ {
+ "id": 12815,
+ "start": 6401.7,
+ "end": 6402.3,
+ "text": "watch"
+ },
+ {
+ "id": 12816,
+ "start": 6402.3,
+ "end": 6402.46,
+ "text": "and"
+ },
+ {
+ "id": 12817,
+ "start": 6402.46,
+ "end": 6402.66,
+ "text": "what"
+ },
+ {
+ "id": 12818,
+ "start": 6402.66,
+ "end": 6402.78,
+ "text": "I"
+ },
+ {
+ "id": 12819,
+ "start": 6402.78,
+ "end": 6403,
+ "text": "don't"
+ },
+ {
+ "id": 12820,
+ "start": 6403,
+ "end": 6403.16,
+ "text": "want"
+ },
+ {
+ "id": 12821,
+ "start": 6403.16,
+ "end": 6403.3,
+ "text": "you"
+ },
+ {
+ "id": 12822,
+ "start": 6403.3,
+ "end": 6403.42,
+ "text": "to"
+ },
+ {
+ "id": 12823,
+ "start": 6403.42,
+ "end": 6403.7,
+ "text": "watch."
+ },
+ {
+ "id": 12824,
+ "start": 6403.7,
+ "end": 6403.92,
+ "text": "And"
+ },
+ {
+ "id": 12825,
+ "start": 6403.92,
+ "end": 6404.36,
+ "text": "I"
+ },
+ {
+ "id": 12826,
+ "start": 6404.36,
+ "end": 6404.72,
+ "text": "think"
+ },
+ {
+ "id": 12827,
+ "start": 6404.72,
+ "end": 6404.88,
+ "text": "we"
+ },
+ {
+ "id": 12828,
+ "start": 6404.88,
+ "end": 6405.04,
+ "text": "may"
+ },
+ {
+ "id": 12829,
+ "start": 6405.04,
+ "end": 6405.18,
+ "text": "have"
+ },
+ {
+ "id": 12830,
+ "start": 6405.18,
+ "end": 6405.28,
+ "text": "to"
+ },
+ {
+ "id": 12831,
+ "start": 6405.28,
+ "end": 6405.48,
+ "text": "take"
+ },
+ {
+ "id": 12832,
+ "start": 6405.48,
+ "end": 6405.68,
+ "text": "that"
+ },
+ {
+ "id": 12833,
+ "start": 6405.68,
+ "end": 6405.84,
+ "text": "for"
+ },
+ {
+ "id": 12834,
+ "start": 6405.84,
+ "end": 6405.96,
+ "text": "the"
+ },
+ {
+ "id": 12835,
+ "start": 6405.96,
+ "end": 6406.3,
+ "text": "record"
+ },
+ {
+ "id": 12836,
+ "start": 6406.3,
+ "end": 6406.56,
+ "text": "based"
+ },
+ {
+ "id": 12837,
+ "start": 6406.56,
+ "end": 6406.7,
+ "text": "on"
+ },
+ {
+ "id": 12838,
+ "start": 6406.7,
+ "end": 6407.16,
+ "text": "everybody"
+ },
+ {
+ "id": 12839,
+ "start": 6407.16,
+ "end": 6407.54,
+ "text": "else's"
+ },
+ {
+ "id": 12840,
+ "start": 6407.54,
+ "end": 6409.26,
+ "text": "time."
+ },
+ {
+ "id": 12841,
+ "start": 6409.26,
+ "end": 6410.22,
+ "text": "Thank"
+ },
+ {
+ "id": 12842,
+ "start": 6410.22,
+ "end": 6410.34,
+ "text": "you,"
+ },
+ {
+ "id": 12843,
+ "start": 6410.34,
+ "end": 6410.6,
+ "text": "Senator."
+ },
+ {
+ "id": 12844,
+ "start": 6410.6,
+ "end": 6410.82,
+ "text": "Blunt."
+ },
+ {
+ "id": 12845,
+ "start": 6410.82,
+ "end": 6411.5,
+ "text": "Next"
+ },
+ {
+ "id": 12846,
+ "start": 6411.5,
+ "end": 6411.64,
+ "text": "up"
+ },
+ {
+ "id": 12847,
+ "start": 6411.64,
+ "end": 6411.9,
+ "text": "Senator"
+ },
+ {
+ "id": 12848,
+ "start": 6411.9,
+ "end": 6412.18,
+ "text": "Durbin,"
+ },
+ {
+ "id": 12849,
+ "start": 6412.18,
+ "end": 6413.18,
+ "text": "thank"
+ },
+ {
+ "id": 12850,
+ "start": 6413.18,
+ "end": 6413.42,
+ "text": "very"
+ },
+ {
+ "id": 12851,
+ "start": 6413.42,
+ "end": 6413.58,
+ "text": "much,"
+ },
+ {
+ "id": 12852,
+ "start": 6413.58,
+ "end": 6413.82,
+ "text": "Mr"
+ },
+ {
+ "id": 12853,
+ "start": 6413.82,
+ "end": 6414.18,
+ "text": "Chairman,"
+ },
+ {
+ "id": 12854,
+ "start": 6414.18,
+ "end": 6414.64,
+ "text": "Mr"
+ },
+ {
+ "id": 12855,
+ "start": 6414.64,
+ "end": 6415.08,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 12856,
+ "start": 6415.08,
+ "end": 6415.84,
+ "text": "would"
+ },
+ {
+ "id": 12857,
+ "start": 6415.84,
+ "end": 6415.96,
+ "text": "you"
+ },
+ {
+ "id": 12858,
+ "start": 6415.96,
+ "end": 6416.08,
+ "text": "be"
+ },
+ {
+ "id": 12859,
+ "start": 6416.08,
+ "end": 6416.5,
+ "text": "comfortable"
+ },
+ {
+ "id": 12860,
+ "start": 6416.5,
+ "end": 6416.84,
+ "text": "sharing"
+ },
+ {
+ "id": 12861,
+ "start": 6416.84,
+ "end": 6416.98,
+ "text": "with"
+ },
+ {
+ "id": 12862,
+ "start": 6416.98,
+ "end": 6417.12,
+ "text": "us?"
+ },
+ {
+ "id": 12863,
+ "start": 6417.12,
+ "end": 6417.3,
+ "text": "The"
+ },
+ {
+ "id": 12864,
+ "start": 6417.3,
+ "end": 6417.48,
+ "text": "name"
+ },
+ {
+ "id": 12865,
+ "start": 6417.48,
+ "end": 6417.56,
+ "text": "of"
+ },
+ {
+ "id": 12866,
+ "start": 6417.56,
+ "end": 6417.68,
+ "text": "the"
+ },
+ {
+ "id": 12867,
+ "start": 6417.68,
+ "end": 6418,
+ "text": "hotel"
+ },
+ {
+ "id": 12868,
+ "start": 6418,
+ "end": 6418.12,
+ "text": "you"
+ },
+ {
+ "id": 12869,
+ "start": 6418.12,
+ "end": 6418.38,
+ "text": "stayed"
+ },
+ {
+ "id": 12870,
+ "start": 6418.38,
+ "end": 6418.5,
+ "text": "in"
+ },
+ {
+ "id": 12871,
+ "start": 6418.5,
+ "end": 6418.7,
+ "text": "last"
+ },
+ {
+ "id": 12872,
+ "start": 6418.7,
+ "end": 6424.24,
+ "text": "night?"
+ },
+ {
+ "id": 12873,
+ "start": 6424.24,
+ "end": 6427.76,
+ "text": "No,"
+ },
+ {
+ "id": 12874,
+ "start": 6427.76,
+ "end": 6428.76,
+ "text": "if"
+ },
+ {
+ "id": 12875,
+ "start": 6428.76,
+ "end": 6429.02,
+ "text": "you've"
+ },
+ {
+ "id": 12876,
+ "start": 6429.02,
+ "end": 6429.5,
+ "text": "messaged"
+ },
+ {
+ "id": 12877,
+ "start": 6429.5,
+ "end": 6429.96,
+ "text": "anybody"
+ },
+ {
+ "id": 12878,
+ "start": 6429.96,
+ "end": 6430.16,
+ "text": "this"
+ },
+ {
+ "id": 12879,
+ "start": 6430.16,
+ "end": 6430.38,
+ "text": "week?"
+ },
+ {
+ "id": 12880,
+ "start": 6430.38,
+ "end": 6430.58,
+ "text": "Would"
+ },
+ {
+ "id": 12881,
+ "start": 6430.58,
+ "end": 6430.76,
+ "text": "you"
+ },
+ {
+ "id": 12882,
+ "start": 6430.76,
+ "end": 6431.42,
+ "text": "share"
+ },
+ {
+ "id": 12883,
+ "start": 6431.42,
+ "end": 6431.58,
+ "text": "with"
+ },
+ {
+ "id": 12884,
+ "start": 6431.58,
+ "end": 6431.74,
+ "text": "us?"
+ },
+ {
+ "id": 12885,
+ "start": 6431.74,
+ "end": 6432.18,
+ "text": "The"
+ },
+ {
+ "id": 12886,
+ "start": 6432.18,
+ "end": 6432.46,
+ "text": "names"
+ },
+ {
+ "id": 12887,
+ "start": 6432.46,
+ "end": 6432.66,
+ "text": "of"
+ },
+ {
+ "id": 12888,
+ "start": 6432.66,
+ "end": 6432.98,
+ "text": "the"
+ },
+ {
+ "id": 12889,
+ "start": 6432.98,
+ "end": 6433.18,
+ "text": "people"
+ },
+ {
+ "id": 12890,
+ "start": 6433.18,
+ "end": 6433.42,
+ "text": "you've"
+ },
+ {
+ "id": 12891,
+ "start": 6433.42,
+ "end": 6434.46,
+ "text": "messaged"
+ },
+ {
+ "id": 12892,
+ "start": 6434.46,
+ "end": 6435.64,
+ "text": "Senator?"
+ },
+ {
+ "id": 12893,
+ "start": 6435.64,
+ "end": 6435.8,
+ "text": "No,"
+ },
+ {
+ "id": 12894,
+ "start": 6435.8,
+ "end": 6435.86,
+ "text": "I"
+ },
+ {
+ "id": 12895,
+ "start": 6435.86,
+ "end": 6436.08,
+ "text": "would"
+ },
+ {
+ "id": 12896,
+ "start": 6436.08,
+ "end": 6436.78,
+ "text": "probably"
+ },
+ {
+ "id": 12897,
+ "start": 6436.78,
+ "end": 6436.98,
+ "text": "not"
+ },
+ {
+ "id": 12898,
+ "start": 6436.98,
+ "end": 6437.22,
+ "text": "choose"
+ },
+ {
+ "id": 12899,
+ "start": 6437.22,
+ "end": 6437.32,
+ "text": "to"
+ },
+ {
+ "id": 12900,
+ "start": 6437.32,
+ "end": 6437.42,
+ "text": "do"
+ },
+ {
+ "id": 12901,
+ "start": 6437.42,
+ "end": 6437.6,
+ "text": "that"
+ },
+ {
+ "id": 12902,
+ "start": 6437.6,
+ "end": 6438.02,
+ "text": "publicly"
+ },
+ {
+ "id": 12903,
+ "start": 6438.02,
+ "end": 6438.28,
+ "text": "here."
+ },
+ {
+ "id": 12904,
+ "start": 6438.28,
+ "end": 6438.7,
+ "text": "I"
+ },
+ {
+ "id": 12905,
+ "start": 6438.7,
+ "end": 6438.9,
+ "text": "think"
+ },
+ {
+ "id": 12906,
+ "start": 6438.9,
+ "end": 6439.18,
+ "text": "that"
+ },
+ {
+ "id": 12907,
+ "start": 6439.18,
+ "end": 6439.4,
+ "text": "might"
+ },
+ {
+ "id": 12908,
+ "start": 6439.4,
+ "end": 6439.5,
+ "text": "be"
+ },
+ {
+ "id": 12909,
+ "start": 6439.5,
+ "end": 6439.64,
+ "text": "what"
+ },
+ {
+ "id": 12910,
+ "start": 6439.64,
+ "end": 6439.86,
+ "text": "this"
+ },
+ {
+ "id": 12911,
+ "start": 6439.86,
+ "end": 6440.24,
+ "text": "is"
+ },
+ {
+ "id": 12912,
+ "start": 6440.24,
+ "end": 6440.4,
+ "text": "all"
+ },
+ {
+ "id": 12913,
+ "start": 6440.4,
+ "end": 6441.6,
+ "text": "about"
+ },
+ {
+ "id": 12914,
+ "start": 6441.6,
+ "end": 6442.58,
+ "text": "your"
+ },
+ {
+ "id": 12915,
+ "start": 6442.58,
+ "end": 6442.86,
+ "text": "right"
+ },
+ {
+ "id": 12916,
+ "start": 6442.86,
+ "end": 6442.96,
+ "text": "to"
+ },
+ {
+ "id": 12917,
+ "start": 6442.96,
+ "end": 6443.46,
+ "text": "privacy"
+ },
+ {
+ "id": 12918,
+ "start": 6443.46,
+ "end": 6444.38,
+ "text": "the"
+ },
+ {
+ "id": 12919,
+ "start": 6444.38,
+ "end": 6444.72,
+ "text": "limits"
+ },
+ {
+ "id": 12920,
+ "start": 6444.72,
+ "end": 6444.94,
+ "text": "of"
+ },
+ {
+ "id": 12921,
+ "start": 6444.94,
+ "end": 6445.08,
+ "text": "your"
+ },
+ {
+ "id": 12922,
+ "start": 6445.08,
+ "end": 6445.3,
+ "text": "right"
+ },
+ {
+ "id": 12923,
+ "start": 6445.3,
+ "end": 6445.38,
+ "text": "to"
+ },
+ {
+ "id": 12924,
+ "start": 6445.38,
+ "end": 6445.86,
+ "text": "privacy"
+ },
+ {
+ "id": 12925,
+ "start": 6445.86,
+ "end": 6446.48,
+ "text": "and"
+ },
+ {
+ "id": 12926,
+ "start": 6446.48,
+ "end": 6446.66,
+ "text": "how"
+ },
+ {
+ "id": 12927,
+ "start": 6446.66,
+ "end": 6446.84,
+ "text": "much"
+ },
+ {
+ "id": 12928,
+ "start": 6446.84,
+ "end": 6447.02,
+ "text": "you"
+ },
+ {
+ "id": 12929,
+ "start": 6447.02,
+ "end": 6447.28,
+ "text": "give"
+ },
+ {
+ "id": 12930,
+ "start": 6447.28,
+ "end": 6447.7,
+ "text": "away"
+ },
+ {
+ "id": 12931,
+ "start": 6447.7,
+ "end": 6448.4,
+ "text": "in"
+ },
+ {
+ "id": 12932,
+ "start": 6448.4,
+ "end": 6448.72,
+ "text": "modern"
+ },
+ {
+ "id": 12933,
+ "start": 6448.72,
+ "end": 6449.18,
+ "text": "America,"
+ },
+ {
+ "id": 12934,
+ "start": 6449.18,
+ "end": 6449.84,
+ "text": "in"
+ },
+ {
+ "id": 12935,
+ "start": 6449.84,
+ "end": 6449.96,
+ "text": "the"
+ },
+ {
+ "id": 12936,
+ "start": 6449.96,
+ "end": 6450.18,
+ "text": "name"
+ },
+ {
+ "id": 12937,
+ "start": 6450.18,
+ "end": 6450.38,
+ "text": "of"
+ },
+ {
+ "id": 12938,
+ "start": 6450.38,
+ "end": 6450.84,
+ "text": "quote,"
+ },
+ {
+ "id": 12939,
+ "start": 6450.84,
+ "end": 6451.42,
+ "text": "connecting"
+ },
+ {
+ "id": 12940,
+ "start": 6451.42,
+ "end": 6451.72,
+ "text": "people"
+ },
+ {
+ "id": 12941,
+ "start": 6451.72,
+ "end": 6452.04,
+ "text": "around"
+ },
+ {
+ "id": 12942,
+ "start": 6452.04,
+ "end": 6452.18,
+ "text": "the"
+ },
+ {
+ "id": 12943,
+ "start": 6452.18,
+ "end": 6453.46,
+ "text": "world"
+ },
+ {
+ "id": 12944,
+ "start": 6453.46,
+ "end": 6454.46,
+ "text": "question"
+ },
+ {
+ "id": 12945,
+ "start": 6454.46,
+ "end": 6455.18,
+ "text": "basically"
+ },
+ {
+ "id": 12946,
+ "start": 6455.18,
+ "end": 6455.98,
+ "text": "of"
+ },
+ {
+ "id": 12947,
+ "start": 6455.98,
+ "end": 6456.98,
+ "text": "what"
+ },
+ {
+ "id": 12948,
+ "start": 6456.98,
+ "end": 6457.5,
+ "text": "information"
+ },
+ {
+ "id": 12949,
+ "start": 6457.5,
+ "end": 6457.98,
+ "text": "Facebook"
+ },
+ {
+ "id": 12950,
+ "start": 6457.98,
+ "end": 6458.04,
+ "text": "is"
+ },
+ {
+ "id": 12951,
+ "start": 6458.04,
+ "end": 6458.48,
+ "text": "collecting"
+ },
+ {
+ "id": 12952,
+ "start": 6458.48,
+ "end": 6459.34,
+ "text": "who"
+ },
+ {
+ "id": 12953,
+ "start": 6459.34,
+ "end": 6459.58,
+ "text": "they're"
+ },
+ {
+ "id": 12954,
+ "start": 6459.58,
+ "end": 6459.86,
+ "text": "sending"
+ },
+ {
+ "id": 12955,
+ "start": 6459.86,
+ "end": 6459.96,
+ "text": "it"
+ },
+ {
+ "id": 12956,
+ "start": 6459.96,
+ "end": 6460.12,
+ "text": "to"
+ },
+ {
+ "id": 12957,
+ "start": 6460.12,
+ "end": 6460.46,
+ "text": "and"
+ },
+ {
+ "id": 12958,
+ "start": 6460.46,
+ "end": 6460.74,
+ "text": "whether"
+ },
+ {
+ "id": 12959,
+ "start": 6460.74,
+ "end": 6460.9,
+ "text": "they"
+ },
+ {
+ "id": 12960,
+ "start": 6460.9,
+ "end": 6461.08,
+ "text": "were"
+ },
+ {
+ "id": 12961,
+ "start": 6461.08,
+ "end": 6461.42,
+ "text": "ask"
+ },
+ {
+ "id": 12962,
+ "start": 6461.42,
+ "end": 6461.64,
+ "text": "me"
+ },
+ {
+ "id": 12963,
+ "start": 6461.64,
+ "end": 6461.88,
+ "text": "in"
+ },
+ {
+ "id": 12964,
+ "start": 6461.88,
+ "end": 6462.36,
+ "text": "advance,"
+ },
+ {
+ "id": 12965,
+ "start": 6462.36,
+ "end": 6462.8,
+ "text": "my"
+ },
+ {
+ "id": 12966,
+ "start": 6462.8,
+ "end": 6463.22,
+ "text": "permission"
+ },
+ {
+ "id": 12967,
+ "start": 6463.22,
+ "end": 6463.32,
+ "text": "to"
+ },
+ {
+ "id": 12968,
+ "start": 6463.32,
+ "end": 6463.46,
+ "text": "do"
+ },
+ {
+ "id": 12969,
+ "start": 6463.46,
+ "end": 6463.7,
+ "text": "that."
+ },
+ {
+ "id": 12970,
+ "start": 6463.7,
+ "end": 6464.44,
+ "text": "Is"
+ },
+ {
+ "id": 12971,
+ "start": 6464.44,
+ "end": 6464.6,
+ "text": "that"
+ },
+ {
+ "id": 12972,
+ "start": 6464.6,
+ "end": 6464.66,
+ "text": "a"
+ },
+ {
+ "id": 12973,
+ "start": 6464.66,
+ "end": 6464.98,
+ "text": "fair"
+ },
+ {
+ "id": 12974,
+ "start": 6464.98,
+ "end": 6465.3,
+ "text": "thing"
+ },
+ {
+ "id": 12975,
+ "start": 6465.3,
+ "end": 6465.68,
+ "text": "for"
+ },
+ {
+ "id": 12976,
+ "start": 6465.68,
+ "end": 6465.84,
+ "text": "a"
+ },
+ {
+ "id": 12977,
+ "start": 6465.84,
+ "end": 6466.14,
+ "text": "user"
+ },
+ {
+ "id": 12978,
+ "start": 6466.14,
+ "end": 6466.22,
+ "text": "of"
+ },
+ {
+ "id": 12979,
+ "start": 6466.22,
+ "end": 6466.7,
+ "text": "Facebook"
+ },
+ {
+ "id": 12980,
+ "start": 6466.7,
+ "end": 6466.84,
+ "text": "to"
+ },
+ {
+ "id": 12981,
+ "start": 6466.84,
+ "end": 6467.88,
+ "text": "expect?"
+ },
+ {
+ "id": 12982,
+ "start": 6467.88,
+ "end": 6468.66,
+ "text": "Yes,"
+ },
+ {
+ "id": 12983,
+ "start": 6468.66,
+ "end": 6469.08,
+ "text": "Senator,"
+ },
+ {
+ "id": 12984,
+ "start": 6469.08,
+ "end": 6469.22,
+ "text": "I"
+ },
+ {
+ "id": 12985,
+ "start": 6469.22,
+ "end": 6469.42,
+ "text": "think"
+ },
+ {
+ "id": 12986,
+ "start": 6469.42,
+ "end": 6469.82,
+ "text": "everyone"
+ },
+ {
+ "id": 12987,
+ "start": 6469.82,
+ "end": 6470.06,
+ "text": "should"
+ },
+ {
+ "id": 12988,
+ "start": 6470.06,
+ "end": 6470.18,
+ "text": "have"
+ },
+ {
+ "id": 12989,
+ "start": 6470.18,
+ "end": 6470.54,
+ "text": "control"
+ },
+ {
+ "id": 12990,
+ "start": 6470.54,
+ "end": 6470.88,
+ "text": "over"
+ },
+ {
+ "id": 12991,
+ "start": 6470.88,
+ "end": 6471.02,
+ "text": "how"
+ },
+ {
+ "id": 12992,
+ "start": 6471.02,
+ "end": 6471.22,
+ "text": "their"
+ },
+ {
+ "id": 12993,
+ "start": 6471.22,
+ "end": 6471.7,
+ "text": "information"
+ },
+ {
+ "id": 12994,
+ "start": 6471.7,
+ "end": 6471.86,
+ "text": "is"
+ },
+ {
+ "id": 12995,
+ "start": 6471.86,
+ "end": 6472.16,
+ "text": "used."
+ },
+ {
+ "id": 12996,
+ "start": 6472.16,
+ "end": 6473.42,
+ "text": "And"
+ },
+ {
+ "id": 12997,
+ "start": 6473.42,
+ "end": 6474.2,
+ "text": "as"
+ },
+ {
+ "id": 12998,
+ "start": 6474.2,
+ "end": 6474.44,
+ "text": "we've"
+ },
+ {
+ "id": 12999,
+ "start": 6474.44,
+ "end": 6474.68,
+ "text": "talked"
+ },
+ {
+ "id": 13000,
+ "start": 6474.68,
+ "end": 6474.9,
+ "text": "about"
+ },
+ {
+ "id": 13001,
+ "start": 6474.9,
+ "end": 6475.1,
+ "text": "in"
+ },
+ {
+ "id": 13002,
+ "start": 6475.1,
+ "end": 6475.5,
+ "text": "some"
+ },
+ {
+ "id": 13003,
+ "start": 6475.5,
+ "end": 6475.58,
+ "text": "of"
+ },
+ {
+ "id": 13004,
+ "start": 6475.58,
+ "end": 6475.7,
+ "text": "the"
+ },
+ {
+ "id": 13005,
+ "start": 6475.7,
+ "end": 6476.08,
+ "text": "other"
+ },
+ {
+ "id": 13006,
+ "start": 6476.08,
+ "end": 6476.52,
+ "text": "questions,"
+ },
+ {
+ "id": 13007,
+ "start": 6476.52,
+ "end": 6476.56,
+ "text": "I"
+ },
+ {
+ "id": 13008,
+ "start": 6476.56,
+ "end": 6476.82,
+ "text": "think"
+ },
+ {
+ "id": 13009,
+ "start": 6476.82,
+ "end": 6476.94,
+ "text": "that"
+ },
+ {
+ "id": 13010,
+ "start": 6476.94,
+ "end": 6477.42,
+ "text": "that"
+ },
+ {
+ "id": 13011,
+ "start": 6477.42,
+ "end": 6478.42,
+ "text": "is"
+ },
+ {
+ "id": 13012,
+ "start": 6478.42,
+ "end": 6478.7,
+ "text": "laid"
+ },
+ {
+ "id": 13013,
+ "start": 6478.7,
+ "end": 6478.9,
+ "text": "out"
+ },
+ {
+ "id": 13014,
+ "start": 6478.9,
+ "end": 6479.62,
+ "text": "in"
+ },
+ {
+ "id": 13015,
+ "start": 6479.62,
+ "end": 6479.8,
+ "text": "some"
+ },
+ {
+ "id": 13016,
+ "start": 6479.8,
+ "end": 6479.88,
+ "text": "of"
+ },
+ {
+ "id": 13017,
+ "start": 6479.88,
+ "end": 6479.98,
+ "text": "the"
+ },
+ {
+ "id": 13018,
+ "start": 6479.98,
+ "end": 6480.44,
+ "text": "documents."
+ },
+ {
+ "id": 13019,
+ "start": 6480.44,
+ "end": 6480.66,
+ "text": "But"
+ },
+ {
+ "id": 13020,
+ "start": 6480.66,
+ "end": 6481,
+ "text": "more"
+ },
+ {
+ "id": 13021,
+ "start": 6481,
+ "end": 6481.52,
+ "text": "importantly,"
+ },
+ {
+ "id": 13022,
+ "start": 6481.52,
+ "end": 6481.76,
+ "text": "you"
+ },
+ {
+ "id": 13023,
+ "start": 6481.76,
+ "end": 6481.9,
+ "text": "want"
+ },
+ {
+ "id": 13024,
+ "start": 6481.9,
+ "end": 6481.98,
+ "text": "to"
+ },
+ {
+ "id": 13025,
+ "start": 6481.98,
+ "end": 6482.12,
+ "text": "give"
+ },
+ {
+ "id": 13026,
+ "start": 6482.12,
+ "end": 6482.32,
+ "text": "people"
+ },
+ {
+ "id": 13027,
+ "start": 6482.32,
+ "end": 6482.74,
+ "text": "control"
+ },
+ {
+ "id": 13028,
+ "start": 6482.74,
+ "end": 6482.88,
+ "text": "in"
+ },
+ {
+ "id": 13029,
+ "start": 6482.88,
+ "end": 6483,
+ "text": "the"
+ },
+ {
+ "id": 13030,
+ "start": 6483,
+ "end": 6483.36,
+ "text": "product"
+ },
+ {
+ "id": 13031,
+ "start": 6483.36,
+ "end": 6483.78,
+ "text": "itself."
+ },
+ {
+ "id": 13032,
+ "start": 6483.78,
+ "end": 6485.08,
+ "text": "So"
+ },
+ {
+ "id": 13033,
+ "start": 6485.08,
+ "end": 6485.26,
+ "text": "most"
+ },
+ {
+ "id": 13034,
+ "start": 6485.26,
+ "end": 6485.6,
+ "text": "important"
+ },
+ {
+ "id": 13035,
+ "start": 6485.6,
+ "end": 6485.74,
+ "text": "way"
+ },
+ {
+ "id": 13036,
+ "start": 6485.74,
+ "end": 6485.88,
+ "text": "that"
+ },
+ {
+ "id": 13037,
+ "start": 6485.88,
+ "end": 6486.04,
+ "text": "this"
+ },
+ {
+ "id": 13038,
+ "start": 6486.04,
+ "end": 6486.36,
+ "text": "happens"
+ },
+ {
+ "id": 13039,
+ "start": 6486.36,
+ "end": 6486.68,
+ "text": "across"
+ },
+ {
+ "id": 13040,
+ "start": 6486.68,
+ "end": 6486.9,
+ "text": "our"
+ },
+ {
+ "id": 13041,
+ "start": 6486.9,
+ "end": 6487.42,
+ "text": "services"
+ },
+ {
+ "id": 13042,
+ "start": 6487.42,
+ "end": 6488.62,
+ "text": "is"
+ },
+ {
+ "id": 13043,
+ "start": 6488.62,
+ "end": 6489.58,
+ "text": "that"
+ },
+ {
+ "id": 13044,
+ "start": 6489.58,
+ "end": 6489.82,
+ "text": "every"
+ },
+ {
+ "id": 13045,
+ "start": 6489.82,
+ "end": 6490.08,
+ "text": "day?"
+ },
+ {
+ "id": 13046,
+ "start": 6490.08,
+ "end": 6490.4,
+ "text": "People"
+ },
+ {
+ "id": 13047,
+ "start": 6490.4,
+ "end": 6490.58,
+ "text": "come"
+ },
+ {
+ "id": 13048,
+ "start": 6490.58,
+ "end": 6490.66,
+ "text": "to"
+ },
+ {
+ "id": 13049,
+ "start": 6490.66,
+ "end": 6490.8,
+ "text": "our"
+ },
+ {
+ "id": 13050,
+ "start": 6490.8,
+ "end": 6491.24,
+ "text": "services"
+ },
+ {
+ "id": 13051,
+ "start": 6491.24,
+ "end": 6491.34,
+ "text": "to"
+ },
+ {
+ "id": 13052,
+ "start": 6491.34,
+ "end": 6491.7,
+ "text": "choose"
+ },
+ {
+ "id": 13053,
+ "start": 6491.7,
+ "end": 6491.84,
+ "text": "to"
+ },
+ {
+ "id": 13054,
+ "start": 6491.84,
+ "end": 6492.06,
+ "text": "share"
+ },
+ {
+ "id": 13055,
+ "start": 6492.06,
+ "end": 6492.5,
+ "text": "photos"
+ },
+ {
+ "id": 13056,
+ "start": 6492.5,
+ "end": 6492.66,
+ "text": "or"
+ },
+ {
+ "id": 13057,
+ "start": 6492.66,
+ "end": 6492.86,
+ "text": "send"
+ },
+ {
+ "id": 13058,
+ "start": 6492.86,
+ "end": 6493.34,
+ "text": "messages"
+ },
+ {
+ "id": 13059,
+ "start": 6493.34,
+ "end": 6493.86,
+ "text": "and"
+ },
+ {
+ "id": 13060,
+ "start": 6493.86,
+ "end": 6494.2,
+ "text": "every"
+ },
+ {
+ "id": 13061,
+ "start": 6494.2,
+ "end": 6494.52,
+ "text": "single"
+ },
+ {
+ "id": 13062,
+ "start": 6494.52,
+ "end": 6494.82,
+ "text": "time"
+ },
+ {
+ "id": 13063,
+ "start": 6494.82,
+ "end": 6495.04,
+ "text": "they"
+ },
+ {
+ "id": 13064,
+ "start": 6495.04,
+ "end": 6495.28,
+ "text": "choose"
+ },
+ {
+ "id": 13065,
+ "start": 6495.28,
+ "end": 6495.4,
+ "text": "to"
+ },
+ {
+ "id": 13066,
+ "start": 6495.4,
+ "end": 6495.64,
+ "text": "share"
+ },
+ {
+ "id": 13067,
+ "start": 6495.64,
+ "end": 6496.74,
+ "text": "something."
+ },
+ {
+ "id": 13068,
+ "start": 6496.74,
+ "end": 6497.6,
+ "text": "They"
+ },
+ {
+ "id": 13069,
+ "start": 6497.6,
+ "end": 6497.7,
+ "text": "have"
+ },
+ {
+ "id": 13070,
+ "start": 6497.7,
+ "end": 6497.76,
+ "text": "a"
+ },
+ {
+ "id": 13071,
+ "start": 6497.76,
+ "end": 6498.1,
+ "text": "control"
+ },
+ {
+ "id": 13072,
+ "start": 6498.1,
+ "end": 6498.36,
+ "text": "right"
+ },
+ {
+ "id": 13073,
+ "start": 6498.36,
+ "end": 6498.58,
+ "text": "there"
+ },
+ {
+ "id": 13074,
+ "start": 6498.58,
+ "end": 6498.76,
+ "text": "about"
+ },
+ {
+ "id": 13075,
+ "start": 6498.76,
+ "end": 6498.9,
+ "text": "who"
+ },
+ {
+ "id": 13076,
+ "start": 6498.9,
+ "end": 6499.08,
+ "text": "they"
+ },
+ {
+ "id": 13077,
+ "start": 6499.08,
+ "end": 6499.2,
+ "text": "want"
+ },
+ {
+ "id": 13078,
+ "start": 6499.2,
+ "end": 6499.28,
+ "text": "to"
+ },
+ {
+ "id": 13079,
+ "start": 6499.28,
+ "end": 6499.44,
+ "text": "share"
+ },
+ {
+ "id": 13080,
+ "start": 6499.44,
+ "end": 6499.52,
+ "text": "it"
+ },
+ {
+ "id": 13081,
+ "start": 6499.52,
+ "end": 6499.7,
+ "text": "with,"
+ },
+ {
+ "id": 13082,
+ "start": 6499.7,
+ "end": 6500.18,
+ "text": "but"
+ },
+ {
+ "id": 13083,
+ "start": 6500.18,
+ "end": 6500.36,
+ "text": "that"
+ },
+ {
+ "id": 13084,
+ "start": 6500.36,
+ "end": 6500.64,
+ "text": "level"
+ },
+ {
+ "id": 13085,
+ "start": 6500.64,
+ "end": 6500.74,
+ "text": "of"
+ },
+ {
+ "id": 13086,
+ "start": 6500.74,
+ "end": 6501.08,
+ "text": "control"
+ },
+ {
+ "id": 13087,
+ "start": 6501.08,
+ "end": 6501.2,
+ "text": "is"
+ },
+ {
+ "id": 13088,
+ "start": 6501.2,
+ "end": 6501.74,
+ "text": "extremely"
+ },
+ {
+ "id": 13089,
+ "start": 6501.74,
+ "end": 6502.12,
+ "text": "important."
+ },
+ {
+ "id": 13090,
+ "start": 6502.12,
+ "end": 6502.42,
+ "text": "They"
+ },
+ {
+ "id": 13091,
+ "start": 6502.42,
+ "end": 6502.72,
+ "text": "certainly"
+ },
+ {
+ "id": 13092,
+ "start": 6502.72,
+ "end": 6502.88,
+ "text": "know"
+ },
+ {
+ "id": 13093,
+ "start": 6502.88,
+ "end": 6503.62,
+ "text": "within"
+ },
+ {
+ "id": 13094,
+ "start": 6503.62,
+ "end": 6503.74,
+ "text": "the"
+ },
+ {
+ "id": 13095,
+ "start": 6503.74,
+ "end": 6504.2,
+ "text": "Facebook"
+ },
+ {
+ "id": 13096,
+ "start": 6504.2,
+ "end": 6504.6,
+ "text": "pages"
+ },
+ {
+ "id": 13097,
+ "start": 6504.6,
+ "end": 6504.78,
+ "text": "who"
+ },
+ {
+ "id": 13098,
+ "start": 6504.78,
+ "end": 6504.98,
+ "text": "their"
+ },
+ {
+ "id": 13099,
+ "start": 6504.98,
+ "end": 6505.32,
+ "text": "friends"
+ },
+ {
+ "id": 13100,
+ "start": 6505.32,
+ "end": 6505.74,
+ "text": "are"
+ },
+ {
+ "id": 13101,
+ "start": 6505.74,
+ "end": 6506.46,
+ "text": "but"
+ },
+ {
+ "id": 13102,
+ "start": 6506.46,
+ "end": 6506.62,
+ "text": "they"
+ },
+ {
+ "id": 13103,
+ "start": 6506.62,
+ "end": 6506.78,
+ "text": "may"
+ },
+ {
+ "id": 13104,
+ "start": 6506.78,
+ "end": 6506.98,
+ "text": "not"
+ },
+ {
+ "id": 13105,
+ "start": 6506.98,
+ "end": 6507.54,
+ "text": "know"
+ },
+ {
+ "id": 13106,
+ "start": 6507.54,
+ "end": 6507.76,
+ "text": "as"
+ },
+ {
+ "id": 13107,
+ "start": 6507.76,
+ "end": 6507.96,
+ "text": "has"
+ },
+ {
+ "id": 13108,
+ "start": 6507.96,
+ "end": 6508.38,
+ "text": "happened"
+ },
+ {
+ "id": 13109,
+ "start": 6508.38,
+ "end": 6508.62,
+ "text": "and"
+ },
+ {
+ "id": 13110,
+ "start": 6508.62,
+ "end": 6508.94,
+ "text": "you've"
+ },
+ {
+ "id": 13111,
+ "start": 6508.94,
+ "end": 6509.4,
+ "text": "conceded"
+ },
+ {
+ "id": 13112,
+ "start": 6509.4,
+ "end": 6509.6,
+ "text": "this"
+ },
+ {
+ "id": 13113,
+ "start": 6509.6,
+ "end": 6509.9,
+ "text": "point"
+ },
+ {
+ "id": 13114,
+ "start": 6509.9,
+ "end": 6510.54,
+ "text": "in"
+ },
+ {
+ "id": 13115,
+ "start": 6510.54,
+ "end": 6510.66,
+ "text": "the"
+ },
+ {
+ "id": 13116,
+ "start": 6510.66,
+ "end": 6511.06,
+ "text": "past"
+ },
+ {
+ "id": 13117,
+ "start": 6511.06,
+ "end": 6511.48,
+ "text": "that"
+ },
+ {
+ "id": 13118,
+ "start": 6511.48,
+ "end": 6511.92,
+ "text": "sometimes"
+ },
+ {
+ "id": 13119,
+ "start": 6511.92,
+ "end": 6512.1,
+ "text": "that"
+ },
+ {
+ "id": 13120,
+ "start": 6512.1,
+ "end": 6512.64,
+ "text": "information"
+ },
+ {
+ "id": 13121,
+ "start": 6512.64,
+ "end": 6512.86,
+ "text": "is"
+ },
+ {
+ "id": 13122,
+ "start": 6512.86,
+ "end": 6513.22,
+ "text": "going"
+ },
+ {
+ "id": 13123,
+ "start": 6513.22,
+ "end": 6513.46,
+ "text": "way"
+ },
+ {
+ "id": 13124,
+ "start": 6513.46,
+ "end": 6513.72,
+ "text": "beyond"
+ },
+ {
+ "id": 13125,
+ "start": 6513.72,
+ "end": 6513.9,
+ "text": "their"
+ },
+ {
+ "id": 13126,
+ "start": 6513.9,
+ "end": 6514.32,
+ "text": "friends."
+ },
+ {
+ "id": 13127,
+ "start": 6514.32,
+ "end": 6514.52,
+ "text": "And"
+ },
+ {
+ "id": 13128,
+ "start": 6514.52,
+ "end": 6515.08,
+ "text": "sometimes"
+ },
+ {
+ "id": 13129,
+ "start": 6515.08,
+ "end": 6515.54,
+ "text": "people"
+ },
+ {
+ "id": 13130,
+ "start": 6515.54,
+ "end": 6515.72,
+ "text": "have"
+ },
+ {
+ "id": 13131,
+ "start": 6515.72,
+ "end": 6515.94,
+ "text": "made"
+ },
+ {
+ "id": 13132,
+ "start": 6515.94,
+ "end": 6516.42,
+ "text": "money"
+ },
+ {
+ "id": 13133,
+ "start": 6516.42,
+ "end": 6516.64,
+ "text": "off"
+ },
+ {
+ "id": 13134,
+ "start": 6516.64,
+ "end": 6516.76,
+ "text": "of"
+ },
+ {
+ "id": 13135,
+ "start": 6516.76,
+ "end": 6517.12,
+ "text": "sharing"
+ },
+ {
+ "id": 13136,
+ "start": 6517.12,
+ "end": 6517.32,
+ "text": "that"
+ },
+ {
+ "id": 13137,
+ "start": 6517.32,
+ "end": 6518.34,
+ "text": "information,"
+ },
+ {
+ "id": 13138,
+ "start": 6518.34,
+ "end": 6520.46,
+ "text": "correct,"
+ },
+ {
+ "id": 13139,
+ "start": 6520.46,
+ "end": 6521.42,
+ "text": "Senator"
+ },
+ {
+ "id": 13140,
+ "start": 6521.42,
+ "end": 6521.7,
+ "text": "you're"
+ },
+ {
+ "id": 13141,
+ "start": 6521.7,
+ "end": 6522.12,
+ "text": "referring,"
+ },
+ {
+ "id": 13142,
+ "start": 6522.12,
+ "end": 6522.16,
+ "text": "I"
+ },
+ {
+ "id": 13143,
+ "start": 6522.16,
+ "end": 6522.42,
+ "text": "think"
+ },
+ {
+ "id": 13144,
+ "start": 6522.42,
+ "end": 6522.66,
+ "text": "to"
+ },
+ {
+ "id": 13145,
+ "start": 6522.66,
+ "end": 6522.98,
+ "text": "our"
+ },
+ {
+ "id": 13146,
+ "start": 6522.98,
+ "end": 6523.5,
+ "text": "developer"
+ },
+ {
+ "id": 13147,
+ "start": 6523.5,
+ "end": 6523.98,
+ "text": "platform"
+ },
+ {
+ "id": 13148,
+ "start": 6523.98,
+ "end": 6525.02,
+ "text": "and"
+ },
+ {
+ "id": 13149,
+ "start": 6525.02,
+ "end": 6525.2,
+ "text": "it"
+ },
+ {
+ "id": 13150,
+ "start": 6525.2,
+ "end": 6525.38,
+ "text": "may"
+ },
+ {
+ "id": 13151,
+ "start": 6525.38,
+ "end": 6525.56,
+ "text": "be"
+ },
+ {
+ "id": 13152,
+ "start": 6525.56,
+ "end": 6526.2,
+ "text": "useful"
+ },
+ {
+ "id": 13153,
+ "start": 6526.2,
+ "end": 6526.34,
+ "text": "for"
+ },
+ {
+ "id": 13154,
+ "start": 6526.34,
+ "end": 6526.44,
+ "text": "me"
+ },
+ {
+ "id": 13155,
+ "start": 6526.44,
+ "end": 6526.52,
+ "text": "to"
+ },
+ {
+ "id": 13156,
+ "start": 6526.52,
+ "end": 6526.66,
+ "text": "give"
+ },
+ {
+ "id": 13157,
+ "start": 6526.66,
+ "end": 6526.82,
+ "text": "some"
+ },
+ {
+ "id": 13158,
+ "start": 6526.82,
+ "end": 6527.2,
+ "text": "background"
+ },
+ {
+ "id": 13159,
+ "start": 6527.2,
+ "end": 6527.32,
+ "text": "on"
+ },
+ {
+ "id": 13160,
+ "start": 6527.32,
+ "end": 6527.48,
+ "text": "how"
+ },
+ {
+ "id": 13161,
+ "start": 6527.48,
+ "end": 6527.58,
+ "text": "we"
+ },
+ {
+ "id": 13162,
+ "start": 6527.58,
+ "end": 6527.84,
+ "text": "set"
+ },
+ {
+ "id": 13163,
+ "start": 6527.84,
+ "end": 6527.98,
+ "text": "that"
+ },
+ {
+ "id": 13164,
+ "start": 6527.98,
+ "end": 6528.1,
+ "text": "up."
+ },
+ {
+ "id": 13165,
+ "start": 6528.1,
+ "end": 6528.24,
+ "text": "If"
+ },
+ {
+ "id": 13166,
+ "start": 6528.24,
+ "end": 6528.44,
+ "text": "that's"
+ },
+ {
+ "id": 13167,
+ "start": 6528.44,
+ "end": 6528.8,
+ "text": "useful"
+ },
+ {
+ "id": 13168,
+ "start": 6528.8,
+ "end": 6529.84,
+ "text": "I"
+ },
+ {
+ "id": 13169,
+ "start": 6529.84,
+ "end": 6530,
+ "text": "have"
+ },
+ {
+ "id": 13170,
+ "start": 6530,
+ "end": 6530.28,
+ "text": "three"
+ },
+ {
+ "id": 13171,
+ "start": 6530.28,
+ "end": 6530.56,
+ "text": "minutes"
+ },
+ {
+ "id": 13172,
+ "start": 6530.56,
+ "end": 6530.86,
+ "text": "left."
+ },
+ {
+ "id": 13173,
+ "start": 6530.86,
+ "end": 6531.5,
+ "text": "So"
+ },
+ {
+ "id": 13174,
+ "start": 6531.5,
+ "end": 6531.94,
+ "text": "maybe"
+ },
+ {
+ "id": 13175,
+ "start": 6531.94,
+ "end": 6532.08,
+ "text": "you"
+ },
+ {
+ "id": 13176,
+ "start": 6532.08,
+ "end": 6532.4,
+ "text": "can"
+ },
+ {
+ "id": 13177,
+ "start": 6532.4,
+ "end": 6532.52,
+ "text": "do"
+ },
+ {
+ "id": 13178,
+ "start": 6532.52,
+ "end": 6532.74,
+ "text": "that"
+ },
+ {
+ "id": 13179,
+ "start": 6532.74,
+ "end": 6532.9,
+ "text": "for"
+ },
+ {
+ "id": 13180,
+ "start": 6532.9,
+ "end": 6533.02,
+ "text": "the"
+ },
+ {
+ "id": 13181,
+ "start": 6533.02,
+ "end": 6533.36,
+ "text": "record"
+ },
+ {
+ "id": 13182,
+ "start": 6533.36,
+ "end": 6533.7,
+ "text": "because"
+ },
+ {
+ "id": 13183,
+ "start": 6533.7,
+ "end": 6533.78,
+ "text": "I"
+ },
+ {
+ "id": 13184,
+ "start": 6533.78,
+ "end": 6533.92,
+ "text": "have"
+ },
+ {
+ "id": 13185,
+ "start": 6533.92,
+ "end": 6533.98,
+ "text": "a"
+ },
+ {
+ "id": 13186,
+ "start": 6533.98,
+ "end": 6534.18,
+ "text": "couple"
+ },
+ {
+ "id": 13187,
+ "start": 6534.18,
+ "end": 6534.28,
+ "text": "of"
+ },
+ {
+ "id": 13188,
+ "start": 6534.28,
+ "end": 6534.4,
+ "text": "the"
+ },
+ {
+ "id": 13189,
+ "start": 6534.4,
+ "end": 6534.76,
+ "text": "questions"
+ },
+ {
+ "id": 13190,
+ "start": 6534.76,
+ "end": 6534.96,
+ "text": "I'd"
+ },
+ {
+ "id": 13191,
+ "start": 6534.96,
+ "end": 6535.1,
+ "text": "like"
+ },
+ {
+ "id": 13192,
+ "start": 6535.1,
+ "end": 6535.22,
+ "text": "to"
+ },
+ {
+ "id": 13193,
+ "start": 6535.22,
+ "end": 6536.34,
+ "text": "ask"
+ },
+ {
+ "id": 13194,
+ "start": 6536.34,
+ "end": 6537.4,
+ "text": "you"
+ },
+ {
+ "id": 13195,
+ "start": 6537.4,
+ "end": 6537.82,
+ "text": "have"
+ },
+ {
+ "id": 13196,
+ "start": 6537.82,
+ "end": 6538.28,
+ "text": "recently"
+ },
+ {
+ "id": 13197,
+ "start": 6538.28,
+ "end": 6538.68,
+ "text": "announced"
+ },
+ {
+ "id": 13198,
+ "start": 6538.68,
+ "end": 6539.56,
+ "text": "something"
+ },
+ {
+ "id": 13199,
+ "start": 6539.56,
+ "end": 6540.58,
+ "text": "that"
+ },
+ {
+ "id": 13200,
+ "start": 6540.58,
+ "end": 6540.86,
+ "text": "is"
+ },
+ {
+ "id": 13201,
+ "start": 6540.86,
+ "end": 6543,
+ "text": "called"
+ },
+ {
+ "id": 13202,
+ "start": 6543,
+ "end": 6543.98,
+ "text": "Messenger"
+ },
+ {
+ "id": 13203,
+ "start": 6543.98,
+ "end": 6545.3,
+ "text": "Kids"
+ },
+ {
+ "id": 13204,
+ "start": 6545.3,
+ "end": 6546.28,
+ "text": "Facebook"
+ },
+ {
+ "id": 13205,
+ "start": 6546.28,
+ "end": 6546.58,
+ "text": "created."
+ },
+ {
+ "id": 13206,
+ "start": 6546.58,
+ "end": 6546.7,
+ "text": "An"
+ },
+ {
+ "id": 13207,
+ "start": 6546.7,
+ "end": 6546.96,
+ "text": "app"
+ },
+ {
+ "id": 13208,
+ "start": 6546.96,
+ "end": 6547.36,
+ "text": "allowing"
+ },
+ {
+ "id": 13209,
+ "start": 6547.36,
+ "end": 6547.8,
+ "text": "kids"
+ },
+ {
+ "id": 13210,
+ "start": 6547.8,
+ "end": 6548.24,
+ "text": "between"
+ },
+ {
+ "id": 13211,
+ "start": 6548.24,
+ "end": 6548.34,
+ "text": "the"
+ },
+ {
+ "id": 13212,
+ "start": 6548.34,
+ "end": 6548.64,
+ "text": "ages"
+ },
+ {
+ "id": 13213,
+ "start": 6548.64,
+ "end": 6548.76,
+ "text": "of"
+ },
+ {
+ "id": 13214,
+ "start": 6548.76,
+ "end": 6549.16,
+ "text": "six"
+ },
+ {
+ "id": 13215,
+ "start": 6549.16,
+ "end": 6549.44,
+ "text": "and"
+ },
+ {
+ "id": 13216,
+ "start": 6549.44,
+ "end": 6550.02,
+ "text": "12"
+ },
+ {
+ "id": 13217,
+ "start": 6550.02,
+ "end": 6550.94,
+ "text": "to"
+ },
+ {
+ "id": 13218,
+ "start": 6550.94,
+ "end": 6551.14,
+ "text": "send"
+ },
+ {
+ "id": 13219,
+ "start": 6551.14,
+ "end": 6551.44,
+ "text": "video"
+ },
+ {
+ "id": 13220,
+ "start": 6551.44,
+ "end": 6551.56,
+ "text": "and"
+ },
+ {
+ "id": 13221,
+ "start": 6551.56,
+ "end": 6551.82,
+ "text": "text"
+ },
+ {
+ "id": 13222,
+ "start": 6551.82,
+ "end": 6552.28,
+ "text": "messages"
+ },
+ {
+ "id": 13223,
+ "start": 6552.28,
+ "end": 6552.56,
+ "text": "through"
+ },
+ {
+ "id": 13224,
+ "start": 6552.56,
+ "end": 6553.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 13225,
+ "start": 6553.02,
+ "end": 6553.18,
+ "text": "as"
+ },
+ {
+ "id": 13226,
+ "start": 6553.18,
+ "end": 6553.28,
+ "text": "an"
+ },
+ {
+ "id": 13227,
+ "start": 6553.28,
+ "end": 6553.74,
+ "text": "extension"
+ },
+ {
+ "id": 13228,
+ "start": 6553.74,
+ "end": 6553.84,
+ "text": "of"
+ },
+ {
+ "id": 13229,
+ "start": 6553.84,
+ "end": 6553.98,
+ "text": "their"
+ },
+ {
+ "id": 13230,
+ "start": 6553.98,
+ "end": 6554.28,
+ "text": "parents"
+ },
+ {
+ "id": 13231,
+ "start": 6554.28,
+ "end": 6554.68,
+ "text": "account."
+ },
+ {
+ "id": 13232,
+ "start": 6554.68,
+ "end": 6555.8,
+ "text": "You"
+ },
+ {
+ "id": 13233,
+ "start": 6555.8,
+ "end": 6555.94,
+ "text": "have"
+ },
+ {
+ "id": 13234,
+ "start": 6555.94,
+ "end": 6556.38,
+ "text": "cartoon"
+ },
+ {
+ "id": 13235,
+ "start": 6556.38,
+ "end": 6556.56,
+ "text": "like"
+ },
+ {
+ "id": 13236,
+ "start": 6556.56,
+ "end": 6557,
+ "text": "stickers"
+ },
+ {
+ "id": 13237,
+ "start": 6557,
+ "end": 6557.14,
+ "text": "and"
+ },
+ {
+ "id": 13238,
+ "start": 6557.14,
+ "end": 6557.38,
+ "text": "other"
+ },
+ {
+ "id": 13239,
+ "start": 6557.38,
+ "end": 6557.78,
+ "text": "features"
+ },
+ {
+ "id": 13240,
+ "start": 6557.78,
+ "end": 6558.22,
+ "text": "designed"
+ },
+ {
+ "id": 13241,
+ "start": 6558.22,
+ "end": 6558.3,
+ "text": "to"
+ },
+ {
+ "id": 13242,
+ "start": 6558.3,
+ "end": 6558.66,
+ "text": "appeal"
+ },
+ {
+ "id": 13243,
+ "start": 6558.66,
+ "end": 6558.9,
+ "text": "to"
+ },
+ {
+ "id": 13244,
+ "start": 6558.9,
+ "end": 6559.44,
+ "text": "little"
+ },
+ {
+ "id": 13245,
+ "start": 6559.44,
+ "end": 6559.74,
+ "text": "kids"
+ },
+ {
+ "id": 13246,
+ "start": 6559.74,
+ "end": 6560.22,
+ "text": "first"
+ },
+ {
+ "id": 13247,
+ "start": 6560.22,
+ "end": 6560.58,
+ "text": "graders"
+ },
+ {
+ "id": 13248,
+ "start": 6560.58,
+ "end": 6562.28,
+ "text": "kindergarteners"
+ },
+ {
+ "id": 13249,
+ "start": 6562.28,
+ "end": 6563.24,
+ "text": "on"
+ },
+ {
+ "id": 13250,
+ "start": 6563.24,
+ "end": 6563.6,
+ "text": "January"
+ },
+ {
+ "id": 13251,
+ "start": 6563.6,
+ "end": 6564.04,
+ "text": "thirtieth"
+ },
+ {
+ "id": 13252,
+ "start": 6564.04,
+ "end": 6564.5,
+ "text": "campaign."
+ },
+ {
+ "id": 13253,
+ "start": 6564.5,
+ "end": 6564.66,
+ "text": "For"
+ },
+ {
+ "id": 13254,
+ "start": 6564.66,
+ "end": 6565.08,
+ "text": "commercial"
+ },
+ {
+ "id": 13255,
+ "start": 6565.08,
+ "end": 6565.34,
+ "text": "free"
+ },
+ {
+ "id": 13256,
+ "start": 6565.34,
+ "end": 6565.92,
+ "text": "childhood"
+ },
+ {
+ "id": 13257,
+ "start": 6565.92,
+ "end": 6566.14,
+ "text": "and"
+ },
+ {
+ "id": 13258,
+ "start": 6566.14,
+ "end": 6566.46,
+ "text": "lots"
+ },
+ {
+ "id": 13259,
+ "start": 6566.46,
+ "end": 6566.54,
+ "text": "of"
+ },
+ {
+ "id": 13260,
+ "start": 6566.54,
+ "end": 6566.76,
+ "text": "other"
+ },
+ {
+ "id": 13261,
+ "start": 6566.76,
+ "end": 6567.02,
+ "text": "child"
+ },
+ {
+ "id": 13262,
+ "start": 6567.02,
+ "end": 6567.44,
+ "text": "development"
+ },
+ {
+ "id": 13263,
+ "start": 6567.44,
+ "end": 6568.14,
+ "text": "organizations,"
+ },
+ {
+ "id": 13264,
+ "start": 6568.14,
+ "end": 6568.58,
+ "text": "Warren"
+ },
+ {
+ "id": 13265,
+ "start": 6568.58,
+ "end": 6569.2,
+ "text": "Facebook,"
+ },
+ {
+ "id": 13266,
+ "start": 6569.2,
+ "end": 6570.3,
+ "text": "they"
+ },
+ {
+ "id": 13267,
+ "start": 6570.3,
+ "end": 6570.6,
+ "text": "pointed"
+ },
+ {
+ "id": 13268,
+ "start": 6570.6,
+ "end": 6570.74,
+ "text": "to"
+ },
+ {
+ "id": 13269,
+ "start": 6570.74,
+ "end": 6570.82,
+ "text": "a"
+ },
+ {
+ "id": 13270,
+ "start": 6570.82,
+ "end": 6571.14,
+ "text": "wealth"
+ },
+ {
+ "id": 13271,
+ "start": 6571.14,
+ "end": 6571.26,
+ "text": "of"
+ },
+ {
+ "id": 13272,
+ "start": 6571.26,
+ "end": 6571.78,
+ "text": "research"
+ },
+ {
+ "id": 13273,
+ "start": 6571.78,
+ "end": 6572.4,
+ "text": "demonstrating"
+ },
+ {
+ "id": 13274,
+ "start": 6572.4,
+ "end": 6572.69,
+ "text": "the"
+ },
+ {
+ "id": 13275,
+ "start": 6572.69,
+ "end": 6573.09,
+ "text": "excessive"
+ },
+ {
+ "id": 13276,
+ "start": 6573.09,
+ "end": 6573.31,
+ "text": "use"
+ },
+ {
+ "id": 13277,
+ "start": 6573.31,
+ "end": 6573.45,
+ "text": "of"
+ },
+ {
+ "id": 13278,
+ "start": 6573.45,
+ "end": 6573.85,
+ "text": "digital"
+ },
+ {
+ "id": 13279,
+ "start": 6573.85,
+ "end": 6574.37,
+ "text": "devices"
+ },
+ {
+ "id": 13280,
+ "start": 6574.37,
+ "end": 6574.51,
+ "text": "and"
+ },
+ {
+ "id": 13281,
+ "start": 6574.51,
+ "end": 6574.89,
+ "text": "social"
+ },
+ {
+ "id": 13282,
+ "start": 6574.89,
+ "end": 6575.23,
+ "text": "media"
+ },
+ {
+ "id": 13283,
+ "start": 6575.23,
+ "end": 6575.85,
+ "text": "is"
+ },
+ {
+ "id": 13284,
+ "start": 6575.85,
+ "end": 6576.27,
+ "text": "harmful"
+ },
+ {
+ "id": 13285,
+ "start": 6576.27,
+ "end": 6576.35,
+ "text": "to"
+ },
+ {
+ "id": 13286,
+ "start": 6576.35,
+ "end": 6576.65,
+ "text": "kids"
+ },
+ {
+ "id": 13287,
+ "start": 6576.65,
+ "end": 6577.41,
+ "text": "and"
+ },
+ {
+ "id": 13288,
+ "start": 6577.41,
+ "end": 6577.79,
+ "text": "argued"
+ },
+ {
+ "id": 13289,
+ "start": 6577.79,
+ "end": 6577.95,
+ "text": "that"
+ },
+ {
+ "id": 13290,
+ "start": 6577.95,
+ "end": 6578.23,
+ "text": "young"
+ },
+ {
+ "id": 13291,
+ "start": 6578.23,
+ "end": 6578.65,
+ "text": "children"
+ },
+ {
+ "id": 13292,
+ "start": 6578.65,
+ "end": 6579.07,
+ "text": "simply"
+ },
+ {
+ "id": 13293,
+ "start": 6579.07,
+ "end": 6579.21,
+ "text": "are"
+ },
+ {
+ "id": 13294,
+ "start": 6579.21,
+ "end": 6579.45,
+ "text": "not"
+ },
+ {
+ "id": 13295,
+ "start": 6579.45,
+ "end": 6579.81,
+ "text": "ready"
+ },
+ {
+ "id": 13296,
+ "start": 6579.81,
+ "end": 6579.95,
+ "text": "to"
+ },
+ {
+ "id": 13297,
+ "start": 6579.95,
+ "end": 6580.33,
+ "text": "handle"
+ },
+ {
+ "id": 13298,
+ "start": 6580.33,
+ "end": 6580.81,
+ "text": "social"
+ },
+ {
+ "id": 13299,
+ "start": 6580.81,
+ "end": 6581.13,
+ "text": "media"
+ },
+ {
+ "id": 13300,
+ "start": 6581.13,
+ "end": 6581.63,
+ "text": "accounts"
+ },
+ {
+ "id": 13301,
+ "start": 6581.63,
+ "end": 6581.79,
+ "text": "at"
+ },
+ {
+ "id": 13302,
+ "start": 6581.79,
+ "end": 6582.03,
+ "text": "age"
+ },
+ {
+ "id": 13303,
+ "start": 6582.03,
+ "end": 6583.1,
+ "text": "six"
+ },
+ {
+ "id": 13304,
+ "start": 6583.1,
+ "end": 6583.86,
+ "text": "in"
+ },
+ {
+ "id": 13305,
+ "start": 6583.86,
+ "end": 6584.16,
+ "text": "addition."
+ },
+ {
+ "id": 13306,
+ "start": 6584.16,
+ "end": 6584.36,
+ "text": "There"
+ },
+ {
+ "id": 13307,
+ "start": 6584.36,
+ "end": 6584.46,
+ "text": "are"
+ },
+ {
+ "id": 13308,
+ "start": 6584.46,
+ "end": 6584.84,
+ "text": "concerns"
+ },
+ {
+ "id": 13309,
+ "start": 6584.84,
+ "end": 6585.06,
+ "text": "about"
+ },
+ {
+ "id": 13310,
+ "start": 6585.06,
+ "end": 6585.84,
+ "text": "data"
+ },
+ {
+ "id": 13311,
+ "start": 6585.84,
+ "end": 6586.1,
+ "text": "that's"
+ },
+ {
+ "id": 13312,
+ "start": 6586.1,
+ "end": 6586.34,
+ "text": "being"
+ },
+ {
+ "id": 13313,
+ "start": 6586.34,
+ "end": 6586.9,
+ "text": "gathered"
+ },
+ {
+ "id": 13314,
+ "start": 6586.9,
+ "end": 6587.64,
+ "text": "about"
+ },
+ {
+ "id": 13315,
+ "start": 6587.64,
+ "end": 6587.98,
+ "text": "these"
+ },
+ {
+ "id": 13316,
+ "start": 6587.98,
+ "end": 6588.36,
+ "text": "kids"
+ },
+ {
+ "id": 13317,
+ "start": 6588.36,
+ "end": 6589.32,
+ "text": "now."
+ },
+ {
+ "id": 13318,
+ "start": 6589.32,
+ "end": 6589.48,
+ "text": "There"
+ },
+ {
+ "id": 13319,
+ "start": 6589.48,
+ "end": 6589.58,
+ "text": "are"
+ },
+ {
+ "id": 13320,
+ "start": 6589.58,
+ "end": 6589.8,
+ "text": "certain"
+ },
+ {
+ "id": 13321,
+ "start": 6589.8,
+ "end": 6590.12,
+ "text": "limits"
+ },
+ {
+ "id": 13322,
+ "start": 6590.12,
+ "end": 6590.24,
+ "text": "in"
+ },
+ {
+ "id": 13323,
+ "start": 6590.24,
+ "end": 6590.36,
+ "text": "the"
+ },
+ {
+ "id": 13324,
+ "start": 6590.36,
+ "end": 6590.54,
+ "text": "law."
+ },
+ {
+ "id": 13325,
+ "start": 6590.54,
+ "end": 6591.02,
+ "text": "We"
+ },
+ {
+ "id": 13326,
+ "start": 6591.02,
+ "end": 6591.2,
+ "text": "know"
+ },
+ {
+ "id": 13327,
+ "start": 6591.2,
+ "end": 6592,
+ "text": "the"
+ },
+ {
+ "id": 13328,
+ "start": 6592,
+ "end": 6592.38,
+ "text": "children's"
+ },
+ {
+ "id": 13329,
+ "start": 6592.38,
+ "end": 6592.82,
+ "text": "online"
+ },
+ {
+ "id": 13330,
+ "start": 6592.82,
+ "end": 6593.62,
+ "text": "privacy"
+ },
+ {
+ "id": 13331,
+ "start": 6593.62,
+ "end": 6595.06,
+ "text": "at"
+ },
+ {
+ "id": 13332,
+ "start": 6595.06,
+ "end": 6595.24,
+ "text": "what"
+ },
+ {
+ "id": 13333,
+ "start": 6595.24,
+ "end": 6595.86,
+ "text": "guarantees"
+ },
+ {
+ "id": 13334,
+ "start": 6595.86,
+ "end": 6596.06,
+ "text": "can"
+ },
+ {
+ "id": 13335,
+ "start": 6596.06,
+ "end": 6596.26,
+ "text": "you"
+ },
+ {
+ "id": 13336,
+ "start": 6596.26,
+ "end": 6596.44,
+ "text": "give"
+ },
+ {
+ "id": 13337,
+ "start": 6596.44,
+ "end": 6596.62,
+ "text": "us"
+ },
+ {
+ "id": 13338,
+ "start": 6596.62,
+ "end": 6596.84,
+ "text": "that?"
+ },
+ {
+ "id": 13339,
+ "start": 6596.84,
+ "end": 6597.14,
+ "text": "No,"
+ },
+ {
+ "id": 13340,
+ "start": 6597.14,
+ "end": 6597.6,
+ "text": "data"
+ },
+ {
+ "id": 13341,
+ "start": 6597.6,
+ "end": 6597.8,
+ "text": "for"
+ },
+ {
+ "id": 13342,
+ "start": 6597.8,
+ "end": 6598.42,
+ "text": "Messenger"
+ },
+ {
+ "id": 13343,
+ "start": 6598.42,
+ "end": 6598.74,
+ "text": "kids"
+ },
+ {
+ "id": 13344,
+ "start": 6598.74,
+ "end": 6599.16,
+ "text": "is"
+ },
+ {
+ "id": 13345,
+ "start": 6599.16,
+ "end": 6599.5,
+ "text": "or"
+ },
+ {
+ "id": 13346,
+ "start": 6599.5,
+ "end": 6599.74,
+ "text": "will"
+ },
+ {
+ "id": 13347,
+ "start": 6599.74,
+ "end": 6599.9,
+ "text": "be"
+ },
+ {
+ "id": 13348,
+ "start": 6599.9,
+ "end": 6600.34,
+ "text": "collected"
+ },
+ {
+ "id": 13349,
+ "start": 6600.34,
+ "end": 6600.46,
+ "text": "or"
+ },
+ {
+ "id": 13350,
+ "start": 6600.46,
+ "end": 6600.86,
+ "text": "shared"
+ },
+ {
+ "id": 13351,
+ "start": 6600.86,
+ "end": 6601.9,
+ "text": "with"
+ },
+ {
+ "id": 13352,
+ "start": 6601.9,
+ "end": 6602.14,
+ "text": "those"
+ },
+ {
+ "id": 13353,
+ "start": 6602.14,
+ "end": 6602.3,
+ "text": "that"
+ },
+ {
+ "id": 13354,
+ "start": 6602.3,
+ "end": 6602.52,
+ "text": "might"
+ },
+ {
+ "id": 13355,
+ "start": 6602.52,
+ "end": 6602.92,
+ "text": "violate"
+ },
+ {
+ "id": 13356,
+ "start": 6602.92,
+ "end": 6603.12,
+ "text": "that"
+ },
+ {
+ "id": 13357,
+ "start": 6603.12,
+ "end": 6604.14,
+ "text": "law."
+ },
+ {
+ "id": 13358,
+ "start": 6604.14,
+ "end": 6605.04,
+ "text": "All"
+ },
+ {
+ "id": 13359,
+ "start": 6605.04,
+ "end": 6605.2,
+ "text": "right,"
+ },
+ {
+ "id": 13360,
+ "start": 6605.2,
+ "end": 6605.62,
+ "text": "Senator."
+ },
+ {
+ "id": 13361,
+ "start": 6605.62,
+ "end": 6605.84,
+ "text": "So"
+ },
+ {
+ "id": 13362,
+ "start": 6605.84,
+ "end": 6605.9,
+ "text": "a"
+ },
+ {
+ "id": 13363,
+ "start": 6605.9,
+ "end": 6606.22,
+ "text": "number"
+ },
+ {
+ "id": 13364,
+ "start": 6606.22,
+ "end": 6606.32,
+ "text": "of"
+ },
+ {
+ "id": 13365,
+ "start": 6606.32,
+ "end": 6606.66,
+ "text": "things"
+ },
+ {
+ "id": 13366,
+ "start": 6606.66,
+ "end": 6606.7,
+ "text": "I"
+ },
+ {
+ "id": 13367,
+ "start": 6606.7,
+ "end": 6606.98,
+ "text": "think"
+ },
+ {
+ "id": 13368,
+ "start": 6606.98,
+ "end": 6607.4,
+ "text": "are"
+ },
+ {
+ "id": 13369,
+ "start": 6607.4,
+ "end": 6607.84,
+ "text": "important"
+ },
+ {
+ "id": 13370,
+ "start": 6607.84,
+ "end": 6608.08,
+ "text": "here,"
+ },
+ {
+ "id": 13371,
+ "start": 6608.08,
+ "end": 6608.8,
+ "text": "the"
+ },
+ {
+ "id": 13372,
+ "start": 6608.8,
+ "end": 6609.12,
+ "text": "background"
+ },
+ {
+ "id": 13373,
+ "start": 6609.12,
+ "end": 6609.2,
+ "text": "on"
+ },
+ {
+ "id": 13374,
+ "start": 6609.2,
+ "end": 6609.62,
+ "text": "Messenger"
+ },
+ {
+ "id": 13375,
+ "start": 6609.62,
+ "end": 6609.9,
+ "text": "kids"
+ },
+ {
+ "id": 13376,
+ "start": 6609.9,
+ "end": 6610.66,
+ "text": "is"
+ },
+ {
+ "id": 13377,
+ "start": 6610.66,
+ "end": 6611.32,
+ "text": "we"
+ },
+ {
+ "id": 13378,
+ "start": 6611.32,
+ "end": 6611.54,
+ "text": "heard"
+ },
+ {
+ "id": 13379,
+ "start": 6611.54,
+ "end": 6611.98,
+ "text": "feedback"
+ },
+ {
+ "id": 13380,
+ "start": 6611.98,
+ "end": 6612.14,
+ "text": "from"
+ },
+ {
+ "id": 13381,
+ "start": 6612.14,
+ "end": 6612.68,
+ "text": "thousands"
+ },
+ {
+ "id": 13382,
+ "start": 6612.68,
+ "end": 6612.82,
+ "text": "of"
+ },
+ {
+ "id": 13383,
+ "start": 6612.82,
+ "end": 6613.24,
+ "text": "parents"
+ },
+ {
+ "id": 13384,
+ "start": 6613.24,
+ "end": 6614.16,
+ "text": "that"
+ },
+ {
+ "id": 13385,
+ "start": 6614.16,
+ "end": 6615.24,
+ "text": "they"
+ },
+ {
+ "id": 13386,
+ "start": 6615.24,
+ "end": 6615.42,
+ "text": "want"
+ },
+ {
+ "id": 13387,
+ "start": 6615.42,
+ "end": 6615.52,
+ "text": "to"
+ },
+ {
+ "id": 13388,
+ "start": 6615.52,
+ "end": 6615.64,
+ "text": "be"
+ },
+ {
+ "id": 13389,
+ "start": 6615.64,
+ "end": 6615.82,
+ "text": "able"
+ },
+ {
+ "id": 13390,
+ "start": 6615.82,
+ "end": 6615.92,
+ "text": "to"
+ },
+ {
+ "id": 13391,
+ "start": 6615.92,
+ "end": 6616.14,
+ "text": "stay"
+ },
+ {
+ "id": 13392,
+ "start": 6616.14,
+ "end": 6616.24,
+ "text": "in"
+ },
+ {
+ "id": 13393,
+ "start": 6616.24,
+ "end": 6616.46,
+ "text": "touch"
+ },
+ {
+ "id": 13394,
+ "start": 6616.46,
+ "end": 6616.62,
+ "text": "with"
+ },
+ {
+ "id": 13395,
+ "start": 6616.62,
+ "end": 6616.8,
+ "text": "their"
+ },
+ {
+ "id": 13396,
+ "start": 6616.8,
+ "end": 6617.04,
+ "text": "kids"
+ },
+ {
+ "id": 13397,
+ "start": 6617.04,
+ "end": 6617.22,
+ "text": "and"
+ },
+ {
+ "id": 13398,
+ "start": 6617.22,
+ "end": 6617.46,
+ "text": "call"
+ },
+ {
+ "id": 13399,
+ "start": 6617.46,
+ "end": 6617.7,
+ "text": "them"
+ },
+ {
+ "id": 13400,
+ "start": 6617.7,
+ "end": 6617.98,
+ "text": "use"
+ },
+ {
+ "id": 13401,
+ "start": 6617.98,
+ "end": 6618.24,
+ "text": "apps"
+ },
+ {
+ "id": 13402,
+ "start": 6618.24,
+ "end": 6618.44,
+ "text": "like"
+ },
+ {
+ "id": 13403,
+ "start": 6618.44,
+ "end": 6619.1,
+ "text": "FaceTime"
+ },
+ {
+ "id": 13404,
+ "start": 6619.1,
+ "end": 6619.78,
+ "text": "when"
+ },
+ {
+ "id": 13405,
+ "start": 6619.78,
+ "end": 6620.03,
+ "text": "they're"
+ },
+ {
+ "id": 13406,
+ "start": 6620.03,
+ "end": 6620.33,
+ "text": "working"
+ },
+ {
+ "id": 13407,
+ "start": 6620.33,
+ "end": 6620.61,
+ "text": "late"
+ },
+ {
+ "id": 13408,
+ "start": 6620.61,
+ "end": 6620.81,
+ "text": "or"
+ },
+ {
+ "id": 13409,
+ "start": 6620.81,
+ "end": 6621.01,
+ "text": "not"
+ },
+ {
+ "id": 13410,
+ "start": 6621.01,
+ "end": 6621.33,
+ "text": "around"
+ },
+ {
+ "id": 13411,
+ "start": 6621.33,
+ "end": 6621.49,
+ "text": "and"
+ },
+ {
+ "id": 13412,
+ "start": 6621.49,
+ "end": 6621.65,
+ "text": "want"
+ },
+ {
+ "id": 13413,
+ "start": 6621.65,
+ "end": 6621.73,
+ "text": "to"
+ },
+ {
+ "id": 13414,
+ "start": 6621.73,
+ "end": 6622.09,
+ "text": "communicate"
+ },
+ {
+ "id": 13415,
+ "start": 6622.09,
+ "end": 6622.21,
+ "text": "with"
+ },
+ {
+ "id": 13416,
+ "start": 6622.21,
+ "end": 6622.35,
+ "text": "their"
+ },
+ {
+ "id": 13417,
+ "start": 6622.35,
+ "end": 6622.47,
+ "text": "kids."
+ },
+ {
+ "id": 13418,
+ "start": 6622.47,
+ "end": 6622.59,
+ "text": "But"
+ },
+ {
+ "id": 13419,
+ "start": 6622.59,
+ "end": 6622.71,
+ "text": "they"
+ },
+ {
+ "id": 13420,
+ "start": 6622.71,
+ "end": 6622.85,
+ "text": "want"
+ },
+ {
+ "id": 13421,
+ "start": 6622.85,
+ "end": 6622.91,
+ "text": "to"
+ },
+ {
+ "id": 13422,
+ "start": 6622.91,
+ "end": 6623.03,
+ "text": "have"
+ },
+ {
+ "id": 13423,
+ "start": 6623.03,
+ "end": 6623.35,
+ "text": "complete"
+ },
+ {
+ "id": 13424,
+ "start": 6623.35,
+ "end": 6623.65,
+ "text": "control"
+ },
+ {
+ "id": 13425,
+ "start": 6623.65,
+ "end": 6623.85,
+ "text": "over"
+ },
+ {
+ "id": 13426,
+ "start": 6623.85,
+ "end": 6624.01,
+ "text": "that"
+ },
+ {
+ "id": 13427,
+ "start": 6624.01,
+ "end": 6624.21,
+ "text": "so"
+ },
+ {
+ "id": 13428,
+ "start": 6624.21,
+ "end": 6624.27,
+ "text": "I"
+ },
+ {
+ "id": 13429,
+ "start": 6624.27,
+ "end": 6624.43,
+ "text": "think"
+ },
+ {
+ "id": 13430,
+ "start": 6624.43,
+ "end": 6624.51,
+ "text": "we"
+ },
+ {
+ "id": 13431,
+ "start": 6624.51,
+ "end": 6624.65,
+ "text": "can"
+ },
+ {
+ "id": 13432,
+ "start": 6624.65,
+ "end": 6624.79,
+ "text": "all"
+ },
+ {
+ "id": 13433,
+ "start": 6624.79,
+ "end": 6625.11,
+ "text": "agree"
+ },
+ {
+ "id": 13434,
+ "start": 6625.11,
+ "end": 6625.81,
+ "text": "that"
+ },
+ {
+ "id": 13435,
+ "start": 6625.81,
+ "end": 6626.29,
+ "text": "when"
+ },
+ {
+ "id": 13436,
+ "start": 6626.29,
+ "end": 6626.45,
+ "text": "your"
+ },
+ {
+ "id": 13437,
+ "start": 6626.45,
+ "end": 6626.61,
+ "text": "kid"
+ },
+ {
+ "id": 13438,
+ "start": 6626.61,
+ "end": 6626.77,
+ "text": "is"
+ },
+ {
+ "id": 13439,
+ "start": 6626.77,
+ "end": 6627.01,
+ "text": "six"
+ },
+ {
+ "id": 13440,
+ "start": 6627.01,
+ "end": 6627.19,
+ "text": "or"
+ },
+ {
+ "id": 13441,
+ "start": 6627.19,
+ "end": 6627.47,
+ "text": "7"
+ },
+ {
+ "id": 13442,
+ "start": 6627.47,
+ "end": 6627.71,
+ "text": "even"
+ },
+ {
+ "id": 13443,
+ "start": 6627.71,
+ "end": 6627.81,
+ "text": "if"
+ },
+ {
+ "id": 13444,
+ "start": 6627.81,
+ "end": 6628.01,
+ "text": "they"
+ },
+ {
+ "id": 13445,
+ "start": 6628.01,
+ "end": 6628.49,
+ "text": "have"
+ },
+ {
+ "id": 13446,
+ "start": 6628.49,
+ "end": 6628.85,
+ "text": "access"
+ },
+ {
+ "id": 13447,
+ "start": 6628.85,
+ "end": 6628.97,
+ "text": "to"
+ },
+ {
+ "id": 13448,
+ "start": 6628.97,
+ "end": 6629.05,
+ "text": "a"
+ },
+ {
+ "id": 13449,
+ "start": 6629.05,
+ "end": 6629.29,
+ "text": "phone,"
+ },
+ {
+ "id": 13450,
+ "start": 6629.29,
+ "end": 6629.41,
+ "text": "you"
+ },
+ {
+ "id": 13451,
+ "start": 6629.41,
+ "end": 6629.53,
+ "text": "want"
+ },
+ {
+ "id": 13452,
+ "start": 6629.53,
+ "end": 6629.61,
+ "text": "to"
+ },
+ {
+ "id": 13453,
+ "start": 6629.61,
+ "end": 6629.67,
+ "text": "be"
+ },
+ {
+ "id": 13454,
+ "start": 6629.67,
+ "end": 6629.79,
+ "text": "able"
+ },
+ {
+ "id": 13455,
+ "start": 6629.79,
+ "end": 6629.87,
+ "text": "to"
+ },
+ {
+ "id": 13456,
+ "start": 6629.87,
+ "end": 6630.17,
+ "text": "control"
+ },
+ {
+ "id": 13457,
+ "start": 6630.17,
+ "end": 6630.57,
+ "text": "everyone"
+ },
+ {
+ "id": 13458,
+ "start": 6630.57,
+ "end": 6630.73,
+ "text": "who"
+ },
+ {
+ "id": 13459,
+ "start": 6630.73,
+ "end": 6630.91,
+ "text": "they"
+ },
+ {
+ "id": 13460,
+ "start": 6630.91,
+ "end": 6631.07,
+ "text": "can"
+ },
+ {
+ "id": 13461,
+ "start": 6631.07,
+ "end": 6631.53,
+ "text": "contact"
+ },
+ {
+ "id": 13462,
+ "start": 6631.53,
+ "end": 6632.01,
+ "text": "and"
+ },
+ {
+ "id": 13463,
+ "start": 6632.01,
+ "end": 6632.17,
+ "text": "there"
+ },
+ {
+ "id": 13464,
+ "start": 6632.17,
+ "end": 6632.43,
+ "text": "wasn't"
+ },
+ {
+ "id": 13465,
+ "start": 6632.43,
+ "end": 6632.51,
+ "text": "an"
+ },
+ {
+ "id": 13466,
+ "start": 6632.51,
+ "end": 6632.75,
+ "text": "app"
+ },
+ {
+ "id": 13467,
+ "start": 6632.75,
+ "end": 6632.95,
+ "text": "out"
+ },
+ {
+ "id": 13468,
+ "start": 6632.95,
+ "end": 6633.13,
+ "text": "there"
+ },
+ {
+ "id": 13469,
+ "start": 6633.13,
+ "end": 6633.31,
+ "text": "that"
+ },
+ {
+ "id": 13470,
+ "start": 6633.31,
+ "end": 6633.51,
+ "text": "did"
+ },
+ {
+ "id": 13471,
+ "start": 6633.51,
+ "end": 6633.71,
+ "text": "that."
+ },
+ {
+ "id": 13472,
+ "start": 6633.71,
+ "end": 6634.27,
+ "text": "So"
+ },
+ {
+ "id": 13473,
+ "start": 6634.27,
+ "end": 6634.43,
+ "text": "we"
+ },
+ {
+ "id": 13474,
+ "start": 6634.43,
+ "end": 6634.65,
+ "text": "built"
+ },
+ {
+ "id": 13475,
+ "start": 6634.65,
+ "end": 6634.83,
+ "text": "this"
+ },
+ {
+ "id": 13476,
+ "start": 6634.83,
+ "end": 6635.21,
+ "text": "service"
+ },
+ {
+ "id": 13477,
+ "start": 6635.21,
+ "end": 6635.31,
+ "text": "to"
+ },
+ {
+ "id": 13478,
+ "start": 6635.31,
+ "end": 6635.45,
+ "text": "do"
+ },
+ {
+ "id": 13479,
+ "start": 6635.45,
+ "end": 6635.92,
+ "text": "that."
+ },
+ {
+ "id": 13480,
+ "start": 6635.92,
+ "end": 6636.36,
+ "text": "The"
+ },
+ {
+ "id": 13481,
+ "start": 6636.36,
+ "end": 6636.62,
+ "text": "app"
+ },
+ {
+ "id": 13482,
+ "start": 6636.62,
+ "end": 6637.5,
+ "text": "collects"
+ },
+ {
+ "id": 13483,
+ "start": 6637.5,
+ "end": 6637.6,
+ "text": "a"
+ },
+ {
+ "id": 13484,
+ "start": 6637.6,
+ "end": 6638,
+ "text": "minimum"
+ },
+ {
+ "id": 13485,
+ "start": 6638,
+ "end": 6638.3,
+ "text": "amount"
+ },
+ {
+ "id": 13486,
+ "start": 6638.3,
+ "end": 6638.4,
+ "text": "of"
+ },
+ {
+ "id": 13487,
+ "start": 6638.4,
+ "end": 6638.96,
+ "text": "information"
+ },
+ {
+ "id": 13488,
+ "start": 6638.96,
+ "end": 6639.7,
+ "text": "that"
+ },
+ {
+ "id": 13489,
+ "start": 6639.7,
+ "end": 6639.84,
+ "text": "is"
+ },
+ {
+ "id": 13490,
+ "start": 6639.84,
+ "end": 6640.36,
+ "text": "necessary"
+ },
+ {
+ "id": 13491,
+ "start": 6640.36,
+ "end": 6640.56,
+ "text": "to"
+ },
+ {
+ "id": 13492,
+ "start": 6640.56,
+ "end": 6641.24,
+ "text": "operate"
+ },
+ {
+ "id": 13493,
+ "start": 6641.24,
+ "end": 6641.38,
+ "text": "the"
+ },
+ {
+ "id": 13494,
+ "start": 6641.38,
+ "end": 6641.7,
+ "text": "service."
+ },
+ {
+ "id": 13495,
+ "start": 6641.7,
+ "end": 6642.06,
+ "text": "So,"
+ },
+ {
+ "id": 13496,
+ "start": 6642.06,
+ "end": 6642.24,
+ "text": "for"
+ },
+ {
+ "id": 13497,
+ "start": 6642.24,
+ "end": 6642.56,
+ "text": "example,"
+ },
+ {
+ "id": 13498,
+ "start": 6642.56,
+ "end": 6642.72,
+ "text": "the"
+ },
+ {
+ "id": 13499,
+ "start": 6642.72,
+ "end": 6643.14,
+ "text": "messages"
+ },
+ {
+ "id": 13500,
+ "start": 6643.14,
+ "end": 6643.3,
+ "text": "that"
+ },
+ {
+ "id": 13501,
+ "start": 6643.3,
+ "end": 6643.52,
+ "text": "people"
+ },
+ {
+ "id": 13502,
+ "start": 6643.52,
+ "end": 6643.86,
+ "text": "send"
+ },
+ {
+ "id": 13503,
+ "start": 6643.86,
+ "end": 6644.44,
+ "text": "is"
+ },
+ {
+ "id": 13504,
+ "start": 6644.44,
+ "end": 6644.72,
+ "text": "something"
+ },
+ {
+ "id": 13505,
+ "start": 6644.72,
+ "end": 6644.84,
+ "text": "that"
+ },
+ {
+ "id": 13506,
+ "start": 6644.84,
+ "end": 6644.96,
+ "text": "we"
+ },
+ {
+ "id": 13507,
+ "start": 6644.96,
+ "end": 6645.22,
+ "text": "collect"
+ },
+ {
+ "id": 13508,
+ "start": 6645.22,
+ "end": 6645.34,
+ "text": "in"
+ },
+ {
+ "id": 13509,
+ "start": 6645.34,
+ "end": 6645.52,
+ "text": "order"
+ },
+ {
+ "id": 13510,
+ "start": 6645.52,
+ "end": 6645.6,
+ "text": "to"
+ },
+ {
+ "id": 13511,
+ "start": 6645.6,
+ "end": 6645.88,
+ "text": "operate."
+ },
+ {
+ "id": 13512,
+ "start": 6645.88,
+ "end": 6646,
+ "text": "The"
+ },
+ {
+ "id": 13513,
+ "start": 6646,
+ "end": 6646.36,
+ "text": "service"
+ },
+ {
+ "id": 13514,
+ "start": 6646.36,
+ "end": 6647.43,
+ "text": "but"
+ },
+ {
+ "id": 13515,
+ "start": 6647.43,
+ "end": 6647.95,
+ "text": "in"
+ },
+ {
+ "id": 13516,
+ "start": 6647.95,
+ "end": 6648.31,
+ "text": "general,"
+ },
+ {
+ "id": 13517,
+ "start": 6648.31,
+ "end": 6648.59,
+ "text": "that"
+ },
+ {
+ "id": 13518,
+ "start": 6648.59,
+ "end": 6648.85,
+ "text": "data"
+ },
+ {
+ "id": 13519,
+ "start": 6648.85,
+ "end": 6649.09,
+ "text": "is"
+ },
+ {
+ "id": 13520,
+ "start": 6649.09,
+ "end": 6649.41,
+ "text": "not"
+ },
+ {
+ "id": 13521,
+ "start": 6649.41,
+ "end": 6649.71,
+ "text": "going"
+ },
+ {
+ "id": 13522,
+ "start": 6649.71,
+ "end": 6649.79,
+ "text": "to"
+ },
+ {
+ "id": 13523,
+ "start": 6649.79,
+ "end": 6649.87,
+ "text": "be"
+ },
+ {
+ "id": 13524,
+ "start": 6649.87,
+ "end": 6650.09,
+ "text": "shared"
+ },
+ {
+ "id": 13525,
+ "start": 6650.09,
+ "end": 6650.23,
+ "text": "with"
+ },
+ {
+ "id": 13526,
+ "start": 6650.23,
+ "end": 6650.45,
+ "text": "third"
+ },
+ {
+ "id": 13527,
+ "start": 6650.45,
+ "end": 6650.81,
+ "text": "parties."
+ },
+ {
+ "id": 13528,
+ "start": 6650.81,
+ "end": 6651.49,
+ "text": "It"
+ },
+ {
+ "id": 13529,
+ "start": 6651.49,
+ "end": 6651.61,
+ "text": "is"
+ },
+ {
+ "id": 13530,
+ "start": 6651.61,
+ "end": 6651.87,
+ "text": "not"
+ },
+ {
+ "id": 13531,
+ "start": 6651.87,
+ "end": 6652.35,
+ "text": "connected"
+ },
+ {
+ "id": 13532,
+ "start": 6652.35,
+ "end": 6652.55,
+ "text": "to"
+ },
+ {
+ "id": 13533,
+ "start": 6652.55,
+ "end": 6653.39,
+ "text": "the"
+ },
+ {
+ "id": 13534,
+ "start": 6653.39,
+ "end": 6653.65,
+ "text": "broader"
+ },
+ {
+ "id": 13535,
+ "start": 6653.65,
+ "end": 6654.07,
+ "text": "Facebook."
+ },
+ {
+ "id": 13536,
+ "start": 6654.07,
+ "end": 6654.39,
+ "text": "Excuse"
+ },
+ {
+ "id": 13537,
+ "start": 6654.39,
+ "end": 6654.49,
+ "text": "me"
+ },
+ {
+ "id": 13538,
+ "start": 6654.49,
+ "end": 6655.23,
+ "text": "as"
+ },
+ {
+ "id": 13539,
+ "start": 6655.23,
+ "end": 6655.31,
+ "text": "a"
+ },
+ {
+ "id": 13540,
+ "start": 6655.31,
+ "end": 6655.67,
+ "text": "lawyer,"
+ },
+ {
+ "id": 13541,
+ "start": 6655.67,
+ "end": 6655.83,
+ "text": "I"
+ },
+ {
+ "id": 13542,
+ "start": 6655.83,
+ "end": 6656.05,
+ "text": "picked"
+ },
+ {
+ "id": 13543,
+ "start": 6656.05,
+ "end": 6656.15,
+ "text": "up"
+ },
+ {
+ "id": 13544,
+ "start": 6656.15,
+ "end": 6656.29,
+ "text": "on"
+ },
+ {
+ "id": 13545,
+ "start": 6656.29,
+ "end": 6656.43,
+ "text": "the"
+ },
+ {
+ "id": 13546,
+ "start": 6656.43,
+ "end": 6656.65,
+ "text": "word"
+ },
+ {
+ "id": 13547,
+ "start": 6656.65,
+ "end": 6656.81,
+ "text": "in"
+ },
+ {
+ "id": 13548,
+ "start": 6656.81,
+ "end": 6657.29,
+ "text": "general,"
+ },
+ {
+ "id": 13549,
+ "start": 6657.29,
+ "end": 6657.61,
+ "text": "the"
+ },
+ {
+ "id": 13550,
+ "start": 6657.61,
+ "end": 6657.93,
+ "text": "phrase"
+ },
+ {
+ "id": 13551,
+ "start": 6657.93,
+ "end": 6658.13,
+ "text": "in"
+ },
+ {
+ "id": 13552,
+ "start": 6658.13,
+ "end": 6658.94,
+ "text": "general,"
+ },
+ {
+ "id": 13553,
+ "start": 6658.94,
+ "end": 6659.44,
+ "text": "it"
+ },
+ {
+ "id": 13554,
+ "start": 6659.44,
+ "end": 6659.8,
+ "text": "seems"
+ },
+ {
+ "id": 13555,
+ "start": 6659.8,
+ "end": 6659.92,
+ "text": "to"
+ },
+ {
+ "id": 13556,
+ "start": 6659.92,
+ "end": 6660.28,
+ "text": "suggest"
+ },
+ {
+ "id": 13557,
+ "start": 6660.28,
+ "end": 6660.46,
+ "text": "that"
+ },
+ {
+ "id": 13558,
+ "start": 6660.46,
+ "end": 6660.56,
+ "text": "in"
+ },
+ {
+ "id": 13559,
+ "start": 6660.56,
+ "end": 6660.78,
+ "text": "some"
+ },
+ {
+ "id": 13560,
+ "start": 6660.78,
+ "end": 6661.48,
+ "text": "circumstances,"
+ },
+ {
+ "id": 13561,
+ "start": 6661.48,
+ "end": 6661.62,
+ "text": "it"
+ },
+ {
+ "id": 13562,
+ "start": 6661.62,
+ "end": 6661.94,
+ "text": "will"
+ },
+ {
+ "id": 13563,
+ "start": 6661.94,
+ "end": 6662.08,
+ "text": "be"
+ },
+ {
+ "id": 13564,
+ "start": 6662.08,
+ "end": 6662.4,
+ "text": "shared"
+ },
+ {
+ "id": 13565,
+ "start": 6662.4,
+ "end": 6662.56,
+ "text": "with"
+ },
+ {
+ "id": 13566,
+ "start": 6662.56,
+ "end": 6662.82,
+ "text": "third"
+ },
+ {
+ "id": 13567,
+ "start": 6662.82,
+ "end": 6663.14,
+ "text": "parties."
+ },
+ {
+ "id": 13568,
+ "start": 6663.14,
+ "end": 6663.48,
+ "text": "No,"
+ },
+ {
+ "id": 13569,
+ "start": 6663.48,
+ "end": 6664.3,
+ "text": "it"
+ },
+ {
+ "id": 13570,
+ "start": 6664.3,
+ "end": 6664.48,
+ "text": "will"
+ },
+ {
+ "id": 13571,
+ "start": 6664.48,
+ "end": 6664.68,
+ "text": "not"
+ },
+ {
+ "id": 13572,
+ "start": 6664.68,
+ "end": 6666.02,
+ "text": "alright,"
+ },
+ {
+ "id": 13573,
+ "start": 6666.02,
+ "end": 6667.08,
+ "text": "would"
+ },
+ {
+ "id": 13574,
+ "start": 6667.08,
+ "end": 6667.22,
+ "text": "you"
+ },
+ {
+ "id": 13575,
+ "start": 6667.22,
+ "end": 6667.34,
+ "text": "be"
+ },
+ {
+ "id": 13576,
+ "start": 6667.34,
+ "end": 6667.76,
+ "text": "open"
+ },
+ {
+ "id": 13577,
+ "start": 6667.76,
+ "end": 6667.9,
+ "text": "to"
+ },
+ {
+ "id": 13578,
+ "start": 6667.9,
+ "end": 6668.02,
+ "text": "the"
+ },
+ {
+ "id": 13579,
+ "start": 6668.02,
+ "end": 6668.38,
+ "text": "idea"
+ },
+ {
+ "id": 13580,
+ "start": 6668.38,
+ "end": 6668.7,
+ "text": "that"
+ },
+ {
+ "id": 13581,
+ "start": 6668.7,
+ "end": 6669.22,
+ "text": "someone"
+ },
+ {
+ "id": 13582,
+ "start": 6669.22,
+ "end": 6669.54,
+ "text": "having"
+ },
+ {
+ "id": 13583,
+ "start": 6669.54,
+ "end": 6669.8,
+ "text": "reached"
+ },
+ {
+ "id": 13584,
+ "start": 6669.8,
+ "end": 6669.98,
+ "text": "at"
+ },
+ {
+ "id": 13585,
+ "start": 6669.98,
+ "end": 6670.2,
+ "text": "old"
+ },
+ {
+ "id": 13586,
+ "start": 6670.2,
+ "end": 6670.58,
+ "text": "age"
+ },
+ {
+ "id": 13587,
+ "start": 6670.58,
+ "end": 6670.88,
+ "text": "having"
+ },
+ {
+ "id": 13588,
+ "start": 6670.88,
+ "end": 6671.14,
+ "text": "grown"
+ },
+ {
+ "id": 13589,
+ "start": 6671.14,
+ "end": 6671.26,
+ "text": "up"
+ },
+ {
+ "id": 13590,
+ "start": 6671.26,
+ "end": 6671.42,
+ "text": "with"
+ },
+ {
+ "id": 13591,
+ "start": 6671.42,
+ "end": 6671.96,
+ "text": "Messenger?"
+ },
+ {
+ "id": 13592,
+ "start": 6671.96,
+ "end": 6672.26,
+ "text": "Kids"
+ },
+ {
+ "id": 13593,
+ "start": 6672.26,
+ "end": 6672.92,
+ "text": "should"
+ },
+ {
+ "id": 13594,
+ "start": 6672.92,
+ "end": 6673.02,
+ "text": "be"
+ },
+ {
+ "id": 13595,
+ "start": 6673.02,
+ "end": 6673.34,
+ "text": "allowed"
+ },
+ {
+ "id": 13596,
+ "start": 6673.34,
+ "end": 6673.68,
+ "text": "to"
+ },
+ {
+ "id": 13597,
+ "start": 6673.68,
+ "end": 6674.22,
+ "text": "delete"
+ },
+ {
+ "id": 13598,
+ "start": 6674.22,
+ "end": 6674.38,
+ "text": "the"
+ },
+ {
+ "id": 13599,
+ "start": 6674.38,
+ "end": 6674.66,
+ "text": "data"
+ },
+ {
+ "id": 13600,
+ "start": 6674.66,
+ "end": 6674.82,
+ "text": "that"
+ },
+ {
+ "id": 13601,
+ "start": 6674.82,
+ "end": 6675.06,
+ "text": "you've"
+ },
+ {
+ "id": 13602,
+ "start": 6675.06,
+ "end": 6677.5,
+ "text": "collected,"
+ },
+ {
+ "id": 13603,
+ "start": 6677.5,
+ "end": 6678.46,
+ "text": "Senator."
+ },
+ {
+ "id": 13604,
+ "start": 6678.46,
+ "end": 6678.76,
+ "text": "Yes,"
+ },
+ {
+ "id": 13605,
+ "start": 6678.76,
+ "end": 6679.24,
+ "text": "as"
+ },
+ {
+ "id": 13606,
+ "start": 6679.24,
+ "end": 6679.3,
+ "text": "a"
+ },
+ {
+ "id": 13607,
+ "start": 6679.3,
+ "end": 6679.54,
+ "text": "matter"
+ },
+ {
+ "id": 13608,
+ "start": 6679.54,
+ "end": 6679.62,
+ "text": "of"
+ },
+ {
+ "id": 13609,
+ "start": 6679.62,
+ "end": 6679.88,
+ "text": "fact,"
+ },
+ {
+ "id": 13610,
+ "start": 6679.88,
+ "end": 6680.68,
+ "text": "when"
+ },
+ {
+ "id": 13611,
+ "start": 6680.68,
+ "end": 6680.8,
+ "text": "you"
+ },
+ {
+ "id": 13612,
+ "start": 6680.8,
+ "end": 6681.26,
+ "text": "become"
+ },
+ {
+ "id": 13613,
+ "start": 6681.26,
+ "end": 6682.12,
+ "text": "13"
+ },
+ {
+ "id": 13614,
+ "start": 6682.12,
+ "end": 6682.38,
+ "text": "which"
+ },
+ {
+ "id": 13615,
+ "start": 6682.38,
+ "end": 6682.5,
+ "text": "is"
+ },
+ {
+ "id": 13616,
+ "start": 6682.5,
+ "end": 6682.74,
+ "text": "our"
+ },
+ {
+ "id": 13617,
+ "start": 6682.74,
+ "end": 6683.14,
+ "text": "legal"
+ },
+ {
+ "id": 13618,
+ "start": 6683.14,
+ "end": 6683.42,
+ "text": "limit"
+ },
+ {
+ "id": 13619,
+ "start": 6683.42,
+ "end": 6683.68,
+ "text": "or"
+ },
+ {
+ "id": 13620,
+ "start": 6683.68,
+ "end": 6684.04,
+ "text": "limited."
+ },
+ {
+ "id": 13621,
+ "start": 6684.04,
+ "end": 6684.38,
+ "text": "We"
+ },
+ {
+ "id": 13622,
+ "start": 6684.38,
+ "end": 6684.54,
+ "text": "don't"
+ },
+ {
+ "id": 13623,
+ "start": 6684.54,
+ "end": 6684.72,
+ "text": "allow"
+ },
+ {
+ "id": 13624,
+ "start": 6684.72,
+ "end": 6684.92,
+ "text": "people"
+ },
+ {
+ "id": 13625,
+ "start": 6684.92,
+ "end": 6685.12,
+ "text": "under"
+ },
+ {
+ "id": 13626,
+ "start": 6685.12,
+ "end": 6685.24,
+ "text": "the"
+ },
+ {
+ "id": 13627,
+ "start": 6685.24,
+ "end": 6685.34,
+ "text": "age"
+ },
+ {
+ "id": 13628,
+ "start": 6685.34,
+ "end": 6685.42,
+ "text": "of"
+ },
+ {
+ "id": 13629,
+ "start": 6685.42,
+ "end": 6685.74,
+ "text": "13"
+ },
+ {
+ "id": 13630,
+ "start": 6685.74,
+ "end": 6685.84,
+ "text": "to"
+ },
+ {
+ "id": 13631,
+ "start": 6685.84,
+ "end": 6686,
+ "text": "use"
+ },
+ {
+ "id": 13632,
+ "start": 6686,
+ "end": 6687.28,
+ "text": "Facebook,"
+ },
+ {
+ "id": 13633,
+ "start": 6687.28,
+ "end": 6688.24,
+ "text": "you"
+ },
+ {
+ "id": 13634,
+ "start": 6688.24,
+ "end": 6688.56,
+ "text": "don't"
+ },
+ {
+ "id": 13635,
+ "start": 6688.56,
+ "end": 6689.2,
+ "text": "automatically"
+ },
+ {
+ "id": 13636,
+ "start": 6689.2,
+ "end": 6689.32,
+ "text": "go"
+ },
+ {
+ "id": 13637,
+ "start": 6689.32,
+ "end": 6689.56,
+ "text": "from"
+ },
+ {
+ "id": 13638,
+ "start": 6689.56,
+ "end": 6689.82,
+ "text": "having"
+ },
+ {
+ "id": 13639,
+ "start": 6689.82,
+ "end": 6689.86,
+ "text": "a"
+ },
+ {
+ "id": 13640,
+ "start": 6689.86,
+ "end": 6690.26,
+ "text": "Messenger."
+ },
+ {
+ "id": 13641,
+ "start": 6690.26,
+ "end": 6690.5,
+ "text": "Kids"
+ },
+ {
+ "id": 13642,
+ "start": 6690.5,
+ "end": 6691.26,
+ "text": "account"
+ },
+ {
+ "id": 13643,
+ "start": 6691.26,
+ "end": 6691.44,
+ "text": "to"
+ },
+ {
+ "id": 13644,
+ "start": 6691.44,
+ "end": 6691.5,
+ "text": "a"
+ },
+ {
+ "id": 13645,
+ "start": 6691.5,
+ "end": 6691.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 13646,
+ "start": 6691.9,
+ "end": 6692.18,
+ "text": "account."
+ },
+ {
+ "id": 13647,
+ "start": 6692.18,
+ "end": 6692.32,
+ "text": "You"
+ },
+ {
+ "id": 13648,
+ "start": 6692.32,
+ "end": 6692.46,
+ "text": "have"
+ },
+ {
+ "id": 13649,
+ "start": 6692.46,
+ "end": 6692.54,
+ "text": "to"
+ },
+ {
+ "id": 13650,
+ "start": 6692.54,
+ "end": 6692.78,
+ "text": "start"
+ },
+ {
+ "id": 13651,
+ "start": 6692.78,
+ "end": 6693.06,
+ "text": "over"
+ },
+ {
+ "id": 13652,
+ "start": 6693.06,
+ "end": 6693.26,
+ "text": "and"
+ },
+ {
+ "id": 13653,
+ "start": 6693.26,
+ "end": 6693.4,
+ "text": "get"
+ },
+ {
+ "id": 13654,
+ "start": 6693.4,
+ "end": 6693.46,
+ "text": "a"
+ },
+ {
+ "id": 13655,
+ "start": 6693.46,
+ "end": 6693.84,
+ "text": "Facebook"
+ },
+ {
+ "id": 13656,
+ "start": 6693.84,
+ "end": 6694.14,
+ "text": "account."
+ },
+ {
+ "id": 13657,
+ "start": 6694.14,
+ "end": 6694.94,
+ "text": "So"
+ },
+ {
+ "id": 13658,
+ "start": 6694.94,
+ "end": 6695.84,
+ "text": "so"
+ },
+ {
+ "id": 13659,
+ "start": 6695.84,
+ "end": 6695.88,
+ "text": "I"
+ },
+ {
+ "id": 13660,
+ "start": 6695.88,
+ "end": 6696.02,
+ "text": "think"
+ },
+ {
+ "id": 13661,
+ "start": 6696.02,
+ "end": 6696.16,
+ "text": "it's"
+ },
+ {
+ "id": 13662,
+ "start": 6696.16,
+ "end": 6696.48,
+ "text": "a"
+ },
+ {
+ "id": 13663,
+ "start": 6696.48,
+ "end": 6696.62,
+ "text": "good"
+ },
+ {
+ "id": 13664,
+ "start": 6696.62,
+ "end": 6696.8,
+ "text": "idea"
+ },
+ {
+ "id": 13665,
+ "start": 6696.8,
+ "end": 6697.02,
+ "text": "to"
+ },
+ {
+ "id": 13666,
+ "start": 6697.02,
+ "end": 6697.36,
+ "text": "consider"
+ },
+ {
+ "id": 13667,
+ "start": 6697.36,
+ "end": 6697.68,
+ "text": "making"
+ },
+ {
+ "id": 13668,
+ "start": 6697.68,
+ "end": 6697.86,
+ "text": "sure"
+ },
+ {
+ "id": 13669,
+ "start": 6697.86,
+ "end": 6698,
+ "text": "that"
+ },
+ {
+ "id": 13670,
+ "start": 6698,
+ "end": 6698.12,
+ "text": "all"
+ },
+ {
+ "id": 13671,
+ "start": 6698.12,
+ "end": 6698.3,
+ "text": "that"
+ },
+ {
+ "id": 13672,
+ "start": 6698.3,
+ "end": 6698.72,
+ "text": "information"
+ },
+ {
+ "id": 13673,
+ "start": 6698.72,
+ "end": 6698.9,
+ "text": "is"
+ },
+ {
+ "id": 13674,
+ "start": 6698.9,
+ "end": 6699.22,
+ "text": "deleted."
+ },
+ {
+ "id": 13675,
+ "start": 6699.22,
+ "end": 6699.36,
+ "text": "And"
+ },
+ {
+ "id": 13676,
+ "start": 6699.36,
+ "end": 6699.5,
+ "text": "in"
+ },
+ {
+ "id": 13677,
+ "start": 6699.5,
+ "end": 6699.86,
+ "text": "general,"
+ },
+ {
+ "id": 13678,
+ "start": 6699.86,
+ "end": 6700.06,
+ "text": "people"
+ },
+ {
+ "id": 13679,
+ "start": 6700.06,
+ "end": 6700.18,
+ "text": "are"
+ },
+ {
+ "id": 13680,
+ "start": 6700.18,
+ "end": 6700.32,
+ "text": "going"
+ },
+ {
+ "id": 13681,
+ "start": 6700.32,
+ "end": 6700.38,
+ "text": "to"
+ },
+ {
+ "id": 13682,
+ "start": 6700.38,
+ "end": 6700.44,
+ "text": "be"
+ },
+ {
+ "id": 13683,
+ "start": 6700.44,
+ "end": 6700.72,
+ "text": "starting"
+ },
+ {
+ "id": 13684,
+ "start": 6700.72,
+ "end": 6700.94,
+ "text": "over"
+ },
+ {
+ "id": 13685,
+ "start": 6700.94,
+ "end": 6701.1,
+ "text": "when"
+ },
+ {
+ "id": 13686,
+ "start": 6701.1,
+ "end": 6701.24,
+ "text": "they"
+ },
+ {
+ "id": 13687,
+ "start": 6701.24,
+ "end": 6701.36,
+ "text": "get"
+ },
+ {
+ "id": 13688,
+ "start": 6701.36,
+ "end": 6701.6,
+ "text": "their"
+ },
+ {
+ "id": 13689,
+ "start": 6701.6,
+ "end": 6702.02,
+ "text": "their"
+ },
+ {
+ "id": 13690,
+ "start": 6702.02,
+ "end": 6702.4,
+ "text": "Facebook"
+ },
+ {
+ "id": 13691,
+ "start": 6702.4,
+ "end": 6702.48,
+ "text": "or"
+ },
+ {
+ "id": 13692,
+ "start": 6702.48,
+ "end": 6702.7,
+ "text": "other"
+ },
+ {
+ "id": 13693,
+ "start": 6702.7,
+ "end": 6703,
+ "text": "accounts."
+ },
+ {
+ "id": 13694,
+ "start": 6703,
+ "end": 6703.42,
+ "text": "A"
+ },
+ {
+ "id": 13695,
+ "start": 6703.42,
+ "end": 6703.82,
+ "text": "close"
+ },
+ {
+ "id": 13696,
+ "start": 6703.82,
+ "end": 6704.06,
+ "text": "because"
+ },
+ {
+ "id": 13697,
+ "start": 6704.06,
+ "end": 6704.22,
+ "text": "they"
+ },
+ {
+ "id": 13698,
+ "start": 6704.22,
+ "end": 6704.36,
+ "text": "just"
+ },
+ {
+ "id": 13699,
+ "start": 6704.36,
+ "end": 6704.54,
+ "text": "have"
+ },
+ {
+ "id": 13700,
+ "start": 6704.54,
+ "end": 6704.6,
+ "text": "a"
+ },
+ {
+ "id": 13701,
+ "start": 6704.6,
+ "end": 6704.8,
+ "text": "few"
+ },
+ {
+ "id": 13702,
+ "start": 6704.8,
+ "end": 6705.16,
+ "text": "seconds."
+ },
+ {
+ "id": 13703,
+ "start": 6705.16,
+ "end": 6705.62,
+ "text": "Illinois"
+ },
+ {
+ "id": 13704,
+ "start": 6705.62,
+ "end": 6705.78,
+ "text": "has"
+ },
+ {
+ "id": 13705,
+ "start": 6705.78,
+ "end": 6705.86,
+ "text": "a"
+ },
+ {
+ "id": 13706,
+ "start": 6705.86,
+ "end": 6706.84,
+ "text": "biometric"
+ },
+ {
+ "id": 13707,
+ "start": 6706.84,
+ "end": 6707.52,
+ "text": "information,"
+ },
+ {
+ "id": 13708,
+ "start": 6707.52,
+ "end": 6708.14,
+ "text": "Privacy"
+ },
+ {
+ "id": 13709,
+ "start": 6708.14,
+ "end": 6708.42,
+ "text": "Act."
+ },
+ {
+ "id": 13710,
+ "start": 6708.42,
+ "end": 6709.28,
+ "text": "Our"
+ },
+ {
+ "id": 13711,
+ "start": 6709.28,
+ "end": 6709.6,
+ "text": "state"
+ },
+ {
+ "id": 13712,
+ "start": 6709.6,
+ "end": 6710.24,
+ "text": "does,"
+ },
+ {
+ "id": 13713,
+ "start": 6710.24,
+ "end": 6710.8,
+ "text": "which"
+ },
+ {
+ "id": 13714,
+ "start": 6710.8,
+ "end": 6710.94,
+ "text": "is"
+ },
+ {
+ "id": 13715,
+ "start": 6710.94,
+ "end": 6711.3,
+ "text": "to"
+ },
+ {
+ "id": 13716,
+ "start": 6711.3,
+ "end": 6711.8,
+ "text": "regulate"
+ },
+ {
+ "id": 13717,
+ "start": 6711.8,
+ "end": 6712.48,
+ "text": "the"
+ },
+ {
+ "id": 13718,
+ "start": 6712.48,
+ "end": 6712.96,
+ "text": "commercial"
+ },
+ {
+ "id": 13719,
+ "start": 6712.96,
+ "end": 6713.18,
+ "text": "use"
+ },
+ {
+ "id": 13720,
+ "start": 6713.18,
+ "end": 6713.3,
+ "text": "of"
+ },
+ {
+ "id": 13721,
+ "start": 6713.3,
+ "end": 6713.8,
+ "text": "facial,"
+ },
+ {
+ "id": 13722,
+ "start": 6713.8,
+ "end": 6714.2,
+ "text": "voice"
+ },
+ {
+ "id": 13723,
+ "start": 6714.2,
+ "end": 6714.68,
+ "text": "finger"
+ },
+ {
+ "id": 13724,
+ "start": 6714.68,
+ "end": 6714.82,
+ "text": "and"
+ },
+ {
+ "id": 13725,
+ "start": 6714.82,
+ "end": 6715.22,
+ "text": "Iris"
+ },
+ {
+ "id": 13726,
+ "start": 6715.22,
+ "end": 6715.64,
+ "text": "scans"
+ },
+ {
+ "id": 13727,
+ "start": 6715.64,
+ "end": 6715.78,
+ "text": "and"
+ },
+ {
+ "id": 13728,
+ "start": 6715.78,
+ "end": 6715.9,
+ "text": "the"
+ },
+ {
+ "id": 13729,
+ "start": 6715.9,
+ "end": 6716.16,
+ "text": "like"
+ },
+ {
+ "id": 13730,
+ "start": 6716.16,
+ "end": 6717.04,
+ "text": "we're"
+ },
+ {
+ "id": 13731,
+ "start": 6717.04,
+ "end": 6717.22,
+ "text": "now"
+ },
+ {
+ "id": 13732,
+ "start": 6717.22,
+ "end": 6717.34,
+ "text": "in"
+ },
+ {
+ "id": 13733,
+ "start": 6717.34,
+ "end": 6717.4,
+ "text": "a"
+ },
+ {
+ "id": 13734,
+ "start": 6717.4,
+ "end": 6717.8,
+ "text": "fulsome"
+ },
+ {
+ "id": 13735,
+ "start": 6717.8,
+ "end": 6718.1,
+ "text": "debate"
+ },
+ {
+ "id": 13736,
+ "start": 6718.1,
+ "end": 6718.24,
+ "text": "on"
+ },
+ {
+ "id": 13737,
+ "start": 6718.24,
+ "end": 6718.48,
+ "text": "that"
+ },
+ {
+ "id": 13738,
+ "start": 6718.48,
+ "end": 6718.66,
+ "text": "and"
+ },
+ {
+ "id": 13739,
+ "start": 6718.66,
+ "end": 6718.8,
+ "text": "I'm"
+ },
+ {
+ "id": 13740,
+ "start": 6718.8,
+ "end": 6719.16,
+ "text": "afraid."
+ },
+ {
+ "id": 13741,
+ "start": 6719.16,
+ "end": 6720.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 13742,
+ "start": 6720.12,
+ "end": 6720.44,
+ "text": "is"
+ },
+ {
+ "id": 13743,
+ "start": 6720.44,
+ "end": 6720.8,
+ "text": "the"
+ },
+ {
+ "id": 13744,
+ "start": 6720.8,
+ "end": 6721.22,
+ "text": "position"
+ },
+ {
+ "id": 13745,
+ "start": 6721.22,
+ "end": 6721.5,
+ "text": "trying"
+ },
+ {
+ "id": 13746,
+ "start": 6721.5,
+ "end": 6721.6,
+ "text": "to"
+ },
+ {
+ "id": 13747,
+ "start": 6721.6,
+ "end": 6721.86,
+ "text": "carve"
+ },
+ {
+ "id": 13748,
+ "start": 6721.86,
+ "end": 6722.02,
+ "text": "out"
+ },
+ {
+ "id": 13749,
+ "start": 6722.02,
+ "end": 6722.64,
+ "text": "exceptions"
+ },
+ {
+ "id": 13750,
+ "start": 6722.64,
+ "end": 6722.82,
+ "text": "to"
+ },
+ {
+ "id": 13751,
+ "start": 6722.82,
+ "end": 6723.06,
+ "text": "that."
+ },
+ {
+ "id": 13752,
+ "start": 6723.06,
+ "end": 6723.64,
+ "text": "I"
+ },
+ {
+ "id": 13753,
+ "start": 6723.64,
+ "end": 6723.82,
+ "text": "hope"
+ },
+ {
+ "id": 13754,
+ "start": 6723.82,
+ "end": 6724.04,
+ "text": "you'll"
+ },
+ {
+ "id": 13755,
+ "start": 6724.04,
+ "end": 6724.28,
+ "text": "fill"
+ },
+ {
+ "id": 13756,
+ "start": 6724.28,
+ "end": 6724.38,
+ "text": "me"
+ },
+ {
+ "id": 13757,
+ "start": 6724.38,
+ "end": 6724.56,
+ "text": "in"
+ },
+ {
+ "id": 13758,
+ "start": 6724.56,
+ "end": 6724.74,
+ "text": "on"
+ },
+ {
+ "id": 13759,
+ "start": 6724.74,
+ "end": 6724.92,
+ "text": "how"
+ },
+ {
+ "id": 13760,
+ "start": 6724.92,
+ "end": 6725.08,
+ "text": "that"
+ },
+ {
+ "id": 13761,
+ "start": 6725.08,
+ "end": 6725.22,
+ "text": "is"
+ },
+ {
+ "id": 13762,
+ "start": 6725.22,
+ "end": 6725.76,
+ "text": "consistent"
+ },
+ {
+ "id": 13763,
+ "start": 6725.76,
+ "end": 6725.92,
+ "text": "with"
+ },
+ {
+ "id": 13764,
+ "start": 6725.92,
+ "end": 6726.44,
+ "text": "protecting"
+ },
+ {
+ "id": 13765,
+ "start": 6726.44,
+ "end": 6727.34,
+ "text": "privacy."
+ },
+ {
+ "id": 13766,
+ "start": 6727.34,
+ "end": 6728.3,
+ "text": "Thank"
+ },
+ {
+ "id": 13767,
+ "start": 6728.3,
+ "end": 6728.48,
+ "text": "you,"
+ },
+ {
+ "id": 13768,
+ "start": 6728.48,
+ "end": 6728.86,
+ "text": "thank"
+ },
+ {
+ "id": 13769,
+ "start": 6728.86,
+ "end": 6728.96,
+ "text": "you."
+ },
+ {
+ "id": 13770,
+ "start": 6728.96,
+ "end": 6729.2,
+ "text": "Senator"
+ },
+ {
+ "id": 13771,
+ "start": 6729.2,
+ "end": 6729.5,
+ "text": "Durbin"
+ },
+ {
+ "id": 13772,
+ "start": 6729.5,
+ "end": 6729.7,
+ "text": "center"
+ },
+ {
+ "id": 13773,
+ "start": 6729.7,
+ "end": 6730.64,
+ "text": "corny."
+ },
+ {
+ "id": 13774,
+ "start": 6730.64,
+ "end": 6731.44,
+ "text": "Thank"
+ },
+ {
+ "id": 13775,
+ "start": 6731.44,
+ "end": 6731.56,
+ "text": "you,"
+ },
+ {
+ "id": 13776,
+ "start": 6731.56,
+ "end": 6731.82,
+ "text": "Mr"
+ },
+ {
+ "id": 13777,
+ "start": 6731.82,
+ "end": 6732.3,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 13778,
+ "start": 6732.3,
+ "end": 6732.52,
+ "text": "for"
+ },
+ {
+ "id": 13779,
+ "start": 6732.52,
+ "end": 6732.76,
+ "text": "being"
+ },
+ {
+ "id": 13780,
+ "start": 6732.76,
+ "end": 6733.96,
+ "text": "here."
+ },
+ {
+ "id": 13781,
+ "start": 6733.96,
+ "end": 6734.92,
+ "text": "Up"
+ },
+ {
+ "id": 13782,
+ "start": 6734.92,
+ "end": 6735.22,
+ "text": "until"
+ },
+ {
+ "id": 13783,
+ "start": 6735.22,
+ "end": 6737.6,
+ "text": "2,014"
+ },
+ {
+ "id": 13784,
+ "start": 6737.6,
+ "end": 6738.72,
+ "text": "the"
+ },
+ {
+ "id": 13785,
+ "start": 6738.72,
+ "end": 6739.24,
+ "text": "mantra"
+ },
+ {
+ "id": 13786,
+ "start": 6739.24,
+ "end": 6739.42,
+ "text": "or"
+ },
+ {
+ "id": 13787,
+ "start": 6739.42,
+ "end": 6739.92,
+ "text": "motto."
+ },
+ {
+ "id": 13788,
+ "start": 6739.92,
+ "end": 6740.58,
+ "text": "A"
+ },
+ {
+ "id": 13789,
+ "start": 6740.58,
+ "end": 6741.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 13790,
+ "start": 6741.1,
+ "end": 6741.32,
+ "text": "was"
+ },
+ {
+ "id": 13791,
+ "start": 6741.32,
+ "end": 6741.7,
+ "text": "move"
+ },
+ {
+ "id": 13792,
+ "start": 6741.7,
+ "end": 6742.14,
+ "text": "fast"
+ },
+ {
+ "id": 13793,
+ "start": 6742.14,
+ "end": 6742.32,
+ "text": "and"
+ },
+ {
+ "id": 13794,
+ "start": 6742.32,
+ "end": 6742.64,
+ "text": "break"
+ },
+ {
+ "id": 13795,
+ "start": 6742.64,
+ "end": 6743,
+ "text": "things,"
+ },
+ {
+ "id": 13796,
+ "start": 6743,
+ "end": 6743.78,
+ "text": "is"
+ },
+ {
+ "id": 13797,
+ "start": 6743.78,
+ "end": 6743.96,
+ "text": "that"
+ },
+ {
+ "id": 13798,
+ "start": 6743.96,
+ "end": 6744.86,
+ "text": "correct?"
+ },
+ {
+ "id": 13799,
+ "start": 6744.86,
+ "end": 6744.9,
+ "text": "I"
+ },
+ {
+ "id": 13800,
+ "start": 6744.9,
+ "end": 6745.76,
+ "text": "don't"
+ },
+ {
+ "id": 13801,
+ "start": 6745.76,
+ "end": 6745.88,
+ "text": "know"
+ },
+ {
+ "id": 13802,
+ "start": 6745.88,
+ "end": 6746.02,
+ "text": "when"
+ },
+ {
+ "id": 13803,
+ "start": 6746.02,
+ "end": 6746.14,
+ "text": "we"
+ },
+ {
+ "id": 13804,
+ "start": 6746.14,
+ "end": 6746.5,
+ "text": "changed"
+ },
+ {
+ "id": 13805,
+ "start": 6746.5,
+ "end": 6746.66,
+ "text": "it,"
+ },
+ {
+ "id": 13806,
+ "start": 6746.66,
+ "end": 6747.46,
+ "text": "but"
+ },
+ {
+ "id": 13807,
+ "start": 6747.46,
+ "end": 6747.62,
+ "text": "the"
+ },
+ {
+ "id": 13808,
+ "start": 6747.62,
+ "end": 6748,
+ "text": "mantra"
+ },
+ {
+ "id": 13809,
+ "start": 6748,
+ "end": 6748.14,
+ "text": "is"
+ },
+ {
+ "id": 13810,
+ "start": 6748.14,
+ "end": 6748.6,
+ "text": "currently"
+ },
+ {
+ "id": 13811,
+ "start": 6748.6,
+ "end": 6748.92,
+ "text": "move"
+ },
+ {
+ "id": 13812,
+ "start": 6748.92,
+ "end": 6749.28,
+ "text": "fast"
+ },
+ {
+ "id": 13813,
+ "start": 6749.28,
+ "end": 6749.46,
+ "text": "with"
+ },
+ {
+ "id": 13814,
+ "start": 6749.46,
+ "end": 6749.9,
+ "text": "stable"
+ },
+ {
+ "id": 13815,
+ "start": 6749.9,
+ "end": 6750.66,
+ "text": "infrastructure,"
+ },
+ {
+ "id": 13816,
+ "start": 6750.66,
+ "end": 6751.1,
+ "text": "which"
+ },
+ {
+ "id": 13817,
+ "start": 6751.1,
+ "end": 6751.26,
+ "text": "is"
+ },
+ {
+ "id": 13818,
+ "start": 6751.26,
+ "end": 6751.42,
+ "text": "a"
+ },
+ {
+ "id": 13819,
+ "start": 6751.42,
+ "end": 6751.76,
+ "text": "much"
+ },
+ {
+ "id": 13820,
+ "start": 6751.76,
+ "end": 6752.06,
+ "text": "less"
+ },
+ {
+ "id": 13821,
+ "start": 6752.06,
+ "end": 6752.6,
+ "text": "sexy."
+ },
+ {
+ "id": 13822,
+ "start": 6752.6,
+ "end": 6753.04,
+ "text": "Mantra"
+ },
+ {
+ "id": 13823,
+ "start": 6753.04,
+ "end": 6753.54,
+ "text": "sounds"
+ },
+ {
+ "id": 13824,
+ "start": 6753.54,
+ "end": 6753.82,
+ "text": "much"
+ },
+ {
+ "id": 13825,
+ "start": 6753.82,
+ "end": 6754.08,
+ "text": "more"
+ },
+ {
+ "id": 13826,
+ "start": 6754.08,
+ "end": 6754.48,
+ "text": "boring."
+ },
+ {
+ "id": 13827,
+ "start": 6754.48,
+ "end": 6754.66,
+ "text": "But"
+ },
+ {
+ "id": 13828,
+ "start": 6754.66,
+ "end": 6755.14,
+ "text": "my"
+ },
+ {
+ "id": 13829,
+ "start": 6755.14,
+ "end": 6755.56,
+ "text": "question"
+ },
+ {
+ "id": 13830,
+ "start": 6755.56,
+ "end": 6755.76,
+ "text": "is"
+ },
+ {
+ "id": 13831,
+ "start": 6755.76,
+ "end": 6756.38,
+ "text": "during"
+ },
+ {
+ "id": 13832,
+ "start": 6756.38,
+ "end": 6756.48,
+ "text": "the"
+ },
+ {
+ "id": 13833,
+ "start": 6756.48,
+ "end": 6756.76,
+ "text": "time"
+ },
+ {
+ "id": 13834,
+ "start": 6756.76,
+ "end": 6757.08,
+ "text": "it"
+ },
+ {
+ "id": 13835,
+ "start": 6757.08,
+ "end": 6757.34,
+ "text": "was"
+ },
+ {
+ "id": 13836,
+ "start": 6757.34,
+ "end": 6758.04,
+ "text": "Facebook,"
+ },
+ {
+ "id": 13837,
+ "start": 6758.04,
+ "end": 6759.02,
+ "text": "mantra"
+ },
+ {
+ "id": 13838,
+ "start": 6759.02,
+ "end": 6759.2,
+ "text": "or"
+ },
+ {
+ "id": 13839,
+ "start": 6759.2,
+ "end": 6759.68,
+ "text": "motto"
+ },
+ {
+ "id": 13840,
+ "start": 6759.68,
+ "end": 6759.78,
+ "text": "to"
+ },
+ {
+ "id": 13841,
+ "start": 6759.78,
+ "end": 6760.08,
+ "text": "move"
+ },
+ {
+ "id": 13842,
+ "start": 6760.08,
+ "end": 6760.42,
+ "text": "fast"
+ },
+ {
+ "id": 13843,
+ "start": 6760.42,
+ "end": 6760.58,
+ "text": "and"
+ },
+ {
+ "id": 13844,
+ "start": 6760.58,
+ "end": 6760.86,
+ "text": "break"
+ },
+ {
+ "id": 13845,
+ "start": 6760.86,
+ "end": 6761.16,
+ "text": "things."
+ },
+ {
+ "id": 13846,
+ "start": 6761.16,
+ "end": 6761.82,
+ "text": "Do"
+ },
+ {
+ "id": 13847,
+ "start": 6761.82,
+ "end": 6761.96,
+ "text": "you"
+ },
+ {
+ "id": 13848,
+ "start": 6761.96,
+ "end": 6762.16,
+ "text": "think"
+ },
+ {
+ "id": 13849,
+ "start": 6762.16,
+ "end": 6762.42,
+ "text": "some"
+ },
+ {
+ "id": 13850,
+ "start": 6762.42,
+ "end": 6762.5,
+ "text": "of"
+ },
+ {
+ "id": 13851,
+ "start": 6762.5,
+ "end": 6763.54,
+ "text": "the"
+ },
+ {
+ "id": 13852,
+ "start": 6763.54,
+ "end": 6765.58,
+ "text": "misjudgments"
+ },
+ {
+ "id": 13853,
+ "start": 6765.58,
+ "end": 6765.98,
+ "text": "perhaps"
+ },
+ {
+ "id": 13854,
+ "start": 6765.98,
+ "end": 6766.66,
+ "text": "mistakes"
+ },
+ {
+ "id": 13855,
+ "start": 6766.66,
+ "end": 6766.92,
+ "text": "that"
+ },
+ {
+ "id": 13856,
+ "start": 6766.92,
+ "end": 6767.9,
+ "text": "you've"
+ },
+ {
+ "id": 13857,
+ "start": 6767.9,
+ "end": 6768.98,
+ "text": "admitted"
+ },
+ {
+ "id": 13858,
+ "start": 6768.98,
+ "end": 6769.14,
+ "text": "to"
+ },
+ {
+ "id": 13859,
+ "start": 6769.14,
+ "end": 6769.54,
+ "text": "here"
+ },
+ {
+ "id": 13860,
+ "start": 6769.54,
+ "end": 6770.14,
+ "text": "where"
+ },
+ {
+ "id": 13861,
+ "start": 6770.14,
+ "end": 6770.3,
+ "text": "as"
+ },
+ {
+ "id": 13862,
+ "start": 6770.3,
+ "end": 6770.36,
+ "text": "a"
+ },
+ {
+ "id": 13863,
+ "start": 6770.36,
+ "end": 6770.72,
+ "text": "result"
+ },
+ {
+ "id": 13864,
+ "start": 6770.72,
+ "end": 6770.84,
+ "text": "of"
+ },
+ {
+ "id": 13865,
+ "start": 6770.84,
+ "end": 6771.04,
+ "text": "that"
+ },
+ {
+ "id": 13866,
+ "start": 6771.04,
+ "end": 6771.72,
+ "text": "culture"
+ },
+ {
+ "id": 13867,
+ "start": 6771.72,
+ "end": 6771.9,
+ "text": "or"
+ },
+ {
+ "id": 13868,
+ "start": 6771.9,
+ "end": 6772.16,
+ "text": "that"
+ },
+ {
+ "id": 13869,
+ "start": 6772.16,
+ "end": 6772.76,
+ "text": "attitude,"
+ },
+ {
+ "id": 13870,
+ "start": 6772.76,
+ "end": 6773.3,
+ "text": "particularly"
+ },
+ {
+ "id": 13871,
+ "start": 6773.3,
+ "end": 6773.48,
+ "text": "as"
+ },
+ {
+ "id": 13872,
+ "start": 6773.48,
+ "end": 6773.9,
+ "text": "regards"
+ },
+ {
+ "id": 13873,
+ "start": 6773.9,
+ "end": 6774.24,
+ "text": "to"
+ },
+ {
+ "id": 13874,
+ "start": 6774.24,
+ "end": 6774.94,
+ "text": "personal"
+ },
+ {
+ "id": 13875,
+ "start": 6774.94,
+ "end": 6775.48,
+ "text": "privacy"
+ },
+ {
+ "id": 13876,
+ "start": 6775.48,
+ "end": 6775.66,
+ "text": "of"
+ },
+ {
+ "id": 13877,
+ "start": 6775.66,
+ "end": 6776.28,
+ "text": "information"
+ },
+ {
+ "id": 13878,
+ "start": 6776.28,
+ "end": 6776.38,
+ "text": "of"
+ },
+ {
+ "id": 13879,
+ "start": 6776.38,
+ "end": 6776.54,
+ "text": "your"
+ },
+ {
+ "id": 13880,
+ "start": 6776.54,
+ "end": 6778.28,
+ "text": "subscribers."
+ },
+ {
+ "id": 13881,
+ "start": 6778.28,
+ "end": 6779.3,
+ "text": "Senator."
+ },
+ {
+ "id": 13882,
+ "start": 6779.3,
+ "end": 6780.14,
+ "text": "I"
+ },
+ {
+ "id": 13883,
+ "start": 6780.14,
+ "end": 6780.32,
+ "text": "do"
+ },
+ {
+ "id": 13884,
+ "start": 6780.32,
+ "end": 6780.52,
+ "text": "think"
+ },
+ {
+ "id": 13885,
+ "start": 6780.52,
+ "end": 6780.66,
+ "text": "that"
+ },
+ {
+ "id": 13886,
+ "start": 6780.66,
+ "end": 6780.76,
+ "text": "we"
+ },
+ {
+ "id": 13887,
+ "start": 6780.76,
+ "end": 6781.04,
+ "text": "made"
+ },
+ {
+ "id": 13888,
+ "start": 6781.04,
+ "end": 6781.56,
+ "text": "mistakes"
+ },
+ {
+ "id": 13889,
+ "start": 6781.56,
+ "end": 6782,
+ "text": "because"
+ },
+ {
+ "id": 13890,
+ "start": 6782,
+ "end": 6782.14,
+ "text": "of"
+ },
+ {
+ "id": 13891,
+ "start": 6782.14,
+ "end": 6782.42,
+ "text": "that"
+ },
+ {
+ "id": 13892,
+ "start": 6782.42,
+ "end": 6784.48,
+ "text": "but"
+ },
+ {
+ "id": 13893,
+ "start": 6784.48,
+ "end": 6785.46,
+ "text": "the"
+ },
+ {
+ "id": 13894,
+ "start": 6785.46,
+ "end": 6786.02,
+ "text": "broadest"
+ },
+ {
+ "id": 13895,
+ "start": 6786.02,
+ "end": 6786.52,
+ "text": "mistakes"
+ },
+ {
+ "id": 13896,
+ "start": 6786.52,
+ "end": 6786.72,
+ "text": "that"
+ },
+ {
+ "id": 13897,
+ "start": 6786.72,
+ "end": 6786.8,
+ "text": "we"
+ },
+ {
+ "id": 13898,
+ "start": 6786.8,
+ "end": 6787.04,
+ "text": "made"
+ },
+ {
+ "id": 13899,
+ "start": 6787.04,
+ "end": 6787.28,
+ "text": "here"
+ },
+ {
+ "id": 13900,
+ "start": 6787.28,
+ "end": 6788.06,
+ "text": "are"
+ },
+ {
+ "id": 13901,
+ "start": 6788.06,
+ "end": 6788.28,
+ "text": "not"
+ },
+ {
+ "id": 13902,
+ "start": 6788.28,
+ "end": 6788.64,
+ "text": "taking"
+ },
+ {
+ "id": 13903,
+ "start": 6788.64,
+ "end": 6788.72,
+ "text": "a"
+ },
+ {
+ "id": 13904,
+ "start": 6788.72,
+ "end": 6788.96,
+ "text": "broad"
+ },
+ {
+ "id": 13905,
+ "start": 6788.96,
+ "end": 6789.18,
+ "text": "enough"
+ },
+ {
+ "id": 13906,
+ "start": 6789.18,
+ "end": 6789.4,
+ "text": "view"
+ },
+ {
+ "id": 13907,
+ "start": 6789.4,
+ "end": 6789.5,
+ "text": "of"
+ },
+ {
+ "id": 13908,
+ "start": 6789.5,
+ "end": 6789.64,
+ "text": "our"
+ },
+ {
+ "id": 13909,
+ "start": 6789.64,
+ "end": 6790.48,
+ "text": "responsibility."
+ },
+ {
+ "id": 13910,
+ "start": 6790.48,
+ "end": 6791.22,
+ "text": "And"
+ },
+ {
+ "id": 13911,
+ "start": 6791.22,
+ "end": 6791.8,
+ "text": "that"
+ },
+ {
+ "id": 13912,
+ "start": 6791.8,
+ "end": 6792.08,
+ "text": "wasn't"
+ },
+ {
+ "id": 13913,
+ "start": 6792.08,
+ "end": 6792.16,
+ "text": "a"
+ },
+ {
+ "id": 13914,
+ "start": 6792.16,
+ "end": 6792.46,
+ "text": "matter."
+ },
+ {
+ "id": 13915,
+ "start": 6792.46,
+ "end": 6793.02,
+ "text": "The"
+ },
+ {
+ "id": 13916,
+ "start": 6793.02,
+ "end": 6793.22,
+ "text": "move"
+ },
+ {
+ "id": 13917,
+ "start": 6793.22,
+ "end": 6794.58,
+ "text": "fast"
+ },
+ {
+ "id": 13918,
+ "start": 6794.58,
+ "end": 6795.56,
+ "text": "cultural"
+ },
+ {
+ "id": 13919,
+ "start": 6795.56,
+ "end": 6795.94,
+ "text": "value"
+ },
+ {
+ "id": 13920,
+ "start": 6795.94,
+ "end": 6796.08,
+ "text": "is"
+ },
+ {
+ "id": 13921,
+ "start": 6796.08,
+ "end": 6797,
+ "text": "more"
+ },
+ {
+ "id": 13922,
+ "start": 6797,
+ "end": 6797.98,
+ "text": "tactical"
+ },
+ {
+ "id": 13923,
+ "start": 6797.98,
+ "end": 6798.3,
+ "text": "around"
+ },
+ {
+ "id": 13924,
+ "start": 6798.3,
+ "end": 6798.56,
+ "text": "whether"
+ },
+ {
+ "id": 13925,
+ "start": 6798.56,
+ "end": 6799.06,
+ "text": "engineers"
+ },
+ {
+ "id": 13926,
+ "start": 6799.06,
+ "end": 6799.28,
+ "text": "can"
+ },
+ {
+ "id": 13927,
+ "start": 6799.28,
+ "end": 6799.46,
+ "text": "ship"
+ },
+ {
+ "id": 13928,
+ "start": 6799.46,
+ "end": 6799.88,
+ "text": "things"
+ },
+ {
+ "id": 13929,
+ "start": 6799.88,
+ "end": 6800.88,
+ "text": "and"
+ },
+ {
+ "id": 13930,
+ "start": 6800.88,
+ "end": 6801.48,
+ "text": "different"
+ },
+ {
+ "id": 13931,
+ "start": 6801.48,
+ "end": 6801.62,
+ "text": "ways"
+ },
+ {
+ "id": 13932,
+ "start": 6801.62,
+ "end": 6801.76,
+ "text": "that"
+ },
+ {
+ "id": 13933,
+ "start": 6801.76,
+ "end": 6801.84,
+ "text": "we"
+ },
+ {
+ "id": 13934,
+ "start": 6801.84,
+ "end": 6802.26,
+ "text": "operate."
+ },
+ {
+ "id": 13935,
+ "start": 6802.26,
+ "end": 6802.88,
+ "text": "But"
+ },
+ {
+ "id": 13936,
+ "start": 6802.88,
+ "end": 6802.94,
+ "text": "I"
+ },
+ {
+ "id": 13937,
+ "start": 6802.94,
+ "end": 6803.12,
+ "text": "think"
+ },
+ {
+ "id": 13938,
+ "start": 6803.12,
+ "end": 6803.3,
+ "text": "the"
+ },
+ {
+ "id": 13939,
+ "start": 6803.3,
+ "end": 6803.54,
+ "text": "big"
+ },
+ {
+ "id": 13940,
+ "start": 6803.54,
+ "end": 6804.1,
+ "text": "mistake"
+ },
+ {
+ "id": 13941,
+ "start": 6804.1,
+ "end": 6804.28,
+ "text": "that"
+ },
+ {
+ "id": 13942,
+ "start": 6804.28,
+ "end": 6804.54,
+ "text": "we've"
+ },
+ {
+ "id": 13943,
+ "start": 6804.54,
+ "end": 6804.78,
+ "text": "made"
+ },
+ {
+ "id": 13944,
+ "start": 6804.78,
+ "end": 6805.14,
+ "text": "looking"
+ },
+ {
+ "id": 13945,
+ "start": 6805.14,
+ "end": 6805.34,
+ "text": "back"
+ },
+ {
+ "id": 13946,
+ "start": 6805.34,
+ "end": 6805.46,
+ "text": "on"
+ },
+ {
+ "id": 13947,
+ "start": 6805.46,
+ "end": 6806.31,
+ "text": "this"
+ },
+ {
+ "id": 13948,
+ "start": 6806.31,
+ "end": 6806.93,
+ "text": "viewing"
+ },
+ {
+ "id": 13949,
+ "start": 6806.93,
+ "end": 6807.11,
+ "text": "our"
+ },
+ {
+ "id": 13950,
+ "start": 6807.11,
+ "end": 6807.89,
+ "text": "responsibility"
+ },
+ {
+ "id": 13951,
+ "start": 6807.89,
+ "end": 6808.17,
+ "text": "as"
+ },
+ {
+ "id": 13952,
+ "start": 6808.17,
+ "end": 6808.45,
+ "text": "just"
+ },
+ {
+ "id": 13953,
+ "start": 6808.45,
+ "end": 6808.87,
+ "text": "building"
+ },
+ {
+ "id": 13954,
+ "start": 6808.87,
+ "end": 6809.27,
+ "text": "tools"
+ },
+ {
+ "id": 13955,
+ "start": 6809.27,
+ "end": 6810.21,
+ "text": "rather"
+ },
+ {
+ "id": 13956,
+ "start": 6810.21,
+ "end": 6810.47,
+ "text": "than"
+ },
+ {
+ "id": 13957,
+ "start": 6810.47,
+ "end": 6811.21,
+ "text": "viewing,"
+ },
+ {
+ "id": 13958,
+ "start": 6811.21,
+ "end": 6811.37,
+ "text": "our"
+ },
+ {
+ "id": 13959,
+ "start": 6811.37,
+ "end": 6811.57,
+ "text": "whole"
+ },
+ {
+ "id": 13960,
+ "start": 6811.57,
+ "end": 6812.25,
+ "text": "responsibility"
+ },
+ {
+ "id": 13961,
+ "start": 6812.25,
+ "end": 6812.37,
+ "text": "is"
+ },
+ {
+ "id": 13962,
+ "start": 6812.37,
+ "end": 6812.73,
+ "text": "making"
+ },
+ {
+ "id": 13963,
+ "start": 6812.73,
+ "end": 6812.97,
+ "text": "sure"
+ },
+ {
+ "id": 13964,
+ "start": 6812.97,
+ "end": 6813.11,
+ "text": "that"
+ },
+ {
+ "id": 13965,
+ "start": 6813.11,
+ "end": 6813.33,
+ "text": "those"
+ },
+ {
+ "id": 13966,
+ "start": 6813.33,
+ "end": 6813.65,
+ "text": "tools"
+ },
+ {
+ "id": 13967,
+ "start": 6813.65,
+ "end": 6813.97,
+ "text": "are"
+ },
+ {
+ "id": 13968,
+ "start": 6813.97,
+ "end": 6814.25,
+ "text": "used"
+ },
+ {
+ "id": 13969,
+ "start": 6814.25,
+ "end": 6814.43,
+ "text": "for"
+ },
+ {
+ "id": 13970,
+ "start": 6814.43,
+ "end": 6815.03,
+ "text": "good."
+ },
+ {
+ "id": 13971,
+ "start": 6815.03,
+ "end": 6816.01,
+ "text": "And"
+ },
+ {
+ "id": 13972,
+ "start": 6816.01,
+ "end": 6816.13,
+ "text": "I"
+ },
+ {
+ "id": 13973,
+ "start": 6816.13,
+ "end": 6816.67,
+ "text": "appreciate"
+ },
+ {
+ "id": 13974,
+ "start": 6816.67,
+ "end": 6816.91,
+ "text": "that."
+ },
+ {
+ "id": 13975,
+ "start": 6816.91,
+ "end": 6818.26,
+ "text": "Because"
+ },
+ {
+ "id": 13976,
+ "start": 6818.26,
+ "end": 6819.2,
+ "text": "previously"
+ },
+ {
+ "id": 13977,
+ "start": 6819.2,
+ "end": 6819.74,
+ "text": "or"
+ },
+ {
+ "id": 13978,
+ "start": 6819.74,
+ "end": 6820.72,
+ "text": "earlier"
+ },
+ {
+ "id": 13979,
+ "start": 6820.72,
+ "end": 6821.56,
+ "text": "in"
+ },
+ {
+ "id": 13980,
+ "start": 6821.56,
+ "end": 6821.72,
+ "text": "the"
+ },
+ {
+ "id": 13981,
+ "start": 6821.72,
+ "end": 6822.1,
+ "text": "past,"
+ },
+ {
+ "id": 13982,
+ "start": 6822.1,
+ "end": 6823.08,
+ "text": "we've"
+ },
+ {
+ "id": 13983,
+ "start": 6823.08,
+ "end": 6823.26,
+ "text": "been"
+ },
+ {
+ "id": 13984,
+ "start": 6823.26,
+ "end": 6823.52,
+ "text": "told"
+ },
+ {
+ "id": 13985,
+ "start": 6823.52,
+ "end": 6824.34,
+ "text": "that"
+ },
+ {
+ "id": 13986,
+ "start": 6824.34,
+ "end": 6825.34,
+ "text": "platforms"
+ },
+ {
+ "id": 13987,
+ "start": 6825.34,
+ "end": 6826.24,
+ "text": "like"
+ },
+ {
+ "id": 13988,
+ "start": 6826.24,
+ "end": 6827.16,
+ "text": "Facebook,"
+ },
+ {
+ "id": 13989,
+ "start": 6827.16,
+ "end": 6827.96,
+ "text": "Twitter,"
+ },
+ {
+ "id": 13990,
+ "start": 6827.96,
+ "end": 6828.8,
+ "text": "Instagram,"
+ },
+ {
+ "id": 13991,
+ "start": 6828.8,
+ "end": 6829,
+ "text": "the"
+ },
+ {
+ "id": 13992,
+ "start": 6829,
+ "end": 6829.2,
+ "text": "like"
+ },
+ {
+ "id": 13993,
+ "start": 6829.2,
+ "end": 6829.36,
+ "text": "or"
+ },
+ {
+ "id": 13994,
+ "start": 6829.36,
+ "end": 6829.84,
+ "text": "neutral"
+ },
+ {
+ "id": 13995,
+ "start": 6829.84,
+ "end": 6830.52,
+ "text": "platforms."
+ },
+ {
+ "id": 13996,
+ "start": 6830.52,
+ "end": 6831.2,
+ "text": "And"
+ },
+ {
+ "id": 13997,
+ "start": 6831.2,
+ "end": 6831.36,
+ "text": "the"
+ },
+ {
+ "id": 13998,
+ "start": 6831.36,
+ "end": 6831.7,
+ "text": "people"
+ },
+ {
+ "id": 13999,
+ "start": 6831.7,
+ "end": 6831.94,
+ "text": "who"
+ },
+ {
+ "id": 14000,
+ "start": 6831.94,
+ "end": 6832.3,
+ "text": "own"
+ },
+ {
+ "id": 14001,
+ "start": 6832.3,
+ "end": 6832.46,
+ "text": "and"
+ },
+ {
+ "id": 14002,
+ "start": 6832.46,
+ "end": 6832.72,
+ "text": "run"
+ },
+ {
+ "id": 14003,
+ "start": 6832.72,
+ "end": 6833.54,
+ "text": "those"
+ },
+ {
+ "id": 14004,
+ "start": 6833.54,
+ "end": 6834.24,
+ "text": "for"
+ },
+ {
+ "id": 14005,
+ "start": 6834.24,
+ "end": 6834.64,
+ "text": "profit"
+ },
+ {
+ "id": 14006,
+ "start": 6834.64,
+ "end": 6834.84,
+ "text": "and"
+ },
+ {
+ "id": 14007,
+ "start": 6834.84,
+ "end": 6835,
+ "text": "I'm"
+ },
+ {
+ "id": 14008,
+ "start": 6835,
+ "end": 6835.2,
+ "text": "not"
+ },
+ {
+ "id": 14009,
+ "start": 6835.2,
+ "end": 6835.88,
+ "text": "criticizing"
+ },
+ {
+ "id": 14010,
+ "start": 6835.88,
+ "end": 6836.72,
+ "text": "doing"
+ },
+ {
+ "id": 14011,
+ "start": 6836.72,
+ "end": 6837.04,
+ "text": "something"
+ },
+ {
+ "id": 14012,
+ "start": 6837.04,
+ "end": 6837.18,
+ "text": "for"
+ },
+ {
+ "id": 14013,
+ "start": 6837.18,
+ "end": 6837.56,
+ "text": "profit"
+ },
+ {
+ "id": 14014,
+ "start": 6837.56,
+ "end": 6837.66,
+ "text": "in"
+ },
+ {
+ "id": 14015,
+ "start": 6837.66,
+ "end": 6837.86,
+ "text": "this"
+ },
+ {
+ "id": 14016,
+ "start": 6837.86,
+ "end": 6839.12,
+ "text": "country."
+ },
+ {
+ "id": 14017,
+ "start": 6839.12,
+ "end": 6840.08,
+ "text": "But"
+ },
+ {
+ "id": 14018,
+ "start": 6840.08,
+ "end": 6840.24,
+ "text": "they"
+ },
+ {
+ "id": 14019,
+ "start": 6840.24,
+ "end": 6840.76,
+ "text": "bore"
+ },
+ {
+ "id": 14020,
+ "start": 6840.76,
+ "end": 6840.92,
+ "text": "no"
+ },
+ {
+ "id": 14021,
+ "start": 6840.92,
+ "end": 6841.84,
+ "text": "responsibility"
+ },
+ {
+ "id": 14022,
+ "start": 6841.84,
+ "end": 6842,
+ "text": "for"
+ },
+ {
+ "id": 14023,
+ "start": 6842,
+ "end": 6842.14,
+ "text": "the"
+ },
+ {
+ "id": 14024,
+ "start": 6842.14,
+ "end": 6842.72,
+ "text": "content."
+ },
+ {
+ "id": 14025,
+ "start": 6842.72,
+ "end": 6843.56,
+ "text": "You"
+ },
+ {
+ "id": 14026,
+ "start": 6843.56,
+ "end": 6845.08,
+ "text": "agree"
+ },
+ {
+ "id": 14027,
+ "start": 6845.08,
+ "end": 6845.86,
+ "text": "that"
+ },
+ {
+ "id": 14028,
+ "start": 6845.86,
+ "end": 6846.38,
+ "text": "Facebook"
+ },
+ {
+ "id": 14029,
+ "start": 6846.38,
+ "end": 6846.78,
+ "text": "and"
+ },
+ {
+ "id": 14030,
+ "start": 6846.78,
+ "end": 6847.46,
+ "text": "other"
+ },
+ {
+ "id": 14031,
+ "start": 6847.46,
+ "end": 6847.9,
+ "text": "social"
+ },
+ {
+ "id": 14032,
+ "start": 6847.9,
+ "end": 6848.22,
+ "text": "media"
+ },
+ {
+ "id": 14033,
+ "start": 6848.22,
+ "end": 6848.8,
+ "text": "platforms"
+ },
+ {
+ "id": 14034,
+ "start": 6848.8,
+ "end": 6848.96,
+ "text": "are"
+ },
+ {
+ "id": 14035,
+ "start": 6848.96,
+ "end": 6849.14,
+ "text": "not"
+ },
+ {
+ "id": 14036,
+ "start": 6849.14,
+ "end": 6849.52,
+ "text": "neutral"
+ },
+ {
+ "id": 14037,
+ "start": 6849.52,
+ "end": 6850.04,
+ "text": "platforms,"
+ },
+ {
+ "id": 14038,
+ "start": 6850.04,
+ "end": 6850.26,
+ "text": "but"
+ },
+ {
+ "id": 14039,
+ "start": 6850.26,
+ "end": 6850.52,
+ "text": "bear"
+ },
+ {
+ "id": 14040,
+ "start": 6850.52,
+ "end": 6850.78,
+ "text": "some"
+ },
+ {
+ "id": 14041,
+ "start": 6850.78,
+ "end": 6851.7,
+ "text": "responsibility"
+ },
+ {
+ "id": 14042,
+ "start": 6851.7,
+ "end": 6852.5,
+ "text": "for"
+ },
+ {
+ "id": 14043,
+ "start": 6852.5,
+ "end": 6852.66,
+ "text": "the"
+ },
+ {
+ "id": 14044,
+ "start": 6852.66,
+ "end": 6853.12,
+ "text": "content."
+ },
+ {
+ "id": 14045,
+ "start": 6853.12,
+ "end": 6854.02,
+ "text": "I"
+ },
+ {
+ "id": 14046,
+ "start": 6854.02,
+ "end": 6854.3,
+ "text": "agree"
+ },
+ {
+ "id": 14047,
+ "start": 6854.3,
+ "end": 6854.42,
+ "text": "that"
+ },
+ {
+ "id": 14048,
+ "start": 6854.42,
+ "end": 6854.62,
+ "text": "we're"
+ },
+ {
+ "id": 14049,
+ "start": 6854.62,
+ "end": 6855.22,
+ "text": "responsible"
+ },
+ {
+ "id": 14050,
+ "start": 6855.22,
+ "end": 6855.38,
+ "text": "for"
+ },
+ {
+ "id": 14051,
+ "start": 6855.38,
+ "end": 6855.52,
+ "text": "the"
+ },
+ {
+ "id": 14052,
+ "start": 6855.52,
+ "end": 6856.62,
+ "text": "content"
+ },
+ {
+ "id": 14053,
+ "start": 6856.62,
+ "end": 6857.5,
+ "text": "and"
+ },
+ {
+ "id": 14054,
+ "start": 6857.5,
+ "end": 6857.56,
+ "text": "I"
+ },
+ {
+ "id": 14055,
+ "start": 6857.56,
+ "end": 6857.74,
+ "text": "think"
+ },
+ {
+ "id": 14056,
+ "start": 6857.74,
+ "end": 6857.86,
+ "text": "that"
+ },
+ {
+ "id": 14057,
+ "start": 6857.86,
+ "end": 6858,
+ "text": "there"
+ },
+ {
+ "id": 14058,
+ "start": 6858,
+ "end": 6858.08,
+ "text": "is"
+ },
+ {
+ "id": 14059,
+ "start": 6858.08,
+ "end": 6858.38,
+ "text": "one"
+ },
+ {
+ "id": 14060,
+ "start": 6858.38,
+ "end": 6858.46,
+ "text": "of"
+ },
+ {
+ "id": 14061,
+ "start": 6858.46,
+ "end": 6858.56,
+ "text": "the"
+ },
+ {
+ "id": 14062,
+ "start": 6858.56,
+ "end": 6858.9,
+ "text": "big"
+ },
+ {
+ "id": 14063,
+ "start": 6858.9,
+ "end": 6860.04,
+ "text": "societal"
+ },
+ {
+ "id": 14064,
+ "start": 6860.04,
+ "end": 6860.5,
+ "text": "questions"
+ },
+ {
+ "id": 14065,
+ "start": 6860.5,
+ "end": 6860.6,
+ "text": "I"
+ },
+ {
+ "id": 14066,
+ "start": 6860.6,
+ "end": 6860.9,
+ "text": "think"
+ },
+ {
+ "id": 14067,
+ "start": 6860.9,
+ "end": 6861.08,
+ "text": "we're"
+ },
+ {
+ "id": 14068,
+ "start": 6861.08,
+ "end": 6861.24,
+ "text": "going"
+ },
+ {
+ "id": 14069,
+ "start": 6861.24,
+ "end": 6861.32,
+ "text": "to"
+ },
+ {
+ "id": 14070,
+ "start": 6861.32,
+ "end": 6861.48,
+ "text": "need"
+ },
+ {
+ "id": 14071,
+ "start": 6861.48,
+ "end": 6861.56,
+ "text": "to"
+ },
+ {
+ "id": 14072,
+ "start": 6861.56,
+ "end": 6861.98,
+ "text": "answer"
+ },
+ {
+ "id": 14073,
+ "start": 6861.98,
+ "end": 6863.24,
+ "text": "is"
+ },
+ {
+ "id": 14074,
+ "start": 6863.24,
+ "end": 6864.22,
+ "text": "the"
+ },
+ {
+ "id": 14075,
+ "start": 6864.22,
+ "end": 6864.56,
+ "text": "current"
+ },
+ {
+ "id": 14076,
+ "start": 6864.56,
+ "end": 6865.18,
+ "text": "framework"
+ },
+ {
+ "id": 14077,
+ "start": 6865.18,
+ "end": 6865.32,
+ "text": "that"
+ },
+ {
+ "id": 14078,
+ "start": 6865.32,
+ "end": 6865.44,
+ "text": "we"
+ },
+ {
+ "id": 14079,
+ "start": 6865.44,
+ "end": 6866.38,
+ "text": "have"
+ },
+ {
+ "id": 14080,
+ "start": 6866.38,
+ "end": 6867.26,
+ "text": "is"
+ },
+ {
+ "id": 14081,
+ "start": 6867.26,
+ "end": 6867.6,
+ "text": "based"
+ },
+ {
+ "id": 14082,
+ "start": 6867.6,
+ "end": 6867.74,
+ "text": "on"
+ },
+ {
+ "id": 14083,
+ "start": 6867.74,
+ "end": 6867.92,
+ "text": "this"
+ },
+ {
+ "id": 14084,
+ "start": 6867.92,
+ "end": 6868.46,
+ "text": "reactive"
+ },
+ {
+ "id": 14085,
+ "start": 6868.46,
+ "end": 6868.74,
+ "text": "model"
+ },
+ {
+ "id": 14086,
+ "start": 6868.74,
+ "end": 6869.44,
+ "text": "that"
+ },
+ {
+ "id": 14087,
+ "start": 6869.44,
+ "end": 6869.92,
+ "text": "assumed"
+ },
+ {
+ "id": 14088,
+ "start": 6869.92,
+ "end": 6870.06,
+ "text": "that"
+ },
+ {
+ "id": 14089,
+ "start": 6870.06,
+ "end": 6870.26,
+ "text": "there"
+ },
+ {
+ "id": 14090,
+ "start": 6870.26,
+ "end": 6870.5,
+ "text": "weren't"
+ },
+ {
+ "id": 14091,
+ "start": 6870.5,
+ "end": 6870.84,
+ "text": "AI"
+ },
+ {
+ "id": 14092,
+ "start": 6870.84,
+ "end": 6871.2,
+ "text": "tools"
+ },
+ {
+ "id": 14093,
+ "start": 6871.2,
+ "end": 6871.72,
+ "text": "that"
+ },
+ {
+ "id": 14094,
+ "start": 6871.72,
+ "end": 6871.9,
+ "text": "could"
+ },
+ {
+ "id": 14095,
+ "start": 6871.9,
+ "end": 6872.58,
+ "text": "proactively"
+ },
+ {
+ "id": 14096,
+ "start": 6872.58,
+ "end": 6873.54,
+ "text": "tell"
+ },
+ {
+ "id": 14097,
+ "start": 6873.54,
+ "end": 6874.48,
+ "text": "whether"
+ },
+ {
+ "id": 14098,
+ "start": 6874.48,
+ "end": 6874.82,
+ "text": "something"
+ },
+ {
+ "id": 14099,
+ "start": 6874.82,
+ "end": 6874.96,
+ "text": "was"
+ },
+ {
+ "id": 14100,
+ "start": 6874.96,
+ "end": 6875.34,
+ "text": "terrorist"
+ },
+ {
+ "id": 14101,
+ "start": 6875.34,
+ "end": 6875.7,
+ "text": "content"
+ },
+ {
+ "id": 14102,
+ "start": 6875.7,
+ "end": 6875.84,
+ "text": "or"
+ },
+ {
+ "id": 14103,
+ "start": 6875.84,
+ "end": 6876.12,
+ "text": "something"
+ },
+ {
+ "id": 14104,
+ "start": 6876.12,
+ "end": 6876.4,
+ "text": "bad."
+ },
+ {
+ "id": 14105,
+ "start": 6876.4,
+ "end": 6876.88,
+ "text": "So"
+ },
+ {
+ "id": 14106,
+ "start": 6876.88,
+ "end": 6877.04,
+ "text": "it"
+ },
+ {
+ "id": 14107,
+ "start": 6877.04,
+ "end": 6877.56,
+ "text": "naturally"
+ },
+ {
+ "id": 14108,
+ "start": 6877.56,
+ "end": 6878.14,
+ "text": "relied"
+ },
+ {
+ "id": 14109,
+ "start": 6878.14,
+ "end": 6878.58,
+ "text": "on"
+ },
+ {
+ "id": 14110,
+ "start": 6878.58,
+ "end": 6879.66,
+ "text": "requiring"
+ },
+ {
+ "id": 14111,
+ "start": 6879.66,
+ "end": 6880.1,
+ "text": "people"
+ },
+ {
+ "id": 14112,
+ "start": 6880.1,
+ "end": 6880.38,
+ "text": "to"
+ },
+ {
+ "id": 14113,
+ "start": 6880.38,
+ "end": 6880.96,
+ "text": "flag"
+ },
+ {
+ "id": 14114,
+ "start": 6880.96,
+ "end": 6881.12,
+ "text": "for"
+ },
+ {
+ "id": 14115,
+ "start": 6881.12,
+ "end": 6881.18,
+ "text": "a"
+ },
+ {
+ "id": 14116,
+ "start": 6881.18,
+ "end": 6881.5,
+ "text": "company."
+ },
+ {
+ "id": 14117,
+ "start": 6881.5,
+ "end": 6881.6,
+ "text": "And"
+ },
+ {
+ "id": 14118,
+ "start": 6881.6,
+ "end": 6881.7,
+ "text": "then"
+ },
+ {
+ "id": 14119,
+ "start": 6881.7,
+ "end": 6881.8,
+ "text": "the"
+ },
+ {
+ "id": 14120,
+ "start": 6881.8,
+ "end": 6882.08,
+ "text": "company"
+ },
+ {
+ "id": 14121,
+ "start": 6882.08,
+ "end": 6882.38,
+ "text": "being"
+ },
+ {
+ "id": 14122,
+ "start": 6882.38,
+ "end": 6882.48,
+ "text": "to"
+ },
+ {
+ "id": 14123,
+ "start": 6882.48,
+ "end": 6882.64,
+ "text": "take"
+ },
+ {
+ "id": 14124,
+ "start": 6882.64,
+ "end": 6883.12,
+ "text": "reasonable"
+ },
+ {
+ "id": 14125,
+ "start": 6883.12,
+ "end": 6883.46,
+ "text": "action"
+ },
+ {
+ "id": 14126,
+ "start": 6883.46,
+ "end": 6884.08,
+ "text": "in"
+ },
+ {
+ "id": 14127,
+ "start": 6884.08,
+ "end": 6884.18,
+ "text": "the"
+ },
+ {
+ "id": 14128,
+ "start": 6884.18,
+ "end": 6884.54,
+ "text": "future"
+ },
+ {
+ "id": 14129,
+ "start": 6884.54,
+ "end": 6884.76,
+ "text": "we're"
+ },
+ {
+ "id": 14130,
+ "start": 6884.76,
+ "end": 6884.9,
+ "text": "going"
+ },
+ {
+ "id": 14131,
+ "start": 6884.9,
+ "end": 6884.96,
+ "text": "to"
+ },
+ {
+ "id": 14132,
+ "start": 6884.96,
+ "end": 6885.1,
+ "text": "have"
+ },
+ {
+ "id": 14133,
+ "start": 6885.1,
+ "end": 6885.54,
+ "text": "tools"
+ },
+ {
+ "id": 14134,
+ "start": 6885.54,
+ "end": 6886.2,
+ "text": "that"
+ },
+ {
+ "id": 14135,
+ "start": 6886.2,
+ "end": 6886.36,
+ "text": "are"
+ },
+ {
+ "id": 14136,
+ "start": 6886.36,
+ "end": 6886.62,
+ "text": "going"
+ },
+ {
+ "id": 14137,
+ "start": 6886.62,
+ "end": 6886.78,
+ "text": "to"
+ },
+ {
+ "id": 14138,
+ "start": 6886.78,
+ "end": 6886.92,
+ "text": "be"
+ },
+ {
+ "id": 14139,
+ "start": 6886.92,
+ "end": 6887.18,
+ "text": "able"
+ },
+ {
+ "id": 14140,
+ "start": 6887.18,
+ "end": 6887.42,
+ "text": "to"
+ },
+ {
+ "id": 14141,
+ "start": 6887.42,
+ "end": 6888.02,
+ "text": "identify"
+ },
+ {
+ "id": 14142,
+ "start": 6888.02,
+ "end": 6888.28,
+ "text": "more"
+ },
+ {
+ "id": 14143,
+ "start": 6888.28,
+ "end": 6888.52,
+ "text": "types"
+ },
+ {
+ "id": 14144,
+ "start": 6888.52,
+ "end": 6888.66,
+ "text": "of"
+ },
+ {
+ "id": 14145,
+ "start": 6888.66,
+ "end": 6888.92,
+ "text": "bad"
+ },
+ {
+ "id": 14146,
+ "start": 6888.92,
+ "end": 6889.38,
+ "text": "content."
+ },
+ {
+ "id": 14147,
+ "start": 6889.38,
+ "end": 6889.9,
+ "text": "And"
+ },
+ {
+ "id": 14148,
+ "start": 6889.9,
+ "end": 6889.98,
+ "text": "I"
+ },
+ {
+ "id": 14149,
+ "start": 6889.98,
+ "end": 6890.18,
+ "text": "think"
+ },
+ {
+ "id": 14150,
+ "start": 6890.18,
+ "end": 6890.3,
+ "text": "that"
+ },
+ {
+ "id": 14151,
+ "start": 6890.3,
+ "end": 6891.22,
+ "text": "there"
+ },
+ {
+ "id": 14152,
+ "start": 6891.22,
+ "end": 6891.34,
+ "text": "are"
+ },
+ {
+ "id": 14153,
+ "start": 6891.34,
+ "end": 6891.78,
+ "text": "moral"
+ },
+ {
+ "id": 14154,
+ "start": 6891.78,
+ "end": 6891.94,
+ "text": "and"
+ },
+ {
+ "id": 14155,
+ "start": 6891.94,
+ "end": 6892.22,
+ "text": "legal"
+ },
+ {
+ "id": 14156,
+ "start": 6892.22,
+ "end": 6892.86,
+ "text": "obligation"
+ },
+ {
+ "id": 14157,
+ "start": 6892.86,
+ "end": 6893.82,
+ "text": "questions"
+ },
+ {
+ "id": 14158,
+ "start": 6893.82,
+ "end": 6894.4,
+ "text": "that"
+ },
+ {
+ "id": 14159,
+ "start": 6894.4,
+ "end": 6894.46,
+ "text": "I"
+ },
+ {
+ "id": 14160,
+ "start": 6894.46,
+ "end": 6894.62,
+ "text": "think"
+ },
+ {
+ "id": 14161,
+ "start": 6894.62,
+ "end": 6894.84,
+ "text": "we'll"
+ },
+ {
+ "id": 14162,
+ "start": 6894.84,
+ "end": 6894.98,
+ "text": "have"
+ },
+ {
+ "id": 14163,
+ "start": 6894.98,
+ "end": 6895.08,
+ "text": "to"
+ },
+ {
+ "id": 14164,
+ "start": 6895.08,
+ "end": 6895.4,
+ "text": "wrestle"
+ },
+ {
+ "id": 14165,
+ "start": 6895.4,
+ "end": 6895.56,
+ "text": "with"
+ },
+ {
+ "id": 14166,
+ "start": 6895.56,
+ "end": 6895.72,
+ "text": "as"
+ },
+ {
+ "id": 14167,
+ "start": 6895.72,
+ "end": 6895.82,
+ "text": "a"
+ },
+ {
+ "id": 14168,
+ "start": 6895.82,
+ "end": 6896.38,
+ "text": "society"
+ },
+ {
+ "id": 14169,
+ "start": 6896.38,
+ "end": 6896.94,
+ "text": "about"
+ },
+ {
+ "id": 14170,
+ "start": 6896.94,
+ "end": 6897.22,
+ "text": "when"
+ },
+ {
+ "id": 14171,
+ "start": 6897.22,
+ "end": 6897.34,
+ "text": "we"
+ },
+ {
+ "id": 14172,
+ "start": 6897.34,
+ "end": 6897.58,
+ "text": "want"
+ },
+ {
+ "id": 14173,
+ "start": 6897.58,
+ "end": 6897.78,
+ "text": "to"
+ },
+ {
+ "id": 14174,
+ "start": 6897.78,
+ "end": 6898.5,
+ "text": "require"
+ },
+ {
+ "id": 14175,
+ "start": 6898.5,
+ "end": 6899.02,
+ "text": "companies"
+ },
+ {
+ "id": 14176,
+ "start": 6899.02,
+ "end": 6899.16,
+ "text": "to"
+ },
+ {
+ "id": 14177,
+ "start": 6899.16,
+ "end": 6899.38,
+ "text": "take"
+ },
+ {
+ "id": 14178,
+ "start": 6899.38,
+ "end": 6899.8,
+ "text": "action."
+ },
+ {
+ "id": 14179,
+ "start": 6899.8,
+ "end": 6900.5,
+ "text": "Proactively"
+ },
+ {
+ "id": 14180,
+ "start": 6900.5,
+ "end": 6900.94,
+ "text": "uncertain"
+ },
+ {
+ "id": 14181,
+ "start": 6900.94,
+ "end": 6901.04,
+ "text": "of"
+ },
+ {
+ "id": 14182,
+ "start": 6901.04,
+ "end": 6901.26,
+ "text": "those"
+ },
+ {
+ "id": 14183,
+ "start": 6901.26,
+ "end": 6901.58,
+ "text": "things"
+ },
+ {
+ "id": 14184,
+ "start": 6901.58,
+ "end": 6902.4,
+ "text": "when"
+ },
+ {
+ "id": 14185,
+ "start": 6902.4,
+ "end": 6902.56,
+ "text": "that"
+ },
+ {
+ "id": 14186,
+ "start": 6902.56,
+ "end": 6902.72,
+ "text": "gets"
+ },
+ {
+ "id": 14187,
+ "start": 6902.72,
+ "end": 6902.84,
+ "text": "in"
+ },
+ {
+ "id": 14188,
+ "start": 6902.84,
+ "end": 6902.94,
+ "text": "the"
+ },
+ {
+ "id": 14189,
+ "start": 6902.94,
+ "end": 6903.12,
+ "text": "way,"
+ },
+ {
+ "id": 14190,
+ "start": 6903.12,
+ "end": 6903.18,
+ "text": "I"
+ },
+ {
+ "id": 14191,
+ "start": 6903.18,
+ "end": 6903.82,
+ "text": "appreciate"
+ },
+ {
+ "id": 14192,
+ "start": 6903.82,
+ "end": 6903.98,
+ "text": "that"
+ },
+ {
+ "id": 14193,
+ "start": 6903.98,
+ "end": 6904.08,
+ "text": "I"
+ },
+ {
+ "id": 14194,
+ "start": 6904.08,
+ "end": 6904.24,
+ "text": "have"
+ },
+ {
+ "id": 14195,
+ "start": 6904.24,
+ "end": 6904.66,
+ "text": "two"
+ },
+ {
+ "id": 14196,
+ "start": 6904.66,
+ "end": 6904.94,
+ "text": "minutes"
+ },
+ {
+ "id": 14197,
+ "start": 6904.94,
+ "end": 6905.26,
+ "text": "left."
+ },
+ {
+ "id": 14198,
+ "start": 6905.26,
+ "end": 6905.48,
+ "text": "All"
+ },
+ {
+ "id": 14199,
+ "start": 6905.48,
+ "end": 6905.62,
+ "text": "right"
+ },
+ {
+ "id": 14200,
+ "start": 6905.62,
+ "end": 6905.72,
+ "text": "to"
+ },
+ {
+ "id": 14201,
+ "start": 6905.72,
+ "end": 6905.9,
+ "text": "ask"
+ },
+ {
+ "id": 14202,
+ "start": 6905.9,
+ "end": 6906.06,
+ "text": "you"
+ },
+ {
+ "id": 14203,
+ "start": 6906.06,
+ "end": 6906.48,
+ "text": "questions."
+ },
+ {
+ "id": 14204,
+ "start": 6906.48,
+ "end": 6907.32,
+ "text": "So"
+ },
+ {
+ "id": 14205,
+ "start": 6907.32,
+ "end": 6908.4,
+ "text": "you"
+ },
+ {
+ "id": 14206,
+ "start": 6908.4,
+ "end": 6909.4,
+ "text": "interestingly"
+ },
+ {
+ "id": 14207,
+ "start": 6909.4,
+ "end": 6909.58,
+ "text": "the"
+ },
+ {
+ "id": 14208,
+ "start": 6909.58,
+ "end": 6909.96,
+ "text": "terms"
+ },
+ {
+ "id": 14209,
+ "start": 6909.96,
+ "end": 6911.02,
+ "text": "of"
+ },
+ {
+ "id": 14210,
+ "start": 6911.02,
+ "end": 6911.98,
+ "text": "what"
+ },
+ {
+ "id": 14211,
+ "start": 6911.98,
+ "end": 6912.06,
+ "text": "do"
+ },
+ {
+ "id": 14212,
+ "start": 6912.06,
+ "end": 6912.18,
+ "text": "you"
+ },
+ {
+ "id": 14213,
+ "start": 6912.18,
+ "end": 6912.36,
+ "text": "call"
+ },
+ {
+ "id": 14214,
+ "start": 6912.36,
+ "end": 6912.46,
+ "text": "it?"
+ },
+ {
+ "id": 14215,
+ "start": 6912.46,
+ "end": 6912.58,
+ "text": "The"
+ },
+ {
+ "id": 14216,
+ "start": 6912.58,
+ "end": 6912.96,
+ "text": "terms"
+ },
+ {
+ "id": 14217,
+ "start": 6912.96,
+ "end": 6913.12,
+ "text": "of"
+ },
+ {
+ "id": 14218,
+ "start": 6913.12,
+ "end": 6913.62,
+ "text": "service"
+ },
+ {
+ "id": 14219,
+ "start": 6913.62,
+ "end": 6914.3,
+ "text": "is"
+ },
+ {
+ "id": 14220,
+ "start": 6914.3,
+ "end": 6914.38,
+ "text": "a"
+ },
+ {
+ "id": 14221,
+ "start": 6914.38,
+ "end": 6914.74,
+ "text": "legal"
+ },
+ {
+ "id": 14222,
+ "start": 6914.74,
+ "end": 6915.28,
+ "text": "document"
+ },
+ {
+ "id": 14223,
+ "start": 6915.28,
+ "end": 6915.58,
+ "text": "which"
+ },
+ {
+ "id": 14224,
+ "start": 6915.58,
+ "end": 6916.3,
+ "text": "discloses"
+ },
+ {
+ "id": 14225,
+ "start": 6916.3,
+ "end": 6916.48,
+ "text": "to"
+ },
+ {
+ "id": 14226,
+ "start": 6916.48,
+ "end": 6916.7,
+ "text": "your"
+ },
+ {
+ "id": 14227,
+ "start": 6916.7,
+ "end": 6917.46,
+ "text": "subscribers."
+ },
+ {
+ "id": 14228,
+ "start": 6917.46,
+ "end": 6917.8,
+ "text": "How"
+ },
+ {
+ "id": 14229,
+ "start": 6917.8,
+ "end": 6918.04,
+ "text": "their"
+ },
+ {
+ "id": 14230,
+ "start": 6918.04,
+ "end": 6918.56,
+ "text": "information"
+ },
+ {
+ "id": 14231,
+ "start": 6918.56,
+ "end": 6918.74,
+ "text": "is"
+ },
+ {
+ "id": 14232,
+ "start": 6918.74,
+ "end": 6918.9,
+ "text": "going"
+ },
+ {
+ "id": 14233,
+ "start": 6918.9,
+ "end": 6918.98,
+ "text": "to"
+ },
+ {
+ "id": 14234,
+ "start": 6918.98,
+ "end": 6919.08,
+ "text": "be"
+ },
+ {
+ "id": 14235,
+ "start": 6919.08,
+ "end": 6919.34,
+ "text": "used."
+ },
+ {
+ "id": 14236,
+ "start": 6919.34,
+ "end": 6919.58,
+ "text": "How"
+ },
+ {
+ "id": 14237,
+ "start": 6919.58,
+ "end": 6920.14,
+ "text": "Facebook"
+ },
+ {
+ "id": 14238,
+ "start": 6920.14,
+ "end": 6920.58,
+ "text": "is"
+ },
+ {
+ "id": 14239,
+ "start": 6920.58,
+ "end": 6920.74,
+ "text": "going"
+ },
+ {
+ "id": 14240,
+ "start": 6920.74,
+ "end": 6920.82,
+ "text": "to"
+ },
+ {
+ "id": 14241,
+ "start": 6920.82,
+ "end": 6921.96,
+ "text": "operate"
+ },
+ {
+ "id": 14242,
+ "start": 6921.96,
+ "end": 6922.94,
+ "text": "but"
+ },
+ {
+ "id": 14243,
+ "start": 6922.94,
+ "end": 6923.18,
+ "text": "you"
+ },
+ {
+ "id": 14244,
+ "start": 6923.18,
+ "end": 6923.4,
+ "text": "can"
+ },
+ {
+ "id": 14245,
+ "start": 6923.4,
+ "end": 6923.7,
+ "text": "see"
+ },
+ {
+ "id": 14246,
+ "start": 6923.7,
+ "end": 6923.92,
+ "text": "that"
+ },
+ {
+ "id": 14247,
+ "start": 6923.92,
+ "end": 6924.96,
+ "text": "you"
+ },
+ {
+ "id": 14248,
+ "start": 6924.96,
+ "end": 6925.9,
+ "text": "doubt."
+ },
+ {
+ "id": 14249,
+ "start": 6925.9,
+ "end": 6926.94,
+ "text": "Everybody"
+ },
+ {
+ "id": 14250,
+ "start": 6926.94,
+ "end": 6928,
+ "text": "reads"
+ },
+ {
+ "id": 14251,
+ "start": 6928,
+ "end": 6928.4,
+ "text": "or"
+ },
+ {
+ "id": 14252,
+ "start": 6928.4,
+ "end": 6929.82,
+ "text": "understands"
+ },
+ {
+ "id": 14253,
+ "start": 6929.82,
+ "end": 6930.68,
+ "text": "that"
+ },
+ {
+ "id": 14254,
+ "start": 6930.68,
+ "end": 6931.32,
+ "text": "legalese"
+ },
+ {
+ "id": 14255,
+ "start": 6931.32,
+ "end": 6931.6,
+ "text": "those"
+ },
+ {
+ "id": 14256,
+ "start": 6931.6,
+ "end": 6931.92,
+ "text": "terms"
+ },
+ {
+ "id": 14257,
+ "start": 6931.92,
+ "end": 6932.06,
+ "text": "of"
+ },
+ {
+ "id": 14258,
+ "start": 6932.06,
+ "end": 6932.5,
+ "text": "service."
+ },
+ {
+ "id": 14259,
+ "start": 6932.5,
+ "end": 6933.44,
+ "text": "So"
+ },
+ {
+ "id": 14260,
+ "start": 6933.44,
+ "end": 6934.5,
+ "text": "is"
+ },
+ {
+ "id": 14261,
+ "start": 6934.5,
+ "end": 6934.66,
+ "text": "that"
+ },
+ {
+ "id": 14262,
+ "start": 6934.66,
+ "end": 6934.82,
+ "text": "to"
+ },
+ {
+ "id": 14263,
+ "start": 6934.82,
+ "end": 6935.3,
+ "text": "suggest"
+ },
+ {
+ "id": 14264,
+ "start": 6935.3,
+ "end": 6935.5,
+ "text": "that"
+ },
+ {
+ "id": 14265,
+ "start": 6935.5,
+ "end": 6935.76,
+ "text": "the"
+ },
+ {
+ "id": 14266,
+ "start": 6935.76,
+ "end": 6936.46,
+ "text": "consent"
+ },
+ {
+ "id": 14267,
+ "start": 6936.46,
+ "end": 6937.32,
+ "text": "that"
+ },
+ {
+ "id": 14268,
+ "start": 6937.32,
+ "end": 6937.66,
+ "text": "people"
+ },
+ {
+ "id": 14269,
+ "start": 6937.66,
+ "end": 6938.64,
+ "text": "give"
+ },
+ {
+ "id": 14270,
+ "start": 6938.64,
+ "end": 6939.66,
+ "text": "subject"
+ },
+ {
+ "id": 14271,
+ "start": 6939.66,
+ "end": 6939.8,
+ "text": "to"
+ },
+ {
+ "id": 14272,
+ "start": 6939.8,
+ "end": 6939.96,
+ "text": "that"
+ },
+ {
+ "id": 14273,
+ "start": 6939.96,
+ "end": 6940.32,
+ "text": "terms"
+ },
+ {
+ "id": 14274,
+ "start": 6940.32,
+ "end": 6940.44,
+ "text": "of"
+ },
+ {
+ "id": 14275,
+ "start": 6940.44,
+ "end": 6940.78,
+ "text": "service"
+ },
+ {
+ "id": 14276,
+ "start": 6940.78,
+ "end": 6940.92,
+ "text": "is"
+ },
+ {
+ "id": 14277,
+ "start": 6940.92,
+ "end": 6941.18,
+ "text": "not"
+ },
+ {
+ "id": 14278,
+ "start": 6941.18,
+ "end": 6941.84,
+ "text": "informed"
+ },
+ {
+ "id": 14279,
+ "start": 6941.84,
+ "end": 6942.94,
+ "text": "consent."
+ },
+ {
+ "id": 14280,
+ "start": 6942.94,
+ "end": 6943.06,
+ "text": "In"
+ },
+ {
+ "id": 14281,
+ "start": 6943.06,
+ "end": 6943.24,
+ "text": "other"
+ },
+ {
+ "id": 14282,
+ "start": 6943.24,
+ "end": 6943.44,
+ "text": "words,"
+ },
+ {
+ "id": 14283,
+ "start": 6943.44,
+ "end": 6944.04,
+ "text": "they"
+ },
+ {
+ "id": 14284,
+ "start": 6944.04,
+ "end": 6944.2,
+ "text": "may"
+ },
+ {
+ "id": 14285,
+ "start": 6944.2,
+ "end": 6944.36,
+ "text": "not"
+ },
+ {
+ "id": 14286,
+ "start": 6944.36,
+ "end": 6944.56,
+ "text": "read"
+ },
+ {
+ "id": 14287,
+ "start": 6944.56,
+ "end": 6944.68,
+ "text": "it."
+ },
+ {
+ "id": 14288,
+ "start": 6944.68,
+ "end": 6945.02,
+ "text": "And"
+ },
+ {
+ "id": 14289,
+ "start": 6945.02,
+ "end": 6945.22,
+ "text": "even"
+ },
+ {
+ "id": 14290,
+ "start": 6945.22,
+ "end": 6945.34,
+ "text": "if"
+ },
+ {
+ "id": 14291,
+ "start": 6945.34,
+ "end": 6945.46,
+ "text": "they"
+ },
+ {
+ "id": 14292,
+ "start": 6945.46,
+ "end": 6945.66,
+ "text": "read"
+ },
+ {
+ "id": 14293,
+ "start": 6945.66,
+ "end": 6945.74,
+ "text": "it,"
+ },
+ {
+ "id": 14294,
+ "start": 6945.74,
+ "end": 6945.88,
+ "text": "they"
+ },
+ {
+ "id": 14295,
+ "start": 6945.88,
+ "end": 6946.02,
+ "text": "may"
+ },
+ {
+ "id": 14296,
+ "start": 6946.02,
+ "end": 6946.18,
+ "text": "not"
+ },
+ {
+ "id": 14297,
+ "start": 6946.18,
+ "end": 6946.7,
+ "text": "understand"
+ },
+ {
+ "id": 14298,
+ "start": 6946.7,
+ "end": 6947.52,
+ "text": "it,"
+ },
+ {
+ "id": 14299,
+ "start": 6947.52,
+ "end": 6948.3,
+ "text": "I"
+ },
+ {
+ "id": 14300,
+ "start": 6948.3,
+ "end": 6948.52,
+ "text": "just"
+ },
+ {
+ "id": 14301,
+ "start": 6948.52,
+ "end": 6948.7,
+ "text": "think"
+ },
+ {
+ "id": 14302,
+ "start": 6948.7,
+ "end": 6948.82,
+ "text": "we"
+ },
+ {
+ "id": 14303,
+ "start": 6948.82,
+ "end": 6949,
+ "text": "have"
+ },
+ {
+ "id": 14304,
+ "start": 6949,
+ "end": 6949.04,
+ "text": "a"
+ },
+ {
+ "id": 14305,
+ "start": 6949.04,
+ "end": 6949.48,
+ "text": "broader"
+ },
+ {
+ "id": 14306,
+ "start": 6949.48,
+ "end": 6950.4,
+ "text": "responsibility"
+ },
+ {
+ "id": 14307,
+ "start": 6950.4,
+ "end": 6950.82,
+ "text": "than"
+ },
+ {
+ "id": 14308,
+ "start": 6950.82,
+ "end": 6951,
+ "text": "what"
+ },
+ {
+ "id": 14309,
+ "start": 6951,
+ "end": 6951.12,
+ "text": "the"
+ },
+ {
+ "id": 14310,
+ "start": 6951.12,
+ "end": 6951.36,
+ "text": "law"
+ },
+ {
+ "id": 14311,
+ "start": 6951.36,
+ "end": 6951.92,
+ "text": "requires."
+ },
+ {
+ "id": 14312,
+ "start": 6951.92,
+ "end": 6952.88,
+ "text": "So"
+ },
+ {
+ "id": 14313,
+ "start": 6952.88,
+ "end": 6953.86,
+ "text": "I'm"
+ },
+ {
+ "id": 14314,
+ "start": 6953.86,
+ "end": 6954.5,
+ "text": "I'm"
+ },
+ {
+ "id": 14315,
+ "start": 6954.5,
+ "end": 6955.06,
+ "text": "in."
+ },
+ {
+ "id": 14316,
+ "start": 6955.06,
+ "end": 6955.14,
+ "text": "I"
+ },
+ {
+ "id": 14317,
+ "start": 6955.14,
+ "end": 6955.52,
+ "text": "appreciate"
+ },
+ {
+ "id": 14318,
+ "start": 6955.52,
+ "end": 6955.66,
+ "text": "that."
+ },
+ {
+ "id": 14319,
+ "start": 6955.66,
+ "end": 6955.8,
+ "text": "What"
+ },
+ {
+ "id": 14320,
+ "start": 6955.8,
+ "end": 6955.94,
+ "text": "I'm"
+ },
+ {
+ "id": 14321,
+ "start": 6955.94,
+ "end": 6956.28,
+ "text": "asking"
+ },
+ {
+ "id": 14322,
+ "start": 6956.28,
+ "end": 6956.54,
+ "text": "about"
+ },
+ {
+ "id": 14323,
+ "start": 6956.54,
+ "end": 6956.72,
+ "text": "in"
+ },
+ {
+ "id": 14324,
+ "start": 6956.72,
+ "end": 6956.98,
+ "text": "terms"
+ },
+ {
+ "id": 14325,
+ "start": 6956.98,
+ "end": 6957.08,
+ "text": "of"
+ },
+ {
+ "id": 14326,
+ "start": 6957.08,
+ "end": 6957.28,
+ "text": "what"
+ },
+ {
+ "id": 14327,
+ "start": 6957.28,
+ "end": 6957.52,
+ "text": "your"
+ },
+ {
+ "id": 14328,
+ "start": 6957.52,
+ "end": 6958.28,
+ "text": "subscribers"
+ },
+ {
+ "id": 14329,
+ "start": 6958.28,
+ "end": 6959.34,
+ "text": "understand"
+ },
+ {
+ "id": 14330,
+ "start": 6959.34,
+ "end": 6959.48,
+ "text": "in"
+ },
+ {
+ "id": 14331,
+ "start": 6959.48,
+ "end": 6959.76,
+ "text": "terms"
+ },
+ {
+ "id": 14332,
+ "start": 6959.76,
+ "end": 6959.86,
+ "text": "of"
+ },
+ {
+ "id": 14333,
+ "start": 6959.86,
+ "end": 6960.12,
+ "text": "how"
+ },
+ {
+ "id": 14334,
+ "start": 6960.12,
+ "end": 6960.36,
+ "text": "their"
+ },
+ {
+ "id": 14335,
+ "start": 6960.36,
+ "end": 6960.74,
+ "text": "data"
+ },
+ {
+ "id": 14336,
+ "start": 6960.74,
+ "end": 6961.42,
+ "text": "is"
+ },
+ {
+ "id": 14337,
+ "start": 6961.42,
+ "end": 6961.68,
+ "text": "going"
+ },
+ {
+ "id": 14338,
+ "start": 6961.68,
+ "end": 6961.8,
+ "text": "to"
+ },
+ {
+ "id": 14339,
+ "start": 6961.8,
+ "end": 6961.92,
+ "text": "be"
+ },
+ {
+ "id": 14340,
+ "start": 6961.92,
+ "end": 6962.66,
+ "text": "used."
+ },
+ {
+ "id": 14341,
+ "start": 6962.66,
+ "end": 6963.32,
+ "text": "But"
+ },
+ {
+ "id": 14342,
+ "start": 6963.32,
+ "end": 6964.04,
+ "text": "let"
+ },
+ {
+ "id": 14343,
+ "start": 6964.04,
+ "end": 6964.14,
+ "text": "me"
+ },
+ {
+ "id": 14344,
+ "start": 6964.14,
+ "end": 6964.48,
+ "text": "go"
+ },
+ {
+ "id": 14345,
+ "start": 6964.48,
+ "end": 6964.68,
+ "text": "to"
+ },
+ {
+ "id": 14346,
+ "start": 6964.68,
+ "end": 6964.82,
+ "text": "the"
+ },
+ {
+ "id": 14347,
+ "start": 6964.82,
+ "end": 6965.1,
+ "text": "terms"
+ },
+ {
+ "id": 14348,
+ "start": 6965.1,
+ "end": 6965.24,
+ "text": "of"
+ },
+ {
+ "id": 14349,
+ "start": 6965.24,
+ "end": 6965.62,
+ "text": "service"
+ },
+ {
+ "id": 14350,
+ "start": 6965.62,
+ "end": 6966.56,
+ "text": "under"
+ },
+ {
+ "id": 14351,
+ "start": 6966.56,
+ "end": 6967.56,
+ "text": "paragraph"
+ },
+ {
+ "id": 14352,
+ "start": 6967.56,
+ "end": 6967.88,
+ "text": "number"
+ },
+ {
+ "id": 14353,
+ "start": 6967.88,
+ "end": 6968.22,
+ "text": "two."
+ },
+ {
+ "id": 14354,
+ "start": 6968.22,
+ "end": 6968.54,
+ "text": "You"
+ },
+ {
+ "id": 14355,
+ "start": 6968.54,
+ "end": 6968.76,
+ "text": "say"
+ },
+ {
+ "id": 14356,
+ "start": 6968.76,
+ "end": 6969.02,
+ "text": "you"
+ },
+ {
+ "id": 14357,
+ "start": 6969.02,
+ "end": 6969.46,
+ "text": "own"
+ },
+ {
+ "id": 14358,
+ "start": 6969.46,
+ "end": 6969.82,
+ "text": "all"
+ },
+ {
+ "id": 14359,
+ "start": 6969.82,
+ "end": 6969.92,
+ "text": "of"
+ },
+ {
+ "id": 14360,
+ "start": 6969.92,
+ "end": 6970.06,
+ "text": "the"
+ },
+ {
+ "id": 14361,
+ "start": 6970.06,
+ "end": 6970.56,
+ "text": "content"
+ },
+ {
+ "id": 14362,
+ "start": 6970.56,
+ "end": 6970.76,
+ "text": "and"
+ },
+ {
+ "id": 14363,
+ "start": 6970.76,
+ "end": 6971.5,
+ "text": "information"
+ },
+ {
+ "id": 14364,
+ "start": 6971.5,
+ "end": 6972.12,
+ "text": "you"
+ },
+ {
+ "id": 14365,
+ "start": 6972.12,
+ "end": 6972.46,
+ "text": "post"
+ },
+ {
+ "id": 14366,
+ "start": 6972.46,
+ "end": 6972.66,
+ "text": "on"
+ },
+ {
+ "id": 14367,
+ "start": 6972.66,
+ "end": 6973.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 14368,
+ "start": 6973.16,
+ "end": 6973.46,
+ "text": "that's"
+ },
+ {
+ "id": 14369,
+ "start": 6973.46,
+ "end": 6973.76,
+ "text": "what"
+ },
+ {
+ "id": 14370,
+ "start": 6973.76,
+ "end": 6974,
+ "text": "you've"
+ },
+ {
+ "id": 14371,
+ "start": 6974,
+ "end": 6974.16,
+ "text": "told"
+ },
+ {
+ "id": 14372,
+ "start": 6974.16,
+ "end": 6974.28,
+ "text": "us"
+ },
+ {
+ "id": 14373,
+ "start": 6974.28,
+ "end": 6974.46,
+ "text": "here"
+ },
+ {
+ "id": 14374,
+ "start": 6974.46,
+ "end": 6974.8,
+ "text": "today."
+ },
+ {
+ "id": 14375,
+ "start": 6974.8,
+ "end": 6975.46,
+ "text": "A"
+ },
+ {
+ "id": 14376,
+ "start": 6975.46,
+ "end": 6975.74,
+ "text": "number"
+ },
+ {
+ "id": 14377,
+ "start": 6975.74,
+ "end": 6975.82,
+ "text": "of"
+ },
+ {
+ "id": 14378,
+ "start": 6975.82,
+ "end": 6976.64,
+ "text": "times."
+ },
+ {
+ "id": 14379,
+ "start": 6976.64,
+ "end": 6977.54,
+ "text": "So"
+ },
+ {
+ "id": 14380,
+ "start": 6977.54,
+ "end": 6978.54,
+ "text": "if"
+ },
+ {
+ "id": 14381,
+ "start": 6978.54,
+ "end": 6978.66,
+ "text": "I"
+ },
+ {
+ "id": 14382,
+ "start": 6978.66,
+ "end": 6979.24,
+ "text": "choose"
+ },
+ {
+ "id": 14383,
+ "start": 6979.24,
+ "end": 6979.8,
+ "text": "to"
+ },
+ {
+ "id": 14384,
+ "start": 6979.8,
+ "end": 6980.76,
+ "text": "terminate"
+ },
+ {
+ "id": 14385,
+ "start": 6980.76,
+ "end": 6981.62,
+ "text": "my"
+ },
+ {
+ "id": 14386,
+ "start": 6981.62,
+ "end": 6982.48,
+ "text": "Facebook"
+ },
+ {
+ "id": 14387,
+ "start": 6982.48,
+ "end": 6983.48,
+ "text": "account."
+ },
+ {
+ "id": 14388,
+ "start": 6983.48,
+ "end": 6984.62,
+ "text": "Can"
+ },
+ {
+ "id": 14389,
+ "start": 6984.62,
+ "end": 6984.84,
+ "text": "I"
+ },
+ {
+ "id": 14390,
+ "start": 6984.84,
+ "end": 6985.5,
+ "text": "bar"
+ },
+ {
+ "id": 14391,
+ "start": 6985.5,
+ "end": 6986.6,
+ "text": "Facebook"
+ },
+ {
+ "id": 14392,
+ "start": 6986.6,
+ "end": 6986.78,
+ "text": "or"
+ },
+ {
+ "id": 14393,
+ "start": 6986.78,
+ "end": 6987.04,
+ "text": "any"
+ },
+ {
+ "id": 14394,
+ "start": 6987.04,
+ "end": 6987.34,
+ "text": "third"
+ },
+ {
+ "id": 14395,
+ "start": 6987.34,
+ "end": 6987.74,
+ "text": "parties"
+ },
+ {
+ "id": 14396,
+ "start": 6987.74,
+ "end": 6988.08,
+ "text": "from"
+ },
+ {
+ "id": 14397,
+ "start": 6988.08,
+ "end": 6988.62,
+ "text": "using"
+ },
+ {
+ "id": 14398,
+ "start": 6988.62,
+ "end": 6988.78,
+ "text": "the"
+ },
+ {
+ "id": 14399,
+ "start": 6988.78,
+ "end": 6989.14,
+ "text": "data"
+ },
+ {
+ "id": 14400,
+ "start": 6989.14,
+ "end": 6989.32,
+ "text": "that"
+ },
+ {
+ "id": 14401,
+ "start": 6989.32,
+ "end": 6989.36,
+ "text": "I"
+ },
+ {
+ "id": 14402,
+ "start": 6989.36,
+ "end": 6989.6,
+ "text": "had"
+ },
+ {
+ "id": 14403,
+ "start": 6989.6,
+ "end": 6990.1,
+ "text": "previously"
+ },
+ {
+ "id": 14404,
+ "start": 6990.1,
+ "end": 6990.74,
+ "text": "supplied"
+ },
+ {
+ "id": 14405,
+ "start": 6990.74,
+ "end": 6991.64,
+ "text": "for"
+ },
+ {
+ "id": 14406,
+ "start": 6991.64,
+ "end": 6991.88,
+ "text": "any"
+ },
+ {
+ "id": 14407,
+ "start": 6991.88,
+ "end": 6992.18,
+ "text": "purpose"
+ },
+ {
+ "id": 14408,
+ "start": 6992.18,
+ "end": 6993.34,
+ "text": "whatsoever?"
+ },
+ {
+ "id": 14409,
+ "start": 6993.34,
+ "end": 6994.02,
+ "text": "Yes,"
+ },
+ {
+ "id": 14410,
+ "start": 6994.02,
+ "end": 6994.52,
+ "text": "Senator,"
+ },
+ {
+ "id": 14411,
+ "start": 6994.52,
+ "end": 6994.66,
+ "text": "if"
+ },
+ {
+ "id": 14412,
+ "start": 6994.66,
+ "end": 6994.78,
+ "text": "you"
+ },
+ {
+ "id": 14413,
+ "start": 6994.78,
+ "end": 6995.12,
+ "text": "delete"
+ },
+ {
+ "id": 14414,
+ "start": 6995.12,
+ "end": 6995.28,
+ "text": "your"
+ },
+ {
+ "id": 14415,
+ "start": 6995.28,
+ "end": 6995.6,
+ "text": "account,"
+ },
+ {
+ "id": 14416,
+ "start": 6995.6,
+ "end": 6995.78,
+ "text": "we"
+ },
+ {
+ "id": 14417,
+ "start": 6995.78,
+ "end": 6996.08,
+ "text": "should"
+ },
+ {
+ "id": 14418,
+ "start": 6996.08,
+ "end": 6996.22,
+ "text": "get"
+ },
+ {
+ "id": 14419,
+ "start": 6996.22,
+ "end": 6996.4,
+ "text": "rid"
+ },
+ {
+ "id": 14420,
+ "start": 6996.4,
+ "end": 6996.5,
+ "text": "of"
+ },
+ {
+ "id": 14421,
+ "start": 6996.5,
+ "end": 6996.64,
+ "text": "all"
+ },
+ {
+ "id": 14422,
+ "start": 6996.64,
+ "end": 6996.72,
+ "text": "of"
+ },
+ {
+ "id": 14423,
+ "start": 6996.72,
+ "end": 6996.88,
+ "text": "your"
+ },
+ {
+ "id": 14424,
+ "start": 6996.88,
+ "end": 6997.38,
+ "text": "information"
+ },
+ {
+ "id": 14425,
+ "start": 6997.38,
+ "end": 6997.88,
+ "text": "you"
+ },
+ {
+ "id": 14426,
+ "start": 6997.88,
+ "end": 6998.18,
+ "text": "should"
+ },
+ {
+ "id": 14427,
+ "start": 6998.18,
+ "end": 6998.32,
+ "text": "or"
+ },
+ {
+ "id": 14428,
+ "start": 6998.32,
+ "end": 6998.5,
+ "text": "we"
+ },
+ {
+ "id": 14429,
+ "start": 6998.5,
+ "end": 6998.68,
+ "text": "do"
+ },
+ {
+ "id": 14430,
+ "start": 6998.68,
+ "end": 6999,
+ "text": "you"
+ },
+ {
+ "id": 14431,
+ "start": 6999,
+ "end": 6999.54,
+ "text": "we"
+ },
+ {
+ "id": 14432,
+ "start": 6999.54,
+ "end": 6999.74,
+ "text": "do."
+ },
+ {
+ "id": 14433,
+ "start": 6999.74,
+ "end": 7000,
+ "text": "How"
+ },
+ {
+ "id": 14434,
+ "start": 7000,
+ "end": 7000.2,
+ "text": "about"
+ },
+ {
+ "id": 14435,
+ "start": 7000.2,
+ "end": 7000.58,
+ "text": "third"
+ },
+ {
+ "id": 14436,
+ "start": 7000.58,
+ "end": 7000.98,
+ "text": "parties"
+ },
+ {
+ "id": 14437,
+ "start": 7000.98,
+ "end": 7001.22,
+ "text": "that"
+ },
+ {
+ "id": 14438,
+ "start": 7001.22,
+ "end": 7001.46,
+ "text": "you"
+ },
+ {
+ "id": 14439,
+ "start": 7001.46,
+ "end": 7002.12,
+ "text": "have"
+ },
+ {
+ "id": 14440,
+ "start": 7002.12,
+ "end": 7003.12,
+ "text": "contracted"
+ },
+ {
+ "id": 14441,
+ "start": 7003.12,
+ "end": 7003.38,
+ "text": "with"
+ },
+ {
+ "id": 14442,
+ "start": 7003.38,
+ "end": 7003.54,
+ "text": "to"
+ },
+ {
+ "id": 14443,
+ "start": 7003.54,
+ "end": 7003.9,
+ "text": "use"
+ },
+ {
+ "id": 14444,
+ "start": 7003.9,
+ "end": 7004.5,
+ "text": "some"
+ },
+ {
+ "id": 14445,
+ "start": 7004.5,
+ "end": 7004.6,
+ "text": "of"
+ },
+ {
+ "id": 14446,
+ "start": 7004.6,
+ "end": 7004.8,
+ "text": "that"
+ },
+ {
+ "id": 14447,
+ "start": 7004.8,
+ "end": 7005.62,
+ "text": "underlying"
+ },
+ {
+ "id": 14448,
+ "start": 7005.62,
+ "end": 7006.28,
+ "text": "information,"
+ },
+ {
+ "id": 14449,
+ "start": 7006.28,
+ "end": 7006.74,
+ "text": "perhaps"
+ },
+ {
+ "id": 14450,
+ "start": 7006.74,
+ "end": 7007.4,
+ "text": "to"
+ },
+ {
+ "id": 14451,
+ "start": 7007.4,
+ "end": 7007.82,
+ "text": "target"
+ },
+ {
+ "id": 14452,
+ "start": 7007.82,
+ "end": 7008.62,
+ "text": "advertising"
+ },
+ {
+ "id": 14453,
+ "start": 7008.62,
+ "end": 7009.44,
+ "text": "for"
+ },
+ {
+ "id": 14454,
+ "start": 7009.44,
+ "end": 7009.94,
+ "text": "themselves."
+ },
+ {
+ "id": 14455,
+ "start": 7009.94,
+ "end": 7010.12,
+ "text": "You"
+ },
+ {
+ "id": 14456,
+ "start": 7010.12,
+ "end": 7011.98,
+ "text": "can"
+ },
+ {
+ "id": 14457,
+ "start": 7011.98,
+ "end": 7012.54,
+ "text": "with"
+ },
+ {
+ "id": 14458,
+ "start": 7012.54,
+ "end": 7012.82,
+ "text": "do"
+ },
+ {
+ "id": 14459,
+ "start": 7012.82,
+ "end": 7012.96,
+ "text": "you"
+ },
+ {
+ "id": 14460,
+ "start": 7012.96,
+ "end": 7013.28,
+ "text": "call"
+ },
+ {
+ "id": 14461,
+ "start": 7013.28,
+ "end": 7013.52,
+ "text": "back"
+ },
+ {
+ "id": 14462,
+ "start": 7013.52,
+ "end": 7014.32,
+ "text": "that"
+ },
+ {
+ "id": 14463,
+ "start": 7014.32,
+ "end": 7014.92,
+ "text": "information"
+ },
+ {
+ "id": 14464,
+ "start": 7014.92,
+ "end": 7015.08,
+ "text": "as"
+ },
+ {
+ "id": 14465,
+ "start": 7015.08,
+ "end": 7015.32,
+ "text": "well."
+ },
+ {
+ "id": 14466,
+ "start": 7015.32,
+ "end": 7015.42,
+ "text": "Or"
+ },
+ {
+ "id": 14467,
+ "start": 7015.42,
+ "end": 7015.76,
+ "text": "does"
+ },
+ {
+ "id": 14468,
+ "start": 7015.76,
+ "end": 7015.94,
+ "text": "that"
+ },
+ {
+ "id": 14469,
+ "start": 7015.94,
+ "end": 7016.34,
+ "text": "remain"
+ },
+ {
+ "id": 14470,
+ "start": 7016.34,
+ "end": 7016.44,
+ "text": "in"
+ },
+ {
+ "id": 14471,
+ "start": 7016.44,
+ "end": 7017,
+ "text": "their"
+ },
+ {
+ "id": 14472,
+ "start": 7017,
+ "end": 7017.98,
+ "text": "senator,"
+ },
+ {
+ "id": 14473,
+ "start": 7017.98,
+ "end": 7018.14,
+ "text": "this"
+ },
+ {
+ "id": 14474,
+ "start": 7018.14,
+ "end": 7018.24,
+ "text": "is"
+ },
+ {
+ "id": 14475,
+ "start": 7018.24,
+ "end": 7018.52,
+ "text": "actually"
+ },
+ {
+ "id": 14476,
+ "start": 7018.52,
+ "end": 7018.6,
+ "text": "a"
+ },
+ {
+ "id": 14477,
+ "start": 7018.6,
+ "end": 7018.84,
+ "text": "very"
+ },
+ {
+ "id": 14478,
+ "start": 7018.84,
+ "end": 7019.26,
+ "text": "important"
+ },
+ {
+ "id": 14479,
+ "start": 7019.26,
+ "end": 7019.58,
+ "text": "question"
+ },
+ {
+ "id": 14480,
+ "start": 7019.58,
+ "end": 7019.8,
+ "text": "I'm"
+ },
+ {
+ "id": 14481,
+ "start": 7019.8,
+ "end": 7020,
+ "text": "glad"
+ },
+ {
+ "id": 14482,
+ "start": 7020,
+ "end": 7020.16,
+ "text": "you"
+ },
+ {
+ "id": 14483,
+ "start": 7020.16,
+ "end": 7020.38,
+ "text": "brought"
+ },
+ {
+ "id": 14484,
+ "start": 7020.38,
+ "end": 7020.52,
+ "text": "this"
+ },
+ {
+ "id": 14485,
+ "start": 7020.52,
+ "end": 7020.7,
+ "text": "up"
+ },
+ {
+ "id": 14486,
+ "start": 7020.7,
+ "end": 7020.94,
+ "text": "because"
+ },
+ {
+ "id": 14487,
+ "start": 7020.94,
+ "end": 7021.18,
+ "text": "there's"
+ },
+ {
+ "id": 14488,
+ "start": 7021.18,
+ "end": 7021.52,
+ "text": "a"
+ },
+ {
+ "id": 14489,
+ "start": 7021.52,
+ "end": 7021.8,
+ "text": "very"
+ },
+ {
+ "id": 14490,
+ "start": 7021.8,
+ "end": 7022.16,
+ "text": "common"
+ },
+ {
+ "id": 14491,
+ "start": 7022.16,
+ "end": 7022.88,
+ "text": "misperception"
+ },
+ {
+ "id": 14492,
+ "start": 7022.88,
+ "end": 7023.2,
+ "text": "about"
+ },
+ {
+ "id": 14493,
+ "start": 7023.2,
+ "end": 7023.68,
+ "text": "Facebook"
+ },
+ {
+ "id": 14494,
+ "start": 7023.68,
+ "end": 7024.14,
+ "text": "that"
+ },
+ {
+ "id": 14495,
+ "start": 7024.14,
+ "end": 7024.32,
+ "text": "we"
+ },
+ {
+ "id": 14496,
+ "start": 7024.32,
+ "end": 7024.62,
+ "text": "sell"
+ },
+ {
+ "id": 14497,
+ "start": 7024.62,
+ "end": 7024.96,
+ "text": "data"
+ },
+ {
+ "id": 14498,
+ "start": 7024.96,
+ "end": 7025.06,
+ "text": "to"
+ },
+ {
+ "id": 14499,
+ "start": 7025.06,
+ "end": 7025.78,
+ "text": "advertisers"
+ },
+ {
+ "id": 14500,
+ "start": 7025.78,
+ "end": 7026.4,
+ "text": "and"
+ },
+ {
+ "id": 14501,
+ "start": 7026.4,
+ "end": 7026.56,
+ "text": "we"
+ },
+ {
+ "id": 14502,
+ "start": 7026.56,
+ "end": 7026.72,
+ "text": "do"
+ },
+ {
+ "id": 14503,
+ "start": 7026.72,
+ "end": 7026.92,
+ "text": "not"
+ },
+ {
+ "id": 14504,
+ "start": 7026.92,
+ "end": 7027.16,
+ "text": "sell"
+ },
+ {
+ "id": 14505,
+ "start": 7027.16,
+ "end": 7027.4,
+ "text": "data"
+ },
+ {
+ "id": 14506,
+ "start": 7027.4,
+ "end": 7027.48,
+ "text": "to"
+ },
+ {
+ "id": 14507,
+ "start": 7027.48,
+ "end": 7028.1,
+ "text": "advertisers."
+ },
+ {
+ "id": 14508,
+ "start": 7028.1,
+ "end": 7028.32,
+ "text": "We"
+ },
+ {
+ "id": 14509,
+ "start": 7028.32,
+ "end": 7028.48,
+ "text": "don't"
+ },
+ {
+ "id": 14510,
+ "start": 7028.48,
+ "end": 7028.64,
+ "text": "sell"
+ },
+ {
+ "id": 14511,
+ "start": 7028.64,
+ "end": 7029.32,
+ "text": "eerily"
+ },
+ {
+ "id": 14512,
+ "start": 7029.32,
+ "end": 7030.4,
+ "text": "rented."
+ },
+ {
+ "id": 14513,
+ "start": 7030.4,
+ "end": 7031.26,
+ "text": "What"
+ },
+ {
+ "id": 14514,
+ "start": 7031.26,
+ "end": 7031.42,
+ "text": "we"
+ },
+ {
+ "id": 14515,
+ "start": 7031.42,
+ "end": 7031.76,
+ "text": "allow"
+ },
+ {
+ "id": 14516,
+ "start": 7031.76,
+ "end": 7032.1,
+ "text": "is"
+ },
+ {
+ "id": 14517,
+ "start": 7032.1,
+ "end": 7032.32,
+ "text": "for"
+ },
+ {
+ "id": 14518,
+ "start": 7032.32,
+ "end": 7033.02,
+ "text": "advertisers"
+ },
+ {
+ "id": 14519,
+ "start": 7033.02,
+ "end": 7033.24,
+ "text": "to"
+ },
+ {
+ "id": 14520,
+ "start": 7033.24,
+ "end": 7033.9,
+ "text": "tell"
+ },
+ {
+ "id": 14521,
+ "start": 7033.9,
+ "end": 7034.04,
+ "text": "us"
+ },
+ {
+ "id": 14522,
+ "start": 7034.04,
+ "end": 7034.22,
+ "text": "who"
+ },
+ {
+ "id": 14523,
+ "start": 7034.22,
+ "end": 7034.4,
+ "text": "they"
+ },
+ {
+ "id": 14524,
+ "start": 7034.4,
+ "end": 7034.54,
+ "text": "want"
+ },
+ {
+ "id": 14525,
+ "start": 7034.54,
+ "end": 7034.62,
+ "text": "to"
+ },
+ {
+ "id": 14526,
+ "start": 7034.62,
+ "end": 7034.84,
+ "text": "reach."
+ },
+ {
+ "id": 14527,
+ "start": 7034.84,
+ "end": 7035.62,
+ "text": "And"
+ },
+ {
+ "id": 14528,
+ "start": 7035.62,
+ "end": 7035.82,
+ "text": "then"
+ },
+ {
+ "id": 14529,
+ "start": 7035.82,
+ "end": 7036.12,
+ "text": "we"
+ },
+ {
+ "id": 14530,
+ "start": 7036.12,
+ "end": 7036.3,
+ "text": "do"
+ },
+ {
+ "id": 14531,
+ "start": 7036.3,
+ "end": 7036.5,
+ "text": "the"
+ },
+ {
+ "id": 14532,
+ "start": 7036.5,
+ "end": 7036.92,
+ "text": "placement."
+ },
+ {
+ "id": 14533,
+ "start": 7036.92,
+ "end": 7037.44,
+ "text": "So"
+ },
+ {
+ "id": 14534,
+ "start": 7037.44,
+ "end": 7037.84,
+ "text": "if"
+ },
+ {
+ "id": 14535,
+ "start": 7037.84,
+ "end": 7037.96,
+ "text": "an"
+ },
+ {
+ "id": 14536,
+ "start": 7037.96,
+ "end": 7038.54,
+ "text": "advertiser"
+ },
+ {
+ "id": 14537,
+ "start": 7038.54,
+ "end": 7038.78,
+ "text": "comes"
+ },
+ {
+ "id": 14538,
+ "start": 7038.78,
+ "end": 7038.88,
+ "text": "to"
+ },
+ {
+ "id": 14539,
+ "start": 7038.88,
+ "end": 7038.98,
+ "text": "us"
+ },
+ {
+ "id": 14540,
+ "start": 7038.98,
+ "end": 7039.14,
+ "text": "and"
+ },
+ {
+ "id": 14541,
+ "start": 7039.14,
+ "end": 7039.44,
+ "text": "says,"
+ },
+ {
+ "id": 14542,
+ "start": 7039.44,
+ "end": 7040.06,
+ "text": "all"
+ },
+ {
+ "id": 14543,
+ "start": 7040.06,
+ "end": 7040.26,
+ "text": "right"
+ },
+ {
+ "id": 14544,
+ "start": 7040.26,
+ "end": 7040.62,
+ "text": "I'm"
+ },
+ {
+ "id": 14545,
+ "start": 7040.62,
+ "end": 7040.74,
+ "text": "a"
+ },
+ {
+ "id": 14546,
+ "start": 7040.74,
+ "end": 7041.1,
+ "text": "ski"
+ },
+ {
+ "id": 14547,
+ "start": 7041.1,
+ "end": 7041.44,
+ "text": "shop."
+ },
+ {
+ "id": 14548,
+ "start": 7041.44,
+ "end": 7041.68,
+ "text": "And"
+ },
+ {
+ "id": 14549,
+ "start": 7041.68,
+ "end": 7041.88,
+ "text": "I"
+ },
+ {
+ "id": 14550,
+ "start": 7041.88,
+ "end": 7042.3,
+ "text": "want"
+ },
+ {
+ "id": 14551,
+ "start": 7042.3,
+ "end": 7042.38,
+ "text": "to"
+ },
+ {
+ "id": 14552,
+ "start": 7042.38,
+ "end": 7042.62,
+ "text": "sell"
+ },
+ {
+ "id": 14553,
+ "start": 7042.62,
+ "end": 7043.12,
+ "text": "skis"
+ },
+ {
+ "id": 14554,
+ "start": 7043.12,
+ "end": 7043.42,
+ "text": "to"
+ },
+ {
+ "id": 14555,
+ "start": 7043.42,
+ "end": 7044.62,
+ "text": "women."
+ },
+ {
+ "id": 14556,
+ "start": 7044.62,
+ "end": 7045.34,
+ "text": "Then"
+ },
+ {
+ "id": 14557,
+ "start": 7045.34,
+ "end": 7046.06,
+ "text": "we"
+ },
+ {
+ "id": 14558,
+ "start": 7046.06,
+ "end": 7046.34,
+ "text": "might"
+ },
+ {
+ "id": 14559,
+ "start": 7046.34,
+ "end": 7046.6,
+ "text": "have"
+ },
+ {
+ "id": 14560,
+ "start": 7046.6,
+ "end": 7046.84,
+ "text": "some"
+ },
+ {
+ "id": 14561,
+ "start": 7046.84,
+ "end": 7047.16,
+ "text": "sense"
+ },
+ {
+ "id": 14562,
+ "start": 7047.16,
+ "end": 7047.44,
+ "text": "because"
+ },
+ {
+ "id": 14563,
+ "start": 7047.44,
+ "end": 7047.68,
+ "text": "people"
+ },
+ {
+ "id": 14564,
+ "start": 7047.68,
+ "end": 7048.1,
+ "text": "shared"
+ },
+ {
+ "id": 14565,
+ "start": 7048.1,
+ "end": 7048.74,
+ "text": "skiing"
+ },
+ {
+ "id": 14566,
+ "start": 7048.74,
+ "end": 7049.1,
+ "text": "related"
+ },
+ {
+ "id": 14567,
+ "start": 7049.1,
+ "end": 7049.5,
+ "text": "content"
+ },
+ {
+ "id": 14568,
+ "start": 7049.5,
+ "end": 7049.64,
+ "text": "or"
+ },
+ {
+ "id": 14569,
+ "start": 7049.64,
+ "end": 7049.84,
+ "text": "said"
+ },
+ {
+ "id": 14570,
+ "start": 7049.84,
+ "end": 7049.98,
+ "text": "they"
+ },
+ {
+ "id": 14571,
+ "start": 7049.98,
+ "end": 7050.14,
+ "text": "were"
+ },
+ {
+ "id": 14572,
+ "start": 7050.14,
+ "end": 7050.62,
+ "text": "interested"
+ },
+ {
+ "id": 14573,
+ "start": 7050.62,
+ "end": 7050.74,
+ "text": "in"
+ },
+ {
+ "id": 14574,
+ "start": 7050.74,
+ "end": 7051.42,
+ "text": "that"
+ },
+ {
+ "id": 14575,
+ "start": 7051.42,
+ "end": 7052.02,
+ "text": "they"
+ },
+ {
+ "id": 14576,
+ "start": 7052.02,
+ "end": 7052.32,
+ "text": "shared."
+ },
+ {
+ "id": 14577,
+ "start": 7052.32,
+ "end": 7052.64,
+ "text": "Whether"
+ },
+ {
+ "id": 14578,
+ "start": 7052.64,
+ "end": 7052.88,
+ "text": "they're"
+ },
+ {
+ "id": 14579,
+ "start": 7052.88,
+ "end": 7052.92,
+ "text": "a"
+ },
+ {
+ "id": 14580,
+ "start": 7052.92,
+ "end": 7053.18,
+ "text": "woman"
+ },
+ {
+ "id": 14581,
+ "start": 7053.18,
+ "end": 7053.74,
+ "text": "and"
+ },
+ {
+ "id": 14582,
+ "start": 7053.74,
+ "end": 7053.9,
+ "text": "then"
+ },
+ {
+ "id": 14583,
+ "start": 7053.9,
+ "end": 7054.04,
+ "text": "we"
+ },
+ {
+ "id": 14584,
+ "start": 7054.04,
+ "end": 7054.2,
+ "text": "can"
+ },
+ {
+ "id": 14585,
+ "start": 7054.2,
+ "end": 7054.42,
+ "text": "show"
+ },
+ {
+ "id": 14586,
+ "start": 7054.42,
+ "end": 7054.54,
+ "text": "the"
+ },
+ {
+ "id": 14587,
+ "start": 7054.54,
+ "end": 7054.76,
+ "text": "ads"
+ },
+ {
+ "id": 14588,
+ "start": 7054.76,
+ "end": 7054.9,
+ "text": "to"
+ },
+ {
+ "id": 14589,
+ "start": 7054.9,
+ "end": 7055,
+ "text": "the"
+ },
+ {
+ "id": 14590,
+ "start": 7055,
+ "end": 7055.2,
+ "text": "right"
+ },
+ {
+ "id": 14591,
+ "start": 7055.2,
+ "end": 7055.46,
+ "text": "people"
+ },
+ {
+ "id": 14592,
+ "start": 7055.46,
+ "end": 7055.8,
+ "text": "without"
+ },
+ {
+ "id": 14593,
+ "start": 7055.8,
+ "end": 7056.36,
+ "text": "that"
+ },
+ {
+ "id": 14594,
+ "start": 7056.36,
+ "end": 7056.62,
+ "text": "data."
+ },
+ {
+ "id": 14595,
+ "start": 7056.62,
+ "end": 7056.94,
+ "text": "Ever"
+ },
+ {
+ "id": 14596,
+ "start": 7056.94,
+ "end": 7057.3,
+ "text": "changing"
+ },
+ {
+ "id": 14597,
+ "start": 7057.3,
+ "end": 7057.7,
+ "text": "hands"
+ },
+ {
+ "id": 14598,
+ "start": 7057.7,
+ "end": 7058.26,
+ "text": "and"
+ },
+ {
+ "id": 14599,
+ "start": 7058.26,
+ "end": 7058.52,
+ "text": "going"
+ },
+ {
+ "id": 14600,
+ "start": 7058.52,
+ "end": 7058.68,
+ "text": "to"
+ },
+ {
+ "id": 14601,
+ "start": 7058.68,
+ "end": 7058.78,
+ "text": "the"
+ },
+ {
+ "id": 14602,
+ "start": 7058.78,
+ "end": 7059.36,
+ "text": "advertiser"
+ },
+ {
+ "id": 14603,
+ "start": 7059.36,
+ "end": 7059.56,
+ "text": "that's"
+ },
+ {
+ "id": 14604,
+ "start": 7059.56,
+ "end": 7059.64,
+ "text": "a"
+ },
+ {
+ "id": 14605,
+ "start": 7059.64,
+ "end": 7059.92,
+ "text": "very"
+ },
+ {
+ "id": 14606,
+ "start": 7059.92,
+ "end": 7060.48,
+ "text": "fundamental"
+ },
+ {
+ "id": 14607,
+ "start": 7060.48,
+ "end": 7060.72,
+ "text": "part"
+ },
+ {
+ "id": 14608,
+ "start": 7060.72,
+ "end": 7060.8,
+ "text": "of"
+ },
+ {
+ "id": 14609,
+ "start": 7060.8,
+ "end": 7060.94,
+ "text": "how"
+ },
+ {
+ "id": 14610,
+ "start": 7060.94,
+ "end": 7061.1,
+ "text": "our"
+ },
+ {
+ "id": 14611,
+ "start": 7061.1,
+ "end": 7061.38,
+ "text": "model"
+ },
+ {
+ "id": 14612,
+ "start": 7061.38,
+ "end": 7061.64,
+ "text": "works"
+ },
+ {
+ "id": 14613,
+ "start": 7061.64,
+ "end": 7062.18,
+ "text": "and"
+ },
+ {
+ "id": 14614,
+ "start": 7062.18,
+ "end": 7062.46,
+ "text": "something"
+ },
+ {
+ "id": 14615,
+ "start": 7062.46,
+ "end": 7062.58,
+ "text": "that"
+ },
+ {
+ "id": 14616,
+ "start": 7062.58,
+ "end": 7062.76,
+ "text": "is"
+ },
+ {
+ "id": 14617,
+ "start": 7062.76,
+ "end": 7063.32,
+ "text": "often"
+ },
+ {
+ "id": 14618,
+ "start": 7063.32,
+ "end": 7064,
+ "text": "misunderstood,"
+ },
+ {
+ "id": 14619,
+ "start": 7064,
+ "end": 7064.18,
+ "text": "so"
+ },
+ {
+ "id": 14620,
+ "start": 7064.18,
+ "end": 7064.86,
+ "text": "I"
+ },
+ {
+ "id": 14621,
+ "start": 7064.86,
+ "end": 7065.24,
+ "text": "appreciate"
+ },
+ {
+ "id": 14622,
+ "start": 7065.24,
+ "end": 7065.36,
+ "text": "that"
+ },
+ {
+ "id": 14623,
+ "start": 7065.36,
+ "end": 7065.48,
+ "text": "you"
+ },
+ {
+ "id": 14624,
+ "start": 7065.48,
+ "end": 7065.68,
+ "text": "brought"
+ },
+ {
+ "id": 14625,
+ "start": 7065.68,
+ "end": 7065.8,
+ "text": "that"
+ },
+ {
+ "id": 14626,
+ "start": 7065.8,
+ "end": 7066.42,
+ "text": "up."
+ },
+ {
+ "id": 14627,
+ "start": 7066.42,
+ "end": 7067.08,
+ "text": "Thank"
+ },
+ {
+ "id": 14628,
+ "start": 7067.08,
+ "end": 7067.2,
+ "text": "you,"
+ },
+ {
+ "id": 14629,
+ "start": 7067.2,
+ "end": 7067.44,
+ "text": "Senator"
+ },
+ {
+ "id": 14630,
+ "start": 7067.44,
+ "end": 7067.78,
+ "text": "Cornyn."
+ },
+ {
+ "id": 14631,
+ "start": 7067.78,
+ "end": 7068.5,
+ "text": "We"
+ },
+ {
+ "id": 14632,
+ "start": 7068.5,
+ "end": 7068.62,
+ "text": "had"
+ },
+ {
+ "id": 14633,
+ "start": 7068.62,
+ "end": 7069.04,
+ "text": "indicated"
+ },
+ {
+ "id": 14634,
+ "start": 7069.04,
+ "end": 7069.42,
+ "text": "earlier"
+ },
+ {
+ "id": 14635,
+ "start": 7069.42,
+ "end": 7069.6,
+ "text": "on"
+ },
+ {
+ "id": 14636,
+ "start": 7069.6,
+ "end": 7069.76,
+ "text": "that"
+ },
+ {
+ "id": 14637,
+ "start": 7069.76,
+ "end": 7069.92,
+ "text": "we"
+ },
+ {
+ "id": 14638,
+ "start": 7069.92,
+ "end": 7070.18,
+ "text": "would"
+ },
+ {
+ "id": 14639,
+ "start": 7070.18,
+ "end": 7070.88,
+ "text": "take"
+ },
+ {
+ "id": 14640,
+ "start": 7070.88,
+ "end": 7070.92,
+ "text": "a"
+ },
+ {
+ "id": 14641,
+ "start": 7070.92,
+ "end": 7071.22,
+ "text": "couple"
+ },
+ {
+ "id": 14642,
+ "start": 7071.22,
+ "end": 7071.32,
+ "text": "of"
+ },
+ {
+ "id": 14643,
+ "start": 7071.32,
+ "end": 7071.56,
+ "text": "breaks."
+ },
+ {
+ "id": 14644,
+ "start": 7071.56,
+ "end": 7071.74,
+ "text": "Give"
+ },
+ {
+ "id": 14645,
+ "start": 7071.74,
+ "end": 7071.86,
+ "text": "our"
+ },
+ {
+ "id": 14646,
+ "start": 7071.86,
+ "end": 7072.16,
+ "text": "witness,"
+ },
+ {
+ "id": 14647,
+ "start": 7072.16,
+ "end": 7072.26,
+ "text": "an"
+ },
+ {
+ "id": 14648,
+ "start": 7072.26,
+ "end": 7072.92,
+ "text": "opportunity."
+ },
+ {
+ "id": 14649,
+ "start": 7072.92,
+ "end": 7074,
+ "text": "And"
+ },
+ {
+ "id": 14650,
+ "start": 7074,
+ "end": 7074.12,
+ "text": "I"
+ },
+ {
+ "id": 14651,
+ "start": 7074.12,
+ "end": 7074.3,
+ "text": "think"
+ },
+ {
+ "id": 14652,
+ "start": 7074.3,
+ "end": 7074.48,
+ "text": "we've"
+ },
+ {
+ "id": 14653,
+ "start": 7074.48,
+ "end": 7074.64,
+ "text": "been"
+ },
+ {
+ "id": 14654,
+ "start": 7074.64,
+ "end": 7074.84,
+ "text": "going"
+ },
+ {
+ "id": 14655,
+ "start": 7074.84,
+ "end": 7075,
+ "text": "now"
+ },
+ {
+ "id": 14656,
+ "start": 7075,
+ "end": 7075.16,
+ "text": "for"
+ },
+ {
+ "id": 14657,
+ "start": 7075.16,
+ "end": 7075.36,
+ "text": "just"
+ },
+ {
+ "id": 14658,
+ "start": 7075.36,
+ "end": 7075.64,
+ "text": "under"
+ },
+ {
+ "id": 14659,
+ "start": 7075.64,
+ "end": 7075.84,
+ "text": "two"
+ },
+ {
+ "id": 14660,
+ "start": 7075.84,
+ "end": 7076.2,
+ "text": "hours."
+ },
+ {
+ "id": 14661,
+ "start": 7076.2,
+ "end": 7077.04,
+ "text": "So"
+ },
+ {
+ "id": 14662,
+ "start": 7077.04,
+ "end": 7077.6,
+ "text": "I"
+ },
+ {
+ "id": 14663,
+ "start": 7077.6,
+ "end": 7077.76,
+ "text": "think"
+ },
+ {
+ "id": 14664,
+ "start": 7077.76,
+ "end": 7078.02,
+ "text": "we'll"
+ },
+ {
+ "id": 14665,
+ "start": 7078.02,
+ "end": 7078.12,
+ "text": "do"
+ },
+ {
+ "id": 14666,
+ "start": 7078.12,
+ "end": 7078.36,
+ "text": "is"
+ },
+ {
+ "id": 14667,
+ "start": 7078.36,
+ "end": 7078.52,
+ "text": "do"
+ },
+ {
+ "id": 14668,
+ "start": 7078.52,
+ "end": 7078.56,
+ "text": "a"
+ },
+ {
+ "id": 14669,
+ "start": 7078.56,
+ "end": 7078.72,
+ "text": "few"
+ },
+ {
+ "id": 14670,
+ "start": 7078.72,
+ "end": 7078.9,
+ "text": "more."
+ },
+ {
+ "id": 14671,
+ "start": 7078.9,
+ "end": 7079.18,
+ "text": "Er,"
+ },
+ {
+ "id": 14672,
+ "start": 7079.18,
+ "end": 7079.42,
+ "text": "Burger"
+ },
+ {
+ "id": 14673,
+ "start": 7079.42,
+ "end": 7079.66,
+ "text": "are"
+ },
+ {
+ "id": 14674,
+ "start": 7079.66,
+ "end": 7080.78,
+ "text": "you"
+ },
+ {
+ "id": 14675,
+ "start": 7080.78,
+ "end": 7082.2,
+ "text": "do,"
+ },
+ {
+ "id": 14676,
+ "start": 7082.2,
+ "end": 7082.32,
+ "text": "you"
+ },
+ {
+ "id": 14677,
+ "start": 7082.32,
+ "end": 7082.44,
+ "text": "want"
+ },
+ {
+ "id": 14678,
+ "start": 7082.44,
+ "end": 7082.52,
+ "text": "to"
+ },
+ {
+ "id": 14679,
+ "start": 7082.52,
+ "end": 7082.7,
+ "text": "keep"
+ },
+ {
+ "id": 14680,
+ "start": 7082.7,
+ "end": 7082.94,
+ "text": "going,"
+ },
+ {
+ "id": 14681,
+ "start": 7082.94,
+ "end": 7084.18,
+ "text": "maybe"
+ },
+ {
+ "id": 14682,
+ "start": 7084.18,
+ "end": 7084.52,
+ "text": "15"
+ },
+ {
+ "id": 14683,
+ "start": 7084.52,
+ "end": 7084.76,
+ "text": "minutes,"
+ },
+ {
+ "id": 14684,
+ "start": 7084.76,
+ "end": 7085.32,
+ "text": "okay?"
+ },
+ {
+ "id": 14685,
+ "start": 7085.32,
+ "end": 7085.9,
+ "text": "Alright"
+ },
+ {
+ "id": 14686,
+ "start": 7085.9,
+ "end": 7086.12,
+ "text": "we'll"
+ },
+ {
+ "id": 14687,
+ "start": 7086.12,
+ "end": 7086.3,
+ "text": "keep"
+ },
+ {
+ "id": 14688,
+ "start": 7086.3,
+ "end": 7086.58,
+ "text": "going"
+ },
+ {
+ "id": 14689,
+ "start": 7086.58,
+ "end": 7086.86,
+ "text": "center."
+ },
+ {
+ "id": 14690,
+ "start": 7086.86,
+ "end": 7087.5,
+ "text": "Blumenthal"
+ },
+ {
+ "id": 14691,
+ "start": 7087.5,
+ "end": 7088.04,
+ "text": "is"
+ },
+ {
+ "id": 14692,
+ "start": 7088.04,
+ "end": 7088.24,
+ "text": "up"
+ },
+ {
+ "id": 14693,
+ "start": 7088.24,
+ "end": 7088.58,
+ "text": "next"
+ },
+ {
+ "id": 14694,
+ "start": 7088.58,
+ "end": 7089.28,
+ "text": "and"
+ },
+ {
+ "id": 14695,
+ "start": 7089.28,
+ "end": 7090.32,
+ "text": "we"
+ },
+ {
+ "id": 14696,
+ "start": 7090.32,
+ "end": 7091.2,
+ "text": "will"
+ },
+ {
+ "id": 14697,
+ "start": 7091.2,
+ "end": 7092.24,
+ "text": "commence."
+ },
+ {
+ "id": 14698,
+ "start": 7092.24,
+ "end": 7093.16,
+ "text": "Thank"
+ },
+ {
+ "id": 14699,
+ "start": 7093.16,
+ "end": 7093.28,
+ "text": "you,"
+ },
+ {
+ "id": 14700,
+ "start": 7093.28,
+ "end": 7093.52,
+ "text": "Mr"
+ },
+ {
+ "id": 14701,
+ "start": 7093.52,
+ "end": 7093.88,
+ "text": "Chairman."
+ },
+ {
+ "id": 14702,
+ "start": 7093.88,
+ "end": 7095.02,
+ "text": "Thank"
+ },
+ {
+ "id": 14703,
+ "start": 7095.02,
+ "end": 7095.16,
+ "text": "you"
+ },
+ {
+ "id": 14704,
+ "start": 7095.16,
+ "end": 7095.3,
+ "text": "for"
+ },
+ {
+ "id": 14705,
+ "start": 7095.3,
+ "end": 7095.5,
+ "text": "being"
+ },
+ {
+ "id": 14706,
+ "start": 7095.5,
+ "end": 7095.68,
+ "text": "here"
+ },
+ {
+ "id": 14707,
+ "start": 7095.68,
+ "end": 7096.24,
+ "text": "today,"
+ },
+ {
+ "id": 14708,
+ "start": 7096.24,
+ "end": 7097.32,
+ "text": "Mr"
+ },
+ {
+ "id": 14709,
+ "start": 7097.32,
+ "end": 7098.5,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 14710,
+ "start": 7098.5,
+ "end": 7099.3,
+ "text": "You"
+ },
+ {
+ "id": 14711,
+ "start": 7099.3,
+ "end": 7099.54,
+ "text": "have"
+ },
+ {
+ "id": 14712,
+ "start": 7099.54,
+ "end": 7099.8,
+ "text": "told"
+ },
+ {
+ "id": 14713,
+ "start": 7099.8,
+ "end": 7100.06,
+ "text": "us"
+ },
+ {
+ "id": 14714,
+ "start": 7100.06,
+ "end": 7100.6,
+ "text": "today"
+ },
+ {
+ "id": 14715,
+ "start": 7100.6,
+ "end": 7101.06,
+ "text": "and"
+ },
+ {
+ "id": 14716,
+ "start": 7101.06,
+ "end": 7101.28,
+ "text": "you've"
+ },
+ {
+ "id": 14717,
+ "start": 7101.28,
+ "end": 7101.46,
+ "text": "told"
+ },
+ {
+ "id": 14718,
+ "start": 7101.46,
+ "end": 7101.6,
+ "text": "the"
+ },
+ {
+ "id": 14719,
+ "start": 7101.6,
+ "end": 7101.92,
+ "text": "world"
+ },
+ {
+ "id": 14720,
+ "start": 7101.92,
+ "end": 7102.98,
+ "text": "that"
+ },
+ {
+ "id": 14721,
+ "start": 7102.98,
+ "end": 7103.88,
+ "text": "Facebook"
+ },
+ {
+ "id": 14722,
+ "start": 7103.88,
+ "end": 7104.16,
+ "text": "was"
+ },
+ {
+ "id": 14723,
+ "start": 7104.16,
+ "end": 7104.9,
+ "text": "deceived"
+ },
+ {
+ "id": 14724,
+ "start": 7104.9,
+ "end": 7105.66,
+ "text": "by"
+ },
+ {
+ "id": 14725,
+ "start": 7105.66,
+ "end": 7106.66,
+ "text": "Alexander"
+ },
+ {
+ "id": 14726,
+ "start": 7106.66,
+ "end": 7107.24,
+ "text": "Kogan"
+ },
+ {
+ "id": 14727,
+ "start": 7107.24,
+ "end": 7107.98,
+ "text": "when"
+ },
+ {
+ "id": 14728,
+ "start": 7107.98,
+ "end": 7108.14,
+ "text": "he"
+ },
+ {
+ "id": 14729,
+ "start": 7108.14,
+ "end": 7108.7,
+ "text": "sold"
+ },
+ {
+ "id": 14730,
+ "start": 7108.7,
+ "end": 7109.78,
+ "text": "user"
+ },
+ {
+ "id": 14731,
+ "start": 7109.78,
+ "end": 7110.28,
+ "text": "information"
+ },
+ {
+ "id": 14732,
+ "start": 7110.28,
+ "end": 7110.42,
+ "text": "to"
+ },
+ {
+ "id": 14733,
+ "start": 7110.42,
+ "end": 7110.82,
+ "text": "Cambridge"
+ },
+ {
+ "id": 14734,
+ "start": 7110.82,
+ "end": 7111.44,
+ "text": "Analytica,"
+ },
+ {
+ "id": 14735,
+ "start": 7111.44,
+ "end": 7112.16,
+ "text": "correct."
+ },
+ {
+ "id": 14736,
+ "start": 7112.16,
+ "end": 7113.94,
+ "text": "Yes,"
+ },
+ {
+ "id": 14737,
+ "start": 7113.94,
+ "end": 7113.98,
+ "text": "I"
+ },
+ {
+ "id": 14738,
+ "start": 7113.98,
+ "end": 7114.9,
+ "text": "want"
+ },
+ {
+ "id": 14739,
+ "start": 7114.9,
+ "end": 7115,
+ "text": "to"
+ },
+ {
+ "id": 14740,
+ "start": 7115,
+ "end": 7115.2,
+ "text": "show"
+ },
+ {
+ "id": 14741,
+ "start": 7115.2,
+ "end": 7115.4,
+ "text": "you"
+ },
+ {
+ "id": 14742,
+ "start": 7115.4,
+ "end": 7116.16,
+ "text": "the"
+ },
+ {
+ "id": 14743,
+ "start": 7116.16,
+ "end": 7116.52,
+ "text": "terms"
+ },
+ {
+ "id": 14744,
+ "start": 7116.52,
+ "end": 7116.68,
+ "text": "of"
+ },
+ {
+ "id": 14745,
+ "start": 7116.68,
+ "end": 7117.22,
+ "text": "service"
+ },
+ {
+ "id": 14746,
+ "start": 7117.22,
+ "end": 7118.02,
+ "text": "that"
+ },
+ {
+ "id": 14747,
+ "start": 7118.02,
+ "end": 7119,
+ "text": "Alexander"
+ },
+ {
+ "id": 14748,
+ "start": 7119,
+ "end": 7119.6,
+ "text": "Cogan"
+ },
+ {
+ "id": 14749,
+ "start": 7119.6,
+ "end": 7120.4,
+ "text": "provided"
+ },
+ {
+ "id": 14750,
+ "start": 7120.4,
+ "end": 7120.68,
+ "text": "to"
+ },
+ {
+ "id": 14751,
+ "start": 7120.68,
+ "end": 7122.74,
+ "text": "Facebook"
+ },
+ {
+ "id": 14752,
+ "start": 7122.74,
+ "end": 7123.74,
+ "text": "and"
+ },
+ {
+ "id": 14753,
+ "start": 7123.74,
+ "end": 7124.28,
+ "text": "note"
+ },
+ {
+ "id": 14754,
+ "start": 7124.28,
+ "end": 7124.52,
+ "text": "for"
+ },
+ {
+ "id": 14755,
+ "start": 7124.52,
+ "end": 7125.36,
+ "text": "you"
+ },
+ {
+ "id": 14756,
+ "start": 7125.36,
+ "end": 7126.38,
+ "text": "that,"
+ },
+ {
+ "id": 14757,
+ "start": 7126.38,
+ "end": 7127.08,
+ "text": "in"
+ },
+ {
+ "id": 14758,
+ "start": 7127.08,
+ "end": 7127.58,
+ "text": "fact,"
+ },
+ {
+ "id": 14759,
+ "start": 7127.58,
+ "end": 7128.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 14760,
+ "start": 7128.9,
+ "end": 7129.92,
+ "text": "was"
+ },
+ {
+ "id": 14761,
+ "start": 7129.92,
+ "end": 7130.34,
+ "text": "on"
+ },
+ {
+ "id": 14762,
+ "start": 7130.34,
+ "end": 7130.78,
+ "text": "notice"
+ },
+ {
+ "id": 14763,
+ "start": 7130.78,
+ "end": 7131.28,
+ "text": "that"
+ },
+ {
+ "id": 14764,
+ "start": 7131.28,
+ "end": 7131.66,
+ "text": "he"
+ },
+ {
+ "id": 14765,
+ "start": 7131.66,
+ "end": 7132,
+ "text": "could"
+ },
+ {
+ "id": 14766,
+ "start": 7132,
+ "end": 7132.54,
+ "text": "sell"
+ },
+ {
+ "id": 14767,
+ "start": 7132.54,
+ "end": 7133.34,
+ "text": "that"
+ },
+ {
+ "id": 14768,
+ "start": 7133.34,
+ "end": 7133.64,
+ "text": "user"
+ },
+ {
+ "id": 14769,
+ "start": 7133.64,
+ "end": 7134.18,
+ "text": "information,"
+ },
+ {
+ "id": 14770,
+ "start": 7134.18,
+ "end": 7134.28,
+ "text": "have"
+ },
+ {
+ "id": 14771,
+ "start": 7134.28,
+ "end": 7134.42,
+ "text": "you"
+ },
+ {
+ "id": 14772,
+ "start": 7134.42,
+ "end": 7134.76,
+ "text": "seen"
+ },
+ {
+ "id": 14773,
+ "start": 7134.76,
+ "end": 7134.96,
+ "text": "these"
+ },
+ {
+ "id": 14774,
+ "start": 7134.96,
+ "end": 7135.22,
+ "text": "terms"
+ },
+ {
+ "id": 14775,
+ "start": 7135.22,
+ "end": 7135.34,
+ "text": "of"
+ },
+ {
+ "id": 14776,
+ "start": 7135.34,
+ "end": 7135.68,
+ "text": "service"
+ },
+ {
+ "id": 14777,
+ "start": 7135.68,
+ "end": 7136.04,
+ "text": "before?"
+ },
+ {
+ "id": 14778,
+ "start": 7136.04,
+ "end": 7137.08,
+ "text": "I"
+ },
+ {
+ "id": 14779,
+ "start": 7137.08,
+ "end": 7137.26,
+ "text": "have"
+ },
+ {
+ "id": 14780,
+ "start": 7137.26,
+ "end": 7137.84,
+ "text": "not"
+ },
+ {
+ "id": 14781,
+ "start": 7137.84,
+ "end": 7138.84,
+ "text": "who"
+ },
+ {
+ "id": 14782,
+ "start": 7138.84,
+ "end": 7139.22,
+ "text": "in"
+ },
+ {
+ "id": 14783,
+ "start": 7139.22,
+ "end": 7139.88,
+ "text": "Facebook"
+ },
+ {
+ "id": 14784,
+ "start": 7139.88,
+ "end": 7140.24,
+ "text": "was"
+ },
+ {
+ "id": 14785,
+ "start": 7140.24,
+ "end": 7141,
+ "text": "responsible"
+ },
+ {
+ "id": 14786,
+ "start": 7141,
+ "end": 7141.5,
+ "text": "for"
+ },
+ {
+ "id": 14787,
+ "start": 7141.5,
+ "end": 7141.9,
+ "text": "seeing"
+ },
+ {
+ "id": 14788,
+ "start": 7141.9,
+ "end": 7142.42,
+ "text": "those"
+ },
+ {
+ "id": 14789,
+ "start": 7142.42,
+ "end": 7142.74,
+ "text": "terms"
+ },
+ {
+ "id": 14790,
+ "start": 7142.74,
+ "end": 7142.86,
+ "text": "of"
+ },
+ {
+ "id": 14791,
+ "start": 7142.86,
+ "end": 7143.26,
+ "text": "service"
+ },
+ {
+ "id": 14792,
+ "start": 7143.26,
+ "end": 7143.48,
+ "text": "that"
+ },
+ {
+ "id": 14793,
+ "start": 7143.48,
+ "end": 7144.28,
+ "text": "put"
+ },
+ {
+ "id": 14794,
+ "start": 7144.28,
+ "end": 7144.48,
+ "text": "you"
+ },
+ {
+ "id": 14795,
+ "start": 7144.48,
+ "end": 7144.84,
+ "text": "on"
+ },
+ {
+ "id": 14796,
+ "start": 7144.84,
+ "end": 7146.04,
+ "text": "notice"
+ },
+ {
+ "id": 14797,
+ "start": 7146.04,
+ "end": 7147.02,
+ "text": "that"
+ },
+ {
+ "id": 14798,
+ "start": 7147.02,
+ "end": 7148.02,
+ "text": "that"
+ },
+ {
+ "id": 14799,
+ "start": 7148.02,
+ "end": 7148.66,
+ "text": "information"
+ },
+ {
+ "id": 14800,
+ "start": 7148.66,
+ "end": 7149.54,
+ "text": "could"
+ },
+ {
+ "id": 14801,
+ "start": 7149.54,
+ "end": 7149.66,
+ "text": "be"
+ },
+ {
+ "id": 14802,
+ "start": 7149.66,
+ "end": 7150.88,
+ "text": "sold."
+ },
+ {
+ "id": 14803,
+ "start": 7150.88,
+ "end": 7151.88,
+ "text": "Senator"
+ },
+ {
+ "id": 14804,
+ "start": 7151.88,
+ "end": 7152.14,
+ "text": "or"
+ },
+ {
+ "id": 14805,
+ "start": 7152.14,
+ "end": 7152.38,
+ "text": "a"
+ },
+ {
+ "id": 14806,
+ "start": 7152.38,
+ "end": 7152.7,
+ "text": "review"
+ },
+ {
+ "id": 14807,
+ "start": 7152.7,
+ "end": 7153,
+ "text": "team"
+ },
+ {
+ "id": 14808,
+ "start": 7153,
+ "end": 7153.4,
+ "text": "would"
+ },
+ {
+ "id": 14809,
+ "start": 7153.4,
+ "end": 7153.5,
+ "text": "be"
+ },
+ {
+ "id": 14810,
+ "start": 7153.5,
+ "end": 7154.08,
+ "text": "responsible"
+ },
+ {
+ "id": 14811,
+ "start": 7154.08,
+ "end": 7154.22,
+ "text": "for"
+ },
+ {
+ "id": 14812,
+ "start": 7154.22,
+ "end": 7154.44,
+ "text": "that."
+ },
+ {
+ "id": 14813,
+ "start": 7154.44,
+ "end": 7155.14,
+ "text": "Has"
+ },
+ {
+ "id": 14814,
+ "start": 7155.14,
+ "end": 7155.5,
+ "text": "anyone"
+ },
+ {
+ "id": 14815,
+ "start": 7155.5,
+ "end": 7155.74,
+ "text": "been"
+ },
+ {
+ "id": 14816,
+ "start": 7155.74,
+ "end": 7156.16,
+ "text": "fired"
+ },
+ {
+ "id": 14817,
+ "start": 7156.16,
+ "end": 7156.3,
+ "text": "on"
+ },
+ {
+ "id": 14818,
+ "start": 7156.3,
+ "end": 7156.48,
+ "text": "that?"
+ },
+ {
+ "id": 14819,
+ "start": 7156.48,
+ "end": 7156.68,
+ "text": "A"
+ },
+ {
+ "id": 14820,
+ "start": 7156.68,
+ "end": 7157.48,
+ "text": "review"
+ },
+ {
+ "id": 14821,
+ "start": 7157.48,
+ "end": 7159.2,
+ "text": "team,"
+ },
+ {
+ "id": 14822,
+ "start": 7159.2,
+ "end": 7160.9,
+ "text": "Senator,"
+ },
+ {
+ "id": 14823,
+ "start": 7160.9,
+ "end": 7161.8,
+ "text": "not"
+ },
+ {
+ "id": 14824,
+ "start": 7161.8,
+ "end": 7162.14,
+ "text": "because"
+ },
+ {
+ "id": 14825,
+ "start": 7162.14,
+ "end": 7162.26,
+ "text": "of"
+ },
+ {
+ "id": 14826,
+ "start": 7162.26,
+ "end": 7165.42,
+ "text": "this"
+ },
+ {
+ "id": 14827,
+ "start": 7165.42,
+ "end": 7166.38,
+ "text": "doesn't"
+ },
+ {
+ "id": 14828,
+ "start": 7166.38,
+ "end": 7167.06,
+ "text": "that"
+ },
+ {
+ "id": 14829,
+ "start": 7167.06,
+ "end": 7168.06,
+ "text": "term"
+ },
+ {
+ "id": 14830,
+ "start": 7168.06,
+ "end": 7168.2,
+ "text": "of"
+ },
+ {
+ "id": 14831,
+ "start": 7168.2,
+ "end": 7168.64,
+ "text": "service"
+ },
+ {
+ "id": 14832,
+ "start": 7168.64,
+ "end": 7169.36,
+ "text": "conflict"
+ },
+ {
+ "id": 14833,
+ "start": 7169.36,
+ "end": 7169.84,
+ "text": "with"
+ },
+ {
+ "id": 14834,
+ "start": 7169.84,
+ "end": 7170.28,
+ "text": "the"
+ },
+ {
+ "id": 14835,
+ "start": 7170.28,
+ "end": 7171.32,
+ "text": "FTC"
+ },
+ {
+ "id": 14836,
+ "start": 7171.32,
+ "end": 7172.02,
+ "text": "order"
+ },
+ {
+ "id": 14837,
+ "start": 7172.02,
+ "end": 7173.02,
+ "text": "that"
+ },
+ {
+ "id": 14838,
+ "start": 7173.02,
+ "end": 7173.52,
+ "text": "Facebook"
+ },
+ {
+ "id": 14839,
+ "start": 7173.52,
+ "end": 7173.68,
+ "text": "was"
+ },
+ {
+ "id": 14840,
+ "start": 7173.68,
+ "end": 7174,
+ "text": "under"
+ },
+ {
+ "id": 14841,
+ "start": 7174,
+ "end": 7174.18,
+ "text": "at"
+ },
+ {
+ "id": 14842,
+ "start": 7174.18,
+ "end": 7174.46,
+ "text": "that"
+ },
+ {
+ "id": 14843,
+ "start": 7174.46,
+ "end": 7174.74,
+ "text": "very"
+ },
+ {
+ "id": 14844,
+ "start": 7174.74,
+ "end": 7175.32,
+ "text": "time"
+ },
+ {
+ "id": 14845,
+ "start": 7175.32,
+ "end": 7176.18,
+ "text": "that"
+ },
+ {
+ "id": 14846,
+ "start": 7176.18,
+ "end": 7176.5,
+ "text": "this"
+ },
+ {
+ "id": 14847,
+ "start": 7176.5,
+ "end": 7177.36,
+ "text": "term"
+ },
+ {
+ "id": 14848,
+ "start": 7177.36,
+ "end": 7177.46,
+ "text": "of"
+ },
+ {
+ "id": 14849,
+ "start": 7177.46,
+ "end": 7177.9,
+ "text": "service"
+ },
+ {
+ "id": 14850,
+ "start": 7177.9,
+ "end": 7178.96,
+ "text": "was"
+ },
+ {
+ "id": 14851,
+ "start": 7178.96,
+ "end": 7179.6,
+ "text": "in"
+ },
+ {
+ "id": 14852,
+ "start": 7179.6,
+ "end": 7180.64,
+ "text": "fact,"
+ },
+ {
+ "id": 14853,
+ "start": 7180.64,
+ "end": 7181.76,
+ "text": "provided"
+ },
+ {
+ "id": 14854,
+ "start": 7181.76,
+ "end": 7181.88,
+ "text": "to"
+ },
+ {
+ "id": 14855,
+ "start": 7181.88,
+ "end": 7182.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 14856,
+ "start": 7182.34,
+ "end": 7182.5,
+ "text": "and"
+ },
+ {
+ "id": 14857,
+ "start": 7182.5,
+ "end": 7182.74,
+ "text": "you'll"
+ },
+ {
+ "id": 14858,
+ "start": 7182.74,
+ "end": 7183.1,
+ "text": "note"
+ },
+ {
+ "id": 14859,
+ "start": 7183.1,
+ "end": 7183.78,
+ "text": "that"
+ },
+ {
+ "id": 14860,
+ "start": 7183.78,
+ "end": 7186.62,
+ "text": "the"
+ },
+ {
+ "id": 14861,
+ "start": 7186.62,
+ "end": 7187.7,
+ "text": "FTC"
+ },
+ {
+ "id": 14862,
+ "start": 7187.7,
+ "end": 7187.96,
+ "text": "order"
+ },
+ {
+ "id": 14863,
+ "start": 7187.96,
+ "end": 7188.94,
+ "text": "specifically"
+ },
+ {
+ "id": 14864,
+ "start": 7188.94,
+ "end": 7190.1,
+ "text": "requires"
+ },
+ {
+ "id": 14865,
+ "start": 7190.1,
+ "end": 7190.66,
+ "text": "Facebook"
+ },
+ {
+ "id": 14866,
+ "start": 7190.66,
+ "end": 7190.86,
+ "text": "to"
+ },
+ {
+ "id": 14867,
+ "start": 7190.86,
+ "end": 7191.26,
+ "text": "protect"
+ },
+ {
+ "id": 14868,
+ "start": 7191.26,
+ "end": 7191.88,
+ "text": "privacy"
+ },
+ {
+ "id": 14869,
+ "start": 7191.88,
+ "end": 7192.06,
+ "text": "isn't"
+ },
+ {
+ "id": 14870,
+ "start": 7192.06,
+ "end": 7192.22,
+ "text": "there"
+ },
+ {
+ "id": 14871,
+ "start": 7192.22,
+ "end": 7192.3,
+ "text": "a"
+ },
+ {
+ "id": 14872,
+ "start": 7192.3,
+ "end": 7192.72,
+ "text": "conflict"
+ },
+ {
+ "id": 14873,
+ "start": 7192.72,
+ "end": 7194.52,
+ "text": "there."
+ },
+ {
+ "id": 14874,
+ "start": 7194.52,
+ "end": 7195.52,
+ "text": "Senator."
+ },
+ {
+ "id": 14875,
+ "start": 7195.52,
+ "end": 7195.92,
+ "text": "It"
+ },
+ {
+ "id": 14876,
+ "start": 7195.92,
+ "end": 7196.32,
+ "text": "certainly"
+ },
+ {
+ "id": 14877,
+ "start": 7196.32,
+ "end": 7196.82,
+ "text": "appears"
+ },
+ {
+ "id": 14878,
+ "start": 7196.82,
+ "end": 7197.36,
+ "text": "that"
+ },
+ {
+ "id": 14879,
+ "start": 7197.36,
+ "end": 7197.8,
+ "text": "we"
+ },
+ {
+ "id": 14880,
+ "start": 7197.8,
+ "end": 7198.04,
+ "text": "should"
+ },
+ {
+ "id": 14881,
+ "start": 7198.04,
+ "end": 7198.18,
+ "text": "have"
+ },
+ {
+ "id": 14882,
+ "start": 7198.18,
+ "end": 7198.34,
+ "text": "been"
+ },
+ {
+ "id": 14883,
+ "start": 7198.34,
+ "end": 7198.62,
+ "text": "aware"
+ },
+ {
+ "id": 14884,
+ "start": 7198.62,
+ "end": 7199,
+ "text": "that"
+ },
+ {
+ "id": 14885,
+ "start": 7199,
+ "end": 7199.46,
+ "text": "this"
+ },
+ {
+ "id": 14886,
+ "start": 7199.46,
+ "end": 7199.7,
+ "text": "app"
+ },
+ {
+ "id": 14887,
+ "start": 7199.7,
+ "end": 7200.14,
+ "text": "developer"
+ },
+ {
+ "id": 14888,
+ "start": 7200.14,
+ "end": 7200.62,
+ "text": "submitted"
+ },
+ {
+ "id": 14889,
+ "start": 7200.62,
+ "end": 7200.7,
+ "text": "a"
+ },
+ {
+ "id": 14890,
+ "start": 7200.7,
+ "end": 7201.12,
+ "text": "term"
+ },
+ {
+ "id": 14891,
+ "start": 7201.12,
+ "end": 7201.88,
+ "text": "that"
+ },
+ {
+ "id": 14892,
+ "start": 7201.88,
+ "end": 7202.26,
+ "text": "was"
+ },
+ {
+ "id": 14893,
+ "start": 7202.26,
+ "end": 7202.42,
+ "text": "in"
+ },
+ {
+ "id": 14894,
+ "start": 7202.42,
+ "end": 7202.9,
+ "text": "conflict"
+ },
+ {
+ "id": 14895,
+ "start": 7202.9,
+ "end": 7203.08,
+ "text": "with"
+ },
+ {
+ "id": 14896,
+ "start": 7203.08,
+ "end": 7203.18,
+ "text": "the"
+ },
+ {
+ "id": 14897,
+ "start": 7203.18,
+ "end": 7203.4,
+ "text": "rules"
+ },
+ {
+ "id": 14898,
+ "start": 7203.4,
+ "end": 7203.52,
+ "text": "of"
+ },
+ {
+ "id": 14899,
+ "start": 7203.52,
+ "end": 7203.64,
+ "text": "the"
+ },
+ {
+ "id": 14900,
+ "start": 7203.64,
+ "end": 7204.16,
+ "text": "platform."
+ }
+ ],
+ "paragraphs": [
+ {
+ "id": 0,
+ "start": 0,
+ "end": 228.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1,
+ "start": 228.02,
+ "end": 320.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2,
+ "start": 320.68,
+ "end": 434.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 3,
+ "start": 434.04,
+ "end": 801.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 4,
+ "start": 801.26,
+ "end": 1194.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 5,
+ "start": 1194.64,
+ "end": 1198.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 6,
+ "start": 1198.16,
+ "end": 1211.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 7,
+ "start": 1211.92,
+ "end": 1215.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 8,
+ "start": 1215.92,
+ "end": 1240.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 9,
+ "start": 1240.68,
+ "end": 1246.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 10,
+ "start": 1246.12,
+ "end": 1251.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 11,
+ "start": 1251.2,
+ "end": 1257.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 12,
+ "start": 1257.34,
+ "end": 1266.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 13,
+ "start": 1266.34,
+ "end": 1272.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 14,
+ "start": 1272.92,
+ "end": 1292.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 15,
+ "start": 1292.52,
+ "end": 1301.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 16,
+ "start": 1301.2,
+ "end": 1308.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 17,
+ "start": 1308.04,
+ "end": 1318.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 18,
+ "start": 1318.12,
+ "end": 1327.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 19,
+ "start": 1327.62,
+ "end": 1329.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 20,
+ "start": 1329.04,
+ "end": 1342.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 21,
+ "start": 1342.66,
+ "end": 1345.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 22,
+ "start": 1345.6,
+ "end": 1349.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 23,
+ "start": 1349.24,
+ "end": 1351.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 24,
+ "start": 1351.06,
+ "end": 1353.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 25,
+ "start": 1353.18,
+ "end": 1367.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 26,
+ "start": 1367.42,
+ "end": 1382.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 27,
+ "start": 1382.86,
+ "end": 1393.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 28,
+ "start": 1393.24,
+ "end": 1395.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 29,
+ "start": 1395.06,
+ "end": 1403.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 30,
+ "start": 1403.94,
+ "end": 1410.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 31,
+ "start": 1410.6,
+ "end": 1414.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 32,
+ "start": 1414.98,
+ "end": 1426.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 33,
+ "start": 1426.01,
+ "end": 1429.57,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 34,
+ "start": 1429.57,
+ "end": 1437.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 35,
+ "start": 1437.04,
+ "end": 1450.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 36,
+ "start": 1450.8,
+ "end": 1459.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 37,
+ "start": 1459.66,
+ "end": 1478.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 38,
+ "start": 1478.8,
+ "end": 1486.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 39,
+ "start": 1486.4,
+ "end": 1494.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 40,
+ "start": 1494.76,
+ "end": 1500.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 41,
+ "start": 1500.26,
+ "end": 1525.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 42,
+ "start": 1525.78,
+ "end": 1531.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 43,
+ "start": 1531.7,
+ "end": 1535.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 44,
+ "start": 1535.9,
+ "end": 1546.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 45,
+ "start": 1546.76,
+ "end": 1548.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 46,
+ "start": 1548.28,
+ "end": 1568.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 47,
+ "start": 1568.16,
+ "end": 1571.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 48,
+ "start": 1571.06,
+ "end": 1581.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 49,
+ "start": 1581.76,
+ "end": 1584.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 50,
+ "start": 1584.22,
+ "end": 1598.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 51,
+ "start": 1598.12,
+ "end": 1606.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 52,
+ "start": 1606.06,
+ "end": 1610.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 53,
+ "start": 1610.84,
+ "end": 1621.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 54,
+ "start": 1621.26,
+ "end": 1630.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 55,
+ "start": 1630.48,
+ "end": 1639.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 56,
+ "start": 1639.56,
+ "end": 1642.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 57,
+ "start": 1642.32,
+ "end": 1647.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 58,
+ "start": 1647.2,
+ "end": 1650.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 59,
+ "start": 1650.78,
+ "end": 1662.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 60,
+ "start": 1662.76,
+ "end": 1712.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 61,
+ "start": 1712.78,
+ "end": 1722.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 62,
+ "start": 1722.54,
+ "end": 1754.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 63,
+ "start": 1754.36,
+ "end": 1766.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 64,
+ "start": 1766.42,
+ "end": 1782.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 65,
+ "start": 1782.26,
+ "end": 1790.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 66,
+ "start": 1790.42,
+ "end": 1797.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 67,
+ "start": 1797.82,
+ "end": 1811.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 68,
+ "start": 1811.96,
+ "end": 1821.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 69,
+ "start": 1821.48,
+ "end": 1830.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 70,
+ "start": 1830.52,
+ "end": 1838.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 71,
+ "start": 1838.02,
+ "end": 1873.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 72,
+ "start": 1873.9,
+ "end": 1890.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 73,
+ "start": 1890.1,
+ "end": 1892.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 74,
+ "start": 1892.36,
+ "end": 1895.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 75,
+ "start": 1895.42,
+ "end": 1899.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 76,
+ "start": 1899.5,
+ "end": 1902.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 77,
+ "start": 1902.64,
+ "end": 1905.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 78,
+ "start": 1905.22,
+ "end": 1920.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 79,
+ "start": 1920.26,
+ "end": 1935.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 80,
+ "start": 1935.72,
+ "end": 1946.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 81,
+ "start": 1946.54,
+ "end": 1947.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 82,
+ "start": 1947.66,
+ "end": 1966.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 83,
+ "start": 1966.5,
+ "end": 1971.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 84,
+ "start": 1971.56,
+ "end": 1978.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 85,
+ "start": 1978.2,
+ "end": 1986.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 86,
+ "start": 1986.3,
+ "end": 2001.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 87,
+ "start": 2001.44,
+ "end": 2011.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 88,
+ "start": 2011.7,
+ "end": 2024.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 89,
+ "start": 2024.56,
+ "end": 2030.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 90,
+ "start": 2030.36,
+ "end": 2037.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 91,
+ "start": 2037.56,
+ "end": 2044.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 92,
+ "start": 2044.22,
+ "end": 2078.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 93,
+ "start": 2078.94,
+ "end": 2110.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 94,
+ "start": 2110.66,
+ "end": 2125.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 95,
+ "start": 2125.78,
+ "end": 2138.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 96,
+ "start": 2138.92,
+ "end": 2152.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 97,
+ "start": 2152.06,
+ "end": 2170.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 98,
+ "start": 2170.84,
+ "end": 2177.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 99,
+ "start": 2177.48,
+ "end": 2189.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 100,
+ "start": 2189.76,
+ "end": 2196.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 101,
+ "start": 2196.04,
+ "end": 2211.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 102,
+ "start": 2211.76,
+ "end": 2212.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 103,
+ "start": 2212.68,
+ "end": 2225.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 104,
+ "start": 2225.74,
+ "end": 2229.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 105,
+ "start": 2229.08,
+ "end": 2231.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 106,
+ "start": 2231.84,
+ "end": 2234.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 107,
+ "start": 2234.04,
+ "end": 2240.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 108,
+ "start": 2240.92,
+ "end": 2265.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 109,
+ "start": 2265.8,
+ "end": 2294.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 110,
+ "start": 2294.44,
+ "end": 2302.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 111,
+ "start": 2302.82,
+ "end": 2309.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 112,
+ "start": 2309.42,
+ "end": 2328.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 113,
+ "start": 2328.7,
+ "end": 2341.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 114,
+ "start": 2341.8,
+ "end": 2347.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 115,
+ "start": 2347.02,
+ "end": 2349.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 116,
+ "start": 2349.24,
+ "end": 2363.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 117,
+ "start": 2363.42,
+ "end": 2371.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 118,
+ "start": 2371.1,
+ "end": 2385.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 119,
+ "start": 2385.14,
+ "end": 2387.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 120,
+ "start": 2387.6,
+ "end": 2391.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 121,
+ "start": 2391.18,
+ "end": 2396.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 122,
+ "start": 2396.08,
+ "end": 2400.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 123,
+ "start": 2400.52,
+ "end": 2426.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 124,
+ "start": 2426.94,
+ "end": 2432.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 125,
+ "start": 2432.7,
+ "end": 2437.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 126,
+ "start": 2437.44,
+ "end": 2457.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 127,
+ "start": 2457.82,
+ "end": 2471.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 128,
+ "start": 2471.93,
+ "end": 2476.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 129,
+ "start": 2476.38,
+ "end": 2497.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 130,
+ "start": 2497.6,
+ "end": 2508.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 131,
+ "start": 2508.01,
+ "end": 2519.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 132,
+ "start": 2519.24,
+ "end": 2520.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 133,
+ "start": 2520.92,
+ "end": 2522.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 134,
+ "start": 2522.3,
+ "end": 2525.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 135,
+ "start": 2525.44,
+ "end": 2528.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 136,
+ "start": 2528.26,
+ "end": 2537.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 137,
+ "start": 2537.92,
+ "end": 2550.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 138,
+ "start": 2550.08,
+ "end": 2556.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 139,
+ "start": 2556.66,
+ "end": 2558.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 140,
+ "start": 2558.64,
+ "end": 2562.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 141,
+ "start": 2562.04,
+ "end": 2582.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 142,
+ "start": 2582.1,
+ "end": 2594.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 143,
+ "start": 2594.34,
+ "end": 2599.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 144,
+ "start": 2599.96,
+ "end": 2611.51,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 145,
+ "start": 2611.51,
+ "end": 2613.35,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 146,
+ "start": 2613.35,
+ "end": 2615.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 147,
+ "start": 2615.05,
+ "end": 2623.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 148,
+ "start": 2623.28,
+ "end": 2635.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 149,
+ "start": 2635.7,
+ "end": 2647.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 150,
+ "start": 2647.16,
+ "end": 2649.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 151,
+ "start": 2649.68,
+ "end": 2656.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 152,
+ "start": 2656.42,
+ "end": 2662.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 153,
+ "start": 2662.66,
+ "end": 2665.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 154,
+ "start": 2665.56,
+ "end": 2669.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 155,
+ "start": 2669.94,
+ "end": 2682.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 156,
+ "start": 2682.46,
+ "end": 2691.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 157,
+ "start": 2691.72,
+ "end": 2704.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 158,
+ "start": 2704.14,
+ "end": 2713.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 159,
+ "start": 2713.16,
+ "end": 2715.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 160,
+ "start": 2715.74,
+ "end": 2719.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 161,
+ "start": 2719.86,
+ "end": 2722.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 162,
+ "start": 2722.72,
+ "end": 2729.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 163,
+ "start": 2729.52,
+ "end": 2738.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 164,
+ "start": 2738.2,
+ "end": 2744.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 165,
+ "start": 2744.06,
+ "end": 2758.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 166,
+ "start": 2758.1,
+ "end": 2763.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 167,
+ "start": 2763.04,
+ "end": 2770.09,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 168,
+ "start": 2770.09,
+ "end": 2771.77,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 169,
+ "start": 2771.77,
+ "end": 2789.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 170,
+ "start": 2789.82,
+ "end": 2792.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 171,
+ "start": 2792.46,
+ "end": 2797.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 172,
+ "start": 2797.02,
+ "end": 2801,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 173,
+ "start": 2801,
+ "end": 2809.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 174,
+ "start": 2809.78,
+ "end": 2819.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 175,
+ "start": 2819.01,
+ "end": 2828.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 176,
+ "start": 2828.48,
+ "end": 2830.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 177,
+ "start": 2830.36,
+ "end": 2837,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 178,
+ "start": 2837,
+ "end": 2842.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 179,
+ "start": 2842.56,
+ "end": 2847.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 180,
+ "start": 2847.2,
+ "end": 2853.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 181,
+ "start": 2853.34,
+ "end": 2868.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 182,
+ "start": 2868.46,
+ "end": 2879.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 183,
+ "start": 2879.2,
+ "end": 2887.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 184,
+ "start": 2887.34,
+ "end": 2894.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 185,
+ "start": 2894.8,
+ "end": 2903.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 186,
+ "start": 2903.64,
+ "end": 2906.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 187,
+ "start": 2906.96,
+ "end": 2913.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 188,
+ "start": 2913.66,
+ "end": 2915.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 189,
+ "start": 2915.6,
+ "end": 2935.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 190,
+ "start": 2935.08,
+ "end": 2949.13,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 191,
+ "start": 2949.13,
+ "end": 2954.77,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 192,
+ "start": 2954.77,
+ "end": 2964.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 193,
+ "start": 2964.26,
+ "end": 2968.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 194,
+ "start": 2968.01,
+ "end": 2969.19,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 195,
+ "start": 2969.19,
+ "end": 2972.19,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 196,
+ "start": 2972.19,
+ "end": 2978.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 197,
+ "start": 2978.02,
+ "end": 2990.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 198,
+ "start": 2990.54,
+ "end": 3007.55,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 199,
+ "start": 3007.55,
+ "end": 3008.29,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 200,
+ "start": 3008.29,
+ "end": 3014.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 201,
+ "start": 3014.32,
+ "end": 3029.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 202,
+ "start": 3029.16,
+ "end": 3037.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 203,
+ "start": 3037.22,
+ "end": 3050.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 204,
+ "start": 3050.66,
+ "end": 3059.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 205,
+ "start": 3059.32,
+ "end": 3065.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 206,
+ "start": 3065.5,
+ "end": 3071.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 207,
+ "start": 3071.04,
+ "end": 3081.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 208,
+ "start": 3081.76,
+ "end": 3088.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 209,
+ "start": 3088.02,
+ "end": 3118.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 210,
+ "start": 3118.98,
+ "end": 3127.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 211,
+ "start": 3127.3,
+ "end": 3129.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 212,
+ "start": 3129.38,
+ "end": 3137.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 213,
+ "start": 3137.46,
+ "end": 3143.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 214,
+ "start": 3143.15,
+ "end": 3156.51,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 215,
+ "start": 3156.51,
+ "end": 3186.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 216,
+ "start": 3186.24,
+ "end": 3192.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 217,
+ "start": 3192.66,
+ "end": 3215.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 218,
+ "start": 3215.48,
+ "end": 3227.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 219,
+ "start": 3227.92,
+ "end": 3252.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 220,
+ "start": 3252.5,
+ "end": 3261.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 221,
+ "start": 3261.28,
+ "end": 3272.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 222,
+ "start": 3272.6,
+ "end": 3276.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 223,
+ "start": 3276.84,
+ "end": 3281.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 224,
+ "start": 3281.82,
+ "end": 3285.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 225,
+ "start": 3285.78,
+ "end": 3290.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 226,
+ "start": 3290.92,
+ "end": 3296.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 227,
+ "start": 3296.84,
+ "end": 3313.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 228,
+ "start": 3313.86,
+ "end": 3321.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 229,
+ "start": 3321.96,
+ "end": 3333.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 230,
+ "start": 3333.68,
+ "end": 3337.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 231,
+ "start": 3337.12,
+ "end": 3339.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 232,
+ "start": 3339.62,
+ "end": 3347,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 233,
+ "start": 3347,
+ "end": 3349.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 234,
+ "start": 3349.68,
+ "end": 3351.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 235,
+ "start": 3351.64,
+ "end": 3360.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 236,
+ "start": 3360.62,
+ "end": 3366.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 237,
+ "start": 3366.8,
+ "end": 3378.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 238,
+ "start": 3378.96,
+ "end": 3383.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 239,
+ "start": 3383.76,
+ "end": 3391.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 240,
+ "start": 3391.74,
+ "end": 3399.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 241,
+ "start": 3399.42,
+ "end": 3414.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 242,
+ "start": 3414.82,
+ "end": 3420.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 243,
+ "start": 3420.54,
+ "end": 3425.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 244,
+ "start": 3425.7,
+ "end": 3427.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 245,
+ "start": 3427.64,
+ "end": 3429,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 246,
+ "start": 3429,
+ "end": 3435.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 247,
+ "start": 3435.84,
+ "end": 3437.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 248,
+ "start": 3437.06,
+ "end": 3439.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 249,
+ "start": 3439.82,
+ "end": 3445.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 250,
+ "start": 3445.72,
+ "end": 3464.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 251,
+ "start": 3464.08,
+ "end": 3466.37,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 252,
+ "start": 3466.37,
+ "end": 3469.71,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 253,
+ "start": 3469.71,
+ "end": 3472.79,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 254,
+ "start": 3472.79,
+ "end": 3476.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 255,
+ "start": 3476.34,
+ "end": 3485.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 256,
+ "start": 3485.4,
+ "end": 3489.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 257,
+ "start": 3489.2,
+ "end": 3501.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 258,
+ "start": 3501.08,
+ "end": 3509.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 259,
+ "start": 3509.52,
+ "end": 3518.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 260,
+ "start": 3518.82,
+ "end": 3528.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 261,
+ "start": 3528.02,
+ "end": 3533.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 262,
+ "start": 3533.14,
+ "end": 3535.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 263,
+ "start": 3535.12,
+ "end": 3538.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 264,
+ "start": 3538.24,
+ "end": 3541.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 265,
+ "start": 3541.1,
+ "end": 3544.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 266,
+ "start": 3544.32,
+ "end": 3551.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 267,
+ "start": 3551.96,
+ "end": 3556.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 268,
+ "start": 3556.88,
+ "end": 3562.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 269,
+ "start": 3562.12,
+ "end": 3574.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 270,
+ "start": 3574.46,
+ "end": 3583.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 271,
+ "start": 3583.52,
+ "end": 3587.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 272,
+ "start": 3587.36,
+ "end": 3592.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 273,
+ "start": 3592.4,
+ "end": 3596,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 274,
+ "start": 3596,
+ "end": 3598.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 275,
+ "start": 3598.32,
+ "end": 3602.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 276,
+ "start": 3602.93,
+ "end": 3612.17,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 277,
+ "start": 3612.17,
+ "end": 3624.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 278,
+ "start": 3624.1,
+ "end": 3626.31,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 279,
+ "start": 3626.31,
+ "end": 3640.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 280,
+ "start": 3640.98,
+ "end": 3659.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 281,
+ "start": 3659.02,
+ "end": 3664.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 282,
+ "start": 3664.06,
+ "end": 3666.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 283,
+ "start": 3666.58,
+ "end": 3679.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 284,
+ "start": 3679.4,
+ "end": 3684.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 285,
+ "start": 3684.68,
+ "end": 3686.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 286,
+ "start": 3686.58,
+ "end": 3688.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 287,
+ "start": 3688.52,
+ "end": 3691.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 288,
+ "start": 3691.6,
+ "end": 3697.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 289,
+ "start": 3697.52,
+ "end": 3699.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 290,
+ "start": 3699.32,
+ "end": 3705.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 291,
+ "start": 3705.4,
+ "end": 3709.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 292,
+ "start": 3709.34,
+ "end": 3719.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 293,
+ "start": 3719.1,
+ "end": 3725.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 294,
+ "start": 3725.68,
+ "end": 3736.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 295,
+ "start": 3736.92,
+ "end": 3749.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 296,
+ "start": 3749.72,
+ "end": 3753.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 297,
+ "start": 3753.26,
+ "end": 3760.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 298,
+ "start": 3760.26,
+ "end": 3766.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 299,
+ "start": 3766.92,
+ "end": 3769.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 300,
+ "start": 3769.88,
+ "end": 3777.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 301,
+ "start": 3777.32,
+ "end": 3787.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 302,
+ "start": 3787.66,
+ "end": 3800.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 303,
+ "start": 3800.44,
+ "end": 3802.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 304,
+ "start": 3802.56,
+ "end": 3805.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 305,
+ "start": 3805.82,
+ "end": 3807.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 306,
+ "start": 3807.64,
+ "end": 3815.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 307,
+ "start": 3815.08,
+ "end": 3817.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 308,
+ "start": 3817.4,
+ "end": 3821.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 309,
+ "start": 3821.82,
+ "end": 3828.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 310,
+ "start": 3828.98,
+ "end": 3830.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 311,
+ "start": 3830.42,
+ "end": 3852.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 312,
+ "start": 3852.08,
+ "end": 3856.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 313,
+ "start": 3856.34,
+ "end": 3859.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 314,
+ "start": 3859.92,
+ "end": 3863.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 315,
+ "start": 3863.84,
+ "end": 3869.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 316,
+ "start": 3869.6,
+ "end": 3872.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 317,
+ "start": 3872.44,
+ "end": 3881.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 318,
+ "start": 3881.69,
+ "end": 3893.23,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 319,
+ "start": 3893.23,
+ "end": 3896.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 320,
+ "start": 3896.42,
+ "end": 3898.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 321,
+ "start": 3898.86,
+ "end": 3900.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 322,
+ "start": 3900.28,
+ "end": 3909.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 323,
+ "start": 3909.66,
+ "end": 3911.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 324,
+ "start": 3911.72,
+ "end": 3919.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 325,
+ "start": 3919.94,
+ "end": 3931.55,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 326,
+ "start": 3931.55,
+ "end": 3934.95,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 327,
+ "start": 3934.95,
+ "end": 3938.11,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 328,
+ "start": 3938.11,
+ "end": 3946.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 329,
+ "start": 3946.52,
+ "end": 3952.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 330,
+ "start": 3952.94,
+ "end": 3959.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 331,
+ "start": 3959.6,
+ "end": 3963.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 332,
+ "start": 3963.8,
+ "end": 3965.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 333,
+ "start": 3965.42,
+ "end": 3971.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 334,
+ "start": 3971.22,
+ "end": 3978.73,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 335,
+ "start": 3978.73,
+ "end": 3983.55,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 336,
+ "start": 3983.55,
+ "end": 3987.87,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 337,
+ "start": 3987.87,
+ "end": 3991.41,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 338,
+ "start": 3991.41,
+ "end": 4010.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 339,
+ "start": 4010.5,
+ "end": 4012.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 340,
+ "start": 4012.1,
+ "end": 4021.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 341,
+ "start": 4021.69,
+ "end": 4023.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 342,
+ "start": 4023.88,
+ "end": 4028.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 343,
+ "start": 4028.08,
+ "end": 4035.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 344,
+ "start": 4035.96,
+ "end": 4042.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 345,
+ "start": 4042.76,
+ "end": 4053.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 346,
+ "start": 4053.84,
+ "end": 4067.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 347,
+ "start": 4067.18,
+ "end": 4070.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 348,
+ "start": 4070.9,
+ "end": 4073.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 349,
+ "start": 4073.56,
+ "end": 4088.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 350,
+ "start": 4088.64,
+ "end": 4092.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 351,
+ "start": 4092.08,
+ "end": 4096.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 352,
+ "start": 4096.52,
+ "end": 4100.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 353,
+ "start": 4100.16,
+ "end": 4112.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 354,
+ "start": 4112.22,
+ "end": 4114.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 355,
+ "start": 4114.64,
+ "end": 4116.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 356,
+ "start": 4116.84,
+ "end": 4118.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 357,
+ "start": 4118.3,
+ "end": 4120.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 358,
+ "start": 4120.62,
+ "end": 4133.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 359,
+ "start": 4133.68,
+ "end": 4142.13,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 360,
+ "start": 4142.13,
+ "end": 4159.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 361,
+ "start": 4159.68,
+ "end": 4164.45,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 362,
+ "start": 4164.45,
+ "end": 4166.99,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 363,
+ "start": 4166.99,
+ "end": 4171.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 364,
+ "start": 4171.93,
+ "end": 4180.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 365,
+ "start": 4180.3,
+ "end": 4181.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 366,
+ "start": 4181.12,
+ "end": 4183.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 367,
+ "start": 4183.02,
+ "end": 4184.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 368,
+ "start": 4184.02,
+ "end": 4187.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 369,
+ "start": 4187.38,
+ "end": 4190.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 370,
+ "start": 4190.88,
+ "end": 4196.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 371,
+ "start": 4196.26,
+ "end": 4213.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 372,
+ "start": 4213.78,
+ "end": 4222.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 373,
+ "start": 4222.84,
+ "end": 4231.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 374,
+ "start": 4231.1,
+ "end": 4236.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 375,
+ "start": 4236.58,
+ "end": 4241.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 376,
+ "start": 4241.02,
+ "end": 4245.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 377,
+ "start": 4245.12,
+ "end": 4248.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 378,
+ "start": 4248.28,
+ "end": 4254.31,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 379,
+ "start": 4254.31,
+ "end": 4258.85,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 380,
+ "start": 4258.85,
+ "end": 4265.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 381,
+ "start": 4265.34,
+ "end": 4266.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 382,
+ "start": 4266.88,
+ "end": 4271.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 383,
+ "start": 4271.02,
+ "end": 4282.49,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 384,
+ "start": 4282.49,
+ "end": 4295.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 385,
+ "start": 4295.64,
+ "end": 4303.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 386,
+ "start": 4303.58,
+ "end": 4320.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 387,
+ "start": 4320.98,
+ "end": 4339.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 388,
+ "start": 4339.12,
+ "end": 4349.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 389,
+ "start": 4349.8,
+ "end": 4356.57,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 390,
+ "start": 4356.57,
+ "end": 4361.17,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 391,
+ "start": 4361.17,
+ "end": 4376.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 392,
+ "start": 4376.66,
+ "end": 4400.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 393,
+ "start": 4400.98,
+ "end": 4411.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 394,
+ "start": 4411.14,
+ "end": 4426.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 395,
+ "start": 4426.68,
+ "end": 4427.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 396,
+ "start": 4427.62,
+ "end": 4430.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 397,
+ "start": 4430.2,
+ "end": 4431.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 398,
+ "start": 4431.98,
+ "end": 4438.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 399,
+ "start": 4438.5,
+ "end": 4444.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 400,
+ "start": 4444.08,
+ "end": 4447.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 401,
+ "start": 4447.66,
+ "end": 4448.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 402,
+ "start": 4448.44,
+ "end": 4465.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 403,
+ "start": 4465.58,
+ "end": 4471.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 404,
+ "start": 4471.14,
+ "end": 4482.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 405,
+ "start": 4482.92,
+ "end": 4498.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 406,
+ "start": 4498.44,
+ "end": 4500.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 407,
+ "start": 4500.22,
+ "end": 4502.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 408,
+ "start": 4502.06,
+ "end": 4504.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 409,
+ "start": 4504.5,
+ "end": 4505.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 410,
+ "start": 4505.82,
+ "end": 4510.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 411,
+ "start": 4510.84,
+ "end": 4524.11,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 412,
+ "start": 4524.11,
+ "end": 4524.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 413,
+ "start": 4524.59,
+ "end": 4529.97,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 414,
+ "start": 4529.97,
+ "end": 4534.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 415,
+ "start": 4534.6,
+ "end": 4537.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 416,
+ "start": 4537.4,
+ "end": 4538.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 417,
+ "start": 4538.38,
+ "end": 4541.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 418,
+ "start": 4541.8,
+ "end": 4543.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 419,
+ "start": 4543.68,
+ "end": 4546.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 420,
+ "start": 4546.16,
+ "end": 4547.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 421,
+ "start": 4547.88,
+ "end": 4548.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 422,
+ "start": 4548.92,
+ "end": 4570.31,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 423,
+ "start": 4570.31,
+ "end": 4574.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 424,
+ "start": 4574.16,
+ "end": 4581.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 425,
+ "start": 4581.92,
+ "end": 4598.23,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 426,
+ "start": 4598.23,
+ "end": 4613.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 427,
+ "start": 4613.64,
+ "end": 4617.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 428,
+ "start": 4617.8,
+ "end": 4630.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 429,
+ "start": 4630.96,
+ "end": 4643.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 430,
+ "start": 4643.94,
+ "end": 4653.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 431,
+ "start": 4653.1,
+ "end": 4666.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 432,
+ "start": 4666.5,
+ "end": 4677.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 433,
+ "start": 4677.5,
+ "end": 4685.99,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 434,
+ "start": 4685.99,
+ "end": 4700.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 435,
+ "start": 4700.26,
+ "end": 4702.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 436,
+ "start": 4702.72,
+ "end": 4704.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 437,
+ "start": 4704.68,
+ "end": 4709.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 438,
+ "start": 4709.38,
+ "end": 4717.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 439,
+ "start": 4717.9,
+ "end": 4724.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 440,
+ "start": 4724.54,
+ "end": 4730.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 441,
+ "start": 4730.66,
+ "end": 4733.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 442,
+ "start": 4733.8,
+ "end": 4752.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 443,
+ "start": 4752.74,
+ "end": 4760.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 444,
+ "start": 4760.64,
+ "end": 4764.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 445,
+ "start": 4764.88,
+ "end": 4770.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 446,
+ "start": 4770.16,
+ "end": 4778.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 447,
+ "start": 4778.92,
+ "end": 4787.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 448,
+ "start": 4787.24,
+ "end": 4788.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 449,
+ "start": 4788.28,
+ "end": 4806.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 450,
+ "start": 4806.78,
+ "end": 4817.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 451,
+ "start": 4817.64,
+ "end": 4819.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 452,
+ "start": 4819.92,
+ "end": 4835.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 453,
+ "start": 4835.38,
+ "end": 4847.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 454,
+ "start": 4847.86,
+ "end": 4865.17,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 455,
+ "start": 4865.17,
+ "end": 4873,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 456,
+ "start": 4873,
+ "end": 4874.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 457,
+ "start": 4874.26,
+ "end": 4888.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 458,
+ "start": 4888.59,
+ "end": 4895.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 459,
+ "start": 4895.64,
+ "end": 4899.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 460,
+ "start": 4899.2,
+ "end": 4900.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 461,
+ "start": 4900.46,
+ "end": 4906.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 462,
+ "start": 4906.88,
+ "end": 4922.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 463,
+ "start": 4922.74,
+ "end": 4933.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 464,
+ "start": 4933.7,
+ "end": 4936.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 465,
+ "start": 4936.58,
+ "end": 4945.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 466,
+ "start": 4945.59,
+ "end": 4951.73,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 467,
+ "start": 4951.73,
+ "end": 4958.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 468,
+ "start": 4958.02,
+ "end": 4962.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 469,
+ "start": 4962.34,
+ "end": 4978.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 470,
+ "start": 4978.28,
+ "end": 4983.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 471,
+ "start": 4983.88,
+ "end": 4997.33,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 472,
+ "start": 4997.33,
+ "end": 5001.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 473,
+ "start": 5001.74,
+ "end": 5006.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 474,
+ "start": 5006.4,
+ "end": 5007.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 475,
+ "start": 5007.28,
+ "end": 5009.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 476,
+ "start": 5009.38,
+ "end": 5015.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 477,
+ "start": 5015.02,
+ "end": 5021.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 478,
+ "start": 5021.38,
+ "end": 5022.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 479,
+ "start": 5022.18,
+ "end": 5025.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 480,
+ "start": 5025.64,
+ "end": 5026.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 481,
+ "start": 5026.7,
+ "end": 5032.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 482,
+ "start": 5032.18,
+ "end": 5045.89,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 483,
+ "start": 5045.89,
+ "end": 5051.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 484,
+ "start": 5051.14,
+ "end": 5052.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 485,
+ "start": 5052.18,
+ "end": 5054.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 486,
+ "start": 5054.46,
+ "end": 5056.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 487,
+ "start": 5056.98,
+ "end": 5058.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 488,
+ "start": 5058.04,
+ "end": 5067.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 489,
+ "start": 5067.74,
+ "end": 5078.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 490,
+ "start": 5078.74,
+ "end": 5084.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 491,
+ "start": 5084.59,
+ "end": 5096.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 492,
+ "start": 5096.46,
+ "end": 5098.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 493,
+ "start": 5098.12,
+ "end": 5098.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 494,
+ "start": 5098.88,
+ "end": 5099.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 495,
+ "start": 5099.86,
+ "end": 5102.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 496,
+ "start": 5102.28,
+ "end": 5114.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 497,
+ "start": 5114.3,
+ "end": 5121.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 498,
+ "start": 5121.86,
+ "end": 5124.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 499,
+ "start": 5124.4,
+ "end": 5128.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 500,
+ "start": 5128.44,
+ "end": 5130.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 501,
+ "start": 5130.04,
+ "end": 5137.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 502,
+ "start": 5137.88,
+ "end": 5146.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 503,
+ "start": 5146.6,
+ "end": 5149.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 504,
+ "start": 5149.12,
+ "end": 5149.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 505,
+ "start": 5149.9,
+ "end": 5152.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 506,
+ "start": 5152.62,
+ "end": 5159.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 507,
+ "start": 5159.12,
+ "end": 5170.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 508,
+ "start": 5170.92,
+ "end": 5179.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 509,
+ "start": 5179.48,
+ "end": 5179.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 510,
+ "start": 5179.96,
+ "end": 5189.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 511,
+ "start": 5189.68,
+ "end": 5197.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 512,
+ "start": 5197.06,
+ "end": 5205.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 513,
+ "start": 5205.5,
+ "end": 5213.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 514,
+ "start": 5213.78,
+ "end": 5217.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 515,
+ "start": 5217.84,
+ "end": 5225.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 516,
+ "start": 5225.34,
+ "end": 5240.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 517,
+ "start": 5240.58,
+ "end": 5242.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 518,
+ "start": 5242.98,
+ "end": 5246.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 519,
+ "start": 5246.82,
+ "end": 5249.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 520,
+ "start": 5249.62,
+ "end": 5251.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 521,
+ "start": 5251.66,
+ "end": 5254.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 522,
+ "start": 5254.84,
+ "end": 5262.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 523,
+ "start": 5262.9,
+ "end": 5266.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 524,
+ "start": 5266.8,
+ "end": 5281.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 525,
+ "start": 5281.15,
+ "end": 5289.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 526,
+ "start": 5289.38,
+ "end": 5297.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 527,
+ "start": 5297.06,
+ "end": 5300.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 528,
+ "start": 5300.59,
+ "end": 5303.77,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 529,
+ "start": 5303.77,
+ "end": 5308.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 530,
+ "start": 5308.15,
+ "end": 5329.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 531,
+ "start": 5329.86,
+ "end": 5333.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 532,
+ "start": 5333.72,
+ "end": 5337.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 533,
+ "start": 5337.64,
+ "end": 5339.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 534,
+ "start": 5339.2,
+ "end": 5340.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 535,
+ "start": 5340.28,
+ "end": 5340.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 536,
+ "start": 5340.7,
+ "end": 5349.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 537,
+ "start": 5349.56,
+ "end": 5352.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 538,
+ "start": 5352.18,
+ "end": 5354.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 539,
+ "start": 5354.3,
+ "end": 5363.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 540,
+ "start": 5363.12,
+ "end": 5365.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 541,
+ "start": 5365.86,
+ "end": 5373.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 542,
+ "start": 5373.46,
+ "end": 5376.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 543,
+ "start": 5376.72,
+ "end": 5385.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 544,
+ "start": 5385.54,
+ "end": 5413.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 545,
+ "start": 5413.34,
+ "end": 5416.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 546,
+ "start": 5416.04,
+ "end": 5417.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 547,
+ "start": 5417.02,
+ "end": 5425.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 548,
+ "start": 5425.7,
+ "end": 5430.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 549,
+ "start": 5430.2,
+ "end": 5431.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 550,
+ "start": 5431.9,
+ "end": 5435.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 551,
+ "start": 5435.3,
+ "end": 5450.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 552,
+ "start": 5450.64,
+ "end": 5453.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 553,
+ "start": 5453.38,
+ "end": 5455.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 554,
+ "start": 5455.14,
+ "end": 5461.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 555,
+ "start": 5461.02,
+ "end": 5467.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 556,
+ "start": 5467.26,
+ "end": 5469.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 557,
+ "start": 5469.8,
+ "end": 5473.91,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 558,
+ "start": 5473.91,
+ "end": 5479.29,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 559,
+ "start": 5479.29,
+ "end": 5484.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 560,
+ "start": 5484.76,
+ "end": 5491,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 561,
+ "start": 5491,
+ "end": 5493.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 562,
+ "start": 5493.6,
+ "end": 5502,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 563,
+ "start": 5502,
+ "end": 5509.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 564,
+ "start": 5509.5,
+ "end": 5516.89,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 565,
+ "start": 5516.89,
+ "end": 5519.53,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 566,
+ "start": 5519.53,
+ "end": 5520.87,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 567,
+ "start": 5520.87,
+ "end": 5521.39,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 568,
+ "start": 5521.39,
+ "end": 5522.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 569,
+ "start": 5522.67,
+ "end": 5529.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 570,
+ "start": 5529.92,
+ "end": 5530.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 571,
+ "start": 5530.78,
+ "end": 5532.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 572,
+ "start": 5532.5,
+ "end": 5538.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 573,
+ "start": 5538.74,
+ "end": 5544.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 574,
+ "start": 5544.94,
+ "end": 5548.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 575,
+ "start": 5548.1,
+ "end": 5552.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 576,
+ "start": 5552.72,
+ "end": 5557.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 577,
+ "start": 5557.06,
+ "end": 5567.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 578,
+ "start": 5567.2,
+ "end": 5570.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 579,
+ "start": 5570.7,
+ "end": 5572.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 580,
+ "start": 5572.36,
+ "end": 5574.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 581,
+ "start": 5574.8,
+ "end": 5577.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 582,
+ "start": 5577.4,
+ "end": 5584.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 583,
+ "start": 5584.78,
+ "end": 5585.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 584,
+ "start": 5585.84,
+ "end": 5595.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 585,
+ "start": 5595.96,
+ "end": 5606.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 586,
+ "start": 5606.52,
+ "end": 5608.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 587,
+ "start": 5608.42,
+ "end": 5613.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 588,
+ "start": 5613.4,
+ "end": 5625.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 589,
+ "start": 5625.42,
+ "end": 5629.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 590,
+ "start": 5629.36,
+ "end": 5632.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 591,
+ "start": 5632.46,
+ "end": 5639.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 592,
+ "start": 5639.05,
+ "end": 5641.17,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 593,
+ "start": 5641.17,
+ "end": 5643.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 594,
+ "start": 5643.15,
+ "end": 5646.31,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 595,
+ "start": 5646.31,
+ "end": 5649.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 596,
+ "start": 5649.07,
+ "end": 5653.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 597,
+ "start": 5653.24,
+ "end": 5662.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 598,
+ "start": 5662.56,
+ "end": 5665.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 599,
+ "start": 5665.3,
+ "end": 5671.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 600,
+ "start": 5671.28,
+ "end": 5676.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 601,
+ "start": 5676.58,
+ "end": 5685.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 602,
+ "start": 5685.74,
+ "end": 5693.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 603,
+ "start": 5693.68,
+ "end": 5694.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 604,
+ "start": 5694.82,
+ "end": 5698.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 605,
+ "start": 5698.92,
+ "end": 5704.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 606,
+ "start": 5704.38,
+ "end": 5712.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 607,
+ "start": 5712.96,
+ "end": 5714.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 608,
+ "start": 5714.4,
+ "end": 5723.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 609,
+ "start": 5723.26,
+ "end": 5726.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 610,
+ "start": 5726.04,
+ "end": 5738.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 611,
+ "start": 5738.36,
+ "end": 5751.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 612,
+ "start": 5751.56,
+ "end": 5755.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 613,
+ "start": 5755.7,
+ "end": 5761.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 614,
+ "start": 5761.14,
+ "end": 5764.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 615,
+ "start": 5764.52,
+ "end": 5768.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 616,
+ "start": 5768.52,
+ "end": 5771.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 617,
+ "start": 5771.74,
+ "end": 5772.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 618,
+ "start": 5772.82,
+ "end": 5774.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 619,
+ "start": 5774.26,
+ "end": 5776,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 620,
+ "start": 5776,
+ "end": 5782.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 621,
+ "start": 5782.6,
+ "end": 5802.71,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 622,
+ "start": 5802.71,
+ "end": 5807.77,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 623,
+ "start": 5807.77,
+ "end": 5810.55,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 624,
+ "start": 5810.55,
+ "end": 5814.21,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 625,
+ "start": 5814.21,
+ "end": 5819.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 626,
+ "start": 5819.1,
+ "end": 5834.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 627,
+ "start": 5834.24,
+ "end": 5839.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 628,
+ "start": 5839.22,
+ "end": 5841.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 629,
+ "start": 5841.94,
+ "end": 5851.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 630,
+ "start": 5851.92,
+ "end": 5856.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 631,
+ "start": 5856.98,
+ "end": 5865.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 632,
+ "start": 5865.88,
+ "end": 5872.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 633,
+ "start": 5872.84,
+ "end": 5880.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 634,
+ "start": 5880.36,
+ "end": 5889.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 635,
+ "start": 5889.7,
+ "end": 5897.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 636,
+ "start": 5897.32,
+ "end": 5902.41,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 637,
+ "start": 5902.41,
+ "end": 5907.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 638,
+ "start": 5907.67,
+ "end": 5910.71,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 639,
+ "start": 5910.71,
+ "end": 5912.29,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 640,
+ "start": 5912.29,
+ "end": 5913.29,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 641,
+ "start": 5913.29,
+ "end": 5924.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 642,
+ "start": 5924.2,
+ "end": 5927.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 643,
+ "start": 5927.14,
+ "end": 5933.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 644,
+ "start": 5933.82,
+ "end": 5939.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 645,
+ "start": 5939.38,
+ "end": 5956.75,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 646,
+ "start": 5956.75,
+ "end": 5965.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 647,
+ "start": 5965.56,
+ "end": 5967.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 648,
+ "start": 5967.9,
+ "end": 5982.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 649,
+ "start": 5982.64,
+ "end": 5987.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 650,
+ "start": 5987.28,
+ "end": 5992.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 651,
+ "start": 5992.12,
+ "end": 6000.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 652,
+ "start": 6000.08,
+ "end": 6007.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 653,
+ "start": 6007.44,
+ "end": 6014.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 654,
+ "start": 6014.82,
+ "end": 6025.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 655,
+ "start": 6025.72,
+ "end": 6028.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 656,
+ "start": 6028.08,
+ "end": 6030.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 657,
+ "start": 6030.2,
+ "end": 6032.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 658,
+ "start": 6032.14,
+ "end": 6032.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 659,
+ "start": 6032.84,
+ "end": 6046.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 660,
+ "start": 6046.56,
+ "end": 6054.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 661,
+ "start": 6054.18,
+ "end": 6056.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 662,
+ "start": 6056.64,
+ "end": 6064.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 663,
+ "start": 6064.54,
+ "end": 6065.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 664,
+ "start": 6065.18,
+ "end": 6070.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 665,
+ "start": 6070.82,
+ "end": 6077.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 666,
+ "start": 6077.04,
+ "end": 6084.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 667,
+ "start": 6084.6,
+ "end": 6085.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 668,
+ "start": 6085.66,
+ "end": 6086.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 669,
+ "start": 6086.92,
+ "end": 6090.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 670,
+ "start": 6090.56,
+ "end": 6102.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 671,
+ "start": 6102.54,
+ "end": 6111.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 672,
+ "start": 6111.64,
+ "end": 6121.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 673,
+ "start": 6121.67,
+ "end": 6126.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 674,
+ "start": 6126.69,
+ "end": 6130.25,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 675,
+ "start": 6130.25,
+ "end": 6131.83,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 676,
+ "start": 6131.83,
+ "end": 6133.29,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 677,
+ "start": 6133.29,
+ "end": 6137.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 678,
+ "start": 6137.2,
+ "end": 6138.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 679,
+ "start": 6138.64,
+ "end": 6140.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 680,
+ "start": 6140.58,
+ "end": 6151.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 681,
+ "start": 6151.72,
+ "end": 6153.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 682,
+ "start": 6153.14,
+ "end": 6158.61,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 683,
+ "start": 6158.61,
+ "end": 6163.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 684,
+ "start": 6163.01,
+ "end": 6172.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 685,
+ "start": 6172.34,
+ "end": 6183.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 686,
+ "start": 6183.72,
+ "end": 6190.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 687,
+ "start": 6190.02,
+ "end": 6193.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 688,
+ "start": 6193.46,
+ "end": 6195.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 689,
+ "start": 6195.26,
+ "end": 6197.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 690,
+ "start": 6197.48,
+ "end": 6199.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 691,
+ "start": 6199.38,
+ "end": 6201.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 692,
+ "start": 6201.94,
+ "end": 6203.85,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 693,
+ "start": 6203.85,
+ "end": 6208.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 694,
+ "start": 6208.05,
+ "end": 6220.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 695,
+ "start": 6220.44,
+ "end": 6227.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 696,
+ "start": 6227.42,
+ "end": 6234.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 697,
+ "start": 6234.18,
+ "end": 6237.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 698,
+ "start": 6237.96,
+ "end": 6240.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 699,
+ "start": 6240.16,
+ "end": 6246.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 700,
+ "start": 6246.64,
+ "end": 6255.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 701,
+ "start": 6255.68,
+ "end": 6268,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 702,
+ "start": 6268,
+ "end": 6271.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 703,
+ "start": 6271.1,
+ "end": 6276.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 704,
+ "start": 6276.8,
+ "end": 6280.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 705,
+ "start": 6280.94,
+ "end": 6284.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 706,
+ "start": 6284.44,
+ "end": 6296.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 707,
+ "start": 6296.22,
+ "end": 6304.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 708,
+ "start": 6304.48,
+ "end": 6318.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 709,
+ "start": 6318.72,
+ "end": 6324.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 710,
+ "start": 6324.92,
+ "end": 6333.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 711,
+ "start": 6333.3,
+ "end": 6340.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 712,
+ "start": 6340.82,
+ "end": 6354.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 713,
+ "start": 6354.64,
+ "end": 6357.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 714,
+ "start": 6357.16,
+ "end": 6393,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 715,
+ "start": 6393,
+ "end": 6394.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 716,
+ "start": 6394.52,
+ "end": 6403.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 717,
+ "start": 6403.7,
+ "end": 6409.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 718,
+ "start": 6409.26,
+ "end": 6410.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 719,
+ "start": 6410.6,
+ "end": 6410.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 720,
+ "start": 6410.82,
+ "end": 6417.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 721,
+ "start": 6417.12,
+ "end": 6424.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 722,
+ "start": 6424.24,
+ "end": 6430.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 723,
+ "start": 6430.38,
+ "end": 6431.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 724,
+ "start": 6431.74,
+ "end": 6435.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 725,
+ "start": 6435.64,
+ "end": 6438.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 726,
+ "start": 6438.28,
+ "end": 6463.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 727,
+ "start": 6463.7,
+ "end": 6467.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 728,
+ "start": 6467.88,
+ "end": 6472.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 729,
+ "start": 6472.16,
+ "end": 6480.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 730,
+ "start": 6480.44,
+ "end": 6483.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 731,
+ "start": 6483.78,
+ "end": 6490.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 732,
+ "start": 6490.08,
+ "end": 6496.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 733,
+ "start": 6496.74,
+ "end": 6502.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 734,
+ "start": 6502.12,
+ "end": 6514.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 735,
+ "start": 6514.32,
+ "end": 6528.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 736,
+ "start": 6528.1,
+ "end": 6530.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 737,
+ "start": 6530.86,
+ "end": 6546.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 738,
+ "start": 6546.58,
+ "end": 6554.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 739,
+ "start": 6554.68,
+ "end": 6564.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 740,
+ "start": 6564.5,
+ "end": 6584.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 741,
+ "start": 6584.16,
+ "end": 6589.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 742,
+ "start": 6589.32,
+ "end": 6590.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 743,
+ "start": 6590.54,
+ "end": 6596.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 744,
+ "start": 6596.84,
+ "end": 6604.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 745,
+ "start": 6604.14,
+ "end": 6605.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 746,
+ "start": 6605.62,
+ "end": 6622.47,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 747,
+ "start": 6622.47,
+ "end": 6633.71,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 748,
+ "start": 6633.71,
+ "end": 6635.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 749,
+ "start": 6635.92,
+ "end": 6641.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 750,
+ "start": 6641.7,
+ "end": 6645.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 751,
+ "start": 6645.88,
+ "end": 6650.81,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 752,
+ "start": 6650.81,
+ "end": 6654.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 753,
+ "start": 6654.07,
+ "end": 6663.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 754,
+ "start": 6663.14,
+ "end": 6671.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 755,
+ "start": 6671.96,
+ "end": 6678.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 756,
+ "start": 6678.46,
+ "end": 6684.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 757,
+ "start": 6684.04,
+ "end": 6690.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 758,
+ "start": 6690.26,
+ "end": 6692.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 759,
+ "start": 6692.18,
+ "end": 6694.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 760,
+ "start": 6694.14,
+ "end": 6699.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 761,
+ "start": 6699.22,
+ "end": 6703,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 762,
+ "start": 6703,
+ "end": 6705.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 763,
+ "start": 6705.16,
+ "end": 6708.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 764,
+ "start": 6708.42,
+ "end": 6719.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 765,
+ "start": 6719.16,
+ "end": 6723.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 766,
+ "start": 6723.06,
+ "end": 6727.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 767,
+ "start": 6727.34,
+ "end": 6728.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 768,
+ "start": 6728.96,
+ "end": 6730.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 769,
+ "start": 6730.64,
+ "end": 6733.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 770,
+ "start": 6733.96,
+ "end": 6739.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 771,
+ "start": 6739.92,
+ "end": 6744.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 772,
+ "start": 6744.86,
+ "end": 6752.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 773,
+ "start": 6752.6,
+ "end": 6754.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 774,
+ "start": 6754.48,
+ "end": 6761.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 775,
+ "start": 6761.16,
+ "end": 6778.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 776,
+ "start": 6778.28,
+ "end": 6779.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 777,
+ "start": 6779.3,
+ "end": 6790.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 778,
+ "start": 6790.48,
+ "end": 6792.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 779,
+ "start": 6792.46,
+ "end": 6802.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 780,
+ "start": 6802.26,
+ "end": 6815.03,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 781,
+ "start": 6815.03,
+ "end": 6816.91,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 782,
+ "start": 6816.91,
+ "end": 6830.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 783,
+ "start": 6830.52,
+ "end": 6839.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 784,
+ "start": 6839.12,
+ "end": 6842.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 785,
+ "start": 6842.72,
+ "end": 6853.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 786,
+ "start": 6853.12,
+ "end": 6876.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 787,
+ "start": 6876.4,
+ "end": 6881.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 788,
+ "start": 6881.5,
+ "end": 6889.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 789,
+ "start": 6889.38,
+ "end": 6899.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 790,
+ "start": 6899.8,
+ "end": 6905.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 791,
+ "start": 6905.26,
+ "end": 6906.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 792,
+ "start": 6906.48,
+ "end": 6912.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 793,
+ "start": 6912.46,
+ "end": 6917.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 794,
+ "start": 6917.46,
+ "end": 6919.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 795,
+ "start": 6919.34,
+ "end": 6925.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 796,
+ "start": 6925.9,
+ "end": 6932.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 797,
+ "start": 6932.5,
+ "end": 6942.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 798,
+ "start": 6942.94,
+ "end": 6944.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 799,
+ "start": 6944.68,
+ "end": 6951.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 800,
+ "start": 6951.92,
+ "end": 6955.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 801,
+ "start": 6955.06,
+ "end": 6955.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 802,
+ "start": 6955.66,
+ "end": 6962.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 803,
+ "start": 6962.66,
+ "end": 6968.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 804,
+ "start": 6968.22,
+ "end": 6974.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 805,
+ "start": 6974.8,
+ "end": 6976.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 806,
+ "start": 6976.64,
+ "end": 6983.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 807,
+ "start": 6983.48,
+ "end": 6993.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 808,
+ "start": 6993.34,
+ "end": 6999.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 809,
+ "start": 6999.74,
+ "end": 7009.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 810,
+ "start": 7009.94,
+ "end": 7015.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 811,
+ "start": 7015.32,
+ "end": 7028.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 812,
+ "start": 7028.1,
+ "end": 7030.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 813,
+ "start": 7030.4,
+ "end": 7034.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 814,
+ "start": 7034.84,
+ "end": 7036.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 815,
+ "start": 7036.92,
+ "end": 7041.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 816,
+ "start": 7041.44,
+ "end": 7044.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 817,
+ "start": 7044.62,
+ "end": 7052.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 818,
+ "start": 7052.32,
+ "end": 7056.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 819,
+ "start": 7056.62,
+ "end": 7066.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 820,
+ "start": 7066.42,
+ "end": 7067.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 821,
+ "start": 7067.78,
+ "end": 7071.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 822,
+ "start": 7071.56,
+ "end": 7072.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 823,
+ "start": 7072.92,
+ "end": 7076.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 824,
+ "start": 7076.2,
+ "end": 7078.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 825,
+ "start": 7078.9,
+ "end": 7085.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 826,
+ "start": 7085.32,
+ "end": 7086.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 827,
+ "start": 7086.86,
+ "end": 7092.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 828,
+ "start": 7092.24,
+ "end": 7093.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 829,
+ "start": 7093.88,
+ "end": 7098.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 830,
+ "start": 7098.5,
+ "end": 7112.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 831,
+ "start": 7112.16,
+ "end": 7136.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 832,
+ "start": 7136.04,
+ "end": 7150.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 833,
+ "start": 7150.88,
+ "end": 7154.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 834,
+ "start": 7154.44,
+ "end": 7156.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 835,
+ "start": 7156.48,
+ "end": 7194.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 836,
+ "start": 7194.52,
+ "end": 7195.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 837,
+ "start": 7195.52,
+ "end": 7204.16,
+ "speaker": "U_UKN"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.dpe.json b/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.dpe.json
new file mode 100644
index 00000000..9279bc2a
--- /dev/null
+++ b/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.dpe.json
@@ -0,0 +1,268470 @@
+{
+ "words": [
+ {
+ "id": 0,
+ "start": 0,
+ "end": 0.28,
+ "text": "Yeah,"
+ },
+ {
+ "id": 1,
+ "start": 0.28,
+ "end": 27.44,
+ "text": "I"
+ },
+ {
+ "id": 2,
+ "start": 27.44,
+ "end": 32.04,
+ "text": "I"
+ },
+ {
+ "id": 3,
+ "start": 32.04,
+ "end": 33,
+ "text": "don't"
+ },
+ {
+ "id": 4,
+ "start": 33,
+ "end": 71.08,
+ "text": "know"
+ },
+ {
+ "id": 5,
+ "start": 71.08,
+ "end": 228.02,
+ "text": "the."
+ },
+ {
+ "id": 6,
+ "start": 228.02,
+ "end": 299.24,
+ "text": "Yeah,"
+ },
+ {
+ "id": 7,
+ "start": 299.24,
+ "end": 300.28,
+ "text": "that"
+ },
+ {
+ "id": 8,
+ "start": 300.28,
+ "end": 320.68,
+ "text": "it."
+ },
+ {
+ "id": 9,
+ "start": 320.68,
+ "end": 340.96,
+ "text": "No,"
+ },
+ {
+ "id": 10,
+ "start": 340.96,
+ "end": 341.46,
+ "text": "I"
+ },
+ {
+ "id": 11,
+ "start": 341.46,
+ "end": 342.66,
+ "text": "I,"
+ },
+ {
+ "id": 12,
+ "start": 342.66,
+ "end": 361.68,
+ "text": "like,"
+ },
+ {
+ "id": 13,
+ "start": 361.68,
+ "end": 367.24,
+ "text": "I"
+ },
+ {
+ "id": 14,
+ "start": 367.24,
+ "end": 434.04,
+ "text": "know."
+ },
+ {
+ "id": 15,
+ "start": 434.04,
+ "end": 487.98,
+ "text": "So"
+ },
+ {
+ "id": 16,
+ "start": 487.98,
+ "end": 496.8,
+ "text": "to"
+ },
+ {
+ "id": 17,
+ "start": 496.8,
+ "end": 496.96,
+ "text": "make"
+ },
+ {
+ "id": 18,
+ "start": 496.96,
+ "end": 497.12,
+ "text": "sure"
+ },
+ {
+ "id": 19,
+ "start": 497.12,
+ "end": 497.32,
+ "text": "once"
+ },
+ {
+ "id": 20,
+ "start": 497.32,
+ "end": 497.46,
+ "text": "we"
+ },
+ {
+ "id": 21,
+ "start": 497.46,
+ "end": 497.62,
+ "text": "get"
+ },
+ {
+ "id": 22,
+ "start": 497.62,
+ "end": 498.1,
+ "text": "started"
+ },
+ {
+ "id": 23,
+ "start": 498.1,
+ "end": 750.28,
+ "text": "down,"
+ },
+ {
+ "id": 24,
+ "start": 750.28,
+ "end": 751.24,
+ "text": "thank"
+ },
+ {
+ "id": 25,
+ "start": 751.24,
+ "end": 751.4,
+ "text": "you"
+ },
+ {
+ "id": 26,
+ "start": 751.4,
+ "end": 801.26,
+ "text": "for."
+ },
+ {
+ "id": 27,
+ "start": 801.26,
+ "end": 806.54,
+ "text": "So"
+ },
+ {
+ "id": 28,
+ "start": 806.54,
+ "end": 925.4,
+ "text": "I"
+ },
+ {
+ "id": 29,
+ "start": 925.4,
+ "end": 1191.86,
+ "text": "thank"
+ },
+ {
+ "id": 30,
+ "start": 1191.86,
+ "end": 1193.06,
+ "text": "on"
+ },
+ {
+ "id": 31,
+ "start": 1193.06,
+ "end": 1193.22,
+ "text": "the"
+ },
+ {
+ "id": 32,
+ "start": 1193.22,
+ "end": 1193.82,
+ "text": "judiciary"
+ },
+ {
+ "id": 33,
+ "start": 1193.82,
+ "end": 1194.16,
+ "text": "and"
+ },
+ {
+ "id": 34,
+ "start": 1194.16,
+ "end": 1194.64,
+ "text": "commerce."
+ },
+ {
+ "id": 35,
+ "start": 1194.64,
+ "end": 1195.12,
+ "text": "Science"
+ },
+ {
+ "id": 36,
+ "start": 1195.12,
+ "end": 1195.28,
+ "text": "and"
+ },
+ {
+ "id": 37,
+ "start": 1195.28,
+ "end": 1196.2,
+ "text": "transportation"
+ },
+ {
+ "id": 38,
+ "start": 1196.2,
+ "end": 1196.9,
+ "text": "will"
+ },
+ {
+ "id": 39,
+ "start": 1196.9,
+ "end": 1197.08,
+ "text": "come"
+ },
+ {
+ "id": 40,
+ "start": 1197.08,
+ "end": 1197.18,
+ "text": "to"
+ },
+ {
+ "id": 41,
+ "start": 1197.18,
+ "end": 1198.16,
+ "text": "order."
+ },
+ {
+ "id": 42,
+ "start": 1198.16,
+ "end": 1198.82,
+ "text": "We"
+ },
+ {
+ "id": 43,
+ "start": 1198.82,
+ "end": 1199.38,
+ "text": "welcome"
+ },
+ {
+ "id": 44,
+ "start": 1199.38,
+ "end": 1199.94,
+ "text": "everyone"
+ },
+ {
+ "id": 45,
+ "start": 1199.94,
+ "end": 1200.56,
+ "text": "today's"
+ },
+ {
+ "id": 46,
+ "start": 1200.56,
+ "end": 1201.62,
+ "text": "hearing"
+ },
+ {
+ "id": 47,
+ "start": 1201.62,
+ "end": 1202.42,
+ "text": "on"
+ },
+ {
+ "id": 48,
+ "start": 1202.42,
+ "end": 1203,
+ "text": "Facebook,"
+ },
+ {
+ "id": 49,
+ "start": 1203,
+ "end": 1204.16,
+ "text": "social"
+ },
+ {
+ "id": 50,
+ "start": 1204.16,
+ "end": 1204.62,
+ "text": "media"
+ },
+ {
+ "id": 51,
+ "start": 1204.62,
+ "end": 1205.18,
+ "text": "privacy"
+ },
+ {
+ "id": 52,
+ "start": 1205.18,
+ "end": 1206.24,
+ "text": "and"
+ },
+ {
+ "id": 53,
+ "start": 1206.24,
+ "end": 1206.42,
+ "text": "the"
+ },
+ {
+ "id": 54,
+ "start": 1206.42,
+ "end": 1206.74,
+ "text": "use"
+ },
+ {
+ "id": 55,
+ "start": 1206.74,
+ "end": 1207.32,
+ "text": "and"
+ },
+ {
+ "id": 56,
+ "start": 1207.32,
+ "end": 1208.34,
+ "text": "abuse"
+ },
+ {
+ "id": 57,
+ "start": 1208.34,
+ "end": 1208.66,
+ "text": "of"
+ },
+ {
+ "id": 58,
+ "start": 1208.66,
+ "end": 1209.74,
+ "text": "data,"
+ },
+ {
+ "id": 59,
+ "start": 1209.74,
+ "end": 1210.66,
+ "text": "although"
+ },
+ {
+ "id": 60,
+ "start": 1210.66,
+ "end": 1210.92,
+ "text": "not"
+ },
+ {
+ "id": 61,
+ "start": 1210.92,
+ "end": 1211.92,
+ "text": "unprecedented."
+ },
+ {
+ "id": 62,
+ "start": 1211.92,
+ "end": 1213,
+ "text": "This"
+ },
+ {
+ "id": 63,
+ "start": 1213,
+ "end": 1213.2,
+ "text": "is"
+ },
+ {
+ "id": 64,
+ "start": 1213.2,
+ "end": 1213.26,
+ "text": "a"
+ },
+ {
+ "id": 65,
+ "start": 1213.26,
+ "end": 1213.72,
+ "text": "unique"
+ },
+ {
+ "id": 66,
+ "start": 1213.72,
+ "end": 1214.38,
+ "text": "are"
+ },
+ {
+ "id": 67,
+ "start": 1214.38,
+ "end": 1215.4,
+ "text": "the"
+ },
+ {
+ "id": 68,
+ "start": 1215.4,
+ "end": 1215.92,
+ "text": "issues."
+ },
+ {
+ "id": 69,
+ "start": 1215.92,
+ "end": 1216.68,
+ "text": "We"
+ },
+ {
+ "id": 70,
+ "start": 1216.68,
+ "end": 1216.94,
+ "text": "will"
+ },
+ {
+ "id": 71,
+ "start": 1216.94,
+ "end": 1217.54,
+ "text": "consider"
+ },
+ {
+ "id": 72,
+ "start": 1217.54,
+ "end": 1218.64,
+ "text": "range"
+ },
+ {
+ "id": 73,
+ "start": 1218.64,
+ "end": 1218.92,
+ "text": "from"
+ },
+ {
+ "id": 74,
+ "start": 1218.92,
+ "end": 1219.28,
+ "text": "data"
+ },
+ {
+ "id": 75,
+ "start": 1219.28,
+ "end": 1220.55,
+ "text": "privacy"
+ },
+ {
+ "id": 76,
+ "start": 1220.55,
+ "end": 1220.69,
+ "text": "and"
+ },
+ {
+ "id": 77,
+ "start": 1220.69,
+ "end": 1221.29,
+ "text": "security"
+ },
+ {
+ "id": 78,
+ "start": 1221.29,
+ "end": 1222.29,
+ "text": "to"
+ },
+ {
+ "id": 79,
+ "start": 1222.29,
+ "end": 1222.87,
+ "text": "consumer"
+ },
+ {
+ "id": 80,
+ "start": 1222.87,
+ "end": 1223.49,
+ "text": "protection"
+ },
+ {
+ "id": 81,
+ "start": 1223.49,
+ "end": 1224.25,
+ "text": "and"
+ },
+ {
+ "id": 82,
+ "start": 1224.25,
+ "end": 1224.37,
+ "text": "the"
+ },
+ {
+ "id": 83,
+ "start": 1224.37,
+ "end": 1224.65,
+ "text": "Federal"
+ },
+ {
+ "id": 84,
+ "start": 1224.65,
+ "end": 1224.95,
+ "text": "Trade"
+ },
+ {
+ "id": 85,
+ "start": 1224.95,
+ "end": 1225.43,
+ "text": "Commission"
+ },
+ {
+ "id": 86,
+ "start": 1225.43,
+ "end": 1226.17,
+ "text": "enforcement"
+ },
+ {
+ "id": 87,
+ "start": 1226.17,
+ "end": 1227.31,
+ "text": "touching"
+ },
+ {
+ "id": 88,
+ "start": 1227.31,
+ "end": 1227.53,
+ "text": "on"
+ },
+ {
+ "id": 89,
+ "start": 1227.53,
+ "end": 1228.43,
+ "text": "jurisdictions"
+ },
+ {
+ "id": 90,
+ "start": 1228.43,
+ "end": 1229.35,
+ "text": "of"
+ },
+ {
+ "id": 91,
+ "start": 1229.35,
+ "end": 1229.63,
+ "text": "these"
+ },
+ {
+ "id": 92,
+ "start": 1229.63,
+ "end": 1229.91,
+ "text": "two"
+ },
+ {
+ "id": 93,
+ "start": 1229.91,
+ "end": 1231.36,
+ "text": "committees,"
+ },
+ {
+ "id": 94,
+ "start": 1231.36,
+ "end": 1232.34,
+ "text": "we"
+ },
+ {
+ "id": 95,
+ "start": 1232.34,
+ "end": 1232.66,
+ "text": "have"
+ },
+ {
+ "id": 96,
+ "start": 1232.66,
+ "end": 1233.24,
+ "text": "44"
+ },
+ {
+ "id": 97,
+ "start": 1233.24,
+ "end": 1233.88,
+ "text": "members"
+ },
+ {
+ "id": 98,
+ "start": 1233.88,
+ "end": 1234.4,
+ "text": "between"
+ },
+ {
+ "id": 99,
+ "start": 1234.4,
+ "end": 1234.58,
+ "text": "our"
+ },
+ {
+ "id": 100,
+ "start": 1234.58,
+ "end": 1234.76,
+ "text": "two"
+ },
+ {
+ "id": 101,
+ "start": 1234.76,
+ "end": 1235.46,
+ "text": "committees"
+ },
+ {
+ "id": 102,
+ "start": 1235.46,
+ "end": 1236.44,
+ "text": "that"
+ },
+ {
+ "id": 103,
+ "start": 1236.44,
+ "end": 1236.68,
+ "text": "may"
+ },
+ {
+ "id": 104,
+ "start": 1236.68,
+ "end": 1236.88,
+ "text": "not"
+ },
+ {
+ "id": 105,
+ "start": 1236.88,
+ "end": 1237.84,
+ "text": "seem"
+ },
+ {
+ "id": 106,
+ "start": 1237.84,
+ "end": 1238.1,
+ "text": "like"
+ },
+ {
+ "id": 107,
+ "start": 1238.1,
+ "end": 1238.14,
+ "text": "a"
+ },
+ {
+ "id": 108,
+ "start": 1238.14,
+ "end": 1238.66,
+ "text": "large"
+ },
+ {
+ "id": 109,
+ "start": 1238.66,
+ "end": 1239.04,
+ "text": "group"
+ },
+ {
+ "id": 110,
+ "start": 1239.04,
+ "end": 1239.3,
+ "text": "by"
+ },
+ {
+ "id": 111,
+ "start": 1239.3,
+ "end": 1240.06,
+ "text": "Facebook"
+ },
+ {
+ "id": 112,
+ "start": 1240.06,
+ "end": 1240.68,
+ "text": "standards."
+ },
+ {
+ "id": 113,
+ "start": 1240.68,
+ "end": 1241.62,
+ "text": "But"
+ },
+ {
+ "id": 114,
+ "start": 1241.62,
+ "end": 1241.74,
+ "text": "it"
+ },
+ {
+ "id": 115,
+ "start": 1241.74,
+ "end": 1241.94,
+ "text": "is"
+ },
+ {
+ "id": 116,
+ "start": 1241.94,
+ "end": 1242.68,
+ "text": "significant"
+ },
+ {
+ "id": 117,
+ "start": 1242.68,
+ "end": 1243.04,
+ "text": "here"
+ },
+ {
+ "id": 118,
+ "start": 1243.04,
+ "end": 1244.02,
+ "text": "for"
+ },
+ {
+ "id": 119,
+ "start": 1244.02,
+ "end": 1244.08,
+ "text": "a"
+ },
+ {
+ "id": 120,
+ "start": 1244.08,
+ "end": 1244.42,
+ "text": "hearing"
+ },
+ {
+ "id": 121,
+ "start": 1244.42,
+ "end": 1244.58,
+ "text": "in"
+ },
+ {
+ "id": 122,
+ "start": 1244.58,
+ "end": 1244.7,
+ "text": "the"
+ },
+ {
+ "id": 123,
+ "start": 1244.7,
+ "end": 1244.96,
+ "text": "United"
+ },
+ {
+ "id": 124,
+ "start": 1244.96,
+ "end": 1245.26,
+ "text": "States"
+ },
+ {
+ "id": 125,
+ "start": 1245.26,
+ "end": 1246.12,
+ "text": "Senate."
+ },
+ {
+ "id": 126,
+ "start": 1246.12,
+ "end": 1246.62,
+ "text": "We"
+ },
+ {
+ "id": 127,
+ "start": 1246.62,
+ "end": 1246.96,
+ "text": "will"
+ },
+ {
+ "id": 128,
+ "start": 1246.96,
+ "end": 1247.06,
+ "text": "do"
+ },
+ {
+ "id": 129,
+ "start": 1247.06,
+ "end": 1247.3,
+ "text": "our"
+ },
+ {
+ "id": 130,
+ "start": 1247.3,
+ "end": 1247.58,
+ "text": "best"
+ },
+ {
+ "id": 131,
+ "start": 1247.58,
+ "end": 1247.86,
+ "text": "to"
+ },
+ {
+ "id": 132,
+ "start": 1247.86,
+ "end": 1248.1,
+ "text": "keep"
+ },
+ {
+ "id": 133,
+ "start": 1248.1,
+ "end": 1248.38,
+ "text": "things"
+ },
+ {
+ "id": 134,
+ "start": 1248.38,
+ "end": 1248.78,
+ "text": "moving"
+ },
+ {
+ "id": 135,
+ "start": 1248.78,
+ "end": 1249.4,
+ "text": "efficiently,"
+ },
+ {
+ "id": 136,
+ "start": 1249.4,
+ "end": 1250.2,
+ "text": "given"
+ },
+ {
+ "id": 137,
+ "start": 1250.2,
+ "end": 1250.38,
+ "text": "our"
+ },
+ {
+ "id": 138,
+ "start": 1250.38,
+ "end": 1251.2,
+ "text": "circumstances."
+ },
+ {
+ "id": 139,
+ "start": 1251.2,
+ "end": 1252.12,
+ "text": "We"
+ },
+ {
+ "id": 140,
+ "start": 1252.12,
+ "end": 1252.4,
+ "text": "will"
+ },
+ {
+ "id": 141,
+ "start": 1252.4,
+ "end": 1252.78,
+ "text": "begin"
+ },
+ {
+ "id": 142,
+ "start": 1252.78,
+ "end": 1253.14,
+ "text": "with"
+ },
+ {
+ "id": 143,
+ "start": 1253.14,
+ "end": 1253.68,
+ "text": "opening"
+ },
+ {
+ "id": 144,
+ "start": 1253.68,
+ "end": 1254.2,
+ "text": "statements"
+ },
+ {
+ "id": 145,
+ "start": 1254.2,
+ "end": 1254.72,
+ "text": "from"
+ },
+ {
+ "id": 146,
+ "start": 1254.72,
+ "end": 1254.88,
+ "text": "the"
+ },
+ {
+ "id": 147,
+ "start": 1254.88,
+ "end": 1255.32,
+ "text": "chairman"
+ },
+ {
+ "id": 148,
+ "start": 1255.32,
+ "end": 1255.66,
+ "text": "and"
+ },
+ {
+ "id": 149,
+ "start": 1255.66,
+ "end": 1256.06,
+ "text": "ranking"
+ },
+ {
+ "id": 150,
+ "start": 1256.06,
+ "end": 1256.48,
+ "text": "members"
+ },
+ {
+ "id": 151,
+ "start": 1256.48,
+ "end": 1256.64,
+ "text": "of"
+ },
+ {
+ "id": 152,
+ "start": 1256.64,
+ "end": 1256.88,
+ "text": "each"
+ },
+ {
+ "id": 153,
+ "start": 1256.88,
+ "end": 1257.34,
+ "text": "committee."
+ },
+ {
+ "id": 154,
+ "start": 1257.34,
+ "end": 1258.36,
+ "text": "Starting"
+ },
+ {
+ "id": 155,
+ "start": 1258.36,
+ "end": 1258.58,
+ "text": "with"
+ },
+ {
+ "id": 156,
+ "start": 1258.58,
+ "end": 1259.04,
+ "text": "Chairman"
+ },
+ {
+ "id": 157,
+ "start": 1259.04,
+ "end": 1260.2,
+ "text": "tone"
+ },
+ {
+ "id": 158,
+ "start": 1260.2,
+ "end": 1260.94,
+ "text": "and"
+ },
+ {
+ "id": 159,
+ "start": 1260.94,
+ "end": 1261.14,
+ "text": "then"
+ },
+ {
+ "id": 160,
+ "start": 1261.14,
+ "end": 1261.8,
+ "text": "proceed"
+ },
+ {
+ "id": 161,
+ "start": 1261.8,
+ "end": 1262.82,
+ "text": "with"
+ },
+ {
+ "id": 162,
+ "start": 1262.82,
+ "end": 1263.2,
+ "text": "Mr"
+ },
+ {
+ "id": 163,
+ "start": 1263.2,
+ "end": 1264.24,
+ "text": "Zuckerberg's"
+ },
+ {
+ "id": 164,
+ "start": 1264.24,
+ "end": 1265.28,
+ "text": "opening"
+ },
+ {
+ "id": 165,
+ "start": 1265.28,
+ "end": 1266.34,
+ "text": "statement."
+ },
+ {
+ "id": 166,
+ "start": 1266.34,
+ "end": 1267.38,
+ "text": "We"
+ },
+ {
+ "id": 167,
+ "start": 1267.38,
+ "end": 1267.58,
+ "text": "will"
+ },
+ {
+ "id": 168,
+ "start": 1267.58,
+ "end": 1267.84,
+ "text": "then"
+ },
+ {
+ "id": 169,
+ "start": 1267.84,
+ "end": 1268.22,
+ "text": "move"
+ },
+ {
+ "id": 170,
+ "start": 1268.22,
+ "end": 1268.7,
+ "text": "on"
+ },
+ {
+ "id": 171,
+ "start": 1268.7,
+ "end": 1268.88,
+ "text": "to"
+ },
+ {
+ "id": 172,
+ "start": 1268.88,
+ "end": 1269.66,
+ "text": "questioning"
+ },
+ {
+ "id": 173,
+ "start": 1269.66,
+ "end": 1270.66,
+ "text": "each"
+ },
+ {
+ "id": 174,
+ "start": 1270.66,
+ "end": 1271.04,
+ "text": "member"
+ },
+ {
+ "id": 175,
+ "start": 1271.04,
+ "end": 1271.3,
+ "text": "will"
+ },
+ {
+ "id": 176,
+ "start": 1271.3,
+ "end": 1271.5,
+ "text": "have"
+ },
+ {
+ "id": 177,
+ "start": 1271.5,
+ "end": 1271.78,
+ "text": "five"
+ },
+ {
+ "id": 178,
+ "start": 1271.78,
+ "end": 1272.12,
+ "text": "minutes"
+ },
+ {
+ "id": 179,
+ "start": 1272.12,
+ "end": 1272.26,
+ "text": "to"
+ },
+ {
+ "id": 180,
+ "start": 1272.26,
+ "end": 1272.92,
+ "text": "question."
+ },
+ {
+ "id": 181,
+ "start": 1272.92,
+ "end": 1274.28,
+ "text": "Witnesses"
+ },
+ {
+ "id": 182,
+ "start": 1274.28,
+ "end": 1275.22,
+ "text": "I'd"
+ },
+ {
+ "id": 183,
+ "start": 1275.22,
+ "end": 1275.4,
+ "text": "like"
+ },
+ {
+ "id": 184,
+ "start": 1275.4,
+ "end": 1275.48,
+ "text": "to"
+ },
+ {
+ "id": 185,
+ "start": 1275.48,
+ "end": 1276,
+ "text": "remind"
+ },
+ {
+ "id": 186,
+ "start": 1276,
+ "end": 1276.58,
+ "text": "the"
+ },
+ {
+ "id": 187,
+ "start": 1276.58,
+ "end": 1277.02,
+ "text": "members"
+ },
+ {
+ "id": 188,
+ "start": 1277.02,
+ "end": 1277.22,
+ "text": "of"
+ },
+ {
+ "id": 189,
+ "start": 1277.22,
+ "end": 1277.46,
+ "text": "both"
+ },
+ {
+ "id": 190,
+ "start": 1277.46,
+ "end": 1279.14,
+ "text": "committees"
+ },
+ {
+ "id": 191,
+ "start": 1279.14,
+ "end": 1280.16,
+ "text": "that"
+ },
+ {
+ "id": 192,
+ "start": 1280.16,
+ "end": 1280.48,
+ "text": "time"
+ },
+ {
+ "id": 193,
+ "start": 1280.48,
+ "end": 1280.84,
+ "text": "limits"
+ },
+ {
+ "id": 194,
+ "start": 1280.84,
+ "end": 1281.12,
+ "text": "will"
+ },
+ {
+ "id": 195,
+ "start": 1281.12,
+ "end": 1281.24,
+ "text": "be"
+ },
+ {
+ "id": 196,
+ "start": 1281.24,
+ "end": 1282.02,
+ "text": "and"
+ },
+ {
+ "id": 197,
+ "start": 1282.02,
+ "end": 1282.32,
+ "text": "must"
+ },
+ {
+ "id": 198,
+ "start": 1282.32,
+ "end": 1282.52,
+ "text": "be"
+ },
+ {
+ "id": 199,
+ "start": 1282.52,
+ "end": 1283.04,
+ "text": "strictly"
+ },
+ {
+ "id": 200,
+ "start": 1283.04,
+ "end": 1283.56,
+ "text": "enforced"
+ },
+ {
+ "id": 201,
+ "start": 1283.56,
+ "end": 1283.92,
+ "text": "given"
+ },
+ {
+ "id": 202,
+ "start": 1283.92,
+ "end": 1284.04,
+ "text": "the"
+ },
+ {
+ "id": 203,
+ "start": 1284.04,
+ "end": 1284.56,
+ "text": "numbers"
+ },
+ {
+ "id": 204,
+ "start": 1284.56,
+ "end": 1285.4,
+ "text": "that"
+ },
+ {
+ "id": 205,
+ "start": 1285.4,
+ "end": 1285.56,
+ "text": "we"
+ },
+ {
+ "id": 206,
+ "start": 1285.56,
+ "end": 1285.76,
+ "text": "have"
+ },
+ {
+ "id": 207,
+ "start": 1285.76,
+ "end": 1286.02,
+ "text": "here"
+ },
+ {
+ "id": 208,
+ "start": 1286.02,
+ "end": 1287.18,
+ "text": "today"
+ },
+ {
+ "id": 209,
+ "start": 1287.18,
+ "end": 1288,
+ "text": "if"
+ },
+ {
+ "id": 210,
+ "start": 1288,
+ "end": 1288.24,
+ "text": "you're"
+ },
+ {
+ "id": 211,
+ "start": 1288.24,
+ "end": 1288.46,
+ "text": "over"
+ },
+ {
+ "id": 212,
+ "start": 1288.46,
+ "end": 1288.68,
+ "text": "your"
+ },
+ {
+ "id": 213,
+ "start": 1288.68,
+ "end": 1289.16,
+ "text": "time"
+ },
+ {
+ "id": 214,
+ "start": 1289.16,
+ "end": 1290.06,
+ "text": "chairman"
+ },
+ {
+ "id": 215,
+ "start": 1290.06,
+ "end": 1290.4,
+ "text": "tone"
+ },
+ {
+ "id": 216,
+ "start": 1290.4,
+ "end": 1290.54,
+ "text": "and"
+ },
+ {
+ "id": 217,
+ "start": 1290.54,
+ "end": 1290.74,
+ "text": "I"
+ },
+ {
+ "id": 218,
+ "start": 1290.74,
+ "end": 1290.98,
+ "text": "will"
+ },
+ {
+ "id": 219,
+ "start": 1290.98,
+ "end": 1291.16,
+ "text": "make"
+ },
+ {
+ "id": 220,
+ "start": 1291.16,
+ "end": 1291.5,
+ "text": "sure"
+ },
+ {
+ "id": 221,
+ "start": 1291.5,
+ "end": 1291.66,
+ "text": "to"
+ },
+ {
+ "id": 222,
+ "start": 1291.66,
+ "end": 1291.9,
+ "text": "let"
+ },
+ {
+ "id": 223,
+ "start": 1291.9,
+ "end": 1292.06,
+ "text": "you"
+ },
+ {
+ "id": 224,
+ "start": 1292.06,
+ "end": 1292.52,
+ "text": "know."
+ },
+ {
+ "id": 225,
+ "start": 1292.52,
+ "end": 1293.5,
+ "text": "There"
+ },
+ {
+ "id": 226,
+ "start": 1293.5,
+ "end": 1293.7,
+ "text": "will"
+ },
+ {
+ "id": 227,
+ "start": 1293.7,
+ "end": 1293.9,
+ "text": "not"
+ },
+ {
+ "id": 228,
+ "start": 1293.9,
+ "end": 1294.08,
+ "text": "be"
+ },
+ {
+ "id": 229,
+ "start": 1294.08,
+ "end": 1294.16,
+ "text": "a"
+ },
+ {
+ "id": 230,
+ "start": 1294.16,
+ "end": 1294.58,
+ "text": "second"
+ },
+ {
+ "id": 231,
+ "start": 1294.58,
+ "end": 1294.94,
+ "text": "round"
+ },
+ {
+ "id": 232,
+ "start": 1294.94,
+ "end": 1295.12,
+ "text": "as"
+ },
+ {
+ "id": 233,
+ "start": 1295.12,
+ "end": 1295.46,
+ "text": "well,"
+ },
+ {
+ "id": 234,
+ "start": 1295.46,
+ "end": 1296.44,
+ "text": "of"
+ },
+ {
+ "id": 235,
+ "start": 1296.44,
+ "end": 1296.76,
+ "text": "course,"
+ },
+ {
+ "id": 236,
+ "start": 1296.76,
+ "end": 1296.98,
+ "text": "there"
+ },
+ {
+ "id": 237,
+ "start": 1296.98,
+ "end": 1297.2,
+ "text": "will"
+ },
+ {
+ "id": 238,
+ "start": 1297.2,
+ "end": 1297.32,
+ "text": "be"
+ },
+ {
+ "id": 239,
+ "start": 1297.32,
+ "end": 1297.5,
+ "text": "the"
+ },
+ {
+ "id": 240,
+ "start": 1297.5,
+ "end": 1297.96,
+ "text": "usual"
+ },
+ {
+ "id": 241,
+ "start": 1297.96,
+ "end": 1298.4,
+ "text": "follow"
+ },
+ {
+ "id": 242,
+ "start": 1298.4,
+ "end": 1298.58,
+ "text": "up"
+ },
+ {
+ "id": 243,
+ "start": 1298.58,
+ "end": 1298.92,
+ "text": "written"
+ },
+ {
+ "id": 244,
+ "start": 1298.92,
+ "end": 1299.5,
+ "text": "questions"
+ },
+ {
+ "id": 245,
+ "start": 1299.5,
+ "end": 1300.18,
+ "text": "for"
+ },
+ {
+ "id": 246,
+ "start": 1300.18,
+ "end": 1300.32,
+ "text": "the"
+ },
+ {
+ "id": 247,
+ "start": 1300.32,
+ "end": 1301.2,
+ "text": "record."
+ },
+ {
+ "id": 248,
+ "start": 1301.2,
+ "end": 1302.22,
+ "text": "Questioning"
+ },
+ {
+ "id": 249,
+ "start": 1302.22,
+ "end": 1303.22,
+ "text": "will"
+ },
+ {
+ "id": 250,
+ "start": 1303.22,
+ "end": 1303.82,
+ "text": "alternate"
+ },
+ {
+ "id": 251,
+ "start": 1303.82,
+ "end": 1304.32,
+ "text": "between"
+ },
+ {
+ "id": 252,
+ "start": 1304.32,
+ "end": 1304.96,
+ "text": "majority"
+ },
+ {
+ "id": 253,
+ "start": 1304.96,
+ "end": 1305.3,
+ "text": "and"
+ },
+ {
+ "id": 254,
+ "start": 1305.3,
+ "end": 1305.92,
+ "text": "minority"
+ },
+ {
+ "id": 255,
+ "start": 1305.92,
+ "end": 1306.42,
+ "text": "and"
+ },
+ {
+ "id": 256,
+ "start": 1306.42,
+ "end": 1306.92,
+ "text": "between"
+ },
+ {
+ "id": 257,
+ "start": 1306.92,
+ "end": 1308.04,
+ "text": "committees."
+ },
+ {
+ "id": 258,
+ "start": 1308.04,
+ "end": 1308.5,
+ "text": "We"
+ },
+ {
+ "id": 259,
+ "start": 1308.5,
+ "end": 1308.88,
+ "text": "will"
+ },
+ {
+ "id": 260,
+ "start": 1308.88,
+ "end": 1309.38,
+ "text": "proceed"
+ },
+ {
+ "id": 261,
+ "start": 1309.38,
+ "end": 1309.7,
+ "text": "in"
+ },
+ {
+ "id": 262,
+ "start": 1309.7,
+ "end": 1310.08,
+ "text": "order"
+ },
+ {
+ "id": 263,
+ "start": 1310.08,
+ "end": 1310.54,
+ "text": "based"
+ },
+ {
+ "id": 264,
+ "start": 1310.54,
+ "end": 1310.78,
+ "text": "on"
+ },
+ {
+ "id": 265,
+ "start": 1310.78,
+ "end": 1311.6,
+ "text": "respective"
+ },
+ {
+ "id": 266,
+ "start": 1311.6,
+ "end": 1312.48,
+ "text": "committee"
+ },
+ {
+ "id": 267,
+ "start": 1312.48,
+ "end": 1313.86,
+ "text": "seniority,"
+ },
+ {
+ "id": 268,
+ "start": 1313.86,
+ "end": 1314.34,
+ "text": "we"
+ },
+ {
+ "id": 269,
+ "start": 1314.34,
+ "end": 1314.68,
+ "text": "will"
+ },
+ {
+ "id": 270,
+ "start": 1314.68,
+ "end": 1315.4,
+ "text": "anticipate"
+ },
+ {
+ "id": 271,
+ "start": 1315.4,
+ "end": 1315.56,
+ "text": "a"
+ },
+ {
+ "id": 272,
+ "start": 1315.56,
+ "end": 1315.9,
+ "text": "couple"
+ },
+ {
+ "id": 273,
+ "start": 1315.9,
+ "end": 1316.28,
+ "text": "short"
+ },
+ {
+ "id": 274,
+ "start": 1316.28,
+ "end": 1316.64,
+ "text": "breaks"
+ },
+ {
+ "id": 275,
+ "start": 1316.64,
+ "end": 1317.3,
+ "text": "later"
+ },
+ {
+ "id": 276,
+ "start": 1317.3,
+ "end": 1317.4,
+ "text": "in"
+ },
+ {
+ "id": 277,
+ "start": 1317.4,
+ "end": 1317.52,
+ "text": "the"
+ },
+ {
+ "id": 278,
+ "start": 1317.52,
+ "end": 1318.12,
+ "text": "afternoon."
+ },
+ {
+ "id": 279,
+ "start": 1318.12,
+ "end": 1319.16,
+ "text": "And"
+ },
+ {
+ "id": 280,
+ "start": 1319.16,
+ "end": 1319.32,
+ "text": "so"
+ },
+ {
+ "id": 281,
+ "start": 1319.32,
+ "end": 1319.52,
+ "text": "it's"
+ },
+ {
+ "id": 282,
+ "start": 1319.52,
+ "end": 1319.68,
+ "text": "my"
+ },
+ {
+ "id": 283,
+ "start": 1319.68,
+ "end": 1320.12,
+ "text": "pleasure"
+ },
+ {
+ "id": 284,
+ "start": 1320.12,
+ "end": 1320.72,
+ "text": "to"
+ },
+ {
+ "id": 285,
+ "start": 1320.72,
+ "end": 1321.32,
+ "text": "recognize"
+ },
+ {
+ "id": 286,
+ "start": 1321.32,
+ "end": 1321.52,
+ "text": "the"
+ },
+ {
+ "id": 287,
+ "start": 1321.52,
+ "end": 1321.98,
+ "text": "chairman"
+ },
+ {
+ "id": 288,
+ "start": 1321.98,
+ "end": 1322.66,
+ "text": "of"
+ },
+ {
+ "id": 289,
+ "start": 1322.66,
+ "end": 1322.82,
+ "text": "the"
+ },
+ {
+ "id": 290,
+ "start": 1322.82,
+ "end": 1323.28,
+ "text": "Commerce"
+ },
+ {
+ "id": 291,
+ "start": 1323.28,
+ "end": 1324.66,
+ "text": "Committee"
+ },
+ {
+ "id": 292,
+ "start": 1324.66,
+ "end": 1325.86,
+ "text": "chairman"
+ },
+ {
+ "id": 293,
+ "start": 1325.86,
+ "end": 1326.24,
+ "text": "tone"
+ },
+ {
+ "id": 294,
+ "start": 1326.24,
+ "end": 1326.44,
+ "text": "for"
+ },
+ {
+ "id": 295,
+ "start": 1326.44,
+ "end": 1326.68,
+ "text": "his"
+ },
+ {
+ "id": 296,
+ "start": 1326.68,
+ "end": 1327.14,
+ "text": "opening"
+ },
+ {
+ "id": 297,
+ "start": 1327.14,
+ "end": 1327.62,
+ "text": "statement."
+ },
+ {
+ "id": 298,
+ "start": 1327.62,
+ "end": 1328.64,
+ "text": "Thank"
+ },
+ {
+ "id": 299,
+ "start": 1328.64,
+ "end": 1328.74,
+ "text": "you,"
+ },
+ {
+ "id": 300,
+ "start": 1328.74,
+ "end": 1329.04,
+ "text": "chairman."
+ },
+ {
+ "id": 301,
+ "start": 1329.04,
+ "end": 1329.48,
+ "text": "Grassley"
+ },
+ {
+ "id": 302,
+ "start": 1329.48,
+ "end": 1330.62,
+ "text": "today's"
+ },
+ {
+ "id": 303,
+ "start": 1330.62,
+ "end": 1330.88,
+ "text": "hearing"
+ },
+ {
+ "id": 304,
+ "start": 1330.88,
+ "end": 1331,
+ "text": "is"
+ },
+ {
+ "id": 305,
+ "start": 1331,
+ "end": 1331.68,
+ "text": "extraordinary"
+ },
+ {
+ "id": 306,
+ "start": 1331.68,
+ "end": 1332.46,
+ "text": "it's"
+ },
+ {
+ "id": 307,
+ "start": 1332.46,
+ "end": 1333.02,
+ "text": "extraordinary"
+ },
+ {
+ "id": 308,
+ "start": 1333.02,
+ "end": 1333.14,
+ "text": "to"
+ },
+ {
+ "id": 309,
+ "start": 1333.14,
+ "end": 1333.4,
+ "text": "hold"
+ },
+ {
+ "id": 310,
+ "start": 1333.4,
+ "end": 1333.64,
+ "text": "a"
+ },
+ {
+ "id": 311,
+ "start": 1333.64,
+ "end": 1334.08,
+ "text": "joint"
+ },
+ {
+ "id": 312,
+ "start": 1334.08,
+ "end": 1334.5,
+ "text": "committee"
+ },
+ {
+ "id": 313,
+ "start": 1334.5,
+ "end": 1334.88,
+ "text": "hearing"
+ },
+ {
+ "id": 314,
+ "start": 1334.88,
+ "end": 1335.78,
+ "text": "it's"
+ },
+ {
+ "id": 315,
+ "start": 1335.78,
+ "end": 1335.98,
+ "text": "even"
+ },
+ {
+ "id": 316,
+ "start": 1335.98,
+ "end": 1336.18,
+ "text": "more"
+ },
+ {
+ "id": 317,
+ "start": 1336.18,
+ "end": 1336.92,
+ "text": "extraordinary"
+ },
+ {
+ "id": 318,
+ "start": 1336.92,
+ "end": 1337.02,
+ "text": "to"
+ },
+ {
+ "id": 319,
+ "start": 1337.02,
+ "end": 1337.28,
+ "text": "have"
+ },
+ {
+ "id": 320,
+ "start": 1337.28,
+ "end": 1337.48,
+ "text": "a"
+ },
+ {
+ "id": 321,
+ "start": 1337.48,
+ "end": 1337.98,
+ "text": "single"
+ },
+ {
+ "id": 322,
+ "start": 1337.98,
+ "end": 1338.72,
+ "text": "CEO"
+ },
+ {
+ "id": 323,
+ "start": 1338.72,
+ "end": 1339.42,
+ "text": "testify"
+ },
+ {
+ "id": 324,
+ "start": 1339.42,
+ "end": 1339.72,
+ "text": "before"
+ },
+ {
+ "id": 325,
+ "start": 1339.72,
+ "end": 1340.14,
+ "text": "nearly"
+ },
+ {
+ "id": 326,
+ "start": 1340.14,
+ "end": 1340.5,
+ "text": "half"
+ },
+ {
+ "id": 327,
+ "start": 1340.5,
+ "end": 1341.1,
+ "text": "of"
+ },
+ {
+ "id": 328,
+ "start": 1341.1,
+ "end": 1341.22,
+ "text": "the"
+ },
+ {
+ "id": 329,
+ "start": 1341.22,
+ "end": 1341.54,
+ "text": "United"
+ },
+ {
+ "id": 330,
+ "start": 1341.54,
+ "end": 1341.82,
+ "text": "States"
+ },
+ {
+ "id": 331,
+ "start": 1341.82,
+ "end": 1342.66,
+ "text": "Senate."
+ },
+ {
+ "id": 332,
+ "start": 1342.66,
+ "end": 1343.28,
+ "text": "But"
+ },
+ {
+ "id": 333,
+ "start": 1343.28,
+ "end": 1343.48,
+ "text": "then"
+ },
+ {
+ "id": 334,
+ "start": 1343.48,
+ "end": 1344.04,
+ "text": "Facebook"
+ },
+ {
+ "id": 335,
+ "start": 1344.04,
+ "end": 1344.48,
+ "text": "is"
+ },
+ {
+ "id": 336,
+ "start": 1344.48,
+ "end": 1345.02,
+ "text": "pretty"
+ },
+ {
+ "id": 337,
+ "start": 1345.02,
+ "end": 1345.6,
+ "text": "extraordinary."
+ },
+ {
+ "id": 338,
+ "start": 1345.6,
+ "end": 1346.6,
+ "text": "More"
+ },
+ {
+ "id": 339,
+ "start": 1346.6,
+ "end": 1346.74,
+ "text": "than"
+ },
+ {
+ "id": 340,
+ "start": 1346.74,
+ "end": 1347.24,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 341,
+ "start": 1347.24,
+ "end": 1347.5,
+ "text": "people"
+ },
+ {
+ "id": 342,
+ "start": 1347.5,
+ "end": 1347.78,
+ "text": "use"
+ },
+ {
+ "id": 343,
+ "start": 1347.78,
+ "end": 1348.32,
+ "text": "Facebook"
+ },
+ {
+ "id": 344,
+ "start": 1348.32,
+ "end": 1349.02,
+ "text": "every"
+ },
+ {
+ "id": 345,
+ "start": 1349.02,
+ "end": 1349.24,
+ "text": "month."
+ },
+ {
+ "id": 346,
+ "start": 1349.24,
+ "end": 1351.06,
+ "text": "1.4"
+ },
+ {
+ "id": 347,
+ "start": 1351.06,
+ "end": 1351.5,
+ "text": "billion"
+ },
+ {
+ "id": 348,
+ "start": 1351.5,
+ "end": 1351.78,
+ "text": "people"
+ },
+ {
+ "id": 349,
+ "start": 1351.78,
+ "end": 1352.04,
+ "text": "use"
+ },
+ {
+ "id": 350,
+ "start": 1352.04,
+ "end": 1352.2,
+ "text": "it"
+ },
+ {
+ "id": 351,
+ "start": 1352.2,
+ "end": 1352.88,
+ "text": "every"
+ },
+ {
+ "id": 352,
+ "start": 1352.88,
+ "end": 1353.18,
+ "text": "day."
+ },
+ {
+ "id": 353,
+ "start": 1353.18,
+ "end": 1354.24,
+ "text": "More"
+ },
+ {
+ "id": 354,
+ "start": 1354.24,
+ "end": 1354.4,
+ "text": "than"
+ },
+ {
+ "id": 355,
+ "start": 1354.4,
+ "end": 1354.52,
+ "text": "the"
+ },
+ {
+ "id": 356,
+ "start": 1354.52,
+ "end": 1355.18,
+ "text": "population"
+ },
+ {
+ "id": 357,
+ "start": 1355.18,
+ "end": 1355.32,
+ "text": "of"
+ },
+ {
+ "id": 358,
+ "start": 1355.32,
+ "end": 1355.66,
+ "text": "any"
+ },
+ {
+ "id": 359,
+ "start": 1355.66,
+ "end": 1356.16,
+ "text": "country"
+ },
+ {
+ "id": 360,
+ "start": 1356.16,
+ "end": 1356.52,
+ "text": "on"
+ },
+ {
+ "id": 361,
+ "start": 1356.52,
+ "end": 1356.86,
+ "text": "Earth,"
+ },
+ {
+ "id": 362,
+ "start": 1356.86,
+ "end": 1357.28,
+ "text": "except"
+ },
+ {
+ "id": 363,
+ "start": 1357.28,
+ "end": 1357.66,
+ "text": "China"
+ },
+ {
+ "id": 364,
+ "start": 1357.66,
+ "end": 1358.6,
+ "text": "and"
+ },
+ {
+ "id": 365,
+ "start": 1358.6,
+ "end": 1358.76,
+ "text": "more"
+ },
+ {
+ "id": 366,
+ "start": 1358.76,
+ "end": 1358.9,
+ "text": "than"
+ },
+ {
+ "id": 367,
+ "start": 1358.9,
+ "end": 1359.1,
+ "text": "four"
+ },
+ {
+ "id": 368,
+ "start": 1359.1,
+ "end": 1359.36,
+ "text": "times"
+ },
+ {
+ "id": 369,
+ "start": 1359.36,
+ "end": 1359.5,
+ "text": "the"
+ },
+ {
+ "id": 370,
+ "start": 1359.5,
+ "end": 1360.06,
+ "text": "population"
+ },
+ {
+ "id": 371,
+ "start": 1360.06,
+ "end": 1360.14,
+ "text": "of"
+ },
+ {
+ "id": 372,
+ "start": 1360.14,
+ "end": 1360.24,
+ "text": "the"
+ },
+ {
+ "id": 373,
+ "start": 1360.24,
+ "end": 1360.52,
+ "text": "United"
+ },
+ {
+ "id": 374,
+ "start": 1360.52,
+ "end": 1361.38,
+ "text": "States"
+ },
+ {
+ "id": 375,
+ "start": 1361.38,
+ "end": 1362.08,
+ "text": "it's"
+ },
+ {
+ "id": 376,
+ "start": 1362.08,
+ "end": 1362.34,
+ "text": "also"
+ },
+ {
+ "id": 377,
+ "start": 1362.34,
+ "end": 1362.5,
+ "text": "more"
+ },
+ {
+ "id": 378,
+ "start": 1362.5,
+ "end": 1362.66,
+ "text": "than"
+ },
+ {
+ "id": 379,
+ "start": 1362.66,
+ "end": 1363.56,
+ "text": "1,500"
+ },
+ {
+ "id": 380,
+ "start": 1363.56,
+ "end": 1364.14,
+ "text": "times"
+ },
+ {
+ "id": 381,
+ "start": 1364.14,
+ "end": 1364.28,
+ "text": "the"
+ },
+ {
+ "id": 382,
+ "start": 1364.28,
+ "end": 1364.92,
+ "text": "population"
+ },
+ {
+ "id": 383,
+ "start": 1364.92,
+ "end": 1365.5,
+ "text": "of"
+ },
+ {
+ "id": 384,
+ "start": 1365.5,
+ "end": 1365.68,
+ "text": "my"
+ },
+ {
+ "id": 385,
+ "start": 1365.68,
+ "end": 1365.88,
+ "text": "home"
+ },
+ {
+ "id": 386,
+ "start": 1365.88,
+ "end": 1366.1,
+ "text": "state"
+ },
+ {
+ "id": 387,
+ "start": 1366.1,
+ "end": 1366.18,
+ "text": "of"
+ },
+ {
+ "id": 388,
+ "start": 1366.18,
+ "end": 1366.44,
+ "text": "South"
+ },
+ {
+ "id": 389,
+ "start": 1366.44,
+ "end": 1367.42,
+ "text": "Dakota."
+ },
+ {
+ "id": 390,
+ "start": 1367.42,
+ "end": 1368.22,
+ "text": "Plus,"
+ },
+ {
+ "id": 391,
+ "start": 1368.22,
+ "end": 1368.6,
+ "text": "roughly"
+ },
+ {
+ "id": 392,
+ "start": 1368.6,
+ "end": 1369.48,
+ "text": "45%"
+ },
+ {
+ "id": 393,
+ "start": 1369.48,
+ "end": 1369.58,
+ "text": "of"
+ },
+ {
+ "id": 394,
+ "start": 1369.58,
+ "end": 1369.96,
+ "text": "American"
+ },
+ {
+ "id": 395,
+ "start": 1369.96,
+ "end": 1370.3,
+ "text": "adults"
+ },
+ {
+ "id": 396,
+ "start": 1370.3,
+ "end": 1370.68,
+ "text": "report"
+ },
+ {
+ "id": 397,
+ "start": 1370.68,
+ "end": 1370.96,
+ "text": "getting"
+ },
+ {
+ "id": 398,
+ "start": 1370.96,
+ "end": 1371.04,
+ "text": "at"
+ },
+ {
+ "id": 399,
+ "start": 1371.04,
+ "end": 1371.22,
+ "text": "least"
+ },
+ {
+ "id": 400,
+ "start": 1371.22,
+ "end": 1371.38,
+ "text": "some"
+ },
+ {
+ "id": 401,
+ "start": 1371.38,
+ "end": 1371.48,
+ "text": "of"
+ },
+ {
+ "id": 402,
+ "start": 1371.48,
+ "end": 1371.64,
+ "text": "their"
+ },
+ {
+ "id": 403,
+ "start": 1371.64,
+ "end": 1371.88,
+ "text": "news"
+ },
+ {
+ "id": 404,
+ "start": 1371.88,
+ "end": 1372.04,
+ "text": "from"
+ },
+ {
+ "id": 405,
+ "start": 1372.04,
+ "end": 1372.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 406,
+ "start": 1372.5,
+ "end": 1373.54,
+ "text": "in"
+ },
+ {
+ "id": 407,
+ "start": 1373.54,
+ "end": 1373.76,
+ "text": "many"
+ },
+ {
+ "id": 408,
+ "start": 1373.76,
+ "end": 1374.94,
+ "text": "respects"
+ },
+ {
+ "id": 409,
+ "start": 1374.94,
+ "end": 1375.92,
+ "text": "Facebook's"
+ },
+ {
+ "id": 410,
+ "start": 1375.92,
+ "end": 1376.5,
+ "text": "incredible"
+ },
+ {
+ "id": 411,
+ "start": 1376.5,
+ "end": 1376.9,
+ "text": "reach"
+ },
+ {
+ "id": 412,
+ "start": 1376.9,
+ "end": 1377.38,
+ "text": "is"
+ },
+ {
+ "id": 413,
+ "start": 1377.38,
+ "end": 1377.56,
+ "text": "why"
+ },
+ {
+ "id": 414,
+ "start": 1377.56,
+ "end": 1377.76,
+ "text": "we're"
+ },
+ {
+ "id": 415,
+ "start": 1377.76,
+ "end": 1377.92,
+ "text": "here"
+ },
+ {
+ "id": 416,
+ "start": 1377.92,
+ "end": 1378.2,
+ "text": "today"
+ },
+ {
+ "id": 417,
+ "start": 1378.2,
+ "end": 1379.38,
+ "text": "we're"
+ },
+ {
+ "id": 418,
+ "start": 1379.38,
+ "end": 1379.54,
+ "text": "here"
+ },
+ {
+ "id": 419,
+ "start": 1379.54,
+ "end": 1379.84,
+ "text": "because"
+ },
+ {
+ "id": 420,
+ "start": 1379.84,
+ "end": 1379.98,
+ "text": "of"
+ },
+ {
+ "id": 421,
+ "start": 1379.98,
+ "end": 1380.14,
+ "text": "what"
+ },
+ {
+ "id": 422,
+ "start": 1380.14,
+ "end": 1380.26,
+ "text": "you"
+ },
+ {
+ "id": 423,
+ "start": 1380.26,
+ "end": 1380.58,
+ "text": "Mr"
+ },
+ {
+ "id": 424,
+ "start": 1380.58,
+ "end": 1381.24,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 425,
+ "start": 1381.24,
+ "end": 1381.44,
+ "text": "have"
+ },
+ {
+ "id": 426,
+ "start": 1381.44,
+ "end": 1381.92,
+ "text": "described"
+ },
+ {
+ "id": 427,
+ "start": 1381.92,
+ "end": 1382.08,
+ "text": "as"
+ },
+ {
+ "id": 428,
+ "start": 1382.08,
+ "end": 1382.16,
+ "text": "a"
+ },
+ {
+ "id": 429,
+ "start": 1382.16,
+ "end": 1382.4,
+ "text": "breach"
+ },
+ {
+ "id": 430,
+ "start": 1382.4,
+ "end": 1382.5,
+ "text": "of"
+ },
+ {
+ "id": 431,
+ "start": 1382.5,
+ "end": 1382.86,
+ "text": "trust."
+ },
+ {
+ "id": 432,
+ "start": 1382.86,
+ "end": 1384.04,
+ "text": "A"
+ },
+ {
+ "id": 433,
+ "start": 1384.04,
+ "end": 1384.34,
+ "text": "quiz"
+ },
+ {
+ "id": 434,
+ "start": 1384.34,
+ "end": 1384.66,
+ "text": "app"
+ },
+ {
+ "id": 435,
+ "start": 1384.66,
+ "end": 1384.92,
+ "text": "used"
+ },
+ {
+ "id": 436,
+ "start": 1384.92,
+ "end": 1385.06,
+ "text": "by"
+ },
+ {
+ "id": 437,
+ "start": 1385.06,
+ "end": 1385.76,
+ "text": "approximately"
+ },
+ {
+ "id": 438,
+ "start": 1385.76,
+ "end": 1386.68,
+ "text": "300,000"
+ },
+ {
+ "id": 439,
+ "start": 1386.68,
+ "end": 1387.04,
+ "text": "people"
+ },
+ {
+ "id": 440,
+ "start": 1387.04,
+ "end": 1388.02,
+ "text": "led"
+ },
+ {
+ "id": 441,
+ "start": 1388.02,
+ "end": 1388.12,
+ "text": "to"
+ },
+ {
+ "id": 442,
+ "start": 1388.12,
+ "end": 1388.84,
+ "text": "information"
+ },
+ {
+ "id": 443,
+ "start": 1388.84,
+ "end": 1389.68,
+ "text": "about"
+ },
+ {
+ "id": 444,
+ "start": 1389.68,
+ "end": 1390.78,
+ "text": "87,000,000"
+ },
+ {
+ "id": 445,
+ "start": 1390.78,
+ "end": 1391.3,
+ "text": "Facebook"
+ },
+ {
+ "id": 446,
+ "start": 1391.3,
+ "end": 1391.74,
+ "text": "users"
+ },
+ {
+ "id": 447,
+ "start": 1391.74,
+ "end": 1391.96,
+ "text": "being"
+ },
+ {
+ "id": 448,
+ "start": 1391.96,
+ "end": 1392.44,
+ "text": "obtained"
+ },
+ {
+ "id": 449,
+ "start": 1392.44,
+ "end": 1392.58,
+ "text": "by"
+ },
+ {
+ "id": 450,
+ "start": 1392.58,
+ "end": 1392.78,
+ "text": "the"
+ },
+ {
+ "id": 451,
+ "start": 1392.78,
+ "end": 1393.24,
+ "text": "company."
+ },
+ {
+ "id": 452,
+ "start": 1393.24,
+ "end": 1393.8,
+ "text": "Cambridge"
+ },
+ {
+ "id": 453,
+ "start": 1393.8,
+ "end": 1395.06,
+ "text": "Analytica."
+ },
+ {
+ "id": 454,
+ "start": 1395.06,
+ "end": 1395.84,
+ "text": "There"
+ },
+ {
+ "id": 455,
+ "start": 1395.84,
+ "end": 1396.02,
+ "text": "are"
+ },
+ {
+ "id": 456,
+ "start": 1396.02,
+ "end": 1396.44,
+ "text": "plenty"
+ },
+ {
+ "id": 457,
+ "start": 1396.44,
+ "end": 1396.6,
+ "text": "of"
+ },
+ {
+ "id": 458,
+ "start": 1396.6,
+ "end": 1397.1,
+ "text": "questions"
+ },
+ {
+ "id": 459,
+ "start": 1397.1,
+ "end": 1397.46,
+ "text": "about"
+ },
+ {
+ "id": 460,
+ "start": 1397.46,
+ "end": 1397.72,
+ "text": "the"
+ },
+ {
+ "id": 461,
+ "start": 1397.72,
+ "end": 1398.18,
+ "text": "behavior"
+ },
+ {
+ "id": 462,
+ "start": 1398.18,
+ "end": 1398.96,
+ "text": "of"
+ },
+ {
+ "id": 463,
+ "start": 1398.96,
+ "end": 1399.44,
+ "text": "Cambridge"
+ },
+ {
+ "id": 464,
+ "start": 1399.44,
+ "end": 1399.94,
+ "text": "Analytica"
+ },
+ {
+ "id": 465,
+ "start": 1399.94,
+ "end": 1400.16,
+ "text": "and"
+ },
+ {
+ "id": 466,
+ "start": 1400.16,
+ "end": 1400.26,
+ "text": "we"
+ },
+ {
+ "id": 467,
+ "start": 1400.26,
+ "end": 1400.62,
+ "text": "expect"
+ },
+ {
+ "id": 468,
+ "start": 1400.62,
+ "end": 1400.74,
+ "text": "to"
+ },
+ {
+ "id": 469,
+ "start": 1400.74,
+ "end": 1400.94,
+ "text": "hold"
+ },
+ {
+ "id": 470,
+ "start": 1400.94,
+ "end": 1400.98,
+ "text": "a"
+ },
+ {
+ "id": 471,
+ "start": 1400.98,
+ "end": 1401.38,
+ "text": "future"
+ },
+ {
+ "id": 472,
+ "start": 1401.38,
+ "end": 1401.74,
+ "text": "hearing"
+ },
+ {
+ "id": 473,
+ "start": 1401.74,
+ "end": 1401.94,
+ "text": "on"
+ },
+ {
+ "id": 474,
+ "start": 1401.94,
+ "end": 1402.44,
+ "text": "Cambridge"
+ },
+ {
+ "id": 475,
+ "start": 1402.44,
+ "end": 1402.6,
+ "text": "and"
+ },
+ {
+ "id": 476,
+ "start": 1402.6,
+ "end": 1403.5,
+ "text": "similar"
+ },
+ {
+ "id": 477,
+ "start": 1403.5,
+ "end": 1403.94,
+ "text": "firms."
+ },
+ {
+ "id": 478,
+ "start": 1403.94,
+ "end": 1404.8,
+ "text": "But"
+ },
+ {
+ "id": 479,
+ "start": 1404.8,
+ "end": 1404.94,
+ "text": "as"
+ },
+ {
+ "id": 480,
+ "start": 1404.94,
+ "end": 1405.06,
+ "text": "you"
+ },
+ {
+ "id": 481,
+ "start": 1405.06,
+ "end": 1405.9,
+ "text": "said,"
+ },
+ {
+ "id": 482,
+ "start": 1405.9,
+ "end": 1406.48,
+ "text": "this"
+ },
+ {
+ "id": 483,
+ "start": 1406.48,
+ "end": 1406.68,
+ "text": "is"
+ },
+ {
+ "id": 484,
+ "start": 1406.68,
+ "end": 1407.08,
+ "text": "not"
+ },
+ {
+ "id": 485,
+ "start": 1407.08,
+ "end": 1407.76,
+ "text": "likely"
+ },
+ {
+ "id": 486,
+ "start": 1407.76,
+ "end": 1408.12,
+ "text": "to"
+ },
+ {
+ "id": 487,
+ "start": 1408.12,
+ "end": 1408.26,
+ "text": "be"
+ },
+ {
+ "id": 488,
+ "start": 1408.26,
+ "end": 1409.04,
+ "text": "an"
+ },
+ {
+ "id": 489,
+ "start": 1409.04,
+ "end": 1409.68,
+ "text": "isolated"
+ },
+ {
+ "id": 490,
+ "start": 1409.68,
+ "end": 1410.6,
+ "text": "incident."
+ },
+ {
+ "id": 491,
+ "start": 1410.6,
+ "end": 1410.78,
+ "text": "A"
+ },
+ {
+ "id": 492,
+ "start": 1410.78,
+ "end": 1411.1,
+ "text": "fact"
+ },
+ {
+ "id": 493,
+ "start": 1411.1,
+ "end": 1411.7,
+ "text": "demonstrated"
+ },
+ {
+ "id": 494,
+ "start": 1411.7,
+ "end": 1411.86,
+ "text": "by"
+ },
+ {
+ "id": 495,
+ "start": 1411.86,
+ "end": 1412.3,
+ "text": "Facebook"
+ },
+ {
+ "id": 496,
+ "start": 1412.3,
+ "end": 1412.84,
+ "text": "suspension"
+ },
+ {
+ "id": 497,
+ "start": 1412.84,
+ "end": 1412.94,
+ "text": "of"
+ },
+ {
+ "id": 498,
+ "start": 1412.94,
+ "end": 1413.24,
+ "text": "another"
+ },
+ {
+ "id": 499,
+ "start": 1413.24,
+ "end": 1413.5,
+ "text": "firm"
+ },
+ {
+ "id": 500,
+ "start": 1413.5,
+ "end": 1413.68,
+ "text": "just"
+ },
+ {
+ "id": 501,
+ "start": 1413.68,
+ "end": 1413.86,
+ "text": "this"
+ },
+ {
+ "id": 502,
+ "start": 1413.86,
+ "end": 1414.12,
+ "text": "past"
+ },
+ {
+ "id": 503,
+ "start": 1414.12,
+ "end": 1414.98,
+ "text": "weekend."
+ },
+ {
+ "id": 504,
+ "start": 1414.98,
+ "end": 1415.52,
+ "text": "You"
+ },
+ {
+ "id": 505,
+ "start": 1415.52,
+ "end": 1416.02,
+ "text": "promised"
+ },
+ {
+ "id": 506,
+ "start": 1416.02,
+ "end": 1416.22,
+ "text": "that"
+ },
+ {
+ "id": 507,
+ "start": 1416.22,
+ "end": 1416.54,
+ "text": "when"
+ },
+ {
+ "id": 508,
+ "start": 1416.54,
+ "end": 1417.18,
+ "text": "Facebook"
+ },
+ {
+ "id": 509,
+ "start": 1417.18,
+ "end": 1417.7,
+ "text": "discovers"
+ },
+ {
+ "id": 510,
+ "start": 1417.7,
+ "end": 1418,
+ "text": "other"
+ },
+ {
+ "id": 511,
+ "start": 1418,
+ "end": 1418.26,
+ "text": "apps"
+ },
+ {
+ "id": 512,
+ "start": 1418.26,
+ "end": 1418.4,
+ "text": "that"
+ },
+ {
+ "id": 513,
+ "start": 1418.4,
+ "end": 1418.6,
+ "text": "had"
+ },
+ {
+ "id": 514,
+ "start": 1418.6,
+ "end": 1419,
+ "text": "access"
+ },
+ {
+ "id": 515,
+ "start": 1419,
+ "end": 1419.12,
+ "text": "to"
+ },
+ {
+ "id": 516,
+ "start": 1419.12,
+ "end": 1419.4,
+ "text": "large"
+ },
+ {
+ "id": 517,
+ "start": 1419.4,
+ "end": 1419.68,
+ "text": "amounts"
+ },
+ {
+ "id": 518,
+ "start": 1419.68,
+ "end": 1419.82,
+ "text": "of"
+ },
+ {
+ "id": 519,
+ "start": 1419.82,
+ "end": 1420.14,
+ "text": "user"
+ },
+ {
+ "id": 520,
+ "start": 1420.14,
+ "end": 1420.46,
+ "text": "data,"
+ },
+ {
+ "id": 521,
+ "start": 1420.46,
+ "end": 1421.34,
+ "text": "you"
+ },
+ {
+ "id": 522,
+ "start": 1421.34,
+ "end": 1421.52,
+ "text": "will"
+ },
+ {
+ "id": 523,
+ "start": 1421.52,
+ "end": 1422.14,
+ "text": "ban"
+ },
+ {
+ "id": 524,
+ "start": 1422.14,
+ "end": 1422.38,
+ "text": "them"
+ },
+ {
+ "id": 525,
+ "start": 1422.38,
+ "end": 1422.7,
+ "text": "until"
+ },
+ {
+ "id": 526,
+ "start": 1422.7,
+ "end": 1422.98,
+ "text": "those"
+ },
+ {
+ "id": 527,
+ "start": 1422.98,
+ "end": 1423.46,
+ "text": "affected"
+ },
+ {
+ "id": 528,
+ "start": 1423.46,
+ "end": 1424.42,
+ "text": "and"
+ },
+ {
+ "id": 529,
+ "start": 1424.42,
+ "end": 1424.64,
+ "text": "that's"
+ },
+ {
+ "id": 530,
+ "start": 1424.64,
+ "end": 1426.01,
+ "text": "appropriate."
+ },
+ {
+ "id": 531,
+ "start": 1426.01,
+ "end": 1426.13,
+ "text": "But"
+ },
+ {
+ "id": 532,
+ "start": 1426.13,
+ "end": 1426.27,
+ "text": "it's"
+ },
+ {
+ "id": 533,
+ "start": 1426.27,
+ "end": 1426.81,
+ "text": "unlikely"
+ },
+ {
+ "id": 534,
+ "start": 1426.81,
+ "end": 1426.99,
+ "text": "to"
+ },
+ {
+ "id": 535,
+ "start": 1426.99,
+ "end": 1427.11,
+ "text": "be"
+ },
+ {
+ "id": 536,
+ "start": 1427.11,
+ "end": 1427.47,
+ "text": "enough"
+ },
+ {
+ "id": 537,
+ "start": 1427.47,
+ "end": 1427.81,
+ "text": "for"
+ },
+ {
+ "id": 538,
+ "start": 1427.81,
+ "end": 1427.93,
+ "text": "the"
+ },
+ {
+ "id": 539,
+ "start": 1427.93,
+ "end": 1428.61,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 540,
+ "start": 1428.61,
+ "end": 1429.11,
+ "text": "Facebook"
+ },
+ {
+ "id": 541,
+ "start": 1429.11,
+ "end": 1429.57,
+ "text": "users."
+ },
+ {
+ "id": 542,
+ "start": 1429.57,
+ "end": 1430.63,
+ "text": "One"
+ },
+ {
+ "id": 543,
+ "start": 1430.63,
+ "end": 1430.99,
+ "text": "reason"
+ },
+ {
+ "id": 544,
+ "start": 1430.99,
+ "end": 1431.17,
+ "text": "that"
+ },
+ {
+ "id": 545,
+ "start": 1431.17,
+ "end": 1431.39,
+ "text": "so"
+ },
+ {
+ "id": 546,
+ "start": 1431.39,
+ "end": 1431.63,
+ "text": "many"
+ },
+ {
+ "id": 547,
+ "start": 1431.63,
+ "end": 1431.97,
+ "text": "people"
+ },
+ {
+ "id": 548,
+ "start": 1431.97,
+ "end": 1432.41,
+ "text": "are"
+ },
+ {
+ "id": 549,
+ "start": 1432.41,
+ "end": 1432.73,
+ "text": "worried"
+ },
+ {
+ "id": 550,
+ "start": 1432.73,
+ "end": 1432.95,
+ "text": "about"
+ },
+ {
+ "id": 551,
+ "start": 1432.95,
+ "end": 1433.17,
+ "text": "this"
+ },
+ {
+ "id": 552,
+ "start": 1433.17,
+ "end": 1433.65,
+ "text": "incident"
+ },
+ {
+ "id": 553,
+ "start": 1433.65,
+ "end": 1434.43,
+ "text": "is"
+ },
+ {
+ "id": 554,
+ "start": 1434.43,
+ "end": 1434.59,
+ "text": "what"
+ },
+ {
+ "id": 555,
+ "start": 1434.59,
+ "end": 1434.69,
+ "text": "it"
+ },
+ {
+ "id": 556,
+ "start": 1434.69,
+ "end": 1434.89,
+ "text": "says"
+ },
+ {
+ "id": 557,
+ "start": 1434.89,
+ "end": 1435.25,
+ "text": "about"
+ },
+ {
+ "id": 558,
+ "start": 1435.25,
+ "end": 1435.49,
+ "text": "how"
+ },
+ {
+ "id": 559,
+ "start": 1435.49,
+ "end": 1435.99,
+ "text": "Facebook"
+ },
+ {
+ "id": 560,
+ "start": 1435.99,
+ "end": 1437.04,
+ "text": "works."
+ },
+ {
+ "id": 561,
+ "start": 1437.04,
+ "end": 1437.88,
+ "text": "The"
+ },
+ {
+ "id": 562,
+ "start": 1437.88,
+ "end": 1438.26,
+ "text": "idea"
+ },
+ {
+ "id": 563,
+ "start": 1438.26,
+ "end": 1439.36,
+ "text": "that"
+ },
+ {
+ "id": 564,
+ "start": 1439.36,
+ "end": 1439.54,
+ "text": "for"
+ },
+ {
+ "id": 565,
+ "start": 1439.54,
+ "end": 1439.84,
+ "text": "every"
+ },
+ {
+ "id": 566,
+ "start": 1439.84,
+ "end": 1440.58,
+ "text": "person"
+ },
+ {
+ "id": 567,
+ "start": 1440.58,
+ "end": 1440.76,
+ "text": "who"
+ },
+ {
+ "id": 568,
+ "start": 1440.76,
+ "end": 1441.34,
+ "text": "decided"
+ },
+ {
+ "id": 569,
+ "start": 1441.34,
+ "end": 1441.48,
+ "text": "to"
+ },
+ {
+ "id": 570,
+ "start": 1441.48,
+ "end": 1441.72,
+ "text": "try"
+ },
+ {
+ "id": 571,
+ "start": 1441.72,
+ "end": 1441.98,
+ "text": "an"
+ },
+ {
+ "id": 572,
+ "start": 1441.98,
+ "end": 1442.74,
+ "text": "app"
+ },
+ {
+ "id": 573,
+ "start": 1442.74,
+ "end": 1443.78,
+ "text": "information"
+ },
+ {
+ "id": 574,
+ "start": 1443.78,
+ "end": 1444.08,
+ "text": "about"
+ },
+ {
+ "id": 575,
+ "start": 1444.08,
+ "end": 1444.46,
+ "text": "nearly"
+ },
+ {
+ "id": 576,
+ "start": 1444.46,
+ "end": 1445.08,
+ "text": "300"
+ },
+ {
+ "id": 577,
+ "start": 1445.08,
+ "end": 1445.56,
+ "text": "other"
+ },
+ {
+ "id": 578,
+ "start": 1445.56,
+ "end": 1445.86,
+ "text": "people"
+ },
+ {
+ "id": 579,
+ "start": 1445.86,
+ "end": 1446.84,
+ "text": "was"
+ },
+ {
+ "id": 580,
+ "start": 1446.84,
+ "end": 1447.32,
+ "text": "scraped"
+ },
+ {
+ "id": 581,
+ "start": 1447.32,
+ "end": 1447.48,
+ "text": "from"
+ },
+ {
+ "id": 582,
+ "start": 1447.48,
+ "end": 1447.68,
+ "text": "your"
+ },
+ {
+ "id": 583,
+ "start": 1447.68,
+ "end": 1448.2,
+ "text": "services"
+ },
+ {
+ "id": 584,
+ "start": 1448.2,
+ "end": 1448.32,
+ "text": "to"
+ },
+ {
+ "id": 585,
+ "start": 1448.32,
+ "end": 1448.44,
+ "text": "put"
+ },
+ {
+ "id": 586,
+ "start": 1448.44,
+ "end": 1448.56,
+ "text": "it"
+ },
+ {
+ "id": 587,
+ "start": 1448.56,
+ "end": 1449.38,
+ "text": "mildly"
+ },
+ {
+ "id": 588,
+ "start": 1449.38,
+ "end": 1450.8,
+ "text": "disturbing."
+ },
+ {
+ "id": 589,
+ "start": 1450.8,
+ "end": 1451.34,
+ "text": "And"
+ },
+ {
+ "id": 590,
+ "start": 1451.34,
+ "end": 1451.44,
+ "text": "the"
+ },
+ {
+ "id": 591,
+ "start": 1451.44,
+ "end": 1451.7,
+ "text": "fact"
+ },
+ {
+ "id": 592,
+ "start": 1451.7,
+ "end": 1451.84,
+ "text": "that"
+ },
+ {
+ "id": 593,
+ "start": 1451.84,
+ "end": 1452.2,
+ "text": "those"
+ },
+ {
+ "id": 594,
+ "start": 1452.2,
+ "end": 1453.78,
+ "text": "87,000,000"
+ },
+ {
+ "id": 595,
+ "start": 1453.78,
+ "end": 1454.08,
+ "text": "people"
+ },
+ {
+ "id": 596,
+ "start": 1454.08,
+ "end": 1454.32,
+ "text": "may"
+ },
+ {
+ "id": 597,
+ "start": 1454.32,
+ "end": 1454.48,
+ "text": "have"
+ },
+ {
+ "id": 598,
+ "start": 1454.48,
+ "end": 1454.94,
+ "text": "technically"
+ },
+ {
+ "id": 599,
+ "start": 1454.94,
+ "end": 1455.44,
+ "text": "consented"
+ },
+ {
+ "id": 600,
+ "start": 1455.44,
+ "end": 1455.56,
+ "text": "to"
+ },
+ {
+ "id": 601,
+ "start": 1455.56,
+ "end": 1455.86,
+ "text": "making"
+ },
+ {
+ "id": 602,
+ "start": 1455.86,
+ "end": 1456.06,
+ "text": "their"
+ },
+ {
+ "id": 603,
+ "start": 1456.06,
+ "end": 1456.28,
+ "text": "data"
+ },
+ {
+ "id": 604,
+ "start": 1456.28,
+ "end": 1456.72,
+ "text": "available"
+ },
+ {
+ "id": 605,
+ "start": 1456.72,
+ "end": 1457.04,
+ "text": "doesn't"
+ },
+ {
+ "id": 606,
+ "start": 1457.04,
+ "end": 1457.3,
+ "text": "make"
+ },
+ {
+ "id": 607,
+ "start": 1457.3,
+ "end": 1458,
+ "text": "most"
+ },
+ {
+ "id": 608,
+ "start": 1458,
+ "end": 1458.26,
+ "text": "people"
+ },
+ {
+ "id": 609,
+ "start": 1458.26,
+ "end": 1458.56,
+ "text": "feel"
+ },
+ {
+ "id": 610,
+ "start": 1458.56,
+ "end": 1459.42,
+ "text": "any"
+ },
+ {
+ "id": 611,
+ "start": 1459.42,
+ "end": 1459.66,
+ "text": "better."
+ },
+ {
+ "id": 612,
+ "start": 1459.66,
+ "end": 1460.62,
+ "text": "The"
+ },
+ {
+ "id": 613,
+ "start": 1460.62,
+ "end": 1460.96,
+ "text": "recent"
+ },
+ {
+ "id": 614,
+ "start": 1460.96,
+ "end": 1461.5,
+ "text": "revelation"
+ },
+ {
+ "id": 615,
+ "start": 1461.5,
+ "end": 1461.72,
+ "text": "that"
+ },
+ {
+ "id": 616,
+ "start": 1461.72,
+ "end": 1462.2,
+ "text": "malicious"
+ },
+ {
+ "id": 617,
+ "start": 1462.2,
+ "end": 1462.64,
+ "text": "actors"
+ },
+ {
+ "id": 618,
+ "start": 1462.64,
+ "end": 1462.82,
+ "text": "were"
+ },
+ {
+ "id": 619,
+ "start": 1462.82,
+ "end": 1463,
+ "text": "able"
+ },
+ {
+ "id": 620,
+ "start": 1463,
+ "end": 1463.12,
+ "text": "to"
+ },
+ {
+ "id": 621,
+ "start": 1463.12,
+ "end": 1463.66,
+ "text": "utilize"
+ },
+ {
+ "id": 622,
+ "start": 1463.66,
+ "end": 1464.22,
+ "text": "Facebook's"
+ },
+ {
+ "id": 623,
+ "start": 1464.22,
+ "end": 1464.8,
+ "text": "default"
+ },
+ {
+ "id": 624,
+ "start": 1464.8,
+ "end": 1465.24,
+ "text": "privacy"
+ },
+ {
+ "id": 625,
+ "start": 1465.24,
+ "end": 1465.62,
+ "text": "settings"
+ },
+ {
+ "id": 626,
+ "start": 1465.62,
+ "end": 1466.4,
+ "text": "to"
+ },
+ {
+ "id": 627,
+ "start": 1466.4,
+ "end": 1466.7,
+ "text": "match"
+ },
+ {
+ "id": 628,
+ "start": 1466.7,
+ "end": 1467.26,
+ "text": "email"
+ },
+ {
+ "id": 629,
+ "start": 1467.26,
+ "end": 1467.9,
+ "text": "addresses"
+ },
+ {
+ "id": 630,
+ "start": 1467.9,
+ "end": 1468.06,
+ "text": "and"
+ },
+ {
+ "id": 631,
+ "start": 1468.06,
+ "end": 1468.32,
+ "text": "phone"
+ },
+ {
+ "id": 632,
+ "start": 1468.32,
+ "end": 1468.66,
+ "text": "numbers"
+ },
+ {
+ "id": 633,
+ "start": 1468.66,
+ "end": 1468.94,
+ "text": "found"
+ },
+ {
+ "id": 634,
+ "start": 1468.94,
+ "end": 1469.08,
+ "text": "on"
+ },
+ {
+ "id": 635,
+ "start": 1469.08,
+ "end": 1469.2,
+ "text": "the"
+ },
+ {
+ "id": 636,
+ "start": 1469.2,
+ "end": 1469.42,
+ "text": "so"
+ },
+ {
+ "id": 637,
+ "start": 1469.42,
+ "end": 1469.68,
+ "text": "called"
+ },
+ {
+ "id": 638,
+ "start": 1469.68,
+ "end": 1470.02,
+ "text": "dark"
+ },
+ {
+ "id": 639,
+ "start": 1470.02,
+ "end": 1470.4,
+ "text": "web"
+ },
+ {
+ "id": 640,
+ "start": 1470.4,
+ "end": 1471.36,
+ "text": "to"
+ },
+ {
+ "id": 641,
+ "start": 1471.36,
+ "end": 1471.8,
+ "text": "public"
+ },
+ {
+ "id": 642,
+ "start": 1471.8,
+ "end": 1472.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 643,
+ "start": 1472.34,
+ "end": 1473.4,
+ "text": "profiles,"
+ },
+ {
+ "id": 644,
+ "start": 1473.4,
+ "end": 1474.38,
+ "text": "potentially"
+ },
+ {
+ "id": 645,
+ "start": 1474.38,
+ "end": 1474.88,
+ "text": "affecting"
+ },
+ {
+ "id": 646,
+ "start": 1474.88,
+ "end": 1475.18,
+ "text": "all"
+ },
+ {
+ "id": 647,
+ "start": 1475.18,
+ "end": 1475.78,
+ "text": "Facebook"
+ },
+ {
+ "id": 648,
+ "start": 1475.78,
+ "end": 1476.26,
+ "text": "users"
+ },
+ {
+ "id": 649,
+ "start": 1476.26,
+ "end": 1477.28,
+ "text": "only"
+ },
+ {
+ "id": 650,
+ "start": 1477.28,
+ "end": 1477.54,
+ "text": "adds"
+ },
+ {
+ "id": 651,
+ "start": 1477.54,
+ "end": 1477.78,
+ "text": "fuel"
+ },
+ {
+ "id": 652,
+ "start": 1477.78,
+ "end": 1477.88,
+ "text": "to"
+ },
+ {
+ "id": 653,
+ "start": 1477.88,
+ "end": 1478.02,
+ "text": "the"
+ },
+ {
+ "id": 654,
+ "start": 1478.02,
+ "end": 1478.8,
+ "text": "fire."
+ },
+ {
+ "id": 655,
+ "start": 1478.8,
+ "end": 1479.44,
+ "text": "What"
+ },
+ {
+ "id": 656,
+ "start": 1479.44,
+ "end": 1479.78,
+ "text": "binds"
+ },
+ {
+ "id": 657,
+ "start": 1479.78,
+ "end": 1480.04,
+ "text": "these"
+ },
+ {
+ "id": 658,
+ "start": 1480.04,
+ "end": 1480.18,
+ "text": "two"
+ },
+ {
+ "id": 659,
+ "start": 1480.18,
+ "end": 1480.76,
+ "text": "incidents"
+ },
+ {
+ "id": 660,
+ "start": 1480.76,
+ "end": 1481.08,
+ "text": "is"
+ },
+ {
+ "id": 661,
+ "start": 1481.08,
+ "end": 1481.2,
+ "text": "if"
+ },
+ {
+ "id": 662,
+ "start": 1481.2,
+ "end": 1481.34,
+ "text": "they"
+ },
+ {
+ "id": 663,
+ "start": 1481.34,
+ "end": 1481.58,
+ "text": "don't"
+ },
+ {
+ "id": 664,
+ "start": 1481.58,
+ "end": 1481.88,
+ "text": "appear"
+ },
+ {
+ "id": 665,
+ "start": 1481.88,
+ "end": 1482,
+ "text": "to"
+ },
+ {
+ "id": 666,
+ "start": 1482,
+ "end": 1482.14,
+ "text": "be"
+ },
+ {
+ "id": 667,
+ "start": 1482.14,
+ "end": 1482.54,
+ "text": "caused"
+ },
+ {
+ "id": 668,
+ "start": 1482.54,
+ "end": 1482.68,
+ "text": "by"
+ },
+ {
+ "id": 669,
+ "start": 1482.68,
+ "end": 1482.84,
+ "text": "the"
+ },
+ {
+ "id": 670,
+ "start": 1482.84,
+ "end": 1483.08,
+ "text": "kind"
+ },
+ {
+ "id": 671,
+ "start": 1483.08,
+ "end": 1483.2,
+ "text": "of"
+ },
+ {
+ "id": 672,
+ "start": 1483.2,
+ "end": 1483.8,
+ "text": "negligence"
+ },
+ {
+ "id": 673,
+ "start": 1483.8,
+ "end": 1483.98,
+ "text": "that"
+ },
+ {
+ "id": 674,
+ "start": 1483.98,
+ "end": 1484.34,
+ "text": "allows"
+ },
+ {
+ "id": 675,
+ "start": 1484.34,
+ "end": 1484.8,
+ "text": "typical"
+ },
+ {
+ "id": 676,
+ "start": 1484.8,
+ "end": 1485.04,
+ "text": "data"
+ },
+ {
+ "id": 677,
+ "start": 1485.04,
+ "end": 1485.42,
+ "text": "breaches"
+ },
+ {
+ "id": 678,
+ "start": 1485.42,
+ "end": 1485.54,
+ "text": "to"
+ },
+ {
+ "id": 679,
+ "start": 1485.54,
+ "end": 1486.4,
+ "text": "happen."
+ },
+ {
+ "id": 680,
+ "start": 1486.4,
+ "end": 1487.42,
+ "text": "Instead,"
+ },
+ {
+ "id": 681,
+ "start": 1487.42,
+ "end": 1488.3,
+ "text": "they"
+ },
+ {
+ "id": 682,
+ "start": 1488.3,
+ "end": 1488.52,
+ "text": "both"
+ },
+ {
+ "id": 683,
+ "start": 1488.52,
+ "end": 1488.84,
+ "text": "appear"
+ },
+ {
+ "id": 684,
+ "start": 1488.84,
+ "end": 1488.98,
+ "text": "to"
+ },
+ {
+ "id": 685,
+ "start": 1488.98,
+ "end": 1489.08,
+ "text": "be"
+ },
+ {
+ "id": 686,
+ "start": 1489.08,
+ "end": 1489.24,
+ "text": "the"
+ },
+ {
+ "id": 687,
+ "start": 1489.24,
+ "end": 1489.6,
+ "text": "result"
+ },
+ {
+ "id": 688,
+ "start": 1489.6,
+ "end": 1489.72,
+ "text": "of"
+ },
+ {
+ "id": 689,
+ "start": 1489.72,
+ "end": 1490.02,
+ "text": "people"
+ },
+ {
+ "id": 690,
+ "start": 1490.02,
+ "end": 1490.54,
+ "text": "exploiting"
+ },
+ {
+ "id": 691,
+ "start": 1490.54,
+ "end": 1490.68,
+ "text": "the"
+ },
+ {
+ "id": 692,
+ "start": 1490.68,
+ "end": 1490.94,
+ "text": "very"
+ },
+ {
+ "id": 693,
+ "start": 1490.94,
+ "end": 1491.3,
+ "text": "tools"
+ },
+ {
+ "id": 694,
+ "start": 1491.3,
+ "end": 1491.44,
+ "text": "that"
+ },
+ {
+ "id": 695,
+ "start": 1491.44,
+ "end": 1491.68,
+ "text": "you've"
+ },
+ {
+ "id": 696,
+ "start": 1491.68,
+ "end": 1492.1,
+ "text": "created"
+ },
+ {
+ "id": 697,
+ "start": 1492.1,
+ "end": 1492.22,
+ "text": "to"
+ },
+ {
+ "id": 698,
+ "start": 1492.22,
+ "end": 1492.86,
+ "text": "manipulate"
+ },
+ {
+ "id": 699,
+ "start": 1492.86,
+ "end": 1493.62,
+ "text": "users"
+ },
+ {
+ "id": 700,
+ "start": 1493.62,
+ "end": 1494.76,
+ "text": "information."
+ },
+ {
+ "id": 701,
+ "start": 1494.76,
+ "end": 1495.42,
+ "text": "I"
+ },
+ {
+ "id": 702,
+ "start": 1495.42,
+ "end": 1495.62,
+ "text": "know"
+ },
+ {
+ "id": 703,
+ "start": 1495.62,
+ "end": 1496.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 704,
+ "start": 1496.12,
+ "end": 1496.26,
+ "text": "is"
+ },
+ {
+ "id": 705,
+ "start": 1496.26,
+ "end": 1496.6,
+ "text": "taken"
+ },
+ {
+ "id": 706,
+ "start": 1496.6,
+ "end": 1496.94,
+ "text": "several"
+ },
+ {
+ "id": 707,
+ "start": 1496.94,
+ "end": 1497.26,
+ "text": "steps"
+ },
+ {
+ "id": 708,
+ "start": 1497.26,
+ "end": 1497.38,
+ "text": "and"
+ },
+ {
+ "id": 709,
+ "start": 1497.38,
+ "end": 1497.74,
+ "text": "intends"
+ },
+ {
+ "id": 710,
+ "start": 1497.74,
+ "end": 1497.84,
+ "text": "to"
+ },
+ {
+ "id": 711,
+ "start": 1497.84,
+ "end": 1498.08,
+ "text": "take"
+ },
+ {
+ "id": 712,
+ "start": 1498.08,
+ "end": 1498.34,
+ "text": "more"
+ },
+ {
+ "id": 713,
+ "start": 1498.34,
+ "end": 1498.52,
+ "text": "to"
+ },
+ {
+ "id": 714,
+ "start": 1498.52,
+ "end": 1498.86,
+ "text": "address"
+ },
+ {
+ "id": 715,
+ "start": 1498.86,
+ "end": 1499.06,
+ "text": "these"
+ },
+ {
+ "id": 716,
+ "start": 1499.06,
+ "end": 1500.26,
+ "text": "issues."
+ },
+ {
+ "id": 717,
+ "start": 1500.26,
+ "end": 1501.24,
+ "text": "Nevertheless,"
+ },
+ {
+ "id": 718,
+ "start": 1501.24,
+ "end": 1502.42,
+ "text": "some"
+ },
+ {
+ "id": 719,
+ "start": 1502.42,
+ "end": 1502.64,
+ "text": "have"
+ },
+ {
+ "id": 720,
+ "start": 1502.64,
+ "end": 1503.08,
+ "text": "warned"
+ },
+ {
+ "id": 721,
+ "start": 1503.08,
+ "end": 1503.36,
+ "text": "that"
+ },
+ {
+ "id": 722,
+ "start": 1503.36,
+ "end": 1503.5,
+ "text": "the"
+ },
+ {
+ "id": 723,
+ "start": 1503.5,
+ "end": 1503.98,
+ "text": "actions"
+ },
+ {
+ "id": 724,
+ "start": 1503.98,
+ "end": 1504.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 725,
+ "start": 1504.54,
+ "end": 1504.7,
+ "text": "is"
+ },
+ {
+ "id": 726,
+ "start": 1504.7,
+ "end": 1505.1,
+ "text": "taking"
+ },
+ {
+ "id": 727,
+ "start": 1505.1,
+ "end": 1505.28,
+ "text": "to"
+ },
+ {
+ "id": 728,
+ "start": 1505.28,
+ "end": 1505.88,
+ "text": "ensure"
+ },
+ {
+ "id": 729,
+ "start": 1505.88,
+ "end": 1506.12,
+ "text": "that"
+ },
+ {
+ "id": 730,
+ "start": 1506.12,
+ "end": 1506.73,
+ "text": "third"
+ },
+ {
+ "id": 731,
+ "start": 1506.73,
+ "end": 1507.85,
+ "text": "is"
+ },
+ {
+ "id": 732,
+ "start": 1507.85,
+ "end": 1508.09,
+ "text": "don't"
+ },
+ {
+ "id": 733,
+ "start": 1508.09,
+ "end": 1508.43,
+ "text": "obtain"
+ },
+ {
+ "id": 734,
+ "start": 1508.43,
+ "end": 1508.77,
+ "text": "data"
+ },
+ {
+ "id": 735,
+ "start": 1508.77,
+ "end": 1508.93,
+ "text": "from"
+ },
+ {
+ "id": 736,
+ "start": 1508.93,
+ "end": 1509.61,
+ "text": "unsuspecting"
+ },
+ {
+ "id": 737,
+ "start": 1509.61,
+ "end": 1510.07,
+ "text": "users"
+ },
+ {
+ "id": 738,
+ "start": 1510.07,
+ "end": 1510.81,
+ "text": "while"
+ },
+ {
+ "id": 739,
+ "start": 1510.81,
+ "end": 1511.49,
+ "text": "necessary"
+ },
+ {
+ "id": 740,
+ "start": 1511.49,
+ "end": 1512.55,
+ "text": "will"
+ },
+ {
+ "id": 741,
+ "start": 1512.55,
+ "end": 1513.03,
+ "text": "actually"
+ },
+ {
+ "id": 742,
+ "start": 1513.03,
+ "end": 1513.33,
+ "text": "serve"
+ },
+ {
+ "id": 743,
+ "start": 1513.33,
+ "end": 1513.49,
+ "text": "to"
+ },
+ {
+ "id": 744,
+ "start": 1513.49,
+ "end": 1513.87,
+ "text": "enhance"
+ },
+ {
+ "id": 745,
+ "start": 1513.87,
+ "end": 1514.55,
+ "text": "Facebook's"
+ },
+ {
+ "id": 746,
+ "start": 1514.55,
+ "end": 1514.99,
+ "text": "own"
+ },
+ {
+ "id": 747,
+ "start": 1514.99,
+ "end": 1515.53,
+ "text": "ability"
+ },
+ {
+ "id": 748,
+ "start": 1515.53,
+ "end": 1516.17,
+ "text": "to"
+ },
+ {
+ "id": 749,
+ "start": 1516.17,
+ "end": 1516.55,
+ "text": "market"
+ },
+ {
+ "id": 750,
+ "start": 1516.55,
+ "end": 1516.79,
+ "text": "such"
+ },
+ {
+ "id": 751,
+ "start": 1516.79,
+ "end": 1517.17,
+ "text": "data"
+ },
+ {
+ "id": 752,
+ "start": 1517.17,
+ "end": 1518.7,
+ "text": "exclusively"
+ },
+ {
+ "id": 753,
+ "start": 1518.7,
+ "end": 1519.5,
+ "text": "most"
+ },
+ {
+ "id": 754,
+ "start": 1519.5,
+ "end": 1519.62,
+ "text": "of"
+ },
+ {
+ "id": 755,
+ "start": 1519.62,
+ "end": 1519.74,
+ "text": "us"
+ },
+ {
+ "id": 756,
+ "start": 1519.74,
+ "end": 1520.42,
+ "text": "understand"
+ },
+ {
+ "id": 757,
+ "start": 1520.42,
+ "end": 1520.7,
+ "text": "that"
+ },
+ {
+ "id": 758,
+ "start": 1520.7,
+ "end": 1521.28,
+ "text": "whether"
+ },
+ {
+ "id": 759,
+ "start": 1521.28,
+ "end": 1521.58,
+ "text": "you're"
+ },
+ {
+ "id": 760,
+ "start": 1521.58,
+ "end": 1522.42,
+ "text": "using"
+ },
+ {
+ "id": 761,
+ "start": 1522.42,
+ "end": 1523.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 762,
+ "start": 1523.02,
+ "end": 1523.8,
+ "text": "or"
+ },
+ {
+ "id": 763,
+ "start": 1523.8,
+ "end": 1524.2,
+ "text": "Google"
+ },
+ {
+ "id": 764,
+ "start": 1524.2,
+ "end": 1524.36,
+ "text": "or"
+ },
+ {
+ "id": 765,
+ "start": 1524.36,
+ "end": 1524.56,
+ "text": "some"
+ },
+ {
+ "id": 766,
+ "start": 1524.56,
+ "end": 1524.82,
+ "text": "other"
+ },
+ {
+ "id": 767,
+ "start": 1524.82,
+ "end": 1525.24,
+ "text": "online"
+ },
+ {
+ "id": 768,
+ "start": 1525.24,
+ "end": 1525.78,
+ "text": "services."
+ },
+ {
+ "id": 769,
+ "start": 1525.78,
+ "end": 1526.68,
+ "text": "We"
+ },
+ {
+ "id": 770,
+ "start": 1526.68,
+ "end": 1526.84,
+ "text": "are"
+ },
+ {
+ "id": 771,
+ "start": 1526.84,
+ "end": 1527.2,
+ "text": "trading"
+ },
+ {
+ "id": 772,
+ "start": 1527.2,
+ "end": 1527.5,
+ "text": "certain"
+ },
+ {
+ "id": 773,
+ "start": 1527.5,
+ "end": 1528,
+ "text": "information"
+ },
+ {
+ "id": 774,
+ "start": 1528,
+ "end": 1528.28,
+ "text": "about"
+ },
+ {
+ "id": 775,
+ "start": 1528.28,
+ "end": 1528.76,
+ "text": "ourselves"
+ },
+ {
+ "id": 776,
+ "start": 1528.76,
+ "end": 1528.94,
+ "text": "for"
+ },
+ {
+ "id": 777,
+ "start": 1528.94,
+ "end": 1529.3,
+ "text": "free"
+ },
+ {
+ "id": 778,
+ "start": 1529.3,
+ "end": 1529.94,
+ "text": "or"
+ },
+ {
+ "id": 779,
+ "start": 1529.94,
+ "end": 1530.18,
+ "text": "low"
+ },
+ {
+ "id": 780,
+ "start": 1530.18,
+ "end": 1530.44,
+ "text": "cost"
+ },
+ {
+ "id": 781,
+ "start": 1530.44,
+ "end": 1531.7,
+ "text": "services."
+ },
+ {
+ "id": 782,
+ "start": 1531.7,
+ "end": 1532.48,
+ "text": "But"
+ },
+ {
+ "id": 783,
+ "start": 1532.48,
+ "end": 1532.64,
+ "text": "for"
+ },
+ {
+ "id": 784,
+ "start": 1532.64,
+ "end": 1532.82,
+ "text": "this"
+ },
+ {
+ "id": 785,
+ "start": 1532.82,
+ "end": 1533.14,
+ "text": "model"
+ },
+ {
+ "id": 786,
+ "start": 1533.14,
+ "end": 1533.32,
+ "text": "to"
+ },
+ {
+ "id": 787,
+ "start": 1533.32,
+ "end": 1533.9,
+ "text": "persist,"
+ },
+ {
+ "id": 788,
+ "start": 1533.9,
+ "end": 1534.92,
+ "text": "both"
+ },
+ {
+ "id": 789,
+ "start": 1534.92,
+ "end": 1535.28,
+ "text": "sides"
+ },
+ {
+ "id": 790,
+ "start": 1535.28,
+ "end": 1535.4,
+ "text": "of"
+ },
+ {
+ "id": 791,
+ "start": 1535.4,
+ "end": 1535.52,
+ "text": "the"
+ },
+ {
+ "id": 792,
+ "start": 1535.52,
+ "end": 1535.9,
+ "text": "bargain."
+ },
+ {
+ "id": 793,
+ "start": 1535.9,
+ "end": 1536.18,
+ "text": "Need"
+ },
+ {
+ "id": 794,
+ "start": 1536.18,
+ "end": 1536.28,
+ "text": "to"
+ },
+ {
+ "id": 795,
+ "start": 1536.28,
+ "end": 1536.44,
+ "text": "know"
+ },
+ {
+ "id": 796,
+ "start": 1536.44,
+ "end": 1537.24,
+ "text": "the"
+ },
+ {
+ "id": 797,
+ "start": 1537.24,
+ "end": 1537.56,
+ "text": "stakes"
+ },
+ {
+ "id": 798,
+ "start": 1537.56,
+ "end": 1537.7,
+ "text": "that"
+ },
+ {
+ "id": 799,
+ "start": 1537.7,
+ "end": 1537.84,
+ "text": "are"
+ },
+ {
+ "id": 800,
+ "start": 1537.84,
+ "end": 1538.52,
+ "text": "involved"
+ },
+ {
+ "id": 801,
+ "start": 1538.52,
+ "end": 1539.5,
+ "text": "right"
+ },
+ {
+ "id": 802,
+ "start": 1539.5,
+ "end": 1539.74,
+ "text": "now"
+ },
+ {
+ "id": 803,
+ "start": 1539.74,
+ "end": 1539.96,
+ "text": "I'm"
+ },
+ {
+ "id": 804,
+ "start": 1539.96,
+ "end": 1540.2,
+ "text": "not"
+ },
+ {
+ "id": 805,
+ "start": 1540.2,
+ "end": 1540.76,
+ "text": "convinced"
+ },
+ {
+ "id": 806,
+ "start": 1540.76,
+ "end": 1540.96,
+ "text": "that"
+ },
+ {
+ "id": 807,
+ "start": 1540.96,
+ "end": 1541.52,
+ "text": "Facebook's"
+ },
+ {
+ "id": 808,
+ "start": 1541.52,
+ "end": 1542.7,
+ "text": "users"
+ },
+ {
+ "id": 809,
+ "start": 1542.7,
+ "end": 1542.98,
+ "text": "have"
+ },
+ {
+ "id": 810,
+ "start": 1542.98,
+ "end": 1543.1,
+ "text": "the"
+ },
+ {
+ "id": 811,
+ "start": 1543.1,
+ "end": 1543.58,
+ "text": "information"
+ },
+ {
+ "id": 812,
+ "start": 1543.58,
+ "end": 1543.72,
+ "text": "that"
+ },
+ {
+ "id": 813,
+ "start": 1543.72,
+ "end": 1543.84,
+ "text": "they"
+ },
+ {
+ "id": 814,
+ "start": 1543.84,
+ "end": 1544.08,
+ "text": "need"
+ },
+ {
+ "id": 815,
+ "start": 1544.08,
+ "end": 1544.2,
+ "text": "to"
+ },
+ {
+ "id": 816,
+ "start": 1544.2,
+ "end": 1544.4,
+ "text": "make"
+ },
+ {
+ "id": 817,
+ "start": 1544.4,
+ "end": 1544.84,
+ "text": "meaningful"
+ },
+ {
+ "id": 818,
+ "start": 1544.84,
+ "end": 1545.28,
+ "text": "choices"
+ },
+ {
+ "id": 819,
+ "start": 1545.28,
+ "end": 1546.34,
+ "text": "in"
+ },
+ {
+ "id": 820,
+ "start": 1546.34,
+ "end": 1546.46,
+ "text": "the"
+ },
+ {
+ "id": 821,
+ "start": 1546.46,
+ "end": 1546.76,
+ "text": "past."
+ },
+ {
+ "id": 822,
+ "start": 1546.76,
+ "end": 1547,
+ "text": "Many"
+ },
+ {
+ "id": 823,
+ "start": 1547,
+ "end": 1547.08,
+ "text": "of"
+ },
+ {
+ "id": 824,
+ "start": 1547.08,
+ "end": 1547.24,
+ "text": "my"
+ },
+ {
+ "id": 825,
+ "start": 1547.24,
+ "end": 1547.66,
+ "text": "colleagues"
+ },
+ {
+ "id": 826,
+ "start": 1547.66,
+ "end": 1547.78,
+ "text": "on"
+ },
+ {
+ "id": 827,
+ "start": 1547.78,
+ "end": 1548,
+ "text": "both"
+ },
+ {
+ "id": 828,
+ "start": 1548,
+ "end": 1548.28,
+ "text": "sides."
+ },
+ {
+ "id": 829,
+ "start": 1548.28,
+ "end": 1548.44,
+ "text": "The"
+ },
+ {
+ "id": 830,
+ "start": 1548.44,
+ "end": 1548.72,
+ "text": "aisle"
+ },
+ {
+ "id": 831,
+ "start": 1548.72,
+ "end": 1548.88,
+ "text": "have"
+ },
+ {
+ "id": 832,
+ "start": 1548.88,
+ "end": 1549.02,
+ "text": "been"
+ },
+ {
+ "id": 833,
+ "start": 1549.02,
+ "end": 1549.28,
+ "text": "willing"
+ },
+ {
+ "id": 834,
+ "start": 1549.28,
+ "end": 1549.38,
+ "text": "to"
+ },
+ {
+ "id": 835,
+ "start": 1549.38,
+ "end": 1549.86,
+ "text": "defer"
+ },
+ {
+ "id": 836,
+ "start": 1549.86,
+ "end": 1550.66,
+ "text": "to"
+ },
+ {
+ "id": 837,
+ "start": 1550.66,
+ "end": 1550.94,
+ "text": "tech"
+ },
+ {
+ "id": 838,
+ "start": 1550.94,
+ "end": 1551.38,
+ "text": "company's"
+ },
+ {
+ "id": 839,
+ "start": 1551.38,
+ "end": 1551.78,
+ "text": "efforts"
+ },
+ {
+ "id": 840,
+ "start": 1551.78,
+ "end": 1551.9,
+ "text": "to"
+ },
+ {
+ "id": 841,
+ "start": 1551.9,
+ "end": 1552.38,
+ "text": "regulate"
+ },
+ {
+ "id": 842,
+ "start": 1552.38,
+ "end": 1553.7,
+ "text": "themselves,"
+ },
+ {
+ "id": 843,
+ "start": 1553.7,
+ "end": 1554.52,
+ "text": "but"
+ },
+ {
+ "id": 844,
+ "start": 1554.52,
+ "end": 1554.76,
+ "text": "this"
+ },
+ {
+ "id": 845,
+ "start": 1554.76,
+ "end": 1555.24,
+ "text": "may"
+ },
+ {
+ "id": 846,
+ "start": 1555.24,
+ "end": 1555.36,
+ "text": "be"
+ },
+ {
+ "id": 847,
+ "start": 1555.36,
+ "end": 1556.44,
+ "text": "changing"
+ },
+ {
+ "id": 848,
+ "start": 1556.44,
+ "end": 1557.42,
+ "text": "just"
+ },
+ {
+ "id": 849,
+ "start": 1557.42,
+ "end": 1557.72,
+ "text": "last"
+ },
+ {
+ "id": 850,
+ "start": 1557.72,
+ "end": 1557.98,
+ "text": "month"
+ },
+ {
+ "id": 851,
+ "start": 1557.98,
+ "end": 1558.12,
+ "text": "and"
+ },
+ {
+ "id": 852,
+ "start": 1558.12,
+ "end": 1558.66,
+ "text": "overwhelming"
+ },
+ {
+ "id": 853,
+ "start": 1558.66,
+ "end": 1559.28,
+ "text": "bipartisan"
+ },
+ {
+ "id": 854,
+ "start": 1559.28,
+ "end": 1559.72,
+ "text": "fashion"
+ },
+ {
+ "id": 855,
+ "start": 1559.72,
+ "end": 1560.2,
+ "text": "Congress"
+ },
+ {
+ "id": 856,
+ "start": 1560.2,
+ "end": 1560.46,
+ "text": "voted"
+ },
+ {
+ "id": 857,
+ "start": 1560.46,
+ "end": 1560.58,
+ "text": "to"
+ },
+ {
+ "id": 858,
+ "start": 1560.58,
+ "end": 1560.74,
+ "text": "make"
+ },
+ {
+ "id": 859,
+ "start": 1560.74,
+ "end": 1560.84,
+ "text": "it"
+ },
+ {
+ "id": 860,
+ "start": 1560.84,
+ "end": 1561.24,
+ "text": "easier"
+ },
+ {
+ "id": 861,
+ "start": 1561.24,
+ "end": 1561.76,
+ "text": "for"
+ },
+ {
+ "id": 862,
+ "start": 1561.76,
+ "end": 1562.48,
+ "text": "prosecutors"
+ },
+ {
+ "id": 863,
+ "start": 1562.48,
+ "end": 1562.58,
+ "text": "and"
+ },
+ {
+ "id": 864,
+ "start": 1562.58,
+ "end": 1562.98,
+ "text": "victims"
+ },
+ {
+ "id": 865,
+ "start": 1562.98,
+ "end": 1564.14,
+ "text": "to"
+ },
+ {
+ "id": 866,
+ "start": 1564.14,
+ "end": 1564.28,
+ "text": "go"
+ },
+ {
+ "id": 867,
+ "start": 1564.28,
+ "end": 1564.58,
+ "text": "after"
+ },
+ {
+ "id": 868,
+ "start": 1564.58,
+ "end": 1565.18,
+ "text": "websites"
+ },
+ {
+ "id": 869,
+ "start": 1565.18,
+ "end": 1565.36,
+ "text": "that"
+ },
+ {
+ "id": 870,
+ "start": 1565.36,
+ "end": 1565.78,
+ "text": "knowingly"
+ },
+ {
+ "id": 871,
+ "start": 1565.78,
+ "end": 1566.52,
+ "text": "facilitate"
+ },
+ {
+ "id": 872,
+ "start": 1566.52,
+ "end": 1567,
+ "text": "sex"
+ },
+ {
+ "id": 873,
+ "start": 1567,
+ "end": 1568.16,
+ "text": "trafficking."
+ },
+ {
+ "id": 874,
+ "start": 1568.16,
+ "end": 1568.96,
+ "text": "This"
+ },
+ {
+ "id": 875,
+ "start": 1568.96,
+ "end": 1569.18,
+ "text": "should"
+ },
+ {
+ "id": 876,
+ "start": 1569.18,
+ "end": 1569.28,
+ "text": "be"
+ },
+ {
+ "id": 877,
+ "start": 1569.28,
+ "end": 1569.34,
+ "text": "a"
+ },
+ {
+ "id": 878,
+ "start": 1569.34,
+ "end": 1569.58,
+ "text": "wake"
+ },
+ {
+ "id": 879,
+ "start": 1569.58,
+ "end": 1569.7,
+ "text": "up"
+ },
+ {
+ "id": 880,
+ "start": 1569.7,
+ "end": 1569.94,
+ "text": "call"
+ },
+ {
+ "id": 881,
+ "start": 1569.94,
+ "end": 1570.08,
+ "text": "for"
+ },
+ {
+ "id": 882,
+ "start": 1570.08,
+ "end": 1570.2,
+ "text": "the"
+ },
+ {
+ "id": 883,
+ "start": 1570.2,
+ "end": 1570.42,
+ "text": "tech"
+ },
+ {
+ "id": 884,
+ "start": 1570.42,
+ "end": 1571.06,
+ "text": "community."
+ },
+ {
+ "id": 885,
+ "start": 1571.06,
+ "end": 1572.02,
+ "text": "We"
+ },
+ {
+ "id": 886,
+ "start": 1572.02,
+ "end": 1572.24,
+ "text": "want"
+ },
+ {
+ "id": 887,
+ "start": 1572.24,
+ "end": 1572.34,
+ "text": "to"
+ },
+ {
+ "id": 888,
+ "start": 1572.34,
+ "end": 1572.5,
+ "text": "hear"
+ },
+ {
+ "id": 889,
+ "start": 1572.5,
+ "end": 1572.76,
+ "text": "more"
+ },
+ {
+ "id": 890,
+ "start": 1572.76,
+ "end": 1573.64,
+ "text": "without"
+ },
+ {
+ "id": 891,
+ "start": 1573.64,
+ "end": 1573.98,
+ "text": "delay"
+ },
+ {
+ "id": 892,
+ "start": 1573.98,
+ "end": 1575.06,
+ "text": "about"
+ },
+ {
+ "id": 893,
+ "start": 1575.06,
+ "end": 1575.24,
+ "text": "what"
+ },
+ {
+ "id": 894,
+ "start": 1575.24,
+ "end": 1575.82,
+ "text": "Facebook"
+ },
+ {
+ "id": 895,
+ "start": 1575.82,
+ "end": 1576.68,
+ "text": "and"
+ },
+ {
+ "id": 896,
+ "start": 1576.68,
+ "end": 1577,
+ "text": "other"
+ },
+ {
+ "id": 897,
+ "start": 1577,
+ "end": 1577.42,
+ "text": "companies"
+ },
+ {
+ "id": 898,
+ "start": 1577.42,
+ "end": 1577.8,
+ "text": "plan"
+ },
+ {
+ "id": 899,
+ "start": 1577.8,
+ "end": 1577.9,
+ "text": "to"
+ },
+ {
+ "id": 900,
+ "start": 1577.9,
+ "end": 1578.02,
+ "text": "do"
+ },
+ {
+ "id": 901,
+ "start": 1578.02,
+ "end": 1578.2,
+ "text": "to"
+ },
+ {
+ "id": 902,
+ "start": 1578.2,
+ "end": 1578.4,
+ "text": "take"
+ },
+ {
+ "id": 903,
+ "start": 1578.4,
+ "end": 1578.84,
+ "text": "greater"
+ },
+ {
+ "id": 904,
+ "start": 1578.84,
+ "end": 1579.68,
+ "text": "responsibility"
+ },
+ {
+ "id": 905,
+ "start": 1579.68,
+ "end": 1579.82,
+ "text": "for"
+ },
+ {
+ "id": 906,
+ "start": 1579.82,
+ "end": 1579.96,
+ "text": "what"
+ },
+ {
+ "id": 907,
+ "start": 1579.96,
+ "end": 1580.26,
+ "text": "happens"
+ },
+ {
+ "id": 908,
+ "start": 1580.26,
+ "end": 1580.38,
+ "text": "on"
+ },
+ {
+ "id": 909,
+ "start": 1580.38,
+ "end": 1580.56,
+ "text": "their"
+ },
+ {
+ "id": 910,
+ "start": 1580.56,
+ "end": 1581.76,
+ "text": "platforms."
+ },
+ {
+ "id": 911,
+ "start": 1581.76,
+ "end": 1582.54,
+ "text": "How"
+ },
+ {
+ "id": 912,
+ "start": 1582.54,
+ "end": 1582.74,
+ "text": "will"
+ },
+ {
+ "id": 913,
+ "start": 1582.74,
+ "end": 1582.84,
+ "text": "you"
+ },
+ {
+ "id": 914,
+ "start": 1582.84,
+ "end": 1583.22,
+ "text": "protect"
+ },
+ {
+ "id": 915,
+ "start": 1583.22,
+ "end": 1583.64,
+ "text": "users"
+ },
+ {
+ "id": 916,
+ "start": 1583.64,
+ "end": 1584.22,
+ "text": "data?"
+ },
+ {
+ "id": 917,
+ "start": 1584.22,
+ "end": 1585.18,
+ "text": "How"
+ },
+ {
+ "id": 918,
+ "start": 1585.18,
+ "end": 1585.42,
+ "text": "will"
+ },
+ {
+ "id": 919,
+ "start": 1585.42,
+ "end": 1585.58,
+ "text": "you"
+ },
+ {
+ "id": 920,
+ "start": 1585.58,
+ "end": 1586.26,
+ "text": "inform"
+ },
+ {
+ "id": 921,
+ "start": 1586.26,
+ "end": 1586.82,
+ "text": "users"
+ },
+ {
+ "id": 922,
+ "start": 1586.82,
+ "end": 1587.14,
+ "text": "about"
+ },
+ {
+ "id": 923,
+ "start": 1587.14,
+ "end": 1587.32,
+ "text": "the"
+ },
+ {
+ "id": 924,
+ "start": 1587.32,
+ "end": 1587.8,
+ "text": "changes"
+ },
+ {
+ "id": 925,
+ "start": 1587.8,
+ "end": 1587.96,
+ "text": "that"
+ },
+ {
+ "id": 926,
+ "start": 1587.96,
+ "end": 1588.06,
+ "text": "you"
+ },
+ {
+ "id": 927,
+ "start": 1588.06,
+ "end": 1588.22,
+ "text": "are"
+ },
+ {
+ "id": 928,
+ "start": 1588.22,
+ "end": 1588.78,
+ "text": "making"
+ },
+ {
+ "id": 929,
+ "start": 1588.78,
+ "end": 1589.74,
+ "text": "and"
+ },
+ {
+ "id": 930,
+ "start": 1589.74,
+ "end": 1589.92,
+ "text": "how"
+ },
+ {
+ "id": 931,
+ "start": 1589.92,
+ "end": 1590.04,
+ "text": "do"
+ },
+ {
+ "id": 932,
+ "start": 1590.04,
+ "end": 1590.16,
+ "text": "you"
+ },
+ {
+ "id": 933,
+ "start": 1590.16,
+ "end": 1590.54,
+ "text": "intend"
+ },
+ {
+ "id": 934,
+ "start": 1590.54,
+ "end": 1590.68,
+ "text": "to"
+ },
+ {
+ "id": 935,
+ "start": 1590.68,
+ "end": 1591.46,
+ "text": "proactively"
+ },
+ {
+ "id": 936,
+ "start": 1591.46,
+ "end": 1592.02,
+ "text": "stop"
+ },
+ {
+ "id": 937,
+ "start": 1592.02,
+ "end": 1593.18,
+ "text": "harmful"
+ },
+ {
+ "id": 938,
+ "start": 1593.18,
+ "end": 1593.78,
+ "text": "conduct"
+ },
+ {
+ "id": 939,
+ "start": 1593.78,
+ "end": 1594.16,
+ "text": "instead"
+ },
+ {
+ "id": 940,
+ "start": 1594.16,
+ "end": 1594.28,
+ "text": "of"
+ },
+ {
+ "id": 941,
+ "start": 1594.28,
+ "end": 1594.48,
+ "text": "being"
+ },
+ {
+ "id": 942,
+ "start": 1594.48,
+ "end": 1594.78,
+ "text": "forced"
+ },
+ {
+ "id": 943,
+ "start": 1594.78,
+ "end": 1594.9,
+ "text": "to"
+ },
+ {
+ "id": 944,
+ "start": 1594.9,
+ "end": 1595.38,
+ "text": "respond"
+ },
+ {
+ "id": 945,
+ "start": 1595.38,
+ "end": 1595.52,
+ "text": "to"
+ },
+ {
+ "id": 946,
+ "start": 1595.52,
+ "end": 1595.7,
+ "text": "at"
+ },
+ {
+ "id": 947,
+ "start": 1595.7,
+ "end": 1596,
+ "text": "months"
+ },
+ {
+ "id": 948,
+ "start": 1596,
+ "end": 1596.8,
+ "text": "or"
+ },
+ {
+ "id": 949,
+ "start": 1596.8,
+ "end": 1597.08,
+ "text": "years"
+ },
+ {
+ "id": 950,
+ "start": 1597.08,
+ "end": 1598.12,
+ "text": "later?"
+ },
+ {
+ "id": 951,
+ "start": 1598.12,
+ "end": 1599.08,
+ "text": "Mr"
+ },
+ {
+ "id": 952,
+ "start": 1599.08,
+ "end": 1599.52,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 953,
+ "start": 1599.52,
+ "end": 1599.64,
+ "text": "in"
+ },
+ {
+ "id": 954,
+ "start": 1599.64,
+ "end": 1599.82,
+ "text": "many"
+ },
+ {
+ "id": 955,
+ "start": 1599.82,
+ "end": 1600.02,
+ "text": "ways,"
+ },
+ {
+ "id": 956,
+ "start": 1600.02,
+ "end": 1600.18,
+ "text": "you"
+ },
+ {
+ "id": 957,
+ "start": 1600.18,
+ "end": 1600.32,
+ "text": "and"
+ },
+ {
+ "id": 958,
+ "start": 1600.32,
+ "end": 1600.42,
+ "text": "the"
+ },
+ {
+ "id": 959,
+ "start": 1600.42,
+ "end": 1600.72,
+ "text": "company"
+ },
+ {
+ "id": 960,
+ "start": 1600.72,
+ "end": 1600.9,
+ "text": "that"
+ },
+ {
+ "id": 961,
+ "start": 1600.9,
+ "end": 1601,
+ "text": "you"
+ },
+ {
+ "id": 962,
+ "start": 1601,
+ "end": 1602.22,
+ "text": "created"
+ },
+ {
+ "id": 963,
+ "start": 1602.22,
+ "end": 1603.08,
+ "text": "the"
+ },
+ {
+ "id": 964,
+ "start": 1603.08,
+ "end": 1603.48,
+ "text": "story"
+ },
+ {
+ "id": 965,
+ "start": 1603.48,
+ "end": 1603.64,
+ "text": "that"
+ },
+ {
+ "id": 966,
+ "start": 1603.64,
+ "end": 1603.74,
+ "text": "you"
+ },
+ {
+ "id": 967,
+ "start": 1603.74,
+ "end": 1604.12,
+ "text": "created"
+ },
+ {
+ "id": 968,
+ "start": 1604.12,
+ "end": 1604.5,
+ "text": "represent"
+ },
+ {
+ "id": 969,
+ "start": 1604.5,
+ "end": 1604.64,
+ "text": "the"
+ },
+ {
+ "id": 970,
+ "start": 1604.64,
+ "end": 1605.02,
+ "text": "American"
+ },
+ {
+ "id": 971,
+ "start": 1605.02,
+ "end": 1606.06,
+ "text": "dream."
+ },
+ {
+ "id": 972,
+ "start": 1606.06,
+ "end": 1607.04,
+ "text": "Many"
+ },
+ {
+ "id": 973,
+ "start": 1607.04,
+ "end": 1607.2,
+ "text": "are"
+ },
+ {
+ "id": 974,
+ "start": 1607.2,
+ "end": 1607.68,
+ "text": "incredibly"
+ },
+ {
+ "id": 975,
+ "start": 1607.68,
+ "end": 1608.18,
+ "text": "inspired"
+ },
+ {
+ "id": 976,
+ "start": 1608.18,
+ "end": 1608.32,
+ "text": "by"
+ },
+ {
+ "id": 977,
+ "start": 1608.32,
+ "end": 1608.48,
+ "text": "what"
+ },
+ {
+ "id": 978,
+ "start": 1608.48,
+ "end": 1608.72,
+ "text": "you've"
+ },
+ {
+ "id": 979,
+ "start": 1608.72,
+ "end": 1608.94,
+ "text": "done"
+ },
+ {
+ "id": 980,
+ "start": 1608.94,
+ "end": 1610.04,
+ "text": "at"
+ },
+ {
+ "id": 981,
+ "start": 1610.04,
+ "end": 1610.2,
+ "text": "the"
+ },
+ {
+ "id": 982,
+ "start": 1610.2,
+ "end": 1610.5,
+ "text": "same"
+ },
+ {
+ "id": 983,
+ "start": 1610.5,
+ "end": 1610.84,
+ "text": "time."
+ },
+ {
+ "id": 984,
+ "start": 1610.84,
+ "end": 1611.96,
+ "text": "You"
+ },
+ {
+ "id": 985,
+ "start": 1611.96,
+ "end": 1612.14,
+ "text": "have"
+ },
+ {
+ "id": 986,
+ "start": 1612.14,
+ "end": 1612.22,
+ "text": "an"
+ },
+ {
+ "id": 987,
+ "start": 1612.22,
+ "end": 1612.82,
+ "text": "obligation"
+ },
+ {
+ "id": 988,
+ "start": 1612.82,
+ "end": 1613.12,
+ "text": "and"
+ },
+ {
+ "id": 989,
+ "start": 1613.12,
+ "end": 1613.3,
+ "text": "it's"
+ },
+ {
+ "id": 990,
+ "start": 1613.3,
+ "end": 1613.46,
+ "text": "up"
+ },
+ {
+ "id": 991,
+ "start": 1613.46,
+ "end": 1613.56,
+ "text": "to"
+ },
+ {
+ "id": 992,
+ "start": 1613.56,
+ "end": 1614.56,
+ "text": "you"
+ },
+ {
+ "id": 993,
+ "start": 1614.56,
+ "end": 1614.76,
+ "text": "to"
+ },
+ {
+ "id": 994,
+ "start": 1614.76,
+ "end": 1615.18,
+ "text": "ensure"
+ },
+ {
+ "id": 995,
+ "start": 1615.18,
+ "end": 1615.4,
+ "text": "that"
+ },
+ {
+ "id": 996,
+ "start": 1615.4,
+ "end": 1615.7,
+ "text": "that"
+ },
+ {
+ "id": 997,
+ "start": 1615.7,
+ "end": 1616.08,
+ "text": "dream"
+ },
+ {
+ "id": 998,
+ "start": 1616.08,
+ "end": 1616.48,
+ "text": "doesn't"
+ },
+ {
+ "id": 999,
+ "start": 1616.48,
+ "end": 1616.96,
+ "text": "become"
+ },
+ {
+ "id": 1000,
+ "start": 1616.96,
+ "end": 1617.16,
+ "text": "a"
+ },
+ {
+ "id": 1001,
+ "start": 1617.16,
+ "end": 1617.68,
+ "text": "privacy"
+ },
+ {
+ "id": 1002,
+ "start": 1617.68,
+ "end": 1618.2,
+ "text": "nightmare"
+ },
+ {
+ "id": 1003,
+ "start": 1618.2,
+ "end": 1619.2,
+ "text": "for"
+ },
+ {
+ "id": 1004,
+ "start": 1619.2,
+ "end": 1619.3,
+ "text": "the"
+ },
+ {
+ "id": 1005,
+ "start": 1619.3,
+ "end": 1619.64,
+ "text": "scores"
+ },
+ {
+ "id": 1006,
+ "start": 1619.64,
+ "end": 1619.76,
+ "text": "of"
+ },
+ {
+ "id": 1007,
+ "start": 1619.76,
+ "end": 1620.04,
+ "text": "people"
+ },
+ {
+ "id": 1008,
+ "start": 1620.04,
+ "end": 1620.18,
+ "text": "who"
+ },
+ {
+ "id": 1009,
+ "start": 1620.18,
+ "end": 1620.4,
+ "text": "use"
+ },
+ {
+ "id": 1010,
+ "start": 1620.4,
+ "end": 1621.26,
+ "text": "Facebook."
+ },
+ {
+ "id": 1011,
+ "start": 1621.26,
+ "end": 1622.26,
+ "text": "This"
+ },
+ {
+ "id": 1012,
+ "start": 1622.26,
+ "end": 1622.64,
+ "text": "hearing"
+ },
+ {
+ "id": 1013,
+ "start": 1622.64,
+ "end": 1623.46,
+ "text": "is"
+ },
+ {
+ "id": 1014,
+ "start": 1623.46,
+ "end": 1623.56,
+ "text": "an"
+ },
+ {
+ "id": 1015,
+ "start": 1623.56,
+ "end": 1624.26,
+ "text": "opportunity"
+ },
+ {
+ "id": 1016,
+ "start": 1624.26,
+ "end": 1624.46,
+ "text": "to"
+ },
+ {
+ "id": 1017,
+ "start": 1624.46,
+ "end": 1624.84,
+ "text": "speak"
+ },
+ {
+ "id": 1018,
+ "start": 1624.84,
+ "end": 1624.94,
+ "text": "to"
+ },
+ {
+ "id": 1019,
+ "start": 1624.94,
+ "end": 1625.18,
+ "text": "those"
+ },
+ {
+ "id": 1020,
+ "start": 1625.18,
+ "end": 1625.36,
+ "text": "who"
+ },
+ {
+ "id": 1021,
+ "start": 1625.36,
+ "end": 1625.68,
+ "text": "believe"
+ },
+ {
+ "id": 1022,
+ "start": 1625.68,
+ "end": 1625.78,
+ "text": "in"
+ },
+ {
+ "id": 1023,
+ "start": 1625.78,
+ "end": 1626.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 1024,
+ "start": 1626.9,
+ "end": 1627.64,
+ "text": "and"
+ },
+ {
+ "id": 1025,
+ "start": 1627.64,
+ "end": 1627.98,
+ "text": "those"
+ },
+ {
+ "id": 1026,
+ "start": 1627.98,
+ "end": 1628.12,
+ "text": "who"
+ },
+ {
+ "id": 1027,
+ "start": 1628.12,
+ "end": 1628.32,
+ "text": "are"
+ },
+ {
+ "id": 1028,
+ "start": 1628.32,
+ "end": 1628.82,
+ "text": "deeply"
+ },
+ {
+ "id": 1029,
+ "start": 1628.82,
+ "end": 1629.56,
+ "text": "skeptical"
+ },
+ {
+ "id": 1030,
+ "start": 1629.56,
+ "end": 1630.12,
+ "text": "about"
+ },
+ {
+ "id": 1031,
+ "start": 1630.12,
+ "end": 1630.48,
+ "text": "it."
+ },
+ {
+ "id": 1032,
+ "start": 1630.48,
+ "end": 1631.48,
+ "text": "We"
+ },
+ {
+ "id": 1033,
+ "start": 1631.48,
+ "end": 1631.6,
+ "text": "are"
+ },
+ {
+ "id": 1034,
+ "start": 1631.6,
+ "end": 1632.5,
+ "text": "listening"
+ },
+ {
+ "id": 1035,
+ "start": 1632.5,
+ "end": 1633.48,
+ "text": "America"
+ },
+ {
+ "id": 1036,
+ "start": 1633.48,
+ "end": 1633.58,
+ "text": "is"
+ },
+ {
+ "id": 1037,
+ "start": 1633.58,
+ "end": 1634.06,
+ "text": "listening"
+ },
+ {
+ "id": 1038,
+ "start": 1634.06,
+ "end": 1635.22,
+ "text": "and"
+ },
+ {
+ "id": 1039,
+ "start": 1635.22,
+ "end": 1635.44,
+ "text": "quite"
+ },
+ {
+ "id": 1040,
+ "start": 1635.44,
+ "end": 1635.98,
+ "text": "possibly"
+ },
+ {
+ "id": 1041,
+ "start": 1635.98,
+ "end": 1636.24,
+ "text": "the"
+ },
+ {
+ "id": 1042,
+ "start": 1636.24,
+ "end": 1636.54,
+ "text": "world"
+ },
+ {
+ "id": 1043,
+ "start": 1636.54,
+ "end": 1637,
+ "text": "is"
+ },
+ {
+ "id": 1044,
+ "start": 1637,
+ "end": 1637.4,
+ "text": "listening"
+ },
+ {
+ "id": 1045,
+ "start": 1637.4,
+ "end": 1638.4,
+ "text": "to"
+ },
+ {
+ "id": 1046,
+ "start": 1638.4,
+ "end": 1639.38,
+ "text": "thank"
+ },
+ {
+ "id": 1047,
+ "start": 1639.38,
+ "end": 1639.56,
+ "text": "you."
+ },
+ {
+ "id": 1048,
+ "start": 1639.56,
+ "end": 1639.94,
+ "text": "Now,"
+ },
+ {
+ "id": 1049,
+ "start": 1639.94,
+ "end": 1640.68,
+ "text": "ranking"
+ },
+ {
+ "id": 1050,
+ "start": 1640.68,
+ "end": 1640.94,
+ "text": "member"
+ },
+ {
+ "id": 1051,
+ "start": 1640.94,
+ "end": 1642.32,
+ "text": "Feinstein."
+ },
+ {
+ "id": 1052,
+ "start": 1642.32,
+ "end": 1643.32,
+ "text": "Thank"
+ },
+ {
+ "id": 1053,
+ "start": 1643.32,
+ "end": 1643.44,
+ "text": "you"
+ },
+ {
+ "id": 1054,
+ "start": 1643.44,
+ "end": 1643.64,
+ "text": "very"
+ },
+ {
+ "id": 1055,
+ "start": 1643.64,
+ "end": 1643.86,
+ "text": "much,"
+ },
+ {
+ "id": 1056,
+ "start": 1643.86,
+ "end": 1644.52,
+ "text": "Mr"
+ },
+ {
+ "id": 1057,
+ "start": 1644.52,
+ "end": 1644.9,
+ "text": "Chairman"
+ },
+ {
+ "id": 1058,
+ "start": 1644.9,
+ "end": 1645.42,
+ "text": "Chairman"
+ },
+ {
+ "id": 1059,
+ "start": 1645.42,
+ "end": 1645.94,
+ "text": "Grassley"
+ },
+ {
+ "id": 1060,
+ "start": 1645.94,
+ "end": 1646.7,
+ "text": "chairman"
+ },
+ {
+ "id": 1061,
+ "start": 1646.7,
+ "end": 1647.2,
+ "text": "soon."
+ },
+ {
+ "id": 1062,
+ "start": 1647.2,
+ "end": 1647.48,
+ "text": "Thank"
+ },
+ {
+ "id": 1063,
+ "start": 1647.48,
+ "end": 1647.64,
+ "text": "you"
+ },
+ {
+ "id": 1064,
+ "start": 1647.64,
+ "end": 1647.96,
+ "text": "both"
+ },
+ {
+ "id": 1065,
+ "start": 1647.96,
+ "end": 1648.2,
+ "text": "for"
+ },
+ {
+ "id": 1066,
+ "start": 1648.2,
+ "end": 1648.6,
+ "text": "holding"
+ },
+ {
+ "id": 1067,
+ "start": 1648.6,
+ "end": 1648.84,
+ "text": "this"
+ },
+ {
+ "id": 1068,
+ "start": 1648.84,
+ "end": 1649.28,
+ "text": "hearing,"
+ },
+ {
+ "id": 1069,
+ "start": 1649.28,
+ "end": 1650.18,
+ "text": "Mr"
+ },
+ {
+ "id": 1070,
+ "start": 1650.18,
+ "end": 1650.78,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 1071,
+ "start": 1650.78,
+ "end": 1651.06,
+ "text": "Thank"
+ },
+ {
+ "id": 1072,
+ "start": 1651.06,
+ "end": 1651.32,
+ "text": "you"
+ },
+ {
+ "id": 1073,
+ "start": 1651.32,
+ "end": 1651.62,
+ "text": "for"
+ },
+ {
+ "id": 1074,
+ "start": 1651.62,
+ "end": 1651.92,
+ "text": "being"
+ },
+ {
+ "id": 1075,
+ "start": 1651.92,
+ "end": 1652.54,
+ "text": "here,"
+ },
+ {
+ "id": 1076,
+ "start": 1652.54,
+ "end": 1653.08,
+ "text": "you"
+ },
+ {
+ "id": 1077,
+ "start": 1653.08,
+ "end": 1653.24,
+ "text": "have"
+ },
+ {
+ "id": 1078,
+ "start": 1653.24,
+ "end": 1653.28,
+ "text": "a"
+ },
+ {
+ "id": 1079,
+ "start": 1653.28,
+ "end": 1653.62,
+ "text": "real"
+ },
+ {
+ "id": 1080,
+ "start": 1653.62,
+ "end": 1654.38,
+ "text": "opportunity"
+ },
+ {
+ "id": 1081,
+ "start": 1654.38,
+ "end": 1654.56,
+ "text": "to"
+ },
+ {
+ "id": 1082,
+ "start": 1654.56,
+ "end": 1655.02,
+ "text": "this"
+ },
+ {
+ "id": 1083,
+ "start": 1655.02,
+ "end": 1655.7,
+ "text": "afternoon"
+ },
+ {
+ "id": 1084,
+ "start": 1655.7,
+ "end": 1655.92,
+ "text": "to"
+ },
+ {
+ "id": 1085,
+ "start": 1655.92,
+ "end": 1656.3,
+ "text": "lead"
+ },
+ {
+ "id": 1086,
+ "start": 1656.3,
+ "end": 1656.48,
+ "text": "the"
+ },
+ {
+ "id": 1087,
+ "start": 1656.48,
+ "end": 1657.06,
+ "text": "industry"
+ },
+ {
+ "id": 1088,
+ "start": 1657.06,
+ "end": 1657.74,
+ "text": "and"
+ },
+ {
+ "id": 1089,
+ "start": 1657.74,
+ "end": 1658.42,
+ "text": "demonstrate"
+ },
+ {
+ "id": 1090,
+ "start": 1658.42,
+ "end": 1658.62,
+ "text": "a"
+ },
+ {
+ "id": 1091,
+ "start": 1658.62,
+ "end": 1659.24,
+ "text": "meaningful"
+ },
+ {
+ "id": 1092,
+ "start": 1659.24,
+ "end": 1659.8,
+ "text": "commitment"
+ },
+ {
+ "id": 1093,
+ "start": 1659.8,
+ "end": 1660.2,
+ "text": "to"
+ },
+ {
+ "id": 1094,
+ "start": 1660.2,
+ "end": 1660.8,
+ "text": "protecting"
+ },
+ {
+ "id": 1095,
+ "start": 1660.8,
+ "end": 1661.66,
+ "text": "individual"
+ },
+ {
+ "id": 1096,
+ "start": 1661.66,
+ "end": 1662.76,
+ "text": "privacy."
+ },
+ {
+ "id": 1097,
+ "start": 1662.76,
+ "end": 1663.3,
+ "text": "We"
+ },
+ {
+ "id": 1098,
+ "start": 1663.3,
+ "end": 1663.48,
+ "text": "have"
+ },
+ {
+ "id": 1099,
+ "start": 1663.48,
+ "end": 1663.78,
+ "text": "learned"
+ },
+ {
+ "id": 1100,
+ "start": 1663.78,
+ "end": 1664.02,
+ "text": "over"
+ },
+ {
+ "id": 1101,
+ "start": 1664.02,
+ "end": 1664.18,
+ "text": "the"
+ },
+ {
+ "id": 1102,
+ "start": 1664.18,
+ "end": 1664.48,
+ "text": "past"
+ },
+ {
+ "id": 1103,
+ "start": 1664.48,
+ "end": 1664.76,
+ "text": "few"
+ },
+ {
+ "id": 1104,
+ "start": 1664.76,
+ "end": 1665.1,
+ "text": "months"
+ },
+ {
+ "id": 1105,
+ "start": 1665.1,
+ "end": 1665.92,
+ "text": "and"
+ },
+ {
+ "id": 1106,
+ "start": 1665.92,
+ "end": 1666.2,
+ "text": "we've"
+ },
+ {
+ "id": 1107,
+ "start": 1666.2,
+ "end": 1666.56,
+ "text": "learned"
+ },
+ {
+ "id": 1108,
+ "start": 1666.56,
+ "end": 1666.78,
+ "text": "a"
+ },
+ {
+ "id": 1109,
+ "start": 1666.78,
+ "end": 1667.06,
+ "text": "great"
+ },
+ {
+ "id": 1110,
+ "start": 1667.06,
+ "end": 1667.3,
+ "text": "deal"
+ },
+ {
+ "id": 1111,
+ "start": 1667.3,
+ "end": 1667.54,
+ "text": "that"
+ },
+ {
+ "id": 1112,
+ "start": 1667.54,
+ "end": 1668.26,
+ "text": "that's"
+ },
+ {
+ "id": 1113,
+ "start": 1668.26,
+ "end": 1668.9,
+ "text": "alarming"
+ },
+ {
+ "id": 1114,
+ "start": 1668.9,
+ "end": 1669.68,
+ "text": "we've"
+ },
+ {
+ "id": 1115,
+ "start": 1669.68,
+ "end": 1670,
+ "text": "seen"
+ },
+ {
+ "id": 1116,
+ "start": 1670,
+ "end": 1670.26,
+ "text": "how"
+ },
+ {
+ "id": 1117,
+ "start": 1670.26,
+ "end": 1670.7,
+ "text": "foreign"
+ },
+ {
+ "id": 1118,
+ "start": 1670.7,
+ "end": 1671.22,
+ "text": "actors"
+ },
+ {
+ "id": 1119,
+ "start": 1671.22,
+ "end": 1671.78,
+ "text": "are"
+ },
+ {
+ "id": 1120,
+ "start": 1671.78,
+ "end": 1672.38,
+ "text": "abusing"
+ },
+ {
+ "id": 1121,
+ "start": 1672.38,
+ "end": 1672.9,
+ "text": "social"
+ },
+ {
+ "id": 1122,
+ "start": 1672.9,
+ "end": 1673.42,
+ "text": "media"
+ },
+ {
+ "id": 1123,
+ "start": 1673.42,
+ "end": 1674.18,
+ "text": "platforms"
+ },
+ {
+ "id": 1124,
+ "start": 1674.18,
+ "end": 1674.92,
+ "text": "like"
+ },
+ {
+ "id": 1125,
+ "start": 1674.92,
+ "end": 1675.97,
+ "text": "Facebook"
+ },
+ {
+ "id": 1126,
+ "start": 1675.97,
+ "end": 1676.11,
+ "text": "to"
+ },
+ {
+ "id": 1127,
+ "start": 1676.11,
+ "end": 1676.69,
+ "text": "interfere"
+ },
+ {
+ "id": 1128,
+ "start": 1676.69,
+ "end": 1677.01,
+ "text": "in"
+ },
+ {
+ "id": 1129,
+ "start": 1677.01,
+ "end": 1677.65,
+ "text": "elections"
+ },
+ {
+ "id": 1130,
+ "start": 1677.65,
+ "end": 1678.41,
+ "text": "and"
+ },
+ {
+ "id": 1131,
+ "start": 1678.41,
+ "end": 1679.15,
+ "text": "take"
+ },
+ {
+ "id": 1132,
+ "start": 1679.15,
+ "end": 1679.73,
+ "text": "millions"
+ },
+ {
+ "id": 1133,
+ "start": 1679.73,
+ "end": 1679.89,
+ "text": "of"
+ },
+ {
+ "id": 1134,
+ "start": 1679.89,
+ "end": 1680.55,
+ "text": "Americans"
+ },
+ {
+ "id": 1135,
+ "start": 1680.55,
+ "end": 1681.15,
+ "text": "personal"
+ },
+ {
+ "id": 1136,
+ "start": 1681.15,
+ "end": 1681.97,
+ "text": "information"
+ },
+ {
+ "id": 1137,
+ "start": 1681.97,
+ "end": 1682.67,
+ "text": "without"
+ },
+ {
+ "id": 1138,
+ "start": 1682.67,
+ "end": 1682.91,
+ "text": "their"
+ },
+ {
+ "id": 1139,
+ "start": 1682.91,
+ "end": 1683.39,
+ "text": "knowledge"
+ },
+ {
+ "id": 1140,
+ "start": 1683.39,
+ "end": 1684.01,
+ "text": "in"
+ },
+ {
+ "id": 1141,
+ "start": 1684.01,
+ "end": 1684.49,
+ "text": "order"
+ },
+ {
+ "id": 1142,
+ "start": 1684.49,
+ "end": 1684.65,
+ "text": "to"
+ },
+ {
+ "id": 1143,
+ "start": 1684.65,
+ "end": 1685.39,
+ "text": "manipulate"
+ },
+ {
+ "id": 1144,
+ "start": 1685.39,
+ "end": 1685.89,
+ "text": "public"
+ },
+ {
+ "id": 1145,
+ "start": 1685.89,
+ "end": 1686.39,
+ "text": "opinion"
+ },
+ {
+ "id": 1146,
+ "start": 1686.39,
+ "end": 1686.93,
+ "text": "and"
+ },
+ {
+ "id": 1147,
+ "start": 1686.93,
+ "end": 1687.47,
+ "text": "target"
+ },
+ {
+ "id": 1148,
+ "start": 1687.47,
+ "end": 1688.37,
+ "text": "individual"
+ },
+ {
+ "id": 1149,
+ "start": 1688.37,
+ "end": 1689.18,
+ "text": "voters"
+ },
+ {
+ "id": 1150,
+ "start": 1689.18,
+ "end": 1690.32,
+ "text": "specifically"
+ },
+ {
+ "id": 1151,
+ "start": 1690.32,
+ "end": 1690.96,
+ "text": "on"
+ },
+ {
+ "id": 1152,
+ "start": 1690.96,
+ "end": 1691.44,
+ "text": "February"
+ },
+ {
+ "id": 1153,
+ "start": 1691.44,
+ "end": 1692.3,
+ "text": "16"
+ },
+ {
+ "id": 1154,
+ "start": 1692.3,
+ "end": 1693.16,
+ "text": "special"
+ },
+ {
+ "id": 1155,
+ "start": 1693.16,
+ "end": 1693.6,
+ "text": "counsel"
+ },
+ {
+ "id": 1156,
+ "start": 1693.6,
+ "end": 1693.98,
+ "text": "Muller"
+ },
+ {
+ "id": 1157,
+ "start": 1693.98,
+ "end": 1694.88,
+ "text": "issued"
+ },
+ {
+ "id": 1158,
+ "start": 1694.88,
+ "end": 1695.04,
+ "text": "an"
+ },
+ {
+ "id": 1159,
+ "start": 1695.04,
+ "end": 1695.78,
+ "text": "indictment"
+ },
+ {
+ "id": 1160,
+ "start": 1695.78,
+ "end": 1696.48,
+ "text": "against"
+ },
+ {
+ "id": 1161,
+ "start": 1696.48,
+ "end": 1696.72,
+ "text": "the"
+ },
+ {
+ "id": 1162,
+ "start": 1696.72,
+ "end": 1697.16,
+ "text": "Russia"
+ },
+ {
+ "id": 1163,
+ "start": 1697.16,
+ "end": 1697.56,
+ "text": "based"
+ },
+ {
+ "id": 1164,
+ "start": 1697.56,
+ "end": 1698.32,
+ "text": "Internet"
+ },
+ {
+ "id": 1165,
+ "start": 1698.32,
+ "end": 1699.36,
+ "text": "Internet"
+ },
+ {
+ "id": 1166,
+ "start": 1699.36,
+ "end": 1700.1,
+ "text": "Research"
+ },
+ {
+ "id": 1167,
+ "start": 1700.1,
+ "end": 1700.86,
+ "text": "Agency"
+ },
+ {
+ "id": 1168,
+ "start": 1700.86,
+ "end": 1701.52,
+ "text": "and"
+ },
+ {
+ "id": 1169,
+ "start": 1701.52,
+ "end": 1702.22,
+ "text": "13"
+ },
+ {
+ "id": 1170,
+ "start": 1702.22,
+ "end": 1702.72,
+ "text": "of"
+ },
+ {
+ "id": 1171,
+ "start": 1702.72,
+ "end": 1702.9,
+ "text": "its"
+ },
+ {
+ "id": 1172,
+ "start": 1702.9,
+ "end": 1703.8,
+ "text": "employees"
+ },
+ {
+ "id": 1173,
+ "start": 1703.8,
+ "end": 1704.46,
+ "text": "for"
+ },
+ {
+ "id": 1174,
+ "start": 1704.46,
+ "end": 1705.26,
+ "text": "interfering"
+ },
+ {
+ "id": 1175,
+ "start": 1705.26,
+ "end": 1706.4,
+ "text": "operations"
+ },
+ {
+ "id": 1176,
+ "start": 1706.4,
+ "end": 1707.24,
+ "text": "targeting"
+ },
+ {
+ "id": 1177,
+ "start": 1707.24,
+ "end": 1707.9,
+ "text": "targeting"
+ },
+ {
+ "id": 1178,
+ "start": 1707.9,
+ "end": 1708.26,
+ "text": "the"
+ },
+ {
+ "id": 1179,
+ "start": 1708.26,
+ "end": 1708.7,
+ "text": "United"
+ },
+ {
+ "id": 1180,
+ "start": 1708.7,
+ "end": 1709.54,
+ "text": "States"
+ },
+ {
+ "id": 1181,
+ "start": 1709.54,
+ "end": 1710.2,
+ "text": "through"
+ },
+ {
+ "id": 1182,
+ "start": 1710.2,
+ "end": 1710.44,
+ "text": "this"
+ },
+ {
+ "id": 1183,
+ "start": 1710.44,
+ "end": 1711.68,
+ "text": "37"
+ },
+ {
+ "id": 1184,
+ "start": 1711.68,
+ "end": 1712.14,
+ "text": "page"
+ },
+ {
+ "id": 1185,
+ "start": 1712.14,
+ "end": 1712.78,
+ "text": "indictment."
+ },
+ {
+ "id": 1186,
+ "start": 1712.78,
+ "end": 1713.44,
+ "text": "We"
+ },
+ {
+ "id": 1187,
+ "start": 1713.44,
+ "end": 1713.88,
+ "text": "learned"
+ },
+ {
+ "id": 1188,
+ "start": 1713.88,
+ "end": 1714.1,
+ "text": "that"
+ },
+ {
+ "id": 1189,
+ "start": 1714.1,
+ "end": 1714.3,
+ "text": "the"
+ },
+ {
+ "id": 1190,
+ "start": 1714.3,
+ "end": 1715.08,
+ "text": "IRA"
+ },
+ {
+ "id": 1191,
+ "start": 1715.08,
+ "end": 1715.54,
+ "text": "ran"
+ },
+ {
+ "id": 1192,
+ "start": 1715.54,
+ "end": 1715.76,
+ "text": "a"
+ },
+ {
+ "id": 1193,
+ "start": 1715.76,
+ "end": 1716.64,
+ "text": "coordinated"
+ },
+ {
+ "id": 1194,
+ "start": 1716.64,
+ "end": 1717.42,
+ "text": "campaign"
+ },
+ {
+ "id": 1195,
+ "start": 1717.42,
+ "end": 1718.12,
+ "text": "through"
+ },
+ {
+ "id": 1196,
+ "start": 1718.12,
+ "end": 1719.8,
+ "text": "470"
+ },
+ {
+ "id": 1197,
+ "start": 1719.8,
+ "end": 1720.72,
+ "text": "Facebook"
+ },
+ {
+ "id": 1198,
+ "start": 1720.72,
+ "end": 1721.52,
+ "text": "accounts"
+ },
+ {
+ "id": 1199,
+ "start": 1721.52,
+ "end": 1722,
+ "text": "and"
+ },
+ {
+ "id": 1200,
+ "start": 1722,
+ "end": 1722.54,
+ "text": "pages."
+ },
+ {
+ "id": 1201,
+ "start": 1722.54,
+ "end": 1723.3,
+ "text": "The"
+ },
+ {
+ "id": 1202,
+ "start": 1723.3,
+ "end": 1723.89,
+ "text": "campaign"
+ },
+ {
+ "id": 1203,
+ "start": 1723.89,
+ "end": 1724.47,
+ "text": "included"
+ },
+ {
+ "id": 1204,
+ "start": 1724.47,
+ "end": 1724.97,
+ "text": "ads"
+ },
+ {
+ "id": 1205,
+ "start": 1724.97,
+ "end": 1725.39,
+ "text": "and"
+ },
+ {
+ "id": 1206,
+ "start": 1725.39,
+ "end": 1725.73,
+ "text": "false"
+ },
+ {
+ "id": 1207,
+ "start": 1725.73,
+ "end": 1726.53,
+ "text": "information"
+ },
+ {
+ "id": 1208,
+ "start": 1726.53,
+ "end": 1727.13,
+ "text": "to"
+ },
+ {
+ "id": 1209,
+ "start": 1727.13,
+ "end": 1727.55,
+ "text": "create"
+ },
+ {
+ "id": 1210,
+ "start": 1727.55,
+ "end": 1728.23,
+ "text": "discord"
+ },
+ {
+ "id": 1211,
+ "start": 1728.23,
+ "end": 1728.51,
+ "text": "and"
+ },
+ {
+ "id": 1212,
+ "start": 1728.51,
+ "end": 1729.01,
+ "text": "harm"
+ },
+ {
+ "id": 1213,
+ "start": 1729.01,
+ "end": 1729.97,
+ "text": "Secretary"
+ },
+ {
+ "id": 1214,
+ "start": 1729.97,
+ "end": 1730.43,
+ "text": "Clinton's"
+ },
+ {
+ "id": 1215,
+ "start": 1730.43,
+ "end": 1731.35,
+ "text": "campaign"
+ },
+ {
+ "id": 1216,
+ "start": 1731.35,
+ "end": 1732.01,
+ "text": "and"
+ },
+ {
+ "id": 1217,
+ "start": 1732.01,
+ "end": 1732.17,
+ "text": "the"
+ },
+ {
+ "id": 1218,
+ "start": 1732.17,
+ "end": 1732.75,
+ "text": "content"
+ },
+ {
+ "id": 1219,
+ "start": 1732.75,
+ "end": 1733.13,
+ "text": "was"
+ },
+ {
+ "id": 1220,
+ "start": 1733.13,
+ "end": 1733.47,
+ "text": "seen"
+ },
+ {
+ "id": 1221,
+ "start": 1733.47,
+ "end": 1733.69,
+ "text": "by"
+ },
+ {
+ "id": 1222,
+ "start": 1733.69,
+ "end": 1733.83,
+ "text": "an"
+ },
+ {
+ "id": 1223,
+ "start": 1733.83,
+ "end": 1734.53,
+ "text": "estimated"
+ },
+ {
+ "id": 1224,
+ "start": 1734.53,
+ "end": 1737.11,
+ "text": "157,000,000"
+ },
+ {
+ "id": 1225,
+ "start": 1737.11,
+ "end": 1738.24,
+ "text": "Americans"
+ },
+ {
+ "id": 1226,
+ "start": 1738.24,
+ "end": 1738.66,
+ "text": "a"
+ },
+ {
+ "id": 1227,
+ "start": 1738.66,
+ "end": 1738.94,
+ "text": "month"
+ },
+ {
+ "id": 1228,
+ "start": 1738.94,
+ "end": 1739.4,
+ "text": "later"
+ },
+ {
+ "id": 1229,
+ "start": 1739.4,
+ "end": 1740.14,
+ "text": "on"
+ },
+ {
+ "id": 1230,
+ "start": 1740.14,
+ "end": 1740.44,
+ "text": "March"
+ },
+ {
+ "id": 1231,
+ "start": 1740.44,
+ "end": 1741.22,
+ "text": "seventeenth"
+ },
+ {
+ "id": 1232,
+ "start": 1741.22,
+ "end": 1742.2,
+ "text": "news"
+ },
+ {
+ "id": 1233,
+ "start": 1742.2,
+ "end": 1742.62,
+ "text": "broke"
+ },
+ {
+ "id": 1234,
+ "start": 1742.62,
+ "end": 1742.9,
+ "text": "that"
+ },
+ {
+ "id": 1235,
+ "start": 1742.9,
+ "end": 1743.52,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1236,
+ "start": 1743.52,
+ "end": 1744.72,
+ "text": "Analytica"
+ },
+ {
+ "id": 1237,
+ "start": 1744.72,
+ "end": 1745.72,
+ "text": "exploited"
+ },
+ {
+ "id": 1238,
+ "start": 1745.72,
+ "end": 1745.9,
+ "text": "the"
+ },
+ {
+ "id": 1239,
+ "start": 1745.9,
+ "end": 1746.42,
+ "text": "personal"
+ },
+ {
+ "id": 1240,
+ "start": 1746.42,
+ "end": 1747.28,
+ "text": "information"
+ },
+ {
+ "id": 1241,
+ "start": 1747.28,
+ "end": 1747.92,
+ "text": "of"
+ },
+ {
+ "id": 1242,
+ "start": 1747.92,
+ "end": 1748.76,
+ "text": "approximately"
+ },
+ {
+ "id": 1243,
+ "start": 1748.76,
+ "end": 1749.84,
+ "text": "50,000,000"
+ },
+ {
+ "id": 1244,
+ "start": 1749.84,
+ "end": 1750.8,
+ "text": "Facebook"
+ },
+ {
+ "id": 1245,
+ "start": 1750.8,
+ "end": 1751.4,
+ "text": "users"
+ },
+ {
+ "id": 1246,
+ "start": 1751.4,
+ "end": 1752.22,
+ "text": "without"
+ },
+ {
+ "id": 1247,
+ "start": 1752.22,
+ "end": 1752.54,
+ "text": "their"
+ },
+ {
+ "id": 1248,
+ "start": 1752.54,
+ "end": 1753,
+ "text": "knowledge"
+ },
+ {
+ "id": 1249,
+ "start": 1753,
+ "end": 1753.42,
+ "text": "or"
+ },
+ {
+ "id": 1250,
+ "start": 1753.42,
+ "end": 1754.36,
+ "text": "permission."
+ },
+ {
+ "id": 1251,
+ "start": 1754.36,
+ "end": 1754.88,
+ "text": "And"
+ },
+ {
+ "id": 1252,
+ "start": 1754.88,
+ "end": 1755.28,
+ "text": "last"
+ },
+ {
+ "id": 1253,
+ "start": 1755.28,
+ "end": 1755.6,
+ "text": "week"
+ },
+ {
+ "id": 1254,
+ "start": 1755.6,
+ "end": 1756.08,
+ "text": "we"
+ },
+ {
+ "id": 1255,
+ "start": 1756.08,
+ "end": 1756.56,
+ "text": "learned"
+ },
+ {
+ "id": 1256,
+ "start": 1756.56,
+ "end": 1756.94,
+ "text": "that"
+ },
+ {
+ "id": 1257,
+ "start": 1756.94,
+ "end": 1757.3,
+ "text": "number"
+ },
+ {
+ "id": 1258,
+ "start": 1757.3,
+ "end": 1757.6,
+ "text": "was"
+ },
+ {
+ "id": 1259,
+ "start": 1757.6,
+ "end": 1757.92,
+ "text": "even"
+ },
+ {
+ "id": 1260,
+ "start": 1757.92,
+ "end": 1758.34,
+ "text": "higher"
+ },
+ {
+ "id": 1261,
+ "start": 1758.34,
+ "end": 1760.3,
+ "text": "87,000,000"
+ },
+ {
+ "id": 1262,
+ "start": 1760.3,
+ "end": 1761.08,
+ "text": "Facebook"
+ },
+ {
+ "id": 1263,
+ "start": 1761.08,
+ "end": 1761.7,
+ "text": "users"
+ },
+ {
+ "id": 1264,
+ "start": 1761.7,
+ "end": 1762.12,
+ "text": "who"
+ },
+ {
+ "id": 1265,
+ "start": 1762.12,
+ "end": 1762.4,
+ "text": "had"
+ },
+ {
+ "id": 1266,
+ "start": 1762.4,
+ "end": 1762.62,
+ "text": "their"
+ },
+ {
+ "id": 1267,
+ "start": 1762.62,
+ "end": 1763.06,
+ "text": "private"
+ },
+ {
+ "id": 1268,
+ "start": 1763.06,
+ "end": 1763.78,
+ "text": "information"
+ },
+ {
+ "id": 1269,
+ "start": 1763.78,
+ "end": 1764.58,
+ "text": "taken"
+ },
+ {
+ "id": 1270,
+ "start": 1764.58,
+ "end": 1765.2,
+ "text": "without"
+ },
+ {
+ "id": 1271,
+ "start": 1765.2,
+ "end": 1765.46,
+ "text": "their"
+ },
+ {
+ "id": 1272,
+ "start": 1765.46,
+ "end": 1766.42,
+ "text": "consent."
+ },
+ {
+ "id": 1273,
+ "start": 1766.42,
+ "end": 1767.6,
+ "text": "Specifically"
+ },
+ {
+ "id": 1274,
+ "start": 1767.6,
+ "end": 1768.68,
+ "text": "using"
+ },
+ {
+ "id": 1275,
+ "start": 1768.68,
+ "end": 1768.72,
+ "text": "a"
+ },
+ {
+ "id": 1276,
+ "start": 1768.72,
+ "end": 1769.76,
+ "text": "personality"
+ },
+ {
+ "id": 1277,
+ "start": 1769.76,
+ "end": 1770.16,
+ "text": "quiz,"
+ },
+ {
+ "id": 1278,
+ "start": 1770.16,
+ "end": 1770.26,
+ "text": "he"
+ },
+ {
+ "id": 1279,
+ "start": 1770.26,
+ "end": 1770.94,
+ "text": "created"
+ },
+ {
+ "id": 1280,
+ "start": 1770.94,
+ "end": 1771.94,
+ "text": "professor"
+ },
+ {
+ "id": 1281,
+ "start": 1771.94,
+ "end": 1772.48,
+ "text": "Kogan"
+ },
+ {
+ "id": 1282,
+ "start": 1772.48,
+ "end": 1773.04,
+ "text": "collected"
+ },
+ {
+ "id": 1283,
+ "start": 1773.04,
+ "end": 1773.2,
+ "text": "the"
+ },
+ {
+ "id": 1284,
+ "start": 1773.2,
+ "end": 1773.76,
+ "text": "personal"
+ },
+ {
+ "id": 1285,
+ "start": 1773.76,
+ "end": 1774.5,
+ "text": "information"
+ },
+ {
+ "id": 1286,
+ "start": 1774.5,
+ "end": 1775.06,
+ "text": "of"
+ },
+ {
+ "id": 1287,
+ "start": 1775.06,
+ "end": 1776.32,
+ "text": "300,000"
+ },
+ {
+ "id": 1288,
+ "start": 1776.32,
+ "end": 1777.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 1289,
+ "start": 1777.26,
+ "end": 1777.82,
+ "text": "users"
+ },
+ {
+ "id": 1290,
+ "start": 1777.82,
+ "end": 1778.52,
+ "text": "and"
+ },
+ {
+ "id": 1291,
+ "start": 1778.52,
+ "end": 1778.78,
+ "text": "then"
+ },
+ {
+ "id": 1292,
+ "start": 1778.78,
+ "end": 1779.36,
+ "text": "collected"
+ },
+ {
+ "id": 1293,
+ "start": 1779.36,
+ "end": 1779.82,
+ "text": "data"
+ },
+ {
+ "id": 1294,
+ "start": 1779.82,
+ "end": 1780.3,
+ "text": "on"
+ },
+ {
+ "id": 1295,
+ "start": 1780.3,
+ "end": 1780.88,
+ "text": "millions"
+ },
+ {
+ "id": 1296,
+ "start": 1780.88,
+ "end": 1781.28,
+ "text": "of"
+ },
+ {
+ "id": 1297,
+ "start": 1781.28,
+ "end": 1781.5,
+ "text": "their"
+ },
+ {
+ "id": 1298,
+ "start": 1781.5,
+ "end": 1782.26,
+ "text": "friends."
+ },
+ {
+ "id": 1299,
+ "start": 1782.26,
+ "end": 1782.74,
+ "text": "It"
+ },
+ {
+ "id": 1300,
+ "start": 1782.74,
+ "end": 1783.26,
+ "text": "appears"
+ },
+ {
+ "id": 1301,
+ "start": 1783.26,
+ "end": 1783.54,
+ "text": "the"
+ },
+ {
+ "id": 1302,
+ "start": 1783.54,
+ "end": 1784.3,
+ "text": "information"
+ },
+ {
+ "id": 1303,
+ "start": 1784.3,
+ "end": 1785.04,
+ "text": "collected"
+ },
+ {
+ "id": 1304,
+ "start": 1785.04,
+ "end": 1786.18,
+ "text": "included"
+ },
+ {
+ "id": 1305,
+ "start": 1786.18,
+ "end": 1786.92,
+ "text": "everything"
+ },
+ {
+ "id": 1306,
+ "start": 1786.92,
+ "end": 1787.44,
+ "text": "these"
+ },
+ {
+ "id": 1307,
+ "start": 1787.44,
+ "end": 1788.22,
+ "text": "individuals"
+ },
+ {
+ "id": 1308,
+ "start": 1788.22,
+ "end": 1788.68,
+ "text": "had"
+ },
+ {
+ "id": 1309,
+ "start": 1788.68,
+ "end": 1789.16,
+ "text": "on"
+ },
+ {
+ "id": 1310,
+ "start": 1789.16,
+ "end": 1789.36,
+ "text": "their"
+ },
+ {
+ "id": 1311,
+ "start": 1789.36,
+ "end": 1789.88,
+ "text": "Facebook"
+ },
+ {
+ "id": 1312,
+ "start": 1789.88,
+ "end": 1790.42,
+ "text": "pages."
+ },
+ {
+ "id": 1313,
+ "start": 1790.42,
+ "end": 1791.18,
+ "text": "And"
+ },
+ {
+ "id": 1314,
+ "start": 1791.18,
+ "end": 1791.68,
+ "text": "according"
+ },
+ {
+ "id": 1315,
+ "start": 1791.68,
+ "end": 1791.86,
+ "text": "to"
+ },
+ {
+ "id": 1316,
+ "start": 1791.86,
+ "end": 1792.14,
+ "text": "some"
+ },
+ {
+ "id": 1317,
+ "start": 1792.14,
+ "end": 1792.68,
+ "text": "reports"
+ },
+ {
+ "id": 1318,
+ "start": 1792.68,
+ "end": 1793.46,
+ "text": "even"
+ },
+ {
+ "id": 1319,
+ "start": 1793.46,
+ "end": 1794.1,
+ "text": "included"
+ },
+ {
+ "id": 1320,
+ "start": 1794.1,
+ "end": 1794.66,
+ "text": "private"
+ },
+ {
+ "id": 1321,
+ "start": 1794.66,
+ "end": 1795.24,
+ "text": "direct"
+ },
+ {
+ "id": 1322,
+ "start": 1795.24,
+ "end": 1795.88,
+ "text": "messages"
+ },
+ {
+ "id": 1323,
+ "start": 1795.88,
+ "end": 1796.68,
+ "text": "between"
+ },
+ {
+ "id": 1324,
+ "start": 1796.68,
+ "end": 1797.82,
+ "text": "users."
+ },
+ {
+ "id": 1325,
+ "start": 1797.82,
+ "end": 1798.7,
+ "text": "Professor"
+ },
+ {
+ "id": 1326,
+ "start": 1798.7,
+ "end": 1799.14,
+ "text": "Hogan"
+ },
+ {
+ "id": 1327,
+ "start": 1799.14,
+ "end": 1799.3,
+ "text": "is"
+ },
+ {
+ "id": 1328,
+ "start": 1799.3,
+ "end": 1799.54,
+ "text": "said"
+ },
+ {
+ "id": 1329,
+ "start": 1799.54,
+ "end": 1799.66,
+ "text": "to"
+ },
+ {
+ "id": 1330,
+ "start": 1799.66,
+ "end": 1799.82,
+ "text": "have"
+ },
+ {
+ "id": 1331,
+ "start": 1799.82,
+ "end": 1800.2,
+ "text": "taken"
+ },
+ {
+ "id": 1332,
+ "start": 1800.2,
+ "end": 1800.68,
+ "text": "data"
+ },
+ {
+ "id": 1333,
+ "start": 1800.68,
+ "end": 1801.18,
+ "text": "from"
+ },
+ {
+ "id": 1334,
+ "start": 1801.18,
+ "end": 1801.5,
+ "text": "over"
+ },
+ {
+ "id": 1335,
+ "start": 1801.5,
+ "end": 1802.72,
+ "text": "70,000,000"
+ },
+ {
+ "id": 1336,
+ "start": 1802.72,
+ "end": 1803.6,
+ "text": "Americans,"
+ },
+ {
+ "id": 1337,
+ "start": 1803.6,
+ "end": 1804.26,
+ "text": "it"
+ },
+ {
+ "id": 1338,
+ "start": 1804.26,
+ "end": 1804.4,
+ "text": "has"
+ },
+ {
+ "id": 1339,
+ "start": 1804.4,
+ "end": 1804.8,
+ "text": "also"
+ },
+ {
+ "id": 1340,
+ "start": 1804.8,
+ "end": 1805.04,
+ "text": "been"
+ },
+ {
+ "id": 1341,
+ "start": 1805.04,
+ "end": 1805.62,
+ "text": "reported"
+ },
+ {
+ "id": 1342,
+ "start": 1805.62,
+ "end": 1806.08,
+ "text": "that"
+ },
+ {
+ "id": 1343,
+ "start": 1806.08,
+ "end": 1806.18,
+ "text": "he"
+ },
+ {
+ "id": 1344,
+ "start": 1806.18,
+ "end": 1806.6,
+ "text": "sold"
+ },
+ {
+ "id": 1345,
+ "start": 1806.6,
+ "end": 1806.86,
+ "text": "this"
+ },
+ {
+ "id": 1346,
+ "start": 1806.86,
+ "end": 1807.36,
+ "text": "data"
+ },
+ {
+ "id": 1347,
+ "start": 1807.36,
+ "end": 1807.82,
+ "text": "to"
+ },
+ {
+ "id": 1348,
+ "start": 1807.82,
+ "end": 1808.44,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1349,
+ "start": 1808.44,
+ "end": 1809.44,
+ "text": "Analytica"
+ },
+ {
+ "id": 1350,
+ "start": 1809.44,
+ "end": 1809.82,
+ "text": "for"
+ },
+ {
+ "id": 1351,
+ "start": 1809.82,
+ "end": 1811.12,
+ "text": "800,000"
+ },
+ {
+ "id": 1352,
+ "start": 1811.12,
+ "end": 1811.96,
+ "text": "dollars."
+ },
+ {
+ "id": 1353,
+ "start": 1811.96,
+ "end": 1812.84,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1354,
+ "start": 1812.84,
+ "end": 1813.44,
+ "text": "Analytica"
+ },
+ {
+ "id": 1355,
+ "start": 1813.44,
+ "end": 1813.92,
+ "text": "then"
+ },
+ {
+ "id": 1356,
+ "start": 1813.92,
+ "end": 1814.24,
+ "text": "took"
+ },
+ {
+ "id": 1357,
+ "start": 1814.24,
+ "end": 1814.5,
+ "text": "this"
+ },
+ {
+ "id": 1358,
+ "start": 1814.5,
+ "end": 1814.92,
+ "text": "data"
+ },
+ {
+ "id": 1359,
+ "start": 1814.92,
+ "end": 1815.42,
+ "text": "and"
+ },
+ {
+ "id": 1360,
+ "start": 1815.42,
+ "end": 1816.02,
+ "text": "created"
+ },
+ {
+ "id": 1361,
+ "start": 1816.02,
+ "end": 1816.28,
+ "text": "a"
+ },
+ {
+ "id": 1362,
+ "start": 1816.28,
+ "end": 1817.3,
+ "text": "psychological"
+ },
+ {
+ "id": 1363,
+ "start": 1817.3,
+ "end": 1817.88,
+ "text": "welfare"
+ },
+ {
+ "id": 1364,
+ "start": 1817.88,
+ "end": 1818.26,
+ "text": "tool"
+ },
+ {
+ "id": 1365,
+ "start": 1818.26,
+ "end": 1818.9,
+ "text": "to"
+ },
+ {
+ "id": 1366,
+ "start": 1818.9,
+ "end": 1819.56,
+ "text": "influence"
+ },
+ {
+ "id": 1367,
+ "start": 1819.56,
+ "end": 1820.26,
+ "text": "United"
+ },
+ {
+ "id": 1368,
+ "start": 1820.26,
+ "end": 1820.58,
+ "text": "States"
+ },
+ {
+ "id": 1369,
+ "start": 1820.58,
+ "end": 1821.48,
+ "text": "elections."
+ },
+ {
+ "id": 1370,
+ "start": 1821.48,
+ "end": 1821.92,
+ "text": "In"
+ },
+ {
+ "id": 1371,
+ "start": 1821.92,
+ "end": 1822.34,
+ "text": "fact,"
+ },
+ {
+ "id": 1372,
+ "start": 1822.34,
+ "end": 1822.54,
+ "text": "the"
+ },
+ {
+ "id": 1373,
+ "start": 1822.54,
+ "end": 1823.48,
+ "text": "CEO"
+ },
+ {
+ "id": 1374,
+ "start": 1823.48,
+ "end": 1824.46,
+ "text": "Alexander"
+ },
+ {
+ "id": 1375,
+ "start": 1824.46,
+ "end": 1824.88,
+ "text": "Nick"
+ },
+ {
+ "id": 1376,
+ "start": 1824.88,
+ "end": 1826.06,
+ "text": "declared"
+ },
+ {
+ "id": 1377,
+ "start": 1826.06,
+ "end": 1826.3,
+ "text": "the"
+ },
+ {
+ "id": 1378,
+ "start": 1826.3,
+ "end": 1826.9,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1379,
+ "start": 1826.9,
+ "end": 1827.92,
+ "text": "Analytica"
+ },
+ {
+ "id": 1380,
+ "start": 1827.92,
+ "end": 1828.68,
+ "text": "ran"
+ },
+ {
+ "id": 1381,
+ "start": 1828.68,
+ "end": 1829.12,
+ "text": "all"
+ },
+ {
+ "id": 1382,
+ "start": 1829.12,
+ "end": 1829.34,
+ "text": "the"
+ },
+ {
+ "id": 1383,
+ "start": 1829.34,
+ "end": 1829.82,
+ "text": "digital"
+ },
+ {
+ "id": 1384,
+ "start": 1829.82,
+ "end": 1830.52,
+ "text": "campaign."
+ },
+ {
+ "id": 1385,
+ "start": 1830.52,
+ "end": 1831.04,
+ "text": "The"
+ },
+ {
+ "id": 1386,
+ "start": 1831.04,
+ "end": 1831.74,
+ "text": "television"
+ },
+ {
+ "id": 1387,
+ "start": 1831.74,
+ "end": 1832.48,
+ "text": "campaign"
+ },
+ {
+ "id": 1388,
+ "start": 1832.48,
+ "end": 1833.18,
+ "text": "and"
+ },
+ {
+ "id": 1389,
+ "start": 1833.18,
+ "end": 1833.5,
+ "text": "its"
+ },
+ {
+ "id": 1390,
+ "start": 1833.5,
+ "end": 1834.06,
+ "text": "data"
+ },
+ {
+ "id": 1391,
+ "start": 1834.06,
+ "end": 1835.02,
+ "text": "informed"
+ },
+ {
+ "id": 1392,
+ "start": 1835.02,
+ "end": 1835.46,
+ "text": "all"
+ },
+ {
+ "id": 1393,
+ "start": 1835.46,
+ "end": 1835.66,
+ "text": "the"
+ },
+ {
+ "id": 1394,
+ "start": 1835.66,
+ "end": 1836.36,
+ "text": "strategy"
+ },
+ {
+ "id": 1395,
+ "start": 1836.36,
+ "end": 1836.64,
+ "text": "for"
+ },
+ {
+ "id": 1396,
+ "start": 1836.64,
+ "end": 1836.78,
+ "text": "the"
+ },
+ {
+ "id": 1397,
+ "start": 1836.78,
+ "end": 1837.1,
+ "text": "Trump"
+ },
+ {
+ "id": 1398,
+ "start": 1837.1,
+ "end": 1838.02,
+ "text": "campaign."
+ },
+ {
+ "id": 1399,
+ "start": 1838.02,
+ "end": 1838.44,
+ "text": "The"
+ },
+ {
+ "id": 1400,
+ "start": 1838.44,
+ "end": 1839,
+ "text": "reporting"
+ },
+ {
+ "id": 1401,
+ "start": 1839,
+ "end": 1839.46,
+ "text": "has"
+ },
+ {
+ "id": 1402,
+ "start": 1839.46,
+ "end": 1839.82,
+ "text": "also"
+ },
+ {
+ "id": 1403,
+ "start": 1839.82,
+ "end": 1840.74,
+ "text": "speculated"
+ },
+ {
+ "id": 1404,
+ "start": 1840.74,
+ "end": 1841.22,
+ "text": "that"
+ },
+ {
+ "id": 1405,
+ "start": 1841.22,
+ "end": 1841.78,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1406,
+ "start": 1841.78,
+ "end": 1842.5,
+ "text": "analytic"
+ },
+ {
+ "id": 1407,
+ "start": 1842.5,
+ "end": 1843.3,
+ "text": "works"
+ },
+ {
+ "id": 1408,
+ "start": 1843.3,
+ "end": 1843.6,
+ "text": "with"
+ },
+ {
+ "id": 1409,
+ "start": 1843.6,
+ "end": 1843.76,
+ "text": "the"
+ },
+ {
+ "id": 1410,
+ "start": 1843.76,
+ "end": 1844.24,
+ "text": "Internet"
+ },
+ {
+ "id": 1411,
+ "start": 1844.24,
+ "end": 1844.72,
+ "text": "Research"
+ },
+ {
+ "id": 1412,
+ "start": 1844.72,
+ "end": 1845.32,
+ "text": "agency"
+ },
+ {
+ "id": 1413,
+ "start": 1845.32,
+ "end": 1845.86,
+ "text": "to"
+ },
+ {
+ "id": 1414,
+ "start": 1845.86,
+ "end": 1846.16,
+ "text": "help"
+ },
+ {
+ "id": 1415,
+ "start": 1846.16,
+ "end": 1846.72,
+ "text": "Russia"
+ },
+ {
+ "id": 1416,
+ "start": 1846.72,
+ "end": 1847.7,
+ "text": "identify"
+ },
+ {
+ "id": 1417,
+ "start": 1847.7,
+ "end": 1848.32,
+ "text": "which"
+ },
+ {
+ "id": 1418,
+ "start": 1848.32,
+ "end": 1849.18,
+ "text": "American"
+ },
+ {
+ "id": 1419,
+ "start": 1849.18,
+ "end": 1849.58,
+ "text": "voters"
+ },
+ {
+ "id": 1420,
+ "start": 1849.58,
+ "end": 1849.8,
+ "text": "to"
+ },
+ {
+ "id": 1421,
+ "start": 1849.8,
+ "end": 1850.3,
+ "text": "target,"
+ },
+ {
+ "id": 1422,
+ "start": 1850.3,
+ "end": 1850.74,
+ "text": "which"
+ },
+ {
+ "id": 1423,
+ "start": 1850.74,
+ "end": 1851.44,
+ "text": "is"
+ },
+ {
+ "id": 1424,
+ "start": 1851.44,
+ "end": 1853.34,
+ "text": "propaganda"
+ },
+ {
+ "id": 1425,
+ "start": 1853.34,
+ "end": 1854.28,
+ "text": "I'm"
+ },
+ {
+ "id": 1426,
+ "start": 1854.28,
+ "end": 1854.96,
+ "text": "concerned"
+ },
+ {
+ "id": 1427,
+ "start": 1854.96,
+ "end": 1855.6,
+ "text": "that"
+ },
+ {
+ "id": 1428,
+ "start": 1855.6,
+ "end": 1856.02,
+ "text": "press"
+ },
+ {
+ "id": 1429,
+ "start": 1856.02,
+ "end": 1856.54,
+ "text": "reports"
+ },
+ {
+ "id": 1430,
+ "start": 1856.54,
+ "end": 1857.32,
+ "text": "indicate"
+ },
+ {
+ "id": 1431,
+ "start": 1857.32,
+ "end": 1858.4,
+ "text": "Facebook"
+ },
+ {
+ "id": 1432,
+ "start": 1858.4,
+ "end": 1858.92,
+ "text": "learned"
+ },
+ {
+ "id": 1433,
+ "start": 1858.92,
+ "end": 1859.22,
+ "text": "about"
+ },
+ {
+ "id": 1434,
+ "start": 1859.22,
+ "end": 1859.5,
+ "text": "this"
+ },
+ {
+ "id": 1435,
+ "start": 1859.5,
+ "end": 1859.94,
+ "text": "breach"
+ },
+ {
+ "id": 1436,
+ "start": 1859.94,
+ "end": 1860.4,
+ "text": "in"
+ },
+ {
+ "id": 1437,
+ "start": 1860.4,
+ "end": 1861.7,
+ "text": "2,015"
+ },
+ {
+ "id": 1438,
+ "start": 1861.7,
+ "end": 1862.36,
+ "text": "but"
+ },
+ {
+ "id": 1439,
+ "start": 1862.36,
+ "end": 1862.82,
+ "text": "appears"
+ },
+ {
+ "id": 1440,
+ "start": 1862.82,
+ "end": 1863.2,
+ "text": "not"
+ },
+ {
+ "id": 1441,
+ "start": 1863.2,
+ "end": 1863.34,
+ "text": "to"
+ },
+ {
+ "id": 1442,
+ "start": 1863.34,
+ "end": 1863.52,
+ "text": "have"
+ },
+ {
+ "id": 1443,
+ "start": 1863.52,
+ "end": 1864.04,
+ "text": "taken"
+ },
+ {
+ "id": 1444,
+ "start": 1864.04,
+ "end": 1865.04,
+ "text": "significant"
+ },
+ {
+ "id": 1445,
+ "start": 1865.04,
+ "end": 1865.4,
+ "text": "steps"
+ },
+ {
+ "id": 1446,
+ "start": 1865.4,
+ "end": 1865.62,
+ "text": "to"
+ },
+ {
+ "id": 1447,
+ "start": 1865.62,
+ "end": 1866.04,
+ "text": "address"
+ },
+ {
+ "id": 1448,
+ "start": 1866.04,
+ "end": 1866.22,
+ "text": "it"
+ },
+ {
+ "id": 1449,
+ "start": 1866.22,
+ "end": 1866.98,
+ "text": "until"
+ },
+ {
+ "id": 1450,
+ "start": 1866.98,
+ "end": 1867.24,
+ "text": "this"
+ },
+ {
+ "id": 1451,
+ "start": 1867.24,
+ "end": 1868.08,
+ "text": "year,"
+ },
+ {
+ "id": 1452,
+ "start": 1868.08,
+ "end": 1868.66,
+ "text": "so"
+ },
+ {
+ "id": 1453,
+ "start": 1868.66,
+ "end": 1869.44,
+ "text": "this"
+ },
+ {
+ "id": 1454,
+ "start": 1869.44,
+ "end": 1869.84,
+ "text": "hearing"
+ },
+ {
+ "id": 1455,
+ "start": 1869.84,
+ "end": 1870,
+ "text": "is"
+ },
+ {
+ "id": 1456,
+ "start": 1870,
+ "end": 1870.62,
+ "text": "important"
+ },
+ {
+ "id": 1457,
+ "start": 1870.62,
+ "end": 1870.92,
+ "text": "and"
+ },
+ {
+ "id": 1458,
+ "start": 1870.92,
+ "end": 1871.02,
+ "text": "I"
+ },
+ {
+ "id": 1459,
+ "start": 1871.02,
+ "end": 1871.66,
+ "text": "appreciate"
+ },
+ {
+ "id": 1460,
+ "start": 1871.66,
+ "end": 1871.84,
+ "text": "the"
+ },
+ {
+ "id": 1461,
+ "start": 1871.84,
+ "end": 1872.66,
+ "text": "conversation"
+ },
+ {
+ "id": 1462,
+ "start": 1872.66,
+ "end": 1872.88,
+ "text": "we"
+ },
+ {
+ "id": 1463,
+ "start": 1872.88,
+ "end": 1873.24,
+ "text": "had"
+ },
+ {
+ "id": 1464,
+ "start": 1873.24,
+ "end": 1873.9,
+ "text": "yesterday."
+ },
+ {
+ "id": 1465,
+ "start": 1873.9,
+ "end": 1874.92,
+ "text": "And"
+ },
+ {
+ "id": 1466,
+ "start": 1874.92,
+ "end": 1875.74,
+ "text": "I"
+ },
+ {
+ "id": 1467,
+ "start": 1875.74,
+ "end": 1876.4,
+ "text": "believe"
+ },
+ {
+ "id": 1468,
+ "start": 1876.4,
+ "end": 1876.88,
+ "text": "that"
+ },
+ {
+ "id": 1469,
+ "start": 1876.88,
+ "end": 1877.96,
+ "text": "Facebook"
+ },
+ {
+ "id": 1470,
+ "start": 1877.96,
+ "end": 1878.62,
+ "text": "through"
+ },
+ {
+ "id": 1471,
+ "start": 1878.62,
+ "end": 1878.84,
+ "text": "your"
+ },
+ {
+ "id": 1472,
+ "start": 1878.84,
+ "end": 1879.36,
+ "text": "presence"
+ },
+ {
+ "id": 1473,
+ "start": 1879.36,
+ "end": 1879.6,
+ "text": "here"
+ },
+ {
+ "id": 1474,
+ "start": 1879.6,
+ "end": 1879.98,
+ "text": "today"
+ },
+ {
+ "id": 1475,
+ "start": 1879.98,
+ "end": 1880.78,
+ "text": "and"
+ },
+ {
+ "id": 1476,
+ "start": 1880.78,
+ "end": 1880.92,
+ "text": "the"
+ },
+ {
+ "id": 1477,
+ "start": 1880.92,
+ "end": 1881.3,
+ "text": "words"
+ },
+ {
+ "id": 1478,
+ "start": 1881.3,
+ "end": 1881.6,
+ "text": "you're"
+ },
+ {
+ "id": 1479,
+ "start": 1881.6,
+ "end": 1881.96,
+ "text": "about"
+ },
+ {
+ "id": 1480,
+ "start": 1881.96,
+ "end": 1882.22,
+ "text": "to"
+ },
+ {
+ "id": 1481,
+ "start": 1882.22,
+ "end": 1882.58,
+ "text": "tell"
+ },
+ {
+ "id": 1482,
+ "start": 1882.58,
+ "end": 1882.78,
+ "text": "us"
+ },
+ {
+ "id": 1483,
+ "start": 1882.78,
+ "end": 1883.56,
+ "text": "will"
+ },
+ {
+ "id": 1484,
+ "start": 1883.56,
+ "end": 1884.28,
+ "text": "indicate"
+ },
+ {
+ "id": 1485,
+ "start": 1884.28,
+ "end": 1884.68,
+ "text": "how"
+ },
+ {
+ "id": 1486,
+ "start": 1884.68,
+ "end": 1885.48,
+ "text": "strongly"
+ },
+ {
+ "id": 1487,
+ "start": 1885.48,
+ "end": 1886.2,
+ "text": "your"
+ },
+ {
+ "id": 1488,
+ "start": 1886.2,
+ "end": 1887,
+ "text": "industry"
+ },
+ {
+ "id": 1489,
+ "start": 1887,
+ "end": 1887.98,
+ "text": "will"
+ },
+ {
+ "id": 1490,
+ "start": 1887.98,
+ "end": 1888.9,
+ "text": "regulate"
+ },
+ {
+ "id": 1491,
+ "start": 1888.9,
+ "end": 1889.26,
+ "text": "and"
+ },
+ {
+ "id": 1492,
+ "start": 1889.26,
+ "end": 1889.52,
+ "text": "or"
+ },
+ {
+ "id": 1493,
+ "start": 1889.52,
+ "end": 1890.1,
+ "text": "reform."
+ },
+ {
+ "id": 1494,
+ "start": 1890.1,
+ "end": 1890.32,
+ "text": "The"
+ },
+ {
+ "id": 1495,
+ "start": 1890.32,
+ "end": 1891.04,
+ "text": "platforms"
+ },
+ {
+ "id": 1496,
+ "start": 1891.04,
+ "end": 1891.48,
+ "text": "that"
+ },
+ {
+ "id": 1497,
+ "start": 1891.48,
+ "end": 1891.76,
+ "text": "they"
+ },
+ {
+ "id": 1498,
+ "start": 1891.76,
+ "end": 1892.36,
+ "text": "control."
+ },
+ {
+ "id": 1499,
+ "start": 1892.36,
+ "end": 1893.08,
+ "text": "I"
+ },
+ {
+ "id": 1500,
+ "start": 1893.08,
+ "end": 1893.4,
+ "text": "believe"
+ },
+ {
+ "id": 1501,
+ "start": 1893.4,
+ "end": 1893.62,
+ "text": "this"
+ },
+ {
+ "id": 1502,
+ "start": 1893.62,
+ "end": 1893.8,
+ "text": "is"
+ },
+ {
+ "id": 1503,
+ "start": 1893.8,
+ "end": 1894.8,
+ "text": "extraordinarily"
+ },
+ {
+ "id": 1504,
+ "start": 1894.8,
+ "end": 1895.42,
+ "text": "important."
+ },
+ {
+ "id": 1505,
+ "start": 1895.42,
+ "end": 1895.94,
+ "text": "You"
+ },
+ {
+ "id": 1506,
+ "start": 1895.94,
+ "end": 1896.24,
+ "text": "lead"
+ },
+ {
+ "id": 1507,
+ "start": 1896.24,
+ "end": 1896.32,
+ "text": "a"
+ },
+ {
+ "id": 1508,
+ "start": 1896.32,
+ "end": 1896.64,
+ "text": "big"
+ },
+ {
+ "id": 1509,
+ "start": 1896.64,
+ "end": 1897.22,
+ "text": "company"
+ },
+ {
+ "id": 1510,
+ "start": 1897.22,
+ "end": 1897.44,
+ "text": "with"
+ },
+ {
+ "id": 1511,
+ "start": 1897.44,
+ "end": 1898.66,
+ "text": "27,000"
+ },
+ {
+ "id": 1512,
+ "start": 1898.66,
+ "end": 1899.5,
+ "text": "employees."
+ },
+ {
+ "id": 1513,
+ "start": 1899.5,
+ "end": 1900.4,
+ "text": "And"
+ },
+ {
+ "id": 1514,
+ "start": 1900.4,
+ "end": 1900.62,
+ "text": "we"
+ },
+ {
+ "id": 1515,
+ "start": 1900.62,
+ "end": 1900.98,
+ "text": "very"
+ },
+ {
+ "id": 1516,
+ "start": 1900.98,
+ "end": 1901.18,
+ "text": "much"
+ },
+ {
+ "id": 1517,
+ "start": 1901.18,
+ "end": 1901.5,
+ "text": "look"
+ },
+ {
+ "id": 1518,
+ "start": 1901.5,
+ "end": 1901.86,
+ "text": "forward"
+ },
+ {
+ "id": 1519,
+ "start": 1901.86,
+ "end": 1901.98,
+ "text": "to"
+ },
+ {
+ "id": 1520,
+ "start": 1901.98,
+ "end": 1902.16,
+ "text": "your"
+ },
+ {
+ "id": 1521,
+ "start": 1902.16,
+ "end": 1902.64,
+ "text": "comments."
+ },
+ {
+ "id": 1522,
+ "start": 1902.64,
+ "end": 1903.36,
+ "text": "Thank"
+ },
+ {
+ "id": 1523,
+ "start": 1903.36,
+ "end": 1903.52,
+ "text": "you,"
+ },
+ {
+ "id": 1524,
+ "start": 1903.52,
+ "end": 1903.86,
+ "text": "Mr"
+ },
+ {
+ "id": 1525,
+ "start": 1903.86,
+ "end": 1904.3,
+ "text": "Chairman,"
+ },
+ {
+ "id": 1526,
+ "start": 1904.3,
+ "end": 1905.08,
+ "text": "thank"
+ },
+ {
+ "id": 1527,
+ "start": 1905.08,
+ "end": 1905.22,
+ "text": "you."
+ },
+ {
+ "id": 1528,
+ "start": 1905.22,
+ "end": 1905.4,
+ "text": "So,"
+ },
+ {
+ "id": 1529,
+ "start": 1905.4,
+ "end": 1905.68,
+ "text": "to"
+ },
+ {
+ "id": 1530,
+ "start": 1905.68,
+ "end": 1905.94,
+ "text": "find"
+ },
+ {
+ "id": 1531,
+ "start": 1905.94,
+ "end": 1906.72,
+ "text": "sign,"
+ },
+ {
+ "id": 1532,
+ "start": 1906.72,
+ "end": 1907.24,
+ "text": "the"
+ },
+ {
+ "id": 1533,
+ "start": 1907.24,
+ "end": 1907.74,
+ "text": "history"
+ },
+ {
+ "id": 1534,
+ "start": 1907.74,
+ "end": 1907.92,
+ "text": "and"
+ },
+ {
+ "id": 1535,
+ "start": 1907.92,
+ "end": 1908.3,
+ "text": "growth"
+ },
+ {
+ "id": 1536,
+ "start": 1908.3,
+ "end": 1908.5,
+ "text": "of"
+ },
+ {
+ "id": 1537,
+ "start": 1908.5,
+ "end": 1909.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 1538,
+ "start": 1909.12,
+ "end": 1909.7,
+ "text": "Meares,"
+ },
+ {
+ "id": 1539,
+ "start": 1909.7,
+ "end": 1910,
+ "text": "that"
+ },
+ {
+ "id": 1540,
+ "start": 1910,
+ "end": 1910.14,
+ "text": "of"
+ },
+ {
+ "id": 1541,
+ "start": 1910.14,
+ "end": 1910.46,
+ "text": "many"
+ },
+ {
+ "id": 1542,
+ "start": 1910.46,
+ "end": 1910.58,
+ "text": "of"
+ },
+ {
+ "id": 1543,
+ "start": 1910.58,
+ "end": 1910.9,
+ "text": "our"
+ },
+ {
+ "id": 1544,
+ "start": 1910.9,
+ "end": 1911.96,
+ "text": "technological"
+ },
+ {
+ "id": 1545,
+ "start": 1911.96,
+ "end": 1912.8,
+ "text": "Giants"
+ },
+ {
+ "id": 1546,
+ "start": 1912.8,
+ "end": 1913.6,
+ "text": "founded"
+ },
+ {
+ "id": 1547,
+ "start": 1913.6,
+ "end": 1913.74,
+ "text": "by"
+ },
+ {
+ "id": 1548,
+ "start": 1913.74,
+ "end": 1914.4,
+ "text": "Mr"
+ },
+ {
+ "id": 1549,
+ "start": 1914.4,
+ "end": 1915,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 1550,
+ "start": 1915,
+ "end": 1915.6,
+ "text": "in"
+ },
+ {
+ "id": 1551,
+ "start": 1915.6,
+ "end": 1916.5,
+ "text": "2,004"
+ },
+ {
+ "id": 1552,
+ "start": 1916.5,
+ "end": 1917.18,
+ "text": "Facebook"
+ },
+ {
+ "id": 1553,
+ "start": 1917.18,
+ "end": 1917.42,
+ "text": "has"
+ },
+ {
+ "id": 1554,
+ "start": 1917.42,
+ "end": 1918.1,
+ "text": "exploded"
+ },
+ {
+ "id": 1555,
+ "start": 1918.1,
+ "end": 1918.46,
+ "text": "over"
+ },
+ {
+ "id": 1556,
+ "start": 1918.46,
+ "end": 1918.58,
+ "text": "the"
+ },
+ {
+ "id": 1557,
+ "start": 1918.58,
+ "end": 1918.86,
+ "text": "past"
+ },
+ {
+ "id": 1558,
+ "start": 1918.86,
+ "end": 1919.56,
+ "text": "14"
+ },
+ {
+ "id": 1559,
+ "start": 1919.56,
+ "end": 1920.26,
+ "text": "years."
+ },
+ {
+ "id": 1560,
+ "start": 1920.26,
+ "end": 1921.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 1561,
+ "start": 1921.26,
+ "end": 1921.74,
+ "text": "currently"
+ },
+ {
+ "id": 1562,
+ "start": 1921.74,
+ "end": 1922.06,
+ "text": "has"
+ },
+ {
+ "id": 1563,
+ "start": 1922.06,
+ "end": 1922.38,
+ "text": "over"
+ },
+ {
+ "id": 1564,
+ "start": 1922.38,
+ "end": 1923.16,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 1565,
+ "start": 1923.16,
+ "end": 1923.8,
+ "text": "monthly"
+ },
+ {
+ "id": 1566,
+ "start": 1923.8,
+ "end": 1924.38,
+ "text": "active"
+ },
+ {
+ "id": 1567,
+ "start": 1924.38,
+ "end": 1924.88,
+ "text": "users"
+ },
+ {
+ "id": 1568,
+ "start": 1924.88,
+ "end": 1925.28,
+ "text": "across"
+ },
+ {
+ "id": 1569,
+ "start": 1925.28,
+ "end": 1925.48,
+ "text": "the"
+ },
+ {
+ "id": 1570,
+ "start": 1925.48,
+ "end": 1925.84,
+ "text": "world"
+ },
+ {
+ "id": 1571,
+ "start": 1925.84,
+ "end": 1926.88,
+ "text": "over"
+ },
+ {
+ "id": 1572,
+ "start": 1926.88,
+ "end": 1927.82,
+ "text": "25,000"
+ },
+ {
+ "id": 1573,
+ "start": 1927.82,
+ "end": 1928.38,
+ "text": "employees"
+ },
+ {
+ "id": 1574,
+ "start": 1928.38,
+ "end": 1928.8,
+ "text": "and"
+ },
+ {
+ "id": 1575,
+ "start": 1928.8,
+ "end": 1929.4,
+ "text": "offices"
+ },
+ {
+ "id": 1576,
+ "start": 1929.4,
+ "end": 1929.6,
+ "text": "and"
+ },
+ {
+ "id": 1577,
+ "start": 1929.6,
+ "end": 1930.14,
+ "text": "13"
+ },
+ {
+ "id": 1578,
+ "start": 1930.14,
+ "end": 1930.28,
+ "text": "U"
+ },
+ {
+ "id": 1579,
+ "start": 1930.28,
+ "end": 1930.48,
+ "text": "S"
+ },
+ {
+ "id": 1580,
+ "start": 1930.48,
+ "end": 1930.9,
+ "text": "cities"
+ },
+ {
+ "id": 1581,
+ "start": 1930.9,
+ "end": 1931.72,
+ "text": "and"
+ },
+ {
+ "id": 1582,
+ "start": 1931.72,
+ "end": 1932.12,
+ "text": "various"
+ },
+ {
+ "id": 1583,
+ "start": 1932.12,
+ "end": 1932.62,
+ "text": "other"
+ },
+ {
+ "id": 1584,
+ "start": 1932.62,
+ "end": 1933.52,
+ "text": "countries"
+ },
+ {
+ "id": 1585,
+ "start": 1933.52,
+ "end": 1934.18,
+ "text": "like"
+ },
+ {
+ "id": 1586,
+ "start": 1934.18,
+ "end": 1934.42,
+ "text": "they're"
+ },
+ {
+ "id": 1587,
+ "start": 1934.42,
+ "end": 1935,
+ "text": "expanding"
+ },
+ {
+ "id": 1588,
+ "start": 1935,
+ "end": 1935.4,
+ "text": "user"
+ },
+ {
+ "id": 1589,
+ "start": 1935.4,
+ "end": 1935.72,
+ "text": "base."
+ },
+ {
+ "id": 1590,
+ "start": 1935.72,
+ "end": 1936.36,
+ "text": "The"
+ },
+ {
+ "id": 1591,
+ "start": 1936.36,
+ "end": 1936.7,
+ "text": "data"
+ },
+ {
+ "id": 1592,
+ "start": 1936.7,
+ "end": 1937.18,
+ "text": "collected"
+ },
+ {
+ "id": 1593,
+ "start": 1937.18,
+ "end": 1937.4,
+ "text": "on"
+ },
+ {
+ "id": 1594,
+ "start": 1937.4,
+ "end": 1938.18,
+ "text": "Facebook"
+ },
+ {
+ "id": 1595,
+ "start": 1938.18,
+ "end": 1939.18,
+ "text": "users"
+ },
+ {
+ "id": 1596,
+ "start": 1939.18,
+ "end": 1939.44,
+ "text": "has"
+ },
+ {
+ "id": 1597,
+ "start": 1939.44,
+ "end": 1940.1,
+ "text": "also"
+ },
+ {
+ "id": 1598,
+ "start": 1940.1,
+ "end": 1941.08,
+ "text": "skyrocketed"
+ },
+ {
+ "id": 1599,
+ "start": 1941.08,
+ "end": 1941.94,
+ "text": "they"
+ },
+ {
+ "id": 1600,
+ "start": 1941.94,
+ "end": 1942.12,
+ "text": "have"
+ },
+ {
+ "id": 1601,
+ "start": 1942.12,
+ "end": 1942.44,
+ "text": "moved"
+ },
+ {
+ "id": 1602,
+ "start": 1942.44,
+ "end": 1943.06,
+ "text": "on"
+ },
+ {
+ "id": 1603,
+ "start": 1943.06,
+ "end": 1943.28,
+ "text": "from"
+ },
+ {
+ "id": 1604,
+ "start": 1943.28,
+ "end": 1943.9,
+ "text": "schools,"
+ },
+ {
+ "id": 1605,
+ "start": 1943.9,
+ "end": 1944.46,
+ "text": "likes"
+ },
+ {
+ "id": 1606,
+ "start": 1944.46,
+ "end": 1945.1,
+ "text": "and"
+ },
+ {
+ "id": 1607,
+ "start": 1945.1,
+ "end": 1945.82,
+ "text": "relationship"
+ },
+ {
+ "id": 1608,
+ "start": 1945.82,
+ "end": 1946.54,
+ "text": "statuses."
+ },
+ {
+ "id": 1609,
+ "start": 1946.54,
+ "end": 1947.66,
+ "text": "Today."
+ },
+ {
+ "id": 1610,
+ "start": 1947.66,
+ "end": 1948.3,
+ "text": "Facebook"
+ },
+ {
+ "id": 1611,
+ "start": 1948.3,
+ "end": 1948.64,
+ "text": "has"
+ },
+ {
+ "id": 1612,
+ "start": 1948.64,
+ "end": 1949.3,
+ "text": "access"
+ },
+ {
+ "id": 1613,
+ "start": 1949.3,
+ "end": 1949.48,
+ "text": "to"
+ },
+ {
+ "id": 1614,
+ "start": 1949.48,
+ "end": 1950,
+ "text": "dozens"
+ },
+ {
+ "id": 1615,
+ "start": 1950,
+ "end": 1950.22,
+ "text": "of"
+ },
+ {
+ "id": 1616,
+ "start": 1950.22,
+ "end": 1950.56,
+ "text": "data"
+ },
+ {
+ "id": 1617,
+ "start": 1950.56,
+ "end": 1951.26,
+ "text": "points"
+ },
+ {
+ "id": 1618,
+ "start": 1951.26,
+ "end": 1952.04,
+ "text": "ranging"
+ },
+ {
+ "id": 1619,
+ "start": 1952.04,
+ "end": 1952.26,
+ "text": "from"
+ },
+ {
+ "id": 1620,
+ "start": 1952.26,
+ "end": 1952.74,
+ "text": "ads"
+ },
+ {
+ "id": 1621,
+ "start": 1952.74,
+ "end": 1953.02,
+ "text": "that"
+ },
+ {
+ "id": 1622,
+ "start": 1953.02,
+ "end": 1953.3,
+ "text": "you've"
+ },
+ {
+ "id": 1623,
+ "start": 1953.3,
+ "end": 1953.66,
+ "text": "clicked"
+ },
+ {
+ "id": 1624,
+ "start": 1953.66,
+ "end": 1953.94,
+ "text": "on"
+ },
+ {
+ "id": 1625,
+ "start": 1953.94,
+ "end": 1955.14,
+ "text": "events"
+ },
+ {
+ "id": 1626,
+ "start": 1955.14,
+ "end": 1955.52,
+ "text": "you've"
+ },
+ {
+ "id": 1627,
+ "start": 1955.52,
+ "end": 1956.06,
+ "text": "attended"
+ },
+ {
+ "id": 1628,
+ "start": 1956.06,
+ "end": 1956.74,
+ "text": "and"
+ },
+ {
+ "id": 1629,
+ "start": 1956.74,
+ "end": 1956.94,
+ "text": "your"
+ },
+ {
+ "id": 1630,
+ "start": 1956.94,
+ "end": 1957.6,
+ "text": "location"
+ },
+ {
+ "id": 1631,
+ "start": 1957.6,
+ "end": 1957.9,
+ "text": "based"
+ },
+ {
+ "id": 1632,
+ "start": 1957.9,
+ "end": 1958.34,
+ "text": "upon"
+ },
+ {
+ "id": 1633,
+ "start": 1958.34,
+ "end": 1958.58,
+ "text": "your"
+ },
+ {
+ "id": 1634,
+ "start": 1958.58,
+ "end": 1959,
+ "text": "mobile"
+ },
+ {
+ "id": 1635,
+ "start": 1959,
+ "end": 1959.68,
+ "text": "device,"
+ },
+ {
+ "id": 1636,
+ "start": 1959.68,
+ "end": 1960.82,
+ "text": "it"
+ },
+ {
+ "id": 1637,
+ "start": 1960.82,
+ "end": 1960.96,
+ "text": "is"
+ },
+ {
+ "id": 1638,
+ "start": 1960.96,
+ "end": 1961.2,
+ "text": "no"
+ },
+ {
+ "id": 1639,
+ "start": 1961.2,
+ "end": 1961.66,
+ "text": "secret"
+ },
+ {
+ "id": 1640,
+ "start": 1961.66,
+ "end": 1961.88,
+ "text": "that"
+ },
+ {
+ "id": 1641,
+ "start": 1961.88,
+ "end": 1962.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 1642,
+ "start": 1962.5,
+ "end": 1962.84,
+ "text": "makes"
+ },
+ {
+ "id": 1643,
+ "start": 1962.84,
+ "end": 1963.38,
+ "text": "money"
+ },
+ {
+ "id": 1644,
+ "start": 1963.38,
+ "end": 1963.62,
+ "text": "of"
+ },
+ {
+ "id": 1645,
+ "start": 1963.62,
+ "end": 1964.14,
+ "text": "this"
+ },
+ {
+ "id": 1646,
+ "start": 1964.14,
+ "end": 1964.56,
+ "text": "data"
+ },
+ {
+ "id": 1647,
+ "start": 1964.56,
+ "end": 1965.22,
+ "text": "through"
+ },
+ {
+ "id": 1648,
+ "start": 1965.22,
+ "end": 1966.02,
+ "text": "advertising"
+ },
+ {
+ "id": 1649,
+ "start": 1966.02,
+ "end": 1966.5,
+ "text": "revenue."
+ },
+ {
+ "id": 1650,
+ "start": 1966.5,
+ "end": 1967.44,
+ "text": "Although"
+ },
+ {
+ "id": 1651,
+ "start": 1967.44,
+ "end": 1968.18,
+ "text": "many"
+ },
+ {
+ "id": 1652,
+ "start": 1968.18,
+ "end": 1968.54,
+ "text": "seem"
+ },
+ {
+ "id": 1653,
+ "start": 1968.54,
+ "end": 1969.06,
+ "text": "confused"
+ },
+ {
+ "id": 1654,
+ "start": 1969.06,
+ "end": 1969.48,
+ "text": "by"
+ },
+ {
+ "id": 1655,
+ "start": 1969.48,
+ "end": 1970.54,
+ "text": "or"
+ },
+ {
+ "id": 1656,
+ "start": 1970.54,
+ "end": 1970.92,
+ "text": "get"
+ },
+ {
+ "id": 1657,
+ "start": 1970.92,
+ "end": 1971.56,
+ "text": "altogether."
+ },
+ {
+ "id": 1658,
+ "start": 1971.56,
+ "end": 1972.24,
+ "text": "Unaware"
+ },
+ {
+ "id": 1659,
+ "start": 1972.24,
+ "end": 1972.6,
+ "text": "of"
+ },
+ {
+ "id": 1660,
+ "start": 1972.6,
+ "end": 1972.82,
+ "text": "this"
+ },
+ {
+ "id": 1661,
+ "start": 1972.82,
+ "end": 1973.48,
+ "text": "fact"
+ },
+ {
+ "id": 1662,
+ "start": 1973.48,
+ "end": 1974.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 1663,
+ "start": 1974.5,
+ "end": 1975.5,
+ "text": "generates"
+ },
+ {
+ "id": 1664,
+ "start": 1975.5,
+ "end": 1976.5,
+ "text": "generated"
+ },
+ {
+ "id": 1665,
+ "start": 1976.5,
+ "end": 1977.54,
+ "text": "40,000,000,000"
+ },
+ {
+ "id": 1666,
+ "start": 1977.54,
+ "end": 1977.76,
+ "text": "in"
+ },
+ {
+ "id": 1667,
+ "start": 1977.76,
+ "end": 1978.2,
+ "text": "revenue."
+ },
+ {
+ "id": 1668,
+ "start": 1978.2,
+ "end": 1978.42,
+ "text": "And"
+ },
+ {
+ "id": 1669,
+ "start": 1978.42,
+ "end": 1978.76,
+ "text": "we"
+ },
+ {
+ "id": 1670,
+ "start": 1978.76,
+ "end": 1979.86,
+ "text": "seen"
+ },
+ {
+ "id": 1671,
+ "start": 1979.86,
+ "end": 1980.06,
+ "text": "with"
+ },
+ {
+ "id": 1672,
+ "start": 1980.06,
+ "end": 1980.38,
+ "text": "about"
+ },
+ {
+ "id": 1673,
+ "start": 1980.38,
+ "end": 1981.16,
+ "text": "it"
+ },
+ {
+ "id": 1674,
+ "start": 1981.16,
+ "end": 1982,
+ "text": "coming"
+ },
+ {
+ "id": 1675,
+ "start": 1982,
+ "end": 1982.58,
+ "text": "from"
+ },
+ {
+ "id": 1676,
+ "start": 1982.58,
+ "end": 1983.42,
+ "text": "advertising"
+ },
+ {
+ "id": 1677,
+ "start": 1983.42,
+ "end": 1983.94,
+ "text": "across"
+ },
+ {
+ "id": 1678,
+ "start": 1983.94,
+ "end": 1984.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 1679,
+ "start": 1984.54,
+ "end": 1985.2,
+ "text": "and"
+ },
+ {
+ "id": 1680,
+ "start": 1985.2,
+ "end": 1986.3,
+ "text": "Instagram."
+ },
+ {
+ "id": 1681,
+ "start": 1986.3,
+ "end": 1987.48,
+ "text": "Significant"
+ },
+ {
+ "id": 1682,
+ "start": 1987.48,
+ "end": 1988.56,
+ "text": "data"
+ },
+ {
+ "id": 1683,
+ "start": 1988.56,
+ "end": 1989.14,
+ "text": "collection"
+ },
+ {
+ "id": 1684,
+ "start": 1989.14,
+ "end": 1989.38,
+ "text": "is"
+ },
+ {
+ "id": 1685,
+ "start": 1989.38,
+ "end": 1989.7,
+ "text": "also"
+ },
+ {
+ "id": 1686,
+ "start": 1989.7,
+ "end": 1990.26,
+ "text": "occurring"
+ },
+ {
+ "id": 1687,
+ "start": 1990.26,
+ "end": 1990.48,
+ "text": "at"
+ },
+ {
+ "id": 1688,
+ "start": 1990.48,
+ "end": 1990.88,
+ "text": "Google,"
+ },
+ {
+ "id": 1689,
+ "start": 1990.88,
+ "end": 1991.66,
+ "text": "Twitter,"
+ },
+ {
+ "id": 1690,
+ "start": 1991.66,
+ "end": 1992.34,
+ "text": "Apple"
+ },
+ {
+ "id": 1691,
+ "start": 1992.34,
+ "end": 1992.64,
+ "text": "and"
+ },
+ {
+ "id": 1692,
+ "start": 1992.64,
+ "end": 1993.14,
+ "text": "Amazon"
+ },
+ {
+ "id": 1693,
+ "start": 1993.14,
+ "end": 1994.02,
+ "text": "and"
+ },
+ {
+ "id": 1694,
+ "start": 1994.02,
+ "end": 1994.42,
+ "text": "even"
+ },
+ {
+ "id": 1695,
+ "start": 1994.42,
+ "end": 1995.1,
+ "text": "an"
+ },
+ {
+ "id": 1696,
+ "start": 1995.1,
+ "end": 1995.42,
+ "text": "ever"
+ },
+ {
+ "id": 1697,
+ "start": 1995.42,
+ "end": 1996.06,
+ "text": "expanding"
+ },
+ {
+ "id": 1698,
+ "start": 1996.06,
+ "end": 1996.78,
+ "text": "portfolio"
+ },
+ {
+ "id": 1699,
+ "start": 1996.78,
+ "end": 1997.12,
+ "text": "of"
+ },
+ {
+ "id": 1700,
+ "start": 1997.12,
+ "end": 1998.08,
+ "text": "products"
+ },
+ {
+ "id": 1701,
+ "start": 1998.08,
+ "end": 1998.3,
+ "text": "and"
+ },
+ {
+ "id": 1702,
+ "start": 1998.3,
+ "end": 1998.88,
+ "text": "services"
+ },
+ {
+ "id": 1703,
+ "start": 1998.88,
+ "end": 1999.38,
+ "text": "offered"
+ },
+ {
+ "id": 1704,
+ "start": 1999.38,
+ "end": 1999.52,
+ "text": "by"
+ },
+ {
+ "id": 1705,
+ "start": 1999.52,
+ "end": 1999.92,
+ "text": "these"
+ },
+ {
+ "id": 1706,
+ "start": 1999.92,
+ "end": 2001.44,
+ "text": "companies."
+ },
+ {
+ "id": 1707,
+ "start": 2001.44,
+ "end": 2002.3,
+ "text": "Grant"
+ },
+ {
+ "id": 1708,
+ "start": 2002.3,
+ "end": 2002.96,
+ "text": "endless"
+ },
+ {
+ "id": 1709,
+ "start": 2002.96,
+ "end": 2003.84,
+ "text": "opportunities"
+ },
+ {
+ "id": 1710,
+ "start": 2003.84,
+ "end": 2004.2,
+ "text": "to"
+ },
+ {
+ "id": 1711,
+ "start": 2004.2,
+ "end": 2004.58,
+ "text": "collect"
+ },
+ {
+ "id": 1712,
+ "start": 2004.58,
+ "end": 2005.24,
+ "text": "increasing"
+ },
+ {
+ "id": 1713,
+ "start": 2005.24,
+ "end": 2005.62,
+ "text": "amounts"
+ },
+ {
+ "id": 1714,
+ "start": 2005.62,
+ "end": 2005.8,
+ "text": "of"
+ },
+ {
+ "id": 1715,
+ "start": 2005.8,
+ "end": 2006.46,
+ "text": "information"
+ },
+ {
+ "id": 1716,
+ "start": 2006.46,
+ "end": 2006.64,
+ "text": "on"
+ },
+ {
+ "id": 1717,
+ "start": 2006.64,
+ "end": 2006.86,
+ "text": "their"
+ },
+ {
+ "id": 1718,
+ "start": 2006.86,
+ "end": 2007.4,
+ "text": "customers"
+ },
+ {
+ "id": 1719,
+ "start": 2007.4,
+ "end": 2008.3,
+ "text": "as"
+ },
+ {
+ "id": 1720,
+ "start": 2008.3,
+ "end": 2008.44,
+ "text": "we"
+ },
+ {
+ "id": 1721,
+ "start": 2008.44,
+ "end": 2008.68,
+ "text": "get"
+ },
+ {
+ "id": 1722,
+ "start": 2008.68,
+ "end": 2008.92,
+ "text": "more"
+ },
+ {
+ "id": 1723,
+ "start": 2008.92,
+ "end": 2009.38,
+ "text": "free"
+ },
+ {
+ "id": 1724,
+ "start": 2009.38,
+ "end": 2009.8,
+ "text": "or"
+ },
+ {
+ "id": 1725,
+ "start": 2009.8,
+ "end": 2010.54,
+ "text": "extremely"
+ },
+ {
+ "id": 1726,
+ "start": 2010.54,
+ "end": 2010.78,
+ "text": "low"
+ },
+ {
+ "id": 1727,
+ "start": 2010.78,
+ "end": 2011.04,
+ "text": "cost"
+ },
+ {
+ "id": 1728,
+ "start": 2011.04,
+ "end": 2011.7,
+ "text": "services."
+ },
+ {
+ "id": 1729,
+ "start": 2011.7,
+ "end": 2012.6,
+ "text": "The"
+ },
+ {
+ "id": 1730,
+ "start": 2012.6,
+ "end": 2012.92,
+ "text": "trade"
+ },
+ {
+ "id": 1731,
+ "start": 2012.92,
+ "end": 2013.16,
+ "text": "off"
+ },
+ {
+ "id": 1732,
+ "start": 2013.16,
+ "end": 2013.72,
+ "text": "for"
+ },
+ {
+ "id": 1733,
+ "start": 2013.72,
+ "end": 2013.84,
+ "text": "the"
+ },
+ {
+ "id": 1734,
+ "start": 2013.84,
+ "end": 2014.36,
+ "text": "American"
+ },
+ {
+ "id": 1735,
+ "start": 2014.36,
+ "end": 2014.94,
+ "text": "consumer"
+ },
+ {
+ "id": 1736,
+ "start": 2014.94,
+ "end": 2015.12,
+ "text": "is"
+ },
+ {
+ "id": 1737,
+ "start": 2015.12,
+ "end": 2015.28,
+ "text": "to"
+ },
+ {
+ "id": 1738,
+ "start": 2015.28,
+ "end": 2015.9,
+ "text": "provide"
+ },
+ {
+ "id": 1739,
+ "start": 2015.9,
+ "end": 2016.72,
+ "text": "personal"
+ },
+ {
+ "id": 1740,
+ "start": 2016.72,
+ "end": 2017.2,
+ "text": "data,"
+ },
+ {
+ "id": 1741,
+ "start": 2017.2,
+ "end": 2018.22,
+ "text": "the"
+ },
+ {
+ "id": 1742,
+ "start": 2018.22,
+ "end": 2018.74,
+ "text": "potential"
+ },
+ {
+ "id": 1743,
+ "start": 2018.74,
+ "end": 2019,
+ "text": "for"
+ },
+ {
+ "id": 1744,
+ "start": 2019,
+ "end": 2019.46,
+ "text": "further"
+ },
+ {
+ "id": 1745,
+ "start": 2019.46,
+ "end": 2019.8,
+ "text": "growth"
+ },
+ {
+ "id": 1746,
+ "start": 2019.8,
+ "end": 2020.54,
+ "text": "and"
+ },
+ {
+ "id": 1747,
+ "start": 2020.54,
+ "end": 2021.28,
+ "text": "innovation"
+ },
+ {
+ "id": 1748,
+ "start": 2021.28,
+ "end": 2021.66,
+ "text": "based"
+ },
+ {
+ "id": 1749,
+ "start": 2021.66,
+ "end": 2021.96,
+ "text": "on"
+ },
+ {
+ "id": 1750,
+ "start": 2021.96,
+ "end": 2022.5,
+ "text": "collection"
+ },
+ {
+ "id": 1751,
+ "start": 2022.5,
+ "end": 2022.6,
+ "text": "of"
+ },
+ {
+ "id": 1752,
+ "start": 2022.6,
+ "end": 2023.04,
+ "text": "data"
+ },
+ {
+ "id": 1753,
+ "start": 2023.04,
+ "end": 2023.56,
+ "text": "is"
+ },
+ {
+ "id": 1754,
+ "start": 2023.56,
+ "end": 2024.3,
+ "text": "limited"
+ },
+ {
+ "id": 1755,
+ "start": 2024.3,
+ "end": 2024.56,
+ "text": "less."
+ },
+ {
+ "id": 1756,
+ "start": 2024.56,
+ "end": 2025.68,
+ "text": "However,"
+ },
+ {
+ "id": 1757,
+ "start": 2025.68,
+ "end": 2026.3,
+ "text": "the"
+ },
+ {
+ "id": 1758,
+ "start": 2026.3,
+ "end": 2026.82,
+ "text": "potential"
+ },
+ {
+ "id": 1759,
+ "start": 2026.82,
+ "end": 2027.04,
+ "text": "for"
+ },
+ {
+ "id": 1760,
+ "start": 2027.04,
+ "end": 2027.82,
+ "text": "abuse"
+ },
+ {
+ "id": 1761,
+ "start": 2027.82,
+ "end": 2028.64,
+ "text": "is"
+ },
+ {
+ "id": 1762,
+ "start": 2028.64,
+ "end": 2029.14,
+ "text": "also"
+ },
+ {
+ "id": 1763,
+ "start": 2029.14,
+ "end": 2030.36,
+ "text": "significant."
+ },
+ {
+ "id": 1764,
+ "start": 2030.36,
+ "end": 2031.08,
+ "text": "Well,"
+ },
+ {
+ "id": 1765,
+ "start": 2031.08,
+ "end": 2031.22,
+ "text": "the"
+ },
+ {
+ "id": 1766,
+ "start": 2031.22,
+ "end": 2031.96,
+ "text": "condors"
+ },
+ {
+ "id": 1767,
+ "start": 2031.96,
+ "end": 2032.4,
+ "text": "of"
+ },
+ {
+ "id": 1768,
+ "start": 2032.4,
+ "end": 2032.58,
+ "text": "the"
+ },
+ {
+ "id": 1769,
+ "start": 2032.58,
+ "end": 2033.24,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1770,
+ "start": 2033.24,
+ "end": 2034.72,
+ "text": "analytic"
+ },
+ {
+ "id": 1771,
+ "start": 2034.72,
+ "end": 2035.72,
+ "text": "situation"
+ },
+ {
+ "id": 1772,
+ "start": 2035.72,
+ "end": 2035.94,
+ "text": "are"
+ },
+ {
+ "id": 1773,
+ "start": 2035.94,
+ "end": 2036.26,
+ "text": "still"
+ },
+ {
+ "id": 1774,
+ "start": 2036.26,
+ "end": 2036.58,
+ "text": "coming"
+ },
+ {
+ "id": 1775,
+ "start": 2036.58,
+ "end": 2036.72,
+ "text": "to"
+ },
+ {
+ "id": 1776,
+ "start": 2036.72,
+ "end": 2037.56,
+ "text": "light."
+ },
+ {
+ "id": 1777,
+ "start": 2037.56,
+ "end": 2038.26,
+ "text": "There"
+ },
+ {
+ "id": 1778,
+ "start": 2038.26,
+ "end": 2038.44,
+ "text": "was"
+ },
+ {
+ "id": 1779,
+ "start": 2038.44,
+ "end": 2038.88,
+ "text": "clearly"
+ },
+ {
+ "id": 1780,
+ "start": 2038.88,
+ "end": 2039,
+ "text": "a"
+ },
+ {
+ "id": 1781,
+ "start": 2039,
+ "end": 2039.5,
+ "text": "breach"
+ },
+ {
+ "id": 1782,
+ "start": 2039.5,
+ "end": 2039.68,
+ "text": "of"
+ },
+ {
+ "id": 1783,
+ "start": 2039.68,
+ "end": 2040.22,
+ "text": "consumer"
+ },
+ {
+ "id": 1784,
+ "start": 2040.22,
+ "end": 2040.62,
+ "text": "trust"
+ },
+ {
+ "id": 1785,
+ "start": 2040.62,
+ "end": 2041.46,
+ "text": "and"
+ },
+ {
+ "id": 1786,
+ "start": 2041.46,
+ "end": 2041.62,
+ "text": "a"
+ },
+ {
+ "id": 1787,
+ "start": 2041.62,
+ "end": 2042.08,
+ "text": "likely"
+ },
+ {
+ "id": 1788,
+ "start": 2042.08,
+ "end": 2042.68,
+ "text": "improper"
+ },
+ {
+ "id": 1789,
+ "start": 2042.68,
+ "end": 2043.28,
+ "text": "transfer"
+ },
+ {
+ "id": 1790,
+ "start": 2043.28,
+ "end": 2043.38,
+ "text": "of"
+ },
+ {
+ "id": 1791,
+ "start": 2043.38,
+ "end": 2044.22,
+ "text": "data."
+ },
+ {
+ "id": 1792,
+ "start": 2044.22,
+ "end": 2044.78,
+ "text": "The"
+ },
+ {
+ "id": 1793,
+ "start": 2044.78,
+ "end": 2045.44,
+ "text": "Judiciary"
+ },
+ {
+ "id": 1794,
+ "start": 2045.44,
+ "end": 2045.94,
+ "text": "Committee"
+ },
+ {
+ "id": 1795,
+ "start": 2045.94,
+ "end": 2046.54,
+ "text": "will"
+ },
+ {
+ "id": 1796,
+ "start": 2046.54,
+ "end": 2047.52,
+ "text": "hold"
+ },
+ {
+ "id": 1797,
+ "start": 2047.52,
+ "end": 2047.84,
+ "text": "a"
+ },
+ {
+ "id": 1798,
+ "start": 2047.84,
+ "end": 2048.38,
+ "text": "separate"
+ },
+ {
+ "id": 1799,
+ "start": 2048.38,
+ "end": 2048.96,
+ "text": "hearing"
+ },
+ {
+ "id": 1800,
+ "start": 2048.96,
+ "end": 2049.8,
+ "text": "exploring"
+ },
+ {
+ "id": 1801,
+ "start": 2049.8,
+ "end": 2050.74,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1802,
+ "start": 2050.74,
+ "end": 2051.26,
+ "text": "and"
+ },
+ {
+ "id": 1803,
+ "start": 2051.26,
+ "end": 2051.64,
+ "text": "other"
+ },
+ {
+ "id": 1804,
+ "start": 2051.64,
+ "end": 2052.06,
+ "text": "data"
+ },
+ {
+ "id": 1805,
+ "start": 2052.06,
+ "end": 2052.74,
+ "text": "privacy"
+ },
+ {
+ "id": 1806,
+ "start": 2052.74,
+ "end": 2053.26,
+ "text": "issues"
+ },
+ {
+ "id": 1807,
+ "start": 2053.26,
+ "end": 2054.32,
+ "text": "more"
+ },
+ {
+ "id": 1808,
+ "start": 2054.32,
+ "end": 2054.84,
+ "text": "importantly,"
+ },
+ {
+ "id": 1809,
+ "start": 2054.84,
+ "end": 2055.12,
+ "text": "though,"
+ },
+ {
+ "id": 1810,
+ "start": 2055.12,
+ "end": 2055.78,
+ "text": "these"
+ },
+ {
+ "id": 1811,
+ "start": 2055.78,
+ "end": 2056.26,
+ "text": "events"
+ },
+ {
+ "id": 1812,
+ "start": 2056.26,
+ "end": 2056.8,
+ "text": "have"
+ },
+ {
+ "id": 1813,
+ "start": 2056.8,
+ "end": 2057.38,
+ "text": "ignited"
+ },
+ {
+ "id": 1814,
+ "start": 2057.38,
+ "end": 2058.06,
+ "text": "a"
+ },
+ {
+ "id": 1815,
+ "start": 2058.06,
+ "end": 2058.52,
+ "text": "larger"
+ },
+ {
+ "id": 1816,
+ "start": 2058.52,
+ "end": 2059.14,
+ "text": "discussion"
+ },
+ {
+ "id": 1817,
+ "start": 2059.14,
+ "end": 2059.4,
+ "text": "on"
+ },
+ {
+ "id": 1818,
+ "start": 2059.4,
+ "end": 2060.4,
+ "text": "consumers"
+ },
+ {
+ "id": 1819,
+ "start": 2060.4,
+ "end": 2061.58,
+ "text": "expectations"
+ },
+ {
+ "id": 1820,
+ "start": 2061.58,
+ "end": 2062.28,
+ "text": "and"
+ },
+ {
+ "id": 1821,
+ "start": 2062.28,
+ "end": 2062.42,
+ "text": "the"
+ },
+ {
+ "id": 1822,
+ "start": 2062.42,
+ "end": 2062.86,
+ "text": "future"
+ },
+ {
+ "id": 1823,
+ "start": 2062.86,
+ "end": 2063,
+ "text": "of"
+ },
+ {
+ "id": 1824,
+ "start": 2063,
+ "end": 2063.38,
+ "text": "data"
+ },
+ {
+ "id": 1825,
+ "start": 2063.38,
+ "end": 2064,
+ "text": "privacy"
+ },
+ {
+ "id": 1826,
+ "start": 2064,
+ "end": 2064.38,
+ "text": "in"
+ },
+ {
+ "id": 1827,
+ "start": 2064.38,
+ "end": 2064.56,
+ "text": "our"
+ },
+ {
+ "id": 1828,
+ "start": 2064.56,
+ "end": 2065.26,
+ "text": "society,"
+ },
+ {
+ "id": 1829,
+ "start": 2065.26,
+ "end": 2066.14,
+ "text": "it"
+ },
+ {
+ "id": 1830,
+ "start": 2066.14,
+ "end": 2066.32,
+ "text": "is"
+ },
+ {
+ "id": 1831,
+ "start": 2066.32,
+ "end": 2067.02,
+ "text": "exposed"
+ },
+ {
+ "id": 1832,
+ "start": 2067.02,
+ "end": 2067.3,
+ "text": "that"
+ },
+ {
+ "id": 1833,
+ "start": 2067.3,
+ "end": 2067.96,
+ "text": "consumers"
+ },
+ {
+ "id": 1834,
+ "start": 2067.96,
+ "end": 2068.22,
+ "text": "may"
+ },
+ {
+ "id": 1835,
+ "start": 2068.22,
+ "end": 2068.4,
+ "text": "not"
+ },
+ {
+ "id": 1836,
+ "start": 2068.4,
+ "end": 2068.7,
+ "text": "fully"
+ },
+ {
+ "id": 1837,
+ "start": 2068.7,
+ "end": 2069.38,
+ "text": "understand"
+ },
+ {
+ "id": 1838,
+ "start": 2069.38,
+ "end": 2070.06,
+ "text": "or"
+ },
+ {
+ "id": 1839,
+ "start": 2070.06,
+ "end": 2070.74,
+ "text": "appreciate"
+ },
+ {
+ "id": 1840,
+ "start": 2070.74,
+ "end": 2070.9,
+ "text": "the"
+ },
+ {
+ "id": 1841,
+ "start": 2070.9,
+ "end": 2071.3,
+ "text": "extent"
+ },
+ {
+ "id": 1842,
+ "start": 2071.3,
+ "end": 2071.4,
+ "text": "to"
+ },
+ {
+ "id": 1843,
+ "start": 2071.4,
+ "end": 2071.62,
+ "text": "which"
+ },
+ {
+ "id": 1844,
+ "start": 2071.62,
+ "end": 2071.86,
+ "text": "their"
+ },
+ {
+ "id": 1845,
+ "start": 2071.86,
+ "end": 2072.42,
+ "text": "data"
+ },
+ {
+ "id": 1846,
+ "start": 2072.42,
+ "end": 2072.96,
+ "text": "is"
+ },
+ {
+ "id": 1847,
+ "start": 2072.96,
+ "end": 2073.76,
+ "text": "collected"
+ },
+ {
+ "id": 1848,
+ "start": 2073.76,
+ "end": 2074.72,
+ "text": "protected"
+ },
+ {
+ "id": 1849,
+ "start": 2074.72,
+ "end": 2075.88,
+ "text": "transferred"
+ },
+ {
+ "id": 1850,
+ "start": 2075.88,
+ "end": 2076.8,
+ "text": "used"
+ },
+ {
+ "id": 1851,
+ "start": 2076.8,
+ "end": 2077.82,
+ "text": "and"
+ },
+ {
+ "id": 1852,
+ "start": 2077.82,
+ "end": 2078.94,
+ "text": "misused."
+ },
+ {
+ "id": 1853,
+ "start": 2078.94,
+ "end": 2079.8,
+ "text": "Data"
+ },
+ {
+ "id": 1854,
+ "start": 2079.8,
+ "end": 2080.08,
+ "text": "has"
+ },
+ {
+ "id": 1855,
+ "start": 2080.08,
+ "end": 2080.34,
+ "text": "been"
+ },
+ {
+ "id": 1856,
+ "start": 2080.34,
+ "end": 2080.72,
+ "text": "used"
+ },
+ {
+ "id": 1857,
+ "start": 2080.72,
+ "end": 2080.9,
+ "text": "in"
+ },
+ {
+ "id": 1858,
+ "start": 2080.9,
+ "end": 2081.7,
+ "text": "advertising"
+ },
+ {
+ "id": 1859,
+ "start": 2081.7,
+ "end": 2081.86,
+ "text": "and"
+ },
+ {
+ "id": 1860,
+ "start": 2081.86,
+ "end": 2082.34,
+ "text": "political"
+ },
+ {
+ "id": 1861,
+ "start": 2082.34,
+ "end": 2083,
+ "text": "campaigns"
+ },
+ {
+ "id": 1862,
+ "start": 2083,
+ "end": 2083.7,
+ "text": "for"
+ },
+ {
+ "id": 1863,
+ "start": 2083.7,
+ "end": 2084.24,
+ "text": "decades,"
+ },
+ {
+ "id": 1864,
+ "start": 2084.24,
+ "end": 2085.04,
+ "text": "the"
+ },
+ {
+ "id": 1865,
+ "start": 2085.04,
+ "end": 2085.38,
+ "text": "amount"
+ },
+ {
+ "id": 1866,
+ "start": 2085.38,
+ "end": 2085.54,
+ "text": "and"
+ },
+ {
+ "id": 1867,
+ "start": 2085.54,
+ "end": 2085.84,
+ "text": "type"
+ },
+ {
+ "id": 1868,
+ "start": 2085.84,
+ "end": 2085.98,
+ "text": "of"
+ },
+ {
+ "id": 1869,
+ "start": 2085.98,
+ "end": 2086.36,
+ "text": "data"
+ },
+ {
+ "id": 1870,
+ "start": 2086.36,
+ "end": 2086.96,
+ "text": "obtained,"
+ },
+ {
+ "id": 1871,
+ "start": 2086.96,
+ "end": 2087.5,
+ "text": "however,"
+ },
+ {
+ "id": 1872,
+ "start": 2087.5,
+ "end": 2088.32,
+ "text": "has"
+ },
+ {
+ "id": 1873,
+ "start": 2088.32,
+ "end": 2089.06,
+ "text": "seen"
+ },
+ {
+ "id": 1874,
+ "start": 2089.06,
+ "end": 2089.34,
+ "text": "a"
+ },
+ {
+ "id": 1875,
+ "start": 2089.34,
+ "end": 2089.78,
+ "text": "very"
+ },
+ {
+ "id": 1876,
+ "start": 2089.78,
+ "end": 2090.38,
+ "text": "dramatic"
+ },
+ {
+ "id": 1877,
+ "start": 2090.38,
+ "end": 2091.32,
+ "text": "change"
+ },
+ {
+ "id": 1878,
+ "start": 2091.32,
+ "end": 2092.36,
+ "text": "campaigns,"
+ },
+ {
+ "id": 1879,
+ "start": 2092.36,
+ "end": 2093.36,
+ "text": "including"
+ },
+ {
+ "id": 1880,
+ "start": 2093.36,
+ "end": 2094.38,
+ "text": "presidents,"
+ },
+ {
+ "id": 1881,
+ "start": 2094.38,
+ "end": 2094.86,
+ "text": "Bush"
+ },
+ {
+ "id": 1882,
+ "start": 2094.86,
+ "end": 2095.72,
+ "text": "Obama"
+ },
+ {
+ "id": 1883,
+ "start": 2095.72,
+ "end": 2096.34,
+ "text": "and"
+ },
+ {
+ "id": 1884,
+ "start": 2096.34,
+ "end": 2096.74,
+ "text": "Trump"
+ },
+ {
+ "id": 1885,
+ "start": 2096.74,
+ "end": 2097.36,
+ "text": "all"
+ },
+ {
+ "id": 1886,
+ "start": 2097.36,
+ "end": 2097.74,
+ "text": "use"
+ },
+ {
+ "id": 1887,
+ "start": 2097.74,
+ "end": 2098.08,
+ "text": "these"
+ },
+ {
+ "id": 1888,
+ "start": 2098.08,
+ "end": 2099.18,
+ "text": "increasing"
+ },
+ {
+ "id": 1889,
+ "start": 2099.18,
+ "end": 2099.62,
+ "text": "amounts"
+ },
+ {
+ "id": 1890,
+ "start": 2099.62,
+ "end": 2099.84,
+ "text": "of"
+ },
+ {
+ "id": 1891,
+ "start": 2099.84,
+ "end": 2100.48,
+ "text": "data"
+ },
+ {
+ "id": 1892,
+ "start": 2100.48,
+ "end": 2100.92,
+ "text": "to"
+ },
+ {
+ "id": 1893,
+ "start": 2100.92,
+ "end": 2101.54,
+ "text": "focus"
+ },
+ {
+ "id": 1894,
+ "start": 2101.54,
+ "end": 2102,
+ "text": "on"
+ },
+ {
+ "id": 1895,
+ "start": 2102,
+ "end": 2102.48,
+ "text": "micro"
+ },
+ {
+ "id": 1896,
+ "start": 2102.48,
+ "end": 2103.2,
+ "text": "targeting"
+ },
+ {
+ "id": 1897,
+ "start": 2103.2,
+ "end": 2104.28,
+ "text": "and"
+ },
+ {
+ "id": 1898,
+ "start": 2104.28,
+ "end": 2105.28,
+ "text": "personalization"
+ },
+ {
+ "id": 1899,
+ "start": 2105.28,
+ "end": 2106.1,
+ "text": "over"
+ },
+ {
+ "id": 1900,
+ "start": 2106.1,
+ "end": 2106.54,
+ "text": "numerous"
+ },
+ {
+ "id": 1901,
+ "start": 2106.54,
+ "end": 2107.06,
+ "text": "social"
+ },
+ {
+ "id": 1902,
+ "start": 2107.06,
+ "end": 2107.5,
+ "text": "media"
+ },
+ {
+ "id": 1903,
+ "start": 2107.5,
+ "end": 2108.18,
+ "text": "platforms"
+ },
+ {
+ "id": 1904,
+ "start": 2108.18,
+ "end": 2108.94,
+ "text": "and"
+ },
+ {
+ "id": 1905,
+ "start": 2108.94,
+ "end": 2109.58,
+ "text": "especially"
+ },
+ {
+ "id": 1906,
+ "start": 2109.58,
+ "end": 2110.66,
+ "text": "Facebook."
+ },
+ {
+ "id": 1907,
+ "start": 2110.66,
+ "end": 2111.66,
+ "text": "In"
+ },
+ {
+ "id": 1908,
+ "start": 2111.66,
+ "end": 2112.64,
+ "text": "fact,"
+ },
+ {
+ "id": 1909,
+ "start": 2112.64,
+ "end": 2113.76,
+ "text": "President"
+ },
+ {
+ "id": 1910,
+ "start": 2113.76,
+ "end": 2114.7,
+ "text": "Obama's"
+ },
+ {
+ "id": 1911,
+ "start": 2114.7,
+ "end": 2115.82,
+ "text": "campaign"
+ },
+ {
+ "id": 1912,
+ "start": 2115.82,
+ "end": 2116.46,
+ "text": "developed"
+ },
+ {
+ "id": 1913,
+ "start": 2116.46,
+ "end": 2116.6,
+ "text": "an"
+ },
+ {
+ "id": 1914,
+ "start": 2116.6,
+ "end": 2117.06,
+ "text": "apt"
+ },
+ {
+ "id": 1915,
+ "start": 2117.06,
+ "end": 2117.88,
+ "text": "utilizing"
+ },
+ {
+ "id": 1916,
+ "start": 2117.88,
+ "end": 2118.06,
+ "text": "the"
+ },
+ {
+ "id": 1917,
+ "start": 2118.06,
+ "end": 2118.4,
+ "text": "same"
+ },
+ {
+ "id": 1918,
+ "start": 2118.4,
+ "end": 2119.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 1919,
+ "start": 2119.12,
+ "end": 2119.72,
+ "text": "feature"
+ },
+ {
+ "id": 1920,
+ "start": 2119.72,
+ "end": 2120.38,
+ "text": "as"
+ },
+ {
+ "id": 1921,
+ "start": 2120.38,
+ "end": 2121.2,
+ "text": "Cambridge"
+ },
+ {
+ "id": 1922,
+ "start": 2121.2,
+ "end": 2122.16,
+ "text": "Analytica"
+ },
+ {
+ "id": 1923,
+ "start": 2122.16,
+ "end": 2122.78,
+ "text": "to"
+ },
+ {
+ "id": 1924,
+ "start": 2122.78,
+ "end": 2123.26,
+ "text": "capture"
+ },
+ {
+ "id": 1925,
+ "start": 2123.26,
+ "end": 2123.44,
+ "text": "the"
+ },
+ {
+ "id": 1926,
+ "start": 2123.44,
+ "end": 2124.06,
+ "text": "information"
+ },
+ {
+ "id": 1927,
+ "start": 2124.06,
+ "end": 2124.26,
+ "text": "of"
+ },
+ {
+ "id": 1928,
+ "start": 2124.26,
+ "end": 2124.5,
+ "text": "not"
+ },
+ {
+ "id": 1929,
+ "start": 2124.5,
+ "end": 2124.84,
+ "text": "just"
+ },
+ {
+ "id": 1930,
+ "start": 2124.84,
+ "end": 2125.08,
+ "text": "the"
+ },
+ {
+ "id": 1931,
+ "start": 2125.08,
+ "end": 2125.42,
+ "text": "apps"
+ },
+ {
+ "id": 1932,
+ "start": 2125.42,
+ "end": 2125.78,
+ "text": "use."
+ },
+ {
+ "id": 1933,
+ "start": 2125.78,
+ "end": 2126.7,
+ "text": "But"
+ },
+ {
+ "id": 1934,
+ "start": 2126.7,
+ "end": 2127.22,
+ "text": "millions"
+ },
+ {
+ "id": 1935,
+ "start": 2127.22,
+ "end": 2127.34,
+ "text": "of"
+ },
+ {
+ "id": 1936,
+ "start": 2127.34,
+ "end": 2127.6,
+ "text": "their"
+ },
+ {
+ "id": 1937,
+ "start": 2127.6,
+ "end": 2128.04,
+ "text": "friends,"
+ },
+ {
+ "id": 1938,
+ "start": 2128.04,
+ "end": 2129,
+ "text": "the"
+ },
+ {
+ "id": 1939,
+ "start": 2129,
+ "end": 2129.5,
+ "text": "digital"
+ },
+ {
+ "id": 1940,
+ "start": 2129.5,
+ "end": 2130.08,
+ "text": "director"
+ },
+ {
+ "id": 1941,
+ "start": 2130.08,
+ "end": 2130.34,
+ "text": "for"
+ },
+ {
+ "id": 1942,
+ "start": 2130.34,
+ "end": 2130.62,
+ "text": "that"
+ },
+ {
+ "id": 1943,
+ "start": 2130.62,
+ "end": 2131.36,
+ "text": "campaign"
+ },
+ {
+ "id": 1944,
+ "start": 2131.36,
+ "end": 2132.28,
+ "text": "for"
+ },
+ {
+ "id": 1945,
+ "start": 2132.28,
+ "end": 2132.92,
+ "text": "20"
+ },
+ {
+ "id": 1946,
+ "start": 2132.92,
+ "end": 2133.44,
+ "text": "12"
+ },
+ {
+ "id": 1947,
+ "start": 2133.44,
+ "end": 2134.12,
+ "text": "described"
+ },
+ {
+ "id": 1948,
+ "start": 2134.12,
+ "end": 2134.3,
+ "text": "the"
+ },
+ {
+ "id": 1949,
+ "start": 2134.3,
+ "end": 2134.7,
+ "text": "data"
+ },
+ {
+ "id": 1950,
+ "start": 2134.7,
+ "end": 2135.4,
+ "text": "scraping"
+ },
+ {
+ "id": 1951,
+ "start": 2135.4,
+ "end": 2135.86,
+ "text": "app"
+ },
+ {
+ "id": 1952,
+ "start": 2135.86,
+ "end": 2136.6,
+ "text": "as"
+ },
+ {
+ "id": 1953,
+ "start": 2136.6,
+ "end": 2137.18,
+ "text": "something"
+ },
+ {
+ "id": 1954,
+ "start": 2137.18,
+ "end": 2137.48,
+ "text": "that"
+ },
+ {
+ "id": 1955,
+ "start": 2137.48,
+ "end": 2137.94,
+ "text": "would"
+ },
+ {
+ "id": 1956,
+ "start": 2137.94,
+ "end": 2138.92,
+ "text": "quote."
+ },
+ {
+ "id": 1957,
+ "start": 2138.92,
+ "end": 2139.76,
+ "text": "Wind"
+ },
+ {
+ "id": 1958,
+ "start": 2139.76,
+ "end": 2140.04,
+ "text": "up"
+ },
+ {
+ "id": 1959,
+ "start": 2140.04,
+ "end": 2140.68,
+ "text": "being"
+ },
+ {
+ "id": 1960,
+ "start": 2140.68,
+ "end": 2140.84,
+ "text": "the"
+ },
+ {
+ "id": 1961,
+ "start": 2140.84,
+ "end": 2141.12,
+ "text": "most"
+ },
+ {
+ "id": 1962,
+ "start": 2141.12,
+ "end": 2142.08,
+ "text": "groundbreaking"
+ },
+ {
+ "id": 1963,
+ "start": 2142.08,
+ "end": 2142.46,
+ "text": "piece"
+ },
+ {
+ "id": 1964,
+ "start": 2142.46,
+ "end": 2142.62,
+ "text": "of"
+ },
+ {
+ "id": 1965,
+ "start": 2142.62,
+ "end": 2143.42,
+ "text": "technology"
+ },
+ {
+ "id": 1966,
+ "start": 2143.42,
+ "end": 2144.1,
+ "text": "developed"
+ },
+ {
+ "id": 1967,
+ "start": 2144.1,
+ "end": 2144.66,
+ "text": "for"
+ },
+ {
+ "id": 1968,
+ "start": 2144.66,
+ "end": 2144.9,
+ "text": "this"
+ },
+ {
+ "id": 1969,
+ "start": 2144.9,
+ "end": 2145.6,
+ "text": "campaign"
+ },
+ {
+ "id": 1970,
+ "start": 2145.6,
+ "end": 2145.9,
+ "text": "and"
+ },
+ {
+ "id": 1971,
+ "start": 2145.9,
+ "end": 2146.06,
+ "text": "the"
+ },
+ {
+ "id": 1972,
+ "start": 2146.06,
+ "end": 2147,
+ "text": "quote"
+ },
+ {
+ "id": 1973,
+ "start": 2147,
+ "end": 2147.76,
+ "text": "so"
+ },
+ {
+ "id": 1974,
+ "start": 2147.76,
+ "end": 2147.96,
+ "text": "the"
+ },
+ {
+ "id": 1975,
+ "start": 2147.96,
+ "end": 2148.82,
+ "text": "effectiveness"
+ },
+ {
+ "id": 1976,
+ "start": 2148.82,
+ "end": 2149,
+ "text": "of"
+ },
+ {
+ "id": 1977,
+ "start": 2149,
+ "end": 2149.26,
+ "text": "these"
+ },
+ {
+ "id": 1978,
+ "start": 2149.26,
+ "end": 2149.74,
+ "text": "social"
+ },
+ {
+ "id": 1979,
+ "start": 2149.74,
+ "end": 2150.12,
+ "text": "media"
+ },
+ {
+ "id": 1980,
+ "start": 2150.12,
+ "end": 2150.82,
+ "text": "tactics"
+ },
+ {
+ "id": 1981,
+ "start": 2150.82,
+ "end": 2151.34,
+ "text": "can"
+ },
+ {
+ "id": 1982,
+ "start": 2151.34,
+ "end": 2151.5,
+ "text": "be"
+ },
+ {
+ "id": 1983,
+ "start": 2151.5,
+ "end": 2152.06,
+ "text": "debated."
+ },
+ {
+ "id": 1984,
+ "start": 2152.06,
+ "end": 2153.1,
+ "text": "But"
+ },
+ {
+ "id": 1985,
+ "start": 2153.1,
+ "end": 2153.4,
+ "text": "they're"
+ },
+ {
+ "id": 1986,
+ "start": 2153.4,
+ "end": 2153.72,
+ "text": "used"
+ },
+ {
+ "id": 1987,
+ "start": 2153.72,
+ "end": 2154,
+ "text": "over"
+ },
+ {
+ "id": 1988,
+ "start": 2154,
+ "end": 2154.14,
+ "text": "the"
+ },
+ {
+ "id": 1989,
+ "start": 2154.14,
+ "end": 2154.46,
+ "text": "past"
+ },
+ {
+ "id": 1990,
+ "start": 2154.46,
+ "end": 2154.78,
+ "text": "years"
+ },
+ {
+ "id": 1991,
+ "start": 2154.78,
+ "end": 2155.18,
+ "text": "across"
+ },
+ {
+ "id": 1992,
+ "start": 2155.18,
+ "end": 2155.36,
+ "text": "the"
+ },
+ {
+ "id": 1993,
+ "start": 2155.36,
+ "end": 2155.82,
+ "text": "political"
+ },
+ {
+ "id": 1994,
+ "start": 2155.82,
+ "end": 2156.44,
+ "text": "spectrum"
+ },
+ {
+ "id": 1995,
+ "start": 2156.44,
+ "end": 2157.1,
+ "text": "and"
+ },
+ {
+ "id": 1996,
+ "start": 2157.1,
+ "end": 2157.34,
+ "text": "their"
+ },
+ {
+ "id": 1997,
+ "start": 2157.34,
+ "end": 2157.88,
+ "text": "increased"
+ },
+ {
+ "id": 1998,
+ "start": 2157.88,
+ "end": 2158.72,
+ "text": "significance"
+ },
+ {
+ "id": 1999,
+ "start": 2158.72,
+ "end": 2159.84,
+ "text": "cannot"
+ },
+ {
+ "id": 2000,
+ "start": 2159.84,
+ "end": 2160.14,
+ "text": "be"
+ },
+ {
+ "id": 2001,
+ "start": 2160.14,
+ "end": 2161.72,
+ "text": "ignored"
+ },
+ {
+ "id": 2002,
+ "start": 2161.72,
+ "end": 2162.94,
+ "text": "our"
+ },
+ {
+ "id": 2003,
+ "start": 2162.94,
+ "end": 2163.72,
+ "text": "policy"
+ },
+ {
+ "id": 2004,
+ "start": 2163.72,
+ "end": 2164.68,
+ "text": "towards"
+ },
+ {
+ "id": 2005,
+ "start": 2164.68,
+ "end": 2165.12,
+ "text": "data,"
+ },
+ {
+ "id": 2006,
+ "start": 2165.12,
+ "end": 2165.62,
+ "text": "privacy"
+ },
+ {
+ "id": 2007,
+ "start": 2165.62,
+ "end": 2166.28,
+ "text": "and"
+ },
+ {
+ "id": 2008,
+ "start": 2166.28,
+ "end": 2166.9,
+ "text": "security"
+ },
+ {
+ "id": 2009,
+ "start": 2166.9,
+ "end": 2167.62,
+ "text": "must"
+ },
+ {
+ "id": 2010,
+ "start": 2167.62,
+ "end": 2167.84,
+ "text": "keep"
+ },
+ {
+ "id": 2011,
+ "start": 2167.84,
+ "end": 2168.26,
+ "text": "pace"
+ },
+ {
+ "id": 2012,
+ "start": 2168.26,
+ "end": 2168.5,
+ "text": "with"
+ },
+ {
+ "id": 2013,
+ "start": 2168.5,
+ "end": 2168.72,
+ "text": "these"
+ },
+ {
+ "id": 2014,
+ "start": 2168.72,
+ "end": 2169.76,
+ "text": "changes"
+ },
+ {
+ "id": 2015,
+ "start": 2169.76,
+ "end": 2170.84,
+ "text": "data."
+ },
+ {
+ "id": 2016,
+ "start": 2170.84,
+ "end": 2171.4,
+ "text": "Privacy"
+ },
+ {
+ "id": 2017,
+ "start": 2171.4,
+ "end": 2171.7,
+ "text": "should"
+ },
+ {
+ "id": 2018,
+ "start": 2171.7,
+ "end": 2171.82,
+ "text": "be"
+ },
+ {
+ "id": 2019,
+ "start": 2171.82,
+ "end": 2172.38,
+ "text": "tethered"
+ },
+ {
+ "id": 2020,
+ "start": 2172.38,
+ "end": 2173.14,
+ "text": "to"
+ },
+ {
+ "id": 2021,
+ "start": 2173.14,
+ "end": 2173.78,
+ "text": "consumer"
+ },
+ {
+ "id": 2022,
+ "start": 2173.78,
+ "end": 2174.14,
+ "text": "needs"
+ },
+ {
+ "id": 2023,
+ "start": 2174.14,
+ "end": 2174.38,
+ "text": "and"
+ },
+ {
+ "id": 2024,
+ "start": 2174.38,
+ "end": 2175.36,
+ "text": "expectations"
+ },
+ {
+ "id": 2025,
+ "start": 2175.36,
+ "end": 2176.64,
+ "text": "now"
+ },
+ {
+ "id": 2026,
+ "start": 2176.64,
+ "end": 2176.94,
+ "text": "at"
+ },
+ {
+ "id": 2027,
+ "start": 2176.94,
+ "end": 2177,
+ "text": "a"
+ },
+ {
+ "id": 2028,
+ "start": 2177,
+ "end": 2177.48,
+ "text": "minimum."
+ },
+ {
+ "id": 2029,
+ "start": 2177.48,
+ "end": 2178.58,
+ "text": "Consumers"
+ },
+ {
+ "id": 2030,
+ "start": 2178.58,
+ "end": 2178.88,
+ "text": "must"
+ },
+ {
+ "id": 2031,
+ "start": 2178.88,
+ "end": 2179.08,
+ "text": "have"
+ },
+ {
+ "id": 2032,
+ "start": 2179.08,
+ "end": 2179.18,
+ "text": "the"
+ },
+ {
+ "id": 2033,
+ "start": 2179.18,
+ "end": 2180,
+ "text": "transparency"
+ },
+ {
+ "id": 2034,
+ "start": 2180,
+ "end": 2180.88,
+ "text": "necessary"
+ },
+ {
+ "id": 2035,
+ "start": 2180.88,
+ "end": 2181.44,
+ "text": "to"
+ },
+ {
+ "id": 2036,
+ "start": 2181.44,
+ "end": 2181.64,
+ "text": "make"
+ },
+ {
+ "id": 2037,
+ "start": 2181.64,
+ "end": 2181.78,
+ "text": "an"
+ },
+ {
+ "id": 2038,
+ "start": 2181.78,
+ "end": 2182.3,
+ "text": "informed"
+ },
+ {
+ "id": 2039,
+ "start": 2182.3,
+ "end": 2182.84,
+ "text": "decision"
+ },
+ {
+ "id": 2040,
+ "start": 2182.84,
+ "end": 2183.16,
+ "text": "about"
+ },
+ {
+ "id": 2041,
+ "start": 2183.16,
+ "end": 2183.48,
+ "text": "whether"
+ },
+ {
+ "id": 2042,
+ "start": 2183.48,
+ "end": 2183.66,
+ "text": "to"
+ },
+ {
+ "id": 2043,
+ "start": 2183.66,
+ "end": 2183.94,
+ "text": "share"
+ },
+ {
+ "id": 2044,
+ "start": 2183.94,
+ "end": 2184.22,
+ "text": "their"
+ },
+ {
+ "id": 2045,
+ "start": 2184.22,
+ "end": 2184.62,
+ "text": "data"
+ },
+ {
+ "id": 2046,
+ "start": 2184.62,
+ "end": 2185.46,
+ "text": "and"
+ },
+ {
+ "id": 2047,
+ "start": 2185.46,
+ "end": 2185.72,
+ "text": "how"
+ },
+ {
+ "id": 2048,
+ "start": 2185.72,
+ "end": 2185.82,
+ "text": "it"
+ },
+ {
+ "id": 2049,
+ "start": 2185.82,
+ "end": 2186,
+ "text": "can"
+ },
+ {
+ "id": 2050,
+ "start": 2186,
+ "end": 2186.14,
+ "text": "be"
+ },
+ {
+ "id": 2051,
+ "start": 2186.14,
+ "end": 2186.86,
+ "text": "used"
+ },
+ {
+ "id": 2052,
+ "start": 2186.86,
+ "end": 2187.88,
+ "text": "consumers"
+ },
+ {
+ "id": 2053,
+ "start": 2187.88,
+ "end": 2188.12,
+ "text": "ought"
+ },
+ {
+ "id": 2054,
+ "start": 2188.12,
+ "end": 2188.24,
+ "text": "to"
+ },
+ {
+ "id": 2055,
+ "start": 2188.24,
+ "end": 2188.44,
+ "text": "have"
+ },
+ {
+ "id": 2056,
+ "start": 2188.44,
+ "end": 2188.88,
+ "text": "clear"
+ },
+ {
+ "id": 2057,
+ "start": 2188.88,
+ "end": 2189.76,
+ "text": "information?"
+ },
+ {
+ "id": 2058,
+ "start": 2189.76,
+ "end": 2190.52,
+ "text": "Not"
+ },
+ {
+ "id": 2059,
+ "start": 2190.52,
+ "end": 2191,
+ "text": "opaque"
+ },
+ {
+ "id": 2060,
+ "start": 2191,
+ "end": 2191.64,
+ "text": "policies"
+ },
+ {
+ "id": 2061,
+ "start": 2191.64,
+ "end": 2191.88,
+ "text": "and"
+ },
+ {
+ "id": 2062,
+ "start": 2191.88,
+ "end": 2192.56,
+ "text": "complex"
+ },
+ {
+ "id": 2063,
+ "start": 2192.56,
+ "end": 2193.4,
+ "text": "click"
+ },
+ {
+ "id": 2064,
+ "start": 2193.4,
+ "end": 2194.26,
+ "text": "through"
+ },
+ {
+ "id": 2065,
+ "start": 2194.26,
+ "end": 2195.12,
+ "text": "consent"
+ },
+ {
+ "id": 2066,
+ "start": 2195.12,
+ "end": 2196.04,
+ "text": "pages."
+ },
+ {
+ "id": 2067,
+ "start": 2196.04,
+ "end": 2196.62,
+ "text": "The"
+ },
+ {
+ "id": 2068,
+ "start": 2196.62,
+ "end": 2196.9,
+ "text": "tech"
+ },
+ {
+ "id": 2069,
+ "start": 2196.9,
+ "end": 2197.48,
+ "text": "industry"
+ },
+ {
+ "id": 2070,
+ "start": 2197.48,
+ "end": 2198.22,
+ "text": "has"
+ },
+ {
+ "id": 2071,
+ "start": 2198.22,
+ "end": 2198.34,
+ "text": "an"
+ },
+ {
+ "id": 2072,
+ "start": 2198.34,
+ "end": 2199.04,
+ "text": "obligation"
+ },
+ {
+ "id": 2073,
+ "start": 2199.04,
+ "end": 2199.2,
+ "text": "to"
+ },
+ {
+ "id": 2074,
+ "start": 2199.2,
+ "end": 2199.74,
+ "text": "respond"
+ },
+ {
+ "id": 2075,
+ "start": 2199.74,
+ "end": 2199.88,
+ "text": "to"
+ },
+ {
+ "id": 2076,
+ "start": 2199.88,
+ "end": 2200.62,
+ "text": "widespread"
+ },
+ {
+ "id": 2077,
+ "start": 2200.62,
+ "end": 2201.48,
+ "text": "and"
+ },
+ {
+ "id": 2078,
+ "start": 2201.48,
+ "end": 2201.88,
+ "text": "growing"
+ },
+ {
+ "id": 2079,
+ "start": 2201.88,
+ "end": 2202.46,
+ "text": "concerns"
+ },
+ {
+ "id": 2080,
+ "start": 2202.46,
+ "end": 2202.78,
+ "text": "over"
+ },
+ {
+ "id": 2081,
+ "start": 2202.78,
+ "end": 2203.14,
+ "text": "data,"
+ },
+ {
+ "id": 2082,
+ "start": 2203.14,
+ "end": 2203.68,
+ "text": "privacy"
+ },
+ {
+ "id": 2083,
+ "start": 2203.68,
+ "end": 2204.64,
+ "text": "and"
+ },
+ {
+ "id": 2084,
+ "start": 2204.64,
+ "end": 2205.3,
+ "text": "security"
+ },
+ {
+ "id": 2085,
+ "start": 2205.3,
+ "end": 2206,
+ "text": "and"
+ },
+ {
+ "id": 2086,
+ "start": 2206,
+ "end": 2206.14,
+ "text": "to"
+ },
+ {
+ "id": 2087,
+ "start": 2206.14,
+ "end": 2206.54,
+ "text": "restore"
+ },
+ {
+ "id": 2088,
+ "start": 2206.54,
+ "end": 2206.74,
+ "text": "the"
+ },
+ {
+ "id": 2089,
+ "start": 2206.74,
+ "end": 2207.12,
+ "text": "public"
+ },
+ {
+ "id": 2090,
+ "start": 2207.12,
+ "end": 2207.54,
+ "text": "trust"
+ },
+ {
+ "id": 2091,
+ "start": 2207.54,
+ "end": 2208.32,
+ "text": "the"
+ },
+ {
+ "id": 2092,
+ "start": 2208.32,
+ "end": 2208.92,
+ "text": "status"
+ },
+ {
+ "id": 2093,
+ "start": 2208.92,
+ "end": 2209.24,
+ "text": "quo"
+ },
+ {
+ "id": 2094,
+ "start": 2209.24,
+ "end": 2210.2,
+ "text": "no"
+ },
+ {
+ "id": 2095,
+ "start": 2210.2,
+ "end": 2210.74,
+ "text": "longer"
+ },
+ {
+ "id": 2096,
+ "start": 2210.74,
+ "end": 2211.76,
+ "text": "works."
+ },
+ {
+ "id": 2097,
+ "start": 2211.76,
+ "end": 2212.68,
+ "text": "Moreover."
+ },
+ {
+ "id": 2098,
+ "start": 2212.68,
+ "end": 2213.2,
+ "text": "Congress"
+ },
+ {
+ "id": 2099,
+ "start": 2213.2,
+ "end": 2214.02,
+ "text": "must"
+ },
+ {
+ "id": 2100,
+ "start": 2214.02,
+ "end": 2214.56,
+ "text": "determine"
+ },
+ {
+ "id": 2101,
+ "start": 2214.56,
+ "end": 2214.84,
+ "text": "if"
+ },
+ {
+ "id": 2102,
+ "start": 2214.84,
+ "end": 2215.44,
+ "text": "and"
+ },
+ {
+ "id": 2103,
+ "start": 2215.44,
+ "end": 2215.68,
+ "text": "how"
+ },
+ {
+ "id": 2104,
+ "start": 2215.68,
+ "end": 2215.86,
+ "text": "we"
+ },
+ {
+ "id": 2105,
+ "start": 2215.86,
+ "end": 2216.14,
+ "text": "need"
+ },
+ {
+ "id": 2106,
+ "start": 2216.14,
+ "end": 2216.28,
+ "text": "to"
+ },
+ {
+ "id": 2107,
+ "start": 2216.28,
+ "end": 2216.84,
+ "text": "strengthen"
+ },
+ {
+ "id": 2108,
+ "start": 2216.84,
+ "end": 2217.76,
+ "text": "privacy"
+ },
+ {
+ "id": 2109,
+ "start": 2217.76,
+ "end": 2218.3,
+ "text": "standards"
+ },
+ {
+ "id": 2110,
+ "start": 2218.3,
+ "end": 2218.5,
+ "text": "to"
+ },
+ {
+ "id": 2111,
+ "start": 2218.5,
+ "end": 2219.18,
+ "text": "ensure"
+ },
+ {
+ "id": 2112,
+ "start": 2219.18,
+ "end": 2220.16,
+ "text": "transparency"
+ },
+ {
+ "id": 2113,
+ "start": 2220.16,
+ "end": 2220.5,
+ "text": "and"
+ },
+ {
+ "id": 2114,
+ "start": 2220.5,
+ "end": 2221.8,
+ "text": "understanding"
+ },
+ {
+ "id": 2115,
+ "start": 2221.8,
+ "end": 2222.08,
+ "text": "for"
+ },
+ {
+ "id": 2116,
+ "start": 2222.08,
+ "end": 2222.24,
+ "text": "the"
+ },
+ {
+ "id": 2117,
+ "start": 2222.24,
+ "end": 2222.74,
+ "text": "billions"
+ },
+ {
+ "id": 2118,
+ "start": 2222.74,
+ "end": 2222.9,
+ "text": "of"
+ },
+ {
+ "id": 2119,
+ "start": 2222.9,
+ "end": 2223.58,
+ "text": "consumers"
+ },
+ {
+ "id": 2120,
+ "start": 2223.58,
+ "end": 2223.72,
+ "text": "who"
+ },
+ {
+ "id": 2121,
+ "start": 2223.72,
+ "end": 2224.64,
+ "text": "utilize"
+ },
+ {
+ "id": 2122,
+ "start": 2224.64,
+ "end": 2225.24,
+ "text": "these"
+ },
+ {
+ "id": 2123,
+ "start": 2225.24,
+ "end": 2225.74,
+ "text": "products."
+ },
+ {
+ "id": 2124,
+ "start": 2225.74,
+ "end": 2226.48,
+ "text": "Senator"
+ },
+ {
+ "id": 2125,
+ "start": 2226.48,
+ "end": 2227.32,
+ "text": "Nelson,"
+ },
+ {
+ "id": 2126,
+ "start": 2227.32,
+ "end": 2228.28,
+ "text": "thank"
+ },
+ {
+ "id": 2127,
+ "start": 2228.28,
+ "end": 2228.42,
+ "text": "you,"
+ },
+ {
+ "id": 2128,
+ "start": 2228.42,
+ "end": 2228.68,
+ "text": "Mr"
+ },
+ {
+ "id": 2129,
+ "start": 2228.68,
+ "end": 2229.08,
+ "text": "Chairman."
+ },
+ {
+ "id": 2130,
+ "start": 2229.08,
+ "end": 2229.7,
+ "text": "Mr"
+ },
+ {
+ "id": 2131,
+ "start": 2229.7,
+ "end": 2230.16,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 2132,
+ "start": 2230.16,
+ "end": 2230.48,
+ "text": "good"
+ },
+ {
+ "id": 2133,
+ "start": 2230.48,
+ "end": 2231.84,
+ "text": "afternoon."
+ },
+ {
+ "id": 2134,
+ "start": 2231.84,
+ "end": 2232.7,
+ "text": "Let"
+ },
+ {
+ "id": 2135,
+ "start": 2232.7,
+ "end": 2232.88,
+ "text": "me"
+ },
+ {
+ "id": 2136,
+ "start": 2232.88,
+ "end": 2233.12,
+ "text": "just"
+ },
+ {
+ "id": 2137,
+ "start": 2233.12,
+ "end": 2233.32,
+ "text": "cut"
+ },
+ {
+ "id": 2138,
+ "start": 2233.32,
+ "end": 2233.5,
+ "text": "to"
+ },
+ {
+ "id": 2139,
+ "start": 2233.5,
+ "end": 2233.68,
+ "text": "the"
+ },
+ {
+ "id": 2140,
+ "start": 2233.68,
+ "end": 2234.04,
+ "text": "chase."
+ },
+ {
+ "id": 2141,
+ "start": 2234.04,
+ "end": 2234.9,
+ "text": "If"
+ },
+ {
+ "id": 2142,
+ "start": 2234.9,
+ "end": 2235.08,
+ "text": "you"
+ },
+ {
+ "id": 2143,
+ "start": 2235.08,
+ "end": 2235.36,
+ "text": "and"
+ },
+ {
+ "id": 2144,
+ "start": 2235.36,
+ "end": 2235.62,
+ "text": "other"
+ },
+ {
+ "id": 2145,
+ "start": 2235.62,
+ "end": 2236.12,
+ "text": "social"
+ },
+ {
+ "id": 2146,
+ "start": 2236.12,
+ "end": 2236.5,
+ "text": "media"
+ },
+ {
+ "id": 2147,
+ "start": 2236.5,
+ "end": 2237.2,
+ "text": "companies"
+ },
+ {
+ "id": 2148,
+ "start": 2237.2,
+ "end": 2237.9,
+ "text": "do"
+ },
+ {
+ "id": 2149,
+ "start": 2237.9,
+ "end": 2238.22,
+ "text": "not"
+ },
+ {
+ "id": 2150,
+ "start": 2238.22,
+ "end": 2238.6,
+ "text": "get"
+ },
+ {
+ "id": 2151,
+ "start": 2238.6,
+ "end": 2239.26,
+ "text": "your"
+ },
+ {
+ "id": 2152,
+ "start": 2239.26,
+ "end": 2240.08,
+ "text": "act"
+ },
+ {
+ "id": 2153,
+ "start": 2240.08,
+ "end": 2240.28,
+ "text": "in"
+ },
+ {
+ "id": 2154,
+ "start": 2240.28,
+ "end": 2240.92,
+ "text": "order."
+ },
+ {
+ "id": 2155,
+ "start": 2240.92,
+ "end": 2241.88,
+ "text": "None"
+ },
+ {
+ "id": 2156,
+ "start": 2241.88,
+ "end": 2241.98,
+ "text": "of"
+ },
+ {
+ "id": 2157,
+ "start": 2241.98,
+ "end": 2242.3,
+ "text": "us"
+ },
+ {
+ "id": 2158,
+ "start": 2242.3,
+ "end": 2242.5,
+ "text": "are"
+ },
+ {
+ "id": 2159,
+ "start": 2242.5,
+ "end": 2242.7,
+ "text": "going"
+ },
+ {
+ "id": 2160,
+ "start": 2242.7,
+ "end": 2242.8,
+ "text": "to"
+ },
+ {
+ "id": 2161,
+ "start": 2242.8,
+ "end": 2243,
+ "text": "have"
+ },
+ {
+ "id": 2162,
+ "start": 2243,
+ "end": 2243.26,
+ "text": "any"
+ },
+ {
+ "id": 2163,
+ "start": 2243.26,
+ "end": 2243.8,
+ "text": "privacy"
+ },
+ {
+ "id": 2164,
+ "start": 2243.8,
+ "end": 2245.08,
+ "text": "anymore"
+ },
+ {
+ "id": 2165,
+ "start": 2245.08,
+ "end": 2246.18,
+ "text": "that's"
+ },
+ {
+ "id": 2166,
+ "start": 2246.18,
+ "end": 2246.44,
+ "text": "what"
+ },
+ {
+ "id": 2167,
+ "start": 2246.44,
+ "end": 2246.8,
+ "text": "we're"
+ },
+ {
+ "id": 2168,
+ "start": 2246.8,
+ "end": 2247.34,
+ "text": "facing"
+ },
+ {
+ "id": 2169,
+ "start": 2247.34,
+ "end": 2247.68,
+ "text": "we're"
+ },
+ {
+ "id": 2170,
+ "start": 2247.68,
+ "end": 2248.02,
+ "text": "talking"
+ },
+ {
+ "id": 2171,
+ "start": 2248.02,
+ "end": 2248.36,
+ "text": "about"
+ },
+ {
+ "id": 2172,
+ "start": 2248.36,
+ "end": 2249.44,
+ "text": "personally"
+ },
+ {
+ "id": 2173,
+ "start": 2249.44,
+ "end": 2250.66,
+ "text": "identifiable"
+ },
+ {
+ "id": 2174,
+ "start": 2250.66,
+ "end": 2252.12,
+ "text": "information"
+ },
+ {
+ "id": 2175,
+ "start": 2252.12,
+ "end": 2253.14,
+ "text": "that"
+ },
+ {
+ "id": 2176,
+ "start": 2253.14,
+ "end": 2253.6,
+ "text": "if"
+ },
+ {
+ "id": 2177,
+ "start": 2253.6,
+ "end": 2254.02,
+ "text": "not"
+ },
+ {
+ "id": 2178,
+ "start": 2254.02,
+ "end": 2254.38,
+ "text": "kept"
+ },
+ {
+ "id": 2179,
+ "start": 2254.38,
+ "end": 2254.6,
+ "text": "by"
+ },
+ {
+ "id": 2180,
+ "start": 2254.6,
+ "end": 2254.88,
+ "text": "the"
+ },
+ {
+ "id": 2181,
+ "start": 2254.88,
+ "end": 2255.44,
+ "text": "social"
+ },
+ {
+ "id": 2182,
+ "start": 2255.44,
+ "end": 2256.26,
+ "text": "media"
+ },
+ {
+ "id": 2183,
+ "start": 2256.26,
+ "end": 2256.8,
+ "text": "companies"
+ },
+ {
+ "id": 2184,
+ "start": 2256.8,
+ "end": 2257.1,
+ "text": "from"
+ },
+ {
+ "id": 2185,
+ "start": 2257.1,
+ "end": 2259.38,
+ "text": "theft,"
+ },
+ {
+ "id": 2186,
+ "start": 2259.38,
+ "end": 2260.44,
+ "text": "a"
+ },
+ {
+ "id": 2187,
+ "start": 2260.44,
+ "end": 2261.04,
+ "text": "value"
+ },
+ {
+ "id": 2188,
+ "start": 2261.04,
+ "end": 2261.28,
+ "text": "that"
+ },
+ {
+ "id": 2189,
+ "start": 2261.28,
+ "end": 2261.54,
+ "text": "we"
+ },
+ {
+ "id": 2190,
+ "start": 2261.54,
+ "end": 2261.86,
+ "text": "have"
+ },
+ {
+ "id": 2191,
+ "start": 2261.86,
+ "end": 2262.02,
+ "text": "in"
+ },
+ {
+ "id": 2192,
+ "start": 2262.02,
+ "end": 2262.74,
+ "text": "America"
+ },
+ {
+ "id": 2193,
+ "start": 2262.74,
+ "end": 2263.4,
+ "text": "being"
+ },
+ {
+ "id": 2194,
+ "start": 2263.4,
+ "end": 2264,
+ "text": "our"
+ },
+ {
+ "id": 2195,
+ "start": 2264,
+ "end": 2264.5,
+ "text": "personal"
+ },
+ {
+ "id": 2196,
+ "start": 2264.5,
+ "end": 2265.8,
+ "text": "privacy."
+ },
+ {
+ "id": 2197,
+ "start": 2265.8,
+ "end": 2266.5,
+ "text": "We"
+ },
+ {
+ "id": 2198,
+ "start": 2266.5,
+ "end": 2266.88,
+ "text": "won't"
+ },
+ {
+ "id": 2199,
+ "start": 2266.88,
+ "end": 2267.12,
+ "text": "have"
+ },
+ {
+ "id": 2200,
+ "start": 2267.12,
+ "end": 2267.26,
+ "text": "it"
+ },
+ {
+ "id": 2201,
+ "start": 2267.26,
+ "end": 2268.48,
+ "text": "anymore"
+ },
+ {
+ "id": 2202,
+ "start": 2268.48,
+ "end": 2269.5,
+ "text": "it's"
+ },
+ {
+ "id": 2203,
+ "start": 2269.5,
+ "end": 2269.72,
+ "text": "the"
+ },
+ {
+ "id": 2204,
+ "start": 2269.72,
+ "end": 2270.24,
+ "text": "advent"
+ },
+ {
+ "id": 2205,
+ "start": 2270.24,
+ "end": 2270.34,
+ "text": "of"
+ },
+ {
+ "id": 2206,
+ "start": 2270.34,
+ "end": 2272.02,
+ "text": "technology"
+ },
+ {
+ "id": 2207,
+ "start": 2272.02,
+ "end": 2273.04,
+ "text": "and"
+ },
+ {
+ "id": 2208,
+ "start": 2273.04,
+ "end": 2273.16,
+ "text": "of"
+ },
+ {
+ "id": 2209,
+ "start": 2273.16,
+ "end": 2273.48,
+ "text": "course,"
+ },
+ {
+ "id": 2210,
+ "start": 2273.48,
+ "end": 2273.8,
+ "text": "all"
+ },
+ {
+ "id": 2211,
+ "start": 2273.8,
+ "end": 2273.94,
+ "text": "of"
+ },
+ {
+ "id": 2212,
+ "start": 2273.94,
+ "end": 2274.2,
+ "text": "us"
+ },
+ {
+ "id": 2213,
+ "start": 2274.2,
+ "end": 2274.56,
+ "text": "are"
+ },
+ {
+ "id": 2214,
+ "start": 2274.56,
+ "end": 2274.86,
+ "text": "part"
+ },
+ {
+ "id": 2215,
+ "start": 2274.86,
+ "end": 2275,
+ "text": "of"
+ },
+ {
+ "id": 2216,
+ "start": 2275,
+ "end": 2275.14,
+ "text": "it"
+ },
+ {
+ "id": 2217,
+ "start": 2275.14,
+ "end": 2276.16,
+ "text": "from"
+ },
+ {
+ "id": 2218,
+ "start": 2276.16,
+ "end": 2276.32,
+ "text": "the"
+ },
+ {
+ "id": 2219,
+ "start": 2276.32,
+ "end": 2276.72,
+ "text": "moment"
+ },
+ {
+ "id": 2220,
+ "start": 2276.72,
+ "end": 2277,
+ "text": "that"
+ },
+ {
+ "id": 2221,
+ "start": 2277,
+ "end": 2277.18,
+ "text": "we"
+ },
+ {
+ "id": 2222,
+ "start": 2277.18,
+ "end": 2277.86,
+ "text": "wake"
+ },
+ {
+ "id": 2223,
+ "start": 2277.86,
+ "end": 2278,
+ "text": "up"
+ },
+ {
+ "id": 2224,
+ "start": 2278,
+ "end": 2278.14,
+ "text": "in"
+ },
+ {
+ "id": 2225,
+ "start": 2278.14,
+ "end": 2278.28,
+ "text": "the"
+ },
+ {
+ "id": 2226,
+ "start": 2278.28,
+ "end": 2278.62,
+ "text": "morning"
+ },
+ {
+ "id": 2227,
+ "start": 2278.62,
+ "end": 2279.08,
+ "text": "until"
+ },
+ {
+ "id": 2228,
+ "start": 2279.08,
+ "end": 2279.24,
+ "text": "we"
+ },
+ {
+ "id": 2229,
+ "start": 2279.24,
+ "end": 2279.4,
+ "text": "go"
+ },
+ {
+ "id": 2230,
+ "start": 2279.4,
+ "end": 2279.56,
+ "text": "to"
+ },
+ {
+ "id": 2231,
+ "start": 2279.56,
+ "end": 2279.82,
+ "text": "bed"
+ },
+ {
+ "id": 2232,
+ "start": 2279.82,
+ "end": 2280.14,
+ "text": "we're"
+ },
+ {
+ "id": 2233,
+ "start": 2280.14,
+ "end": 2280.48,
+ "text": "on"
+ },
+ {
+ "id": 2234,
+ "start": 2280.48,
+ "end": 2280.9,
+ "text": "those"
+ },
+ {
+ "id": 2235,
+ "start": 2280.9,
+ "end": 2281.82,
+ "text": "handheld"
+ },
+ {
+ "id": 2236,
+ "start": 2281.82,
+ "end": 2283.26,
+ "text": "tablets"
+ },
+ {
+ "id": 2237,
+ "start": 2283.26,
+ "end": 2284.26,
+ "text": "and"
+ },
+ {
+ "id": 2238,
+ "start": 2284.26,
+ "end": 2285.04,
+ "text": "online,"
+ },
+ {
+ "id": 2239,
+ "start": 2285.04,
+ "end": 2285.62,
+ "text": "companies"
+ },
+ {
+ "id": 2240,
+ "start": 2285.62,
+ "end": 2286.02,
+ "text": "like"
+ },
+ {
+ "id": 2241,
+ "start": 2286.02,
+ "end": 2286.78,
+ "text": "Facebook"
+ },
+ {
+ "id": 2242,
+ "start": 2286.78,
+ "end": 2287.04,
+ "text": "are"
+ },
+ {
+ "id": 2243,
+ "start": 2287.04,
+ "end": 2287.7,
+ "text": "tracking"
+ },
+ {
+ "id": 2244,
+ "start": 2287.7,
+ "end": 2288.98,
+ "text": "our"
+ },
+ {
+ "id": 2245,
+ "start": 2288.98,
+ "end": 2290.56,
+ "text": "activities"
+ },
+ {
+ "id": 2246,
+ "start": 2290.56,
+ "end": 2291.38,
+ "text": "and"
+ },
+ {
+ "id": 2247,
+ "start": 2291.38,
+ "end": 2291.9,
+ "text": "collecting"
+ },
+ {
+ "id": 2248,
+ "start": 2291.9,
+ "end": 2294.44,
+ "text": "information."
+ },
+ {
+ "id": 2249,
+ "start": 2294.44,
+ "end": 2295.42,
+ "text": "Facebook"
+ },
+ {
+ "id": 2250,
+ "start": 2295.42,
+ "end": 2296.32,
+ "text": "has"
+ },
+ {
+ "id": 2251,
+ "start": 2296.32,
+ "end": 2297.34,
+ "text": "a"
+ },
+ {
+ "id": 2252,
+ "start": 2297.34,
+ "end": 2298.32,
+ "text": "responsibility"
+ },
+ {
+ "id": 2253,
+ "start": 2298.32,
+ "end": 2298.58,
+ "text": "to"
+ },
+ {
+ "id": 2254,
+ "start": 2298.58,
+ "end": 2299.26,
+ "text": "protect"
+ },
+ {
+ "id": 2255,
+ "start": 2299.26,
+ "end": 2300.2,
+ "text": "this"
+ },
+ {
+ "id": 2256,
+ "start": 2300.2,
+ "end": 2300.84,
+ "text": "personal"
+ },
+ {
+ "id": 2257,
+ "start": 2300.84,
+ "end": 2302.82,
+ "text": "information."
+ },
+ {
+ "id": 2258,
+ "start": 2302.82,
+ "end": 2303.86,
+ "text": "We"
+ },
+ {
+ "id": 2259,
+ "start": 2303.86,
+ "end": 2304.1,
+ "text": "had"
+ },
+ {
+ "id": 2260,
+ "start": 2304.1,
+ "end": 2304.14,
+ "text": "a"
+ },
+ {
+ "id": 2261,
+ "start": 2304.14,
+ "end": 2304.38,
+ "text": "good"
+ },
+ {
+ "id": 2262,
+ "start": 2304.38,
+ "end": 2304.98,
+ "text": "discussion"
+ },
+ {
+ "id": 2263,
+ "start": 2304.98,
+ "end": 2306.12,
+ "text": "yesterday"
+ },
+ {
+ "id": 2264,
+ "start": 2306.12,
+ "end": 2307.08,
+ "text": "we"
+ },
+ {
+ "id": 2265,
+ "start": 2307.08,
+ "end": 2307.5,
+ "text": "went"
+ },
+ {
+ "id": 2266,
+ "start": 2307.5,
+ "end": 2307.9,
+ "text": "over"
+ },
+ {
+ "id": 2267,
+ "start": 2307.9,
+ "end": 2308.2,
+ "text": "all"
+ },
+ {
+ "id": 2268,
+ "start": 2308.2,
+ "end": 2308.3,
+ "text": "of"
+ },
+ {
+ "id": 2269,
+ "start": 2308.3,
+ "end": 2309.42,
+ "text": "this."
+ },
+ {
+ "id": 2270,
+ "start": 2309.42,
+ "end": 2310.32,
+ "text": "You"
+ },
+ {
+ "id": 2271,
+ "start": 2310.32,
+ "end": 2310.72,
+ "text": "told"
+ },
+ {
+ "id": 2272,
+ "start": 2310.72,
+ "end": 2310.92,
+ "text": "me"
+ },
+ {
+ "id": 2273,
+ "start": 2310.92,
+ "end": 2311.2,
+ "text": "that"
+ },
+ {
+ "id": 2274,
+ "start": 2311.2,
+ "end": 2311.34,
+ "text": "the"
+ },
+ {
+ "id": 2275,
+ "start": 2311.34,
+ "end": 2311.78,
+ "text": "company"
+ },
+ {
+ "id": 2276,
+ "start": 2311.78,
+ "end": 2312.14,
+ "text": "had"
+ },
+ {
+ "id": 2277,
+ "start": 2312.14,
+ "end": 2312.66,
+ "text": "failed"
+ },
+ {
+ "id": 2278,
+ "start": 2312.66,
+ "end": 2312.82,
+ "text": "to"
+ },
+ {
+ "id": 2279,
+ "start": 2312.82,
+ "end": 2312.98,
+ "text": "do"
+ },
+ {
+ "id": 2280,
+ "start": 2312.98,
+ "end": 2314.42,
+ "text": "so"
+ },
+ {
+ "id": 2281,
+ "start": 2314.42,
+ "end": 2315.42,
+ "text": "it's"
+ },
+ {
+ "id": 2282,
+ "start": 2315.42,
+ "end": 2315.56,
+ "text": "not"
+ },
+ {
+ "id": 2283,
+ "start": 2315.56,
+ "end": 2315.76,
+ "text": "the"
+ },
+ {
+ "id": 2284,
+ "start": 2315.76,
+ "end": 2316.04,
+ "text": "first"
+ },
+ {
+ "id": 2285,
+ "start": 2316.04,
+ "end": 2316.46,
+ "text": "time"
+ },
+ {
+ "id": 2286,
+ "start": 2316.46,
+ "end": 2316.68,
+ "text": "that"
+ },
+ {
+ "id": 2287,
+ "start": 2316.68,
+ "end": 2317.32,
+ "text": "Facebook"
+ },
+ {
+ "id": 2288,
+ "start": 2317.32,
+ "end": 2317.62,
+ "text": "has"
+ },
+ {
+ "id": 2289,
+ "start": 2317.62,
+ "end": 2318.34,
+ "text": "mishandled"
+ },
+ {
+ "id": 2290,
+ "start": 2318.34,
+ "end": 2318.7,
+ "text": "its"
+ },
+ {
+ "id": 2291,
+ "start": 2318.7,
+ "end": 2319.18,
+ "text": "users"
+ },
+ {
+ "id": 2292,
+ "start": 2319.18,
+ "end": 2319.94,
+ "text": "information,"
+ },
+ {
+ "id": 2293,
+ "start": 2319.94,
+ "end": 2320.94,
+ "text": "the"
+ },
+ {
+ "id": 2294,
+ "start": 2320.94,
+ "end": 2321.88,
+ "text": "FTC"
+ },
+ {
+ "id": 2295,
+ "start": 2321.88,
+ "end": 2322.42,
+ "text": "found"
+ },
+ {
+ "id": 2296,
+ "start": 2322.42,
+ "end": 2322.68,
+ "text": "that"
+ },
+ {
+ "id": 2297,
+ "start": 2322.68,
+ "end": 2323.48,
+ "text": "Facebook's"
+ },
+ {
+ "id": 2298,
+ "start": 2323.48,
+ "end": 2324.4,
+ "text": "privacy"
+ },
+ {
+ "id": 2299,
+ "start": 2324.4,
+ "end": 2325.14,
+ "text": "policies"
+ },
+ {
+ "id": 2300,
+ "start": 2325.14,
+ "end": 2325.84,
+ "text": "had"
+ },
+ {
+ "id": 2301,
+ "start": 2325.84,
+ "end": 2326.52,
+ "text": "deceived"
+ },
+ {
+ "id": 2302,
+ "start": 2326.52,
+ "end": 2327.12,
+ "text": "users"
+ },
+ {
+ "id": 2303,
+ "start": 2327.12,
+ "end": 2327.36,
+ "text": "in"
+ },
+ {
+ "id": 2304,
+ "start": 2327.36,
+ "end": 2327.5,
+ "text": "the"
+ },
+ {
+ "id": 2305,
+ "start": 2327.5,
+ "end": 2328.7,
+ "text": "past."
+ },
+ {
+ "id": 2306,
+ "start": 2328.7,
+ "end": 2329.62,
+ "text": "And"
+ },
+ {
+ "id": 2307,
+ "start": 2329.62,
+ "end": 2329.8,
+ "text": "in"
+ },
+ {
+ "id": 2308,
+ "start": 2329.8,
+ "end": 2329.94,
+ "text": "the"
+ },
+ {
+ "id": 2309,
+ "start": 2329.94,
+ "end": 2330.38,
+ "text": "present"
+ },
+ {
+ "id": 2310,
+ "start": 2330.38,
+ "end": 2331.32,
+ "text": "case,"
+ },
+ {
+ "id": 2311,
+ "start": 2331.32,
+ "end": 2332.38,
+ "text": "we"
+ },
+ {
+ "id": 2312,
+ "start": 2332.38,
+ "end": 2333.14,
+ "text": "recognize"
+ },
+ {
+ "id": 2313,
+ "start": 2333.14,
+ "end": 2333.4,
+ "text": "that"
+ },
+ {
+ "id": 2314,
+ "start": 2333.4,
+ "end": 2333.92,
+ "text": "Cambridge"
+ },
+ {
+ "id": 2315,
+ "start": 2333.92,
+ "end": 2334.62,
+ "text": "Analytica"
+ },
+ {
+ "id": 2316,
+ "start": 2334.62,
+ "end": 2334.98,
+ "text": "and"
+ },
+ {
+ "id": 2317,
+ "start": 2334.98,
+ "end": 2335.14,
+ "text": "an"
+ },
+ {
+ "id": 2318,
+ "start": 2335.14,
+ "end": 2335.54,
+ "text": "app"
+ },
+ {
+ "id": 2319,
+ "start": 2335.54,
+ "end": 2336.18,
+ "text": "developer"
+ },
+ {
+ "id": 2320,
+ "start": 2336.18,
+ "end": 2336.8,
+ "text": "lied"
+ },
+ {
+ "id": 2321,
+ "start": 2336.8,
+ "end": 2337.06,
+ "text": "to"
+ },
+ {
+ "id": 2322,
+ "start": 2337.06,
+ "end": 2337.78,
+ "text": "consumers"
+ },
+ {
+ "id": 2323,
+ "start": 2337.78,
+ "end": 2338.02,
+ "text": "and"
+ },
+ {
+ "id": 2324,
+ "start": 2338.02,
+ "end": 2338.6,
+ "text": "lied"
+ },
+ {
+ "id": 2325,
+ "start": 2338.6,
+ "end": 2338.86,
+ "text": "to"
+ },
+ {
+ "id": 2326,
+ "start": 2338.86,
+ "end": 2339.32,
+ "text": "you"
+ },
+ {
+ "id": 2327,
+ "start": 2339.32,
+ "end": 2340.22,
+ "text": "lied"
+ },
+ {
+ "id": 2328,
+ "start": 2340.22,
+ "end": 2340.38,
+ "text": "to"
+ },
+ {
+ "id": 2329,
+ "start": 2340.38,
+ "end": 2341.8,
+ "text": "Facebook."
+ },
+ {
+ "id": 2330,
+ "start": 2341.8,
+ "end": 2342.78,
+ "text": "But"
+ },
+ {
+ "id": 2331,
+ "start": 2342.78,
+ "end": 2343.72,
+ "text": "did"
+ },
+ {
+ "id": 2332,
+ "start": 2343.72,
+ "end": 2344.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 2333,
+ "start": 2344.34,
+ "end": 2344.82,
+ "text": "watch"
+ },
+ {
+ "id": 2334,
+ "start": 2344.82,
+ "end": 2345.18,
+ "text": "over"
+ },
+ {
+ "id": 2335,
+ "start": 2345.18,
+ "end": 2345.42,
+ "text": "the"
+ },
+ {
+ "id": 2336,
+ "start": 2345.42,
+ "end": 2347.02,
+ "text": "operations?"
+ },
+ {
+ "id": 2337,
+ "start": 2347.02,
+ "end": 2347.84,
+ "text": "We"
+ },
+ {
+ "id": 2338,
+ "start": 2347.84,
+ "end": 2348.14,
+ "text": "want"
+ },
+ {
+ "id": 2339,
+ "start": 2348.14,
+ "end": 2348.26,
+ "text": "to"
+ },
+ {
+ "id": 2340,
+ "start": 2348.26,
+ "end": 2348.4,
+ "text": "know"
+ },
+ {
+ "id": 2341,
+ "start": 2348.4,
+ "end": 2349.24,
+ "text": "that."
+ },
+ {
+ "id": 2342,
+ "start": 2349.24,
+ "end": 2350.2,
+ "text": "And"
+ },
+ {
+ "id": 2343,
+ "start": 2350.2,
+ "end": 2350.38,
+ "text": "why"
+ },
+ {
+ "id": 2344,
+ "start": 2350.38,
+ "end": 2350.82,
+ "text": "didn't"
+ },
+ {
+ "id": 2345,
+ "start": 2350.82,
+ "end": 2351.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 2346,
+ "start": 2351.46,
+ "end": 2352.04,
+ "text": "notify"
+ },
+ {
+ "id": 2347,
+ "start": 2352.04,
+ "end": 2353.54,
+ "text": "87,000,000"
+ },
+ {
+ "id": 2348,
+ "start": 2353.54,
+ "end": 2354.06,
+ "text": "users"
+ },
+ {
+ "id": 2349,
+ "start": 2354.06,
+ "end": 2354.32,
+ "text": "that"
+ },
+ {
+ "id": 2350,
+ "start": 2354.32,
+ "end": 2354.64,
+ "text": "their"
+ },
+ {
+ "id": 2351,
+ "start": 2354.64,
+ "end": 2355.3,
+ "text": "personally"
+ },
+ {
+ "id": 2352,
+ "start": 2355.3,
+ "end": 2356.22,
+ "text": "identifiable"
+ },
+ {
+ "id": 2353,
+ "start": 2356.22,
+ "end": 2356.96,
+ "text": "information"
+ },
+ {
+ "id": 2354,
+ "start": 2356.96,
+ "end": 2357.28,
+ "text": "had"
+ },
+ {
+ "id": 2355,
+ "start": 2357.28,
+ "end": 2357.48,
+ "text": "been"
+ },
+ {
+ "id": 2356,
+ "start": 2357.48,
+ "end": 2359.96,
+ "text": "taken"
+ },
+ {
+ "id": 2357,
+ "start": 2359.96,
+ "end": 2360.92,
+ "text": "and"
+ },
+ {
+ "id": 2358,
+ "start": 2360.92,
+ "end": 2361.1,
+ "text": "it"
+ },
+ {
+ "id": 2359,
+ "start": 2361.1,
+ "end": 2361.32,
+ "text": "was"
+ },
+ {
+ "id": 2360,
+ "start": 2361.32,
+ "end": 2361.8,
+ "text": "being"
+ },
+ {
+ "id": 2361,
+ "start": 2361.8,
+ "end": 2362.92,
+ "text": "also"
+ },
+ {
+ "id": 2362,
+ "start": 2362.92,
+ "end": 2363.42,
+ "text": "used."
+ },
+ {
+ "id": 2363,
+ "start": 2363.42,
+ "end": 2363.76,
+ "text": "Why"
+ },
+ {
+ "id": 2364,
+ "start": 2363.76,
+ "end": 2363.98,
+ "text": "were"
+ },
+ {
+ "id": 2365,
+ "start": 2363.98,
+ "end": 2364.18,
+ "text": "they"
+ },
+ {
+ "id": 2366,
+ "start": 2364.18,
+ "end": 2364.84,
+ "text": "not"
+ },
+ {
+ "id": 2367,
+ "start": 2364.84,
+ "end": 2366.44,
+ "text": "informed"
+ },
+ {
+ "id": 2368,
+ "start": 2366.44,
+ "end": 2367.56,
+ "text": "for"
+ },
+ {
+ "id": 2369,
+ "start": 2367.56,
+ "end": 2368.54,
+ "text": "unauthorized"
+ },
+ {
+ "id": 2370,
+ "start": 2368.54,
+ "end": 2369.58,
+ "text": "political"
+ },
+ {
+ "id": 2371,
+ "start": 2369.58,
+ "end": 2371.1,
+ "text": "purposes?"
+ },
+ {
+ "id": 2372,
+ "start": 2371.1,
+ "end": 2372.12,
+ "text": "So"
+ },
+ {
+ "id": 2373,
+ "start": 2372.12,
+ "end": 2373,
+ "text": "only"
+ },
+ {
+ "id": 2374,
+ "start": 2373,
+ "end": 2373.5,
+ "text": "now"
+ },
+ {
+ "id": 2375,
+ "start": 2373.5,
+ "end": 2374.48,
+ "text": "and"
+ },
+ {
+ "id": 2376,
+ "start": 2374.48,
+ "end": 2374.66,
+ "text": "I"
+ },
+ {
+ "id": 2377,
+ "start": 2374.66,
+ "end": 2375.26,
+ "text": "appreciate"
+ },
+ {
+ "id": 2378,
+ "start": 2375.26,
+ "end": 2375.5,
+ "text": "our"
+ },
+ {
+ "id": 2379,
+ "start": 2375.5,
+ "end": 2377.08,
+ "text": "conversation"
+ },
+ {
+ "id": 2380,
+ "start": 2377.08,
+ "end": 2378.1,
+ "text": "only"
+ },
+ {
+ "id": 2381,
+ "start": 2378.1,
+ "end": 2378.4,
+ "text": "now"
+ },
+ {
+ "id": 2382,
+ "start": 2378.4,
+ "end": 2379.28,
+ "text": "Facebook"
+ },
+ {
+ "id": 2383,
+ "start": 2379.28,
+ "end": 2379.52,
+ "text": "has"
+ },
+ {
+ "id": 2384,
+ "start": 2379.52,
+ "end": 2380,
+ "text": "pledged"
+ },
+ {
+ "id": 2385,
+ "start": 2380,
+ "end": 2380.18,
+ "text": "to"
+ },
+ {
+ "id": 2386,
+ "start": 2380.18,
+ "end": 2380.82,
+ "text": "inform"
+ },
+ {
+ "id": 2387,
+ "start": 2380.82,
+ "end": 2381.16,
+ "text": "those"
+ },
+ {
+ "id": 2388,
+ "start": 2381.16,
+ "end": 2381.94,
+ "text": "consumers"
+ },
+ {
+ "id": 2389,
+ "start": 2381.94,
+ "end": 2382.26,
+ "text": "whose"
+ },
+ {
+ "id": 2390,
+ "start": 2382.26,
+ "end": 2382.84,
+ "text": "accounts"
+ },
+ {
+ "id": 2391,
+ "start": 2382.84,
+ "end": 2383.16,
+ "text": "were"
+ },
+ {
+ "id": 2392,
+ "start": 2383.16,
+ "end": 2385.14,
+ "text": "compromised."
+ },
+ {
+ "id": 2393,
+ "start": 2385.14,
+ "end": 2385.74,
+ "text": "I"
+ },
+ {
+ "id": 2394,
+ "start": 2385.74,
+ "end": 2386.72,
+ "text": "think"
+ },
+ {
+ "id": 2395,
+ "start": 2386.72,
+ "end": 2386.98,
+ "text": "you're"
+ },
+ {
+ "id": 2396,
+ "start": 2386.98,
+ "end": 2387.6,
+ "text": "genuine."
+ },
+ {
+ "id": 2397,
+ "start": 2387.6,
+ "end": 2388.32,
+ "text": "I"
+ },
+ {
+ "id": 2398,
+ "start": 2388.32,
+ "end": 2388.48,
+ "text": "got"
+ },
+ {
+ "id": 2399,
+ "start": 2388.48,
+ "end": 2388.8,
+ "text": "that"
+ },
+ {
+ "id": 2400,
+ "start": 2388.8,
+ "end": 2389.18,
+ "text": "sense"
+ },
+ {
+ "id": 2401,
+ "start": 2389.18,
+ "end": 2389.44,
+ "text": "in"
+ },
+ {
+ "id": 2402,
+ "start": 2389.44,
+ "end": 2390.58,
+ "text": "conversing"
+ },
+ {
+ "id": 2403,
+ "start": 2390.58,
+ "end": 2390.9,
+ "text": "with"
+ },
+ {
+ "id": 2404,
+ "start": 2390.9,
+ "end": 2391.18,
+ "text": "you."
+ },
+ {
+ "id": 2405,
+ "start": 2391.18,
+ "end": 2391.92,
+ "text": "You"
+ },
+ {
+ "id": 2406,
+ "start": 2391.92,
+ "end": 2392.18,
+ "text": "want"
+ },
+ {
+ "id": 2407,
+ "start": 2392.18,
+ "end": 2392.36,
+ "text": "to"
+ },
+ {
+ "id": 2408,
+ "start": 2392.36,
+ "end": 2392.5,
+ "text": "do"
+ },
+ {
+ "id": 2409,
+ "start": 2392.5,
+ "end": 2392.68,
+ "text": "the"
+ },
+ {
+ "id": 2410,
+ "start": 2392.68,
+ "end": 2392.98,
+ "text": "right"
+ },
+ {
+ "id": 2411,
+ "start": 2392.98,
+ "end": 2393.32,
+ "text": "thing,"
+ },
+ {
+ "id": 2412,
+ "start": 2393.32,
+ "end": 2393.56,
+ "text": "you"
+ },
+ {
+ "id": 2413,
+ "start": 2393.56,
+ "end": 2393.8,
+ "text": "want"
+ },
+ {
+ "id": 2414,
+ "start": 2393.8,
+ "end": 2394,
+ "text": "to"
+ },
+ {
+ "id": 2415,
+ "start": 2394,
+ "end": 2394.52,
+ "text": "enact"
+ },
+ {
+ "id": 2416,
+ "start": 2394.52,
+ "end": 2396.08,
+ "text": "reforms."
+ },
+ {
+ "id": 2417,
+ "start": 2396.08,
+ "end": 2397,
+ "text": "We"
+ },
+ {
+ "id": 2418,
+ "start": 2397,
+ "end": 2397.4,
+ "text": "want"
+ },
+ {
+ "id": 2419,
+ "start": 2397.4,
+ "end": 2397.58,
+ "text": "to"
+ },
+ {
+ "id": 2420,
+ "start": 2397.58,
+ "end": 2397.78,
+ "text": "know"
+ },
+ {
+ "id": 2421,
+ "start": 2397.78,
+ "end": 2398.7,
+ "text": "if"
+ },
+ {
+ "id": 2422,
+ "start": 2398.7,
+ "end": 2399,
+ "text": "it's"
+ },
+ {
+ "id": 2423,
+ "start": 2399,
+ "end": 2399.2,
+ "text": "going"
+ },
+ {
+ "id": 2424,
+ "start": 2399.2,
+ "end": 2399.3,
+ "text": "to"
+ },
+ {
+ "id": 2425,
+ "start": 2399.3,
+ "end": 2399.38,
+ "text": "be"
+ },
+ {
+ "id": 2426,
+ "start": 2399.38,
+ "end": 2400.52,
+ "text": "enough."
+ },
+ {
+ "id": 2427,
+ "start": 2400.52,
+ "end": 2401.3,
+ "text": "And"
+ },
+ {
+ "id": 2428,
+ "start": 2401.3,
+ "end": 2401.46,
+ "text": "I"
+ },
+ {
+ "id": 2429,
+ "start": 2401.46,
+ "end": 2401.72,
+ "text": "hope"
+ },
+ {
+ "id": 2430,
+ "start": 2401.72,
+ "end": 2402.18,
+ "text": "that"
+ },
+ {
+ "id": 2431,
+ "start": 2402.18,
+ "end": 2402.46,
+ "text": "will"
+ },
+ {
+ "id": 2432,
+ "start": 2402.46,
+ "end": 2402.56,
+ "text": "be"
+ },
+ {
+ "id": 2433,
+ "start": 2402.56,
+ "end": 2402.74,
+ "text": "in"
+ },
+ {
+ "id": 2434,
+ "start": 2402.74,
+ "end": 2402.86,
+ "text": "the"
+ },
+ {
+ "id": 2435,
+ "start": 2402.86,
+ "end": 2403.44,
+ "text": "answers"
+ },
+ {
+ "id": 2436,
+ "start": 2403.44,
+ "end": 2406.08,
+ "text": "today,"
+ },
+ {
+ "id": 2437,
+ "start": 2406.08,
+ "end": 2407.08,
+ "text": "now,"
+ },
+ {
+ "id": 2438,
+ "start": 2407.08,
+ "end": 2407.62,
+ "text": "since"
+ },
+ {
+ "id": 2439,
+ "start": 2407.62,
+ "end": 2407.8,
+ "text": "we"
+ },
+ {
+ "id": 2440,
+ "start": 2407.8,
+ "end": 2408.26,
+ "text": "still"
+ },
+ {
+ "id": 2441,
+ "start": 2408.26,
+ "end": 2408.62,
+ "text": "don't"
+ },
+ {
+ "id": 2442,
+ "start": 2408.62,
+ "end": 2408.86,
+ "text": "know"
+ },
+ {
+ "id": 2443,
+ "start": 2408.86,
+ "end": 2409.26,
+ "text": "what"
+ },
+ {
+ "id": 2444,
+ "start": 2409.26,
+ "end": 2409.84,
+ "text": "Cambridge"
+ },
+ {
+ "id": 2445,
+ "start": 2409.84,
+ "end": 2410.58,
+ "text": "Analytica"
+ },
+ {
+ "id": 2446,
+ "start": 2410.58,
+ "end": 2411.04,
+ "text": "has"
+ },
+ {
+ "id": 2447,
+ "start": 2411.04,
+ "end": 2411.36,
+ "text": "done"
+ },
+ {
+ "id": 2448,
+ "start": 2411.36,
+ "end": 2411.54,
+ "text": "with"
+ },
+ {
+ "id": 2449,
+ "start": 2411.54,
+ "end": 2411.76,
+ "text": "this"
+ },
+ {
+ "id": 2450,
+ "start": 2411.76,
+ "end": 2413.1,
+ "text": "data,"
+ },
+ {
+ "id": 2451,
+ "start": 2413.1,
+ "end": 2414.12,
+ "text": "you"
+ },
+ {
+ "id": 2452,
+ "start": 2414.12,
+ "end": 2414.62,
+ "text": "heard"
+ },
+ {
+ "id": 2453,
+ "start": 2414.62,
+ "end": 2415.5,
+ "text": "chairman"
+ },
+ {
+ "id": 2454,
+ "start": 2415.5,
+ "end": 2416.02,
+ "text": "Thon"
+ },
+ {
+ "id": 2455,
+ "start": 2416.02,
+ "end": 2417.1,
+ "text": "say"
+ },
+ {
+ "id": 2456,
+ "start": 2417.1,
+ "end": 2417.56,
+ "text": "as"
+ },
+ {
+ "id": 2457,
+ "start": 2417.56,
+ "end": 2417.88,
+ "text": "we"
+ },
+ {
+ "id": 2458,
+ "start": 2417.88,
+ "end": 2418.12,
+ "text": "have"
+ },
+ {
+ "id": 2459,
+ "start": 2418.12,
+ "end": 2418.8,
+ "text": "discussed,"
+ },
+ {
+ "id": 2460,
+ "start": 2418.8,
+ "end": 2419.18,
+ "text": "we"
+ },
+ {
+ "id": 2461,
+ "start": 2419.18,
+ "end": 2419.46,
+ "text": "want"
+ },
+ {
+ "id": 2462,
+ "start": 2419.46,
+ "end": 2419.72,
+ "text": "the"
+ },
+ {
+ "id": 2463,
+ "start": 2419.72,
+ "end": 2420.62,
+ "text": "haul"
+ },
+ {
+ "id": 2464,
+ "start": 2420.62,
+ "end": 2421.18,
+ "text": "Cambridge"
+ },
+ {
+ "id": 2465,
+ "start": 2421.18,
+ "end": 2422.22,
+ "text": "Analytica"
+ },
+ {
+ "id": 2466,
+ "start": 2422.22,
+ "end": 2423.48,
+ "text": "in"
+ },
+ {
+ "id": 2467,
+ "start": 2423.48,
+ "end": 2423.6,
+ "text": "to"
+ },
+ {
+ "id": 2468,
+ "start": 2423.6,
+ "end": 2424.12,
+ "text": "answer"
+ },
+ {
+ "id": 2469,
+ "start": 2424.12,
+ "end": 2424.46,
+ "text": "these"
+ },
+ {
+ "id": 2470,
+ "start": 2424.46,
+ "end": 2425,
+ "text": "questions"
+ },
+ {
+ "id": 2471,
+ "start": 2425,
+ "end": 2425.24,
+ "text": "at"
+ },
+ {
+ "id": 2472,
+ "start": 2425.24,
+ "end": 2425.32,
+ "text": "a"
+ },
+ {
+ "id": 2473,
+ "start": 2425.32,
+ "end": 2425.82,
+ "text": "separate"
+ },
+ {
+ "id": 2474,
+ "start": 2425.82,
+ "end": 2426.94,
+ "text": "hearing."
+ },
+ {
+ "id": 2475,
+ "start": 2426.94,
+ "end": 2427.76,
+ "text": "I"
+ },
+ {
+ "id": 2476,
+ "start": 2427.76,
+ "end": 2428.04,
+ "text": "want"
+ },
+ {
+ "id": 2477,
+ "start": 2428.04,
+ "end": 2428.16,
+ "text": "to"
+ },
+ {
+ "id": 2478,
+ "start": 2428.16,
+ "end": 2428.48,
+ "text": "thank"
+ },
+ {
+ "id": 2479,
+ "start": 2428.48,
+ "end": 2429.28,
+ "text": "chairman"
+ },
+ {
+ "id": 2480,
+ "start": 2429.28,
+ "end": 2429.74,
+ "text": "ton"
+ },
+ {
+ "id": 2481,
+ "start": 2429.74,
+ "end": 2429.96,
+ "text": "for"
+ },
+ {
+ "id": 2482,
+ "start": 2429.96,
+ "end": 2430.52,
+ "text": "working"
+ },
+ {
+ "id": 2483,
+ "start": 2430.52,
+ "end": 2430.98,
+ "text": "with"
+ },
+ {
+ "id": 2484,
+ "start": 2430.98,
+ "end": 2431.42,
+ "text": "all"
+ },
+ {
+ "id": 2485,
+ "start": 2431.42,
+ "end": 2431.54,
+ "text": "of"
+ },
+ {
+ "id": 2486,
+ "start": 2431.54,
+ "end": 2431.82,
+ "text": "us"
+ },
+ {
+ "id": 2487,
+ "start": 2431.82,
+ "end": 2432.1,
+ "text": "on"
+ },
+ {
+ "id": 2488,
+ "start": 2432.1,
+ "end": 2432.7,
+ "text": "scheduling."
+ },
+ {
+ "id": 2489,
+ "start": 2432.7,
+ "end": 2432.82,
+ "text": "A"
+ },
+ {
+ "id": 2490,
+ "start": 2432.82,
+ "end": 2433.18,
+ "text": "hearing"
+ },
+ {
+ "id": 2491,
+ "start": 2433.18,
+ "end": 2434.1,
+ "text": "there's"
+ },
+ {
+ "id": 2492,
+ "start": 2434.1,
+ "end": 2434.66,
+ "text": "obviously"
+ },
+ {
+ "id": 2493,
+ "start": 2434.66,
+ "end": 2434.76,
+ "text": "a"
+ },
+ {
+ "id": 2494,
+ "start": 2434.76,
+ "end": 2435.04,
+ "text": "great"
+ },
+ {
+ "id": 2495,
+ "start": 2435.04,
+ "end": 2435.24,
+ "text": "deal"
+ },
+ {
+ "id": 2496,
+ "start": 2435.24,
+ "end": 2435.36,
+ "text": "of"
+ },
+ {
+ "id": 2497,
+ "start": 2435.36,
+ "end": 2435.94,
+ "text": "interest"
+ },
+ {
+ "id": 2498,
+ "start": 2435.94,
+ "end": 2436.4,
+ "text": "in"
+ },
+ {
+ "id": 2499,
+ "start": 2436.4,
+ "end": 2436.66,
+ "text": "this"
+ },
+ {
+ "id": 2500,
+ "start": 2436.66,
+ "end": 2437.44,
+ "text": "subject."
+ },
+ {
+ "id": 2501,
+ "start": 2437.44,
+ "end": 2438.5,
+ "text": "I"
+ },
+ {
+ "id": 2502,
+ "start": 2438.5,
+ "end": 2438.78,
+ "text": "hope"
+ },
+ {
+ "id": 2503,
+ "start": 2438.78,
+ "end": 2439.06,
+ "text": "we"
+ },
+ {
+ "id": 2504,
+ "start": 2439.06,
+ "end": 2439.26,
+ "text": "can"
+ },
+ {
+ "id": 2505,
+ "start": 2439.26,
+ "end": 2439.56,
+ "text": "get"
+ },
+ {
+ "id": 2506,
+ "start": 2439.56,
+ "end": 2440.08,
+ "text": "to"
+ },
+ {
+ "id": 2507,
+ "start": 2440.08,
+ "end": 2440.22,
+ "text": "the"
+ },
+ {
+ "id": 2508,
+ "start": 2440.22,
+ "end": 2440.58,
+ "text": "bottom"
+ },
+ {
+ "id": 2509,
+ "start": 2440.58,
+ "end": 2440.7,
+ "text": "of"
+ },
+ {
+ "id": 2510,
+ "start": 2440.7,
+ "end": 2441.74,
+ "text": "this"
+ },
+ {
+ "id": 2511,
+ "start": 2441.74,
+ "end": 2442.74,
+ "text": "and"
+ },
+ {
+ "id": 2512,
+ "start": 2442.74,
+ "end": 2443.12,
+ "text": "if"
+ },
+ {
+ "id": 2513,
+ "start": 2443.12,
+ "end": 2443.92,
+ "text": "Facebook"
+ },
+ {
+ "id": 2514,
+ "start": 2443.92,
+ "end": 2444.2,
+ "text": "and"
+ },
+ {
+ "id": 2515,
+ "start": 2444.2,
+ "end": 2444.6,
+ "text": "other"
+ },
+ {
+ "id": 2516,
+ "start": 2444.6,
+ "end": 2445.18,
+ "text": "online"
+ },
+ {
+ "id": 2517,
+ "start": 2445.18,
+ "end": 2445.78,
+ "text": "companies"
+ },
+ {
+ "id": 2518,
+ "start": 2445.78,
+ "end": 2446.7,
+ "text": "will"
+ },
+ {
+ "id": 2519,
+ "start": 2446.7,
+ "end": 2447.1,
+ "text": "not"
+ },
+ {
+ "id": 2520,
+ "start": 2447.1,
+ "end": 2447.4,
+ "text": "or"
+ },
+ {
+ "id": 2521,
+ "start": 2447.4,
+ "end": 2448.1,
+ "text": "cannot"
+ },
+ {
+ "id": 2522,
+ "start": 2448.1,
+ "end": 2448.74,
+ "text": "fix"
+ },
+ {
+ "id": 2523,
+ "start": 2448.74,
+ "end": 2449.48,
+ "text": "the"
+ },
+ {
+ "id": 2524,
+ "start": 2449.48,
+ "end": 2450.14,
+ "text": "privacy"
+ },
+ {
+ "id": 2525,
+ "start": 2450.14,
+ "end": 2451.92,
+ "text": "invasions,"
+ },
+ {
+ "id": 2526,
+ "start": 2451.92,
+ "end": 2453.22,
+ "text": "then"
+ },
+ {
+ "id": 2527,
+ "start": 2453.22,
+ "end": 2454.36,
+ "text": "we"
+ },
+ {
+ "id": 2528,
+ "start": 2454.36,
+ "end": 2454.6,
+ "text": "are"
+ },
+ {
+ "id": 2529,
+ "start": 2454.6,
+ "end": 2454.92,
+ "text": "going"
+ },
+ {
+ "id": 2530,
+ "start": 2454.92,
+ "end": 2455.08,
+ "text": "to"
+ },
+ {
+ "id": 2531,
+ "start": 2455.08,
+ "end": 2455.4,
+ "text": "have"
+ },
+ {
+ "id": 2532,
+ "start": 2455.4,
+ "end": 2455.9,
+ "text": "to"
+ },
+ {
+ "id": 2533,
+ "start": 2455.9,
+ "end": 2456.96,
+ "text": "we"
+ },
+ {
+ "id": 2534,
+ "start": 2456.96,
+ "end": 2457.36,
+ "text": "the"
+ },
+ {
+ "id": 2535,
+ "start": 2457.36,
+ "end": 2457.82,
+ "text": "Congress."
+ },
+ {
+ "id": 2536,
+ "start": 2457.82,
+ "end": 2458.46,
+ "text": "How"
+ },
+ {
+ "id": 2537,
+ "start": 2458.46,
+ "end": 2458.84,
+ "text": "can"
+ },
+ {
+ "id": 2538,
+ "start": 2458.84,
+ "end": 2459.5,
+ "text": "American"
+ },
+ {
+ "id": 2539,
+ "start": 2459.5,
+ "end": 2460.66,
+ "text": "consumers"
+ },
+ {
+ "id": 2540,
+ "start": 2460.66,
+ "end": 2462.16,
+ "text": "trust"
+ },
+ {
+ "id": 2541,
+ "start": 2462.16,
+ "end": 2463.18,
+ "text": "folks"
+ },
+ {
+ "id": 2542,
+ "start": 2463.18,
+ "end": 2463.82,
+ "text": "like"
+ },
+ {
+ "id": 2543,
+ "start": 2463.82,
+ "end": 2464.15,
+ "text": "you"
+ },
+ {
+ "id": 2544,
+ "start": 2464.15,
+ "end": 2464.69,
+ "text": "company"
+ },
+ {
+ "id": 2545,
+ "start": 2464.69,
+ "end": 2464.85,
+ "text": "to"
+ },
+ {
+ "id": 2546,
+ "start": 2464.85,
+ "end": 2464.97,
+ "text": "be"
+ },
+ {
+ "id": 2547,
+ "start": 2464.97,
+ "end": 2465.93,
+ "text": "caretakers"
+ },
+ {
+ "id": 2548,
+ "start": 2465.93,
+ "end": 2466.25,
+ "text": "of"
+ },
+ {
+ "id": 2549,
+ "start": 2466.25,
+ "end": 2466.49,
+ "text": "their"
+ },
+ {
+ "id": 2550,
+ "start": 2466.49,
+ "end": 2466.89,
+ "text": "most"
+ },
+ {
+ "id": 2551,
+ "start": 2466.89,
+ "end": 2467.55,
+ "text": "personal"
+ },
+ {
+ "id": 2552,
+ "start": 2467.55,
+ "end": 2468.19,
+ "text": "and"
+ },
+ {
+ "id": 2553,
+ "start": 2468.19,
+ "end": 2469.09,
+ "text": "identifiable"
+ },
+ {
+ "id": 2554,
+ "start": 2469.09,
+ "end": 2470.11,
+ "text": "information"
+ },
+ {
+ "id": 2555,
+ "start": 2470.11,
+ "end": 2471.09,
+ "text": "and"
+ },
+ {
+ "id": 2556,
+ "start": 2471.09,
+ "end": 2471.37,
+ "text": "that's"
+ },
+ {
+ "id": 2557,
+ "start": 2471.37,
+ "end": 2471.53,
+ "text": "the"
+ },
+ {
+ "id": 2558,
+ "start": 2471.53,
+ "end": 2471.93,
+ "text": "question."
+ },
+ {
+ "id": 2559,
+ "start": 2471.93,
+ "end": 2472.33,
+ "text": "Thank"
+ },
+ {
+ "id": 2560,
+ "start": 2472.33,
+ "end": 2472.51,
+ "text": "you,"
+ },
+ {
+ "id": 2561,
+ "start": 2472.51,
+ "end": 2473.23,
+ "text": "thank"
+ },
+ {
+ "id": 2562,
+ "start": 2473.23,
+ "end": 2473.43,
+ "text": "you,"
+ },
+ {
+ "id": 2563,
+ "start": 2473.43,
+ "end": 2473.69,
+ "text": "my"
+ },
+ {
+ "id": 2564,
+ "start": 2473.69,
+ "end": 2474.21,
+ "text": "colleagues"
+ },
+ {
+ "id": 2565,
+ "start": 2474.21,
+ "end": 2474.57,
+ "text": "and"
+ },
+ {
+ "id": 2566,
+ "start": 2474.57,
+ "end": 2475.01,
+ "text": "Senator"
+ },
+ {
+ "id": 2567,
+ "start": 2475.01,
+ "end": 2476.38,
+ "text": "Nelson."
+ },
+ {
+ "id": 2568,
+ "start": 2476.38,
+ "end": 2477.44,
+ "text": "Our"
+ },
+ {
+ "id": 2569,
+ "start": 2477.44,
+ "end": 2477.78,
+ "text": "witness"
+ },
+ {
+ "id": 2570,
+ "start": 2477.78,
+ "end": 2478.14,
+ "text": "today"
+ },
+ {
+ "id": 2571,
+ "start": 2478.14,
+ "end": 2478.66,
+ "text": "is"
+ },
+ {
+ "id": 2572,
+ "start": 2478.66,
+ "end": 2479.02,
+ "text": "Mark"
+ },
+ {
+ "id": 2573,
+ "start": 2479.02,
+ "end": 2479.64,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 2574,
+ "start": 2479.64,
+ "end": 2480.72,
+ "text": "founder"
+ },
+ {
+ "id": 2575,
+ "start": 2480.72,
+ "end": 2481.88,
+ "text": "chairman"
+ },
+ {
+ "id": 2576,
+ "start": 2481.88,
+ "end": 2482.78,
+ "text": "chief"
+ },
+ {
+ "id": 2577,
+ "start": 2482.78,
+ "end": 2483.38,
+ "text": "executive"
+ },
+ {
+ "id": 2578,
+ "start": 2483.38,
+ "end": 2483.96,
+ "text": "officer"
+ },
+ {
+ "id": 2579,
+ "start": 2483.96,
+ "end": 2484.1,
+ "text": "of"
+ },
+ {
+ "id": 2580,
+ "start": 2484.1,
+ "end": 2484.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 2581,
+ "start": 2484.9,
+ "end": 2485.92,
+ "text": "Mr"
+ },
+ {
+ "id": 2582,
+ "start": 2485.92,
+ "end": 2487.1,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 2583,
+ "start": 2487.1,
+ "end": 2488.06,
+ "text": "launched"
+ },
+ {
+ "id": 2584,
+ "start": 2488.06,
+ "end": 2488.84,
+ "text": "Facebook"
+ },
+ {
+ "id": 2585,
+ "start": 2488.84,
+ "end": 2489.92,
+ "text": "February"
+ },
+ {
+ "id": 2586,
+ "start": 2489.92,
+ "end": 2490.28,
+ "text": "fourth"
+ },
+ {
+ "id": 2587,
+ "start": 2490.28,
+ "end": 2492.32,
+ "text": "2,004"
+ },
+ {
+ "id": 2588,
+ "start": 2492.32,
+ "end": 2492.44,
+ "text": "at"
+ },
+ {
+ "id": 2589,
+ "start": 2492.44,
+ "end": 2492.58,
+ "text": "the"
+ },
+ {
+ "id": 2590,
+ "start": 2492.58,
+ "end": 2492.8,
+ "text": "age"
+ },
+ {
+ "id": 2591,
+ "start": 2492.8,
+ "end": 2492.94,
+ "text": "of"
+ },
+ {
+ "id": 2592,
+ "start": 2492.94,
+ "end": 2494.06,
+ "text": "19"
+ },
+ {
+ "id": 2593,
+ "start": 2494.06,
+ "end": 2494.88,
+ "text": "and"
+ },
+ {
+ "id": 2594,
+ "start": 2494.88,
+ "end": 2495.06,
+ "text": "at"
+ },
+ {
+ "id": 2595,
+ "start": 2495.06,
+ "end": 2495.24,
+ "text": "that"
+ },
+ {
+ "id": 2596,
+ "start": 2495.24,
+ "end": 2495.6,
+ "text": "time,"
+ },
+ {
+ "id": 2597,
+ "start": 2495.6,
+ "end": 2495.72,
+ "text": "he"
+ },
+ {
+ "id": 2598,
+ "start": 2495.72,
+ "end": 2495.9,
+ "text": "was"
+ },
+ {
+ "id": 2599,
+ "start": 2495.9,
+ "end": 2495.96,
+ "text": "a"
+ },
+ {
+ "id": 2600,
+ "start": 2495.96,
+ "end": 2496.42,
+ "text": "student"
+ },
+ {
+ "id": 2601,
+ "start": 2496.42,
+ "end": 2496.6,
+ "text": "at"
+ },
+ {
+ "id": 2602,
+ "start": 2496.6,
+ "end": 2497,
+ "text": "Harvard"
+ },
+ {
+ "id": 2603,
+ "start": 2497,
+ "end": 2497.6,
+ "text": "University."
+ },
+ {
+ "id": 2604,
+ "start": 2497.6,
+ "end": 2498.76,
+ "text": "As"
+ },
+ {
+ "id": 2605,
+ "start": 2498.76,
+ "end": 2498.86,
+ "text": "I"
+ },
+ {
+ "id": 2606,
+ "start": 2498.86,
+ "end": 2499.3,
+ "text": "mentioned"
+ },
+ {
+ "id": 2607,
+ "start": 2499.3,
+ "end": 2499.84,
+ "text": "previously,"
+ },
+ {
+ "id": 2608,
+ "start": 2499.84,
+ "end": 2500.08,
+ "text": "his"
+ },
+ {
+ "id": 2609,
+ "start": 2500.08,
+ "end": 2500.44,
+ "text": "company"
+ },
+ {
+ "id": 2610,
+ "start": 2500.44,
+ "end": 2500.72,
+ "text": "now"
+ },
+ {
+ "id": 2611,
+ "start": 2500.72,
+ "end": 2501.08,
+ "text": "has"
+ },
+ {
+ "id": 2612,
+ "start": 2501.08,
+ "end": 2501.4,
+ "text": "over"
+ },
+ {
+ "id": 2613,
+ "start": 2501.4,
+ "end": 2502.7,
+ "text": "40,000,000,000"
+ },
+ {
+ "id": 2614,
+ "start": 2502.7,
+ "end": 2503.04,
+ "text": "of"
+ },
+ {
+ "id": 2615,
+ "start": 2503.04,
+ "end": 2503.44,
+ "text": "annual"
+ },
+ {
+ "id": 2616,
+ "start": 2503.44,
+ "end": 2503.84,
+ "text": "revenue"
+ },
+ {
+ "id": 2617,
+ "start": 2503.84,
+ "end": 2504.9,
+ "text": "and"
+ },
+ {
+ "id": 2618,
+ "start": 2504.9,
+ "end": 2505.24,
+ "text": "over"
+ },
+ {
+ "id": 2619,
+ "start": 2505.24,
+ "end": 2506.01,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 2620,
+ "start": 2506.01,
+ "end": 2506.49,
+ "text": "monthly"
+ },
+ {
+ "id": 2621,
+ "start": 2506.49,
+ "end": 2507.15,
+ "text": "active"
+ },
+ {
+ "id": 2622,
+ "start": 2507.15,
+ "end": 2508.01,
+ "text": "users."
+ },
+ {
+ "id": 2623,
+ "start": 2508.01,
+ "end": 2509.03,
+ "text": "Mr"
+ },
+ {
+ "id": 2624,
+ "start": 2509.03,
+ "end": 2509.65,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 2625,
+ "start": 2509.65,
+ "end": 2510.21,
+ "text": "along"
+ },
+ {
+ "id": 2626,
+ "start": 2510.21,
+ "end": 2510.51,
+ "text": "with"
+ },
+ {
+ "id": 2627,
+ "start": 2510.51,
+ "end": 2510.83,
+ "text": "his"
+ },
+ {
+ "id": 2628,
+ "start": 2510.83,
+ "end": 2511.35,
+ "text": "wife,"
+ },
+ {
+ "id": 2629,
+ "start": 2511.35,
+ "end": 2511.85,
+ "text": "also"
+ },
+ {
+ "id": 2630,
+ "start": 2511.85,
+ "end": 2512.53,
+ "text": "established"
+ },
+ {
+ "id": 2631,
+ "start": 2512.53,
+ "end": 2513.19,
+ "text": "the"
+ },
+ {
+ "id": 2632,
+ "start": 2513.19,
+ "end": 2513.71,
+ "text": "Chan"
+ },
+ {
+ "id": 2633,
+ "start": 2513.71,
+ "end": 2514.53,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 2634,
+ "start": 2514.53,
+ "end": 2515.43,
+ "text": "initiative"
+ },
+ {
+ "id": 2635,
+ "start": 2515.43,
+ "end": 2516.01,
+ "text": "to"
+ },
+ {
+ "id": 2636,
+ "start": 2516.01,
+ "end": 2518.22,
+ "text": "further"
+ },
+ {
+ "id": 2637,
+ "start": 2518.22,
+ "end": 2519.24,
+ "text": "causes."
+ },
+ {
+ "id": 2638,
+ "start": 2519.24,
+ "end": 2519.98,
+ "text": "I"
+ },
+ {
+ "id": 2639,
+ "start": 2519.98,
+ "end": 2520.26,
+ "text": "now"
+ },
+ {
+ "id": 2640,
+ "start": 2520.26,
+ "end": 2520.5,
+ "text": "turn"
+ },
+ {
+ "id": 2641,
+ "start": 2520.5,
+ "end": 2520.66,
+ "text": "to"
+ },
+ {
+ "id": 2642,
+ "start": 2520.66,
+ "end": 2520.92,
+ "text": "you."
+ },
+ {
+ "id": 2643,
+ "start": 2520.92,
+ "end": 2521.56,
+ "text": "Welcome"
+ },
+ {
+ "id": 2644,
+ "start": 2521.56,
+ "end": 2521.7,
+ "text": "to"
+ },
+ {
+ "id": 2645,
+ "start": 2521.7,
+ "end": 2521.86,
+ "text": "the"
+ },
+ {
+ "id": 2646,
+ "start": 2521.86,
+ "end": 2522.3,
+ "text": "committee."
+ },
+ {
+ "id": 2647,
+ "start": 2522.3,
+ "end": 2523.52,
+ "text": "And"
+ },
+ {
+ "id": 2648,
+ "start": 2523.52,
+ "end": 2524.14,
+ "text": "whatever"
+ },
+ {
+ "id": 2649,
+ "start": 2524.14,
+ "end": 2524.34,
+ "text": "your"
+ },
+ {
+ "id": 2650,
+ "start": 2524.34,
+ "end": 2524.76,
+ "text": "statement"
+ },
+ {
+ "id": 2651,
+ "start": 2524.76,
+ "end": 2524.96,
+ "text": "is"
+ },
+ {
+ "id": 2652,
+ "start": 2524.96,
+ "end": 2525.44,
+ "text": "orally."
+ },
+ {
+ "id": 2653,
+ "start": 2525.44,
+ "end": 2525.56,
+ "text": "If"
+ },
+ {
+ "id": 2654,
+ "start": 2525.56,
+ "end": 2525.74,
+ "text": "you"
+ },
+ {
+ "id": 2655,
+ "start": 2525.74,
+ "end": 2525.88,
+ "text": "have"
+ },
+ {
+ "id": 2656,
+ "start": 2525.88,
+ "end": 2525.96,
+ "text": "a"
+ },
+ {
+ "id": 2657,
+ "start": 2525.96,
+ "end": 2526.34,
+ "text": "longer"
+ },
+ {
+ "id": 2658,
+ "start": 2526.34,
+ "end": 2526.58,
+ "text": "one,"
+ },
+ {
+ "id": 2659,
+ "start": 2526.58,
+ "end": 2527.04,
+ "text": "it"
+ },
+ {
+ "id": 2660,
+ "start": 2527.04,
+ "end": 2527.2,
+ "text": "will"
+ },
+ {
+ "id": 2661,
+ "start": 2527.2,
+ "end": 2527.28,
+ "text": "be"
+ },
+ {
+ "id": 2662,
+ "start": 2527.28,
+ "end": 2527.7,
+ "text": "included"
+ },
+ {
+ "id": 2663,
+ "start": 2527.7,
+ "end": 2527.8,
+ "text": "in"
+ },
+ {
+ "id": 2664,
+ "start": 2527.8,
+ "end": 2527.92,
+ "text": "the"
+ },
+ {
+ "id": 2665,
+ "start": 2527.92,
+ "end": 2528.26,
+ "text": "record."
+ },
+ {
+ "id": 2666,
+ "start": 2528.26,
+ "end": 2528.74,
+ "text": "So"
+ },
+ {
+ "id": 2667,
+ "start": 2528.74,
+ "end": 2529.3,
+ "text": "proceed"
+ },
+ {
+ "id": 2668,
+ "start": 2529.3,
+ "end": 2530.38,
+ "text": "Sir"
+ },
+ {
+ "id": 2669,
+ "start": 2530.38,
+ "end": 2531.5,
+ "text": "Chairman"
+ },
+ {
+ "id": 2670,
+ "start": 2531.5,
+ "end": 2531.96,
+ "text": "Grassley"
+ },
+ {
+ "id": 2671,
+ "start": 2531.96,
+ "end": 2532.7,
+ "text": "chairman"
+ },
+ {
+ "id": 2672,
+ "start": 2532.7,
+ "end": 2533.38,
+ "text": "Thon,"
+ },
+ {
+ "id": 2673,
+ "start": 2533.38,
+ "end": 2534.34,
+ "text": "ranking"
+ },
+ {
+ "id": 2674,
+ "start": 2534.34,
+ "end": 2534.6,
+ "text": "member,"
+ },
+ {
+ "id": 2675,
+ "start": 2534.6,
+ "end": 2535.18,
+ "text": "Feinstein"
+ },
+ {
+ "id": 2676,
+ "start": 2535.18,
+ "end": 2535.32,
+ "text": "and"
+ },
+ {
+ "id": 2677,
+ "start": 2535.32,
+ "end": 2535.64,
+ "text": "ranking"
+ },
+ {
+ "id": 2678,
+ "start": 2535.64,
+ "end": 2535.86,
+ "text": "member"
+ },
+ {
+ "id": 2679,
+ "start": 2535.86,
+ "end": 2536.32,
+ "text": "Nelson"
+ },
+ {
+ "id": 2680,
+ "start": 2536.32,
+ "end": 2536.42,
+ "text": "and"
+ },
+ {
+ "id": 2681,
+ "start": 2536.42,
+ "end": 2536.72,
+ "text": "members"
+ },
+ {
+ "id": 2682,
+ "start": 2536.72,
+ "end": 2536.84,
+ "text": "of"
+ },
+ {
+ "id": 2683,
+ "start": 2536.84,
+ "end": 2536.94,
+ "text": "the"
+ },
+ {
+ "id": 2684,
+ "start": 2536.94,
+ "end": 2537.92,
+ "text": "committee."
+ },
+ {
+ "id": 2685,
+ "start": 2537.92,
+ "end": 2538.64,
+ "text": "We"
+ },
+ {
+ "id": 2686,
+ "start": 2538.64,
+ "end": 2538.92,
+ "text": "face"
+ },
+ {
+ "id": 2687,
+ "start": 2538.92,
+ "end": 2539.04,
+ "text": "a"
+ },
+ {
+ "id": 2688,
+ "start": 2539.04,
+ "end": 2539.34,
+ "text": "number"
+ },
+ {
+ "id": 2689,
+ "start": 2539.34,
+ "end": 2539.44,
+ "text": "of"
+ },
+ {
+ "id": 2690,
+ "start": 2539.44,
+ "end": 2539.86,
+ "text": "important"
+ },
+ {
+ "id": 2691,
+ "start": 2539.86,
+ "end": 2540.24,
+ "text": "issues"
+ },
+ {
+ "id": 2692,
+ "start": 2540.24,
+ "end": 2540.72,
+ "text": "around"
+ },
+ {
+ "id": 2693,
+ "start": 2540.72,
+ "end": 2541.3,
+ "text": "privacy"
+ },
+ {
+ "id": 2694,
+ "start": 2541.3,
+ "end": 2542.16,
+ "text": "safety"
+ },
+ {
+ "id": 2695,
+ "start": 2542.16,
+ "end": 2542.52,
+ "text": "and"
+ },
+ {
+ "id": 2696,
+ "start": 2542.52,
+ "end": 2543.1,
+ "text": "democracy"
+ },
+ {
+ "id": 2697,
+ "start": 2543.1,
+ "end": 2543.8,
+ "text": "and"
+ },
+ {
+ "id": 2698,
+ "start": 2543.8,
+ "end": 2543.9,
+ "text": "you"
+ },
+ {
+ "id": 2699,
+ "start": 2543.9,
+ "end": 2544.06,
+ "text": "will"
+ },
+ {
+ "id": 2700,
+ "start": 2544.06,
+ "end": 2544.52,
+ "text": "rightfully"
+ },
+ {
+ "id": 2701,
+ "start": 2544.52,
+ "end": 2544.84,
+ "text": "have"
+ },
+ {
+ "id": 2702,
+ "start": 2544.84,
+ "end": 2545.1,
+ "text": "some"
+ },
+ {
+ "id": 2703,
+ "start": 2545.1,
+ "end": 2545.34,
+ "text": "hard"
+ },
+ {
+ "id": 2704,
+ "start": 2545.34,
+ "end": 2545.8,
+ "text": "questions"
+ },
+ {
+ "id": 2705,
+ "start": 2545.8,
+ "end": 2545.98,
+ "text": "for"
+ },
+ {
+ "id": 2706,
+ "start": 2545.98,
+ "end": 2546.08,
+ "text": "me"
+ },
+ {
+ "id": 2707,
+ "start": 2546.08,
+ "end": 2546.18,
+ "text": "to"
+ },
+ {
+ "id": 2708,
+ "start": 2546.18,
+ "end": 2547.16,
+ "text": "answer"
+ },
+ {
+ "id": 2709,
+ "start": 2547.16,
+ "end": 2548.1,
+ "text": "before"
+ },
+ {
+ "id": 2710,
+ "start": 2548.1,
+ "end": 2548.14,
+ "text": "I"
+ },
+ {
+ "id": 2711,
+ "start": 2548.14,
+ "end": 2548.4,
+ "text": "talk"
+ },
+ {
+ "id": 2712,
+ "start": 2548.4,
+ "end": 2548.62,
+ "text": "about"
+ },
+ {
+ "id": 2713,
+ "start": 2548.62,
+ "end": 2548.74,
+ "text": "the"
+ },
+ {
+ "id": 2714,
+ "start": 2548.74,
+ "end": 2548.96,
+ "text": "steps"
+ },
+ {
+ "id": 2715,
+ "start": 2548.96,
+ "end": 2549.2,
+ "text": "we're"
+ },
+ {
+ "id": 2716,
+ "start": 2549.2,
+ "end": 2549.44,
+ "text": "taking"
+ },
+ {
+ "id": 2717,
+ "start": 2549.44,
+ "end": 2549.56,
+ "text": "to"
+ },
+ {
+ "id": 2718,
+ "start": 2549.56,
+ "end": 2549.86,
+ "text": "address"
+ },
+ {
+ "id": 2719,
+ "start": 2549.86,
+ "end": 2550.08,
+ "text": "them."
+ },
+ {
+ "id": 2720,
+ "start": 2550.08,
+ "end": 2550.72,
+ "text": "I"
+ },
+ {
+ "id": 2721,
+ "start": 2550.72,
+ "end": 2550.86,
+ "text": "want"
+ },
+ {
+ "id": 2722,
+ "start": 2550.86,
+ "end": 2550.96,
+ "text": "to"
+ },
+ {
+ "id": 2723,
+ "start": 2550.96,
+ "end": 2551.12,
+ "text": "talk"
+ },
+ {
+ "id": 2724,
+ "start": 2551.12,
+ "end": 2551.3,
+ "text": "about"
+ },
+ {
+ "id": 2725,
+ "start": 2551.3,
+ "end": 2551.42,
+ "text": "how"
+ },
+ {
+ "id": 2726,
+ "start": 2551.42,
+ "end": 2551.52,
+ "text": "we"
+ },
+ {
+ "id": 2727,
+ "start": 2551.52,
+ "end": 2551.72,
+ "text": "got"
+ },
+ {
+ "id": 2728,
+ "start": 2551.72,
+ "end": 2553.12,
+ "text": "here,"
+ },
+ {
+ "id": 2729,
+ "start": 2553.12,
+ "end": 2554.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 2730,
+ "start": 2554.1,
+ "end": 2554.48,
+ "text": "is"
+ },
+ {
+ "id": 2731,
+ "start": 2554.48,
+ "end": 2554.6,
+ "text": "an"
+ },
+ {
+ "id": 2732,
+ "start": 2554.6,
+ "end": 2555.38,
+ "text": "idealistic"
+ },
+ {
+ "id": 2733,
+ "start": 2555.38,
+ "end": 2555.6,
+ "text": "and"
+ },
+ {
+ "id": 2734,
+ "start": 2555.6,
+ "end": 2556.22,
+ "text": "optimistic"
+ },
+ {
+ "id": 2735,
+ "start": 2556.22,
+ "end": 2556.66,
+ "text": "company."
+ },
+ {
+ "id": 2736,
+ "start": 2556.66,
+ "end": 2557.7,
+ "text": "For"
+ },
+ {
+ "id": 2737,
+ "start": 2557.7,
+ "end": 2557.92,
+ "text": "most"
+ },
+ {
+ "id": 2738,
+ "start": 2557.92,
+ "end": 2558.02,
+ "text": "of"
+ },
+ {
+ "id": 2739,
+ "start": 2558.02,
+ "end": 2558.16,
+ "text": "our"
+ },
+ {
+ "id": 2740,
+ "start": 2558.16,
+ "end": 2558.64,
+ "text": "existence."
+ },
+ {
+ "id": 2741,
+ "start": 2558.64,
+ "end": 2559.34,
+ "text": "We"
+ },
+ {
+ "id": 2742,
+ "start": 2559.34,
+ "end": 2559.82,
+ "text": "focused"
+ },
+ {
+ "id": 2743,
+ "start": 2559.82,
+ "end": 2560.04,
+ "text": "on"
+ },
+ {
+ "id": 2744,
+ "start": 2560.04,
+ "end": 2560.3,
+ "text": "all"
+ },
+ {
+ "id": 2745,
+ "start": 2560.3,
+ "end": 2560.36,
+ "text": "of"
+ },
+ {
+ "id": 2746,
+ "start": 2560.36,
+ "end": 2560.48,
+ "text": "the"
+ },
+ {
+ "id": 2747,
+ "start": 2560.48,
+ "end": 2560.74,
+ "text": "good"
+ },
+ {
+ "id": 2748,
+ "start": 2560.74,
+ "end": 2560.96,
+ "text": "that"
+ },
+ {
+ "id": 2749,
+ "start": 2560.96,
+ "end": 2561.38,
+ "text": "connecting"
+ },
+ {
+ "id": 2750,
+ "start": 2561.38,
+ "end": 2561.68,
+ "text": "people"
+ },
+ {
+ "id": 2751,
+ "start": 2561.68,
+ "end": 2561.9,
+ "text": "can"
+ },
+ {
+ "id": 2752,
+ "start": 2561.9,
+ "end": 2562.04,
+ "text": "do."
+ },
+ {
+ "id": 2753,
+ "start": 2562.04,
+ "end": 2562.94,
+ "text": "And"
+ },
+ {
+ "id": 2754,
+ "start": 2562.94,
+ "end": 2563.1,
+ "text": "as"
+ },
+ {
+ "id": 2755,
+ "start": 2563.1,
+ "end": 2563.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 2756,
+ "start": 2563.46,
+ "end": 2563.6,
+ "text": "has"
+ },
+ {
+ "id": 2757,
+ "start": 2563.6,
+ "end": 2563.92,
+ "text": "grown"
+ },
+ {
+ "id": 2758,
+ "start": 2563.92,
+ "end": 2564.24,
+ "text": "people"
+ },
+ {
+ "id": 2759,
+ "start": 2564.24,
+ "end": 2564.68,
+ "text": "everywhere"
+ },
+ {
+ "id": 2760,
+ "start": 2564.68,
+ "end": 2564.88,
+ "text": "have"
+ },
+ {
+ "id": 2761,
+ "start": 2564.88,
+ "end": 2565.22,
+ "text": "gotten"
+ },
+ {
+ "id": 2762,
+ "start": 2565.22,
+ "end": 2565.66,
+ "text": "a"
+ },
+ {
+ "id": 2763,
+ "start": 2565.66,
+ "end": 2566.18,
+ "text": "powerful"
+ },
+ {
+ "id": 2764,
+ "start": 2566.18,
+ "end": 2566.34,
+ "text": "new"
+ },
+ {
+ "id": 2765,
+ "start": 2566.34,
+ "end": 2566.7,
+ "text": "tool"
+ },
+ {
+ "id": 2766,
+ "start": 2566.7,
+ "end": 2567.28,
+ "text": "for"
+ },
+ {
+ "id": 2767,
+ "start": 2567.28,
+ "end": 2567.54,
+ "text": "staying"
+ },
+ {
+ "id": 2768,
+ "start": 2567.54,
+ "end": 2567.9,
+ "text": "connected"
+ },
+ {
+ "id": 2769,
+ "start": 2567.9,
+ "end": 2568,
+ "text": "to"
+ },
+ {
+ "id": 2770,
+ "start": 2568,
+ "end": 2568.12,
+ "text": "the"
+ },
+ {
+ "id": 2771,
+ "start": 2568.12,
+ "end": 2568.34,
+ "text": "people"
+ },
+ {
+ "id": 2772,
+ "start": 2568.34,
+ "end": 2568.52,
+ "text": "they"
+ },
+ {
+ "id": 2773,
+ "start": 2568.52,
+ "end": 2570.08,
+ "text": "love"
+ },
+ {
+ "id": 2774,
+ "start": 2570.08,
+ "end": 2571.08,
+ "text": "for"
+ },
+ {
+ "id": 2775,
+ "start": 2571.08,
+ "end": 2571.32,
+ "text": "making"
+ },
+ {
+ "id": 2776,
+ "start": 2571.32,
+ "end": 2571.5,
+ "text": "their"
+ },
+ {
+ "id": 2777,
+ "start": 2571.5,
+ "end": 2571.8,
+ "text": "voices"
+ },
+ {
+ "id": 2778,
+ "start": 2571.8,
+ "end": 2572.06,
+ "text": "heard"
+ },
+ {
+ "id": 2779,
+ "start": 2572.06,
+ "end": 2572.26,
+ "text": "and"
+ },
+ {
+ "id": 2780,
+ "start": 2572.26,
+ "end": 2572.46,
+ "text": "for"
+ },
+ {
+ "id": 2781,
+ "start": 2572.46,
+ "end": 2572.84,
+ "text": "building"
+ },
+ {
+ "id": 2782,
+ "start": 2572.84,
+ "end": 2573.38,
+ "text": "communities"
+ },
+ {
+ "id": 2783,
+ "start": 2573.38,
+ "end": 2573.62,
+ "text": "and"
+ },
+ {
+ "id": 2784,
+ "start": 2573.62,
+ "end": 2574.2,
+ "text": "businesses"
+ },
+ {
+ "id": 2785,
+ "start": 2574.2,
+ "end": 2575.26,
+ "text": "just"
+ },
+ {
+ "id": 2786,
+ "start": 2575.26,
+ "end": 2575.72,
+ "text": "recently"
+ },
+ {
+ "id": 2787,
+ "start": 2575.72,
+ "end": 2576.44,
+ "text": "we've"
+ },
+ {
+ "id": 2788,
+ "start": 2576.44,
+ "end": 2576.66,
+ "text": "seen"
+ },
+ {
+ "id": 2789,
+ "start": 2576.66,
+ "end": 2576.8,
+ "text": "the"
+ },
+ {
+ "id": 2790,
+ "start": 2576.8,
+ "end": 2576.94,
+ "text": "me"
+ },
+ {
+ "id": 2791,
+ "start": 2576.94,
+ "end": 2577.2,
+ "text": "too"
+ },
+ {
+ "id": 2792,
+ "start": 2577.2,
+ "end": 2577.6,
+ "text": "movement"
+ },
+ {
+ "id": 2793,
+ "start": 2577.6,
+ "end": 2577.78,
+ "text": "and"
+ },
+ {
+ "id": 2794,
+ "start": 2577.78,
+ "end": 2577.9,
+ "text": "the"
+ },
+ {
+ "id": 2795,
+ "start": 2577.9,
+ "end": 2578.14,
+ "text": "March"
+ },
+ {
+ "id": 2796,
+ "start": 2578.14,
+ "end": 2578.3,
+ "text": "for"
+ },
+ {
+ "id": 2797,
+ "start": 2578.3,
+ "end": 2578.44,
+ "text": "our"
+ },
+ {
+ "id": 2798,
+ "start": 2578.44,
+ "end": 2578.8,
+ "text": "lives"
+ },
+ {
+ "id": 2799,
+ "start": 2578.8,
+ "end": 2579.34,
+ "text": "organized"
+ },
+ {
+ "id": 2800,
+ "start": 2579.34,
+ "end": 2579.48,
+ "text": "at"
+ },
+ {
+ "id": 2801,
+ "start": 2579.48,
+ "end": 2579.68,
+ "text": "least"
+ },
+ {
+ "id": 2802,
+ "start": 2579.68,
+ "end": 2579.84,
+ "text": "in"
+ },
+ {
+ "id": 2803,
+ "start": 2579.84,
+ "end": 2580.16,
+ "text": "part"
+ },
+ {
+ "id": 2804,
+ "start": 2580.16,
+ "end": 2580.7,
+ "text": "on"
+ },
+ {
+ "id": 2805,
+ "start": 2580.7,
+ "end": 2582.1,
+ "text": "Facebook."
+ },
+ {
+ "id": 2806,
+ "start": 2582.1,
+ "end": 2582.36,
+ "text": "After"
+ },
+ {
+ "id": 2807,
+ "start": 2582.36,
+ "end": 2582.74,
+ "text": "Hurricane"
+ },
+ {
+ "id": 2808,
+ "start": 2582.74,
+ "end": 2583.08,
+ "text": "Harvey,"
+ },
+ {
+ "id": 2809,
+ "start": 2583.08,
+ "end": 2583.82,
+ "text": "people"
+ },
+ {
+ "id": 2810,
+ "start": 2583.82,
+ "end": 2584.04,
+ "text": "came"
+ },
+ {
+ "id": 2811,
+ "start": 2584.04,
+ "end": 2584.4,
+ "text": "together"
+ },
+ {
+ "id": 2812,
+ "start": 2584.4,
+ "end": 2584.54,
+ "text": "to"
+ },
+ {
+ "id": 2813,
+ "start": 2584.54,
+ "end": 2584.76,
+ "text": "raise"
+ },
+ {
+ "id": 2814,
+ "start": 2584.76,
+ "end": 2584.98,
+ "text": "more"
+ },
+ {
+ "id": 2815,
+ "start": 2584.98,
+ "end": 2585.12,
+ "text": "than"
+ },
+ {
+ "id": 2816,
+ "start": 2585.12,
+ "end": 2585.72,
+ "text": "20,000,000"
+ },
+ {
+ "id": 2817,
+ "start": 2585.72,
+ "end": 2586.1,
+ "text": "dollars"
+ },
+ {
+ "id": 2818,
+ "start": 2586.1,
+ "end": 2586.34,
+ "text": "for"
+ },
+ {
+ "id": 2819,
+ "start": 2586.34,
+ "end": 2586.7,
+ "text": "relief"
+ },
+ {
+ "id": 2820,
+ "start": 2586.7,
+ "end": 2587.8,
+ "text": "and"
+ },
+ {
+ "id": 2821,
+ "start": 2587.8,
+ "end": 2588,
+ "text": "more"
+ },
+ {
+ "id": 2822,
+ "start": 2588,
+ "end": 2588.14,
+ "text": "than"
+ },
+ {
+ "id": 2823,
+ "start": 2588.14,
+ "end": 2589.04,
+ "text": "70,000,000"
+ },
+ {
+ "id": 2824,
+ "start": 2589.04,
+ "end": 2589.78,
+ "text": "small"
+ },
+ {
+ "id": 2825,
+ "start": 2589.78,
+ "end": 2590.34,
+ "text": "businesses"
+ },
+ {
+ "id": 2826,
+ "start": 2590.34,
+ "end": 2591,
+ "text": "use"
+ },
+ {
+ "id": 2827,
+ "start": 2591,
+ "end": 2591.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 2828,
+ "start": 2591.5,
+ "end": 2591.94,
+ "text": "to"
+ },
+ {
+ "id": 2829,
+ "start": 2591.94,
+ "end": 2592.26,
+ "text": "create"
+ },
+ {
+ "id": 2830,
+ "start": 2592.26,
+ "end": 2592.72,
+ "text": "jobs"
+ },
+ {
+ "id": 2831,
+ "start": 2592.72,
+ "end": 2593.26,
+ "text": "and"
+ },
+ {
+ "id": 2832,
+ "start": 2593.26,
+ "end": 2594.34,
+ "text": "grow."
+ },
+ {
+ "id": 2833,
+ "start": 2594.34,
+ "end": 2595.22,
+ "text": "But"
+ },
+ {
+ "id": 2834,
+ "start": 2595.22,
+ "end": 2595.38,
+ "text": "it's"
+ },
+ {
+ "id": 2835,
+ "start": 2595.38,
+ "end": 2595.66,
+ "text": "clear"
+ },
+ {
+ "id": 2836,
+ "start": 2595.66,
+ "end": 2595.86,
+ "text": "now"
+ },
+ {
+ "id": 2837,
+ "start": 2595.86,
+ "end": 2596.2,
+ "text": "that"
+ },
+ {
+ "id": 2838,
+ "start": 2596.2,
+ "end": 2596.3,
+ "text": "we"
+ },
+ {
+ "id": 2839,
+ "start": 2596.3,
+ "end": 2596.6,
+ "text": "didn't"
+ },
+ {
+ "id": 2840,
+ "start": 2596.6,
+ "end": 2596.76,
+ "text": "do"
+ },
+ {
+ "id": 2841,
+ "start": 2596.76,
+ "end": 2597.16,
+ "text": "enough"
+ },
+ {
+ "id": 2842,
+ "start": 2597.16,
+ "end": 2597.36,
+ "text": "to"
+ },
+ {
+ "id": 2843,
+ "start": 2597.36,
+ "end": 2597.68,
+ "text": "prevent"
+ },
+ {
+ "id": 2844,
+ "start": 2597.68,
+ "end": 2597.92,
+ "text": "these"
+ },
+ {
+ "id": 2845,
+ "start": 2597.92,
+ "end": 2598.28,
+ "text": "tools"
+ },
+ {
+ "id": 2846,
+ "start": 2598.28,
+ "end": 2598.52,
+ "text": "from"
+ },
+ {
+ "id": 2847,
+ "start": 2598.52,
+ "end": 2598.74,
+ "text": "being"
+ },
+ {
+ "id": 2848,
+ "start": 2598.74,
+ "end": 2599,
+ "text": "used"
+ },
+ {
+ "id": 2849,
+ "start": 2599,
+ "end": 2599.18,
+ "text": "for"
+ },
+ {
+ "id": 2850,
+ "start": 2599.18,
+ "end": 2599.48,
+ "text": "harm"
+ },
+ {
+ "id": 2851,
+ "start": 2599.48,
+ "end": 2599.74,
+ "text": "as"
+ },
+ {
+ "id": 2852,
+ "start": 2599.74,
+ "end": 2599.96,
+ "text": "well."
+ },
+ {
+ "id": 2853,
+ "start": 2599.96,
+ "end": 2600.68,
+ "text": "And"
+ },
+ {
+ "id": 2854,
+ "start": 2600.68,
+ "end": 2600.84,
+ "text": "that"
+ },
+ {
+ "id": 2855,
+ "start": 2600.84,
+ "end": 2601.12,
+ "text": "goes"
+ },
+ {
+ "id": 2856,
+ "start": 2601.12,
+ "end": 2601.34,
+ "text": "for"
+ },
+ {
+ "id": 2857,
+ "start": 2601.34,
+ "end": 2601.7,
+ "text": "Fake"
+ },
+ {
+ "id": 2858,
+ "start": 2601.7,
+ "end": 2602.06,
+ "text": "News"
+ },
+ {
+ "id": 2859,
+ "start": 2602.06,
+ "end": 2602.72,
+ "text": "for"
+ },
+ {
+ "id": 2860,
+ "start": 2602.72,
+ "end": 2603,
+ "text": "foreign"
+ },
+ {
+ "id": 2861,
+ "start": 2603,
+ "end": 2603.52,
+ "text": "interference"
+ },
+ {
+ "id": 2862,
+ "start": 2603.52,
+ "end": 2603.62,
+ "text": "in"
+ },
+ {
+ "id": 2863,
+ "start": 2603.62,
+ "end": 2604.06,
+ "text": "elections"
+ },
+ {
+ "id": 2864,
+ "start": 2604.06,
+ "end": 2604.28,
+ "text": "and"
+ },
+ {
+ "id": 2865,
+ "start": 2604.28,
+ "end": 2604.54,
+ "text": "hate"
+ },
+ {
+ "id": 2866,
+ "start": 2604.54,
+ "end": 2604.86,
+ "text": "speech"
+ },
+ {
+ "id": 2867,
+ "start": 2604.86,
+ "end": 2605.63,
+ "text": "is"
+ },
+ {
+ "id": 2868,
+ "start": 2605.63,
+ "end": 2605.89,
+ "text": "well"
+ },
+ {
+ "id": 2869,
+ "start": 2605.89,
+ "end": 2606.15,
+ "text": "as"
+ },
+ {
+ "id": 2870,
+ "start": 2606.15,
+ "end": 2606.71,
+ "text": "developers"
+ },
+ {
+ "id": 2871,
+ "start": 2606.71,
+ "end": 2606.83,
+ "text": "and"
+ },
+ {
+ "id": 2872,
+ "start": 2606.83,
+ "end": 2607.09,
+ "text": "data"
+ },
+ {
+ "id": 2873,
+ "start": 2607.09,
+ "end": 2607.81,
+ "text": "privacy,"
+ },
+ {
+ "id": 2874,
+ "start": 2607.81,
+ "end": 2608.85,
+ "text": "we"
+ },
+ {
+ "id": 2875,
+ "start": 2608.85,
+ "end": 2609.13,
+ "text": "didn't"
+ },
+ {
+ "id": 2876,
+ "start": 2609.13,
+ "end": 2609.41,
+ "text": "take"
+ },
+ {
+ "id": 2877,
+ "start": 2609.41,
+ "end": 2609.59,
+ "text": "a"
+ },
+ {
+ "id": 2878,
+ "start": 2609.59,
+ "end": 2609.89,
+ "text": "broad"
+ },
+ {
+ "id": 2879,
+ "start": 2609.89,
+ "end": 2610.13,
+ "text": "enough"
+ },
+ {
+ "id": 2880,
+ "start": 2610.13,
+ "end": 2610.37,
+ "text": "view"
+ },
+ {
+ "id": 2881,
+ "start": 2610.37,
+ "end": 2610.49,
+ "text": "of"
+ },
+ {
+ "id": 2882,
+ "start": 2610.49,
+ "end": 2610.67,
+ "text": "our"
+ },
+ {
+ "id": 2883,
+ "start": 2610.67,
+ "end": 2611.51,
+ "text": "responsibility."
+ },
+ {
+ "id": 2884,
+ "start": 2611.51,
+ "end": 2612.23,
+ "text": "And"
+ },
+ {
+ "id": 2885,
+ "start": 2612.23,
+ "end": 2612.41,
+ "text": "that"
+ },
+ {
+ "id": 2886,
+ "start": 2612.41,
+ "end": 2612.57,
+ "text": "was"
+ },
+ {
+ "id": 2887,
+ "start": 2612.57,
+ "end": 2612.65,
+ "text": "a"
+ },
+ {
+ "id": 2888,
+ "start": 2612.65,
+ "end": 2612.93,
+ "text": "big"
+ },
+ {
+ "id": 2889,
+ "start": 2612.93,
+ "end": 2613.35,
+ "text": "mistake."
+ },
+ {
+ "id": 2890,
+ "start": 2613.35,
+ "end": 2614.21,
+ "text": "And"
+ },
+ {
+ "id": 2891,
+ "start": 2614.21,
+ "end": 2614.31,
+ "text": "it"
+ },
+ {
+ "id": 2892,
+ "start": 2614.31,
+ "end": 2614.45,
+ "text": "was"
+ },
+ {
+ "id": 2893,
+ "start": 2614.45,
+ "end": 2614.65,
+ "text": "my"
+ },
+ {
+ "id": 2894,
+ "start": 2614.65,
+ "end": 2615.05,
+ "text": "mistake."
+ },
+ {
+ "id": 2895,
+ "start": 2615.05,
+ "end": 2615.69,
+ "text": "And"
+ },
+ {
+ "id": 2896,
+ "start": 2615.69,
+ "end": 2615.85,
+ "text": "I'm"
+ },
+ {
+ "id": 2897,
+ "start": 2615.85,
+ "end": 2616.92,
+ "text": "sorry,"
+ },
+ {
+ "id": 2898,
+ "start": 2616.92,
+ "end": 2616.96,
+ "text": "I"
+ },
+ {
+ "id": 2899,
+ "start": 2616.96,
+ "end": 2618.12,
+ "text": "started"
+ },
+ {
+ "id": 2900,
+ "start": 2618.12,
+ "end": 2618.56,
+ "text": "Facebook,"
+ },
+ {
+ "id": 2901,
+ "start": 2618.56,
+ "end": 2619.54,
+ "text": "I"
+ },
+ {
+ "id": 2902,
+ "start": 2619.54,
+ "end": 2619.76,
+ "text": "run"
+ },
+ {
+ "id": 2903,
+ "start": 2619.76,
+ "end": 2619.9,
+ "text": "it"
+ },
+ {
+ "id": 2904,
+ "start": 2619.9,
+ "end": 2620.68,
+ "text": "and"
+ },
+ {
+ "id": 2905,
+ "start": 2620.68,
+ "end": 2620.86,
+ "text": "I'm"
+ },
+ {
+ "id": 2906,
+ "start": 2620.86,
+ "end": 2621.48,
+ "text": "responsible"
+ },
+ {
+ "id": 2907,
+ "start": 2621.48,
+ "end": 2621.64,
+ "text": "for"
+ },
+ {
+ "id": 2908,
+ "start": 2621.64,
+ "end": 2621.78,
+ "text": "what"
+ },
+ {
+ "id": 2909,
+ "start": 2621.78,
+ "end": 2622.1,
+ "text": "happens"
+ },
+ {
+ "id": 2910,
+ "start": 2622.1,
+ "end": 2623.28,
+ "text": "here."
+ },
+ {
+ "id": 2911,
+ "start": 2623.28,
+ "end": 2624.32,
+ "text": "So"
+ },
+ {
+ "id": 2912,
+ "start": 2624.32,
+ "end": 2624.58,
+ "text": "now"
+ },
+ {
+ "id": 2913,
+ "start": 2624.58,
+ "end": 2625.3,
+ "text": "we"
+ },
+ {
+ "id": 2914,
+ "start": 2625.3,
+ "end": 2625.48,
+ "text": "have"
+ },
+ {
+ "id": 2915,
+ "start": 2625.48,
+ "end": 2625.58,
+ "text": "to"
+ },
+ {
+ "id": 2916,
+ "start": 2625.58,
+ "end": 2625.68,
+ "text": "go"
+ },
+ {
+ "id": 2917,
+ "start": 2625.68,
+ "end": 2626.74,
+ "text": "through"
+ },
+ {
+ "id": 2918,
+ "start": 2626.74,
+ "end": 2627.7,
+ "text": "all"
+ },
+ {
+ "id": 2919,
+ "start": 2627.7,
+ "end": 2627.78,
+ "text": "of"
+ },
+ {
+ "id": 2920,
+ "start": 2627.78,
+ "end": 2627.92,
+ "text": "our"
+ },
+ {
+ "id": 2921,
+ "start": 2627.92,
+ "end": 2628.48,
+ "text": "relationship"
+ },
+ {
+ "id": 2922,
+ "start": 2628.48,
+ "end": 2628.68,
+ "text": "with"
+ },
+ {
+ "id": 2923,
+ "start": 2628.68,
+ "end": 2628.94,
+ "text": "people"
+ },
+ {
+ "id": 2924,
+ "start": 2628.94,
+ "end": 2629.18,
+ "text": "and"
+ },
+ {
+ "id": 2925,
+ "start": 2629.18,
+ "end": 2630.1,
+ "text": "make"
+ },
+ {
+ "id": 2926,
+ "start": 2630.1,
+ "end": 2630.26,
+ "text": "sure"
+ },
+ {
+ "id": 2927,
+ "start": 2630.26,
+ "end": 2630.38,
+ "text": "that"
+ },
+ {
+ "id": 2928,
+ "start": 2630.38,
+ "end": 2630.54,
+ "text": "we're"
+ },
+ {
+ "id": 2929,
+ "start": 2630.54,
+ "end": 2630.76,
+ "text": "taking"
+ },
+ {
+ "id": 2930,
+ "start": 2630.76,
+ "end": 2630.82,
+ "text": "a"
+ },
+ {
+ "id": 2931,
+ "start": 2630.82,
+ "end": 2631.06,
+ "text": "broad"
+ },
+ {
+ "id": 2932,
+ "start": 2631.06,
+ "end": 2631.28,
+ "text": "enough"
+ },
+ {
+ "id": 2933,
+ "start": 2631.28,
+ "end": 2631.44,
+ "text": "for"
+ },
+ {
+ "id": 2934,
+ "start": 2631.44,
+ "end": 2631.66,
+ "text": "you"
+ },
+ {
+ "id": 2935,
+ "start": 2631.66,
+ "end": 2631.86,
+ "text": "of"
+ },
+ {
+ "id": 2936,
+ "start": 2631.86,
+ "end": 2632.02,
+ "text": "our"
+ },
+ {
+ "id": 2937,
+ "start": 2632.02,
+ "end": 2633.5,
+ "text": "responsibility"
+ },
+ {
+ "id": 2938,
+ "start": 2633.5,
+ "end": 2634.4,
+ "text": "it's"
+ },
+ {
+ "id": 2939,
+ "start": 2634.4,
+ "end": 2634.6,
+ "text": "not"
+ },
+ {
+ "id": 2940,
+ "start": 2634.6,
+ "end": 2634.88,
+ "text": "enough"
+ },
+ {
+ "id": 2941,
+ "start": 2634.88,
+ "end": 2635,
+ "text": "to"
+ },
+ {
+ "id": 2942,
+ "start": 2635,
+ "end": 2635.16,
+ "text": "just"
+ },
+ {
+ "id": 2943,
+ "start": 2635.16,
+ "end": 2635.44,
+ "text": "connect"
+ },
+ {
+ "id": 2944,
+ "start": 2635.44,
+ "end": 2635.7,
+ "text": "people."
+ },
+ {
+ "id": 2945,
+ "start": 2635.7,
+ "end": 2636.2,
+ "text": "We"
+ },
+ {
+ "id": 2946,
+ "start": 2636.2,
+ "end": 2636.36,
+ "text": "have"
+ },
+ {
+ "id": 2947,
+ "start": 2636.36,
+ "end": 2636.44,
+ "text": "to"
+ },
+ {
+ "id": 2948,
+ "start": 2636.44,
+ "end": 2636.58,
+ "text": "make"
+ },
+ {
+ "id": 2949,
+ "start": 2636.58,
+ "end": 2636.74,
+ "text": "sure"
+ },
+ {
+ "id": 2950,
+ "start": 2636.74,
+ "end": 2636.9,
+ "text": "that"
+ },
+ {
+ "id": 2951,
+ "start": 2636.9,
+ "end": 2637.08,
+ "text": "those"
+ },
+ {
+ "id": 2952,
+ "start": 2637.08,
+ "end": 2637.5,
+ "text": "connections"
+ },
+ {
+ "id": 2953,
+ "start": 2637.5,
+ "end": 2637.66,
+ "text": "are"
+ },
+ {
+ "id": 2954,
+ "start": 2637.66,
+ "end": 2638.12,
+ "text": "positive"
+ },
+ {
+ "id": 2955,
+ "start": 2638.12,
+ "end": 2639.22,
+ "text": "it's"
+ },
+ {
+ "id": 2956,
+ "start": 2639.22,
+ "end": 2639.4,
+ "text": "not"
+ },
+ {
+ "id": 2957,
+ "start": 2639.4,
+ "end": 2639.66,
+ "text": "enough"
+ },
+ {
+ "id": 2958,
+ "start": 2639.66,
+ "end": 2639.82,
+ "text": "to"
+ },
+ {
+ "id": 2959,
+ "start": 2639.82,
+ "end": 2639.98,
+ "text": "just"
+ },
+ {
+ "id": 2960,
+ "start": 2639.98,
+ "end": 2640.18,
+ "text": "give"
+ },
+ {
+ "id": 2961,
+ "start": 2640.18,
+ "end": 2640.4,
+ "text": "people"
+ },
+ {
+ "id": 2962,
+ "start": 2640.4,
+ "end": 2640.46,
+ "text": "a"
+ },
+ {
+ "id": 2963,
+ "start": 2640.46,
+ "end": 2640.8,
+ "text": "voice,"
+ },
+ {
+ "id": 2964,
+ "start": 2640.8,
+ "end": 2641.46,
+ "text": "we"
+ },
+ {
+ "id": 2965,
+ "start": 2641.46,
+ "end": 2641.66,
+ "text": "need"
+ },
+ {
+ "id": 2966,
+ "start": 2641.66,
+ "end": 2641.74,
+ "text": "to"
+ },
+ {
+ "id": 2967,
+ "start": 2641.74,
+ "end": 2641.88,
+ "text": "make"
+ },
+ {
+ "id": 2968,
+ "start": 2641.88,
+ "end": 2642.1,
+ "text": "sure"
+ },
+ {
+ "id": 2969,
+ "start": 2642.1,
+ "end": 2642.32,
+ "text": "that"
+ },
+ {
+ "id": 2970,
+ "start": 2642.32,
+ "end": 2642.54,
+ "text": "people"
+ },
+ {
+ "id": 2971,
+ "start": 2642.54,
+ "end": 2642.76,
+ "text": "aren't"
+ },
+ {
+ "id": 2972,
+ "start": 2642.76,
+ "end": 2643.02,
+ "text": "using"
+ },
+ {
+ "id": 2973,
+ "start": 2643.02,
+ "end": 2643.12,
+ "text": "it"
+ },
+ {
+ "id": 2974,
+ "start": 2643.12,
+ "end": 2643.22,
+ "text": "to"
+ },
+ {
+ "id": 2975,
+ "start": 2643.22,
+ "end": 2643.5,
+ "text": "harm"
+ },
+ {
+ "id": 2976,
+ "start": 2643.5,
+ "end": 2643.74,
+ "text": "other"
+ },
+ {
+ "id": 2977,
+ "start": 2643.74,
+ "end": 2644.24,
+ "text": "people"
+ },
+ {
+ "id": 2978,
+ "start": 2644.24,
+ "end": 2644.98,
+ "text": "or"
+ },
+ {
+ "id": 2979,
+ "start": 2644.98,
+ "end": 2645.12,
+ "text": "to"
+ },
+ {
+ "id": 2980,
+ "start": 2645.12,
+ "end": 2645.4,
+ "text": "spread"
+ },
+ {
+ "id": 2981,
+ "start": 2645.4,
+ "end": 2646.14,
+ "text": "misinformation"
+ },
+ {
+ "id": 2982,
+ "start": 2646.14,
+ "end": 2647,
+ "text": "and"
+ },
+ {
+ "id": 2983,
+ "start": 2647,
+ "end": 2647.16,
+ "text": "it's."
+ },
+ {
+ "id": 2984,
+ "start": 2647.16,
+ "end": 2647.34,
+ "text": "Not"
+ },
+ {
+ "id": 2985,
+ "start": 2647.34,
+ "end": 2647.6,
+ "text": "enough"
+ },
+ {
+ "id": 2986,
+ "start": 2647.6,
+ "end": 2647.74,
+ "text": "to"
+ },
+ {
+ "id": 2987,
+ "start": 2647.74,
+ "end": 2647.92,
+ "text": "just"
+ },
+ {
+ "id": 2988,
+ "start": 2647.92,
+ "end": 2648.12,
+ "text": "give"
+ },
+ {
+ "id": 2989,
+ "start": 2648.12,
+ "end": 2648.36,
+ "text": "people"
+ },
+ {
+ "id": 2990,
+ "start": 2648.36,
+ "end": 2648.8,
+ "text": "control"
+ },
+ {
+ "id": 2991,
+ "start": 2648.8,
+ "end": 2648.98,
+ "text": "over"
+ },
+ {
+ "id": 2992,
+ "start": 2648.98,
+ "end": 2649.16,
+ "text": "their"
+ },
+ {
+ "id": 2993,
+ "start": 2649.16,
+ "end": 2649.68,
+ "text": "information."
+ },
+ {
+ "id": 2994,
+ "start": 2649.68,
+ "end": 2650.54,
+ "text": "We"
+ },
+ {
+ "id": 2995,
+ "start": 2650.54,
+ "end": 2650.72,
+ "text": "need"
+ },
+ {
+ "id": 2996,
+ "start": 2650.72,
+ "end": 2650.8,
+ "text": "to"
+ },
+ {
+ "id": 2997,
+ "start": 2650.8,
+ "end": 2650.96,
+ "text": "make"
+ },
+ {
+ "id": 2998,
+ "start": 2650.96,
+ "end": 2651.22,
+ "text": "sure"
+ },
+ {
+ "id": 2999,
+ "start": 2651.22,
+ "end": 2651.42,
+ "text": "that"
+ },
+ {
+ "id": 3000,
+ "start": 2651.42,
+ "end": 2651.54,
+ "text": "the"
+ },
+ {
+ "id": 3001,
+ "start": 2651.54,
+ "end": 2652.04,
+ "text": "developers"
+ },
+ {
+ "id": 3002,
+ "start": 2652.04,
+ "end": 2652.2,
+ "text": "they"
+ },
+ {
+ "id": 3003,
+ "start": 2652.2,
+ "end": 2652.46,
+ "text": "share"
+ },
+ {
+ "id": 3004,
+ "start": 2652.46,
+ "end": 2652.56,
+ "text": "it"
+ },
+ {
+ "id": 3005,
+ "start": 2652.56,
+ "end": 2652.76,
+ "text": "with"
+ },
+ {
+ "id": 3006,
+ "start": 2652.76,
+ "end": 2653.42,
+ "text": "protect"
+ },
+ {
+ "id": 3007,
+ "start": 2653.42,
+ "end": 2653.62,
+ "text": "their"
+ },
+ {
+ "id": 3008,
+ "start": 2653.62,
+ "end": 2654.12,
+ "text": "information"
+ },
+ {
+ "id": 3009,
+ "start": 2654.12,
+ "end": 2654.98,
+ "text": "too"
+ },
+ {
+ "id": 3010,
+ "start": 2654.98,
+ "end": 2656,
+ "text": "across"
+ },
+ {
+ "id": 3011,
+ "start": 2656,
+ "end": 2656.16,
+ "text": "the"
+ },
+ {
+ "id": 3012,
+ "start": 2656.16,
+ "end": 2656.42,
+ "text": "board."
+ },
+ {
+ "id": 3013,
+ "start": 2656.42,
+ "end": 2657.18,
+ "text": "We"
+ },
+ {
+ "id": 3014,
+ "start": 2657.18,
+ "end": 2657.34,
+ "text": "have"
+ },
+ {
+ "id": 3015,
+ "start": 2657.34,
+ "end": 2657.38,
+ "text": "a"
+ },
+ {
+ "id": 3016,
+ "start": 2657.38,
+ "end": 2658.14,
+ "text": "responsibility"
+ },
+ {
+ "id": 3017,
+ "start": 2658.14,
+ "end": 2658.3,
+ "text": "to"
+ },
+ {
+ "id": 3018,
+ "start": 2658.3,
+ "end": 2658.52,
+ "text": "not"
+ },
+ {
+ "id": 3019,
+ "start": 2658.52,
+ "end": 2658.68,
+ "text": "just"
+ },
+ {
+ "id": 3020,
+ "start": 2658.68,
+ "end": 2658.94,
+ "text": "build"
+ },
+ {
+ "id": 3021,
+ "start": 2658.94,
+ "end": 2659.4,
+ "text": "tools"
+ },
+ {
+ "id": 3022,
+ "start": 2659.4,
+ "end": 2660.1,
+ "text": "but"
+ },
+ {
+ "id": 3023,
+ "start": 2660.1,
+ "end": 2660.28,
+ "text": "to"
+ },
+ {
+ "id": 3024,
+ "start": 2660.28,
+ "end": 2660.46,
+ "text": "make"
+ },
+ {
+ "id": 3025,
+ "start": 2660.46,
+ "end": 2660.66,
+ "text": "sure"
+ },
+ {
+ "id": 3026,
+ "start": 2660.66,
+ "end": 2660.84,
+ "text": "that"
+ },
+ {
+ "id": 3027,
+ "start": 2660.84,
+ "end": 2660.96,
+ "text": "they"
+ },
+ {
+ "id": 3028,
+ "start": 2660.96,
+ "end": 2661.06,
+ "text": "are"
+ },
+ {
+ "id": 3029,
+ "start": 2661.06,
+ "end": 2661.32,
+ "text": "used"
+ },
+ {
+ "id": 3030,
+ "start": 2661.32,
+ "end": 2661.52,
+ "text": "for"
+ },
+ {
+ "id": 3031,
+ "start": 2661.52,
+ "end": 2662.66,
+ "text": "good."
+ },
+ {
+ "id": 3032,
+ "start": 2662.66,
+ "end": 2663.62,
+ "text": "It"
+ },
+ {
+ "id": 3033,
+ "start": 2663.62,
+ "end": 2663.82,
+ "text": "will"
+ },
+ {
+ "id": 3034,
+ "start": 2663.82,
+ "end": 2663.98,
+ "text": "take"
+ },
+ {
+ "id": 3035,
+ "start": 2663.98,
+ "end": 2664.2,
+ "text": "some"
+ },
+ {
+ "id": 3036,
+ "start": 2664.2,
+ "end": 2664.46,
+ "text": "time"
+ },
+ {
+ "id": 3037,
+ "start": 2664.46,
+ "end": 2664.6,
+ "text": "to"
+ },
+ {
+ "id": 3038,
+ "start": 2664.6,
+ "end": 2664.76,
+ "text": "work"
+ },
+ {
+ "id": 3039,
+ "start": 2664.76,
+ "end": 2664.98,
+ "text": "through"
+ },
+ {
+ "id": 3040,
+ "start": 2664.98,
+ "end": 2665.1,
+ "text": "all"
+ },
+ {
+ "id": 3041,
+ "start": 2665.1,
+ "end": 2665.22,
+ "text": "the"
+ },
+ {
+ "id": 3042,
+ "start": 2665.22,
+ "end": 2665.56,
+ "text": "changes."
+ },
+ {
+ "id": 3043,
+ "start": 2665.56,
+ "end": 2665.72,
+ "text": "We"
+ },
+ {
+ "id": 3044,
+ "start": 2665.72,
+ "end": 2665.9,
+ "text": "need"
+ },
+ {
+ "id": 3045,
+ "start": 2665.9,
+ "end": 2665.98,
+ "text": "to"
+ },
+ {
+ "id": 3046,
+ "start": 2665.98,
+ "end": 2666.16,
+ "text": "make"
+ },
+ {
+ "id": 3047,
+ "start": 2666.16,
+ "end": 2666.44,
+ "text": "across"
+ },
+ {
+ "id": 3048,
+ "start": 2666.44,
+ "end": 2666.62,
+ "text": "the"
+ },
+ {
+ "id": 3049,
+ "start": 2666.62,
+ "end": 2666.94,
+ "text": "company,"
+ },
+ {
+ "id": 3050,
+ "start": 2666.94,
+ "end": 2667.62,
+ "text": "but"
+ },
+ {
+ "id": 3051,
+ "start": 2667.62,
+ "end": 2667.88,
+ "text": "I'm"
+ },
+ {
+ "id": 3052,
+ "start": 2667.88,
+ "end": 2668.26,
+ "text": "committed"
+ },
+ {
+ "id": 3053,
+ "start": 2668.26,
+ "end": 2668.4,
+ "text": "to"
+ },
+ {
+ "id": 3054,
+ "start": 2668.4,
+ "end": 2668.68,
+ "text": "getting"
+ },
+ {
+ "id": 3055,
+ "start": 2668.68,
+ "end": 2668.88,
+ "text": "this"
+ },
+ {
+ "id": 3056,
+ "start": 2668.88,
+ "end": 2669.94,
+ "text": "right."
+ },
+ {
+ "id": 3057,
+ "start": 2669.94,
+ "end": 2670.88,
+ "text": "This"
+ },
+ {
+ "id": 3058,
+ "start": 2670.88,
+ "end": 2671.28,
+ "text": "includes"
+ },
+ {
+ "id": 3059,
+ "start": 2671.28,
+ "end": 2671.44,
+ "text": "the"
+ },
+ {
+ "id": 3060,
+ "start": 2671.44,
+ "end": 2671.76,
+ "text": "basic"
+ },
+ {
+ "id": 3061,
+ "start": 2671.76,
+ "end": 2672.58,
+ "text": "responsibility"
+ },
+ {
+ "id": 3062,
+ "start": 2672.58,
+ "end": 2673.14,
+ "text": "of"
+ },
+ {
+ "id": 3063,
+ "start": 2673.14,
+ "end": 2673.66,
+ "text": "protecting"
+ },
+ {
+ "id": 3064,
+ "start": 2673.66,
+ "end": 2673.98,
+ "text": "people's"
+ },
+ {
+ "id": 3065,
+ "start": 2673.98,
+ "end": 2674.56,
+ "text": "information"
+ },
+ {
+ "id": 3066,
+ "start": 2674.56,
+ "end": 2675.24,
+ "text": "which"
+ },
+ {
+ "id": 3067,
+ "start": 2675.24,
+ "end": 2675.36,
+ "text": "we"
+ },
+ {
+ "id": 3068,
+ "start": 2675.36,
+ "end": 2675.74,
+ "text": "failed"
+ },
+ {
+ "id": 3069,
+ "start": 2675.74,
+ "end": 2675.88,
+ "text": "to"
+ },
+ {
+ "id": 3070,
+ "start": 2675.88,
+ "end": 2676,
+ "text": "do"
+ },
+ {
+ "id": 3071,
+ "start": 2676,
+ "end": 2676.28,
+ "text": "with"
+ },
+ {
+ "id": 3072,
+ "start": 2676.28,
+ "end": 2676.68,
+ "text": "Cambridge"
+ },
+ {
+ "id": 3073,
+ "start": 2676.68,
+ "end": 2677.36,
+ "text": "Analytica"
+ },
+ {
+ "id": 3074,
+ "start": 2677.36,
+ "end": 2678.46,
+ "text": "so"
+ },
+ {
+ "id": 3075,
+ "start": 2678.46,
+ "end": 2678.92,
+ "text": "here"
+ },
+ {
+ "id": 3076,
+ "start": 2678.92,
+ "end": 2679.18,
+ "text": "are"
+ },
+ {
+ "id": 3077,
+ "start": 2679.18,
+ "end": 2679.3,
+ "text": "a"
+ },
+ {
+ "id": 3078,
+ "start": 2679.3,
+ "end": 2679.6,
+ "text": "few"
+ },
+ {
+ "id": 3079,
+ "start": 2679.6,
+ "end": 2679.92,
+ "text": "things"
+ },
+ {
+ "id": 3080,
+ "start": 2679.92,
+ "end": 2680.2,
+ "text": "that"
+ },
+ {
+ "id": 3081,
+ "start": 2680.2,
+ "end": 2680.3,
+ "text": "we"
+ },
+ {
+ "id": 3082,
+ "start": 2680.3,
+ "end": 2680.46,
+ "text": "are"
+ },
+ {
+ "id": 3083,
+ "start": 2680.46,
+ "end": 2681.18,
+ "text": "doing"
+ },
+ {
+ "id": 3084,
+ "start": 2681.18,
+ "end": 2681.76,
+ "text": "to"
+ },
+ {
+ "id": 3085,
+ "start": 2681.76,
+ "end": 2682.24,
+ "text": "address"
+ },
+ {
+ "id": 3086,
+ "start": 2682.24,
+ "end": 2682.46,
+ "text": "this."
+ },
+ {
+ "id": 3087,
+ "start": 2682.46,
+ "end": 2682.8,
+ "text": "And"
+ },
+ {
+ "id": 3088,
+ "start": 2682.8,
+ "end": 2682.92,
+ "text": "to"
+ },
+ {
+ "id": 3089,
+ "start": 2682.92,
+ "end": 2683.3,
+ "text": "prevent"
+ },
+ {
+ "id": 3090,
+ "start": 2683.3,
+ "end": 2683.46,
+ "text": "it"
+ },
+ {
+ "id": 3091,
+ "start": 2683.46,
+ "end": 2683.64,
+ "text": "from"
+ },
+ {
+ "id": 3092,
+ "start": 2683.64,
+ "end": 2684.02,
+ "text": "happening"
+ },
+ {
+ "id": 3093,
+ "start": 2684.02,
+ "end": 2684.56,
+ "text": "again"
+ },
+ {
+ "id": 3094,
+ "start": 2684.56,
+ "end": 2685.56,
+ "text": "first"
+ },
+ {
+ "id": 3095,
+ "start": 2685.56,
+ "end": 2686.54,
+ "text": "we're"
+ },
+ {
+ "id": 3096,
+ "start": 2686.54,
+ "end": 2686.76,
+ "text": "getting"
+ },
+ {
+ "id": 3097,
+ "start": 2686.76,
+ "end": 2686.84,
+ "text": "to"
+ },
+ {
+ "id": 3098,
+ "start": 2686.84,
+ "end": 2686.96,
+ "text": "the"
+ },
+ {
+ "id": 3099,
+ "start": 2686.96,
+ "end": 2687.24,
+ "text": "bottom"
+ },
+ {
+ "id": 3100,
+ "start": 2687.24,
+ "end": 2687.5,
+ "text": "of"
+ },
+ {
+ "id": 3101,
+ "start": 2687.5,
+ "end": 2688.04,
+ "text": "exactly"
+ },
+ {
+ "id": 3102,
+ "start": 2688.04,
+ "end": 2688.24,
+ "text": "what"
+ },
+ {
+ "id": 3103,
+ "start": 2688.24,
+ "end": 2688.68,
+ "text": "Cambridge"
+ },
+ {
+ "id": 3104,
+ "start": 2688.68,
+ "end": 2689.1,
+ "text": "Analytica"
+ },
+ {
+ "id": 3105,
+ "start": 2689.1,
+ "end": 2689.4,
+ "text": "did"
+ },
+ {
+ "id": 3106,
+ "start": 2689.4,
+ "end": 2690.22,
+ "text": "and"
+ },
+ {
+ "id": 3107,
+ "start": 2690.22,
+ "end": 2690.52,
+ "text": "telling"
+ },
+ {
+ "id": 3108,
+ "start": 2690.52,
+ "end": 2690.88,
+ "text": "everyone"
+ },
+ {
+ "id": 3109,
+ "start": 2690.88,
+ "end": 2691.72,
+ "text": "affected."
+ },
+ {
+ "id": 3110,
+ "start": 2691.72,
+ "end": 2692.34,
+ "text": "What"
+ },
+ {
+ "id": 3111,
+ "start": 2692.34,
+ "end": 2692.48,
+ "text": "we"
+ },
+ {
+ "id": 3112,
+ "start": 2692.48,
+ "end": 2692.62,
+ "text": "know"
+ },
+ {
+ "id": 3113,
+ "start": 2692.62,
+ "end": 2692.82,
+ "text": "now"
+ },
+ {
+ "id": 3114,
+ "start": 2692.82,
+ "end": 2693.34,
+ "text": "is"
+ },
+ {
+ "id": 3115,
+ "start": 2693.34,
+ "end": 2693.52,
+ "text": "that"
+ },
+ {
+ "id": 3116,
+ "start": 2693.52,
+ "end": 2693.88,
+ "text": "Cambridge"
+ },
+ {
+ "id": 3117,
+ "start": 2693.88,
+ "end": 2694.26,
+ "text": "Analytica"
+ },
+ {
+ "id": 3118,
+ "start": 2694.26,
+ "end": 2695.1,
+ "text": "improperly"
+ },
+ {
+ "id": 3119,
+ "start": 2695.1,
+ "end": 2695.6,
+ "text": "accessed"
+ },
+ {
+ "id": 3120,
+ "start": 2695.6,
+ "end": 2696.14,
+ "text": "some"
+ },
+ {
+ "id": 3121,
+ "start": 2696.14,
+ "end": 2696.68,
+ "text": "information"
+ },
+ {
+ "id": 3122,
+ "start": 2696.68,
+ "end": 2697.04,
+ "text": "about"
+ },
+ {
+ "id": 3123,
+ "start": 2697.04,
+ "end": 2697.52,
+ "text": "millions"
+ },
+ {
+ "id": 3124,
+ "start": 2697.52,
+ "end": 2697.66,
+ "text": "of"
+ },
+ {
+ "id": 3125,
+ "start": 2697.66,
+ "end": 2698.08,
+ "text": "Facebook"
+ },
+ {
+ "id": 3126,
+ "start": 2698.08,
+ "end": 2698.44,
+ "text": "members"
+ },
+ {
+ "id": 3127,
+ "start": 2698.44,
+ "end": 2699.2,
+ "text": "by"
+ },
+ {
+ "id": 3128,
+ "start": 2699.2,
+ "end": 2699.54,
+ "text": "buying"
+ },
+ {
+ "id": 3129,
+ "start": 2699.54,
+ "end": 2699.68,
+ "text": "it"
+ },
+ {
+ "id": 3130,
+ "start": 2699.68,
+ "end": 2700.28,
+ "text": "from"
+ },
+ {
+ "id": 3131,
+ "start": 2700.28,
+ "end": 2700.38,
+ "text": "an"
+ },
+ {
+ "id": 3132,
+ "start": 2700.38,
+ "end": 2700.54,
+ "text": "app"
+ },
+ {
+ "id": 3133,
+ "start": 2700.54,
+ "end": 2701.72,
+ "text": "developer,"
+ },
+ {
+ "id": 3134,
+ "start": 2701.72,
+ "end": 2702.6,
+ "text": "that"
+ },
+ {
+ "id": 3135,
+ "start": 2702.6,
+ "end": 2704.14,
+ "text": "information."
+ },
+ {
+ "id": 3136,
+ "start": 2704.14,
+ "end": 2705.12,
+ "text": "This"
+ },
+ {
+ "id": 3137,
+ "start": 2705.12,
+ "end": 2705.3,
+ "text": "was"
+ },
+ {
+ "id": 3138,
+ "start": 2705.3,
+ "end": 2705.76,
+ "text": "information"
+ },
+ {
+ "id": 3139,
+ "start": 2705.76,
+ "end": 2705.94,
+ "text": "that"
+ },
+ {
+ "id": 3140,
+ "start": 2705.94,
+ "end": 2706.22,
+ "text": "people"
+ },
+ {
+ "id": 3141,
+ "start": 2706.22,
+ "end": 2706.68,
+ "text": "generally"
+ },
+ {
+ "id": 3142,
+ "start": 2706.68,
+ "end": 2706.92,
+ "text": "share"
+ },
+ {
+ "id": 3143,
+ "start": 2706.92,
+ "end": 2707.42,
+ "text": "publicly"
+ },
+ {
+ "id": 3144,
+ "start": 2707.42,
+ "end": 2707.68,
+ "text": "on"
+ },
+ {
+ "id": 3145,
+ "start": 2707.68,
+ "end": 2707.88,
+ "text": "their"
+ },
+ {
+ "id": 3146,
+ "start": 2707.88,
+ "end": 2708.24,
+ "text": "Facebook"
+ },
+ {
+ "id": 3147,
+ "start": 2708.24,
+ "end": 2708.62,
+ "text": "pages,"
+ },
+ {
+ "id": 3148,
+ "start": 2708.62,
+ "end": 2708.84,
+ "text": "like"
+ },
+ {
+ "id": 3149,
+ "start": 2708.84,
+ "end": 2709.28,
+ "text": "names"
+ },
+ {
+ "id": 3150,
+ "start": 2709.28,
+ "end": 2710.16,
+ "text": "and"
+ },
+ {
+ "id": 3151,
+ "start": 2710.16,
+ "end": 2710.8,
+ "text": "profile"
+ },
+ {
+ "id": 3152,
+ "start": 2710.8,
+ "end": 2711.14,
+ "text": "picture"
+ },
+ {
+ "id": 3153,
+ "start": 2711.14,
+ "end": 2711.44,
+ "text": "and"
+ },
+ {
+ "id": 3154,
+ "start": 2711.44,
+ "end": 2711.56,
+ "text": "the"
+ },
+ {
+ "id": 3155,
+ "start": 2711.56,
+ "end": 2711.9,
+ "text": "pages"
+ },
+ {
+ "id": 3156,
+ "start": 2711.9,
+ "end": 2712.12,
+ "text": "they"
+ },
+ {
+ "id": 3157,
+ "start": 2712.12,
+ "end": 2713.16,
+ "text": "follow."
+ },
+ {
+ "id": 3158,
+ "start": 2713.16,
+ "end": 2714.02,
+ "text": "When"
+ },
+ {
+ "id": 3159,
+ "start": 2714.02,
+ "end": 2714.12,
+ "text": "we"
+ },
+ {
+ "id": 3160,
+ "start": 2714.12,
+ "end": 2714.38,
+ "text": "first"
+ },
+ {
+ "id": 3161,
+ "start": 2714.38,
+ "end": 2714.98,
+ "text": "contacted"
+ },
+ {
+ "id": 3162,
+ "start": 2714.98,
+ "end": 2715.34,
+ "text": "Cambridge"
+ },
+ {
+ "id": 3163,
+ "start": 2715.34,
+ "end": 2715.74,
+ "text": "Analytica."
+ },
+ {
+ "id": 3164,
+ "start": 2715.74,
+ "end": 2716.72,
+ "text": "They"
+ },
+ {
+ "id": 3165,
+ "start": 2716.72,
+ "end": 2716.94,
+ "text": "told"
+ },
+ {
+ "id": 3166,
+ "start": 2716.94,
+ "end": 2717.08,
+ "text": "us"
+ },
+ {
+ "id": 3167,
+ "start": 2717.08,
+ "end": 2717.24,
+ "text": "that"
+ },
+ {
+ "id": 3168,
+ "start": 2717.24,
+ "end": 2717.38,
+ "text": "they"
+ },
+ {
+ "id": 3169,
+ "start": 2717.38,
+ "end": 2717.48,
+ "text": "had"
+ },
+ {
+ "id": 3170,
+ "start": 2717.48,
+ "end": 2717.8,
+ "text": "deleted"
+ },
+ {
+ "id": 3171,
+ "start": 2717.8,
+ "end": 2717.92,
+ "text": "the"
+ },
+ {
+ "id": 3172,
+ "start": 2717.92,
+ "end": 2718.44,
+ "text": "data"
+ },
+ {
+ "id": 3173,
+ "start": 2718.44,
+ "end": 2719.4,
+ "text": "about"
+ },
+ {
+ "id": 3174,
+ "start": 2719.4,
+ "end": 2719.48,
+ "text": "a"
+ },
+ {
+ "id": 3175,
+ "start": 2719.48,
+ "end": 2719.68,
+ "text": "month"
+ },
+ {
+ "id": 3176,
+ "start": 2719.68,
+ "end": 2719.86,
+ "text": "ago."
+ },
+ {
+ "id": 3177,
+ "start": 2719.86,
+ "end": 2720.28,
+ "text": "We"
+ },
+ {
+ "id": 3178,
+ "start": 2720.28,
+ "end": 2720.48,
+ "text": "heard"
+ },
+ {
+ "id": 3179,
+ "start": 2720.48,
+ "end": 2720.68,
+ "text": "new"
+ },
+ {
+ "id": 3180,
+ "start": 2720.68,
+ "end": 2721.12,
+ "text": "reports"
+ },
+ {
+ "id": 3181,
+ "start": 2721.12,
+ "end": 2721.56,
+ "text": "that"
+ },
+ {
+ "id": 3182,
+ "start": 2721.56,
+ "end": 2722.04,
+ "text": "suggested"
+ },
+ {
+ "id": 3183,
+ "start": 2722.04,
+ "end": 2722.18,
+ "text": "that"
+ },
+ {
+ "id": 3184,
+ "start": 2722.18,
+ "end": 2722.44,
+ "text": "wasn't"
+ },
+ {
+ "id": 3185,
+ "start": 2722.44,
+ "end": 2722.72,
+ "text": "true."
+ },
+ {
+ "id": 3186,
+ "start": 2722.72,
+ "end": 2723.68,
+ "text": "And"
+ },
+ {
+ "id": 3187,
+ "start": 2723.68,
+ "end": 2724,
+ "text": "now"
+ },
+ {
+ "id": 3188,
+ "start": 2724,
+ "end": 2724.32,
+ "text": "we're"
+ },
+ {
+ "id": 3189,
+ "start": 2724.32,
+ "end": 2724.56,
+ "text": "working"
+ },
+ {
+ "id": 3190,
+ "start": 2724.56,
+ "end": 2724.7,
+ "text": "with"
+ },
+ {
+ "id": 3191,
+ "start": 2724.7,
+ "end": 2725.12,
+ "text": "governments"
+ },
+ {
+ "id": 3192,
+ "start": 2725.12,
+ "end": 2725.24,
+ "text": "in"
+ },
+ {
+ "id": 3193,
+ "start": 2725.24,
+ "end": 2725.36,
+ "text": "the"
+ },
+ {
+ "id": 3194,
+ "start": 2725.36,
+ "end": 2725.48,
+ "text": "U"
+ },
+ {
+ "id": 3195,
+ "start": 2725.48,
+ "end": 2725.6,
+ "text": "s"
+ },
+ {
+ "id": 3196,
+ "start": 2725.6,
+ "end": 2725.88,
+ "text": "the"
+ },
+ {
+ "id": 3197,
+ "start": 2725.88,
+ "end": 2726.34,
+ "text": "UK"
+ },
+ {
+ "id": 3198,
+ "start": 2726.34,
+ "end": 2727,
+ "text": "and"
+ },
+ {
+ "id": 3199,
+ "start": 2727,
+ "end": 2727.26,
+ "text": "around"
+ },
+ {
+ "id": 3200,
+ "start": 2727.26,
+ "end": 2727.38,
+ "text": "the"
+ },
+ {
+ "id": 3201,
+ "start": 2727.38,
+ "end": 2727.62,
+ "text": "world"
+ },
+ {
+ "id": 3202,
+ "start": 2727.62,
+ "end": 2727.86,
+ "text": "to"
+ },
+ {
+ "id": 3203,
+ "start": 2727.86,
+ "end": 2728,
+ "text": "do"
+ },
+ {
+ "id": 3204,
+ "start": 2728,
+ "end": 2728.08,
+ "text": "a"
+ },
+ {
+ "id": 3205,
+ "start": 2728.08,
+ "end": 2728.36,
+ "text": "full"
+ },
+ {
+ "id": 3206,
+ "start": 2728.36,
+ "end": 2728.66,
+ "text": "audit"
+ },
+ {
+ "id": 3207,
+ "start": 2728.66,
+ "end": 2728.88,
+ "text": "of"
+ },
+ {
+ "id": 3208,
+ "start": 2728.88,
+ "end": 2729.04,
+ "text": "what"
+ },
+ {
+ "id": 3209,
+ "start": 2729.04,
+ "end": 2729.3,
+ "text": "they've"
+ },
+ {
+ "id": 3210,
+ "start": 2729.3,
+ "end": 2729.52,
+ "text": "done."
+ },
+ {
+ "id": 3211,
+ "start": 2729.52,
+ "end": 2729.98,
+ "text": "And"
+ },
+ {
+ "id": 3212,
+ "start": 2729.98,
+ "end": 2730.08,
+ "text": "to"
+ },
+ {
+ "id": 3213,
+ "start": 2730.08,
+ "end": 2730.26,
+ "text": "make"
+ },
+ {
+ "id": 3214,
+ "start": 2730.26,
+ "end": 2730.44,
+ "text": "sure"
+ },
+ {
+ "id": 3215,
+ "start": 2730.44,
+ "end": 2730.64,
+ "text": "they"
+ },
+ {
+ "id": 3216,
+ "start": 2730.64,
+ "end": 2730.78,
+ "text": "get"
+ },
+ {
+ "id": 3217,
+ "start": 2730.78,
+ "end": 2730.94,
+ "text": "rid"
+ },
+ {
+ "id": 3218,
+ "start": 2730.94,
+ "end": 2731.02,
+ "text": "of"
+ },
+ {
+ "id": 3219,
+ "start": 2731.02,
+ "end": 2731.36,
+ "text": "any"
+ },
+ {
+ "id": 3220,
+ "start": 2731.36,
+ "end": 2731.62,
+ "text": "data"
+ },
+ {
+ "id": 3221,
+ "start": 2731.62,
+ "end": 2731.8,
+ "text": "they"
+ },
+ {
+ "id": 3222,
+ "start": 2731.8,
+ "end": 2732.02,
+ "text": "may"
+ },
+ {
+ "id": 3223,
+ "start": 2732.02,
+ "end": 2732.26,
+ "text": "still"
+ },
+ {
+ "id": 3224,
+ "start": 2732.26,
+ "end": 2733.16,
+ "text": "have"
+ },
+ {
+ "id": 3225,
+ "start": 2733.16,
+ "end": 2734.38,
+ "text": "second"
+ },
+ {
+ "id": 3226,
+ "start": 2734.38,
+ "end": 2735.36,
+ "text": "to"
+ },
+ {
+ "id": 3227,
+ "start": 2735.36,
+ "end": 2735.52,
+ "text": "make"
+ },
+ {
+ "id": 3228,
+ "start": 2735.52,
+ "end": 2735.7,
+ "text": "sure"
+ },
+ {
+ "id": 3229,
+ "start": 2735.7,
+ "end": 2735.92,
+ "text": "no"
+ },
+ {
+ "id": 3230,
+ "start": 2735.92,
+ "end": 2736.24,
+ "text": "other"
+ },
+ {
+ "id": 3231,
+ "start": 2736.24,
+ "end": 2736.46,
+ "text": "app"
+ },
+ {
+ "id": 3232,
+ "start": 2736.46,
+ "end": 2736.94,
+ "text": "developers"
+ },
+ {
+ "id": 3233,
+ "start": 2736.94,
+ "end": 2737.08,
+ "text": "out"
+ },
+ {
+ "id": 3234,
+ "start": 2737.08,
+ "end": 2737.28,
+ "text": "there"
+ },
+ {
+ "id": 3235,
+ "start": 2737.28,
+ "end": 2737.38,
+ "text": "are"
+ },
+ {
+ "id": 3236,
+ "start": 2737.38,
+ "end": 2737.88,
+ "text": "misusing"
+ },
+ {
+ "id": 3237,
+ "start": 2737.88,
+ "end": 2738.2,
+ "text": "data."
+ },
+ {
+ "id": 3238,
+ "start": 2738.2,
+ "end": 2738.82,
+ "text": "We"
+ },
+ {
+ "id": 3239,
+ "start": 2738.82,
+ "end": 2738.94,
+ "text": "are"
+ },
+ {
+ "id": 3240,
+ "start": 2738.94,
+ "end": 2739.08,
+ "text": "now"
+ },
+ {
+ "id": 3241,
+ "start": 2739.08,
+ "end": 2739.74,
+ "text": "investigating"
+ },
+ {
+ "id": 3242,
+ "start": 2739.74,
+ "end": 2740.28,
+ "text": "every"
+ },
+ {
+ "id": 3243,
+ "start": 2740.28,
+ "end": 2740.6,
+ "text": "single"
+ },
+ {
+ "id": 3244,
+ "start": 2740.6,
+ "end": 2740.84,
+ "text": "app"
+ },
+ {
+ "id": 3245,
+ "start": 2740.84,
+ "end": 2741.08,
+ "text": "that"
+ },
+ {
+ "id": 3246,
+ "start": 2741.08,
+ "end": 2741.28,
+ "text": "had"
+ },
+ {
+ "id": 3247,
+ "start": 2741.28,
+ "end": 2741.68,
+ "text": "access"
+ },
+ {
+ "id": 3248,
+ "start": 2741.68,
+ "end": 2741.84,
+ "text": "to"
+ },
+ {
+ "id": 3249,
+ "start": 2741.84,
+ "end": 2741.92,
+ "text": "a"
+ },
+ {
+ "id": 3250,
+ "start": 2741.92,
+ "end": 2742.2,
+ "text": "large"
+ },
+ {
+ "id": 3251,
+ "start": 2742.2,
+ "end": 2742.44,
+ "text": "amount"
+ },
+ {
+ "id": 3252,
+ "start": 2742.44,
+ "end": 2742.54,
+ "text": "of"
+ },
+ {
+ "id": 3253,
+ "start": 2742.54,
+ "end": 2743,
+ "text": "information"
+ },
+ {
+ "id": 3254,
+ "start": 2743,
+ "end": 2743.12,
+ "text": "in"
+ },
+ {
+ "id": 3255,
+ "start": 2743.12,
+ "end": 2743.24,
+ "text": "the"
+ },
+ {
+ "id": 3256,
+ "start": 2743.24,
+ "end": 2744.06,
+ "text": "past."
+ },
+ {
+ "id": 3257,
+ "start": 2744.06,
+ "end": 2744.8,
+ "text": "And"
+ },
+ {
+ "id": 3258,
+ "start": 2744.8,
+ "end": 2745.1,
+ "text": "if"
+ },
+ {
+ "id": 3259,
+ "start": 2745.1,
+ "end": 2745.22,
+ "text": "we"
+ },
+ {
+ "id": 3260,
+ "start": 2745.22,
+ "end": 2745.52,
+ "text": "find"
+ },
+ {
+ "id": 3261,
+ "start": 2745.52,
+ "end": 2745.68,
+ "text": "that"
+ },
+ {
+ "id": 3262,
+ "start": 2745.68,
+ "end": 2745.98,
+ "text": "someone"
+ },
+ {
+ "id": 3263,
+ "start": 2745.98,
+ "end": 2746.54,
+ "text": "improperly"
+ },
+ {
+ "id": 3264,
+ "start": 2746.54,
+ "end": 2746.76,
+ "text": "used"
+ },
+ {
+ "id": 3265,
+ "start": 2746.76,
+ "end": 2747.08,
+ "text": "data"
+ },
+ {
+ "id": 3266,
+ "start": 2747.08,
+ "end": 2747.84,
+ "text": "we're"
+ },
+ {
+ "id": 3267,
+ "start": 2747.84,
+ "end": 2747.98,
+ "text": "going"
+ },
+ {
+ "id": 3268,
+ "start": 2747.98,
+ "end": 2748.06,
+ "text": "to"
+ },
+ {
+ "id": 3269,
+ "start": 2748.06,
+ "end": 2748.26,
+ "text": "ban"
+ },
+ {
+ "id": 3270,
+ "start": 2748.26,
+ "end": 2748.42,
+ "text": "them"
+ },
+ {
+ "id": 3271,
+ "start": 2748.42,
+ "end": 2748.62,
+ "text": "from"
+ },
+ {
+ "id": 3272,
+ "start": 2748.62,
+ "end": 2749.06,
+ "text": "Facebook"
+ },
+ {
+ "id": 3273,
+ "start": 2749.06,
+ "end": 2749.26,
+ "text": "and"
+ },
+ {
+ "id": 3274,
+ "start": 2749.26,
+ "end": 2749.44,
+ "text": "tell"
+ },
+ {
+ "id": 3275,
+ "start": 2749.44,
+ "end": 2749.76,
+ "text": "everyone"
+ },
+ {
+ "id": 3276,
+ "start": 2749.76,
+ "end": 2750.68,
+ "text": "affected"
+ },
+ {
+ "id": 3277,
+ "start": 2750.68,
+ "end": 2751.52,
+ "text": "third"
+ },
+ {
+ "id": 3278,
+ "start": 2751.52,
+ "end": 2752.5,
+ "text": "to"
+ },
+ {
+ "id": 3279,
+ "start": 2752.5,
+ "end": 2752.8,
+ "text": "prevent"
+ },
+ {
+ "id": 3280,
+ "start": 2752.8,
+ "end": 2752.96,
+ "text": "this"
+ },
+ {
+ "id": 3281,
+ "start": 2752.96,
+ "end": 2753.14,
+ "text": "from"
+ },
+ {
+ "id": 3282,
+ "start": 2753.14,
+ "end": 2753.38,
+ "text": "ever"
+ },
+ {
+ "id": 3283,
+ "start": 2753.38,
+ "end": 2753.82,
+ "text": "happening"
+ },
+ {
+ "id": 3284,
+ "start": 2753.82,
+ "end": 2754.1,
+ "text": "again,"
+ },
+ {
+ "id": 3285,
+ "start": 2754.1,
+ "end": 2754.48,
+ "text": "going"
+ },
+ {
+ "id": 3286,
+ "start": 2754.48,
+ "end": 2754.9,
+ "text": "forward"
+ },
+ {
+ "id": 3287,
+ "start": 2754.9,
+ "end": 2755.54,
+ "text": "we're"
+ },
+ {
+ "id": 3288,
+ "start": 2755.54,
+ "end": 2755.78,
+ "text": "making"
+ },
+ {
+ "id": 3289,
+ "start": 2755.78,
+ "end": 2755.96,
+ "text": "sure"
+ },
+ {
+ "id": 3290,
+ "start": 2755.96,
+ "end": 2756.12,
+ "text": "that"
+ },
+ {
+ "id": 3291,
+ "start": 2756.12,
+ "end": 2756.58,
+ "text": "developers"
+ },
+ {
+ "id": 3292,
+ "start": 2756.58,
+ "end": 2756.8,
+ "text": "can"
+ },
+ {
+ "id": 3293,
+ "start": 2756.8,
+ "end": 2757.2,
+ "text": "access"
+ },
+ {
+ "id": 3294,
+ "start": 2757.2,
+ "end": 2757.36,
+ "text": "as"
+ },
+ {
+ "id": 3295,
+ "start": 2757.36,
+ "end": 2757.56,
+ "text": "much"
+ },
+ {
+ "id": 3296,
+ "start": 2757.56,
+ "end": 2758.1,
+ "text": "information."
+ },
+ {
+ "id": 3297,
+ "start": 2758.1,
+ "end": 2758.36,
+ "text": "Now,"
+ },
+ {
+ "id": 3298,
+ "start": 2758.36,
+ "end": 2759.46,
+ "text": "the"
+ },
+ {
+ "id": 3299,
+ "start": 2759.46,
+ "end": 2759.64,
+ "text": "good"
+ },
+ {
+ "id": 3300,
+ "start": 2759.64,
+ "end": 2759.86,
+ "text": "news"
+ },
+ {
+ "id": 3301,
+ "start": 2759.86,
+ "end": 2760.16,
+ "text": "here"
+ },
+ {
+ "id": 3302,
+ "start": 2760.16,
+ "end": 2760.56,
+ "text": "is"
+ },
+ {
+ "id": 3303,
+ "start": 2760.56,
+ "end": 2760.72,
+ "text": "that"
+ },
+ {
+ "id": 3304,
+ "start": 2760.72,
+ "end": 2760.82,
+ "text": "we"
+ },
+ {
+ "id": 3305,
+ "start": 2760.82,
+ "end": 2761.34,
+ "text": "already"
+ },
+ {
+ "id": 3306,
+ "start": 2761.34,
+ "end": 2761.54,
+ "text": "made"
+ },
+ {
+ "id": 3307,
+ "start": 2761.54,
+ "end": 2761.92,
+ "text": "big"
+ },
+ {
+ "id": 3308,
+ "start": 2761.92,
+ "end": 2762.28,
+ "text": "changes"
+ },
+ {
+ "id": 3309,
+ "start": 2762.28,
+ "end": 2762.38,
+ "text": "to"
+ },
+ {
+ "id": 3310,
+ "start": 2762.38,
+ "end": 2762.54,
+ "text": "our"
+ },
+ {
+ "id": 3311,
+ "start": 2762.54,
+ "end": 2763.04,
+ "text": "platform."
+ },
+ {
+ "id": 3312,
+ "start": 2763.04,
+ "end": 2763.63,
+ "text": "And"
+ },
+ {
+ "id": 3313,
+ "start": 2763.63,
+ "end": 2764.59,
+ "text": "that"
+ },
+ {
+ "id": 3314,
+ "start": 2764.59,
+ "end": 2764.77,
+ "text": "would"
+ },
+ {
+ "id": 3315,
+ "start": 2764.77,
+ "end": 2764.89,
+ "text": "have"
+ },
+ {
+ "id": 3316,
+ "start": 2764.89,
+ "end": 2765.35,
+ "text": "prevented"
+ },
+ {
+ "id": 3317,
+ "start": 2765.35,
+ "end": 2765.55,
+ "text": "this"
+ },
+ {
+ "id": 3318,
+ "start": 2765.55,
+ "end": 2766.53,
+ "text": "specific"
+ },
+ {
+ "id": 3319,
+ "start": 2766.53,
+ "end": 2767.13,
+ "text": "situation"
+ },
+ {
+ "id": 3320,
+ "start": 2767.13,
+ "end": 2767.85,
+ "text": "with"
+ },
+ {
+ "id": 3321,
+ "start": 2767.85,
+ "end": 2768.15,
+ "text": "Cambridge"
+ },
+ {
+ "id": 3322,
+ "start": 2768.15,
+ "end": 2768.57,
+ "text": "Analytica"
+ },
+ {
+ "id": 3323,
+ "start": 2768.57,
+ "end": 2769.03,
+ "text": "from"
+ },
+ {
+ "id": 3324,
+ "start": 2769.03,
+ "end": 2769.39,
+ "text": "occurring"
+ },
+ {
+ "id": 3325,
+ "start": 2769.39,
+ "end": 2769.65,
+ "text": "again"
+ },
+ {
+ "id": 3326,
+ "start": 2769.65,
+ "end": 2770.09,
+ "text": "today."
+ },
+ {
+ "id": 3327,
+ "start": 2770.09,
+ "end": 2771.03,
+ "text": "But"
+ },
+ {
+ "id": 3328,
+ "start": 2771.03,
+ "end": 2771.29,
+ "text": "there's"
+ },
+ {
+ "id": 3329,
+ "start": 2771.29,
+ "end": 2771.45,
+ "text": "more"
+ },
+ {
+ "id": 3330,
+ "start": 2771.45,
+ "end": 2771.55,
+ "text": "to"
+ },
+ {
+ "id": 3331,
+ "start": 2771.55,
+ "end": 2771.77,
+ "text": "do."
+ },
+ {
+ "id": 3332,
+ "start": 2771.77,
+ "end": 2772.33,
+ "text": "And"
+ },
+ {
+ "id": 3333,
+ "start": 2772.33,
+ "end": 2772.47,
+ "text": "you"
+ },
+ {
+ "id": 3334,
+ "start": 2772.47,
+ "end": 2772.63,
+ "text": "can"
+ },
+ {
+ "id": 3335,
+ "start": 2772.63,
+ "end": 2772.99,
+ "text": "find"
+ },
+ {
+ "id": 3336,
+ "start": 2772.99,
+ "end": 2773.23,
+ "text": "more"
+ },
+ {
+ "id": 3337,
+ "start": 2773.23,
+ "end": 2773.65,
+ "text": "details"
+ },
+ {
+ "id": 3338,
+ "start": 2773.65,
+ "end": 2773.83,
+ "text": "on"
+ },
+ {
+ "id": 3339,
+ "start": 2773.83,
+ "end": 2773.95,
+ "text": "the"
+ },
+ {
+ "id": 3340,
+ "start": 2773.95,
+ "end": 2774.21,
+ "text": "steps"
+ },
+ {
+ "id": 3341,
+ "start": 2774.21,
+ "end": 2774.41,
+ "text": "we're"
+ },
+ {
+ "id": 3342,
+ "start": 2774.41,
+ "end": 2774.69,
+ "text": "taking"
+ },
+ {
+ "id": 3343,
+ "start": 2774.69,
+ "end": 2774.89,
+ "text": "in"
+ },
+ {
+ "id": 3344,
+ "start": 2774.89,
+ "end": 2775.05,
+ "text": "my"
+ },
+ {
+ "id": 3345,
+ "start": 2775.05,
+ "end": 2775.31,
+ "text": "written"
+ },
+ {
+ "id": 3346,
+ "start": 2775.31,
+ "end": 2776.58,
+ "text": "statement,"
+ },
+ {
+ "id": 3347,
+ "start": 2776.58,
+ "end": 2777.52,
+ "text": "my"
+ },
+ {
+ "id": 3348,
+ "start": 2777.52,
+ "end": 2777.78,
+ "text": "top"
+ },
+ {
+ "id": 3349,
+ "start": 2777.78,
+ "end": 2778.36,
+ "text": "priority"
+ },
+ {
+ "id": 3350,
+ "start": 2778.36,
+ "end": 2778.96,
+ "text": "has"
+ },
+ {
+ "id": 3351,
+ "start": 2778.96,
+ "end": 2779.38,
+ "text": "always"
+ },
+ {
+ "id": 3352,
+ "start": 2779.38,
+ "end": 2779.64,
+ "text": "been"
+ },
+ {
+ "id": 3353,
+ "start": 2779.64,
+ "end": 2779.9,
+ "text": "our"
+ },
+ {
+ "id": 3354,
+ "start": 2779.9,
+ "end": 2780.36,
+ "text": "social"
+ },
+ {
+ "id": 3355,
+ "start": 2780.36,
+ "end": 2780.66,
+ "text": "mission"
+ },
+ {
+ "id": 3356,
+ "start": 2780.66,
+ "end": 2781.28,
+ "text": "of"
+ },
+ {
+ "id": 3357,
+ "start": 2781.28,
+ "end": 2781.74,
+ "text": "connecting"
+ },
+ {
+ "id": 3358,
+ "start": 2781.74,
+ "end": 2782.04,
+ "text": "people"
+ },
+ {
+ "id": 3359,
+ "start": 2782.04,
+ "end": 2782.9,
+ "text": "building"
+ },
+ {
+ "id": 3360,
+ "start": 2782.9,
+ "end": 2783.34,
+ "text": "community"
+ },
+ {
+ "id": 3361,
+ "start": 2783.34,
+ "end": 2783.9,
+ "text": "and"
+ },
+ {
+ "id": 3362,
+ "start": 2783.9,
+ "end": 2784.2,
+ "text": "bringing"
+ },
+ {
+ "id": 3363,
+ "start": 2784.2,
+ "end": 2784.32,
+ "text": "the"
+ },
+ {
+ "id": 3364,
+ "start": 2784.32,
+ "end": 2784.56,
+ "text": "world"
+ },
+ {
+ "id": 3365,
+ "start": 2784.56,
+ "end": 2784.96,
+ "text": "closer"
+ },
+ {
+ "id": 3366,
+ "start": 2784.96,
+ "end": 2786,
+ "text": "together,"
+ },
+ {
+ "id": 3367,
+ "start": 2786,
+ "end": 2786.98,
+ "text": "advertisers"
+ },
+ {
+ "id": 3368,
+ "start": 2786.98,
+ "end": 2787.12,
+ "text": "and"
+ },
+ {
+ "id": 3369,
+ "start": 2787.12,
+ "end": 2787.7,
+ "text": "developers"
+ },
+ {
+ "id": 3370,
+ "start": 2787.7,
+ "end": 2788.16,
+ "text": "will"
+ },
+ {
+ "id": 3371,
+ "start": 2788.16,
+ "end": 2788.5,
+ "text": "never"
+ },
+ {
+ "id": 3372,
+ "start": 2788.5,
+ "end": 2788.78,
+ "text": "take"
+ },
+ {
+ "id": 3373,
+ "start": 2788.78,
+ "end": 2789.26,
+ "text": "priority"
+ },
+ {
+ "id": 3374,
+ "start": 2789.26,
+ "end": 2789.56,
+ "text": "over"
+ },
+ {
+ "id": 3375,
+ "start": 2789.56,
+ "end": 2789.82,
+ "text": "that."
+ },
+ {
+ "id": 3376,
+ "start": 2789.82,
+ "end": 2790.24,
+ "text": "As"
+ },
+ {
+ "id": 3377,
+ "start": 2790.24,
+ "end": 2790.46,
+ "text": "long"
+ },
+ {
+ "id": 3378,
+ "start": 2790.46,
+ "end": 2790.6,
+ "text": "as"
+ },
+ {
+ "id": 3379,
+ "start": 2790.6,
+ "end": 2790.88,
+ "text": "I'm"
+ },
+ {
+ "id": 3380,
+ "start": 2790.88,
+ "end": 2791.2,
+ "text": "running"
+ },
+ {
+ "id": 3381,
+ "start": 2791.2,
+ "end": 2792.46,
+ "text": "Facebook."
+ },
+ {
+ "id": 3382,
+ "start": 2792.46,
+ "end": 2792.74,
+ "text": "I"
+ },
+ {
+ "id": 3383,
+ "start": 2792.74,
+ "end": 2793.72,
+ "text": "started"
+ },
+ {
+ "id": 3384,
+ "start": 2793.72,
+ "end": 2794.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 3385,
+ "start": 2794.1,
+ "end": 2794.22,
+ "text": "when"
+ },
+ {
+ "id": 3386,
+ "start": 2794.22,
+ "end": 2794.28,
+ "text": "I"
+ },
+ {
+ "id": 3387,
+ "start": 2794.28,
+ "end": 2794.38,
+ "text": "was"
+ },
+ {
+ "id": 3388,
+ "start": 2794.38,
+ "end": 2794.5,
+ "text": "in"
+ },
+ {
+ "id": 3389,
+ "start": 2794.5,
+ "end": 2795.12,
+ "text": "college"
+ },
+ {
+ "id": 3390,
+ "start": 2795.12,
+ "end": 2796.1,
+ "text": "we've"
+ },
+ {
+ "id": 3391,
+ "start": 2796.1,
+ "end": 2796.22,
+ "text": "come"
+ },
+ {
+ "id": 3392,
+ "start": 2796.22,
+ "end": 2796.28,
+ "text": "a"
+ },
+ {
+ "id": 3393,
+ "start": 2796.28,
+ "end": 2796.44,
+ "text": "long"
+ },
+ {
+ "id": 3394,
+ "start": 2796.44,
+ "end": 2796.62,
+ "text": "way"
+ },
+ {
+ "id": 3395,
+ "start": 2796.62,
+ "end": 2796.86,
+ "text": "since"
+ },
+ {
+ "id": 3396,
+ "start": 2796.86,
+ "end": 2797.02,
+ "text": "then."
+ },
+ {
+ "id": 3397,
+ "start": 2797.02,
+ "end": 2798.2,
+ "text": "We"
+ },
+ {
+ "id": 3398,
+ "start": 2798.2,
+ "end": 2798.44,
+ "text": "now"
+ },
+ {
+ "id": 3399,
+ "start": 2798.44,
+ "end": 2798.8,
+ "text": "serve"
+ },
+ {
+ "id": 3400,
+ "start": 2798.8,
+ "end": 2799,
+ "text": "more"
+ },
+ {
+ "id": 3401,
+ "start": 2799,
+ "end": 2799.14,
+ "text": "than"
+ },
+ {
+ "id": 3402,
+ "start": 2799.14,
+ "end": 2799.78,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 3403,
+ "start": 2799.78,
+ "end": 2800.06,
+ "text": "people"
+ },
+ {
+ "id": 3404,
+ "start": 2800.06,
+ "end": 2800.6,
+ "text": "around"
+ },
+ {
+ "id": 3405,
+ "start": 2800.6,
+ "end": 2800.7,
+ "text": "the"
+ },
+ {
+ "id": 3406,
+ "start": 2800.7,
+ "end": 2801,
+ "text": "world."
+ },
+ {
+ "id": 3407,
+ "start": 2801,
+ "end": 2801.9,
+ "text": "And"
+ },
+ {
+ "id": 3408,
+ "start": 2801.9,
+ "end": 2802.14,
+ "text": "every"
+ },
+ {
+ "id": 3409,
+ "start": 2802.14,
+ "end": 2802.36,
+ "text": "day,"
+ },
+ {
+ "id": 3410,
+ "start": 2802.36,
+ "end": 2803.34,
+ "text": "people"
+ },
+ {
+ "id": 3411,
+ "start": 2803.34,
+ "end": 2803.56,
+ "text": "use"
+ },
+ {
+ "id": 3412,
+ "start": 2803.56,
+ "end": 2803.76,
+ "text": "our"
+ },
+ {
+ "id": 3413,
+ "start": 2803.76,
+ "end": 2804.28,
+ "text": "services"
+ },
+ {
+ "id": 3414,
+ "start": 2804.28,
+ "end": 2804.44,
+ "text": "to"
+ },
+ {
+ "id": 3415,
+ "start": 2804.44,
+ "end": 2804.66,
+ "text": "stay"
+ },
+ {
+ "id": 3416,
+ "start": 2804.66,
+ "end": 2805.02,
+ "text": "connected"
+ },
+ {
+ "id": 3417,
+ "start": 2805.02,
+ "end": 2805.16,
+ "text": "with"
+ },
+ {
+ "id": 3418,
+ "start": 2805.16,
+ "end": 2805.26,
+ "text": "the"
+ },
+ {
+ "id": 3419,
+ "start": 2805.26,
+ "end": 2805.48,
+ "text": "people"
+ },
+ {
+ "id": 3420,
+ "start": 2805.48,
+ "end": 2805.64,
+ "text": "that"
+ },
+ {
+ "id": 3421,
+ "start": 2805.64,
+ "end": 2805.9,
+ "text": "matter"
+ },
+ {
+ "id": 3422,
+ "start": 2805.9,
+ "end": 2806,
+ "text": "to"
+ },
+ {
+ "id": 3423,
+ "start": 2806,
+ "end": 2806.18,
+ "text": "them"
+ },
+ {
+ "id": 3424,
+ "start": 2806.18,
+ "end": 2807.26,
+ "text": "most,"
+ },
+ {
+ "id": 3425,
+ "start": 2807.26,
+ "end": 2808.16,
+ "text": "I"
+ },
+ {
+ "id": 3426,
+ "start": 2808.16,
+ "end": 2808.54,
+ "text": "believe"
+ },
+ {
+ "id": 3427,
+ "start": 2808.54,
+ "end": 2808.92,
+ "text": "deeply"
+ },
+ {
+ "id": 3428,
+ "start": 2808.92,
+ "end": 2809.1,
+ "text": "in"
+ },
+ {
+ "id": 3429,
+ "start": 2809.1,
+ "end": 2809.28,
+ "text": "what"
+ },
+ {
+ "id": 3430,
+ "start": 2809.28,
+ "end": 2809.52,
+ "text": "we're"
+ },
+ {
+ "id": 3431,
+ "start": 2809.52,
+ "end": 2809.78,
+ "text": "doing."
+ },
+ {
+ "id": 3432,
+ "start": 2809.78,
+ "end": 2810.62,
+ "text": "And"
+ },
+ {
+ "id": 3433,
+ "start": 2810.62,
+ "end": 2810.76,
+ "text": "I"
+ },
+ {
+ "id": 3434,
+ "start": 2810.76,
+ "end": 2810.94,
+ "text": "know"
+ },
+ {
+ "id": 3435,
+ "start": 2810.94,
+ "end": 2811.96,
+ "text": "that"
+ },
+ {
+ "id": 3436,
+ "start": 2811.96,
+ "end": 2812.08,
+ "text": "when"
+ },
+ {
+ "id": 3437,
+ "start": 2812.08,
+ "end": 2812.2,
+ "text": "we"
+ },
+ {
+ "id": 3438,
+ "start": 2812.2,
+ "end": 2812.5,
+ "text": "address"
+ },
+ {
+ "id": 3439,
+ "start": 2812.5,
+ "end": 2812.72,
+ "text": "these"
+ },
+ {
+ "id": 3440,
+ "start": 2812.72,
+ "end": 2813.2,
+ "text": "challenges"
+ },
+ {
+ "id": 3441,
+ "start": 2813.2,
+ "end": 2813.98,
+ "text": "we'll"
+ },
+ {
+ "id": 3442,
+ "start": 2813.98,
+ "end": 2814.16,
+ "text": "look"
+ },
+ {
+ "id": 3443,
+ "start": 2814.16,
+ "end": 2814.44,
+ "text": "back"
+ },
+ {
+ "id": 3444,
+ "start": 2814.44,
+ "end": 2814.72,
+ "text": "and"
+ },
+ {
+ "id": 3445,
+ "start": 2814.72,
+ "end": 2814.94,
+ "text": "view,"
+ },
+ {
+ "id": 3446,
+ "start": 2814.94,
+ "end": 2815.26,
+ "text": "helping"
+ },
+ {
+ "id": 3447,
+ "start": 2815.26,
+ "end": 2815.52,
+ "text": "people"
+ },
+ {
+ "id": 3448,
+ "start": 2815.52,
+ "end": 2815.88,
+ "text": "connect"
+ },
+ {
+ "id": 3449,
+ "start": 2815.88,
+ "end": 2816.04,
+ "text": "and"
+ },
+ {
+ "id": 3450,
+ "start": 2816.04,
+ "end": 2816.3,
+ "text": "giving"
+ },
+ {
+ "id": 3451,
+ "start": 2816.3,
+ "end": 2816.5,
+ "text": "more"
+ },
+ {
+ "id": 3452,
+ "start": 2816.5,
+ "end": 2816.74,
+ "text": "people"
+ },
+ {
+ "id": 3453,
+ "start": 2816.74,
+ "end": 2816.86,
+ "text": "a"
+ },
+ {
+ "id": 3454,
+ "start": 2816.86,
+ "end": 2817.87,
+ "text": "voice"
+ },
+ {
+ "id": 3455,
+ "start": 2817.87,
+ "end": 2818.33,
+ "text": "positive"
+ },
+ {
+ "id": 3456,
+ "start": 2818.33,
+ "end": 2818.57,
+ "text": "force"
+ },
+ {
+ "id": 3457,
+ "start": 2818.57,
+ "end": 2818.69,
+ "text": "in"
+ },
+ {
+ "id": 3458,
+ "start": 2818.69,
+ "end": 2818.81,
+ "text": "the"
+ },
+ {
+ "id": 3459,
+ "start": 2818.81,
+ "end": 2819.01,
+ "text": "world."
+ },
+ {
+ "id": 3460,
+ "start": 2819.01,
+ "end": 2820.77,
+ "text": "I"
+ },
+ {
+ "id": 3461,
+ "start": 2820.77,
+ "end": 2821.11,
+ "text": "realized"
+ },
+ {
+ "id": 3462,
+ "start": 2821.11,
+ "end": 2821.23,
+ "text": "the"
+ },
+ {
+ "id": 3463,
+ "start": 2821.23,
+ "end": 2821.51,
+ "text": "issues"
+ },
+ {
+ "id": 3464,
+ "start": 2821.51,
+ "end": 2821.71,
+ "text": "we're"
+ },
+ {
+ "id": 3465,
+ "start": 2821.71,
+ "end": 2821.95,
+ "text": "talking"
+ },
+ {
+ "id": 3466,
+ "start": 2821.95,
+ "end": 2822.13,
+ "text": "about"
+ },
+ {
+ "id": 3467,
+ "start": 2822.13,
+ "end": 2822.33,
+ "text": "today"
+ },
+ {
+ "id": 3468,
+ "start": 2822.33,
+ "end": 2822.61,
+ "text": "aren't"
+ },
+ {
+ "id": 3469,
+ "start": 2822.61,
+ "end": 2822.77,
+ "text": "just"
+ },
+ {
+ "id": 3470,
+ "start": 2822.77,
+ "end": 2823.11,
+ "text": "issues"
+ },
+ {
+ "id": 3471,
+ "start": 2823.11,
+ "end": 2823.29,
+ "text": "for"
+ },
+ {
+ "id": 3472,
+ "start": 2823.29,
+ "end": 2823.71,
+ "text": "Facebook"
+ },
+ {
+ "id": 3473,
+ "start": 2823.71,
+ "end": 2823.81,
+ "text": "and"
+ },
+ {
+ "id": 3474,
+ "start": 2823.81,
+ "end": 2823.95,
+ "text": "our"
+ },
+ {
+ "id": 3475,
+ "start": 2823.95,
+ "end": 2824.43,
+ "text": "community,"
+ },
+ {
+ "id": 3476,
+ "start": 2824.43,
+ "end": 2825.27,
+ "text": "their"
+ },
+ {
+ "id": 3477,
+ "start": 2825.27,
+ "end": 2825.63,
+ "text": "issues"
+ },
+ {
+ "id": 3478,
+ "start": 2825.63,
+ "end": 2825.95,
+ "text": "and"
+ },
+ {
+ "id": 3479,
+ "start": 2825.95,
+ "end": 2826.45,
+ "text": "challenges"
+ },
+ {
+ "id": 3480,
+ "start": 2826.45,
+ "end": 2826.65,
+ "text": "for"
+ },
+ {
+ "id": 3481,
+ "start": 2826.65,
+ "end": 2826.83,
+ "text": "all"
+ },
+ {
+ "id": 3482,
+ "start": 2826.83,
+ "end": 2826.91,
+ "text": "of"
+ },
+ {
+ "id": 3483,
+ "start": 2826.91,
+ "end": 2827.11,
+ "text": "us"
+ },
+ {
+ "id": 3484,
+ "start": 2827.11,
+ "end": 2827.35,
+ "text": "as"
+ },
+ {
+ "id": 3485,
+ "start": 2827.35,
+ "end": 2828.48,
+ "text": "Americans."
+ },
+ {
+ "id": 3486,
+ "start": 2828.48,
+ "end": 2829.26,
+ "text": "Thank"
+ },
+ {
+ "id": 3487,
+ "start": 2829.26,
+ "end": 2829.38,
+ "text": "you"
+ },
+ {
+ "id": 3488,
+ "start": 2829.38,
+ "end": 2829.54,
+ "text": "for"
+ },
+ {
+ "id": 3489,
+ "start": 2829.54,
+ "end": 2829.8,
+ "text": "having"
+ },
+ {
+ "id": 3490,
+ "start": 2829.8,
+ "end": 2829.9,
+ "text": "me"
+ },
+ {
+ "id": 3491,
+ "start": 2829.9,
+ "end": 2830.1,
+ "text": "here"
+ },
+ {
+ "id": 3492,
+ "start": 2830.1,
+ "end": 2830.36,
+ "text": "today."
+ },
+ {
+ "id": 3493,
+ "start": 2830.36,
+ "end": 2831.22,
+ "text": "And"
+ },
+ {
+ "id": 3494,
+ "start": 2831.22,
+ "end": 2831.38,
+ "text": "I'm"
+ },
+ {
+ "id": 3495,
+ "start": 2831.38,
+ "end": 2831.58,
+ "text": "ready"
+ },
+ {
+ "id": 3496,
+ "start": 2831.58,
+ "end": 2831.7,
+ "text": "to"
+ },
+ {
+ "id": 3497,
+ "start": 2831.7,
+ "end": 2831.88,
+ "text": "take"
+ },
+ {
+ "id": 3498,
+ "start": 2831.88,
+ "end": 2832.02,
+ "text": "your"
+ },
+ {
+ "id": 3499,
+ "start": 2832.02,
+ "end": 2833.9,
+ "text": "questions"
+ },
+ {
+ "id": 3500,
+ "start": 2833.9,
+ "end": 2834.88,
+ "text": "I'll"
+ },
+ {
+ "id": 3501,
+ "start": 2834.88,
+ "end": 2835.28,
+ "text": "remind"
+ },
+ {
+ "id": 3502,
+ "start": 2835.28,
+ "end": 2835.78,
+ "text": "members"
+ },
+ {
+ "id": 3503,
+ "start": 2835.78,
+ "end": 2836.12,
+ "text": "that"
+ },
+ {
+ "id": 3504,
+ "start": 2836.12,
+ "end": 2836.48,
+ "text": "maybe"
+ },
+ {
+ "id": 3505,
+ "start": 2836.48,
+ "end": 2836.82,
+ "text": "weren't"
+ },
+ {
+ "id": 3506,
+ "start": 2836.82,
+ "end": 2837,
+ "text": "here."
+ },
+ {
+ "id": 3507,
+ "start": 2837,
+ "end": 2837.2,
+ "text": "When"
+ },
+ {
+ "id": 3508,
+ "start": 2837.2,
+ "end": 2837.32,
+ "text": "I"
+ },
+ {
+ "id": 3509,
+ "start": 2837.32,
+ "end": 2837.52,
+ "text": "had"
+ },
+ {
+ "id": 3510,
+ "start": 2837.52,
+ "end": 2837.68,
+ "text": "my"
+ },
+ {
+ "id": 3511,
+ "start": 2837.68,
+ "end": 2838.16,
+ "text": "opening"
+ },
+ {
+ "id": 3512,
+ "start": 2838.16,
+ "end": 2838.74,
+ "text": "comments"
+ },
+ {
+ "id": 3513,
+ "start": 2838.74,
+ "end": 2839.5,
+ "text": "that"
+ },
+ {
+ "id": 3514,
+ "start": 2839.5,
+ "end": 2839.66,
+ "text": "we"
+ },
+ {
+ "id": 3515,
+ "start": 2839.66,
+ "end": 2839.9,
+ "text": "are"
+ },
+ {
+ "id": 3516,
+ "start": 2839.9,
+ "end": 2840.52,
+ "text": "operating"
+ },
+ {
+ "id": 3517,
+ "start": 2840.52,
+ "end": 2840.82,
+ "text": "under"
+ },
+ {
+ "id": 3518,
+ "start": 2840.82,
+ "end": 2840.96,
+ "text": "the"
+ },
+ {
+ "id": 3519,
+ "start": 2840.96,
+ "end": 2842.1,
+ "text": "five"
+ },
+ {
+ "id": 3520,
+ "start": 2842.1,
+ "end": 2842.36,
+ "text": "minute"
+ },
+ {
+ "id": 3521,
+ "start": 2842.36,
+ "end": 2842.56,
+ "text": "rule."
+ },
+ {
+ "id": 3522,
+ "start": 2842.56,
+ "end": 2842.72,
+ "text": "And"
+ },
+ {
+ "id": 3523,
+ "start": 2842.72,
+ "end": 2842.94,
+ "text": "that"
+ },
+ {
+ "id": 3524,
+ "start": 2842.94,
+ "end": 2843.42,
+ "text": "applies"
+ },
+ {
+ "id": 3525,
+ "start": 2843.42,
+ "end": 2845.26,
+ "text": "to"
+ },
+ {
+ "id": 3526,
+ "start": 2845.26,
+ "end": 2846.26,
+ "text": "the"
+ },
+ {
+ "id": 3527,
+ "start": 2846.26,
+ "end": 2846.58,
+ "text": "five"
+ },
+ {
+ "id": 3528,
+ "start": 2846.58,
+ "end": 2846.94,
+ "text": "minute"
+ },
+ {
+ "id": 3529,
+ "start": 2846.94,
+ "end": 2847.2,
+ "text": "rule."
+ },
+ {
+ "id": 3530,
+ "start": 2847.2,
+ "end": 2847.58,
+ "text": "And"
+ },
+ {
+ "id": 3531,
+ "start": 2847.58,
+ "end": 2847.76,
+ "text": "that"
+ },
+ {
+ "id": 3532,
+ "start": 2847.76,
+ "end": 2848.18,
+ "text": "applies"
+ },
+ {
+ "id": 3533,
+ "start": 2848.18,
+ "end": 2848.34,
+ "text": "to"
+ },
+ {
+ "id": 3534,
+ "start": 2848.34,
+ "end": 2848.64,
+ "text": "those"
+ },
+ {
+ "id": 3535,
+ "start": 2848.64,
+ "end": 2848.8,
+ "text": "of"
+ },
+ {
+ "id": 3536,
+ "start": 2848.8,
+ "end": 2848.98,
+ "text": "us"
+ },
+ {
+ "id": 3537,
+ "start": 2848.98,
+ "end": 2849.16,
+ "text": "who"
+ },
+ {
+ "id": 3538,
+ "start": 2849.16,
+ "end": 2849.76,
+ "text": "are"
+ },
+ {
+ "id": 3539,
+ "start": 2849.76,
+ "end": 2850.1,
+ "text": "chairing"
+ },
+ {
+ "id": 3540,
+ "start": 2850.1,
+ "end": 2850.26,
+ "text": "the"
+ },
+ {
+ "id": 3541,
+ "start": 2850.26,
+ "end": 2850.64,
+ "text": "committee"
+ },
+ {
+ "id": 3542,
+ "start": 2850.64,
+ "end": 2850.76,
+ "text": "as"
+ },
+ {
+ "id": 3543,
+ "start": 2850.76,
+ "end": 2853.34,
+ "text": "well."
+ },
+ {
+ "id": 3544,
+ "start": 2853.34,
+ "end": 2854.36,
+ "text": "Start"
+ },
+ {
+ "id": 3545,
+ "start": 2854.36,
+ "end": 2854.74,
+ "text": "with"
+ },
+ {
+ "id": 3546,
+ "start": 2854.74,
+ "end": 2854.98,
+ "text": "you,"
+ },
+ {
+ "id": 3547,
+ "start": 2854.98,
+ "end": 2856.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 3548,
+ "start": 2856.16,
+ "end": 2856.64,
+ "text": "handles"
+ },
+ {
+ "id": 3549,
+ "start": 2856.64,
+ "end": 2857.34,
+ "text": "extensive"
+ },
+ {
+ "id": 3550,
+ "start": 2857.34,
+ "end": 2857.72,
+ "text": "amounts"
+ },
+ {
+ "id": 3551,
+ "start": 2857.72,
+ "end": 2857.88,
+ "text": "of"
+ },
+ {
+ "id": 3552,
+ "start": 2857.88,
+ "end": 2858.38,
+ "text": "personal"
+ },
+ {
+ "id": 3553,
+ "start": 2858.38,
+ "end": 2858.8,
+ "text": "data"
+ },
+ {
+ "id": 3554,
+ "start": 2858.8,
+ "end": 2859.1,
+ "text": "for"
+ },
+ {
+ "id": 3555,
+ "start": 2859.1,
+ "end": 2859.58,
+ "text": "billions"
+ },
+ {
+ "id": 3556,
+ "start": 2859.58,
+ "end": 2859.72,
+ "text": "of"
+ },
+ {
+ "id": 3557,
+ "start": 2859.72,
+ "end": 2860.22,
+ "text": "users"
+ },
+ {
+ "id": 3558,
+ "start": 2860.22,
+ "end": 2861.38,
+ "text": "as"
+ },
+ {
+ "id": 3559,
+ "start": 2861.38,
+ "end": 2862.44,
+ "text": "significant"
+ },
+ {
+ "id": 3560,
+ "start": 2862.44,
+ "end": 2862.78,
+ "text": "amount"
+ },
+ {
+ "id": 3561,
+ "start": 2862.78,
+ "end": 2862.86,
+ "text": "of"
+ },
+ {
+ "id": 3562,
+ "start": 2862.86,
+ "end": 2863.04,
+ "text": "that"
+ },
+ {
+ "id": 3563,
+ "start": 2863.04,
+ "end": 2863.34,
+ "text": "data"
+ },
+ {
+ "id": 3564,
+ "start": 2863.34,
+ "end": 2863.54,
+ "text": "is"
+ },
+ {
+ "id": 3565,
+ "start": 2863.54,
+ "end": 2863.96,
+ "text": "shared"
+ },
+ {
+ "id": 3566,
+ "start": 2863.96,
+ "end": 2864.74,
+ "text": "with"
+ },
+ {
+ "id": 3567,
+ "start": 2864.74,
+ "end": 2865.12,
+ "text": "third"
+ },
+ {
+ "id": 3568,
+ "start": 2865.12,
+ "end": 2865.58,
+ "text": "party"
+ },
+ {
+ "id": 3569,
+ "start": 2865.58,
+ "end": 2866.42,
+ "text": "developers"
+ },
+ {
+ "id": 3570,
+ "start": 2866.42,
+ "end": 2866.56,
+ "text": "who"
+ },
+ {
+ "id": 3571,
+ "start": 2866.56,
+ "end": 2867.7,
+ "text": "utilize"
+ },
+ {
+ "id": 3572,
+ "start": 2867.7,
+ "end": 2867.9,
+ "text": "your"
+ },
+ {
+ "id": 3573,
+ "start": 2867.9,
+ "end": 2868.46,
+ "text": "platform."
+ },
+ {
+ "id": 3574,
+ "start": 2868.46,
+ "end": 2869.3,
+ "text": "As"
+ },
+ {
+ "id": 3575,
+ "start": 2869.3,
+ "end": 2869.44,
+ "text": "of"
+ },
+ {
+ "id": 3576,
+ "start": 2869.44,
+ "end": 2870.08,
+ "text": "this"
+ },
+ {
+ "id": 3577,
+ "start": 2870.08,
+ "end": 2870.78,
+ "text": "early"
+ },
+ {
+ "id": 3578,
+ "start": 2870.78,
+ "end": 2871,
+ "text": "this"
+ },
+ {
+ "id": 3579,
+ "start": 2871,
+ "end": 2871.22,
+ "text": "year,"
+ },
+ {
+ "id": 3580,
+ "start": 2871.22,
+ "end": 2872.28,
+ "text": "you"
+ },
+ {
+ "id": 3581,
+ "start": 2872.28,
+ "end": 2872.52,
+ "text": "did"
+ },
+ {
+ "id": 3582,
+ "start": 2872.52,
+ "end": 2872.76,
+ "text": "not"
+ },
+ {
+ "id": 3583,
+ "start": 2872.76,
+ "end": 2873.38,
+ "text": "actively"
+ },
+ {
+ "id": 3584,
+ "start": 2873.38,
+ "end": 2874.04,
+ "text": "monitor"
+ },
+ {
+ "id": 3585,
+ "start": 2874.04,
+ "end": 2874.9,
+ "text": "whether"
+ },
+ {
+ "id": 3586,
+ "start": 2874.9,
+ "end": 2875.18,
+ "text": "that"
+ },
+ {
+ "id": 3587,
+ "start": 2875.18,
+ "end": 2875.52,
+ "text": "data"
+ },
+ {
+ "id": 3588,
+ "start": 2875.52,
+ "end": 2875.72,
+ "text": "was"
+ },
+ {
+ "id": 3589,
+ "start": 2875.72,
+ "end": 2876.38,
+ "text": "transferred"
+ },
+ {
+ "id": 3590,
+ "start": 2876.38,
+ "end": 2876.6,
+ "text": "by"
+ },
+ {
+ "id": 3591,
+ "start": 2876.6,
+ "end": 2877.04,
+ "text": "such"
+ },
+ {
+ "id": 3592,
+ "start": 2877.04,
+ "end": 2877.78,
+ "text": "developers"
+ },
+ {
+ "id": 3593,
+ "start": 2877.78,
+ "end": 2878.46,
+ "text": "to"
+ },
+ {
+ "id": 3594,
+ "start": 2878.46,
+ "end": 2878.76,
+ "text": "other"
+ },
+ {
+ "id": 3595,
+ "start": 2878.76,
+ "end": 2879.2,
+ "text": "parties."
+ },
+ {
+ "id": 3596,
+ "start": 2879.2,
+ "end": 2879.88,
+ "text": "Moreover"
+ },
+ {
+ "id": 3597,
+ "start": 2879.88,
+ "end": 2880.14,
+ "text": "your"
+ },
+ {
+ "id": 3598,
+ "start": 2880.14,
+ "end": 2880.76,
+ "text": "policies"
+ },
+ {
+ "id": 3599,
+ "start": 2880.76,
+ "end": 2881.48,
+ "text": "only"
+ },
+ {
+ "id": 3600,
+ "start": 2881.48,
+ "end": 2882.44,
+ "text": "prohibit"
+ },
+ {
+ "id": 3601,
+ "start": 2882.44,
+ "end": 2883.42,
+ "text": "by"
+ },
+ {
+ "id": 3602,
+ "start": 2883.42,
+ "end": 2884.14,
+ "text": "developers"
+ },
+ {
+ "id": 3603,
+ "start": 2884.14,
+ "end": 2884.38,
+ "text": "to"
+ },
+ {
+ "id": 3604,
+ "start": 2884.38,
+ "end": 2884.84,
+ "text": "parties"
+ },
+ {
+ "id": 3605,
+ "start": 2884.84,
+ "end": 2885.3,
+ "text": "seeking"
+ },
+ {
+ "id": 3606,
+ "start": 2885.3,
+ "end": 2885.44,
+ "text": "to"
+ },
+ {
+ "id": 3607,
+ "start": 2885.44,
+ "end": 2885.92,
+ "text": "profit"
+ },
+ {
+ "id": 3608,
+ "start": 2885.92,
+ "end": 2886.56,
+ "text": "from"
+ },
+ {
+ "id": 3609,
+ "start": 2886.56,
+ "end": 2886.86,
+ "text": "such"
+ },
+ {
+ "id": 3610,
+ "start": 2886.86,
+ "end": 2887.34,
+ "text": "data."
+ },
+ {
+ "id": 3611,
+ "start": 2887.34,
+ "end": 2888.52,
+ "text": "Number"
+ },
+ {
+ "id": 3612,
+ "start": 2888.52,
+ "end": 2888.8,
+ "text": "one,"
+ },
+ {
+ "id": 3613,
+ "start": 2888.8,
+ "end": 2889.44,
+ "text": "besides"
+ },
+ {
+ "id": 3614,
+ "start": 2889.44,
+ "end": 2890.22,
+ "text": "professor"
+ },
+ {
+ "id": 3615,
+ "start": 2890.22,
+ "end": 2890.94,
+ "text": "Cogan"
+ },
+ {
+ "id": 3616,
+ "start": 2890.94,
+ "end": 2891.76,
+ "text": "transfer"
+ },
+ {
+ "id": 3617,
+ "start": 2891.76,
+ "end": 2892.54,
+ "text": "and"
+ },
+ {
+ "id": 3618,
+ "start": 2892.54,
+ "end": 2892.8,
+ "text": "now"
+ },
+ {
+ "id": 3619,
+ "start": 2892.8,
+ "end": 2893.42,
+ "text": "potentially"
+ },
+ {
+ "id": 3620,
+ "start": 2893.42,
+ "end": 2894.8,
+ "text": "cube."
+ },
+ {
+ "id": 3621,
+ "start": 2894.8,
+ "end": 2895.46,
+ "text": "Do"
+ },
+ {
+ "id": 3622,
+ "start": 2895.46,
+ "end": 2895.6,
+ "text": "you"
+ },
+ {
+ "id": 3623,
+ "start": 2895.6,
+ "end": 2895.76,
+ "text": "know"
+ },
+ {
+ "id": 3624,
+ "start": 2895.76,
+ "end": 2895.94,
+ "text": "of"
+ },
+ {
+ "id": 3625,
+ "start": 2895.94,
+ "end": 2896.2,
+ "text": "any"
+ },
+ {
+ "id": 3626,
+ "start": 2896.2,
+ "end": 2896.96,
+ "text": "instances"
+ },
+ {
+ "id": 3627,
+ "start": 2896.96,
+ "end": 2897.84,
+ "text": "where"
+ },
+ {
+ "id": 3628,
+ "start": 2897.84,
+ "end": 2898.26,
+ "text": "user"
+ },
+ {
+ "id": 3629,
+ "start": 2898.26,
+ "end": 2898.64,
+ "text": "data"
+ },
+ {
+ "id": 3630,
+ "start": 2898.64,
+ "end": 2898.92,
+ "text": "was"
+ },
+ {
+ "id": 3631,
+ "start": 2898.92,
+ "end": 2899.6,
+ "text": "improperly"
+ },
+ {
+ "id": 3632,
+ "start": 2899.6,
+ "end": 2900.28,
+ "text": "transferred"
+ },
+ {
+ "id": 3633,
+ "start": 2900.28,
+ "end": 2900.82,
+ "text": "to"
+ },
+ {
+ "id": 3634,
+ "start": 2900.82,
+ "end": 2901.24,
+ "text": "third"
+ },
+ {
+ "id": 3635,
+ "start": 2901.24,
+ "end": 2901.68,
+ "text": "party"
+ },
+ {
+ "id": 3636,
+ "start": 2901.68,
+ "end": 2901.9,
+ "text": "in"
+ },
+ {
+ "id": 3637,
+ "start": 2901.9,
+ "end": 2902.24,
+ "text": "breach"
+ },
+ {
+ "id": 3638,
+ "start": 2902.24,
+ "end": 2902.4,
+ "text": "of"
+ },
+ {
+ "id": 3639,
+ "start": 2902.4,
+ "end": 2903.04,
+ "text": "Facebook's"
+ },
+ {
+ "id": 3640,
+ "start": 2903.04,
+ "end": 2903.64,
+ "text": "terms."
+ },
+ {
+ "id": 3641,
+ "start": 2903.64,
+ "end": 2904.44,
+ "text": "If"
+ },
+ {
+ "id": 3642,
+ "start": 2904.44,
+ "end": 2904.9,
+ "text": "so,"
+ },
+ {
+ "id": 3643,
+ "start": 2904.9,
+ "end": 2905.44,
+ "text": "how"
+ },
+ {
+ "id": 3644,
+ "start": 2905.44,
+ "end": 2905.66,
+ "text": "many"
+ },
+ {
+ "id": 3645,
+ "start": 2905.66,
+ "end": 2906.04,
+ "text": "times"
+ },
+ {
+ "id": 3646,
+ "start": 2906.04,
+ "end": 2906.24,
+ "text": "does"
+ },
+ {
+ "id": 3647,
+ "start": 2906.24,
+ "end": 2906.48,
+ "text": "that"
+ },
+ {
+ "id": 3648,
+ "start": 2906.48,
+ "end": 2906.96,
+ "text": "happen?"
+ },
+ {
+ "id": 3649,
+ "start": 2906.96,
+ "end": 2907.64,
+ "text": "And"
+ },
+ {
+ "id": 3650,
+ "start": 2907.64,
+ "end": 2907.88,
+ "text": "was"
+ },
+ {
+ "id": 3651,
+ "start": 2907.88,
+ "end": 2908.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 3652,
+ "start": 2908.46,
+ "end": 2908.8,
+ "text": "only"
+ },
+ {
+ "id": 3653,
+ "start": 2908.8,
+ "end": 2909.04,
+ "text": "made"
+ },
+ {
+ "id": 3654,
+ "start": 2909.04,
+ "end": 2909.42,
+ "text": "aware"
+ },
+ {
+ "id": 3655,
+ "start": 2909.42,
+ "end": 2909.5,
+ "text": "of"
+ },
+ {
+ "id": 3656,
+ "start": 2909.5,
+ "end": 2909.74,
+ "text": "that"
+ },
+ {
+ "id": 3657,
+ "start": 2909.74,
+ "end": 2910.38,
+ "text": "transfer"
+ },
+ {
+ "id": 3658,
+ "start": 2910.38,
+ "end": 2911,
+ "text": "by"
+ },
+ {
+ "id": 3659,
+ "start": 2911,
+ "end": 2911.3,
+ "text": "some"
+ },
+ {
+ "id": 3660,
+ "start": 2911.3,
+ "end": 2911.66,
+ "text": "third"
+ },
+ {
+ "id": 3661,
+ "start": 2911.66,
+ "end": 2913.66,
+ "text": "party."
+ },
+ {
+ "id": 3662,
+ "start": 2913.66,
+ "end": 2914.64,
+ "text": "Mr"
+ },
+ {
+ "id": 3663,
+ "start": 2914.64,
+ "end": 2914.94,
+ "text": "Chairman,"
+ },
+ {
+ "id": 3664,
+ "start": 2914.94,
+ "end": 2915.2,
+ "text": "thank"
+ },
+ {
+ "id": 3665,
+ "start": 2915.2,
+ "end": 2915.6,
+ "text": "you."
+ },
+ {
+ "id": 3666,
+ "start": 2915.6,
+ "end": 2917.14,
+ "text": "As"
+ },
+ {
+ "id": 3667,
+ "start": 2917.14,
+ "end": 2917.24,
+ "text": "I"
+ },
+ {
+ "id": 3668,
+ "start": 2917.24,
+ "end": 2917.64,
+ "text": "mentioned,"
+ },
+ {
+ "id": 3669,
+ "start": 2917.64,
+ "end": 2918.06,
+ "text": "we're"
+ },
+ {
+ "id": 3670,
+ "start": 2918.06,
+ "end": 2918.24,
+ "text": "now"
+ },
+ {
+ "id": 3671,
+ "start": 2918.24,
+ "end": 2918.8,
+ "text": "conducting"
+ },
+ {
+ "id": 3672,
+ "start": 2918.8,
+ "end": 2918.84,
+ "text": "a"
+ },
+ {
+ "id": 3673,
+ "start": 2918.84,
+ "end": 2919.16,
+ "text": "full"
+ },
+ {
+ "id": 3674,
+ "start": 2919.16,
+ "end": 2919.88,
+ "text": "investigation"
+ },
+ {
+ "id": 3675,
+ "start": 2919.88,
+ "end": 2920.3,
+ "text": "into"
+ },
+ {
+ "id": 3676,
+ "start": 2920.3,
+ "end": 2920.72,
+ "text": "every"
+ },
+ {
+ "id": 3677,
+ "start": 2920.72,
+ "end": 2921.02,
+ "text": "single"
+ },
+ {
+ "id": 3678,
+ "start": 2921.02,
+ "end": 2921.26,
+ "text": "app"
+ },
+ {
+ "id": 3679,
+ "start": 2921.26,
+ "end": 2921.56,
+ "text": "that"
+ },
+ {
+ "id": 3680,
+ "start": 2921.56,
+ "end": 2921.88,
+ "text": "had"
+ },
+ {
+ "id": 3681,
+ "start": 2921.88,
+ "end": 2922.02,
+ "text": "a"
+ },
+ {
+ "id": 3682,
+ "start": 2922.02,
+ "end": 2922.68,
+ "text": "access"
+ },
+ {
+ "id": 3683,
+ "start": 2922.68,
+ "end": 2922.78,
+ "text": "to"
+ },
+ {
+ "id": 3684,
+ "start": 2922.78,
+ "end": 2922.88,
+ "text": "a"
+ },
+ {
+ "id": 3685,
+ "start": 2922.88,
+ "end": 2923.14,
+ "text": "large"
+ },
+ {
+ "id": 3686,
+ "start": 2923.14,
+ "end": 2923.34,
+ "text": "amount"
+ },
+ {
+ "id": 3687,
+ "start": 2923.34,
+ "end": 2923.4,
+ "text": "of"
+ },
+ {
+ "id": 3688,
+ "start": 2923.4,
+ "end": 2923.96,
+ "text": "information"
+ },
+ {
+ "id": 3689,
+ "start": 2923.96,
+ "end": 2924.9,
+ "text": "before"
+ },
+ {
+ "id": 3690,
+ "start": 2924.9,
+ "end": 2925,
+ "text": "we"
+ },
+ {
+ "id": 3691,
+ "start": 2925,
+ "end": 2925.3,
+ "text": "locked"
+ },
+ {
+ "id": 3692,
+ "start": 2925.3,
+ "end": 2925.6,
+ "text": "down"
+ },
+ {
+ "id": 3693,
+ "start": 2925.6,
+ "end": 2926.18,
+ "text": "platform"
+ },
+ {
+ "id": 3694,
+ "start": 2926.18,
+ "end": 2926.88,
+ "text": "to"
+ },
+ {
+ "id": 3695,
+ "start": 2926.88,
+ "end": 2927.16,
+ "text": "prevent"
+ },
+ {
+ "id": 3696,
+ "start": 2927.16,
+ "end": 2927.64,
+ "text": "developers"
+ },
+ {
+ "id": 3697,
+ "start": 2927.64,
+ "end": 2927.82,
+ "text": "from"
+ },
+ {
+ "id": 3698,
+ "start": 2927.82,
+ "end": 2928.26,
+ "text": "accessing"
+ },
+ {
+ "id": 3699,
+ "start": 2928.26,
+ "end": 2928.42,
+ "text": "this"
+ },
+ {
+ "id": 3700,
+ "start": 2928.42,
+ "end": 2928.96,
+ "text": "information"
+ },
+ {
+ "id": 3701,
+ "start": 2928.96,
+ "end": 2929.42,
+ "text": "around"
+ },
+ {
+ "id": 3702,
+ "start": 2929.42,
+ "end": 2929.7,
+ "text": "20"
+ },
+ {
+ "id": 3703,
+ "start": 2929.7,
+ "end": 2930.62,
+ "text": "14"
+ },
+ {
+ "id": 3704,
+ "start": 2930.62,
+ "end": 2931.24,
+ "text": "we"
+ },
+ {
+ "id": 3705,
+ "start": 2931.24,
+ "end": 2931.76,
+ "text": "believe"
+ },
+ {
+ "id": 3706,
+ "start": 2931.76,
+ "end": 2931.88,
+ "text": "that"
+ },
+ {
+ "id": 3707,
+ "start": 2931.88,
+ "end": 2932.02,
+ "text": "we're"
+ },
+ {
+ "id": 3708,
+ "start": 2932.02,
+ "end": 2932.16,
+ "text": "going"
+ },
+ {
+ "id": 3709,
+ "start": 2932.16,
+ "end": 2932.22,
+ "text": "to"
+ },
+ {
+ "id": 3710,
+ "start": 2932.22,
+ "end": 2932.28,
+ "text": "be"
+ },
+ {
+ "id": 3711,
+ "start": 2932.28,
+ "end": 2932.82,
+ "text": "investigating"
+ },
+ {
+ "id": 3712,
+ "start": 2932.82,
+ "end": 2933.64,
+ "text": "many"
+ },
+ {
+ "id": 3713,
+ "start": 2933.64,
+ "end": 2933.88,
+ "text": "apps,"
+ },
+ {
+ "id": 3714,
+ "start": 2933.88,
+ "end": 2934.24,
+ "text": "tens"
+ },
+ {
+ "id": 3715,
+ "start": 2934.24,
+ "end": 2934.34,
+ "text": "of"
+ },
+ {
+ "id": 3716,
+ "start": 2934.34,
+ "end": 2934.72,
+ "text": "thousands"
+ },
+ {
+ "id": 3717,
+ "start": 2934.72,
+ "end": 2934.82,
+ "text": "of"
+ },
+ {
+ "id": 3718,
+ "start": 2934.82,
+ "end": 2935.08,
+ "text": "apps."
+ },
+ {
+ "id": 3719,
+ "start": 2935.08,
+ "end": 2935.72,
+ "text": "And"
+ },
+ {
+ "id": 3720,
+ "start": 2935.72,
+ "end": 2935.82,
+ "text": "if"
+ },
+ {
+ "id": 3721,
+ "start": 2935.82,
+ "end": 2935.92,
+ "text": "we"
+ },
+ {
+ "id": 3722,
+ "start": 2935.92,
+ "end": 2936.18,
+ "text": "find"
+ },
+ {
+ "id": 3723,
+ "start": 2936.18,
+ "end": 2936.44,
+ "text": "any"
+ },
+ {
+ "id": 3724,
+ "start": 2936.44,
+ "end": 2937,
+ "text": "suspicious"
+ },
+ {
+ "id": 3725,
+ "start": 2937,
+ "end": 2937.44,
+ "text": "activity"
+ },
+ {
+ "id": 3726,
+ "start": 2937.44,
+ "end": 2938.12,
+ "text": "we're"
+ },
+ {
+ "id": 3727,
+ "start": 2938.12,
+ "end": 2938.32,
+ "text": "going"
+ },
+ {
+ "id": 3728,
+ "start": 2938.32,
+ "end": 2938.44,
+ "text": "to"
+ },
+ {
+ "id": 3729,
+ "start": 2938.44,
+ "end": 2938.8,
+ "text": "conduct"
+ },
+ {
+ "id": 3730,
+ "start": 2938.8,
+ "end": 2938.86,
+ "text": "a"
+ },
+ {
+ "id": 3731,
+ "start": 2938.86,
+ "end": 2939.24,
+ "text": "full"
+ },
+ {
+ "id": 3732,
+ "start": 2939.24,
+ "end": 2939.54,
+ "text": "audit"
+ },
+ {
+ "id": 3733,
+ "start": 2939.54,
+ "end": 2939.8,
+ "text": "of"
+ },
+ {
+ "id": 3734,
+ "start": 2939.8,
+ "end": 2940.04,
+ "text": "those"
+ },
+ {
+ "id": 3735,
+ "start": 2940.04,
+ "end": 2940.32,
+ "text": "apps"
+ },
+ {
+ "id": 3736,
+ "start": 2940.32,
+ "end": 2940.8,
+ "text": "to"
+ },
+ {
+ "id": 3737,
+ "start": 2940.8,
+ "end": 2941.18,
+ "text": "understand"
+ },
+ {
+ "id": 3738,
+ "start": 2941.18,
+ "end": 2941.34,
+ "text": "how"
+ },
+ {
+ "id": 3739,
+ "start": 2941.34,
+ "end": 2941.58,
+ "text": "they're"
+ },
+ {
+ "id": 3740,
+ "start": 2941.58,
+ "end": 2941.82,
+ "text": "using"
+ },
+ {
+ "id": 3741,
+ "start": 2941.82,
+ "end": 2942,
+ "text": "their"
+ },
+ {
+ "id": 3742,
+ "start": 2942,
+ "end": 2942.3,
+ "text": "data"
+ },
+ {
+ "id": 3743,
+ "start": 2942.3,
+ "end": 2942.56,
+ "text": "and"
+ },
+ {
+ "id": 3744,
+ "start": 2942.56,
+ "end": 2942.66,
+ "text": "if"
+ },
+ {
+ "id": 3745,
+ "start": 2942.66,
+ "end": 2942.86,
+ "text": "they're"
+ },
+ {
+ "id": 3746,
+ "start": 2942.86,
+ "end": 2943.02,
+ "text": "doing"
+ },
+ {
+ "id": 3747,
+ "start": 2943.02,
+ "end": 2943.28,
+ "text": "anything"
+ },
+ {
+ "id": 3748,
+ "start": 2943.28,
+ "end": 2944.31,
+ "text": "improper,"
+ },
+ {
+ "id": 3749,
+ "start": 2944.31,
+ "end": 2944.51,
+ "text": "if"
+ },
+ {
+ "id": 3750,
+ "start": 2944.51,
+ "end": 2944.61,
+ "text": "we"
+ },
+ {
+ "id": 3751,
+ "start": 2944.61,
+ "end": 2944.81,
+ "text": "find"
+ },
+ {
+ "id": 3752,
+ "start": 2944.81,
+ "end": 2944.91,
+ "text": "that"
+ },
+ {
+ "id": 3753,
+ "start": 2944.91,
+ "end": 2945.11,
+ "text": "they're"
+ },
+ {
+ "id": 3754,
+ "start": 2945.11,
+ "end": 2945.25,
+ "text": "doing"
+ },
+ {
+ "id": 3755,
+ "start": 2945.25,
+ "end": 2945.51,
+ "text": "anything"
+ },
+ {
+ "id": 3756,
+ "start": 2945.51,
+ "end": 2945.93,
+ "text": "improper"
+ },
+ {
+ "id": 3757,
+ "start": 2945.93,
+ "end": 2946.15,
+ "text": "will"
+ },
+ {
+ "id": 3758,
+ "start": 2946.15,
+ "end": 2946.37,
+ "text": "ban"
+ },
+ {
+ "id": 3759,
+ "start": 2946.37,
+ "end": 2946.51,
+ "text": "them"
+ },
+ {
+ "id": 3760,
+ "start": 2946.51,
+ "end": 2946.69,
+ "text": "from"
+ },
+ {
+ "id": 3761,
+ "start": 2946.69,
+ "end": 2947.15,
+ "text": "Facebook"
+ },
+ {
+ "id": 3762,
+ "start": 2947.15,
+ "end": 2947.89,
+ "text": "and"
+ },
+ {
+ "id": 3763,
+ "start": 2947.89,
+ "end": 2948.05,
+ "text": "we"
+ },
+ {
+ "id": 3764,
+ "start": 2948.05,
+ "end": 2948.21,
+ "text": "will"
+ },
+ {
+ "id": 3765,
+ "start": 2948.21,
+ "end": 2948.39,
+ "text": "tell"
+ },
+ {
+ "id": 3766,
+ "start": 2948.39,
+ "end": 2948.73,
+ "text": "everyone"
+ },
+ {
+ "id": 3767,
+ "start": 2948.73,
+ "end": 2949.13,
+ "text": "affected."
+ },
+ {
+ "id": 3768,
+ "start": 2949.13,
+ "end": 2950.11,
+ "text": "As"
+ },
+ {
+ "id": 3769,
+ "start": 2950.11,
+ "end": 2950.29,
+ "text": "for"
+ },
+ {
+ "id": 3770,
+ "start": 2950.29,
+ "end": 2950.57,
+ "text": "past"
+ },
+ {
+ "id": 3771,
+ "start": 2950.57,
+ "end": 2951.09,
+ "text": "activity,"
+ },
+ {
+ "id": 3772,
+ "start": 2951.09,
+ "end": 2951.57,
+ "text": "I"
+ },
+ {
+ "id": 3773,
+ "start": 2951.57,
+ "end": 2951.81,
+ "text": "don't"
+ },
+ {
+ "id": 3774,
+ "start": 2951.81,
+ "end": 2952.11,
+ "text": "have"
+ },
+ {
+ "id": 3775,
+ "start": 2952.11,
+ "end": 2952.97,
+ "text": "all"
+ },
+ {
+ "id": 3776,
+ "start": 2952.97,
+ "end": 2953.13,
+ "text": "the"
+ },
+ {
+ "id": 3777,
+ "start": 2953.13,
+ "end": 2953.57,
+ "text": "examples"
+ },
+ {
+ "id": 3778,
+ "start": 2953.57,
+ "end": 2953.65,
+ "text": "of"
+ },
+ {
+ "id": 3779,
+ "start": 2953.65,
+ "end": 2953.89,
+ "text": "apps"
+ },
+ {
+ "id": 3780,
+ "start": 2953.89,
+ "end": 2954.01,
+ "text": "that"
+ },
+ {
+ "id": 3781,
+ "start": 2954.01,
+ "end": 2954.19,
+ "text": "we've"
+ },
+ {
+ "id": 3782,
+ "start": 2954.19,
+ "end": 2954.49,
+ "text": "banned"
+ },
+ {
+ "id": 3783,
+ "start": 2954.49,
+ "end": 2954.77,
+ "text": "here."
+ },
+ {
+ "id": 3784,
+ "start": 2954.77,
+ "end": 2955.45,
+ "text": "But"
+ },
+ {
+ "id": 3785,
+ "start": 2955.45,
+ "end": 2955.55,
+ "text": "if"
+ },
+ {
+ "id": 3786,
+ "start": 2955.55,
+ "end": 2955.79,
+ "text": "you'd"
+ },
+ {
+ "id": 3787,
+ "start": 2955.79,
+ "end": 2955.93,
+ "text": "like,"
+ },
+ {
+ "id": 3788,
+ "start": 2955.93,
+ "end": 2956.03,
+ "text": "I"
+ },
+ {
+ "id": 3789,
+ "start": 2956.03,
+ "end": 2956.15,
+ "text": "can"
+ },
+ {
+ "id": 3790,
+ "start": 2956.15,
+ "end": 2956.31,
+ "text": "have"
+ },
+ {
+ "id": 3791,
+ "start": 2956.31,
+ "end": 2956.41,
+ "text": "my"
+ },
+ {
+ "id": 3792,
+ "start": 2956.41,
+ "end": 2956.59,
+ "text": "team"
+ },
+ {
+ "id": 3793,
+ "start": 2956.59,
+ "end": 2956.85,
+ "text": "follow"
+ },
+ {
+ "id": 3794,
+ "start": 2956.85,
+ "end": 2956.95,
+ "text": "up"
+ },
+ {
+ "id": 3795,
+ "start": 2956.95,
+ "end": 2957.07,
+ "text": "with"
+ },
+ {
+ "id": 3796,
+ "start": 2957.07,
+ "end": 2957.17,
+ "text": "you"
+ },
+ {
+ "id": 3797,
+ "start": 2957.17,
+ "end": 2957.41,
+ "text": "after"
+ },
+ {
+ "id": 3798,
+ "start": 2957.41,
+ "end": 2958,
+ "text": "this"
+ },
+ {
+ "id": 3799,
+ "start": 2958,
+ "end": 2958.66,
+ "text": "have"
+ },
+ {
+ "id": 3800,
+ "start": 2958.66,
+ "end": 2958.82,
+ "text": "you"
+ },
+ {
+ "id": 3801,
+ "start": 2958.82,
+ "end": 2959.58,
+ "text": "ever"
+ },
+ {
+ "id": 3802,
+ "start": 2959.58,
+ "end": 2960.28,
+ "text": "required"
+ },
+ {
+ "id": 3803,
+ "start": 2960.28,
+ "end": 2960.48,
+ "text": "an"
+ },
+ {
+ "id": 3804,
+ "start": 2960.48,
+ "end": 2960.86,
+ "text": "audit"
+ },
+ {
+ "id": 3805,
+ "start": 2960.86,
+ "end": 2961.06,
+ "text": "to"
+ },
+ {
+ "id": 3806,
+ "start": 2961.06,
+ "end": 2961.5,
+ "text": "ensure"
+ },
+ {
+ "id": 3807,
+ "start": 2961.5,
+ "end": 2961.7,
+ "text": "the"
+ },
+ {
+ "id": 3808,
+ "start": 2961.7,
+ "end": 2962.32,
+ "text": "deletion"
+ },
+ {
+ "id": 3809,
+ "start": 2962.32,
+ "end": 2962.54,
+ "text": "of"
+ },
+ {
+ "id": 3810,
+ "start": 2962.54,
+ "end": 2963.24,
+ "text": "improperly"
+ },
+ {
+ "id": 3811,
+ "start": 2963.24,
+ "end": 2963.82,
+ "text": "transfer"
+ },
+ {
+ "id": 3812,
+ "start": 2963.82,
+ "end": 2964.26,
+ "text": "data?"
+ },
+ {
+ "id": 3813,
+ "start": 2964.26,
+ "end": 2964.76,
+ "text": "And"
+ },
+ {
+ "id": 3814,
+ "start": 2964.76,
+ "end": 2964.94,
+ "text": "if"
+ },
+ {
+ "id": 3815,
+ "start": 2964.94,
+ "end": 2965.16,
+ "text": "so,"
+ },
+ {
+ "id": 3816,
+ "start": 2965.16,
+ "end": 2965.28,
+ "text": "how"
+ },
+ {
+ "id": 3817,
+ "start": 2965.28,
+ "end": 2965.5,
+ "text": "many"
+ },
+ {
+ "id": 3818,
+ "start": 2965.5,
+ "end": 2966.28,
+ "text": "times,"
+ },
+ {
+ "id": 3819,
+ "start": 2966.28,
+ "end": 2967.26,
+ "text": "Mr"
+ },
+ {
+ "id": 3820,
+ "start": 2967.26,
+ "end": 2968.01,
+ "text": "Chairman?"
+ },
+ {
+ "id": 3821,
+ "start": 2968.01,
+ "end": 2968.69,
+ "text": "Yes,"
+ },
+ {
+ "id": 3822,
+ "start": 2968.69,
+ "end": 2968.87,
+ "text": "we"
+ },
+ {
+ "id": 3823,
+ "start": 2968.87,
+ "end": 2969.19,
+ "text": "have."
+ },
+ {
+ "id": 3824,
+ "start": 2969.19,
+ "end": 2969.77,
+ "text": "I"
+ },
+ {
+ "id": 3825,
+ "start": 2969.77,
+ "end": 2969.99,
+ "text": "don't"
+ },
+ {
+ "id": 3826,
+ "start": 2969.99,
+ "end": 2970.13,
+ "text": "have"
+ },
+ {
+ "id": 3827,
+ "start": 2970.13,
+ "end": 2970.23,
+ "text": "the"
+ },
+ {
+ "id": 3828,
+ "start": 2970.23,
+ "end": 2970.59,
+ "text": "exact"
+ },
+ {
+ "id": 3829,
+ "start": 2970.59,
+ "end": 2970.91,
+ "text": "figure"
+ },
+ {
+ "id": 3830,
+ "start": 2970.91,
+ "end": 2971.05,
+ "text": "on"
+ },
+ {
+ "id": 3831,
+ "start": 2971.05,
+ "end": 2971.25,
+ "text": "how"
+ },
+ {
+ "id": 3832,
+ "start": 2971.25,
+ "end": 2971.41,
+ "text": "many"
+ },
+ {
+ "id": 3833,
+ "start": 2971.41,
+ "end": 2971.69,
+ "text": "times"
+ },
+ {
+ "id": 3834,
+ "start": 2971.69,
+ "end": 2971.89,
+ "text": "we"
+ },
+ {
+ "id": 3835,
+ "start": 2971.89,
+ "end": 2972.19,
+ "text": "have."
+ },
+ {
+ "id": 3836,
+ "start": 2972.19,
+ "end": 2973.07,
+ "text": "But"
+ },
+ {
+ "id": 3837,
+ "start": 2973.07,
+ "end": 2974.03,
+ "text": "overall"
+ },
+ {
+ "id": 3838,
+ "start": 2974.03,
+ "end": 2974.27,
+ "text": "the"
+ },
+ {
+ "id": 3839,
+ "start": 2974.27,
+ "end": 2974.43,
+ "text": "way"
+ },
+ {
+ "id": 3840,
+ "start": 2974.43,
+ "end": 2974.63,
+ "text": "we've"
+ },
+ {
+ "id": 3841,
+ "start": 2974.63,
+ "end": 2975.13,
+ "text": "enforced"
+ },
+ {
+ "id": 3842,
+ "start": 2975.13,
+ "end": 2975.33,
+ "text": "our"
+ },
+ {
+ "id": 3843,
+ "start": 2975.33,
+ "end": 2975.79,
+ "text": "platform"
+ },
+ {
+ "id": 3844,
+ "start": 2975.79,
+ "end": 2976.37,
+ "text": "policies"
+ },
+ {
+ "id": 3845,
+ "start": 2976.37,
+ "end": 2976.95,
+ "text": "in"
+ },
+ {
+ "id": 3846,
+ "start": 2976.95,
+ "end": 2977.07,
+ "text": "the"
+ },
+ {
+ "id": 3847,
+ "start": 2977.07,
+ "end": 2978.02,
+ "text": "past."
+ },
+ {
+ "id": 3848,
+ "start": 2978.02,
+ "end": 2978.84,
+ "text": "As"
+ },
+ {
+ "id": 3849,
+ "start": 2978.84,
+ "end": 2979.06,
+ "text": "we"
+ },
+ {
+ "id": 3850,
+ "start": 2979.06,
+ "end": 2979.4,
+ "text": "have"
+ },
+ {
+ "id": 3851,
+ "start": 2979.4,
+ "end": 2979.94,
+ "text": "looked"
+ },
+ {
+ "id": 3852,
+ "start": 2979.94,
+ "end": 2980.24,
+ "text": "at"
+ },
+ {
+ "id": 3853,
+ "start": 2980.24,
+ "end": 2980.86,
+ "text": "patterns"
+ },
+ {
+ "id": 3854,
+ "start": 2980.86,
+ "end": 2981.04,
+ "text": "of"
+ },
+ {
+ "id": 3855,
+ "start": 2981.04,
+ "end": 2981.22,
+ "text": "how"
+ },
+ {
+ "id": 3856,
+ "start": 2981.22,
+ "end": 2981.48,
+ "text": "apps"
+ },
+ {
+ "id": 3857,
+ "start": 2981.48,
+ "end": 2981.94,
+ "text": "have"
+ },
+ {
+ "id": 3858,
+ "start": 2981.94,
+ "end": 2982.14,
+ "text": "used"
+ },
+ {
+ "id": 3859,
+ "start": 2982.14,
+ "end": 2982.3,
+ "text": "our"
+ },
+ {
+ "id": 3860,
+ "start": 2982.3,
+ "end": 2982.76,
+ "text": "API's"
+ },
+ {
+ "id": 3861,
+ "start": 2982.76,
+ "end": 2982.88,
+ "text": "and"
+ },
+ {
+ "id": 3862,
+ "start": 2982.88,
+ "end": 2983.22,
+ "text": "access"
+ },
+ {
+ "id": 3863,
+ "start": 2983.22,
+ "end": 2983.3,
+ "text": "to"
+ },
+ {
+ "id": 3864,
+ "start": 2983.3,
+ "end": 2983.82,
+ "text": "information"
+ },
+ {
+ "id": 3865,
+ "start": 2983.82,
+ "end": 2984.44,
+ "text": "as"
+ },
+ {
+ "id": 3866,
+ "start": 2984.44,
+ "end": 2984.7,
+ "text": "well"
+ },
+ {
+ "id": 3867,
+ "start": 2984.7,
+ "end": 2984.92,
+ "text": "as"
+ },
+ {
+ "id": 3868,
+ "start": 2984.92,
+ "end": 2985.2,
+ "text": "looked"
+ },
+ {
+ "id": 3869,
+ "start": 2985.2,
+ "end": 2985.64,
+ "text": "into"
+ },
+ {
+ "id": 3870,
+ "start": 2985.64,
+ "end": 2986.48,
+ "text": "reports"
+ },
+ {
+ "id": 3871,
+ "start": 2986.48,
+ "end": 2986.66,
+ "text": "that"
+ },
+ {
+ "id": 3872,
+ "start": 2986.66,
+ "end": 2986.88,
+ "text": "people"
+ },
+ {
+ "id": 3873,
+ "start": 2986.88,
+ "end": 2987.04,
+ "text": "have"
+ },
+ {
+ "id": 3874,
+ "start": 2987.04,
+ "end": 2987.2,
+ "text": "made"
+ },
+ {
+ "id": 3875,
+ "start": 2987.2,
+ "end": 2987.46,
+ "text": "us"
+ },
+ {
+ "id": 3876,
+ "start": 2987.46,
+ "end": 2987.64,
+ "text": "about"
+ },
+ {
+ "id": 3877,
+ "start": 2987.64,
+ "end": 2987.88,
+ "text": "apps"
+ },
+ {
+ "id": 3878,
+ "start": 2987.88,
+ "end": 2988.02,
+ "text": "that"
+ },
+ {
+ "id": 3879,
+ "start": 2988.02,
+ "end": 2988.2,
+ "text": "might"
+ },
+ {
+ "id": 3880,
+ "start": 2988.2,
+ "end": 2988.3,
+ "text": "be"
+ },
+ {
+ "id": 3881,
+ "start": 2988.3,
+ "end": 2988.52,
+ "text": "doing"
+ },
+ {
+ "id": 3882,
+ "start": 2988.52,
+ "end": 2988.94,
+ "text": "sketchy"
+ },
+ {
+ "id": 3883,
+ "start": 2988.94,
+ "end": 2989.24,
+ "text": "things"
+ },
+ {
+ "id": 3884,
+ "start": 2989.24,
+ "end": 2990.14,
+ "text": "going"
+ },
+ {
+ "id": 3885,
+ "start": 2990.14,
+ "end": 2990.54,
+ "text": "forward."
+ },
+ {
+ "id": 3886,
+ "start": 2990.54,
+ "end": 2991.1,
+ "text": "We're"
+ },
+ {
+ "id": 3887,
+ "start": 2991.1,
+ "end": 2991.3,
+ "text": "going"
+ },
+ {
+ "id": 3888,
+ "start": 2991.3,
+ "end": 2991.4,
+ "text": "to"
+ },
+ {
+ "id": 3889,
+ "start": 2991.4,
+ "end": 2991.56,
+ "text": "take"
+ },
+ {
+ "id": 3890,
+ "start": 2991.56,
+ "end": 2991.64,
+ "text": "a"
+ },
+ {
+ "id": 3891,
+ "start": 2991.64,
+ "end": 2991.84,
+ "text": "more"
+ },
+ {
+ "id": 3892,
+ "start": 2991.84,
+ "end": 2992.4,
+ "text": "proactive"
+ },
+ {
+ "id": 3893,
+ "start": 2992.4,
+ "end": 2992.94,
+ "text": "position"
+ },
+ {
+ "id": 3894,
+ "start": 2992.94,
+ "end": 2993.1,
+ "text": "on"
+ },
+ {
+ "id": 3895,
+ "start": 2993.1,
+ "end": 2993.82,
+ "text": "this"
+ },
+ {
+ "id": 3896,
+ "start": 2993.82,
+ "end": 2994.48,
+ "text": "and"
+ },
+ {
+ "id": 3897,
+ "start": 2994.48,
+ "end": 2994.84,
+ "text": "do"
+ },
+ {
+ "id": 3898,
+ "start": 2994.84,
+ "end": 2995.64,
+ "text": "much"
+ },
+ {
+ "id": 3899,
+ "start": 2995.64,
+ "end": 2995.82,
+ "text": "more"
+ },
+ {
+ "id": 3900,
+ "start": 2995.82,
+ "end": 2996.16,
+ "text": "regular"
+ },
+ {
+ "id": 3901,
+ "start": 2996.16,
+ "end": 2996.5,
+ "text": "spot"
+ },
+ {
+ "id": 3902,
+ "start": 2996.5,
+ "end": 2996.78,
+ "text": "checks"
+ },
+ {
+ "id": 3903,
+ "start": 2996.78,
+ "end": 2996.92,
+ "text": "and"
+ },
+ {
+ "id": 3904,
+ "start": 2996.92,
+ "end": 2997.14,
+ "text": "other"
+ },
+ {
+ "id": 3905,
+ "start": 2997.14,
+ "end": 2997.62,
+ "text": "reviews"
+ },
+ {
+ "id": 3906,
+ "start": 2997.62,
+ "end": 2997.78,
+ "text": "of"
+ },
+ {
+ "id": 3907,
+ "start": 2997.78,
+ "end": 2998.06,
+ "text": "apps"
+ },
+ {
+ "id": 3908,
+ "start": 2998.06,
+ "end": 2999.04,
+ "text": "as"
+ },
+ {
+ "id": 3909,
+ "start": 2999.04,
+ "end": 2999.32,
+ "text": "well"
+ },
+ {
+ "id": 3910,
+ "start": 2999.32,
+ "end": 2999.62,
+ "text": "as"
+ },
+ {
+ "id": 3911,
+ "start": 2999.62,
+ "end": 3000.1,
+ "text": "increasing"
+ },
+ {
+ "id": 3912,
+ "start": 3000.1,
+ "end": 3000.2,
+ "text": "the"
+ },
+ {
+ "id": 3913,
+ "start": 3000.2,
+ "end": 3000.44,
+ "text": "amount"
+ },
+ {
+ "id": 3914,
+ "start": 3000.44,
+ "end": 3000.62,
+ "text": "of"
+ },
+ {
+ "id": 3915,
+ "start": 3000.62,
+ "end": 3001.04,
+ "text": "audits"
+ },
+ {
+ "id": 3916,
+ "start": 3001.04,
+ "end": 3001.2,
+ "text": "that"
+ },
+ {
+ "id": 3917,
+ "start": 3001.2,
+ "end": 3001.32,
+ "text": "we"
+ },
+ {
+ "id": 3918,
+ "start": 3001.32,
+ "end": 3001.52,
+ "text": "do"
+ },
+ {
+ "id": 3919,
+ "start": 3001.52,
+ "end": 3002.28,
+ "text": "and"
+ },
+ {
+ "id": 3920,
+ "start": 3002.28,
+ "end": 3002.72,
+ "text": "again,"
+ },
+ {
+ "id": 3921,
+ "start": 3002.72,
+ "end": 3002.84,
+ "text": "I"
+ },
+ {
+ "id": 3922,
+ "start": 3002.84,
+ "end": 3003.04,
+ "text": "can"
+ },
+ {
+ "id": 3923,
+ "start": 3003.04,
+ "end": 3003.38,
+ "text": "make"
+ },
+ {
+ "id": 3924,
+ "start": 3003.38,
+ "end": 3003.52,
+ "text": "sure"
+ },
+ {
+ "id": 3925,
+ "start": 3003.52,
+ "end": 3003.66,
+ "text": "that"
+ },
+ {
+ "id": 3926,
+ "start": 3003.66,
+ "end": 3003.76,
+ "text": "our"
+ },
+ {
+ "id": 3927,
+ "start": 3003.76,
+ "end": 3004.07,
+ "text": "team"
+ },
+ {
+ "id": 3928,
+ "start": 3004.07,
+ "end": 3004.47,
+ "text": "up"
+ },
+ {
+ "id": 3929,
+ "start": 3004.47,
+ "end": 3004.61,
+ "text": "with"
+ },
+ {
+ "id": 3930,
+ "start": 3004.61,
+ "end": 3004.77,
+ "text": "you"
+ },
+ {
+ "id": 3931,
+ "start": 3004.77,
+ "end": 3005.15,
+ "text": "on"
+ },
+ {
+ "id": 3932,
+ "start": 3005.15,
+ "end": 3005.53,
+ "text": "anything"
+ },
+ {
+ "id": 3933,
+ "start": 3005.53,
+ "end": 3005.77,
+ "text": "about"
+ },
+ {
+ "id": 3934,
+ "start": 3005.77,
+ "end": 3006.25,
+ "text": "the"
+ },
+ {
+ "id": 3935,
+ "start": 3006.25,
+ "end": 3007.01,
+ "text": "specific"
+ },
+ {
+ "id": 3936,
+ "start": 3007.01,
+ "end": 3007.25,
+ "text": "past"
+ },
+ {
+ "id": 3937,
+ "start": 3007.25,
+ "end": 3007.55,
+ "text": "stats."
+ },
+ {
+ "id": 3938,
+ "start": 3007.55,
+ "end": 3007.67,
+ "text": "That"
+ },
+ {
+ "id": 3939,
+ "start": 3007.67,
+ "end": 3007.83,
+ "text": "would"
+ },
+ {
+ "id": 3940,
+ "start": 3007.83,
+ "end": 3007.91,
+ "text": "be"
+ },
+ {
+ "id": 3941,
+ "start": 3007.91,
+ "end": 3008.29,
+ "text": "interesting."
+ },
+ {
+ "id": 3942,
+ "start": 3008.29,
+ "end": 3009.33,
+ "text": "I"
+ },
+ {
+ "id": 3943,
+ "start": 3009.33,
+ "end": 3009.51,
+ "text": "was"
+ },
+ {
+ "id": 3944,
+ "start": 3009.51,
+ "end": 3009.79,
+ "text": "going"
+ },
+ {
+ "id": 3945,
+ "start": 3009.79,
+ "end": 3009.95,
+ "text": "to"
+ },
+ {
+ "id": 3946,
+ "start": 3009.95,
+ "end": 3010.79,
+ "text": "assume"
+ },
+ {
+ "id": 3947,
+ "start": 3010.79,
+ "end": 3011.03,
+ "text": "that"
+ },
+ {
+ "id": 3948,
+ "start": 3011.03,
+ "end": 3012.05,
+ "text": "sitting"
+ },
+ {
+ "id": 3949,
+ "start": 3012.05,
+ "end": 3012.25,
+ "text": "here"
+ },
+ {
+ "id": 3950,
+ "start": 3012.25,
+ "end": 3012.63,
+ "text": "today,"
+ },
+ {
+ "id": 3951,
+ "start": 3012.63,
+ "end": 3012.83,
+ "text": "you"
+ },
+ {
+ "id": 3952,
+ "start": 3012.83,
+ "end": 3013.01,
+ "text": "have"
+ },
+ {
+ "id": 3953,
+ "start": 3013.01,
+ "end": 3013.21,
+ "text": "no"
+ },
+ {
+ "id": 3954,
+ "start": 3013.21,
+ "end": 3014.32,
+ "text": "idea."
+ },
+ {
+ "id": 3955,
+ "start": 3014.32,
+ "end": 3015.12,
+ "text": "And"
+ },
+ {
+ "id": 3956,
+ "start": 3015.12,
+ "end": 3015.52,
+ "text": "if"
+ },
+ {
+ "id": 3957,
+ "start": 3015.52,
+ "end": 3015.86,
+ "text": "I'm"
+ },
+ {
+ "id": 3958,
+ "start": 3015.86,
+ "end": 3016.14,
+ "text": "wrong"
+ },
+ {
+ "id": 3959,
+ "start": 3016.14,
+ "end": 3016.34,
+ "text": "on"
+ },
+ {
+ "id": 3960,
+ "start": 3016.34,
+ "end": 3016.64,
+ "text": "that"
+ },
+ {
+ "id": 3961,
+ "start": 3016.64,
+ "end": 3018.1,
+ "text": "you're"
+ },
+ {
+ "id": 3962,
+ "start": 3018.1,
+ "end": 3018.5,
+ "text": "telling"
+ },
+ {
+ "id": 3963,
+ "start": 3018.5,
+ "end": 3018.64,
+ "text": "me,"
+ },
+ {
+ "id": 3964,
+ "start": 3018.64,
+ "end": 3018.74,
+ "text": "I"
+ },
+ {
+ "id": 3965,
+ "start": 3018.74,
+ "end": 3019.06,
+ "text": "think"
+ },
+ {
+ "id": 3966,
+ "start": 3019.06,
+ "end": 3019.28,
+ "text": "that"
+ },
+ {
+ "id": 3967,
+ "start": 3019.28,
+ "end": 3019.54,
+ "text": "you're"
+ },
+ {
+ "id": 3968,
+ "start": 3019.54,
+ "end": 3019.78,
+ "text": "able"
+ },
+ {
+ "id": 3969,
+ "start": 3019.78,
+ "end": 3019.88,
+ "text": "to"
+ },
+ {
+ "id": 3970,
+ "start": 3019.88,
+ "end": 3020.28,
+ "text": "supply"
+ },
+ {
+ "id": 3971,
+ "start": 3020.28,
+ "end": 3020.66,
+ "text": "those"
+ },
+ {
+ "id": 3972,
+ "start": 3020.66,
+ "end": 3021.18,
+ "text": "figures"
+ },
+ {
+ "id": 3973,
+ "start": 3021.18,
+ "end": 3021.42,
+ "text": "to"
+ },
+ {
+ "id": 3974,
+ "start": 3021.42,
+ "end": 3021.66,
+ "text": "us,"
+ },
+ {
+ "id": 3975,
+ "start": 3021.66,
+ "end": 3022.82,
+ "text": "at"
+ },
+ {
+ "id": 3976,
+ "start": 3022.82,
+ "end": 3023.1,
+ "text": "least"
+ },
+ {
+ "id": 3977,
+ "start": 3023.1,
+ "end": 3023.36,
+ "text": "as"
+ },
+ {
+ "id": 3978,
+ "start": 3023.36,
+ "end": 3023.52,
+ "text": "of"
+ },
+ {
+ "id": 3979,
+ "start": 3023.52,
+ "end": 3023.76,
+ "text": "this"
+ },
+ {
+ "id": 3980,
+ "start": 3023.76,
+ "end": 3024.78,
+ "text": "point,"
+ },
+ {
+ "id": 3981,
+ "start": 3024.78,
+ "end": 3025.7,
+ "text": "Mr"
+ },
+ {
+ "id": 3982,
+ "start": 3025.7,
+ "end": 3026.02,
+ "text": "Chairman,"
+ },
+ {
+ "id": 3983,
+ "start": 3026.02,
+ "end": 3026.48,
+ "text": "I"
+ },
+ {
+ "id": 3984,
+ "start": 3026.48,
+ "end": 3026.76,
+ "text": "will"
+ },
+ {
+ "id": 3985,
+ "start": 3026.76,
+ "end": 3026.9,
+ "text": "have"
+ },
+ {
+ "id": 3986,
+ "start": 3026.9,
+ "end": 3027.02,
+ "text": "my"
+ },
+ {
+ "id": 3987,
+ "start": 3027.02,
+ "end": 3027.26,
+ "text": "team"
+ },
+ {
+ "id": 3988,
+ "start": 3027.26,
+ "end": 3027.66,
+ "text": "follow"
+ },
+ {
+ "id": 3989,
+ "start": 3027.66,
+ "end": 3027.78,
+ "text": "up"
+ },
+ {
+ "id": 3990,
+ "start": 3027.78,
+ "end": 3027.94,
+ "text": "with"
+ },
+ {
+ "id": 3991,
+ "start": 3027.94,
+ "end": 3028.04,
+ "text": "you"
+ },
+ {
+ "id": 3992,
+ "start": 3028.04,
+ "end": 3028.2,
+ "text": "on"
+ },
+ {
+ "id": 3993,
+ "start": 3028.2,
+ "end": 3028.34,
+ "text": "what"
+ },
+ {
+ "id": 3994,
+ "start": 3028.34,
+ "end": 3028.82,
+ "text": "information"
+ },
+ {
+ "id": 3995,
+ "start": 3028.82,
+ "end": 3028.98,
+ "text": "we"
+ },
+ {
+ "id": 3996,
+ "start": 3028.98,
+ "end": 3029.16,
+ "text": "have."
+ },
+ {
+ "id": 3997,
+ "start": 3029.16,
+ "end": 3029.68,
+ "text": "Okay,"
+ },
+ {
+ "id": 3998,
+ "start": 3029.68,
+ "end": 3029.84,
+ "text": "but"
+ },
+ {
+ "id": 3999,
+ "start": 3029.84,
+ "end": 3030.08,
+ "text": "right"
+ },
+ {
+ "id": 4000,
+ "start": 3030.08,
+ "end": 3030.24,
+ "text": "now,"
+ },
+ {
+ "id": 4001,
+ "start": 3030.24,
+ "end": 3030.44,
+ "text": "you"
+ },
+ {
+ "id": 4002,
+ "start": 3030.44,
+ "end": 3030.6,
+ "text": "have"
+ },
+ {
+ "id": 4003,
+ "start": 3030.6,
+ "end": 3030.82,
+ "text": "no"
+ },
+ {
+ "id": 4004,
+ "start": 3030.82,
+ "end": 3031.3,
+ "text": "certainty"
+ },
+ {
+ "id": 4005,
+ "start": 3031.3,
+ "end": 3031.44,
+ "text": "of"
+ },
+ {
+ "id": 4006,
+ "start": 3031.44,
+ "end": 3031.76,
+ "text": "whether"
+ },
+ {
+ "id": 4007,
+ "start": 3031.76,
+ "end": 3031.9,
+ "text": "or"
+ },
+ {
+ "id": 4008,
+ "start": 3031.9,
+ "end": 3032.14,
+ "text": "not"
+ },
+ {
+ "id": 4009,
+ "start": 3032.14,
+ "end": 3033.34,
+ "text": "how"
+ },
+ {
+ "id": 4010,
+ "start": 3033.34,
+ "end": 3033.54,
+ "text": "much"
+ },
+ {
+ "id": 4011,
+ "start": 3033.54,
+ "end": 3033.7,
+ "text": "of"
+ },
+ {
+ "id": 4012,
+ "start": 3033.7,
+ "end": 3034,
+ "text": "that's"
+ },
+ {
+ "id": 4013,
+ "start": 3034,
+ "end": 3034.66,
+ "text": "going"
+ },
+ {
+ "id": 4014,
+ "start": 3034.66,
+ "end": 3034.94,
+ "text": "on,"
+ },
+ {
+ "id": 4015,
+ "start": 3034.94,
+ "end": 3036.08,
+ "text": "right,"
+ },
+ {
+ "id": 4016,
+ "start": 3036.08,
+ "end": 3037.22,
+ "text": "okay."
+ },
+ {
+ "id": 4017,
+ "start": 3037.22,
+ "end": 3038.2,
+ "text": "Facebook"
+ },
+ {
+ "id": 4018,
+ "start": 3038.2,
+ "end": 3038.64,
+ "text": "collects"
+ },
+ {
+ "id": 4019,
+ "start": 3038.64,
+ "end": 3039.26,
+ "text": "massive"
+ },
+ {
+ "id": 4020,
+ "start": 3039.26,
+ "end": 3039.66,
+ "text": "amounts"
+ },
+ {
+ "id": 4021,
+ "start": 3039.66,
+ "end": 3039.84,
+ "text": "of"
+ },
+ {
+ "id": 4022,
+ "start": 3039.84,
+ "end": 3040.18,
+ "text": "data"
+ },
+ {
+ "id": 4023,
+ "start": 3040.18,
+ "end": 3040.4,
+ "text": "from"
+ },
+ {
+ "id": 4024,
+ "start": 3040.4,
+ "end": 3041,
+ "text": "consumers,"
+ },
+ {
+ "id": 4025,
+ "start": 3041,
+ "end": 3041.56,
+ "text": "including"
+ },
+ {
+ "id": 4026,
+ "start": 3041.56,
+ "end": 3042.54,
+ "text": "content"
+ },
+ {
+ "id": 4027,
+ "start": 3042.54,
+ "end": 3043.96,
+ "text": "networks"
+ },
+ {
+ "id": 4028,
+ "start": 3043.96,
+ "end": 3044.98,
+ "text": "contact"
+ },
+ {
+ "id": 4029,
+ "start": 3044.98,
+ "end": 3045.5,
+ "text": "lists"
+ },
+ {
+ "id": 4030,
+ "start": 3045.5,
+ "end": 3046.16,
+ "text": "device"
+ },
+ {
+ "id": 4031,
+ "start": 3046.16,
+ "end": 3047,
+ "text": "information"
+ },
+ {
+ "id": 4032,
+ "start": 3047,
+ "end": 3047.98,
+ "text": "location"
+ },
+ {
+ "id": 4033,
+ "start": 3047.98,
+ "end": 3048.18,
+ "text": "and"
+ },
+ {
+ "id": 4034,
+ "start": 3048.18,
+ "end": 3048.88,
+ "text": "information"
+ },
+ {
+ "id": 4035,
+ "start": 3048.88,
+ "end": 3049.06,
+ "text": "from"
+ },
+ {
+ "id": 4036,
+ "start": 3049.06,
+ "end": 3049.4,
+ "text": "third"
+ },
+ {
+ "id": 4037,
+ "start": 3049.4,
+ "end": 3049.84,
+ "text": "parties"
+ },
+ {
+ "id": 4038,
+ "start": 3049.84,
+ "end": 3050.66,
+ "text": "yet."
+ },
+ {
+ "id": 4039,
+ "start": 3050.66,
+ "end": 3050.88,
+ "text": "Your"
+ },
+ {
+ "id": 4040,
+ "start": 3050.88,
+ "end": 3051.24,
+ "text": "data"
+ },
+ {
+ "id": 4041,
+ "start": 3051.24,
+ "end": 3051.78,
+ "text": "policy"
+ },
+ {
+ "id": 4042,
+ "start": 3051.78,
+ "end": 3051.98,
+ "text": "is"
+ },
+ {
+ "id": 4043,
+ "start": 3051.98,
+ "end": 3052.34,
+ "text": "only"
+ },
+ {
+ "id": 4044,
+ "start": 3052.34,
+ "end": 3052.44,
+ "text": "a"
+ },
+ {
+ "id": 4045,
+ "start": 3052.44,
+ "end": 3052.68,
+ "text": "few"
+ },
+ {
+ "id": 4046,
+ "start": 3052.68,
+ "end": 3053.12,
+ "text": "pages"
+ },
+ {
+ "id": 4047,
+ "start": 3053.12,
+ "end": 3053.46,
+ "text": "long"
+ },
+ {
+ "id": 4048,
+ "start": 3053.46,
+ "end": 3053.6,
+ "text": "and"
+ },
+ {
+ "id": 4049,
+ "start": 3053.6,
+ "end": 3054.02,
+ "text": "provide"
+ },
+ {
+ "id": 4050,
+ "start": 3054.02,
+ "end": 3054.66,
+ "text": "consumers"
+ },
+ {
+ "id": 4051,
+ "start": 3054.66,
+ "end": 3055.18,
+ "text": "with"
+ },
+ {
+ "id": 4052,
+ "start": 3055.18,
+ "end": 3055.42,
+ "text": "only"
+ },
+ {
+ "id": 4053,
+ "start": 3055.42,
+ "end": 3055.48,
+ "text": "a"
+ },
+ {
+ "id": 4054,
+ "start": 3055.48,
+ "end": 3055.7,
+ "text": "few"
+ },
+ {
+ "id": 4055,
+ "start": 3055.7,
+ "end": 3056.3,
+ "text": "examples"
+ },
+ {
+ "id": 4056,
+ "start": 3056.3,
+ "end": 3056.46,
+ "text": "of"
+ },
+ {
+ "id": 4057,
+ "start": 3056.46,
+ "end": 3056.62,
+ "text": "what"
+ },
+ {
+ "id": 4058,
+ "start": 3056.62,
+ "end": 3056.82,
+ "text": "is"
+ },
+ {
+ "id": 4059,
+ "start": 3056.82,
+ "end": 3057.32,
+ "text": "collected"
+ },
+ {
+ "id": 4060,
+ "start": 3057.32,
+ "end": 3057.82,
+ "text": "and"
+ },
+ {
+ "id": 4061,
+ "start": 3057.82,
+ "end": 3058.3,
+ "text": "how"
+ },
+ {
+ "id": 4062,
+ "start": 3058.3,
+ "end": 3058.48,
+ "text": "it"
+ },
+ {
+ "id": 4063,
+ "start": 3058.48,
+ "end": 3058.78,
+ "text": "might"
+ },
+ {
+ "id": 4064,
+ "start": 3058.78,
+ "end": 3058.94,
+ "text": "be"
+ },
+ {
+ "id": 4065,
+ "start": 3058.94,
+ "end": 3059.32,
+ "text": "used."
+ },
+ {
+ "id": 4066,
+ "start": 3059.32,
+ "end": 3060.16,
+ "text": "The"
+ },
+ {
+ "id": 4067,
+ "start": 3060.16,
+ "end": 3060.74,
+ "text": "examples"
+ },
+ {
+ "id": 4068,
+ "start": 3060.74,
+ "end": 3061.14,
+ "text": "given"
+ },
+ {
+ "id": 4069,
+ "start": 3061.14,
+ "end": 3061.94,
+ "text": "emphasized"
+ },
+ {
+ "id": 4070,
+ "start": 3061.94,
+ "end": 3062.52,
+ "text": "benign"
+ },
+ {
+ "id": 4071,
+ "start": 3062.52,
+ "end": 3062.98,
+ "text": "uses"
+ },
+ {
+ "id": 4072,
+ "start": 3062.98,
+ "end": 3063.8,
+ "text": "such"
+ },
+ {
+ "id": 4073,
+ "start": 3063.8,
+ "end": 3064,
+ "text": "as"
+ },
+ {
+ "id": 4074,
+ "start": 3064,
+ "end": 3064.54,
+ "text": "connecting"
+ },
+ {
+ "id": 4075,
+ "start": 3064.54,
+ "end": 3064.74,
+ "text": "with"
+ },
+ {
+ "id": 4076,
+ "start": 3064.74,
+ "end": 3065.5,
+ "text": "friends."
+ },
+ {
+ "id": 4077,
+ "start": 3065.5,
+ "end": 3065.94,
+ "text": "But"
+ },
+ {
+ "id": 4078,
+ "start": 3065.94,
+ "end": 3066.16,
+ "text": "your"
+ },
+ {
+ "id": 4079,
+ "start": 3066.16,
+ "end": 3066.64,
+ "text": "policy"
+ },
+ {
+ "id": 4080,
+ "start": 3066.64,
+ "end": 3066.92,
+ "text": "does"
+ },
+ {
+ "id": 4081,
+ "start": 3066.92,
+ "end": 3067.2,
+ "text": "not"
+ },
+ {
+ "id": 4082,
+ "start": 3067.2,
+ "end": 3067.42,
+ "text": "give"
+ },
+ {
+ "id": 4083,
+ "start": 3067.42,
+ "end": 3067.74,
+ "text": "any"
+ },
+ {
+ "id": 4084,
+ "start": 3067.74,
+ "end": 3068.46,
+ "text": "indication"
+ },
+ {
+ "id": 4085,
+ "start": 3068.46,
+ "end": 3069.28,
+ "text": "for"
+ },
+ {
+ "id": 4086,
+ "start": 3069.28,
+ "end": 3069.72,
+ "text": "more"
+ },
+ {
+ "id": 4087,
+ "start": 3069.72,
+ "end": 3070.54,
+ "text": "controversial"
+ },
+ {
+ "id": 4088,
+ "start": 3070.54,
+ "end": 3071.04,
+ "text": "issues."
+ },
+ {
+ "id": 4089,
+ "start": 3071.04,
+ "end": 3071.24,
+ "text": "Of"
+ },
+ {
+ "id": 4090,
+ "start": 3071.24,
+ "end": 3071.52,
+ "text": "such"
+ },
+ {
+ "id": 4091,
+ "start": 3071.52,
+ "end": 3072.04,
+ "text": "data,"
+ },
+ {
+ "id": 4092,
+ "start": 3072.04,
+ "end": 3072.68,
+ "text": "my"
+ },
+ {
+ "id": 4093,
+ "start": 3072.68,
+ "end": 3073.14,
+ "text": "question"
+ },
+ {
+ "id": 4094,
+ "start": 3073.14,
+ "end": 3073.74,
+ "text": "why"
+ },
+ {
+ "id": 4095,
+ "start": 3073.74,
+ "end": 3074.2,
+ "text": "doesn't"
+ },
+ {
+ "id": 4096,
+ "start": 3074.2,
+ "end": 3074.78,
+ "text": "Facebook"
+ },
+ {
+ "id": 4097,
+ "start": 3074.78,
+ "end": 3075.5,
+ "text": "disclose"
+ },
+ {
+ "id": 4098,
+ "start": 3075.5,
+ "end": 3075.7,
+ "text": "to"
+ },
+ {
+ "id": 4099,
+ "start": 3075.7,
+ "end": 3076.76,
+ "text": "accusers"
+ },
+ {
+ "id": 4100,
+ "start": 3076.76,
+ "end": 3077.24,
+ "text": "all"
+ },
+ {
+ "id": 4101,
+ "start": 3077.24,
+ "end": 3077.4,
+ "text": "the"
+ },
+ {
+ "id": 4102,
+ "start": 3077.4,
+ "end": 3077.78,
+ "text": "ways"
+ },
+ {
+ "id": 4103,
+ "start": 3077.78,
+ "end": 3078.04,
+ "text": "the"
+ },
+ {
+ "id": 4104,
+ "start": 3078.04,
+ "end": 3078.4,
+ "text": "data"
+ },
+ {
+ "id": 4105,
+ "start": 3078.4,
+ "end": 3078.64,
+ "text": "might"
+ },
+ {
+ "id": 4106,
+ "start": 3078.64,
+ "end": 3078.8,
+ "text": "be"
+ },
+ {
+ "id": 4107,
+ "start": 3078.8,
+ "end": 3079.12,
+ "text": "used"
+ },
+ {
+ "id": 4108,
+ "start": 3079.12,
+ "end": 3079.26,
+ "text": "by"
+ },
+ {
+ "id": 4109,
+ "start": 3079.26,
+ "end": 3079.84,
+ "text": "Facebook"
+ },
+ {
+ "id": 4110,
+ "start": 3079.84,
+ "end": 3080.4,
+ "text": "and"
+ },
+ {
+ "id": 4111,
+ "start": 3080.4,
+ "end": 3080.82,
+ "text": "other"
+ },
+ {
+ "id": 4112,
+ "start": 3080.82,
+ "end": 3081.32,
+ "text": "third"
+ },
+ {
+ "id": 4113,
+ "start": 3081.32,
+ "end": 3081.76,
+ "text": "parties."
+ },
+ {
+ "id": 4114,
+ "start": 3081.76,
+ "end": 3082.3,
+ "text": "And"
+ },
+ {
+ "id": 4115,
+ "start": 3082.3,
+ "end": 3082.54,
+ "text": "what"
+ },
+ {
+ "id": 4116,
+ "start": 3082.54,
+ "end": 3082.72,
+ "text": "is"
+ },
+ {
+ "id": 4117,
+ "start": 3082.72,
+ "end": 3083.34,
+ "text": "Facebook's"
+ },
+ {
+ "id": 4118,
+ "start": 3083.34,
+ "end": 3084.38,
+ "text": "responsibility"
+ },
+ {
+ "id": 4119,
+ "start": 3084.38,
+ "end": 3084.64,
+ "text": "to"
+ },
+ {
+ "id": 4120,
+ "start": 3084.64,
+ "end": 3085.12,
+ "text": "inform"
+ },
+ {
+ "id": 4121,
+ "start": 3085.12,
+ "end": 3085.58,
+ "text": "users"
+ },
+ {
+ "id": 4122,
+ "start": 3085.58,
+ "end": 3086.24,
+ "text": "about"
+ },
+ {
+ "id": 4123,
+ "start": 3086.24,
+ "end": 3086.5,
+ "text": "that"
+ },
+ {
+ "id": 4124,
+ "start": 3086.5,
+ "end": 3088.02,
+ "text": "information."
+ },
+ {
+ "id": 4125,
+ "start": 3088.02,
+ "end": 3089.12,
+ "text": "Mr"
+ },
+ {
+ "id": 4126,
+ "start": 3089.12,
+ "end": 3089.5,
+ "text": "Chairman,"
+ },
+ {
+ "id": 4127,
+ "start": 3089.5,
+ "end": 3090.54,
+ "text": "I"
+ },
+ {
+ "id": 4128,
+ "start": 3090.54,
+ "end": 3090.94,
+ "text": "believe"
+ },
+ {
+ "id": 4129,
+ "start": 3090.94,
+ "end": 3091.12,
+ "text": "it's"
+ },
+ {
+ "id": 4130,
+ "start": 3091.12,
+ "end": 3091.58,
+ "text": "important"
+ },
+ {
+ "id": 4131,
+ "start": 3091.58,
+ "end": 3091.7,
+ "text": "to"
+ },
+ {
+ "id": 4132,
+ "start": 3091.7,
+ "end": 3091.96,
+ "text": "tell"
+ },
+ {
+ "id": 4133,
+ "start": 3091.96,
+ "end": 3092.22,
+ "text": "people"
+ },
+ {
+ "id": 4134,
+ "start": 3092.22,
+ "end": 3092.88,
+ "text": "exactly"
+ },
+ {
+ "id": 4135,
+ "start": 3092.88,
+ "end": 3093.04,
+ "text": "how"
+ },
+ {
+ "id": 4136,
+ "start": 3093.04,
+ "end": 3093.16,
+ "text": "the"
+ },
+ {
+ "id": 4137,
+ "start": 3093.16,
+ "end": 3093.72,
+ "text": "information"
+ },
+ {
+ "id": 4138,
+ "start": 3093.72,
+ "end": 3093.9,
+ "text": "that"
+ },
+ {
+ "id": 4139,
+ "start": 3093.9,
+ "end": 3094.08,
+ "text": "they"
+ },
+ {
+ "id": 4140,
+ "start": 3094.08,
+ "end": 3094.88,
+ "text": "Share"
+ },
+ {
+ "id": 4141,
+ "start": 3094.88,
+ "end": 3095.02,
+ "text": "On"
+ },
+ {
+ "id": 4142,
+ "start": 3095.02,
+ "end": 3095.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 4143,
+ "start": 3095.44,
+ "end": 3095.58,
+ "text": "is"
+ },
+ {
+ "id": 4144,
+ "start": 3095.58,
+ "end": 3095.78,
+ "text": "going"
+ },
+ {
+ "id": 4145,
+ "start": 3095.78,
+ "end": 3095.88,
+ "text": "to"
+ },
+ {
+ "id": 4146,
+ "start": 3095.88,
+ "end": 3096,
+ "text": "be"
+ },
+ {
+ "id": 4147,
+ "start": 3096,
+ "end": 3096.28,
+ "text": "used"
+ },
+ {
+ "id": 4148,
+ "start": 3096.28,
+ "end": 3096.98,
+ "text": "that's"
+ },
+ {
+ "id": 4149,
+ "start": 3096.98,
+ "end": 3097.1,
+ "text": "why"
+ },
+ {
+ "id": 4150,
+ "start": 3097.1,
+ "end": 3097.5,
+ "text": "every"
+ },
+ {
+ "id": 4151,
+ "start": 3097.5,
+ "end": 3097.78,
+ "text": "single"
+ },
+ {
+ "id": 4152,
+ "start": 3097.78,
+ "end": 3098.14,
+ "text": "time"
+ },
+ {
+ "id": 4153,
+ "start": 3098.14,
+ "end": 3098.32,
+ "text": "you"
+ },
+ {
+ "id": 4154,
+ "start": 3098.32,
+ "end": 3098.48,
+ "text": "go"
+ },
+ {
+ "id": 4155,
+ "start": 3098.48,
+ "end": 3098.64,
+ "text": "to"
+ },
+ {
+ "id": 4156,
+ "start": 3098.64,
+ "end": 3098.88,
+ "text": "share"
+ },
+ {
+ "id": 4157,
+ "start": 3098.88,
+ "end": 3099.2,
+ "text": "something"
+ },
+ {
+ "id": 4158,
+ "start": 3099.2,
+ "end": 3099.34,
+ "text": "on"
+ },
+ {
+ "id": 4159,
+ "start": 3099.34,
+ "end": 3099.74,
+ "text": "Facebook,"
+ },
+ {
+ "id": 4160,
+ "start": 3099.74,
+ "end": 3099.98,
+ "text": "whether"
+ },
+ {
+ "id": 4161,
+ "start": 3099.98,
+ "end": 3100.14,
+ "text": "it's"
+ },
+ {
+ "id": 4162,
+ "start": 3100.14,
+ "end": 3100.2,
+ "text": "a"
+ },
+ {
+ "id": 4163,
+ "start": 3100.2,
+ "end": 3100.62,
+ "text": "photo"
+ },
+ {
+ "id": 4164,
+ "start": 3100.62,
+ "end": 3100.78,
+ "text": "and"
+ },
+ {
+ "id": 4165,
+ "start": 3100.78,
+ "end": 3101.32,
+ "text": "Facebook"
+ },
+ {
+ "id": 4166,
+ "start": 3101.32,
+ "end": 3102.36,
+ "text": "or"
+ },
+ {
+ "id": 4167,
+ "start": 3102.36,
+ "end": 3102.58,
+ "text": "a"
+ },
+ {
+ "id": 4168,
+ "start": 3102.58,
+ "end": 3103.04,
+ "text": "message"
+ },
+ {
+ "id": 4169,
+ "start": 3103.04,
+ "end": 3103.5,
+ "text": "and"
+ },
+ {
+ "id": 4170,
+ "start": 3103.5,
+ "end": 3103.98,
+ "text": "Messenger"
+ },
+ {
+ "id": 4171,
+ "start": 3103.98,
+ "end": 3104.1,
+ "text": "or"
+ },
+ {
+ "id": 4172,
+ "start": 3104.1,
+ "end": 3104.56,
+ "text": "WhatsApp"
+ },
+ {
+ "id": 4173,
+ "start": 3104.56,
+ "end": 3105.38,
+ "text": "every"
+ },
+ {
+ "id": 4174,
+ "start": 3105.38,
+ "end": 3105.62,
+ "text": "single"
+ },
+ {
+ "id": 4175,
+ "start": 3105.62,
+ "end": 3105.9,
+ "text": "time"
+ },
+ {
+ "id": 4176,
+ "start": 3105.9,
+ "end": 3106.54,
+ "text": "there's"
+ },
+ {
+ "id": 4177,
+ "start": 3106.54,
+ "end": 3106.6,
+ "text": "a"
+ },
+ {
+ "id": 4178,
+ "start": 3106.6,
+ "end": 3107,
+ "text": "control"
+ },
+ {
+ "id": 4179,
+ "start": 3107,
+ "end": 3107.26,
+ "text": "right"
+ },
+ {
+ "id": 4180,
+ "start": 3107.26,
+ "end": 3107.56,
+ "text": "there"
+ },
+ {
+ "id": 4181,
+ "start": 3107.56,
+ "end": 3108.24,
+ "text": "about"
+ },
+ {
+ "id": 4182,
+ "start": 3108.24,
+ "end": 3108.46,
+ "text": "who"
+ },
+ {
+ "id": 4183,
+ "start": 3108.46,
+ "end": 3108.7,
+ "text": "you're"
+ },
+ {
+ "id": 4184,
+ "start": 3108.7,
+ "end": 3108.86,
+ "text": "going"
+ },
+ {
+ "id": 4185,
+ "start": 3108.86,
+ "end": 3108.92,
+ "text": "to"
+ },
+ {
+ "id": 4186,
+ "start": 3108.92,
+ "end": 3109,
+ "text": "be"
+ },
+ {
+ "id": 4187,
+ "start": 3109,
+ "end": 3109.24,
+ "text": "sharing"
+ },
+ {
+ "id": 4188,
+ "start": 3109.24,
+ "end": 3109.32,
+ "text": "it"
+ },
+ {
+ "id": 4189,
+ "start": 3109.32,
+ "end": 3109.5,
+ "text": "with"
+ },
+ {
+ "id": 4190,
+ "start": 3109.5,
+ "end": 3109.78,
+ "text": "whether"
+ },
+ {
+ "id": 4191,
+ "start": 3109.78,
+ "end": 3109.94,
+ "text": "it's"
+ },
+ {
+ "id": 4192,
+ "start": 3109.94,
+ "end": 3110.14,
+ "text": "your"
+ },
+ {
+ "id": 4193,
+ "start": 3110.14,
+ "end": 3110.86,
+ "text": "friends"
+ },
+ {
+ "id": 4194,
+ "start": 3110.86,
+ "end": 3111.1,
+ "text": "or"
+ },
+ {
+ "id": 4195,
+ "start": 3111.1,
+ "end": 3111.52,
+ "text": "public"
+ },
+ {
+ "id": 4196,
+ "start": 3111.52,
+ "end": 3111.72,
+ "text": "or"
+ },
+ {
+ "id": 4197,
+ "start": 3111.72,
+ "end": 3111.78,
+ "text": "a"
+ },
+ {
+ "id": 4198,
+ "start": 3111.78,
+ "end": 3112.3,
+ "text": "specific"
+ },
+ {
+ "id": 4199,
+ "start": 3112.3,
+ "end": 3112.56,
+ "text": "group"
+ },
+ {
+ "id": 4200,
+ "start": 3112.56,
+ "end": 3113.3,
+ "text": "and"
+ },
+ {
+ "id": 4201,
+ "start": 3113.3,
+ "end": 3113.46,
+ "text": "you"
+ },
+ {
+ "id": 4202,
+ "start": 3113.46,
+ "end": 3113.9,
+ "text": "can"
+ },
+ {
+ "id": 4203,
+ "start": 3113.9,
+ "end": 3114.14,
+ "text": "change"
+ },
+ {
+ "id": 4204,
+ "start": 3114.14,
+ "end": 3114.28,
+ "text": "that"
+ },
+ {
+ "id": 4205,
+ "start": 3114.28,
+ "end": 3114.4,
+ "text": "and"
+ },
+ {
+ "id": 4206,
+ "start": 3114.4,
+ "end": 3114.68,
+ "text": "control"
+ },
+ {
+ "id": 4207,
+ "start": 3114.68,
+ "end": 3114.84,
+ "text": "that"
+ },
+ {
+ "id": 4208,
+ "start": 3114.84,
+ "end": 3114.96,
+ "text": "in"
+ },
+ {
+ "id": 4209,
+ "start": 3114.96,
+ "end": 3115.24,
+ "text": "line"
+ },
+ {
+ "id": 4210,
+ "start": 3115.24,
+ "end": 3115.9,
+ "text": "to"
+ },
+ {
+ "id": 4211,
+ "start": 3115.9,
+ "end": 3116.04,
+ "text": "your"
+ },
+ {
+ "id": 4212,
+ "start": 3116.04,
+ "end": 3116.42,
+ "text": "broader"
+ },
+ {
+ "id": 4213,
+ "start": 3116.42,
+ "end": 3116.7,
+ "text": "point"
+ },
+ {
+ "id": 4214,
+ "start": 3116.7,
+ "end": 3117.02,
+ "text": "about"
+ },
+ {
+ "id": 4215,
+ "start": 3117.02,
+ "end": 3117.22,
+ "text": "the"
+ },
+ {
+ "id": 4216,
+ "start": 3117.22,
+ "end": 3117.8,
+ "text": "privacy"
+ },
+ {
+ "id": 4217,
+ "start": 3117.8,
+ "end": 3118.98,
+ "text": "policy."
+ },
+ {
+ "id": 4218,
+ "start": 3118.98,
+ "end": 3119.82,
+ "text": "This"
+ },
+ {
+ "id": 4219,
+ "start": 3119.82,
+ "end": 3120.02,
+ "text": "gets"
+ },
+ {
+ "id": 4220,
+ "start": 3120.02,
+ "end": 3120.3,
+ "text": "into"
+ },
+ {
+ "id": 4221,
+ "start": 3120.3,
+ "end": 3120.78,
+ "text": "an"
+ },
+ {
+ "id": 4222,
+ "start": 3120.78,
+ "end": 3121.08,
+ "text": "issue"
+ },
+ {
+ "id": 4223,
+ "start": 3121.08,
+ "end": 3121.4,
+ "text": "that"
+ },
+ {
+ "id": 4224,
+ "start": 3121.4,
+ "end": 3121.92,
+ "text": "I"
+ },
+ {
+ "id": 4225,
+ "start": 3121.92,
+ "end": 3122.22,
+ "text": "think"
+ },
+ {
+ "id": 4226,
+ "start": 3122.22,
+ "end": 3122.44,
+ "text": "we"
+ },
+ {
+ "id": 4227,
+ "start": 3122.44,
+ "end": 3123,
+ "text": "and"
+ },
+ {
+ "id": 4228,
+ "start": 3123,
+ "end": 3123.48,
+ "text": "others"
+ },
+ {
+ "id": 4229,
+ "start": 3123.48,
+ "end": 3123.68,
+ "text": "in"
+ },
+ {
+ "id": 4230,
+ "start": 3123.68,
+ "end": 3123.82,
+ "text": "the"
+ },
+ {
+ "id": 4231,
+ "start": 3123.82,
+ "end": 3124,
+ "text": "tech"
+ },
+ {
+ "id": 4232,
+ "start": 3124,
+ "end": 3124.36,
+ "text": "industry"
+ },
+ {
+ "id": 4233,
+ "start": 3124.36,
+ "end": 3124.52,
+ "text": "of"
+ },
+ {
+ "id": 4234,
+ "start": 3124.52,
+ "end": 3124.76,
+ "text": "found"
+ },
+ {
+ "id": 4235,
+ "start": 3124.76,
+ "end": 3125.3,
+ "text": "challenging,"
+ },
+ {
+ "id": 4236,
+ "start": 3125.3,
+ "end": 3125.94,
+ "text": "which"
+ },
+ {
+ "id": 4237,
+ "start": 3125.94,
+ "end": 3126.08,
+ "text": "is"
+ },
+ {
+ "id": 4238,
+ "start": 3126.08,
+ "end": 3126.68,
+ "text": "that"
+ },
+ {
+ "id": 4239,
+ "start": 3126.68,
+ "end": 3127.3,
+ "text": "long."
+ },
+ {
+ "id": 4240,
+ "start": 3127.3,
+ "end": 3127.8,
+ "text": "Privacy"
+ },
+ {
+ "id": 4241,
+ "start": 3127.8,
+ "end": 3128.26,
+ "text": "policies"
+ },
+ {
+ "id": 4242,
+ "start": 3128.26,
+ "end": 3128.44,
+ "text": "are"
+ },
+ {
+ "id": 4243,
+ "start": 3128.44,
+ "end": 3128.78,
+ "text": "very"
+ },
+ {
+ "id": 4244,
+ "start": 3128.78,
+ "end": 3129.38,
+ "text": "confusing."
+ },
+ {
+ "id": 4245,
+ "start": 3129.38,
+ "end": 3129.8,
+ "text": "And"
+ },
+ {
+ "id": 4246,
+ "start": 3129.8,
+ "end": 3129.98,
+ "text": "if"
+ },
+ {
+ "id": 4247,
+ "start": 3129.98,
+ "end": 3130.12,
+ "text": "you"
+ },
+ {
+ "id": 4248,
+ "start": 3130.12,
+ "end": 3130.32,
+ "text": "make"
+ },
+ {
+ "id": 4249,
+ "start": 3130.32,
+ "end": 3130.44,
+ "text": "it"
+ },
+ {
+ "id": 4250,
+ "start": 3130.44,
+ "end": 3131.08,
+ "text": "long"
+ },
+ {
+ "id": 4251,
+ "start": 3131.08,
+ "end": 3131.26,
+ "text": "and"
+ },
+ {
+ "id": 4252,
+ "start": 3131.26,
+ "end": 3131.86,
+ "text": "spell"
+ },
+ {
+ "id": 4253,
+ "start": 3131.86,
+ "end": 3131.98,
+ "text": "out"
+ },
+ {
+ "id": 4254,
+ "start": 3131.98,
+ "end": 3132.1,
+ "text": "all"
+ },
+ {
+ "id": 4255,
+ "start": 3132.1,
+ "end": 3132.26,
+ "text": "the"
+ },
+ {
+ "id": 4256,
+ "start": 3132.26,
+ "end": 3132.6,
+ "text": "detail,"
+ },
+ {
+ "id": 4257,
+ "start": 3132.6,
+ "end": 3133.2,
+ "text": "then"
+ },
+ {
+ "id": 4258,
+ "start": 3133.2,
+ "end": 3133.42,
+ "text": "you're"
+ },
+ {
+ "id": 4259,
+ "start": 3133.42,
+ "end": 3133.84,
+ "text": "probably"
+ },
+ {
+ "id": 4260,
+ "start": 3133.84,
+ "end": 3134,
+ "text": "going"
+ },
+ {
+ "id": 4261,
+ "start": 3134,
+ "end": 3134.08,
+ "text": "to"
+ },
+ {
+ "id": 4262,
+ "start": 3134.08,
+ "end": 3134.36,
+ "text": "reduce"
+ },
+ {
+ "id": 4263,
+ "start": 3134.36,
+ "end": 3134.6,
+ "text": "the"
+ },
+ {
+ "id": 4264,
+ "start": 3134.6,
+ "end": 3135.08,
+ "text": "percent"
+ },
+ {
+ "id": 4265,
+ "start": 3135.08,
+ "end": 3135.2,
+ "text": "of"
+ },
+ {
+ "id": 4266,
+ "start": 3135.2,
+ "end": 3135.46,
+ "text": "people"
+ },
+ {
+ "id": 4267,
+ "start": 3135.46,
+ "end": 3135.62,
+ "text": "who"
+ },
+ {
+ "id": 4268,
+ "start": 3135.62,
+ "end": 3135.88,
+ "text": "read"
+ },
+ {
+ "id": 4269,
+ "start": 3135.88,
+ "end": 3136,
+ "text": "it"
+ },
+ {
+ "id": 4270,
+ "start": 3136,
+ "end": 3136.38,
+ "text": "and"
+ },
+ {
+ "id": 4271,
+ "start": 3136.38,
+ "end": 3136.56,
+ "text": "make"
+ },
+ {
+ "id": 4272,
+ "start": 3136.56,
+ "end": 3136.64,
+ "text": "it"
+ },
+ {
+ "id": 4273,
+ "start": 3136.64,
+ "end": 3137.14,
+ "text": "accessible"
+ },
+ {
+ "id": 4274,
+ "start": 3137.14,
+ "end": 3137.26,
+ "text": "to"
+ },
+ {
+ "id": 4275,
+ "start": 3137.26,
+ "end": 3137.46,
+ "text": "them."
+ },
+ {
+ "id": 4276,
+ "start": 3137.46,
+ "end": 3138.16,
+ "text": "So"
+ },
+ {
+ "id": 4277,
+ "start": 3138.16,
+ "end": 3138.52,
+ "text": "one"
+ },
+ {
+ "id": 4278,
+ "start": 3138.52,
+ "end": 3138.6,
+ "text": "of"
+ },
+ {
+ "id": 4279,
+ "start": 3138.6,
+ "end": 3138.72,
+ "text": "the"
+ },
+ {
+ "id": 4280,
+ "start": 3138.72,
+ "end": 3138.92,
+ "text": "things"
+ },
+ {
+ "id": 4281,
+ "start": 3138.92,
+ "end": 3139.2,
+ "text": "that"
+ },
+ {
+ "id": 4282,
+ "start": 3139.2,
+ "end": 3139.36,
+ "text": "that"
+ },
+ {
+ "id": 4283,
+ "start": 3139.36,
+ "end": 3139.62,
+ "text": "we've"
+ },
+ {
+ "id": 4284,
+ "start": 3139.62,
+ "end": 3140,
+ "text": "struggled"
+ },
+ {
+ "id": 4285,
+ "start": 3140,
+ "end": 3140.18,
+ "text": "with"
+ },
+ {
+ "id": 4286,
+ "start": 3140.18,
+ "end": 3140.44,
+ "text": "over"
+ },
+ {
+ "id": 4287,
+ "start": 3140.44,
+ "end": 3140.78,
+ "text": "time"
+ },
+ {
+ "id": 4288,
+ "start": 3140.78,
+ "end": 3141.26,
+ "text": "is"
+ },
+ {
+ "id": 4289,
+ "start": 3141.26,
+ "end": 3141.38,
+ "text": "to"
+ },
+ {
+ "id": 4290,
+ "start": 3141.38,
+ "end": 3141.56,
+ "text": "make"
+ },
+ {
+ "id": 4291,
+ "start": 3141.56,
+ "end": 3141.84,
+ "text": "something"
+ },
+ {
+ "id": 4292,
+ "start": 3141.84,
+ "end": 3141.96,
+ "text": "that"
+ },
+ {
+ "id": 4293,
+ "start": 3141.96,
+ "end": 3142.12,
+ "text": "is"
+ },
+ {
+ "id": 4294,
+ "start": 3142.12,
+ "end": 3142.3,
+ "text": "as"
+ },
+ {
+ "id": 4295,
+ "start": 3142.3,
+ "end": 3142.61,
+ "text": "simple"
+ },
+ {
+ "id": 4296,
+ "start": 3142.61,
+ "end": 3142.73,
+ "text": "as"
+ },
+ {
+ "id": 4297,
+ "start": 3142.73,
+ "end": 3143.15,
+ "text": "possible."
+ },
+ {
+ "id": 4298,
+ "start": 3143.15,
+ "end": 3143.33,
+ "text": "So"
+ },
+ {
+ "id": 4299,
+ "start": 3143.33,
+ "end": 3143.61,
+ "text": "people"
+ },
+ {
+ "id": 4300,
+ "start": 3143.61,
+ "end": 3143.81,
+ "text": "can"
+ },
+ {
+ "id": 4301,
+ "start": 3143.81,
+ "end": 3144.27,
+ "text": "understand"
+ },
+ {
+ "id": 4302,
+ "start": 3144.27,
+ "end": 3144.41,
+ "text": "it"
+ },
+ {
+ "id": 4303,
+ "start": 3144.41,
+ "end": 3145.01,
+ "text": "as"
+ },
+ {
+ "id": 4304,
+ "start": 3145.01,
+ "end": 3145.29,
+ "text": "well"
+ },
+ {
+ "id": 4305,
+ "start": 3145.29,
+ "end": 3145.47,
+ "text": "as"
+ },
+ {
+ "id": 4306,
+ "start": 3145.47,
+ "end": 3145.71,
+ "text": "giving"
+ },
+ {
+ "id": 4307,
+ "start": 3145.71,
+ "end": 3145.85,
+ "text": "them"
+ },
+ {
+ "id": 4308,
+ "start": 3145.85,
+ "end": 3146.25,
+ "text": "controls"
+ },
+ {
+ "id": 4309,
+ "start": 3146.25,
+ "end": 3146.43,
+ "text": "in"
+ },
+ {
+ "id": 4310,
+ "start": 3146.43,
+ "end": 3146.67,
+ "text": "line"
+ },
+ {
+ "id": 4311,
+ "start": 3146.67,
+ "end": 3146.77,
+ "text": "in"
+ },
+ {
+ "id": 4312,
+ "start": 3146.77,
+ "end": 3146.89,
+ "text": "the"
+ },
+ {
+ "id": 4313,
+ "start": 3146.89,
+ "end": 3147.25,
+ "text": "product"
+ },
+ {
+ "id": 4314,
+ "start": 3147.25,
+ "end": 3147.59,
+ "text": "in"
+ },
+ {
+ "id": 4315,
+ "start": 3147.59,
+ "end": 3147.71,
+ "text": "the"
+ },
+ {
+ "id": 4316,
+ "start": 3147.71,
+ "end": 3148.13,
+ "text": "context"
+ },
+ {
+ "id": 4317,
+ "start": 3148.13,
+ "end": 3148.25,
+ "text": "of"
+ },
+ {
+ "id": 4318,
+ "start": 3148.25,
+ "end": 3148.39,
+ "text": "when"
+ },
+ {
+ "id": 4319,
+ "start": 3148.39,
+ "end": 3148.63,
+ "text": "they're"
+ },
+ {
+ "id": 4320,
+ "start": 3148.63,
+ "end": 3148.87,
+ "text": "trying"
+ },
+ {
+ "id": 4321,
+ "start": 3148.87,
+ "end": 3148.97,
+ "text": "to"
+ },
+ {
+ "id": 4322,
+ "start": 3148.97,
+ "end": 3149.25,
+ "text": "actually"
+ },
+ {
+ "id": 4323,
+ "start": 3149.25,
+ "end": 3149.47,
+ "text": "use"
+ },
+ {
+ "id": 4324,
+ "start": 3149.47,
+ "end": 3149.69,
+ "text": "them"
+ },
+ {
+ "id": 4325,
+ "start": 3149.69,
+ "end": 3150.79,
+ "text": "taking"
+ },
+ {
+ "id": 4326,
+ "start": 3150.79,
+ "end": 3150.95,
+ "text": "into"
+ },
+ {
+ "id": 4327,
+ "start": 3150.95,
+ "end": 3151.25,
+ "text": "account"
+ },
+ {
+ "id": 4328,
+ "start": 3151.25,
+ "end": 3151.49,
+ "text": "that"
+ },
+ {
+ "id": 4329,
+ "start": 3151.49,
+ "end": 3152.07,
+ "text": "we"
+ },
+ {
+ "id": 4330,
+ "start": 3152.07,
+ "end": 3152.25,
+ "text": "don't"
+ },
+ {
+ "id": 4331,
+ "start": 3152.25,
+ "end": 3152.57,
+ "text": "expect"
+ },
+ {
+ "id": 4332,
+ "start": 3152.57,
+ "end": 3152.71,
+ "text": "that"
+ },
+ {
+ "id": 4333,
+ "start": 3152.71,
+ "end": 3152.93,
+ "text": "most"
+ },
+ {
+ "id": 4334,
+ "start": 3152.93,
+ "end": 3153.23,
+ "text": "people"
+ },
+ {
+ "id": 4335,
+ "start": 3153.23,
+ "end": 3153.47,
+ "text": "will"
+ },
+ {
+ "id": 4336,
+ "start": 3153.47,
+ "end": 3153.63,
+ "text": "want"
+ },
+ {
+ "id": 4337,
+ "start": 3153.63,
+ "end": 3153.71,
+ "text": "to"
+ },
+ {
+ "id": 4338,
+ "start": 3153.71,
+ "end": 3153.81,
+ "text": "go"
+ },
+ {
+ "id": 4339,
+ "start": 3153.81,
+ "end": 3154.45,
+ "text": "through"
+ },
+ {
+ "id": 4340,
+ "start": 3154.45,
+ "end": 3154.59,
+ "text": "and"
+ },
+ {
+ "id": 4341,
+ "start": 3154.59,
+ "end": 3154.81,
+ "text": "read"
+ },
+ {
+ "id": 4342,
+ "start": 3154.81,
+ "end": 3154.87,
+ "text": "a"
+ },
+ {
+ "id": 4343,
+ "start": 3154.87,
+ "end": 3155.09,
+ "text": "full"
+ },
+ {
+ "id": 4344,
+ "start": 3155.09,
+ "end": 3155.37,
+ "text": "legal"
+ },
+ {
+ "id": 4345,
+ "start": 3155.37,
+ "end": 3156.51,
+ "text": "document."
+ },
+ {
+ "id": 4346,
+ "start": 3156.51,
+ "end": 3157.51,
+ "text": "Senator"
+ },
+ {
+ "id": 4347,
+ "start": 3157.51,
+ "end": 3158.54,
+ "text": "Nelson,"
+ },
+ {
+ "id": 4348,
+ "start": 3158.54,
+ "end": 3159.36,
+ "text": "thank"
+ },
+ {
+ "id": 4349,
+ "start": 3159.36,
+ "end": 3159.5,
+ "text": "you"
+ },
+ {
+ "id": 4350,
+ "start": 3159.5,
+ "end": 3159.74,
+ "text": "Mr"
+ },
+ {
+ "id": 4351,
+ "start": 3159.74,
+ "end": 3161.2,
+ "text": "Chairman"
+ },
+ {
+ "id": 4352,
+ "start": 3161.2,
+ "end": 3162.18,
+ "text": "yesterday"
+ },
+ {
+ "id": 4353,
+ "start": 3162.18,
+ "end": 3162.42,
+ "text": "when"
+ },
+ {
+ "id": 4354,
+ "start": 3162.42,
+ "end": 3162.54,
+ "text": "we"
+ },
+ {
+ "id": 4355,
+ "start": 3162.54,
+ "end": 3162.94,
+ "text": "talked,"
+ },
+ {
+ "id": 4356,
+ "start": 3162.94,
+ "end": 3163.08,
+ "text": "I"
+ },
+ {
+ "id": 4357,
+ "start": 3163.08,
+ "end": 3163.48,
+ "text": "gave"
+ },
+ {
+ "id": 4358,
+ "start": 3163.48,
+ "end": 3163.92,
+ "text": "the"
+ },
+ {
+ "id": 4359,
+ "start": 3163.92,
+ "end": 3164.9,
+ "text": "relatively"
+ },
+ {
+ "id": 4360,
+ "start": 3164.9,
+ "end": 3165.84,
+ "text": "harmless"
+ },
+ {
+ "id": 4361,
+ "start": 3165.84,
+ "end": 3166.52,
+ "text": "example"
+ },
+ {
+ "id": 4362,
+ "start": 3166.52,
+ "end": 3167.38,
+ "text": "that"
+ },
+ {
+ "id": 4363,
+ "start": 3167.38,
+ "end": 3168.16,
+ "text": "I'm"
+ },
+ {
+ "id": 4364,
+ "start": 3168.16,
+ "end": 3169.2,
+ "text": "communicating"
+ },
+ {
+ "id": 4365,
+ "start": 3169.2,
+ "end": 3169.44,
+ "text": "with"
+ },
+ {
+ "id": 4366,
+ "start": 3169.44,
+ "end": 3169.68,
+ "text": "my"
+ },
+ {
+ "id": 4367,
+ "start": 3169.68,
+ "end": 3170.2,
+ "text": "friends"
+ },
+ {
+ "id": 4368,
+ "start": 3170.2,
+ "end": 3170.56,
+ "text": "on"
+ },
+ {
+ "id": 4369,
+ "start": 3170.56,
+ "end": 3171.32,
+ "text": "Facebook"
+ },
+ {
+ "id": 4370,
+ "start": 3171.32,
+ "end": 3172.36,
+ "text": "and"
+ },
+ {
+ "id": 4371,
+ "start": 3172.36,
+ "end": 3173.36,
+ "text": "indicate"
+ },
+ {
+ "id": 4372,
+ "start": 3173.36,
+ "end": 3174.38,
+ "text": "that"
+ },
+ {
+ "id": 4373,
+ "start": 3174.38,
+ "end": 3174.74,
+ "text": "I"
+ },
+ {
+ "id": 4374,
+ "start": 3174.74,
+ "end": 3175.7,
+ "text": "love"
+ },
+ {
+ "id": 4375,
+ "start": 3175.7,
+ "end": 3175.76,
+ "text": "a"
+ },
+ {
+ "id": 4376,
+ "start": 3175.76,
+ "end": 3176.24,
+ "text": "certain"
+ },
+ {
+ "id": 4377,
+ "start": 3176.24,
+ "end": 3176.56,
+ "text": "kind"
+ },
+ {
+ "id": 4378,
+ "start": 3176.56,
+ "end": 3176.74,
+ "text": "of"
+ },
+ {
+ "id": 4379,
+ "start": 3176.74,
+ "end": 3177.4,
+ "text": "chocolate"
+ },
+ {
+ "id": 4380,
+ "start": 3177.4,
+ "end": 3179.18,
+ "text": "and"
+ },
+ {
+ "id": 4381,
+ "start": 3179.18,
+ "end": 3180.16,
+ "text": "all"
+ },
+ {
+ "id": 4382,
+ "start": 3180.16,
+ "end": 3180.26,
+ "text": "of"
+ },
+ {
+ "id": 4383,
+ "start": 3180.26,
+ "end": 3180.3,
+ "text": "a"
+ },
+ {
+ "id": 4384,
+ "start": 3180.3,
+ "end": 3180.7,
+ "text": "sudden"
+ },
+ {
+ "id": 4385,
+ "start": 3180.7,
+ "end": 3180.92,
+ "text": "I"
+ },
+ {
+ "id": 4386,
+ "start": 3180.92,
+ "end": 3181.54,
+ "text": "start"
+ },
+ {
+ "id": 4387,
+ "start": 3181.54,
+ "end": 3183.04,
+ "text": "receiving"
+ },
+ {
+ "id": 4388,
+ "start": 3183.04,
+ "end": 3184.04,
+ "text": "advertisements"
+ },
+ {
+ "id": 4389,
+ "start": 3184.04,
+ "end": 3184.64,
+ "text": "for"
+ },
+ {
+ "id": 4390,
+ "start": 3184.64,
+ "end": 3186.24,
+ "text": "chocolate."
+ },
+ {
+ "id": 4391,
+ "start": 3186.24,
+ "end": 3187.44,
+ "text": "What"
+ },
+ {
+ "id": 4392,
+ "start": 3187.44,
+ "end": 3187.58,
+ "text": "if"
+ },
+ {
+ "id": 4393,
+ "start": 3187.58,
+ "end": 3187.7,
+ "text": "I"
+ },
+ {
+ "id": 4394,
+ "start": 3187.7,
+ "end": 3188.1,
+ "text": "don't"
+ },
+ {
+ "id": 4395,
+ "start": 3188.1,
+ "end": 3188.5,
+ "text": "want"
+ },
+ {
+ "id": 4396,
+ "start": 3188.5,
+ "end": 3189.2,
+ "text": "to"
+ },
+ {
+ "id": 4397,
+ "start": 3189.2,
+ "end": 3189.94,
+ "text": "receive"
+ },
+ {
+ "id": 4398,
+ "start": 3189.94,
+ "end": 3190.8,
+ "text": "those"
+ },
+ {
+ "id": 4399,
+ "start": 3190.8,
+ "end": 3191.46,
+ "text": "commercial"
+ },
+ {
+ "id": 4400,
+ "start": 3191.46,
+ "end": 3192.66,
+ "text": "advertisements?"
+ },
+ {
+ "id": 4401,
+ "start": 3192.66,
+ "end": 3193.66,
+ "text": "So"
+ },
+ {
+ "id": 4402,
+ "start": 3193.66,
+ "end": 3195,
+ "text": "your"
+ },
+ {
+ "id": 4403,
+ "start": 3195,
+ "end": 3195.94,
+ "text": "chief"
+ },
+ {
+ "id": 4404,
+ "start": 3195.94,
+ "end": 3196.64,
+ "text": "operating"
+ },
+ {
+ "id": 4405,
+ "start": 3196.64,
+ "end": 3197.3,
+ "text": "officer,"
+ },
+ {
+ "id": 4406,
+ "start": 3197.3,
+ "end": 3197.78,
+ "text": "miss"
+ },
+ {
+ "id": 4407,
+ "start": 3197.78,
+ "end": 3198.58,
+ "text": "Sandberg"
+ },
+ {
+ "id": 4408,
+ "start": 3198.58,
+ "end": 3199.64,
+ "text": "suggested"
+ },
+ {
+ "id": 4409,
+ "start": 3199.64,
+ "end": 3200.18,
+ "text": "on"
+ },
+ {
+ "id": 4410,
+ "start": 3200.18,
+ "end": 3200.86,
+ "text": "the"
+ },
+ {
+ "id": 4411,
+ "start": 3200.86,
+ "end": 3201.82,
+ "text": "Today"
+ },
+ {
+ "id": 4412,
+ "start": 3201.82,
+ "end": 3202.3,
+ "text": "show"
+ },
+ {
+ "id": 4413,
+ "start": 3202.3,
+ "end": 3203.38,
+ "text": "that"
+ },
+ {
+ "id": 4414,
+ "start": 3203.38,
+ "end": 3204.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 4415,
+ "start": 3204.46,
+ "end": 3205.08,
+ "text": "users"
+ },
+ {
+ "id": 4416,
+ "start": 3205.08,
+ "end": 3205.58,
+ "text": "who"
+ },
+ {
+ "id": 4417,
+ "start": 3205.58,
+ "end": 3205.8,
+ "text": "do"
+ },
+ {
+ "id": 4418,
+ "start": 3205.8,
+ "end": 3206.26,
+ "text": "not"
+ },
+ {
+ "id": 4419,
+ "start": 3206.26,
+ "end": 3206.56,
+ "text": "want"
+ },
+ {
+ "id": 4420,
+ "start": 3206.56,
+ "end": 3206.86,
+ "text": "their"
+ },
+ {
+ "id": 4421,
+ "start": 3206.86,
+ "end": 3207.44,
+ "text": "personal"
+ },
+ {
+ "id": 4422,
+ "start": 3207.44,
+ "end": 3208.42,
+ "text": "information"
+ },
+ {
+ "id": 4423,
+ "start": 3208.42,
+ "end": 3208.86,
+ "text": "used"
+ },
+ {
+ "id": 4424,
+ "start": 3208.86,
+ "end": 3209.1,
+ "text": "for"
+ },
+ {
+ "id": 4425,
+ "start": 3209.1,
+ "end": 3210.04,
+ "text": "advertising"
+ },
+ {
+ "id": 4426,
+ "start": 3210.04,
+ "end": 3211.06,
+ "text": "might"
+ },
+ {
+ "id": 4427,
+ "start": 3211.06,
+ "end": 3211.38,
+ "text": "have"
+ },
+ {
+ "id": 4428,
+ "start": 3211.38,
+ "end": 3211.62,
+ "text": "to"
+ },
+ {
+ "id": 4429,
+ "start": 3211.62,
+ "end": 3212.18,
+ "text": "pay"
+ },
+ {
+ "id": 4430,
+ "start": 3212.18,
+ "end": 3213.1,
+ "text": "for"
+ },
+ {
+ "id": 4431,
+ "start": 3213.1,
+ "end": 3213.36,
+ "text": "that"
+ },
+ {
+ "id": 4432,
+ "start": 3213.36,
+ "end": 3214.04,
+ "text": "protection"
+ },
+ {
+ "id": 4433,
+ "start": 3214.04,
+ "end": 3214.54,
+ "text": "pay"
+ },
+ {
+ "id": 4434,
+ "start": 3214.54,
+ "end": 3215.48,
+ "text": "for."
+ },
+ {
+ "id": 4435,
+ "start": 3215.48,
+ "end": 3216.28,
+ "text": "Are"
+ },
+ {
+ "id": 4436,
+ "start": 3216.28,
+ "end": 3216.42,
+ "text": "you"
+ },
+ {
+ "id": 4437,
+ "start": 3216.42,
+ "end": 3217.92,
+ "text": "actually"
+ },
+ {
+ "id": 4438,
+ "start": 3217.92,
+ "end": 3218.9,
+ "text": "considering"
+ },
+ {
+ "id": 4439,
+ "start": 3218.9,
+ "end": 3220.04,
+ "text": "having"
+ },
+ {
+ "id": 4440,
+ "start": 3220.04,
+ "end": 3220.74,
+ "text": "Facebook"
+ },
+ {
+ "id": 4441,
+ "start": 3220.74,
+ "end": 3222.24,
+ "text": "users"
+ },
+ {
+ "id": 4442,
+ "start": 3222.24,
+ "end": 3223.44,
+ "text": "pay"
+ },
+ {
+ "id": 4443,
+ "start": 3223.44,
+ "end": 3224.16,
+ "text": "for"
+ },
+ {
+ "id": 4444,
+ "start": 3224.16,
+ "end": 3224.36,
+ "text": "you"
+ },
+ {
+ "id": 4445,
+ "start": 3224.36,
+ "end": 3224.7,
+ "text": "not"
+ },
+ {
+ "id": 4446,
+ "start": 3224.7,
+ "end": 3224.92,
+ "text": "to"
+ },
+ {
+ "id": 4447,
+ "start": 3224.92,
+ "end": 3225.3,
+ "text": "use"
+ },
+ {
+ "id": 4448,
+ "start": 3225.3,
+ "end": 3225.58,
+ "text": "that"
+ },
+ {
+ "id": 4449,
+ "start": 3225.58,
+ "end": 3227.92,
+ "text": "information."
+ },
+ {
+ "id": 4450,
+ "start": 3227.92,
+ "end": 3228.94,
+ "text": "Senator"
+ },
+ {
+ "id": 4451,
+ "start": 3228.94,
+ "end": 3230.06,
+ "text": "people"
+ },
+ {
+ "id": 4452,
+ "start": 3230.06,
+ "end": 3230.3,
+ "text": "have"
+ },
+ {
+ "id": 4453,
+ "start": 3230.3,
+ "end": 3230.36,
+ "text": "a"
+ },
+ {
+ "id": 4454,
+ "start": 3230.36,
+ "end": 3230.84,
+ "text": "control"
+ },
+ {
+ "id": 4455,
+ "start": 3230.84,
+ "end": 3231.12,
+ "text": "over"
+ },
+ {
+ "id": 4456,
+ "start": 3231.12,
+ "end": 3231.3,
+ "text": "how"
+ },
+ {
+ "id": 4457,
+ "start": 3231.3,
+ "end": 3231.5,
+ "text": "their"
+ },
+ {
+ "id": 4458,
+ "start": 3231.5,
+ "end": 3232,
+ "text": "information"
+ },
+ {
+ "id": 4459,
+ "start": 3232,
+ "end": 3232.18,
+ "text": "is"
+ },
+ {
+ "id": 4460,
+ "start": 3232.18,
+ "end": 3232.4,
+ "text": "used"
+ },
+ {
+ "id": 4461,
+ "start": 3232.4,
+ "end": 3232.52,
+ "text": "in"
+ },
+ {
+ "id": 4462,
+ "start": 3232.52,
+ "end": 3232.88,
+ "text": "ads"
+ },
+ {
+ "id": 4463,
+ "start": 3232.88,
+ "end": 3233.02,
+ "text": "in"
+ },
+ {
+ "id": 4464,
+ "start": 3233.02,
+ "end": 3233.14,
+ "text": "the"
+ },
+ {
+ "id": 4465,
+ "start": 3233.14,
+ "end": 3233.46,
+ "text": "product"
+ },
+ {
+ "id": 4466,
+ "start": 3233.46,
+ "end": 3233.82,
+ "text": "today,"
+ },
+ {
+ "id": 4467,
+ "start": 3233.82,
+ "end": 3234.46,
+ "text": "so"
+ },
+ {
+ "id": 4468,
+ "start": 3234.46,
+ "end": 3234.56,
+ "text": "if"
+ },
+ {
+ "id": 4469,
+ "start": 3234.56,
+ "end": 3234.74,
+ "text": "you"
+ },
+ {
+ "id": 4470,
+ "start": 3234.74,
+ "end": 3234.96,
+ "text": "want"
+ },
+ {
+ "id": 4471,
+ "start": 3234.96,
+ "end": 3235.1,
+ "text": "to"
+ },
+ {
+ "id": 4472,
+ "start": 3235.1,
+ "end": 3235.28,
+ "text": "have"
+ },
+ {
+ "id": 4473,
+ "start": 3235.28,
+ "end": 3235.36,
+ "text": "an"
+ },
+ {
+ "id": 4474,
+ "start": 3235.36,
+ "end": 3235.98,
+ "text": "experience"
+ },
+ {
+ "id": 4475,
+ "start": 3235.98,
+ "end": 3236.88,
+ "text": "where"
+ },
+ {
+ "id": 4476,
+ "start": 3236.88,
+ "end": 3237.36,
+ "text": "your"
+ },
+ {
+ "id": 4477,
+ "start": 3237.36,
+ "end": 3237.72,
+ "text": "ads"
+ },
+ {
+ "id": 4478,
+ "start": 3237.72,
+ "end": 3238.7,
+ "text": "aren't"
+ },
+ {
+ "id": 4479,
+ "start": 3238.7,
+ "end": 3239.1,
+ "text": "you"
+ },
+ {
+ "id": 4480,
+ "start": 3239.1,
+ "end": 3239.4,
+ "text": "aren't"
+ },
+ {
+ "id": 4481,
+ "start": 3239.4,
+ "end": 3239.86,
+ "text": "targeted"
+ },
+ {
+ "id": 4482,
+ "start": 3239.86,
+ "end": 3240.28,
+ "text": "using"
+ },
+ {
+ "id": 4483,
+ "start": 3240.28,
+ "end": 3241.04,
+ "text": "all"
+ },
+ {
+ "id": 4484,
+ "start": 3241.04,
+ "end": 3241.18,
+ "text": "the"
+ },
+ {
+ "id": 4485,
+ "start": 3241.18,
+ "end": 3241.6,
+ "text": "information"
+ },
+ {
+ "id": 4486,
+ "start": 3241.6,
+ "end": 3241.76,
+ "text": "that"
+ },
+ {
+ "id": 4487,
+ "start": 3241.76,
+ "end": 3241.84,
+ "text": "we"
+ },
+ {
+ "id": 4488,
+ "start": 3241.84,
+ "end": 3241.96,
+ "text": "have"
+ },
+ {
+ "id": 4489,
+ "start": 3241.96,
+ "end": 3242.36,
+ "text": "available,"
+ },
+ {
+ "id": 4490,
+ "start": 3242.36,
+ "end": 3243.08,
+ "text": "you"
+ },
+ {
+ "id": 4491,
+ "start": 3243.08,
+ "end": 3243.2,
+ "text": "can"
+ },
+ {
+ "id": 4492,
+ "start": 3243.2,
+ "end": 3243.4,
+ "text": "turn"
+ },
+ {
+ "id": 4493,
+ "start": 3243.4,
+ "end": 3243.6,
+ "text": "off"
+ },
+ {
+ "id": 4494,
+ "start": 3243.6,
+ "end": 3243.9,
+ "text": "third"
+ },
+ {
+ "id": 4495,
+ "start": 3243.9,
+ "end": 3244.14,
+ "text": "party"
+ },
+ {
+ "id": 4496,
+ "start": 3244.14,
+ "end": 3244.68,
+ "text": "information,"
+ },
+ {
+ "id": 4497,
+ "start": 3244.68,
+ "end": 3245.5,
+ "text": "what"
+ },
+ {
+ "id": 4498,
+ "start": 3245.5,
+ "end": 3245.6,
+ "text": "we"
+ },
+ {
+ "id": 4499,
+ "start": 3245.6,
+ "end": 3246.16,
+ "text": "found"
+ },
+ {
+ "id": 4500,
+ "start": 3246.16,
+ "end": 3246.88,
+ "text": "is"
+ },
+ {
+ "id": 4501,
+ "start": 3246.88,
+ "end": 3247.16,
+ "text": "that"
+ },
+ {
+ "id": 4502,
+ "start": 3247.16,
+ "end": 3248.02,
+ "text": "even"
+ },
+ {
+ "id": 4503,
+ "start": 3248.02,
+ "end": 3248.2,
+ "text": "though"
+ },
+ {
+ "id": 4504,
+ "start": 3248.2,
+ "end": 3248.44,
+ "text": "some"
+ },
+ {
+ "id": 4505,
+ "start": 3248.44,
+ "end": 3248.64,
+ "text": "people"
+ },
+ {
+ "id": 4506,
+ "start": 3248.64,
+ "end": 3248.94,
+ "text": "don't"
+ },
+ {
+ "id": 4507,
+ "start": 3248.94,
+ "end": 3249.14,
+ "text": "like"
+ },
+ {
+ "id": 4508,
+ "start": 3249.14,
+ "end": 3249.96,
+ "text": "ads,"
+ },
+ {
+ "id": 4509,
+ "start": 3249.96,
+ "end": 3250.62,
+ "text": "people"
+ },
+ {
+ "id": 4510,
+ "start": 3250.62,
+ "end": 3251.16,
+ "text": "really"
+ },
+ {
+ "id": 4511,
+ "start": 3251.16,
+ "end": 3251.38,
+ "text": "don't"
+ },
+ {
+ "id": 4512,
+ "start": 3251.38,
+ "end": 3251.56,
+ "text": "like,"
+ },
+ {
+ "id": 4513,
+ "start": 3251.56,
+ "end": 3251.8,
+ "text": "ads"
+ },
+ {
+ "id": 4514,
+ "start": 3251.8,
+ "end": 3251.94,
+ "text": "that"
+ },
+ {
+ "id": 4515,
+ "start": 3251.94,
+ "end": 3252.14,
+ "text": "aren't"
+ },
+ {
+ "id": 4516,
+ "start": 3252.14,
+ "end": 3252.5,
+ "text": "relevant."
+ },
+ {
+ "id": 4517,
+ "start": 3252.5,
+ "end": 3253.3,
+ "text": "And"
+ },
+ {
+ "id": 4518,
+ "start": 3253.3,
+ "end": 3254.12,
+ "text": "while"
+ },
+ {
+ "id": 4519,
+ "start": 3254.12,
+ "end": 3254.4,
+ "text": "there"
+ },
+ {
+ "id": 4520,
+ "start": 3254.4,
+ "end": 3254.52,
+ "text": "is"
+ },
+ {
+ "id": 4521,
+ "start": 3254.52,
+ "end": 3254.82,
+ "text": "some"
+ },
+ {
+ "id": 4522,
+ "start": 3254.82,
+ "end": 3255.5,
+ "text": "discomfort"
+ },
+ {
+ "id": 4523,
+ "start": 3255.5,
+ "end": 3255.88,
+ "text": "for"
+ },
+ {
+ "id": 4524,
+ "start": 3255.88,
+ "end": 3256.28,
+ "text": "sure"
+ },
+ {
+ "id": 4525,
+ "start": 3256.28,
+ "end": 3256.68,
+ "text": "with"
+ },
+ {
+ "id": 4526,
+ "start": 3256.68,
+ "end": 3257.4,
+ "text": "using"
+ },
+ {
+ "id": 4527,
+ "start": 3257.4,
+ "end": 3257.94,
+ "text": "information"
+ },
+ {
+ "id": 4528,
+ "start": 3257.94,
+ "end": 3258.12,
+ "text": "in"
+ },
+ {
+ "id": 4529,
+ "start": 3258.12,
+ "end": 3258.4,
+ "text": "making"
+ },
+ {
+ "id": 4530,
+ "start": 3258.4,
+ "end": 3259.06,
+ "text": "ads"
+ },
+ {
+ "id": 4531,
+ "start": 3259.06,
+ "end": 3260.04,
+ "text": "more"
+ },
+ {
+ "id": 4532,
+ "start": 3260.04,
+ "end": 3261.28,
+ "text": "relevant."
+ },
+ {
+ "id": 4533,
+ "start": 3261.28,
+ "end": 3261.8,
+ "text": "Overwhelming"
+ },
+ {
+ "id": 4534,
+ "start": 3261.8,
+ "end": 3262.18,
+ "text": "feedback"
+ },
+ {
+ "id": 4535,
+ "start": 3262.18,
+ "end": 3262.34,
+ "text": "that"
+ },
+ {
+ "id": 4536,
+ "start": 3262.34,
+ "end": 3262.46,
+ "text": "we"
+ },
+ {
+ "id": 4537,
+ "start": 3262.46,
+ "end": 3262.7,
+ "text": "get"
+ },
+ {
+ "id": 4538,
+ "start": 3262.7,
+ "end": 3262.92,
+ "text": "from"
+ },
+ {
+ "id": 4539,
+ "start": 3262.92,
+ "end": 3263.08,
+ "text": "our"
+ },
+ {
+ "id": 4540,
+ "start": 3263.08,
+ "end": 3263.56,
+ "text": "community"
+ },
+ {
+ "id": 4541,
+ "start": 3263.56,
+ "end": 3264.14,
+ "text": "is"
+ },
+ {
+ "id": 4542,
+ "start": 3264.14,
+ "end": 3264.3,
+ "text": "that"
+ },
+ {
+ "id": 4543,
+ "start": 3264.3,
+ "end": 3264.56,
+ "text": "people"
+ },
+ {
+ "id": 4544,
+ "start": 3264.56,
+ "end": 3264.76,
+ "text": "would"
+ },
+ {
+ "id": 4545,
+ "start": 3264.76,
+ "end": 3265.1,
+ "text": "rather"
+ },
+ {
+ "id": 4546,
+ "start": 3265.1,
+ "end": 3265.38,
+ "text": "have"
+ },
+ {
+ "id": 4547,
+ "start": 3265.38,
+ "end": 3265.6,
+ "text": "us"
+ },
+ {
+ "id": 4548,
+ "start": 3265.6,
+ "end": 3266.48,
+ "text": "show"
+ },
+ {
+ "id": 4549,
+ "start": 3266.48,
+ "end": 3266.9,
+ "text": "relevant"
+ },
+ {
+ "id": 4550,
+ "start": 3266.9,
+ "end": 3267.32,
+ "text": "content"
+ },
+ {
+ "id": 4551,
+ "start": 3267.32,
+ "end": 3267.68,
+ "text": "there"
+ },
+ {
+ "id": 4552,
+ "start": 3267.68,
+ "end": 3268.72,
+ "text": "than"
+ },
+ {
+ "id": 4553,
+ "start": 3268.72,
+ "end": 3269,
+ "text": "not"
+ },
+ {
+ "id": 4554,
+ "start": 3269,
+ "end": 3269.78,
+ "text": "so"
+ },
+ {
+ "id": 4555,
+ "start": 3269.78,
+ "end": 3269.92,
+ "text": "we"
+ },
+ {
+ "id": 4556,
+ "start": 3269.92,
+ "end": 3270.2,
+ "text": "offer"
+ },
+ {
+ "id": 4557,
+ "start": 3270.2,
+ "end": 3270.36,
+ "text": "this"
+ },
+ {
+ "id": 4558,
+ "start": 3270.36,
+ "end": 3270.78,
+ "text": "control"
+ },
+ {
+ "id": 4559,
+ "start": 3270.78,
+ "end": 3271.02,
+ "text": "that"
+ },
+ {
+ "id": 4560,
+ "start": 3271.02,
+ "end": 3271.44,
+ "text": "you're"
+ },
+ {
+ "id": 4561,
+ "start": 3271.44,
+ "end": 3272.6,
+ "text": "referencing."
+ },
+ {
+ "id": 4562,
+ "start": 3272.6,
+ "end": 3273.44,
+ "text": "Some"
+ },
+ {
+ "id": 4563,
+ "start": 3273.44,
+ "end": 3273.64,
+ "text": "people"
+ },
+ {
+ "id": 4564,
+ "start": 3273.64,
+ "end": 3273.86,
+ "text": "use"
+ },
+ {
+ "id": 4565,
+ "start": 3273.86,
+ "end": 3274,
+ "text": "it"
+ },
+ {
+ "id": 4566,
+ "start": 3274,
+ "end": 3274.88,
+ "text": "it's"
+ },
+ {
+ "id": 4567,
+ "start": 3274.88,
+ "end": 3274.98,
+ "text": "not"
+ },
+ {
+ "id": 4568,
+ "start": 3274.98,
+ "end": 3275.1,
+ "text": "the"
+ },
+ {
+ "id": 4569,
+ "start": 3275.1,
+ "end": 3275.5,
+ "text": "majority"
+ },
+ {
+ "id": 4570,
+ "start": 3275.5,
+ "end": 3275.62,
+ "text": "of"
+ },
+ {
+ "id": 4571,
+ "start": 3275.62,
+ "end": 3275.84,
+ "text": "people"
+ },
+ {
+ "id": 4572,
+ "start": 3275.84,
+ "end": 3275.98,
+ "text": "on"
+ },
+ {
+ "id": 4573,
+ "start": 3275.98,
+ "end": 3276.84,
+ "text": "Facebook."
+ },
+ {
+ "id": 4574,
+ "start": 3276.84,
+ "end": 3277.84,
+ "text": "And"
+ },
+ {
+ "id": 4575,
+ "start": 3277.84,
+ "end": 3278.16,
+ "text": "I"
+ },
+ {
+ "id": 4576,
+ "start": 3278.16,
+ "end": 3278.34,
+ "text": "think"
+ },
+ {
+ "id": 4577,
+ "start": 3278.34,
+ "end": 3278.46,
+ "text": "that"
+ },
+ {
+ "id": 4578,
+ "start": 3278.46,
+ "end": 3280.08,
+ "text": "that's"
+ },
+ {
+ "id": 4579,
+ "start": 3280.08,
+ "end": 3280.48,
+ "text": "a"
+ },
+ {
+ "id": 4580,
+ "start": 3280.48,
+ "end": 3280.7,
+ "text": "good"
+ },
+ {
+ "id": 4581,
+ "start": 3280.7,
+ "end": 3280.92,
+ "text": "level"
+ },
+ {
+ "id": 4582,
+ "start": 3280.92,
+ "end": 3281.02,
+ "text": "of"
+ },
+ {
+ "id": 4583,
+ "start": 3281.02,
+ "end": 3281.34,
+ "text": "control"
+ },
+ {
+ "id": 4584,
+ "start": 3281.34,
+ "end": 3281.5,
+ "text": "to"
+ },
+ {
+ "id": 4585,
+ "start": 3281.5,
+ "end": 3281.82,
+ "text": "offer."
+ },
+ {
+ "id": 4586,
+ "start": 3281.82,
+ "end": 3282.16,
+ "text": "I"
+ },
+ {
+ "id": 4587,
+ "start": 3282.16,
+ "end": 3282.32,
+ "text": "think"
+ },
+ {
+ "id": 4588,
+ "start": 3282.32,
+ "end": 3282.48,
+ "text": "what"
+ },
+ {
+ "id": 4589,
+ "start": 3282.48,
+ "end": 3282.78,
+ "text": "Cheryl"
+ },
+ {
+ "id": 4590,
+ "start": 3282.78,
+ "end": 3282.94,
+ "text": "was"
+ },
+ {
+ "id": 4591,
+ "start": 3282.94,
+ "end": 3283.26,
+ "text": "saying"
+ },
+ {
+ "id": 4592,
+ "start": 3283.26,
+ "end": 3283.62,
+ "text": "was"
+ },
+ {
+ "id": 4593,
+ "start": 3283.62,
+ "end": 3283.92,
+ "text": "that"
+ },
+ {
+ "id": 4594,
+ "start": 3283.92,
+ "end": 3284.4,
+ "text": "in"
+ },
+ {
+ "id": 4595,
+ "start": 3284.4,
+ "end": 3284.62,
+ "text": "order"
+ },
+ {
+ "id": 4596,
+ "start": 3284.62,
+ "end": 3284.72,
+ "text": "to"
+ },
+ {
+ "id": 4597,
+ "start": 3284.72,
+ "end": 3284.92,
+ "text": "not"
+ },
+ {
+ "id": 4598,
+ "start": 3284.92,
+ "end": 3285.14,
+ "text": "run"
+ },
+ {
+ "id": 4599,
+ "start": 3285.14,
+ "end": 3285.38,
+ "text": "ads"
+ },
+ {
+ "id": 4600,
+ "start": 3285.38,
+ "end": 3285.5,
+ "text": "at"
+ },
+ {
+ "id": 4601,
+ "start": 3285.5,
+ "end": 3285.78,
+ "text": "all."
+ },
+ {
+ "id": 4602,
+ "start": 3285.78,
+ "end": 3286,
+ "text": "We"
+ },
+ {
+ "id": 4603,
+ "start": 3286,
+ "end": 3286.16,
+ "text": "would"
+ },
+ {
+ "id": 4604,
+ "start": 3286.16,
+ "end": 3286.34,
+ "text": "still"
+ },
+ {
+ "id": 4605,
+ "start": 3286.34,
+ "end": 3286.5,
+ "text": "need"
+ },
+ {
+ "id": 4606,
+ "start": 3286.5,
+ "end": 3286.7,
+ "text": "some"
+ },
+ {
+ "id": 4607,
+ "start": 3286.7,
+ "end": 3286.9,
+ "text": "sort"
+ },
+ {
+ "id": 4608,
+ "start": 3286.9,
+ "end": 3287,
+ "text": "of"
+ },
+ {
+ "id": 4609,
+ "start": 3287,
+ "end": 3287.34,
+ "text": "business"
+ },
+ {
+ "id": 4610,
+ "start": 3287.34,
+ "end": 3288.42,
+ "text": "model"
+ },
+ {
+ "id": 4611,
+ "start": 3288.42,
+ "end": 3289.42,
+ "text": "and"
+ },
+ {
+ "id": 4612,
+ "start": 3289.42,
+ "end": 3289.64,
+ "text": "that"
+ },
+ {
+ "id": 4613,
+ "start": 3289.64,
+ "end": 3289.88,
+ "text": "is"
+ },
+ {
+ "id": 4614,
+ "start": 3289.88,
+ "end": 3290.12,
+ "text": "your"
+ },
+ {
+ "id": 4615,
+ "start": 3290.12,
+ "end": 3290.58,
+ "text": "business"
+ },
+ {
+ "id": 4616,
+ "start": 3290.58,
+ "end": 3290.92,
+ "text": "model."
+ },
+ {
+ "id": 4617,
+ "start": 3290.92,
+ "end": 3291.3,
+ "text": "So"
+ },
+ {
+ "id": 4618,
+ "start": 3291.3,
+ "end": 3291.72,
+ "text": "I"
+ },
+ {
+ "id": 4619,
+ "start": 3291.72,
+ "end": 3292.14,
+ "text": "take"
+ },
+ {
+ "id": 4620,
+ "start": 3292.14,
+ "end": 3292.24,
+ "text": "it"
+ },
+ {
+ "id": 4621,
+ "start": 3292.24,
+ "end": 3293.42,
+ "text": "that"
+ },
+ {
+ "id": 4622,
+ "start": 3293.42,
+ "end": 3294.38,
+ "text": "and"
+ },
+ {
+ "id": 4623,
+ "start": 3294.38,
+ "end": 3294.48,
+ "text": "I"
+ },
+ {
+ "id": 4624,
+ "start": 3294.48,
+ "end": 3294.78,
+ "text": "use"
+ },
+ {
+ "id": 4625,
+ "start": 3294.78,
+ "end": 3294.98,
+ "text": "the"
+ },
+ {
+ "id": 4626,
+ "start": 3294.98,
+ "end": 3295.48,
+ "text": "harmless"
+ },
+ {
+ "id": 4627,
+ "start": 3295.48,
+ "end": 3296.1,
+ "text": "example"
+ },
+ {
+ "id": 4628,
+ "start": 3296.1,
+ "end": 3296.24,
+ "text": "of"
+ },
+ {
+ "id": 4629,
+ "start": 3296.24,
+ "end": 3296.84,
+ "text": "chocolate."
+ },
+ {
+ "id": 4630,
+ "start": 3296.84,
+ "end": 3297.04,
+ "text": "But"
+ },
+ {
+ "id": 4631,
+ "start": 3297.04,
+ "end": 3297.16,
+ "text": "if"
+ },
+ {
+ "id": 4632,
+ "start": 3297.16,
+ "end": 3297.34,
+ "text": "it"
+ },
+ {
+ "id": 4633,
+ "start": 3297.34,
+ "end": 3297.56,
+ "text": "got"
+ },
+ {
+ "id": 4634,
+ "start": 3297.56,
+ "end": 3297.98,
+ "text": "into"
+ },
+ {
+ "id": 4635,
+ "start": 3297.98,
+ "end": 3298.28,
+ "text": "more"
+ },
+ {
+ "id": 4636,
+ "start": 3298.28,
+ "end": 3298.94,
+ "text": "personal"
+ },
+ {
+ "id": 4637,
+ "start": 3298.94,
+ "end": 3299.36,
+ "text": "thing"
+ },
+ {
+ "id": 4638,
+ "start": 3299.36,
+ "end": 3300.28,
+ "text": "communicating"
+ },
+ {
+ "id": 4639,
+ "start": 3300.28,
+ "end": 3300.66,
+ "text": "with"
+ },
+ {
+ "id": 4640,
+ "start": 3300.66,
+ "end": 3301.64,
+ "text": "friends"
+ },
+ {
+ "id": 4641,
+ "start": 3301.64,
+ "end": 3302.62,
+ "text": "and"
+ },
+ {
+ "id": 4642,
+ "start": 3302.62,
+ "end": 3302.8,
+ "text": "I"
+ },
+ {
+ "id": 4643,
+ "start": 3302.8,
+ "end": 3303.02,
+ "text": "want"
+ },
+ {
+ "id": 4644,
+ "start": 3303.02,
+ "end": 3303.12,
+ "text": "to"
+ },
+ {
+ "id": 4645,
+ "start": 3303.12,
+ "end": 3303.34,
+ "text": "cut"
+ },
+ {
+ "id": 4646,
+ "start": 3303.34,
+ "end": 3303.48,
+ "text": "it"
+ },
+ {
+ "id": 4647,
+ "start": 3303.48,
+ "end": 3304.48,
+ "text": "off"
+ },
+ {
+ "id": 4648,
+ "start": 3304.48,
+ "end": 3305.3,
+ "text": "I'm"
+ },
+ {
+ "id": 4649,
+ "start": 3305.3,
+ "end": 3305.52,
+ "text": "going"
+ },
+ {
+ "id": 4650,
+ "start": 3305.52,
+ "end": 3305.6,
+ "text": "to"
+ },
+ {
+ "id": 4651,
+ "start": 3305.6,
+ "end": 3305.82,
+ "text": "have"
+ },
+ {
+ "id": 4652,
+ "start": 3305.82,
+ "end": 3305.96,
+ "text": "to"
+ },
+ {
+ "id": 4653,
+ "start": 3305.96,
+ "end": 3306.18,
+ "text": "pay"
+ },
+ {
+ "id": 4654,
+ "start": 3306.18,
+ "end": 3307.34,
+ "text": "you"
+ },
+ {
+ "id": 4655,
+ "start": 3307.34,
+ "end": 3308.36,
+ "text": "in"
+ },
+ {
+ "id": 4656,
+ "start": 3308.36,
+ "end": 3309.06,
+ "text": "order,"
+ },
+ {
+ "id": 4657,
+ "start": 3309.06,
+ "end": 3309.5,
+ "text": "not"
+ },
+ {
+ "id": 4658,
+ "start": 3309.5,
+ "end": 3309.86,
+ "text": "to"
+ },
+ {
+ "id": 4659,
+ "start": 3309.86,
+ "end": 3310.32,
+ "text": "send"
+ },
+ {
+ "id": 4660,
+ "start": 3310.32,
+ "end": 3311.26,
+ "text": "me"
+ },
+ {
+ "id": 4661,
+ "start": 3311.26,
+ "end": 3312.22,
+ "text": "using"
+ },
+ {
+ "id": 4662,
+ "start": 3312.22,
+ "end": 3312.56,
+ "text": "my"
+ },
+ {
+ "id": 4663,
+ "start": 3312.56,
+ "end": 3313.02,
+ "text": "personal"
+ },
+ {
+ "id": 4664,
+ "start": 3313.02,
+ "end": 3313.86,
+ "text": "information."
+ },
+ {
+ "id": 4665,
+ "start": 3313.86,
+ "end": 3315.02,
+ "text": "Something"
+ },
+ {
+ "id": 4666,
+ "start": 3315.02,
+ "end": 3315.22,
+ "text": "that"
+ },
+ {
+ "id": 4667,
+ "start": 3315.22,
+ "end": 3315.36,
+ "text": "I"
+ },
+ {
+ "id": 4668,
+ "start": 3315.36,
+ "end": 3315.64,
+ "text": "don't"
+ },
+ {
+ "id": 4669,
+ "start": 3315.64,
+ "end": 3316.2,
+ "text": "want"
+ },
+ {
+ "id": 4670,
+ "start": 3316.2,
+ "end": 3317.18,
+ "text": "that"
+ },
+ {
+ "id": 4671,
+ "start": 3317.18,
+ "end": 3317.62,
+ "text": "in"
+ },
+ {
+ "id": 4672,
+ "start": 3317.62,
+ "end": 3318.04,
+ "text": "essence"
+ },
+ {
+ "id": 4673,
+ "start": 3318.04,
+ "end": 3318.24,
+ "text": "is"
+ },
+ {
+ "id": 4674,
+ "start": 3318.24,
+ "end": 3318.46,
+ "text": "what"
+ },
+ {
+ "id": 4675,
+ "start": 3318.46,
+ "end": 3318.54,
+ "text": "I"
+ },
+ {
+ "id": 4676,
+ "start": 3318.54,
+ "end": 3319.3,
+ "text": "understood"
+ },
+ {
+ "id": 4677,
+ "start": 3319.3,
+ "end": 3319.6,
+ "text": "miss"
+ },
+ {
+ "id": 4678,
+ "start": 3319.6,
+ "end": 3320.12,
+ "text": "Sandberg"
+ },
+ {
+ "id": 4679,
+ "start": 3320.12,
+ "end": 3320.28,
+ "text": "to"
+ },
+ {
+ "id": 4680,
+ "start": 3320.28,
+ "end": 3320.56,
+ "text": "say,"
+ },
+ {
+ "id": 4681,
+ "start": 3320.56,
+ "end": 3320.72,
+ "text": "is"
+ },
+ {
+ "id": 4682,
+ "start": 3320.72,
+ "end": 3320.94,
+ "text": "that"
+ },
+ {
+ "id": 4683,
+ "start": 3320.94,
+ "end": 3321.96,
+ "text": "correct?"
+ },
+ {
+ "id": 4684,
+ "start": 3321.96,
+ "end": 3322.74,
+ "text": "Yes,"
+ },
+ {
+ "id": 4685,
+ "start": 3322.74,
+ "end": 3323.24,
+ "text": "Senator,"
+ },
+ {
+ "id": 4686,
+ "start": 3323.24,
+ "end": 3323.66,
+ "text": "although"
+ },
+ {
+ "id": 4687,
+ "start": 3323.66,
+ "end": 3323.88,
+ "text": "to"
+ },
+ {
+ "id": 4688,
+ "start": 3323.88,
+ "end": 3324.04,
+ "text": "be"
+ },
+ {
+ "id": 4689,
+ "start": 3324.04,
+ "end": 3324.3,
+ "text": "clear,"
+ },
+ {
+ "id": 4690,
+ "start": 3324.3,
+ "end": 3324.46,
+ "text": "we"
+ },
+ {
+ "id": 4691,
+ "start": 3324.46,
+ "end": 3324.72,
+ "text": "don't"
+ },
+ {
+ "id": 4692,
+ "start": 3324.72,
+ "end": 3325.08,
+ "text": "offer"
+ },
+ {
+ "id": 4693,
+ "start": 3325.08,
+ "end": 3325.22,
+ "text": "an"
+ },
+ {
+ "id": 4694,
+ "start": 3325.22,
+ "end": 3325.58,
+ "text": "option"
+ },
+ {
+ "id": 4695,
+ "start": 3325.58,
+ "end": 3325.94,
+ "text": "today"
+ },
+ {
+ "id": 4696,
+ "start": 3325.94,
+ "end": 3326.22,
+ "text": "for"
+ },
+ {
+ "id": 4697,
+ "start": 3326.22,
+ "end": 3326.46,
+ "text": "people"
+ },
+ {
+ "id": 4698,
+ "start": 3326.46,
+ "end": 3326.62,
+ "text": "to"
+ },
+ {
+ "id": 4699,
+ "start": 3326.62,
+ "end": 3326.84,
+ "text": "pay"
+ },
+ {
+ "id": 4700,
+ "start": 3326.84,
+ "end": 3326.96,
+ "text": "to"
+ },
+ {
+ "id": 4701,
+ "start": 3326.96,
+ "end": 3327.2,
+ "text": "not"
+ },
+ {
+ "id": 4702,
+ "start": 3327.2,
+ "end": 3327.42,
+ "text": "show"
+ },
+ {
+ "id": 4703,
+ "start": 3327.42,
+ "end": 3327.74,
+ "text": "ads,"
+ },
+ {
+ "id": 4704,
+ "start": 3327.74,
+ "end": 3328.32,
+ "text": "we"
+ },
+ {
+ "id": 4705,
+ "start": 3328.32,
+ "end": 3328.54,
+ "text": "think"
+ },
+ {
+ "id": 4706,
+ "start": 3328.54,
+ "end": 3328.94,
+ "text": "offering"
+ },
+ {
+ "id": 4707,
+ "start": 3328.94,
+ "end": 3329.02,
+ "text": "an"
+ },
+ {
+ "id": 4708,
+ "start": 3329.02,
+ "end": 3329.2,
+ "text": "ad"
+ },
+ {
+ "id": 4709,
+ "start": 3329.2,
+ "end": 3329.68,
+ "text": "supported"
+ },
+ {
+ "id": 4710,
+ "start": 3329.68,
+ "end": 3330.1,
+ "text": "service"
+ },
+ {
+ "id": 4711,
+ "start": 3330.1,
+ "end": 3330.66,
+ "text": "is"
+ },
+ {
+ "id": 4712,
+ "start": 3330.66,
+ "end": 3330.8,
+ "text": "the"
+ },
+ {
+ "id": 4713,
+ "start": 3330.8,
+ "end": 3331,
+ "text": "most"
+ },
+ {
+ "id": 4714,
+ "start": 3331,
+ "end": 3331.36,
+ "text": "aligned"
+ },
+ {
+ "id": 4715,
+ "start": 3331.36,
+ "end": 3331.5,
+ "text": "with"
+ },
+ {
+ "id": 4716,
+ "start": 3331.5,
+ "end": 3331.62,
+ "text": "our"
+ },
+ {
+ "id": 4717,
+ "start": 3331.62,
+ "end": 3331.92,
+ "text": "mission"
+ },
+ {
+ "id": 4718,
+ "start": 3331.92,
+ "end": 3332.06,
+ "text": "of"
+ },
+ {
+ "id": 4719,
+ "start": 3332.06,
+ "end": 3332.36,
+ "text": "trying"
+ },
+ {
+ "id": 4720,
+ "start": 3332.36,
+ "end": 3332.46,
+ "text": "to"
+ },
+ {
+ "id": 4721,
+ "start": 3332.46,
+ "end": 3332.62,
+ "text": "help"
+ },
+ {
+ "id": 4722,
+ "start": 3332.62,
+ "end": 3332.9,
+ "text": "connect"
+ },
+ {
+ "id": 4723,
+ "start": 3332.9,
+ "end": 3333.22,
+ "text": "everyone"
+ },
+ {
+ "id": 4724,
+ "start": 3333.22,
+ "end": 3333.3,
+ "text": "in"
+ },
+ {
+ "id": 4725,
+ "start": 3333.3,
+ "end": 3333.4,
+ "text": "the"
+ },
+ {
+ "id": 4726,
+ "start": 3333.4,
+ "end": 3333.68,
+ "text": "world."
+ },
+ {
+ "id": 4727,
+ "start": 3333.68,
+ "end": 3334.4,
+ "text": "Because"
+ },
+ {
+ "id": 4728,
+ "start": 3334.4,
+ "end": 3334.8,
+ "text": "we"
+ },
+ {
+ "id": 4729,
+ "start": 3334.8,
+ "end": 3334.98,
+ "text": "want"
+ },
+ {
+ "id": 4730,
+ "start": 3334.98,
+ "end": 3335.06,
+ "text": "to"
+ },
+ {
+ "id": 4731,
+ "start": 3335.06,
+ "end": 3335.36,
+ "text": "offer"
+ },
+ {
+ "id": 4732,
+ "start": 3335.36,
+ "end": 3335.44,
+ "text": "a"
+ },
+ {
+ "id": 4733,
+ "start": 3335.44,
+ "end": 3335.82,
+ "text": "free"
+ },
+ {
+ "id": 4734,
+ "start": 3335.82,
+ "end": 3336.12,
+ "text": "service"
+ },
+ {
+ "id": 4735,
+ "start": 3336.12,
+ "end": 3336.32,
+ "text": "that"
+ },
+ {
+ "id": 4736,
+ "start": 3336.32,
+ "end": 3336.62,
+ "text": "everyone"
+ },
+ {
+ "id": 4737,
+ "start": 3336.62,
+ "end": 3336.78,
+ "text": "can"
+ },
+ {
+ "id": 4738,
+ "start": 3336.78,
+ "end": 3337.12,
+ "text": "afford."
+ },
+ {
+ "id": 4739,
+ "start": 3337.12,
+ "end": 3337.58,
+ "text": "OK"
+ },
+ {
+ "id": 4740,
+ "start": 3337.58,
+ "end": 3337.76,
+ "text": "that's"
+ },
+ {
+ "id": 4741,
+ "start": 3337.76,
+ "end": 3337.88,
+ "text": "the"
+ },
+ {
+ "id": 4742,
+ "start": 3337.88,
+ "end": 3338.04,
+ "text": "only"
+ },
+ {
+ "id": 4743,
+ "start": 3338.04,
+ "end": 3338.2,
+ "text": "way"
+ },
+ {
+ "id": 4744,
+ "start": 3338.2,
+ "end": 3338.34,
+ "text": "that"
+ },
+ {
+ "id": 4745,
+ "start": 3338.34,
+ "end": 3338.44,
+ "text": "we"
+ },
+ {
+ "id": 4746,
+ "start": 3338.44,
+ "end": 3338.6,
+ "text": "can"
+ },
+ {
+ "id": 4747,
+ "start": 3338.6,
+ "end": 3338.82,
+ "text": "reach"
+ },
+ {
+ "id": 4748,
+ "start": 3338.82,
+ "end": 3339.22,
+ "text": "billions"
+ },
+ {
+ "id": 4749,
+ "start": 3339.22,
+ "end": 3339.36,
+ "text": "of"
+ },
+ {
+ "id": 4750,
+ "start": 3339.36,
+ "end": 3339.62,
+ "text": "people."
+ },
+ {
+ "id": 4751,
+ "start": 3339.62,
+ "end": 3340.3,
+ "text": "So"
+ },
+ {
+ "id": 4752,
+ "start": 3340.3,
+ "end": 3341.16,
+ "text": "therefore"
+ },
+ {
+ "id": 4753,
+ "start": 3341.16,
+ "end": 3341.46,
+ "text": "you"
+ },
+ {
+ "id": 4754,
+ "start": 3341.46,
+ "end": 3342.1,
+ "text": "consider"
+ },
+ {
+ "id": 4755,
+ "start": 3342.1,
+ "end": 3342.48,
+ "text": "my"
+ },
+ {
+ "id": 4756,
+ "start": 3342.48,
+ "end": 3343.14,
+ "text": "personally,"
+ },
+ {
+ "id": 4757,
+ "start": 3343.14,
+ "end": 3344.1,
+ "text": "identifiable"
+ },
+ {
+ "id": 4758,
+ "start": 3344.1,
+ "end": 3345.1,
+ "text": "data,"
+ },
+ {
+ "id": 4759,
+ "start": 3345.1,
+ "end": 3345.84,
+ "text": "the"
+ },
+ {
+ "id": 4760,
+ "start": 3345.84,
+ "end": 3346.5,
+ "text": "company's"
+ },
+ {
+ "id": 4761,
+ "start": 3346.5,
+ "end": 3347,
+ "text": "data."
+ },
+ {
+ "id": 4762,
+ "start": 3347,
+ "end": 3347.5,
+ "text": "Not"
+ },
+ {
+ "id": 4763,
+ "start": 3347.5,
+ "end": 3347.8,
+ "text": "my"
+ },
+ {
+ "id": 4764,
+ "start": 3347.8,
+ "end": 3348.2,
+ "text": "data,"
+ },
+ {
+ "id": 4765,
+ "start": 3348.2,
+ "end": 3348.58,
+ "text": "is"
+ },
+ {
+ "id": 4766,
+ "start": 3348.58,
+ "end": 3348.8,
+ "text": "that"
+ },
+ {
+ "id": 4767,
+ "start": 3348.8,
+ "end": 3349.68,
+ "text": "it?"
+ },
+ {
+ "id": 4768,
+ "start": 3349.68,
+ "end": 3350.5,
+ "text": "No,"
+ },
+ {
+ "id": 4769,
+ "start": 3350.5,
+ "end": 3350.94,
+ "text": "Senator,"
+ },
+ {
+ "id": 4770,
+ "start": 3350.94,
+ "end": 3351.64,
+ "text": "actually."
+ },
+ {
+ "id": 4771,
+ "start": 3351.64,
+ "end": 3351.84,
+ "text": "At"
+ },
+ {
+ "id": 4772,
+ "start": 3351.84,
+ "end": 3352.2,
+ "text": "the"
+ },
+ {
+ "id": 4773,
+ "start": 3352.2,
+ "end": 3352.52,
+ "text": "first"
+ },
+ {
+ "id": 4774,
+ "start": 3352.52,
+ "end": 3352.9,
+ "text": "line"
+ },
+ {
+ "id": 4775,
+ "start": 3352.9,
+ "end": 3353.1,
+ "text": "of"
+ },
+ {
+ "id": 4776,
+ "start": 3353.1,
+ "end": 3353.3,
+ "text": "our"
+ },
+ {
+ "id": 4777,
+ "start": 3353.3,
+ "end": 3353.6,
+ "text": "terms"
+ },
+ {
+ "id": 4778,
+ "start": 3353.6,
+ "end": 3353.74,
+ "text": "of"
+ },
+ {
+ "id": 4779,
+ "start": 3353.74,
+ "end": 3354.16,
+ "text": "service"
+ },
+ {
+ "id": 4780,
+ "start": 3354.16,
+ "end": 3354.94,
+ "text": "say"
+ },
+ {
+ "id": 4781,
+ "start": 3354.94,
+ "end": 3355.14,
+ "text": "that"
+ },
+ {
+ "id": 4782,
+ "start": 3355.14,
+ "end": 3355.3,
+ "text": "you"
+ },
+ {
+ "id": 4783,
+ "start": 3355.3,
+ "end": 3355.88,
+ "text": "control"
+ },
+ {
+ "id": 4784,
+ "start": 3355.88,
+ "end": 3356,
+ "text": "and"
+ },
+ {
+ "id": 4785,
+ "start": 3356,
+ "end": 3356.22,
+ "text": "own"
+ },
+ {
+ "id": 4786,
+ "start": 3356.22,
+ "end": 3356.42,
+ "text": "the"
+ },
+ {
+ "id": 4787,
+ "start": 3356.42,
+ "end": 3357.02,
+ "text": "information"
+ },
+ {
+ "id": 4788,
+ "start": 3357.02,
+ "end": 3357.18,
+ "text": "and"
+ },
+ {
+ "id": 4789,
+ "start": 3357.18,
+ "end": 3357.58,
+ "text": "content"
+ },
+ {
+ "id": 4790,
+ "start": 3357.58,
+ "end": 3357.72,
+ "text": "that"
+ },
+ {
+ "id": 4791,
+ "start": 3357.72,
+ "end": 3357.88,
+ "text": "you"
+ },
+ {
+ "id": 4792,
+ "start": 3357.88,
+ "end": 3358.02,
+ "text": "put"
+ },
+ {
+ "id": 4793,
+ "start": 3358.02,
+ "end": 3358.18,
+ "text": "on"
+ },
+ {
+ "id": 4794,
+ "start": 3358.18,
+ "end": 3360.62,
+ "text": "Facebook."
+ },
+ {
+ "id": 4795,
+ "start": 3360.62,
+ "end": 3361.62,
+ "text": "Well,"
+ },
+ {
+ "id": 4796,
+ "start": 3361.62,
+ "end": 3361.94,
+ "text": "the"
+ },
+ {
+ "id": 4797,
+ "start": 3361.94,
+ "end": 3362.36,
+ "text": "recent"
+ },
+ {
+ "id": 4798,
+ "start": 3362.36,
+ "end": 3363.14,
+ "text": "scandal"
+ },
+ {
+ "id": 4799,
+ "start": 3363.14,
+ "end": 3365.22,
+ "text": "is"
+ },
+ {
+ "id": 4800,
+ "start": 3365.22,
+ "end": 3365.92,
+ "text": "obviously"
+ },
+ {
+ "id": 4801,
+ "start": 3365.92,
+ "end": 3366.8,
+ "text": "frustrating."
+ },
+ {
+ "id": 4802,
+ "start": 3366.8,
+ "end": 3367.7,
+ "text": "Not"
+ },
+ {
+ "id": 4803,
+ "start": 3367.7,
+ "end": 3367.96,
+ "text": "only"
+ },
+ {
+ "id": 4804,
+ "start": 3367.96,
+ "end": 3368.38,
+ "text": "because"
+ },
+ {
+ "id": 4805,
+ "start": 3368.38,
+ "end": 3368.58,
+ "text": "it"
+ },
+ {
+ "id": 4806,
+ "start": 3368.58,
+ "end": 3369.12,
+ "text": "affected"
+ },
+ {
+ "id": 4807,
+ "start": 3369.12,
+ "end": 3370.44,
+ "text": "87,000,000"
+ },
+ {
+ "id": 4808,
+ "start": 3370.44,
+ "end": 3370.9,
+ "text": "but"
+ },
+ {
+ "id": 4809,
+ "start": 3370.9,
+ "end": 3371.8,
+ "text": "because"
+ },
+ {
+ "id": 4810,
+ "start": 3371.8,
+ "end": 3372.02,
+ "text": "it"
+ },
+ {
+ "id": 4811,
+ "start": 3372.02,
+ "end": 3372.36,
+ "text": "seems"
+ },
+ {
+ "id": 4812,
+ "start": 3372.36,
+ "end": 3372.52,
+ "text": "to"
+ },
+ {
+ "id": 4813,
+ "start": 3372.52,
+ "end": 3372.66,
+ "text": "be"
+ },
+ {
+ "id": 4814,
+ "start": 3372.66,
+ "end": 3373.04,
+ "text": "part"
+ },
+ {
+ "id": 4815,
+ "start": 3373.04,
+ "end": 3373.44,
+ "text": "of"
+ },
+ {
+ "id": 4816,
+ "start": 3373.44,
+ "end": 3373.98,
+ "text": "a"
+ },
+ {
+ "id": 4817,
+ "start": 3373.98,
+ "end": 3374.94,
+ "text": "of"
+ },
+ {
+ "id": 4818,
+ "start": 3374.94,
+ "end": 3375.8,
+ "text": "lax"
+ },
+ {
+ "id": 4819,
+ "start": 3375.8,
+ "end": 3376.22,
+ "text": "data"
+ },
+ {
+ "id": 4820,
+ "start": 3376.22,
+ "end": 3377.02,
+ "text": "practices"
+ },
+ {
+ "id": 4821,
+ "start": 3377.02,
+ "end": 3377.36,
+ "text": "by"
+ },
+ {
+ "id": 4822,
+ "start": 3377.36,
+ "end": 3377.5,
+ "text": "the"
+ },
+ {
+ "id": 4823,
+ "start": 3377.5,
+ "end": 3377.96,
+ "text": "company"
+ },
+ {
+ "id": 4824,
+ "start": 3377.96,
+ "end": 3378.28,
+ "text": "going"
+ },
+ {
+ "id": 4825,
+ "start": 3378.28,
+ "end": 3378.6,
+ "text": "back"
+ },
+ {
+ "id": 4826,
+ "start": 3378.6,
+ "end": 3378.96,
+ "text": "years."
+ },
+ {
+ "id": 4827,
+ "start": 3378.96,
+ "end": 3379.62,
+ "text": "So"
+ },
+ {
+ "id": 4828,
+ "start": 3379.62,
+ "end": 3379.96,
+ "text": "back"
+ },
+ {
+ "id": 4829,
+ "start": 3379.96,
+ "end": 3380.22,
+ "text": "in"
+ },
+ {
+ "id": 4830,
+ "start": 3380.22,
+ "end": 3380.74,
+ "text": "20"
+ },
+ {
+ "id": 4831,
+ "start": 3380.74,
+ "end": 3381.4,
+ "text": "11"
+ },
+ {
+ "id": 4832,
+ "start": 3381.4,
+ "end": 3381.78,
+ "text": "it"
+ },
+ {
+ "id": 4833,
+ "start": 3381.78,
+ "end": 3381.92,
+ "text": "was"
+ },
+ {
+ "id": 4834,
+ "start": 3381.92,
+ "end": 3382.06,
+ "text": "a"
+ },
+ {
+ "id": 4835,
+ "start": 3382.06,
+ "end": 3382.64,
+ "text": "settlement"
+ },
+ {
+ "id": 4836,
+ "start": 3382.64,
+ "end": 3382.82,
+ "text": "with"
+ },
+ {
+ "id": 4837,
+ "start": 3382.82,
+ "end": 3382.94,
+ "text": "the"
+ },
+ {
+ "id": 4838,
+ "start": 3382.94,
+ "end": 3383.76,
+ "text": "FTC."
+ },
+ {
+ "id": 4839,
+ "start": 3383.76,
+ "end": 3383.94,
+ "text": "And"
+ },
+ {
+ "id": 4840,
+ "start": 3383.94,
+ "end": 3384.34,
+ "text": "now"
+ },
+ {
+ "id": 4841,
+ "start": 3384.34,
+ "end": 3385.2,
+ "text": "we"
+ },
+ {
+ "id": 4842,
+ "start": 3385.2,
+ "end": 3385.74,
+ "text": "discover"
+ },
+ {
+ "id": 4843,
+ "start": 3385.74,
+ "end": 3385.96,
+ "text": "yet"
+ },
+ {
+ "id": 4844,
+ "start": 3385.96,
+ "end": 3386.38,
+ "text": "another"
+ },
+ {
+ "id": 4845,
+ "start": 3386.38,
+ "end": 3387.34,
+ "text": "incidence"
+ },
+ {
+ "id": 4846,
+ "start": 3387.34,
+ "end": 3388,
+ "text": "where"
+ },
+ {
+ "id": 4847,
+ "start": 3388,
+ "end": 3388.68,
+ "text": "the"
+ },
+ {
+ "id": 4848,
+ "start": 3388.68,
+ "end": 3389.38,
+ "text": "data"
+ },
+ {
+ "id": 4849,
+ "start": 3389.38,
+ "end": 3389.86,
+ "text": "was"
+ },
+ {
+ "id": 4850,
+ "start": 3389.86,
+ "end": 3390.68,
+ "text": "failed"
+ },
+ {
+ "id": 4851,
+ "start": 3390.68,
+ "end": 3390.88,
+ "text": "to"
+ },
+ {
+ "id": 4852,
+ "start": 3390.88,
+ "end": 3391.08,
+ "text": "be"
+ },
+ {
+ "id": 4853,
+ "start": 3391.08,
+ "end": 3391.74,
+ "text": "protected."
+ },
+ {
+ "id": 4854,
+ "start": 3391.74,
+ "end": 3392.3,
+ "text": "When"
+ },
+ {
+ "id": 4855,
+ "start": 3392.3,
+ "end": 3392.48,
+ "text": "you"
+ },
+ {
+ "id": 4856,
+ "start": 3392.48,
+ "end": 3393.3,
+ "text": "discovered"
+ },
+ {
+ "id": 4857,
+ "start": 3393.3,
+ "end": 3393.54,
+ "text": "the"
+ },
+ {
+ "id": 4858,
+ "start": 3393.54,
+ "end": 3394.24,
+ "text": "Cambridge"
+ },
+ {
+ "id": 4859,
+ "start": 3394.24,
+ "end": 3395.22,
+ "text": "Analytica"
+ },
+ {
+ "id": 4860,
+ "start": 3395.22,
+ "end": 3395.78,
+ "text": "that"
+ },
+ {
+ "id": 4861,
+ "start": 3395.78,
+ "end": 3396.1,
+ "text": "had"
+ },
+ {
+ "id": 4862,
+ "start": 3396.1,
+ "end": 3396.52,
+ "text": "fraud"
+ },
+ {
+ "id": 4863,
+ "start": 3396.52,
+ "end": 3396.9,
+ "text": "only"
+ },
+ {
+ "id": 4864,
+ "start": 3396.9,
+ "end": 3397.7,
+ "text": "obtained"
+ },
+ {
+ "id": 4865,
+ "start": 3397.7,
+ "end": 3397.96,
+ "text": "all"
+ },
+ {
+ "id": 4866,
+ "start": 3397.96,
+ "end": 3398.06,
+ "text": "of"
+ },
+ {
+ "id": 4867,
+ "start": 3398.06,
+ "end": 3398.26,
+ "text": "this"
+ },
+ {
+ "id": 4868,
+ "start": 3398.26,
+ "end": 3399.42,
+ "text": "information."
+ },
+ {
+ "id": 4869,
+ "start": 3399.42,
+ "end": 3400.48,
+ "text": "Why"
+ },
+ {
+ "id": 4870,
+ "start": 3400.48,
+ "end": 3400.82,
+ "text": "didn't"
+ },
+ {
+ "id": 4871,
+ "start": 3400.82,
+ "end": 3401.04,
+ "text": "you"
+ },
+ {
+ "id": 4872,
+ "start": 3401.04,
+ "end": 3401.82,
+ "text": "inform"
+ },
+ {
+ "id": 4873,
+ "start": 3401.82,
+ "end": 3402.46,
+ "text": "those"
+ },
+ {
+ "id": 4874,
+ "start": 3402.46,
+ "end": 3405,
+ "text": "87,000,000"
+ },
+ {
+ "id": 4875,
+ "start": 3405,
+ "end": 3406.1,
+ "text": "when"
+ },
+ {
+ "id": 4876,
+ "start": 3406.1,
+ "end": 3406.24,
+ "text": "we"
+ },
+ {
+ "id": 4877,
+ "start": 3406.24,
+ "end": 3406.58,
+ "text": "learned"
+ },
+ {
+ "id": 4878,
+ "start": 3406.58,
+ "end": 3406.84,
+ "text": "in"
+ },
+ {
+ "id": 4879,
+ "start": 3406.84,
+ "end": 3407.16,
+ "text": "20"
+ },
+ {
+ "id": 4880,
+ "start": 3407.16,
+ "end": 3407.7,
+ "text": "15"
+ },
+ {
+ "id": 4881,
+ "start": 3407.7,
+ "end": 3408.7,
+ "text": "that"
+ },
+ {
+ "id": 4882,
+ "start": 3408.7,
+ "end": 3409.1,
+ "text": "Cambridge"
+ },
+ {
+ "id": 4883,
+ "start": 3409.1,
+ "end": 3409.58,
+ "text": "Analytica"
+ },
+ {
+ "id": 4884,
+ "start": 3409.58,
+ "end": 3410.3,
+ "text": "had"
+ },
+ {
+ "id": 4885,
+ "start": 3410.3,
+ "end": 3411.36,
+ "text": "bought"
+ },
+ {
+ "id": 4886,
+ "start": 3411.36,
+ "end": 3411.86,
+ "text": "data"
+ },
+ {
+ "id": 4887,
+ "start": 3411.86,
+ "end": 3412.28,
+ "text": "from"
+ },
+ {
+ "id": 4888,
+ "start": 3412.28,
+ "end": 3412.38,
+ "text": "an"
+ },
+ {
+ "id": 4889,
+ "start": 3412.38,
+ "end": 3412.58,
+ "text": "app"
+ },
+ {
+ "id": 4890,
+ "start": 3412.58,
+ "end": 3413.04,
+ "text": "developer"
+ },
+ {
+ "id": 4891,
+ "start": 3413.04,
+ "end": 3413.18,
+ "text": "on"
+ },
+ {
+ "id": 4892,
+ "start": 3413.18,
+ "end": 3413.64,
+ "text": "Facebook"
+ },
+ {
+ "id": 4893,
+ "start": 3413.64,
+ "end": 3413.8,
+ "text": "that"
+ },
+ {
+ "id": 4894,
+ "start": 3413.8,
+ "end": 3414.12,
+ "text": "people"
+ },
+ {
+ "id": 4895,
+ "start": 3414.12,
+ "end": 3414.3,
+ "text": "had"
+ },
+ {
+ "id": 4896,
+ "start": 3414.3,
+ "end": 3414.54,
+ "text": "shared"
+ },
+ {
+ "id": 4897,
+ "start": 3414.54,
+ "end": 3414.64,
+ "text": "it"
+ },
+ {
+ "id": 4898,
+ "start": 3414.64,
+ "end": 3414.82,
+ "text": "with."
+ },
+ {
+ "id": 4899,
+ "start": 3414.82,
+ "end": 3415.92,
+ "text": "We"
+ },
+ {
+ "id": 4900,
+ "start": 3415.92,
+ "end": 3416.12,
+ "text": "did"
+ },
+ {
+ "id": 4901,
+ "start": 3416.12,
+ "end": 3416.32,
+ "text": "take"
+ },
+ {
+ "id": 4902,
+ "start": 3416.32,
+ "end": 3416.72,
+ "text": "action,"
+ },
+ {
+ "id": 4903,
+ "start": 3416.72,
+ "end": 3417.02,
+ "text": "we"
+ },
+ {
+ "id": 4904,
+ "start": 3417.02,
+ "end": 3417.22,
+ "text": "took"
+ },
+ {
+ "id": 4905,
+ "start": 3417.22,
+ "end": 3417.42,
+ "text": "down"
+ },
+ {
+ "id": 4906,
+ "start": 3417.42,
+ "end": 3417.6,
+ "text": "the"
+ },
+ {
+ "id": 4907,
+ "start": 3417.6,
+ "end": 3417.82,
+ "text": "app"
+ },
+ {
+ "id": 4908,
+ "start": 3417.82,
+ "end": 3418.92,
+ "text": "and"
+ },
+ {
+ "id": 4909,
+ "start": 3418.92,
+ "end": 3419.3,
+ "text": "we"
+ },
+ {
+ "id": 4910,
+ "start": 3419.3,
+ "end": 3420.2,
+ "text": "demanded"
+ },
+ {
+ "id": 4911,
+ "start": 3420.2,
+ "end": 3420.54,
+ "text": "that."
+ },
+ {
+ "id": 4912,
+ "start": 3420.54,
+ "end": 3420.74,
+ "text": "Both"
+ },
+ {
+ "id": 4913,
+ "start": 3420.74,
+ "end": 3420.88,
+ "text": "the"
+ },
+ {
+ "id": 4914,
+ "start": 3420.88,
+ "end": 3421.08,
+ "text": "app"
+ },
+ {
+ "id": 4915,
+ "start": 3421.08,
+ "end": 3421.52,
+ "text": "developer"
+ },
+ {
+ "id": 4916,
+ "start": 3421.52,
+ "end": 3421.86,
+ "text": "and"
+ },
+ {
+ "id": 4917,
+ "start": 3421.86,
+ "end": 3422.22,
+ "text": "Cambridge"
+ },
+ {
+ "id": 4918,
+ "start": 3422.22,
+ "end": 3422.68,
+ "text": "Analytica"
+ },
+ {
+ "id": 4919,
+ "start": 3422.68,
+ "end": 3423.5,
+ "text": "delete"
+ },
+ {
+ "id": 4920,
+ "start": 3423.5,
+ "end": 3423.68,
+ "text": "and"
+ },
+ {
+ "id": 4921,
+ "start": 3423.68,
+ "end": 3424,
+ "text": "stop"
+ },
+ {
+ "id": 4922,
+ "start": 3424,
+ "end": 3424.34,
+ "text": "using"
+ },
+ {
+ "id": 4923,
+ "start": 3424.34,
+ "end": 3424.66,
+ "text": "any"
+ },
+ {
+ "id": 4924,
+ "start": 3424.66,
+ "end": 3425.08,
+ "text": "data"
+ },
+ {
+ "id": 4925,
+ "start": 3425.08,
+ "end": 3425.24,
+ "text": "that"
+ },
+ {
+ "id": 4926,
+ "start": 3425.24,
+ "end": 3425.4,
+ "text": "they"
+ },
+ {
+ "id": 4927,
+ "start": 3425.4,
+ "end": 3425.7,
+ "text": "had."
+ },
+ {
+ "id": 4928,
+ "start": 3425.7,
+ "end": 3426.62,
+ "text": "They"
+ },
+ {
+ "id": 4929,
+ "start": 3426.62,
+ "end": 3426.8,
+ "text": "told"
+ },
+ {
+ "id": 4930,
+ "start": 3426.8,
+ "end": 3426.92,
+ "text": "us"
+ },
+ {
+ "id": 4931,
+ "start": 3426.92,
+ "end": 3427.1,
+ "text": "that"
+ },
+ {
+ "id": 4932,
+ "start": 3427.1,
+ "end": 3427.24,
+ "text": "they"
+ },
+ {
+ "id": 4933,
+ "start": 3427.24,
+ "end": 3427.46,
+ "text": "did"
+ },
+ {
+ "id": 4934,
+ "start": 3427.46,
+ "end": 3427.64,
+ "text": "this."
+ },
+ {
+ "id": 4935,
+ "start": 3427.64,
+ "end": 3428.44,
+ "text": "In"
+ },
+ {
+ "id": 4936,
+ "start": 3428.44,
+ "end": 3429,
+ "text": "retrospect."
+ },
+ {
+ "id": 4937,
+ "start": 3429,
+ "end": 3429.26,
+ "text": "It"
+ },
+ {
+ "id": 4938,
+ "start": 3429.26,
+ "end": 3429.42,
+ "text": "was"
+ },
+ {
+ "id": 4939,
+ "start": 3429.42,
+ "end": 3429.82,
+ "text": "clearly"
+ },
+ {
+ "id": 4940,
+ "start": 3429.82,
+ "end": 3429.9,
+ "text": "a"
+ },
+ {
+ "id": 4941,
+ "start": 3429.9,
+ "end": 3430.32,
+ "text": "mistake"
+ },
+ {
+ "id": 4942,
+ "start": 3430.32,
+ "end": 3430.46,
+ "text": "to"
+ },
+ {
+ "id": 4943,
+ "start": 3430.46,
+ "end": 3430.8,
+ "text": "believe"
+ },
+ {
+ "id": 4944,
+ "start": 3430.8,
+ "end": 3431,
+ "text": "them"
+ },
+ {
+ "id": 4945,
+ "start": 3431,
+ "end": 3431.36,
+ "text": "and"
+ },
+ {
+ "id": 4946,
+ "start": 3431.36,
+ "end": 3431.48,
+ "text": "we"
+ },
+ {
+ "id": 4947,
+ "start": 3431.48,
+ "end": 3431.68,
+ "text": "should"
+ },
+ {
+ "id": 4948,
+ "start": 3431.68,
+ "end": 3431.8,
+ "text": "have"
+ },
+ {
+ "id": 4949,
+ "start": 3431.8,
+ "end": 3432.1,
+ "text": "followed"
+ },
+ {
+ "id": 4950,
+ "start": 3432.1,
+ "end": 3432.24,
+ "text": "up"
+ },
+ {
+ "id": 4951,
+ "start": 3432.24,
+ "end": 3432.42,
+ "text": "and"
+ },
+ {
+ "id": 4952,
+ "start": 3432.42,
+ "end": 3432.6,
+ "text": "done"
+ },
+ {
+ "id": 4953,
+ "start": 3432.6,
+ "end": 3432.66,
+ "text": "a"
+ },
+ {
+ "id": 4954,
+ "start": 3432.66,
+ "end": 3432.88,
+ "text": "full"
+ },
+ {
+ "id": 4955,
+ "start": 3432.88,
+ "end": 3433.04,
+ "text": "out"
+ },
+ {
+ "id": 4956,
+ "start": 3433.04,
+ "end": 3433.14,
+ "text": "it"
+ },
+ {
+ "id": 4957,
+ "start": 3433.14,
+ "end": 3433.42,
+ "text": "then"
+ },
+ {
+ "id": 4958,
+ "start": 3433.42,
+ "end": 3434.12,
+ "text": "and"
+ },
+ {
+ "id": 4959,
+ "start": 3434.12,
+ "end": 3434.4,
+ "text": "that"
+ },
+ {
+ "id": 4960,
+ "start": 3434.4,
+ "end": 3434.56,
+ "text": "is"
+ },
+ {
+ "id": 4961,
+ "start": 3434.56,
+ "end": 3434.74,
+ "text": "not"
+ },
+ {
+ "id": 4962,
+ "start": 3434.74,
+ "end": 3434.82,
+ "text": "a"
+ },
+ {
+ "id": 4963,
+ "start": 3434.82,
+ "end": 3435.22,
+ "text": "mistake"
+ },
+ {
+ "id": 4964,
+ "start": 3435.22,
+ "end": 3435.36,
+ "text": "that"
+ },
+ {
+ "id": 4965,
+ "start": 3435.36,
+ "end": 3435.48,
+ "text": "we"
+ },
+ {
+ "id": 4966,
+ "start": 3435.48,
+ "end": 3435.66,
+ "text": "will"
+ },
+ {
+ "id": 4967,
+ "start": 3435.66,
+ "end": 3435.84,
+ "text": "make."
+ },
+ {
+ "id": 4968,
+ "start": 3435.84,
+ "end": 3436.26,
+ "text": "Yes,"
+ },
+ {
+ "id": 4969,
+ "start": 3436.26,
+ "end": 3436.52,
+ "text": "you"
+ },
+ {
+ "id": 4970,
+ "start": 3436.52,
+ "end": 3436.76,
+ "text": "did"
+ },
+ {
+ "id": 4971,
+ "start": 3436.76,
+ "end": 3437.06,
+ "text": "that."
+ },
+ {
+ "id": 4972,
+ "start": 3437.06,
+ "end": 3437.3,
+ "text": "And"
+ },
+ {
+ "id": 4973,
+ "start": 3437.3,
+ "end": 3438.36,
+ "text": "you"
+ },
+ {
+ "id": 4974,
+ "start": 3438.36,
+ "end": 3439.34,
+ "text": "apologize"
+ },
+ {
+ "id": 4975,
+ "start": 3439.34,
+ "end": 3439.66,
+ "text": "for"
+ },
+ {
+ "id": 4976,
+ "start": 3439.66,
+ "end": 3439.82,
+ "text": "it."
+ },
+ {
+ "id": 4977,
+ "start": 3439.82,
+ "end": 3440.66,
+ "text": "But"
+ },
+ {
+ "id": 4978,
+ "start": 3440.66,
+ "end": 3440.96,
+ "text": "you"
+ },
+ {
+ "id": 4979,
+ "start": 3440.96,
+ "end": 3441.8,
+ "text": "didn't"
+ },
+ {
+ "id": 4980,
+ "start": 3441.8,
+ "end": 3442.8,
+ "text": "notify"
+ },
+ {
+ "id": 4981,
+ "start": 3442.8,
+ "end": 3445.72,
+ "text": "them."
+ },
+ {
+ "id": 4982,
+ "start": 3445.72,
+ "end": 3446.72,
+ "text": "Do"
+ },
+ {
+ "id": 4983,
+ "start": 3446.72,
+ "end": 3446.9,
+ "text": "you"
+ },
+ {
+ "id": 4984,
+ "start": 3446.9,
+ "end": 3447.18,
+ "text": "think"
+ },
+ {
+ "id": 4985,
+ "start": 3447.18,
+ "end": 3447.42,
+ "text": "that"
+ },
+ {
+ "id": 4986,
+ "start": 3447.42,
+ "end": 3447.58,
+ "text": "you"
+ },
+ {
+ "id": 4987,
+ "start": 3447.58,
+ "end": 3447.86,
+ "text": "have"
+ },
+ {
+ "id": 4988,
+ "start": 3447.86,
+ "end": 3448,
+ "text": "an"
+ },
+ {
+ "id": 4989,
+ "start": 3448,
+ "end": 3448.58,
+ "text": "ethical"
+ },
+ {
+ "id": 4990,
+ "start": 3448.58,
+ "end": 3449.58,
+ "text": "obligation"
+ },
+ {
+ "id": 4991,
+ "start": 3449.58,
+ "end": 3449.98,
+ "text": "to"
+ },
+ {
+ "id": 4992,
+ "start": 3449.98,
+ "end": 3450.58,
+ "text": "notify"
+ },
+ {
+ "id": 4993,
+ "start": 3450.58,
+ "end": 3451.86,
+ "text": "87,000,000"
+ },
+ {
+ "id": 4994,
+ "start": 3451.86,
+ "end": 3452.62,
+ "text": "Facebook"
+ },
+ {
+ "id": 4995,
+ "start": 3452.62,
+ "end": 3455.58,
+ "text": "users"
+ },
+ {
+ "id": 4996,
+ "start": 3455.58,
+ "end": 3456.58,
+ "text": "Senator,"
+ },
+ {
+ "id": 4997,
+ "start": 3456.58,
+ "end": 3456.9,
+ "text": "when"
+ },
+ {
+ "id": 4998,
+ "start": 3456.9,
+ "end": 3457.06,
+ "text": "we"
+ },
+ {
+ "id": 4999,
+ "start": 3457.06,
+ "end": 3457.4,
+ "text": "heard"
+ },
+ {
+ "id": 5000,
+ "start": 3457.4,
+ "end": 3457.74,
+ "text": "back"
+ },
+ {
+ "id": 5001,
+ "start": 3457.74,
+ "end": 3458.04,
+ "text": "from"
+ },
+ {
+ "id": 5002,
+ "start": 3458.04,
+ "end": 3458.38,
+ "text": "Cambridge"
+ },
+ {
+ "id": 5003,
+ "start": 3458.38,
+ "end": 3458.78,
+ "text": "Analytica"
+ },
+ {
+ "id": 5004,
+ "start": 3458.78,
+ "end": 3459.04,
+ "text": "that"
+ },
+ {
+ "id": 5005,
+ "start": 3459.04,
+ "end": 3459.16,
+ "text": "they"
+ },
+ {
+ "id": 5006,
+ "start": 3459.16,
+ "end": 3459.28,
+ "text": "had"
+ },
+ {
+ "id": 5007,
+ "start": 3459.28,
+ "end": 3459.46,
+ "text": "told"
+ },
+ {
+ "id": 5008,
+ "start": 3459.46,
+ "end": 3459.6,
+ "text": "us"
+ },
+ {
+ "id": 5009,
+ "start": 3459.6,
+ "end": 3459.82,
+ "text": "that"
+ },
+ {
+ "id": 5010,
+ "start": 3459.82,
+ "end": 3460,
+ "text": "they"
+ },
+ {
+ "id": 5011,
+ "start": 3460,
+ "end": 3460.82,
+ "text": "weren't"
+ },
+ {
+ "id": 5012,
+ "start": 3460.82,
+ "end": 3461.08,
+ "text": "using"
+ },
+ {
+ "id": 5013,
+ "start": 3461.08,
+ "end": 3461.2,
+ "text": "the"
+ },
+ {
+ "id": 5014,
+ "start": 3461.2,
+ "end": 3461.46,
+ "text": "data"
+ },
+ {
+ "id": 5015,
+ "start": 3461.46,
+ "end": 3461.58,
+ "text": "and"
+ },
+ {
+ "id": 5016,
+ "start": 3461.58,
+ "end": 3462.06,
+ "text": "deleted"
+ },
+ {
+ "id": 5017,
+ "start": 3462.06,
+ "end": 3462.2,
+ "text": "it"
+ },
+ {
+ "id": 5018,
+ "start": 3462.2,
+ "end": 3462.74,
+ "text": "we"
+ },
+ {
+ "id": 5019,
+ "start": 3462.74,
+ "end": 3463.2,
+ "text": "considered"
+ },
+ {
+ "id": 5020,
+ "start": 3463.2,
+ "end": 3463.3,
+ "text": "it"
+ },
+ {
+ "id": 5021,
+ "start": 3463.3,
+ "end": 3463.38,
+ "text": "a"
+ },
+ {
+ "id": 5022,
+ "start": 3463.38,
+ "end": 3463.78,
+ "text": "closed"
+ },
+ {
+ "id": 5023,
+ "start": 3463.78,
+ "end": 3464.08,
+ "text": "case."
+ },
+ {
+ "id": 5024,
+ "start": 3464.08,
+ "end": 3464.7,
+ "text": "In"
+ },
+ {
+ "id": 5025,
+ "start": 3464.7,
+ "end": 3465.2,
+ "text": "retrospect,"
+ },
+ {
+ "id": 5026,
+ "start": 3465.2,
+ "end": 3465.38,
+ "text": "that"
+ },
+ {
+ "id": 5027,
+ "start": 3465.38,
+ "end": 3465.59,
+ "text": "was"
+ },
+ {
+ "id": 5028,
+ "start": 3465.59,
+ "end": 3465.95,
+ "text": "clearly"
+ },
+ {
+ "id": 5029,
+ "start": 3465.95,
+ "end": 3466.01,
+ "text": "a"
+ },
+ {
+ "id": 5030,
+ "start": 3466.01,
+ "end": 3466.37,
+ "text": "mistake."
+ },
+ {
+ "id": 5031,
+ "start": 3466.37,
+ "end": 3466.65,
+ "text": "We"
+ },
+ {
+ "id": 5032,
+ "start": 3466.65,
+ "end": 3466.93,
+ "text": "shouldn't"
+ },
+ {
+ "id": 5033,
+ "start": 3466.93,
+ "end": 3467.05,
+ "text": "have"
+ },
+ {
+ "id": 5034,
+ "start": 3467.05,
+ "end": 3467.25,
+ "text": "taken"
+ },
+ {
+ "id": 5035,
+ "start": 3467.25,
+ "end": 3467.43,
+ "text": "their"
+ },
+ {
+ "id": 5036,
+ "start": 3467.43,
+ "end": 3467.65,
+ "text": "word"
+ },
+ {
+ "id": 5037,
+ "start": 3467.65,
+ "end": 3467.83,
+ "text": "for"
+ },
+ {
+ "id": 5038,
+ "start": 3467.83,
+ "end": 3467.97,
+ "text": "it"
+ },
+ {
+ "id": 5039,
+ "start": 3467.97,
+ "end": 3468.35,
+ "text": "and"
+ },
+ {
+ "id": 5040,
+ "start": 3468.35,
+ "end": 3468.57,
+ "text": "we've"
+ },
+ {
+ "id": 5041,
+ "start": 3468.57,
+ "end": 3468.97,
+ "text": "updated"
+ },
+ {
+ "id": 5042,
+ "start": 3468.97,
+ "end": 3469.13,
+ "text": "our"
+ },
+ {
+ "id": 5043,
+ "start": 3469.13,
+ "end": 3469.71,
+ "text": "policies."
+ },
+ {
+ "id": 5044,
+ "start": 3469.71,
+ "end": 3469.85,
+ "text": "And"
+ },
+ {
+ "id": 5045,
+ "start": 3469.85,
+ "end": 3469.97,
+ "text": "how"
+ },
+ {
+ "id": 5046,
+ "start": 3469.97,
+ "end": 3470.15,
+ "text": "we're"
+ },
+ {
+ "id": 5047,
+ "start": 3470.15,
+ "end": 3470.27,
+ "text": "going"
+ },
+ {
+ "id": 5048,
+ "start": 3470.27,
+ "end": 3470.35,
+ "text": "to"
+ },
+ {
+ "id": 5049,
+ "start": 3470.35,
+ "end": 3470.63,
+ "text": "operate"
+ },
+ {
+ "id": 5050,
+ "start": 3470.63,
+ "end": 3470.75,
+ "text": "the"
+ },
+ {
+ "id": 5051,
+ "start": 3470.75,
+ "end": 3471.11,
+ "text": "company"
+ },
+ {
+ "id": 5052,
+ "start": 3471.11,
+ "end": 3471.23,
+ "text": "to"
+ },
+ {
+ "id": 5053,
+ "start": 3471.23,
+ "end": 3471.37,
+ "text": "make"
+ },
+ {
+ "id": 5054,
+ "start": 3471.37,
+ "end": 3471.51,
+ "text": "sure"
+ },
+ {
+ "id": 5055,
+ "start": 3471.51,
+ "end": 3471.65,
+ "text": "that"
+ },
+ {
+ "id": 5056,
+ "start": 3471.65,
+ "end": 3471.71,
+ "text": "we"
+ },
+ {
+ "id": 5057,
+ "start": 3471.71,
+ "end": 3471.89,
+ "text": "don't"
+ },
+ {
+ "id": 5058,
+ "start": 3471.89,
+ "end": 3472.03,
+ "text": "make"
+ },
+ {
+ "id": 5059,
+ "start": 3472.03,
+ "end": 3472.19,
+ "text": "that"
+ },
+ {
+ "id": 5060,
+ "start": 3472.19,
+ "end": 3472.53,
+ "text": "mistake"
+ },
+ {
+ "id": 5061,
+ "start": 3472.53,
+ "end": 3472.79,
+ "text": "again."
+ },
+ {
+ "id": 5062,
+ "start": 3472.79,
+ "end": 3473.29,
+ "text": "Did"
+ },
+ {
+ "id": 5063,
+ "start": 3473.29,
+ "end": 3473.81,
+ "text": "anybody"
+ },
+ {
+ "id": 5064,
+ "start": 3473.81,
+ "end": 3474.39,
+ "text": "notify"
+ },
+ {
+ "id": 5065,
+ "start": 3474.39,
+ "end": 3474.53,
+ "text": "the"
+ },
+ {
+ "id": 5066,
+ "start": 3474.53,
+ "end": 3476.34,
+ "text": "FTC?"
+ },
+ {
+ "id": 5067,
+ "start": 3476.34,
+ "end": 3477.36,
+ "text": "No"
+ },
+ {
+ "id": 5068,
+ "start": 3477.36,
+ "end": 3477.82,
+ "text": "Senator,"
+ },
+ {
+ "id": 5069,
+ "start": 3477.82,
+ "end": 3478.1,
+ "text": "for"
+ },
+ {
+ "id": 5070,
+ "start": 3478.1,
+ "end": 3478.22,
+ "text": "the"
+ },
+ {
+ "id": 5071,
+ "start": 3478.22,
+ "end": 3478.4,
+ "text": "same"
+ },
+ {
+ "id": 5072,
+ "start": 3478.4,
+ "end": 3478.7,
+ "text": "reason"
+ },
+ {
+ "id": 5073,
+ "start": 3478.7,
+ "end": 3478.86,
+ "text": "that"
+ },
+ {
+ "id": 5074,
+ "start": 3478.86,
+ "end": 3478.94,
+ "text": "we"
+ },
+ {
+ "id": 5075,
+ "start": 3478.94,
+ "end": 3479.44,
+ "text": "considered"
+ },
+ {
+ "id": 5076,
+ "start": 3479.44,
+ "end": 3479.56,
+ "text": "it"
+ },
+ {
+ "id": 5077,
+ "start": 3479.56,
+ "end": 3479.64,
+ "text": "a"
+ },
+ {
+ "id": 5078,
+ "start": 3479.64,
+ "end": 3480.52,
+ "text": "closed"
+ },
+ {
+ "id": 5079,
+ "start": 3480.52,
+ "end": 3480.82,
+ "text": "closed"
+ },
+ {
+ "id": 5080,
+ "start": 3480.82,
+ "end": 3481.28,
+ "text": "case"
+ },
+ {
+ "id": 5081,
+ "start": 3481.28,
+ "end": 3482.3,
+ "text": "Senator"
+ },
+ {
+ "id": 5082,
+ "start": 3482.3,
+ "end": 3482.82,
+ "text": "zone"
+ },
+ {
+ "id": 5083,
+ "start": 3482.82,
+ "end": 3483.3,
+ "text": "and"
+ },
+ {
+ "id": 5084,
+ "start": 3483.3,
+ "end": 3483.54,
+ "text": "Mr"
+ },
+ {
+ "id": 5085,
+ "start": 3483.54,
+ "end": 3483.86,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 5086,
+ "start": 3483.86,
+ "end": 3483.98,
+ "text": "would"
+ },
+ {
+ "id": 5087,
+ "start": 3483.98,
+ "end": 3484.06,
+ "text": "do"
+ },
+ {
+ "id": 5088,
+ "start": 3484.06,
+ "end": 3484.4,
+ "text": "that"
+ },
+ {
+ "id": 5089,
+ "start": 3484.4,
+ "end": 3485.06,
+ "text": "differently"
+ },
+ {
+ "id": 5090,
+ "start": 3485.06,
+ "end": 3485.4,
+ "text": "today."
+ },
+ {
+ "id": 5091,
+ "start": 3485.4,
+ "end": 3486.06,
+ "text": "Presumably"
+ },
+ {
+ "id": 5092,
+ "start": 3486.06,
+ "end": 3487.24,
+ "text": "that"
+ },
+ {
+ "id": 5093,
+ "start": 3487.24,
+ "end": 3487.56,
+ "text": "in"
+ },
+ {
+ "id": 5094,
+ "start": 3487.56,
+ "end": 3487.96,
+ "text": "response"
+ },
+ {
+ "id": 5095,
+ "start": 3487.96,
+ "end": 3488.06,
+ "text": "to"
+ },
+ {
+ "id": 5096,
+ "start": 3488.06,
+ "end": 3488.3,
+ "text": "Senator"
+ },
+ {
+ "id": 5097,
+ "start": 3488.3,
+ "end": 3488.78,
+ "text": "Nelson's"
+ },
+ {
+ "id": 5098,
+ "start": 3488.78,
+ "end": 3489.2,
+ "text": "question."
+ },
+ {
+ "id": 5099,
+ "start": 3489.2,
+ "end": 3489.7,
+ "text": "Yes,"
+ },
+ {
+ "id": 5100,
+ "start": 3489.7,
+ "end": 3490.12,
+ "text": "having"
+ },
+ {
+ "id": 5101,
+ "start": 3490.12,
+ "end": 3490.22,
+ "text": "to"
+ },
+ {
+ "id": 5102,
+ "start": 3490.22,
+ "end": 3490.32,
+ "text": "do"
+ },
+ {
+ "id": 5103,
+ "start": 3490.32,
+ "end": 3490.42,
+ "text": "it"
+ },
+ {
+ "id": 5104,
+ "start": 3490.42,
+ "end": 3492.02,
+ "text": "over"
+ },
+ {
+ "id": 5105,
+ "start": 3492.02,
+ "end": 3493.02,
+ "text": "this"
+ },
+ {
+ "id": 5106,
+ "start": 3493.02,
+ "end": 3493.24,
+ "text": "may"
+ },
+ {
+ "id": 5107,
+ "start": 3493.24,
+ "end": 3493.38,
+ "text": "be"
+ },
+ {
+ "id": 5108,
+ "start": 3493.38,
+ "end": 3493.68,
+ "text": "your"
+ },
+ {
+ "id": 5109,
+ "start": 3493.68,
+ "end": 3494.22,
+ "text": "first"
+ },
+ {
+ "id": 5110,
+ "start": 3494.22,
+ "end": 3494.68,
+ "text": "appearance"
+ },
+ {
+ "id": 5111,
+ "start": 3494.68,
+ "end": 3495.02,
+ "text": "before"
+ },
+ {
+ "id": 5112,
+ "start": 3495.02,
+ "end": 3495.56,
+ "text": "Congress,"
+ },
+ {
+ "id": 5113,
+ "start": 3495.56,
+ "end": 3495.78,
+ "text": "but"
+ },
+ {
+ "id": 5114,
+ "start": 3495.78,
+ "end": 3495.94,
+ "text": "it's"
+ },
+ {
+ "id": 5115,
+ "start": 3495.94,
+ "end": 3496.08,
+ "text": "not"
+ },
+ {
+ "id": 5116,
+ "start": 3496.08,
+ "end": 3496.26,
+ "text": "the"
+ },
+ {
+ "id": 5117,
+ "start": 3496.26,
+ "end": 3496.48,
+ "text": "first"
+ },
+ {
+ "id": 5118,
+ "start": 3496.48,
+ "end": 3496.68,
+ "text": "time"
+ },
+ {
+ "id": 5119,
+ "start": 3496.68,
+ "end": 3496.86,
+ "text": "that"
+ },
+ {
+ "id": 5120,
+ "start": 3496.86,
+ "end": 3497.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 5121,
+ "start": 3497.34,
+ "end": 3497.5,
+ "text": "is"
+ },
+ {
+ "id": 5122,
+ "start": 3497.5,
+ "end": 3497.84,
+ "text": "faced"
+ },
+ {
+ "id": 5123,
+ "start": 3497.84,
+ "end": 3498.7,
+ "text": "tough"
+ },
+ {
+ "id": 5124,
+ "start": 3498.7,
+ "end": 3499.22,
+ "text": "questions"
+ },
+ {
+ "id": 5125,
+ "start": 3499.22,
+ "end": 3499.5,
+ "text": "about"
+ },
+ {
+ "id": 5126,
+ "start": 3499.5,
+ "end": 3499.68,
+ "text": "its"
+ },
+ {
+ "id": 5127,
+ "start": 3499.68,
+ "end": 3500.22,
+ "text": "privacy"
+ },
+ {
+ "id": 5128,
+ "start": 3500.22,
+ "end": 3501.08,
+ "text": "policies."
+ },
+ {
+ "id": 5129,
+ "start": 3501.08,
+ "end": 3502.08,
+ "text": "Wired"
+ },
+ {
+ "id": 5130,
+ "start": 3502.08,
+ "end": 3502.92,
+ "text": "magazine"
+ },
+ {
+ "id": 5131,
+ "start": 3502.92,
+ "end": 3503.62,
+ "text": "noted"
+ },
+ {
+ "id": 5132,
+ "start": 3503.62,
+ "end": 3504.02,
+ "text": "that"
+ },
+ {
+ "id": 5133,
+ "start": 3504.02,
+ "end": 3504.18,
+ "text": "you"
+ },
+ {
+ "id": 5134,
+ "start": 3504.18,
+ "end": 3504.32,
+ "text": "have"
+ },
+ {
+ "id": 5135,
+ "start": 3504.32,
+ "end": 3504.38,
+ "text": "a"
+ },
+ {
+ "id": 5136,
+ "start": 3504.38,
+ "end": 3504.78,
+ "text": "14"
+ },
+ {
+ "id": 5137,
+ "start": 3504.78,
+ "end": 3504.92,
+ "text": "year"
+ },
+ {
+ "id": 5138,
+ "start": 3504.92,
+ "end": 3505.36,
+ "text": "history"
+ },
+ {
+ "id": 5139,
+ "start": 3505.36,
+ "end": 3505.46,
+ "text": "of"
+ },
+ {
+ "id": 5140,
+ "start": 3505.46,
+ "end": 3506.3,
+ "text": "apologizing"
+ },
+ {
+ "id": 5141,
+ "start": 3506.3,
+ "end": 3506.46,
+ "text": "for"
+ },
+ {
+ "id": 5142,
+ "start": 3506.46,
+ "end": 3506.7,
+ "text": "ill"
+ },
+ {
+ "id": 5143,
+ "start": 3506.7,
+ "end": 3507.06,
+ "text": "advised"
+ },
+ {
+ "id": 5144,
+ "start": 3507.06,
+ "end": 3507.62,
+ "text": "decisions"
+ },
+ {
+ "id": 5145,
+ "start": 3507.62,
+ "end": 3508.62,
+ "text": "regarding"
+ },
+ {
+ "id": 5146,
+ "start": 3508.62,
+ "end": 3508.98,
+ "text": "user"
+ },
+ {
+ "id": 5147,
+ "start": 3508.98,
+ "end": 3509.52,
+ "text": "privacy."
+ },
+ {
+ "id": 5148,
+ "start": 3509.52,
+ "end": 3509.72,
+ "text": "Not"
+ },
+ {
+ "id": 5149,
+ "start": 3509.72,
+ "end": 3510.02,
+ "text": "unlike"
+ },
+ {
+ "id": 5150,
+ "start": 3510.02,
+ "end": 3510.14,
+ "text": "the"
+ },
+ {
+ "id": 5151,
+ "start": 3510.14,
+ "end": 3510.32,
+ "text": "one"
+ },
+ {
+ "id": 5152,
+ "start": 3510.32,
+ "end": 3510.46,
+ "text": "that"
+ },
+ {
+ "id": 5153,
+ "start": 3510.46,
+ "end": 3510.74,
+ "text": "you"
+ },
+ {
+ "id": 5154,
+ "start": 3510.74,
+ "end": 3511.26,
+ "text": "made"
+ },
+ {
+ "id": 5155,
+ "start": 3511.26,
+ "end": 3512.26,
+ "text": "just"
+ },
+ {
+ "id": 5156,
+ "start": 3512.26,
+ "end": 3512.4,
+ "text": "now"
+ },
+ {
+ "id": 5157,
+ "start": 3512.4,
+ "end": 3512.54,
+ "text": "in"
+ },
+ {
+ "id": 5158,
+ "start": 3512.54,
+ "end": 3512.72,
+ "text": "your"
+ },
+ {
+ "id": 5159,
+ "start": 3512.72,
+ "end": 3513.08,
+ "text": "opening"
+ },
+ {
+ "id": 5160,
+ "start": 3513.08,
+ "end": 3514.12,
+ "text": "statement"
+ },
+ {
+ "id": 5161,
+ "start": 3514.12,
+ "end": 3515,
+ "text": "after"
+ },
+ {
+ "id": 5162,
+ "start": 3515,
+ "end": 3515.34,
+ "text": "more"
+ },
+ {
+ "id": 5163,
+ "start": 3515.34,
+ "end": 3516.18,
+ "text": "than"
+ },
+ {
+ "id": 5164,
+ "start": 3516.18,
+ "end": 3516.58,
+ "text": "a"
+ },
+ {
+ "id": 5165,
+ "start": 3516.58,
+ "end": 3517.56,
+ "text": "decade"
+ },
+ {
+ "id": 5166,
+ "start": 3517.56,
+ "end": 3517.66,
+ "text": "of"
+ },
+ {
+ "id": 5167,
+ "start": 3517.66,
+ "end": 3518.18,
+ "text": "promises"
+ },
+ {
+ "id": 5168,
+ "start": 3518.18,
+ "end": 3518.32,
+ "text": "to"
+ },
+ {
+ "id": 5169,
+ "start": 3518.32,
+ "end": 3518.44,
+ "text": "do"
+ },
+ {
+ "id": 5170,
+ "start": 3518.44,
+ "end": 3518.82,
+ "text": "better."
+ },
+ {
+ "id": 5171,
+ "start": 3518.82,
+ "end": 3519.48,
+ "text": "How"
+ },
+ {
+ "id": 5172,
+ "start": 3519.48,
+ "end": 3519.74,
+ "text": "is"
+ },
+ {
+ "id": 5173,
+ "start": 3519.74,
+ "end": 3520.82,
+ "text": "today's"
+ },
+ {
+ "id": 5174,
+ "start": 3520.82,
+ "end": 3521.8,
+ "text": "apology"
+ },
+ {
+ "id": 5175,
+ "start": 3521.8,
+ "end": 3522.2,
+ "text": "different"
+ },
+ {
+ "id": 5176,
+ "start": 3522.2,
+ "end": 3522.34,
+ "text": "and"
+ },
+ {
+ "id": 5177,
+ "start": 3522.34,
+ "end": 3522.64,
+ "text": "why"
+ },
+ {
+ "id": 5178,
+ "start": 3522.64,
+ "end": 3522.88,
+ "text": "should"
+ },
+ {
+ "id": 5179,
+ "start": 3522.88,
+ "end": 3523.02,
+ "text": "we"
+ },
+ {
+ "id": 5180,
+ "start": 3523.02,
+ "end": 3523.88,
+ "text": "trust"
+ },
+ {
+ "id": 5181,
+ "start": 3523.88,
+ "end": 3524.84,
+ "text": "Facebook"
+ },
+ {
+ "id": 5182,
+ "start": 3524.84,
+ "end": 3525,
+ "text": "to"
+ },
+ {
+ "id": 5183,
+ "start": 3525,
+ "end": 3525.18,
+ "text": "make"
+ },
+ {
+ "id": 5184,
+ "start": 3525.18,
+ "end": 3525.32,
+ "text": "the"
+ },
+ {
+ "id": 5185,
+ "start": 3525.32,
+ "end": 3525.9,
+ "text": "necessary"
+ },
+ {
+ "id": 5186,
+ "start": 3525.9,
+ "end": 3526.4,
+ "text": "changes"
+ },
+ {
+ "id": 5187,
+ "start": 3526.4,
+ "end": 3526.58,
+ "text": "to"
+ },
+ {
+ "id": 5188,
+ "start": 3526.58,
+ "end": 3527.08,
+ "text": "ensure"
+ },
+ {
+ "id": 5189,
+ "start": 3527.08,
+ "end": 3527.48,
+ "text": "user"
+ },
+ {
+ "id": 5190,
+ "start": 3527.48,
+ "end": 3528.02,
+ "text": "privacy?"
+ },
+ {
+ "id": 5191,
+ "start": 3528.02,
+ "end": 3528.22,
+ "text": "And"
+ },
+ {
+ "id": 5192,
+ "start": 3528.22,
+ "end": 3528.44,
+ "text": "give"
+ },
+ {
+ "id": 5193,
+ "start": 3528.44,
+ "end": 3528.72,
+ "text": "people"
+ },
+ {
+ "id": 5194,
+ "start": 3528.72,
+ "end": 3528.92,
+ "text": "a"
+ },
+ {
+ "id": 5195,
+ "start": 3528.92,
+ "end": 3529.4,
+ "text": "clearer"
+ },
+ {
+ "id": 5196,
+ "start": 3529.4,
+ "end": 3529.86,
+ "text": "picture"
+ },
+ {
+ "id": 5197,
+ "start": 3529.86,
+ "end": 3530.64,
+ "text": "of"
+ },
+ {
+ "id": 5198,
+ "start": 3530.64,
+ "end": 3530.82,
+ "text": "your"
+ },
+ {
+ "id": 5199,
+ "start": 3530.82,
+ "end": 3531.28,
+ "text": "privacy"
+ },
+ {
+ "id": 5200,
+ "start": 3531.28,
+ "end": 3533.14,
+ "text": "policies."
+ },
+ {
+ "id": 5201,
+ "start": 3533.14,
+ "end": 3534.1,
+ "text": "Thank"
+ },
+ {
+ "id": 5202,
+ "start": 3534.1,
+ "end": 3534.2,
+ "text": "you,"
+ },
+ {
+ "id": 5203,
+ "start": 3534.2,
+ "end": 3534.46,
+ "text": "Mr"
+ },
+ {
+ "id": 5204,
+ "start": 3534.46,
+ "end": 3535.12,
+ "text": "Chairman."
+ },
+ {
+ "id": 5205,
+ "start": 3535.12,
+ "end": 3536.24,
+ "text": "So"
+ },
+ {
+ "id": 5206,
+ "start": 3536.24,
+ "end": 3536.42,
+ "text": "we"
+ },
+ {
+ "id": 5207,
+ "start": 3536.42,
+ "end": 3536.64,
+ "text": "have"
+ },
+ {
+ "id": 5208,
+ "start": 3536.64,
+ "end": 3536.84,
+ "text": "made"
+ },
+ {
+ "id": 5209,
+ "start": 3536.84,
+ "end": 3536.88,
+ "text": "a"
+ },
+ {
+ "id": 5210,
+ "start": 3536.88,
+ "end": 3537.04,
+ "text": "lot"
+ },
+ {
+ "id": 5211,
+ "start": 3537.04,
+ "end": 3537.14,
+ "text": "of"
+ },
+ {
+ "id": 5212,
+ "start": 3537.14,
+ "end": 3537.46,
+ "text": "mistakes"
+ },
+ {
+ "id": 5213,
+ "start": 3537.46,
+ "end": 3537.58,
+ "text": "in"
+ },
+ {
+ "id": 5214,
+ "start": 3537.58,
+ "end": 3537.82,
+ "text": "running"
+ },
+ {
+ "id": 5215,
+ "start": 3537.82,
+ "end": 3537.94,
+ "text": "the"
+ },
+ {
+ "id": 5216,
+ "start": 3537.94,
+ "end": 3538.24,
+ "text": "company."
+ },
+ {
+ "id": 5217,
+ "start": 3538.24,
+ "end": 3538.48,
+ "text": "I"
+ },
+ {
+ "id": 5218,
+ "start": 3538.48,
+ "end": 3538.66,
+ "text": "think"
+ },
+ {
+ "id": 5219,
+ "start": 3538.66,
+ "end": 3539.18,
+ "text": "it's"
+ },
+ {
+ "id": 5220,
+ "start": 3539.18,
+ "end": 3539.56,
+ "text": "pretty"
+ },
+ {
+ "id": 5221,
+ "start": 3539.56,
+ "end": 3539.74,
+ "text": "much"
+ },
+ {
+ "id": 5222,
+ "start": 3539.74,
+ "end": 3540.4,
+ "text": "impossible,"
+ },
+ {
+ "id": 5223,
+ "start": 3540.4,
+ "end": 3540.76,
+ "text": "I"
+ },
+ {
+ "id": 5224,
+ "start": 3540.76,
+ "end": 3541.1,
+ "text": "believe."
+ },
+ {
+ "id": 5225,
+ "start": 3541.1,
+ "end": 3541.28,
+ "text": "To"
+ },
+ {
+ "id": 5226,
+ "start": 3541.28,
+ "end": 3541.6,
+ "text": "start"
+ },
+ {
+ "id": 5227,
+ "start": 3541.6,
+ "end": 3541.68,
+ "text": "a"
+ },
+ {
+ "id": 5228,
+ "start": 3541.68,
+ "end": 3542.04,
+ "text": "company"
+ },
+ {
+ "id": 5229,
+ "start": 3542.04,
+ "end": 3542.18,
+ "text": "in"
+ },
+ {
+ "id": 5230,
+ "start": 3542.18,
+ "end": 3542.36,
+ "text": "your"
+ },
+ {
+ "id": 5231,
+ "start": 3542.36,
+ "end": 3542.66,
+ "text": "dorm"
+ },
+ {
+ "id": 5232,
+ "start": 3542.66,
+ "end": 3542.88,
+ "text": "room"
+ },
+ {
+ "id": 5233,
+ "start": 3542.88,
+ "end": 3543.02,
+ "text": "and"
+ },
+ {
+ "id": 5234,
+ "start": 3543.02,
+ "end": 3543.18,
+ "text": "then"
+ },
+ {
+ "id": 5235,
+ "start": 3543.18,
+ "end": 3543.46,
+ "text": "grow"
+ },
+ {
+ "id": 5236,
+ "start": 3543.46,
+ "end": 3543.58,
+ "text": "it"
+ },
+ {
+ "id": 5237,
+ "start": 3543.58,
+ "end": 3543.72,
+ "text": "to"
+ },
+ {
+ "id": 5238,
+ "start": 3543.72,
+ "end": 3543.86,
+ "text": "be"
+ },
+ {
+ "id": 5239,
+ "start": 3543.86,
+ "end": 3543.94,
+ "text": "at"
+ },
+ {
+ "id": 5240,
+ "start": 3543.94,
+ "end": 3544.06,
+ "text": "the"
+ },
+ {
+ "id": 5241,
+ "start": 3544.06,
+ "end": 3544.32,
+ "text": "scale."
+ },
+ {
+ "id": 5242,
+ "start": 3544.32,
+ "end": 3544.46,
+ "text": "That"
+ },
+ {
+ "id": 5243,
+ "start": 3544.46,
+ "end": 3544.62,
+ "text": "we're"
+ },
+ {
+ "id": 5244,
+ "start": 3544.62,
+ "end": 3544.74,
+ "text": "at"
+ },
+ {
+ "id": 5245,
+ "start": 3544.74,
+ "end": 3545,
+ "text": "now"
+ },
+ {
+ "id": 5246,
+ "start": 3545,
+ "end": 3545.4,
+ "text": "without"
+ },
+ {
+ "id": 5247,
+ "start": 3545.4,
+ "end": 3546.16,
+ "text": "making"
+ },
+ {
+ "id": 5248,
+ "start": 3546.16,
+ "end": 3546.36,
+ "text": "some"
+ },
+ {
+ "id": 5249,
+ "start": 3546.36,
+ "end": 3546.78,
+ "text": "mistakes"
+ },
+ {
+ "id": 5250,
+ "start": 3546.78,
+ "end": 3546.96,
+ "text": "and"
+ },
+ {
+ "id": 5251,
+ "start": 3546.96,
+ "end": 3547.26,
+ "text": "because"
+ },
+ {
+ "id": 5252,
+ "start": 3547.26,
+ "end": 3547.48,
+ "text": "our"
+ },
+ {
+ "id": 5253,
+ "start": 3547.48,
+ "end": 3547.9,
+ "text": "service"
+ },
+ {
+ "id": 5254,
+ "start": 3547.9,
+ "end": 3548.42,
+ "text": "is"
+ },
+ {
+ "id": 5255,
+ "start": 3548.42,
+ "end": 3549.06,
+ "text": "about"
+ },
+ {
+ "id": 5256,
+ "start": 3549.06,
+ "end": 3550.02,
+ "text": "helping"
+ },
+ {
+ "id": 5257,
+ "start": 3550.02,
+ "end": 3550.28,
+ "text": "people"
+ },
+ {
+ "id": 5258,
+ "start": 3550.28,
+ "end": 3550.66,
+ "text": "connect"
+ },
+ {
+ "id": 5259,
+ "start": 3550.66,
+ "end": 3550.78,
+ "text": "and"
+ },
+ {
+ "id": 5260,
+ "start": 3550.78,
+ "end": 3551.96,
+ "text": "information."
+ },
+ {
+ "id": 5261,
+ "start": 3551.96,
+ "end": 3552.78,
+ "text": "Those"
+ },
+ {
+ "id": 5262,
+ "start": 3552.78,
+ "end": 3553.22,
+ "text": "mistakes"
+ },
+ {
+ "id": 5263,
+ "start": 3553.22,
+ "end": 3553.74,
+ "text": "have"
+ },
+ {
+ "id": 5264,
+ "start": 3553.74,
+ "end": 3553.9,
+ "text": "been"
+ },
+ {
+ "id": 5265,
+ "start": 3553.9,
+ "end": 3554.24,
+ "text": "different"
+ },
+ {
+ "id": 5266,
+ "start": 3554.24,
+ "end": 3554.72,
+ "text": "and"
+ },
+ {
+ "id": 5267,
+ "start": 3554.72,
+ "end": 3554.94,
+ "text": "how"
+ },
+ {
+ "id": 5268,
+ "start": 3554.94,
+ "end": 3555.8,
+ "text": "we"
+ },
+ {
+ "id": 5269,
+ "start": 3555.8,
+ "end": 3555.96,
+ "text": "try"
+ },
+ {
+ "id": 5270,
+ "start": 3555.96,
+ "end": 3556.1,
+ "text": "not"
+ },
+ {
+ "id": 5271,
+ "start": 3556.1,
+ "end": 3556.18,
+ "text": "to"
+ },
+ {
+ "id": 5272,
+ "start": 3556.18,
+ "end": 3556.32,
+ "text": "make"
+ },
+ {
+ "id": 5273,
+ "start": 3556.32,
+ "end": 3556.42,
+ "text": "the"
+ },
+ {
+ "id": 5274,
+ "start": 3556.42,
+ "end": 3556.58,
+ "text": "same"
+ },
+ {
+ "id": 5275,
+ "start": 3556.58,
+ "end": 3556.88,
+ "text": "mistake."
+ },
+ {
+ "id": 5276,
+ "start": 3556.88,
+ "end": 3557.26,
+ "text": "Multiple"
+ },
+ {
+ "id": 5277,
+ "start": 3557.26,
+ "end": 3557.62,
+ "text": "times"
+ },
+ {
+ "id": 5278,
+ "start": 3557.62,
+ "end": 3558.24,
+ "text": "but"
+ },
+ {
+ "id": 5279,
+ "start": 3558.24,
+ "end": 3558.42,
+ "text": "in"
+ },
+ {
+ "id": 5280,
+ "start": 3558.42,
+ "end": 3558.8,
+ "text": "general,"
+ },
+ {
+ "id": 5281,
+ "start": 3558.8,
+ "end": 3558.88,
+ "text": "a"
+ },
+ {
+ "id": 5282,
+ "start": 3558.88,
+ "end": 3559.02,
+ "text": "lot"
+ },
+ {
+ "id": 5283,
+ "start": 3559.02,
+ "end": 3559.1,
+ "text": "of"
+ },
+ {
+ "id": 5284,
+ "start": 3559.1,
+ "end": 3559.2,
+ "text": "the"
+ },
+ {
+ "id": 5285,
+ "start": 3559.2,
+ "end": 3559.56,
+ "text": "mistakes"
+ },
+ {
+ "id": 5286,
+ "start": 3559.56,
+ "end": 3559.86,
+ "text": "are"
+ },
+ {
+ "id": 5287,
+ "start": 3559.86,
+ "end": 3560.36,
+ "text": "around"
+ },
+ {
+ "id": 5288,
+ "start": 3560.36,
+ "end": 3561.18,
+ "text": "how"
+ },
+ {
+ "id": 5289,
+ "start": 3561.18,
+ "end": 3561.4,
+ "text": "people"
+ },
+ {
+ "id": 5290,
+ "start": 3561.4,
+ "end": 3561.64,
+ "text": "connect"
+ },
+ {
+ "id": 5291,
+ "start": 3561.64,
+ "end": 3561.74,
+ "text": "to"
+ },
+ {
+ "id": 5292,
+ "start": 3561.74,
+ "end": 3561.9,
+ "text": "each"
+ },
+ {
+ "id": 5293,
+ "start": 3561.9,
+ "end": 3562.12,
+ "text": "other."
+ },
+ {
+ "id": 5294,
+ "start": 3562.12,
+ "end": 3562.3,
+ "text": "Just"
+ },
+ {
+ "id": 5295,
+ "start": 3562.3,
+ "end": 3562.54,
+ "text": "because"
+ },
+ {
+ "id": 5296,
+ "start": 3562.54,
+ "end": 3562.68,
+ "text": "of"
+ },
+ {
+ "id": 5297,
+ "start": 3562.68,
+ "end": 3562.82,
+ "text": "the"
+ },
+ {
+ "id": 5298,
+ "start": 3562.82,
+ "end": 3563.14,
+ "text": "nature"
+ },
+ {
+ "id": 5299,
+ "start": 3563.14,
+ "end": 3563.24,
+ "text": "of"
+ },
+ {
+ "id": 5300,
+ "start": 3563.24,
+ "end": 3563.38,
+ "text": "the"
+ },
+ {
+ "id": 5301,
+ "start": 3563.38,
+ "end": 3564.3,
+ "text": "service"
+ },
+ {
+ "id": 5302,
+ "start": 3564.3,
+ "end": 3565.34,
+ "text": "overall,"
+ },
+ {
+ "id": 5303,
+ "start": 3565.34,
+ "end": 3566.02,
+ "text": "I"
+ },
+ {
+ "id": 5304,
+ "start": 3566.02,
+ "end": 3566.2,
+ "text": "would"
+ },
+ {
+ "id": 5305,
+ "start": 3566.2,
+ "end": 3566.32,
+ "text": "say"
+ },
+ {
+ "id": 5306,
+ "start": 3566.32,
+ "end": 3566.44,
+ "text": "that"
+ },
+ {
+ "id": 5307,
+ "start": 3566.44,
+ "end": 3566.6,
+ "text": "we're"
+ },
+ {
+ "id": 5308,
+ "start": 3566.6,
+ "end": 3566.78,
+ "text": "going"
+ },
+ {
+ "id": 5309,
+ "start": 3566.78,
+ "end": 3567.02,
+ "text": "through"
+ },
+ {
+ "id": 5310,
+ "start": 3567.02,
+ "end": 3567.08,
+ "text": "a"
+ },
+ {
+ "id": 5311,
+ "start": 3567.08,
+ "end": 3567.52,
+ "text": "broader"
+ },
+ {
+ "id": 5312,
+ "start": 3567.52,
+ "end": 3568.3,
+ "text": "philosophical"
+ },
+ {
+ "id": 5313,
+ "start": 3568.3,
+ "end": 3568.74,
+ "text": "shift"
+ },
+ {
+ "id": 5314,
+ "start": 3568.74,
+ "end": 3569.04,
+ "text": "in"
+ },
+ {
+ "id": 5315,
+ "start": 3569.04,
+ "end": 3569.28,
+ "text": "how"
+ },
+ {
+ "id": 5316,
+ "start": 3569.28,
+ "end": 3569.48,
+ "text": "we"
+ },
+ {
+ "id": 5317,
+ "start": 3569.48,
+ "end": 3569.92,
+ "text": "approach"
+ },
+ {
+ "id": 5318,
+ "start": 3569.92,
+ "end": 3570.06,
+ "text": "our"
+ },
+ {
+ "id": 5319,
+ "start": 3570.06,
+ "end": 3570.78,
+ "text": "responsibility"
+ },
+ {
+ "id": 5320,
+ "start": 3570.78,
+ "end": 3570.88,
+ "text": "of"
+ },
+ {
+ "id": 5321,
+ "start": 3570.88,
+ "end": 3570.98,
+ "text": "the"
+ },
+ {
+ "id": 5322,
+ "start": 3570.98,
+ "end": 3571.36,
+ "text": "company"
+ },
+ {
+ "id": 5323,
+ "start": 3571.36,
+ "end": 3572.1,
+ "text": "for"
+ },
+ {
+ "id": 5324,
+ "start": 3572.1,
+ "end": 3572.22,
+ "text": "the"
+ },
+ {
+ "id": 5325,
+ "start": 3572.22,
+ "end": 3572.5,
+ "text": "first"
+ },
+ {
+ "id": 5326,
+ "start": 3572.5,
+ "end": 3573.2,
+ "text": "10"
+ },
+ {
+ "id": 5327,
+ "start": 3573.2,
+ "end": 3573.34,
+ "text": "or"
+ },
+ {
+ "id": 5328,
+ "start": 3573.34,
+ "end": 3573.64,
+ "text": "12"
+ },
+ {
+ "id": 5329,
+ "start": 3573.64,
+ "end": 3573.86,
+ "text": "years"
+ },
+ {
+ "id": 5330,
+ "start": 3573.86,
+ "end": 3574,
+ "text": "of"
+ },
+ {
+ "id": 5331,
+ "start": 3574,
+ "end": 3574.1,
+ "text": "the"
+ },
+ {
+ "id": 5332,
+ "start": 3574.1,
+ "end": 3574.46,
+ "text": "company."
+ },
+ {
+ "id": 5333,
+ "start": 3574.46,
+ "end": 3575.42,
+ "text": "I"
+ },
+ {
+ "id": 5334,
+ "start": 3575.42,
+ "end": 3575.72,
+ "text": "viewed"
+ },
+ {
+ "id": 5335,
+ "start": 3575.72,
+ "end": 3575.86,
+ "text": "our"
+ },
+ {
+ "id": 5336,
+ "start": 3575.86,
+ "end": 3576.6,
+ "text": "responsibility"
+ },
+ {
+ "id": 5337,
+ "start": 3576.6,
+ "end": 3576.72,
+ "text": "is"
+ },
+ {
+ "id": 5338,
+ "start": 3576.72,
+ "end": 3577.32,
+ "text": "primarily"
+ },
+ {
+ "id": 5339,
+ "start": 3577.32,
+ "end": 3577.66,
+ "text": "building"
+ },
+ {
+ "id": 5340,
+ "start": 3577.66,
+ "end": 3578.08,
+ "text": "tools"
+ },
+ {
+ "id": 5341,
+ "start": 3578.08,
+ "end": 3578.58,
+ "text": "that"
+ },
+ {
+ "id": 5342,
+ "start": 3578.58,
+ "end": 3578.68,
+ "text": "if"
+ },
+ {
+ "id": 5343,
+ "start": 3578.68,
+ "end": 3578.76,
+ "text": "we"
+ },
+ {
+ "id": 5344,
+ "start": 3578.76,
+ "end": 3578.92,
+ "text": "could"
+ },
+ {
+ "id": 5345,
+ "start": 3578.92,
+ "end": 3579.04,
+ "text": "put"
+ },
+ {
+ "id": 5346,
+ "start": 3579.04,
+ "end": 3579.28,
+ "text": "those"
+ },
+ {
+ "id": 5347,
+ "start": 3579.28,
+ "end": 3579.6,
+ "text": "tools"
+ },
+ {
+ "id": 5348,
+ "start": 3579.6,
+ "end": 3579.76,
+ "text": "in"
+ },
+ {
+ "id": 5349,
+ "start": 3579.76,
+ "end": 3580.08,
+ "text": "people's"
+ },
+ {
+ "id": 5350,
+ "start": 3580.08,
+ "end": 3580.44,
+ "text": "hands,"
+ },
+ {
+ "id": 5351,
+ "start": 3580.44,
+ "end": 3581.18,
+ "text": "then"
+ },
+ {
+ "id": 5352,
+ "start": 3581.18,
+ "end": 3581.54,
+ "text": "that"
+ },
+ {
+ "id": 5353,
+ "start": 3581.54,
+ "end": 3581.7,
+ "text": "would"
+ },
+ {
+ "id": 5354,
+ "start": 3581.7,
+ "end": 3582.1,
+ "text": "empower"
+ },
+ {
+ "id": 5355,
+ "start": 3582.1,
+ "end": 3582.4,
+ "text": "people"
+ },
+ {
+ "id": 5356,
+ "start": 3582.4,
+ "end": 3582.52,
+ "text": "to"
+ },
+ {
+ "id": 5357,
+ "start": 3582.52,
+ "end": 3582.68,
+ "text": "do"
+ },
+ {
+ "id": 5358,
+ "start": 3582.68,
+ "end": 3582.94,
+ "text": "good"
+ },
+ {
+ "id": 5359,
+ "start": 3582.94,
+ "end": 3583.52,
+ "text": "things."
+ },
+ {
+ "id": 5360,
+ "start": 3583.52,
+ "end": 3583.96,
+ "text": "What"
+ },
+ {
+ "id": 5361,
+ "start": 3583.96,
+ "end": 3584.02,
+ "text": "I"
+ },
+ {
+ "id": 5362,
+ "start": 3584.02,
+ "end": 3584.22,
+ "text": "think"
+ },
+ {
+ "id": 5363,
+ "start": 3584.22,
+ "end": 3584.44,
+ "text": "we've"
+ },
+ {
+ "id": 5364,
+ "start": 3584.44,
+ "end": 3584.66,
+ "text": "learned"
+ },
+ {
+ "id": 5365,
+ "start": 3584.66,
+ "end": 3584.9,
+ "text": "now"
+ },
+ {
+ "id": 5366,
+ "start": 3584.9,
+ "end": 3585.38,
+ "text": "across"
+ },
+ {
+ "id": 5367,
+ "start": 3585.38,
+ "end": 3585.48,
+ "text": "a"
+ },
+ {
+ "id": 5368,
+ "start": 3585.48,
+ "end": 3585.76,
+ "text": "number"
+ },
+ {
+ "id": 5369,
+ "start": 3585.76,
+ "end": 3585.84,
+ "text": "of"
+ },
+ {
+ "id": 5370,
+ "start": 3585.84,
+ "end": 3586.18,
+ "text": "issues,"
+ },
+ {
+ "id": 5371,
+ "start": 3586.18,
+ "end": 3586.46,
+ "text": "not"
+ },
+ {
+ "id": 5372,
+ "start": 3586.46,
+ "end": 3586.64,
+ "text": "just"
+ },
+ {
+ "id": 5373,
+ "start": 3586.64,
+ "end": 3586.9,
+ "text": "data"
+ },
+ {
+ "id": 5374,
+ "start": 3586.9,
+ "end": 3587.36,
+ "text": "privacy."
+ },
+ {
+ "id": 5375,
+ "start": 3587.36,
+ "end": 3587.52,
+ "text": "But"
+ },
+ {
+ "id": 5376,
+ "start": 3587.52,
+ "end": 3587.76,
+ "text": "also"
+ },
+ {
+ "id": 5377,
+ "start": 3587.76,
+ "end": 3588.06,
+ "text": "Fake"
+ },
+ {
+ "id": 5378,
+ "start": 3588.06,
+ "end": 3588.36,
+ "text": "News"
+ },
+ {
+ "id": 5379,
+ "start": 3588.36,
+ "end": 3588.54,
+ "text": "and"
+ },
+ {
+ "id": 5380,
+ "start": 3588.54,
+ "end": 3588.82,
+ "text": "foreign"
+ },
+ {
+ "id": 5381,
+ "start": 3588.82,
+ "end": 3589.34,
+ "text": "interference"
+ },
+ {
+ "id": 5382,
+ "start": 3589.34,
+ "end": 3589.42,
+ "text": "in"
+ },
+ {
+ "id": 5383,
+ "start": 3589.42,
+ "end": 3589.92,
+ "text": "elections"
+ },
+ {
+ "id": 5384,
+ "start": 3589.92,
+ "end": 3590.52,
+ "text": "is"
+ },
+ {
+ "id": 5385,
+ "start": 3590.52,
+ "end": 3590.7,
+ "text": "that"
+ },
+ {
+ "id": 5386,
+ "start": 3590.7,
+ "end": 3590.82,
+ "text": "we"
+ },
+ {
+ "id": 5387,
+ "start": 3590.82,
+ "end": 3591.02,
+ "text": "need"
+ },
+ {
+ "id": 5388,
+ "start": 3591.02,
+ "end": 3591.12,
+ "text": "to"
+ },
+ {
+ "id": 5389,
+ "start": 3591.12,
+ "end": 3591.32,
+ "text": "take"
+ },
+ {
+ "id": 5390,
+ "start": 3591.32,
+ "end": 3591.38,
+ "text": "a"
+ },
+ {
+ "id": 5391,
+ "start": 3591.38,
+ "end": 3591.6,
+ "text": "more"
+ },
+ {
+ "id": 5392,
+ "start": 3591.6,
+ "end": 3592.14,
+ "text": "proactive"
+ },
+ {
+ "id": 5393,
+ "start": 3592.14,
+ "end": 3592.4,
+ "text": "role."
+ },
+ {
+ "id": 5394,
+ "start": 3592.4,
+ "end": 3592.54,
+ "text": "In"
+ },
+ {
+ "id": 5395,
+ "start": 3592.54,
+ "end": 3592.64,
+ "text": "a"
+ },
+ {
+ "id": 5396,
+ "start": 3592.64,
+ "end": 3592.98,
+ "text": "broader"
+ },
+ {
+ "id": 5397,
+ "start": 3592.98,
+ "end": 3593.18,
+ "text": "view"
+ },
+ {
+ "id": 5398,
+ "start": 3593.18,
+ "end": 3593.28,
+ "text": "of"
+ },
+ {
+ "id": 5399,
+ "start": 3593.28,
+ "end": 3593.46,
+ "text": "our"
+ },
+ {
+ "id": 5400,
+ "start": 3593.46,
+ "end": 3594.24,
+ "text": "responsibility"
+ },
+ {
+ "id": 5401,
+ "start": 3594.24,
+ "end": 3594.84,
+ "text": "it's"
+ },
+ {
+ "id": 5402,
+ "start": 3594.84,
+ "end": 3595,
+ "text": "not"
+ },
+ {
+ "id": 5403,
+ "start": 3595,
+ "end": 3595.22,
+ "text": "enough"
+ },
+ {
+ "id": 5404,
+ "start": 3595.22,
+ "end": 3595.32,
+ "text": "to"
+ },
+ {
+ "id": 5405,
+ "start": 3595.32,
+ "end": 3595.48,
+ "text": "just"
+ },
+ {
+ "id": 5406,
+ "start": 3595.48,
+ "end": 3595.7,
+ "text": "build"
+ },
+ {
+ "id": 5407,
+ "start": 3595.7,
+ "end": 3596,
+ "text": "tools."
+ },
+ {
+ "id": 5408,
+ "start": 3596,
+ "end": 3596.62,
+ "text": "We"
+ },
+ {
+ "id": 5409,
+ "start": 3596.62,
+ "end": 3596.8,
+ "text": "need"
+ },
+ {
+ "id": 5410,
+ "start": 3596.8,
+ "end": 3596.88,
+ "text": "to"
+ },
+ {
+ "id": 5411,
+ "start": 3596.88,
+ "end": 3597.04,
+ "text": "make"
+ },
+ {
+ "id": 5412,
+ "start": 3597.04,
+ "end": 3597.22,
+ "text": "sure"
+ },
+ {
+ "id": 5413,
+ "start": 3597.22,
+ "end": 3597.38,
+ "text": "that"
+ },
+ {
+ "id": 5414,
+ "start": 3597.38,
+ "end": 3597.62,
+ "text": "they're"
+ },
+ {
+ "id": 5415,
+ "start": 3597.62,
+ "end": 3597.88,
+ "text": "used"
+ },
+ {
+ "id": 5416,
+ "start": 3597.88,
+ "end": 3598.06,
+ "text": "for"
+ },
+ {
+ "id": 5417,
+ "start": 3598.06,
+ "end": 3598.32,
+ "text": "good."
+ },
+ {
+ "id": 5418,
+ "start": 3598.32,
+ "end": 3599.17,
+ "text": "And"
+ },
+ {
+ "id": 5419,
+ "start": 3599.17,
+ "end": 3599.41,
+ "text": "that"
+ },
+ {
+ "id": 5420,
+ "start": 3599.41,
+ "end": 3599.69,
+ "text": "means"
+ },
+ {
+ "id": 5421,
+ "start": 3599.69,
+ "end": 3599.95,
+ "text": "that"
+ },
+ {
+ "id": 5422,
+ "start": 3599.95,
+ "end": 3600.11,
+ "text": "we"
+ },
+ {
+ "id": 5423,
+ "start": 3600.11,
+ "end": 3600.33,
+ "text": "need"
+ },
+ {
+ "id": 5424,
+ "start": 3600.33,
+ "end": 3600.43,
+ "text": "to"
+ },
+ {
+ "id": 5425,
+ "start": 3600.43,
+ "end": 3600.73,
+ "text": "now"
+ },
+ {
+ "id": 5426,
+ "start": 3600.73,
+ "end": 3600.99,
+ "text": "take"
+ },
+ {
+ "id": 5427,
+ "start": 3600.99,
+ "end": 3601.03,
+ "text": "a"
+ },
+ {
+ "id": 5428,
+ "start": 3601.03,
+ "end": 3601.23,
+ "text": "more"
+ },
+ {
+ "id": 5429,
+ "start": 3601.23,
+ "end": 3601.59,
+ "text": "active"
+ },
+ {
+ "id": 5430,
+ "start": 3601.59,
+ "end": 3601.75,
+ "text": "view"
+ },
+ {
+ "id": 5431,
+ "start": 3601.75,
+ "end": 3602.47,
+ "text": "in"
+ },
+ {
+ "id": 5432,
+ "start": 3602.47,
+ "end": 3602.93,
+ "text": "policing."
+ },
+ {
+ "id": 5433,
+ "start": 3602.93,
+ "end": 3603.05,
+ "text": "The"
+ },
+ {
+ "id": 5434,
+ "start": 3603.05,
+ "end": 3603.63,
+ "text": "ecosystem"
+ },
+ {
+ "id": 5435,
+ "start": 3603.63,
+ "end": 3604.67,
+ "text": "and"
+ },
+ {
+ "id": 5436,
+ "start": 3604.67,
+ "end": 3604.99,
+ "text": "in"
+ },
+ {
+ "id": 5437,
+ "start": 3604.99,
+ "end": 3605.53,
+ "text": "watching"
+ },
+ {
+ "id": 5438,
+ "start": 3605.53,
+ "end": 3605.95,
+ "text": "and"
+ },
+ {
+ "id": 5439,
+ "start": 3605.95,
+ "end": 3606.23,
+ "text": "kind"
+ },
+ {
+ "id": 5440,
+ "start": 3606.23,
+ "end": 3606.33,
+ "text": "of"
+ },
+ {
+ "id": 5441,
+ "start": 3606.33,
+ "end": 3606.61,
+ "text": "looking"
+ },
+ {
+ "id": 5442,
+ "start": 3606.61,
+ "end": 3606.85,
+ "text": "out"
+ },
+ {
+ "id": 5443,
+ "start": 3606.85,
+ "end": 3607.19,
+ "text": "and"
+ },
+ {
+ "id": 5444,
+ "start": 3607.19,
+ "end": 3607.45,
+ "text": "making"
+ },
+ {
+ "id": 5445,
+ "start": 3607.45,
+ "end": 3607.61,
+ "text": "sure"
+ },
+ {
+ "id": 5446,
+ "start": 3607.61,
+ "end": 3607.77,
+ "text": "that"
+ },
+ {
+ "id": 5447,
+ "start": 3607.77,
+ "end": 3607.93,
+ "text": "all"
+ },
+ {
+ "id": 5448,
+ "start": 3607.93,
+ "end": 3608.01,
+ "text": "of"
+ },
+ {
+ "id": 5449,
+ "start": 3608.01,
+ "end": 3608.15,
+ "text": "the"
+ },
+ {
+ "id": 5450,
+ "start": 3608.15,
+ "end": 3608.75,
+ "text": "members"
+ },
+ {
+ "id": 5451,
+ "start": 3608.75,
+ "end": 3608.87,
+ "text": "in"
+ },
+ {
+ "id": 5452,
+ "start": 3608.87,
+ "end": 3609.03,
+ "text": "our"
+ },
+ {
+ "id": 5453,
+ "start": 3609.03,
+ "end": 3609.41,
+ "text": "community"
+ },
+ {
+ "id": 5454,
+ "start": 3609.41,
+ "end": 3609.57,
+ "text": "are"
+ },
+ {
+ "id": 5455,
+ "start": 3609.57,
+ "end": 3609.83,
+ "text": "using"
+ },
+ {
+ "id": 5456,
+ "start": 3609.83,
+ "end": 3610.07,
+ "text": "these"
+ },
+ {
+ "id": 5457,
+ "start": 3610.07,
+ "end": 3610.43,
+ "text": "tools"
+ },
+ {
+ "id": 5458,
+ "start": 3610.43,
+ "end": 3610.85,
+ "text": "in"
+ },
+ {
+ "id": 5459,
+ "start": 3610.85,
+ "end": 3610.91,
+ "text": "a"
+ },
+ {
+ "id": 5460,
+ "start": 3610.91,
+ "end": 3611.05,
+ "text": "way"
+ },
+ {
+ "id": 5461,
+ "start": 3611.05,
+ "end": 3611.25,
+ "text": "that's"
+ },
+ {
+ "id": 5462,
+ "start": 3611.25,
+ "end": 3611.41,
+ "text": "going"
+ },
+ {
+ "id": 5463,
+ "start": 3611.41,
+ "end": 3611.47,
+ "text": "to"
+ },
+ {
+ "id": 5464,
+ "start": 3611.47,
+ "end": 3611.55,
+ "text": "be"
+ },
+ {
+ "id": 5465,
+ "start": 3611.55,
+ "end": 3611.69,
+ "text": "good"
+ },
+ {
+ "id": 5466,
+ "start": 3611.69,
+ "end": 3611.81,
+ "text": "and"
+ },
+ {
+ "id": 5467,
+ "start": 3611.81,
+ "end": 3612.17,
+ "text": "healthy."
+ },
+ {
+ "id": 5468,
+ "start": 3612.17,
+ "end": 3612.77,
+ "text": "So"
+ },
+ {
+ "id": 5469,
+ "start": 3612.77,
+ "end": 3613.59,
+ "text": "at"
+ },
+ {
+ "id": 5470,
+ "start": 3613.59,
+ "end": 3613.73,
+ "text": "the"
+ },
+ {
+ "id": 5471,
+ "start": 3613.73,
+ "end": 3613.85,
+ "text": "end"
+ },
+ {
+ "id": 5472,
+ "start": 3613.85,
+ "end": 3613.91,
+ "text": "of"
+ },
+ {
+ "id": 5473,
+ "start": 3613.91,
+ "end": 3614.01,
+ "text": "the"
+ },
+ {
+ "id": 5474,
+ "start": 3614.01,
+ "end": 3614.82,
+ "text": "day,"
+ },
+ {
+ "id": 5475,
+ "start": 3614.82,
+ "end": 3615.6,
+ "text": "this"
+ },
+ {
+ "id": 5476,
+ "start": 3615.6,
+ "end": 3615.72,
+ "text": "is"
+ },
+ {
+ "id": 5477,
+ "start": 3615.72,
+ "end": 3615.88,
+ "text": "going"
+ },
+ {
+ "id": 5478,
+ "start": 3615.88,
+ "end": 3615.96,
+ "text": "to"
+ },
+ {
+ "id": 5479,
+ "start": 3615.96,
+ "end": 3616.02,
+ "text": "be"
+ },
+ {
+ "id": 5480,
+ "start": 3616.02,
+ "end": 3616.24,
+ "text": "something"
+ },
+ {
+ "id": 5481,
+ "start": 3616.24,
+ "end": 3616.4,
+ "text": "where"
+ },
+ {
+ "id": 5482,
+ "start": 3616.4,
+ "end": 3616.6,
+ "text": "people"
+ },
+ {
+ "id": 5483,
+ "start": 3616.6,
+ "end": 3616.78,
+ "text": "will"
+ },
+ {
+ "id": 5484,
+ "start": 3616.78,
+ "end": 3617.04,
+ "text": "measure"
+ },
+ {
+ "id": 5485,
+ "start": 3617.04,
+ "end": 3617.18,
+ "text": "us"
+ },
+ {
+ "id": 5486,
+ "start": 3617.18,
+ "end": 3617.36,
+ "text": "by"
+ },
+ {
+ "id": 5487,
+ "start": 3617.36,
+ "end": 3617.5,
+ "text": "our"
+ },
+ {
+ "id": 5488,
+ "start": 3617.5,
+ "end": 3617.88,
+ "text": "results"
+ },
+ {
+ "id": 5489,
+ "start": 3617.88,
+ "end": 3618.78,
+ "text": "on"
+ },
+ {
+ "id": 5490,
+ "start": 3618.78,
+ "end": 3618.98,
+ "text": "this"
+ },
+ {
+ "id": 5491,
+ "start": 3618.98,
+ "end": 3619.84,
+ "text": "it's"
+ },
+ {
+ "id": 5492,
+ "start": 3619.84,
+ "end": 3619.96,
+ "text": "not"
+ },
+ {
+ "id": 5493,
+ "start": 3619.96,
+ "end": 3620.1,
+ "text": "that"
+ },
+ {
+ "id": 5494,
+ "start": 3620.1,
+ "end": 3620.16,
+ "text": "I"
+ },
+ {
+ "id": 5495,
+ "start": 3620.16,
+ "end": 3620.46,
+ "text": "expect"
+ },
+ {
+ "id": 5496,
+ "start": 3620.46,
+ "end": 3620.6,
+ "text": "that"
+ },
+ {
+ "id": 5497,
+ "start": 3620.6,
+ "end": 3620.92,
+ "text": "anything"
+ },
+ {
+ "id": 5498,
+ "start": 3620.92,
+ "end": 3620.98,
+ "text": "I"
+ },
+ {
+ "id": 5499,
+ "start": 3620.98,
+ "end": 3621.24,
+ "text": "say"
+ },
+ {
+ "id": 5500,
+ "start": 3621.24,
+ "end": 3621.46,
+ "text": "here"
+ },
+ {
+ "id": 5501,
+ "start": 3621.46,
+ "end": 3621.84,
+ "text": "today"
+ },
+ {
+ "id": 5502,
+ "start": 3621.84,
+ "end": 3622.6,
+ "text": "to"
+ },
+ {
+ "id": 5503,
+ "start": 3622.6,
+ "end": 3623.18,
+ "text": "necessarily"
+ },
+ {
+ "id": 5504,
+ "start": 3623.18,
+ "end": 3623.44,
+ "text": "change"
+ },
+ {
+ "id": 5505,
+ "start": 3623.44,
+ "end": 3623.78,
+ "text": "people's"
+ },
+ {
+ "id": 5506,
+ "start": 3623.78,
+ "end": 3624.1,
+ "text": "view."
+ },
+ {
+ "id": 5507,
+ "start": 3624.1,
+ "end": 3624.98,
+ "text": "But"
+ },
+ {
+ "id": 5508,
+ "start": 3624.98,
+ "end": 3625.12,
+ "text": "I'm"
+ },
+ {
+ "id": 5509,
+ "start": 3625.12,
+ "end": 3625.42,
+ "text": "committed"
+ },
+ {
+ "id": 5510,
+ "start": 3625.42,
+ "end": 3625.5,
+ "text": "to"
+ },
+ {
+ "id": 5511,
+ "start": 3625.5,
+ "end": 3625.72,
+ "text": "getting"
+ },
+ {
+ "id": 5512,
+ "start": 3625.72,
+ "end": 3625.86,
+ "text": "this"
+ },
+ {
+ "id": 5513,
+ "start": 3625.86,
+ "end": 3626.31,
+ "text": "right."
+ },
+ {
+ "id": 5514,
+ "start": 3626.31,
+ "end": 3626.45,
+ "text": "And"
+ },
+ {
+ "id": 5515,
+ "start": 3626.45,
+ "end": 3626.55,
+ "text": "I"
+ },
+ {
+ "id": 5516,
+ "start": 3626.55,
+ "end": 3626.87,
+ "text": "believe"
+ },
+ {
+ "id": 5517,
+ "start": 3626.87,
+ "end": 3627.17,
+ "text": "that"
+ },
+ {
+ "id": 5518,
+ "start": 3627.17,
+ "end": 3627.61,
+ "text": "over"
+ },
+ {
+ "id": 5519,
+ "start": 3627.61,
+ "end": 3627.73,
+ "text": "the"
+ },
+ {
+ "id": 5520,
+ "start": 3627.73,
+ "end": 3627.97,
+ "text": "coming"
+ },
+ {
+ "id": 5521,
+ "start": 3627.97,
+ "end": 3628.21,
+ "text": "years,"
+ },
+ {
+ "id": 5522,
+ "start": 3628.21,
+ "end": 3628.47,
+ "text": "once"
+ },
+ {
+ "id": 5523,
+ "start": 3628.47,
+ "end": 3628.63,
+ "text": "we"
+ },
+ {
+ "id": 5524,
+ "start": 3628.63,
+ "end": 3629.23,
+ "text": "fully"
+ },
+ {
+ "id": 5525,
+ "start": 3629.23,
+ "end": 3629.45,
+ "text": "work,"
+ },
+ {
+ "id": 5526,
+ "start": 3629.45,
+ "end": 3629.71,
+ "text": "all"
+ },
+ {
+ "id": 5527,
+ "start": 3629.71,
+ "end": 3629.95,
+ "text": "these"
+ },
+ {
+ "id": 5528,
+ "start": 3629.95,
+ "end": 3630.43,
+ "text": "solutions"
+ },
+ {
+ "id": 5529,
+ "start": 3630.43,
+ "end": 3630.83,
+ "text": "through"
+ },
+ {
+ "id": 5530,
+ "start": 3630.83,
+ "end": 3631.69,
+ "text": "people"
+ },
+ {
+ "id": 5531,
+ "start": 3631.69,
+ "end": 3631.93,
+ "text": "will"
+ },
+ {
+ "id": 5532,
+ "start": 3631.93,
+ "end": 3632.09,
+ "text": "see"
+ },
+ {
+ "id": 5533,
+ "start": 3632.09,
+ "end": 3632.59,
+ "text": "real"
+ },
+ {
+ "id": 5534,
+ "start": 3632.59,
+ "end": 3633.03,
+ "text": "differences"
+ },
+ {
+ "id": 5535,
+ "start": 3633.03,
+ "end": 3634.21,
+ "text": "and"
+ },
+ {
+ "id": 5536,
+ "start": 3634.21,
+ "end": 3634.65,
+ "text": "I'm"
+ },
+ {
+ "id": 5537,
+ "start": 3634.65,
+ "end": 3635.11,
+ "text": "glad"
+ },
+ {
+ "id": 5538,
+ "start": 3635.11,
+ "end": 3635.31,
+ "text": "that"
+ },
+ {
+ "id": 5539,
+ "start": 3635.31,
+ "end": 3635.77,
+ "text": "you"
+ },
+ {
+ "id": 5540,
+ "start": 3635.77,
+ "end": 3635.93,
+ "text": "all"
+ },
+ {
+ "id": 5541,
+ "start": 3635.93,
+ "end": 3636.09,
+ "text": "have"
+ },
+ {
+ "id": 5542,
+ "start": 3636.09,
+ "end": 3636.37,
+ "text": "gotten"
+ },
+ {
+ "id": 5543,
+ "start": 3636.37,
+ "end": 3636.59,
+ "text": "that"
+ },
+ {
+ "id": 5544,
+ "start": 3636.59,
+ "end": 3637.8,
+ "text": "message"
+ },
+ {
+ "id": 5545,
+ "start": 3637.8,
+ "end": 3638.76,
+ "text": "as"
+ },
+ {
+ "id": 5546,
+ "start": 3638.76,
+ "end": 3638.88,
+ "text": "we"
+ },
+ {
+ "id": 5547,
+ "start": 3638.88,
+ "end": 3639.34,
+ "text": "discussed"
+ },
+ {
+ "id": 5548,
+ "start": 3639.34,
+ "end": 3639.44,
+ "text": "in"
+ },
+ {
+ "id": 5549,
+ "start": 3639.44,
+ "end": 3639.62,
+ "text": "my"
+ },
+ {
+ "id": 5550,
+ "start": 3639.62,
+ "end": 3639.96,
+ "text": "office"
+ },
+ {
+ "id": 5551,
+ "start": 3639.96,
+ "end": 3640.98,
+ "text": "yesterday."
+ },
+ {
+ "id": 5552,
+ "start": 3640.98,
+ "end": 3641.74,
+ "text": "The"
+ },
+ {
+ "id": 5553,
+ "start": 3641.74,
+ "end": 3642.06,
+ "text": "line"
+ },
+ {
+ "id": 5554,
+ "start": 3642.06,
+ "end": 3643.04,
+ "text": "between"
+ },
+ {
+ "id": 5555,
+ "start": 3643.04,
+ "end": 3644.02,
+ "text": "legitimate"
+ },
+ {
+ "id": 5556,
+ "start": 3644.02,
+ "end": 3644.46,
+ "text": "political"
+ },
+ {
+ "id": 5557,
+ "start": 3644.46,
+ "end": 3645.08,
+ "text": "discourse"
+ },
+ {
+ "id": 5558,
+ "start": 3645.08,
+ "end": 3645.26,
+ "text": "and"
+ },
+ {
+ "id": 5559,
+ "start": 3645.26,
+ "end": 3645.52,
+ "text": "hate"
+ },
+ {
+ "id": 5560,
+ "start": 3645.52,
+ "end": 3645.88,
+ "text": "speech"
+ },
+ {
+ "id": 5561,
+ "start": 3645.88,
+ "end": 3646.08,
+ "text": "can"
+ },
+ {
+ "id": 5562,
+ "start": 3646.08,
+ "end": 3646.52,
+ "text": "sometimes"
+ },
+ {
+ "id": 5563,
+ "start": 3646.52,
+ "end": 3646.7,
+ "text": "be"
+ },
+ {
+ "id": 5564,
+ "start": 3646.7,
+ "end": 3646.9,
+ "text": "hard"
+ },
+ {
+ "id": 5565,
+ "start": 3646.9,
+ "end": 3647,
+ "text": "to"
+ },
+ {
+ "id": 5566,
+ "start": 3647,
+ "end": 3647.5,
+ "text": "identify"
+ },
+ {
+ "id": 5567,
+ "start": 3647.5,
+ "end": 3647.8,
+ "text": "and"
+ },
+ {
+ "id": 5568,
+ "start": 3647.8,
+ "end": 3648.56,
+ "text": "especially"
+ },
+ {
+ "id": 5569,
+ "start": 3648.56,
+ "end": 3648.68,
+ "text": "when"
+ },
+ {
+ "id": 5570,
+ "start": 3648.68,
+ "end": 3648.78,
+ "text": "your"
+ },
+ {
+ "id": 5571,
+ "start": 3648.78,
+ "end": 3649.08,
+ "text": "relying"
+ },
+ {
+ "id": 5572,
+ "start": 3649.08,
+ "end": 3649.24,
+ "text": "on"
+ },
+ {
+ "id": 5573,
+ "start": 3649.24,
+ "end": 3649.82,
+ "text": "artificial"
+ },
+ {
+ "id": 5574,
+ "start": 3649.82,
+ "end": 3650.32,
+ "text": "intelligence"
+ },
+ {
+ "id": 5575,
+ "start": 3650.32,
+ "end": 3650.44,
+ "text": "and"
+ },
+ {
+ "id": 5576,
+ "start": 3650.44,
+ "end": 3650.64,
+ "text": "other"
+ },
+ {
+ "id": 5577,
+ "start": 3650.64,
+ "end": 3651.28,
+ "text": "technologies"
+ },
+ {
+ "id": 5578,
+ "start": 3651.28,
+ "end": 3651.42,
+ "text": "for"
+ },
+ {
+ "id": 5579,
+ "start": 3651.42,
+ "end": 3651.52,
+ "text": "the"
+ },
+ {
+ "id": 5580,
+ "start": 3651.52,
+ "end": 3651.8,
+ "text": "initial"
+ },
+ {
+ "id": 5581,
+ "start": 3651.8,
+ "end": 3653.1,
+ "text": "discovery,"
+ },
+ {
+ "id": 5582,
+ "start": 3653.1,
+ "end": 3654.06,
+ "text": "can"
+ },
+ {
+ "id": 5583,
+ "start": 3654.06,
+ "end": 3654.2,
+ "text": "you"
+ },
+ {
+ "id": 5584,
+ "start": 3654.2,
+ "end": 3654.74,
+ "text": "discuss"
+ },
+ {
+ "id": 5585,
+ "start": 3654.74,
+ "end": 3655,
+ "text": "what"
+ },
+ {
+ "id": 5586,
+ "start": 3655,
+ "end": 3655.48,
+ "text": "steps"
+ },
+ {
+ "id": 5587,
+ "start": 3655.48,
+ "end": 3656.28,
+ "text": "that"
+ },
+ {
+ "id": 5588,
+ "start": 3656.28,
+ "end": 3656.78,
+ "text": "Facebook"
+ },
+ {
+ "id": 5589,
+ "start": 3656.78,
+ "end": 3657.2,
+ "text": "currently"
+ },
+ {
+ "id": 5590,
+ "start": 3657.2,
+ "end": 3657.52,
+ "text": "takes"
+ },
+ {
+ "id": 5591,
+ "start": 3657.52,
+ "end": 3657.72,
+ "text": "when"
+ },
+ {
+ "id": 5592,
+ "start": 3657.72,
+ "end": 3658.06,
+ "text": "making"
+ },
+ {
+ "id": 5593,
+ "start": 3658.06,
+ "end": 3658.26,
+ "text": "these"
+ },
+ {
+ "id": 5594,
+ "start": 3658.26,
+ "end": 3659.02,
+ "text": "evaluations?"
+ },
+ {
+ "id": 5595,
+ "start": 3659.02,
+ "end": 3659.2,
+ "text": "The"
+ },
+ {
+ "id": 5596,
+ "start": 3659.2,
+ "end": 3659.56,
+ "text": "challenges"
+ },
+ {
+ "id": 5597,
+ "start": 3659.56,
+ "end": 3659.76,
+ "text": "that"
+ },
+ {
+ "id": 5598,
+ "start": 3659.76,
+ "end": 3659.92,
+ "text": "you"
+ },
+ {
+ "id": 5599,
+ "start": 3659.92,
+ "end": 3660.14,
+ "text": "face"
+ },
+ {
+ "id": 5600,
+ "start": 3660.14,
+ "end": 3660.28,
+ "text": "in"
+ },
+ {
+ "id": 5601,
+ "start": 3660.28,
+ "end": 3660.44,
+ "text": "any"
+ },
+ {
+ "id": 5602,
+ "start": 3660.44,
+ "end": 3661.02,
+ "text": "examples"
+ },
+ {
+ "id": 5603,
+ "start": 3661.02,
+ "end": 3661.72,
+ "text": "of"
+ },
+ {
+ "id": 5604,
+ "start": 3661.72,
+ "end": 3662.14,
+ "text": "where"
+ },
+ {
+ "id": 5605,
+ "start": 3662.14,
+ "end": 3662.44,
+ "text": "you"
+ },
+ {
+ "id": 5606,
+ "start": 3662.44,
+ "end": 3662.68,
+ "text": "may"
+ },
+ {
+ "id": 5607,
+ "start": 3662.68,
+ "end": 3662.92,
+ "text": "draw"
+ },
+ {
+ "id": 5608,
+ "start": 3662.92,
+ "end": 3663.08,
+ "text": "the"
+ },
+ {
+ "id": 5609,
+ "start": 3663.08,
+ "end": 3663.3,
+ "text": "line"
+ },
+ {
+ "id": 5610,
+ "start": 3663.3,
+ "end": 3663.6,
+ "text": "between"
+ },
+ {
+ "id": 5611,
+ "start": 3663.6,
+ "end": 3663.82,
+ "text": "what"
+ },
+ {
+ "id": 5612,
+ "start": 3663.82,
+ "end": 3664.06,
+ "text": "is?"
+ },
+ {
+ "id": 5613,
+ "start": 3664.06,
+ "end": 3664.2,
+ "text": "And"
+ },
+ {
+ "id": 5614,
+ "start": 3664.2,
+ "end": 3664.36,
+ "text": "what"
+ },
+ {
+ "id": 5615,
+ "start": 3664.36,
+ "end": 3664.56,
+ "text": "is"
+ },
+ {
+ "id": 5616,
+ "start": 3664.56,
+ "end": 3664.86,
+ "text": "not"
+ },
+ {
+ "id": 5617,
+ "start": 3664.86,
+ "end": 3665.22,
+ "text": "hate"
+ },
+ {
+ "id": 5618,
+ "start": 3665.22,
+ "end": 3666.58,
+ "text": "speech?"
+ },
+ {
+ "id": 5619,
+ "start": 3666.58,
+ "end": 3667.86,
+ "text": "Yes,"
+ },
+ {
+ "id": 5620,
+ "start": 3667.86,
+ "end": 3668.16,
+ "text": "Mr"
+ },
+ {
+ "id": 5621,
+ "start": 3668.16,
+ "end": 3668.46,
+ "text": "Chairman"
+ },
+ {
+ "id": 5622,
+ "start": 3668.46,
+ "end": 3668.82,
+ "text": "I'll"
+ },
+ {
+ "id": 5623,
+ "start": 3668.82,
+ "end": 3669.02,
+ "text": "speak"
+ },
+ {
+ "id": 5624,
+ "start": 3669.02,
+ "end": 3669.14,
+ "text": "to"
+ },
+ {
+ "id": 5625,
+ "start": 3669.14,
+ "end": 3669.42,
+ "text": "hate"
+ },
+ {
+ "id": 5626,
+ "start": 3669.42,
+ "end": 3669.8,
+ "text": "speech"
+ },
+ {
+ "id": 5627,
+ "start": 3669.8,
+ "end": 3670.06,
+ "text": "and"
+ },
+ {
+ "id": 5628,
+ "start": 3670.06,
+ "end": 3670.46,
+ "text": "then"
+ },
+ {
+ "id": 5629,
+ "start": 3670.46,
+ "end": 3671.38,
+ "text": "I'll"
+ },
+ {
+ "id": 5630,
+ "start": 3671.38,
+ "end": 3671.56,
+ "text": "talk"
+ },
+ {
+ "id": 5631,
+ "start": 3671.56,
+ "end": 3672.14,
+ "text": "about"
+ },
+ {
+ "id": 5632,
+ "start": 3672.14,
+ "end": 3672.76,
+ "text": "enforcing"
+ },
+ {
+ "id": 5633,
+ "start": 3672.76,
+ "end": 3672.88,
+ "text": "our"
+ },
+ {
+ "id": 5634,
+ "start": 3672.88,
+ "end": 3673.18,
+ "text": "content"
+ },
+ {
+ "id": 5635,
+ "start": 3673.18,
+ "end": 3673.64,
+ "text": "policies"
+ },
+ {
+ "id": 5636,
+ "start": 3673.64,
+ "end": 3673.82,
+ "text": "more"
+ },
+ {
+ "id": 5637,
+ "start": 3673.82,
+ "end": 3675.98,
+ "text": "broadly,"
+ },
+ {
+ "id": 5638,
+ "start": 3675.98,
+ "end": 3677.02,
+ "text": "actually,"
+ },
+ {
+ "id": 5639,
+ "start": 3677.02,
+ "end": 3677.24,
+ "text": "maybe"
+ },
+ {
+ "id": 5640,
+ "start": 3677.24,
+ "end": 3677.92,
+ "text": "if"
+ },
+ {
+ "id": 5641,
+ "start": 3677.92,
+ "end": 3678.1,
+ "text": "you're"
+ },
+ {
+ "id": 5642,
+ "start": 3678.1,
+ "end": 3678.28,
+ "text": "okay,"
+ },
+ {
+ "id": 5643,
+ "start": 3678.28,
+ "end": 3678.42,
+ "text": "with"
+ },
+ {
+ "id": 5644,
+ "start": 3678.42,
+ "end": 3678.52,
+ "text": "it"
+ },
+ {
+ "id": 5645,
+ "start": 3678.52,
+ "end": 3678.7,
+ "text": "I'll"
+ },
+ {
+ "id": 5646,
+ "start": 3678.7,
+ "end": 3678.78,
+ "text": "go"
+ },
+ {
+ "id": 5647,
+ "start": 3678.78,
+ "end": 3678.88,
+ "text": "in"
+ },
+ {
+ "id": 5648,
+ "start": 3678.88,
+ "end": 3678.98,
+ "text": "the"
+ },
+ {
+ "id": 5649,
+ "start": 3678.98,
+ "end": 3679.16,
+ "text": "other"
+ },
+ {
+ "id": 5650,
+ "start": 3679.16,
+ "end": 3679.4,
+ "text": "order."
+ },
+ {
+ "id": 5651,
+ "start": 3679.4,
+ "end": 3680.56,
+ "text": "So"
+ },
+ {
+ "id": 5652,
+ "start": 3680.56,
+ "end": 3681.52,
+ "text": "from"
+ },
+ {
+ "id": 5653,
+ "start": 3681.52,
+ "end": 3681.66,
+ "text": "the"
+ },
+ {
+ "id": 5654,
+ "start": 3681.66,
+ "end": 3681.98,
+ "text": "beginning"
+ },
+ {
+ "id": 5655,
+ "start": 3681.98,
+ "end": 3682.06,
+ "text": "of"
+ },
+ {
+ "id": 5656,
+ "start": 3682.06,
+ "end": 3682.2,
+ "text": "the"
+ },
+ {
+ "id": 5657,
+ "start": 3682.2,
+ "end": 3682.5,
+ "text": "company"
+ },
+ {
+ "id": 5658,
+ "start": 3682.5,
+ "end": 3682.62,
+ "text": "and"
+ },
+ {
+ "id": 5659,
+ "start": 3682.62,
+ "end": 3683.32,
+ "text": "2,004"
+ },
+ {
+ "id": 5660,
+ "start": 3683.32,
+ "end": 3683.5,
+ "text": "I"
+ },
+ {
+ "id": 5661,
+ "start": 3683.5,
+ "end": 3683.86,
+ "text": "started"
+ },
+ {
+ "id": 5662,
+ "start": 3683.86,
+ "end": 3683.96,
+ "text": "it"
+ },
+ {
+ "id": 5663,
+ "start": 3683.96,
+ "end": 3684.08,
+ "text": "in"
+ },
+ {
+ "id": 5664,
+ "start": 3684.08,
+ "end": 3684.2,
+ "text": "my"
+ },
+ {
+ "id": 5665,
+ "start": 3684.2,
+ "end": 3684.42,
+ "text": "dorm"
+ },
+ {
+ "id": 5666,
+ "start": 3684.42,
+ "end": 3684.68,
+ "text": "room."
+ },
+ {
+ "id": 5667,
+ "start": 3684.68,
+ "end": 3685.74,
+ "text": "It"
+ },
+ {
+ "id": 5668,
+ "start": 3685.74,
+ "end": 3685.88,
+ "text": "was"
+ },
+ {
+ "id": 5669,
+ "start": 3685.88,
+ "end": 3685.98,
+ "text": "me"
+ },
+ {
+ "id": 5670,
+ "start": 3685.98,
+ "end": 3686.08,
+ "text": "and"
+ },
+ {
+ "id": 5671,
+ "start": 3686.08,
+ "end": 3686.2,
+ "text": "my"
+ },
+ {
+ "id": 5672,
+ "start": 3686.2,
+ "end": 3686.58,
+ "text": "roommate."
+ },
+ {
+ "id": 5673,
+ "start": 3686.58,
+ "end": 3687.3,
+ "text": "We"
+ },
+ {
+ "id": 5674,
+ "start": 3687.3,
+ "end": 3687.52,
+ "text": "didn't"
+ },
+ {
+ "id": 5675,
+ "start": 3687.52,
+ "end": 3687.66,
+ "text": "have"
+ },
+ {
+ "id": 5676,
+ "start": 3687.66,
+ "end": 3687.96,
+ "text": "AI"
+ },
+ {
+ "id": 5677,
+ "start": 3687.96,
+ "end": 3688.52,
+ "text": "technology."
+ },
+ {
+ "id": 5678,
+ "start": 3688.52,
+ "end": 3688.68,
+ "text": "That"
+ },
+ {
+ "id": 5679,
+ "start": 3688.68,
+ "end": 3688.88,
+ "text": "could"
+ },
+ {
+ "id": 5680,
+ "start": 3688.88,
+ "end": 3689.08,
+ "text": "look"
+ },
+ {
+ "id": 5681,
+ "start": 3689.08,
+ "end": 3689.16,
+ "text": "at"
+ },
+ {
+ "id": 5682,
+ "start": 3689.16,
+ "end": 3689.26,
+ "text": "the"
+ },
+ {
+ "id": 5683,
+ "start": 3689.26,
+ "end": 3689.6,
+ "text": "content"
+ },
+ {
+ "id": 5684,
+ "start": 3689.6,
+ "end": 3689.74,
+ "text": "that"
+ },
+ {
+ "id": 5685,
+ "start": 3689.74,
+ "end": 3689.94,
+ "text": "people"
+ },
+ {
+ "id": 5686,
+ "start": 3689.94,
+ "end": 3690.14,
+ "text": "were"
+ },
+ {
+ "id": 5687,
+ "start": 3690.14,
+ "end": 3691.6,
+ "text": "sharing."
+ },
+ {
+ "id": 5688,
+ "start": 3691.6,
+ "end": 3692.5,
+ "text": "So"
+ },
+ {
+ "id": 5689,
+ "start": 3692.5,
+ "end": 3693.14,
+ "text": "we"
+ },
+ {
+ "id": 5690,
+ "start": 3693.14,
+ "end": 3693.86,
+ "text": "basically"
+ },
+ {
+ "id": 5691,
+ "start": 3693.86,
+ "end": 3694.12,
+ "text": "had"
+ },
+ {
+ "id": 5692,
+ "start": 3694.12,
+ "end": 3695.58,
+ "text": "to"
+ },
+ {
+ "id": 5693,
+ "start": 3695.58,
+ "end": 3696.56,
+ "text": "enforce"
+ },
+ {
+ "id": 5694,
+ "start": 3696.56,
+ "end": 3696.74,
+ "text": "our"
+ },
+ {
+ "id": 5695,
+ "start": 3696.74,
+ "end": 3697.1,
+ "text": "content"
+ },
+ {
+ "id": 5696,
+ "start": 3697.1,
+ "end": 3697.52,
+ "text": "policies."
+ },
+ {
+ "id": 5697,
+ "start": 3697.52,
+ "end": 3698.08,
+ "text": "Reactively"
+ },
+ {
+ "id": 5698,
+ "start": 3698.08,
+ "end": 3698.38,
+ "text": "people"
+ },
+ {
+ "id": 5699,
+ "start": 3698.38,
+ "end": 3698.56,
+ "text": "could"
+ },
+ {
+ "id": 5700,
+ "start": 3698.56,
+ "end": 3698.76,
+ "text": "share"
+ },
+ {
+ "id": 5701,
+ "start": 3698.76,
+ "end": 3698.88,
+ "text": "what"
+ },
+ {
+ "id": 5702,
+ "start": 3698.88,
+ "end": 3699.02,
+ "text": "they"
+ },
+ {
+ "id": 5703,
+ "start": 3699.02,
+ "end": 3699.32,
+ "text": "wanted."
+ },
+ {
+ "id": 5704,
+ "start": 3699.32,
+ "end": 3700.54,
+ "text": "And"
+ },
+ {
+ "id": 5705,
+ "start": 3700.54,
+ "end": 3701.32,
+ "text": "and"
+ },
+ {
+ "id": 5706,
+ "start": 3701.32,
+ "end": 3701.5,
+ "text": "then"
+ },
+ {
+ "id": 5707,
+ "start": 3701.5,
+ "end": 3701.82,
+ "text": "if"
+ },
+ {
+ "id": 5708,
+ "start": 3701.82,
+ "end": 3702.1,
+ "text": "someone"
+ },
+ {
+ "id": 5709,
+ "start": 3702.1,
+ "end": 3702.18,
+ "text": "in"
+ },
+ {
+ "id": 5710,
+ "start": 3702.18,
+ "end": 3702.28,
+ "text": "the"
+ },
+ {
+ "id": 5711,
+ "start": 3702.28,
+ "end": 3702.64,
+ "text": "community"
+ },
+ {
+ "id": 5712,
+ "start": 3702.64,
+ "end": 3702.9,
+ "text": "found"
+ },
+ {
+ "id": 5713,
+ "start": 3702.9,
+ "end": 3703.02,
+ "text": "it"
+ },
+ {
+ "id": 5714,
+ "start": 3703.02,
+ "end": 3703.14,
+ "text": "to"
+ },
+ {
+ "id": 5715,
+ "start": 3703.14,
+ "end": 3703.28,
+ "text": "be"
+ },
+ {
+ "id": 5716,
+ "start": 3703.28,
+ "end": 3704.34,
+ "text": "offensive"
+ },
+ {
+ "id": 5717,
+ "start": 3704.34,
+ "end": 3704.54,
+ "text": "or"
+ },
+ {
+ "id": 5718,
+ "start": 3704.54,
+ "end": 3704.82,
+ "text": "against"
+ },
+ {
+ "id": 5719,
+ "start": 3704.82,
+ "end": 3704.98,
+ "text": "our"
+ },
+ {
+ "id": 5720,
+ "start": 3704.98,
+ "end": 3705.4,
+ "text": "policies."
+ },
+ {
+ "id": 5721,
+ "start": 3705.4,
+ "end": 3705.64,
+ "text": "They'd"
+ },
+ {
+ "id": 5722,
+ "start": 3705.64,
+ "end": 3705.86,
+ "text": "flag"
+ },
+ {
+ "id": 5723,
+ "start": 3705.86,
+ "end": 3705.96,
+ "text": "it"
+ },
+ {
+ "id": 5724,
+ "start": 3705.96,
+ "end": 3706.08,
+ "text": "for"
+ },
+ {
+ "id": 5725,
+ "start": 3706.08,
+ "end": 3706.16,
+ "text": "us"
+ },
+ {
+ "id": 5726,
+ "start": 3706.16,
+ "end": 3706.32,
+ "text": "and"
+ },
+ {
+ "id": 5727,
+ "start": 3706.32,
+ "end": 3706.48,
+ "text": "we'd"
+ },
+ {
+ "id": 5728,
+ "start": 3706.48,
+ "end": 3706.7,
+ "text": "look"
+ },
+ {
+ "id": 5729,
+ "start": 3706.7,
+ "end": 3706.78,
+ "text": "at"
+ },
+ {
+ "id": 5730,
+ "start": 3706.78,
+ "end": 3706.88,
+ "text": "it"
+ },
+ {
+ "id": 5731,
+ "start": 3706.88,
+ "end": 3707.46,
+ "text": "reactively"
+ },
+ {
+ "id": 5732,
+ "start": 3707.46,
+ "end": 3708.52,
+ "text": "now"
+ },
+ {
+ "id": 5733,
+ "start": 3708.52,
+ "end": 3709.34,
+ "text": "increasingly."
+ },
+ {
+ "id": 5734,
+ "start": 3709.34,
+ "end": 3709.82,
+ "text": "We"
+ },
+ {
+ "id": 5735,
+ "start": 3709.82,
+ "end": 3709.94,
+ "text": "are"
+ },
+ {
+ "id": 5736,
+ "start": 3709.94,
+ "end": 3710.4,
+ "text": "developing"
+ },
+ {
+ "id": 5737,
+ "start": 3710.4,
+ "end": 3710.82,
+ "text": "AI"
+ },
+ {
+ "id": 5738,
+ "start": 3710.82,
+ "end": 3711.2,
+ "text": "tools"
+ },
+ {
+ "id": 5739,
+ "start": 3711.2,
+ "end": 3711.94,
+ "text": "that"
+ },
+ {
+ "id": 5740,
+ "start": 3711.94,
+ "end": 3712.28,
+ "text": "can"
+ },
+ {
+ "id": 5741,
+ "start": 3712.28,
+ "end": 3713,
+ "text": "identify"
+ },
+ {
+ "id": 5742,
+ "start": 3713,
+ "end": 3713.4,
+ "text": "certain"
+ },
+ {
+ "id": 5743,
+ "start": 3713.4,
+ "end": 3714.02,
+ "text": "classes"
+ },
+ {
+ "id": 5744,
+ "start": 3714.02,
+ "end": 3714.22,
+ "text": "of"
+ },
+ {
+ "id": 5745,
+ "start": 3714.22,
+ "end": 3714.5,
+ "text": "bad"
+ },
+ {
+ "id": 5746,
+ "start": 3714.5,
+ "end": 3715.08,
+ "text": "activity"
+ },
+ {
+ "id": 5747,
+ "start": 3715.08,
+ "end": 3716.34,
+ "text": "proactively"
+ },
+ {
+ "id": 5748,
+ "start": 3716.34,
+ "end": 3716.5,
+ "text": "and"
+ },
+ {
+ "id": 5749,
+ "start": 3716.5,
+ "end": 3716.76,
+ "text": "flag"
+ },
+ {
+ "id": 5750,
+ "start": 3716.76,
+ "end": 3716.86,
+ "text": "it"
+ },
+ {
+ "id": 5751,
+ "start": 3716.86,
+ "end": 3717,
+ "text": "for"
+ },
+ {
+ "id": 5752,
+ "start": 3717,
+ "end": 3717.12,
+ "text": "our"
+ },
+ {
+ "id": 5753,
+ "start": 3717.12,
+ "end": 3717.36,
+ "text": "team"
+ },
+ {
+ "id": 5754,
+ "start": 3717.36,
+ "end": 3717.54,
+ "text": "at"
+ },
+ {
+ "id": 5755,
+ "start": 3717.54,
+ "end": 3717.96,
+ "text": "Facebook"
+ },
+ {
+ "id": 5756,
+ "start": 3717.96,
+ "end": 3718.56,
+ "text": "by"
+ },
+ {
+ "id": 5757,
+ "start": 3718.56,
+ "end": 3718.7,
+ "text": "the"
+ },
+ {
+ "id": 5758,
+ "start": 3718.7,
+ "end": 3718.8,
+ "text": "end"
+ },
+ {
+ "id": 5759,
+ "start": 3718.8,
+ "end": 3718.88,
+ "text": "of"
+ },
+ {
+ "id": 5760,
+ "start": 3718.88,
+ "end": 3718.98,
+ "text": "this"
+ },
+ {
+ "id": 5761,
+ "start": 3718.98,
+ "end": 3719.1,
+ "text": "year."
+ },
+ {
+ "id": 5762,
+ "start": 3719.1,
+ "end": 3719.22,
+ "text": "By"
+ },
+ {
+ "id": 5763,
+ "start": 3719.22,
+ "end": 3719.32,
+ "text": "the"
+ },
+ {
+ "id": 5764,
+ "start": 3719.32,
+ "end": 3719.4,
+ "text": "way"
+ },
+ {
+ "id": 5765,
+ "start": 3719.4,
+ "end": 3719.56,
+ "text": "we're"
+ },
+ {
+ "id": 5766,
+ "start": 3719.56,
+ "end": 3719.7,
+ "text": "going"
+ },
+ {
+ "id": 5767,
+ "start": 3719.7,
+ "end": 3719.76,
+ "text": "to"
+ },
+ {
+ "id": 5768,
+ "start": 3719.76,
+ "end": 3719.94,
+ "text": "have"
+ },
+ {
+ "id": 5769,
+ "start": 3719.94,
+ "end": 3720.64,
+ "text": "more"
+ },
+ {
+ "id": 5770,
+ "start": 3720.64,
+ "end": 3720.78,
+ "text": "than"
+ },
+ {
+ "id": 5771,
+ "start": 3720.78,
+ "end": 3721.54,
+ "text": "20,000"
+ },
+ {
+ "id": 5772,
+ "start": 3721.54,
+ "end": 3721.8,
+ "text": "people"
+ },
+ {
+ "id": 5773,
+ "start": 3721.8,
+ "end": 3722.16,
+ "text": "working"
+ },
+ {
+ "id": 5774,
+ "start": 3722.16,
+ "end": 3722.28,
+ "text": "on"
+ },
+ {
+ "id": 5775,
+ "start": 3722.28,
+ "end": 3722.88,
+ "text": "security"
+ },
+ {
+ "id": 5776,
+ "start": 3722.88,
+ "end": 3723.1,
+ "text": "and"
+ },
+ {
+ "id": 5777,
+ "start": 3723.1,
+ "end": 3723.54,
+ "text": "content"
+ },
+ {
+ "id": 5778,
+ "start": 3723.54,
+ "end": 3723.92,
+ "text": "review"
+ },
+ {
+ "id": 5779,
+ "start": 3723.92,
+ "end": 3724.88,
+ "text": "working"
+ },
+ {
+ "id": 5780,
+ "start": 3724.88,
+ "end": 3725.2,
+ "text": "across"
+ },
+ {
+ "id": 5781,
+ "start": 3725.2,
+ "end": 3725.34,
+ "text": "all"
+ },
+ {
+ "id": 5782,
+ "start": 3725.34,
+ "end": 3725.52,
+ "text": "these"
+ },
+ {
+ "id": 5783,
+ "start": 3725.52,
+ "end": 3725.68,
+ "text": "things."
+ },
+ {
+ "id": 5784,
+ "start": 3725.68,
+ "end": 3725.82,
+ "text": "So"
+ },
+ {
+ "id": 5785,
+ "start": 3725.82,
+ "end": 3726.26,
+ "text": "when"
+ },
+ {
+ "id": 5786,
+ "start": 3726.26,
+ "end": 3726.6,
+ "text": "content"
+ },
+ {
+ "id": 5787,
+ "start": 3726.6,
+ "end": 3726.8,
+ "text": "gets"
+ },
+ {
+ "id": 5788,
+ "start": 3726.8,
+ "end": 3727.1,
+ "text": "flagged"
+ },
+ {
+ "id": 5789,
+ "start": 3727.1,
+ "end": 3727.34,
+ "text": "us,"
+ },
+ {
+ "id": 5790,
+ "start": 3727.34,
+ "end": 3727.82,
+ "text": "we"
+ },
+ {
+ "id": 5791,
+ "start": 3727.82,
+ "end": 3727.96,
+ "text": "have"
+ },
+ {
+ "id": 5792,
+ "start": 3727.96,
+ "end": 3728.48,
+ "text": "those"
+ },
+ {
+ "id": 5793,
+ "start": 3728.48,
+ "end": 3728.7,
+ "text": "people"
+ },
+ {
+ "id": 5794,
+ "start": 3728.7,
+ "end": 3728.94,
+ "text": "look"
+ },
+ {
+ "id": 5795,
+ "start": 3728.94,
+ "end": 3729.04,
+ "text": "at"
+ },
+ {
+ "id": 5796,
+ "start": 3729.04,
+ "end": 3729.14,
+ "text": "it"
+ },
+ {
+ "id": 5797,
+ "start": 3729.14,
+ "end": 3729.36,
+ "text": "and"
+ },
+ {
+ "id": 5798,
+ "start": 3729.36,
+ "end": 3729.44,
+ "text": "if"
+ },
+ {
+ "id": 5799,
+ "start": 3729.44,
+ "end": 3729.58,
+ "text": "it"
+ },
+ {
+ "id": 5800,
+ "start": 3729.58,
+ "end": 3729.92,
+ "text": "violates"
+ },
+ {
+ "id": 5801,
+ "start": 3729.92,
+ "end": 3730.08,
+ "text": "our"
+ },
+ {
+ "id": 5802,
+ "start": 3730.08,
+ "end": 3730.56,
+ "text": "policies,"
+ },
+ {
+ "id": 5803,
+ "start": 3730.56,
+ "end": 3730.74,
+ "text": "then"
+ },
+ {
+ "id": 5804,
+ "start": 3730.74,
+ "end": 3730.9,
+ "text": "we"
+ },
+ {
+ "id": 5805,
+ "start": 3730.9,
+ "end": 3731.08,
+ "text": "take"
+ },
+ {
+ "id": 5806,
+ "start": 3731.08,
+ "end": 3731.18,
+ "text": "it"
+ },
+ {
+ "id": 5807,
+ "start": 3731.18,
+ "end": 3732.14,
+ "text": "down"
+ },
+ {
+ "id": 5808,
+ "start": 3732.14,
+ "end": 3733.02,
+ "text": "some"
+ },
+ {
+ "id": 5809,
+ "start": 3733.02,
+ "end": 3733.68,
+ "text": "problems"
+ },
+ {
+ "id": 5810,
+ "start": 3733.68,
+ "end": 3733.98,
+ "text": "lend"
+ },
+ {
+ "id": 5811,
+ "start": 3733.98,
+ "end": 3734.5,
+ "text": "themselves"
+ },
+ {
+ "id": 5812,
+ "start": 3734.5,
+ "end": 3734.78,
+ "text": "more"
+ },
+ {
+ "id": 5813,
+ "start": 3734.78,
+ "end": 3735.16,
+ "text": "easily"
+ },
+ {
+ "id": 5814,
+ "start": 3735.16,
+ "end": 3735.38,
+ "text": "to"
+ },
+ {
+ "id": 5815,
+ "start": 3735.38,
+ "end": 3735.9,
+ "text": "AI"
+ },
+ {
+ "id": 5816,
+ "start": 3735.9,
+ "end": 3736.5,
+ "text": "solutions"
+ },
+ {
+ "id": 5817,
+ "start": 3736.5,
+ "end": 3736.66,
+ "text": "than"
+ },
+ {
+ "id": 5818,
+ "start": 3736.66,
+ "end": 3736.92,
+ "text": "others."
+ },
+ {
+ "id": 5819,
+ "start": 3736.92,
+ "end": 3737.5,
+ "text": "So"
+ },
+ {
+ "id": 5820,
+ "start": 3737.5,
+ "end": 3738.16,
+ "text": "hate"
+ },
+ {
+ "id": 5821,
+ "start": 3738.16,
+ "end": 3738.48,
+ "text": "speech"
+ },
+ {
+ "id": 5822,
+ "start": 3738.48,
+ "end": 3739.16,
+ "text": "is"
+ },
+ {
+ "id": 5823,
+ "start": 3739.16,
+ "end": 3739.9,
+ "text": "one"
+ },
+ {
+ "id": 5824,
+ "start": 3739.9,
+ "end": 3739.98,
+ "text": "of"
+ },
+ {
+ "id": 5825,
+ "start": 3739.98,
+ "end": 3740.1,
+ "text": "the"
+ },
+ {
+ "id": 5826,
+ "start": 3740.1,
+ "end": 3740.46,
+ "text": "hardest"
+ },
+ {
+ "id": 5827,
+ "start": 3740.46,
+ "end": 3741.4,
+ "text": "because"
+ },
+ {
+ "id": 5828,
+ "start": 3741.4,
+ "end": 3742.08,
+ "text": "determining"
+ },
+ {
+ "id": 5829,
+ "start": 3742.08,
+ "end": 3742.18,
+ "text": "if"
+ },
+ {
+ "id": 5830,
+ "start": 3742.18,
+ "end": 3742.46,
+ "text": "something"
+ },
+ {
+ "id": 5831,
+ "start": 3742.46,
+ "end": 3742.58,
+ "text": "as"
+ },
+ {
+ "id": 5832,
+ "start": 3742.58,
+ "end": 3742.82,
+ "text": "hate"
+ },
+ {
+ "id": 5833,
+ "start": 3742.82,
+ "end": 3743.12,
+ "text": "speech"
+ },
+ {
+ "id": 5834,
+ "start": 3743.12,
+ "end": 3743.68,
+ "text": "is"
+ },
+ {
+ "id": 5835,
+ "start": 3743.68,
+ "end": 3744.02,
+ "text": "very"
+ },
+ {
+ "id": 5836,
+ "start": 3744.02,
+ "end": 3744.74,
+ "text": "linguistically"
+ },
+ {
+ "id": 5837,
+ "start": 3744.74,
+ "end": 3745.18,
+ "text": "nuanced,"
+ },
+ {
+ "id": 5838,
+ "start": 3745.18,
+ "end": 3746.58,
+ "text": "right,"
+ },
+ {
+ "id": 5839,
+ "start": 3746.58,
+ "end": 3746.7,
+ "text": "you"
+ },
+ {
+ "id": 5840,
+ "start": 3746.7,
+ "end": 3746.88,
+ "text": "need"
+ },
+ {
+ "id": 5841,
+ "start": 3746.88,
+ "end": 3747.04,
+ "text": "to"
+ },
+ {
+ "id": 5842,
+ "start": 3747.04,
+ "end": 3747.98,
+ "text": "understand,"
+ },
+ {
+ "id": 5843,
+ "start": 3747.98,
+ "end": 3748.68,
+ "text": "you"
+ },
+ {
+ "id": 5844,
+ "start": 3748.68,
+ "end": 3748.82,
+ "text": "know,"
+ },
+ {
+ "id": 5845,
+ "start": 3748.82,
+ "end": 3748.94,
+ "text": "what"
+ },
+ {
+ "id": 5846,
+ "start": 3748.94,
+ "end": 3749.06,
+ "text": "is"
+ },
+ {
+ "id": 5847,
+ "start": 3749.06,
+ "end": 3749.16,
+ "text": "a"
+ },
+ {
+ "id": 5848,
+ "start": 3749.16,
+ "end": 3749.72,
+ "text": "slur?"
+ },
+ {
+ "id": 5849,
+ "start": 3749.72,
+ "end": 3749.94,
+ "text": "And"
+ },
+ {
+ "id": 5850,
+ "start": 3749.94,
+ "end": 3751.5,
+ "text": "what"
+ },
+ {
+ "id": 5851,
+ "start": 3751.5,
+ "end": 3752.46,
+ "text": "whether"
+ },
+ {
+ "id": 5852,
+ "start": 3752.46,
+ "end": 3752.78,
+ "text": "something"
+ },
+ {
+ "id": 5853,
+ "start": 3752.78,
+ "end": 3752.88,
+ "text": "is"
+ },
+ {
+ "id": 5854,
+ "start": 3752.88,
+ "end": 3753.26,
+ "text": "hateful?"
+ },
+ {
+ "id": 5855,
+ "start": 3753.26,
+ "end": 3753.86,
+ "text": "Not"
+ },
+ {
+ "id": 5856,
+ "start": 3753.86,
+ "end": 3754,
+ "text": "just"
+ },
+ {
+ "id": 5857,
+ "start": 3754,
+ "end": 3754.12,
+ "text": "in"
+ },
+ {
+ "id": 5858,
+ "start": 3754.12,
+ "end": 3754.42,
+ "text": "English,"
+ },
+ {
+ "id": 5859,
+ "start": 3754.42,
+ "end": 3754.58,
+ "text": "but"
+ },
+ {
+ "id": 5860,
+ "start": 3754.58,
+ "end": 3754.7,
+ "text": "the"
+ },
+ {
+ "id": 5861,
+ "start": 3754.7,
+ "end": 3755.02,
+ "text": "majority"
+ },
+ {
+ "id": 5862,
+ "start": 3755.02,
+ "end": 3755.14,
+ "text": "of"
+ },
+ {
+ "id": 5863,
+ "start": 3755.14,
+ "end": 3755.34,
+ "text": "people"
+ },
+ {
+ "id": 5864,
+ "start": 3755.34,
+ "end": 3755.48,
+ "text": "on"
+ },
+ {
+ "id": 5865,
+ "start": 3755.48,
+ "end": 3755.92,
+ "text": "Facebook"
+ },
+ {
+ "id": 5866,
+ "start": 3755.92,
+ "end": 3756.12,
+ "text": "use"
+ },
+ {
+ "id": 5867,
+ "start": 3756.12,
+ "end": 3756.24,
+ "text": "it"
+ },
+ {
+ "id": 5868,
+ "start": 3756.24,
+ "end": 3756.38,
+ "text": "in"
+ },
+ {
+ "id": 5869,
+ "start": 3756.38,
+ "end": 3756.94,
+ "text": "languages"
+ },
+ {
+ "id": 5870,
+ "start": 3756.94,
+ "end": 3757.1,
+ "text": "that"
+ },
+ {
+ "id": 5871,
+ "start": 3757.1,
+ "end": 3757.22,
+ "text": "are"
+ },
+ {
+ "id": 5872,
+ "start": 3757.22,
+ "end": 3757.5,
+ "text": "different"
+ },
+ {
+ "id": 5873,
+ "start": 3757.5,
+ "end": 3757.84,
+ "text": "across"
+ },
+ {
+ "id": 5874,
+ "start": 3757.84,
+ "end": 3757.98,
+ "text": "the"
+ },
+ {
+ "id": 5875,
+ "start": 3757.98,
+ "end": 3759.02,
+ "text": "world"
+ },
+ {
+ "id": 5876,
+ "start": 3759.02,
+ "end": 3759.74,
+ "text": "can"
+ },
+ {
+ "id": 5877,
+ "start": 3759.74,
+ "end": 3759.98,
+ "text": "trust"
+ },
+ {
+ "id": 5878,
+ "start": 3759.98,
+ "end": 3760.26,
+ "text": "that."
+ },
+ {
+ "id": 5879,
+ "start": 3760.26,
+ "end": 3760.44,
+ "text": "For"
+ },
+ {
+ "id": 5880,
+ "start": 3760.44,
+ "end": 3760.88,
+ "text": "example,"
+ },
+ {
+ "id": 5881,
+ "start": 3760.88,
+ "end": 3761.32,
+ "text": "with"
+ },
+ {
+ "id": 5882,
+ "start": 3761.32,
+ "end": 3761.72,
+ "text": "an"
+ },
+ {
+ "id": 5883,
+ "start": 3761.72,
+ "end": 3761.98,
+ "text": "area"
+ },
+ {
+ "id": 5884,
+ "start": 3761.98,
+ "end": 3762.5,
+ "text": "like"
+ },
+ {
+ "id": 5885,
+ "start": 3762.5,
+ "end": 3763.06,
+ "text": "finding"
+ },
+ {
+ "id": 5886,
+ "start": 3763.06,
+ "end": 3763.42,
+ "text": "terrorist"
+ },
+ {
+ "id": 5887,
+ "start": 3763.42,
+ "end": 3764.1,
+ "text": "propaganda"
+ },
+ {
+ "id": 5888,
+ "start": 3764.1,
+ "end": 3764.64,
+ "text": "which"
+ },
+ {
+ "id": 5889,
+ "start": 3764.64,
+ "end": 3764.86,
+ "text": "we've"
+ },
+ {
+ "id": 5890,
+ "start": 3764.86,
+ "end": 3765.18,
+ "text": "actually"
+ },
+ {
+ "id": 5891,
+ "start": 3765.18,
+ "end": 3765.46,
+ "text": "been"
+ },
+ {
+ "id": 5892,
+ "start": 3765.46,
+ "end": 3765.94,
+ "text": "very"
+ },
+ {
+ "id": 5893,
+ "start": 3765.94,
+ "end": 3766.44,
+ "text": "successful"
+ },
+ {
+ "id": 5894,
+ "start": 3766.44,
+ "end": 3766.56,
+ "text": "at"
+ },
+ {
+ "id": 5895,
+ "start": 3766.56,
+ "end": 3766.92,
+ "text": "deploying."
+ },
+ {
+ "id": 5896,
+ "start": 3766.92,
+ "end": 3767.22,
+ "text": "AI,"
+ },
+ {
+ "id": 5897,
+ "start": 3767.22,
+ "end": 3767.48,
+ "text": "tools"
+ },
+ {
+ "id": 5898,
+ "start": 3767.48,
+ "end": 3767.64,
+ "text": "on"
+ },
+ {
+ "id": 5899,
+ "start": 3767.64,
+ "end": 3768.28,
+ "text": "already"
+ },
+ {
+ "id": 5900,
+ "start": 3768.28,
+ "end": 3768.78,
+ "text": "today"
+ },
+ {
+ "id": 5901,
+ "start": 3768.78,
+ "end": 3769.38,
+ "text": "as"
+ },
+ {
+ "id": 5902,
+ "start": 3769.38,
+ "end": 3769.48,
+ "text": "we"
+ },
+ {
+ "id": 5903,
+ "start": 3769.48,
+ "end": 3769.7,
+ "text": "sit"
+ },
+ {
+ "id": 5904,
+ "start": 3769.7,
+ "end": 3769.88,
+ "text": "here."
+ },
+ {
+ "id": 5905,
+ "start": 3769.88,
+ "end": 3770.84,
+ "text": "90"
+ },
+ {
+ "id": 5906,
+ "start": 3770.84,
+ "end": 3771.58,
+ "text": "of"
+ },
+ {
+ "id": 5907,
+ "start": 3771.58,
+ "end": 3771.7,
+ "text": "the"
+ },
+ {
+ "id": 5908,
+ "start": 3771.7,
+ "end": 3772.06,
+ "text": "ISIS"
+ },
+ {
+ "id": 5909,
+ "start": 3772.06,
+ "end": 3772.18,
+ "text": "and"
+ },
+ {
+ "id": 5910,
+ "start": 3772.18,
+ "end": 3772.36,
+ "text": "Al"
+ },
+ {
+ "id": 5911,
+ "start": 3772.36,
+ "end": 3772.6,
+ "text": "Qaeda"
+ },
+ {
+ "id": 5912,
+ "start": 3772.6,
+ "end": 3773.04,
+ "text": "content"
+ },
+ {
+ "id": 5913,
+ "start": 3773.04,
+ "end": 3773.2,
+ "text": "that"
+ },
+ {
+ "id": 5914,
+ "start": 3773.2,
+ "end": 3773.36,
+ "text": "we"
+ },
+ {
+ "id": 5915,
+ "start": 3773.36,
+ "end": 3773.54,
+ "text": "take"
+ },
+ {
+ "id": 5916,
+ "start": 3773.54,
+ "end": 3773.78,
+ "text": "down"
+ },
+ {
+ "id": 5917,
+ "start": 3773.78,
+ "end": 3773.92,
+ "text": "on"
+ },
+ {
+ "id": 5918,
+ "start": 3773.92,
+ "end": 3774.38,
+ "text": "Facebook,"
+ },
+ {
+ "id": 5919,
+ "start": 3774.38,
+ "end": 3774.98,
+ "text": "our"
+ },
+ {
+ "id": 5920,
+ "start": 3774.98,
+ "end": 3775.3,
+ "text": "AI"
+ },
+ {
+ "id": 5921,
+ "start": 3775.3,
+ "end": 3775.66,
+ "text": "systems"
+ },
+ {
+ "id": 5922,
+ "start": 3775.66,
+ "end": 3776,
+ "text": "flagged"
+ },
+ {
+ "id": 5923,
+ "start": 3776,
+ "end": 3776.24,
+ "text": "before"
+ },
+ {
+ "id": 5924,
+ "start": 3776.24,
+ "end": 3776.44,
+ "text": "any"
+ },
+ {
+ "id": 5925,
+ "start": 3776.44,
+ "end": 3776.72,
+ "text": "human"
+ },
+ {
+ "id": 5926,
+ "start": 3776.72,
+ "end": 3777,
+ "text": "see"
+ },
+ {
+ "id": 5927,
+ "start": 3777,
+ "end": 3777.32,
+ "text": "it."
+ },
+ {
+ "id": 5928,
+ "start": 3777.32,
+ "end": 3777.66,
+ "text": "So"
+ },
+ {
+ "id": 5929,
+ "start": 3777.66,
+ "end": 3778.22,
+ "text": "that's"
+ },
+ {
+ "id": 5930,
+ "start": 3778.22,
+ "end": 3778.26,
+ "text": "a"
+ },
+ {
+ "id": 5931,
+ "start": 3778.26,
+ "end": 3778.98,
+ "text": "success"
+ },
+ {
+ "id": 5932,
+ "start": 3778.98,
+ "end": 3779.2,
+ "text": "in"
+ },
+ {
+ "id": 5933,
+ "start": 3779.2,
+ "end": 3779.48,
+ "text": "terms"
+ },
+ {
+ "id": 5934,
+ "start": 3779.48,
+ "end": 3779.68,
+ "text": "of"
+ },
+ {
+ "id": 5935,
+ "start": 3779.68,
+ "end": 3780.22,
+ "text": "rolling"
+ },
+ {
+ "id": 5936,
+ "start": 3780.22,
+ "end": 3780.38,
+ "text": "out"
+ },
+ {
+ "id": 5937,
+ "start": 3780.38,
+ "end": 3780.7,
+ "text": "AI"
+ },
+ {
+ "id": 5938,
+ "start": 3780.7,
+ "end": 3781.04,
+ "text": "tools"
+ },
+ {
+ "id": 5939,
+ "start": 3781.04,
+ "end": 3781.88,
+ "text": "that"
+ },
+ {
+ "id": 5940,
+ "start": 3781.88,
+ "end": 3782.3,
+ "text": "that"
+ },
+ {
+ "id": 5941,
+ "start": 3782.3,
+ "end": 3782.48,
+ "text": "can"
+ },
+ {
+ "id": 5942,
+ "start": 3782.48,
+ "end": 3783.24,
+ "text": "proactively"
+ },
+ {
+ "id": 5943,
+ "start": 3783.24,
+ "end": 3784.24,
+ "text": "police"
+ },
+ {
+ "id": 5944,
+ "start": 3784.24,
+ "end": 3784.38,
+ "text": "and"
+ },
+ {
+ "id": 5945,
+ "start": 3784.38,
+ "end": 3784.76,
+ "text": "enforce"
+ },
+ {
+ "id": 5946,
+ "start": 3784.76,
+ "end": 3785.14,
+ "text": "safety"
+ },
+ {
+ "id": 5947,
+ "start": 3785.14,
+ "end": 3785.46,
+ "text": "across"
+ },
+ {
+ "id": 5948,
+ "start": 3785.46,
+ "end": 3785.6,
+ "text": "the"
+ },
+ {
+ "id": 5949,
+ "start": 3785.6,
+ "end": 3786.36,
+ "text": "community"
+ },
+ {
+ "id": 5950,
+ "start": 3786.36,
+ "end": 3787.36,
+ "text": "hate"
+ },
+ {
+ "id": 5951,
+ "start": 3787.36,
+ "end": 3787.66,
+ "text": "speech."
+ },
+ {
+ "id": 5952,
+ "start": 3787.66,
+ "end": 3787.82,
+ "text": "I"
+ },
+ {
+ "id": 5953,
+ "start": 3787.82,
+ "end": 3787.94,
+ "text": "am"
+ },
+ {
+ "id": 5954,
+ "start": 3787.94,
+ "end": 3788.6,
+ "text": "optimistic"
+ },
+ {
+ "id": 5955,
+ "start": 3788.6,
+ "end": 3789.04,
+ "text": "that"
+ },
+ {
+ "id": 5956,
+ "start": 3789.04,
+ "end": 3789.44,
+ "text": "over"
+ },
+ {
+ "id": 5957,
+ "start": 3789.44,
+ "end": 3789.64,
+ "text": "a"
+ },
+ {
+ "id": 5958,
+ "start": 3789.64,
+ "end": 3790,
+ "text": "five"
+ },
+ {
+ "id": 5959,
+ "start": 3790,
+ "end": 3790.32,
+ "text": "to"
+ },
+ {
+ "id": 5960,
+ "start": 3790.32,
+ "end": 3790.52,
+ "text": "10"
+ },
+ {
+ "id": 5961,
+ "start": 3790.52,
+ "end": 3790.68,
+ "text": "year"
+ },
+ {
+ "id": 5962,
+ "start": 3790.68,
+ "end": 3791.06,
+ "text": "period"
+ },
+ {
+ "id": 5963,
+ "start": 3791.06,
+ "end": 3791.42,
+ "text": "we"
+ },
+ {
+ "id": 5964,
+ "start": 3791.42,
+ "end": 3791.58,
+ "text": "will"
+ },
+ {
+ "id": 5965,
+ "start": 3791.58,
+ "end": 3791.72,
+ "text": "have"
+ },
+ {
+ "id": 5966,
+ "start": 3791.72,
+ "end": 3792.02,
+ "text": "AI"
+ },
+ {
+ "id": 5967,
+ "start": 3792.02,
+ "end": 3792.34,
+ "text": "tools"
+ },
+ {
+ "id": 5968,
+ "start": 3792.34,
+ "end": 3792.56,
+ "text": "that"
+ },
+ {
+ "id": 5969,
+ "start": 3792.56,
+ "end": 3793.4,
+ "text": "can"
+ },
+ {
+ "id": 5970,
+ "start": 3793.4,
+ "end": 3794.22,
+ "text": "get"
+ },
+ {
+ "id": 5971,
+ "start": 3794.22,
+ "end": 3794.44,
+ "text": "into"
+ },
+ {
+ "id": 5972,
+ "start": 3794.44,
+ "end": 3794.6,
+ "text": "some"
+ },
+ {
+ "id": 5973,
+ "start": 3794.6,
+ "end": 3794.68,
+ "text": "of"
+ },
+ {
+ "id": 5974,
+ "start": 3794.68,
+ "end": 3794.76,
+ "text": "the"
+ },
+ {
+ "id": 5975,
+ "start": 3794.76,
+ "end": 3795.2,
+ "text": "nuances,"
+ },
+ {
+ "id": 5976,
+ "start": 3795.2,
+ "end": 3795.38,
+ "text": "the"
+ },
+ {
+ "id": 5977,
+ "start": 3795.38,
+ "end": 3795.86,
+ "text": "linguistic"
+ },
+ {
+ "id": 5978,
+ "start": 3795.86,
+ "end": 3796.4,
+ "text": "nuances"
+ },
+ {
+ "id": 5979,
+ "start": 3796.4,
+ "end": 3796.64,
+ "text": "of"
+ },
+ {
+ "id": 5980,
+ "start": 3796.64,
+ "end": 3797.66,
+ "text": "different"
+ },
+ {
+ "id": 5981,
+ "start": 3797.66,
+ "end": 3797.84,
+ "text": "types"
+ },
+ {
+ "id": 5982,
+ "start": 3797.84,
+ "end": 3797.96,
+ "text": "of"
+ },
+ {
+ "id": 5983,
+ "start": 3797.96,
+ "end": 3798.3,
+ "text": "content"
+ },
+ {
+ "id": 5984,
+ "start": 3798.3,
+ "end": 3798.4,
+ "text": "to"
+ },
+ {
+ "id": 5985,
+ "start": 3798.4,
+ "end": 3798.5,
+ "text": "be"
+ },
+ {
+ "id": 5986,
+ "start": 3798.5,
+ "end": 3798.68,
+ "text": "more"
+ },
+ {
+ "id": 5987,
+ "start": 3798.68,
+ "end": 3799.04,
+ "text": "accurate"
+ },
+ {
+ "id": 5988,
+ "start": 3799.04,
+ "end": 3799.16,
+ "text": "and"
+ },
+ {
+ "id": 5989,
+ "start": 3799.16,
+ "end": 3799.54,
+ "text": "flagging"
+ },
+ {
+ "id": 5990,
+ "start": 3799.54,
+ "end": 3799.76,
+ "text": "things"
+ },
+ {
+ "id": 5991,
+ "start": 3799.76,
+ "end": 3799.92,
+ "text": "for"
+ },
+ {
+ "id": 5992,
+ "start": 3799.92,
+ "end": 3800.04,
+ "text": "our"
+ },
+ {
+ "id": 5993,
+ "start": 3800.04,
+ "end": 3800.44,
+ "text": "systems."
+ },
+ {
+ "id": 5994,
+ "start": 3800.44,
+ "end": 3801.02,
+ "text": "But"
+ },
+ {
+ "id": 5995,
+ "start": 3801.02,
+ "end": 3801.32,
+ "text": "today"
+ },
+ {
+ "id": 5996,
+ "start": 3801.32,
+ "end": 3801.56,
+ "text": "we're"
+ },
+ {
+ "id": 5997,
+ "start": 3801.56,
+ "end": 3801.74,
+ "text": "just"
+ },
+ {
+ "id": 5998,
+ "start": 3801.74,
+ "end": 3801.92,
+ "text": "not"
+ },
+ {
+ "id": 5999,
+ "start": 3801.92,
+ "end": 3802.16,
+ "text": "there"
+ },
+ {
+ "id": 6000,
+ "start": 3802.16,
+ "end": 3802.32,
+ "text": "on"
+ },
+ {
+ "id": 6001,
+ "start": 3802.32,
+ "end": 3802.56,
+ "text": "that."
+ },
+ {
+ "id": 6002,
+ "start": 3802.56,
+ "end": 3803,
+ "text": "So"
+ },
+ {
+ "id": 6003,
+ "start": 3803,
+ "end": 3803.06,
+ "text": "a"
+ },
+ {
+ "id": 6004,
+ "start": 3803.06,
+ "end": 3803.22,
+ "text": "lot"
+ },
+ {
+ "id": 6005,
+ "start": 3803.22,
+ "end": 3803.3,
+ "text": "of"
+ },
+ {
+ "id": 6006,
+ "start": 3803.3,
+ "end": 3803.42,
+ "text": "this"
+ },
+ {
+ "id": 6007,
+ "start": 3803.42,
+ "end": 3803.58,
+ "text": "is"
+ },
+ {
+ "id": 6008,
+ "start": 3803.58,
+ "end": 3803.78,
+ "text": "still"
+ },
+ {
+ "id": 6009,
+ "start": 3803.78,
+ "end": 3804.26,
+ "text": "reactive"
+ },
+ {
+ "id": 6010,
+ "start": 3804.26,
+ "end": 3804.56,
+ "text": "people"
+ },
+ {
+ "id": 6011,
+ "start": 3804.56,
+ "end": 3804.8,
+ "text": "flag"
+ },
+ {
+ "id": 6012,
+ "start": 3804.8,
+ "end": 3804.9,
+ "text": "at"
+ },
+ {
+ "id": 6013,
+ "start": 3804.9,
+ "end": 3805.82,
+ "text": "us."
+ },
+ {
+ "id": 6014,
+ "start": 3805.82,
+ "end": 3806.36,
+ "text": "We"
+ },
+ {
+ "id": 6015,
+ "start": 3806.36,
+ "end": 3806.86,
+ "text": "have"
+ },
+ {
+ "id": 6016,
+ "start": 3806.86,
+ "end": 3807.12,
+ "text": "people"
+ },
+ {
+ "id": 6017,
+ "start": 3807.12,
+ "end": 3807.4,
+ "text": "look"
+ },
+ {
+ "id": 6018,
+ "start": 3807.4,
+ "end": 3807.52,
+ "text": "at"
+ },
+ {
+ "id": 6019,
+ "start": 3807.52,
+ "end": 3807.64,
+ "text": "it."
+ },
+ {
+ "id": 6020,
+ "start": 3807.64,
+ "end": 3808.78,
+ "text": "We"
+ },
+ {
+ "id": 6021,
+ "start": 3808.78,
+ "end": 3808.92,
+ "text": "have"
+ },
+ {
+ "id": 6022,
+ "start": 3808.92,
+ "end": 3809.42,
+ "text": "policies"
+ },
+ {
+ "id": 6023,
+ "start": 3809.42,
+ "end": 3809.54,
+ "text": "to"
+ },
+ {
+ "id": 6024,
+ "start": 3809.54,
+ "end": 3809.7,
+ "text": "try"
+ },
+ {
+ "id": 6025,
+ "start": 3809.7,
+ "end": 3809.8,
+ "text": "to"
+ },
+ {
+ "id": 6026,
+ "start": 3809.8,
+ "end": 3809.92,
+ "text": "make"
+ },
+ {
+ "id": 6027,
+ "start": 3809.92,
+ "end": 3810,
+ "text": "it"
+ },
+ {
+ "id": 6028,
+ "start": 3810,
+ "end": 3810.12,
+ "text": "as"
+ },
+ {
+ "id": 6029,
+ "start": 3810.12,
+ "end": 3810.28,
+ "text": "not"
+ },
+ {
+ "id": 6030,
+ "start": 3810.28,
+ "end": 3810.76,
+ "text": "subjective"
+ },
+ {
+ "id": 6031,
+ "start": 3810.76,
+ "end": 3810.88,
+ "text": "as"
+ },
+ {
+ "id": 6032,
+ "start": 3810.88,
+ "end": 3811.34,
+ "text": "possible,"
+ },
+ {
+ "id": 6033,
+ "start": 3811.34,
+ "end": 3811.86,
+ "text": "but"
+ },
+ {
+ "id": 6034,
+ "start": 3811.86,
+ "end": 3812.14,
+ "text": "until"
+ },
+ {
+ "id": 6035,
+ "start": 3812.14,
+ "end": 3812.26,
+ "text": "we"
+ },
+ {
+ "id": 6036,
+ "start": 3812.26,
+ "end": 3812.38,
+ "text": "get"
+ },
+ {
+ "id": 6037,
+ "start": 3812.38,
+ "end": 3812.48,
+ "text": "it"
+ },
+ {
+ "id": 6038,
+ "start": 3812.48,
+ "end": 3812.64,
+ "text": "more"
+ },
+ {
+ "id": 6039,
+ "start": 3812.64,
+ "end": 3813.08,
+ "text": "automated"
+ },
+ {
+ "id": 6040,
+ "start": 3813.08,
+ "end": 3813.4,
+ "text": "there's"
+ },
+ {
+ "id": 6041,
+ "start": 3813.4,
+ "end": 3813.44,
+ "text": "a"
+ },
+ {
+ "id": 6042,
+ "start": 3813.44,
+ "end": 3813.76,
+ "text": "higher"
+ },
+ {
+ "id": 6043,
+ "start": 3813.76,
+ "end": 3814,
+ "text": "error"
+ },
+ {
+ "id": 6044,
+ "start": 3814,
+ "end": 3814.2,
+ "text": "rate"
+ },
+ {
+ "id": 6045,
+ "start": 3814.2,
+ "end": 3814.38,
+ "text": "than"
+ },
+ {
+ "id": 6046,
+ "start": 3814.38,
+ "end": 3814.48,
+ "text": "I"
+ },
+ {
+ "id": 6047,
+ "start": 3814.48,
+ "end": 3814.62,
+ "text": "am"
+ },
+ {
+ "id": 6048,
+ "start": 3814.62,
+ "end": 3814.92,
+ "text": "happy"
+ },
+ {
+ "id": 6049,
+ "start": 3814.92,
+ "end": 3815.08,
+ "text": "with."
+ },
+ {
+ "id": 6050,
+ "start": 3815.08,
+ "end": 3815.5,
+ "text": "Thank"
+ },
+ {
+ "id": 6051,
+ "start": 3815.5,
+ "end": 3815.62,
+ "text": "you,"
+ },
+ {
+ "id": 6052,
+ "start": 3815.62,
+ "end": 3816,
+ "text": "Senator"
+ },
+ {
+ "id": 6053,
+ "start": 3816,
+ "end": 3817.4,
+ "text": "Feinstein."
+ },
+ {
+ "id": 6054,
+ "start": 3817.4,
+ "end": 3818.08,
+ "text": "Thanks,"
+ },
+ {
+ "id": 6055,
+ "start": 3818.08,
+ "end": 3818.46,
+ "text": "Mr"
+ },
+ {
+ "id": 6056,
+ "start": 3818.46,
+ "end": 3820.24,
+ "text": "Chairman,"
+ },
+ {
+ "id": 6057,
+ "start": 3820.24,
+ "end": 3821.36,
+ "text": "Mr"
+ },
+ {
+ "id": 6058,
+ "start": 3821.36,
+ "end": 3821.82,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 6059,
+ "start": 3821.82,
+ "end": 3822.06,
+ "text": "What"
+ },
+ {
+ "id": 6060,
+ "start": 3822.06,
+ "end": 3822.3,
+ "text": "is"
+ },
+ {
+ "id": 6061,
+ "start": 3822.3,
+ "end": 3823.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 6062,
+ "start": 3823.1,
+ "end": 3823.64,
+ "text": "doing"
+ },
+ {
+ "id": 6063,
+ "start": 3823.64,
+ "end": 3824.32,
+ "text": "to"
+ },
+ {
+ "id": 6064,
+ "start": 3824.32,
+ "end": 3824.7,
+ "text": "prevent"
+ },
+ {
+ "id": 6065,
+ "start": 3824.7,
+ "end": 3825.22,
+ "text": "foreign"
+ },
+ {
+ "id": 6066,
+ "start": 3825.22,
+ "end": 3825.74,
+ "text": "actors"
+ },
+ {
+ "id": 6067,
+ "start": 3825.74,
+ "end": 3826.06,
+ "text": "from"
+ },
+ {
+ "id": 6068,
+ "start": 3826.06,
+ "end": 3826.86,
+ "text": "interfering"
+ },
+ {
+ "id": 6069,
+ "start": 3826.86,
+ "end": 3827.16,
+ "text": "in"
+ },
+ {
+ "id": 6070,
+ "start": 3827.16,
+ "end": 3827.38,
+ "text": "U"
+ },
+ {
+ "id": 6071,
+ "start": 3827.38,
+ "end": 3827.6,
+ "text": "S"
+ },
+ {
+ "id": 6072,
+ "start": 3827.6,
+ "end": 3828.98,
+ "text": "elections."
+ },
+ {
+ "id": 6073,
+ "start": 3828.98,
+ "end": 3829.92,
+ "text": "Thank"
+ },
+ {
+ "id": 6074,
+ "start": 3829.92,
+ "end": 3830.04,
+ "text": "you,"
+ },
+ {
+ "id": 6075,
+ "start": 3830.04,
+ "end": 3830.42,
+ "text": "Senator."
+ },
+ {
+ "id": 6076,
+ "start": 3830.42,
+ "end": 3831.1,
+ "text": "This"
+ },
+ {
+ "id": 6077,
+ "start": 3831.1,
+ "end": 3831.36,
+ "text": "is"
+ },
+ {
+ "id": 6078,
+ "start": 3831.36,
+ "end": 3832.34,
+ "text": "one"
+ },
+ {
+ "id": 6079,
+ "start": 3832.34,
+ "end": 3832.42,
+ "text": "of"
+ },
+ {
+ "id": 6080,
+ "start": 3832.42,
+ "end": 3832.58,
+ "text": "my"
+ },
+ {
+ "id": 6081,
+ "start": 3832.58,
+ "end": 3832.78,
+ "text": "top"
+ },
+ {
+ "id": 6082,
+ "start": 3832.78,
+ "end": 3833.22,
+ "text": "priorities"
+ },
+ {
+ "id": 6083,
+ "start": 3833.22,
+ "end": 3833.36,
+ "text": "in"
+ },
+ {
+ "id": 6084,
+ "start": 3833.36,
+ "end": 3833.72,
+ "text": "20"
+ },
+ {
+ "id": 6085,
+ "start": 3833.72,
+ "end": 3834.2,
+ "text": "18"
+ },
+ {
+ "id": 6086,
+ "start": 3834.2,
+ "end": 3834.9,
+ "text": "is"
+ },
+ {
+ "id": 6087,
+ "start": 3834.9,
+ "end": 3835,
+ "text": "to"
+ },
+ {
+ "id": 6088,
+ "start": 3835,
+ "end": 3835.1,
+ "text": "get"
+ },
+ {
+ "id": 6089,
+ "start": 3835.1,
+ "end": 3835.26,
+ "text": "this"
+ },
+ {
+ "id": 6090,
+ "start": 3835.26,
+ "end": 3836.02,
+ "text": "right,"
+ },
+ {
+ "id": 6091,
+ "start": 3836.02,
+ "end": 3836.98,
+ "text": "one"
+ },
+ {
+ "id": 6092,
+ "start": 3836.98,
+ "end": 3837.06,
+ "text": "of"
+ },
+ {
+ "id": 6093,
+ "start": 3837.06,
+ "end": 3837.22,
+ "text": "my"
+ },
+ {
+ "id": 6094,
+ "start": 3837.22,
+ "end": 3837.68,
+ "text": "greatest"
+ },
+ {
+ "id": 6095,
+ "start": 3837.68,
+ "end": 3838.14,
+ "text": "regrets"
+ },
+ {
+ "id": 6096,
+ "start": 3838.14,
+ "end": 3838.3,
+ "text": "in"
+ },
+ {
+ "id": 6097,
+ "start": 3838.3,
+ "end": 3838.56,
+ "text": "running"
+ },
+ {
+ "id": 6098,
+ "start": 3838.56,
+ "end": 3838.68,
+ "text": "the"
+ },
+ {
+ "id": 6099,
+ "start": 3838.68,
+ "end": 3839.08,
+ "text": "company"
+ },
+ {
+ "id": 6100,
+ "start": 3839.08,
+ "end": 3839.28,
+ "text": "is"
+ },
+ {
+ "id": 6101,
+ "start": 3839.28,
+ "end": 3839.49,
+ "text": "that"
+ },
+ {
+ "id": 6102,
+ "start": 3839.49,
+ "end": 3839.55,
+ "text": "we"
+ },
+ {
+ "id": 6103,
+ "start": 3839.55,
+ "end": 3839.81,
+ "text": "were"
+ },
+ {
+ "id": 6104,
+ "start": 3839.81,
+ "end": 3840.35,
+ "text": "slow"
+ },
+ {
+ "id": 6105,
+ "start": 3840.35,
+ "end": 3840.85,
+ "text": "in"
+ },
+ {
+ "id": 6106,
+ "start": 3840.85,
+ "end": 3841.55,
+ "text": "identifying"
+ },
+ {
+ "id": 6107,
+ "start": 3841.55,
+ "end": 3841.81,
+ "text": "the"
+ },
+ {
+ "id": 6108,
+ "start": 3841.81,
+ "end": 3842.13,
+ "text": "Russian"
+ },
+ {
+ "id": 6109,
+ "start": 3842.13,
+ "end": 3842.71,
+ "text": "information"
+ },
+ {
+ "id": 6110,
+ "start": 3842.71,
+ "end": 3843.31,
+ "text": "operations"
+ },
+ {
+ "id": 6111,
+ "start": 3843.31,
+ "end": 3843.49,
+ "text": "and"
+ },
+ {
+ "id": 6112,
+ "start": 3843.49,
+ "end": 3843.83,
+ "text": "20"
+ },
+ {
+ "id": 6113,
+ "start": 3843.83,
+ "end": 3844.31,
+ "text": "16"
+ },
+ {
+ "id": 6114,
+ "start": 3844.31,
+ "end": 3844.51,
+ "text": "we"
+ },
+ {
+ "id": 6115,
+ "start": 3844.51,
+ "end": 3845.01,
+ "text": "expected"
+ },
+ {
+ "id": 6116,
+ "start": 3845.01,
+ "end": 3845.25,
+ "text": "them"
+ },
+ {
+ "id": 6117,
+ "start": 3845.25,
+ "end": 3845.93,
+ "text": "to"
+ },
+ {
+ "id": 6118,
+ "start": 3845.93,
+ "end": 3846.23,
+ "text": "do"
+ },
+ {
+ "id": 6119,
+ "start": 3846.23,
+ "end": 3846.43,
+ "text": "a"
+ },
+ {
+ "id": 6120,
+ "start": 3846.43,
+ "end": 3846.73,
+ "text": "number"
+ },
+ {
+ "id": 6121,
+ "start": 3846.73,
+ "end": 3846.81,
+ "text": "of"
+ },
+ {
+ "id": 6122,
+ "start": 3846.81,
+ "end": 3847.01,
+ "text": "more"
+ },
+ {
+ "id": 6123,
+ "start": 3847.01,
+ "end": 3847.49,
+ "text": "traditional"
+ },
+ {
+ "id": 6124,
+ "start": 3847.49,
+ "end": 3847.81,
+ "text": "cyber"
+ },
+ {
+ "id": 6125,
+ "start": 3847.81,
+ "end": 3848.15,
+ "text": "attacks"
+ },
+ {
+ "id": 6126,
+ "start": 3848.15,
+ "end": 3848.35,
+ "text": "which"
+ },
+ {
+ "id": 6127,
+ "start": 3848.35,
+ "end": 3848.47,
+ "text": "we"
+ },
+ {
+ "id": 6128,
+ "start": 3848.47,
+ "end": 3848.61,
+ "text": "did"
+ },
+ {
+ "id": 6129,
+ "start": 3848.61,
+ "end": 3849.19,
+ "text": "identify"
+ },
+ {
+ "id": 6130,
+ "start": 3849.19,
+ "end": 3849.31,
+ "text": "and"
+ },
+ {
+ "id": 6131,
+ "start": 3849.31,
+ "end": 3850,
+ "text": "notify"
+ },
+ {
+ "id": 6132,
+ "start": 3850,
+ "end": 3850.38,
+ "text": "the"
+ },
+ {
+ "id": 6133,
+ "start": 3850.38,
+ "end": 3850.86,
+ "text": "campaigns"
+ },
+ {
+ "id": 6134,
+ "start": 3850.86,
+ "end": 3851,
+ "text": "that"
+ },
+ {
+ "id": 6135,
+ "start": 3851,
+ "end": 3851.12,
+ "text": "they"
+ },
+ {
+ "id": 6136,
+ "start": 3851.12,
+ "end": 3851.24,
+ "text": "were"
+ },
+ {
+ "id": 6137,
+ "start": 3851.24,
+ "end": 3851.46,
+ "text": "trying"
+ },
+ {
+ "id": 6138,
+ "start": 3851.46,
+ "end": 3851.52,
+ "text": "to"
+ },
+ {
+ "id": 6139,
+ "start": 3851.52,
+ "end": 3851.68,
+ "text": "hack"
+ },
+ {
+ "id": 6140,
+ "start": 3851.68,
+ "end": 3851.88,
+ "text": "into"
+ },
+ {
+ "id": 6141,
+ "start": 3851.88,
+ "end": 3852.08,
+ "text": "them."
+ },
+ {
+ "id": 6142,
+ "start": 3852.08,
+ "end": 3852.52,
+ "text": "But"
+ },
+ {
+ "id": 6143,
+ "start": 3852.52,
+ "end": 3852.62,
+ "text": "we"
+ },
+ {
+ "id": 6144,
+ "start": 3852.62,
+ "end": 3852.76,
+ "text": "were"
+ },
+ {
+ "id": 6145,
+ "start": 3852.76,
+ "end": 3853,
+ "text": "slow"
+ },
+ {
+ "id": 6146,
+ "start": 3853,
+ "end": 3853.1,
+ "text": "to"
+ },
+ {
+ "id": 6147,
+ "start": 3853.1,
+ "end": 3853.76,
+ "text": "identifying"
+ },
+ {
+ "id": 6148,
+ "start": 3853.76,
+ "end": 3854.18,
+ "text": "the"
+ },
+ {
+ "id": 6149,
+ "start": 3854.18,
+ "end": 3854.46,
+ "text": "type"
+ },
+ {
+ "id": 6150,
+ "start": 3854.46,
+ "end": 3854.6,
+ "text": "of"
+ },
+ {
+ "id": 6151,
+ "start": 3854.6,
+ "end": 3855.18,
+ "text": "new"
+ },
+ {
+ "id": 6152,
+ "start": 3855.18,
+ "end": 3855.76,
+ "text": "information"
+ },
+ {
+ "id": 6153,
+ "start": 3855.76,
+ "end": 3856.34,
+ "text": "operations."
+ },
+ {
+ "id": 6154,
+ "start": 3856.34,
+ "end": 3856.82,
+ "text": "When"
+ },
+ {
+ "id": 6155,
+ "start": 3856.82,
+ "end": 3857,
+ "text": "did"
+ },
+ {
+ "id": 6156,
+ "start": 3857,
+ "end": 3857.18,
+ "text": "you"
+ },
+ {
+ "id": 6157,
+ "start": 3857.18,
+ "end": 3858.16,
+ "text": "identify"
+ },
+ {
+ "id": 6158,
+ "start": 3858.16,
+ "end": 3858.76,
+ "text": "new"
+ },
+ {
+ "id": 6159,
+ "start": 3858.76,
+ "end": 3859.92,
+ "text": "operations?"
+ },
+ {
+ "id": 6160,
+ "start": 3859.92,
+ "end": 3861,
+ "text": "It"
+ },
+ {
+ "id": 6161,
+ "start": 3861,
+ "end": 3861.16,
+ "text": "was"
+ },
+ {
+ "id": 6162,
+ "start": 3861.16,
+ "end": 3861.44,
+ "text": "right"
+ },
+ {
+ "id": 6163,
+ "start": 3861.44,
+ "end": 3861.8,
+ "text": "around"
+ },
+ {
+ "id": 6164,
+ "start": 3861.8,
+ "end": 3861.98,
+ "text": "the"
+ },
+ {
+ "id": 6165,
+ "start": 3861.98,
+ "end": 3862.26,
+ "text": "time"
+ },
+ {
+ "id": 6166,
+ "start": 3862.26,
+ "end": 3862.38,
+ "text": "of"
+ },
+ {
+ "id": 6167,
+ "start": 3862.38,
+ "end": 3862.5,
+ "text": "the"
+ },
+ {
+ "id": 6168,
+ "start": 3862.5,
+ "end": 3862.72,
+ "text": "20"
+ },
+ {
+ "id": 6169,
+ "start": 3862.72,
+ "end": 3863.1,
+ "text": "16"
+ },
+ {
+ "id": 6170,
+ "start": 3863.1,
+ "end": 3863.46,
+ "text": "election"
+ },
+ {
+ "id": 6171,
+ "start": 3863.46,
+ "end": 3863.84,
+ "text": "itself."
+ },
+ {
+ "id": 6172,
+ "start": 3863.84,
+ "end": 3864.46,
+ "text": "So"
+ },
+ {
+ "id": 6173,
+ "start": 3864.46,
+ "end": 3864.72,
+ "text": "since"
+ },
+ {
+ "id": 6174,
+ "start": 3864.72,
+ "end": 3866.8,
+ "text": "then,"
+ },
+ {
+ "id": 6175,
+ "start": 3866.8,
+ "end": 3867.82,
+ "text": "this"
+ },
+ {
+ "id": 6176,
+ "start": 3867.82,
+ "end": 3867.94,
+ "text": "is"
+ },
+ {
+ "id": 6177,
+ "start": 3867.94,
+ "end": 3868.04,
+ "text": "an"
+ },
+ {
+ "id": 6178,
+ "start": 3868.04,
+ "end": 3868.52,
+ "text": "incredibly"
+ },
+ {
+ "id": 6179,
+ "start": 3868.52,
+ "end": 3868.84,
+ "text": "important"
+ },
+ {
+ "id": 6180,
+ "start": 3868.84,
+ "end": 3869,
+ "text": "year"
+ },
+ {
+ "id": 6181,
+ "start": 3869,
+ "end": 3869.14,
+ "text": "for"
+ },
+ {
+ "id": 6182,
+ "start": 3869.14,
+ "end": 3869.6,
+ "text": "elections."
+ },
+ {
+ "id": 6183,
+ "start": 3869.6,
+ "end": 3869.86,
+ "text": "Not"
+ },
+ {
+ "id": 6184,
+ "start": 3869.86,
+ "end": 3870.04,
+ "text": "just"
+ },
+ {
+ "id": 6185,
+ "start": 3870.04,
+ "end": 3870.36,
+ "text": "with"
+ },
+ {
+ "id": 6186,
+ "start": 3870.36,
+ "end": 3870.46,
+ "text": "the"
+ },
+ {
+ "id": 6187,
+ "start": 3870.46,
+ "end": 3870.56,
+ "text": "U"
+ },
+ {
+ "id": 6188,
+ "start": 3870.56,
+ "end": 3870.7,
+ "text": "S"
+ },
+ {
+ "id": 6189,
+ "start": 3870.7,
+ "end": 3871.18,
+ "text": "Midterms"
+ },
+ {
+ "id": 6190,
+ "start": 3871.18,
+ "end": 3871.74,
+ "text": "but"
+ },
+ {
+ "id": 6191,
+ "start": 3871.74,
+ "end": 3872.04,
+ "text": "around"
+ },
+ {
+ "id": 6192,
+ "start": 3872.04,
+ "end": 3872.16,
+ "text": "the"
+ },
+ {
+ "id": 6193,
+ "start": 3872.16,
+ "end": 3872.44,
+ "text": "world."
+ },
+ {
+ "id": 6194,
+ "start": 3872.44,
+ "end": 3872.64,
+ "text": "There"
+ },
+ {
+ "id": 6195,
+ "start": 3872.64,
+ "end": 3872.76,
+ "text": "are"
+ },
+ {
+ "id": 6196,
+ "start": 3872.76,
+ "end": 3873.14,
+ "text": "important"
+ },
+ {
+ "id": 6197,
+ "start": 3873.14,
+ "end": 3873.64,
+ "text": "elections"
+ },
+ {
+ "id": 6198,
+ "start": 3873.64,
+ "end": 3873.9,
+ "text": "in"
+ },
+ {
+ "id": 6199,
+ "start": 3873.9,
+ "end": 3874.38,
+ "text": "India"
+ },
+ {
+ "id": 6200,
+ "start": 3874.38,
+ "end": 3874.92,
+ "text": "in"
+ },
+ {
+ "id": 6201,
+ "start": 3874.92,
+ "end": 3875.4,
+ "text": "Brazil"
+ },
+ {
+ "id": 6202,
+ "start": 3875.4,
+ "end": 3875.62,
+ "text": "and"
+ },
+ {
+ "id": 6203,
+ "start": 3875.62,
+ "end": 3876.14,
+ "text": "Mexico"
+ },
+ {
+ "id": 6204,
+ "start": 3876.14,
+ "end": 3876.3,
+ "text": "and"
+ },
+ {
+ "id": 6205,
+ "start": 3876.3,
+ "end": 3876.84,
+ "text": "Pakistan"
+ },
+ {
+ "id": 6206,
+ "start": 3876.84,
+ "end": 3876.96,
+ "text": "and"
+ },
+ {
+ "id": 6207,
+ "start": 3876.96,
+ "end": 3877.08,
+ "text": "and"
+ },
+ {
+ "id": 6208,
+ "start": 3877.08,
+ "end": 3877.52,
+ "text": "Hungary"
+ },
+ {
+ "id": 6209,
+ "start": 3877.52,
+ "end": 3877.88,
+ "text": "that"
+ },
+ {
+ "id": 6210,
+ "start": 3877.88,
+ "end": 3877.98,
+ "text": "we"
+ },
+ {
+ "id": 6211,
+ "start": 3877.98,
+ "end": 3878.12,
+ "text": "want"
+ },
+ {
+ "id": 6212,
+ "start": 3878.12,
+ "end": 3878.18,
+ "text": "to"
+ },
+ {
+ "id": 6213,
+ "start": 3878.18,
+ "end": 3878.32,
+ "text": "make"
+ },
+ {
+ "id": 6214,
+ "start": 3878.32,
+ "end": 3878.54,
+ "text": "sure"
+ },
+ {
+ "id": 6215,
+ "start": 3878.54,
+ "end": 3878.7,
+ "text": "that"
+ },
+ {
+ "id": 6216,
+ "start": 3878.7,
+ "end": 3878.98,
+ "text": "we"
+ },
+ {
+ "id": 6217,
+ "start": 3878.98,
+ "end": 3879.36,
+ "text": "do"
+ },
+ {
+ "id": 6218,
+ "start": 3879.36,
+ "end": 3879.74,
+ "text": "everything"
+ },
+ {
+ "id": 6219,
+ "start": 3879.74,
+ "end": 3879.86,
+ "text": "we"
+ },
+ {
+ "id": 6220,
+ "start": 3879.86,
+ "end": 3880.13,
+ "text": "can"
+ },
+ {
+ "id": 6221,
+ "start": 3880.13,
+ "end": 3880.19,
+ "text": "to"
+ },
+ {
+ "id": 6222,
+ "start": 3880.19,
+ "end": 3880.45,
+ "text": "protect"
+ },
+ {
+ "id": 6223,
+ "start": 3880.45,
+ "end": 3880.59,
+ "text": "the"
+ },
+ {
+ "id": 6224,
+ "start": 3880.59,
+ "end": 3880.99,
+ "text": "integrity"
+ },
+ {
+ "id": 6225,
+ "start": 3880.99,
+ "end": 3881.07,
+ "text": "of"
+ },
+ {
+ "id": 6226,
+ "start": 3881.07,
+ "end": 3881.25,
+ "text": "those"
+ },
+ {
+ "id": 6227,
+ "start": 3881.25,
+ "end": 3881.69,
+ "text": "elections."
+ },
+ {
+ "id": 6228,
+ "start": 3881.69,
+ "end": 3881.89,
+ "text": "Now,"
+ },
+ {
+ "id": 6229,
+ "start": 3881.89,
+ "end": 3882.57,
+ "text": "I"
+ },
+ {
+ "id": 6230,
+ "start": 3882.57,
+ "end": 3882.73,
+ "text": "have"
+ },
+ {
+ "id": 6231,
+ "start": 3882.73,
+ "end": 3882.95,
+ "text": "more"
+ },
+ {
+ "id": 6232,
+ "start": 3882.95,
+ "end": 3883.47,
+ "text": "confidence"
+ },
+ {
+ "id": 6233,
+ "start": 3883.47,
+ "end": 3883.63,
+ "text": "that"
+ },
+ {
+ "id": 6234,
+ "start": 3883.63,
+ "end": 3883.77,
+ "text": "we're"
+ },
+ {
+ "id": 6235,
+ "start": 3883.77,
+ "end": 3883.93,
+ "text": "going"
+ },
+ {
+ "id": 6236,
+ "start": 3883.93,
+ "end": 3883.99,
+ "text": "to"
+ },
+ {
+ "id": 6237,
+ "start": 3883.99,
+ "end": 3884.07,
+ "text": "get"
+ },
+ {
+ "id": 6238,
+ "start": 3884.07,
+ "end": 3884.21,
+ "text": "this"
+ },
+ {
+ "id": 6239,
+ "start": 3884.21,
+ "end": 3884.49,
+ "text": "right"
+ },
+ {
+ "id": 6240,
+ "start": 3884.49,
+ "end": 3884.85,
+ "text": "because"
+ },
+ {
+ "id": 6241,
+ "start": 3884.85,
+ "end": 3885.11,
+ "text": "since"
+ },
+ {
+ "id": 6242,
+ "start": 3885.11,
+ "end": 3885.25,
+ "text": "the"
+ },
+ {
+ "id": 6243,
+ "start": 3885.25,
+ "end": 3885.45,
+ "text": "20"
+ },
+ {
+ "id": 6244,
+ "start": 3885.45,
+ "end": 3885.83,
+ "text": "16"
+ },
+ {
+ "id": 6245,
+ "start": 3885.83,
+ "end": 3886.19,
+ "text": "election,"
+ },
+ {
+ "id": 6246,
+ "start": 3886.19,
+ "end": 3886.67,
+ "text": "there"
+ },
+ {
+ "id": 6247,
+ "start": 3886.67,
+ "end": 3886.81,
+ "text": "have"
+ },
+ {
+ "id": 6248,
+ "start": 3886.81,
+ "end": 3886.99,
+ "text": "been"
+ },
+ {
+ "id": 6249,
+ "start": 3886.99,
+ "end": 3887.43,
+ "text": "several"
+ },
+ {
+ "id": 6250,
+ "start": 3887.43,
+ "end": 3887.85,
+ "text": "important"
+ },
+ {
+ "id": 6251,
+ "start": 3887.85,
+ "end": 3888.31,
+ "text": "elections"
+ },
+ {
+ "id": 6252,
+ "start": 3888.31,
+ "end": 3888.59,
+ "text": "around"
+ },
+ {
+ "id": 6253,
+ "start": 3888.59,
+ "end": 3888.71,
+ "text": "the"
+ },
+ {
+ "id": 6254,
+ "start": 3888.71,
+ "end": 3888.95,
+ "text": "world"
+ },
+ {
+ "id": 6255,
+ "start": 3888.95,
+ "end": 3889.41,
+ "text": "where"
+ },
+ {
+ "id": 6256,
+ "start": 3889.41,
+ "end": 3889.61,
+ "text": "we've"
+ },
+ {
+ "id": 6257,
+ "start": 3889.61,
+ "end": 3889.73,
+ "text": "had"
+ },
+ {
+ "id": 6258,
+ "start": 3889.73,
+ "end": 3889.79,
+ "text": "a"
+ },
+ {
+ "id": 6259,
+ "start": 3889.79,
+ "end": 3890.01,
+ "text": "better"
+ },
+ {
+ "id": 6260,
+ "start": 3890.01,
+ "end": 3890.31,
+ "text": "record"
+ },
+ {
+ "id": 6261,
+ "start": 3890.31,
+ "end": 3890.67,
+ "text": "there's"
+ },
+ {
+ "id": 6262,
+ "start": 3890.67,
+ "end": 3890.79,
+ "text": "the"
+ },
+ {
+ "id": 6263,
+ "start": 3890.79,
+ "end": 3891.05,
+ "text": "French"
+ },
+ {
+ "id": 6264,
+ "start": 3891.05,
+ "end": 3891.55,
+ "text": "presidential"
+ },
+ {
+ "id": 6265,
+ "start": 3891.55,
+ "end": 3891.91,
+ "text": "election"
+ },
+ {
+ "id": 6266,
+ "start": 3891.91,
+ "end": 3892.57,
+ "text": "there's"
+ },
+ {
+ "id": 6267,
+ "start": 3892.57,
+ "end": 3892.67,
+ "text": "the"
+ },
+ {
+ "id": 6268,
+ "start": 3892.67,
+ "end": 3892.93,
+ "text": "German"
+ },
+ {
+ "id": 6269,
+ "start": 3892.93,
+ "end": 3893.23,
+ "text": "election."
+ },
+ {
+ "id": 6270,
+ "start": 3893.23,
+ "end": 3893.39,
+ "text": "There"
+ },
+ {
+ "id": 6271,
+ "start": 3893.39,
+ "end": 3893.49,
+ "text": "was"
+ },
+ {
+ "id": 6272,
+ "start": 3893.49,
+ "end": 3893.63,
+ "text": "the"
+ },
+ {
+ "id": 6273,
+ "start": 3893.63,
+ "end": 3894.2,
+ "text": "US"
+ },
+ {
+ "id": 6274,
+ "start": 3894.2,
+ "end": 3894.8,
+ "text": "Senate"
+ },
+ {
+ "id": 6275,
+ "start": 3894.8,
+ "end": 3895.24,
+ "text": "Alabama"
+ },
+ {
+ "id": 6276,
+ "start": 3895.24,
+ "end": 3895.66,
+ "text": "special"
+ },
+ {
+ "id": 6277,
+ "start": 3895.66,
+ "end": 3896,
+ "text": "election"
+ },
+ {
+ "id": 6278,
+ "start": 3896,
+ "end": 3896.26,
+ "text": "last"
+ },
+ {
+ "id": 6279,
+ "start": 3896.26,
+ "end": 3896.42,
+ "text": "year."
+ },
+ {
+ "id": 6280,
+ "start": 3896.42,
+ "end": 3897.26,
+ "text": "Explain"
+ },
+ {
+ "id": 6281,
+ "start": 3897.26,
+ "end": 3897.5,
+ "text": "what"
+ },
+ {
+ "id": 6282,
+ "start": 3897.5,
+ "end": 3897.68,
+ "text": "is"
+ },
+ {
+ "id": 6283,
+ "start": 3897.68,
+ "end": 3898.02,
+ "text": "better"
+ },
+ {
+ "id": 6284,
+ "start": 3898.02,
+ "end": 3898.3,
+ "text": "about"
+ },
+ {
+ "id": 6285,
+ "start": 3898.3,
+ "end": 3898.48,
+ "text": "the"
+ },
+ {
+ "id": 6286,
+ "start": 3898.48,
+ "end": 3898.86,
+ "text": "record."
+ },
+ {
+ "id": 6287,
+ "start": 3898.86,
+ "end": 3899.46,
+ "text": "So"
+ },
+ {
+ "id": 6288,
+ "start": 3899.46,
+ "end": 3899.74,
+ "text": "we've"
+ },
+ {
+ "id": 6289,
+ "start": 3899.74,
+ "end": 3900.28,
+ "text": "deployed."
+ },
+ {
+ "id": 6290,
+ "start": 3900.28,
+ "end": 3900.66,
+ "text": "New"
+ },
+ {
+ "id": 6291,
+ "start": 3900.66,
+ "end": 3901.04,
+ "text": "AI"
+ },
+ {
+ "id": 6292,
+ "start": 3901.04,
+ "end": 3901.9,
+ "text": "tools"
+ },
+ {
+ "id": 6293,
+ "start": 3901.9,
+ "end": 3902.58,
+ "text": "that"
+ },
+ {
+ "id": 6294,
+ "start": 3902.58,
+ "end": 3903.24,
+ "text": "do"
+ },
+ {
+ "id": 6295,
+ "start": 3903.24,
+ "end": 3903.34,
+ "text": "a"
+ },
+ {
+ "id": 6296,
+ "start": 3903.34,
+ "end": 3903.64,
+ "text": "better"
+ },
+ {
+ "id": 6297,
+ "start": 3903.64,
+ "end": 3903.96,
+ "text": "job"
+ },
+ {
+ "id": 6298,
+ "start": 3903.96,
+ "end": 3904.18,
+ "text": "of"
+ },
+ {
+ "id": 6299,
+ "start": 3904.18,
+ "end": 3904.9,
+ "text": "identifying"
+ },
+ {
+ "id": 6300,
+ "start": 3904.9,
+ "end": 3905.22,
+ "text": "fake"
+ },
+ {
+ "id": 6301,
+ "start": 3905.22,
+ "end": 3905.64,
+ "text": "accounts"
+ },
+ {
+ "id": 6302,
+ "start": 3905.64,
+ "end": 3906.3,
+ "text": "that"
+ },
+ {
+ "id": 6303,
+ "start": 3906.3,
+ "end": 3906.54,
+ "text": "may"
+ },
+ {
+ "id": 6304,
+ "start": 3906.54,
+ "end": 3906.66,
+ "text": "be"
+ },
+ {
+ "id": 6305,
+ "start": 3906.66,
+ "end": 3907.12,
+ "text": "trying"
+ },
+ {
+ "id": 6306,
+ "start": 3907.12,
+ "end": 3907.34,
+ "text": "to"
+ },
+ {
+ "id": 6307,
+ "start": 3907.34,
+ "end": 3907.92,
+ "text": "interfere"
+ },
+ {
+ "id": 6308,
+ "start": 3907.92,
+ "end": 3907.98,
+ "text": "in"
+ },
+ {
+ "id": 6309,
+ "start": 3907.98,
+ "end": 3908.42,
+ "text": "elections"
+ },
+ {
+ "id": 6310,
+ "start": 3908.42,
+ "end": 3908.6,
+ "text": "or"
+ },
+ {
+ "id": 6311,
+ "start": 3908.6,
+ "end": 3908.92,
+ "text": "spread"
+ },
+ {
+ "id": 6312,
+ "start": 3908.92,
+ "end": 3909.66,
+ "text": "misinformation."
+ },
+ {
+ "id": 6313,
+ "start": 3909.66,
+ "end": 3910.26,
+ "text": "And"
+ },
+ {
+ "id": 6314,
+ "start": 3910.26,
+ "end": 3910.62,
+ "text": "between"
+ },
+ {
+ "id": 6315,
+ "start": 3910.62,
+ "end": 3910.94,
+ "text": "those"
+ },
+ {
+ "id": 6316,
+ "start": 3910.94,
+ "end": 3911.24,
+ "text": "three"
+ },
+ {
+ "id": 6317,
+ "start": 3911.24,
+ "end": 3911.72,
+ "text": "elections."
+ },
+ {
+ "id": 6318,
+ "start": 3911.72,
+ "end": 3912.22,
+ "text": "We"
+ },
+ {
+ "id": 6319,
+ "start": 3912.22,
+ "end": 3912.4,
+ "text": "were"
+ },
+ {
+ "id": 6320,
+ "start": 3912.4,
+ "end": 3912.6,
+ "text": "able"
+ },
+ {
+ "id": 6321,
+ "start": 3912.6,
+ "end": 3912.72,
+ "text": "to"
+ },
+ {
+ "id": 6322,
+ "start": 3912.72,
+ "end": 3913.42,
+ "text": "proactively"
+ },
+ {
+ "id": 6323,
+ "start": 3913.42,
+ "end": 3913.84,
+ "text": "remove"
+ },
+ {
+ "id": 6324,
+ "start": 3913.84,
+ "end": 3914.44,
+ "text": "tens"
+ },
+ {
+ "id": 6325,
+ "start": 3914.44,
+ "end": 3914.56,
+ "text": "of"
+ },
+ {
+ "id": 6326,
+ "start": 3914.56,
+ "end": 3915,
+ "text": "thousands"
+ },
+ {
+ "id": 6327,
+ "start": 3915,
+ "end": 3915.14,
+ "text": "of"
+ },
+ {
+ "id": 6328,
+ "start": 3915.14,
+ "end": 3915.54,
+ "text": "accounts"
+ },
+ {
+ "id": 6329,
+ "start": 3915.54,
+ "end": 3916.1,
+ "text": "that"
+ },
+ {
+ "id": 6330,
+ "start": 3916.1,
+ "end": 3916.94,
+ "text": "before"
+ },
+ {
+ "id": 6331,
+ "start": 3916.94,
+ "end": 3917.28,
+ "text": "they"
+ },
+ {
+ "id": 6332,
+ "start": 3917.28,
+ "end": 3917.74,
+ "text": "they"
+ },
+ {
+ "id": 6333,
+ "start": 3917.74,
+ "end": 3918.1,
+ "text": "could"
+ },
+ {
+ "id": 6334,
+ "start": 3918.1,
+ "end": 3919.16,
+ "text": "contribute"
+ },
+ {
+ "id": 6335,
+ "start": 3919.16,
+ "end": 3919.66,
+ "text": "significant"
+ },
+ {
+ "id": 6336,
+ "start": 3919.66,
+ "end": 3919.94,
+ "text": "harm."
+ },
+ {
+ "id": 6337,
+ "start": 3919.94,
+ "end": 3920.96,
+ "text": "And"
+ },
+ {
+ "id": 6338,
+ "start": 3920.96,
+ "end": 3921.42,
+ "text": "the"
+ },
+ {
+ "id": 6339,
+ "start": 3921.42,
+ "end": 3921.82,
+ "text": "nature"
+ },
+ {
+ "id": 6340,
+ "start": 3921.82,
+ "end": 3921.9,
+ "text": "of"
+ },
+ {
+ "id": 6341,
+ "start": 3921.9,
+ "end": 3922.2,
+ "text": "his"
+ },
+ {
+ "id": 6342,
+ "start": 3922.2,
+ "end": 3923.26,
+ "text": "attacks,"
+ },
+ {
+ "id": 6343,
+ "start": 3923.26,
+ "end": 3923.56,
+ "text": "though,"
+ },
+ {
+ "id": 6344,
+ "start": 3923.56,
+ "end": 3924.38,
+ "text": "is"
+ },
+ {
+ "id": 6345,
+ "start": 3924.38,
+ "end": 3924.66,
+ "text": "that"
+ },
+ {
+ "id": 6346,
+ "start": 3924.66,
+ "end": 3925.2,
+ "text": "there"
+ },
+ {
+ "id": 6347,
+ "start": 3925.2,
+ "end": 3925.32,
+ "text": "are"
+ },
+ {
+ "id": 6348,
+ "start": 3925.32,
+ "end": 3925.52,
+ "text": "people"
+ },
+ {
+ "id": 6349,
+ "start": 3925.52,
+ "end": 3925.64,
+ "text": "in"
+ },
+ {
+ "id": 6350,
+ "start": 3925.64,
+ "end": 3926,
+ "text": "Russia"
+ },
+ {
+ "id": 6351,
+ "start": 3926,
+ "end": 3926.66,
+ "text": "whose"
+ },
+ {
+ "id": 6352,
+ "start": 3926.66,
+ "end": 3926.94,
+ "text": "job"
+ },
+ {
+ "id": 6353,
+ "start": 3926.94,
+ "end": 3927.04,
+ "text": "it"
+ },
+ {
+ "id": 6354,
+ "start": 3927.04,
+ "end": 3927.22,
+ "text": "is"
+ },
+ {
+ "id": 6355,
+ "start": 3927.22,
+ "end": 3927.38,
+ "text": "is"
+ },
+ {
+ "id": 6356,
+ "start": 3927.38,
+ "end": 3927.5,
+ "text": "to"
+ },
+ {
+ "id": 6357,
+ "start": 3927.5,
+ "end": 3927.68,
+ "text": "try"
+ },
+ {
+ "id": 6358,
+ "start": 3927.68,
+ "end": 3927.78,
+ "text": "to"
+ },
+ {
+ "id": 6359,
+ "start": 3927.78,
+ "end": 3928.22,
+ "text": "exploit"
+ },
+ {
+ "id": 6360,
+ "start": 3928.22,
+ "end": 3928.42,
+ "text": "our"
+ },
+ {
+ "id": 6361,
+ "start": 3928.42,
+ "end": 3928.84,
+ "text": "systems"
+ },
+ {
+ "id": 6362,
+ "start": 3928.84,
+ "end": 3929.14,
+ "text": "and"
+ },
+ {
+ "id": 6363,
+ "start": 3929.14,
+ "end": 3929.54,
+ "text": "other"
+ },
+ {
+ "id": 6364,
+ "start": 3929.54,
+ "end": 3930.1,
+ "text": "Internet"
+ },
+ {
+ "id": 6365,
+ "start": 3930.1,
+ "end": 3930.44,
+ "text": "systems"
+ },
+ {
+ "id": 6366,
+ "start": 3930.44,
+ "end": 3930.54,
+ "text": "and"
+ },
+ {
+ "id": 6367,
+ "start": 3930.54,
+ "end": 3930.74,
+ "text": "other"
+ },
+ {
+ "id": 6368,
+ "start": 3930.74,
+ "end": 3931.17,
+ "text": "systems"
+ },
+ {
+ "id": 6369,
+ "start": 3931.17,
+ "end": 3931.29,
+ "text": "as"
+ },
+ {
+ "id": 6370,
+ "start": 3931.29,
+ "end": 3931.55,
+ "text": "well."
+ },
+ {
+ "id": 6371,
+ "start": 3931.55,
+ "end": 3932.09,
+ "text": "So"
+ },
+ {
+ "id": 6372,
+ "start": 3932.09,
+ "end": 3932.23,
+ "text": "this"
+ },
+ {
+ "id": 6373,
+ "start": 3932.23,
+ "end": 3932.33,
+ "text": "is"
+ },
+ {
+ "id": 6374,
+ "start": 3932.33,
+ "end": 3932.43,
+ "text": "an"
+ },
+ {
+ "id": 6375,
+ "start": 3932.43,
+ "end": 3932.67,
+ "text": "arms"
+ },
+ {
+ "id": 6376,
+ "start": 3932.67,
+ "end": 3932.91,
+ "text": "race"
+ },
+ {
+ "id": 6377,
+ "start": 3932.91,
+ "end": 3933.83,
+ "text": "they're"
+ },
+ {
+ "id": 6378,
+ "start": 3933.83,
+ "end": 3933.95,
+ "text": "going"
+ },
+ {
+ "id": 6379,
+ "start": 3933.95,
+ "end": 3934.01,
+ "text": "to"
+ },
+ {
+ "id": 6380,
+ "start": 3934.01,
+ "end": 3934.15,
+ "text": "keep"
+ },
+ {
+ "id": 6381,
+ "start": 3934.15,
+ "end": 3934.25,
+ "text": "on"
+ },
+ {
+ "id": 6382,
+ "start": 3934.25,
+ "end": 3934.51,
+ "text": "getting"
+ },
+ {
+ "id": 6383,
+ "start": 3934.51,
+ "end": 3934.71,
+ "text": "better"
+ },
+ {
+ "id": 6384,
+ "start": 3934.71,
+ "end": 3934.79,
+ "text": "at"
+ },
+ {
+ "id": 6385,
+ "start": 3934.79,
+ "end": 3934.95,
+ "text": "this."
+ },
+ {
+ "id": 6386,
+ "start": 3934.95,
+ "end": 3935.63,
+ "text": "And"
+ },
+ {
+ "id": 6387,
+ "start": 3935.63,
+ "end": 3935.87,
+ "text": "we"
+ },
+ {
+ "id": 6388,
+ "start": 3935.87,
+ "end": 3936.03,
+ "text": "need"
+ },
+ {
+ "id": 6389,
+ "start": 3936.03,
+ "end": 3936.15,
+ "text": "to"
+ },
+ {
+ "id": 6390,
+ "start": 3936.15,
+ "end": 3936.47,
+ "text": "invest"
+ },
+ {
+ "id": 6391,
+ "start": 3936.47,
+ "end": 3936.61,
+ "text": "in"
+ },
+ {
+ "id": 6392,
+ "start": 3936.61,
+ "end": 3936.85,
+ "text": "keep"
+ },
+ {
+ "id": 6393,
+ "start": 3936.85,
+ "end": 3937.39,
+ "text": "getting"
+ },
+ {
+ "id": 6394,
+ "start": 3937.39,
+ "end": 3937.59,
+ "text": "better"
+ },
+ {
+ "id": 6395,
+ "start": 3937.59,
+ "end": 3937.67,
+ "text": "at"
+ },
+ {
+ "id": 6396,
+ "start": 3937.67,
+ "end": 3937.83,
+ "text": "this"
+ },
+ {
+ "id": 6397,
+ "start": 3937.83,
+ "end": 3938.11,
+ "text": "too."
+ },
+ {
+ "id": 6398,
+ "start": 3938.11,
+ "end": 3938.57,
+ "text": "Which"
+ },
+ {
+ "id": 6399,
+ "start": 3938.57,
+ "end": 3938.69,
+ "text": "is"
+ },
+ {
+ "id": 6400,
+ "start": 3938.69,
+ "end": 3939.05,
+ "text": "why"
+ },
+ {
+ "id": 6401,
+ "start": 3939.05,
+ "end": 3939.41,
+ "text": "one"
+ },
+ {
+ "id": 6402,
+ "start": 3939.41,
+ "end": 3939.49,
+ "text": "of"
+ },
+ {
+ "id": 6403,
+ "start": 3939.49,
+ "end": 3939.59,
+ "text": "the"
+ },
+ {
+ "id": 6404,
+ "start": 3939.59,
+ "end": 3939.75,
+ "text": "things"
+ },
+ {
+ "id": 6405,
+ "start": 3939.75,
+ "end": 3939.85,
+ "text": "I"
+ },
+ {
+ "id": 6406,
+ "start": 3939.85,
+ "end": 3940.15,
+ "text": "mentioned"
+ },
+ {
+ "id": 6407,
+ "start": 3940.15,
+ "end": 3940.37,
+ "text": "before"
+ },
+ {
+ "id": 6408,
+ "start": 3940.37,
+ "end": 3940.49,
+ "text": "is"
+ },
+ {
+ "id": 6409,
+ "start": 3940.49,
+ "end": 3940.67,
+ "text": "we're"
+ },
+ {
+ "id": 6410,
+ "start": 3940.67,
+ "end": 3940.83,
+ "text": "going"
+ },
+ {
+ "id": 6411,
+ "start": 3940.83,
+ "end": 3940.89,
+ "text": "to"
+ },
+ {
+ "id": 6412,
+ "start": 3940.89,
+ "end": 3941.38,
+ "text": "have"
+ },
+ {
+ "id": 6413,
+ "start": 3941.38,
+ "end": 3941.88,
+ "text": "more"
+ },
+ {
+ "id": 6414,
+ "start": 3941.88,
+ "end": 3942,
+ "text": "than"
+ },
+ {
+ "id": 6415,
+ "start": 3942,
+ "end": 3942.68,
+ "text": "20,000"
+ },
+ {
+ "id": 6416,
+ "start": 3942.68,
+ "end": 3942.92,
+ "text": "people"
+ },
+ {
+ "id": 6417,
+ "start": 3942.92,
+ "end": 3943.08,
+ "text": "by"
+ },
+ {
+ "id": 6418,
+ "start": 3943.08,
+ "end": 3943.2,
+ "text": "the"
+ },
+ {
+ "id": 6419,
+ "start": 3943.2,
+ "end": 3943.32,
+ "text": "end"
+ },
+ {
+ "id": 6420,
+ "start": 3943.32,
+ "end": 3943.4,
+ "text": "of"
+ },
+ {
+ "id": 6421,
+ "start": 3943.4,
+ "end": 3943.52,
+ "text": "this"
+ },
+ {
+ "id": 6422,
+ "start": 3943.52,
+ "end": 3943.66,
+ "text": "year"
+ },
+ {
+ "id": 6423,
+ "start": 3943.66,
+ "end": 3943.98,
+ "text": "working"
+ },
+ {
+ "id": 6424,
+ "start": 3943.98,
+ "end": 3944.1,
+ "text": "on"
+ },
+ {
+ "id": 6425,
+ "start": 3944.1,
+ "end": 3944.54,
+ "text": "security"
+ },
+ {
+ "id": 6426,
+ "start": 3944.54,
+ "end": 3944.66,
+ "text": "and"
+ },
+ {
+ "id": 6427,
+ "start": 3944.66,
+ "end": 3945.02,
+ "text": "content"
+ },
+ {
+ "id": 6428,
+ "start": 3945.02,
+ "end": 3945.32,
+ "text": "review"
+ },
+ {
+ "id": 6429,
+ "start": 3945.32,
+ "end": 3946.02,
+ "text": "across"
+ },
+ {
+ "id": 6430,
+ "start": 3946.02,
+ "end": 3946.18,
+ "text": "the"
+ },
+ {
+ "id": 6431,
+ "start": 3946.18,
+ "end": 3946.52,
+ "text": "company."
+ },
+ {
+ "id": 6432,
+ "start": 3946.52,
+ "end": 3947.3,
+ "text": "Speak"
+ },
+ {
+ "id": 6433,
+ "start": 3947.3,
+ "end": 3947.52,
+ "text": "for"
+ },
+ {
+ "id": 6434,
+ "start": 3947.52,
+ "end": 3947.6,
+ "text": "a"
+ },
+ {
+ "id": 6435,
+ "start": 3947.6,
+ "end": 3948.1,
+ "text": "moment"
+ },
+ {
+ "id": 6436,
+ "start": 3948.1,
+ "end": 3948.88,
+ "text": "about"
+ },
+ {
+ "id": 6437,
+ "start": 3948.88,
+ "end": 3949.74,
+ "text": "automated"
+ },
+ {
+ "id": 6438,
+ "start": 3949.74,
+ "end": 3950.24,
+ "text": "bots"
+ },
+ {
+ "id": 6439,
+ "start": 3950.24,
+ "end": 3950.62,
+ "text": "that"
+ },
+ {
+ "id": 6440,
+ "start": 3950.62,
+ "end": 3951.46,
+ "text": "spread"
+ },
+ {
+ "id": 6441,
+ "start": 3951.46,
+ "end": 3952.94,
+ "text": "disinformation."
+ },
+ {
+ "id": 6442,
+ "start": 3952.94,
+ "end": 3953.44,
+ "text": "What"
+ },
+ {
+ "id": 6443,
+ "start": 3953.44,
+ "end": 3953.58,
+ "text": "are"
+ },
+ {
+ "id": 6444,
+ "start": 3953.58,
+ "end": 3953.74,
+ "text": "you"
+ },
+ {
+ "id": 6445,
+ "start": 3953.74,
+ "end": 3954.24,
+ "text": "doing"
+ },
+ {
+ "id": 6446,
+ "start": 3954.24,
+ "end": 3954.58,
+ "text": "to"
+ },
+ {
+ "id": 6447,
+ "start": 3954.58,
+ "end": 3955.22,
+ "text": "punish"
+ },
+ {
+ "id": 6448,
+ "start": 3955.22,
+ "end": 3955.62,
+ "text": "those"
+ },
+ {
+ "id": 6449,
+ "start": 3955.62,
+ "end": 3955.86,
+ "text": "who"
+ },
+ {
+ "id": 6450,
+ "start": 3955.86,
+ "end": 3956.78,
+ "text": "exploit"
+ },
+ {
+ "id": 6451,
+ "start": 3956.78,
+ "end": 3957.04,
+ "text": "your"
+ },
+ {
+ "id": 6452,
+ "start": 3957.04,
+ "end": 3957.62,
+ "text": "platform"
+ },
+ {
+ "id": 6453,
+ "start": 3957.62,
+ "end": 3957.78,
+ "text": "in"
+ },
+ {
+ "id": 6454,
+ "start": 3957.78,
+ "end": 3958.06,
+ "text": "that"
+ },
+ {
+ "id": 6455,
+ "start": 3958.06,
+ "end": 3959.6,
+ "text": "regard?"
+ },
+ {
+ "id": 6456,
+ "start": 3959.6,
+ "end": 3961.04,
+ "text": "Well"
+ },
+ {
+ "id": 6457,
+ "start": 3961.04,
+ "end": 3961.68,
+ "text": "you're"
+ },
+ {
+ "id": 6458,
+ "start": 3961.68,
+ "end": 3961.88,
+ "text": "not"
+ },
+ {
+ "id": 6459,
+ "start": 3961.88,
+ "end": 3962.18,
+ "text": "allowed"
+ },
+ {
+ "id": 6460,
+ "start": 3962.18,
+ "end": 3962.28,
+ "text": "to"
+ },
+ {
+ "id": 6461,
+ "start": 3962.28,
+ "end": 3962.52,
+ "text": "have"
+ },
+ {
+ "id": 6462,
+ "start": 3962.52,
+ "end": 3962.56,
+ "text": "a"
+ },
+ {
+ "id": 6463,
+ "start": 3962.56,
+ "end": 3962.84,
+ "text": "fake"
+ },
+ {
+ "id": 6464,
+ "start": 3962.84,
+ "end": 3963.16,
+ "text": "account"
+ },
+ {
+ "id": 6465,
+ "start": 3963.16,
+ "end": 3963.32,
+ "text": "on"
+ },
+ {
+ "id": 6466,
+ "start": 3963.32,
+ "end": 3963.8,
+ "text": "Facebook."
+ },
+ {
+ "id": 6467,
+ "start": 3963.8,
+ "end": 3964.2,
+ "text": "Your"
+ },
+ {
+ "id": 6468,
+ "start": 3964.2,
+ "end": 3964.54,
+ "text": "content"
+ },
+ {
+ "id": 6469,
+ "start": 3964.54,
+ "end": 3964.74,
+ "text": "has"
+ },
+ {
+ "id": 6470,
+ "start": 3964.74,
+ "end": 3964.88,
+ "text": "to"
+ },
+ {
+ "id": 6471,
+ "start": 3964.88,
+ "end": 3964.98,
+ "text": "be"
+ },
+ {
+ "id": 6472,
+ "start": 3964.98,
+ "end": 3965.42,
+ "text": "authentic."
+ },
+ {
+ "id": 6473,
+ "start": 3965.42,
+ "end": 3966.24,
+ "text": "So"
+ },
+ {
+ "id": 6474,
+ "start": 3966.24,
+ "end": 3966.86,
+ "text": "we"
+ },
+ {
+ "id": 6475,
+ "start": 3966.86,
+ "end": 3967.28,
+ "text": "build"
+ },
+ {
+ "id": 6476,
+ "start": 3967.28,
+ "end": 3967.8,
+ "text": "technical"
+ },
+ {
+ "id": 6477,
+ "start": 3967.8,
+ "end": 3968.2,
+ "text": "tools"
+ },
+ {
+ "id": 6478,
+ "start": 3968.2,
+ "end": 3968.68,
+ "text": "to"
+ },
+ {
+ "id": 6479,
+ "start": 3968.68,
+ "end": 3968.86,
+ "text": "try"
+ },
+ {
+ "id": 6480,
+ "start": 3968.86,
+ "end": 3969,
+ "text": "to"
+ },
+ {
+ "id": 6481,
+ "start": 3969,
+ "end": 3969.56,
+ "text": "identify"
+ },
+ {
+ "id": 6482,
+ "start": 3969.56,
+ "end": 3969.84,
+ "text": "when"
+ },
+ {
+ "id": 6483,
+ "start": 3969.84,
+ "end": 3970.1,
+ "text": "people"
+ },
+ {
+ "id": 6484,
+ "start": 3970.1,
+ "end": 3970.24,
+ "text": "are"
+ },
+ {
+ "id": 6485,
+ "start": 3970.24,
+ "end": 3970.62,
+ "text": "creating"
+ },
+ {
+ "id": 6486,
+ "start": 3970.62,
+ "end": 3970.84,
+ "text": "fake"
+ },
+ {
+ "id": 6487,
+ "start": 3970.84,
+ "end": 3971.22,
+ "text": "accounts."
+ },
+ {
+ "id": 6488,
+ "start": 3971.22,
+ "end": 3971.84,
+ "text": "Especially"
+ },
+ {
+ "id": 6489,
+ "start": 3971.84,
+ "end": 3972.18,
+ "text": "large"
+ },
+ {
+ "id": 6490,
+ "start": 3972.18,
+ "end": 3972.54,
+ "text": "networks"
+ },
+ {
+ "id": 6491,
+ "start": 3972.54,
+ "end": 3972.68,
+ "text": "of"
+ },
+ {
+ "id": 6492,
+ "start": 3972.68,
+ "end": 3972.9,
+ "text": "fake"
+ },
+ {
+ "id": 6493,
+ "start": 3972.9,
+ "end": 3973.22,
+ "text": "accounts"
+ },
+ {
+ "id": 6494,
+ "start": 3973.22,
+ "end": 3973.4,
+ "text": "like"
+ },
+ {
+ "id": 6495,
+ "start": 3973.4,
+ "end": 3973.5,
+ "text": "the"
+ },
+ {
+ "id": 6496,
+ "start": 3973.5,
+ "end": 3973.86,
+ "text": "Russians"
+ },
+ {
+ "id": 6497,
+ "start": 3973.86,
+ "end": 3974.12,
+ "text": "have"
+ },
+ {
+ "id": 6498,
+ "start": 3974.12,
+ "end": 3974.78,
+ "text": "in"
+ },
+ {
+ "id": 6499,
+ "start": 3974.78,
+ "end": 3975.08,
+ "text": "order"
+ },
+ {
+ "id": 6500,
+ "start": 3975.08,
+ "end": 3975.26,
+ "text": "to"
+ },
+ {
+ "id": 6501,
+ "start": 3975.26,
+ "end": 3975.74,
+ "text": "remove"
+ },
+ {
+ "id": 6502,
+ "start": 3975.74,
+ "end": 3976.1,
+ "text": "all"
+ },
+ {
+ "id": 6503,
+ "start": 3976.1,
+ "end": 3976.18,
+ "text": "of"
+ },
+ {
+ "id": 6504,
+ "start": 3976.18,
+ "end": 3976.36,
+ "text": "that"
+ },
+ {
+ "id": 6505,
+ "start": 3976.36,
+ "end": 3977.43,
+ "text": "content"
+ },
+ {
+ "id": 6506,
+ "start": 3977.43,
+ "end": 3977.63,
+ "text": "after"
+ },
+ {
+ "id": 6507,
+ "start": 3977.63,
+ "end": 3977.79,
+ "text": "the"
+ },
+ {
+ "id": 6508,
+ "start": 3977.79,
+ "end": 3978.07,
+ "text": "20"
+ },
+ {
+ "id": 6509,
+ "start": 3978.07,
+ "end": 3978.37,
+ "text": "16"
+ },
+ {
+ "id": 6510,
+ "start": 3978.37,
+ "end": 3978.73,
+ "text": "election."
+ },
+ {
+ "id": 6511,
+ "start": 3978.73,
+ "end": 3979.31,
+ "text": "Our"
+ },
+ {
+ "id": 6512,
+ "start": 3979.31,
+ "end": 3979.57,
+ "text": "top"
+ },
+ {
+ "id": 6513,
+ "start": 3979.57,
+ "end": 3979.97,
+ "text": "priority"
+ },
+ {
+ "id": 6514,
+ "start": 3979.97,
+ "end": 3980.19,
+ "text": "was"
+ },
+ {
+ "id": 6515,
+ "start": 3980.19,
+ "end": 3980.73,
+ "text": "protecting"
+ },
+ {
+ "id": 6516,
+ "start": 3980.73,
+ "end": 3980.85,
+ "text": "the"
+ },
+ {
+ "id": 6517,
+ "start": 3980.85,
+ "end": 3981.35,
+ "text": "integrity"
+ },
+ {
+ "id": 6518,
+ "start": 3981.35,
+ "end": 3981.89,
+ "text": "of"
+ },
+ {
+ "id": 6519,
+ "start": 3981.89,
+ "end": 3982.15,
+ "text": "other"
+ },
+ {
+ "id": 6520,
+ "start": 3982.15,
+ "end": 3982.67,
+ "text": "elections"
+ },
+ {
+ "id": 6521,
+ "start": 3982.67,
+ "end": 3983.17,
+ "text": "around"
+ },
+ {
+ "id": 6522,
+ "start": 3983.17,
+ "end": 3983.27,
+ "text": "the"
+ },
+ {
+ "id": 6523,
+ "start": 3983.27,
+ "end": 3983.55,
+ "text": "world."
+ },
+ {
+ "id": 6524,
+ "start": 3983.55,
+ "end": 3983.99,
+ "text": "But"
+ },
+ {
+ "id": 6525,
+ "start": 3983.99,
+ "end": 3984.09,
+ "text": "at"
+ },
+ {
+ "id": 6526,
+ "start": 3984.09,
+ "end": 3984.21,
+ "text": "the"
+ },
+ {
+ "id": 6527,
+ "start": 3984.21,
+ "end": 3984.43,
+ "text": "same"
+ },
+ {
+ "id": 6528,
+ "start": 3984.43,
+ "end": 3984.77,
+ "text": "time"
+ },
+ {
+ "id": 6529,
+ "start": 3984.77,
+ "end": 3985.01,
+ "text": "we"
+ },
+ {
+ "id": 6530,
+ "start": 3985.01,
+ "end": 3985.15,
+ "text": "had"
+ },
+ {
+ "id": 6531,
+ "start": 3985.15,
+ "end": 3985.21,
+ "text": "a"
+ },
+ {
+ "id": 6532,
+ "start": 3985.21,
+ "end": 3985.61,
+ "text": "parallel"
+ },
+ {
+ "id": 6533,
+ "start": 3985.61,
+ "end": 3985.87,
+ "text": "effort"
+ },
+ {
+ "id": 6534,
+ "start": 3985.87,
+ "end": 3986.33,
+ "text": "to"
+ },
+ {
+ "id": 6535,
+ "start": 3986.33,
+ "end": 3986.67,
+ "text": "trace"
+ },
+ {
+ "id": 6536,
+ "start": 3986.67,
+ "end": 3986.99,
+ "text": "back"
+ },
+ {
+ "id": 6537,
+ "start": 3986.99,
+ "end": 3987.33,
+ "text": "to"
+ },
+ {
+ "id": 6538,
+ "start": 3987.33,
+ "end": 3987.87,
+ "text": "Russia."
+ },
+ {
+ "id": 6539,
+ "start": 3987.87,
+ "end": 3988.75,
+ "text": "The"
+ },
+ {
+ "id": 6540,
+ "start": 3988.75,
+ "end": 3989.31,
+ "text": "IRA"
+ },
+ {
+ "id": 6541,
+ "start": 3989.31,
+ "end": 3989.81,
+ "text": "activity,"
+ },
+ {
+ "id": 6542,
+ "start": 3989.81,
+ "end": 3989.97,
+ "text": "the"
+ },
+ {
+ "id": 6543,
+ "start": 3989.97,
+ "end": 3990.29,
+ "text": "Internet"
+ },
+ {
+ "id": 6544,
+ "start": 3990.29,
+ "end": 3990.65,
+ "text": "Research"
+ },
+ {
+ "id": 6545,
+ "start": 3990.65,
+ "end": 3991.01,
+ "text": "Agency"
+ },
+ {
+ "id": 6546,
+ "start": 3991.01,
+ "end": 3991.41,
+ "text": "activity."
+ },
+ {
+ "id": 6547,
+ "start": 3991.41,
+ "end": 3991.55,
+ "text": "That"
+ },
+ {
+ "id": 6548,
+ "start": 3991.55,
+ "end": 3991.65,
+ "text": "is"
+ },
+ {
+ "id": 6549,
+ "start": 3991.65,
+ "end": 3992.09,
+ "text": "the"
+ },
+ {
+ "id": 6550,
+ "start": 3992.09,
+ "end": 3992.27,
+ "text": "part"
+ },
+ {
+ "id": 6551,
+ "start": 3992.27,
+ "end": 3992.35,
+ "text": "of"
+ },
+ {
+ "id": 6552,
+ "start": 3992.35,
+ "end": 3992.45,
+ "text": "the"
+ },
+ {
+ "id": 6553,
+ "start": 3992.45,
+ "end": 3992.73,
+ "text": "Russian"
+ },
+ {
+ "id": 6554,
+ "start": 3992.73,
+ "end": 3993.15,
+ "text": "government"
+ },
+ {
+ "id": 6555,
+ "start": 3993.15,
+ "end": 3993.82,
+ "text": "that"
+ },
+ {
+ "id": 6556,
+ "start": 3993.82,
+ "end": 3994.66,
+ "text": "that"
+ },
+ {
+ "id": 6557,
+ "start": 3994.66,
+ "end": 3995.3,
+ "text": "did"
+ },
+ {
+ "id": 6558,
+ "start": 3995.3,
+ "end": 3995.46,
+ "text": "this"
+ },
+ {
+ "id": 6559,
+ "start": 3995.46,
+ "end": 3995.94,
+ "text": "activity"
+ },
+ {
+ "id": 6560,
+ "start": 3995.94,
+ "end": 3996.2,
+ "text": "in"
+ },
+ {
+ "id": 6561,
+ "start": 3996.2,
+ "end": 3996.78,
+ "text": "20"
+ },
+ {
+ "id": 6562,
+ "start": 3996.78,
+ "end": 3997.26,
+ "text": "16"
+ },
+ {
+ "id": 6563,
+ "start": 3997.26,
+ "end": 3997.8,
+ "text": "and"
+ },
+ {
+ "id": 6564,
+ "start": 3997.8,
+ "end": 3997.96,
+ "text": "just"
+ },
+ {
+ "id": 6565,
+ "start": 3997.96,
+ "end": 3998.24,
+ "text": "last"
+ },
+ {
+ "id": 6566,
+ "start": 3998.24,
+ "end": 3998.52,
+ "text": "week"
+ },
+ {
+ "id": 6567,
+ "start": 3998.52,
+ "end": 3999.36,
+ "text": "we"
+ },
+ {
+ "id": 6568,
+ "start": 3999.36,
+ "end": 3999.56,
+ "text": "were"
+ },
+ {
+ "id": 6569,
+ "start": 3999.56,
+ "end": 3999.76,
+ "text": "able"
+ },
+ {
+ "id": 6570,
+ "start": 3999.76,
+ "end": 3999.96,
+ "text": "to"
+ },
+ {
+ "id": 6571,
+ "start": 3999.96,
+ "end": 4000.98,
+ "text": "determine"
+ },
+ {
+ "id": 6572,
+ "start": 4000.98,
+ "end": 4001.58,
+ "text": "that"
+ },
+ {
+ "id": 6573,
+ "start": 4001.58,
+ "end": 4002.14,
+ "text": "a"
+ },
+ {
+ "id": 6574,
+ "start": 4002.14,
+ "end": 4002.54,
+ "text": "number"
+ },
+ {
+ "id": 6575,
+ "start": 4002.54,
+ "end": 4002.64,
+ "text": "of"
+ },
+ {
+ "id": 6576,
+ "start": 4002.64,
+ "end": 4003.06,
+ "text": "Russian"
+ },
+ {
+ "id": 6577,
+ "start": 4003.06,
+ "end": 4003.46,
+ "text": "media"
+ },
+ {
+ "id": 6578,
+ "start": 4003.46,
+ "end": 4004.2,
+ "text": "organizations"
+ },
+ {
+ "id": 6579,
+ "start": 4004.2,
+ "end": 4004.36,
+ "text": "that"
+ },
+ {
+ "id": 6580,
+ "start": 4004.36,
+ "end": 4004.5,
+ "text": "were"
+ },
+ {
+ "id": 6581,
+ "start": 4004.5,
+ "end": 4004.9,
+ "text": "sanctioned"
+ },
+ {
+ "id": 6582,
+ "start": 4004.9,
+ "end": 4005.04,
+ "text": "by"
+ },
+ {
+ "id": 6583,
+ "start": 4005.04,
+ "end": 4005.16,
+ "text": "the"
+ },
+ {
+ "id": 6584,
+ "start": 4005.16,
+ "end": 4005.42,
+ "text": "Russian"
+ },
+ {
+ "id": 6585,
+ "start": 4005.42,
+ "end": 4005.92,
+ "text": "regulator"
+ },
+ {
+ "id": 6586,
+ "start": 4005.92,
+ "end": 4006.62,
+ "text": "were"
+ },
+ {
+ "id": 6587,
+ "start": 4006.62,
+ "end": 4007.34,
+ "text": "operated"
+ },
+ {
+ "id": 6588,
+ "start": 4007.34,
+ "end": 4007.54,
+ "text": "and"
+ },
+ {
+ "id": 6589,
+ "start": 4007.54,
+ "end": 4008.2,
+ "text": "controlled"
+ },
+ {
+ "id": 6590,
+ "start": 4008.2,
+ "end": 4008.76,
+ "text": "by"
+ },
+ {
+ "id": 6591,
+ "start": 4008.76,
+ "end": 4009.28,
+ "text": "this"
+ },
+ {
+ "id": 6592,
+ "start": 4009.28,
+ "end": 4009.7,
+ "text": "Internet"
+ },
+ {
+ "id": 6593,
+ "start": 4009.7,
+ "end": 4010.1,
+ "text": "Research"
+ },
+ {
+ "id": 6594,
+ "start": 4010.1,
+ "end": 4010.5,
+ "text": "agency."
+ },
+ {
+ "id": 6595,
+ "start": 4010.5,
+ "end": 4010.76,
+ "text": "So"
+ },
+ {
+ "id": 6596,
+ "start": 4010.76,
+ "end": 4011.12,
+ "text": "we"
+ },
+ {
+ "id": 6597,
+ "start": 4011.12,
+ "end": 4011.3,
+ "text": "took"
+ },
+ {
+ "id": 6598,
+ "start": 4011.3,
+ "end": 4011.42,
+ "text": "the"
+ },
+ {
+ "id": 6599,
+ "start": 4011.42,
+ "end": 4011.7,
+ "text": "step"
+ },
+ {
+ "id": 6600,
+ "start": 4011.7,
+ "end": 4011.92,
+ "text": "last"
+ },
+ {
+ "id": 6601,
+ "start": 4011.92,
+ "end": 4012.1,
+ "text": "week."
+ },
+ {
+ "id": 6602,
+ "start": 4012.1,
+ "end": 4012.43,
+ "text": "The"
+ },
+ {
+ "id": 6603,
+ "start": 4012.43,
+ "end": 4012.71,
+ "text": "pretty"
+ },
+ {
+ "id": 6604,
+ "start": 4012.71,
+ "end": 4013.01,
+ "text": "big"
+ },
+ {
+ "id": 6605,
+ "start": 4013.01,
+ "end": 4013.21,
+ "text": "step"
+ },
+ {
+ "id": 6606,
+ "start": 4013.21,
+ "end": 4013.37,
+ "text": "for"
+ },
+ {
+ "id": 6607,
+ "start": 4013.37,
+ "end": 4013.45,
+ "text": "us"
+ },
+ {
+ "id": 6608,
+ "start": 4013.45,
+ "end": 4013.63,
+ "text": "of"
+ },
+ {
+ "id": 6609,
+ "start": 4013.63,
+ "end": 4013.99,
+ "text": "taking"
+ },
+ {
+ "id": 6610,
+ "start": 4013.99,
+ "end": 4014.33,
+ "text": "down"
+ },
+ {
+ "id": 6611,
+ "start": 4014.33,
+ "end": 4015.43,
+ "text": "sanctioned"
+ },
+ {
+ "id": 6612,
+ "start": 4015.43,
+ "end": 4015.73,
+ "text": "news"
+ },
+ {
+ "id": 6613,
+ "start": 4015.73,
+ "end": 4016.43,
+ "text": "organizations"
+ },
+ {
+ "id": 6614,
+ "start": 4016.43,
+ "end": 4016.61,
+ "text": "in"
+ },
+ {
+ "id": 6615,
+ "start": 4016.61,
+ "end": 4016.97,
+ "text": "Russia"
+ },
+ {
+ "id": 6616,
+ "start": 4016.97,
+ "end": 4017.45,
+ "text": "as"
+ },
+ {
+ "id": 6617,
+ "start": 4017.45,
+ "end": 4017.63,
+ "text": "part"
+ },
+ {
+ "id": 6618,
+ "start": 4017.63,
+ "end": 4017.71,
+ "text": "of"
+ },
+ {
+ "id": 6619,
+ "start": 4017.71,
+ "end": 4017.81,
+ "text": "an"
+ },
+ {
+ "id": 6620,
+ "start": 4017.81,
+ "end": 4018.29,
+ "text": "operation"
+ },
+ {
+ "id": 6621,
+ "start": 4018.29,
+ "end": 4018.41,
+ "text": "to"
+ },
+ {
+ "id": 6622,
+ "start": 4018.41,
+ "end": 4018.71,
+ "text": "remove"
+ },
+ {
+ "id": 6623,
+ "start": 4018.71,
+ "end": 4020.13,
+ "text": "270"
+ },
+ {
+ "id": 6624,
+ "start": 4020.13,
+ "end": 4020.87,
+ "text": "fake"
+ },
+ {
+ "id": 6625,
+ "start": 4020.87,
+ "end": 4021.19,
+ "text": "accounts"
+ },
+ {
+ "id": 6626,
+ "start": 4021.19,
+ "end": 4021.33,
+ "text": "and"
+ },
+ {
+ "id": 6627,
+ "start": 4021.33,
+ "end": 4021.69,
+ "text": "pages."
+ },
+ {
+ "id": 6628,
+ "start": 4021.69,
+ "end": 4021.87,
+ "text": "Part"
+ },
+ {
+ "id": 6629,
+ "start": 4021.87,
+ "end": 4021.93,
+ "text": "of"
+ },
+ {
+ "id": 6630,
+ "start": 4021.93,
+ "end": 4022.09,
+ "text": "their"
+ },
+ {
+ "id": 6631,
+ "start": 4022.09,
+ "end": 4022.45,
+ "text": "broader"
+ },
+ {
+ "id": 6632,
+ "start": 4022.45,
+ "end": 4022.77,
+ "text": "network"
+ },
+ {
+ "id": 6633,
+ "start": 4022.77,
+ "end": 4022.89,
+ "text": "in"
+ },
+ {
+ "id": 6634,
+ "start": 4022.89,
+ "end": 4023.88,
+ "text": "Russia."
+ },
+ {
+ "id": 6635,
+ "start": 4023.88,
+ "end": 4024.3,
+ "text": "That"
+ },
+ {
+ "id": 6636,
+ "start": 4024.3,
+ "end": 4024.8,
+ "text": "was"
+ },
+ {
+ "id": 6637,
+ "start": 4024.8,
+ "end": 4025.16,
+ "text": "actually"
+ },
+ {
+ "id": 6638,
+ "start": 4025.16,
+ "end": 4025.34,
+ "text": "not"
+ },
+ {
+ "id": 6639,
+ "start": 4025.34,
+ "end": 4025.72,
+ "text": "targeting"
+ },
+ {
+ "id": 6640,
+ "start": 4025.72,
+ "end": 4026.26,
+ "text": "international"
+ },
+ {
+ "id": 6641,
+ "start": 4026.26,
+ "end": 4026.8,
+ "text": "interference"
+ },
+ {
+ "id": 6642,
+ "start": 4026.8,
+ "end": 4026.94,
+ "text": "as"
+ },
+ {
+ "id": 6643,
+ "start": 4026.94,
+ "end": 4027.16,
+ "text": "much"
+ },
+ {
+ "id": 6644,
+ "start": 4027.16,
+ "end": 4027.32,
+ "text": "as"
+ },
+ {
+ "id": 6645,
+ "start": 4027.32,
+ "end": 4028.08,
+ "text": "sorry."
+ },
+ {
+ "id": 6646,
+ "start": 4028.08,
+ "end": 4028.38,
+ "text": "Let"
+ },
+ {
+ "id": 6647,
+ "start": 4028.38,
+ "end": 4028.46,
+ "text": "me"
+ },
+ {
+ "id": 6648,
+ "start": 4028.46,
+ "end": 4028.68,
+ "text": "correct"
+ },
+ {
+ "id": 6649,
+ "start": 4028.68,
+ "end": 4028.84,
+ "text": "that"
+ },
+ {
+ "id": 6650,
+ "start": 4028.84,
+ "end": 4029.26,
+ "text": "this"
+ },
+ {
+ "id": 6651,
+ "start": 4029.26,
+ "end": 4029.34,
+ "text": "is"
+ },
+ {
+ "id": 6652,
+ "start": 4029.34,
+ "end": 4029.92,
+ "text": "primarily"
+ },
+ {
+ "id": 6653,
+ "start": 4029.92,
+ "end": 4031.2,
+ "text": "targeting"
+ },
+ {
+ "id": 6654,
+ "start": 4031.2,
+ "end": 4031.46,
+ "text": "spreading"
+ },
+ {
+ "id": 6655,
+ "start": 4031.46,
+ "end": 4032.02,
+ "text": "misinformation"
+ },
+ {
+ "id": 6656,
+ "start": 4032.02,
+ "end": 4032.24,
+ "text": "in"
+ },
+ {
+ "id": 6657,
+ "start": 4032.24,
+ "end": 4032.56,
+ "text": "Russia"
+ },
+ {
+ "id": 6658,
+ "start": 4032.56,
+ "end": 4033.02,
+ "text": "itself"
+ },
+ {
+ "id": 6659,
+ "start": 4033.02,
+ "end": 4033.26,
+ "text": "as"
+ },
+ {
+ "id": 6660,
+ "start": 4033.26,
+ "end": 4033.46,
+ "text": "well"
+ },
+ {
+ "id": 6661,
+ "start": 4033.46,
+ "end": 4033.6,
+ "text": "as"
+ },
+ {
+ "id": 6662,
+ "start": 4033.6,
+ "end": 4033.94,
+ "text": "certain"
+ },
+ {
+ "id": 6663,
+ "start": 4033.94,
+ "end": 4034.4,
+ "text": "Russian"
+ },
+ {
+ "id": 6664,
+ "start": 4034.4,
+ "end": 4035.12,
+ "text": "speaking"
+ },
+ {
+ "id": 6665,
+ "start": 4035.12,
+ "end": 4035.54,
+ "text": "neighboring"
+ },
+ {
+ "id": 6666,
+ "start": 4035.54,
+ "end": 4035.96,
+ "text": "countries."
+ },
+ {
+ "id": 6667,
+ "start": 4035.96,
+ "end": 4036.22,
+ "text": "How"
+ },
+ {
+ "id": 6668,
+ "start": 4036.22,
+ "end": 4036.6,
+ "text": "many"
+ },
+ {
+ "id": 6669,
+ "start": 4036.6,
+ "end": 4037.2,
+ "text": "accounts"
+ },
+ {
+ "id": 6670,
+ "start": 4037.2,
+ "end": 4037.58,
+ "text": "of"
+ },
+ {
+ "id": 6671,
+ "start": 4037.58,
+ "end": 4037.86,
+ "text": "this"
+ },
+ {
+ "id": 6672,
+ "start": 4037.86,
+ "end": 4038.24,
+ "text": "type,"
+ },
+ {
+ "id": 6673,
+ "start": 4038.24,
+ "end": 4038.58,
+ "text": "have"
+ },
+ {
+ "id": 6674,
+ "start": 4038.58,
+ "end": 4038.78,
+ "text": "you"
+ },
+ {
+ "id": 6675,
+ "start": 4038.78,
+ "end": 4039.18,
+ "text": "taken"
+ },
+ {
+ "id": 6676,
+ "start": 4039.18,
+ "end": 4040.84,
+ "text": "down"
+ },
+ {
+ "id": 6677,
+ "start": 4040.84,
+ "end": 4041.84,
+ "text": "across"
+ },
+ {
+ "id": 6678,
+ "start": 4041.84,
+ "end": 4042.2,
+ "text": "in"
+ },
+ {
+ "id": 6679,
+ "start": 4042.2,
+ "end": 4042.32,
+ "text": "the"
+ },
+ {
+ "id": 6680,
+ "start": 4042.32,
+ "end": 4042.76,
+ "text": "IRA?"
+ },
+ {
+ "id": 6681,
+ "start": 4042.76,
+ "end": 4043.48,
+ "text": "Specifically,"
+ },
+ {
+ "id": 6682,
+ "start": 4043.48,
+ "end": 4044.06,
+ "text": "the"
+ },
+ {
+ "id": 6683,
+ "start": 4044.06,
+ "end": 4044.24,
+ "text": "ones"
+ },
+ {
+ "id": 6684,
+ "start": 4044.24,
+ "end": 4044.36,
+ "text": "that"
+ },
+ {
+ "id": 6685,
+ "start": 4044.36,
+ "end": 4044.56,
+ "text": "we've"
+ },
+ {
+ "id": 6686,
+ "start": 4044.56,
+ "end": 4044.86,
+ "text": "pegged"
+ },
+ {
+ "id": 6687,
+ "start": 4044.86,
+ "end": 4045.06,
+ "text": "back"
+ },
+ {
+ "id": 6688,
+ "start": 4045.06,
+ "end": 4045.14,
+ "text": "to"
+ },
+ {
+ "id": 6689,
+ "start": 4045.14,
+ "end": 4045.26,
+ "text": "the"
+ },
+ {
+ "id": 6690,
+ "start": 4045.26,
+ "end": 4046.44,
+ "text": "IRA,"
+ },
+ {
+ "id": 6691,
+ "start": 4046.44,
+ "end": 4047.3,
+ "text": "we"
+ },
+ {
+ "id": 6692,
+ "start": 4047.3,
+ "end": 4047.44,
+ "text": "can"
+ },
+ {
+ "id": 6693,
+ "start": 4047.44,
+ "end": 4047.86,
+ "text": "identify"
+ },
+ {
+ "id": 6694,
+ "start": 4047.86,
+ "end": 4048.04,
+ "text": "the"
+ },
+ {
+ "id": 6695,
+ "start": 4048.04,
+ "end": 4048.88,
+ "text": "470"
+ },
+ {
+ "id": 6696,
+ "start": 4048.88,
+ "end": 4049.26,
+ "text": "in"
+ },
+ {
+ "id": 6697,
+ "start": 4049.26,
+ "end": 4049.36,
+ "text": "the"
+ },
+ {
+ "id": 6698,
+ "start": 4049.36,
+ "end": 4049.66,
+ "text": "American"
+ },
+ {
+ "id": 6699,
+ "start": 4049.66,
+ "end": 4050.1,
+ "text": "elections"
+ },
+ {
+ "id": 6700,
+ "start": 4050.1,
+ "end": 4050.62,
+ "text": "and"
+ },
+ {
+ "id": 6701,
+ "start": 4050.62,
+ "end": 4050.74,
+ "text": "the"
+ },
+ {
+ "id": 6702,
+ "start": 4050.74,
+ "end": 4051.58,
+ "text": "270"
+ },
+ {
+ "id": 6703,
+ "start": 4051.58,
+ "end": 4051.78,
+ "text": "that"
+ },
+ {
+ "id": 6704,
+ "start": 4051.78,
+ "end": 4051.86,
+ "text": "we"
+ },
+ {
+ "id": 6705,
+ "start": 4051.86,
+ "end": 4052.44,
+ "text": "specifically"
+ },
+ {
+ "id": 6706,
+ "start": 4052.44,
+ "end": 4052.6,
+ "text": "went"
+ },
+ {
+ "id": 6707,
+ "start": 4052.6,
+ "end": 4052.88,
+ "text": "after"
+ },
+ {
+ "id": 6708,
+ "start": 4052.88,
+ "end": 4053.06,
+ "text": "in"
+ },
+ {
+ "id": 6709,
+ "start": 4053.06,
+ "end": 4053.34,
+ "text": "Russia"
+ },
+ {
+ "id": 6710,
+ "start": 4053.34,
+ "end": 4053.6,
+ "text": "last"
+ },
+ {
+ "id": 6711,
+ "start": 4053.6,
+ "end": 4053.84,
+ "text": "week."
+ },
+ {
+ "id": 6712,
+ "start": 4053.84,
+ "end": 4054.68,
+ "text": "There"
+ },
+ {
+ "id": 6713,
+ "start": 4054.68,
+ "end": 4054.82,
+ "text": "are"
+ },
+ {
+ "id": 6714,
+ "start": 4054.82,
+ "end": 4055.02,
+ "text": "many"
+ },
+ {
+ "id": 6715,
+ "start": 4055.02,
+ "end": 4055.34,
+ "text": "others"
+ },
+ {
+ "id": 6716,
+ "start": 4055.34,
+ "end": 4055.48,
+ "text": "that"
+ },
+ {
+ "id": 6717,
+ "start": 4055.48,
+ "end": 4055.62,
+ "text": "our"
+ },
+ {
+ "id": 6718,
+ "start": 4055.62,
+ "end": 4056.04,
+ "text": "systems"
+ },
+ {
+ "id": 6719,
+ "start": 4056.04,
+ "end": 4056.4,
+ "text": "catch"
+ },
+ {
+ "id": 6720,
+ "start": 4056.4,
+ "end": 4057.08,
+ "text": "which"
+ },
+ {
+ "id": 6721,
+ "start": 4057.08,
+ "end": 4057.84,
+ "text": "are"
+ },
+ {
+ "id": 6722,
+ "start": 4057.84,
+ "end": 4058.84,
+ "text": "more"
+ },
+ {
+ "id": 6723,
+ "start": 4058.84,
+ "end": 4059.18,
+ "text": "difficult"
+ },
+ {
+ "id": 6724,
+ "start": 4059.18,
+ "end": 4059.3,
+ "text": "to"
+ },
+ {
+ "id": 6725,
+ "start": 4059.3,
+ "end": 4060,
+ "text": "attribute"
+ },
+ {
+ "id": 6726,
+ "start": 4060,
+ "end": 4060.54,
+ "text": "specifically"
+ },
+ {
+ "id": 6727,
+ "start": 4060.54,
+ "end": 4060.76,
+ "text": "to"
+ },
+ {
+ "id": 6728,
+ "start": 4060.76,
+ "end": 4061.2,
+ "text": "Russian"
+ },
+ {
+ "id": 6729,
+ "start": 4061.2,
+ "end": 4061.82,
+ "text": "intelligence,"
+ },
+ {
+ "id": 6730,
+ "start": 4061.82,
+ "end": 4062.66,
+ "text": "but"
+ },
+ {
+ "id": 6731,
+ "start": 4062.66,
+ "end": 4062.92,
+ "text": "the"
+ },
+ {
+ "id": 6732,
+ "start": 4062.92,
+ "end": 4063.2,
+ "text": "number"
+ },
+ {
+ "id": 6733,
+ "start": 4063.2,
+ "end": 4063.46,
+ "text": "would"
+ },
+ {
+ "id": 6734,
+ "start": 4063.46,
+ "end": 4063.58,
+ "text": "be"
+ },
+ {
+ "id": 6735,
+ "start": 4063.58,
+ "end": 4063.78,
+ "text": "in"
+ },
+ {
+ "id": 6736,
+ "start": 4063.78,
+ "end": 4063.92,
+ "text": "the"
+ },
+ {
+ "id": 6737,
+ "start": 4063.92,
+ "end": 4064.2,
+ "text": "tens"
+ },
+ {
+ "id": 6738,
+ "start": 4064.2,
+ "end": 4064.3,
+ "text": "of"
+ },
+ {
+ "id": 6739,
+ "start": 4064.3,
+ "end": 4064.72,
+ "text": "thousands"
+ },
+ {
+ "id": 6740,
+ "start": 4064.72,
+ "end": 4064.86,
+ "text": "of"
+ },
+ {
+ "id": 6741,
+ "start": 4064.86,
+ "end": 4065.06,
+ "text": "fake"
+ },
+ {
+ "id": 6742,
+ "start": 4065.06,
+ "end": 4065.4,
+ "text": "accounts"
+ },
+ {
+ "id": 6743,
+ "start": 4065.4,
+ "end": 4065.58,
+ "text": "that"
+ },
+ {
+ "id": 6744,
+ "start": 4065.58,
+ "end": 4065.68,
+ "text": "we"
+ },
+ {
+ "id": 6745,
+ "start": 4065.68,
+ "end": 4066.1,
+ "text": "remove"
+ },
+ {
+ "id": 6746,
+ "start": 4066.1,
+ "end": 4066.9,
+ "text": "and"
+ },
+ {
+ "id": 6747,
+ "start": 4066.9,
+ "end": 4067.18,
+ "text": "I'm."
+ },
+ {
+ "id": 6748,
+ "start": 4067.18,
+ "end": 4067.46,
+ "text": "Happy"
+ },
+ {
+ "id": 6749,
+ "start": 4067.46,
+ "end": 4067.58,
+ "text": "to"
+ },
+ {
+ "id": 6750,
+ "start": 4067.58,
+ "end": 4067.74,
+ "text": "have"
+ },
+ {
+ "id": 6751,
+ "start": 4067.74,
+ "end": 4067.84,
+ "text": "my"
+ },
+ {
+ "id": 6752,
+ "start": 4067.84,
+ "end": 4068.02,
+ "text": "team"
+ },
+ {
+ "id": 6753,
+ "start": 4068.02,
+ "end": 4068.32,
+ "text": "follow"
+ },
+ {
+ "id": 6754,
+ "start": 4068.32,
+ "end": 4068.42,
+ "text": "up"
+ },
+ {
+ "id": 6755,
+ "start": 4068.42,
+ "end": 4068.56,
+ "text": "with"
+ },
+ {
+ "id": 6756,
+ "start": 4068.56,
+ "end": 4068.66,
+ "text": "you"
+ },
+ {
+ "id": 6757,
+ "start": 4068.66,
+ "end": 4068.78,
+ "text": "on"
+ },
+ {
+ "id": 6758,
+ "start": 4068.78,
+ "end": 4068.92,
+ "text": "more"
+ },
+ {
+ "id": 6759,
+ "start": 4068.92,
+ "end": 4069.36,
+ "text": "information"
+ },
+ {
+ "id": 6760,
+ "start": 4069.36,
+ "end": 4069.46,
+ "text": "if"
+ },
+ {
+ "id": 6761,
+ "start": 4069.46,
+ "end": 4069.6,
+ "text": "that"
+ },
+ {
+ "id": 6762,
+ "start": 4069.6,
+ "end": 4069.74,
+ "text": "would"
+ },
+ {
+ "id": 6763,
+ "start": 4069.74,
+ "end": 4069.84,
+ "text": "be"
+ },
+ {
+ "id": 6764,
+ "start": 4069.84,
+ "end": 4070.08,
+ "text": "helpful,"
+ },
+ {
+ "id": 6765,
+ "start": 4070.08,
+ "end": 4070.36,
+ "text": "would"
+ },
+ {
+ "id": 6766,
+ "start": 4070.36,
+ "end": 4070.5,
+ "text": "you"
+ },
+ {
+ "id": 6767,
+ "start": 4070.5,
+ "end": 4070.9,
+ "text": "please?"
+ },
+ {
+ "id": 6768,
+ "start": 4070.9,
+ "end": 4071.42,
+ "text": "I"
+ },
+ {
+ "id": 6769,
+ "start": 4071.42,
+ "end": 4071.64,
+ "text": "think"
+ },
+ {
+ "id": 6770,
+ "start": 4071.64,
+ "end": 4071.88,
+ "text": "this"
+ },
+ {
+ "id": 6771,
+ "start": 4071.88,
+ "end": 4072.06,
+ "text": "is"
+ },
+ {
+ "id": 6772,
+ "start": 4072.06,
+ "end": 4072.44,
+ "text": "very"
+ },
+ {
+ "id": 6773,
+ "start": 4072.44,
+ "end": 4073.56,
+ "text": "important."
+ },
+ {
+ "id": 6774,
+ "start": 4073.56,
+ "end": 4074.22,
+ "text": "If"
+ },
+ {
+ "id": 6775,
+ "start": 4074.22,
+ "end": 4074.38,
+ "text": "you"
+ },
+ {
+ "id": 6776,
+ "start": 4074.38,
+ "end": 4074.66,
+ "text": "knew"
+ },
+ {
+ "id": 6777,
+ "start": 4074.66,
+ "end": 4074.84,
+ "text": "in"
+ },
+ {
+ "id": 6778,
+ "start": 4074.84,
+ "end": 4076.34,
+ "text": "2,015"
+ },
+ {
+ "id": 6779,
+ "start": 4076.34,
+ "end": 4076.7,
+ "text": "that"
+ },
+ {
+ "id": 6780,
+ "start": 4076.7,
+ "end": 4077.28,
+ "text": "Cambridge"
+ },
+ {
+ "id": 6781,
+ "start": 4077.28,
+ "end": 4078.04,
+ "text": "analytic"
+ },
+ {
+ "id": 6782,
+ "start": 4078.04,
+ "end": 4078.92,
+ "text": "was"
+ },
+ {
+ "id": 6783,
+ "start": 4078.92,
+ "end": 4079.42,
+ "text": "using"
+ },
+ {
+ "id": 6784,
+ "start": 4079.42,
+ "end": 4079.6,
+ "text": "the"
+ },
+ {
+ "id": 6785,
+ "start": 4079.6,
+ "end": 4080.54,
+ "text": "information"
+ },
+ {
+ "id": 6786,
+ "start": 4080.54,
+ "end": 4080.74,
+ "text": "of"
+ },
+ {
+ "id": 6787,
+ "start": 4080.74,
+ "end": 4081.38,
+ "text": "Professor"
+ },
+ {
+ "id": 6788,
+ "start": 4081.38,
+ "end": 4081.96,
+ "text": "Cogens"
+ },
+ {
+ "id": 6789,
+ "start": 4081.96,
+ "end": 4082.82,
+ "text": "why"
+ },
+ {
+ "id": 6790,
+ "start": 4082.82,
+ "end": 4083.18,
+ "text": "didn't"
+ },
+ {
+ "id": 6791,
+ "start": 4083.18,
+ "end": 4084,
+ "text": "Facebook"
+ },
+ {
+ "id": 6792,
+ "start": 4084,
+ "end": 4084.82,
+ "text": "band"
+ },
+ {
+ "id": 6793,
+ "start": 4084.82,
+ "end": 4085.46,
+ "text": "Cambridge"
+ },
+ {
+ "id": 6794,
+ "start": 4085.46,
+ "end": 4085.78,
+ "text": "in"
+ },
+ {
+ "id": 6795,
+ "start": 4085.78,
+ "end": 4087.22,
+ "text": "2,015"
+ },
+ {
+ "id": 6796,
+ "start": 4087.22,
+ "end": 4088.12,
+ "text": "why'd"
+ },
+ {
+ "id": 6797,
+ "start": 4088.12,
+ "end": 4088.28,
+ "text": "you"
+ },
+ {
+ "id": 6798,
+ "start": 4088.28,
+ "end": 4088.64,
+ "text": "wait."
+ },
+ {
+ "id": 6799,
+ "start": 4088.64,
+ "end": 4089.6,
+ "text": "So"
+ },
+ {
+ "id": 6800,
+ "start": 4089.6,
+ "end": 4089.8,
+ "text": "that's"
+ },
+ {
+ "id": 6801,
+ "start": 4089.8,
+ "end": 4090.22,
+ "text": "a"
+ },
+ {
+ "id": 6802,
+ "start": 4090.22,
+ "end": 4090.5,
+ "text": "great"
+ },
+ {
+ "id": 6803,
+ "start": 4090.5,
+ "end": 4092.08,
+ "text": "question."
+ },
+ {
+ "id": 6804,
+ "start": 4092.08,
+ "end": 4093.04,
+ "text": "Cambridge"
+ },
+ {
+ "id": 6805,
+ "start": 4093.04,
+ "end": 4093.42,
+ "text": "Analytica"
+ },
+ {
+ "id": 6806,
+ "start": 4093.42,
+ "end": 4093.7,
+ "text": "wasn't"
+ },
+ {
+ "id": 6807,
+ "start": 4093.7,
+ "end": 4094,
+ "text": "using"
+ },
+ {
+ "id": 6808,
+ "start": 4094,
+ "end": 4094.16,
+ "text": "our"
+ },
+ {
+ "id": 6809,
+ "start": 4094.16,
+ "end": 4094.64,
+ "text": "services"
+ },
+ {
+ "id": 6810,
+ "start": 4094.64,
+ "end": 4094.78,
+ "text": "in"
+ },
+ {
+ "id": 6811,
+ "start": 4094.78,
+ "end": 4095.18,
+ "text": "20"
+ },
+ {
+ "id": 6812,
+ "start": 4095.18,
+ "end": 4095.58,
+ "text": "15"
+ },
+ {
+ "id": 6813,
+ "start": 4095.58,
+ "end": 4095.7,
+ "text": "as"
+ },
+ {
+ "id": 6814,
+ "start": 4095.7,
+ "end": 4095.86,
+ "text": "far"
+ },
+ {
+ "id": 6815,
+ "start": 4095.86,
+ "end": 4095.98,
+ "text": "as"
+ },
+ {
+ "id": 6816,
+ "start": 4095.98,
+ "end": 4096.12,
+ "text": "we"
+ },
+ {
+ "id": 6817,
+ "start": 4096.12,
+ "end": 4096.28,
+ "text": "can"
+ },
+ {
+ "id": 6818,
+ "start": 4096.28,
+ "end": 4096.52,
+ "text": "tell."
+ },
+ {
+ "id": 6819,
+ "start": 4096.52,
+ "end": 4097.3,
+ "text": "So"
+ },
+ {
+ "id": 6820,
+ "start": 4097.3,
+ "end": 4097.94,
+ "text": "this"
+ },
+ {
+ "id": 6821,
+ "start": 4097.94,
+ "end": 4098.06,
+ "text": "is"
+ },
+ {
+ "id": 6822,
+ "start": 4098.06,
+ "end": 4098.86,
+ "text": "clearly"
+ },
+ {
+ "id": 6823,
+ "start": 4098.86,
+ "end": 4098.98,
+ "text": "one"
+ },
+ {
+ "id": 6824,
+ "start": 4098.98,
+ "end": 4099.06,
+ "text": "of"
+ },
+ {
+ "id": 6825,
+ "start": 4099.06,
+ "end": 4099.14,
+ "text": "the"
+ },
+ {
+ "id": 6826,
+ "start": 4099.14,
+ "end": 4099.42,
+ "text": "questions"
+ },
+ {
+ "id": 6827,
+ "start": 4099.42,
+ "end": 4099.56,
+ "text": "that"
+ },
+ {
+ "id": 6828,
+ "start": 4099.56,
+ "end": 4099.62,
+ "text": "I"
+ },
+ {
+ "id": 6829,
+ "start": 4099.62,
+ "end": 4099.82,
+ "text": "asked"
+ },
+ {
+ "id": 6830,
+ "start": 4099.82,
+ "end": 4099.96,
+ "text": "our"
+ },
+ {
+ "id": 6831,
+ "start": 4099.96,
+ "end": 4100.16,
+ "text": "team."
+ },
+ {
+ "id": 6832,
+ "start": 4100.16,
+ "end": 4100.28,
+ "text": "As"
+ },
+ {
+ "id": 6833,
+ "start": 4100.28,
+ "end": 4100.44,
+ "text": "soon"
+ },
+ {
+ "id": 6834,
+ "start": 4100.44,
+ "end": 4100.52,
+ "text": "as"
+ },
+ {
+ "id": 6835,
+ "start": 4100.52,
+ "end": 4100.6,
+ "text": "I"
+ },
+ {
+ "id": 6836,
+ "start": 4100.6,
+ "end": 4100.82,
+ "text": "learned"
+ },
+ {
+ "id": 6837,
+ "start": 4100.82,
+ "end": 4100.98,
+ "text": "about"
+ },
+ {
+ "id": 6838,
+ "start": 4100.98,
+ "end": 4101.12,
+ "text": "this"
+ },
+ {
+ "id": 6839,
+ "start": 4101.12,
+ "end": 4101.26,
+ "text": "is"
+ },
+ {
+ "id": 6840,
+ "start": 4101.26,
+ "end": 4101.7,
+ "text": "why"
+ },
+ {
+ "id": 6841,
+ "start": 4101.7,
+ "end": 4101.84,
+ "text": "did"
+ },
+ {
+ "id": 6842,
+ "start": 4101.84,
+ "end": 4101.96,
+ "text": "we"
+ },
+ {
+ "id": 6843,
+ "start": 4101.96,
+ "end": 4102.14,
+ "text": "wait"
+ },
+ {
+ "id": 6844,
+ "start": 4102.14,
+ "end": 4102.5,
+ "text": "until"
+ },
+ {
+ "id": 6845,
+ "start": 4102.5,
+ "end": 4102.92,
+ "text": "we"
+ },
+ {
+ "id": 6846,
+ "start": 4102.92,
+ "end": 4103.1,
+ "text": "found"
+ },
+ {
+ "id": 6847,
+ "start": 4103.1,
+ "end": 4103.22,
+ "text": "out"
+ },
+ {
+ "id": 6848,
+ "start": 4103.22,
+ "end": 4103.4,
+ "text": "about"
+ },
+ {
+ "id": 6849,
+ "start": 4103.4,
+ "end": 4103.52,
+ "text": "the"
+ },
+ {
+ "id": 6850,
+ "start": 4103.52,
+ "end": 4103.88,
+ "text": "reports"
+ },
+ {
+ "id": 6851,
+ "start": 4103.88,
+ "end": 4104.18,
+ "text": "last"
+ },
+ {
+ "id": 6852,
+ "start": 4104.18,
+ "end": 4104.46,
+ "text": "month"
+ },
+ {
+ "id": 6853,
+ "start": 4104.46,
+ "end": 4104.86,
+ "text": "to"
+ },
+ {
+ "id": 6854,
+ "start": 4104.86,
+ "end": 4105.38,
+ "text": "to"
+ },
+ {
+ "id": 6855,
+ "start": 4105.38,
+ "end": 4105.64,
+ "text": "ban"
+ },
+ {
+ "id": 6856,
+ "start": 4105.64,
+ "end": 4105.82,
+ "text": "them"
+ },
+ {
+ "id": 6857,
+ "start": 4105.82,
+ "end": 4106.42,
+ "text": "it's"
+ },
+ {
+ "id": 6858,
+ "start": 4106.42,
+ "end": 4106.76,
+ "text": "because"
+ },
+ {
+ "id": 6859,
+ "start": 4106.76,
+ "end": 4107.32,
+ "text": "as"
+ },
+ {
+ "id": 6860,
+ "start": 4107.32,
+ "end": 4107.42,
+ "text": "of"
+ },
+ {
+ "id": 6861,
+ "start": 4107.42,
+ "end": 4107.54,
+ "text": "the"
+ },
+ {
+ "id": 6862,
+ "start": 4107.54,
+ "end": 4107.76,
+ "text": "time"
+ },
+ {
+ "id": 6863,
+ "start": 4107.76,
+ "end": 4107.9,
+ "text": "that"
+ },
+ {
+ "id": 6864,
+ "start": 4107.9,
+ "end": 4107.98,
+ "text": "we"
+ },
+ {
+ "id": 6865,
+ "start": 4107.98,
+ "end": 4108.3,
+ "text": "learned"
+ },
+ {
+ "id": 6866,
+ "start": 4108.3,
+ "end": 4108.48,
+ "text": "about"
+ },
+ {
+ "id": 6867,
+ "start": 4108.48,
+ "end": 4108.68,
+ "text": "their"
+ },
+ {
+ "id": 6868,
+ "start": 4108.68,
+ "end": 4109.06,
+ "text": "activity"
+ },
+ {
+ "id": 6869,
+ "start": 4109.06,
+ "end": 4109.18,
+ "text": "and"
+ },
+ {
+ "id": 6870,
+ "start": 4109.18,
+ "end": 4109.42,
+ "text": "20"
+ },
+ {
+ "id": 6871,
+ "start": 4109.42,
+ "end": 4109.84,
+ "text": "15"
+ },
+ {
+ "id": 6872,
+ "start": 4109.84,
+ "end": 4110.22,
+ "text": "they"
+ },
+ {
+ "id": 6873,
+ "start": 4110.22,
+ "end": 4110.46,
+ "text": "weren't"
+ },
+ {
+ "id": 6874,
+ "start": 4110.46,
+ "end": 4110.56,
+ "text": "an"
+ },
+ {
+ "id": 6875,
+ "start": 4110.56,
+ "end": 4111.16,
+ "text": "advertiser,"
+ },
+ {
+ "id": 6876,
+ "start": 4111.16,
+ "end": 4111.34,
+ "text": "they"
+ },
+ {
+ "id": 6877,
+ "start": 4111.34,
+ "end": 4111.54,
+ "text": "weren't"
+ },
+ {
+ "id": 6878,
+ "start": 4111.54,
+ "end": 4111.8,
+ "text": "running"
+ },
+ {
+ "id": 6879,
+ "start": 4111.8,
+ "end": 4112.22,
+ "text": "pages."
+ },
+ {
+ "id": 6880,
+ "start": 4112.22,
+ "end": 4112.92,
+ "text": "So"
+ },
+ {
+ "id": 6881,
+ "start": 4112.92,
+ "end": 4113.08,
+ "text": "we"
+ },
+ {
+ "id": 6882,
+ "start": 4113.08,
+ "end": 4113.34,
+ "text": "actually"
+ },
+ {
+ "id": 6883,
+ "start": 4113.34,
+ "end": 4113.48,
+ "text": "had"
+ },
+ {
+ "id": 6884,
+ "start": 4113.48,
+ "end": 4113.78,
+ "text": "nothing"
+ },
+ {
+ "id": 6885,
+ "start": 4113.78,
+ "end": 4113.9,
+ "text": "to"
+ },
+ {
+ "id": 6886,
+ "start": 4113.9,
+ "end": 4114.64,
+ "text": "ban."
+ },
+ {
+ "id": 6887,
+ "start": 4114.64,
+ "end": 4115.32,
+ "text": "Thank"
+ },
+ {
+ "id": 6888,
+ "start": 4115.32,
+ "end": 4115.48,
+ "text": "you,"
+ },
+ {
+ "id": 6889,
+ "start": 4115.48,
+ "end": 4116.1,
+ "text": "thank"
+ },
+ {
+ "id": 6890,
+ "start": 4116.1,
+ "end": 4116.22,
+ "text": "you,"
+ },
+ {
+ "id": 6891,
+ "start": 4116.22,
+ "end": 4116.52,
+ "text": "Mr"
+ },
+ {
+ "id": 6892,
+ "start": 4116.52,
+ "end": 4116.84,
+ "text": "Chairman."
+ },
+ {
+ "id": 6893,
+ "start": 4116.84,
+ "end": 4117.22,
+ "text": "Thank"
+ },
+ {
+ "id": 6894,
+ "start": 4117.22,
+ "end": 4117.36,
+ "text": "you,"
+ },
+ {
+ "id": 6895,
+ "start": 4117.36,
+ "end": 4117.82,
+ "text": "Senator"
+ },
+ {
+ "id": 6896,
+ "start": 4117.82,
+ "end": 4118.3,
+ "text": "Feinstein."
+ },
+ {
+ "id": 6897,
+ "start": 4118.3,
+ "end": 4118.5,
+ "text": "Now,"
+ },
+ {
+ "id": 6898,
+ "start": 4118.5,
+ "end": 4118.88,
+ "text": "Senator"
+ },
+ {
+ "id": 6899,
+ "start": 4118.88,
+ "end": 4120.62,
+ "text": "Hatch."
+ },
+ {
+ "id": 6900,
+ "start": 4120.62,
+ "end": 4122.02,
+ "text": "Well,"
+ },
+ {
+ "id": 6901,
+ "start": 4122.02,
+ "end": 4123.02,
+ "text": "this"
+ },
+ {
+ "id": 6902,
+ "start": 4123.02,
+ "end": 4124.78,
+ "text": "is"
+ },
+ {
+ "id": 6903,
+ "start": 4124.78,
+ "end": 4125.2,
+ "text": "the"
+ },
+ {
+ "id": 6904,
+ "start": 4125.2,
+ "end": 4125.4,
+ "text": "most"
+ },
+ {
+ "id": 6905,
+ "start": 4125.4,
+ "end": 4125.86,
+ "text": "intense"
+ },
+ {
+ "id": 6906,
+ "start": 4125.86,
+ "end": 4126.24,
+ "text": "public"
+ },
+ {
+ "id": 6907,
+ "start": 4126.24,
+ "end": 4126.7,
+ "text": "scrutiny"
+ },
+ {
+ "id": 6908,
+ "start": 4126.7,
+ "end": 4126.9,
+ "text": "I've"
+ },
+ {
+ "id": 6909,
+ "start": 4126.9,
+ "end": 4127.26,
+ "text": "seen"
+ },
+ {
+ "id": 6910,
+ "start": 4127.26,
+ "end": 4128.44,
+ "text": "for"
+ },
+ {
+ "id": 6911,
+ "start": 4128.44,
+ "end": 4128.48,
+ "text": "a"
+ },
+ {
+ "id": 6912,
+ "start": 4128.48,
+ "end": 4128.72,
+ "text": "tech"
+ },
+ {
+ "id": 6913,
+ "start": 4128.72,
+ "end": 4129.12,
+ "text": "related"
+ },
+ {
+ "id": 6914,
+ "start": 4129.12,
+ "end": 4129.42,
+ "text": "hearing"
+ },
+ {
+ "id": 6915,
+ "start": 4129.42,
+ "end": 4129.72,
+ "text": "since"
+ },
+ {
+ "id": 6916,
+ "start": 4129.72,
+ "end": 4129.86,
+ "text": "the"
+ },
+ {
+ "id": 6917,
+ "start": 4129.86,
+ "end": 4130.46,
+ "text": "Microsoft"
+ },
+ {
+ "id": 6918,
+ "start": 4130.46,
+ "end": 4130.82,
+ "text": "hearing"
+ },
+ {
+ "id": 6919,
+ "start": 4130.82,
+ "end": 4131.62,
+ "text": "that"
+ },
+ {
+ "id": 6920,
+ "start": 4131.62,
+ "end": 4131.8,
+ "text": "I"
+ },
+ {
+ "id": 6921,
+ "start": 4131.8,
+ "end": 4132.1,
+ "text": "shared"
+ },
+ {
+ "id": 6922,
+ "start": 4132.1,
+ "end": 4132.32,
+ "text": "back"
+ },
+ {
+ "id": 6923,
+ "start": 4132.32,
+ "end": 4132.46,
+ "text": "in"
+ },
+ {
+ "id": 6924,
+ "start": 4132.46,
+ "end": 4132.58,
+ "text": "the"
+ },
+ {
+ "id": 6925,
+ "start": 4132.58,
+ "end": 4132.76,
+ "text": "late"
+ },
+ {
+ "id": 6926,
+ "start": 4132.76,
+ "end": 4133.12,
+ "text": "19"
+ },
+ {
+ "id": 6927,
+ "start": 4133.12,
+ "end": 4133.68,
+ "text": "nineties."
+ },
+ {
+ "id": 6928,
+ "start": 4133.68,
+ "end": 4135.01,
+ "text": "The"
+ },
+ {
+ "id": 6929,
+ "start": 4135.01,
+ "end": 4135.45,
+ "text": "stories"
+ },
+ {
+ "id": 6930,
+ "start": 4135.45,
+ "end": 4135.73,
+ "text": "about"
+ },
+ {
+ "id": 6931,
+ "start": 4135.73,
+ "end": 4136.21,
+ "text": "Cambridge"
+ },
+ {
+ "id": 6932,
+ "start": 4136.21,
+ "end": 4137.01,
+ "text": "analytic"
+ },
+ {
+ "id": 6933,
+ "start": 4137.01,
+ "end": 4138.11,
+ "text": "and"
+ },
+ {
+ "id": 6934,
+ "start": 4138.11,
+ "end": 4138.43,
+ "text": "data"
+ },
+ {
+ "id": 6935,
+ "start": 4138.43,
+ "end": 4138.73,
+ "text": "mining"
+ },
+ {
+ "id": 6936,
+ "start": 4138.73,
+ "end": 4138.87,
+ "text": "on"
+ },
+ {
+ "id": 6937,
+ "start": 4138.87,
+ "end": 4139.23,
+ "text": "social"
+ },
+ {
+ "id": 6938,
+ "start": 4139.23,
+ "end": 4139.49,
+ "text": "media"
+ },
+ {
+ "id": 6939,
+ "start": 4139.49,
+ "end": 4139.63,
+ "text": "have"
+ },
+ {
+ "id": 6940,
+ "start": 4139.63,
+ "end": 4139.89,
+ "text": "raised"
+ },
+ {
+ "id": 6941,
+ "start": 4139.89,
+ "end": 4140.23,
+ "text": "serious"
+ },
+ {
+ "id": 6942,
+ "start": 4140.23,
+ "end": 4140.67,
+ "text": "concerns"
+ },
+ {
+ "id": 6943,
+ "start": 4140.67,
+ "end": 4140.93,
+ "text": "about"
+ },
+ {
+ "id": 6944,
+ "start": 4140.93,
+ "end": 4141.49,
+ "text": "consumer"
+ },
+ {
+ "id": 6945,
+ "start": 4141.49,
+ "end": 4142.13,
+ "text": "privacy."
+ },
+ {
+ "id": 6946,
+ "start": 4142.13,
+ "end": 4143.17,
+ "text": "And"
+ },
+ {
+ "id": 6947,
+ "start": 4143.17,
+ "end": 4143.69,
+ "text": "naturally"
+ },
+ {
+ "id": 6948,
+ "start": 4143.69,
+ "end": 4143.91,
+ "text": "I"
+ },
+ {
+ "id": 6949,
+ "start": 4143.91,
+ "end": 4144.07,
+ "text": "know"
+ },
+ {
+ "id": 6950,
+ "start": 4144.07,
+ "end": 4144.21,
+ "text": "you"
+ },
+ {
+ "id": 6951,
+ "start": 4144.21,
+ "end": 4144.79,
+ "text": "understand"
+ },
+ {
+ "id": 6952,
+ "start": 4144.79,
+ "end": 4145.03,
+ "text": "that"
+ },
+ {
+ "id": 6953,
+ "start": 4145.03,
+ "end": 4145.15,
+ "text": "at"
+ },
+ {
+ "id": 6954,
+ "start": 4145.15,
+ "end": 4145.33,
+ "text": "the"
+ },
+ {
+ "id": 6955,
+ "start": 4145.33,
+ "end": 4145.57,
+ "text": "same"
+ },
+ {
+ "id": 6956,
+ "start": 4145.57,
+ "end": 4145.79,
+ "text": "time,"
+ },
+ {
+ "id": 6957,
+ "start": 4145.79,
+ "end": 4146.05,
+ "text": "these"
+ },
+ {
+ "id": 6958,
+ "start": 4146.05,
+ "end": 4146.37,
+ "text": "stories"
+ },
+ {
+ "id": 6959,
+ "start": 4146.37,
+ "end": 4146.61,
+ "text": "touch"
+ },
+ {
+ "id": 6960,
+ "start": 4146.61,
+ "end": 4146.75,
+ "text": "on"
+ },
+ {
+ "id": 6961,
+ "start": 4146.75,
+ "end": 4146.87,
+ "text": "the"
+ },
+ {
+ "id": 6962,
+ "start": 4146.87,
+ "end": 4147.09,
+ "text": "very"
+ },
+ {
+ "id": 6963,
+ "start": 4147.09,
+ "end": 4147.65,
+ "text": "foundation"
+ },
+ {
+ "id": 6964,
+ "start": 4147.65,
+ "end": 4147.77,
+ "text": "of"
+ },
+ {
+ "id": 6965,
+ "start": 4147.77,
+ "end": 4147.87,
+ "text": "the"
+ },
+ {
+ "id": 6966,
+ "start": 4147.87,
+ "end": 4148.19,
+ "text": "Internet"
+ },
+ {
+ "id": 6967,
+ "start": 4148.19,
+ "end": 4149.4,
+ "text": "economy"
+ },
+ {
+ "id": 6968,
+ "start": 4149.4,
+ "end": 4150.24,
+ "text": "and"
+ },
+ {
+ "id": 6969,
+ "start": 4150.24,
+ "end": 4150.98,
+ "text": "the"
+ },
+ {
+ "id": 6970,
+ "start": 4150.98,
+ "end": 4151.32,
+ "text": "way"
+ },
+ {
+ "id": 6971,
+ "start": 4151.32,
+ "end": 4151.84,
+ "text": "the"
+ },
+ {
+ "id": 6972,
+ "start": 4151.84,
+ "end": 4152.4,
+ "text": "websites"
+ },
+ {
+ "id": 6973,
+ "start": 4152.4,
+ "end": 4153.48,
+ "text": "that"
+ },
+ {
+ "id": 6974,
+ "start": 4153.48,
+ "end": 4153.76,
+ "text": "drive"
+ },
+ {
+ "id": 6975,
+ "start": 4153.76,
+ "end": 4153.96,
+ "text": "our"
+ },
+ {
+ "id": 6976,
+ "start": 4153.96,
+ "end": 4154.5,
+ "text": "Internet"
+ },
+ {
+ "id": 6977,
+ "start": 4154.5,
+ "end": 4154.98,
+ "text": "economy"
+ },
+ {
+ "id": 6978,
+ "start": 4154.98,
+ "end": 4155.24,
+ "text": "make"
+ },
+ {
+ "id": 6979,
+ "start": 4155.24,
+ "end": 4155.54,
+ "text": "money"
+ },
+ {
+ "id": 6980,
+ "start": 4155.54,
+ "end": 4156.62,
+ "text": "some"
+ },
+ {
+ "id": 6981,
+ "start": 4156.62,
+ "end": 4156.78,
+ "text": "of"
+ },
+ {
+ "id": 6982,
+ "start": 4156.78,
+ "end": 4157.16,
+ "text": "professed"
+ },
+ {
+ "id": 6983,
+ "start": 4157.16,
+ "end": 4157.58,
+ "text": "themselves"
+ },
+ {
+ "id": 6984,
+ "start": 4157.58,
+ "end": 4158.08,
+ "text": "shocked"
+ },
+ {
+ "id": 6985,
+ "start": 4158.08,
+ "end": 4159.68,
+ "text": "shocked."
+ },
+ {
+ "id": 6986,
+ "start": 4159.68,
+ "end": 4160.66,
+ "text": "The"
+ },
+ {
+ "id": 6987,
+ "start": 4160.66,
+ "end": 4161.06,
+ "text": "companies"
+ },
+ {
+ "id": 6988,
+ "start": 4161.06,
+ "end": 4161.24,
+ "text": "like"
+ },
+ {
+ "id": 6989,
+ "start": 4161.24,
+ "end": 4161.81,
+ "text": "Facebook"
+ },
+ {
+ "id": 6990,
+ "start": 4161.81,
+ "end": 4162.29,
+ "text": "Google"
+ },
+ {
+ "id": 6991,
+ "start": 4162.29,
+ "end": 4163.11,
+ "text": "user"
+ },
+ {
+ "id": 6992,
+ "start": 4163.11,
+ "end": 4163.39,
+ "text": "data"
+ },
+ {
+ "id": 6993,
+ "start": 4163.39,
+ "end": 4163.65,
+ "text": "with"
+ },
+ {
+ "id": 6994,
+ "start": 4163.65,
+ "end": 4164.45,
+ "text": "advertisers."
+ },
+ {
+ "id": 6995,
+ "start": 4164.45,
+ "end": 4165.53,
+ "text": "Did"
+ },
+ {
+ "id": 6996,
+ "start": 4165.53,
+ "end": 4165.73,
+ "text": "any"
+ },
+ {
+ "id": 6997,
+ "start": 4165.73,
+ "end": 4165.81,
+ "text": "of"
+ },
+ {
+ "id": 6998,
+ "start": 4165.81,
+ "end": 4166.01,
+ "text": "these"
+ },
+ {
+ "id": 6999,
+ "start": 4166.01,
+ "end": 4166.51,
+ "text": "individuals"
+ },
+ {
+ "id": 7000,
+ "start": 4166.51,
+ "end": 4166.75,
+ "text": "ever"
+ },
+ {
+ "id": 7001,
+ "start": 4166.75,
+ "end": 4166.99,
+ "text": "stopped?"
+ },
+ {
+ "id": 7002,
+ "start": 4166.99,
+ "end": 4167.21,
+ "text": "Ask"
+ },
+ {
+ "id": 7003,
+ "start": 4167.21,
+ "end": 4167.65,
+ "text": "themselves"
+ },
+ {
+ "id": 7004,
+ "start": 4167.65,
+ "end": 4167.95,
+ "text": "why"
+ },
+ {
+ "id": 7005,
+ "start": 4167.95,
+ "end": 4168.43,
+ "text": "Facebook"
+ },
+ {
+ "id": 7006,
+ "start": 4168.43,
+ "end": 4168.57,
+ "text": "and"
+ },
+ {
+ "id": 7007,
+ "start": 4168.57,
+ "end": 4169.21,
+ "text": "Google"
+ },
+ {
+ "id": 7008,
+ "start": 4169.21,
+ "end": 4170.73,
+ "text": "don't"
+ },
+ {
+ "id": 7009,
+ "start": 4170.73,
+ "end": 4170.97,
+ "text": "don't"
+ },
+ {
+ "id": 7010,
+ "start": 4170.97,
+ "end": 4171.29,
+ "text": "charge"
+ },
+ {
+ "id": 7011,
+ "start": 4171.29,
+ "end": 4171.45,
+ "text": "for"
+ },
+ {
+ "id": 7012,
+ "start": 4171.45,
+ "end": 4171.93,
+ "text": "access."
+ },
+ {
+ "id": 7013,
+ "start": 4171.93,
+ "end": 4172.79,
+ "text": "Nothing"
+ },
+ {
+ "id": 7014,
+ "start": 4172.79,
+ "end": 4173.13,
+ "text": "like"
+ },
+ {
+ "id": 7015,
+ "start": 4173.13,
+ "end": 4173.33,
+ "text": "is"
+ },
+ {
+ "id": 7016,
+ "start": 4173.33,
+ "end": 4174.22,
+ "text": "free"
+ },
+ {
+ "id": 7017,
+ "start": 4174.22,
+ "end": 4175.16,
+ "text": "everything"
+ },
+ {
+ "id": 7018,
+ "start": 4175.16,
+ "end": 4175.54,
+ "text": "involves"
+ },
+ {
+ "id": 7019,
+ "start": 4175.54,
+ "end": 4175.86,
+ "text": "trade"
+ },
+ {
+ "id": 7020,
+ "start": 4175.86,
+ "end": 4176.1,
+ "text": "offs,"
+ },
+ {
+ "id": 7021,
+ "start": 4176.1,
+ "end": 4176.26,
+ "text": "if"
+ },
+ {
+ "id": 7022,
+ "start": 4176.26,
+ "end": 4176.38,
+ "text": "you"
+ },
+ {
+ "id": 7023,
+ "start": 4176.38,
+ "end": 4176.58,
+ "text": "want"
+ },
+ {
+ "id": 7024,
+ "start": 4176.58,
+ "end": 4177,
+ "text": "something"
+ },
+ {
+ "id": 7025,
+ "start": 4177,
+ "end": 4177.32,
+ "text": "without"
+ },
+ {
+ "id": 7026,
+ "start": 4177.32,
+ "end": 4177.6,
+ "text": "having"
+ },
+ {
+ "id": 7027,
+ "start": 4177.6,
+ "end": 4177.68,
+ "text": "to"
+ },
+ {
+ "id": 7028,
+ "start": 4177.68,
+ "end": 4177.86,
+ "text": "pay"
+ },
+ {
+ "id": 7029,
+ "start": 4177.86,
+ "end": 4178.12,
+ "text": "money"
+ },
+ {
+ "id": 7030,
+ "start": 4178.12,
+ "end": 4178.32,
+ "text": "for"
+ },
+ {
+ "id": 7031,
+ "start": 4178.32,
+ "end": 4178.46,
+ "text": "it"
+ },
+ {
+ "id": 7032,
+ "start": 4178.46,
+ "end": 4179.4,
+ "text": "you're"
+ },
+ {
+ "id": 7033,
+ "start": 4179.4,
+ "end": 4179.56,
+ "text": "going"
+ },
+ {
+ "id": 7034,
+ "start": 4179.56,
+ "end": 4179.62,
+ "text": "to"
+ },
+ {
+ "id": 7035,
+ "start": 4179.62,
+ "end": 4179.76,
+ "text": "have"
+ },
+ {
+ "id": 7036,
+ "start": 4179.76,
+ "end": 4179.84,
+ "text": "to"
+ },
+ {
+ "id": 7037,
+ "start": 4179.84,
+ "end": 4180.04,
+ "text": "pay"
+ },
+ {
+ "id": 7038,
+ "start": 4180.04,
+ "end": 4180.22,
+ "text": "for"
+ },
+ {
+ "id": 7039,
+ "start": 4180.22,
+ "end": 4180.3,
+ "text": "it."
+ },
+ {
+ "id": 7040,
+ "start": 4180.3,
+ "end": 4180.46,
+ "text": "In"
+ },
+ {
+ "id": 7041,
+ "start": 4180.46,
+ "end": 4180.7,
+ "text": "some"
+ },
+ {
+ "id": 7042,
+ "start": 4180.7,
+ "end": 4180.96,
+ "text": "other"
+ },
+ {
+ "id": 7043,
+ "start": 4180.96,
+ "end": 4181.12,
+ "text": "way."
+ },
+ {
+ "id": 7044,
+ "start": 4181.12,
+ "end": 4181.26,
+ "text": "It"
+ },
+ {
+ "id": 7045,
+ "start": 4181.26,
+ "end": 4181.56,
+ "text": "seems"
+ },
+ {
+ "id": 7046,
+ "start": 4181.56,
+ "end": 4181.72,
+ "text": "to"
+ },
+ {
+ "id": 7047,
+ "start": 4181.72,
+ "end": 4181.84,
+ "text": "me"
+ },
+ {
+ "id": 7048,
+ "start": 4181.84,
+ "end": 4182.52,
+ "text": "and"
+ },
+ {
+ "id": 7049,
+ "start": 4182.52,
+ "end": 4182.76,
+ "text": "that's"
+ },
+ {
+ "id": 7050,
+ "start": 4182.76,
+ "end": 4183.02,
+ "text": "where?"
+ },
+ {
+ "id": 7051,
+ "start": 4183.02,
+ "end": 4183.34,
+ "text": "What"
+ },
+ {
+ "id": 7052,
+ "start": 4183.34,
+ "end": 4183.52,
+ "text": "we're"
+ },
+ {
+ "id": 7053,
+ "start": 4183.52,
+ "end": 4183.78,
+ "text": "seeing"
+ },
+ {
+ "id": 7054,
+ "start": 4183.78,
+ "end": 4184.02,
+ "text": "here?"
+ },
+ {
+ "id": 7055,
+ "start": 4184.02,
+ "end": 4184.96,
+ "text": "And"
+ },
+ {
+ "id": 7056,
+ "start": 4184.96,
+ "end": 4185.16,
+ "text": "these"
+ },
+ {
+ "id": 7057,
+ "start": 4185.16,
+ "end": 4185.38,
+ "text": "great"
+ },
+ {
+ "id": 7058,
+ "start": 4185.38,
+ "end": 4185.9,
+ "text": "websites"
+ },
+ {
+ "id": 7059,
+ "start": 4185.9,
+ "end": 4186.08,
+ "text": "that"
+ },
+ {
+ "id": 7060,
+ "start": 4186.08,
+ "end": 4186.32,
+ "text": "don't"
+ },
+ {
+ "id": 7061,
+ "start": 4186.32,
+ "end": 4186.66,
+ "text": "charge"
+ },
+ {
+ "id": 7062,
+ "start": 4186.66,
+ "end": 4186.84,
+ "text": "for"
+ },
+ {
+ "id": 7063,
+ "start": 4186.84,
+ "end": 4187.38,
+ "text": "access."
+ },
+ {
+ "id": 7064,
+ "start": 4187.38,
+ "end": 4188.44,
+ "text": "They"
+ },
+ {
+ "id": 7065,
+ "start": 4188.44,
+ "end": 4188.96,
+ "text": "extract"
+ },
+ {
+ "id": 7066,
+ "start": 4188.96,
+ "end": 4189.36,
+ "text": "value"
+ },
+ {
+ "id": 7067,
+ "start": 4189.36,
+ "end": 4189.5,
+ "text": "in"
+ },
+ {
+ "id": 7068,
+ "start": 4189.5,
+ "end": 4189.74,
+ "text": "some"
+ },
+ {
+ "id": 7069,
+ "start": 4189.74,
+ "end": 4190,
+ "text": "other"
+ },
+ {
+ "id": 7070,
+ "start": 4190,
+ "end": 4190.88,
+ "text": "way."
+ },
+ {
+ "id": 7071,
+ "start": 4190.88,
+ "end": 4191.54,
+ "text": "And"
+ },
+ {
+ "id": 7072,
+ "start": 4191.54,
+ "end": 4191.74,
+ "text": "there's"
+ },
+ {
+ "id": 7073,
+ "start": 4191.74,
+ "end": 4192,
+ "text": "nothing"
+ },
+ {
+ "id": 7074,
+ "start": 4192,
+ "end": 4192.2,
+ "text": "wrong"
+ },
+ {
+ "id": 7075,
+ "start": 4192.2,
+ "end": 4192.38,
+ "text": "with"
+ },
+ {
+ "id": 7076,
+ "start": 4192.38,
+ "end": 4192.58,
+ "text": "that"
+ },
+ {
+ "id": 7077,
+ "start": 4192.58,
+ "end": 4192.78,
+ "text": "as"
+ },
+ {
+ "id": 7078,
+ "start": 4192.78,
+ "end": 4193.02,
+ "text": "long"
+ },
+ {
+ "id": 7079,
+ "start": 4193.02,
+ "end": 4193.18,
+ "text": "as"
+ },
+ {
+ "id": 7080,
+ "start": 4193.18,
+ "end": 4193.48,
+ "text": "they're"
+ },
+ {
+ "id": 7081,
+ "start": 4193.48,
+ "end": 4193.84,
+ "text": "upfront"
+ },
+ {
+ "id": 7082,
+ "start": 4193.84,
+ "end": 4194.14,
+ "text": "about"
+ },
+ {
+ "id": 7083,
+ "start": 4194.14,
+ "end": 4194.36,
+ "text": "what"
+ },
+ {
+ "id": 7084,
+ "start": 4194.36,
+ "end": 4194.62,
+ "text": "they're"
+ },
+ {
+ "id": 7085,
+ "start": 4194.62,
+ "end": 4194.92,
+ "text": "doing"
+ },
+ {
+ "id": 7086,
+ "start": 4194.92,
+ "end": 4195.8,
+ "text": "to"
+ },
+ {
+ "id": 7087,
+ "start": 4195.8,
+ "end": 4196,
+ "text": "my"
+ },
+ {
+ "id": 7088,
+ "start": 4196,
+ "end": 4196.26,
+ "text": "mind."
+ },
+ {
+ "id": 7089,
+ "start": 4196.26,
+ "end": 4196.38,
+ "text": "The"
+ },
+ {
+ "id": 7090,
+ "start": 4196.38,
+ "end": 4196.66,
+ "text": "issue"
+ },
+ {
+ "id": 7091,
+ "start": 4196.66,
+ "end": 4196.88,
+ "text": "here"
+ },
+ {
+ "id": 7092,
+ "start": 4196.88,
+ "end": 4197.04,
+ "text": "is"
+ },
+ {
+ "id": 7093,
+ "start": 4197.04,
+ "end": 4198.04,
+ "text": "transparency"
+ },
+ {
+ "id": 7094,
+ "start": 4198.04,
+ "end": 4198.9,
+ "text": "it's"
+ },
+ {
+ "id": 7095,
+ "start": 4198.9,
+ "end": 4199.48,
+ "text": "consumer"
+ },
+ {
+ "id": 7096,
+ "start": 4199.48,
+ "end": 4199.88,
+ "text": "choice"
+ },
+ {
+ "id": 7097,
+ "start": 4199.88,
+ "end": 4201.02,
+ "text": "to"
+ },
+ {
+ "id": 7098,
+ "start": 4201.02,
+ "end": 4201.4,
+ "text": "users"
+ },
+ {
+ "id": 7099,
+ "start": 4201.4,
+ "end": 4201.84,
+ "text": "understand"
+ },
+ {
+ "id": 7100,
+ "start": 4201.84,
+ "end": 4201.98,
+ "text": "what"
+ },
+ {
+ "id": 7101,
+ "start": 4201.98,
+ "end": 4202.18,
+ "text": "they're"
+ },
+ {
+ "id": 7102,
+ "start": 4202.18,
+ "end": 4202.5,
+ "text": "agreeing"
+ },
+ {
+ "id": 7103,
+ "start": 4202.5,
+ "end": 4203.24,
+ "text": "to"
+ },
+ {
+ "id": 7104,
+ "start": 4203.24,
+ "end": 4203.58,
+ "text": "when"
+ },
+ {
+ "id": 7105,
+ "start": 4203.58,
+ "end": 4203.84,
+ "text": "they"
+ },
+ {
+ "id": 7106,
+ "start": 4203.84,
+ "end": 4204.9,
+ "text": "access"
+ },
+ {
+ "id": 7107,
+ "start": 4204.9,
+ "end": 4205.02,
+ "text": "a"
+ },
+ {
+ "id": 7108,
+ "start": 4205.02,
+ "end": 4205.5,
+ "text": "website"
+ },
+ {
+ "id": 7109,
+ "start": 4205.5,
+ "end": 4205.62,
+ "text": "or"
+ },
+ {
+ "id": 7110,
+ "start": 4205.62,
+ "end": 4205.9,
+ "text": "agree"
+ },
+ {
+ "id": 7111,
+ "start": 4205.9,
+ "end": 4206.02,
+ "text": "to"
+ },
+ {
+ "id": 7112,
+ "start": 4206.02,
+ "end": 4206.32,
+ "text": "terms"
+ },
+ {
+ "id": 7113,
+ "start": 4206.32,
+ "end": 4206.46,
+ "text": "of"
+ },
+ {
+ "id": 7114,
+ "start": 4206.46,
+ "end": 4207.34,
+ "text": "service,"
+ },
+ {
+ "id": 7115,
+ "start": 4207.34,
+ "end": 4207.9,
+ "text": "our"
+ },
+ {
+ "id": 7116,
+ "start": 4207.9,
+ "end": 4208.42,
+ "text": "websites,"
+ },
+ {
+ "id": 7117,
+ "start": 4208.42,
+ "end": 4209.14,
+ "text": "upfront"
+ },
+ {
+ "id": 7118,
+ "start": 4209.14,
+ "end": 4210.06,
+ "text": "about"
+ },
+ {
+ "id": 7119,
+ "start": 4210.06,
+ "end": 4210.3,
+ "text": "how"
+ },
+ {
+ "id": 7120,
+ "start": 4210.3,
+ "end": 4210.48,
+ "text": "they"
+ },
+ {
+ "id": 7121,
+ "start": 4210.48,
+ "end": 4211.1,
+ "text": "extract"
+ },
+ {
+ "id": 7122,
+ "start": 4211.1,
+ "end": 4212.02,
+ "text": "value"
+ },
+ {
+ "id": 7123,
+ "start": 4212.02,
+ "end": 4212.2,
+ "text": "from"
+ },
+ {
+ "id": 7124,
+ "start": 4212.2,
+ "end": 4212.56,
+ "text": "users"
+ },
+ {
+ "id": 7125,
+ "start": 4212.56,
+ "end": 4212.74,
+ "text": "who"
+ },
+ {
+ "id": 7126,
+ "start": 4212.74,
+ "end": 4212.86,
+ "text": "do"
+ },
+ {
+ "id": 7127,
+ "start": 4212.86,
+ "end": 4213.02,
+ "text": "they"
+ },
+ {
+ "id": 7128,
+ "start": 4213.02,
+ "end": 4213.28,
+ "text": "hide"
+ },
+ {
+ "id": 7129,
+ "start": 4213.28,
+ "end": 4213.4,
+ "text": "the"
+ },
+ {
+ "id": 7130,
+ "start": 4213.4,
+ "end": 4213.78,
+ "text": "ball?"
+ },
+ {
+ "id": 7131,
+ "start": 4213.78,
+ "end": 4214.62,
+ "text": "The"
+ },
+ {
+ "id": 7132,
+ "start": 4214.62,
+ "end": 4215.1,
+ "text": "consumers"
+ },
+ {
+ "id": 7133,
+ "start": 4215.1,
+ "end": 4215.32,
+ "text": "have"
+ },
+ {
+ "id": 7134,
+ "start": 4215.32,
+ "end": 4215.44,
+ "text": "the"
+ },
+ {
+ "id": 7135,
+ "start": 4215.44,
+ "end": 4215.96,
+ "text": "information"
+ },
+ {
+ "id": 7136,
+ "start": 4215.96,
+ "end": 4216.16,
+ "text": "they"
+ },
+ {
+ "id": 7137,
+ "start": 4216.16,
+ "end": 4216.36,
+ "text": "need"
+ },
+ {
+ "id": 7138,
+ "start": 4216.36,
+ "end": 4216.48,
+ "text": "to"
+ },
+ {
+ "id": 7139,
+ "start": 4216.48,
+ "end": 4216.64,
+ "text": "make"
+ },
+ {
+ "id": 7140,
+ "start": 4216.64,
+ "end": 4216.74,
+ "text": "an"
+ },
+ {
+ "id": 7141,
+ "start": 4216.74,
+ "end": 4217.18,
+ "text": "informed"
+ },
+ {
+ "id": 7142,
+ "start": 4217.18,
+ "end": 4217.56,
+ "text": "choice"
+ },
+ {
+ "id": 7143,
+ "start": 4217.56,
+ "end": 4218.58,
+ "text": "regarding"
+ },
+ {
+ "id": 7144,
+ "start": 4218.58,
+ "end": 4218.9,
+ "text": "whether"
+ },
+ {
+ "id": 7145,
+ "start": 4218.9,
+ "end": 4219.04,
+ "text": "or"
+ },
+ {
+ "id": 7146,
+ "start": 4219.04,
+ "end": 4219.22,
+ "text": "not"
+ },
+ {
+ "id": 7147,
+ "start": 4219.22,
+ "end": 4219.36,
+ "text": "to"
+ },
+ {
+ "id": 7148,
+ "start": 4219.36,
+ "end": 4219.64,
+ "text": "visit"
+ },
+ {
+ "id": 7149,
+ "start": 4219.64,
+ "end": 4219.72,
+ "text": "a"
+ },
+ {
+ "id": 7150,
+ "start": 4219.72,
+ "end": 4220.28,
+ "text": "particular"
+ },
+ {
+ "id": 7151,
+ "start": 4220.28,
+ "end": 4220.92,
+ "text": "website"
+ },
+ {
+ "id": 7152,
+ "start": 4220.92,
+ "end": 4221.76,
+ "text": "to"
+ },
+ {
+ "id": 7153,
+ "start": 4221.76,
+ "end": 4222.32,
+ "text": "mind"
+ },
+ {
+ "id": 7154,
+ "start": 4222.32,
+ "end": 4222.46,
+ "text": "to"
+ },
+ {
+ "id": 7155,
+ "start": 4222.46,
+ "end": 4222.62,
+ "text": "my"
+ },
+ {
+ "id": 7156,
+ "start": 4222.62,
+ "end": 4222.84,
+ "text": "mind."
+ },
+ {
+ "id": 7157,
+ "start": 4222.84,
+ "end": 4223.04,
+ "text": "These"
+ },
+ {
+ "id": 7158,
+ "start": 4223.04,
+ "end": 4223.2,
+ "text": "are"
+ },
+ {
+ "id": 7159,
+ "start": 4223.2,
+ "end": 4223.56,
+ "text": "questions"
+ },
+ {
+ "id": 7160,
+ "start": 4223.56,
+ "end": 4223.7,
+ "text": "that"
+ },
+ {
+ "id": 7161,
+ "start": 4223.7,
+ "end": 4223.84,
+ "text": "we"
+ },
+ {
+ "id": 7162,
+ "start": 4223.84,
+ "end": 4224.06,
+ "text": "should"
+ },
+ {
+ "id": 7163,
+ "start": 4224.06,
+ "end": 4224.42,
+ "text": "ask"
+ },
+ {
+ "id": 7164,
+ "start": 4224.42,
+ "end": 4225,
+ "text": "or"
+ },
+ {
+ "id": 7165,
+ "start": 4225,
+ "end": 4225.18,
+ "text": "be"
+ },
+ {
+ "id": 7166,
+ "start": 4225.18,
+ "end": 4225.66,
+ "text": "focusing"
+ },
+ {
+ "id": 7167,
+ "start": 4225.66,
+ "end": 4226.48,
+ "text": "on"
+ },
+ {
+ "id": 7168,
+ "start": 4226.48,
+ "end": 4227.32,
+ "text": "now,"
+ },
+ {
+ "id": 7169,
+ "start": 4227.32,
+ "end": 4228.34,
+ "text": "Mr"
+ },
+ {
+ "id": 7170,
+ "start": 4228.34,
+ "end": 4228.76,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 7171,
+ "start": 4228.76,
+ "end": 4228.98,
+ "text": "I"
+ },
+ {
+ "id": 7172,
+ "start": 4228.98,
+ "end": 4229.34,
+ "text": "remember"
+ },
+ {
+ "id": 7173,
+ "start": 4229.34,
+ "end": 4229.62,
+ "text": "well,"
+ },
+ {
+ "id": 7174,
+ "start": 4229.62,
+ "end": 4229.84,
+ "text": "your"
+ },
+ {
+ "id": 7175,
+ "start": 4229.84,
+ "end": 4230.08,
+ "text": "first"
+ },
+ {
+ "id": 7176,
+ "start": 4230.08,
+ "end": 4230.38,
+ "text": "visit,"
+ },
+ {
+ "id": 7177,
+ "start": 4230.38,
+ "end": 4230.52,
+ "text": "the"
+ },
+ {
+ "id": 7178,
+ "start": 4230.52,
+ "end": 4230.88,
+ "text": "Capital"
+ },
+ {
+ "id": 7179,
+ "start": 4230.88,
+ "end": 4231.1,
+ "text": "Hill."
+ },
+ {
+ "id": 7180,
+ "start": 4231.1,
+ "end": 4231.28,
+ "text": "Back"
+ },
+ {
+ "id": 7181,
+ "start": 4231.28,
+ "end": 4231.42,
+ "text": "in"
+ },
+ {
+ "id": 7182,
+ "start": 4231.42,
+ "end": 4232.36,
+ "text": "2,010"
+ },
+ {
+ "id": 7183,
+ "start": 4232.36,
+ "end": 4233.44,
+ "text": "you"
+ },
+ {
+ "id": 7184,
+ "start": 4233.44,
+ "end": 4233.68,
+ "text": "spoke"
+ },
+ {
+ "id": 7185,
+ "start": 4233.68,
+ "end": 4233.8,
+ "text": "to"
+ },
+ {
+ "id": 7186,
+ "start": 4233.8,
+ "end": 4233.94,
+ "text": "the"
+ },
+ {
+ "id": 7187,
+ "start": 4233.94,
+ "end": 4234.24,
+ "text": "Senate"
+ },
+ {
+ "id": 7188,
+ "start": 4234.24,
+ "end": 4234.76,
+ "text": "Republican"
+ },
+ {
+ "id": 7189,
+ "start": 4234.76,
+ "end": 4234.94,
+ "text": "high"
+ },
+ {
+ "id": 7190,
+ "start": 4234.94,
+ "end": 4235.18,
+ "text": "tech"
+ },
+ {
+ "id": 7191,
+ "start": 4235.18,
+ "end": 4235.48,
+ "text": "task"
+ },
+ {
+ "id": 7192,
+ "start": 4235.48,
+ "end": 4235.76,
+ "text": "force,"
+ },
+ {
+ "id": 7193,
+ "start": 4235.76,
+ "end": 4235.96,
+ "text": "which"
+ },
+ {
+ "id": 7194,
+ "start": 4235.96,
+ "end": 4236.2,
+ "text": "I"
+ },
+ {
+ "id": 7195,
+ "start": 4236.2,
+ "end": 4236.58,
+ "text": "chair."
+ },
+ {
+ "id": 7196,
+ "start": 4236.58,
+ "end": 4237.46,
+ "text": "You"
+ },
+ {
+ "id": 7197,
+ "start": 4237.46,
+ "end": 4237.68,
+ "text": "said"
+ },
+ {
+ "id": 7198,
+ "start": 4237.68,
+ "end": 4237.92,
+ "text": "back"
+ },
+ {
+ "id": 7199,
+ "start": 4237.92,
+ "end": 4238.22,
+ "text": "then,"
+ },
+ {
+ "id": 7200,
+ "start": 4238.22,
+ "end": 4238.44,
+ "text": "that"
+ },
+ {
+ "id": 7201,
+ "start": 4238.44,
+ "end": 4239,
+ "text": "Facebook"
+ },
+ {
+ "id": 7202,
+ "start": 4239,
+ "end": 4239.22,
+ "text": "would"
+ },
+ {
+ "id": 7203,
+ "start": 4239.22,
+ "end": 4239.8,
+ "text": "always"
+ },
+ {
+ "id": 7204,
+ "start": 4239.8,
+ "end": 4240.04,
+ "text": "be"
+ },
+ {
+ "id": 7205,
+ "start": 4240.04,
+ "end": 4241.02,
+ "text": "free."
+ },
+ {
+ "id": 7206,
+ "start": 4241.02,
+ "end": 4241.8,
+ "text": "Is"
+ },
+ {
+ "id": 7207,
+ "start": 4241.8,
+ "end": 4241.96,
+ "text": "that"
+ },
+ {
+ "id": 7208,
+ "start": 4241.96,
+ "end": 4242.2,
+ "text": "still"
+ },
+ {
+ "id": 7209,
+ "start": 4242.2,
+ "end": 4242.36,
+ "text": "your"
+ },
+ {
+ "id": 7210,
+ "start": 4242.36,
+ "end": 4244.1,
+ "text": "objective,"
+ },
+ {
+ "id": 7211,
+ "start": 4244.1,
+ "end": 4245.12,
+ "text": "Senator?"
+ },
+ {
+ "id": 7212,
+ "start": 4245.12,
+ "end": 4246.08,
+ "text": "Yes,"
+ },
+ {
+ "id": 7213,
+ "start": 4246.08,
+ "end": 4246.7,
+ "text": "there"
+ },
+ {
+ "id": 7214,
+ "start": 4246.7,
+ "end": 4246.9,
+ "text": "will"
+ },
+ {
+ "id": 7215,
+ "start": 4246.9,
+ "end": 4247.22,
+ "text": "always"
+ },
+ {
+ "id": 7216,
+ "start": 4247.22,
+ "end": 4247.36,
+ "text": "be"
+ },
+ {
+ "id": 7217,
+ "start": 4247.36,
+ "end": 4247.46,
+ "text": "a"
+ },
+ {
+ "id": 7218,
+ "start": 4247.46,
+ "end": 4247.76,
+ "text": "version"
+ },
+ {
+ "id": 7219,
+ "start": 4247.76,
+ "end": 4247.88,
+ "text": "of"
+ },
+ {
+ "id": 7220,
+ "start": 4247.88,
+ "end": 4248.28,
+ "text": "Facebook."
+ },
+ {
+ "id": 7221,
+ "start": 4248.28,
+ "end": 4248.42,
+ "text": "That"
+ },
+ {
+ "id": 7222,
+ "start": 4248.42,
+ "end": 4248.58,
+ "text": "is"
+ },
+ {
+ "id": 7223,
+ "start": 4248.58,
+ "end": 4248.84,
+ "text": "free"
+ },
+ {
+ "id": 7224,
+ "start": 4248.84,
+ "end": 4249.02,
+ "text": "it"
+ },
+ {
+ "id": 7225,
+ "start": 4249.02,
+ "end": 4249.16,
+ "text": "is"
+ },
+ {
+ "id": 7226,
+ "start": 4249.16,
+ "end": 4249.32,
+ "text": "our"
+ },
+ {
+ "id": 7227,
+ "start": 4249.32,
+ "end": 4249.6,
+ "text": "mission"
+ },
+ {
+ "id": 7228,
+ "start": 4249.6,
+ "end": 4249.78,
+ "text": "to"
+ },
+ {
+ "id": 7229,
+ "start": 4249.78,
+ "end": 4249.94,
+ "text": "try"
+ },
+ {
+ "id": 7230,
+ "start": 4249.94,
+ "end": 4250.08,
+ "text": "to"
+ },
+ {
+ "id": 7231,
+ "start": 4250.08,
+ "end": 4250.28,
+ "text": "help"
+ },
+ {
+ "id": 7232,
+ "start": 4250.28,
+ "end": 4250.64,
+ "text": "connect"
+ },
+ {
+ "id": 7233,
+ "start": 4250.64,
+ "end": 4251.06,
+ "text": "everyone"
+ },
+ {
+ "id": 7234,
+ "start": 4251.06,
+ "end": 4251.28,
+ "text": "around"
+ },
+ {
+ "id": 7235,
+ "start": 4251.28,
+ "end": 4251.38,
+ "text": "the"
+ },
+ {
+ "id": 7236,
+ "start": 4251.38,
+ "end": 4251.62,
+ "text": "world"
+ },
+ {
+ "id": 7237,
+ "start": 4251.62,
+ "end": 4251.86,
+ "text": "and"
+ },
+ {
+ "id": 7238,
+ "start": 4251.86,
+ "end": 4251.96,
+ "text": "to"
+ },
+ {
+ "id": 7239,
+ "start": 4251.96,
+ "end": 4252.16,
+ "text": "bring"
+ },
+ {
+ "id": 7240,
+ "start": 4252.16,
+ "end": 4252.28,
+ "text": "the"
+ },
+ {
+ "id": 7241,
+ "start": 4252.28,
+ "end": 4252.44,
+ "text": "world"
+ },
+ {
+ "id": 7242,
+ "start": 4252.44,
+ "end": 4252.77,
+ "text": "closer"
+ },
+ {
+ "id": 7243,
+ "start": 4252.77,
+ "end": 4253.59,
+ "text": "together"
+ },
+ {
+ "id": 7244,
+ "start": 4253.59,
+ "end": 4253.71,
+ "text": "in"
+ },
+ {
+ "id": 7245,
+ "start": 4253.71,
+ "end": 4253.93,
+ "text": "order"
+ },
+ {
+ "id": 7246,
+ "start": 4253.93,
+ "end": 4254.01,
+ "text": "to"
+ },
+ {
+ "id": 7247,
+ "start": 4254.01,
+ "end": 4254.15,
+ "text": "do"
+ },
+ {
+ "id": 7248,
+ "start": 4254.15,
+ "end": 4254.31,
+ "text": "that."
+ },
+ {
+ "id": 7249,
+ "start": 4254.31,
+ "end": 4254.55,
+ "text": "We"
+ },
+ {
+ "id": 7250,
+ "start": 4254.55,
+ "end": 4254.89,
+ "text": "believe"
+ },
+ {
+ "id": 7251,
+ "start": 4254.89,
+ "end": 4255.11,
+ "text": "that"
+ },
+ {
+ "id": 7252,
+ "start": 4255.11,
+ "end": 4255.21,
+ "text": "we"
+ },
+ {
+ "id": 7253,
+ "start": 4255.21,
+ "end": 4255.41,
+ "text": "need"
+ },
+ {
+ "id": 7254,
+ "start": 4255.41,
+ "end": 4255.47,
+ "text": "to"
+ },
+ {
+ "id": 7255,
+ "start": 4255.47,
+ "end": 4255.69,
+ "text": "offer"
+ },
+ {
+ "id": 7256,
+ "start": 4255.69,
+ "end": 4255.75,
+ "text": "a"
+ },
+ {
+ "id": 7257,
+ "start": 4255.75,
+ "end": 4256.09,
+ "text": "service"
+ },
+ {
+ "id": 7258,
+ "start": 4256.09,
+ "end": 4256.23,
+ "text": "that"
+ },
+ {
+ "id": 7259,
+ "start": 4256.23,
+ "end": 4256.55,
+ "text": "everyone"
+ },
+ {
+ "id": 7260,
+ "start": 4256.55,
+ "end": 4256.69,
+ "text": "can"
+ },
+ {
+ "id": 7261,
+ "start": 4256.69,
+ "end": 4257.07,
+ "text": "afford"
+ },
+ {
+ "id": 7262,
+ "start": 4257.07,
+ "end": 4257.67,
+ "text": "and"
+ },
+ {
+ "id": 7263,
+ "start": 4257.67,
+ "end": 4257.87,
+ "text": "we're"
+ },
+ {
+ "id": 7264,
+ "start": 4257.87,
+ "end": 4258.25,
+ "text": "committed"
+ },
+ {
+ "id": 7265,
+ "start": 4258.25,
+ "end": 4258.47,
+ "text": "to"
+ },
+ {
+ "id": 7266,
+ "start": 4258.47,
+ "end": 4258.69,
+ "text": "doing"
+ },
+ {
+ "id": 7267,
+ "start": 4258.69,
+ "end": 4258.85,
+ "text": "that."
+ },
+ {
+ "id": 7268,
+ "start": 4258.85,
+ "end": 4259.17,
+ "text": "Well,"
+ },
+ {
+ "id": 7269,
+ "start": 4259.17,
+ "end": 4259.37,
+ "text": "if"
+ },
+ {
+ "id": 7270,
+ "start": 4259.37,
+ "end": 4259.69,
+ "text": "so,"
+ },
+ {
+ "id": 7271,
+ "start": 4259.69,
+ "end": 4259.87,
+ "text": "how"
+ },
+ {
+ "id": 7272,
+ "start": 4259.87,
+ "end": 4259.99,
+ "text": "do"
+ },
+ {
+ "id": 7273,
+ "start": 4259.99,
+ "end": 4260.13,
+ "text": "you"
+ },
+ {
+ "id": 7274,
+ "start": 4260.13,
+ "end": 4260.59,
+ "text": "sustain"
+ },
+ {
+ "id": 7275,
+ "start": 4260.59,
+ "end": 4260.71,
+ "text": "a"
+ },
+ {
+ "id": 7276,
+ "start": 4260.71,
+ "end": 4261.03,
+ "text": "business"
+ },
+ {
+ "id": 7277,
+ "start": 4261.03,
+ "end": 4261.31,
+ "text": "model"
+ },
+ {
+ "id": 7278,
+ "start": 4261.31,
+ "end": 4261.39,
+ "text": "in"
+ },
+ {
+ "id": 7279,
+ "start": 4261.39,
+ "end": 4261.57,
+ "text": "which"
+ },
+ {
+ "id": 7280,
+ "start": 4261.57,
+ "end": 4261.97,
+ "text": "users"
+ },
+ {
+ "id": 7281,
+ "start": 4261.97,
+ "end": 4262.21,
+ "text": "don't"
+ },
+ {
+ "id": 7282,
+ "start": 4262.21,
+ "end": 4262.41,
+ "text": "pay"
+ },
+ {
+ "id": 7283,
+ "start": 4262.41,
+ "end": 4262.53,
+ "text": "for"
+ },
+ {
+ "id": 7284,
+ "start": 4262.53,
+ "end": 4262.67,
+ "text": "your"
+ },
+ {
+ "id": 7285,
+ "start": 4262.67,
+ "end": 4265.34,
+ "text": "service."
+ },
+ {
+ "id": 7286,
+ "start": 4265.34,
+ "end": 4266.3,
+ "text": "Senator,"
+ },
+ {
+ "id": 7287,
+ "start": 4266.3,
+ "end": 4266.44,
+ "text": "we"
+ },
+ {
+ "id": 7288,
+ "start": 4266.44,
+ "end": 4266.6,
+ "text": "run"
+ },
+ {
+ "id": 7289,
+ "start": 4266.6,
+ "end": 4266.88,
+ "text": "ads."
+ },
+ {
+ "id": 7290,
+ "start": 4266.88,
+ "end": 4269.22,
+ "text": "I"
+ },
+ {
+ "id": 7291,
+ "start": 4269.22,
+ "end": 4269.78,
+ "text": "see"
+ },
+ {
+ "id": 7292,
+ "start": 4269.78,
+ "end": 4270.76,
+ "text": "that's"
+ },
+ {
+ "id": 7293,
+ "start": 4270.76,
+ "end": 4271.02,
+ "text": "great."
+ },
+ {
+ "id": 7294,
+ "start": 4271.02,
+ "end": 4271.4,
+ "text": "Whenever"
+ },
+ {
+ "id": 7295,
+ "start": 4271.4,
+ "end": 4271.48,
+ "text": "a"
+ },
+ {
+ "id": 7296,
+ "start": 4271.48,
+ "end": 4272.1,
+ "text": "controversy"
+ },
+ {
+ "id": 7297,
+ "start": 4272.1,
+ "end": 4272.34,
+ "text": "like"
+ },
+ {
+ "id": 7298,
+ "start": 4272.34,
+ "end": 4272.52,
+ "text": "this"
+ },
+ {
+ "id": 7299,
+ "start": 4272.52,
+ "end": 4273.04,
+ "text": "arises"
+ },
+ {
+ "id": 7300,
+ "start": 4273.04,
+ "end": 4273.26,
+ "text": "there's"
+ },
+ {
+ "id": 7301,
+ "start": 4273.26,
+ "end": 4273.5,
+ "text": "always"
+ },
+ {
+ "id": 7302,
+ "start": 4273.5,
+ "end": 4273.6,
+ "text": "a"
+ },
+ {
+ "id": 7303,
+ "start": 4273.6,
+ "end": 4273.98,
+ "text": "danger"
+ },
+ {
+ "id": 7304,
+ "start": 4273.98,
+ "end": 4274.18,
+ "text": "that"
+ },
+ {
+ "id": 7305,
+ "start": 4274.18,
+ "end": 4274.82,
+ "text": "Congress's"
+ },
+ {
+ "id": 7306,
+ "start": 4274.82,
+ "end": 4275.66,
+ "text": "response"
+ },
+ {
+ "id": 7307,
+ "start": 4275.66,
+ "end": 4276.62,
+ "text": "will"
+ },
+ {
+ "id": 7308,
+ "start": 4276.62,
+ "end": 4276.74,
+ "text": "be"
+ },
+ {
+ "id": 7309,
+ "start": 4276.74,
+ "end": 4276.9,
+ "text": "to"
+ },
+ {
+ "id": 7310,
+ "start": 4276.9,
+ "end": 4277.2,
+ "text": "step"
+ },
+ {
+ "id": 7311,
+ "start": 4277.2,
+ "end": 4277.52,
+ "text": "in"
+ },
+ {
+ "id": 7312,
+ "start": 4277.52,
+ "end": 4278.06,
+ "text": "and"
+ },
+ {
+ "id": 7313,
+ "start": 4278.06,
+ "end": 4278.36,
+ "text": "over"
+ },
+ {
+ "id": 7314,
+ "start": 4278.36,
+ "end": 4278.88,
+ "text": "regulate"
+ },
+ {
+ "id": 7315,
+ "start": 4278.88,
+ "end": 4279.79,
+ "text": "that's"
+ },
+ {
+ "id": 7316,
+ "start": 4279.79,
+ "end": 4280.11,
+ "text": "the"
+ },
+ {
+ "id": 7317,
+ "start": 4280.11,
+ "end": 4280.55,
+ "text": "experience"
+ },
+ {
+ "id": 7318,
+ "start": 4280.55,
+ "end": 4280.71,
+ "text": "that"
+ },
+ {
+ "id": 7319,
+ "start": 4280.71,
+ "end": 4280.89,
+ "text": "I've"
+ },
+ {
+ "id": 7320,
+ "start": 4280.89,
+ "end": 4281.01,
+ "text": "had"
+ },
+ {
+ "id": 7321,
+ "start": 4281.01,
+ "end": 4281.29,
+ "text": "in"
+ },
+ {
+ "id": 7322,
+ "start": 4281.29,
+ "end": 4281.43,
+ "text": "my"
+ },
+ {
+ "id": 7323,
+ "start": 4281.43,
+ "end": 4281.99,
+ "text": "42"
+ },
+ {
+ "id": 7324,
+ "start": 4281.99,
+ "end": 4282.25,
+ "text": "years"
+ },
+ {
+ "id": 7325,
+ "start": 4282.25,
+ "end": 4282.49,
+ "text": "here."
+ },
+ {
+ "id": 7326,
+ "start": 4282.49,
+ "end": 4283.27,
+ "text": "In"
+ },
+ {
+ "id": 7327,
+ "start": 4283.27,
+ "end": 4283.47,
+ "text": "your"
+ },
+ {
+ "id": 7328,
+ "start": 4283.47,
+ "end": 4283.71,
+ "text": "view,"
+ },
+ {
+ "id": 7329,
+ "start": 4283.71,
+ "end": 4283.93,
+ "text": "what"
+ },
+ {
+ "id": 7330,
+ "start": 4283.93,
+ "end": 4284.17,
+ "text": "sorts"
+ },
+ {
+ "id": 7331,
+ "start": 4284.17,
+ "end": 4284.27,
+ "text": "of"
+ },
+ {
+ "id": 7332,
+ "start": 4284.27,
+ "end": 4284.87,
+ "text": "legislative"
+ },
+ {
+ "id": 7333,
+ "start": 4284.87,
+ "end": 4285.21,
+ "text": "changes"
+ },
+ {
+ "id": 7334,
+ "start": 4285.21,
+ "end": 4285.41,
+ "text": "would"
+ },
+ {
+ "id": 7335,
+ "start": 4285.41,
+ "end": 4285.61,
+ "text": "help"
+ },
+ {
+ "id": 7336,
+ "start": 4285.61,
+ "end": 4285.71,
+ "text": "to"
+ },
+ {
+ "id": 7337,
+ "start": 4285.71,
+ "end": 4286.03,
+ "text": "solve"
+ },
+ {
+ "id": 7338,
+ "start": 4286.03,
+ "end": 4286.17,
+ "text": "the"
+ },
+ {
+ "id": 7339,
+ "start": 4286.17,
+ "end": 4286.59,
+ "text": "problems"
+ },
+ {
+ "id": 7340,
+ "start": 4286.59,
+ "end": 4286.75,
+ "text": "the"
+ },
+ {
+ "id": 7341,
+ "start": 4286.75,
+ "end": 4287.21,
+ "text": "Cambridge"
+ },
+ {
+ "id": 7342,
+ "start": 4287.21,
+ "end": 4287.69,
+ "text": "Analytica"
+ },
+ {
+ "id": 7343,
+ "start": 4287.69,
+ "end": 4288.11,
+ "text": "story"
+ },
+ {
+ "id": 7344,
+ "start": 4288.11,
+ "end": 4288.31,
+ "text": "has"
+ },
+ {
+ "id": 7345,
+ "start": 4288.31,
+ "end": 4288.85,
+ "text": "revealed"
+ },
+ {
+ "id": 7346,
+ "start": 4288.85,
+ "end": 4289.51,
+ "text": "and"
+ },
+ {
+ "id": 7347,
+ "start": 4289.51,
+ "end": 4289.71,
+ "text": "what"
+ },
+ {
+ "id": 7348,
+ "start": 4289.71,
+ "end": 4290.07,
+ "text": "sorts"
+ },
+ {
+ "id": 7349,
+ "start": 4290.07,
+ "end": 4290.21,
+ "text": "of"
+ },
+ {
+ "id": 7350,
+ "start": 4290.21,
+ "end": 4290.85,
+ "text": "legislative"
+ },
+ {
+ "id": 7351,
+ "start": 4290.85,
+ "end": 4291.29,
+ "text": "changes"
+ },
+ {
+ "id": 7352,
+ "start": 4291.29,
+ "end": 4291.63,
+ "text": "would"
+ },
+ {
+ "id": 7353,
+ "start": 4291.63,
+ "end": 4292.39,
+ "text": "not"
+ },
+ {
+ "id": 7354,
+ "start": 4292.39,
+ "end": 4292.71,
+ "text": "help"
+ },
+ {
+ "id": 7355,
+ "start": 4292.71,
+ "end": 4292.93,
+ "text": "to"
+ },
+ {
+ "id": 7356,
+ "start": 4292.93,
+ "end": 4293.27,
+ "text": "solve"
+ },
+ {
+ "id": 7357,
+ "start": 4293.27,
+ "end": 4293.47,
+ "text": "this"
+ },
+ {
+ "id": 7358,
+ "start": 4293.47,
+ "end": 4295.64,
+ "text": "issue."
+ },
+ {
+ "id": 7359,
+ "start": 4295.64,
+ "end": 4296.64,
+ "text": "Senator,"
+ },
+ {
+ "id": 7360,
+ "start": 4296.64,
+ "end": 4296.7,
+ "text": "I"
+ },
+ {
+ "id": 7361,
+ "start": 4296.7,
+ "end": 4296.86,
+ "text": "think"
+ },
+ {
+ "id": 7362,
+ "start": 4296.86,
+ "end": 4297,
+ "text": "that"
+ },
+ {
+ "id": 7363,
+ "start": 4297,
+ "end": 4297.14,
+ "text": "there"
+ },
+ {
+ "id": 7364,
+ "start": 4297.14,
+ "end": 4297.26,
+ "text": "are"
+ },
+ {
+ "id": 7365,
+ "start": 4297.26,
+ "end": 4297.32,
+ "text": "a"
+ },
+ {
+ "id": 7366,
+ "start": 4297.32,
+ "end": 4297.6,
+ "text": "few"
+ },
+ {
+ "id": 7367,
+ "start": 4297.6,
+ "end": 4298.36,
+ "text": "categories"
+ },
+ {
+ "id": 7368,
+ "start": 4298.36,
+ "end": 4298.84,
+ "text": "of"
+ },
+ {
+ "id": 7369,
+ "start": 4298.84,
+ "end": 4299.82,
+ "text": "legislation"
+ },
+ {
+ "id": 7370,
+ "start": 4299.82,
+ "end": 4301.2,
+ "text": "that"
+ },
+ {
+ "id": 7371,
+ "start": 4301.2,
+ "end": 4301.38,
+ "text": "makes"
+ },
+ {
+ "id": 7372,
+ "start": 4301.38,
+ "end": 4301.62,
+ "text": "sense"
+ },
+ {
+ "id": 7373,
+ "start": 4301.62,
+ "end": 4301.78,
+ "text": "to"
+ },
+ {
+ "id": 7374,
+ "start": 4301.78,
+ "end": 4302.28,
+ "text": "consider"
+ },
+ {
+ "id": 7375,
+ "start": 4302.28,
+ "end": 4303.04,
+ "text": "around"
+ },
+ {
+ "id": 7376,
+ "start": 4303.04,
+ "end": 4303.58,
+ "text": "privacy."
+ },
+ {
+ "id": 7377,
+ "start": 4303.58,
+ "end": 4305.18,
+ "text": "Specifically,"
+ },
+ {
+ "id": 7378,
+ "start": 4305.18,
+ "end": 4306.14,
+ "text": "there"
+ },
+ {
+ "id": 7379,
+ "start": 4306.14,
+ "end": 4306.26,
+ "text": "are"
+ },
+ {
+ "id": 7380,
+ "start": 4306.26,
+ "end": 4306.3,
+ "text": "a"
+ },
+ {
+ "id": 7381,
+ "start": 4306.3,
+ "end": 4306.42,
+ "text": "few"
+ },
+ {
+ "id": 7382,
+ "start": 4306.42,
+ "end": 4306.96,
+ "text": "principles"
+ },
+ {
+ "id": 7383,
+ "start": 4306.96,
+ "end": 4307.14,
+ "text": "that"
+ },
+ {
+ "id": 7384,
+ "start": 4307.14,
+ "end": 4307.2,
+ "text": "I"
+ },
+ {
+ "id": 7385,
+ "start": 4307.2,
+ "end": 4307.42,
+ "text": "think"
+ },
+ {
+ "id": 7386,
+ "start": 4307.42,
+ "end": 4307.54,
+ "text": "it"
+ },
+ {
+ "id": 7387,
+ "start": 4307.54,
+ "end": 4307.74,
+ "text": "would"
+ },
+ {
+ "id": 7388,
+ "start": 4307.74,
+ "end": 4307.86,
+ "text": "be"
+ },
+ {
+ "id": 7389,
+ "start": 4307.86,
+ "end": 4308.22,
+ "text": "useful"
+ },
+ {
+ "id": 7390,
+ "start": 4308.22,
+ "end": 4308.74,
+ "text": "to"
+ },
+ {
+ "id": 7391,
+ "start": 4308.74,
+ "end": 4309.2,
+ "text": "discuss"
+ },
+ {
+ "id": 7392,
+ "start": 4309.2,
+ "end": 4310.04,
+ "text": "and"
+ },
+ {
+ "id": 7393,
+ "start": 4310.04,
+ "end": 4311,
+ "text": "potentially"
+ },
+ {
+ "id": 7394,
+ "start": 4311,
+ "end": 4311.46,
+ "text": "codify"
+ },
+ {
+ "id": 7395,
+ "start": 4311.46,
+ "end": 4311.8,
+ "text": "into"
+ },
+ {
+ "id": 7396,
+ "start": 4311.8,
+ "end": 4312.08,
+ "text": "law"
+ },
+ {
+ "id": 7397,
+ "start": 4312.08,
+ "end": 4313.14,
+ "text": "one"
+ },
+ {
+ "id": 7398,
+ "start": 4313.14,
+ "end": 4313.64,
+ "text": "is"
+ },
+ {
+ "id": 7399,
+ "start": 4313.64,
+ "end": 4314.64,
+ "text": "around"
+ },
+ {
+ "id": 7400,
+ "start": 4314.64,
+ "end": 4315.04,
+ "text": "having"
+ },
+ {
+ "id": 7401,
+ "start": 4315.04,
+ "end": 4315.12,
+ "text": "a"
+ },
+ {
+ "id": 7402,
+ "start": 4315.12,
+ "end": 4315.64,
+ "text": "simple"
+ },
+ {
+ "id": 7403,
+ "start": 4315.64,
+ "end": 4315.88,
+ "text": "and"
+ },
+ {
+ "id": 7404,
+ "start": 4315.88,
+ "end": 4317.26,
+ "text": "practical"
+ },
+ {
+ "id": 7405,
+ "start": 4317.26,
+ "end": 4318.16,
+ "text": "set"
+ },
+ {
+ "id": 7406,
+ "start": 4318.16,
+ "end": 4318.44,
+ "text": "of"
+ },
+ {
+ "id": 7407,
+ "start": 4318.44,
+ "end": 4319.44,
+ "text": "ways"
+ },
+ {
+ "id": 7408,
+ "start": 4319.44,
+ "end": 4319.58,
+ "text": "that"
+ },
+ {
+ "id": 7409,
+ "start": 4319.58,
+ "end": 4319.68,
+ "text": "you"
+ },
+ {
+ "id": 7410,
+ "start": 4319.68,
+ "end": 4320.06,
+ "text": "explain"
+ },
+ {
+ "id": 7411,
+ "start": 4320.06,
+ "end": 4320.2,
+ "text": "what"
+ },
+ {
+ "id": 7412,
+ "start": 4320.2,
+ "end": 4320.4,
+ "text": "you're"
+ },
+ {
+ "id": 7413,
+ "start": 4320.4,
+ "end": 4320.56,
+ "text": "doing"
+ },
+ {
+ "id": 7414,
+ "start": 4320.56,
+ "end": 4320.7,
+ "text": "with"
+ },
+ {
+ "id": 7415,
+ "start": 4320.7,
+ "end": 4320.98,
+ "text": "data."
+ },
+ {
+ "id": 7416,
+ "start": 4320.98,
+ "end": 4321.4,
+ "text": "And"
+ },
+ {
+ "id": 7417,
+ "start": 4321.4,
+ "end": 4321.48,
+ "text": "we"
+ },
+ {
+ "id": 7418,
+ "start": 4321.48,
+ "end": 4321.7,
+ "text": "talked"
+ },
+ {
+ "id": 7419,
+ "start": 4321.7,
+ "end": 4321.78,
+ "text": "a"
+ },
+ {
+ "id": 7420,
+ "start": 4321.78,
+ "end": 4321.98,
+ "text": "little"
+ },
+ {
+ "id": 7421,
+ "start": 4321.98,
+ "end": 4322.08,
+ "text": "bit"
+ },
+ {
+ "id": 7422,
+ "start": 4322.08,
+ "end": 4322.38,
+ "text": "earlier"
+ },
+ {
+ "id": 7423,
+ "start": 4322.38,
+ "end": 4322.88,
+ "text": "around"
+ },
+ {
+ "id": 7424,
+ "start": 4322.88,
+ "end": 4323.54,
+ "text": "the"
+ },
+ {
+ "id": 7425,
+ "start": 4323.54,
+ "end": 4324.22,
+ "text": "complexity"
+ },
+ {
+ "id": 7426,
+ "start": 4324.22,
+ "end": 4324.34,
+ "text": "of"
+ },
+ {
+ "id": 7427,
+ "start": 4324.34,
+ "end": 4324.68,
+ "text": "laying"
+ },
+ {
+ "id": 7428,
+ "start": 4324.68,
+ "end": 4324.92,
+ "text": "out"
+ },
+ {
+ "id": 7429,
+ "start": 4324.92,
+ "end": 4325.34,
+ "text": "the"
+ },
+ {
+ "id": 7430,
+ "start": 4325.34,
+ "end": 4325.9,
+ "text": "it's"
+ },
+ {
+ "id": 7431,
+ "start": 4325.9,
+ "end": 4325.96,
+ "text": "a"
+ },
+ {
+ "id": 7432,
+ "start": 4325.96,
+ "end": 4326.22,
+ "text": "long"
+ },
+ {
+ "id": 7433,
+ "start": 4326.22,
+ "end": 4326.74,
+ "text": "privacy"
+ },
+ {
+ "id": 7434,
+ "start": 4326.74,
+ "end": 4327.18,
+ "text": "policy"
+ },
+ {
+ "id": 7435,
+ "start": 4327.18,
+ "end": 4328.18,
+ "text": "it's"
+ },
+ {
+ "id": 7436,
+ "start": 4328.18,
+ "end": 4328.56,
+ "text": "hard"
+ },
+ {
+ "id": 7437,
+ "start": 4328.56,
+ "end": 4328.86,
+ "text": "to"
+ },
+ {
+ "id": 7438,
+ "start": 4328.86,
+ "end": 4329.12,
+ "text": "say"
+ },
+ {
+ "id": 7439,
+ "start": 4329.12,
+ "end": 4329.28,
+ "text": "that"
+ },
+ {
+ "id": 7440,
+ "start": 4329.28,
+ "end": 4329.7,
+ "text": "people,"
+ },
+ {
+ "id": 7441,
+ "start": 4329.7,
+ "end": 4330.14,
+ "text": "you"
+ },
+ {
+ "id": 7442,
+ "start": 4330.14,
+ "end": 4330.26,
+ "text": "know,"
+ },
+ {
+ "id": 7443,
+ "start": 4330.26,
+ "end": 4330.5,
+ "text": "fully"
+ },
+ {
+ "id": 7444,
+ "start": 4330.5,
+ "end": 4330.94,
+ "text": "understand"
+ },
+ {
+ "id": 7445,
+ "start": 4330.94,
+ "end": 4331.26,
+ "text": "something"
+ },
+ {
+ "id": 7446,
+ "start": 4331.26,
+ "end": 4331.4,
+ "text": "when"
+ },
+ {
+ "id": 7447,
+ "start": 4331.4,
+ "end": 4331.56,
+ "text": "it's"
+ },
+ {
+ "id": 7448,
+ "start": 4331.56,
+ "end": 4331.8,
+ "text": "only"
+ },
+ {
+ "id": 7449,
+ "start": 4331.8,
+ "end": 4332.08,
+ "text": "written"
+ },
+ {
+ "id": 7450,
+ "start": 4332.08,
+ "end": 4332.2,
+ "text": "out"
+ },
+ {
+ "id": 7451,
+ "start": 4332.2,
+ "end": 4332.3,
+ "text": "in"
+ },
+ {
+ "id": 7452,
+ "start": 4332.3,
+ "end": 4332.4,
+ "text": "a"
+ },
+ {
+ "id": 7453,
+ "start": 4332.4,
+ "end": 4332.6,
+ "text": "long"
+ },
+ {
+ "id": 7454,
+ "start": 4332.6,
+ "end": 4332.9,
+ "text": "legal"
+ },
+ {
+ "id": 7455,
+ "start": 4332.9,
+ "end": 4333.34,
+ "text": "document,"
+ },
+ {
+ "id": 7456,
+ "start": 4333.34,
+ "end": 4333.58,
+ "text": "this"
+ },
+ {
+ "id": 7457,
+ "start": 4333.58,
+ "end": 4333.9,
+ "text": "the"
+ },
+ {
+ "id": 7458,
+ "start": 4333.9,
+ "end": 4334.1,
+ "text": "stuff"
+ },
+ {
+ "id": 7459,
+ "start": 4334.1,
+ "end": 4334.38,
+ "text": "needs"
+ },
+ {
+ "id": 7460,
+ "start": 4334.38,
+ "end": 4334.52,
+ "text": "to"
+ },
+ {
+ "id": 7461,
+ "start": 4334.52,
+ "end": 4334.74,
+ "text": "be"
+ },
+ {
+ "id": 7462,
+ "start": 4334.74,
+ "end": 4335.72,
+ "text": "implemented"
+ },
+ {
+ "id": 7463,
+ "start": 4335.72,
+ "end": 4335.84,
+ "text": "in"
+ },
+ {
+ "id": 7464,
+ "start": 4335.84,
+ "end": 4335.92,
+ "text": "a"
+ },
+ {
+ "id": 7465,
+ "start": 4335.92,
+ "end": 4336.04,
+ "text": "way"
+ },
+ {
+ "id": 7466,
+ "start": 4336.04,
+ "end": 4336.22,
+ "text": "where"
+ },
+ {
+ "id": 7467,
+ "start": 4336.22,
+ "end": 4336.46,
+ "text": "people"
+ },
+ {
+ "id": 7468,
+ "start": 4336.46,
+ "end": 4336.6,
+ "text": "can"
+ },
+ {
+ "id": 7469,
+ "start": 4336.6,
+ "end": 4336.86,
+ "text": "actually"
+ },
+ {
+ "id": 7470,
+ "start": 4336.86,
+ "end": 4337.28,
+ "text": "understand"
+ },
+ {
+ "id": 7471,
+ "start": 4337.28,
+ "end": 4337.4,
+ "text": "it"
+ },
+ {
+ "id": 7472,
+ "start": 4337.4,
+ "end": 4337.6,
+ "text": "where"
+ },
+ {
+ "id": 7473,
+ "start": 4337.6,
+ "end": 4338.16,
+ "text": "consumers"
+ },
+ {
+ "id": 7474,
+ "start": 4338.16,
+ "end": 4338.52,
+ "text": "can"
+ },
+ {
+ "id": 7475,
+ "start": 4338.52,
+ "end": 4338.96,
+ "text": "understand"
+ },
+ {
+ "id": 7476,
+ "start": 4338.96,
+ "end": 4339.12,
+ "text": "it."
+ },
+ {
+ "id": 7477,
+ "start": 4339.12,
+ "end": 4340.14,
+ "text": "But"
+ },
+ {
+ "id": 7478,
+ "start": 4340.14,
+ "end": 4340.3,
+ "text": "that"
+ },
+ {
+ "id": 7479,
+ "start": 4340.3,
+ "end": 4340.46,
+ "text": "can"
+ },
+ {
+ "id": 7480,
+ "start": 4340.46,
+ "end": 4341.36,
+ "text": "also"
+ },
+ {
+ "id": 7481,
+ "start": 4341.36,
+ "end": 4342.14,
+ "text": "capture"
+ },
+ {
+ "id": 7482,
+ "start": 4342.14,
+ "end": 4342.26,
+ "text": "all"
+ },
+ {
+ "id": 7483,
+ "start": 4342.26,
+ "end": 4342.36,
+ "text": "the"
+ },
+ {
+ "id": 7484,
+ "start": 4342.36,
+ "end": 4342.82,
+ "text": "nuances"
+ },
+ {
+ "id": 7485,
+ "start": 4342.82,
+ "end": 4343.12,
+ "text": "of"
+ },
+ {
+ "id": 7486,
+ "start": 4343.12,
+ "end": 4343.36,
+ "text": "how"
+ },
+ {
+ "id": 7487,
+ "start": 4343.36,
+ "end": 4344.36,
+ "text": "these"
+ },
+ {
+ "id": 7488,
+ "start": 4344.36,
+ "end": 4344.78,
+ "text": "services"
+ },
+ {
+ "id": 7489,
+ "start": 4344.78,
+ "end": 4345,
+ "text": "work"
+ },
+ {
+ "id": 7490,
+ "start": 4345,
+ "end": 4345.12,
+ "text": "in"
+ },
+ {
+ "id": 7491,
+ "start": 4345.12,
+ "end": 4345.2,
+ "text": "a"
+ },
+ {
+ "id": 7492,
+ "start": 4345.2,
+ "end": 4345.36,
+ "text": "way"
+ },
+ {
+ "id": 7493,
+ "start": 4345.36,
+ "end": 4345.52,
+ "text": "that"
+ },
+ {
+ "id": 7494,
+ "start": 4345.52,
+ "end": 4345.84,
+ "text": "doesn't"
+ },
+ {
+ "id": 7495,
+ "start": 4345.84,
+ "end": 4346.02,
+ "text": "that's"
+ },
+ {
+ "id": 7496,
+ "start": 4346.02,
+ "end": 4346.14,
+ "text": "not"
+ },
+ {
+ "id": 7497,
+ "start": 4346.14,
+ "end": 4346.5,
+ "text": "overly"
+ },
+ {
+ "id": 7498,
+ "start": 4346.5,
+ "end": 4346.98,
+ "text": "restrictive"
+ },
+ {
+ "id": 7499,
+ "start": 4346.98,
+ "end": 4347.7,
+ "text": "on"
+ },
+ {
+ "id": 7500,
+ "start": 4347.7,
+ "end": 4348.32,
+ "text": "providing"
+ },
+ {
+ "id": 7501,
+ "start": 4348.32,
+ "end": 4348.44,
+ "text": "the"
+ },
+ {
+ "id": 7502,
+ "start": 4348.44,
+ "end": 4348.88,
+ "text": "services"
+ },
+ {
+ "id": 7503,
+ "start": 4348.88,
+ "end": 4349.54,
+ "text": "that's"
+ },
+ {
+ "id": 7504,
+ "start": 4349.54,
+ "end": 4349.8,
+ "text": "one."
+ },
+ {
+ "id": 7505,
+ "start": 4349.8,
+ "end": 4350.46,
+ "text": "The"
+ },
+ {
+ "id": 7506,
+ "start": 4350.46,
+ "end": 4350.92,
+ "text": "second"
+ },
+ {
+ "id": 7507,
+ "start": 4350.92,
+ "end": 4352.02,
+ "text": "is"
+ },
+ {
+ "id": 7508,
+ "start": 4352.02,
+ "end": 4352.36,
+ "text": "around"
+ },
+ {
+ "id": 7509,
+ "start": 4352.36,
+ "end": 4352.62,
+ "text": "giving"
+ },
+ {
+ "id": 7510,
+ "start": 4352.62,
+ "end": 4352.92,
+ "text": "people"
+ },
+ {
+ "id": 7511,
+ "start": 4352.92,
+ "end": 4353.34,
+ "text": "complete"
+ },
+ {
+ "id": 7512,
+ "start": 4353.34,
+ "end": 4353.82,
+ "text": "control,"
+ },
+ {
+ "id": 7513,
+ "start": 4353.82,
+ "end": 4354.64,
+ "text": "this"
+ },
+ {
+ "id": 7514,
+ "start": 4354.64,
+ "end": 4354.76,
+ "text": "is"
+ },
+ {
+ "id": 7515,
+ "start": 4354.76,
+ "end": 4354.86,
+ "text": "the"
+ },
+ {
+ "id": 7516,
+ "start": 4354.86,
+ "end": 4355.11,
+ "text": "most"
+ },
+ {
+ "id": 7517,
+ "start": 4355.11,
+ "end": 4355.49,
+ "text": "important"
+ },
+ {
+ "id": 7518,
+ "start": 4355.49,
+ "end": 4355.93,
+ "text": "principle"
+ },
+ {
+ "id": 7519,
+ "start": 4355.93,
+ "end": 4356.13,
+ "text": "for"
+ },
+ {
+ "id": 7520,
+ "start": 4356.13,
+ "end": 4356.57,
+ "text": "Facebook."
+ },
+ {
+ "id": 7521,
+ "start": 4356.57,
+ "end": 4357.39,
+ "text": "Every"
+ },
+ {
+ "id": 7522,
+ "start": 4357.39,
+ "end": 4357.61,
+ "text": "piece"
+ },
+ {
+ "id": 7523,
+ "start": 4357.61,
+ "end": 4357.73,
+ "text": "of"
+ },
+ {
+ "id": 7524,
+ "start": 4357.73,
+ "end": 4358.15,
+ "text": "content"
+ },
+ {
+ "id": 7525,
+ "start": 4358.15,
+ "end": 4358.39,
+ "text": "that"
+ },
+ {
+ "id": 7526,
+ "start": 4358.39,
+ "end": 4358.53,
+ "text": "you"
+ },
+ {
+ "id": 7527,
+ "start": 4358.53,
+ "end": 4358.81,
+ "text": "share"
+ },
+ {
+ "id": 7528,
+ "start": 4358.81,
+ "end": 4359.05,
+ "text": "on"
+ },
+ {
+ "id": 7529,
+ "start": 4359.05,
+ "end": 4359.85,
+ "text": "Facebook,"
+ },
+ {
+ "id": 7530,
+ "start": 4359.85,
+ "end": 4360.87,
+ "text": "you"
+ },
+ {
+ "id": 7531,
+ "start": 4360.87,
+ "end": 4361.17,
+ "text": "own."
+ },
+ {
+ "id": 7532,
+ "start": 4361.17,
+ "end": 4361.65,
+ "text": "And"
+ },
+ {
+ "id": 7533,
+ "start": 4361.65,
+ "end": 4361.87,
+ "text": "you"
+ },
+ {
+ "id": 7534,
+ "start": 4361.87,
+ "end": 4362.03,
+ "text": "have"
+ },
+ {
+ "id": 7535,
+ "start": 4362.03,
+ "end": 4362.39,
+ "text": "complete"
+ },
+ {
+ "id": 7536,
+ "start": 4362.39,
+ "end": 4362.71,
+ "text": "control"
+ },
+ {
+ "id": 7537,
+ "start": 4362.71,
+ "end": 4362.97,
+ "text": "over"
+ },
+ {
+ "id": 7538,
+ "start": 4362.97,
+ "end": 4363.11,
+ "text": "who"
+ },
+ {
+ "id": 7539,
+ "start": 4363.11,
+ "end": 4363.51,
+ "text": "sees"
+ },
+ {
+ "id": 7540,
+ "start": 4363.51,
+ "end": 4363.65,
+ "text": "it"
+ },
+ {
+ "id": 7541,
+ "start": 4363.65,
+ "end": 4364.29,
+ "text": "and"
+ },
+ {
+ "id": 7542,
+ "start": 4364.29,
+ "end": 4364.59,
+ "text": "how"
+ },
+ {
+ "id": 7543,
+ "start": 4364.59,
+ "end": 4364.75,
+ "text": "you"
+ },
+ {
+ "id": 7544,
+ "start": 4364.75,
+ "end": 4364.97,
+ "text": "share"
+ },
+ {
+ "id": 7545,
+ "start": 4364.97,
+ "end": 4365.07,
+ "text": "it"
+ },
+ {
+ "id": 7546,
+ "start": 4365.07,
+ "end": 4365.23,
+ "text": "and"
+ },
+ {
+ "id": 7547,
+ "start": 4365.23,
+ "end": 4365.33,
+ "text": "you"
+ },
+ {
+ "id": 7548,
+ "start": 4365.33,
+ "end": 4365.47,
+ "text": "can"
+ },
+ {
+ "id": 7549,
+ "start": 4365.47,
+ "end": 4365.77,
+ "text": "remove"
+ },
+ {
+ "id": 7550,
+ "start": 4365.77,
+ "end": 4365.89,
+ "text": "it"
+ },
+ {
+ "id": 7551,
+ "start": 4365.89,
+ "end": 4366.11,
+ "text": "at"
+ },
+ {
+ "id": 7552,
+ "start": 4366.11,
+ "end": 4366.35,
+ "text": "any"
+ },
+ {
+ "id": 7553,
+ "start": 4366.35,
+ "end": 4366.69,
+ "text": "time"
+ },
+ {
+ "id": 7554,
+ "start": 4366.69,
+ "end": 4367.51,
+ "text": "that's"
+ },
+ {
+ "id": 7555,
+ "start": 4367.51,
+ "end": 4367.71,
+ "text": "why"
+ },
+ {
+ "id": 7556,
+ "start": 4367.71,
+ "end": 4368.23,
+ "text": "every"
+ },
+ {
+ "id": 7557,
+ "start": 4368.23,
+ "end": 4368.86,
+ "text": "day"
+ },
+ {
+ "id": 7558,
+ "start": 4368.86,
+ "end": 4369.42,
+ "text": "about"
+ },
+ {
+ "id": 7559,
+ "start": 4369.42,
+ "end": 4370.3,
+ "text": "100,000,000,000"
+ },
+ {
+ "id": 7560,
+ "start": 4370.3,
+ "end": 4370.68,
+ "text": "times"
+ },
+ {
+ "id": 7561,
+ "start": 4370.68,
+ "end": 4370.8,
+ "text": "a"
+ },
+ {
+ "id": 7562,
+ "start": 4370.8,
+ "end": 4371,
+ "text": "day,"
+ },
+ {
+ "id": 7563,
+ "start": 4371,
+ "end": 4371.94,
+ "text": "people"
+ },
+ {
+ "id": 7564,
+ "start": 4371.94,
+ "end": 4372.2,
+ "text": "come"
+ },
+ {
+ "id": 7565,
+ "start": 4372.2,
+ "end": 4372.36,
+ "text": "to"
+ },
+ {
+ "id": 7566,
+ "start": 4372.36,
+ "end": 4372.56,
+ "text": "one"
+ },
+ {
+ "id": 7567,
+ "start": 4372.56,
+ "end": 4372.64,
+ "text": "of"
+ },
+ {
+ "id": 7568,
+ "start": 4372.64,
+ "end": 4372.76,
+ "text": "our"
+ },
+ {
+ "id": 7569,
+ "start": 4372.76,
+ "end": 4373.28,
+ "text": "services"
+ },
+ {
+ "id": 7570,
+ "start": 4373.28,
+ "end": 4373.8,
+ "text": "and"
+ },
+ {
+ "id": 7571,
+ "start": 4373.8,
+ "end": 4374.52,
+ "text": "either"
+ },
+ {
+ "id": 7572,
+ "start": 4374.52,
+ "end": 4374.8,
+ "text": "post"
+ },
+ {
+ "id": 7573,
+ "start": 4374.8,
+ "end": 4374.9,
+ "text": "a"
+ },
+ {
+ "id": 7574,
+ "start": 4374.9,
+ "end": 4375.28,
+ "text": "photo"
+ },
+ {
+ "id": 7575,
+ "start": 4375.28,
+ "end": 4375.5,
+ "text": "or"
+ },
+ {
+ "id": 7576,
+ "start": 4375.5,
+ "end": 4375.74,
+ "text": "send"
+ },
+ {
+ "id": 7577,
+ "start": 4375.74,
+ "end": 4375.82,
+ "text": "a"
+ },
+ {
+ "id": 7578,
+ "start": 4375.82,
+ "end": 4376.18,
+ "text": "message"
+ },
+ {
+ "id": 7579,
+ "start": 4376.18,
+ "end": 4376.3,
+ "text": "to"
+ },
+ {
+ "id": 7580,
+ "start": 4376.3,
+ "end": 4376.66,
+ "text": "someone."
+ },
+ {
+ "id": 7581,
+ "start": 4376.66,
+ "end": 4377.26,
+ "text": "Because"
+ },
+ {
+ "id": 7582,
+ "start": 4377.26,
+ "end": 4377.4,
+ "text": "they"
+ },
+ {
+ "id": 7583,
+ "start": 4377.4,
+ "end": 4377.62,
+ "text": "know"
+ },
+ {
+ "id": 7584,
+ "start": 4377.62,
+ "end": 4378.18,
+ "text": "that"
+ },
+ {
+ "id": 7585,
+ "start": 4378.18,
+ "end": 4378.32,
+ "text": "they"
+ },
+ {
+ "id": 7586,
+ "start": 4378.32,
+ "end": 4378.48,
+ "text": "have"
+ },
+ {
+ "id": 7587,
+ "start": 4378.48,
+ "end": 4378.66,
+ "text": "that"
+ },
+ {
+ "id": 7588,
+ "start": 4378.66,
+ "end": 4379.14,
+ "text": "control"
+ },
+ {
+ "id": 7589,
+ "start": 4379.14,
+ "end": 4380.02,
+ "text": "and"
+ },
+ {
+ "id": 7590,
+ "start": 4380.02,
+ "end": 4380.2,
+ "text": "that"
+ },
+ {
+ "id": 7591,
+ "start": 4380.2,
+ "end": 4380.52,
+ "text": "who"
+ },
+ {
+ "id": 7592,
+ "start": 4380.52,
+ "end": 4380.68,
+ "text": "they"
+ },
+ {
+ "id": 7593,
+ "start": 4380.68,
+ "end": 4380.8,
+ "text": "say"
+ },
+ {
+ "id": 7594,
+ "start": 4380.8,
+ "end": 4381,
+ "text": "it's"
+ },
+ {
+ "id": 7595,
+ "start": 4381,
+ "end": 4381.14,
+ "text": "going"
+ },
+ {
+ "id": 7596,
+ "start": 4381.14,
+ "end": 4381.22,
+ "text": "to"
+ },
+ {
+ "id": 7597,
+ "start": 4381.22,
+ "end": 4381.32,
+ "text": "go"
+ },
+ {
+ "id": 7598,
+ "start": 4381.32,
+ "end": 4381.48,
+ "text": "to"
+ },
+ {
+ "id": 7599,
+ "start": 4381.48,
+ "end": 4381.68,
+ "text": "is"
+ },
+ {
+ "id": 7600,
+ "start": 4381.68,
+ "end": 4381.84,
+ "text": "going"
+ },
+ {
+ "id": 7601,
+ "start": 4381.84,
+ "end": 4381.92,
+ "text": "to"
+ },
+ {
+ "id": 7602,
+ "start": 4381.92,
+ "end": 4383.05,
+ "text": "be"
+ },
+ {
+ "id": 7603,
+ "start": 4383.05,
+ "end": 4383.15,
+ "text": "who"
+ },
+ {
+ "id": 7604,
+ "start": 4383.15,
+ "end": 4383.45,
+ "text": "sees"
+ },
+ {
+ "id": 7605,
+ "start": 4383.45,
+ "end": 4383.57,
+ "text": "the"
+ },
+ {
+ "id": 7606,
+ "start": 4383.57,
+ "end": 4383.89,
+ "text": "content"
+ },
+ {
+ "id": 7607,
+ "start": 4383.89,
+ "end": 4384.03,
+ "text": "and"
+ },
+ {
+ "id": 7608,
+ "start": 4384.03,
+ "end": 4384.07,
+ "text": "I"
+ },
+ {
+ "id": 7609,
+ "start": 4384.07,
+ "end": 4384.25,
+ "text": "think"
+ },
+ {
+ "id": 7610,
+ "start": 4384.25,
+ "end": 4384.35,
+ "text": "that"
+ },
+ {
+ "id": 7611,
+ "start": 4384.35,
+ "end": 4384.55,
+ "text": "that"
+ },
+ {
+ "id": 7612,
+ "start": 4384.55,
+ "end": 4384.99,
+ "text": "control"
+ },
+ {
+ "id": 7613,
+ "start": 4384.99,
+ "end": 4385.09,
+ "text": "is"
+ },
+ {
+ "id": 7614,
+ "start": 4385.09,
+ "end": 4385.35,
+ "text": "something"
+ },
+ {
+ "id": 7615,
+ "start": 4385.35,
+ "end": 4385.53,
+ "text": "that's"
+ },
+ {
+ "id": 7616,
+ "start": 4385.53,
+ "end": 4385.93,
+ "text": "important"
+ },
+ {
+ "id": 7617,
+ "start": 4385.93,
+ "end": 4386.17,
+ "text": "that"
+ },
+ {
+ "id": 7618,
+ "start": 4386.17,
+ "end": 4386.53,
+ "text": "I"
+ },
+ {
+ "id": 7619,
+ "start": 4386.53,
+ "end": 4386.71,
+ "text": "think"
+ },
+ {
+ "id": 7620,
+ "start": 4386.71,
+ "end": 4386.93,
+ "text": "should"
+ },
+ {
+ "id": 7621,
+ "start": 4386.93,
+ "end": 4387.35,
+ "text": "apply"
+ },
+ {
+ "id": 7622,
+ "start": 4387.35,
+ "end": 4387.57,
+ "text": "to"
+ },
+ {
+ "id": 7623,
+ "start": 4387.57,
+ "end": 4388.67,
+ "text": "every"
+ },
+ {
+ "id": 7624,
+ "start": 4388.67,
+ "end": 4389.01,
+ "text": "service"
+ },
+ {
+ "id": 7625,
+ "start": 4389.01,
+ "end": 4390.09,
+ "text": "and"
+ },
+ {
+ "id": 7626,
+ "start": 4390.09,
+ "end": 4390.83,
+ "text": "go"
+ },
+ {
+ "id": 7627,
+ "start": 4390.83,
+ "end": 4391.01,
+ "text": "ahead,"
+ },
+ {
+ "id": 7628,
+ "start": 4391.01,
+ "end": 4391.73,
+ "text": "the"
+ },
+ {
+ "id": 7629,
+ "start": 4391.73,
+ "end": 4391.97,
+ "text": "third"
+ },
+ {
+ "id": 7630,
+ "start": 4391.97,
+ "end": 4392.27,
+ "text": "point"
+ },
+ {
+ "id": 7631,
+ "start": 4392.27,
+ "end": 4392.85,
+ "text": "is"
+ },
+ {
+ "id": 7632,
+ "start": 4392.85,
+ "end": 4393.03,
+ "text": "just"
+ },
+ {
+ "id": 7633,
+ "start": 4393.03,
+ "end": 4393.35,
+ "text": "around"
+ },
+ {
+ "id": 7634,
+ "start": 4393.35,
+ "end": 4393.77,
+ "text": "enabling"
+ },
+ {
+ "id": 7635,
+ "start": 4393.77,
+ "end": 4394.29,
+ "text": "innovation"
+ },
+ {
+ "id": 7636,
+ "start": 4394.29,
+ "end": 4394.91,
+ "text": "because"
+ },
+ {
+ "id": 7637,
+ "start": 4394.91,
+ "end": 4395.09,
+ "text": "some"
+ },
+ {
+ "id": 7638,
+ "start": 4395.09,
+ "end": 4395.17,
+ "text": "of"
+ },
+ {
+ "id": 7639,
+ "start": 4395.17,
+ "end": 4395.39,
+ "text": "these"
+ },
+ {
+ "id": 7640,
+ "start": 4395.39,
+ "end": 4395.63,
+ "text": "use"
+ },
+ {
+ "id": 7641,
+ "start": 4395.63,
+ "end": 4396.09,
+ "text": "cases"
+ },
+ {
+ "id": 7642,
+ "start": 4396.09,
+ "end": 4397.24,
+ "text": "that"
+ },
+ {
+ "id": 7643,
+ "start": 4397.24,
+ "end": 4398.3,
+ "text": "that"
+ },
+ {
+ "id": 7644,
+ "start": 4398.3,
+ "end": 4398.7,
+ "text": "are"
+ },
+ {
+ "id": 7645,
+ "start": 4398.7,
+ "end": 4398.92,
+ "text": "very"
+ },
+ {
+ "id": 7646,
+ "start": 4398.92,
+ "end": 4399.36,
+ "text": "sensitive,"
+ },
+ {
+ "id": 7647,
+ "start": 4399.36,
+ "end": 4399.54,
+ "text": "like"
+ },
+ {
+ "id": 7648,
+ "start": 4399.54,
+ "end": 4399.82,
+ "text": "face"
+ },
+ {
+ "id": 7649,
+ "start": 4399.82,
+ "end": 4400.38,
+ "text": "recognition,"
+ },
+ {
+ "id": 7650,
+ "start": 4400.38,
+ "end": 4400.58,
+ "text": "for"
+ },
+ {
+ "id": 7651,
+ "start": 4400.58,
+ "end": 4400.98,
+ "text": "example."
+ },
+ {
+ "id": 7652,
+ "start": 4400.98,
+ "end": 4401.68,
+ "text": "And"
+ },
+ {
+ "id": 7653,
+ "start": 4401.68,
+ "end": 4401.86,
+ "text": "I"
+ },
+ {
+ "id": 7654,
+ "start": 4401.86,
+ "end": 4402.02,
+ "text": "think"
+ },
+ {
+ "id": 7655,
+ "start": 4402.02,
+ "end": 4402.16,
+ "text": "that"
+ },
+ {
+ "id": 7656,
+ "start": 4402.16,
+ "end": 4402.38,
+ "text": "there's"
+ },
+ {
+ "id": 7657,
+ "start": 4402.38,
+ "end": 4402.46,
+ "text": "a"
+ },
+ {
+ "id": 7658,
+ "start": 4402.46,
+ "end": 4402.84,
+ "text": "balance"
+ },
+ {
+ "id": 7659,
+ "start": 4402.84,
+ "end": 4403.1,
+ "text": "that's"
+ },
+ {
+ "id": 7660,
+ "start": 4403.1,
+ "end": 4403.6,
+ "text": "extremely"
+ },
+ {
+ "id": 7661,
+ "start": 4403.6,
+ "end": 4403.96,
+ "text": "important"
+ },
+ {
+ "id": 7662,
+ "start": 4403.96,
+ "end": 4404.06,
+ "text": "to"
+ },
+ {
+ "id": 7663,
+ "start": 4404.06,
+ "end": 4404.36,
+ "text": "strike"
+ },
+ {
+ "id": 7664,
+ "start": 4404.36,
+ "end": 4404.6,
+ "text": "here"
+ },
+ {
+ "id": 7665,
+ "start": 4404.6,
+ "end": 4405.28,
+ "text": "where"
+ },
+ {
+ "id": 7666,
+ "start": 4405.28,
+ "end": 4405.5,
+ "text": "you"
+ },
+ {
+ "id": 7667,
+ "start": 4405.5,
+ "end": 4406.62,
+ "text": "obtain"
+ },
+ {
+ "id": 7668,
+ "start": 4406.62,
+ "end": 4407.34,
+ "text": "special"
+ },
+ {
+ "id": 7669,
+ "start": 4407.34,
+ "end": 4407.86,
+ "text": "consent"
+ },
+ {
+ "id": 7670,
+ "start": 4407.86,
+ "end": 4408.7,
+ "text": "for"
+ },
+ {
+ "id": 7671,
+ "start": 4408.7,
+ "end": 4409.6,
+ "text": "sensitive"
+ },
+ {
+ "id": 7672,
+ "start": 4409.6,
+ "end": 4410.04,
+ "text": "features"
+ },
+ {
+ "id": 7673,
+ "start": 4410.04,
+ "end": 4410.28,
+ "text": "like"
+ },
+ {
+ "id": 7674,
+ "start": 4410.28,
+ "end": 4410.54,
+ "text": "face"
+ },
+ {
+ "id": 7675,
+ "start": 4410.54,
+ "end": 4411.14,
+ "text": "recognition."
+ },
+ {
+ "id": 7676,
+ "start": 4411.14,
+ "end": 4411.86,
+ "text": "But"
+ },
+ {
+ "id": 7677,
+ "start": 4411.86,
+ "end": 4412.92,
+ "text": "don't"
+ },
+ {
+ "id": 7678,
+ "start": 4412.92,
+ "end": 4413.5,
+ "text": "but"
+ },
+ {
+ "id": 7679,
+ "start": 4413.5,
+ "end": 4413.78,
+ "text": "we"
+ },
+ {
+ "id": 7680,
+ "start": 4413.78,
+ "end": 4414,
+ "text": "still"
+ },
+ {
+ "id": 7681,
+ "start": 4414,
+ "end": 4414.16,
+ "text": "need"
+ },
+ {
+ "id": 7682,
+ "start": 4414.16,
+ "end": 4414.24,
+ "text": "to"
+ },
+ {
+ "id": 7683,
+ "start": 4414.24,
+ "end": 4414.42,
+ "text": "make"
+ },
+ {
+ "id": 7684,
+ "start": 4414.42,
+ "end": 4414.52,
+ "text": "it"
+ },
+ {
+ "id": 7685,
+ "start": 4414.52,
+ "end": 4414.66,
+ "text": "so"
+ },
+ {
+ "id": 7686,
+ "start": 4414.66,
+ "end": 4414.82,
+ "text": "that"
+ },
+ {
+ "id": 7687,
+ "start": 4414.82,
+ "end": 4415.24,
+ "text": "American"
+ },
+ {
+ "id": 7688,
+ "start": 4415.24,
+ "end": 4415.7,
+ "text": "companies"
+ },
+ {
+ "id": 7689,
+ "start": 4415.7,
+ "end": 4415.92,
+ "text": "can"
+ },
+ {
+ "id": 7690,
+ "start": 4415.92,
+ "end": 4416.26,
+ "text": "innovate"
+ },
+ {
+ "id": 7691,
+ "start": 4416.26,
+ "end": 4416.34,
+ "text": "in"
+ },
+ {
+ "id": 7692,
+ "start": 4416.34,
+ "end": 4416.58,
+ "text": "those"
+ },
+ {
+ "id": 7693,
+ "start": 4416.58,
+ "end": 4416.96,
+ "text": "areas"
+ },
+ {
+ "id": 7694,
+ "start": 4416.96,
+ "end": 4417.52,
+ "text": "or"
+ },
+ {
+ "id": 7695,
+ "start": 4417.52,
+ "end": 4417.72,
+ "text": "else"
+ },
+ {
+ "id": 7696,
+ "start": 4417.72,
+ "end": 4417.92,
+ "text": "we're"
+ },
+ {
+ "id": 7697,
+ "start": 4417.92,
+ "end": 4418.08,
+ "text": "going"
+ },
+ {
+ "id": 7698,
+ "start": 4418.08,
+ "end": 4418.14,
+ "text": "to"
+ },
+ {
+ "id": 7699,
+ "start": 4418.14,
+ "end": 4418.38,
+ "text": "fall"
+ },
+ {
+ "id": 7700,
+ "start": 4418.38,
+ "end": 4418.72,
+ "text": "behind"
+ },
+ {
+ "id": 7701,
+ "start": 4418.72,
+ "end": 4419.16,
+ "text": "Chinese"
+ },
+ {
+ "id": 7702,
+ "start": 4419.16,
+ "end": 4419.8,
+ "text": "competitors"
+ },
+ {
+ "id": 7703,
+ "start": 4419.8,
+ "end": 4420.64,
+ "text": "and"
+ },
+ {
+ "id": 7704,
+ "start": 4420.64,
+ "end": 4420.94,
+ "text": "others"
+ },
+ {
+ "id": 7705,
+ "start": 4420.94,
+ "end": 4421.22,
+ "text": "around"
+ },
+ {
+ "id": 7706,
+ "start": 4421.22,
+ "end": 4421.36,
+ "text": "the"
+ },
+ {
+ "id": 7707,
+ "start": 4421.36,
+ "end": 4421.66,
+ "text": "world"
+ },
+ {
+ "id": 7708,
+ "start": 4421.66,
+ "end": 4422.12,
+ "text": "who"
+ },
+ {
+ "id": 7709,
+ "start": 4422.12,
+ "end": 4422.36,
+ "text": "have"
+ },
+ {
+ "id": 7710,
+ "start": 4422.36,
+ "end": 4422.76,
+ "text": "different"
+ },
+ {
+ "id": 7711,
+ "start": 4422.76,
+ "end": 4423.44,
+ "text": "regimes"
+ },
+ {
+ "id": 7712,
+ "start": 4423.44,
+ "end": 4424.4,
+ "text": "for"
+ },
+ {
+ "id": 7713,
+ "start": 4424.4,
+ "end": 4424.6,
+ "text": "for"
+ },
+ {
+ "id": 7714,
+ "start": 4424.6,
+ "end": 4424.98,
+ "text": "different"
+ },
+ {
+ "id": 7715,
+ "start": 4424.98,
+ "end": 4425.4,
+ "text": "new"
+ },
+ {
+ "id": 7716,
+ "start": 4425.4,
+ "end": 4426.28,
+ "text": "features"
+ },
+ {
+ "id": 7717,
+ "start": 4426.28,
+ "end": 4426.46,
+ "text": "like"
+ },
+ {
+ "id": 7718,
+ "start": 4426.46,
+ "end": 4426.68,
+ "text": "that."
+ },
+ {
+ "id": 7719,
+ "start": 4426.68,
+ "end": 4427.08,
+ "text": "So,"
+ },
+ {
+ "id": 7720,
+ "start": 4427.08,
+ "end": 4427.4,
+ "text": "under"
+ },
+ {
+ "id": 7721,
+ "start": 4427.4,
+ "end": 4427.62,
+ "text": "grant."
+ },
+ {
+ "id": 7722,
+ "start": 4427.62,
+ "end": 4428.56,
+ "text": "Well,"
+ },
+ {
+ "id": 7723,
+ "start": 4428.56,
+ "end": 4429.46,
+ "text": "thank"
+ },
+ {
+ "id": 7724,
+ "start": 4429.46,
+ "end": 4429.56,
+ "text": "you,"
+ },
+ {
+ "id": 7725,
+ "start": 4429.56,
+ "end": 4429.82,
+ "text": "Mr"
+ },
+ {
+ "id": 7726,
+ "start": 4429.82,
+ "end": 4430.2,
+ "text": "Chairman."
+ },
+ {
+ "id": 7727,
+ "start": 4430.2,
+ "end": 4430.56,
+ "text": "Welcome"
+ },
+ {
+ "id": 7728,
+ "start": 4430.56,
+ "end": 4430.84,
+ "text": "Mr"
+ },
+ {
+ "id": 7729,
+ "start": 4430.84,
+ "end": 4431.98,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 7730,
+ "start": 4431.98,
+ "end": 4432.96,
+ "text": "Do"
+ },
+ {
+ "id": 7731,
+ "start": 4432.96,
+ "end": 4433.06,
+ "text": "you"
+ },
+ {
+ "id": 7732,
+ "start": 4433.06,
+ "end": 4433.2,
+ "text": "know"
+ },
+ {
+ "id": 7733,
+ "start": 4433.2,
+ "end": 4433.32,
+ "text": "who"
+ },
+ {
+ "id": 7734,
+ "start": 4433.32,
+ "end": 4433.98,
+ "text": "Palantir"
+ },
+ {
+ "id": 7735,
+ "start": 4433.98,
+ "end": 4435.22,
+ "text": "is"
+ },
+ {
+ "id": 7736,
+ "start": 4435.22,
+ "end": 4436.22,
+ "text": "I"
+ },
+ {
+ "id": 7737,
+ "start": 4436.22,
+ "end": 4438.5,
+ "text": "do?"
+ },
+ {
+ "id": 7738,
+ "start": 4438.5,
+ "end": 4439.5,
+ "text": "Some"
+ },
+ {
+ "id": 7739,
+ "start": 4439.5,
+ "end": 4439.72,
+ "text": "people"
+ },
+ {
+ "id": 7740,
+ "start": 4439.72,
+ "end": 4439.88,
+ "text": "have"
+ },
+ {
+ "id": 7741,
+ "start": 4439.88,
+ "end": 4440.2,
+ "text": "referred"
+ },
+ {
+ "id": 7742,
+ "start": 4440.2,
+ "end": 4440.28,
+ "text": "to"
+ },
+ {
+ "id": 7743,
+ "start": 4440.28,
+ "end": 4440.48,
+ "text": "them"
+ },
+ {
+ "id": 7744,
+ "start": 4440.48,
+ "end": 4440.68,
+ "text": "as"
+ },
+ {
+ "id": 7745,
+ "start": 4440.68,
+ "end": 4440.82,
+ "text": "a"
+ },
+ {
+ "id": 7746,
+ "start": 4440.82,
+ "end": 4441.64,
+ "text": "Stanford"
+ },
+ {
+ "id": 7747,
+ "start": 4441.64,
+ "end": 4444.08,
+ "text": "analytic."
+ },
+ {
+ "id": 7748,
+ "start": 4444.08,
+ "end": 4445.82,
+ "text": "Do"
+ },
+ {
+ "id": 7749,
+ "start": 4445.82,
+ "end": 4445.94,
+ "text": "you"
+ },
+ {
+ "id": 7750,
+ "start": 4445.94,
+ "end": 4446.68,
+ "text": "agree,"
+ },
+ {
+ "id": 7751,
+ "start": 4446.68,
+ "end": 4447.66,
+ "text": "Senator?"
+ },
+ {
+ "id": 7752,
+ "start": 4447.66,
+ "end": 4447.74,
+ "text": "I"
+ },
+ {
+ "id": 7753,
+ "start": 4447.74,
+ "end": 4447.9,
+ "text": "have"
+ },
+ {
+ "id": 7754,
+ "start": 4447.9,
+ "end": 4448.04,
+ "text": "not"
+ },
+ {
+ "id": 7755,
+ "start": 4448.04,
+ "end": 4448.24,
+ "text": "heard"
+ },
+ {
+ "id": 7756,
+ "start": 4448.24,
+ "end": 4448.44,
+ "text": "that."
+ },
+ {
+ "id": 7757,
+ "start": 4448.44,
+ "end": 4449.2,
+ "text": "Okay,"
+ },
+ {
+ "id": 7758,
+ "start": 4449.2,
+ "end": 4449.52,
+ "text": "do"
+ },
+ {
+ "id": 7759,
+ "start": 4449.52,
+ "end": 4449.62,
+ "text": "you"
+ },
+ {
+ "id": 7760,
+ "start": 4449.62,
+ "end": 4449.82,
+ "text": "think"
+ },
+ {
+ "id": 7761,
+ "start": 4449.82,
+ "end": 4450.54,
+ "text": "Palantir"
+ },
+ {
+ "id": 7762,
+ "start": 4450.54,
+ "end": 4451.24,
+ "text": "taught"
+ },
+ {
+ "id": 7763,
+ "start": 4451.24,
+ "end": 4452.24,
+ "text": "Cambridge"
+ },
+ {
+ "id": 7764,
+ "start": 4452.24,
+ "end": 4452.9,
+ "text": "Analytica"
+ },
+ {
+ "id": 7765,
+ "start": 4452.9,
+ "end": 4453.3,
+ "text": "press"
+ },
+ {
+ "id": 7766,
+ "start": 4453.3,
+ "end": 4453.66,
+ "text": "reports"
+ },
+ {
+ "id": 7767,
+ "start": 4453.66,
+ "end": 4453.86,
+ "text": "are"
+ },
+ {
+ "id": 7768,
+ "start": 4453.86,
+ "end": 4454.18,
+ "text": "saying"
+ },
+ {
+ "id": 7769,
+ "start": 4454.18,
+ "end": 4455.18,
+ "text": "how"
+ },
+ {
+ "id": 7770,
+ "start": 4455.18,
+ "end": 4455.3,
+ "text": "to"
+ },
+ {
+ "id": 7771,
+ "start": 4455.3,
+ "end": 4455.46,
+ "text": "do"
+ },
+ {
+ "id": 7772,
+ "start": 4455.46,
+ "end": 4455.66,
+ "text": "these"
+ },
+ {
+ "id": 7773,
+ "start": 4455.66,
+ "end": 4457.56,
+ "text": "tactics,"
+ },
+ {
+ "id": 7774,
+ "start": 4457.56,
+ "end": 4458.54,
+ "text": "Senator,"
+ },
+ {
+ "id": 7775,
+ "start": 4458.54,
+ "end": 4458.6,
+ "text": "I"
+ },
+ {
+ "id": 7776,
+ "start": 4458.6,
+ "end": 4458.8,
+ "text": "don't"
+ },
+ {
+ "id": 7777,
+ "start": 4458.8,
+ "end": 4460,
+ "text": "know,"
+ },
+ {
+ "id": 7778,
+ "start": 4460,
+ "end": 4460.98,
+ "text": "do"
+ },
+ {
+ "id": 7779,
+ "start": 4460.98,
+ "end": 4461.12,
+ "text": "you"
+ },
+ {
+ "id": 7780,
+ "start": 4461.12,
+ "end": 4461.52,
+ "text": "think"
+ },
+ {
+ "id": 7781,
+ "start": 4461.52,
+ "end": 4461.88,
+ "text": "that"
+ },
+ {
+ "id": 7782,
+ "start": 4461.88,
+ "end": 4462.46,
+ "text": "Palantir"
+ },
+ {
+ "id": 7783,
+ "start": 4462.46,
+ "end": 4462.58,
+ "text": "has"
+ },
+ {
+ "id": 7784,
+ "start": 4462.58,
+ "end": 4462.84,
+ "text": "ever"
+ },
+ {
+ "id": 7785,
+ "start": 4462.84,
+ "end": 4463.12,
+ "text": "scrape"
+ },
+ {
+ "id": 7786,
+ "start": 4463.12,
+ "end": 4463.52,
+ "text": "data"
+ },
+ {
+ "id": 7787,
+ "start": 4463.52,
+ "end": 4463.94,
+ "text": "from"
+ },
+ {
+ "id": 7788,
+ "start": 4463.94,
+ "end": 4465.58,
+ "text": "Facebook?"
+ },
+ {
+ "id": 7789,
+ "start": 4465.58,
+ "end": 4466.56,
+ "text": "Senator"
+ },
+ {
+ "id": 7790,
+ "start": 4466.56,
+ "end": 4466.7,
+ "text": "I'm"
+ },
+ {
+ "id": 7791,
+ "start": 4466.7,
+ "end": 4466.84,
+ "text": "not"
+ },
+ {
+ "id": 7792,
+ "start": 4466.84,
+ "end": 4467.08,
+ "text": "aware"
+ },
+ {
+ "id": 7793,
+ "start": 4467.08,
+ "end": 4467.18,
+ "text": "of"
+ },
+ {
+ "id": 7794,
+ "start": 4467.18,
+ "end": 4469.26,
+ "text": "that,"
+ },
+ {
+ "id": 7795,
+ "start": 4469.26,
+ "end": 4471.14,
+ "text": "okay?"
+ },
+ {
+ "id": 7796,
+ "start": 4471.14,
+ "end": 4471.98,
+ "text": "Do"
+ },
+ {
+ "id": 7797,
+ "start": 4471.98,
+ "end": 4472.14,
+ "text": "you"
+ },
+ {
+ "id": 7798,
+ "start": 4472.14,
+ "end": 4472.58,
+ "text": "think"
+ },
+ {
+ "id": 7799,
+ "start": 4472.58,
+ "end": 4473.3,
+ "text": "that"
+ },
+ {
+ "id": 7800,
+ "start": 4473.3,
+ "end": 4474.24,
+ "text": "during"
+ },
+ {
+ "id": 7801,
+ "start": 4474.24,
+ "end": 4474.82,
+ "text": "the"
+ },
+ {
+ "id": 7802,
+ "start": 4474.82,
+ "end": 4475.8,
+ "text": "20"
+ },
+ {
+ "id": 7803,
+ "start": 4475.8,
+ "end": 4476.44,
+ "text": "16"
+ },
+ {
+ "id": 7804,
+ "start": 4476.44,
+ "end": 4477.1,
+ "text": "campaign"
+ },
+ {
+ "id": 7805,
+ "start": 4477.1,
+ "end": 4477.96,
+ "text": "as"
+ },
+ {
+ "id": 7806,
+ "start": 4477.96,
+ "end": 4478.4,
+ "text": "Cambridge"
+ },
+ {
+ "id": 7807,
+ "start": 4478.4,
+ "end": 4478.92,
+ "text": "Analytica"
+ },
+ {
+ "id": 7808,
+ "start": 4478.92,
+ "end": 4479.14,
+ "text": "is"
+ },
+ {
+ "id": 7809,
+ "start": 4479.14,
+ "end": 4479.58,
+ "text": "providing"
+ },
+ {
+ "id": 7810,
+ "start": 4479.58,
+ "end": 4480,
+ "text": "support"
+ },
+ {
+ "id": 7811,
+ "start": 4480,
+ "end": 4480.22,
+ "text": "to"
+ },
+ {
+ "id": 7812,
+ "start": 4480.22,
+ "end": 4480.34,
+ "text": "the"
+ },
+ {
+ "id": 7813,
+ "start": 4480.34,
+ "end": 4480.58,
+ "text": "Trump"
+ },
+ {
+ "id": 7814,
+ "start": 4480.58,
+ "end": 4481.18,
+ "text": "campaign"
+ },
+ {
+ "id": 7815,
+ "start": 4481.18,
+ "end": 4481.84,
+ "text": "under"
+ },
+ {
+ "id": 7816,
+ "start": 4481.84,
+ "end": 4482.3,
+ "text": "project"
+ },
+ {
+ "id": 7817,
+ "start": 4482.3,
+ "end": 4482.92,
+ "text": "Alamo."
+ },
+ {
+ "id": 7818,
+ "start": 4482.92,
+ "end": 4483.5,
+ "text": "Were"
+ },
+ {
+ "id": 7819,
+ "start": 4483.5,
+ "end": 4483.64,
+ "text": "there"
+ },
+ {
+ "id": 7820,
+ "start": 4483.64,
+ "end": 4483.96,
+ "text": "any"
+ },
+ {
+ "id": 7821,
+ "start": 4483.96,
+ "end": 4484.56,
+ "text": "Facebook"
+ },
+ {
+ "id": 7822,
+ "start": 4484.56,
+ "end": 4484.96,
+ "text": "people"
+ },
+ {
+ "id": 7823,
+ "start": 4484.96,
+ "end": 4485.48,
+ "text": "involved"
+ },
+ {
+ "id": 7824,
+ "start": 4485.48,
+ "end": 4485.72,
+ "text": "in"
+ },
+ {
+ "id": 7825,
+ "start": 4485.72,
+ "end": 4486.02,
+ "text": "that"
+ },
+ {
+ "id": 7826,
+ "start": 4486.02,
+ "end": 4486.64,
+ "text": "sharing"
+ },
+ {
+ "id": 7827,
+ "start": 4486.64,
+ "end": 4486.84,
+ "text": "of"
+ },
+ {
+ "id": 7828,
+ "start": 4486.84,
+ "end": 4487.8,
+ "text": "technique"
+ },
+ {
+ "id": 7829,
+ "start": 4487.8,
+ "end": 4487.92,
+ "text": "and"
+ },
+ {
+ "id": 7830,
+ "start": 4487.92,
+ "end": 4489.8,
+ "text": "information,"
+ },
+ {
+ "id": 7831,
+ "start": 4489.8,
+ "end": 4490.76,
+ "text": "Senator,"
+ },
+ {
+ "id": 7832,
+ "start": 4490.76,
+ "end": 4490.94,
+ "text": "we"
+ },
+ {
+ "id": 7833,
+ "start": 4490.94,
+ "end": 4491.48,
+ "text": "provided"
+ },
+ {
+ "id": 7834,
+ "start": 4491.48,
+ "end": 4492,
+ "text": "support"
+ },
+ {
+ "id": 7835,
+ "start": 4492,
+ "end": 4492.34,
+ "text": "to"
+ },
+ {
+ "id": 7836,
+ "start": 4492.34,
+ "end": 4492.54,
+ "text": "the"
+ },
+ {
+ "id": 7837,
+ "start": 4492.54,
+ "end": 4492.86,
+ "text": "Trump"
+ },
+ {
+ "id": 7838,
+ "start": 4492.86,
+ "end": 4493.36,
+ "text": "Campaign"
+ },
+ {
+ "id": 7839,
+ "start": 4493.36,
+ "end": 4494.3,
+ "text": "similar"
+ },
+ {
+ "id": 7840,
+ "start": 4494.3,
+ "end": 4494.48,
+ "text": "to"
+ },
+ {
+ "id": 7841,
+ "start": 4494.48,
+ "end": 4494.72,
+ "text": "what"
+ },
+ {
+ "id": 7842,
+ "start": 4494.72,
+ "end": 4494.92,
+ "text": "we"
+ },
+ {
+ "id": 7843,
+ "start": 4494.92,
+ "end": 4495.52,
+ "text": "provide"
+ },
+ {
+ "id": 7844,
+ "start": 4495.52,
+ "end": 4495.8,
+ "text": "to"
+ },
+ {
+ "id": 7845,
+ "start": 4495.8,
+ "end": 4496.64,
+ "text": "any"
+ },
+ {
+ "id": 7846,
+ "start": 4496.64,
+ "end": 4497.42,
+ "text": "advertiser"
+ },
+ {
+ "id": 7847,
+ "start": 4497.42,
+ "end": 4497.78,
+ "text": "or"
+ },
+ {
+ "id": 7848,
+ "start": 4497.78,
+ "end": 4498.44,
+ "text": "campaign."
+ },
+ {
+ "id": 7849,
+ "start": 4498.44,
+ "end": 4499.64,
+ "text": "Who"
+ },
+ {
+ "id": 7850,
+ "start": 4499.64,
+ "end": 4499.92,
+ "text": "asks"
+ },
+ {
+ "id": 7851,
+ "start": 4499.92,
+ "end": 4500.1,
+ "text": "for"
+ },
+ {
+ "id": 7852,
+ "start": 4500.1,
+ "end": 4500.22,
+ "text": "it."
+ },
+ {
+ "id": 7853,
+ "start": 4500.22,
+ "end": 4500.74,
+ "text": "So"
+ },
+ {
+ "id": 7854,
+ "start": 4500.74,
+ "end": 4500.94,
+ "text": "that"
+ },
+ {
+ "id": 7855,
+ "start": 4500.94,
+ "end": 4501.1,
+ "text": "was"
+ },
+ {
+ "id": 7856,
+ "start": 4501.1,
+ "end": 4501.16,
+ "text": "a"
+ },
+ {
+ "id": 7857,
+ "start": 4501.16,
+ "end": 4502.06,
+ "text": "yes."
+ },
+ {
+ "id": 7858,
+ "start": 4502.06,
+ "end": 4502.78,
+ "text": "Is"
+ },
+ {
+ "id": 7859,
+ "start": 4502.78,
+ "end": 4502.92,
+ "text": "that"
+ },
+ {
+ "id": 7860,
+ "start": 4502.92,
+ "end": 4503.52,
+ "text": "yes,"
+ },
+ {
+ "id": 7861,
+ "start": 4503.52,
+ "end": 4504.5,
+ "text": "Senator."
+ },
+ {
+ "id": 7862,
+ "start": 4504.5,
+ "end": 4504.62,
+ "text": "Can"
+ },
+ {
+ "id": 7863,
+ "start": 4504.62,
+ "end": 4504.72,
+ "text": "you"
+ },
+ {
+ "id": 7864,
+ "start": 4504.72,
+ "end": 4504.96,
+ "text": "repeat"
+ },
+ {
+ "id": 7865,
+ "start": 4504.96,
+ "end": 4505.08,
+ "text": "the"
+ },
+ {
+ "id": 7866,
+ "start": 4505.08,
+ "end": 4505.5,
+ "text": "specific"
+ },
+ {
+ "id": 7867,
+ "start": 4505.5,
+ "end": 4505.82,
+ "text": "question?"
+ },
+ {
+ "id": 7868,
+ "start": 4505.82,
+ "end": 4505.96,
+ "text": "I"
+ },
+ {
+ "id": 7869,
+ "start": 4505.96,
+ "end": 4506.18,
+ "text": "just"
+ },
+ {
+ "id": 7870,
+ "start": 4506.18,
+ "end": 4506.3,
+ "text": "want"
+ },
+ {
+ "id": 7871,
+ "start": 4506.3,
+ "end": 4506.38,
+ "text": "to"
+ },
+ {
+ "id": 7872,
+ "start": 4506.38,
+ "end": 4506.48,
+ "text": "make"
+ },
+ {
+ "id": 7873,
+ "start": 4506.48,
+ "end": 4506.6,
+ "text": "sure"
+ },
+ {
+ "id": 7874,
+ "start": 4506.6,
+ "end": 4506.74,
+ "text": "I"
+ },
+ {
+ "id": 7875,
+ "start": 4506.74,
+ "end": 4507.38,
+ "text": "get"
+ },
+ {
+ "id": 7876,
+ "start": 4507.38,
+ "end": 4507.88,
+ "text": "specifically"
+ },
+ {
+ "id": 7877,
+ "start": 4507.88,
+ "end": 4507.98,
+ "text": "what"
+ },
+ {
+ "id": 7878,
+ "start": 4507.98,
+ "end": 4508.14,
+ "text": "you're"
+ },
+ {
+ "id": 7879,
+ "start": 4508.14,
+ "end": 4508.38,
+ "text": "asking"
+ },
+ {
+ "id": 7880,
+ "start": 4508.38,
+ "end": 4508.88,
+ "text": "during"
+ },
+ {
+ "id": 7881,
+ "start": 4508.88,
+ "end": 4509.02,
+ "text": "the"
+ },
+ {
+ "id": 7882,
+ "start": 4509.02,
+ "end": 4509.38,
+ "text": "20"
+ },
+ {
+ "id": 7883,
+ "start": 4509.38,
+ "end": 4510.06,
+ "text": "16"
+ },
+ {
+ "id": 7884,
+ "start": 4510.06,
+ "end": 4510.84,
+ "text": "campaign."
+ },
+ {
+ "id": 7885,
+ "start": 4510.84,
+ "end": 4511.96,
+ "text": "Cambridge"
+ },
+ {
+ "id": 7886,
+ "start": 4511.96,
+ "end": 4512.72,
+ "text": "Analytica"
+ },
+ {
+ "id": 7887,
+ "start": 4512.72,
+ "end": 4513.06,
+ "text": "worked"
+ },
+ {
+ "id": 7888,
+ "start": 4513.06,
+ "end": 4513.24,
+ "text": "with"
+ },
+ {
+ "id": 7889,
+ "start": 4513.24,
+ "end": 4513.36,
+ "text": "the"
+ },
+ {
+ "id": 7890,
+ "start": 4513.36,
+ "end": 4513.66,
+ "text": "Trump"
+ },
+ {
+ "id": 7891,
+ "start": 4513.66,
+ "end": 4514.32,
+ "text": "campaign"
+ },
+ {
+ "id": 7892,
+ "start": 4514.32,
+ "end": 4514.8,
+ "text": "to"
+ },
+ {
+ "id": 7893,
+ "start": 4514.8,
+ "end": 4515.34,
+ "text": "refine"
+ },
+ {
+ "id": 7894,
+ "start": 4515.34,
+ "end": 4516.1,
+ "text": "tactics"
+ },
+ {
+ "id": 7895,
+ "start": 4516.1,
+ "end": 4516.58,
+ "text": "and"
+ },
+ {
+ "id": 7896,
+ "start": 4516.58,
+ "end": 4516.94,
+ "text": "were"
+ },
+ {
+ "id": 7897,
+ "start": 4516.94,
+ "end": 4517.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 7898,
+ "start": 4517.5,
+ "end": 4518.33,
+ "text": "employees"
+ },
+ {
+ "id": 7899,
+ "start": 4518.33,
+ "end": 4518.61,
+ "text": "in"
+ },
+ {
+ "id": 7900,
+ "start": 4518.61,
+ "end": 4519.97,
+ "text": "that,"
+ },
+ {
+ "id": 7901,
+ "start": 4519.97,
+ "end": 4520.95,
+ "text": "Senator,"
+ },
+ {
+ "id": 7902,
+ "start": 4520.95,
+ "end": 4521.29,
+ "text": "I"
+ },
+ {
+ "id": 7903,
+ "start": 4521.29,
+ "end": 4521.53,
+ "text": "don't"
+ },
+ {
+ "id": 7904,
+ "start": 4521.53,
+ "end": 4521.69,
+ "text": "know"
+ },
+ {
+ "id": 7905,
+ "start": 4521.69,
+ "end": 4521.99,
+ "text": "that"
+ },
+ {
+ "id": 7906,
+ "start": 4521.99,
+ "end": 4522.15,
+ "text": "our"
+ },
+ {
+ "id": 7907,
+ "start": 4522.15,
+ "end": 4522.55,
+ "text": "employees"
+ },
+ {
+ "id": 7908,
+ "start": 4522.55,
+ "end": 4522.75,
+ "text": "were"
+ },
+ {
+ "id": 7909,
+ "start": 4522.75,
+ "end": 4523.05,
+ "text": "involved"
+ },
+ {
+ "id": 7910,
+ "start": 4523.05,
+ "end": 4523.25,
+ "text": "with"
+ },
+ {
+ "id": 7911,
+ "start": 4523.25,
+ "end": 4523.71,
+ "text": "Cambridge"
+ },
+ {
+ "id": 7912,
+ "start": 4523.71,
+ "end": 4524.11,
+ "text": "Analytica."
+ },
+ {
+ "id": 7913,
+ "start": 4524.11,
+ "end": 4524.59,
+ "text": "Although."
+ },
+ {
+ "id": 7914,
+ "start": 4524.59,
+ "end": 4524.65,
+ "text": "I"
+ },
+ {
+ "id": 7915,
+ "start": 4524.65,
+ "end": 4524.83,
+ "text": "know"
+ },
+ {
+ "id": 7916,
+ "start": 4524.83,
+ "end": 4524.97,
+ "text": "that"
+ },
+ {
+ "id": 7917,
+ "start": 4524.97,
+ "end": 4525.09,
+ "text": "we"
+ },
+ {
+ "id": 7918,
+ "start": 4525.09,
+ "end": 4525.37,
+ "text": "did"
+ },
+ {
+ "id": 7919,
+ "start": 4525.37,
+ "end": 4525.83,
+ "text": "help"
+ },
+ {
+ "id": 7920,
+ "start": 4525.83,
+ "end": 4525.97,
+ "text": "out"
+ },
+ {
+ "id": 7921,
+ "start": 4525.97,
+ "end": 4526.15,
+ "text": "the"
+ },
+ {
+ "id": 7922,
+ "start": 4526.15,
+ "end": 4526.37,
+ "text": "Trump"
+ },
+ {
+ "id": 7923,
+ "start": 4526.37,
+ "end": 4526.75,
+ "text": "Campaign"
+ },
+ {
+ "id": 7924,
+ "start": 4526.75,
+ "end": 4527.35,
+ "text": "overall"
+ },
+ {
+ "id": 7925,
+ "start": 4527.35,
+ "end": 4527.61,
+ "text": "and"
+ },
+ {
+ "id": 7926,
+ "start": 4527.61,
+ "end": 4528.01,
+ "text": "sales"
+ },
+ {
+ "id": 7927,
+ "start": 4528.01,
+ "end": 4528.35,
+ "text": "support"
+ },
+ {
+ "id": 7928,
+ "start": 4528.35,
+ "end": 4528.43,
+ "text": "in"
+ },
+ {
+ "id": 7929,
+ "start": 4528.43,
+ "end": 4528.55,
+ "text": "the"
+ },
+ {
+ "id": 7930,
+ "start": 4528.55,
+ "end": 4528.73,
+ "text": "same"
+ },
+ {
+ "id": 7931,
+ "start": 4528.73,
+ "end": 4528.83,
+ "text": "way"
+ },
+ {
+ "id": 7932,
+ "start": 4528.83,
+ "end": 4528.97,
+ "text": "that"
+ },
+ {
+ "id": 7933,
+ "start": 4528.97,
+ "end": 4529.05,
+ "text": "we"
+ },
+ {
+ "id": 7934,
+ "start": 4529.05,
+ "end": 4529.17,
+ "text": "do"
+ },
+ {
+ "id": 7935,
+ "start": 4529.17,
+ "end": 4529.31,
+ "text": "with"
+ },
+ {
+ "id": 7936,
+ "start": 4529.31,
+ "end": 4529.53,
+ "text": "other"
+ },
+ {
+ "id": 7937,
+ "start": 4529.53,
+ "end": 4529.97,
+ "text": "campaigns."
+ },
+ {
+ "id": 7938,
+ "start": 4529.97,
+ "end": 4530.85,
+ "text": "So"
+ },
+ {
+ "id": 7939,
+ "start": 4530.85,
+ "end": 4531.43,
+ "text": "they"
+ },
+ {
+ "id": 7940,
+ "start": 4531.43,
+ "end": 4531.59,
+ "text": "may"
+ },
+ {
+ "id": 7941,
+ "start": 4531.59,
+ "end": 4531.73,
+ "text": "have"
+ },
+ {
+ "id": 7942,
+ "start": 4531.73,
+ "end": 4531.87,
+ "text": "been"
+ },
+ {
+ "id": 7943,
+ "start": 4531.87,
+ "end": 4532.15,
+ "text": "involved"
+ },
+ {
+ "id": 7944,
+ "start": 4532.15,
+ "end": 4532.29,
+ "text": "in"
+ },
+ {
+ "id": 7945,
+ "start": 4532.29,
+ "end": 4532.47,
+ "text": "all"
+ },
+ {
+ "id": 7946,
+ "start": 4532.47,
+ "end": 4532.83,
+ "text": "working"
+ },
+ {
+ "id": 7947,
+ "start": 4532.83,
+ "end": 4533.17,
+ "text": "together"
+ },
+ {
+ "id": 7948,
+ "start": 4533.17,
+ "end": 4533.41,
+ "text": "during"
+ },
+ {
+ "id": 7949,
+ "start": 4533.41,
+ "end": 4533.55,
+ "text": "that"
+ },
+ {
+ "id": 7950,
+ "start": 4533.55,
+ "end": 4533.79,
+ "text": "time"
+ },
+ {
+ "id": 7951,
+ "start": 4533.79,
+ "end": 4534.6,
+ "text": "period."
+ },
+ {
+ "id": 7952,
+ "start": 4534.6,
+ "end": 4535.28,
+ "text": "Maybe"
+ },
+ {
+ "id": 7953,
+ "start": 4535.28,
+ "end": 4535.5,
+ "text": "that's"
+ },
+ {
+ "id": 7954,
+ "start": 4535.5,
+ "end": 4535.74,
+ "text": "something"
+ },
+ {
+ "id": 7955,
+ "start": 4535.74,
+ "end": 4535.9,
+ "text": "your"
+ },
+ {
+ "id": 7956,
+ "start": 4535.9,
+ "end": 4536.46,
+ "text": "investigation"
+ },
+ {
+ "id": 7957,
+ "start": 4536.46,
+ "end": 4536.7,
+ "text": "will"
+ },
+ {
+ "id": 7958,
+ "start": 4536.7,
+ "end": 4536.86,
+ "text": "find"
+ },
+ {
+ "id": 7959,
+ "start": 4536.86,
+ "end": 4537.4,
+ "text": "out."
+ },
+ {
+ "id": 7960,
+ "start": 4537.4,
+ "end": 4538.38,
+ "text": "Senator."
+ },
+ {
+ "id": 7961,
+ "start": 4538.38,
+ "end": 4538.84,
+ "text": "I"
+ },
+ {
+ "id": 7962,
+ "start": 4538.84,
+ "end": 4539.02,
+ "text": "can"
+ },
+ {
+ "id": 7963,
+ "start": 4539.02,
+ "end": 4539.36,
+ "text": "certainly"
+ },
+ {
+ "id": 7964,
+ "start": 4539.36,
+ "end": 4539.52,
+ "text": "have"
+ },
+ {
+ "id": 7965,
+ "start": 4539.52,
+ "end": 4539.64,
+ "text": "my"
+ },
+ {
+ "id": 7966,
+ "start": 4539.64,
+ "end": 4539.84,
+ "text": "team"
+ },
+ {
+ "id": 7967,
+ "start": 4539.84,
+ "end": 4540.02,
+ "text": "get"
+ },
+ {
+ "id": 7968,
+ "start": 4540.02,
+ "end": 4540.2,
+ "text": "back"
+ },
+ {
+ "id": 7969,
+ "start": 4540.2,
+ "end": 4540.32,
+ "text": "to"
+ },
+ {
+ "id": 7970,
+ "start": 4540.32,
+ "end": 4540.58,
+ "text": "you"
+ },
+ {
+ "id": 7971,
+ "start": 4540.58,
+ "end": 4541.06,
+ "text": "on"
+ },
+ {
+ "id": 7972,
+ "start": 4541.06,
+ "end": 4541.32,
+ "text": "any"
+ },
+ {
+ "id": 7973,
+ "start": 4541.32,
+ "end": 4541.8,
+ "text": "specifics."
+ },
+ {
+ "id": 7974,
+ "start": 4541.8,
+ "end": 4542.04,
+ "text": "There"
+ },
+ {
+ "id": 7975,
+ "start": 4542.04,
+ "end": 4542.18,
+ "text": "that"
+ },
+ {
+ "id": 7976,
+ "start": 4542.18,
+ "end": 4542.24,
+ "text": "I"
+ },
+ {
+ "id": 7977,
+ "start": 4542.24,
+ "end": 4542.44,
+ "text": "don't"
+ },
+ {
+ "id": 7978,
+ "start": 4542.44,
+ "end": 4542.68,
+ "text": "know"
+ },
+ {
+ "id": 7979,
+ "start": 4542.68,
+ "end": 4543.26,
+ "text": "sitting"
+ },
+ {
+ "id": 7980,
+ "start": 4543.26,
+ "end": 4543.42,
+ "text": "here"
+ },
+ {
+ "id": 7981,
+ "start": 4543.42,
+ "end": 4543.68,
+ "text": "today."
+ },
+ {
+ "id": 7982,
+ "start": 4543.68,
+ "end": 4544.14,
+ "text": "Have"
+ },
+ {
+ "id": 7983,
+ "start": 4544.14,
+ "end": 4544.26,
+ "text": "you"
+ },
+ {
+ "id": 7984,
+ "start": 4544.26,
+ "end": 4544.48,
+ "text": "heard"
+ },
+ {
+ "id": 7985,
+ "start": 4544.48,
+ "end": 4544.58,
+ "text": "of"
+ },
+ {
+ "id": 7986,
+ "start": 4544.58,
+ "end": 4545.08,
+ "text": "total"
+ },
+ {
+ "id": 7987,
+ "start": 4545.08,
+ "end": 4545.72,
+ "text": "Information"
+ },
+ {
+ "id": 7988,
+ "start": 4545.72,
+ "end": 4546.16,
+ "text": "awareness?"
+ },
+ {
+ "id": 7989,
+ "start": 4546.16,
+ "end": 4546.46,
+ "text": "Do"
+ },
+ {
+ "id": 7990,
+ "start": 4546.46,
+ "end": 4546.56,
+ "text": "you"
+ },
+ {
+ "id": 7991,
+ "start": 4546.56,
+ "end": 4546.66,
+ "text": "know"
+ },
+ {
+ "id": 7992,
+ "start": 4546.66,
+ "end": 4546.78,
+ "text": "what"
+ },
+ {
+ "id": 7993,
+ "start": 4546.78,
+ "end": 4546.86,
+ "text": "I'm"
+ },
+ {
+ "id": 7994,
+ "start": 4546.86,
+ "end": 4547.12,
+ "text": "talking"
+ },
+ {
+ "id": 7995,
+ "start": 4547.12,
+ "end": 4547.88,
+ "text": "about?"
+ },
+ {
+ "id": 7996,
+ "start": 4547.88,
+ "end": 4548.54,
+ "text": "No,"
+ },
+ {
+ "id": 7997,
+ "start": 4548.54,
+ "end": 4548.6,
+ "text": "I"
+ },
+ {
+ "id": 7998,
+ "start": 4548.6,
+ "end": 4548.72,
+ "text": "do"
+ },
+ {
+ "id": 7999,
+ "start": 4548.72,
+ "end": 4548.92,
+ "text": "not."
+ },
+ {
+ "id": 8000,
+ "start": 4548.92,
+ "end": 4549.84,
+ "text": "Okay,"
+ },
+ {
+ "id": 8001,
+ "start": 4549.84,
+ "end": 4550.82,
+ "text": "total"
+ },
+ {
+ "id": 8002,
+ "start": 4550.82,
+ "end": 4551.38,
+ "text": "Information"
+ },
+ {
+ "id": 8003,
+ "start": 4551.38,
+ "end": 4551.98,
+ "text": "awareness"
+ },
+ {
+ "id": 8004,
+ "start": 4551.98,
+ "end": 4552.9,
+ "text": "was"
+ },
+ {
+ "id": 8005,
+ "start": 4552.9,
+ "end": 4554.76,
+ "text": "2,003"
+ },
+ {
+ "id": 8006,
+ "start": 4554.76,
+ "end": 4555.7,
+ "text": "John"
+ },
+ {
+ "id": 8007,
+ "start": 4555.7,
+ "end": 4556.1,
+ "text": "Ashcroft"
+ },
+ {
+ "id": 8008,
+ "start": 4556.1,
+ "end": 4556.26,
+ "text": "and"
+ },
+ {
+ "id": 8009,
+ "start": 4556.26,
+ "end": 4556.42,
+ "text": "other"
+ },
+ {
+ "id": 8010,
+ "start": 4556.42,
+ "end": 4556.56,
+ "text": "is"
+ },
+ {
+ "id": 8011,
+ "start": 4556.56,
+ "end": 4556.76,
+ "text": "trying"
+ },
+ {
+ "id": 8012,
+ "start": 4556.76,
+ "end": 4556.86,
+ "text": "to"
+ },
+ {
+ "id": 8013,
+ "start": 4556.86,
+ "end": 4557.1,
+ "text": "do"
+ },
+ {
+ "id": 8014,
+ "start": 4557.1,
+ "end": 4557.7,
+ "text": "similar"
+ },
+ {
+ "id": 8015,
+ "start": 4557.7,
+ "end": 4558.14,
+ "text": "things"
+ },
+ {
+ "id": 8016,
+ "start": 4558.14,
+ "end": 4558.3,
+ "text": "to"
+ },
+ {
+ "id": 8017,
+ "start": 4558.3,
+ "end": 4558.46,
+ "text": "what"
+ },
+ {
+ "id": 8018,
+ "start": 4558.46,
+ "end": 4558.58,
+ "text": "I"
+ },
+ {
+ "id": 8019,
+ "start": 4558.58,
+ "end": 4558.8,
+ "text": "think"
+ },
+ {
+ "id": 8020,
+ "start": 4558.8,
+ "end": 4559.06,
+ "text": "is"
+ },
+ {
+ "id": 8021,
+ "start": 4559.06,
+ "end": 4559.94,
+ "text": "behind"
+ },
+ {
+ "id": 8022,
+ "start": 4559.94,
+ "end": 4560.14,
+ "text": "all"
+ },
+ {
+ "id": 8023,
+ "start": 4560.14,
+ "end": 4560.24,
+ "text": "of"
+ },
+ {
+ "id": 8024,
+ "start": 4560.24,
+ "end": 4560.96,
+ "text": "this"
+ },
+ {
+ "id": 8025,
+ "start": 4560.96,
+ "end": 4561.96,
+ "text": "geopolitical"
+ },
+ {
+ "id": 8026,
+ "start": 4561.96,
+ "end": 4562.48,
+ "text": "forces"
+ },
+ {
+ "id": 8027,
+ "start": 4562.48,
+ "end": 4562.78,
+ "text": "trying"
+ },
+ {
+ "id": 8028,
+ "start": 4562.78,
+ "end": 4562.88,
+ "text": "to"
+ },
+ {
+ "id": 8029,
+ "start": 4562.88,
+ "end": 4563.04,
+ "text": "get"
+ },
+ {
+ "id": 8030,
+ "start": 4563.04,
+ "end": 4563.53,
+ "text": "data"
+ },
+ {
+ "id": 8031,
+ "start": 4563.53,
+ "end": 4564.23,
+ "text": "information"
+ },
+ {
+ "id": 8032,
+ "start": 4564.23,
+ "end": 4564.45,
+ "text": "to"
+ },
+ {
+ "id": 8033,
+ "start": 4564.45,
+ "end": 4565.33,
+ "text": "influence"
+ },
+ {
+ "id": 8034,
+ "start": 4565.33,
+ "end": 4565.81,
+ "text": "a"
+ },
+ {
+ "id": 8035,
+ "start": 4565.81,
+ "end": 4566.41,
+ "text": "process,"
+ },
+ {
+ "id": 8036,
+ "start": 4566.41,
+ "end": 4567.35,
+ "text": "so"
+ },
+ {
+ "id": 8037,
+ "start": 4567.35,
+ "end": 4567.73,
+ "text": "when"
+ },
+ {
+ "id": 8038,
+ "start": 4567.73,
+ "end": 4567.81,
+ "text": "I"
+ },
+ {
+ "id": 8039,
+ "start": 4567.81,
+ "end": 4568.03,
+ "text": "look"
+ },
+ {
+ "id": 8040,
+ "start": 4568.03,
+ "end": 4568.23,
+ "text": "at"
+ },
+ {
+ "id": 8041,
+ "start": 4568.23,
+ "end": 4569.41,
+ "text": "volunteer"
+ },
+ {
+ "id": 8042,
+ "start": 4569.41,
+ "end": 4569.55,
+ "text": "and"
+ },
+ {
+ "id": 8043,
+ "start": 4569.55,
+ "end": 4569.69,
+ "text": "what"
+ },
+ {
+ "id": 8044,
+ "start": 4569.69,
+ "end": 4569.97,
+ "text": "they're"
+ },
+ {
+ "id": 8045,
+ "start": 4569.97,
+ "end": 4570.31,
+ "text": "doing?"
+ },
+ {
+ "id": 8046,
+ "start": 4570.31,
+ "end": 4570.71,
+ "text": "And"
+ },
+ {
+ "id": 8047,
+ "start": 4570.71,
+ "end": 4570.83,
+ "text": "I"
+ },
+ {
+ "id": 8048,
+ "start": 4570.83,
+ "end": 4571.01,
+ "text": "look"
+ },
+ {
+ "id": 8049,
+ "start": 4571.01,
+ "end": 4571.15,
+ "text": "at"
+ },
+ {
+ "id": 8050,
+ "start": 4571.15,
+ "end": 4571.39,
+ "text": "what"
+ },
+ {
+ "id": 8051,
+ "start": 4571.39,
+ "end": 4571.85,
+ "text": "app,"
+ },
+ {
+ "id": 8052,
+ "start": 4571.85,
+ "end": 4572.41,
+ "text": "which"
+ },
+ {
+ "id": 8053,
+ "start": 4572.41,
+ "end": 4572.55,
+ "text": "is"
+ },
+ {
+ "id": 8054,
+ "start": 4572.55,
+ "end": 4572.87,
+ "text": "another"
+ },
+ {
+ "id": 8055,
+ "start": 4572.87,
+ "end": 4574.16,
+ "text": "acquisition."
+ },
+ {
+ "id": 8056,
+ "start": 4574.16,
+ "end": 4574.82,
+ "text": "And"
+ },
+ {
+ "id": 8057,
+ "start": 4574.82,
+ "end": 4574.9,
+ "text": "I"
+ },
+ {
+ "id": 8058,
+ "start": 4574.9,
+ "end": 4575.12,
+ "text": "look"
+ },
+ {
+ "id": 8059,
+ "start": 4575.12,
+ "end": 4575.28,
+ "text": "at"
+ },
+ {
+ "id": 8060,
+ "start": 4575.28,
+ "end": 4575.56,
+ "text": "where"
+ },
+ {
+ "id": 8061,
+ "start": 4575.56,
+ "end": 4576.34,
+ "text": "you"
+ },
+ {
+ "id": 8062,
+ "start": 4576.34,
+ "end": 4576.58,
+ "text": "are"
+ },
+ {
+ "id": 8063,
+ "start": 4576.58,
+ "end": 4576.98,
+ "text": "from"
+ },
+ {
+ "id": 8064,
+ "start": 4576.98,
+ "end": 4577.24,
+ "text": "the"
+ },
+ {
+ "id": 8065,
+ "start": 4577.24,
+ "end": 4578.74,
+ "text": "2,011"
+ },
+ {
+ "id": 8066,
+ "start": 4578.74,
+ "end": 4579.72,
+ "text": "consent"
+ },
+ {
+ "id": 8067,
+ "start": 4579.72,
+ "end": 4580.14,
+ "text": "decree"
+ },
+ {
+ "id": 8068,
+ "start": 4580.14,
+ "end": 4580.98,
+ "text": "and"
+ },
+ {
+ "id": 8069,
+ "start": 4580.98,
+ "end": 4581.2,
+ "text": "where"
+ },
+ {
+ "id": 8070,
+ "start": 4581.2,
+ "end": 4581.36,
+ "text": "you"
+ },
+ {
+ "id": 8071,
+ "start": 4581.36,
+ "end": 4581.52,
+ "text": "are"
+ },
+ {
+ "id": 8072,
+ "start": 4581.52,
+ "end": 4581.92,
+ "text": "today."
+ },
+ {
+ "id": 8073,
+ "start": 4581.92,
+ "end": 4582.74,
+ "text": "I'm"
+ },
+ {
+ "id": 8074,
+ "start": 4582.74,
+ "end": 4583.68,
+ "text": "thinking"
+ },
+ {
+ "id": 8075,
+ "start": 4583.68,
+ "end": 4584.26,
+ "text": "is"
+ },
+ {
+ "id": 8076,
+ "start": 4584.26,
+ "end": 4584.52,
+ "text": "this"
+ },
+ {
+ "id": 8077,
+ "start": 4584.52,
+ "end": 4584.7,
+ "text": "guy"
+ },
+ {
+ "id": 8078,
+ "start": 4584.7,
+ "end": 4585.64,
+ "text": "Outfoxing"
+ },
+ {
+ "id": 8079,
+ "start": 4585.64,
+ "end": 4585.76,
+ "text": "the"
+ },
+ {
+ "id": 8080,
+ "start": 4585.76,
+ "end": 4586.36,
+ "text": "foxes"
+ },
+ {
+ "id": 8081,
+ "start": 4586.36,
+ "end": 4586.74,
+ "text": "or"
+ },
+ {
+ "id": 8082,
+ "start": 4586.74,
+ "end": 4587.1,
+ "text": "is"
+ },
+ {
+ "id": 8083,
+ "start": 4587.1,
+ "end": 4587.54,
+ "text": "he"
+ },
+ {
+ "id": 8084,
+ "start": 4587.54,
+ "end": 4588.6,
+ "text": "going"
+ },
+ {
+ "id": 8085,
+ "start": 4588.6,
+ "end": 4589.14,
+ "text": "along"
+ },
+ {
+ "id": 8086,
+ "start": 4589.14,
+ "end": 4589.36,
+ "text": "with"
+ },
+ {
+ "id": 8087,
+ "start": 4589.36,
+ "end": 4589.56,
+ "text": "what"
+ },
+ {
+ "id": 8088,
+ "start": 4589.56,
+ "end": 4589.96,
+ "text": "is"
+ },
+ {
+ "id": 8089,
+ "start": 4589.96,
+ "end": 4590.24,
+ "text": "a"
+ },
+ {
+ "id": 8090,
+ "start": 4590.24,
+ "end": 4590.88,
+ "text": "major"
+ },
+ {
+ "id": 8091,
+ "start": 4590.88,
+ "end": 4591.3,
+ "text": "trend"
+ },
+ {
+ "id": 8092,
+ "start": 4591.3,
+ "end": 4591.44,
+ "text": "in"
+ },
+ {
+ "id": 8093,
+ "start": 4591.44,
+ "end": 4591.56,
+ "text": "an"
+ },
+ {
+ "id": 8094,
+ "start": 4591.56,
+ "end": 4592.16,
+ "text": "information"
+ },
+ {
+ "id": 8095,
+ "start": 4592.16,
+ "end": 4592.54,
+ "text": "age"
+ },
+ {
+ "id": 8096,
+ "start": 4592.54,
+ "end": 4592.72,
+ "text": "to"
+ },
+ {
+ "id": 8097,
+ "start": 4592.72,
+ "end": 4592.96,
+ "text": "try"
+ },
+ {
+ "id": 8098,
+ "start": 4592.96,
+ "end": 4593.08,
+ "text": "to"
+ },
+ {
+ "id": 8099,
+ "start": 4593.08,
+ "end": 4593.58,
+ "text": "harvest"
+ },
+ {
+ "id": 8100,
+ "start": 4593.58,
+ "end": 4594.5,
+ "text": "information"
+ },
+ {
+ "id": 8101,
+ "start": 4594.5,
+ "end": 4595.36,
+ "text": "for"
+ },
+ {
+ "id": 8102,
+ "start": 4595.36,
+ "end": 4595.88,
+ "text": "political"
+ },
+ {
+ "id": 8103,
+ "start": 4595.88,
+ "end": 4598.23,
+ "text": "forces."
+ },
+ {
+ "id": 8104,
+ "start": 4598.23,
+ "end": 4598.99,
+ "text": "Question"
+ },
+ {
+ "id": 8105,
+ "start": 4598.99,
+ "end": 4599.17,
+ "text": "to"
+ },
+ {
+ "id": 8106,
+ "start": 4599.17,
+ "end": 4599.35,
+ "text": "you"
+ },
+ {
+ "id": 8107,
+ "start": 4599.35,
+ "end": 4599.99,
+ "text": "is"
+ },
+ {
+ "id": 8108,
+ "start": 4599.99,
+ "end": 4600.83,
+ "text": "do"
+ },
+ {
+ "id": 8109,
+ "start": 4600.83,
+ "end": 4600.97,
+ "text": "you"
+ },
+ {
+ "id": 8110,
+ "start": 4600.97,
+ "end": 4601.39,
+ "text": "see"
+ },
+ {
+ "id": 8111,
+ "start": 4601.39,
+ "end": 4601.59,
+ "text": "that"
+ },
+ {
+ "id": 8112,
+ "start": 4601.59,
+ "end": 4601.87,
+ "text": "those"
+ },
+ {
+ "id": 8113,
+ "start": 4601.87,
+ "end": 4602.79,
+ "text": "applications"
+ },
+ {
+ "id": 8114,
+ "start": 4602.79,
+ "end": 4603.09,
+ "text": "that"
+ },
+ {
+ "id": 8115,
+ "start": 4603.09,
+ "end": 4603.43,
+ "text": "those"
+ },
+ {
+ "id": 8116,
+ "start": 4603.43,
+ "end": 4604.13,
+ "text": "companies"
+ },
+ {
+ "id": 8117,
+ "start": 4604.13,
+ "end": 4604.81,
+ "text": "volunteer"
+ },
+ {
+ "id": 8118,
+ "start": 4604.81,
+ "end": 4605.45,
+ "text": "and"
+ },
+ {
+ "id": 8119,
+ "start": 4605.45,
+ "end": 4605.79,
+ "text": "even"
+ },
+ {
+ "id": 8120,
+ "start": 4605.79,
+ "end": 4606.11,
+ "text": "what's"
+ },
+ {
+ "id": 8121,
+ "start": 4606.11,
+ "end": 4606.35,
+ "text": "app"
+ },
+ {
+ "id": 8122,
+ "start": 4606.35,
+ "end": 4606.49,
+ "text": "are"
+ },
+ {
+ "id": 8123,
+ "start": 4606.49,
+ "end": 4606.67,
+ "text": "going"
+ },
+ {
+ "id": 8124,
+ "start": 4606.67,
+ "end": 4606.77,
+ "text": "to"
+ },
+ {
+ "id": 8125,
+ "start": 4606.77,
+ "end": 4607.05,
+ "text": "fall"
+ },
+ {
+ "id": 8126,
+ "start": 4607.05,
+ "end": 4607.25,
+ "text": "into"
+ },
+ {
+ "id": 8127,
+ "start": 4607.25,
+ "end": 4607.39,
+ "text": "the"
+ },
+ {
+ "id": 8128,
+ "start": 4607.39,
+ "end": 4607.67,
+ "text": "same"
+ },
+ {
+ "id": 8129,
+ "start": 4607.67,
+ "end": 4608.45,
+ "text": "situation"
+ },
+ {
+ "id": 8130,
+ "start": 4608.45,
+ "end": 4609.05,
+ "text": "that"
+ },
+ {
+ "id": 8131,
+ "start": 4609.05,
+ "end": 4609.31,
+ "text": "you've"
+ },
+ {
+ "id": 8132,
+ "start": 4609.31,
+ "end": 4609.47,
+ "text": "just"
+ },
+ {
+ "id": 8133,
+ "start": 4609.47,
+ "end": 4609.85,
+ "text": "fallen"
+ },
+ {
+ "id": 8134,
+ "start": 4609.85,
+ "end": 4610.15,
+ "text": "into"
+ },
+ {
+ "id": 8135,
+ "start": 4610.15,
+ "end": 4610.35,
+ "text": "over"
+ },
+ {
+ "id": 8136,
+ "start": 4610.35,
+ "end": 4610.47,
+ "text": "the"
+ },
+ {
+ "id": 8137,
+ "start": 4610.47,
+ "end": 4610.69,
+ "text": "last"
+ },
+ {
+ "id": 8138,
+ "start": 4610.69,
+ "end": 4611.05,
+ "text": "several"
+ },
+ {
+ "id": 8139,
+ "start": 4611.05,
+ "end": 4613.64,
+ "text": "years."
+ },
+ {
+ "id": 8140,
+ "start": 4613.64,
+ "end": 4614.62,
+ "text": "Senator"
+ },
+ {
+ "id": 8141,
+ "start": 4614.62,
+ "end": 4614.86,
+ "text": "I'm"
+ },
+ {
+ "id": 8142,
+ "start": 4614.86,
+ "end": 4615.66,
+ "text": "not"
+ },
+ {
+ "id": 8143,
+ "start": 4615.66,
+ "end": 4616.64,
+ "text": "I'm"
+ },
+ {
+ "id": 8144,
+ "start": 4616.64,
+ "end": 4616.84,
+ "text": "not"
+ },
+ {
+ "id": 8145,
+ "start": 4616.84,
+ "end": 4617.1,
+ "text": "sure,"
+ },
+ {
+ "id": 8146,
+ "start": 4617.1,
+ "end": 4617.8,
+ "text": "specifically."
+ },
+ {
+ "id": 8147,
+ "start": 4617.8,
+ "end": 4618.94,
+ "text": "Overall,"
+ },
+ {
+ "id": 8148,
+ "start": 4618.94,
+ "end": 4619.4,
+ "text": "I"
+ },
+ {
+ "id": 8149,
+ "start": 4619.4,
+ "end": 4619.72,
+ "text": "do"
+ },
+ {
+ "id": 8150,
+ "start": 4619.72,
+ "end": 4619.94,
+ "text": "think"
+ },
+ {
+ "id": 8151,
+ "start": 4619.94,
+ "end": 4620.32,
+ "text": "that"
+ },
+ {
+ "id": 8152,
+ "start": 4620.32,
+ "end": 4621.02,
+ "text": "these"
+ },
+ {
+ "id": 8153,
+ "start": 4621.02,
+ "end": 4621.44,
+ "text": "issues"
+ },
+ {
+ "id": 8154,
+ "start": 4621.44,
+ "end": 4621.7,
+ "text": "around"
+ },
+ {
+ "id": 8155,
+ "start": 4621.7,
+ "end": 4622.3,
+ "text": "information"
+ },
+ {
+ "id": 8156,
+ "start": 4622.3,
+ "end": 4623,
+ "text": "access"
+ },
+ {
+ "id": 8157,
+ "start": 4623,
+ "end": 4624.04,
+ "text": "are"
+ },
+ {
+ "id": 8158,
+ "start": 4624.04,
+ "end": 4624.68,
+ "text": "challenging"
+ },
+ {
+ "id": 8159,
+ "start": 4624.68,
+ "end": 4625.38,
+ "text": "to"
+ },
+ {
+ "id": 8160,
+ "start": 4625.38,
+ "end": 4625.5,
+ "text": "the"
+ },
+ {
+ "id": 8161,
+ "start": 4625.5,
+ "end": 4626.12,
+ "text": "specifics"
+ },
+ {
+ "id": 8162,
+ "start": 4626.12,
+ "end": 4626.38,
+ "text": "about"
+ },
+ {
+ "id": 8163,
+ "start": 4626.38,
+ "end": 4626.78,
+ "text": "those"
+ },
+ {
+ "id": 8164,
+ "start": 4626.78,
+ "end": 4627.18,
+ "text": "apps"
+ },
+ {
+ "id": 8165,
+ "start": 4627.18,
+ "end": 4627.88,
+ "text": "I'm"
+ },
+ {
+ "id": 8166,
+ "start": 4627.88,
+ "end": 4628.18,
+ "text": "not"
+ },
+ {
+ "id": 8167,
+ "start": 4628.18,
+ "end": 4628.48,
+ "text": "really"
+ },
+ {
+ "id": 8168,
+ "start": 4628.48,
+ "end": 4628.7,
+ "text": "that"
+ },
+ {
+ "id": 8169,
+ "start": 4628.7,
+ "end": 4629.16,
+ "text": "familiar"
+ },
+ {
+ "id": 8170,
+ "start": 4629.16,
+ "end": 4629.34,
+ "text": "with"
+ },
+ {
+ "id": 8171,
+ "start": 4629.34,
+ "end": 4629.52,
+ "text": "what"
+ },
+ {
+ "id": 8172,
+ "start": 4629.52,
+ "end": 4630.08,
+ "text": "planter"
+ },
+ {
+ "id": 8173,
+ "start": 4630.08,
+ "end": 4630.96,
+ "text": "does."
+ },
+ {
+ "id": 8174,
+ "start": 4630.96,
+ "end": 4632.02,
+ "text": "WhatsApp"
+ },
+ {
+ "id": 8175,
+ "start": 4632.02,
+ "end": 4632.98,
+ "text": "collects"
+ },
+ {
+ "id": 8176,
+ "start": 4632.98,
+ "end": 4633.26,
+ "text": "very"
+ },
+ {
+ "id": 8177,
+ "start": 4633.26,
+ "end": 4633.5,
+ "text": "little"
+ },
+ {
+ "id": 8178,
+ "start": 4633.5,
+ "end": 4634.3,
+ "text": "information"
+ },
+ {
+ "id": 8179,
+ "start": 4634.3,
+ "end": 4635.3,
+ "text": "and"
+ },
+ {
+ "id": 8180,
+ "start": 4635.3,
+ "end": 4635.74,
+ "text": "I"
+ },
+ {
+ "id": 8181,
+ "start": 4635.74,
+ "end": 4635.92,
+ "text": "think"
+ },
+ {
+ "id": 8182,
+ "start": 4635.92,
+ "end": 4636.1,
+ "text": "is"
+ },
+ {
+ "id": 8183,
+ "start": 4636.1,
+ "end": 4636.34,
+ "text": "less"
+ },
+ {
+ "id": 8184,
+ "start": 4636.34,
+ "end": 4636.68,
+ "text": "likely"
+ },
+ {
+ "id": 8185,
+ "start": 4636.68,
+ "end": 4636.8,
+ "text": "to"
+ },
+ {
+ "id": 8186,
+ "start": 4636.8,
+ "end": 4637.12,
+ "text": "have"
+ },
+ {
+ "id": 8187,
+ "start": 4637.12,
+ "end": 4637.68,
+ "text": "the"
+ },
+ {
+ "id": 8188,
+ "start": 4637.68,
+ "end": 4637.82,
+ "text": "kind"
+ },
+ {
+ "id": 8189,
+ "start": 4637.82,
+ "end": 4637.92,
+ "text": "of"
+ },
+ {
+ "id": 8190,
+ "start": 4637.92,
+ "end": 4638.28,
+ "text": "issues"
+ },
+ {
+ "id": 8191,
+ "start": 4638.28,
+ "end": 4638.54,
+ "text": "because"
+ },
+ {
+ "id": 8192,
+ "start": 4638.54,
+ "end": 4638.66,
+ "text": "of"
+ },
+ {
+ "id": 8193,
+ "start": 4638.66,
+ "end": 4638.78,
+ "text": "the"
+ },
+ {
+ "id": 8194,
+ "start": 4638.78,
+ "end": 4638.86,
+ "text": "way"
+ },
+ {
+ "id": 8195,
+ "start": 4638.86,
+ "end": 4639,
+ "text": "that"
+ },
+ {
+ "id": 8196,
+ "start": 4639,
+ "end": 4639.12,
+ "text": "the"
+ },
+ {
+ "id": 8197,
+ "start": 4639.12,
+ "end": 4639.56,
+ "text": "services"
+ },
+ {
+ "id": 8198,
+ "start": 4639.56,
+ "end": 4640.18,
+ "text": "architected"
+ },
+ {
+ "id": 8199,
+ "start": 4640.18,
+ "end": 4640.36,
+ "text": "but"
+ },
+ {
+ "id": 8200,
+ "start": 4640.36,
+ "end": 4640.72,
+ "text": "certainly"
+ },
+ {
+ "id": 8201,
+ "start": 4640.72,
+ "end": 4640.8,
+ "text": "I"
+ },
+ {
+ "id": 8202,
+ "start": 4640.8,
+ "end": 4640.96,
+ "text": "think"
+ },
+ {
+ "id": 8203,
+ "start": 4640.96,
+ "end": 4641.1,
+ "text": "that"
+ },
+ {
+ "id": 8204,
+ "start": 4641.1,
+ "end": 4641.34,
+ "text": "these"
+ },
+ {
+ "id": 8205,
+ "start": 4641.34,
+ "end": 4641.5,
+ "text": "are"
+ },
+ {
+ "id": 8206,
+ "start": 4641.5,
+ "end": 4641.8,
+ "text": "broad"
+ },
+ {
+ "id": 8207,
+ "start": 4641.8,
+ "end": 4642.16,
+ "text": "issues"
+ },
+ {
+ "id": 8208,
+ "start": 4642.16,
+ "end": 4642.58,
+ "text": "across"
+ },
+ {
+ "id": 8209,
+ "start": 4642.58,
+ "end": 4642.72,
+ "text": "the"
+ },
+ {
+ "id": 8210,
+ "start": 4642.72,
+ "end": 4642.9,
+ "text": "tech"
+ },
+ {
+ "id": 8211,
+ "start": 4642.9,
+ "end": 4643.94,
+ "text": "industry."
+ },
+ {
+ "id": 8212,
+ "start": 4643.94,
+ "end": 4644.78,
+ "text": "Well,"
+ },
+ {
+ "id": 8213,
+ "start": 4644.78,
+ "end": 4644.9,
+ "text": "I"
+ },
+ {
+ "id": 8214,
+ "start": 4644.9,
+ "end": 4645.2,
+ "text": "guess"
+ },
+ {
+ "id": 8215,
+ "start": 4645.2,
+ "end": 4646.14,
+ "text": "given"
+ },
+ {
+ "id": 8216,
+ "start": 4646.14,
+ "end": 4646.6,
+ "text": "the"
+ },
+ {
+ "id": 8217,
+ "start": 4646.6,
+ "end": 4646.94,
+ "text": "track"
+ },
+ {
+ "id": 8218,
+ "start": 4646.94,
+ "end": 4647.26,
+ "text": "record"
+ },
+ {
+ "id": 8219,
+ "start": 4647.26,
+ "end": 4647.36,
+ "text": "of"
+ },
+ {
+ "id": 8220,
+ "start": 4647.36,
+ "end": 4647.54,
+ "text": "where"
+ },
+ {
+ "id": 8221,
+ "start": 4647.54,
+ "end": 4648.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 8222,
+ "start": 4648.02,
+ "end": 4648.18,
+ "text": "is"
+ },
+ {
+ "id": 8223,
+ "start": 4648.18,
+ "end": 4648.32,
+ "text": "and"
+ },
+ {
+ "id": 8224,
+ "start": 4648.32,
+ "end": 4648.46,
+ "text": "why"
+ },
+ {
+ "id": 8225,
+ "start": 4648.46,
+ "end": 4648.66,
+ "text": "you're"
+ },
+ {
+ "id": 8226,
+ "start": 4648.66,
+ "end": 4648.86,
+ "text": "here"
+ },
+ {
+ "id": 8227,
+ "start": 4648.86,
+ "end": 4649.4,
+ "text": "today,"
+ },
+ {
+ "id": 8228,
+ "start": 4649.4,
+ "end": 4649.86,
+ "text": "I"
+ },
+ {
+ "id": 8229,
+ "start": 4649.86,
+ "end": 4650.16,
+ "text": "guess"
+ },
+ {
+ "id": 8230,
+ "start": 4650.16,
+ "end": 4650.46,
+ "text": "people"
+ },
+ {
+ "id": 8231,
+ "start": 4650.46,
+ "end": 4650.66,
+ "text": "would"
+ },
+ {
+ "id": 8232,
+ "start": 4650.66,
+ "end": 4650.82,
+ "text": "say"
+ },
+ {
+ "id": 8233,
+ "start": 4650.82,
+ "end": 4650.98,
+ "text": "that"
+ },
+ {
+ "id": 8234,
+ "start": 4650.98,
+ "end": 4651.1,
+ "text": "they"
+ },
+ {
+ "id": 8235,
+ "start": 4651.1,
+ "end": 4651.34,
+ "text": "didn't"
+ },
+ {
+ "id": 8236,
+ "start": 4651.34,
+ "end": 4651.68,
+ "text": "act"
+ },
+ {
+ "id": 8237,
+ "start": 4651.68,
+ "end": 4652.76,
+ "text": "boldly"
+ },
+ {
+ "id": 8238,
+ "start": 4652.76,
+ "end": 4653.1,
+ "text": "enough."
+ },
+ {
+ "id": 8239,
+ "start": 4653.1,
+ "end": 4654.3,
+ "text": "And"
+ },
+ {
+ "id": 8240,
+ "start": 4654.3,
+ "end": 4655.04,
+ "text": "the"
+ },
+ {
+ "id": 8241,
+ "start": 4655.04,
+ "end": 4655.42,
+ "text": "fact"
+ },
+ {
+ "id": 8242,
+ "start": 4655.42,
+ "end": 4657.4,
+ "text": "that"
+ },
+ {
+ "id": 8243,
+ "start": 4657.4,
+ "end": 4658.38,
+ "text": "people"
+ },
+ {
+ "id": 8244,
+ "start": 4658.38,
+ "end": 4658.64,
+ "text": "like"
+ },
+ {
+ "id": 8245,
+ "start": 4658.64,
+ "end": 4658.94,
+ "text": "John"
+ },
+ {
+ "id": 8246,
+ "start": 4658.94,
+ "end": 4659.78,
+ "text": "Bolton"
+ },
+ {
+ "id": 8247,
+ "start": 4659.78,
+ "end": 4660.76,
+ "text": "basically"
+ },
+ {
+ "id": 8248,
+ "start": 4660.76,
+ "end": 4661.12,
+ "text": "was"
+ },
+ {
+ "id": 8249,
+ "start": 4661.12,
+ "end": 4661.4,
+ "text": "an"
+ },
+ {
+ "id": 8250,
+ "start": 4661.4,
+ "end": 4662,
+ "text": "investor"
+ },
+ {
+ "id": 8251,
+ "start": 4662,
+ "end": 4663.78,
+ "text": "in"
+ },
+ {
+ "id": 8252,
+ "start": 4663.78,
+ "end": 4664.94,
+ "text": "New"
+ },
+ {
+ "id": 8253,
+ "start": 4664.94,
+ "end": 4665.14,
+ "text": "York"
+ },
+ {
+ "id": 8254,
+ "start": 4665.14,
+ "end": 4665.5,
+ "text": "Times"
+ },
+ {
+ "id": 8255,
+ "start": 4665.5,
+ "end": 4666,
+ "text": "article"
+ },
+ {
+ "id": 8256,
+ "start": 4666,
+ "end": 4666.5,
+ "text": "earlier."
+ },
+ {
+ "id": 8257,
+ "start": 4666.5,
+ "end": 4667.18,
+ "text": "I"
+ },
+ {
+ "id": 8258,
+ "start": 4667.18,
+ "end": 4667.38,
+ "text": "guess"
+ },
+ {
+ "id": 8259,
+ "start": 4667.38,
+ "end": 4667.5,
+ "text": "it"
+ },
+ {
+ "id": 8260,
+ "start": 4667.5,
+ "end": 4667.64,
+ "text": "was"
+ },
+ {
+ "id": 8261,
+ "start": 4667.64,
+ "end": 4668.12,
+ "text": "actually"
+ },
+ {
+ "id": 8262,
+ "start": 4668.12,
+ "end": 4668.52,
+ "text": "last"
+ },
+ {
+ "id": 8263,
+ "start": 4668.52,
+ "end": 4669.46,
+ "text": "month"
+ },
+ {
+ "id": 8264,
+ "start": 4669.46,
+ "end": 4670.22,
+ "text": "that"
+ },
+ {
+ "id": 8265,
+ "start": 4670.22,
+ "end": 4670.36,
+ "text": "the"
+ },
+ {
+ "id": 8266,
+ "start": 4670.36,
+ "end": 4670.72,
+ "text": "Bolton"
+ },
+ {
+ "id": 8267,
+ "start": 4670.72,
+ "end": 4670.96,
+ "text": "pack"
+ },
+ {
+ "id": 8268,
+ "start": 4670.96,
+ "end": 4671.12,
+ "text": "was"
+ },
+ {
+ "id": 8269,
+ "start": 4671.12,
+ "end": 4671.58,
+ "text": "obsessed"
+ },
+ {
+ "id": 8270,
+ "start": 4671.58,
+ "end": 4671.72,
+ "text": "with"
+ },
+ {
+ "id": 8271,
+ "start": 4671.72,
+ "end": 4671.86,
+ "text": "how"
+ },
+ {
+ "id": 8272,
+ "start": 4671.86,
+ "end": 4672.28,
+ "text": "America"
+ },
+ {
+ "id": 8273,
+ "start": 4672.28,
+ "end": 4672.44,
+ "text": "was"
+ },
+ {
+ "id": 8274,
+ "start": 4672.44,
+ "end": 4672.82,
+ "text": "becoming"
+ },
+ {
+ "id": 8275,
+ "start": 4672.82,
+ "end": 4673.18,
+ "text": "limp,"
+ },
+ {
+ "id": 8276,
+ "start": 4673.18,
+ "end": 4673.54,
+ "text": "rested"
+ },
+ {
+ "id": 8277,
+ "start": 4673.54,
+ "end": 4673.72,
+ "text": "and"
+ },
+ {
+ "id": 8278,
+ "start": 4673.72,
+ "end": 4674.34,
+ "text": "spineless"
+ },
+ {
+ "id": 8279,
+ "start": 4674.34,
+ "end": 4674.46,
+ "text": "and"
+ },
+ {
+ "id": 8280,
+ "start": 4674.46,
+ "end": 4674.6,
+ "text": "had"
+ },
+ {
+ "id": 8281,
+ "start": 4674.6,
+ "end": 4674.9,
+ "text": "wanted"
+ },
+ {
+ "id": 8282,
+ "start": 4674.9,
+ "end": 4675.3,
+ "text": "research"
+ },
+ {
+ "id": 8283,
+ "start": 4675.3,
+ "end": 4675.42,
+ "text": "and"
+ },
+ {
+ "id": 8284,
+ "start": 4675.42,
+ "end": 4675.94,
+ "text": "messaging"
+ },
+ {
+ "id": 8285,
+ "start": 4675.94,
+ "end": 4676.12,
+ "text": "for"
+ },
+ {
+ "id": 8286,
+ "start": 4676.12,
+ "end": 4676.58,
+ "text": "national"
+ },
+ {
+ "id": 8287,
+ "start": 4676.58,
+ "end": 4677.08,
+ "text": "security"
+ },
+ {
+ "id": 8288,
+ "start": 4677.08,
+ "end": 4677.5,
+ "text": "issues."
+ },
+ {
+ "id": 8289,
+ "start": 4677.5,
+ "end": 4678.8,
+ "text": "So"
+ },
+ {
+ "id": 8290,
+ "start": 4678.8,
+ "end": 4679.14,
+ "text": "the"
+ },
+ {
+ "id": 8291,
+ "start": 4679.14,
+ "end": 4679.46,
+ "text": "fact"
+ },
+ {
+ "id": 8292,
+ "start": 4679.46,
+ "end": 4679.92,
+ "text": "that"
+ },
+ {
+ "id": 8293,
+ "start": 4679.92,
+ "end": 4681.1,
+ "text": "you"
+ },
+ {
+ "id": 8294,
+ "start": 4681.1,
+ "end": 4681.26,
+ "text": "know,"
+ },
+ {
+ "id": 8295,
+ "start": 4681.26,
+ "end": 4681.42,
+ "text": "there"
+ },
+ {
+ "id": 8296,
+ "start": 4681.42,
+ "end": 4681.58,
+ "text": "are"
+ },
+ {
+ "id": 8297,
+ "start": 4681.58,
+ "end": 4681.64,
+ "text": "a"
+ },
+ {
+ "id": 8298,
+ "start": 4681.64,
+ "end": 4681.96,
+ "text": "lot"
+ },
+ {
+ "id": 8299,
+ "start": 4681.96,
+ "end": 4682.14,
+ "text": "of"
+ },
+ {
+ "id": 8300,
+ "start": 4682.14,
+ "end": 4683.03,
+ "text": "people"
+ },
+ {
+ "id": 8301,
+ "start": 4683.03,
+ "end": 4683.13,
+ "text": "who"
+ },
+ {
+ "id": 8302,
+ "start": 4683.13,
+ "end": 4683.35,
+ "text": "are"
+ },
+ {
+ "id": 8303,
+ "start": 4683.35,
+ "end": 4684.11,
+ "text": "interested"
+ },
+ {
+ "id": 8304,
+ "start": 4684.11,
+ "end": 4684.27,
+ "text": "in"
+ },
+ {
+ "id": 8305,
+ "start": 4684.27,
+ "end": 4684.51,
+ "text": "this"
+ },
+ {
+ "id": 8306,
+ "start": 4684.51,
+ "end": 4685.57,
+ "text": "larger"
+ },
+ {
+ "id": 8307,
+ "start": 4685.57,
+ "end": 4685.99,
+ "text": "effort."
+ },
+ {
+ "id": 8308,
+ "start": 4685.99,
+ "end": 4686.59,
+ "text": "And"
+ },
+ {
+ "id": 8309,
+ "start": 4686.59,
+ "end": 4687.15,
+ "text": "what"
+ },
+ {
+ "id": 8310,
+ "start": 4687.15,
+ "end": 4687.23,
+ "text": "I"
+ },
+ {
+ "id": 8311,
+ "start": 4687.23,
+ "end": 4687.47,
+ "text": "think"
+ },
+ {
+ "id": 8312,
+ "start": 4687.47,
+ "end": 4687.75,
+ "text": "my"
+ },
+ {
+ "id": 8313,
+ "start": 4687.75,
+ "end": 4688.55,
+ "text": "constituents"
+ },
+ {
+ "id": 8314,
+ "start": 4688.55,
+ "end": 4688.81,
+ "text": "want"
+ },
+ {
+ "id": 8315,
+ "start": 4688.81,
+ "end": 4688.93,
+ "text": "to"
+ },
+ {
+ "id": 8316,
+ "start": 4688.93,
+ "end": 4689.13,
+ "text": "know"
+ },
+ {
+ "id": 8317,
+ "start": 4689.13,
+ "end": 4689.43,
+ "text": "is"
+ },
+ {
+ "id": 8318,
+ "start": 4689.43,
+ "end": 4689.67,
+ "text": "was"
+ },
+ {
+ "id": 8319,
+ "start": 4689.67,
+ "end": 4689.89,
+ "text": "this"
+ },
+ {
+ "id": 8320,
+ "start": 4689.89,
+ "end": 4690.37,
+ "text": "discussed"
+ },
+ {
+ "id": 8321,
+ "start": 4690.37,
+ "end": 4690.51,
+ "text": "at"
+ },
+ {
+ "id": 8322,
+ "start": 4690.51,
+ "end": 4690.69,
+ "text": "your"
+ },
+ {
+ "id": 8323,
+ "start": 4690.69,
+ "end": 4690.97,
+ "text": "board"
+ },
+ {
+ "id": 8324,
+ "start": 4690.97,
+ "end": 4691.43,
+ "text": "meetings"
+ },
+ {
+ "id": 8325,
+ "start": 4691.43,
+ "end": 4692.33,
+ "text": "and"
+ },
+ {
+ "id": 8326,
+ "start": 4692.33,
+ "end": 4692.95,
+ "text": "what"
+ },
+ {
+ "id": 8327,
+ "start": 4692.95,
+ "end": 4693.09,
+ "text": "are"
+ },
+ {
+ "id": 8328,
+ "start": 4693.09,
+ "end": 4693.29,
+ "text": "the"
+ },
+ {
+ "id": 8329,
+ "start": 4693.29,
+ "end": 4694.31,
+ "text": "applications"
+ },
+ {
+ "id": 8330,
+ "start": 4694.31,
+ "end": 4694.61,
+ "text": "and"
+ },
+ {
+ "id": 8331,
+ "start": 4694.61,
+ "end": 4695.13,
+ "text": "interests"
+ },
+ {
+ "id": 8332,
+ "start": 4695.13,
+ "end": 4695.49,
+ "text": "that"
+ },
+ {
+ "id": 8333,
+ "start": 4695.49,
+ "end": 4696.6,
+ "text": "are"
+ },
+ {
+ "id": 8334,
+ "start": 4696.6,
+ "end": 4697.42,
+ "text": "being"
+ },
+ {
+ "id": 8335,
+ "start": 4697.42,
+ "end": 4698,
+ "text": "discussed"
+ },
+ {
+ "id": 8336,
+ "start": 4698,
+ "end": 4698.4,
+ "text": "without"
+ },
+ {
+ "id": 8337,
+ "start": 4698.4,
+ "end": 4698.82,
+ "text": "putting"
+ },
+ {
+ "id": 8338,
+ "start": 4698.82,
+ "end": 4699.38,
+ "text": "real"
+ },
+ {
+ "id": 8339,
+ "start": 4699.38,
+ "end": 4699.8,
+ "text": "teeth"
+ },
+ {
+ "id": 8340,
+ "start": 4699.8,
+ "end": 4700.1,
+ "text": "into"
+ },
+ {
+ "id": 8341,
+ "start": 4700.1,
+ "end": 4700.26,
+ "text": "this?"
+ },
+ {
+ "id": 8342,
+ "start": 4700.26,
+ "end": 4700.46,
+ "text": "We"
+ },
+ {
+ "id": 8343,
+ "start": 4700.46,
+ "end": 4700.68,
+ "text": "don't"
+ },
+ {
+ "id": 8344,
+ "start": 4700.68,
+ "end": 4701.06,
+ "text": "want"
+ },
+ {
+ "id": 8345,
+ "start": 4701.06,
+ "end": 4701.2,
+ "text": "to"
+ },
+ {
+ "id": 8346,
+ "start": 4701.2,
+ "end": 4701.38,
+ "text": "come"
+ },
+ {
+ "id": 8347,
+ "start": 4701.38,
+ "end": 4701.56,
+ "text": "back"
+ },
+ {
+ "id": 8348,
+ "start": 4701.56,
+ "end": 4701.7,
+ "text": "to"
+ },
+ {
+ "id": 8349,
+ "start": 4701.7,
+ "end": 4701.88,
+ "text": "this"
+ },
+ {
+ "id": 8350,
+ "start": 4701.88,
+ "end": 4702.4,
+ "text": "situation"
+ },
+ {
+ "id": 8351,
+ "start": 4702.4,
+ "end": 4702.72,
+ "text": "again."
+ },
+ {
+ "id": 8352,
+ "start": 4702.72,
+ "end": 4703.42,
+ "text": "I"
+ },
+ {
+ "id": 8353,
+ "start": 4703.42,
+ "end": 4703.7,
+ "text": "believe"
+ },
+ {
+ "id": 8354,
+ "start": 4703.7,
+ "end": 4703.82,
+ "text": "you"
+ },
+ {
+ "id": 8355,
+ "start": 4703.82,
+ "end": 4703.96,
+ "text": "have"
+ },
+ {
+ "id": 8356,
+ "start": 4703.96,
+ "end": 4704.08,
+ "text": "all"
+ },
+ {
+ "id": 8357,
+ "start": 4704.08,
+ "end": 4704.22,
+ "text": "the"
+ },
+ {
+ "id": 8358,
+ "start": 4704.22,
+ "end": 4704.68,
+ "text": "talent."
+ },
+ {
+ "id": 8359,
+ "start": 4704.68,
+ "end": 4704.96,
+ "text": "My"
+ },
+ {
+ "id": 8360,
+ "start": 4704.96,
+ "end": 4705.32,
+ "text": "question"
+ },
+ {
+ "id": 8361,
+ "start": 4705.32,
+ "end": 4705.48,
+ "text": "is"
+ },
+ {
+ "id": 8362,
+ "start": 4705.48,
+ "end": 4705.74,
+ "text": "whether"
+ },
+ {
+ "id": 8363,
+ "start": 4705.74,
+ "end": 4705.84,
+ "text": "you"
+ },
+ {
+ "id": 8364,
+ "start": 4705.84,
+ "end": 4706,
+ "text": "have"
+ },
+ {
+ "id": 8365,
+ "start": 4706,
+ "end": 4706.16,
+ "text": "all"
+ },
+ {
+ "id": 8366,
+ "start": 4706.16,
+ "end": 4706.32,
+ "text": "the"
+ },
+ {
+ "id": 8367,
+ "start": 4706.32,
+ "end": 4706.76,
+ "text": "will"
+ },
+ {
+ "id": 8368,
+ "start": 4706.76,
+ "end": 4707.16,
+ "text": "to"
+ },
+ {
+ "id": 8369,
+ "start": 4707.16,
+ "end": 4707.38,
+ "text": "help"
+ },
+ {
+ "id": 8370,
+ "start": 4707.38,
+ "end": 4707.56,
+ "text": "us"
+ },
+ {
+ "id": 8371,
+ "start": 4707.56,
+ "end": 4707.84,
+ "text": "solve"
+ },
+ {
+ "id": 8372,
+ "start": 4707.84,
+ "end": 4708.04,
+ "text": "this"
+ },
+ {
+ "id": 8373,
+ "start": 4708.04,
+ "end": 4709.38,
+ "text": "problem."
+ },
+ {
+ "id": 8374,
+ "start": 4709.38,
+ "end": 4710.4,
+ "text": "Yes,"
+ },
+ {
+ "id": 8375,
+ "start": 4710.4,
+ "end": 4710.86,
+ "text": "Senator,"
+ },
+ {
+ "id": 8376,
+ "start": 4710.86,
+ "end": 4711.32,
+ "text": "so"
+ },
+ {
+ "id": 8377,
+ "start": 4711.32,
+ "end": 4711.94,
+ "text": "data,"
+ },
+ {
+ "id": 8378,
+ "start": 4711.94,
+ "end": 4712.46,
+ "text": "privacy"
+ },
+ {
+ "id": 8379,
+ "start": 4712.46,
+ "end": 4713.44,
+ "text": "and"
+ },
+ {
+ "id": 8380,
+ "start": 4713.44,
+ "end": 4714.18,
+ "text": "foreign"
+ },
+ {
+ "id": 8381,
+ "start": 4714.18,
+ "end": 4714.68,
+ "text": "interference"
+ },
+ {
+ "id": 8382,
+ "start": 4714.68,
+ "end": 4714.78,
+ "text": "in"
+ },
+ {
+ "id": 8383,
+ "start": 4714.78,
+ "end": 4715.24,
+ "text": "elections"
+ },
+ {
+ "id": 8384,
+ "start": 4715.24,
+ "end": 4715.5,
+ "text": "are"
+ },
+ {
+ "id": 8385,
+ "start": 4715.5,
+ "end": 4715.9,
+ "text": "certainly"
+ },
+ {
+ "id": 8386,
+ "start": 4715.9,
+ "end": 4716.36,
+ "text": "topics"
+ },
+ {
+ "id": 8387,
+ "start": 4716.36,
+ "end": 4716.52,
+ "text": "that"
+ },
+ {
+ "id": 8388,
+ "start": 4716.52,
+ "end": 4716.62,
+ "text": "we"
+ },
+ {
+ "id": 8389,
+ "start": 4716.62,
+ "end": 4716.78,
+ "text": "have"
+ },
+ {
+ "id": 8390,
+ "start": 4716.78,
+ "end": 4717.18,
+ "text": "discussed"
+ },
+ {
+ "id": 8391,
+ "start": 4717.18,
+ "end": 4717.28,
+ "text": "at"
+ },
+ {
+ "id": 8392,
+ "start": 4717.28,
+ "end": 4717.38,
+ "text": "the"
+ },
+ {
+ "id": 8393,
+ "start": 4717.38,
+ "end": 4717.62,
+ "text": "board"
+ },
+ {
+ "id": 8394,
+ "start": 4717.62,
+ "end": 4717.9,
+ "text": "meeting."
+ },
+ {
+ "id": 8395,
+ "start": 4717.9,
+ "end": 4718.14,
+ "text": "These"
+ },
+ {
+ "id": 8396,
+ "start": 4718.14,
+ "end": 4718.32,
+ "text": "are"
+ },
+ {
+ "id": 8397,
+ "start": 4718.32,
+ "end": 4718.48,
+ "text": "some"
+ },
+ {
+ "id": 8398,
+ "start": 4718.48,
+ "end": 4718.56,
+ "text": "of"
+ },
+ {
+ "id": 8399,
+ "start": 4718.56,
+ "end": 4718.66,
+ "text": "the"
+ },
+ {
+ "id": 8400,
+ "start": 4718.66,
+ "end": 4718.9,
+ "text": "biggest"
+ },
+ {
+ "id": 8401,
+ "start": 4718.9,
+ "end": 4719.24,
+ "text": "issues"
+ },
+ {
+ "id": 8402,
+ "start": 4719.24,
+ "end": 4719.38,
+ "text": "that"
+ },
+ {
+ "id": 8403,
+ "start": 4719.38,
+ "end": 4719.52,
+ "text": "the"
+ },
+ {
+ "id": 8404,
+ "start": 4719.52,
+ "end": 4719.84,
+ "text": "company"
+ },
+ {
+ "id": 8405,
+ "start": 4719.84,
+ "end": 4720.04,
+ "text": "has"
+ },
+ {
+ "id": 8406,
+ "start": 4720.04,
+ "end": 4720.36,
+ "text": "faced"
+ },
+ {
+ "id": 8407,
+ "start": 4720.36,
+ "end": 4720.58,
+ "text": "and"
+ },
+ {
+ "id": 8408,
+ "start": 4720.58,
+ "end": 4720.78,
+ "text": "we"
+ },
+ {
+ "id": 8409,
+ "start": 4720.78,
+ "end": 4720.96,
+ "text": "feel"
+ },
+ {
+ "id": 8410,
+ "start": 4720.96,
+ "end": 4721.08,
+ "text": "a"
+ },
+ {
+ "id": 8411,
+ "start": 4721.08,
+ "end": 4721.62,
+ "text": "huge"
+ },
+ {
+ "id": 8412,
+ "start": 4721.62,
+ "end": 4722.42,
+ "text": "responsibility"
+ },
+ {
+ "id": 8413,
+ "start": 4722.42,
+ "end": 4722.94,
+ "text": "to"
+ },
+ {
+ "id": 8414,
+ "start": 4722.94,
+ "end": 4723.06,
+ "text": "get"
+ },
+ {
+ "id": 8415,
+ "start": 4723.06,
+ "end": 4723.34,
+ "text": "these"
+ },
+ {
+ "id": 8416,
+ "start": 4723.34,
+ "end": 4724.54,
+ "text": "right."
+ },
+ {
+ "id": 8417,
+ "start": 4724.54,
+ "end": 4725.54,
+ "text": "Do"
+ },
+ {
+ "id": 8418,
+ "start": 4725.54,
+ "end": 4725.66,
+ "text": "you"
+ },
+ {
+ "id": 8419,
+ "start": 4725.66,
+ "end": 4725.88,
+ "text": "believe"
+ },
+ {
+ "id": 8420,
+ "start": 4725.88,
+ "end": 4725.96,
+ "text": "the"
+ },
+ {
+ "id": 8421,
+ "start": 4725.96,
+ "end": 4726.42,
+ "text": "European"
+ },
+ {
+ "id": 8422,
+ "start": 4726.42,
+ "end": 4726.94,
+ "text": "regulation"
+ },
+ {
+ "id": 8423,
+ "start": 4726.94,
+ "end": 4727.2,
+ "text": "should"
+ },
+ {
+ "id": 8424,
+ "start": 4727.2,
+ "end": 4727.28,
+ "text": "be"
+ },
+ {
+ "id": 8425,
+ "start": 4727.28,
+ "end": 4727.58,
+ "text": "applied"
+ },
+ {
+ "id": 8426,
+ "start": 4727.58,
+ "end": 4727.76,
+ "text": "here"
+ },
+ {
+ "id": 8427,
+ "start": 4727.76,
+ "end": 4727.86,
+ "text": "in"
+ },
+ {
+ "id": 8428,
+ "start": 4727.86,
+ "end": 4727.96,
+ "text": "the"
+ },
+ {
+ "id": 8429,
+ "start": 4727.96,
+ "end": 4728.02,
+ "text": "U"
+ },
+ {
+ "id": 8430,
+ "start": 4728.02,
+ "end": 4729.68,
+ "text": "S"
+ },
+ {
+ "id": 8431,
+ "start": 4729.68,
+ "end": 4730.66,
+ "text": "Senator?"
+ },
+ {
+ "id": 8432,
+ "start": 4730.66,
+ "end": 4730.76,
+ "text": "I"
+ },
+ {
+ "id": 8433,
+ "start": 4730.76,
+ "end": 4730.96,
+ "text": "think"
+ },
+ {
+ "id": 8434,
+ "start": 4730.96,
+ "end": 4731.42,
+ "text": "everyone"
+ },
+ {
+ "id": 8435,
+ "start": 4731.42,
+ "end": 4731.5,
+ "text": "in"
+ },
+ {
+ "id": 8436,
+ "start": 4731.5,
+ "end": 4731.62,
+ "text": "the"
+ },
+ {
+ "id": 8437,
+ "start": 4731.62,
+ "end": 4731.9,
+ "text": "world"
+ },
+ {
+ "id": 8438,
+ "start": 4731.9,
+ "end": 4732.52,
+ "text": "deserves"
+ },
+ {
+ "id": 8439,
+ "start": 4732.52,
+ "end": 4732.86,
+ "text": "good"
+ },
+ {
+ "id": 8440,
+ "start": 4732.86,
+ "end": 4733.36,
+ "text": "privacy"
+ },
+ {
+ "id": 8441,
+ "start": 4733.36,
+ "end": 4733.8,
+ "text": "protection."
+ },
+ {
+ "id": 8442,
+ "start": 4733.8,
+ "end": 4735.96,
+ "text": "And"
+ },
+ {
+ "id": 8443,
+ "start": 4735.96,
+ "end": 4736.96,
+ "text": "regardless"
+ },
+ {
+ "id": 8444,
+ "start": 4736.96,
+ "end": 4737.12,
+ "text": "of"
+ },
+ {
+ "id": 8445,
+ "start": 4737.12,
+ "end": 4737.44,
+ "text": "whether"
+ },
+ {
+ "id": 8446,
+ "start": 4737.44,
+ "end": 4737.94,
+ "text": "we"
+ },
+ {
+ "id": 8447,
+ "start": 4737.94,
+ "end": 4738.32,
+ "text": "implement"
+ },
+ {
+ "id": 8448,
+ "start": 4738.32,
+ "end": 4738.48,
+ "text": "the"
+ },
+ {
+ "id": 8449,
+ "start": 4738.48,
+ "end": 4738.82,
+ "text": "exact"
+ },
+ {
+ "id": 8450,
+ "start": 4738.82,
+ "end": 4739.04,
+ "text": "same"
+ },
+ {
+ "id": 8451,
+ "start": 4739.04,
+ "end": 4739.58,
+ "text": "regulation,"
+ },
+ {
+ "id": 8452,
+ "start": 4739.58,
+ "end": 4739.64,
+ "text": "I"
+ },
+ {
+ "id": 8453,
+ "start": 4739.64,
+ "end": 4739.92,
+ "text": "would"
+ },
+ {
+ "id": 8454,
+ "start": 4739.92,
+ "end": 4740.92,
+ "text": "guess"
+ },
+ {
+ "id": 8455,
+ "start": 4740.92,
+ "end": 4741.08,
+ "text": "that"
+ },
+ {
+ "id": 8456,
+ "start": 4741.08,
+ "end": 4741.16,
+ "text": "it"
+ },
+ {
+ "id": 8457,
+ "start": 4741.16,
+ "end": 4741.3,
+ "text": "would"
+ },
+ {
+ "id": 8458,
+ "start": 4741.3,
+ "end": 4741.4,
+ "text": "be"
+ },
+ {
+ "id": 8459,
+ "start": 4741.4,
+ "end": 4741.68,
+ "text": "somewhat"
+ },
+ {
+ "id": 8460,
+ "start": 4741.68,
+ "end": 4741.96,
+ "text": "different"
+ },
+ {
+ "id": 8461,
+ "start": 4741.96,
+ "end": 4742.16,
+ "text": "because"
+ },
+ {
+ "id": 8462,
+ "start": 4742.16,
+ "end": 4742.24,
+ "text": "we"
+ },
+ {
+ "id": 8463,
+ "start": 4742.24,
+ "end": 4742.36,
+ "text": "have"
+ },
+ {
+ "id": 8464,
+ "start": 4742.36,
+ "end": 4742.64,
+ "text": "somewhat"
+ },
+ {
+ "id": 8465,
+ "start": 4742.64,
+ "end": 4742.9,
+ "text": "different"
+ },
+ {
+ "id": 8466,
+ "start": 4742.9,
+ "end": 4743.56,
+ "text": "sensibilities"
+ },
+ {
+ "id": 8467,
+ "start": 4743.56,
+ "end": 4743.78,
+ "text": "in"
+ },
+ {
+ "id": 8468,
+ "start": 4743.78,
+ "end": 4743.92,
+ "text": "the"
+ },
+ {
+ "id": 8469,
+ "start": 4743.92,
+ "end": 4744.24,
+ "text": "US"
+ },
+ {
+ "id": 8470,
+ "start": 4744.24,
+ "end": 4744.54,
+ "text": "as"
+ },
+ {
+ "id": 8471,
+ "start": 4744.54,
+ "end": 4745.24,
+ "text": "other"
+ },
+ {
+ "id": 8472,
+ "start": 4745.24,
+ "end": 4746.94,
+ "text": "countries"
+ },
+ {
+ "id": 8473,
+ "start": 4746.94,
+ "end": 4747.92,
+ "text": "we're"
+ },
+ {
+ "id": 8474,
+ "start": 4747.92,
+ "end": 4748.32,
+ "text": "committed"
+ },
+ {
+ "id": 8475,
+ "start": 4748.32,
+ "end": 4748.56,
+ "text": "to"
+ },
+ {
+ "id": 8476,
+ "start": 4748.56,
+ "end": 4749.58,
+ "text": "rolling"
+ },
+ {
+ "id": 8477,
+ "start": 4749.58,
+ "end": 4749.72,
+ "text": "out"
+ },
+ {
+ "id": 8478,
+ "start": 4749.72,
+ "end": 4749.92,
+ "text": "the"
+ },
+ {
+ "id": 8479,
+ "start": 4749.92,
+ "end": 4750.58,
+ "text": "controls"
+ },
+ {
+ "id": 8480,
+ "start": 4750.58,
+ "end": 4751.4,
+ "text": "and"
+ },
+ {
+ "id": 8481,
+ "start": 4751.4,
+ "end": 4751.64,
+ "text": "the"
+ },
+ {
+ "id": 8482,
+ "start": 4751.64,
+ "end": 4752.32,
+ "text": "affirmative"
+ },
+ {
+ "id": 8483,
+ "start": 4752.32,
+ "end": 4752.74,
+ "text": "consent."
+ },
+ {
+ "id": 8484,
+ "start": 4752.74,
+ "end": 4753.96,
+ "text": "And"
+ },
+ {
+ "id": 8485,
+ "start": 4753.96,
+ "end": 4755.04,
+ "text": "the"
+ },
+ {
+ "id": 8486,
+ "start": 4755.04,
+ "end": 4756.04,
+ "text": "special"
+ },
+ {
+ "id": 8487,
+ "start": 4756.04,
+ "end": 4756.46,
+ "text": "controls"
+ },
+ {
+ "id": 8488,
+ "start": 4756.46,
+ "end": 4756.76,
+ "text": "around"
+ },
+ {
+ "id": 8489,
+ "start": 4756.76,
+ "end": 4758.04,
+ "text": "sensitive"
+ },
+ {
+ "id": 8490,
+ "start": 4758.04,
+ "end": 4759.04,
+ "text": "types"
+ },
+ {
+ "id": 8491,
+ "start": 4759.04,
+ "end": 4759.16,
+ "text": "of"
+ },
+ {
+ "id": 8492,
+ "start": 4759.16,
+ "end": 4759.68,
+ "text": "technology"
+ },
+ {
+ "id": 8493,
+ "start": 4759.68,
+ "end": 4759.86,
+ "text": "like"
+ },
+ {
+ "id": 8494,
+ "start": 4759.86,
+ "end": 4760.1,
+ "text": "face"
+ },
+ {
+ "id": 8495,
+ "start": 4760.1,
+ "end": 4760.64,
+ "text": "recognition."
+ },
+ {
+ "id": 8496,
+ "start": 4760.64,
+ "end": 4761.76,
+ "text": "That"
+ },
+ {
+ "id": 8497,
+ "start": 4761.76,
+ "end": 4762.02,
+ "text": "are"
+ },
+ {
+ "id": 8498,
+ "start": 4762.02,
+ "end": 4762.5,
+ "text": "required"
+ },
+ {
+ "id": 8499,
+ "start": 4762.5,
+ "end": 4762.62,
+ "text": "in"
+ },
+ {
+ "id": 8500,
+ "start": 4762.62,
+ "end": 4763.18,
+ "text": "GDPR"
+ },
+ {
+ "id": 8501,
+ "start": 4763.18,
+ "end": 4763.4,
+ "text": "we're"
+ },
+ {
+ "id": 8502,
+ "start": 4763.4,
+ "end": 4763.6,
+ "text": "doing"
+ },
+ {
+ "id": 8503,
+ "start": 4763.6,
+ "end": 4763.74,
+ "text": "that"
+ },
+ {
+ "id": 8504,
+ "start": 4763.74,
+ "end": 4764,
+ "text": "around"
+ },
+ {
+ "id": 8505,
+ "start": 4764,
+ "end": 4764.12,
+ "text": "the"
+ },
+ {
+ "id": 8506,
+ "start": 4764.12,
+ "end": 4764.88,
+ "text": "world."
+ },
+ {
+ "id": 8507,
+ "start": 4764.88,
+ "end": 4765.42,
+ "text": "So"
+ },
+ {
+ "id": 8508,
+ "start": 4765.42,
+ "end": 4765.92,
+ "text": "I"
+ },
+ {
+ "id": 8509,
+ "start": 4765.92,
+ "end": 4766.12,
+ "text": "think,"
+ },
+ {
+ "id": 8510,
+ "start": 4766.12,
+ "end": 4766.28,
+ "text": "it's"
+ },
+ {
+ "id": 8511,
+ "start": 4766.28,
+ "end": 4766.58,
+ "text": "certainly"
+ },
+ {
+ "id": 8512,
+ "start": 4766.58,
+ "end": 4766.84,
+ "text": "worth"
+ },
+ {
+ "id": 8513,
+ "start": 4766.84,
+ "end": 4767.38,
+ "text": "discussing"
+ },
+ {
+ "id": 8514,
+ "start": 4767.38,
+ "end": 4767.72,
+ "text": "whether"
+ },
+ {
+ "id": 8515,
+ "start": 4767.72,
+ "end": 4767.88,
+ "text": "we"
+ },
+ {
+ "id": 8516,
+ "start": 4767.88,
+ "end": 4768.14,
+ "text": "should"
+ },
+ {
+ "id": 8517,
+ "start": 4768.14,
+ "end": 4768.72,
+ "text": "have"
+ },
+ {
+ "id": 8518,
+ "start": 4768.72,
+ "end": 4769.04,
+ "text": "something"
+ },
+ {
+ "id": 8519,
+ "start": 4769.04,
+ "end": 4769.44,
+ "text": "similar"
+ },
+ {
+ "id": 8520,
+ "start": 4769.44,
+ "end": 4769.72,
+ "text": "in"
+ },
+ {
+ "id": 8521,
+ "start": 4769.72,
+ "end": 4769.86,
+ "text": "the"
+ },
+ {
+ "id": 8522,
+ "start": 4769.86,
+ "end": 4770.16,
+ "text": "US."
+ },
+ {
+ "id": 8523,
+ "start": 4770.16,
+ "end": 4771.1,
+ "text": "But"
+ },
+ {
+ "id": 8524,
+ "start": 4771.1,
+ "end": 4771.24,
+ "text": "what"
+ },
+ {
+ "id": 8525,
+ "start": 4771.24,
+ "end": 4771.32,
+ "text": "I"
+ },
+ {
+ "id": 8526,
+ "start": 4771.32,
+ "end": 4771.48,
+ "text": "would"
+ },
+ {
+ "id": 8527,
+ "start": 4771.48,
+ "end": 4771.6,
+ "text": "like"
+ },
+ {
+ "id": 8528,
+ "start": 4771.6,
+ "end": 4771.7,
+ "text": "to"
+ },
+ {
+ "id": 8529,
+ "start": 4771.7,
+ "end": 4771.84,
+ "text": "say"
+ },
+ {
+ "id": 8530,
+ "start": 4771.84,
+ "end": 4772.08,
+ "text": "today"
+ },
+ {
+ "id": 8531,
+ "start": 4772.08,
+ "end": 4772.26,
+ "text": "is"
+ },
+ {
+ "id": 8532,
+ "start": 4772.26,
+ "end": 4772.44,
+ "text": "that"
+ },
+ {
+ "id": 8533,
+ "start": 4772.44,
+ "end": 4772.68,
+ "text": "we're"
+ },
+ {
+ "id": 8534,
+ "start": 4772.68,
+ "end": 4772.9,
+ "text": "going"
+ },
+ {
+ "id": 8535,
+ "start": 4772.9,
+ "end": 4773.04,
+ "text": "to"
+ },
+ {
+ "id": 8536,
+ "start": 4773.04,
+ "end": 4773.46,
+ "text": "go"
+ },
+ {
+ "id": 8537,
+ "start": 4773.46,
+ "end": 4773.8,
+ "text": "forward"
+ },
+ {
+ "id": 8538,
+ "start": 4773.8,
+ "end": 4774,
+ "text": "and"
+ },
+ {
+ "id": 8539,
+ "start": 4774,
+ "end": 4774.7,
+ "text": "implement"
+ },
+ {
+ "id": 8540,
+ "start": 4774.7,
+ "end": 4774.96,
+ "text": "that"
+ },
+ {
+ "id": 8541,
+ "start": 4774.96,
+ "end": 4775.76,
+ "text": "regardless"
+ },
+ {
+ "id": 8542,
+ "start": 4775.76,
+ "end": 4775.86,
+ "text": "of"
+ },
+ {
+ "id": 8543,
+ "start": 4775.86,
+ "end": 4776.02,
+ "text": "what"
+ },
+ {
+ "id": 8544,
+ "start": 4776.02,
+ "end": 4776.14,
+ "text": "the"
+ },
+ {
+ "id": 8545,
+ "start": 4776.14,
+ "end": 4776.66,
+ "text": "regulatory"
+ },
+ {
+ "id": 8546,
+ "start": 4776.66,
+ "end": 4776.96,
+ "text": "outcome"
+ },
+ {
+ "id": 8547,
+ "start": 4776.96,
+ "end": 4777.08,
+ "text": "is,"
+ },
+ {
+ "id": 8548,
+ "start": 4777.08,
+ "end": 4778.14,
+ "text": "Senator"
+ },
+ {
+ "id": 8549,
+ "start": 4778.14,
+ "end": 4778.92,
+ "text": "wicker."
+ },
+ {
+ "id": 8550,
+ "start": 4778.92,
+ "end": 4779.7,
+ "text": "Senator"
+ },
+ {
+ "id": 8551,
+ "start": 4779.7,
+ "end": 4780.4,
+ "text": "tone"
+ },
+ {
+ "id": 8552,
+ "start": 4780.4,
+ "end": 4780.78,
+ "text": "well,"
+ },
+ {
+ "id": 8553,
+ "start": 4780.78,
+ "end": 4782.7,
+ "text": "chair"
+ },
+ {
+ "id": 8554,
+ "start": 4782.7,
+ "end": 4784.08,
+ "text": "next,"
+ },
+ {
+ "id": 8555,
+ "start": 4784.08,
+ "end": 4785.06,
+ "text": "Senator"
+ },
+ {
+ "id": 8556,
+ "start": 4785.06,
+ "end": 4785.4,
+ "text": "wicker,"
+ },
+ {
+ "id": 8557,
+ "start": 4785.4,
+ "end": 4785.6,
+ "text": "thank"
+ },
+ {
+ "id": 8558,
+ "start": 4785.6,
+ "end": 4785.78,
+ "text": "you,"
+ },
+ {
+ "id": 8559,
+ "start": 4785.78,
+ "end": 4786.06,
+ "text": "Mr"
+ },
+ {
+ "id": 8560,
+ "start": 4786.06,
+ "end": 4786.38,
+ "text": "Chairman"
+ },
+ {
+ "id": 8561,
+ "start": 4786.38,
+ "end": 4786.56,
+ "text": "and"
+ },
+ {
+ "id": 8562,
+ "start": 4786.56,
+ "end": 4786.82,
+ "text": "Mr"
+ },
+ {
+ "id": 8563,
+ "start": 4786.82,
+ "end": 4787.24,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 8564,
+ "start": 4787.24,
+ "end": 4787.44,
+ "text": "Thank"
+ },
+ {
+ "id": 8565,
+ "start": 4787.44,
+ "end": 4787.54,
+ "text": "you"
+ },
+ {
+ "id": 8566,
+ "start": 4787.54,
+ "end": 4787.7,
+ "text": "for"
+ },
+ {
+ "id": 8567,
+ "start": 4787.7,
+ "end": 4787.9,
+ "text": "being"
+ },
+ {
+ "id": 8568,
+ "start": 4787.9,
+ "end": 4788.12,
+ "text": "with"
+ },
+ {
+ "id": 8569,
+ "start": 4788.12,
+ "end": 4788.28,
+ "text": "us."
+ },
+ {
+ "id": 8570,
+ "start": 4788.28,
+ "end": 4789.24,
+ "text": "My"
+ },
+ {
+ "id": 8571,
+ "start": 4789.24,
+ "end": 4789.6,
+ "text": "question"
+ },
+ {
+ "id": 8572,
+ "start": 4789.6,
+ "end": 4789.8,
+ "text": "is"
+ },
+ {
+ "id": 8573,
+ "start": 4789.8,
+ "end": 4790.04,
+ "text": "going"
+ },
+ {
+ "id": 8574,
+ "start": 4790.04,
+ "end": 4790.1,
+ "text": "to"
+ },
+ {
+ "id": 8575,
+ "start": 4790.1,
+ "end": 4790.22,
+ "text": "be"
+ },
+ {
+ "id": 8576,
+ "start": 4790.22,
+ "end": 4790.44,
+ "text": "sort"
+ },
+ {
+ "id": 8577,
+ "start": 4790.44,
+ "end": 4790.54,
+ "text": "of"
+ },
+ {
+ "id": 8578,
+ "start": 4790.54,
+ "end": 4790.62,
+ "text": "a"
+ },
+ {
+ "id": 8579,
+ "start": 4790.62,
+ "end": 4791.08,
+ "text": "follow"
+ },
+ {
+ "id": 8580,
+ "start": 4791.08,
+ "end": 4791.26,
+ "text": "up"
+ },
+ {
+ "id": 8581,
+ "start": 4791.26,
+ "end": 4791.68,
+ "text": "on"
+ },
+ {
+ "id": 8582,
+ "start": 4791.68,
+ "end": 4791.86,
+ "text": "what"
+ },
+ {
+ "id": 8583,
+ "start": 4791.86,
+ "end": 4792.28,
+ "text": "Senator"
+ },
+ {
+ "id": 8584,
+ "start": 4792.28,
+ "end": 4792.56,
+ "text": "Hatch"
+ },
+ {
+ "id": 8585,
+ "start": 4792.56,
+ "end": 4792.76,
+ "text": "was"
+ },
+ {
+ "id": 8586,
+ "start": 4792.76,
+ "end": 4793.12,
+ "text": "talking"
+ },
+ {
+ "id": 8587,
+ "start": 4793.12,
+ "end": 4793.4,
+ "text": "about"
+ },
+ {
+ "id": 8588,
+ "start": 4793.4,
+ "end": 4793.94,
+ "text": "and"
+ },
+ {
+ "id": 8589,
+ "start": 4793.94,
+ "end": 4794.28,
+ "text": "let"
+ },
+ {
+ "id": 8590,
+ "start": 4794.28,
+ "end": 4794.62,
+ "text": "me"
+ },
+ {
+ "id": 8591,
+ "start": 4794.62,
+ "end": 4795.32,
+ "text": "agree"
+ },
+ {
+ "id": 8592,
+ "start": 4795.32,
+ "end": 4796.04,
+ "text": "with,"
+ },
+ {
+ "id": 8593,
+ "start": 4796.04,
+ "end": 4797.18,
+ "text": "basically"
+ },
+ {
+ "id": 8594,
+ "start": 4797.18,
+ "end": 4799.38,
+ "text": "his"
+ },
+ {
+ "id": 8595,
+ "start": 4799.38,
+ "end": 4799.74,
+ "text": "vice"
+ },
+ {
+ "id": 8596,
+ "start": 4799.74,
+ "end": 4799.96,
+ "text": "that"
+ },
+ {
+ "id": 8597,
+ "start": 4799.96,
+ "end": 4800.2,
+ "text": "we"
+ },
+ {
+ "id": 8598,
+ "start": 4800.2,
+ "end": 4800.42,
+ "text": "don't"
+ },
+ {
+ "id": 8599,
+ "start": 4800.42,
+ "end": 4800.72,
+ "text": "want"
+ },
+ {
+ "id": 8600,
+ "start": 4800.72,
+ "end": 4800.84,
+ "text": "to"
+ },
+ {
+ "id": 8601,
+ "start": 4800.84,
+ "end": 4801.28,
+ "text": "over"
+ },
+ {
+ "id": 8602,
+ "start": 4801.28,
+ "end": 4801.78,
+ "text": "regulate"
+ },
+ {
+ "id": 8603,
+ "start": 4801.78,
+ "end": 4801.94,
+ "text": "to"
+ },
+ {
+ "id": 8604,
+ "start": 4801.94,
+ "end": 4802.7,
+ "text": "the"
+ },
+ {
+ "id": 8605,
+ "start": 4802.7,
+ "end": 4803.08,
+ "text": "point"
+ },
+ {
+ "id": 8606,
+ "start": 4803.08,
+ "end": 4803.74,
+ "text": "where"
+ },
+ {
+ "id": 8607,
+ "start": 4803.74,
+ "end": 4803.96,
+ "text": "we're"
+ },
+ {
+ "id": 8608,
+ "start": 4803.96,
+ "end": 4804.68,
+ "text": "stifling"
+ },
+ {
+ "id": 8609,
+ "start": 4804.68,
+ "end": 4805.54,
+ "text": "innovation"
+ },
+ {
+ "id": 8610,
+ "start": 4805.54,
+ "end": 4806.16,
+ "text": "and"
+ },
+ {
+ "id": 8611,
+ "start": 4806.16,
+ "end": 4806.78,
+ "text": "investment."
+ },
+ {
+ "id": 8612,
+ "start": 4806.78,
+ "end": 4807.66,
+ "text": "I"
+ },
+ {
+ "id": 8613,
+ "start": 4807.66,
+ "end": 4808.28,
+ "text": "understand"
+ },
+ {
+ "id": 8614,
+ "start": 4808.28,
+ "end": 4808.48,
+ "text": "with"
+ },
+ {
+ "id": 8615,
+ "start": 4808.48,
+ "end": 4809.02,
+ "text": "regard"
+ },
+ {
+ "id": 8616,
+ "start": 4809.02,
+ "end": 4809.98,
+ "text": "to"
+ },
+ {
+ "id": 8617,
+ "start": 4809.98,
+ "end": 4810.98,
+ "text": "suggested"
+ },
+ {
+ "id": 8618,
+ "start": 4810.98,
+ "end": 4811.82,
+ "text": "rules"
+ },
+ {
+ "id": 8619,
+ "start": 4811.82,
+ "end": 4812.2,
+ "text": "or"
+ },
+ {
+ "id": 8620,
+ "start": 4812.2,
+ "end": 4812.86,
+ "text": "suggested"
+ },
+ {
+ "id": 8621,
+ "start": 4812.86,
+ "end": 4813.7,
+ "text": "legislation"
+ },
+ {
+ "id": 8622,
+ "start": 4813.7,
+ "end": 4814.14,
+ "text": "there"
+ },
+ {
+ "id": 8623,
+ "start": 4814.14,
+ "end": 4814.28,
+ "text": "at"
+ },
+ {
+ "id": 8624,
+ "start": 4814.28,
+ "end": 4814.48,
+ "text": "least"
+ },
+ {
+ "id": 8625,
+ "start": 4814.48,
+ "end": 4814.78,
+ "text": "two"
+ },
+ {
+ "id": 8626,
+ "start": 4814.78,
+ "end": 4815.2,
+ "text": "schools"
+ },
+ {
+ "id": 8627,
+ "start": 4815.2,
+ "end": 4815.36,
+ "text": "of"
+ },
+ {
+ "id": 8628,
+ "start": 4815.36,
+ "end": 4816.52,
+ "text": "thought"
+ },
+ {
+ "id": 8629,
+ "start": 4816.52,
+ "end": 4817.28,
+ "text": "out"
+ },
+ {
+ "id": 8630,
+ "start": 4817.28,
+ "end": 4817.64,
+ "text": "there."
+ },
+ {
+ "id": 8631,
+ "start": 4817.64,
+ "end": 4818.48,
+ "text": "One"
+ },
+ {
+ "id": 8632,
+ "start": 4818.48,
+ "end": 4818.72,
+ "text": "would"
+ },
+ {
+ "id": 8633,
+ "start": 4818.72,
+ "end": 4818.84,
+ "text": "be"
+ },
+ {
+ "id": 8634,
+ "start": 4818.84,
+ "end": 4819.18,
+ "text": "the"
+ },
+ {
+ "id": 8635,
+ "start": 4819.18,
+ "end": 4819.92,
+ "text": "ISPs."
+ },
+ {
+ "id": 8636,
+ "start": 4819.92,
+ "end": 4820.06,
+ "text": "The"
+ },
+ {
+ "id": 8637,
+ "start": 4820.06,
+ "end": 4820.84,
+ "text": "Internet"
+ },
+ {
+ "id": 8638,
+ "start": 4820.84,
+ "end": 4821.34,
+ "text": "service"
+ },
+ {
+ "id": 8639,
+ "start": 4821.34,
+ "end": 4822.44,
+ "text": "providers"
+ },
+ {
+ "id": 8640,
+ "start": 4822.44,
+ "end": 4823.32,
+ "text": "who"
+ },
+ {
+ "id": 8641,
+ "start": 4823.32,
+ "end": 4823.48,
+ "text": "are"
+ },
+ {
+ "id": 8642,
+ "start": 4823.48,
+ "end": 4824.04,
+ "text": "advocating"
+ },
+ {
+ "id": 8643,
+ "start": 4824.04,
+ "end": 4824.24,
+ "text": "for"
+ },
+ {
+ "id": 8644,
+ "start": 4824.24,
+ "end": 4824.78,
+ "text": "privacy"
+ },
+ {
+ "id": 8645,
+ "start": 4824.78,
+ "end": 4825.46,
+ "text": "protections"
+ },
+ {
+ "id": 8646,
+ "start": 4825.46,
+ "end": 4826.2,
+ "text": "for"
+ },
+ {
+ "id": 8647,
+ "start": 4826.2,
+ "end": 4826.9,
+ "text": "consumers"
+ },
+ {
+ "id": 8648,
+ "start": 4826.9,
+ "end": 4827.18,
+ "text": "that"
+ },
+ {
+ "id": 8649,
+ "start": 4827.18,
+ "end": 4827.86,
+ "text": "apply"
+ },
+ {
+ "id": 8650,
+ "start": 4827.86,
+ "end": 4828.06,
+ "text": "to"
+ },
+ {
+ "id": 8651,
+ "start": 4828.06,
+ "end": 4828.6,
+ "text": "all"
+ },
+ {
+ "id": 8652,
+ "start": 4828.6,
+ "end": 4829.28,
+ "text": "online"
+ },
+ {
+ "id": 8653,
+ "start": 4829.28,
+ "end": 4829.88,
+ "text": "entities"
+ },
+ {
+ "id": 8654,
+ "start": 4829.88,
+ "end": 4830.94,
+ "text": "equally"
+ },
+ {
+ "id": 8655,
+ "start": 4830.94,
+ "end": 4831.96,
+ "text": "across"
+ },
+ {
+ "id": 8656,
+ "start": 4831.96,
+ "end": 4832.14,
+ "text": "the"
+ },
+ {
+ "id": 8657,
+ "start": 4832.14,
+ "end": 4832.58,
+ "text": "entire"
+ },
+ {
+ "id": 8658,
+ "start": 4832.58,
+ "end": 4833.08,
+ "text": "Internet"
+ },
+ {
+ "id": 8659,
+ "start": 4833.08,
+ "end": 4835.38,
+ "text": "ecosystem."
+ },
+ {
+ "id": 8660,
+ "start": 4835.38,
+ "end": 4836.38,
+ "text": "Facebook"
+ },
+ {
+ "id": 8661,
+ "start": 4836.38,
+ "end": 4836.54,
+ "text": "is"
+ },
+ {
+ "id": 8662,
+ "start": 4836.54,
+ "end": 4836.68,
+ "text": "an"
+ },
+ {
+ "id": 8663,
+ "start": 4836.68,
+ "end": 4837.18,
+ "text": "edge"
+ },
+ {
+ "id": 8664,
+ "start": 4837.18,
+ "end": 4837.94,
+ "text": "provider"
+ },
+ {
+ "id": 8665,
+ "start": 4837.94,
+ "end": 4838.08,
+ "text": "on"
+ },
+ {
+ "id": 8666,
+ "start": 4838.08,
+ "end": 4838.22,
+ "text": "the"
+ },
+ {
+ "id": 8667,
+ "start": 4838.22,
+ "end": 4838.44,
+ "text": "other"
+ },
+ {
+ "id": 8668,
+ "start": 4838.44,
+ "end": 4838.68,
+ "text": "hand"
+ },
+ {
+ "id": 8669,
+ "start": 4838.68,
+ "end": 4838.9,
+ "text": "it's"
+ },
+ {
+ "id": 8670,
+ "start": 4838.9,
+ "end": 4839.06,
+ "text": "my"
+ },
+ {
+ "id": 8671,
+ "start": 4839.06,
+ "end": 4839.58,
+ "text": "understanding"
+ },
+ {
+ "id": 8672,
+ "start": 4839.58,
+ "end": 4839.8,
+ "text": "that"
+ },
+ {
+ "id": 8673,
+ "start": 4839.8,
+ "end": 4840.1,
+ "text": "many"
+ },
+ {
+ "id": 8674,
+ "start": 4840.1,
+ "end": 4840.92,
+ "text": "edge"
+ },
+ {
+ "id": 8675,
+ "start": 4840.92,
+ "end": 4841.42,
+ "text": "providers"
+ },
+ {
+ "id": 8676,
+ "start": 4841.42,
+ "end": 4841.62,
+ "text": "such"
+ },
+ {
+ "id": 8677,
+ "start": 4841.62,
+ "end": 4841.74,
+ "text": "as"
+ },
+ {
+ "id": 8678,
+ "start": 4841.74,
+ "end": 4842.28,
+ "text": "Facebook"
+ },
+ {
+ "id": 8679,
+ "start": 4842.28,
+ "end": 4842.5,
+ "text": "may"
+ },
+ {
+ "id": 8680,
+ "start": 4842.5,
+ "end": 4842.72,
+ "text": "not"
+ },
+ {
+ "id": 8681,
+ "start": 4842.72,
+ "end": 4843.24,
+ "text": "support"
+ },
+ {
+ "id": 8682,
+ "start": 4843.24,
+ "end": 4843.52,
+ "text": "that"
+ },
+ {
+ "id": 8683,
+ "start": 4843.52,
+ "end": 4844,
+ "text": "effort"
+ },
+ {
+ "id": 8684,
+ "start": 4844,
+ "end": 4845,
+ "text": "because"
+ },
+ {
+ "id": 8685,
+ "start": 4845,
+ "end": 4845.28,
+ "text": "edge"
+ },
+ {
+ "id": 8686,
+ "start": 4845.28,
+ "end": 4845.68,
+ "text": "providers"
+ },
+ {
+ "id": 8687,
+ "start": 4845.68,
+ "end": 4845.84,
+ "text": "have"
+ },
+ {
+ "id": 8688,
+ "start": 4845.84,
+ "end": 4846.18,
+ "text": "different"
+ },
+ {
+ "id": 8689,
+ "start": 4846.18,
+ "end": 4846.7,
+ "text": "business"
+ },
+ {
+ "id": 8690,
+ "start": 4846.7,
+ "end": 4847.86,
+ "text": "models."
+ },
+ {
+ "id": 8691,
+ "start": 4847.86,
+ "end": 4848.72,
+ "text": "Then"
+ },
+ {
+ "id": 8692,
+ "start": 4848.72,
+ "end": 4848.92,
+ "text": "the"
+ },
+ {
+ "id": 8693,
+ "start": 4848.92,
+ "end": 4849.78,
+ "text": "ISPs"
+ },
+ {
+ "id": 8694,
+ "start": 4849.78,
+ "end": 4850.28,
+ "text": "and"
+ },
+ {
+ "id": 8695,
+ "start": 4850.28,
+ "end": 4850.58,
+ "text": "should"
+ },
+ {
+ "id": 8696,
+ "start": 4850.58,
+ "end": 4850.76,
+ "text": "not"
+ },
+ {
+ "id": 8697,
+ "start": 4850.76,
+ "end": 4850.88,
+ "text": "be"
+ },
+ {
+ "id": 8698,
+ "start": 4850.88,
+ "end": 4851.34,
+ "text": "considered"
+ },
+ {
+ "id": 8699,
+ "start": 4851.34,
+ "end": 4851.7,
+ "text": "like"
+ },
+ {
+ "id": 8700,
+ "start": 4851.7,
+ "end": 4852.38,
+ "text": "services"
+ },
+ {
+ "id": 8701,
+ "start": 4852.38,
+ "end": 4853.34,
+ "text": "so"
+ },
+ {
+ "id": 8702,
+ "start": 4853.34,
+ "end": 4854,
+ "text": "do"
+ },
+ {
+ "id": 8703,
+ "start": 4854,
+ "end": 4854.14,
+ "text": "you"
+ },
+ {
+ "id": 8704,
+ "start": 4854.14,
+ "end": 4854.36,
+ "text": "think"
+ },
+ {
+ "id": 8705,
+ "start": 4854.36,
+ "end": 4854.5,
+ "text": "we"
+ },
+ {
+ "id": 8706,
+ "start": 4854.5,
+ "end": 4854.92,
+ "text": "need"
+ },
+ {
+ "id": 8707,
+ "start": 4854.92,
+ "end": 4855.62,
+ "text": "consistent"
+ },
+ {
+ "id": 8708,
+ "start": 4855.62,
+ "end": 4856.16,
+ "text": "privacy"
+ },
+ {
+ "id": 8709,
+ "start": 4856.16,
+ "end": 4856.88,
+ "text": "protections"
+ },
+ {
+ "id": 8710,
+ "start": 4856.88,
+ "end": 4857.46,
+ "text": "for"
+ },
+ {
+ "id": 8711,
+ "start": 4857.46,
+ "end": 4858,
+ "text": "consumers"
+ },
+ {
+ "id": 8712,
+ "start": 4858,
+ "end": 4858.4,
+ "text": "across"
+ },
+ {
+ "id": 8713,
+ "start": 4858.4,
+ "end": 4858.64,
+ "text": "the"
+ },
+ {
+ "id": 8714,
+ "start": 4858.64,
+ "end": 4859.91,
+ "text": "entire"
+ },
+ {
+ "id": 8715,
+ "start": 4859.91,
+ "end": 4860.47,
+ "text": "Internet"
+ },
+ {
+ "id": 8716,
+ "start": 4860.47,
+ "end": 4861.45,
+ "text": "ecosystem"
+ },
+ {
+ "id": 8717,
+ "start": 4861.45,
+ "end": 4862.09,
+ "text": "that"
+ },
+ {
+ "id": 8718,
+ "start": 4862.09,
+ "end": 4862.23,
+ "text": "are"
+ },
+ {
+ "id": 8719,
+ "start": 4862.23,
+ "end": 4862.45,
+ "text": "based"
+ },
+ {
+ "id": 8720,
+ "start": 4862.45,
+ "end": 4862.57,
+ "text": "on"
+ },
+ {
+ "id": 8721,
+ "start": 4862.57,
+ "end": 4862.69,
+ "text": "the"
+ },
+ {
+ "id": 8722,
+ "start": 4862.69,
+ "end": 4862.89,
+ "text": "type"
+ },
+ {
+ "id": 8723,
+ "start": 4862.89,
+ "end": 4862.99,
+ "text": "of"
+ },
+ {
+ "id": 8724,
+ "start": 4862.99,
+ "end": 4863.49,
+ "text": "consumer"
+ },
+ {
+ "id": 8725,
+ "start": 4863.49,
+ "end": 4864.45,
+ "text": "information"
+ },
+ {
+ "id": 8726,
+ "start": 4864.45,
+ "end": 4864.73,
+ "text": "being"
+ },
+ {
+ "id": 8727,
+ "start": 4864.73,
+ "end": 4865.17,
+ "text": "collected?"
+ },
+ {
+ "id": 8728,
+ "start": 4865.17,
+ "end": 4865.73,
+ "text": "Used"
+ },
+ {
+ "id": 8729,
+ "start": 4865.73,
+ "end": 4865.95,
+ "text": "or"
+ },
+ {
+ "id": 8730,
+ "start": 4865.95,
+ "end": 4866.43,
+ "text": "shared,"
+ },
+ {
+ "id": 8731,
+ "start": 4866.43,
+ "end": 4867.55,
+ "text": "regardless"
+ },
+ {
+ "id": 8732,
+ "start": 4867.55,
+ "end": 4868.05,
+ "text": "of"
+ },
+ {
+ "id": 8733,
+ "start": 4868.05,
+ "end": 4868.21,
+ "text": "the"
+ },
+ {
+ "id": 8734,
+ "start": 4868.21,
+ "end": 4868.85,
+ "text": "entity"
+ },
+ {
+ "id": 8735,
+ "start": 4868.85,
+ "end": 4869.67,
+ "text": "doing"
+ },
+ {
+ "id": 8736,
+ "start": 4869.67,
+ "end": 4869.83,
+ "text": "the"
+ },
+ {
+ "id": 8737,
+ "start": 4869.83,
+ "end": 4870.27,
+ "text": "collecting"
+ },
+ {
+ "id": 8738,
+ "start": 4870.27,
+ "end": 4870.47,
+ "text": "or"
+ },
+ {
+ "id": 8739,
+ "start": 4870.47,
+ "end": 4870.77,
+ "text": "using"
+ },
+ {
+ "id": 8740,
+ "start": 4870.77,
+ "end": 4870.91,
+ "text": "or"
+ },
+ {
+ "id": 8741,
+ "start": 4870.91,
+ "end": 4871.96,
+ "text": "sharing"
+ },
+ {
+ "id": 8742,
+ "start": 4871.96,
+ "end": 4873,
+ "text": "Senator."
+ },
+ {
+ "id": 8743,
+ "start": 4873,
+ "end": 4873.14,
+ "text": "This"
+ },
+ {
+ "id": 8744,
+ "start": 4873.14,
+ "end": 4873.26,
+ "text": "is"
+ },
+ {
+ "id": 8745,
+ "start": 4873.26,
+ "end": 4873.36,
+ "text": "an"
+ },
+ {
+ "id": 8746,
+ "start": 4873.36,
+ "end": 4873.84,
+ "text": "important"
+ },
+ {
+ "id": 8747,
+ "start": 4873.84,
+ "end": 4874.26,
+ "text": "question."
+ },
+ {
+ "id": 8748,
+ "start": 4874.26,
+ "end": 4874.84,
+ "text": "I"
+ },
+ {
+ "id": 8749,
+ "start": 4874.84,
+ "end": 4875.04,
+ "text": "would"
+ },
+ {
+ "id": 8750,
+ "start": 4875.04,
+ "end": 4875.74,
+ "text": "differentiate"
+ },
+ {
+ "id": 8751,
+ "start": 4875.74,
+ "end": 4876.14,
+ "text": "between"
+ },
+ {
+ "id": 8752,
+ "start": 4876.14,
+ "end": 4876.96,
+ "text": "ISPs"
+ },
+ {
+ "id": 8753,
+ "start": 4876.96,
+ "end": 4877.56,
+ "text": "which"
+ },
+ {
+ "id": 8754,
+ "start": 4877.56,
+ "end": 4877.7,
+ "text": "I"
+ },
+ {
+ "id": 8755,
+ "start": 4877.7,
+ "end": 4878.08,
+ "text": "consider"
+ },
+ {
+ "id": 8756,
+ "start": 4878.08,
+ "end": 4878.18,
+ "text": "to"
+ },
+ {
+ "id": 8757,
+ "start": 4878.18,
+ "end": 4878.28,
+ "text": "be"
+ },
+ {
+ "id": 8758,
+ "start": 4878.28,
+ "end": 4878.42,
+ "text": "the"
+ },
+ {
+ "id": 8759,
+ "start": 4878.42,
+ "end": 4878.72,
+ "text": "pipes"
+ },
+ {
+ "id": 8760,
+ "start": 4878.72,
+ "end": 4878.86,
+ "text": "of"
+ },
+ {
+ "id": 8761,
+ "start": 4878.86,
+ "end": 4878.98,
+ "text": "the"
+ },
+ {
+ "id": 8762,
+ "start": 4878.98,
+ "end": 4879.42,
+ "text": "Internet"
+ },
+ {
+ "id": 8763,
+ "start": 4879.42,
+ "end": 4880.22,
+ "text": "and"
+ },
+ {
+ "id": 8764,
+ "start": 4880.22,
+ "end": 4880.44,
+ "text": "the"
+ },
+ {
+ "id": 8765,
+ "start": 4880.44,
+ "end": 4881.16,
+ "text": "platforms"
+ },
+ {
+ "id": 8766,
+ "start": 4881.16,
+ "end": 4881.58,
+ "text": "like"
+ },
+ {
+ "id": 8767,
+ "start": 4881.58,
+ "end": 4882.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 8768,
+ "start": 4882.16,
+ "end": 4882.44,
+ "text": "or"
+ },
+ {
+ "id": 8769,
+ "start": 4882.44,
+ "end": 4882.75,
+ "text": "Google"
+ },
+ {
+ "id": 8770,
+ "start": 4882.75,
+ "end": 4883.63,
+ "text": "or"
+ },
+ {
+ "id": 8771,
+ "start": 4883.63,
+ "end": 4884.15,
+ "text": "Twitter"
+ },
+ {
+ "id": 8772,
+ "start": 4884.15,
+ "end": 4885.05,
+ "text": "YouTube"
+ },
+ {
+ "id": 8773,
+ "start": 4885.05,
+ "end": 4885.35,
+ "text": "that"
+ },
+ {
+ "id": 8774,
+ "start": 4885.35,
+ "end": 4885.83,
+ "text": "are"
+ },
+ {
+ "id": 8775,
+ "start": 4885.83,
+ "end": 4886.17,
+ "text": "the"
+ },
+ {
+ "id": 8776,
+ "start": 4886.17,
+ "end": 4886.95,
+ "text": "apps"
+ },
+ {
+ "id": 8777,
+ "start": 4886.95,
+ "end": 4887.37,
+ "text": "or"
+ },
+ {
+ "id": 8778,
+ "start": 4887.37,
+ "end": 4887.87,
+ "text": "platforms"
+ },
+ {
+ "id": 8779,
+ "start": 4887.87,
+ "end": 4888.03,
+ "text": "on"
+ },
+ {
+ "id": 8780,
+ "start": 4888.03,
+ "end": 4888.27,
+ "text": "top"
+ },
+ {
+ "id": 8781,
+ "start": 4888.27,
+ "end": 4888.39,
+ "text": "of"
+ },
+ {
+ "id": 8782,
+ "start": 4888.39,
+ "end": 4888.59,
+ "text": "that."
+ },
+ {
+ "id": 8783,
+ "start": 4888.59,
+ "end": 4889.33,
+ "text": "I"
+ },
+ {
+ "id": 8784,
+ "start": 4889.33,
+ "end": 4889.51,
+ "text": "think"
+ },
+ {
+ "id": 8785,
+ "start": 4889.51,
+ "end": 4889.67,
+ "text": "in"
+ },
+ {
+ "id": 8786,
+ "start": 4889.67,
+ "end": 4890.13,
+ "text": "general"
+ },
+ {
+ "id": 8787,
+ "start": 4890.13,
+ "end": 4890.61,
+ "text": "the"
+ },
+ {
+ "id": 8788,
+ "start": 4890.61,
+ "end": 4891.57,
+ "text": "expectations"
+ },
+ {
+ "id": 8789,
+ "start": 4891.57,
+ "end": 4891.77,
+ "text": "that"
+ },
+ {
+ "id": 8790,
+ "start": 4891.77,
+ "end": 4892.07,
+ "text": "people"
+ },
+ {
+ "id": 8791,
+ "start": 4892.07,
+ "end": 4892.37,
+ "text": "have"
+ },
+ {
+ "id": 8792,
+ "start": 4892.37,
+ "end": 4892.63,
+ "text": "of"
+ },
+ {
+ "id": 8793,
+ "start": 4892.63,
+ "end": 4892.77,
+ "text": "the"
+ },
+ {
+ "id": 8794,
+ "start": 4892.77,
+ "end": 4893.54,
+ "text": "pipes"
+ },
+ {
+ "id": 8795,
+ "start": 4893.54,
+ "end": 4894.14,
+ "text": "are"
+ },
+ {
+ "id": 8796,
+ "start": 4894.14,
+ "end": 4894.4,
+ "text": "somewhat"
+ },
+ {
+ "id": 8797,
+ "start": 4894.4,
+ "end": 4894.72,
+ "text": "different"
+ },
+ {
+ "id": 8798,
+ "start": 4894.72,
+ "end": 4895.02,
+ "text": "from"
+ },
+ {
+ "id": 8799,
+ "start": 4895.02,
+ "end": 4895.14,
+ "text": "the"
+ },
+ {
+ "id": 8800,
+ "start": 4895.14,
+ "end": 4895.64,
+ "text": "platforms."
+ },
+ {
+ "id": 8801,
+ "start": 4895.64,
+ "end": 4896.2,
+ "text": "So"
+ },
+ {
+ "id": 8802,
+ "start": 4896.2,
+ "end": 4896.4,
+ "text": "there"
+ },
+ {
+ "id": 8803,
+ "start": 4896.4,
+ "end": 4896.58,
+ "text": "might"
+ },
+ {
+ "id": 8804,
+ "start": 4896.58,
+ "end": 4896.68,
+ "text": "be"
+ },
+ {
+ "id": 8805,
+ "start": 4896.68,
+ "end": 4896.98,
+ "text": "areas"
+ },
+ {
+ "id": 8806,
+ "start": 4896.98,
+ "end": 4897.24,
+ "text": "where"
+ },
+ {
+ "id": 8807,
+ "start": 4897.24,
+ "end": 4897.46,
+ "text": "there"
+ },
+ {
+ "id": 8808,
+ "start": 4897.46,
+ "end": 4897.72,
+ "text": "needs"
+ },
+ {
+ "id": 8809,
+ "start": 4897.72,
+ "end": 4897.86,
+ "text": "to"
+ },
+ {
+ "id": 8810,
+ "start": 4897.86,
+ "end": 4898.06,
+ "text": "be"
+ },
+ {
+ "id": 8811,
+ "start": 4898.06,
+ "end": 4898.68,
+ "text": "more"
+ },
+ {
+ "id": 8812,
+ "start": 4898.68,
+ "end": 4899.2,
+ "text": "regulation."
+ },
+ {
+ "id": 8813,
+ "start": 4899.2,
+ "end": 4899.36,
+ "text": "And"
+ },
+ {
+ "id": 8814,
+ "start": 4899.36,
+ "end": 4899.66,
+ "text": "one"
+ },
+ {
+ "id": 8815,
+ "start": 4899.66,
+ "end": 4899.86,
+ "text": "and"
+ },
+ {
+ "id": 8816,
+ "start": 4899.86,
+ "end": 4900.04,
+ "text": "less"
+ },
+ {
+ "id": 8817,
+ "start": 4900.04,
+ "end": 4900.16,
+ "text": "than"
+ },
+ {
+ "id": 8818,
+ "start": 4900.16,
+ "end": 4900.28,
+ "text": "the"
+ },
+ {
+ "id": 8819,
+ "start": 4900.28,
+ "end": 4900.46,
+ "text": "other."
+ },
+ {
+ "id": 8820,
+ "start": 4900.46,
+ "end": 4900.56,
+ "text": "But"
+ },
+ {
+ "id": 8821,
+ "start": 4900.56,
+ "end": 4900.74,
+ "text": "I"
+ },
+ {
+ "id": 8822,
+ "start": 4900.74,
+ "end": 4900.88,
+ "text": "think"
+ },
+ {
+ "id": 8823,
+ "start": 4900.88,
+ "end": 4901.36,
+ "text": "there"
+ },
+ {
+ "id": 8824,
+ "start": 4901.36,
+ "end": 4901.46,
+ "text": "are"
+ },
+ {
+ "id": 8825,
+ "start": 4901.46,
+ "end": 4901.58,
+ "text": "going"
+ },
+ {
+ "id": 8826,
+ "start": 4901.58,
+ "end": 4901.64,
+ "text": "to"
+ },
+ {
+ "id": 8827,
+ "start": 4901.64,
+ "end": 4901.7,
+ "text": "be"
+ },
+ {
+ "id": 8828,
+ "start": 4901.7,
+ "end": 4901.86,
+ "text": "other"
+ },
+ {
+ "id": 8829,
+ "start": 4901.86,
+ "end": 4902.14,
+ "text": "places"
+ },
+ {
+ "id": 8830,
+ "start": 4902.14,
+ "end": 4902.3,
+ "text": "where"
+ },
+ {
+ "id": 8831,
+ "start": 4902.3,
+ "end": 4902.44,
+ "text": "there"
+ },
+ {
+ "id": 8832,
+ "start": 4902.44,
+ "end": 4902.6,
+ "text": "needs"
+ },
+ {
+ "id": 8833,
+ "start": 4902.6,
+ "end": 4902.66,
+ "text": "to"
+ },
+ {
+ "id": 8834,
+ "start": 4902.66,
+ "end": 4902.74,
+ "text": "be"
+ },
+ {
+ "id": 8835,
+ "start": 4902.74,
+ "end": 4902.88,
+ "text": "more"
+ },
+ {
+ "id": 8836,
+ "start": 4902.88,
+ "end": 4903.32,
+ "text": "regulation"
+ },
+ {
+ "id": 8837,
+ "start": 4903.32,
+ "end": 4903.46,
+ "text": "of"
+ },
+ {
+ "id": 8838,
+ "start": 4903.46,
+ "end": 4903.72,
+ "text": "the"
+ },
+ {
+ "id": 8839,
+ "start": 4903.72,
+ "end": 4903.94,
+ "text": "other"
+ },
+ {
+ "id": 8840,
+ "start": 4903.94,
+ "end": 4905.68,
+ "text": "type"
+ },
+ {
+ "id": 8841,
+ "start": 4905.68,
+ "end": 4906.64,
+ "text": "specifically,"
+ },
+ {
+ "id": 8842,
+ "start": 4906.64,
+ "end": 4906.88,
+ "text": "though."
+ },
+ {
+ "id": 8843,
+ "start": 4906.88,
+ "end": 4907.96,
+ "text": "On"
+ },
+ {
+ "id": 8844,
+ "start": 4907.96,
+ "end": 4908.82,
+ "text": "the"
+ },
+ {
+ "id": 8845,
+ "start": 4908.82,
+ "end": 4909.44,
+ "text": "pipes"
+ },
+ {
+ "id": 8846,
+ "start": 4909.44,
+ "end": 4910.4,
+ "text": "one"
+ },
+ {
+ "id": 8847,
+ "start": 4910.4,
+ "end": 4910.5,
+ "text": "of"
+ },
+ {
+ "id": 8848,
+ "start": 4910.5,
+ "end": 4910.62,
+ "text": "the"
+ },
+ {
+ "id": 8849,
+ "start": 4910.62,
+ "end": 4911.14,
+ "text": "important"
+ },
+ {
+ "id": 8850,
+ "start": 4911.14,
+ "end": 4911.52,
+ "text": "issues"
+ },
+ {
+ "id": 8851,
+ "start": 4911.52,
+ "end": 4912.8,
+ "text": "that"
+ },
+ {
+ "id": 8852,
+ "start": 4912.8,
+ "end": 4912.86,
+ "text": "I"
+ },
+ {
+ "id": 8853,
+ "start": 4912.86,
+ "end": 4913.06,
+ "text": "think"
+ },
+ {
+ "id": 8854,
+ "start": 4913.06,
+ "end": 4913.22,
+ "text": "we"
+ },
+ {
+ "id": 8855,
+ "start": 4913.22,
+ "end": 4913.52,
+ "text": "face"
+ },
+ {
+ "id": 8856,
+ "start": 4913.52,
+ "end": 4913.92,
+ "text": "and"
+ },
+ {
+ "id": 8857,
+ "start": 4913.92,
+ "end": 4914.06,
+ "text": "I"
+ },
+ {
+ "id": 8858,
+ "start": 4914.06,
+ "end": 4914.4,
+ "text": "debated"
+ },
+ {
+ "id": 8859,
+ "start": 4914.4,
+ "end": 4914.58,
+ "text": "is"
+ },
+ {
+ "id": 8860,
+ "start": 4914.58,
+ "end": 4915.16,
+ "text": "when"
+ },
+ {
+ "id": 8861,
+ "start": 4915.16,
+ "end": 4915.32,
+ "text": "you"
+ },
+ {
+ "id": 8862,
+ "start": 4915.32,
+ "end": 4915.5,
+ "text": "say"
+ },
+ {
+ "id": 8863,
+ "start": 4915.5,
+ "end": 4915.86,
+ "text": "pipe,"
+ },
+ {
+ "id": 8864,
+ "start": 4915.86,
+ "end": 4916.04,
+ "text": "you"
+ },
+ {
+ "id": 8865,
+ "start": 4916.04,
+ "end": 4916.56,
+ "text": "man"
+ },
+ {
+ "id": 8866,
+ "start": 4916.56,
+ "end": 4916.86,
+ "text": "is"
+ },
+ {
+ "id": 8867,
+ "start": 4916.86,
+ "end": 4918.62,
+ "text": "pipe"
+ },
+ {
+ "id": 8868,
+ "start": 4918.62,
+ "end": 4919.46,
+ "text": "and"
+ },
+ {
+ "id": 8869,
+ "start": 4919.46,
+ "end": 4919.5,
+ "text": "I"
+ },
+ {
+ "id": 8870,
+ "start": 4919.5,
+ "end": 4919.64,
+ "text": "know"
+ },
+ {
+ "id": 8871,
+ "start": 4919.64,
+ "end": 4919.82,
+ "text": "net"
+ },
+ {
+ "id": 8872,
+ "start": 4919.82,
+ "end": 4920.34,
+ "text": "neutrality"
+ },
+ {
+ "id": 8873,
+ "start": 4920.34,
+ "end": 4920.6,
+ "text": "has"
+ },
+ {
+ "id": 8874,
+ "start": 4920.6,
+ "end": 4920.78,
+ "text": "been"
+ },
+ {
+ "id": 8875,
+ "start": 4920.78,
+ "end": 4921.22,
+ "text": "a"
+ },
+ {
+ "id": 8876,
+ "start": 4921.22,
+ "end": 4921.88,
+ "text": "hotly"
+ },
+ {
+ "id": 8877,
+ "start": 4921.88,
+ "end": 4922.26,
+ "text": "debated"
+ },
+ {
+ "id": 8878,
+ "start": 4922.26,
+ "end": 4922.74,
+ "text": "topic."
+ },
+ {
+ "id": 8879,
+ "start": 4922.74,
+ "end": 4923.32,
+ "text": "And"
+ },
+ {
+ "id": 8880,
+ "start": 4923.32,
+ "end": 4923.56,
+ "text": "one"
+ },
+ {
+ "id": 8881,
+ "start": 4923.56,
+ "end": 4923.64,
+ "text": "of"
+ },
+ {
+ "id": 8882,
+ "start": 4923.64,
+ "end": 4923.74,
+ "text": "the"
+ },
+ {
+ "id": 8883,
+ "start": 4923.74,
+ "end": 4924.04,
+ "text": "reasons"
+ },
+ {
+ "id": 8884,
+ "start": 4924.04,
+ "end": 4924.34,
+ "text": "why"
+ },
+ {
+ "id": 8885,
+ "start": 4924.34,
+ "end": 4924.58,
+ "text": "I"
+ },
+ {
+ "id": 8886,
+ "start": 4924.58,
+ "end": 4924.76,
+ "text": "have"
+ },
+ {
+ "id": 8887,
+ "start": 4924.76,
+ "end": 4925.08,
+ "text": "been"
+ },
+ {
+ "id": 8888,
+ "start": 4925.08,
+ "end": 4925.62,
+ "text": "out"
+ },
+ {
+ "id": 8889,
+ "start": 4925.62,
+ "end": 4925.86,
+ "text": "there"
+ },
+ {
+ "id": 8890,
+ "start": 4925.86,
+ "end": 4926.84,
+ "text": "saying"
+ },
+ {
+ "id": 8891,
+ "start": 4926.84,
+ "end": 4926.96,
+ "text": "that"
+ },
+ {
+ "id": 8892,
+ "start": 4926.96,
+ "end": 4927.02,
+ "text": "I"
+ },
+ {
+ "id": 8893,
+ "start": 4927.02,
+ "end": 4927.16,
+ "text": "think"
+ },
+ {
+ "id": 8894,
+ "start": 4927.16,
+ "end": 4927.28,
+ "text": "that"
+ },
+ {
+ "id": 8895,
+ "start": 4927.28,
+ "end": 4927.44,
+ "text": "that"
+ },
+ {
+ "id": 8896,
+ "start": 4927.44,
+ "end": 4927.68,
+ "text": "should"
+ },
+ {
+ "id": 8897,
+ "start": 4927.68,
+ "end": 4927.76,
+ "text": "be"
+ },
+ {
+ "id": 8898,
+ "start": 4927.76,
+ "end": 4927.88,
+ "text": "the"
+ },
+ {
+ "id": 8899,
+ "start": 4927.88,
+ "end": 4928.1,
+ "text": "case"
+ },
+ {
+ "id": 8900,
+ "start": 4928.1,
+ "end": 4928.3,
+ "text": "is"
+ },
+ {
+ "id": 8901,
+ "start": 4928.3,
+ "end": 4928.64,
+ "text": "because"
+ },
+ {
+ "id": 8902,
+ "start": 4928.64,
+ "end": 4929.26,
+ "text": "I"
+ },
+ {
+ "id": 8903,
+ "start": 4929.26,
+ "end": 4929.42,
+ "text": "look"
+ },
+ {
+ "id": 8904,
+ "start": 4929.42,
+ "end": 4929.5,
+ "text": "at"
+ },
+ {
+ "id": 8905,
+ "start": 4929.5,
+ "end": 4929.62,
+ "text": "my"
+ },
+ {
+ "id": 8906,
+ "start": 4929.62,
+ "end": 4929.8,
+ "text": "own"
+ },
+ {
+ "id": 8907,
+ "start": 4929.8,
+ "end": 4930.28,
+ "text": "story"
+ },
+ {
+ "id": 8908,
+ "start": 4930.28,
+ "end": 4930.58,
+ "text": "of"
+ },
+ {
+ "id": 8909,
+ "start": 4930.58,
+ "end": 4930.74,
+ "text": "when"
+ },
+ {
+ "id": 8910,
+ "start": 4930.74,
+ "end": 4930.8,
+ "text": "I"
+ },
+ {
+ "id": 8911,
+ "start": 4930.8,
+ "end": 4930.94,
+ "text": "was"
+ },
+ {
+ "id": 8912,
+ "start": 4930.94,
+ "end": 4931.18,
+ "text": "getting"
+ },
+ {
+ "id": 8913,
+ "start": 4931.18,
+ "end": 4931.54,
+ "text": "started"
+ },
+ {
+ "id": 8914,
+ "start": 4931.54,
+ "end": 4931.86,
+ "text": "building"
+ },
+ {
+ "id": 8915,
+ "start": 4931.86,
+ "end": 4932.36,
+ "text": "Facebook"
+ },
+ {
+ "id": 8916,
+ "start": 4932.36,
+ "end": 4932.64,
+ "text": "at"
+ },
+ {
+ "id": 8917,
+ "start": 4932.64,
+ "end": 4933.7,
+ "text": "Harvard."
+ },
+ {
+ "id": 8918,
+ "start": 4933.7,
+ "end": 4934.04,
+ "text": "I"
+ },
+ {
+ "id": 8919,
+ "start": 4934.04,
+ "end": 4934.66,
+ "text": "only"
+ },
+ {
+ "id": 8920,
+ "start": 4934.66,
+ "end": 4934.78,
+ "text": "had"
+ },
+ {
+ "id": 8921,
+ "start": 4934.78,
+ "end": 4934.94,
+ "text": "one"
+ },
+ {
+ "id": 8922,
+ "start": 4934.94,
+ "end": 4935.32,
+ "text": "option"
+ },
+ {
+ "id": 8923,
+ "start": 4935.32,
+ "end": 4935.64,
+ "text": "for"
+ },
+ {
+ "id": 8924,
+ "start": 4935.64,
+ "end": 4935.74,
+ "text": "an"
+ },
+ {
+ "id": 8925,
+ "start": 4935.74,
+ "end": 4936.2,
+ "text": "ISP"
+ },
+ {
+ "id": 8926,
+ "start": 4936.2,
+ "end": 4936.3,
+ "text": "to"
+ },
+ {
+ "id": 8927,
+ "start": 4936.3,
+ "end": 4936.58,
+ "text": "us."
+ },
+ {
+ "id": 8928,
+ "start": 4936.58,
+ "end": 4937.4,
+ "text": "And"
+ },
+ {
+ "id": 8929,
+ "start": 4937.4,
+ "end": 4937.56,
+ "text": "if"
+ },
+ {
+ "id": 8930,
+ "start": 4937.56,
+ "end": 4937.68,
+ "text": "I"
+ },
+ {
+ "id": 8931,
+ "start": 4937.68,
+ "end": 4937.84,
+ "text": "had"
+ },
+ {
+ "id": 8932,
+ "start": 4937.84,
+ "end": 4937.94,
+ "text": "to"
+ },
+ {
+ "id": 8933,
+ "start": 4937.94,
+ "end": 4938.14,
+ "text": "pay"
+ },
+ {
+ "id": 8934,
+ "start": 4938.14,
+ "end": 4938.62,
+ "text": "extra"
+ },
+ {
+ "id": 8935,
+ "start": 4938.62,
+ "end": 4938.76,
+ "text": "in"
+ },
+ {
+ "id": 8936,
+ "start": 4938.76,
+ "end": 4939.02,
+ "text": "order"
+ },
+ {
+ "id": 8937,
+ "start": 4939.02,
+ "end": 4939.38,
+ "text": "to"
+ },
+ {
+ "id": 8938,
+ "start": 4939.38,
+ "end": 4940.4,
+ "text": "make"
+ },
+ {
+ "id": 8939,
+ "start": 4940.4,
+ "end": 4940.54,
+ "text": "it"
+ },
+ {
+ "id": 8940,
+ "start": 4940.54,
+ "end": 4940.78,
+ "text": "that"
+ },
+ {
+ "id": 8941,
+ "start": 4940.78,
+ "end": 4940.96,
+ "text": "my"
+ },
+ {
+ "id": 8942,
+ "start": 4940.96,
+ "end": 4941.18,
+ "text": "app"
+ },
+ {
+ "id": 8943,
+ "start": 4941.18,
+ "end": 4941.38,
+ "text": "could"
+ },
+ {
+ "id": 8944,
+ "start": 4941.38,
+ "end": 4941.82,
+ "text": "potentially"
+ },
+ {
+ "id": 8945,
+ "start": 4941.82,
+ "end": 4942.1,
+ "text": "be"
+ },
+ {
+ "id": 8946,
+ "start": 4942.1,
+ "end": 4942.46,
+ "text": "seen"
+ },
+ {
+ "id": 8947,
+ "start": 4942.46,
+ "end": 4942.62,
+ "text": "or"
+ },
+ {
+ "id": 8948,
+ "start": 4942.62,
+ "end": 4942.82,
+ "text": "used"
+ },
+ {
+ "id": 8949,
+ "start": 4942.82,
+ "end": 4942.94,
+ "text": "by"
+ },
+ {
+ "id": 8950,
+ "start": 4942.94,
+ "end": 4943.2,
+ "text": "other"
+ },
+ {
+ "id": 8951,
+ "start": 4943.2,
+ "end": 4943.54,
+ "text": "people,"
+ },
+ {
+ "id": 8952,
+ "start": 4943.54,
+ "end": 4944.62,
+ "text": "then"
+ },
+ {
+ "id": 8953,
+ "start": 4944.62,
+ "end": 4944.7,
+ "text": "we"
+ },
+ {
+ "id": 8954,
+ "start": 4944.7,
+ "end": 4945.03,
+ "text": "probably"
+ },
+ {
+ "id": 8955,
+ "start": 4945.03,
+ "end": 4945.37,
+ "text": "here"
+ },
+ {
+ "id": 8956,
+ "start": 4945.37,
+ "end": 4945.59,
+ "text": "today."
+ },
+ {
+ "id": 8957,
+ "start": 4945.59,
+ "end": 4946.81,
+ "text": "Okay,"
+ },
+ {
+ "id": 8958,
+ "start": 4946.81,
+ "end": 4946.97,
+ "text": "but"
+ },
+ {
+ "id": 8959,
+ "start": 4946.97,
+ "end": 4947.17,
+ "text": "we're"
+ },
+ {
+ "id": 8960,
+ "start": 4947.17,
+ "end": 4947.47,
+ "text": "talking"
+ },
+ {
+ "id": 8961,
+ "start": 4947.47,
+ "end": 4947.71,
+ "text": "about"
+ },
+ {
+ "id": 8962,
+ "start": 4947.71,
+ "end": 4948.23,
+ "text": "privacy"
+ },
+ {
+ "id": 8963,
+ "start": 4948.23,
+ "end": 4948.73,
+ "text": "concerns"
+ },
+ {
+ "id": 8964,
+ "start": 4948.73,
+ "end": 4949.45,
+ "text": "and"
+ },
+ {
+ "id": 8965,
+ "start": 4949.45,
+ "end": 4949.59,
+ "text": "let"
+ },
+ {
+ "id": 8966,
+ "start": 4949.59,
+ "end": 4949.73,
+ "text": "me"
+ },
+ {
+ "id": 8967,
+ "start": 4949.73,
+ "end": 4949.87,
+ "text": "just"
+ },
+ {
+ "id": 8968,
+ "start": 4949.87,
+ "end": 4950.05,
+ "text": "say,"
+ },
+ {
+ "id": 8969,
+ "start": 4950.05,
+ "end": 4950.63,
+ "text": "we'll"
+ },
+ {
+ "id": 8970,
+ "start": 4950.63,
+ "end": 4950.79,
+ "text": "have"
+ },
+ {
+ "id": 8971,
+ "start": 4950.79,
+ "end": 4950.93,
+ "text": "to"
+ },
+ {
+ "id": 8972,
+ "start": 4950.93,
+ "end": 4951.27,
+ "text": "follow"
+ },
+ {
+ "id": 8973,
+ "start": 4951.27,
+ "end": 4951.41,
+ "text": "up"
+ },
+ {
+ "id": 8974,
+ "start": 4951.41,
+ "end": 4951.55,
+ "text": "on"
+ },
+ {
+ "id": 8975,
+ "start": 4951.55,
+ "end": 4951.73,
+ "text": "this."
+ },
+ {
+ "id": 8976,
+ "start": 4951.73,
+ "end": 4951.89,
+ "text": "But"
+ },
+ {
+ "id": 8977,
+ "start": 4951.89,
+ "end": 4952.77,
+ "text": "I"
+ },
+ {
+ "id": 8978,
+ "start": 4952.77,
+ "end": 4952.99,
+ "text": "think"
+ },
+ {
+ "id": 8979,
+ "start": 4952.99,
+ "end": 4953.13,
+ "text": "you"
+ },
+ {
+ "id": 8980,
+ "start": 4953.13,
+ "end": 4953.29,
+ "text": "and"
+ },
+ {
+ "id": 8981,
+ "start": 4953.29,
+ "end": 4953.39,
+ "text": "I"
+ },
+ {
+ "id": 8982,
+ "start": 4953.39,
+ "end": 4953.63,
+ "text": "agree"
+ },
+ {
+ "id": 8983,
+ "start": 4953.63,
+ "end": 4953.81,
+ "text": "this"
+ },
+ {
+ "id": 8984,
+ "start": 4953.81,
+ "end": 4953.95,
+ "text": "is"
+ },
+ {
+ "id": 8985,
+ "start": 4953.95,
+ "end": 4954.11,
+ "text": "going"
+ },
+ {
+ "id": 8986,
+ "start": 4954.11,
+ "end": 4954.19,
+ "text": "to"
+ },
+ {
+ "id": 8987,
+ "start": 4954.19,
+ "end": 4954.31,
+ "text": "be"
+ },
+ {
+ "id": 8988,
+ "start": 4954.31,
+ "end": 4954.67,
+ "text": "one"
+ },
+ {
+ "id": 8989,
+ "start": 4954.67,
+ "end": 4955.17,
+ "text": "of"
+ },
+ {
+ "id": 8990,
+ "start": 4955.17,
+ "end": 4955.31,
+ "text": "the"
+ },
+ {
+ "id": 8991,
+ "start": 4955.31,
+ "end": 4956.36,
+ "text": "major"
+ },
+ {
+ "id": 8992,
+ "start": 4956.36,
+ "end": 4957.24,
+ "text": "items"
+ },
+ {
+ "id": 8993,
+ "start": 4957.24,
+ "end": 4957.52,
+ "text": "of"
+ },
+ {
+ "id": 8994,
+ "start": 4957.52,
+ "end": 4958.02,
+ "text": "debate."
+ },
+ {
+ "id": 8995,
+ "start": 4958.02,
+ "end": 4958.86,
+ "text": "If"
+ },
+ {
+ "id": 8996,
+ "start": 4958.86,
+ "end": 4958.98,
+ "text": "we"
+ },
+ {
+ "id": 8997,
+ "start": 4958.98,
+ "end": 4959.18,
+ "text": "have"
+ },
+ {
+ "id": 8998,
+ "start": 4959.18,
+ "end": 4959.28,
+ "text": "to"
+ },
+ {
+ "id": 8999,
+ "start": 4959.28,
+ "end": 4959.44,
+ "text": "go"
+ },
+ {
+ "id": 9000,
+ "start": 4959.44,
+ "end": 4959.94,
+ "text": "forward"
+ },
+ {
+ "id": 9001,
+ "start": 4959.94,
+ "end": 4960.64,
+ "text": "and"
+ },
+ {
+ "id": 9002,
+ "start": 4960.64,
+ "end": 4960.82,
+ "text": "do"
+ },
+ {
+ "id": 9003,
+ "start": 4960.82,
+ "end": 4960.98,
+ "text": "this"
+ },
+ {
+ "id": 9004,
+ "start": 4960.98,
+ "end": 4961.16,
+ "text": "from"
+ },
+ {
+ "id": 9005,
+ "start": 4961.16,
+ "end": 4961.22,
+ "text": "a"
+ },
+ {
+ "id": 9006,
+ "start": 4961.22,
+ "end": 4961.76,
+ "text": "governmental"
+ },
+ {
+ "id": 9007,
+ "start": 4961.76,
+ "end": 4962.34,
+ "text": "standpoint."
+ },
+ {
+ "id": 9008,
+ "start": 4962.34,
+ "end": 4962.68,
+ "text": "Let"
+ },
+ {
+ "id": 9009,
+ "start": 4962.68,
+ "end": 4962.84,
+ "text": "me"
+ },
+ {
+ "id": 9010,
+ "start": 4962.84,
+ "end": 4963.02,
+ "text": "just"
+ },
+ {
+ "id": 9011,
+ "start": 4963.02,
+ "end": 4963.74,
+ "text": "move"
+ },
+ {
+ "id": 9012,
+ "start": 4963.74,
+ "end": 4963.88,
+ "text": "on"
+ },
+ {
+ "id": 9013,
+ "start": 4963.88,
+ "end": 4964.04,
+ "text": "to"
+ },
+ {
+ "id": 9014,
+ "start": 4964.04,
+ "end": 4964.44,
+ "text": "another"
+ },
+ {
+ "id": 9015,
+ "start": 4964.44,
+ "end": 4964.72,
+ "text": "couple"
+ },
+ {
+ "id": 9016,
+ "start": 4964.72,
+ "end": 4964.84,
+ "text": "of"
+ },
+ {
+ "id": 9017,
+ "start": 4964.84,
+ "end": 4965.66,
+ "text": "items"
+ },
+ {
+ "id": 9018,
+ "start": 4965.66,
+ "end": 4965.82,
+ "text": "is"
+ },
+ {
+ "id": 9019,
+ "start": 4965.82,
+ "end": 4965.96,
+ "text": "it"
+ },
+ {
+ "id": 9020,
+ "start": 4965.96,
+ "end": 4967.32,
+ "text": "true"
+ },
+ {
+ "id": 9021,
+ "start": 4967.32,
+ "end": 4968.04,
+ "text": "that"
+ },
+ {
+ "id": 9022,
+ "start": 4968.04,
+ "end": 4969.28,
+ "text": "as"
+ },
+ {
+ "id": 9023,
+ "start": 4969.28,
+ "end": 4969.48,
+ "text": "was"
+ },
+ {
+ "id": 9024,
+ "start": 4969.48,
+ "end": 4969.88,
+ "text": "recently"
+ },
+ {
+ "id": 9025,
+ "start": 4969.88,
+ "end": 4970.48,
+ "text": "publicized"
+ },
+ {
+ "id": 9026,
+ "start": 4970.48,
+ "end": 4970.64,
+ "text": "that"
+ },
+ {
+ "id": 9027,
+ "start": 4970.64,
+ "end": 4971.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 9028,
+ "start": 4971.16,
+ "end": 4971.58,
+ "text": "collects"
+ },
+ {
+ "id": 9029,
+ "start": 4971.58,
+ "end": 4971.74,
+ "text": "the"
+ },
+ {
+ "id": 9030,
+ "start": 4971.74,
+ "end": 4972.16,
+ "text": "call"
+ },
+ {
+ "id": 9031,
+ "start": 4972.16,
+ "end": 4972.48,
+ "text": "and"
+ },
+ {
+ "id": 9032,
+ "start": 4972.48,
+ "end": 4973.14,
+ "text": "text"
+ },
+ {
+ "id": 9033,
+ "start": 4973.14,
+ "end": 4974.16,
+ "text": "histories"
+ },
+ {
+ "id": 9034,
+ "start": 4974.16,
+ "end": 4974.94,
+ "text": "of"
+ },
+ {
+ "id": 9035,
+ "start": 4974.94,
+ "end": 4975.3,
+ "text": "its"
+ },
+ {
+ "id": 9036,
+ "start": 4975.3,
+ "end": 4975.94,
+ "text": "users"
+ },
+ {
+ "id": 9037,
+ "start": 4975.94,
+ "end": 4976.18,
+ "text": "that"
+ },
+ {
+ "id": 9038,
+ "start": 4976.18,
+ "end": 4976.42,
+ "text": "use"
+ },
+ {
+ "id": 9039,
+ "start": 4976.42,
+ "end": 4977.04,
+ "text": "Android"
+ },
+ {
+ "id": 9040,
+ "start": 4977.04,
+ "end": 4978.28,
+ "text": "phones."
+ },
+ {
+ "id": 9041,
+ "start": 4978.28,
+ "end": 4979.26,
+ "text": "Senator,"
+ },
+ {
+ "id": 9042,
+ "start": 4979.26,
+ "end": 4979.78,
+ "text": "we"
+ },
+ {
+ "id": 9043,
+ "start": 4979.78,
+ "end": 4979.94,
+ "text": "have"
+ },
+ {
+ "id": 9044,
+ "start": 4979.94,
+ "end": 4980.02,
+ "text": "an"
+ },
+ {
+ "id": 9045,
+ "start": 4980.02,
+ "end": 4980.22,
+ "text": "app"
+ },
+ {
+ "id": 9046,
+ "start": 4980.22,
+ "end": 4980.48,
+ "text": "called"
+ },
+ {
+ "id": 9047,
+ "start": 4980.48,
+ "end": 4981,
+ "text": "Messenger"
+ },
+ {
+ "id": 9048,
+ "start": 4981,
+ "end": 4981.96,
+ "text": "for"
+ },
+ {
+ "id": 9049,
+ "start": 4981.96,
+ "end": 4982.26,
+ "text": "sending"
+ },
+ {
+ "id": 9050,
+ "start": 4982.26,
+ "end": 4982.84,
+ "text": "messages"
+ },
+ {
+ "id": 9051,
+ "start": 4982.84,
+ "end": 4983,
+ "text": "to"
+ },
+ {
+ "id": 9052,
+ "start": 4983,
+ "end": 4983.16,
+ "text": "your"
+ },
+ {
+ "id": 9053,
+ "start": 4983.16,
+ "end": 4983.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 9054,
+ "start": 4983.54,
+ "end": 4983.88,
+ "text": "friends."
+ },
+ {
+ "id": 9055,
+ "start": 4983.88,
+ "end": 4984.66,
+ "text": "And"
+ },
+ {
+ "id": 9056,
+ "start": 4984.66,
+ "end": 4984.94,
+ "text": "that"
+ },
+ {
+ "id": 9057,
+ "start": 4984.94,
+ "end": 4985.22,
+ "text": "app"
+ },
+ {
+ "id": 9058,
+ "start": 4985.22,
+ "end": 4985.66,
+ "text": "offers"
+ },
+ {
+ "id": 9059,
+ "start": 4985.66,
+ "end": 4985.94,
+ "text": "people"
+ },
+ {
+ "id": 9060,
+ "start": 4985.94,
+ "end": 4986.06,
+ "text": "an"
+ },
+ {
+ "id": 9061,
+ "start": 4986.06,
+ "end": 4986.54,
+ "text": "option"
+ },
+ {
+ "id": 9062,
+ "start": 4986.54,
+ "end": 4987.14,
+ "text": "to"
+ },
+ {
+ "id": 9063,
+ "start": 4987.14,
+ "end": 4988.35,
+ "text": "sync"
+ },
+ {
+ "id": 9064,
+ "start": 4988.35,
+ "end": 4989.51,
+ "text": "their"
+ },
+ {
+ "id": 9065,
+ "start": 4989.51,
+ "end": 4989.95,
+ "text": "text"
+ },
+ {
+ "id": 9066,
+ "start": 4989.95,
+ "end": 4990.51,
+ "text": "messages"
+ },
+ {
+ "id": 9067,
+ "start": 4990.51,
+ "end": 4991.25,
+ "text": "into"
+ },
+ {
+ "id": 9068,
+ "start": 4991.25,
+ "end": 4991.37,
+ "text": "the"
+ },
+ {
+ "id": 9069,
+ "start": 4991.37,
+ "end": 4991.77,
+ "text": "messaging"
+ },
+ {
+ "id": 9070,
+ "start": 4991.77,
+ "end": 4992.01,
+ "text": "app"
+ },
+ {
+ "id": 9071,
+ "start": 4992.01,
+ "end": 4992.71,
+ "text": "and"
+ },
+ {
+ "id": 9072,
+ "start": 4992.71,
+ "end": 4992.99,
+ "text": "to"
+ },
+ {
+ "id": 9073,
+ "start": 4992.99,
+ "end": 4993.17,
+ "text": "make"
+ },
+ {
+ "id": 9074,
+ "start": 4993.17,
+ "end": 4993.27,
+ "text": "it"
+ },
+ {
+ "id": 9075,
+ "start": 4993.27,
+ "end": 4993.47,
+ "text": "so"
+ },
+ {
+ "id": 9076,
+ "start": 4993.47,
+ "end": 4993.71,
+ "text": "that"
+ },
+ {
+ "id": 9077,
+ "start": 4993.71,
+ "end": 4994.63,
+ "text": "basically,"
+ },
+ {
+ "id": 9078,
+ "start": 4994.63,
+ "end": 4994.79,
+ "text": "so"
+ },
+ {
+ "id": 9079,
+ "start": 4994.79,
+ "end": 4994.89,
+ "text": "you"
+ },
+ {
+ "id": 9080,
+ "start": 4994.89,
+ "end": 4995.01,
+ "text": "can"
+ },
+ {
+ "id": 9081,
+ "start": 4995.01,
+ "end": 4995.15,
+ "text": "have"
+ },
+ {
+ "id": 9082,
+ "start": 4995.15,
+ "end": 4995.29,
+ "text": "one"
+ },
+ {
+ "id": 9083,
+ "start": 4995.29,
+ "end": 4995.53,
+ "text": "app"
+ },
+ {
+ "id": 9084,
+ "start": 4995.53,
+ "end": 4995.99,
+ "text": "where"
+ },
+ {
+ "id": 9085,
+ "start": 4995.99,
+ "end": 4996.15,
+ "text": "it"
+ },
+ {
+ "id": 9086,
+ "start": 4996.15,
+ "end": 4996.37,
+ "text": "has"
+ },
+ {
+ "id": 9087,
+ "start": 4996.37,
+ "end": 4996.67,
+ "text": "both"
+ },
+ {
+ "id": 9088,
+ "start": 4996.67,
+ "end": 4996.99,
+ "text": "your"
+ },
+ {
+ "id": 9089,
+ "start": 4996.99,
+ "end": 4997.33,
+ "text": "texts."
+ },
+ {
+ "id": 9090,
+ "start": 4997.33,
+ "end": 4998.84,
+ "text": "And"
+ },
+ {
+ "id": 9091,
+ "start": 4998.84,
+ "end": 4999.8,
+ "text": "and"
+ },
+ {
+ "id": 9092,
+ "start": 4999.8,
+ "end": 5000.06,
+ "text": "your"
+ },
+ {
+ "id": 9093,
+ "start": 5000.06,
+ "end": 5000.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 9094,
+ "start": 5000.44,
+ "end": 5000.8,
+ "text": "messages"
+ },
+ {
+ "id": 9095,
+ "start": 5000.8,
+ "end": 5000.98,
+ "text": "in"
+ },
+ {
+ "id": 9096,
+ "start": 5000.98,
+ "end": 5001.2,
+ "text": "one"
+ },
+ {
+ "id": 9097,
+ "start": 5001.2,
+ "end": 5001.74,
+ "text": "place."
+ },
+ {
+ "id": 9098,
+ "start": 5001.74,
+ "end": 5002.74,
+ "text": "We"
+ },
+ {
+ "id": 9099,
+ "start": 5002.74,
+ "end": 5003.22,
+ "text": "also"
+ },
+ {
+ "id": 9100,
+ "start": 5003.22,
+ "end": 5003.58,
+ "text": "allow"
+ },
+ {
+ "id": 9101,
+ "start": 5003.58,
+ "end": 5003.84,
+ "text": "people"
+ },
+ {
+ "id": 9102,
+ "start": 5003.84,
+ "end": 5004.04,
+ "text": "the"
+ },
+ {
+ "id": 9103,
+ "start": 5004.04,
+ "end": 5004.42,
+ "text": "option"
+ },
+ {
+ "id": 9104,
+ "start": 5004.42,
+ "end": 5005.14,
+ "text": "you"
+ },
+ {
+ "id": 9105,
+ "start": 5005.14,
+ "end": 5005.3,
+ "text": "can"
+ },
+ {
+ "id": 9106,
+ "start": 5005.3,
+ "end": 5005.54,
+ "text": "opt"
+ },
+ {
+ "id": 9107,
+ "start": 5005.54,
+ "end": 5005.72,
+ "text": "in"
+ },
+ {
+ "id": 9108,
+ "start": 5005.72,
+ "end": 5006,
+ "text": "around"
+ },
+ {
+ "id": 9109,
+ "start": 5006,
+ "end": 5006.4,
+ "text": "that."
+ },
+ {
+ "id": 9110,
+ "start": 5006.4,
+ "end": 5006.82,
+ "text": "Yes,"
+ },
+ {
+ "id": 9111,
+ "start": 5006.82,
+ "end": 5007.14,
+ "text": "it"
+ },
+ {
+ "id": 9112,
+ "start": 5007.14,
+ "end": 5007.28,
+ "text": "is."
+ },
+ {
+ "id": 9113,
+ "start": 5007.28,
+ "end": 5008.1,
+ "text": "It"
+ },
+ {
+ "id": 9114,
+ "start": 5008.1,
+ "end": 5008.36,
+ "text": "is"
+ },
+ {
+ "id": 9115,
+ "start": 5008.36,
+ "end": 5009.38,
+ "text": "in."
+ },
+ {
+ "id": 9116,
+ "start": 5009.38,
+ "end": 5010.16,
+ "text": "You"
+ },
+ {
+ "id": 9117,
+ "start": 5010.16,
+ "end": 5010.36,
+ "text": "have"
+ },
+ {
+ "id": 9118,
+ "start": 5010.36,
+ "end": 5010.76,
+ "text": "to"
+ },
+ {
+ "id": 9119,
+ "start": 5010.76,
+ "end": 5011.72,
+ "text": "affirmatively"
+ },
+ {
+ "id": 9120,
+ "start": 5011.72,
+ "end": 5012,
+ "text": "say"
+ },
+ {
+ "id": 9121,
+ "start": 5012,
+ "end": 5012.22,
+ "text": "that"
+ },
+ {
+ "id": 9122,
+ "start": 5012.22,
+ "end": 5012.36,
+ "text": "you"
+ },
+ {
+ "id": 9123,
+ "start": 5012.36,
+ "end": 5012.52,
+ "text": "want"
+ },
+ {
+ "id": 9124,
+ "start": 5012.52,
+ "end": 5012.66,
+ "text": "to"
+ },
+ {
+ "id": 9125,
+ "start": 5012.66,
+ "end": 5012.98,
+ "text": "sync"
+ },
+ {
+ "id": 9126,
+ "start": 5012.98,
+ "end": 5013.28,
+ "text": "that"
+ },
+ {
+ "id": 9127,
+ "start": 5013.28,
+ "end": 5013.86,
+ "text": "information"
+ },
+ {
+ "id": 9128,
+ "start": 5013.86,
+ "end": 5014.5,
+ "text": "before"
+ },
+ {
+ "id": 9129,
+ "start": 5014.5,
+ "end": 5014.62,
+ "text": "we"
+ },
+ {
+ "id": 9130,
+ "start": 5014.62,
+ "end": 5014.76,
+ "text": "get"
+ },
+ {
+ "id": 9131,
+ "start": 5014.76,
+ "end": 5015.02,
+ "text": "access."
+ },
+ {
+ "id": 9132,
+ "start": 5015.02,
+ "end": 5015.76,
+ "text": "Unless"
+ },
+ {
+ "id": 9133,
+ "start": 5015.76,
+ "end": 5015.88,
+ "text": "you"
+ },
+ {
+ "id": 9134,
+ "start": 5015.88,
+ "end": 5016.18,
+ "text": "opt"
+ },
+ {
+ "id": 9135,
+ "start": 5016.18,
+ "end": 5016.56,
+ "text": "in"
+ },
+ {
+ "id": 9136,
+ "start": 5016.56,
+ "end": 5017.44,
+ "text": "you"
+ },
+ {
+ "id": 9137,
+ "start": 5017.44,
+ "end": 5017.86,
+ "text": "don't"
+ },
+ {
+ "id": 9138,
+ "start": 5017.86,
+ "end": 5018.36,
+ "text": "collect"
+ },
+ {
+ "id": 9139,
+ "start": 5018.36,
+ "end": 5019.3,
+ "text": "that"
+ },
+ {
+ "id": 9140,
+ "start": 5019.3,
+ "end": 5019.74,
+ "text": "college"
+ },
+ {
+ "id": 9141,
+ "start": 5019.74,
+ "end": 5020.54,
+ "text": "history"
+ },
+ {
+ "id": 9142,
+ "start": 5020.54,
+ "end": 5020.94,
+ "text": "that"
+ },
+ {
+ "id": 9143,
+ "start": 5020.94,
+ "end": 5021.1,
+ "text": "is"
+ },
+ {
+ "id": 9144,
+ "start": 5021.1,
+ "end": 5021.38,
+ "text": "correct."
+ },
+ {
+ "id": 9145,
+ "start": 5021.38,
+ "end": 5021.5,
+ "text": "And"
+ },
+ {
+ "id": 9146,
+ "start": 5021.5,
+ "end": 5021.66,
+ "text": "is"
+ },
+ {
+ "id": 9147,
+ "start": 5021.66,
+ "end": 5021.84,
+ "text": "that"
+ },
+ {
+ "id": 9148,
+ "start": 5021.84,
+ "end": 5022.18,
+ "text": "true?"
+ },
+ {
+ "id": 9149,
+ "start": 5022.18,
+ "end": 5022.68,
+ "text": "Or"
+ },
+ {
+ "id": 9150,
+ "start": 5022.68,
+ "end": 5023.84,
+ "text": "is"
+ },
+ {
+ "id": 9151,
+ "start": 5023.84,
+ "end": 5024.02,
+ "text": "this"
+ },
+ {
+ "id": 9152,
+ "start": 5024.02,
+ "end": 5024.42,
+ "text": "practice"
+ },
+ {
+ "id": 9153,
+ "start": 5024.42,
+ "end": 5024.68,
+ "text": "done"
+ },
+ {
+ "id": 9154,
+ "start": 5024.68,
+ "end": 5024.78,
+ "text": "at"
+ },
+ {
+ "id": 9155,
+ "start": 5024.78,
+ "end": 5025,
+ "text": "all"
+ },
+ {
+ "id": 9156,
+ "start": 5025,
+ "end": 5025.16,
+ "text": "with"
+ },
+ {
+ "id": 9157,
+ "start": 5025.16,
+ "end": 5025.64,
+ "text": "minors?"
+ },
+ {
+ "id": 9158,
+ "start": 5025.64,
+ "end": 5025.76,
+ "text": "Or"
+ },
+ {
+ "id": 9159,
+ "start": 5025.76,
+ "end": 5025.86,
+ "text": "do"
+ },
+ {
+ "id": 9160,
+ "start": 5025.86,
+ "end": 5025.98,
+ "text": "you"
+ },
+ {
+ "id": 9161,
+ "start": 5025.98,
+ "end": 5026.12,
+ "text": "make"
+ },
+ {
+ "id": 9162,
+ "start": 5026.12,
+ "end": 5026.22,
+ "text": "an"
+ },
+ {
+ "id": 9163,
+ "start": 5026.22,
+ "end": 5026.7,
+ "text": "exception?"
+ },
+ {
+ "id": 9164,
+ "start": 5026.7,
+ "end": 5026.92,
+ "text": "There"
+ },
+ {
+ "id": 9165,
+ "start": 5026.92,
+ "end": 5027.1,
+ "text": "for"
+ },
+ {
+ "id": 9166,
+ "start": 5027.1,
+ "end": 5027.98,
+ "text": "persons"
+ },
+ {
+ "id": 9167,
+ "start": 5027.98,
+ "end": 5028.4,
+ "text": "age"
+ },
+ {
+ "id": 9168,
+ "start": 5028.4,
+ "end": 5028.8,
+ "text": "13"
+ },
+ {
+ "id": 9169,
+ "start": 5028.8,
+ "end": 5028.94,
+ "text": "to"
+ },
+ {
+ "id": 9170,
+ "start": 5028.94,
+ "end": 5030.1,
+ "text": "17"
+ },
+ {
+ "id": 9171,
+ "start": 5030.1,
+ "end": 5030.58,
+ "text": "I"
+ },
+ {
+ "id": 9172,
+ "start": 5030.58,
+ "end": 5031.08,
+ "text": "do"
+ },
+ {
+ "id": 9173,
+ "start": 5031.08,
+ "end": 5031.28,
+ "text": "not"
+ },
+ {
+ "id": 9174,
+ "start": 5031.28,
+ "end": 5031.44,
+ "text": "know"
+ },
+ {
+ "id": 9175,
+ "start": 5031.44,
+ "end": 5031.66,
+ "text": "we"
+ },
+ {
+ "id": 9176,
+ "start": 5031.66,
+ "end": 5031.84,
+ "text": "can"
+ },
+ {
+ "id": 9177,
+ "start": 5031.84,
+ "end": 5032.08,
+ "text": "follow"
+ },
+ {
+ "id": 9178,
+ "start": 5032.08,
+ "end": 5032.18,
+ "text": "up."
+ },
+ {
+ "id": 9179,
+ "start": 5032.18,
+ "end": 5032.46,
+ "text": "Okay,"
+ },
+ {
+ "id": 9180,
+ "start": 5032.46,
+ "end": 5032.7,
+ "text": "do"
+ },
+ {
+ "id": 9181,
+ "start": 5032.7,
+ "end": 5032.84,
+ "text": "that"
+ },
+ {
+ "id": 9182,
+ "start": 5032.84,
+ "end": 5033.06,
+ "text": "let's"
+ },
+ {
+ "id": 9183,
+ "start": 5033.06,
+ "end": 5033.18,
+ "text": "do"
+ },
+ {
+ "id": 9184,
+ "start": 5033.18,
+ "end": 5033.32,
+ "text": "that"
+ },
+ {
+ "id": 9185,
+ "start": 5033.32,
+ "end": 5033.52,
+ "text": "one"
+ },
+ {
+ "id": 9186,
+ "start": 5033.52,
+ "end": 5033.78,
+ "text": "other"
+ },
+ {
+ "id": 9187,
+ "start": 5033.78,
+ "end": 5034.04,
+ "text": "thing"
+ },
+ {
+ "id": 9188,
+ "start": 5034.04,
+ "end": 5034.94,
+ "text": "there"
+ },
+ {
+ "id": 9189,
+ "start": 5034.94,
+ "end": 5035.06,
+ "text": "have"
+ },
+ {
+ "id": 9190,
+ "start": 5035.06,
+ "end": 5035.22,
+ "text": "been"
+ },
+ {
+ "id": 9191,
+ "start": 5035.22,
+ "end": 5035.6,
+ "text": "reports"
+ },
+ {
+ "id": 9192,
+ "start": 5035.6,
+ "end": 5035.76,
+ "text": "that"
+ },
+ {
+ "id": 9193,
+ "start": 5035.76,
+ "end": 5036.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 9194,
+ "start": 5036.26,
+ "end": 5036.48,
+ "text": "can"
+ },
+ {
+ "id": 9195,
+ "start": 5036.48,
+ "end": 5036.92,
+ "text": "track"
+ },
+ {
+ "id": 9196,
+ "start": 5036.92,
+ "end": 5038.08,
+ "text": "users"
+ },
+ {
+ "id": 9197,
+ "start": 5038.08,
+ "end": 5038.74,
+ "text": "Internet"
+ },
+ {
+ "id": 9198,
+ "start": 5038.74,
+ "end": 5039.42,
+ "text": "browsing"
+ },
+ {
+ "id": 9199,
+ "start": 5039.42,
+ "end": 5040.31,
+ "text": "activity"
+ },
+ {
+ "id": 9200,
+ "start": 5040.31,
+ "end": 5040.85,
+ "text": "even"
+ },
+ {
+ "id": 9201,
+ "start": 5040.85,
+ "end": 5041.23,
+ "text": "after"
+ },
+ {
+ "id": 9202,
+ "start": 5041.23,
+ "end": 5041.45,
+ "text": "that"
+ },
+ {
+ "id": 9203,
+ "start": 5041.45,
+ "end": 5041.83,
+ "text": "user"
+ },
+ {
+ "id": 9204,
+ "start": 5041.83,
+ "end": 5042.43,
+ "text": "has"
+ },
+ {
+ "id": 9205,
+ "start": 5042.43,
+ "end": 5043.05,
+ "text": "logged"
+ },
+ {
+ "id": 9206,
+ "start": 5043.05,
+ "end": 5043.49,
+ "text": "off"
+ },
+ {
+ "id": 9207,
+ "start": 5043.49,
+ "end": 5044.45,
+ "text": "of"
+ },
+ {
+ "id": 9208,
+ "start": 5044.45,
+ "end": 5044.59,
+ "text": "the"
+ },
+ {
+ "id": 9209,
+ "start": 5044.59,
+ "end": 5045.23,
+ "text": "Facebook"
+ },
+ {
+ "id": 9210,
+ "start": 5045.23,
+ "end": 5045.89,
+ "text": "platform."
+ },
+ {
+ "id": 9211,
+ "start": 5045.89,
+ "end": 5046.43,
+ "text": "Can"
+ },
+ {
+ "id": 9212,
+ "start": 5046.43,
+ "end": 5046.55,
+ "text": "you"
+ },
+ {
+ "id": 9213,
+ "start": 5046.55,
+ "end": 5046.93,
+ "text": "confirm"
+ },
+ {
+ "id": 9214,
+ "start": 5046.93,
+ "end": 5047.29,
+ "text": "whether"
+ },
+ {
+ "id": 9215,
+ "start": 5047.29,
+ "end": 5047.51,
+ "text": "or"
+ },
+ {
+ "id": 9216,
+ "start": 5047.51,
+ "end": 5047.79,
+ "text": "not"
+ },
+ {
+ "id": 9217,
+ "start": 5047.79,
+ "end": 5048.63,
+ "text": "this"
+ },
+ {
+ "id": 9218,
+ "start": 5048.63,
+ "end": 5048.83,
+ "text": "is"
+ },
+ {
+ "id": 9219,
+ "start": 5048.83,
+ "end": 5051.14,
+ "text": "true?"
+ },
+ {
+ "id": 9220,
+ "start": 5051.14,
+ "end": 5052.18,
+ "text": "Senator?"
+ },
+ {
+ "id": 9221,
+ "start": 5052.18,
+ "end": 5053.14,
+ "text": "I"
+ },
+ {
+ "id": 9222,
+ "start": 5053.14,
+ "end": 5053.36,
+ "text": "want"
+ },
+ {
+ "id": 9223,
+ "start": 5053.36,
+ "end": 5053.44,
+ "text": "to"
+ },
+ {
+ "id": 9224,
+ "start": 5053.44,
+ "end": 5053.56,
+ "text": "make"
+ },
+ {
+ "id": 9225,
+ "start": 5053.56,
+ "end": 5053.68,
+ "text": "sure"
+ },
+ {
+ "id": 9226,
+ "start": 5053.68,
+ "end": 5053.72,
+ "text": "I"
+ },
+ {
+ "id": 9227,
+ "start": 5053.72,
+ "end": 5053.86,
+ "text": "get"
+ },
+ {
+ "id": 9228,
+ "start": 5053.86,
+ "end": 5054,
+ "text": "this"
+ },
+ {
+ "id": 9229,
+ "start": 5054,
+ "end": 5054.46,
+ "text": "accurate?"
+ },
+ {
+ "id": 9230,
+ "start": 5054.46,
+ "end": 5054.6,
+ "text": "So"
+ },
+ {
+ "id": 9231,
+ "start": 5054.6,
+ "end": 5055.12,
+ "text": "probably"
+ },
+ {
+ "id": 9232,
+ "start": 5055.12,
+ "end": 5055.46,
+ "text": "better"
+ },
+ {
+ "id": 9233,
+ "start": 5055.46,
+ "end": 5055.58,
+ "text": "to"
+ },
+ {
+ "id": 9234,
+ "start": 5055.58,
+ "end": 5055.9,
+ "text": "have"
+ },
+ {
+ "id": 9235,
+ "start": 5055.9,
+ "end": 5056.26,
+ "text": "my"
+ },
+ {
+ "id": 9236,
+ "start": 5056.26,
+ "end": 5056.54,
+ "text": "team"
+ },
+ {
+ "id": 9237,
+ "start": 5056.54,
+ "end": 5056.88,
+ "text": "follow"
+ },
+ {
+ "id": 9238,
+ "start": 5056.88,
+ "end": 5056.98,
+ "text": "up."
+ },
+ {
+ "id": 9239,
+ "start": 5056.98,
+ "end": 5057.24,
+ "text": "So"
+ },
+ {
+ "id": 9240,
+ "start": 5057.24,
+ "end": 5057.34,
+ "text": "you"
+ },
+ {
+ "id": 9241,
+ "start": 5057.34,
+ "end": 5057.5,
+ "text": "don't"
+ },
+ {
+ "id": 9242,
+ "start": 5057.5,
+ "end": 5057.64,
+ "text": "know"
+ },
+ {
+ "id": 9243,
+ "start": 5057.64,
+ "end": 5058.04,
+ "text": "it."
+ },
+ {
+ "id": 9244,
+ "start": 5058.04,
+ "end": 5059.02,
+ "text": "I"
+ },
+ {
+ "id": 9245,
+ "start": 5059.02,
+ "end": 5059.2,
+ "text": "know"
+ },
+ {
+ "id": 9246,
+ "start": 5059.2,
+ "end": 5059.38,
+ "text": "that"
+ },
+ {
+ "id": 9247,
+ "start": 5059.38,
+ "end": 5059.96,
+ "text": "people"
+ },
+ {
+ "id": 9248,
+ "start": 5059.96,
+ "end": 5060.96,
+ "text": "use"
+ },
+ {
+ "id": 9249,
+ "start": 5060.96,
+ "end": 5061.44,
+ "text": "cookies"
+ },
+ {
+ "id": 9250,
+ "start": 5061.44,
+ "end": 5061.72,
+ "text": "on"
+ },
+ {
+ "id": 9251,
+ "start": 5061.72,
+ "end": 5061.82,
+ "text": "the"
+ },
+ {
+ "id": 9252,
+ "start": 5061.82,
+ "end": 5062.24,
+ "text": "Internet"
+ },
+ {
+ "id": 9253,
+ "start": 5062.24,
+ "end": 5062.84,
+ "text": "and"
+ },
+ {
+ "id": 9254,
+ "start": 5062.84,
+ "end": 5063.06,
+ "text": "that"
+ },
+ {
+ "id": 9255,
+ "start": 5063.06,
+ "end": 5063.16,
+ "text": "you"
+ },
+ {
+ "id": 9256,
+ "start": 5063.16,
+ "end": 5063.34,
+ "text": "can"
+ },
+ {
+ "id": 9257,
+ "start": 5063.34,
+ "end": 5063.76,
+ "text": "probably"
+ },
+ {
+ "id": 9258,
+ "start": 5063.76,
+ "end": 5064.18,
+ "text": "correlate"
+ },
+ {
+ "id": 9259,
+ "start": 5064.18,
+ "end": 5064.7,
+ "text": "activity"
+ },
+ {
+ "id": 9260,
+ "start": 5064.7,
+ "end": 5065.9,
+ "text": "between"
+ },
+ {
+ "id": 9261,
+ "start": 5065.9,
+ "end": 5066.98,
+ "text": "between"
+ },
+ {
+ "id": 9262,
+ "start": 5066.98,
+ "end": 5067.74,
+ "text": "sessions."
+ },
+ {
+ "id": 9263,
+ "start": 5067.74,
+ "end": 5068.72,
+ "text": "We"
+ },
+ {
+ "id": 9264,
+ "start": 5068.72,
+ "end": 5068.88,
+ "text": "do"
+ },
+ {
+ "id": 9265,
+ "start": 5068.88,
+ "end": 5069.08,
+ "text": "that"
+ },
+ {
+ "id": 9266,
+ "start": 5069.08,
+ "end": 5069.28,
+ "text": "for"
+ },
+ {
+ "id": 9267,
+ "start": 5069.28,
+ "end": 5069.32,
+ "text": "a"
+ },
+ {
+ "id": 9268,
+ "start": 5069.32,
+ "end": 5069.64,
+ "text": "number"
+ },
+ {
+ "id": 9269,
+ "start": 5069.64,
+ "end": 5069.74,
+ "text": "of"
+ },
+ {
+ "id": 9270,
+ "start": 5069.74,
+ "end": 5070.16,
+ "text": "reasons,"
+ },
+ {
+ "id": 9271,
+ "start": 5070.16,
+ "end": 5070.94,
+ "text": "including"
+ },
+ {
+ "id": 9272,
+ "start": 5070.94,
+ "end": 5071.82,
+ "text": "security"
+ },
+ {
+ "id": 9273,
+ "start": 5071.82,
+ "end": 5072.56,
+ "text": "and"
+ },
+ {
+ "id": 9274,
+ "start": 5072.56,
+ "end": 5073.2,
+ "text": "including"
+ },
+ {
+ "id": 9275,
+ "start": 5073.2,
+ "end": 5074.14,
+ "text": "measuring"
+ },
+ {
+ "id": 9276,
+ "start": 5074.14,
+ "end": 5074.5,
+ "text": "ads"
+ },
+ {
+ "id": 9277,
+ "start": 5074.5,
+ "end": 5074.68,
+ "text": "to"
+ },
+ {
+ "id": 9278,
+ "start": 5074.68,
+ "end": 5074.84,
+ "text": "make"
+ },
+ {
+ "id": 9279,
+ "start": 5074.84,
+ "end": 5074.98,
+ "text": "sure"
+ },
+ {
+ "id": 9280,
+ "start": 5074.98,
+ "end": 5075.1,
+ "text": "that"
+ },
+ {
+ "id": 9281,
+ "start": 5075.1,
+ "end": 5075.22,
+ "text": "the"
+ },
+ {
+ "id": 9282,
+ "start": 5075.22,
+ "end": 5075.46,
+ "text": "ad"
+ },
+ {
+ "id": 9283,
+ "start": 5075.46,
+ "end": 5076.04,
+ "text": "experiences"
+ },
+ {
+ "id": 9284,
+ "start": 5076.04,
+ "end": 5076.18,
+ "text": "are"
+ },
+ {
+ "id": 9285,
+ "start": 5076.18,
+ "end": 5076.28,
+ "text": "the"
+ },
+ {
+ "id": 9286,
+ "start": 5076.28,
+ "end": 5076.44,
+ "text": "most"
+ },
+ {
+ "id": 9287,
+ "start": 5076.44,
+ "end": 5076.9,
+ "text": "effective"
+ },
+ {
+ "id": 9288,
+ "start": 5076.9,
+ "end": 5077.12,
+ "text": "which,"
+ },
+ {
+ "id": 9289,
+ "start": 5077.12,
+ "end": 5077.58,
+ "text": "of"
+ },
+ {
+ "id": 9290,
+ "start": 5077.58,
+ "end": 5077.78,
+ "text": "course,"
+ },
+ {
+ "id": 9291,
+ "start": 5077.78,
+ "end": 5078.04,
+ "text": "people"
+ },
+ {
+ "id": 9292,
+ "start": 5078.04,
+ "end": 5078.2,
+ "text": "can"
+ },
+ {
+ "id": 9293,
+ "start": 5078.2,
+ "end": 5078.38,
+ "text": "opt"
+ },
+ {
+ "id": 9294,
+ "start": 5078.38,
+ "end": 5078.56,
+ "text": "out"
+ },
+ {
+ "id": 9295,
+ "start": 5078.56,
+ "end": 5078.74,
+ "text": "of."
+ },
+ {
+ "id": 9296,
+ "start": 5078.74,
+ "end": 5079.38,
+ "text": "But"
+ },
+ {
+ "id": 9297,
+ "start": 5079.38,
+ "end": 5079.44,
+ "text": "I"
+ },
+ {
+ "id": 9298,
+ "start": 5079.44,
+ "end": 5079.58,
+ "text": "want"
+ },
+ {
+ "id": 9299,
+ "start": 5079.58,
+ "end": 5079.66,
+ "text": "to"
+ },
+ {
+ "id": 9300,
+ "start": 5079.66,
+ "end": 5079.76,
+ "text": "make"
+ },
+ {
+ "id": 9301,
+ "start": 5079.76,
+ "end": 5079.88,
+ "text": "sure"
+ },
+ {
+ "id": 9302,
+ "start": 5079.88,
+ "end": 5079.99,
+ "text": "that"
+ },
+ {
+ "id": 9303,
+ "start": 5079.99,
+ "end": 5081.99,
+ "text": "precisely"
+ },
+ {
+ "id": 9304,
+ "start": 5081.99,
+ "end": 5082.99,
+ "text": "that"
+ },
+ {
+ "id": 9305,
+ "start": 5082.99,
+ "end": 5083.13,
+ "text": "to"
+ },
+ {
+ "id": 9306,
+ "start": 5083.13,
+ "end": 5084.59,
+ "text": "me."
+ },
+ {
+ "id": 9307,
+ "start": 5084.59,
+ "end": 5084.75,
+ "text": "Would"
+ },
+ {
+ "id": 9308,
+ "start": 5084.75,
+ "end": 5084.89,
+ "text": "you"
+ },
+ {
+ "id": 9309,
+ "start": 5084.89,
+ "end": 5085.45,
+ "text": "also,"
+ },
+ {
+ "id": 9310,
+ "start": 5085.45,
+ "end": 5085.87,
+ "text": "let"
+ },
+ {
+ "id": 9311,
+ "start": 5085.87,
+ "end": 5086.01,
+ "text": "us"
+ },
+ {
+ "id": 9312,
+ "start": 5086.01,
+ "end": 5086.21,
+ "text": "know"
+ },
+ {
+ "id": 9313,
+ "start": 5086.21,
+ "end": 5086.45,
+ "text": "how"
+ },
+ {
+ "id": 9314,
+ "start": 5086.45,
+ "end": 5087.19,
+ "text": "Facebook"
+ },
+ {
+ "id": 9315,
+ "start": 5087.19,
+ "end": 5088.19,
+ "text": "discloses"
+ },
+ {
+ "id": 9316,
+ "start": 5088.19,
+ "end": 5088.97,
+ "text": "to"
+ },
+ {
+ "id": 9317,
+ "start": 5088.97,
+ "end": 5089.15,
+ "text": "its"
+ },
+ {
+ "id": 9318,
+ "start": 5089.15,
+ "end": 5089.87,
+ "text": "users"
+ },
+ {
+ "id": 9319,
+ "start": 5089.87,
+ "end": 5090.09,
+ "text": "that"
+ },
+ {
+ "id": 9320,
+ "start": 5090.09,
+ "end": 5090.83,
+ "text": "engaging"
+ },
+ {
+ "id": 9321,
+ "start": 5090.83,
+ "end": 5091.69,
+ "text": "in"
+ },
+ {
+ "id": 9322,
+ "start": 5091.69,
+ "end": 5091.95,
+ "text": "this"
+ },
+ {
+ "id": 9323,
+ "start": 5091.95,
+ "end": 5092.53,
+ "text": "type"
+ },
+ {
+ "id": 9324,
+ "start": 5092.53,
+ "end": 5092.67,
+ "text": "of"
+ },
+ {
+ "id": 9325,
+ "start": 5092.67,
+ "end": 5094.08,
+ "text": "tracking"
+ },
+ {
+ "id": 9326,
+ "start": 5094.08,
+ "end": 5095.18,
+ "text": "gives"
+ },
+ {
+ "id": 9327,
+ "start": 5095.18,
+ "end": 5095.3,
+ "text": "us"
+ },
+ {
+ "id": 9328,
+ "start": 5095.3,
+ "end": 5095.52,
+ "text": "that"
+ },
+ {
+ "id": 9329,
+ "start": 5095.52,
+ "end": 5096.46,
+ "text": "result."
+ },
+ {
+ "id": 9330,
+ "start": 5096.46,
+ "end": 5097.44,
+ "text": "And"
+ },
+ {
+ "id": 9331,
+ "start": 5097.44,
+ "end": 5097.62,
+ "text": "thank"
+ },
+ {
+ "id": 9332,
+ "start": 5097.62,
+ "end": 5097.74,
+ "text": "you"
+ },
+ {
+ "id": 9333,
+ "start": 5097.74,
+ "end": 5097.94,
+ "text": "very"
+ },
+ {
+ "id": 9334,
+ "start": 5097.94,
+ "end": 5098.12,
+ "text": "much."
+ },
+ {
+ "id": 9335,
+ "start": 5098.12,
+ "end": 5098.44,
+ "text": "Thank"
+ },
+ {
+ "id": 9336,
+ "start": 5098.44,
+ "end": 5098.58,
+ "text": "you,"
+ },
+ {
+ "id": 9337,
+ "start": 5098.58,
+ "end": 5098.88,
+ "text": "Senator."
+ },
+ {
+ "id": 9338,
+ "start": 5098.88,
+ "end": 5099.2,
+ "text": "Wicker"
+ },
+ {
+ "id": 9339,
+ "start": 5099.2,
+ "end": 5099.48,
+ "text": "Senator"
+ },
+ {
+ "id": 9340,
+ "start": 5099.48,
+ "end": 5099.68,
+ "text": "LA"
+ },
+ {
+ "id": 9341,
+ "start": 5099.68,
+ "end": 5099.86,
+ "text": "he's."
+ },
+ {
+ "id": 9342,
+ "start": 5099.86,
+ "end": 5100.04,
+ "text": "Up"
+ },
+ {
+ "id": 9343,
+ "start": 5100.04,
+ "end": 5101.04,
+ "text": "next,"
+ },
+ {
+ "id": 9344,
+ "start": 5101.04,
+ "end": 5102.12,
+ "text": "thank"
+ },
+ {
+ "id": 9345,
+ "start": 5102.12,
+ "end": 5102.28,
+ "text": "you."
+ },
+ {
+ "id": 9346,
+ "start": 5102.28,
+ "end": 5104,
+ "text": "I"
+ },
+ {
+ "id": 9347,
+ "start": 5104,
+ "end": 5105.62,
+ "text": "I"
+ },
+ {
+ "id": 9348,
+ "start": 5105.62,
+ "end": 5107.18,
+ "text": "assume"
+ },
+ {
+ "id": 9349,
+ "start": 5107.18,
+ "end": 5108.14,
+ "text": "Facebook"
+ },
+ {
+ "id": 9350,
+ "start": 5108.14,
+ "end": 5108.46,
+ "text": "been"
+ },
+ {
+ "id": 9351,
+ "start": 5108.46,
+ "end": 5108.78,
+ "text": "served"
+ },
+ {
+ "id": 9352,
+ "start": 5108.78,
+ "end": 5108.96,
+ "text": "with"
+ },
+ {
+ "id": 9353,
+ "start": 5108.96,
+ "end": 5110.06,
+ "text": "subpoenas"
+ },
+ {
+ "id": 9354,
+ "start": 5110.06,
+ "end": 5111.04,
+ "text": "for"
+ },
+ {
+ "id": 9355,
+ "start": 5111.04,
+ "end": 5111.18,
+ "text": "the"
+ },
+ {
+ "id": 9356,
+ "start": 5111.18,
+ "end": 5111.54,
+ "text": "special"
+ },
+ {
+ "id": 9357,
+ "start": 5111.54,
+ "end": 5111.96,
+ "text": "counsel"
+ },
+ {
+ "id": 9358,
+ "start": 5111.96,
+ "end": 5112.34,
+ "text": "moles"
+ },
+ {
+ "id": 9359,
+ "start": 5112.34,
+ "end": 5112.66,
+ "text": "office"
+ },
+ {
+ "id": 9360,
+ "start": 5112.66,
+ "end": 5112.76,
+ "text": "is"
+ },
+ {
+ "id": 9361,
+ "start": 5112.76,
+ "end": 5112.98,
+ "text": "that"
+ },
+ {
+ "id": 9362,
+ "start": 5112.98,
+ "end": 5114.3,
+ "text": "quick?"
+ },
+ {
+ "id": 9363,
+ "start": 5114.3,
+ "end": 5116.28,
+ "text": "Yes,"
+ },
+ {
+ "id": 9364,
+ "start": 5116.28,
+ "end": 5117.26,
+ "text": "have"
+ },
+ {
+ "id": 9365,
+ "start": 5117.26,
+ "end": 5117.44,
+ "text": "you"
+ },
+ {
+ "id": 9366,
+ "start": 5117.44,
+ "end": 5117.64,
+ "text": "or"
+ },
+ {
+ "id": 9367,
+ "start": 5117.64,
+ "end": 5117.98,
+ "text": "anyone"
+ },
+ {
+ "id": 9368,
+ "start": 5117.98,
+ "end": 5118.6,
+ "text": "Facebook"
+ },
+ {
+ "id": 9369,
+ "start": 5118.6,
+ "end": 5118.82,
+ "text": "but"
+ },
+ {
+ "id": 9370,
+ "start": 5118.82,
+ "end": 5119.32,
+ "text": "interviewed"
+ },
+ {
+ "id": 9371,
+ "start": 5119.32,
+ "end": 5119.52,
+ "text": "by"
+ },
+ {
+ "id": 9372,
+ "start": 5119.52,
+ "end": 5119.62,
+ "text": "the"
+ },
+ {
+ "id": 9373,
+ "start": 5119.62,
+ "end": 5120,
+ "text": "special"
+ },
+ {
+ "id": 9374,
+ "start": 5120,
+ "end": 5120.5,
+ "text": "counsels"
+ },
+ {
+ "id": 9375,
+ "start": 5120.5,
+ "end": 5121.86,
+ "text": "office?"
+ },
+ {
+ "id": 9376,
+ "start": 5121.86,
+ "end": 5123.04,
+ "text": "Yes,"
+ },
+ {
+ "id": 9377,
+ "start": 5123.04,
+ "end": 5123.7,
+ "text": "have"
+ },
+ {
+ "id": 9378,
+ "start": 5123.7,
+ "end": 5123.82,
+ "text": "you"
+ },
+ {
+ "id": 9379,
+ "start": 5123.82,
+ "end": 5124.06,
+ "text": "been"
+ },
+ {
+ "id": 9380,
+ "start": 5124.06,
+ "end": 5124.4,
+ "text": "interview?"
+ },
+ {
+ "id": 9381,
+ "start": 5124.4,
+ "end": 5124.56,
+ "text": "I"
+ },
+ {
+ "id": 9382,
+ "start": 5124.56,
+ "end": 5124.78,
+ "text": "have"
+ },
+ {
+ "id": 9383,
+ "start": 5124.78,
+ "end": 5125.9,
+ "text": "not,"
+ },
+ {
+ "id": 9384,
+ "start": 5125.9,
+ "end": 5127.72,
+ "text": "I"
+ },
+ {
+ "id": 9385,
+ "start": 5127.72,
+ "end": 5127.86,
+ "text": "have"
+ },
+ {
+ "id": 9386,
+ "start": 5127.86,
+ "end": 5128.04,
+ "text": "not"
+ },
+ {
+ "id": 9387,
+ "start": 5128.04,
+ "end": 5128.44,
+ "text": "others."
+ },
+ {
+ "id": 9388,
+ "start": 5128.44,
+ "end": 5129.12,
+ "text": "Am"
+ },
+ {
+ "id": 9389,
+ "start": 5129.12,
+ "end": 5129.42,
+ "text": "I"
+ },
+ {
+ "id": 9390,
+ "start": 5129.42,
+ "end": 5129.7,
+ "text": "believe"
+ },
+ {
+ "id": 9391,
+ "start": 5129.7,
+ "end": 5130.04,
+ "text": "so?"
+ },
+ {
+ "id": 9392,
+ "start": 5130.04,
+ "end": 5130.18,
+ "text": "And"
+ },
+ {
+ "id": 9393,
+ "start": 5130.18,
+ "end": 5130.32,
+ "text": "I"
+ },
+ {
+ "id": 9394,
+ "start": 5130.32,
+ "end": 5130.54,
+ "text": "want"
+ },
+ {
+ "id": 9395,
+ "start": 5130.54,
+ "end": 5130.64,
+ "text": "to"
+ },
+ {
+ "id": 9396,
+ "start": 5130.64,
+ "end": 5130.78,
+ "text": "be"
+ },
+ {
+ "id": 9397,
+ "start": 5130.78,
+ "end": 5131.38,
+ "text": "careful"
+ },
+ {
+ "id": 9398,
+ "start": 5131.38,
+ "end": 5131.7,
+ "text": "here"
+ },
+ {
+ "id": 9399,
+ "start": 5131.7,
+ "end": 5132.2,
+ "text": "because"
+ },
+ {
+ "id": 9400,
+ "start": 5132.2,
+ "end": 5133.36,
+ "text": "that"
+ },
+ {
+ "id": 9401,
+ "start": 5133.36,
+ "end": 5134.44,
+ "text": "our"
+ },
+ {
+ "id": 9402,
+ "start": 5134.44,
+ "end": 5135.42,
+ "text": "work"
+ },
+ {
+ "id": 9403,
+ "start": 5135.42,
+ "end": 5135.6,
+ "text": "with"
+ },
+ {
+ "id": 9404,
+ "start": 5135.6,
+ "end": 5135.7,
+ "text": "the"
+ },
+ {
+ "id": 9405,
+ "start": 5135.7,
+ "end": 5136.04,
+ "text": "special"
+ },
+ {
+ "id": 9406,
+ "start": 5136.04,
+ "end": 5136.46,
+ "text": "counsel"
+ },
+ {
+ "id": 9407,
+ "start": 5136.46,
+ "end": 5136.82,
+ "text": "is"
+ },
+ {
+ "id": 9408,
+ "start": 5136.82,
+ "end": 5137.88,
+ "text": "confidential."
+ },
+ {
+ "id": 9409,
+ "start": 5137.88,
+ "end": 5138.12,
+ "text": "And"
+ },
+ {
+ "id": 9410,
+ "start": 5138.12,
+ "end": 5138.18,
+ "text": "I"
+ },
+ {
+ "id": 9411,
+ "start": 5138.18,
+ "end": 5138.34,
+ "text": "want"
+ },
+ {
+ "id": 9412,
+ "start": 5138.34,
+ "end": 5138.42,
+ "text": "to"
+ },
+ {
+ "id": 9413,
+ "start": 5138.42,
+ "end": 5138.54,
+ "text": "make"
+ },
+ {
+ "id": 9414,
+ "start": 5138.54,
+ "end": 5138.72,
+ "text": "sure"
+ },
+ {
+ "id": 9415,
+ "start": 5138.72,
+ "end": 5138.9,
+ "text": "that"
+ },
+ {
+ "id": 9416,
+ "start": 5138.9,
+ "end": 5139.06,
+ "text": "in"
+ },
+ {
+ "id": 9417,
+ "start": 5139.06,
+ "end": 5139.18,
+ "text": "an"
+ },
+ {
+ "id": 9418,
+ "start": 5139.18,
+ "end": 5139.42,
+ "text": "open"
+ },
+ {
+ "id": 9419,
+ "start": 5139.42,
+ "end": 5139.84,
+ "text": "session"
+ },
+ {
+ "id": 9420,
+ "start": 5139.84,
+ "end": 5140.04,
+ "text": "I'm"
+ },
+ {
+ "id": 9421,
+ "start": 5140.04,
+ "end": 5140.24,
+ "text": "not"
+ },
+ {
+ "id": 9422,
+ "start": 5140.24,
+ "end": 5140.7,
+ "text": "revealing"
+ },
+ {
+ "id": 9423,
+ "start": 5140.7,
+ "end": 5141.02,
+ "text": "something"
+ },
+ {
+ "id": 9424,
+ "start": 5141.02,
+ "end": 5142.1,
+ "text": "Confidential"
+ },
+ {
+ "id": 9425,
+ "start": 5142.1,
+ "end": 5142.74,
+ "text": "I"
+ },
+ {
+ "id": 9426,
+ "start": 5142.74,
+ "end": 5143.44,
+ "text": "understand"
+ },
+ {
+ "id": 9427,
+ "start": 5143.44,
+ "end": 5144.42,
+ "text": "that's"
+ },
+ {
+ "id": 9428,
+ "start": 5144.42,
+ "end": 5144.56,
+ "text": "why"
+ },
+ {
+ "id": 9429,
+ "start": 5144.56,
+ "end": 5144.62,
+ "text": "I"
+ },
+ {
+ "id": 9430,
+ "start": 5144.62,
+ "end": 5144.84,
+ "text": "made"
+ },
+ {
+ "id": 9431,
+ "start": 5144.84,
+ "end": 5145.16,
+ "text": "clear"
+ },
+ {
+ "id": 9432,
+ "start": 5145.16,
+ "end": 5145.32,
+ "text": "that"
+ },
+ {
+ "id": 9433,
+ "start": 5145.32,
+ "end": 5145.5,
+ "text": "you"
+ },
+ {
+ "id": 9434,
+ "start": 5145.5,
+ "end": 5145.72,
+ "text": "have"
+ },
+ {
+ "id": 9435,
+ "start": 5145.72,
+ "end": 5145.92,
+ "text": "been"
+ },
+ {
+ "id": 9436,
+ "start": 5145.92,
+ "end": 5146.6,
+ "text": "contacted."
+ },
+ {
+ "id": 9437,
+ "start": 5146.6,
+ "end": 5146.76,
+ "text": "You"
+ },
+ {
+ "id": 9438,
+ "start": 5146.76,
+ "end": 5146.94,
+ "text": "have"
+ },
+ {
+ "id": 9439,
+ "start": 5146.94,
+ "end": 5147.2,
+ "text": "an"
+ },
+ {
+ "id": 9440,
+ "start": 5147.2,
+ "end": 5148.26,
+ "text": "subpoenas,"
+ },
+ {
+ "id": 9441,
+ "start": 5148.26,
+ "end": 5149.12,
+ "text": "actually."
+ },
+ {
+ "id": 9442,
+ "start": 5149.12,
+ "end": 5149.26,
+ "text": "Let"
+ },
+ {
+ "id": 9443,
+ "start": 5149.26,
+ "end": 5149.34,
+ "text": "me"
+ },
+ {
+ "id": 9444,
+ "start": 5149.34,
+ "end": 5149.68,
+ "text": "clarify"
+ },
+ {
+ "id": 9445,
+ "start": 5149.68,
+ "end": 5149.9,
+ "text": "that."
+ },
+ {
+ "id": 9446,
+ "start": 5149.9,
+ "end": 5150.14,
+ "text": "I"
+ },
+ {
+ "id": 9447,
+ "start": 5150.14,
+ "end": 5150.62,
+ "text": "actually"
+ },
+ {
+ "id": 9448,
+ "start": 5150.62,
+ "end": 5150.78,
+ "text": "am"
+ },
+ {
+ "id": 9449,
+ "start": 5150.78,
+ "end": 5150.96,
+ "text": "not"
+ },
+ {
+ "id": 9450,
+ "start": 5150.96,
+ "end": 5151.26,
+ "text": "aware"
+ },
+ {
+ "id": 9451,
+ "start": 5151.26,
+ "end": 5151.9,
+ "text": "of"
+ },
+ {
+ "id": 9452,
+ "start": 5151.9,
+ "end": 5152.22,
+ "text": "a"
+ },
+ {
+ "id": 9453,
+ "start": 5152.22,
+ "end": 5152.62,
+ "text": "subpoena."
+ },
+ {
+ "id": 9454,
+ "start": 5152.62,
+ "end": 5152.74,
+ "text": "I"
+ },
+ {
+ "id": 9455,
+ "start": 5152.74,
+ "end": 5153.04,
+ "text": "believe"
+ },
+ {
+ "id": 9456,
+ "start": 5153.04,
+ "end": 5153.2,
+ "text": "that"
+ },
+ {
+ "id": 9457,
+ "start": 5153.2,
+ "end": 5153.4,
+ "text": "there"
+ },
+ {
+ "id": 9458,
+ "start": 5153.4,
+ "end": 5153.58,
+ "text": "may"
+ },
+ {
+ "id": 9459,
+ "start": 5153.58,
+ "end": 5153.8,
+ "text": "be"
+ },
+ {
+ "id": 9460,
+ "start": 5153.8,
+ "end": 5154.42,
+ "text": "but"
+ },
+ {
+ "id": 9461,
+ "start": 5154.42,
+ "end": 5154.62,
+ "text": "I"
+ },
+ {
+ "id": 9462,
+ "start": 5154.62,
+ "end": 5154.78,
+ "text": "know"
+ },
+ {
+ "id": 9463,
+ "start": 5154.78,
+ "end": 5155.02,
+ "text": "we're"
+ },
+ {
+ "id": 9464,
+ "start": 5155.02,
+ "end": 5155.3,
+ "text": "working"
+ },
+ {
+ "id": 9465,
+ "start": 5155.3,
+ "end": 5155.46,
+ "text": "with"
+ },
+ {
+ "id": 9466,
+ "start": 5155.46,
+ "end": 5155.62,
+ "text": "them,"
+ },
+ {
+ "id": 9467,
+ "start": 5155.62,
+ "end": 5156.26,
+ "text": "thank"
+ },
+ {
+ "id": 9468,
+ "start": 5156.26,
+ "end": 5159.12,
+ "text": "you."
+ },
+ {
+ "id": 9469,
+ "start": 5159.12,
+ "end": 5160.14,
+ "text": "Six"
+ },
+ {
+ "id": 9470,
+ "start": 5160.14,
+ "end": 5160.34,
+ "text": "months"
+ },
+ {
+ "id": 9471,
+ "start": 5160.34,
+ "end": 5160.88,
+ "text": "ago,"
+ },
+ {
+ "id": 9472,
+ "start": 5160.88,
+ "end": 5161.74,
+ "text": "Council"
+ },
+ {
+ "id": 9473,
+ "start": 5161.74,
+ "end": 5162.6,
+ "text": "promises"
+ },
+ {
+ "id": 9474,
+ "start": 5162.6,
+ "end": 5162.88,
+ "text": "you"
+ },
+ {
+ "id": 9475,
+ "start": 5162.88,
+ "end": 5163.04,
+ "text": "are"
+ },
+ {
+ "id": 9476,
+ "start": 5163.04,
+ "end": 5163.4,
+ "text": "taking"
+ },
+ {
+ "id": 9477,
+ "start": 5163.4,
+ "end": 5163.8,
+ "text": "steps"
+ },
+ {
+ "id": 9478,
+ "start": 5163.8,
+ "end": 5164,
+ "text": "to"
+ },
+ {
+ "id": 9479,
+ "start": 5164,
+ "end": 5164.86,
+ "text": "prevent"
+ },
+ {
+ "id": 9480,
+ "start": 5164.86,
+ "end": 5165.86,
+ "text": "Facebook"
+ },
+ {
+ "id": 9481,
+ "start": 5165.86,
+ "end": 5166.08,
+ "text": "for"
+ },
+ {
+ "id": 9482,
+ "start": 5166.08,
+ "end": 5166.62,
+ "text": "serving"
+ },
+ {
+ "id": 9483,
+ "start": 5166.62,
+ "end": 5167.16,
+ "text": "what"
+ },
+ {
+ "id": 9484,
+ "start": 5167.16,
+ "end": 5167.62,
+ "text": "is"
+ },
+ {
+ "id": 9485,
+ "start": 5167.62,
+ "end": 5167.92,
+ "text": "called"
+ },
+ {
+ "id": 9486,
+ "start": 5167.92,
+ "end": 5168.58,
+ "text": "unwitting"
+ },
+ {
+ "id": 9487,
+ "start": 5168.58,
+ "end": 5168.88,
+ "text": "cold"
+ },
+ {
+ "id": 9488,
+ "start": 5168.88,
+ "end": 5169.5,
+ "text": "Conspira"
+ },
+ {
+ "id": 9489,
+ "start": 5169.5,
+ "end": 5169.68,
+ "text": "and"
+ },
+ {
+ "id": 9490,
+ "start": 5169.68,
+ "end": 5170.06,
+ "text": "Russian"
+ },
+ {
+ "id": 9491,
+ "start": 5170.06,
+ "end": 5170.92,
+ "text": "interference."
+ },
+ {
+ "id": 9492,
+ "start": 5170.92,
+ "end": 5171.94,
+ "text": "But"
+ },
+ {
+ "id": 9493,
+ "start": 5171.94,
+ "end": 5174.22,
+ "text": "these"
+ },
+ {
+ "id": 9494,
+ "start": 5174.22,
+ "end": 5176.56,
+ "text": "these"
+ },
+ {
+ "id": 9495,
+ "start": 5176.56,
+ "end": 5177.52,
+ "text": "unverified"
+ },
+ {
+ "id": 9496,
+ "start": 5177.52,
+ "end": 5178.06,
+ "text": "device"
+ },
+ {
+ "id": 9497,
+ "start": 5178.06,
+ "end": 5178.2,
+ "text": "of"
+ },
+ {
+ "id": 9498,
+ "start": 5178.2,
+ "end": 5178.62,
+ "text": "pages"
+ },
+ {
+ "id": 9499,
+ "start": 5178.62,
+ "end": 5178.8,
+ "text": "are"
+ },
+ {
+ "id": 9500,
+ "start": 5178.8,
+ "end": 5178.92,
+ "text": "on"
+ },
+ {
+ "id": 9501,
+ "start": 5178.92,
+ "end": 5179.48,
+ "text": "Facebook."
+ },
+ {
+ "id": 9502,
+ "start": 5179.48,
+ "end": 5179.96,
+ "text": "Today."
+ },
+ {
+ "id": 9503,
+ "start": 5179.96,
+ "end": 5181.12,
+ "text": "They"
+ },
+ {
+ "id": 9504,
+ "start": 5181.12,
+ "end": 5181.34,
+ "text": "look"
+ },
+ {
+ "id": 9505,
+ "start": 5181.34,
+ "end": 5181.4,
+ "text": "a"
+ },
+ {
+ "id": 9506,
+ "start": 5181.4,
+ "end": 5181.76,
+ "text": "lot"
+ },
+ {
+ "id": 9507,
+ "start": 5181.76,
+ "end": 5181.94,
+ "text": "like"
+ },
+ {
+ "id": 9508,
+ "start": 5181.94,
+ "end": 5182.08,
+ "text": "the"
+ },
+ {
+ "id": 9509,
+ "start": 5182.08,
+ "end": 5182.62,
+ "text": "anonymous"
+ },
+ {
+ "id": 9510,
+ "start": 5182.62,
+ "end": 5182.86,
+ "text": "group"
+ },
+ {
+ "id": 9511,
+ "start": 5182.86,
+ "end": 5182.96,
+ "text": "of"
+ },
+ {
+ "id": 9512,
+ "start": 5182.96,
+ "end": 5183.46,
+ "text": "Russian"
+ },
+ {
+ "id": 9513,
+ "start": 5183.46,
+ "end": 5184.06,
+ "text": "agency"
+ },
+ {
+ "id": 9514,
+ "start": 5184.06,
+ "end": 5185.04,
+ "text": "use"
+ },
+ {
+ "id": 9515,
+ "start": 5185.04,
+ "end": 5186.14,
+ "text": "this"
+ },
+ {
+ "id": 9516,
+ "start": 5186.14,
+ "end": 5186.52,
+ "text": "print"
+ },
+ {
+ "id": 9517,
+ "start": 5186.52,
+ "end": 5187.18,
+ "text": "propaganda"
+ },
+ {
+ "id": 9518,
+ "start": 5187.18,
+ "end": 5187.48,
+ "text": "during"
+ },
+ {
+ "id": 9519,
+ "start": 5187.48,
+ "end": 5187.58,
+ "text": "the"
+ },
+ {
+ "id": 9520,
+ "start": 5187.58,
+ "end": 5187.84,
+ "text": "20"
+ },
+ {
+ "id": 9521,
+ "start": 5187.84,
+ "end": 5188.26,
+ "text": "16"
+ },
+ {
+ "id": 9522,
+ "start": 5188.26,
+ "end": 5189.68,
+ "text": "election."
+ },
+ {
+ "id": 9523,
+ "start": 5189.68,
+ "end": 5190.88,
+ "text": "You"
+ },
+ {
+ "id": 9524,
+ "start": 5190.88,
+ "end": 5191.18,
+ "text": "ever"
+ },
+ {
+ "id": 9525,
+ "start": 5191.18,
+ "end": 5191.68,
+ "text": "confirm"
+ },
+ {
+ "id": 9526,
+ "start": 5191.68,
+ "end": 5192.1,
+ "text": "with"
+ },
+ {
+ "id": 9527,
+ "start": 5192.1,
+ "end": 5192.48,
+ "text": "their"
+ },
+ {
+ "id": 9528,
+ "start": 5192.48,
+ "end": 5193.4,
+ "text": "Russian"
+ },
+ {
+ "id": 9529,
+ "start": 5193.4,
+ "end": 5193.78,
+ "text": "create"
+ },
+ {
+ "id": 9530,
+ "start": 5193.78,
+ "end": 5194.08,
+ "text": "groups,"
+ },
+ {
+ "id": 9531,
+ "start": 5194.08,
+ "end": 5194.76,
+ "text": "yes"
+ },
+ {
+ "id": 9532,
+ "start": 5194.76,
+ "end": 5194.92,
+ "text": "or"
+ },
+ {
+ "id": 9533,
+ "start": 5194.92,
+ "end": 5196.08,
+ "text": "no"
+ },
+ {
+ "id": 9534,
+ "start": 5196.08,
+ "end": 5197.06,
+ "text": "Senator."
+ },
+ {
+ "id": 9535,
+ "start": 5197.06,
+ "end": 5197.14,
+ "text": "Are"
+ },
+ {
+ "id": 9536,
+ "start": 5197.14,
+ "end": 5197.22,
+ "text": "you"
+ },
+ {
+ "id": 9537,
+ "start": 5197.22,
+ "end": 5197.5,
+ "text": "asking"
+ },
+ {
+ "id": 9538,
+ "start": 5197.5,
+ "end": 5197.64,
+ "text": "about"
+ },
+ {
+ "id": 9539,
+ "start": 5197.64,
+ "end": 5197.84,
+ "text": "those"
+ },
+ {
+ "id": 9540,
+ "start": 5197.84,
+ "end": 5198.42,
+ "text": "specifically"
+ },
+ {
+ "id": 9541,
+ "start": 5198.42,
+ "end": 5199.62,
+ "text": "yes,"
+ },
+ {
+ "id": 9542,
+ "start": 5199.62,
+ "end": 5200.6,
+ "text": "Senator,"
+ },
+ {
+ "id": 9543,
+ "start": 5200.6,
+ "end": 5201.04,
+ "text": "last"
+ },
+ {
+ "id": 9544,
+ "start": 5201.04,
+ "end": 5201.48,
+ "text": "week"
+ },
+ {
+ "id": 9545,
+ "start": 5201.48,
+ "end": 5201.88,
+ "text": "we"
+ },
+ {
+ "id": 9546,
+ "start": 5201.88,
+ "end": 5202.32,
+ "text": "actually"
+ },
+ {
+ "id": 9547,
+ "start": 5202.32,
+ "end": 5202.8,
+ "text": "announced"
+ },
+ {
+ "id": 9548,
+ "start": 5202.8,
+ "end": 5203.42,
+ "text": "a"
+ },
+ {
+ "id": 9549,
+ "start": 5203.42,
+ "end": 5203.82,
+ "text": "major"
+ },
+ {
+ "id": 9550,
+ "start": 5203.82,
+ "end": 5204.2,
+ "text": "change"
+ },
+ {
+ "id": 9551,
+ "start": 5204.2,
+ "end": 5204.4,
+ "text": "to"
+ },
+ {
+ "id": 9552,
+ "start": 5204.4,
+ "end": 5204.54,
+ "text": "our"
+ },
+ {
+ "id": 9553,
+ "start": 5204.54,
+ "end": 5204.92,
+ "text": "ads"
+ },
+ {
+ "id": 9554,
+ "start": 5204.92,
+ "end": 5205.08,
+ "text": "and"
+ },
+ {
+ "id": 9555,
+ "start": 5205.08,
+ "end": 5205.5,
+ "text": "pages."
+ },
+ {
+ "id": 9556,
+ "start": 5205.5,
+ "end": 5205.88,
+ "text": "Policy"
+ },
+ {
+ "id": 9557,
+ "start": 5205.88,
+ "end": 5205.94,
+ "text": "Y"
+ },
+ {
+ "id": 9558,
+ "start": 5205.94,
+ "end": 5206.66,
+ "text": "that"
+ },
+ {
+ "id": 9559,
+ "start": 5206.66,
+ "end": 5206.8,
+ "text": "we"
+ },
+ {
+ "id": 9560,
+ "start": 5206.8,
+ "end": 5207,
+ "text": "will"
+ },
+ {
+ "id": 9561,
+ "start": 5207,
+ "end": 5207.12,
+ "text": "be"
+ },
+ {
+ "id": 9562,
+ "start": 5207.12,
+ "end": 5207.7,
+ "text": "verifying"
+ },
+ {
+ "id": 9563,
+ "start": 5207.7,
+ "end": 5207.88,
+ "text": "the"
+ },
+ {
+ "id": 9564,
+ "start": 5207.88,
+ "end": 5208.48,
+ "text": "identity"
+ },
+ {
+ "id": 9565,
+ "start": 5208.48,
+ "end": 5209.46,
+ "text": "of"
+ },
+ {
+ "id": 9566,
+ "start": 5209.46,
+ "end": 5210.6,
+ "text": "every"
+ },
+ {
+ "id": 9567,
+ "start": 5210.6,
+ "end": 5210.88,
+ "text": "single"
+ },
+ {
+ "id": 9568,
+ "start": 5210.88,
+ "end": 5211.72,
+ "text": "Advertiser"
+ },
+ {
+ "id": 9569,
+ "start": 5211.72,
+ "end": 5212.36,
+ "text": "specific"
+ },
+ {
+ "id": 9570,
+ "start": 5212.36,
+ "end": 5212.54,
+ "text": "ones,"
+ },
+ {
+ "id": 9571,
+ "start": 5212.54,
+ "end": 5212.82,
+ "text": "you"
+ },
+ {
+ "id": 9572,
+ "start": 5212.82,
+ "end": 5212.98,
+ "text": "know"
+ },
+ {
+ "id": 9573,
+ "start": 5212.98,
+ "end": 5213.36,
+ "text": "what"
+ },
+ {
+ "id": 9574,
+ "start": 5213.36,
+ "end": 5213.52,
+ "text": "they"
+ },
+ {
+ "id": 9575,
+ "start": 5213.52,
+ "end": 5213.78,
+ "text": "are?"
+ },
+ {
+ "id": 9576,
+ "start": 5213.78,
+ "end": 5214.14,
+ "text": "I"
+ },
+ {
+ "id": 9577,
+ "start": 5214.14,
+ "end": 5214.28,
+ "text": "am"
+ },
+ {
+ "id": 9578,
+ "start": 5214.28,
+ "end": 5214.52,
+ "text": "not"
+ },
+ {
+ "id": 9579,
+ "start": 5214.52,
+ "end": 5215.02,
+ "text": "familiar"
+ },
+ {
+ "id": 9580,
+ "start": 5215.02,
+ "end": 5215.18,
+ "text": "with"
+ },
+ {
+ "id": 9581,
+ "start": 5215.18,
+ "end": 5216.02,
+ "text": "this"
+ },
+ {
+ "id": 9582,
+ "start": 5216.02,
+ "end": 5216.7,
+ "text": "piece"
+ },
+ {
+ "id": 9583,
+ "start": 5216.7,
+ "end": 5216.86,
+ "text": "of"
+ },
+ {
+ "id": 9584,
+ "start": 5216.86,
+ "end": 5217.24,
+ "text": "content"
+ },
+ {
+ "id": 9585,
+ "start": 5217.24,
+ "end": 5217.84,
+ "text": "specifically."
+ },
+ {
+ "id": 9586,
+ "start": 5217.84,
+ "end": 5218.76,
+ "text": "But"
+ },
+ {
+ "id": 9587,
+ "start": 5218.76,
+ "end": 5218.88,
+ "text": "if"
+ },
+ {
+ "id": 9588,
+ "start": 5218.88,
+ "end": 5219,
+ "text": "you"
+ },
+ {
+ "id": 9589,
+ "start": 5219,
+ "end": 5219.44,
+ "text": "decide"
+ },
+ {
+ "id": 9590,
+ "start": 5219.44,
+ "end": 5219.68,
+ "text": "this"
+ },
+ {
+ "id": 9591,
+ "start": 5219.68,
+ "end": 5220.2,
+ "text": "policy"
+ },
+ {
+ "id": 9592,
+ "start": 5220.2,
+ "end": 5220.3,
+ "text": "of"
+ },
+ {
+ "id": 9593,
+ "start": 5220.3,
+ "end": 5220.44,
+ "text": "a"
+ },
+ {
+ "id": 9594,
+ "start": 5220.44,
+ "end": 5220.64,
+ "text": "week"
+ },
+ {
+ "id": 9595,
+ "start": 5220.64,
+ "end": 5221.2,
+ "text": "ago"
+ },
+ {
+ "id": 9596,
+ "start": 5221.2,
+ "end": 5221.92,
+ "text": "you'd"
+ },
+ {
+ "id": 9597,
+ "start": 5221.92,
+ "end": 5222.06,
+ "text": "be"
+ },
+ {
+ "id": 9598,
+ "start": 5222.06,
+ "end": 5222.26,
+ "text": "able"
+ },
+ {
+ "id": 9599,
+ "start": 5222.26,
+ "end": 5222.38,
+ "text": "to"
+ },
+ {
+ "id": 9600,
+ "start": 5222.38,
+ "end": 5222.94,
+ "text": "verify"
+ },
+ {
+ "id": 9601,
+ "start": 5222.94,
+ "end": 5223.12,
+ "text": "them,"
+ },
+ {
+ "id": 9602,
+ "start": 5223.12,
+ "end": 5224.24,
+ "text": "we"
+ },
+ {
+ "id": 9603,
+ "start": 5224.24,
+ "end": 5224.58,
+ "text": "are"
+ },
+ {
+ "id": 9604,
+ "start": 5224.58,
+ "end": 5225.04,
+ "text": "working"
+ },
+ {
+ "id": 9605,
+ "start": 5225.04,
+ "end": 5225.16,
+ "text": "on"
+ },
+ {
+ "id": 9606,
+ "start": 5225.16,
+ "end": 5225.34,
+ "text": "that."
+ },
+ {
+ "id": 9607,
+ "start": 5225.34,
+ "end": 5225.64,
+ "text": "Now,"
+ },
+ {
+ "id": 9608,
+ "start": 5225.64,
+ "end": 5226.16,
+ "text": "what"
+ },
+ {
+ "id": 9609,
+ "start": 5226.16,
+ "end": 5226.32,
+ "text": "we're"
+ },
+ {
+ "id": 9610,
+ "start": 5226.32,
+ "end": 5226.6,
+ "text": "doing"
+ },
+ {
+ "id": 9611,
+ "start": 5226.6,
+ "end": 5226.92,
+ "text": "is"
+ },
+ {
+ "id": 9612,
+ "start": 5226.92,
+ "end": 5227.3,
+ "text": "we're"
+ },
+ {
+ "id": 9613,
+ "start": 5227.3,
+ "end": 5227.48,
+ "text": "going"
+ },
+ {
+ "id": 9614,
+ "start": 5227.48,
+ "end": 5227.72,
+ "text": "to"
+ },
+ {
+ "id": 9615,
+ "start": 5227.72,
+ "end": 5228.24,
+ "text": "verify"
+ },
+ {
+ "id": 9616,
+ "start": 5228.24,
+ "end": 5228.36,
+ "text": "the"
+ },
+ {
+ "id": 9617,
+ "start": 5228.36,
+ "end": 5228.86,
+ "text": "identity"
+ },
+ {
+ "id": 9618,
+ "start": 5228.86,
+ "end": 5229.42,
+ "text": "of"
+ },
+ {
+ "id": 9619,
+ "start": 5229.42,
+ "end": 5229.74,
+ "text": "any"
+ },
+ {
+ "id": 9620,
+ "start": 5229.74,
+ "end": 5230.38,
+ "text": "advertiser"
+ },
+ {
+ "id": 9621,
+ "start": 5230.38,
+ "end": 5230.62,
+ "text": "who's"
+ },
+ {
+ "id": 9622,
+ "start": 5230.62,
+ "end": 5230.88,
+ "text": "running"
+ },
+ {
+ "id": 9623,
+ "start": 5230.88,
+ "end": 5230.94,
+ "text": "a"
+ },
+ {
+ "id": 9624,
+ "start": 5230.94,
+ "end": 5231.48,
+ "text": "political"
+ },
+ {
+ "id": 9625,
+ "start": 5231.48,
+ "end": 5232.64,
+ "text": "or"
+ },
+ {
+ "id": 9626,
+ "start": 5232.64,
+ "end": 5233.06,
+ "text": "issue"
+ },
+ {
+ "id": 9627,
+ "start": 5233.06,
+ "end": 5233.6,
+ "text": "related"
+ },
+ {
+ "id": 9628,
+ "start": 5233.6,
+ "end": 5234.38,
+ "text": "ad,"
+ },
+ {
+ "id": 9629,
+ "start": 5234.38,
+ "end": 5235.16,
+ "text": "this"
+ },
+ {
+ "id": 9630,
+ "start": 5235.16,
+ "end": 5235.3,
+ "text": "is"
+ },
+ {
+ "id": 9631,
+ "start": 5235.3,
+ "end": 5235.74,
+ "text": "basically"
+ },
+ {
+ "id": 9632,
+ "start": 5235.74,
+ "end": 5235.96,
+ "text": "what"
+ },
+ {
+ "id": 9633,
+ "start": 5235.96,
+ "end": 5236.32,
+ "text": "the"
+ },
+ {
+ "id": 9634,
+ "start": 5236.32,
+ "end": 5236.62,
+ "text": "honest"
+ },
+ {
+ "id": 9635,
+ "start": 5236.62,
+ "end": 5236.88,
+ "text": "ads"
+ },
+ {
+ "id": 9636,
+ "start": 5236.88,
+ "end": 5237.16,
+ "text": "act"
+ },
+ {
+ "id": 9637,
+ "start": 5237.16,
+ "end": 5237.36,
+ "text": "is"
+ },
+ {
+ "id": 9638,
+ "start": 5237.36,
+ "end": 5238.04,
+ "text": "proposing"
+ },
+ {
+ "id": 9639,
+ "start": 5238.04,
+ "end": 5238.74,
+ "text": "and"
+ },
+ {
+ "id": 9640,
+ "start": 5238.74,
+ "end": 5238.94,
+ "text": "we're"
+ },
+ {
+ "id": 9641,
+ "start": 5238.94,
+ "end": 5239.3,
+ "text": "following"
+ },
+ {
+ "id": 9642,
+ "start": 5239.3,
+ "end": 5240.58,
+ "text": "that."
+ },
+ {
+ "id": 9643,
+ "start": 5240.58,
+ "end": 5241.52,
+ "text": "And"
+ },
+ {
+ "id": 9644,
+ "start": 5241.52,
+ "end": 5241.9,
+ "text": "we're"
+ },
+ {
+ "id": 9645,
+ "start": 5241.9,
+ "end": 5242.08,
+ "text": "also"
+ },
+ {
+ "id": 9646,
+ "start": 5242.08,
+ "end": 5242.26,
+ "text": "going"
+ },
+ {
+ "id": 9647,
+ "start": 5242.26,
+ "end": 5242.32,
+ "text": "to"
+ },
+ {
+ "id": 9648,
+ "start": 5242.32,
+ "end": 5242.38,
+ "text": "do"
+ },
+ {
+ "id": 9649,
+ "start": 5242.38,
+ "end": 5242.5,
+ "text": "that"
+ },
+ {
+ "id": 9650,
+ "start": 5242.5,
+ "end": 5242.62,
+ "text": "for"
+ },
+ {
+ "id": 9651,
+ "start": 5242.62,
+ "end": 5242.98,
+ "text": "pages."
+ },
+ {
+ "id": 9652,
+ "start": 5242.98,
+ "end": 5243.28,
+ "text": "Would"
+ },
+ {
+ "id": 9653,
+ "start": 5243.28,
+ "end": 5243.38,
+ "text": "you"
+ },
+ {
+ "id": 9654,
+ "start": 5243.38,
+ "end": 5243.52,
+ "text": "get"
+ },
+ {
+ "id": 9655,
+ "start": 5243.52,
+ "end": 5244.14,
+ "text": "on"
+ },
+ {
+ "id": 9656,
+ "start": 5244.14,
+ "end": 5244.42,
+ "text": "these"
+ },
+ {
+ "id": 9657,
+ "start": 5244.42,
+ "end": 5245.54,
+ "text": "I'm"
+ },
+ {
+ "id": 9658,
+ "start": 5245.54,
+ "end": 5245.7,
+ "text": "not"
+ },
+ {
+ "id": 9659,
+ "start": 5245.7,
+ "end": 5246.04,
+ "text": "familiar"
+ },
+ {
+ "id": 9660,
+ "start": 5246.04,
+ "end": 5246.2,
+ "text": "with"
+ },
+ {
+ "id": 9661,
+ "start": 5246.2,
+ "end": 5246.38,
+ "text": "those"
+ },
+ {
+ "id": 9662,
+ "start": 5246.38,
+ "end": 5246.82,
+ "text": "specific."
+ },
+ {
+ "id": 9663,
+ "start": 5246.82,
+ "end": 5247.3,
+ "text": "I"
+ },
+ {
+ "id": 9664,
+ "start": 5247.3,
+ "end": 5247.52,
+ "text": "will"
+ },
+ {
+ "id": 9665,
+ "start": 5247.52,
+ "end": 5247.72,
+ "text": "you"
+ },
+ {
+ "id": 9666,
+ "start": 5247.72,
+ "end": 5248.06,
+ "text": "find"
+ },
+ {
+ "id": 9667,
+ "start": 5248.06,
+ "end": 5248.26,
+ "text": "out"
+ },
+ {
+ "id": 9668,
+ "start": 5248.26,
+ "end": 5248.42,
+ "text": "the"
+ },
+ {
+ "id": 9669,
+ "start": 5248.42,
+ "end": 5248.72,
+ "text": "answer"
+ },
+ {
+ "id": 9670,
+ "start": 5248.72,
+ "end": 5248.88,
+ "text": "and"
+ },
+ {
+ "id": 9671,
+ "start": 5248.88,
+ "end": 5249.02,
+ "text": "get"
+ },
+ {
+ "id": 9672,
+ "start": 5249.02,
+ "end": 5249.28,
+ "text": "back"
+ },
+ {
+ "id": 9673,
+ "start": 5249.28,
+ "end": 5249.44,
+ "text": "to"
+ },
+ {
+ "id": 9674,
+ "start": 5249.44,
+ "end": 5249.62,
+ "text": "me."
+ },
+ {
+ "id": 9675,
+ "start": 5249.62,
+ "end": 5250.12,
+ "text": "I'll"
+ },
+ {
+ "id": 9676,
+ "start": 5250.12,
+ "end": 5250.26,
+ "text": "have"
+ },
+ {
+ "id": 9677,
+ "start": 5250.26,
+ "end": 5250.36,
+ "text": "my"
+ },
+ {
+ "id": 9678,
+ "start": 5250.36,
+ "end": 5250.54,
+ "text": "team"
+ },
+ {
+ "id": 9679,
+ "start": 5250.54,
+ "end": 5250.7,
+ "text": "get"
+ },
+ {
+ "id": 9680,
+ "start": 5250.7,
+ "end": 5250.86,
+ "text": "back"
+ },
+ {
+ "id": 9681,
+ "start": 5250.86,
+ "end": 5250.96,
+ "text": "to"
+ },
+ {
+ "id": 9682,
+ "start": 5250.96,
+ "end": 5251.66,
+ "text": "you?"
+ },
+ {
+ "id": 9683,
+ "start": 5251.66,
+ "end": 5251.82,
+ "text": "I"
+ },
+ {
+ "id": 9684,
+ "start": 5251.82,
+ "end": 5252.46,
+ "text": "do"
+ },
+ {
+ "id": 9685,
+ "start": 5252.46,
+ "end": 5252.66,
+ "text": "think"
+ },
+ {
+ "id": 9686,
+ "start": 5252.66,
+ "end": 5252.8,
+ "text": "it's"
+ },
+ {
+ "id": 9687,
+ "start": 5252.8,
+ "end": 5253.68,
+ "text": "worth"
+ },
+ {
+ "id": 9688,
+ "start": 5253.68,
+ "end": 5254.64,
+ "text": "adding,"
+ },
+ {
+ "id": 9689,
+ "start": 5254.64,
+ "end": 5254.84,
+ "text": "though."
+ },
+ {
+ "id": 9690,
+ "start": 5254.84,
+ "end": 5255.5,
+ "text": "That"
+ },
+ {
+ "id": 9691,
+ "start": 5255.5,
+ "end": 5256.4,
+ "text": "we're"
+ },
+ {
+ "id": 9692,
+ "start": 5256.4,
+ "end": 5256.6,
+ "text": "going"
+ },
+ {
+ "id": 9693,
+ "start": 5256.6,
+ "end": 5256.7,
+ "text": "to"
+ },
+ {
+ "id": 9694,
+ "start": 5256.7,
+ "end": 5256.8,
+ "text": "do"
+ },
+ {
+ "id": 9695,
+ "start": 5256.8,
+ "end": 5256.94,
+ "text": "the"
+ },
+ {
+ "id": 9696,
+ "start": 5256.94,
+ "end": 5257.24,
+ "text": "same"
+ },
+ {
+ "id": 9697,
+ "start": 5257.24,
+ "end": 5258,
+ "text": "verification"
+ },
+ {
+ "id": 9698,
+ "start": 5258,
+ "end": 5258.76,
+ "text": "of"
+ },
+ {
+ "id": 9699,
+ "start": 5258.76,
+ "end": 5259.04,
+ "text": "the"
+ },
+ {
+ "id": 9700,
+ "start": 5259.04,
+ "end": 5259.74,
+ "text": "identity"
+ },
+ {
+ "id": 9701,
+ "start": 5259.74,
+ "end": 5259.9,
+ "text": "and"
+ },
+ {
+ "id": 9702,
+ "start": 5259.9,
+ "end": 5260.48,
+ "text": "location"
+ },
+ {
+ "id": 9703,
+ "start": 5260.48,
+ "end": 5261,
+ "text": "of"
+ },
+ {
+ "id": 9704,
+ "start": 5261,
+ "end": 5261.48,
+ "text": "admins"
+ },
+ {
+ "id": 9705,
+ "start": 5261.48,
+ "end": 5261.62,
+ "text": "who"
+ },
+ {
+ "id": 9706,
+ "start": 5261.62,
+ "end": 5261.76,
+ "text": "are"
+ },
+ {
+ "id": 9707,
+ "start": 5261.76,
+ "end": 5262.08,
+ "text": "running"
+ },
+ {
+ "id": 9708,
+ "start": 5262.08,
+ "end": 5262.46,
+ "text": "large"
+ },
+ {
+ "id": 9709,
+ "start": 5262.46,
+ "end": 5262.9,
+ "text": "pages."
+ },
+ {
+ "id": 9710,
+ "start": 5262.9,
+ "end": 5263.34,
+ "text": "So"
+ },
+ {
+ "id": 9711,
+ "start": 5263.34,
+ "end": 5263.48,
+ "text": "that"
+ },
+ {
+ "id": 9712,
+ "start": 5263.48,
+ "end": 5263.66,
+ "text": "way,"
+ },
+ {
+ "id": 9713,
+ "start": 5263.66,
+ "end": 5263.88,
+ "text": "even"
+ },
+ {
+ "id": 9714,
+ "start": 5263.88,
+ "end": 5264,
+ "text": "if"
+ },
+ {
+ "id": 9715,
+ "start": 5264,
+ "end": 5264.26,
+ "text": "they"
+ },
+ {
+ "id": 9716,
+ "start": 5264.26,
+ "end": 5264.56,
+ "text": "aren't"
+ },
+ {
+ "id": 9717,
+ "start": 5264.56,
+ "end": 5264.76,
+ "text": "going"
+ },
+ {
+ "id": 9718,
+ "start": 5264.76,
+ "end": 5264.84,
+ "text": "to"
+ },
+ {
+ "id": 9719,
+ "start": 5264.84,
+ "end": 5264.92,
+ "text": "be"
+ },
+ {
+ "id": 9720,
+ "start": 5264.92,
+ "end": 5265.42,
+ "text": "buying"
+ },
+ {
+ "id": 9721,
+ "start": 5265.42,
+ "end": 5265.72,
+ "text": "ads"
+ },
+ {
+ "id": 9722,
+ "start": 5265.72,
+ "end": 5265.82,
+ "text": "in"
+ },
+ {
+ "id": 9723,
+ "start": 5265.82,
+ "end": 5266,
+ "text": "our"
+ },
+ {
+ "id": 9724,
+ "start": 5266,
+ "end": 5266.8,
+ "text": "system."
+ },
+ {
+ "id": 9725,
+ "start": 5266.8,
+ "end": 5267.38,
+ "text": "That"
+ },
+ {
+ "id": 9726,
+ "start": 5267.38,
+ "end": 5267.58,
+ "text": "will"
+ },
+ {
+ "id": 9727,
+ "start": 5267.58,
+ "end": 5267.74,
+ "text": "make"
+ },
+ {
+ "id": 9728,
+ "start": 5267.74,
+ "end": 5267.84,
+ "text": "it"
+ },
+ {
+ "id": 9729,
+ "start": 5267.84,
+ "end": 5268.48,
+ "text": "significantly"
+ },
+ {
+ "id": 9730,
+ "start": 5268.48,
+ "end": 5268.82,
+ "text": "harder"
+ },
+ {
+ "id": 9731,
+ "start": 5268.82,
+ "end": 5269.38,
+ "text": "for"
+ },
+ {
+ "id": 9732,
+ "start": 5269.38,
+ "end": 5270.66,
+ "text": "Russian"
+ },
+ {
+ "id": 9733,
+ "start": 5270.66,
+ "end": 5271.62,
+ "text": "interference,"
+ },
+ {
+ "id": 9734,
+ "start": 5271.62,
+ "end": 5272,
+ "text": "efforts"
+ },
+ {
+ "id": 9735,
+ "start": 5272,
+ "end": 5272.24,
+ "text": "or"
+ },
+ {
+ "id": 9736,
+ "start": 5272.24,
+ "end": 5272.62,
+ "text": "other"
+ },
+ {
+ "id": 9737,
+ "start": 5272.62,
+ "end": 5272.74,
+ "text": "in"
+ },
+ {
+ "id": 9738,
+ "start": 5272.74,
+ "end": 5273.2,
+ "text": "authentic"
+ },
+ {
+ "id": 9739,
+ "start": 5273.2,
+ "end": 5273.54,
+ "text": "efforts"
+ },
+ {
+ "id": 9740,
+ "start": 5273.54,
+ "end": 5274.36,
+ "text": "to"
+ },
+ {
+ "id": 9741,
+ "start": 5274.36,
+ "end": 5274.5,
+ "text": "try"
+ },
+ {
+ "id": 9742,
+ "start": 5274.5,
+ "end": 5274.58,
+ "text": "to"
+ },
+ {
+ "id": 9743,
+ "start": 5274.58,
+ "end": 5274.8,
+ "text": "spread"
+ },
+ {
+ "id": 9744,
+ "start": 5274.8,
+ "end": 5275.42,
+ "text": "misinformation"
+ },
+ {
+ "id": 9745,
+ "start": 5275.42,
+ "end": 5275.66,
+ "text": "through"
+ },
+ {
+ "id": 9746,
+ "start": 5275.66,
+ "end": 5275.76,
+ "text": "the"
+ },
+ {
+ "id": 9747,
+ "start": 5275.76,
+ "end": 5276.04,
+ "text": "network"
+ },
+ {
+ "id": 9748,
+ "start": 5276.04,
+ "end": 5276.84,
+ "text": "surprise"
+ },
+ {
+ "id": 9749,
+ "start": 5276.84,
+ "end": 5277,
+ "text": "it's"
+ },
+ {
+ "id": 9750,
+ "start": 5277,
+ "end": 5277.16,
+ "text": "been"
+ },
+ {
+ "id": 9751,
+ "start": 5277.16,
+ "end": 5277.36,
+ "text": "going"
+ },
+ {
+ "id": 9752,
+ "start": 5277.36,
+ "end": 5277.56,
+ "text": "on"
+ },
+ {
+ "id": 9753,
+ "start": 5277.56,
+ "end": 5277.74,
+ "text": "for"
+ },
+ {
+ "id": 9754,
+ "start": 5277.74,
+ "end": 5278.09,
+ "text": "some"
+ },
+ {
+ "id": 9755,
+ "start": 5278.09,
+ "end": 5278.65,
+ "text": "some"
+ },
+ {
+ "id": 9756,
+ "start": 5278.65,
+ "end": 5278.87,
+ "text": "might"
+ },
+ {
+ "id": 9757,
+ "start": 5278.87,
+ "end": 5279.05,
+ "text": "say"
+ },
+ {
+ "id": 9758,
+ "start": 5279.05,
+ "end": 5279.27,
+ "text": "that's"
+ },
+ {
+ "id": 9759,
+ "start": 5279.27,
+ "end": 5279.55,
+ "text": "about"
+ },
+ {
+ "id": 9760,
+ "start": 5279.55,
+ "end": 5279.87,
+ "text": "time"
+ },
+ {
+ "id": 9761,
+ "start": 5279.87,
+ "end": 5280.73,
+ "text": "six"
+ },
+ {
+ "id": 9762,
+ "start": 5280.73,
+ "end": 5280.97,
+ "text": "months"
+ },
+ {
+ "id": 9763,
+ "start": 5280.97,
+ "end": 5281.15,
+ "text": "ago."
+ },
+ {
+ "id": 9764,
+ "start": 5281.15,
+ "end": 5281.31,
+ "text": "I"
+ },
+ {
+ "id": 9765,
+ "start": 5281.31,
+ "end": 5281.53,
+ "text": "asked"
+ },
+ {
+ "id": 9766,
+ "start": 5281.53,
+ "end": 5281.69,
+ "text": "you"
+ },
+ {
+ "id": 9767,
+ "start": 5281.69,
+ "end": 5282.05,
+ "text": "general"
+ },
+ {
+ "id": 9768,
+ "start": 5282.05,
+ "end": 5282.41,
+ "text": "counsel"
+ },
+ {
+ "id": 9769,
+ "start": 5282.41,
+ "end": 5282.75,
+ "text": "about"
+ },
+ {
+ "id": 9770,
+ "start": 5282.75,
+ "end": 5283.89,
+ "text": "Facebook's"
+ },
+ {
+ "id": 9771,
+ "start": 5283.89,
+ "end": 5284.35,
+ "text": "roles,"
+ },
+ {
+ "id": 9772,
+ "start": 5284.35,
+ "end": 5284.49,
+ "text": "a"
+ },
+ {
+ "id": 9773,
+ "start": 5284.49,
+ "end": 5284.85,
+ "text": "breeding"
+ },
+ {
+ "id": 9774,
+ "start": 5284.85,
+ "end": 5285.21,
+ "text": "ground"
+ },
+ {
+ "id": 9775,
+ "start": 5285.21,
+ "end": 5285.39,
+ "text": "for"
+ },
+ {
+ "id": 9776,
+ "start": 5285.39,
+ "end": 5285.75,
+ "text": "hate"
+ },
+ {
+ "id": 9777,
+ "start": 5285.75,
+ "end": 5286.13,
+ "text": "speech"
+ },
+ {
+ "id": 9778,
+ "start": 5286.13,
+ "end": 5287.13,
+ "text": "against"
+ },
+ {
+ "id": 9779,
+ "start": 5287.13,
+ "end": 5288.17,
+ "text": "in"
+ },
+ {
+ "id": 9780,
+ "start": 5288.17,
+ "end": 5289.38,
+ "text": "refugees."
+ },
+ {
+ "id": 9781,
+ "start": 5289.38,
+ "end": 5290.48,
+ "text": "Recently"
+ },
+ {
+ "id": 9782,
+ "start": 5290.48,
+ "end": 5290.94,
+ "text": "UN"
+ },
+ {
+ "id": 9783,
+ "start": 5290.94,
+ "end": 5291.72,
+ "text": "investigators"
+ },
+ {
+ "id": 9784,
+ "start": 5291.72,
+ "end": 5292.28,
+ "text": "blamed"
+ },
+ {
+ "id": 9785,
+ "start": 5292.28,
+ "end": 5293.6,
+ "text": "Facebook"
+ },
+ {
+ "id": 9786,
+ "start": 5293.6,
+ "end": 5294.58,
+ "text": "for"
+ },
+ {
+ "id": 9787,
+ "start": 5294.58,
+ "end": 5294.92,
+ "text": "playing"
+ },
+ {
+ "id": 9788,
+ "start": 5294.92,
+ "end": 5294.98,
+ "text": "a"
+ },
+ {
+ "id": 9789,
+ "start": 5294.98,
+ "end": 5295.24,
+ "text": "role"
+ },
+ {
+ "id": 9790,
+ "start": 5295.24,
+ "end": 5295.4,
+ "text": "in"
+ },
+ {
+ "id": 9791,
+ "start": 5295.4,
+ "end": 5295.78,
+ "text": "citing"
+ },
+ {
+ "id": 9792,
+ "start": 5295.78,
+ "end": 5296.3,
+ "text": "possible"
+ },
+ {
+ "id": 9793,
+ "start": 5296.3,
+ "end": 5297.06,
+ "text": "genocide."
+ },
+ {
+ "id": 9794,
+ "start": 5297.06,
+ "end": 5298.22,
+ "text": "Emma"
+ },
+ {
+ "id": 9795,
+ "start": 5298.22,
+ "end": 5298.42,
+ "text": "and"
+ },
+ {
+ "id": 9796,
+ "start": 5298.42,
+ "end": 5298.8,
+ "text": "has"
+ },
+ {
+ "id": 9797,
+ "start": 5298.8,
+ "end": 5299,
+ "text": "been"
+ },
+ {
+ "id": 9798,
+ "start": 5299,
+ "end": 5299.66,
+ "text": "genocide"
+ },
+ {
+ "id": 9799,
+ "start": 5299.66,
+ "end": 5300.59,
+ "text": "there."
+ },
+ {
+ "id": 9800,
+ "start": 5300.59,
+ "end": 5301.21,
+ "text": "You"
+ },
+ {
+ "id": 9801,
+ "start": 5301.21,
+ "end": 5301.37,
+ "text": "say"
+ },
+ {
+ "id": 9802,
+ "start": 5301.37,
+ "end": 5301.51,
+ "text": "you"
+ },
+ {
+ "id": 9803,
+ "start": 5301.51,
+ "end": 5301.81,
+ "text": "use"
+ },
+ {
+ "id": 9804,
+ "start": 5301.81,
+ "end": 5302.89,
+ "text": "AI"
+ },
+ {
+ "id": 9805,
+ "start": 5302.89,
+ "end": 5303.15,
+ "text": "to"
+ },
+ {
+ "id": 9806,
+ "start": 5303.15,
+ "end": 5303.53,
+ "text": "find"
+ },
+ {
+ "id": 9807,
+ "start": 5303.53,
+ "end": 5303.77,
+ "text": "this."
+ },
+ {
+ "id": 9808,
+ "start": 5303.77,
+ "end": 5304.83,
+ "text": "This"
+ },
+ {
+ "id": 9809,
+ "start": 5304.83,
+ "end": 5304.99,
+ "text": "is"
+ },
+ {
+ "id": 9810,
+ "start": 5304.99,
+ "end": 5305.09,
+ "text": "a"
+ },
+ {
+ "id": 9811,
+ "start": 5305.09,
+ "end": 5305.41,
+ "text": "type"
+ },
+ {
+ "id": 9812,
+ "start": 5305.41,
+ "end": 5305.69,
+ "text": "of"
+ },
+ {
+ "id": 9813,
+ "start": 5305.69,
+ "end": 5306.85,
+ "text": "content"
+ },
+ {
+ "id": 9814,
+ "start": 5306.85,
+ "end": 5307.31,
+ "text": "referring"
+ },
+ {
+ "id": 9815,
+ "start": 5307.31,
+ "end": 5307.41,
+ "text": "to"
+ },
+ {
+ "id": 9816,
+ "start": 5307.41,
+ "end": 5308.15,
+ "text": "it."
+ },
+ {
+ "id": 9817,
+ "start": 5308.15,
+ "end": 5308.53,
+ "text": "Calls"
+ },
+ {
+ "id": 9818,
+ "start": 5308.53,
+ "end": 5308.73,
+ "text": "for"
+ },
+ {
+ "id": 9819,
+ "start": 5308.73,
+ "end": 5308.87,
+ "text": "the"
+ },
+ {
+ "id": 9820,
+ "start": 5308.87,
+ "end": 5309.23,
+ "text": "death"
+ },
+ {
+ "id": 9821,
+ "start": 5309.23,
+ "end": 5309.65,
+ "text": "of"
+ },
+ {
+ "id": 9822,
+ "start": 5309.65,
+ "end": 5309.75,
+ "text": "a"
+ },
+ {
+ "id": 9823,
+ "start": 5309.75,
+ "end": 5310.25,
+ "text": "Muslim"
+ },
+ {
+ "id": 9824,
+ "start": 5310.25,
+ "end": 5311.8,
+ "text": "journalists"
+ },
+ {
+ "id": 9825,
+ "start": 5311.8,
+ "end": 5312.86,
+ "text": "that"
+ },
+ {
+ "id": 9826,
+ "start": 5312.86,
+ "end": 5313.48,
+ "text": "threat"
+ },
+ {
+ "id": 9827,
+ "start": 5313.48,
+ "end": 5313.78,
+ "text": "went"
+ },
+ {
+ "id": 9828,
+ "start": 5313.78,
+ "end": 5314.22,
+ "text": "straight"
+ },
+ {
+ "id": 9829,
+ "start": 5314.22,
+ "end": 5314.52,
+ "text": "through"
+ },
+ {
+ "id": 9830,
+ "start": 5314.52,
+ "end": 5314.8,
+ "text": "your"
+ },
+ {
+ "id": 9831,
+ "start": 5314.8,
+ "end": 5315.38,
+ "text": "detection"
+ },
+ {
+ "id": 9832,
+ "start": 5315.38,
+ "end": 5315.88,
+ "text": "systems,"
+ },
+ {
+ "id": 9833,
+ "start": 5315.88,
+ "end": 5316.5,
+ "text": "I"
+ },
+ {
+ "id": 9834,
+ "start": 5316.5,
+ "end": 5316.84,
+ "text": "spread"
+ },
+ {
+ "id": 9835,
+ "start": 5316.84,
+ "end": 5317.2,
+ "text": "very"
+ },
+ {
+ "id": 9836,
+ "start": 5317.2,
+ "end": 5317.86,
+ "text": "quickly"
+ },
+ {
+ "id": 9837,
+ "start": 5317.86,
+ "end": 5318.86,
+ "text": "and"
+ },
+ {
+ "id": 9838,
+ "start": 5318.86,
+ "end": 5319.32,
+ "text": "then"
+ },
+ {
+ "id": 9839,
+ "start": 5319.32,
+ "end": 5319.58,
+ "text": "it"
+ },
+ {
+ "id": 9840,
+ "start": 5319.58,
+ "end": 5319.86,
+ "text": "took"
+ },
+ {
+ "id": 9841,
+ "start": 5319.86,
+ "end": 5320.44,
+ "text": "attempt"
+ },
+ {
+ "id": 9842,
+ "start": 5320.44,
+ "end": 5320.76,
+ "text": "after"
+ },
+ {
+ "id": 9843,
+ "start": 5320.76,
+ "end": 5321.14,
+ "text": "attempt"
+ },
+ {
+ "id": 9844,
+ "start": 5321.14,
+ "end": 5321.46,
+ "text": "after"
+ },
+ {
+ "id": 9845,
+ "start": 5321.46,
+ "end": 5321.96,
+ "text": "attempt"
+ },
+ {
+ "id": 9846,
+ "start": 5321.96,
+ "end": 5322.86,
+ "text": "and"
+ },
+ {
+ "id": 9847,
+ "start": 5322.86,
+ "end": 5322.98,
+ "text": "the"
+ },
+ {
+ "id": 9848,
+ "start": 5322.98,
+ "end": 5323.6,
+ "text": "involvement"
+ },
+ {
+ "id": 9849,
+ "start": 5323.6,
+ "end": 5323.96,
+ "text": "of"
+ },
+ {
+ "id": 9850,
+ "start": 5323.96,
+ "end": 5324.34,
+ "text": "civil"
+ },
+ {
+ "id": 9851,
+ "start": 5324.34,
+ "end": 5324.98,
+ "text": "society"
+ },
+ {
+ "id": 9852,
+ "start": 5324.98,
+ "end": 5325.3,
+ "text": "groups"
+ },
+ {
+ "id": 9853,
+ "start": 5325.3,
+ "end": 5326.08,
+ "text": "to"
+ },
+ {
+ "id": 9854,
+ "start": 5326.08,
+ "end": 5326.26,
+ "text": "get"
+ },
+ {
+ "id": 9855,
+ "start": 5326.26,
+ "end": 5326.44,
+ "text": "you"
+ },
+ {
+ "id": 9856,
+ "start": 5326.44,
+ "end": 5326.6,
+ "text": "to"
+ },
+ {
+ "id": 9857,
+ "start": 5326.6,
+ "end": 5327.26,
+ "text": "remove"
+ },
+ {
+ "id": 9858,
+ "start": 5327.26,
+ "end": 5329.86,
+ "text": "it."
+ },
+ {
+ "id": 9859,
+ "start": 5329.86,
+ "end": 5330.82,
+ "text": "Why"
+ },
+ {
+ "id": 9860,
+ "start": 5330.82,
+ "end": 5331.12,
+ "text": "couldn't"
+ },
+ {
+ "id": 9861,
+ "start": 5331.12,
+ "end": 5331.24,
+ "text": "it"
+ },
+ {
+ "id": 9862,
+ "start": 5331.24,
+ "end": 5331.36,
+ "text": "be"
+ },
+ {
+ "id": 9863,
+ "start": 5331.36,
+ "end": 5331.72,
+ "text": "removed"
+ },
+ {
+ "id": 9864,
+ "start": 5331.72,
+ "end": 5332.04,
+ "text": "within"
+ },
+ {
+ "id": 9865,
+ "start": 5332.04,
+ "end": 5332.48,
+ "text": "24"
+ },
+ {
+ "id": 9866,
+ "start": 5332.48,
+ "end": 5333.72,
+ "text": "hours."
+ },
+ {
+ "id": 9867,
+ "start": 5333.72,
+ "end": 5334.72,
+ "text": "Senator"
+ },
+ {
+ "id": 9868,
+ "start": 5334.72,
+ "end": 5335.26,
+ "text": "what's"
+ },
+ {
+ "id": 9869,
+ "start": 5335.26,
+ "end": 5335.58,
+ "text": "happening"
+ },
+ {
+ "id": 9870,
+ "start": 5335.58,
+ "end": 5335.68,
+ "text": "in"
+ },
+ {
+ "id": 9871,
+ "start": 5335.68,
+ "end": 5336.28,
+ "text": "Myanmar"
+ },
+ {
+ "id": 9872,
+ "start": 5336.28,
+ "end": 5336.46,
+ "text": "is"
+ },
+ {
+ "id": 9873,
+ "start": 5336.46,
+ "end": 5336.56,
+ "text": "a"
+ },
+ {
+ "id": 9874,
+ "start": 5336.56,
+ "end": 5337.12,
+ "text": "terrible"
+ },
+ {
+ "id": 9875,
+ "start": 5337.12,
+ "end": 5337.64,
+ "text": "tragedy."
+ },
+ {
+ "id": 9876,
+ "start": 5337.64,
+ "end": 5338.3,
+ "text": "And"
+ },
+ {
+ "id": 9877,
+ "start": 5338.3,
+ "end": 5338.42,
+ "text": "we"
+ },
+ {
+ "id": 9878,
+ "start": 5338.42,
+ "end": 5338.62,
+ "text": "need"
+ },
+ {
+ "id": 9879,
+ "start": 5338.62,
+ "end": 5338.72,
+ "text": "to"
+ },
+ {
+ "id": 9880,
+ "start": 5338.72,
+ "end": 5338.88,
+ "text": "do"
+ },
+ {
+ "id": 9881,
+ "start": 5338.88,
+ "end": 5339.2,
+ "text": "more."
+ },
+ {
+ "id": 9882,
+ "start": 5339.2,
+ "end": 5339.38,
+ "text": "We"
+ },
+ {
+ "id": 9883,
+ "start": 5339.38,
+ "end": 5339.58,
+ "text": "all"
+ },
+ {
+ "id": 9884,
+ "start": 5339.58,
+ "end": 5339.86,
+ "text": "agree"
+ },
+ {
+ "id": 9885,
+ "start": 5339.86,
+ "end": 5340.02,
+ "text": "with"
+ },
+ {
+ "id": 9886,
+ "start": 5340.02,
+ "end": 5340.28,
+ "text": "that."
+ },
+ {
+ "id": 9887,
+ "start": 5340.28,
+ "end": 5340.7,
+ "text": "Okay?"
+ },
+ {
+ "id": 9888,
+ "start": 5340.7,
+ "end": 5342.12,
+ "text": "But"
+ },
+ {
+ "id": 9889,
+ "start": 5342.12,
+ "end": 5342.98,
+ "text": "you"
+ },
+ {
+ "id": 9890,
+ "start": 5342.98,
+ "end": 5343.16,
+ "text": "and"
+ },
+ {
+ "id": 9891,
+ "start": 5343.16,
+ "end": 5344.06,
+ "text": "investigators"
+ },
+ {
+ "id": 9892,
+ "start": 5344.06,
+ "end": 5344.36,
+ "text": "have"
+ },
+ {
+ "id": 9893,
+ "start": 5344.36,
+ "end": 5345.2,
+ "text": "blamed"
+ },
+ {
+ "id": 9894,
+ "start": 5345.2,
+ "end": 5346.46,
+ "text": "you"
+ },
+ {
+ "id": 9895,
+ "start": 5346.46,
+ "end": 5346.86,
+ "text": "blame"
+ },
+ {
+ "id": 9896,
+ "start": 5346.86,
+ "end": 5347.4,
+ "text": "Facebook"
+ },
+ {
+ "id": 9897,
+ "start": 5347.4,
+ "end": 5348.14,
+ "text": "we're"
+ },
+ {
+ "id": 9898,
+ "start": 5348.14,
+ "end": 5348.44,
+ "text": "playing"
+ },
+ {
+ "id": 9899,
+ "start": 5348.44,
+ "end": 5348.54,
+ "text": "a"
+ },
+ {
+ "id": 9900,
+ "start": 5348.54,
+ "end": 5348.78,
+ "text": "role"
+ },
+ {
+ "id": 9901,
+ "start": 5348.78,
+ "end": 5348.84,
+ "text": "in"
+ },
+ {
+ "id": 9902,
+ "start": 5348.84,
+ "end": 5349.06,
+ "text": "the"
+ },
+ {
+ "id": 9903,
+ "start": 5349.06,
+ "end": 5349.56,
+ "text": "genocide."
+ },
+ {
+ "id": 9904,
+ "start": 5349.56,
+ "end": 5349.86,
+ "text": "We"
+ },
+ {
+ "id": 9905,
+ "start": 5349.86,
+ "end": 5350.02,
+ "text": "all"
+ },
+ {
+ "id": 9906,
+ "start": 5350.02,
+ "end": 5350.26,
+ "text": "agree"
+ },
+ {
+ "id": 9907,
+ "start": 5350.26,
+ "end": 5350.38,
+ "text": "is"
+ },
+ {
+ "id": 9908,
+ "start": 5350.38,
+ "end": 5352.18,
+ "text": "terrible."
+ },
+ {
+ "id": 9909,
+ "start": 5352.18,
+ "end": 5353.16,
+ "text": "How"
+ },
+ {
+ "id": 9910,
+ "start": 5353.16,
+ "end": 5353.4,
+ "text": "can"
+ },
+ {
+ "id": 9911,
+ "start": 5353.4,
+ "end": 5353.56,
+ "text": "you"
+ },
+ {
+ "id": 9912,
+ "start": 5353.56,
+ "end": 5354.12,
+ "text": "dedicate"
+ },
+ {
+ "id": 9913,
+ "start": 5354.12,
+ "end": 5354.3,
+ "text": "the?"
+ },
+ {
+ "id": 9914,
+ "start": 5354.3,
+ "end": 5354.48,
+ "text": "Will"
+ },
+ {
+ "id": 9915,
+ "start": 5354.48,
+ "end": 5354.62,
+ "text": "you"
+ },
+ {
+ "id": 9916,
+ "start": 5354.62,
+ "end": 5356.16,
+ "text": "dedicate"
+ },
+ {
+ "id": 9917,
+ "start": 5356.16,
+ "end": 5357.14,
+ "text": "resources"
+ },
+ {
+ "id": 9918,
+ "start": 5357.14,
+ "end": 5357.36,
+ "text": "make"
+ },
+ {
+ "id": 9919,
+ "start": 5357.36,
+ "end": 5358.1,
+ "text": "sure"
+ },
+ {
+ "id": 9920,
+ "start": 5358.1,
+ "end": 5358.44,
+ "text": "such"
+ },
+ {
+ "id": 9921,
+ "start": 5358.44,
+ "end": 5358.74,
+ "text": "hate"
+ },
+ {
+ "id": 9922,
+ "start": 5358.74,
+ "end": 5359.04,
+ "text": "speech"
+ },
+ {
+ "id": 9923,
+ "start": 5359.04,
+ "end": 5359.2,
+ "text": "is"
+ },
+ {
+ "id": 9924,
+ "start": 5359.2,
+ "end": 5359.48,
+ "text": "taken"
+ },
+ {
+ "id": 9925,
+ "start": 5359.48,
+ "end": 5359.66,
+ "text": "down"
+ },
+ {
+ "id": 9926,
+ "start": 5359.66,
+ "end": 5359.96,
+ "text": "within"
+ },
+ {
+ "id": 9927,
+ "start": 5359.96,
+ "end": 5361.34,
+ "text": "24"
+ },
+ {
+ "id": 9928,
+ "start": 5361.34,
+ "end": 5362.26,
+ "text": "Yes"
+ },
+ {
+ "id": 9929,
+ "start": 5362.26,
+ "end": 5362.56,
+ "text": "we're"
+ },
+ {
+ "id": 9930,
+ "start": 5362.56,
+ "end": 5362.84,
+ "text": "working"
+ },
+ {
+ "id": 9931,
+ "start": 5362.84,
+ "end": 5362.96,
+ "text": "on"
+ },
+ {
+ "id": 9932,
+ "start": 5362.96,
+ "end": 5363.12,
+ "text": "this."
+ },
+ {
+ "id": 9933,
+ "start": 5363.12,
+ "end": 5363.66,
+ "text": "And"
+ },
+ {
+ "id": 9934,
+ "start": 5363.66,
+ "end": 5363.92,
+ "text": "there"
+ },
+ {
+ "id": 9935,
+ "start": 5363.92,
+ "end": 5364.04,
+ "text": "are"
+ },
+ {
+ "id": 9936,
+ "start": 5364.04,
+ "end": 5364.32,
+ "text": "three"
+ },
+ {
+ "id": 9937,
+ "start": 5364.32,
+ "end": 5364.88,
+ "text": "specific"
+ },
+ {
+ "id": 9938,
+ "start": 5364.88,
+ "end": 5365.22,
+ "text": "things"
+ },
+ {
+ "id": 9939,
+ "start": 5365.22,
+ "end": 5365.42,
+ "text": "that"
+ },
+ {
+ "id": 9940,
+ "start": 5365.42,
+ "end": 5365.6,
+ "text": "we're"
+ },
+ {
+ "id": 9941,
+ "start": 5365.6,
+ "end": 5365.86,
+ "text": "doing."
+ },
+ {
+ "id": 9942,
+ "start": 5365.86,
+ "end": 5366.66,
+ "text": "One"
+ },
+ {
+ "id": 9943,
+ "start": 5366.66,
+ "end": 5367.02,
+ "text": "is"
+ },
+ {
+ "id": 9944,
+ "start": 5367.02,
+ "end": 5367.24,
+ "text": "we're"
+ },
+ {
+ "id": 9945,
+ "start": 5367.24,
+ "end": 5367.68,
+ "text": "hiring"
+ },
+ {
+ "id": 9946,
+ "start": 5367.68,
+ "end": 5368.14,
+ "text": "dozens"
+ },
+ {
+ "id": 9947,
+ "start": 5368.14,
+ "end": 5368.28,
+ "text": "of"
+ },
+ {
+ "id": 9948,
+ "start": 5368.28,
+ "end": 5368.54,
+ "text": "more"
+ },
+ {
+ "id": 9949,
+ "start": 5368.54,
+ "end": 5369.08,
+ "text": "Burmese"
+ },
+ {
+ "id": 9950,
+ "start": 5369.08,
+ "end": 5369.58,
+ "text": "language"
+ },
+ {
+ "id": 9951,
+ "start": 5369.58,
+ "end": 5370.6,
+ "text": "content"
+ },
+ {
+ "id": 9952,
+ "start": 5370.6,
+ "end": 5371.06,
+ "text": "reviewers,"
+ },
+ {
+ "id": 9953,
+ "start": 5371.06,
+ "end": 5371.72,
+ "text": "because"
+ },
+ {
+ "id": 9954,
+ "start": 5371.72,
+ "end": 5372.44,
+ "text": "hate"
+ },
+ {
+ "id": 9955,
+ "start": 5372.44,
+ "end": 5372.72,
+ "text": "speech"
+ },
+ {
+ "id": 9956,
+ "start": 5372.72,
+ "end": 5372.84,
+ "text": "is"
+ },
+ {
+ "id": 9957,
+ "start": 5372.84,
+ "end": 5373.1,
+ "text": "very"
+ },
+ {
+ "id": 9958,
+ "start": 5373.1,
+ "end": 5373.46,
+ "text": "language."
+ },
+ {
+ "id": 9959,
+ "start": 5373.46,
+ "end": 5374.42,
+ "text": "Specific"
+ },
+ {
+ "id": 9960,
+ "start": 5374.42,
+ "end": 5374.68,
+ "text": "had"
+ },
+ {
+ "id": 9961,
+ "start": 5374.68,
+ "end": 5374.76,
+ "text": "to"
+ },
+ {
+ "id": 9962,
+ "start": 5374.76,
+ "end": 5374.88,
+ "text": "do"
+ },
+ {
+ "id": 9963,
+ "start": 5374.88,
+ "end": 5375,
+ "text": "it"
+ },
+ {
+ "id": 9964,
+ "start": 5375,
+ "end": 5375.38,
+ "text": "without"
+ },
+ {
+ "id": 9965,
+ "start": 5375.38,
+ "end": 5375.62,
+ "text": "people"
+ },
+ {
+ "id": 9966,
+ "start": 5375.62,
+ "end": 5375.72,
+ "text": "who"
+ },
+ {
+ "id": 9967,
+ "start": 5375.72,
+ "end": 5375.98,
+ "text": "speak"
+ },
+ {
+ "id": 9968,
+ "start": 5375.98,
+ "end": 5376.1,
+ "text": "the"
+ },
+ {
+ "id": 9969,
+ "start": 5376.1,
+ "end": 5376.34,
+ "text": "local"
+ },
+ {
+ "id": 9970,
+ "start": 5376.34,
+ "end": 5376.72,
+ "text": "language."
+ },
+ {
+ "id": 9971,
+ "start": 5376.72,
+ "end": 5377.2,
+ "text": "And"
+ },
+ {
+ "id": 9972,
+ "start": 5377.2,
+ "end": 5377.32,
+ "text": "we"
+ },
+ {
+ "id": 9973,
+ "start": 5377.32,
+ "end": 5377.5,
+ "text": "need"
+ },
+ {
+ "id": 9974,
+ "start": 5377.5,
+ "end": 5377.58,
+ "text": "to"
+ },
+ {
+ "id": 9975,
+ "start": 5377.58,
+ "end": 5377.84,
+ "text": "ramp"
+ },
+ {
+ "id": 9976,
+ "start": 5377.84,
+ "end": 5377.96,
+ "text": "up"
+ },
+ {
+ "id": 9977,
+ "start": 5377.96,
+ "end": 5378.12,
+ "text": "our"
+ },
+ {
+ "id": 9978,
+ "start": 5378.12,
+ "end": 5378.38,
+ "text": "effort"
+ },
+ {
+ "id": 9979,
+ "start": 5378.38,
+ "end": 5378.62,
+ "text": "there"
+ },
+ {
+ "id": 9980,
+ "start": 5378.62,
+ "end": 5379.16,
+ "text": "dramatically,"
+ },
+ {
+ "id": 9981,
+ "start": 5379.16,
+ "end": 5380.04,
+ "text": "second"
+ },
+ {
+ "id": 9982,
+ "start": 5380.04,
+ "end": 5380.16,
+ "text": "is"
+ },
+ {
+ "id": 9983,
+ "start": 5380.16,
+ "end": 5380.34,
+ "text": "we're"
+ },
+ {
+ "id": 9984,
+ "start": 5380.34,
+ "end": 5380.6,
+ "text": "working"
+ },
+ {
+ "id": 9985,
+ "start": 5380.6,
+ "end": 5380.74,
+ "text": "with"
+ },
+ {
+ "id": 9986,
+ "start": 5380.74,
+ "end": 5381.08,
+ "text": "civil"
+ },
+ {
+ "id": 9987,
+ "start": 5381.08,
+ "end": 5381.68,
+ "text": "society"
+ },
+ {
+ "id": 9988,
+ "start": 5381.68,
+ "end": 5382.2,
+ "text": "in"
+ },
+ {
+ "id": 9989,
+ "start": 5382.2,
+ "end": 5382.72,
+ "text": "Myanmar"
+ },
+ {
+ "id": 9990,
+ "start": 5382.72,
+ "end": 5383.24,
+ "text": "to"
+ },
+ {
+ "id": 9991,
+ "start": 5383.24,
+ "end": 5383.9,
+ "text": "identify"
+ },
+ {
+ "id": 9992,
+ "start": 5383.9,
+ "end": 5384.78,
+ "text": "specific"
+ },
+ {
+ "id": 9993,
+ "start": 5384.78,
+ "end": 5385.04,
+ "text": "hate"
+ },
+ {
+ "id": 9994,
+ "start": 5385.04,
+ "end": 5385.54,
+ "text": "figures."
+ },
+ {
+ "id": 9995,
+ "start": 5385.54,
+ "end": 5385.84,
+ "text": "So"
+ },
+ {
+ "id": 9996,
+ "start": 5385.84,
+ "end": 5385.96,
+ "text": "we"
+ },
+ {
+ "id": 9997,
+ "start": 5385.96,
+ "end": 5386.1,
+ "text": "can"
+ },
+ {
+ "id": 9998,
+ "start": 5386.1,
+ "end": 5386.3,
+ "text": "take"
+ },
+ {
+ "id": 9999,
+ "start": 5386.3,
+ "end": 5386.5,
+ "text": "down"
+ },
+ {
+ "id": 10000,
+ "start": 5386.5,
+ "end": 5386.7,
+ "text": "their"
+ },
+ {
+ "id": 10001,
+ "start": 5386.7,
+ "end": 5387.5,
+ "text": "accounts"
+ },
+ {
+ "id": 10002,
+ "start": 5387.5,
+ "end": 5388.14,
+ "text": "rather"
+ },
+ {
+ "id": 10003,
+ "start": 5388.14,
+ "end": 5388.34,
+ "text": "than"
+ },
+ {
+ "id": 10004,
+ "start": 5388.34,
+ "end": 5388.9,
+ "text": "specific"
+ },
+ {
+ "id": 10005,
+ "start": 5388.9,
+ "end": 5389.18,
+ "text": "pieces"
+ },
+ {
+ "id": 10006,
+ "start": 5389.18,
+ "end": 5389.3,
+ "text": "of"
+ },
+ {
+ "id": 10007,
+ "start": 5389.3,
+ "end": 5389.68,
+ "text": "content"
+ },
+ {
+ "id": 10008,
+ "start": 5389.68,
+ "end": 5390.22,
+ "text": "and"
+ },
+ {
+ "id": 10009,
+ "start": 5390.22,
+ "end": 5390.64,
+ "text": "third"
+ },
+ {
+ "id": 10010,
+ "start": 5390.64,
+ "end": 5391.12,
+ "text": "is"
+ },
+ {
+ "id": 10011,
+ "start": 5391.12,
+ "end": 5391.22,
+ "text": "we"
+ },
+ {
+ "id": 10012,
+ "start": 5391.22,
+ "end": 5391.32,
+ "text": "are"
+ },
+ {
+ "id": 10013,
+ "start": 5391.32,
+ "end": 5391.68,
+ "text": "standing"
+ },
+ {
+ "id": 10014,
+ "start": 5391.68,
+ "end": 5391.8,
+ "text": "up"
+ },
+ {
+ "id": 10015,
+ "start": 5391.8,
+ "end": 5392,
+ "text": "a"
+ },
+ {
+ "id": 10016,
+ "start": 5392,
+ "end": 5392.38,
+ "text": "product"
+ },
+ {
+ "id": 10017,
+ "start": 5392.38,
+ "end": 5392.72,
+ "text": "team"
+ },
+ {
+ "id": 10018,
+ "start": 5392.72,
+ "end": 5393.46,
+ "text": "to"
+ },
+ {
+ "id": 10019,
+ "start": 5393.46,
+ "end": 5393.9,
+ "text": "do"
+ },
+ {
+ "id": 10020,
+ "start": 5393.9,
+ "end": 5394.54,
+ "text": "specific"
+ },
+ {
+ "id": 10021,
+ "start": 5394.54,
+ "end": 5394.92,
+ "text": "product"
+ },
+ {
+ "id": 10022,
+ "start": 5394.92,
+ "end": 5395.38,
+ "text": "changes"
+ },
+ {
+ "id": 10023,
+ "start": 5395.38,
+ "end": 5395.66,
+ "text": "in"
+ },
+ {
+ "id": 10024,
+ "start": 5395.66,
+ "end": 5396.2,
+ "text": "Myanmar"
+ },
+ {
+ "id": 10025,
+ "start": 5396.2,
+ "end": 5396.62,
+ "text": "and"
+ },
+ {
+ "id": 10026,
+ "start": 5396.62,
+ "end": 5396.9,
+ "text": "other"
+ },
+ {
+ "id": 10027,
+ "start": 5396.9,
+ "end": 5397.36,
+ "text": "countries"
+ },
+ {
+ "id": 10028,
+ "start": 5397.36,
+ "end": 5397.8,
+ "text": "that"
+ },
+ {
+ "id": 10029,
+ "start": 5397.8,
+ "end": 5398.02,
+ "text": "may"
+ },
+ {
+ "id": 10030,
+ "start": 5398.02,
+ "end": 5398.24,
+ "text": "have"
+ },
+ {
+ "id": 10031,
+ "start": 5398.24,
+ "end": 5398.84,
+ "text": "similar"
+ },
+ {
+ "id": 10032,
+ "start": 5398.84,
+ "end": 5399.18,
+ "text": "issues"
+ },
+ {
+ "id": 10033,
+ "start": 5399.18,
+ "end": 5399.3,
+ "text": "in"
+ },
+ {
+ "id": 10034,
+ "start": 5399.3,
+ "end": 5399.42,
+ "text": "the"
+ },
+ {
+ "id": 10035,
+ "start": 5399.42,
+ "end": 5399.78,
+ "text": "future"
+ },
+ {
+ "id": 10036,
+ "start": 5399.78,
+ "end": 5400.62,
+ "text": "to"
+ },
+ {
+ "id": 10037,
+ "start": 5400.62,
+ "end": 5400.96,
+ "text": "prevent"
+ },
+ {
+ "id": 10038,
+ "start": 5400.96,
+ "end": 5401.14,
+ "text": "this"
+ },
+ {
+ "id": 10039,
+ "start": 5401.14,
+ "end": 5401.48,
+ "text": "from"
+ },
+ {
+ "id": 10040,
+ "start": 5401.48,
+ "end": 5401.7,
+ "text": "from"
+ },
+ {
+ "id": 10041,
+ "start": 5401.7,
+ "end": 5402.06,
+ "text": "happening"
+ },
+ {
+ "id": 10042,
+ "start": 5402.06,
+ "end": 5402.9,
+ "text": "in"
+ },
+ {
+ "id": 10043,
+ "start": 5402.9,
+ "end": 5403.36,
+ "text": "Santa"
+ },
+ {
+ "id": 10044,
+ "start": 5403.36,
+ "end": 5403.66,
+ "text": "Cruz"
+ },
+ {
+ "id": 10045,
+ "start": 5403.66,
+ "end": 5403.82,
+ "text": "and"
+ },
+ {
+ "id": 10046,
+ "start": 5403.82,
+ "end": 5404.8,
+ "text": "I"
+ },
+ {
+ "id": 10047,
+ "start": 5404.8,
+ "end": 5405.72,
+ "text": "sent"
+ },
+ {
+ "id": 10048,
+ "start": 5405.72,
+ "end": 5405.82,
+ "text": "a"
+ },
+ {
+ "id": 10049,
+ "start": 5405.82,
+ "end": 5406.34,
+ "text": "letter"
+ },
+ {
+ "id": 10050,
+ "start": 5406.34,
+ "end": 5406.62,
+ "text": "to"
+ },
+ {
+ "id": 10051,
+ "start": 5406.62,
+ "end": 5408.7,
+ "text": "Apple"
+ },
+ {
+ "id": 10052,
+ "start": 5408.7,
+ "end": 5409.68,
+ "text": "asking"
+ },
+ {
+ "id": 10053,
+ "start": 5409.68,
+ "end": 5409.8,
+ "text": "what"
+ },
+ {
+ "id": 10054,
+ "start": 5409.8,
+ "end": 5410,
+ "text": "they're"
+ },
+ {
+ "id": 10055,
+ "start": 5410,
+ "end": 5410.14,
+ "text": "going"
+ },
+ {
+ "id": 10056,
+ "start": 5410.14,
+ "end": 5410.2,
+ "text": "to"
+ },
+ {
+ "id": 10057,
+ "start": 5410.2,
+ "end": 5410.28,
+ "text": "do"
+ },
+ {
+ "id": 10058,
+ "start": 5410.28,
+ "end": 5410.5,
+ "text": "about"
+ },
+ {
+ "id": 10059,
+ "start": 5410.5,
+ "end": 5411.04,
+ "text": "Chinese"
+ },
+ {
+ "id": 10060,
+ "start": 5411.04,
+ "end": 5413.34,
+ "text": "censorship."
+ },
+ {
+ "id": 10061,
+ "start": 5413.34,
+ "end": 5414.46,
+ "text": "My"
+ },
+ {
+ "id": 10062,
+ "start": 5414.46,
+ "end": 5414.86,
+ "text": "question"
+ },
+ {
+ "id": 10063,
+ "start": 5414.86,
+ "end": 5415.02,
+ "text": "I"
+ },
+ {
+ "id": 10064,
+ "start": 5415.02,
+ "end": 5415.32,
+ "text": "place"
+ },
+ {
+ "id": 10065,
+ "start": 5415.32,
+ "end": 5415.66,
+ "text": "that"
+ },
+ {
+ "id": 10066,
+ "start": 5415.66,
+ "end": 5415.8,
+ "text": "would"
+ },
+ {
+ "id": 10067,
+ "start": 5415.8,
+ "end": 5415.86,
+ "text": "be"
+ },
+ {
+ "id": 10068,
+ "start": 5415.86,
+ "end": 5416.04,
+ "text": "great."
+ },
+ {
+ "id": 10069,
+ "start": 5416.04,
+ "end": 5416.22,
+ "text": "Thank"
+ },
+ {
+ "id": 10070,
+ "start": 5416.22,
+ "end": 5416.36,
+ "text": "you,"
+ },
+ {
+ "id": 10071,
+ "start": 5416.36,
+ "end": 5417.02,
+ "text": "sir."
+ },
+ {
+ "id": 10072,
+ "start": 5417.02,
+ "end": 5417.16,
+ "text": "For"
+ },
+ {
+ "id": 10073,
+ "start": 5417.16,
+ "end": 5417.28,
+ "text": "the"
+ },
+ {
+ "id": 10074,
+ "start": 5417.28,
+ "end": 5417.56,
+ "text": "record,"
+ },
+ {
+ "id": 10075,
+ "start": 5417.56,
+ "end": 5417.62,
+ "text": "I"
+ },
+ {
+ "id": 10076,
+ "start": 5417.62,
+ "end": 5417.8,
+ "text": "want"
+ },
+ {
+ "id": 10077,
+ "start": 5417.8,
+ "end": 5417.86,
+ "text": "to"
+ },
+ {
+ "id": 10078,
+ "start": 5417.86,
+ "end": 5417.98,
+ "text": "know"
+ },
+ {
+ "id": 10079,
+ "start": 5417.98,
+ "end": 5418.14,
+ "text": "what"
+ },
+ {
+ "id": 10080,
+ "start": 5418.14,
+ "end": 5418.3,
+ "text": "you"
+ },
+ {
+ "id": 10081,
+ "start": 5418.3,
+ "end": 5418.66,
+ "text": "do"
+ },
+ {
+ "id": 10082,
+ "start": 5418.66,
+ "end": 5419.28,
+ "text": "about"
+ },
+ {
+ "id": 10083,
+ "start": 5419.28,
+ "end": 5420.26,
+ "text": "Chinese"
+ },
+ {
+ "id": 10084,
+ "start": 5420.26,
+ "end": 5420.84,
+ "text": "censorship"
+ },
+ {
+ "id": 10085,
+ "start": 5420.84,
+ "end": 5421.02,
+ "text": "when"
+ },
+ {
+ "id": 10086,
+ "start": 5421.02,
+ "end": 5421.22,
+ "text": "they"
+ },
+ {
+ "id": 10087,
+ "start": 5421.22,
+ "end": 5421.42,
+ "text": "come"
+ },
+ {
+ "id": 10088,
+ "start": 5421.42,
+ "end": 5421.52,
+ "text": "to"
+ },
+ {
+ "id": 10089,
+ "start": 5421.52,
+ "end": 5422.32,
+ "text": "you"
+ },
+ {
+ "id": 10090,
+ "start": 5422.32,
+ "end": 5423.3,
+ "text": "Seagrams"
+ },
+ {
+ "id": 10091,
+ "start": 5423.3,
+ "end": 5423.44,
+ "text": "up"
+ },
+ {
+ "id": 10092,
+ "start": 5423.44,
+ "end": 5424.42,
+ "text": "next,"
+ },
+ {
+ "id": 10093,
+ "start": 5424.42,
+ "end": 5425.32,
+ "text": "thank"
+ },
+ {
+ "id": 10094,
+ "start": 5425.32,
+ "end": 5425.7,
+ "text": "you."
+ },
+ {
+ "id": 10095,
+ "start": 5425.7,
+ "end": 5426.68,
+ "text": "Are"
+ },
+ {
+ "id": 10096,
+ "start": 5426.68,
+ "end": 5426.78,
+ "text": "you"
+ },
+ {
+ "id": 10097,
+ "start": 5426.78,
+ "end": 5427.16,
+ "text": "familiar"
+ },
+ {
+ "id": 10098,
+ "start": 5427.16,
+ "end": 5427.38,
+ "text": "with"
+ },
+ {
+ "id": 10099,
+ "start": 5427.38,
+ "end": 5427.8,
+ "text": "Andrew"
+ },
+ {
+ "id": 10100,
+ "start": 5427.8,
+ "end": 5430.2,
+ "text": "Bosworth?"
+ },
+ {
+ "id": 10101,
+ "start": 5430.2,
+ "end": 5431.18,
+ "text": "Yes,"
+ },
+ {
+ "id": 10102,
+ "start": 5431.18,
+ "end": 5431.62,
+ "text": "Senator,"
+ },
+ {
+ "id": 10103,
+ "start": 5431.62,
+ "end": 5431.68,
+ "text": "I"
+ },
+ {
+ "id": 10104,
+ "start": 5431.68,
+ "end": 5431.9,
+ "text": "am."
+ },
+ {
+ "id": 10105,
+ "start": 5431.9,
+ "end": 5432.96,
+ "text": "He"
+ },
+ {
+ "id": 10106,
+ "start": 5432.96,
+ "end": 5433.38,
+ "text": "said"
+ },
+ {
+ "id": 10107,
+ "start": 5433.38,
+ "end": 5434.18,
+ "text": "so"
+ },
+ {
+ "id": 10108,
+ "start": 5434.18,
+ "end": 5434.3,
+ "text": "we"
+ },
+ {
+ "id": 10109,
+ "start": 5434.3,
+ "end": 5434.7,
+ "text": "connect"
+ },
+ {
+ "id": 10110,
+ "start": 5434.7,
+ "end": 5434.94,
+ "text": "more"
+ },
+ {
+ "id": 10111,
+ "start": 5434.94,
+ "end": 5435.3,
+ "text": "people."
+ },
+ {
+ "id": 10112,
+ "start": 5435.3,
+ "end": 5435.88,
+ "text": "Maybe"
+ },
+ {
+ "id": 10113,
+ "start": 5435.88,
+ "end": 5436.32,
+ "text": "someone"
+ },
+ {
+ "id": 10114,
+ "start": 5436.32,
+ "end": 5436.64,
+ "text": "dies"
+ },
+ {
+ "id": 10115,
+ "start": 5436.64,
+ "end": 5436.8,
+ "text": "in"
+ },
+ {
+ "id": 10116,
+ "start": 5436.8,
+ "end": 5436.94,
+ "text": "a"
+ },
+ {
+ "id": 10117,
+ "start": 5436.94,
+ "end": 5437.28,
+ "text": "terrorist"
+ },
+ {
+ "id": 10118,
+ "start": 5437.28,
+ "end": 5437.96,
+ "text": "attack"
+ },
+ {
+ "id": 10119,
+ "start": 5437.96,
+ "end": 5438.94,
+ "text": "coordinated"
+ },
+ {
+ "id": 10120,
+ "start": 5438.94,
+ "end": 5439.18,
+ "text": "on"
+ },
+ {
+ "id": 10121,
+ "start": 5439.18,
+ "end": 5439.66,
+ "text": "our"
+ },
+ {
+ "id": 10122,
+ "start": 5439.66,
+ "end": 5441.56,
+ "text": "tools,"
+ },
+ {
+ "id": 10123,
+ "start": 5441.56,
+ "end": 5441.88,
+ "text": "the"
+ },
+ {
+ "id": 10124,
+ "start": 5441.88,
+ "end": 5442.24,
+ "text": "ugly"
+ },
+ {
+ "id": 10125,
+ "start": 5442.24,
+ "end": 5442.52,
+ "text": "truth"
+ },
+ {
+ "id": 10126,
+ "start": 5442.52,
+ "end": 5442.72,
+ "text": "is"
+ },
+ {
+ "id": 10127,
+ "start": 5442.72,
+ "end": 5442.92,
+ "text": "that"
+ },
+ {
+ "id": 10128,
+ "start": 5442.92,
+ "end": 5443.04,
+ "text": "we"
+ },
+ {
+ "id": 10129,
+ "start": 5443.04,
+ "end": 5443.42,
+ "text": "believe"
+ },
+ {
+ "id": 10130,
+ "start": 5443.42,
+ "end": 5443.58,
+ "text": "in"
+ },
+ {
+ "id": 10131,
+ "start": 5443.58,
+ "end": 5444.12,
+ "text": "connecting"
+ },
+ {
+ "id": 10132,
+ "start": 5444.12,
+ "end": 5444.44,
+ "text": "people"
+ },
+ {
+ "id": 10133,
+ "start": 5444.44,
+ "end": 5444.78,
+ "text": "so"
+ },
+ {
+ "id": 10134,
+ "start": 5444.78,
+ "end": 5445.22,
+ "text": "deeply"
+ },
+ {
+ "id": 10135,
+ "start": 5445.22,
+ "end": 5446.24,
+ "text": "that"
+ },
+ {
+ "id": 10136,
+ "start": 5446.24,
+ "end": 5446.74,
+ "text": "anything"
+ },
+ {
+ "id": 10137,
+ "start": 5446.74,
+ "end": 5446.96,
+ "text": "that"
+ },
+ {
+ "id": 10138,
+ "start": 5446.96,
+ "end": 5447.38,
+ "text": "allows"
+ },
+ {
+ "id": 10139,
+ "start": 5447.38,
+ "end": 5447.58,
+ "text": "us"
+ },
+ {
+ "id": 10140,
+ "start": 5447.58,
+ "end": 5447.74,
+ "text": "to"
+ },
+ {
+ "id": 10141,
+ "start": 5447.74,
+ "end": 5448.16,
+ "text": "connect"
+ },
+ {
+ "id": 10142,
+ "start": 5448.16,
+ "end": 5448.38,
+ "text": "more"
+ },
+ {
+ "id": 10143,
+ "start": 5448.38,
+ "end": 5448.74,
+ "text": "people"
+ },
+ {
+ "id": 10144,
+ "start": 5448.74,
+ "end": 5449.02,
+ "text": "more"
+ },
+ {
+ "id": 10145,
+ "start": 5449.02,
+ "end": 5449.4,
+ "text": "often"
+ },
+ {
+ "id": 10146,
+ "start": 5449.4,
+ "end": 5450.2,
+ "text": "is"
+ },
+ {
+ "id": 10147,
+ "start": 5450.2,
+ "end": 5450.34,
+ "text": "to"
+ },
+ {
+ "id": 10148,
+ "start": 5450.34,
+ "end": 5450.64,
+ "text": "fact."
+ },
+ {
+ "id": 10149,
+ "start": 5450.64,
+ "end": 5450.9,
+ "text": "Do"
+ },
+ {
+ "id": 10150,
+ "start": 5450.9,
+ "end": 5451.26,
+ "text": "good,"
+ },
+ {
+ "id": 10151,
+ "start": 5451.26,
+ "end": 5451.94,
+ "text": "do"
+ },
+ {
+ "id": 10152,
+ "start": 5451.94,
+ "end": 5452.12,
+ "text": "you"
+ },
+ {
+ "id": 10153,
+ "start": 5452.12,
+ "end": 5452.34,
+ "text": "agree"
+ },
+ {
+ "id": 10154,
+ "start": 5452.34,
+ "end": 5452.48,
+ "text": "with"
+ },
+ {
+ "id": 10155,
+ "start": 5452.48,
+ "end": 5453.38,
+ "text": "that?"
+ },
+ {
+ "id": 10156,
+ "start": 5453.38,
+ "end": 5454.22,
+ "text": "No,"
+ },
+ {
+ "id": 10157,
+ "start": 5454.22,
+ "end": 5454.64,
+ "text": "Senator,"
+ },
+ {
+ "id": 10158,
+ "start": 5454.64,
+ "end": 5454.74,
+ "text": "I"
+ },
+ {
+ "id": 10159,
+ "start": 5454.74,
+ "end": 5454.88,
+ "text": "do"
+ },
+ {
+ "id": 10160,
+ "start": 5454.88,
+ "end": 5455.14,
+ "text": "not."
+ },
+ {
+ "id": 10161,
+ "start": 5455.14,
+ "end": 5455.9,
+ "text": "And"
+ },
+ {
+ "id": 10162,
+ "start": 5455.9,
+ "end": 5456.5,
+ "text": "as"
+ },
+ {
+ "id": 10163,
+ "start": 5456.5,
+ "end": 5457.36,
+ "text": "context,"
+ },
+ {
+ "id": 10164,
+ "start": 5457.36,
+ "end": 5458.34,
+ "text": "Boz"
+ },
+ {
+ "id": 10165,
+ "start": 5458.34,
+ "end": 5458.6,
+ "text": "wrote"
+ },
+ {
+ "id": 10166,
+ "start": 5458.6,
+ "end": 5458.86,
+ "text": "that"
+ },
+ {
+ "id": 10167,
+ "start": 5458.86,
+ "end": 5459.18,
+ "text": "bus"
+ },
+ {
+ "id": 10168,
+ "start": 5459.18,
+ "end": 5459.3,
+ "text": "is"
+ },
+ {
+ "id": 10169,
+ "start": 5459.3,
+ "end": 5459.42,
+ "text": "what"
+ },
+ {
+ "id": 10170,
+ "start": 5459.42,
+ "end": 5459.52,
+ "text": "we"
+ },
+ {
+ "id": 10171,
+ "start": 5459.52,
+ "end": 5459.68,
+ "text": "call"
+ },
+ {
+ "id": 10172,
+ "start": 5459.68,
+ "end": 5459.8,
+ "text": "them"
+ },
+ {
+ "id": 10173,
+ "start": 5459.8,
+ "end": 5461.02,
+ "text": "internally."
+ },
+ {
+ "id": 10174,
+ "start": 5461.02,
+ "end": 5461.9,
+ "text": "He"
+ },
+ {
+ "id": 10175,
+ "start": 5461.9,
+ "end": 5462.1,
+ "text": "wrote"
+ },
+ {
+ "id": 10176,
+ "start": 5462.1,
+ "end": 5462.22,
+ "text": "that"
+ },
+ {
+ "id": 10177,
+ "start": 5462.22,
+ "end": 5462.34,
+ "text": "as"
+ },
+ {
+ "id": 10178,
+ "start": 5462.34,
+ "end": 5462.44,
+ "text": "an"
+ },
+ {
+ "id": 10179,
+ "start": 5462.44,
+ "end": 5463,
+ "text": "internal"
+ },
+ {
+ "id": 10180,
+ "start": 5463,
+ "end": 5464.98,
+ "text": "note"
+ },
+ {
+ "id": 10181,
+ "start": 5464.98,
+ "end": 5465.96,
+ "text": "we"
+ },
+ {
+ "id": 10182,
+ "start": 5465.96,
+ "end": 5466.1,
+ "text": "have"
+ },
+ {
+ "id": 10183,
+ "start": 5466.1,
+ "end": 5466.14,
+ "text": "a"
+ },
+ {
+ "id": 10184,
+ "start": 5466.14,
+ "end": 5466.26,
+ "text": "lot"
+ },
+ {
+ "id": 10185,
+ "start": 5466.26,
+ "end": 5466.34,
+ "text": "of"
+ },
+ {
+ "id": 10186,
+ "start": 5466.34,
+ "end": 5466.76,
+ "text": "discussion"
+ },
+ {
+ "id": 10187,
+ "start": 5466.76,
+ "end": 5467.26,
+ "text": "internally."
+ },
+ {
+ "id": 10188,
+ "start": 5467.26,
+ "end": 5467.94,
+ "text": "I"
+ },
+ {
+ "id": 10189,
+ "start": 5467.94,
+ "end": 5468.46,
+ "text": "disagreed"
+ },
+ {
+ "id": 10190,
+ "start": 5468.46,
+ "end": 5468.62,
+ "text": "with"
+ },
+ {
+ "id": 10191,
+ "start": 5468.62,
+ "end": 5468.74,
+ "text": "it"
+ },
+ {
+ "id": 10192,
+ "start": 5468.74,
+ "end": 5468.96,
+ "text": "at"
+ },
+ {
+ "id": 10193,
+ "start": 5468.96,
+ "end": 5469.08,
+ "text": "the"
+ },
+ {
+ "id": 10194,
+ "start": 5469.08,
+ "end": 5469.28,
+ "text": "time"
+ },
+ {
+ "id": 10195,
+ "start": 5469.28,
+ "end": 5469.42,
+ "text": "that"
+ },
+ {
+ "id": 10196,
+ "start": 5469.42,
+ "end": 5469.5,
+ "text": "he"
+ },
+ {
+ "id": 10197,
+ "start": 5469.5,
+ "end": 5469.7,
+ "text": "wrote"
+ },
+ {
+ "id": 10198,
+ "start": 5469.7,
+ "end": 5469.8,
+ "text": "it."
+ },
+ {
+ "id": 10199,
+ "start": 5469.8,
+ "end": 5470.1,
+ "text": "If"
+ },
+ {
+ "id": 10200,
+ "start": 5470.1,
+ "end": 5470.22,
+ "text": "you"
+ },
+ {
+ "id": 10201,
+ "start": 5470.22,
+ "end": 5470.42,
+ "text": "looked"
+ },
+ {
+ "id": 10202,
+ "start": 5470.42,
+ "end": 5470.5,
+ "text": "at"
+ },
+ {
+ "id": 10203,
+ "start": 5470.5,
+ "end": 5470.6,
+ "text": "the"
+ },
+ {
+ "id": 10204,
+ "start": 5470.6,
+ "end": 5470.9,
+ "text": "comments"
+ },
+ {
+ "id": 10205,
+ "start": 5470.9,
+ "end": 5471,
+ "text": "on"
+ },
+ {
+ "id": 10206,
+ "start": 5471,
+ "end": 5471.12,
+ "text": "the"
+ },
+ {
+ "id": 10207,
+ "start": 5471.12,
+ "end": 5471.44,
+ "text": "internal"
+ },
+ {
+ "id": 10208,
+ "start": 5471.44,
+ "end": 5471.84,
+ "text": "discussion"
+ },
+ {
+ "id": 10209,
+ "start": 5471.84,
+ "end": 5472,
+ "text": "the"
+ },
+ {
+ "id": 10210,
+ "start": 5472,
+ "end": 5472.89,
+ "text": "Georgia"
+ },
+ {
+ "id": 10211,
+ "start": 5472.89,
+ "end": 5473.47,
+ "text": "internally"
+ },
+ {
+ "id": 10212,
+ "start": 5473.47,
+ "end": 5473.67,
+ "text": "did"
+ },
+ {
+ "id": 10213,
+ "start": 5473.67,
+ "end": 5473.91,
+ "text": "too."
+ },
+ {
+ "id": 10214,
+ "start": 5473.91,
+ "end": 5474.21,
+ "text": "That"
+ },
+ {
+ "id": 10215,
+ "start": 5474.21,
+ "end": 5474.37,
+ "text": "you"
+ },
+ {
+ "id": 10216,
+ "start": 5474.37,
+ "end": 5474.53,
+ "text": "did"
+ },
+ {
+ "id": 10217,
+ "start": 5474.53,
+ "end": 5474.67,
+ "text": "a"
+ },
+ {
+ "id": 10218,
+ "start": 5474.67,
+ "end": 5474.99,
+ "text": "four"
+ },
+ {
+ "id": 10219,
+ "start": 5474.99,
+ "end": 5475.27,
+ "text": "job"
+ },
+ {
+ "id": 10220,
+ "start": 5475.27,
+ "end": 5475.49,
+ "text": "as"
+ },
+ {
+ "id": 10221,
+ "start": 5475.49,
+ "end": 5475.99,
+ "text": "CEO"
+ },
+ {
+ "id": 10222,
+ "start": 5475.99,
+ "end": 5476.79,
+ "text": "communicating"
+ },
+ {
+ "id": 10223,
+ "start": 5476.79,
+ "end": 5477.71,
+ "text": "your"
+ },
+ {
+ "id": 10224,
+ "start": 5477.71,
+ "end": 5478.43,
+ "text": "displeasure"
+ },
+ {
+ "id": 10225,
+ "start": 5478.43,
+ "end": 5478.61,
+ "text": "with"
+ },
+ {
+ "id": 10226,
+ "start": 5478.61,
+ "end": 5478.87,
+ "text": "such"
+ },
+ {
+ "id": 10227,
+ "start": 5478.87,
+ "end": 5479.29,
+ "text": "thoughts."
+ },
+ {
+ "id": 10228,
+ "start": 5479.29,
+ "end": 5480.13,
+ "text": "Because"
+ },
+ {
+ "id": 10229,
+ "start": 5480.13,
+ "end": 5480.31,
+ "text": "if"
+ },
+ {
+ "id": 10230,
+ "start": 5480.31,
+ "end": 5480.45,
+ "text": "he"
+ },
+ {
+ "id": 10231,
+ "start": 5480.45,
+ "end": 5480.61,
+ "text": "had"
+ },
+ {
+ "id": 10232,
+ "start": 5480.61,
+ "end": 5481.09,
+ "text": "understood"
+ },
+ {
+ "id": 10233,
+ "start": 5481.09,
+ "end": 5482.13,
+ "text": "where"
+ },
+ {
+ "id": 10234,
+ "start": 5482.13,
+ "end": 5482.39,
+ "text": "you're"
+ },
+ {
+ "id": 10235,
+ "start": 5482.39,
+ "end": 5482.57,
+ "text": "at"
+ },
+ {
+ "id": 10236,
+ "start": 5482.57,
+ "end": 5482.69,
+ "text": "he"
+ },
+ {
+ "id": 10237,
+ "start": 5482.69,
+ "end": 5482.85,
+ "text": "would"
+ },
+ {
+ "id": 10238,
+ "start": 5482.85,
+ "end": 5483.05,
+ "text": "never"
+ },
+ {
+ "id": 10239,
+ "start": 5483.05,
+ "end": 5483.23,
+ "text": "said"
+ },
+ {
+ "id": 10240,
+ "start": 5483.23,
+ "end": 5483.31,
+ "text": "it"
+ },
+ {
+ "id": 10241,
+ "start": 5483.31,
+ "end": 5483.43,
+ "text": "to"
+ },
+ {
+ "id": 10242,
+ "start": 5483.43,
+ "end": 5483.71,
+ "text": "begin"
+ },
+ {
+ "id": 10243,
+ "start": 5483.71,
+ "end": 5484.76,
+ "text": "with."
+ },
+ {
+ "id": 10244,
+ "start": 5484.76,
+ "end": 5485.86,
+ "text": "Well,"
+ },
+ {
+ "id": 10245,
+ "start": 5485.86,
+ "end": 5486.3,
+ "text": "Senator,"
+ },
+ {
+ "id": 10246,
+ "start": 5486.3,
+ "end": 5487.02,
+ "text": "we"
+ },
+ {
+ "id": 10247,
+ "start": 5487.02,
+ "end": 5487.22,
+ "text": "try"
+ },
+ {
+ "id": 10248,
+ "start": 5487.22,
+ "end": 5487.32,
+ "text": "to"
+ },
+ {
+ "id": 10249,
+ "start": 5487.32,
+ "end": 5487.52,
+ "text": "run"
+ },
+ {
+ "id": 10250,
+ "start": 5487.52,
+ "end": 5487.68,
+ "text": "our"
+ },
+ {
+ "id": 10251,
+ "start": 5487.68,
+ "end": 5488.1,
+ "text": "company"
+ },
+ {
+ "id": 10252,
+ "start": 5488.1,
+ "end": 5488.3,
+ "text": "in"
+ },
+ {
+ "id": 10253,
+ "start": 5488.3,
+ "end": 5488.38,
+ "text": "a"
+ },
+ {
+ "id": 10254,
+ "start": 5488.38,
+ "end": 5488.58,
+ "text": "way"
+ },
+ {
+ "id": 10255,
+ "start": 5488.58,
+ "end": 5488.8,
+ "text": "where"
+ },
+ {
+ "id": 10256,
+ "start": 5488.8,
+ "end": 5489.1,
+ "text": "people"
+ },
+ {
+ "id": 10257,
+ "start": 5489.1,
+ "end": 5489.26,
+ "text": "can"
+ },
+ {
+ "id": 10258,
+ "start": 5489.26,
+ "end": 5489.7,
+ "text": "express"
+ },
+ {
+ "id": 10259,
+ "start": 5489.7,
+ "end": 5490.04,
+ "text": "different"
+ },
+ {
+ "id": 10260,
+ "start": 5490.04,
+ "end": 5490.44,
+ "text": "opinions"
+ },
+ {
+ "id": 10261,
+ "start": 5490.44,
+ "end": 5491,
+ "text": "internally."
+ },
+ {
+ "id": 10262,
+ "start": 5491,
+ "end": 5491.46,
+ "text": "Well,"
+ },
+ {
+ "id": 10263,
+ "start": 5491.46,
+ "end": 5491.64,
+ "text": "this"
+ },
+ {
+ "id": 10264,
+ "start": 5491.64,
+ "end": 5491.82,
+ "text": "is"
+ },
+ {
+ "id": 10265,
+ "start": 5491.82,
+ "end": 5491.92,
+ "text": "an"
+ },
+ {
+ "id": 10266,
+ "start": 5491.92,
+ "end": 5492.42,
+ "text": "opinion"
+ },
+ {
+ "id": 10267,
+ "start": 5492.42,
+ "end": 5492.6,
+ "text": "that"
+ },
+ {
+ "id": 10268,
+ "start": 5492.6,
+ "end": 5492.9,
+ "text": "really"
+ },
+ {
+ "id": 10269,
+ "start": 5492.9,
+ "end": 5493.4,
+ "text": "disturbs"
+ },
+ {
+ "id": 10270,
+ "start": 5493.4,
+ "end": 5493.6,
+ "text": "me."
+ },
+ {
+ "id": 10271,
+ "start": 5493.6,
+ "end": 5494.54,
+ "text": "And"
+ },
+ {
+ "id": 10272,
+ "start": 5494.54,
+ "end": 5494.7,
+ "text": "if"
+ },
+ {
+ "id": 10273,
+ "start": 5494.7,
+ "end": 5495.16,
+ "text": "somebody"
+ },
+ {
+ "id": 10274,
+ "start": 5495.16,
+ "end": 5495.54,
+ "text": "work"
+ },
+ {
+ "id": 10275,
+ "start": 5495.54,
+ "end": 5495.72,
+ "text": "for"
+ },
+ {
+ "id": 10276,
+ "start": 5495.72,
+ "end": 5495.92,
+ "text": "me,"
+ },
+ {
+ "id": 10277,
+ "start": 5495.92,
+ "end": 5496.16,
+ "text": "that"
+ },
+ {
+ "id": 10278,
+ "start": 5496.16,
+ "end": 5496.42,
+ "text": "said"
+ },
+ {
+ "id": 10279,
+ "start": 5496.42,
+ "end": 5496.64,
+ "text": "this"
+ },
+ {
+ "id": 10280,
+ "start": 5496.64,
+ "end": 5496.94,
+ "text": "I'd"
+ },
+ {
+ "id": 10281,
+ "start": 5496.94,
+ "end": 5498.04,
+ "text": "fire"
+ },
+ {
+ "id": 10282,
+ "start": 5498.04,
+ "end": 5498.96,
+ "text": "who's"
+ },
+ {
+ "id": 10283,
+ "start": 5498.96,
+ "end": 5499.12,
+ "text": "your"
+ },
+ {
+ "id": 10284,
+ "start": 5499.12,
+ "end": 5499.42,
+ "text": "biggest"
+ },
+ {
+ "id": 10285,
+ "start": 5499.42,
+ "end": 5500.82,
+ "text": "competitor,"
+ },
+ {
+ "id": 10286,
+ "start": 5500.82,
+ "end": 5502,
+ "text": "Senator."
+ },
+ {
+ "id": 10287,
+ "start": 5502,
+ "end": 5502.1,
+ "text": "We"
+ },
+ {
+ "id": 10288,
+ "start": 5502.1,
+ "end": 5502.24,
+ "text": "have"
+ },
+ {
+ "id": 10289,
+ "start": 5502.24,
+ "end": 5502.28,
+ "text": "a"
+ },
+ {
+ "id": 10290,
+ "start": 5502.28,
+ "end": 5502.42,
+ "text": "lot"
+ },
+ {
+ "id": 10291,
+ "start": 5502.42,
+ "end": 5502.52,
+ "text": "of"
+ },
+ {
+ "id": 10292,
+ "start": 5502.52,
+ "end": 5503.04,
+ "text": "competitors"
+ },
+ {
+ "id": 10293,
+ "start": 5503.04,
+ "end": 5503.58,
+ "text": "who's"
+ },
+ {
+ "id": 10294,
+ "start": 5503.58,
+ "end": 5503.74,
+ "text": "your"
+ },
+ {
+ "id": 10295,
+ "start": 5503.74,
+ "end": 5504.08,
+ "text": "biggest"
+ },
+ {
+ "id": 10296,
+ "start": 5504.08,
+ "end": 5505.66,
+ "text": "I"
+ },
+ {
+ "id": 10297,
+ "start": 5505.66,
+ "end": 5505.9,
+ "text": "think"
+ },
+ {
+ "id": 10298,
+ "start": 5505.9,
+ "end": 5506.62,
+ "text": "the"
+ },
+ {
+ "id": 10299,
+ "start": 5506.62,
+ "end": 5507.16,
+ "text": "categories"
+ },
+ {
+ "id": 10300,
+ "start": 5507.16,
+ "end": 5508,
+ "text": "you"
+ },
+ {
+ "id": 10301,
+ "start": 5508,
+ "end": 5508.14,
+ "text": "want"
+ },
+ {
+ "id": 10302,
+ "start": 5508.14,
+ "end": 5508.28,
+ "text": "just"
+ },
+ {
+ "id": 10303,
+ "start": 5508.28,
+ "end": 5508.5,
+ "text": "one"
+ },
+ {
+ "id": 10304,
+ "start": 5508.5,
+ "end": 5508.78,
+ "text": "I'm"
+ },
+ {
+ "id": 10305,
+ "start": 5508.78,
+ "end": 5508.88,
+ "text": "not"
+ },
+ {
+ "id": 10306,
+ "start": 5508.88,
+ "end": 5509.04,
+ "text": "sure"
+ },
+ {
+ "id": 10307,
+ "start": 5509.04,
+ "end": 5509.08,
+ "text": "I"
+ },
+ {
+ "id": 10308,
+ "start": 5509.08,
+ "end": 5509.2,
+ "text": "can"
+ },
+ {
+ "id": 10309,
+ "start": 5509.2,
+ "end": 5509.34,
+ "text": "give"
+ },
+ {
+ "id": 10310,
+ "start": 5509.34,
+ "end": 5509.5,
+ "text": "one."
+ },
+ {
+ "id": 10311,
+ "start": 5509.5,
+ "end": 5509.62,
+ "text": "But"
+ },
+ {
+ "id": 10312,
+ "start": 5509.62,
+ "end": 5509.76,
+ "text": "can"
+ },
+ {
+ "id": 10313,
+ "start": 5509.76,
+ "end": 5509.84,
+ "text": "I"
+ },
+ {
+ "id": 10314,
+ "start": 5509.84,
+ "end": 5510,
+ "text": "give"
+ },
+ {
+ "id": 10315,
+ "start": 5510,
+ "end": 5510.58,
+ "text": "a"
+ },
+ {
+ "id": 10316,
+ "start": 5510.58,
+ "end": 5512.41,
+ "text": "bunch"
+ },
+ {
+ "id": 10317,
+ "start": 5512.41,
+ "end": 5512.51,
+ "text": "here"
+ },
+ {
+ "id": 10318,
+ "start": 5512.51,
+ "end": 5512.63,
+ "text": "are"
+ },
+ {
+ "id": 10319,
+ "start": 5512.63,
+ "end": 5512.83,
+ "text": "three"
+ },
+ {
+ "id": 10320,
+ "start": 5512.83,
+ "end": 5513.37,
+ "text": "categories"
+ },
+ {
+ "id": 10321,
+ "start": 5513.37,
+ "end": 5513.55,
+ "text": "that"
+ },
+ {
+ "id": 10322,
+ "start": 5513.55,
+ "end": 5513.63,
+ "text": "I"
+ },
+ {
+ "id": 10323,
+ "start": 5513.63,
+ "end": 5513.85,
+ "text": "would"
+ },
+ {
+ "id": 10324,
+ "start": 5513.85,
+ "end": 5514.47,
+ "text": "focus"
+ },
+ {
+ "id": 10325,
+ "start": 5514.47,
+ "end": 5514.67,
+ "text": "on"
+ },
+ {
+ "id": 10326,
+ "start": 5514.67,
+ "end": 5515.35,
+ "text": "one"
+ },
+ {
+ "id": 10327,
+ "start": 5515.35,
+ "end": 5515.77,
+ "text": "are"
+ },
+ {
+ "id": 10328,
+ "start": 5515.77,
+ "end": 5515.91,
+ "text": "the"
+ },
+ {
+ "id": 10329,
+ "start": 5515.91,
+ "end": 5516.15,
+ "text": "other"
+ },
+ {
+ "id": 10330,
+ "start": 5516.15,
+ "end": 5516.35,
+ "text": "tech"
+ },
+ {
+ "id": 10331,
+ "start": 5516.35,
+ "end": 5516.89,
+ "text": "platforms."
+ },
+ {
+ "id": 10332,
+ "start": 5516.89,
+ "end": 5517.15,
+ "text": "So"
+ },
+ {
+ "id": 10333,
+ "start": 5517.15,
+ "end": 5517.89,
+ "text": "Google,"
+ },
+ {
+ "id": 10334,
+ "start": 5517.89,
+ "end": 5518.37,
+ "text": "Apple,"
+ },
+ {
+ "id": 10335,
+ "start": 5518.37,
+ "end": 5518.95,
+ "text": "Amazon"
+ },
+ {
+ "id": 10336,
+ "start": 5518.95,
+ "end": 5519.53,
+ "text": "Microsoft."
+ },
+ {
+ "id": 10337,
+ "start": 5519.53,
+ "end": 5519.69,
+ "text": "We"
+ },
+ {
+ "id": 10338,
+ "start": 5519.69,
+ "end": 5520.05,
+ "text": "overlap"
+ },
+ {
+ "id": 10339,
+ "start": 5520.05,
+ "end": 5520.19,
+ "text": "with"
+ },
+ {
+ "id": 10340,
+ "start": 5520.19,
+ "end": 5520.31,
+ "text": "them"
+ },
+ {
+ "id": 10341,
+ "start": 5520.31,
+ "end": 5520.39,
+ "text": "in"
+ },
+ {
+ "id": 10342,
+ "start": 5520.39,
+ "end": 5520.87,
+ "text": "different."
+ },
+ {
+ "id": 10343,
+ "start": 5520.87,
+ "end": 5521.07,
+ "text": "They"
+ },
+ {
+ "id": 10344,
+ "start": 5521.07,
+ "end": 5521.39,
+ "text": "do."
+ },
+ {
+ "id": 10345,
+ "start": 5521.39,
+ "end": 5521.51,
+ "text": "Do"
+ },
+ {
+ "id": 10346,
+ "start": 5521.51,
+ "end": 5521.69,
+ "text": "they"
+ },
+ {
+ "id": 10347,
+ "start": 5521.69,
+ "end": 5521.99,
+ "text": "provide"
+ },
+ {
+ "id": 10348,
+ "start": 5521.99,
+ "end": 5522.13,
+ "text": "the"
+ },
+ {
+ "id": 10349,
+ "start": 5522.13,
+ "end": 5522.35,
+ "text": "same"
+ },
+ {
+ "id": 10350,
+ "start": 5522.35,
+ "end": 5522.67,
+ "text": "service?"
+ },
+ {
+ "id": 10351,
+ "start": 5522.67,
+ "end": 5522.83,
+ "text": "She"
+ },
+ {
+ "id": 10352,
+ "start": 5522.83,
+ "end": 5524,
+ "text": "provide"
+ },
+ {
+ "id": 10353,
+ "start": 5524,
+ "end": 5524.92,
+ "text": "in"
+ },
+ {
+ "id": 10354,
+ "start": 5524.92,
+ "end": 5525.32,
+ "text": "different"
+ },
+ {
+ "id": 10355,
+ "start": 5525.32,
+ "end": 5525.64,
+ "text": "ways,"
+ },
+ {
+ "id": 10356,
+ "start": 5525.64,
+ "end": 5526.38,
+ "text": "different"
+ },
+ {
+ "id": 10357,
+ "start": 5526.38,
+ "end": 5526.98,
+ "text": "in"
+ },
+ {
+ "id": 10358,
+ "start": 5526.98,
+ "end": 5527.18,
+ "text": "this"
+ },
+ {
+ "id": 10359,
+ "start": 5527.18,
+ "end": 5527.44,
+ "text": "way,"
+ },
+ {
+ "id": 10360,
+ "start": 5527.44,
+ "end": 5527.56,
+ "text": "if"
+ },
+ {
+ "id": 10361,
+ "start": 5527.56,
+ "end": 5527.76,
+ "text": "I"
+ },
+ {
+ "id": 10362,
+ "start": 5527.76,
+ "end": 5527.96,
+ "text": "buy"
+ },
+ {
+ "id": 10363,
+ "start": 5527.96,
+ "end": 5528.06,
+ "text": "it"
+ },
+ {
+ "id": 10364,
+ "start": 5528.06,
+ "end": 5528.54,
+ "text": "forward"
+ },
+ {
+ "id": 10365,
+ "start": 5528.54,
+ "end": 5528.76,
+ "text": "and"
+ },
+ {
+ "id": 10366,
+ "start": 5528.76,
+ "end": 5528.92,
+ "text": "it"
+ },
+ {
+ "id": 10367,
+ "start": 5528.92,
+ "end": 5529.26,
+ "text": "doesn't"
+ },
+ {
+ "id": 10368,
+ "start": 5529.26,
+ "end": 5529.62,
+ "text": "work"
+ },
+ {
+ "id": 10369,
+ "start": 5529.62,
+ "end": 5529.92,
+ "text": "well."
+ },
+ {
+ "id": 10370,
+ "start": 5529.92,
+ "end": 5530.08,
+ "text": "And"
+ },
+ {
+ "id": 10371,
+ "start": 5530.08,
+ "end": 5530.18,
+ "text": "I"
+ },
+ {
+ "id": 10372,
+ "start": 5530.18,
+ "end": 5530.4,
+ "text": "don't"
+ },
+ {
+ "id": 10373,
+ "start": 5530.4,
+ "end": 5530.64,
+ "text": "like"
+ },
+ {
+ "id": 10374,
+ "start": 5530.64,
+ "end": 5530.78,
+ "text": "it."
+ },
+ {
+ "id": 10375,
+ "start": 5530.78,
+ "end": 5530.94,
+ "text": "I"
+ },
+ {
+ "id": 10376,
+ "start": 5530.94,
+ "end": 5531.1,
+ "text": "can"
+ },
+ {
+ "id": 10377,
+ "start": 5531.1,
+ "end": 5531.3,
+ "text": "buy"
+ },
+ {
+ "id": 10378,
+ "start": 5531.3,
+ "end": 5531.36,
+ "text": "a"
+ },
+ {
+ "id": 10379,
+ "start": 5531.36,
+ "end": 5532.5,
+ "text": "shitty."
+ },
+ {
+ "id": 10380,
+ "start": 5532.5,
+ "end": 5532.64,
+ "text": "If"
+ },
+ {
+ "id": 10381,
+ "start": 5532.64,
+ "end": 5532.82,
+ "text": "I'm"
+ },
+ {
+ "id": 10382,
+ "start": 5532.82,
+ "end": 5533.26,
+ "text": "upset"
+ },
+ {
+ "id": 10383,
+ "start": 5533.26,
+ "end": 5533.48,
+ "text": "with"
+ },
+ {
+ "id": 10384,
+ "start": 5533.48,
+ "end": 5534.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 10385,
+ "start": 5534.12,
+ "end": 5534.84,
+ "text": "what's"
+ },
+ {
+ "id": 10386,
+ "start": 5534.84,
+ "end": 5535.02,
+ "text": "the"
+ },
+ {
+ "id": 10387,
+ "start": 5535.02,
+ "end": 5535.58,
+ "text": "equivalent"
+ },
+ {
+ "id": 10388,
+ "start": 5535.58,
+ "end": 5535.98,
+ "text": "product"
+ },
+ {
+ "id": 10389,
+ "start": 5535.98,
+ "end": 5536.18,
+ "text": "that"
+ },
+ {
+ "id": 10390,
+ "start": 5536.18,
+ "end": 5536.28,
+ "text": "I"
+ },
+ {
+ "id": 10391,
+ "start": 5536.28,
+ "end": 5536.48,
+ "text": "can"
+ },
+ {
+ "id": 10392,
+ "start": 5536.48,
+ "end": 5536.72,
+ "text": "go"
+ },
+ {
+ "id": 10393,
+ "start": 5536.72,
+ "end": 5537.66,
+ "text": "sign"
+ },
+ {
+ "id": 10394,
+ "start": 5537.66,
+ "end": 5537.78,
+ "text": "up"
+ },
+ {
+ "id": 10395,
+ "start": 5537.78,
+ "end": 5538.74,
+ "text": "for."
+ },
+ {
+ "id": 10396,
+ "start": 5538.74,
+ "end": 5539.68,
+ "text": "Well,"
+ },
+ {
+ "id": 10397,
+ "start": 5539.68,
+ "end": 5539.92,
+ "text": "the"
+ },
+ {
+ "id": 10398,
+ "start": 5539.92,
+ "end": 5540.16,
+ "text": "the"
+ },
+ {
+ "id": 10399,
+ "start": 5540.16,
+ "end": 5540.46,
+ "text": "second"
+ },
+ {
+ "id": 10400,
+ "start": 5540.46,
+ "end": 5540.88,
+ "text": "category"
+ },
+ {
+ "id": 10401,
+ "start": 5540.88,
+ "end": 5541.02,
+ "text": "that"
+ },
+ {
+ "id": 10402,
+ "start": 5541.02,
+ "end": 5541.08,
+ "text": "I"
+ },
+ {
+ "id": 10403,
+ "start": 5541.08,
+ "end": 5541.2,
+ "text": "was"
+ },
+ {
+ "id": 10404,
+ "start": 5541.2,
+ "end": 5541.34,
+ "text": "going"
+ },
+ {
+ "id": 10405,
+ "start": 5541.34,
+ "end": 5541.4,
+ "text": "to"
+ },
+ {
+ "id": 10406,
+ "start": 5541.4,
+ "end": 5541.56,
+ "text": "talk"
+ },
+ {
+ "id": 10407,
+ "start": 5541.56,
+ "end": 5541.72,
+ "text": "about,"
+ },
+ {
+ "id": 10408,
+ "start": 5541.72,
+ "end": 5541.88,
+ "text": "er,"
+ },
+ {
+ "id": 10409,
+ "start": 5541.88,
+ "end": 5542.12,
+ "text": "not"
+ },
+ {
+ "id": 10410,
+ "start": 5542.12,
+ "end": 5542.32,
+ "text": "song"
+ },
+ {
+ "id": 10411,
+ "start": 5542.32,
+ "end": 5542.46,
+ "text": "that"
+ },
+ {
+ "id": 10412,
+ "start": 5542.46,
+ "end": 5542.92,
+ "text": "categories"
+ },
+ {
+ "id": 10413,
+ "start": 5542.92,
+ "end": 5543.1,
+ "text": "I'm"
+ },
+ {
+ "id": 10414,
+ "start": 5543.1,
+ "end": 5543.36,
+ "text": "talking"
+ },
+ {
+ "id": 10415,
+ "start": 5543.36,
+ "end": 5543.6,
+ "text": "about"
+ },
+ {
+ "id": 10416,
+ "start": 5543.6,
+ "end": 5543.84,
+ "text": "is"
+ },
+ {
+ "id": 10417,
+ "start": 5543.84,
+ "end": 5543.98,
+ "text": "a"
+ },
+ {
+ "id": 10418,
+ "start": 5543.98,
+ "end": 5544.26,
+ "text": "real"
+ },
+ {
+ "id": 10419,
+ "start": 5544.26,
+ "end": 5544.94,
+ "text": "competition."
+ },
+ {
+ "id": 10420,
+ "start": 5544.94,
+ "end": 5545.16,
+ "text": "You"
+ },
+ {
+ "id": 10421,
+ "start": 5545.16,
+ "end": 5545.46,
+ "text": "face"
+ },
+ {
+ "id": 10422,
+ "start": 5545.46,
+ "end": 5546.2,
+ "text": "because"
+ },
+ {
+ "id": 10423,
+ "start": 5546.2,
+ "end": 5546.52,
+ "text": "car"
+ },
+ {
+ "id": 10424,
+ "start": 5546.52,
+ "end": 5546.94,
+ "text": "companies"
+ },
+ {
+ "id": 10425,
+ "start": 5546.94,
+ "end": 5547.18,
+ "text": "face"
+ },
+ {
+ "id": 10426,
+ "start": 5547.18,
+ "end": 5547.26,
+ "text": "a"
+ },
+ {
+ "id": 10427,
+ "start": 5547.26,
+ "end": 5547.44,
+ "text": "lot"
+ },
+ {
+ "id": 10428,
+ "start": 5547.44,
+ "end": 5547.52,
+ "text": "of"
+ },
+ {
+ "id": 10429,
+ "start": 5547.52,
+ "end": 5548.1,
+ "text": "competition."
+ },
+ {
+ "id": 10430,
+ "start": 5548.1,
+ "end": 5548.28,
+ "text": "If"
+ },
+ {
+ "id": 10431,
+ "start": 5548.28,
+ "end": 5548.48,
+ "text": "they"
+ },
+ {
+ "id": 10432,
+ "start": 5548.48,
+ "end": 5548.64,
+ "text": "make"
+ },
+ {
+ "id": 10433,
+ "start": 5548.64,
+ "end": 5548.72,
+ "text": "a"
+ },
+ {
+ "id": 10434,
+ "start": 5548.72,
+ "end": 5549.2,
+ "text": "defective"
+ },
+ {
+ "id": 10435,
+ "start": 5549.2,
+ "end": 5549.98,
+ "text": "car,"
+ },
+ {
+ "id": 10436,
+ "start": 5549.98,
+ "end": 5550.1,
+ "text": "it"
+ },
+ {
+ "id": 10437,
+ "start": 5550.1,
+ "end": 5550.3,
+ "text": "gets"
+ },
+ {
+ "id": 10438,
+ "start": 5550.3,
+ "end": 5550.52,
+ "text": "out"
+ },
+ {
+ "id": 10439,
+ "start": 5550.52,
+ "end": 5550.66,
+ "text": "in"
+ },
+ {
+ "id": 10440,
+ "start": 5550.66,
+ "end": 5550.76,
+ "text": "the"
+ },
+ {
+ "id": 10441,
+ "start": 5550.76,
+ "end": 5551.08,
+ "text": "world"
+ },
+ {
+ "id": 10442,
+ "start": 5551.08,
+ "end": 5551.42,
+ "text": "people"
+ },
+ {
+ "id": 10443,
+ "start": 5551.42,
+ "end": 5551.68,
+ "text": "stop"
+ },
+ {
+ "id": 10444,
+ "start": 5551.68,
+ "end": 5551.92,
+ "text": "buying"
+ },
+ {
+ "id": 10445,
+ "start": 5551.92,
+ "end": 5552.1,
+ "text": "that"
+ },
+ {
+ "id": 10446,
+ "start": 5552.1,
+ "end": 5552.34,
+ "text": "car"
+ },
+ {
+ "id": 10447,
+ "start": 5552.34,
+ "end": 5552.58,
+ "text": "they"
+ },
+ {
+ "id": 10448,
+ "start": 5552.58,
+ "end": 5552.72,
+ "text": "buy."
+ },
+ {
+ "id": 10449,
+ "start": 5552.72,
+ "end": 5553.06,
+ "text": "Another"
+ },
+ {
+ "id": 10450,
+ "start": 5553.06,
+ "end": 5553.2,
+ "text": "one"
+ },
+ {
+ "id": 10451,
+ "start": 5553.2,
+ "end": 5553.64,
+ "text": "is"
+ },
+ {
+ "id": 10452,
+ "start": 5553.64,
+ "end": 5553.78,
+ "text": "in"
+ },
+ {
+ "id": 10453,
+ "start": 5553.78,
+ "end": 5553.86,
+ "text": "an"
+ },
+ {
+ "id": 10454,
+ "start": 5553.86,
+ "end": 5554.72,
+ "text": "alternative"
+ },
+ {
+ "id": 10455,
+ "start": 5554.72,
+ "end": 5554.88,
+ "text": "to"
+ },
+ {
+ "id": 10456,
+ "start": 5554.88,
+ "end": 5555.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 10457,
+ "start": 5555.44,
+ "end": 5555.58,
+ "text": "in"
+ },
+ {
+ "id": 10458,
+ "start": 5555.58,
+ "end": 5555.7,
+ "text": "the"
+ },
+ {
+ "id": 10459,
+ "start": 5555.7,
+ "end": 5556.08,
+ "text": "private"
+ },
+ {
+ "id": 10460,
+ "start": 5556.08,
+ "end": 5557.06,
+ "text": "sector."
+ },
+ {
+ "id": 10461,
+ "start": 5557.06,
+ "end": 5557.82,
+ "text": "Yes,"
+ },
+ {
+ "id": 10462,
+ "start": 5557.82,
+ "end": 5558.24,
+ "text": "Senator,"
+ },
+ {
+ "id": 10463,
+ "start": 5558.24,
+ "end": 5558.44,
+ "text": "the"
+ },
+ {
+ "id": 10464,
+ "start": 5558.44,
+ "end": 5558.78,
+ "text": "average"
+ },
+ {
+ "id": 10465,
+ "start": 5558.78,
+ "end": 5559.24,
+ "text": "American"
+ },
+ {
+ "id": 10466,
+ "start": 5559.24,
+ "end": 5559.58,
+ "text": "uses"
+ },
+ {
+ "id": 10467,
+ "start": 5559.58,
+ "end": 5559.86,
+ "text": "eight"
+ },
+ {
+ "id": 10468,
+ "start": 5559.86,
+ "end": 5560.26,
+ "text": "different"
+ },
+ {
+ "id": 10469,
+ "start": 5560.26,
+ "end": 5560.58,
+ "text": "apps,"
+ },
+ {
+ "id": 10470,
+ "start": 5560.58,
+ "end": 5561.22,
+ "text": "okay,"
+ },
+ {
+ "id": 10471,
+ "start": 5561.22,
+ "end": 5561.72,
+ "text": "communicate"
+ },
+ {
+ "id": 10472,
+ "start": 5561.72,
+ "end": 5561.88,
+ "text": "with"
+ },
+ {
+ "id": 10473,
+ "start": 5561.88,
+ "end": 5562.06,
+ "text": "their"
+ },
+ {
+ "id": 10474,
+ "start": 5562.06,
+ "end": 5562.42,
+ "text": "friends"
+ },
+ {
+ "id": 10475,
+ "start": 5562.42,
+ "end": 5562.58,
+ "text": "and"
+ },
+ {
+ "id": 10476,
+ "start": 5562.58,
+ "end": 5562.82,
+ "text": "stay"
+ },
+ {
+ "id": 10477,
+ "start": 5562.82,
+ "end": 5562.9,
+ "text": "in"
+ },
+ {
+ "id": 10478,
+ "start": 5562.9,
+ "end": 5563.12,
+ "text": "touch"
+ },
+ {
+ "id": 10479,
+ "start": 5563.12,
+ "end": 5563.3,
+ "text": "with"
+ },
+ {
+ "id": 10480,
+ "start": 5563.3,
+ "end": 5563.58,
+ "text": "people,"
+ },
+ {
+ "id": 10481,
+ "start": 5563.58,
+ "end": 5564.34,
+ "text": "ranging"
+ },
+ {
+ "id": 10482,
+ "start": 5564.34,
+ "end": 5564.52,
+ "text": "from"
+ },
+ {
+ "id": 10483,
+ "start": 5564.52,
+ "end": 5565.06,
+ "text": "Technic"
+ },
+ {
+ "id": 10484,
+ "start": 5565.06,
+ "end": 5565.28,
+ "text": "apps"
+ },
+ {
+ "id": 10485,
+ "start": 5565.28,
+ "end": 5565.46,
+ "text": "to"
+ },
+ {
+ "id": 10486,
+ "start": 5565.46,
+ "end": 5565.84,
+ "text": "email"
+ },
+ {
+ "id": 10487,
+ "start": 5565.84,
+ "end": 5566.24,
+ "text": "to"
+ },
+ {
+ "id": 10488,
+ "start": 5566.24,
+ "end": 5566.46,
+ "text": "serve"
+ },
+ {
+ "id": 10489,
+ "start": 5566.46,
+ "end": 5566.58,
+ "text": "as"
+ },
+ {
+ "id": 10490,
+ "start": 5566.58,
+ "end": 5566.76,
+ "text": "you"
+ },
+ {
+ "id": 10491,
+ "start": 5566.76,
+ "end": 5567.2,
+ "text": "provide."
+ },
+ {
+ "id": 10492,
+ "start": 5567.2,
+ "end": 5567.76,
+ "text": "Well,"
+ },
+ {
+ "id": 10493,
+ "start": 5567.76,
+ "end": 5567.94,
+ "text": "we"
+ },
+ {
+ "id": 10494,
+ "start": 5567.94,
+ "end": 5568.22,
+ "text": "provide"
+ },
+ {
+ "id": 10495,
+ "start": 5568.22,
+ "end": 5568.28,
+ "text": "a"
+ },
+ {
+ "id": 10496,
+ "start": 5568.28,
+ "end": 5568.48,
+ "text": "number"
+ },
+ {
+ "id": 10497,
+ "start": 5568.48,
+ "end": 5568.56,
+ "text": "of"
+ },
+ {
+ "id": 10498,
+ "start": 5568.56,
+ "end": 5568.86,
+ "text": "difference"
+ },
+ {
+ "id": 10499,
+ "start": 5568.86,
+ "end": 5569.14,
+ "text": "is"
+ },
+ {
+ "id": 10500,
+ "start": 5569.14,
+ "end": 5569.52,
+ "text": "Twitter"
+ },
+ {
+ "id": 10501,
+ "start": 5569.52,
+ "end": 5569.78,
+ "text": "the"
+ },
+ {
+ "id": 10502,
+ "start": 5569.78,
+ "end": 5570.04,
+ "text": "same"
+ },
+ {
+ "id": 10503,
+ "start": 5570.04,
+ "end": 5570.2,
+ "text": "as"
+ },
+ {
+ "id": 10504,
+ "start": 5570.2,
+ "end": 5570.38,
+ "text": "what"
+ },
+ {
+ "id": 10505,
+ "start": 5570.38,
+ "end": 5570.52,
+ "text": "you"
+ },
+ {
+ "id": 10506,
+ "start": 5570.52,
+ "end": 5570.7,
+ "text": "do."
+ },
+ {
+ "id": 10507,
+ "start": 5570.7,
+ "end": 5571.28,
+ "text": "It"
+ },
+ {
+ "id": 10508,
+ "start": 5571.28,
+ "end": 5571.84,
+ "text": "overlaps"
+ },
+ {
+ "id": 10509,
+ "start": 5571.84,
+ "end": 5571.96,
+ "text": "of"
+ },
+ {
+ "id": 10510,
+ "start": 5571.96,
+ "end": 5572.16,
+ "text": "the"
+ },
+ {
+ "id": 10511,
+ "start": 5572.16,
+ "end": 5572.36,
+ "text": "course."
+ },
+ {
+ "id": 10512,
+ "start": 5572.36,
+ "end": 5572.46,
+ "text": "You"
+ },
+ {
+ "id": 10513,
+ "start": 5572.46,
+ "end": 5572.92,
+ "text": "don't"
+ },
+ {
+ "id": 10514,
+ "start": 5572.92,
+ "end": 5573.06,
+ "text": "you"
+ },
+ {
+ "id": 10515,
+ "start": 5573.06,
+ "end": 5573.2,
+ "text": "have"
+ },
+ {
+ "id": 10516,
+ "start": 5573.2,
+ "end": 5573.26,
+ "text": "a"
+ },
+ {
+ "id": 10517,
+ "start": 5573.26,
+ "end": 5574.8,
+ "text": "monopoly."
+ },
+ {
+ "id": 10518,
+ "start": 5574.8,
+ "end": 5576.06,
+ "text": "It"
+ },
+ {
+ "id": 10519,
+ "start": 5576.06,
+ "end": 5576.34,
+ "text": "certainly"
+ },
+ {
+ "id": 10520,
+ "start": 5576.34,
+ "end": 5576.6,
+ "text": "doesn't"
+ },
+ {
+ "id": 10521,
+ "start": 5576.6,
+ "end": 5576.76,
+ "text": "feel"
+ },
+ {
+ "id": 10522,
+ "start": 5576.76,
+ "end": 5576.9,
+ "text": "like"
+ },
+ {
+ "id": 10523,
+ "start": 5576.9,
+ "end": 5577.06,
+ "text": "that"
+ },
+ {
+ "id": 10524,
+ "start": 5577.06,
+ "end": 5577.18,
+ "text": "to"
+ },
+ {
+ "id": 10525,
+ "start": 5577.18,
+ "end": 5577.4,
+ "text": "me."
+ },
+ {
+ "id": 10526,
+ "start": 5577.4,
+ "end": 5579.28,
+ "text": "Okay,"
+ },
+ {
+ "id": 10527,
+ "start": 5579.28,
+ "end": 5580.64,
+ "text": "so"
+ },
+ {
+ "id": 10528,
+ "start": 5580.64,
+ "end": 5580.8,
+ "text": "it"
+ },
+ {
+ "id": 10529,
+ "start": 5580.8,
+ "end": 5583.74,
+ "text": "doesn't"
+ },
+ {
+ "id": 10530,
+ "start": 5583.74,
+ "end": 5584.78,
+ "text": "Instagram."
+ },
+ {
+ "id": 10531,
+ "start": 5584.78,
+ "end": 5584.96,
+ "text": "You"
+ },
+ {
+ "id": 10532,
+ "start": 5584.96,
+ "end": 5585.16,
+ "text": "bought"
+ },
+ {
+ "id": 10533,
+ "start": 5585.16,
+ "end": 5585.22,
+ "text": "an"
+ },
+ {
+ "id": 10534,
+ "start": 5585.22,
+ "end": 5585.68,
+ "text": "Instagram"
+ },
+ {
+ "id": 10535,
+ "start": 5585.68,
+ "end": 5585.84,
+ "text": "hear."
+ },
+ {
+ "id": 10536,
+ "start": 5585.84,
+ "end": 5586,
+ "text": "Did"
+ },
+ {
+ "id": 10537,
+ "start": 5586,
+ "end": 5586.1,
+ "text": "you"
+ },
+ {
+ "id": 10538,
+ "start": 5586.1,
+ "end": 5586.26,
+ "text": "buy"
+ },
+ {
+ "id": 10539,
+ "start": 5586.26,
+ "end": 5587.34,
+ "text": "Instagram"
+ },
+ {
+ "id": 10540,
+ "start": 5587.34,
+ "end": 5588.34,
+ "text": "because"
+ },
+ {
+ "id": 10541,
+ "start": 5588.34,
+ "end": 5588.78,
+ "text": "they"
+ },
+ {
+ "id": 10542,
+ "start": 5588.78,
+ "end": 5589.82,
+ "text": "were"
+ },
+ {
+ "id": 10543,
+ "start": 5589.82,
+ "end": 5590.08,
+ "text": "very"
+ },
+ {
+ "id": 10544,
+ "start": 5590.08,
+ "end": 5590.52,
+ "text": "talented"
+ },
+ {
+ "id": 10545,
+ "start": 5590.52,
+ "end": 5591.04,
+ "text": "app"
+ },
+ {
+ "id": 10546,
+ "start": 5591.04,
+ "end": 5591.58,
+ "text": "developers"
+ },
+ {
+ "id": 10547,
+ "start": 5591.58,
+ "end": 5591.78,
+ "text": "who"
+ },
+ {
+ "id": 10548,
+ "start": 5591.78,
+ "end": 5591.92,
+ "text": "are"
+ },
+ {
+ "id": 10549,
+ "start": 5591.92,
+ "end": 5592.16,
+ "text": "making"
+ },
+ {
+ "id": 10550,
+ "start": 5592.16,
+ "end": 5592.38,
+ "text": "good"
+ },
+ {
+ "id": 10551,
+ "start": 5592.38,
+ "end": 5592.58,
+ "text": "use"
+ },
+ {
+ "id": 10552,
+ "start": 5592.58,
+ "end": 5592.7,
+ "text": "of"
+ },
+ {
+ "id": 10553,
+ "start": 5592.7,
+ "end": 5592.86,
+ "text": "our"
+ },
+ {
+ "id": 10554,
+ "start": 5592.86,
+ "end": 5593.38,
+ "text": "platform"
+ },
+ {
+ "id": 10555,
+ "start": 5593.38,
+ "end": 5593.54,
+ "text": "and"
+ },
+ {
+ "id": 10556,
+ "start": 5593.54,
+ "end": 5594.02,
+ "text": "understood"
+ },
+ {
+ "id": 10557,
+ "start": 5594.02,
+ "end": 5594.16,
+ "text": "our"
+ },
+ {
+ "id": 10558,
+ "start": 5594.16,
+ "end": 5594.64,
+ "text": "values"
+ },
+ {
+ "id": 10559,
+ "start": 5594.64,
+ "end": 5595.04,
+ "text": "as"
+ },
+ {
+ "id": 10560,
+ "start": 5595.04,
+ "end": 5595.14,
+ "text": "a"
+ },
+ {
+ "id": 10561,
+ "start": 5595.14,
+ "end": 5595.34,
+ "text": "good"
+ },
+ {
+ "id": 10562,
+ "start": 5595.34,
+ "end": 5595.58,
+ "text": "bus"
+ },
+ {
+ "id": 10563,
+ "start": 5595.58,
+ "end": 5595.96,
+ "text": "decision."
+ },
+ {
+ "id": 10564,
+ "start": 5595.96,
+ "end": 5596.22,
+ "text": "My"
+ },
+ {
+ "id": 10565,
+ "start": 5596.22,
+ "end": 5596.52,
+ "text": "point"
+ },
+ {
+ "id": 10566,
+ "start": 5596.52,
+ "end": 5596.78,
+ "text": "is"
+ },
+ {
+ "id": 10567,
+ "start": 5596.78,
+ "end": 5598.52,
+ "text": "that"
+ },
+ {
+ "id": 10568,
+ "start": 5598.52,
+ "end": 5599.32,
+ "text": "one"
+ },
+ {
+ "id": 10569,
+ "start": 5599.32,
+ "end": 5599.48,
+ "text": "way"
+ },
+ {
+ "id": 10570,
+ "start": 5599.48,
+ "end": 5599.62,
+ "text": "to"
+ },
+ {
+ "id": 10571,
+ "start": 5599.62,
+ "end": 5600.08,
+ "text": "regulate"
+ },
+ {
+ "id": 10572,
+ "start": 5600.08,
+ "end": 5600.16,
+ "text": "a"
+ },
+ {
+ "id": 10573,
+ "start": 5600.16,
+ "end": 5600.58,
+ "text": "companies"
+ },
+ {
+ "id": 10574,
+ "start": 5600.58,
+ "end": 5600.8,
+ "text": "through"
+ },
+ {
+ "id": 10575,
+ "start": 5600.8,
+ "end": 5601.44,
+ "text": "competition"
+ },
+ {
+ "id": 10576,
+ "start": 5601.44,
+ "end": 5602.48,
+ "text": "through"
+ },
+ {
+ "id": 10577,
+ "start": 5602.48,
+ "end": 5602.94,
+ "text": "government"
+ },
+ {
+ "id": 10578,
+ "start": 5602.94,
+ "end": 5603.62,
+ "text": "regulation"
+ },
+ {
+ "id": 10579,
+ "start": 5603.62,
+ "end": 5604.52,
+ "text": "here's"
+ },
+ {
+ "id": 10580,
+ "start": 5604.52,
+ "end": 5604.66,
+ "text": "the"
+ },
+ {
+ "id": 10581,
+ "start": 5604.66,
+ "end": 5605.04,
+ "text": "question"
+ },
+ {
+ "id": 10582,
+ "start": 5605.04,
+ "end": 5605.3,
+ "text": "that"
+ },
+ {
+ "id": 10583,
+ "start": 5605.3,
+ "end": 5605.66,
+ "text": "all"
+ },
+ {
+ "id": 10584,
+ "start": 5605.66,
+ "end": 5605.74,
+ "text": "of"
+ },
+ {
+ "id": 10585,
+ "start": 5605.74,
+ "end": 5605.88,
+ "text": "us"
+ },
+ {
+ "id": 10586,
+ "start": 5605.88,
+ "end": 5606.04,
+ "text": "got"
+ },
+ {
+ "id": 10587,
+ "start": 5606.04,
+ "end": 5606.16,
+ "text": "an"
+ },
+ {
+ "id": 10588,
+ "start": 5606.16,
+ "end": 5606.52,
+ "text": "answer."
+ },
+ {
+ "id": 10589,
+ "start": 5606.52,
+ "end": 5606.96,
+ "text": "What"
+ },
+ {
+ "id": 10590,
+ "start": 5606.96,
+ "end": 5607.06,
+ "text": "do"
+ },
+ {
+ "id": 10591,
+ "start": 5607.06,
+ "end": 5607.2,
+ "text": "we"
+ },
+ {
+ "id": 10592,
+ "start": 5607.2,
+ "end": 5607.42,
+ "text": "tell"
+ },
+ {
+ "id": 10593,
+ "start": 5607.42,
+ "end": 5607.58,
+ "text": "our"
+ },
+ {
+ "id": 10594,
+ "start": 5607.58,
+ "end": 5608.42,
+ "text": "constituents?"
+ },
+ {
+ "id": 10595,
+ "start": 5608.42,
+ "end": 5609.38,
+ "text": "Given"
+ },
+ {
+ "id": 10596,
+ "start": 5609.38,
+ "end": 5609.68,
+ "text": "what's"
+ },
+ {
+ "id": 10597,
+ "start": 5609.68,
+ "end": 5610.14,
+ "text": "happened"
+ },
+ {
+ "id": 10598,
+ "start": 5610.14,
+ "end": 5610.96,
+ "text": "here,"
+ },
+ {
+ "id": 10599,
+ "start": 5610.96,
+ "end": 5611.56,
+ "text": "why"
+ },
+ {
+ "id": 10600,
+ "start": 5611.56,
+ "end": 5611.8,
+ "text": "we"
+ },
+ {
+ "id": 10601,
+ "start": 5611.8,
+ "end": 5612.1,
+ "text": "should"
+ },
+ {
+ "id": 10602,
+ "start": 5612.1,
+ "end": 5612.32,
+ "text": "let"
+ },
+ {
+ "id": 10603,
+ "start": 5612.32,
+ "end": 5612.48,
+ "text": "you"
+ },
+ {
+ "id": 10604,
+ "start": 5612.48,
+ "end": 5612.82,
+ "text": "self"
+ },
+ {
+ "id": 10605,
+ "start": 5612.82,
+ "end": 5613.4,
+ "text": "regulate."
+ },
+ {
+ "id": 10606,
+ "start": 5613.4,
+ "end": 5614.4,
+ "text": "What"
+ },
+ {
+ "id": 10607,
+ "start": 5614.4,
+ "end": 5614.6,
+ "text": "would"
+ },
+ {
+ "id": 10608,
+ "start": 5614.6,
+ "end": 5614.74,
+ "text": "you"
+ },
+ {
+ "id": 10609,
+ "start": 5614.74,
+ "end": 5615.12,
+ "text": "tell"
+ },
+ {
+ "id": 10610,
+ "start": 5615.12,
+ "end": 5615.46,
+ "text": "people"
+ },
+ {
+ "id": 10611,
+ "start": 5615.46,
+ "end": 5615.6,
+ "text": "in"
+ },
+ {
+ "id": 10612,
+ "start": 5615.6,
+ "end": 5615.94,
+ "text": "South"
+ },
+ {
+ "id": 10613,
+ "start": 5615.94,
+ "end": 5616.46,
+ "text": "Carolina"
+ },
+ {
+ "id": 10614,
+ "start": 5616.46,
+ "end": 5616.76,
+ "text": "that"
+ },
+ {
+ "id": 10615,
+ "start": 5616.76,
+ "end": 5616.98,
+ "text": "given"
+ },
+ {
+ "id": 10616,
+ "start": 5616.98,
+ "end": 5617.16,
+ "text": "all"
+ },
+ {
+ "id": 10617,
+ "start": 5617.16,
+ "end": 5617.3,
+ "text": "the"
+ },
+ {
+ "id": 10618,
+ "start": 5617.3,
+ "end": 5617.54,
+ "text": "things"
+ },
+ {
+ "id": 10619,
+ "start": 5617.54,
+ "end": 5617.68,
+ "text": "we"
+ },
+ {
+ "id": 10620,
+ "start": 5617.68,
+ "end": 5617.96,
+ "text": "just"
+ },
+ {
+ "id": 10621,
+ "start": 5617.96,
+ "end": 5618.5,
+ "text": "discovered"
+ },
+ {
+ "id": 10622,
+ "start": 5618.5,
+ "end": 5618.76,
+ "text": "here"
+ },
+ {
+ "id": 10623,
+ "start": 5618.76,
+ "end": 5619.56,
+ "text": "it's"
+ },
+ {
+ "id": 10624,
+ "start": 5619.56,
+ "end": 5619.66,
+ "text": "a"
+ },
+ {
+ "id": 10625,
+ "start": 5619.66,
+ "end": 5619.88,
+ "text": "good"
+ },
+ {
+ "id": 10626,
+ "start": 5619.88,
+ "end": 5620.3,
+ "text": "idea"
+ },
+ {
+ "id": 10627,
+ "start": 5620.3,
+ "end": 5620.52,
+ "text": "for"
+ },
+ {
+ "id": 10628,
+ "start": 5620.52,
+ "end": 5620.86,
+ "text": "us"
+ },
+ {
+ "id": 10629,
+ "start": 5620.86,
+ "end": 5621.26,
+ "text": "to"
+ },
+ {
+ "id": 10630,
+ "start": 5621.26,
+ "end": 5621.62,
+ "text": "rely"
+ },
+ {
+ "id": 10631,
+ "start": 5621.62,
+ "end": 5622.02,
+ "text": "upon"
+ },
+ {
+ "id": 10632,
+ "start": 5622.02,
+ "end": 5622.26,
+ "text": "you"
+ },
+ {
+ "id": 10633,
+ "start": 5622.26,
+ "end": 5622.42,
+ "text": "to"
+ },
+ {
+ "id": 10634,
+ "start": 5622.42,
+ "end": 5623.02,
+ "text": "regulate"
+ },
+ {
+ "id": 10635,
+ "start": 5623.02,
+ "end": 5623.28,
+ "text": "your"
+ },
+ {
+ "id": 10636,
+ "start": 5623.28,
+ "end": 5623.56,
+ "text": "own"
+ },
+ {
+ "id": 10637,
+ "start": 5623.56,
+ "end": 5624.34,
+ "text": "business"
+ },
+ {
+ "id": 10638,
+ "start": 5624.34,
+ "end": 5625.42,
+ "text": "practices."
+ },
+ {
+ "id": 10639,
+ "start": 5625.42,
+ "end": 5626.18,
+ "text": "Well,"
+ },
+ {
+ "id": 10640,
+ "start": 5626.18,
+ "end": 5626.68,
+ "text": "Senator,"
+ },
+ {
+ "id": 10641,
+ "start": 5626.68,
+ "end": 5627.08,
+ "text": "my"
+ },
+ {
+ "id": 10642,
+ "start": 5627.08,
+ "end": 5627.5,
+ "text": "position"
+ },
+ {
+ "id": 10643,
+ "start": 5627.5,
+ "end": 5627.68,
+ "text": "is"
+ },
+ {
+ "id": 10644,
+ "start": 5627.68,
+ "end": 5627.94,
+ "text": "not"
+ },
+ {
+ "id": 10645,
+ "start": 5627.94,
+ "end": 5628.08,
+ "text": "that"
+ },
+ {
+ "id": 10646,
+ "start": 5628.08,
+ "end": 5628.24,
+ "text": "there"
+ },
+ {
+ "id": 10647,
+ "start": 5628.24,
+ "end": 5628.48,
+ "text": "should"
+ },
+ {
+ "id": 10648,
+ "start": 5628.48,
+ "end": 5628.58,
+ "text": "be"
+ },
+ {
+ "id": 10649,
+ "start": 5628.58,
+ "end": 5628.72,
+ "text": "no"
+ },
+ {
+ "id": 10650,
+ "start": 5628.72,
+ "end": 5629.36,
+ "text": "regulation."
+ },
+ {
+ "id": 10651,
+ "start": 5629.36,
+ "end": 5629.98,
+ "text": "I"
+ },
+ {
+ "id": 10652,
+ "start": 5629.98,
+ "end": 5630.14,
+ "text": "think"
+ },
+ {
+ "id": 10653,
+ "start": 5630.14,
+ "end": 5630.28,
+ "text": "the"
+ },
+ {
+ "id": 10654,
+ "start": 5630.28,
+ "end": 5630.64,
+ "text": "Internet"
+ },
+ {
+ "id": 10655,
+ "start": 5630.64,
+ "end": 5630.76,
+ "text": "is"
+ },
+ {
+ "id": 10656,
+ "start": 5630.76,
+ "end": 5631.32,
+ "text": "increasingly"
+ },
+ {
+ "id": 10657,
+ "start": 5631.32,
+ "end": 5631.76,
+ "text": "embrace"
+ },
+ {
+ "id": 10658,
+ "start": 5631.76,
+ "end": 5632.46,
+ "text": "regulation."
+ },
+ {
+ "id": 10659,
+ "start": 5632.46,
+ "end": 5633.52,
+ "text": "I"
+ },
+ {
+ "id": 10660,
+ "start": 5633.52,
+ "end": 5633.7,
+ "text": "think"
+ },
+ {
+ "id": 10661,
+ "start": 5633.7,
+ "end": 5633.88,
+ "text": "the"
+ },
+ {
+ "id": 10662,
+ "start": 5633.88,
+ "end": 5634.14,
+ "text": "real"
+ },
+ {
+ "id": 10663,
+ "start": 5634.14,
+ "end": 5634.54,
+ "text": "question"
+ },
+ {
+ "id": 10664,
+ "start": 5634.54,
+ "end": 5635.1,
+ "text": "as"
+ },
+ {
+ "id": 10665,
+ "start": 5635.1,
+ "end": 5635.22,
+ "text": "the"
+ },
+ {
+ "id": 10666,
+ "start": 5635.22,
+ "end": 5635.58,
+ "text": "Internet"
+ },
+ {
+ "id": 10667,
+ "start": 5635.58,
+ "end": 5635.88,
+ "text": "becomes"
+ },
+ {
+ "id": 10668,
+ "start": 5635.88,
+ "end": 5636.1,
+ "text": "more"
+ },
+ {
+ "id": 10669,
+ "start": 5636.1,
+ "end": 5636.44,
+ "text": "important"
+ },
+ {
+ "id": 10670,
+ "start": 5636.44,
+ "end": 5636.52,
+ "text": "in"
+ },
+ {
+ "id": 10671,
+ "start": 5636.52,
+ "end": 5636.84,
+ "text": "people's"
+ },
+ {
+ "id": 10672,
+ "start": 5636.84,
+ "end": 5637.2,
+ "text": "lives"
+ },
+ {
+ "id": 10673,
+ "start": 5637.2,
+ "end": 5637.76,
+ "text": "is"
+ },
+ {
+ "id": 10674,
+ "start": 5637.76,
+ "end": 5637.94,
+ "text": "what"
+ },
+ {
+ "id": 10675,
+ "start": 5637.94,
+ "end": 5638.04,
+ "text": "is"
+ },
+ {
+ "id": 10676,
+ "start": 5638.04,
+ "end": 5638.29,
+ "text": "the"
+ },
+ {
+ "id": 10677,
+ "start": 5638.29,
+ "end": 5639.05,
+ "text": "regulation?"
+ },
+ {
+ "id": 10678,
+ "start": 5639.05,
+ "end": 5639.29,
+ "text": "Not"
+ },
+ {
+ "id": 10679,
+ "start": 5639.29,
+ "end": 5639.51,
+ "text": "whether"
+ },
+ {
+ "id": 10680,
+ "start": 5639.51,
+ "end": 5639.71,
+ "text": "there"
+ },
+ {
+ "id": 10681,
+ "start": 5639.71,
+ "end": 5639.95,
+ "text": "should"
+ },
+ {
+ "id": 10682,
+ "start": 5639.95,
+ "end": 5640.07,
+ "text": "be"
+ },
+ {
+ "id": 10683,
+ "start": 5640.07,
+ "end": 5640.23,
+ "text": "or"
+ },
+ {
+ "id": 10684,
+ "start": 5640.23,
+ "end": 5640.35,
+ "text": "you"
+ },
+ {
+ "id": 10685,
+ "start": 5640.35,
+ "end": 5640.53,
+ "text": "as"
+ },
+ {
+ "id": 10686,
+ "start": 5640.53,
+ "end": 5640.65,
+ "text": "a"
+ },
+ {
+ "id": 10687,
+ "start": 5640.65,
+ "end": 5641.17,
+ "text": "company."
+ },
+ {
+ "id": 10688,
+ "start": 5641.17,
+ "end": 5641.69,
+ "text": "Welcome"
+ },
+ {
+ "id": 10689,
+ "start": 5641.69,
+ "end": 5642.27,
+ "text": "regulation,"
+ },
+ {
+ "id": 10690,
+ "start": 5642.27,
+ "end": 5642.99,
+ "text": "I"
+ },
+ {
+ "id": 10691,
+ "start": 5642.99,
+ "end": 5643.15,
+ "text": "think."
+ },
+ {
+ "id": 10692,
+ "start": 5643.15,
+ "end": 5643.27,
+ "text": "If"
+ },
+ {
+ "id": 10693,
+ "start": 5643.27,
+ "end": 5643.49,
+ "text": "it's"
+ },
+ {
+ "id": 10694,
+ "start": 5643.49,
+ "end": 5643.65,
+ "text": "the"
+ },
+ {
+ "id": 10695,
+ "start": 5643.65,
+ "end": 5643.93,
+ "text": "right"
+ },
+ {
+ "id": 10696,
+ "start": 5643.93,
+ "end": 5644.45,
+ "text": "regulation,"
+ },
+ {
+ "id": 10697,
+ "start": 5644.45,
+ "end": 5644.65,
+ "text": "then"
+ },
+ {
+ "id": 10698,
+ "start": 5644.65,
+ "end": 5644.81,
+ "text": "you"
+ },
+ {
+ "id": 10699,
+ "start": 5644.81,
+ "end": 5645.03,
+ "text": "think"
+ },
+ {
+ "id": 10700,
+ "start": 5645.03,
+ "end": 5645.15,
+ "text": "the"
+ },
+ {
+ "id": 10701,
+ "start": 5645.15,
+ "end": 5645.67,
+ "text": "Europeans"
+ },
+ {
+ "id": 10702,
+ "start": 5645.67,
+ "end": 5645.85,
+ "text": "had"
+ },
+ {
+ "id": 10703,
+ "start": 5645.85,
+ "end": 5646.03,
+ "text": "it"
+ },
+ {
+ "id": 10704,
+ "start": 5646.03,
+ "end": 5646.31,
+ "text": "right."
+ },
+ {
+ "id": 10705,
+ "start": 5646.31,
+ "end": 5647.25,
+ "text": "I"
+ },
+ {
+ "id": 10706,
+ "start": 5647.25,
+ "end": 5647.43,
+ "text": "think"
+ },
+ {
+ "id": 10707,
+ "start": 5647.43,
+ "end": 5647.57,
+ "text": "that"
+ },
+ {
+ "id": 10708,
+ "start": 5647.57,
+ "end": 5647.85,
+ "text": "they"
+ },
+ {
+ "id": 10709,
+ "start": 5647.85,
+ "end": 5648.29,
+ "text": "get"
+ },
+ {
+ "id": 10710,
+ "start": 5648.29,
+ "end": 5648.77,
+ "text": "things"
+ },
+ {
+ "id": 10711,
+ "start": 5648.77,
+ "end": 5649.07,
+ "text": "right."
+ },
+ {
+ "id": 10712,
+ "start": 5649.07,
+ "end": 5649.31,
+ "text": "Have"
+ },
+ {
+ "id": 10713,
+ "start": 5649.31,
+ "end": 5649.43,
+ "text": "you"
+ },
+ {
+ "id": 10714,
+ "start": 5649.43,
+ "end": 5649.69,
+ "text": "ever"
+ },
+ {
+ "id": 10715,
+ "start": 5649.69,
+ "end": 5651.16,
+ "text": "submitted"
+ },
+ {
+ "id": 10716,
+ "start": 5651.16,
+ "end": 5652.34,
+ "text": "that's"
+ },
+ {
+ "id": 10717,
+ "start": 5652.34,
+ "end": 5653.24,
+ "text": "true."
+ },
+ {
+ "id": 10718,
+ "start": 5653.24,
+ "end": 5654.38,
+ "text": "So,"
+ },
+ {
+ "id": 10719,
+ "start": 5654.38,
+ "end": 5654.64,
+ "text": "would"
+ },
+ {
+ "id": 10720,
+ "start": 5654.64,
+ "end": 5654.78,
+ "text": "you"
+ },
+ {
+ "id": 10721,
+ "start": 5654.78,
+ "end": 5655.04,
+ "text": "work"
+ },
+ {
+ "id": 10722,
+ "start": 5655.04,
+ "end": 5655.24,
+ "text": "with"
+ },
+ {
+ "id": 10723,
+ "start": 5655.24,
+ "end": 5655.52,
+ "text": "us"
+ },
+ {
+ "id": 10724,
+ "start": 5655.52,
+ "end": 5655.7,
+ "text": "in"
+ },
+ {
+ "id": 10725,
+ "start": 5655.7,
+ "end": 5656,
+ "text": "terms"
+ },
+ {
+ "id": 10726,
+ "start": 5656,
+ "end": 5656.14,
+ "text": "of"
+ },
+ {
+ "id": 10727,
+ "start": 5656.14,
+ "end": 5656.32,
+ "text": "what"
+ },
+ {
+ "id": 10728,
+ "start": 5656.32,
+ "end": 5657.02,
+ "text": "regulations"
+ },
+ {
+ "id": 10729,
+ "start": 5657.02,
+ "end": 5657.24,
+ "text": "you"
+ },
+ {
+ "id": 10730,
+ "start": 5657.24,
+ "end": 5657.44,
+ "text": "think"
+ },
+ {
+ "id": 10731,
+ "start": 5657.44,
+ "end": 5657.6,
+ "text": "are"
+ },
+ {
+ "id": 10732,
+ "start": 5657.6,
+ "end": 5658.16,
+ "text": "necessary"
+ },
+ {
+ "id": 10733,
+ "start": 5658.16,
+ "end": 5658.26,
+ "text": "in"
+ },
+ {
+ "id": 10734,
+ "start": 5658.26,
+ "end": 5658.44,
+ "text": "your"
+ },
+ {
+ "id": 10735,
+ "start": 5658.44,
+ "end": 5658.86,
+ "text": "industry,"
+ },
+ {
+ "id": 10736,
+ "start": 5658.86,
+ "end": 5659.86,
+ "text": "absolutely,"
+ },
+ {
+ "id": 10737,
+ "start": 5659.86,
+ "end": 5660.3,
+ "text": "okay,"
+ },
+ {
+ "id": 10738,
+ "start": 5660.3,
+ "end": 5660.5,
+ "text": "would"
+ },
+ {
+ "id": 10739,
+ "start": 5660.5,
+ "end": 5660.64,
+ "text": "you"
+ },
+ {
+ "id": 10740,
+ "start": 5660.64,
+ "end": 5661.02,
+ "text": "submit"
+ },
+ {
+ "id": 10741,
+ "start": 5661.02,
+ "end": 5661.52,
+ "text": "some"
+ },
+ {
+ "id": 10742,
+ "start": 5661.52,
+ "end": 5661.9,
+ "text": "proposed"
+ },
+ {
+ "id": 10743,
+ "start": 5661.9,
+ "end": 5662.56,
+ "text": "regulations?"
+ },
+ {
+ "id": 10744,
+ "start": 5662.56,
+ "end": 5663.46,
+ "text": "Yes,"
+ },
+ {
+ "id": 10745,
+ "start": 5663.46,
+ "end": 5663.62,
+ "text": "and"
+ },
+ {
+ "id": 10746,
+ "start": 5663.62,
+ "end": 5663.82,
+ "text": "I'll"
+ },
+ {
+ "id": 10747,
+ "start": 5663.82,
+ "end": 5663.96,
+ "text": "have"
+ },
+ {
+ "id": 10748,
+ "start": 5663.96,
+ "end": 5664.12,
+ "text": "my"
+ },
+ {
+ "id": 10749,
+ "start": 5664.12,
+ "end": 5664.42,
+ "text": "team"
+ },
+ {
+ "id": 10750,
+ "start": 5664.42,
+ "end": 5664.72,
+ "text": "follow"
+ },
+ {
+ "id": 10751,
+ "start": 5664.72,
+ "end": 5664.84,
+ "text": "up"
+ },
+ {
+ "id": 10752,
+ "start": 5664.84,
+ "end": 5665.08,
+ "text": "with"
+ },
+ {
+ "id": 10753,
+ "start": 5665.08,
+ "end": 5665.3,
+ "text": "you?"
+ },
+ {
+ "id": 10754,
+ "start": 5665.3,
+ "end": 5665.64,
+ "text": "So"
+ },
+ {
+ "id": 10755,
+ "start": 5665.64,
+ "end": 5665.78,
+ "text": "that"
+ },
+ {
+ "id": 10756,
+ "start": 5665.78,
+ "end": 5665.94,
+ "text": "way"
+ },
+ {
+ "id": 10757,
+ "start": 5665.94,
+ "end": 5666.1,
+ "text": "we"
+ },
+ {
+ "id": 10758,
+ "start": 5666.1,
+ "end": 5666.34,
+ "text": "can"
+ },
+ {
+ "id": 10759,
+ "start": 5666.34,
+ "end": 5666.96,
+ "text": "have"
+ },
+ {
+ "id": 10760,
+ "start": 5666.96,
+ "end": 5667.12,
+ "text": "this"
+ },
+ {
+ "id": 10761,
+ "start": 5667.12,
+ "end": 5667.52,
+ "text": "discussion"
+ },
+ {
+ "id": 10762,
+ "start": 5667.52,
+ "end": 5667.8,
+ "text": "across"
+ },
+ {
+ "id": 10763,
+ "start": 5667.8,
+ "end": 5667.94,
+ "text": "the"
+ },
+ {
+ "id": 10764,
+ "start": 5667.94,
+ "end": 5668.22,
+ "text": "different"
+ },
+ {
+ "id": 10765,
+ "start": 5668.22,
+ "end": 5668.76,
+ "text": "categories"
+ },
+ {
+ "id": 10766,
+ "start": 5668.76,
+ "end": 5669.06,
+ "text": "where"
+ },
+ {
+ "id": 10767,
+ "start": 5669.06,
+ "end": 5669.42,
+ "text": "I"
+ },
+ {
+ "id": 10768,
+ "start": 5669.42,
+ "end": 5669.58,
+ "text": "think"
+ },
+ {
+ "id": 10769,
+ "start": 5669.58,
+ "end": 5669.7,
+ "text": "that"
+ },
+ {
+ "id": 10770,
+ "start": 5669.7,
+ "end": 5669.88,
+ "text": "this"
+ },
+ {
+ "id": 10771,
+ "start": 5669.88,
+ "end": 5670.26,
+ "text": "discussion"
+ },
+ {
+ "id": 10772,
+ "start": 5670.26,
+ "end": 5670.46,
+ "text": "needs"
+ },
+ {
+ "id": 10773,
+ "start": 5670.46,
+ "end": 5670.56,
+ "text": "to"
+ },
+ {
+ "id": 10774,
+ "start": 5670.56,
+ "end": 5671.1,
+ "text": "forward"
+ },
+ {
+ "id": 10775,
+ "start": 5671.1,
+ "end": 5671.28,
+ "text": "to?"
+ },
+ {
+ "id": 10776,
+ "start": 5671.28,
+ "end": 5671.5,
+ "text": "When"
+ },
+ {
+ "id": 10777,
+ "start": 5671.5,
+ "end": 5671.64,
+ "text": "you"
+ },
+ {
+ "id": 10778,
+ "start": 5671.64,
+ "end": 5671.88,
+ "text": "sign"
+ },
+ {
+ "id": 10779,
+ "start": 5671.88,
+ "end": 5671.98,
+ "text": "up"
+ },
+ {
+ "id": 10780,
+ "start": 5671.98,
+ "end": 5672.16,
+ "text": "for"
+ },
+ {
+ "id": 10781,
+ "start": 5672.16,
+ "end": 5672.74,
+ "text": "Facebook,"
+ },
+ {
+ "id": 10782,
+ "start": 5672.74,
+ "end": 5673.52,
+ "text": "you"
+ },
+ {
+ "id": 10783,
+ "start": 5673.52,
+ "end": 5673.94,
+ "text": "sign"
+ },
+ {
+ "id": 10784,
+ "start": 5673.94,
+ "end": 5674.2,
+ "text": "up"
+ },
+ {
+ "id": 10785,
+ "start": 5674.2,
+ "end": 5674.82,
+ "text": "for"
+ },
+ {
+ "id": 10786,
+ "start": 5674.82,
+ "end": 5675.18,
+ "text": "terms"
+ },
+ {
+ "id": 10787,
+ "start": 5675.18,
+ "end": 5675.32,
+ "text": "of"
+ },
+ {
+ "id": 10788,
+ "start": 5675.32,
+ "end": 5675.68,
+ "text": "service,"
+ },
+ {
+ "id": 10789,
+ "start": 5675.68,
+ "end": 5675.84,
+ "text": "are"
+ },
+ {
+ "id": 10790,
+ "start": 5675.84,
+ "end": 5675.96,
+ "text": "you"
+ },
+ {
+ "id": 10791,
+ "start": 5675.96,
+ "end": 5676.26,
+ "text": "familiar"
+ },
+ {
+ "id": 10792,
+ "start": 5676.26,
+ "end": 5676.38,
+ "text": "with"
+ },
+ {
+ "id": 10793,
+ "start": 5676.38,
+ "end": 5676.58,
+ "text": "that?"
+ },
+ {
+ "id": 10794,
+ "start": 5676.58,
+ "end": 5677.44,
+ "text": "Yes,"
+ },
+ {
+ "id": 10795,
+ "start": 5677.44,
+ "end": 5678.52,
+ "text": "okay,"
+ },
+ {
+ "id": 10796,
+ "start": 5678.52,
+ "end": 5679.18,
+ "text": "it"
+ },
+ {
+ "id": 10797,
+ "start": 5679.18,
+ "end": 5679.62,
+ "text": "says"
+ },
+ {
+ "id": 10798,
+ "start": 5679.62,
+ "end": 5680.38,
+ "text": "the"
+ },
+ {
+ "id": 10799,
+ "start": 5680.38,
+ "end": 5680.76,
+ "text": "terms"
+ },
+ {
+ "id": 10800,
+ "start": 5680.76,
+ "end": 5681.12,
+ "text": "govern"
+ },
+ {
+ "id": 10801,
+ "start": 5681.12,
+ "end": 5681.34,
+ "text": "our"
+ },
+ {
+ "id": 10802,
+ "start": 5681.34,
+ "end": 5681.56,
+ "text": "use"
+ },
+ {
+ "id": 10803,
+ "start": 5681.56,
+ "end": 5681.7,
+ "text": "of"
+ },
+ {
+ "id": 10804,
+ "start": 5681.7,
+ "end": 5682.24,
+ "text": "Facebook"
+ },
+ {
+ "id": 10805,
+ "start": 5682.24,
+ "end": 5682.4,
+ "text": "and"
+ },
+ {
+ "id": 10806,
+ "start": 5682.4,
+ "end": 5682.52,
+ "text": "the"
+ },
+ {
+ "id": 10807,
+ "start": 5682.52,
+ "end": 5682.96,
+ "text": "products"
+ },
+ {
+ "id": 10808,
+ "start": 5682.96,
+ "end": 5683.6,
+ "text": "features"
+ },
+ {
+ "id": 10809,
+ "start": 5683.6,
+ "end": 5684.02,
+ "text": "app"
+ },
+ {
+ "id": 10810,
+ "start": 5684.02,
+ "end": 5684.52,
+ "text": "services"
+ },
+ {
+ "id": 10811,
+ "start": 5684.52,
+ "end": 5685.18,
+ "text": "technology"
+ },
+ {
+ "id": 10812,
+ "start": 5685.18,
+ "end": 5685.74,
+ "text": "software."
+ },
+ {
+ "id": 10813,
+ "start": 5685.74,
+ "end": 5685.92,
+ "text": "We"
+ },
+ {
+ "id": 10814,
+ "start": 5685.92,
+ "end": 5686.28,
+ "text": "offer"
+ },
+ {
+ "id": 10815,
+ "start": 5686.28,
+ "end": 5687.26,
+ "text": "Facebook's"
+ },
+ {
+ "id": 10816,
+ "start": 5687.26,
+ "end": 5687.7,
+ "text": "products"
+ },
+ {
+ "id": 10817,
+ "start": 5687.7,
+ "end": 5687.88,
+ "text": "or"
+ },
+ {
+ "id": 10818,
+ "start": 5687.88,
+ "end": 5688.72,
+ "text": "products,"
+ },
+ {
+ "id": 10819,
+ "start": 5688.72,
+ "end": 5689.06,
+ "text": "except"
+ },
+ {
+ "id": 10820,
+ "start": 5689.06,
+ "end": 5689.28,
+ "text": "where"
+ },
+ {
+ "id": 10821,
+ "start": 5689.28,
+ "end": 5689.38,
+ "text": "we"
+ },
+ {
+ "id": 10822,
+ "start": 5689.38,
+ "end": 5690,
+ "text": "expressly"
+ },
+ {
+ "id": 10823,
+ "start": 5690,
+ "end": 5690.36,
+ "text": "state"
+ },
+ {
+ "id": 10824,
+ "start": 5690.36,
+ "end": 5690.6,
+ "text": "that"
+ },
+ {
+ "id": 10825,
+ "start": 5690.6,
+ "end": 5691,
+ "text": "separate"
+ },
+ {
+ "id": 10826,
+ "start": 5691,
+ "end": 5691.36,
+ "text": "terms"
+ },
+ {
+ "id": 10827,
+ "start": 5691.36,
+ "end": 5691.62,
+ "text": "and"
+ },
+ {
+ "id": 10828,
+ "start": 5691.62,
+ "end": 5691.84,
+ "text": "not"
+ },
+ {
+ "id": 10829,
+ "start": 5691.84,
+ "end": 5692.1,
+ "text": "these"
+ },
+ {
+ "id": 10830,
+ "start": 5692.1,
+ "end": 5692.62,
+ "text": "apply"
+ },
+ {
+ "id": 10831,
+ "start": 5692.62,
+ "end": 5693.32,
+ "text": "I'm"
+ },
+ {
+ "id": 10832,
+ "start": 5693.32,
+ "end": 5693.42,
+ "text": "a"
+ },
+ {
+ "id": 10833,
+ "start": 5693.42,
+ "end": 5693.68,
+ "text": "lawyer."
+ },
+ {
+ "id": 10834,
+ "start": 5693.68,
+ "end": 5693.74,
+ "text": "I"
+ },
+ {
+ "id": 10835,
+ "start": 5693.74,
+ "end": 5693.88,
+ "text": "have"
+ },
+ {
+ "id": 10836,
+ "start": 5693.88,
+ "end": 5694,
+ "text": "no"
+ },
+ {
+ "id": 10837,
+ "start": 5694,
+ "end": 5694.22,
+ "text": "idea"
+ },
+ {
+ "id": 10838,
+ "start": 5694.22,
+ "end": 5694.38,
+ "text": "what"
+ },
+ {
+ "id": 10839,
+ "start": 5694.38,
+ "end": 5694.54,
+ "text": "that"
+ },
+ {
+ "id": 10840,
+ "start": 5694.54,
+ "end": 5694.82,
+ "text": "means."
+ },
+ {
+ "id": 10841,
+ "start": 5694.82,
+ "end": 5695.48,
+ "text": "But"
+ },
+ {
+ "id": 10842,
+ "start": 5695.48,
+ "end": 5695.62,
+ "text": "when"
+ },
+ {
+ "id": 10843,
+ "start": 5695.62,
+ "end": 5695.78,
+ "text": "you"
+ },
+ {
+ "id": 10844,
+ "start": 5695.78,
+ "end": 5695.98,
+ "text": "look"
+ },
+ {
+ "id": 10845,
+ "start": 5695.98,
+ "end": 5696.1,
+ "text": "at"
+ },
+ {
+ "id": 10846,
+ "start": 5696.1,
+ "end": 5696.48,
+ "text": "terms"
+ },
+ {
+ "id": 10847,
+ "start": 5696.48,
+ "end": 5696.62,
+ "text": "of"
+ },
+ {
+ "id": 10848,
+ "start": 5696.62,
+ "end": 5697.02,
+ "text": "service,"
+ },
+ {
+ "id": 10849,
+ "start": 5697.02,
+ "end": 5697.64,
+ "text": "this"
+ },
+ {
+ "id": 10850,
+ "start": 5697.64,
+ "end": 5697.78,
+ "text": "is"
+ },
+ {
+ "id": 10851,
+ "start": 5697.78,
+ "end": 5697.96,
+ "text": "what"
+ },
+ {
+ "id": 10852,
+ "start": 5697.96,
+ "end": 5698.14,
+ "text": "you"
+ },
+ {
+ "id": 10853,
+ "start": 5698.14,
+ "end": 5698.92,
+ "text": "get."
+ },
+ {
+ "id": 10854,
+ "start": 5698.92,
+ "end": 5699.46,
+ "text": "Do"
+ },
+ {
+ "id": 10855,
+ "start": 5699.46,
+ "end": 5699.6,
+ "text": "you"
+ },
+ {
+ "id": 10856,
+ "start": 5699.6,
+ "end": 5699.76,
+ "text": "think"
+ },
+ {
+ "id": 10857,
+ "start": 5699.76,
+ "end": 5699.92,
+ "text": "the"
+ },
+ {
+ "id": 10858,
+ "start": 5699.92,
+ "end": 5700.38,
+ "text": "average"
+ },
+ {
+ "id": 10859,
+ "start": 5700.38,
+ "end": 5701.06,
+ "text": "consumer"
+ },
+ {
+ "id": 10860,
+ "start": 5701.06,
+ "end": 5702.2,
+ "text": "understands"
+ },
+ {
+ "id": 10861,
+ "start": 5702.2,
+ "end": 5702.4,
+ "text": "what"
+ },
+ {
+ "id": 10862,
+ "start": 5702.4,
+ "end": 5702.62,
+ "text": "they're"
+ },
+ {
+ "id": 10863,
+ "start": 5702.62,
+ "end": 5702.98,
+ "text": "signing"
+ },
+ {
+ "id": 10864,
+ "start": 5702.98,
+ "end": 5703.14,
+ "text": "up"
+ },
+ {
+ "id": 10865,
+ "start": 5703.14,
+ "end": 5704.38,
+ "text": "for?"
+ },
+ {
+ "id": 10866,
+ "start": 5704.38,
+ "end": 5704.6,
+ "text": "I"
+ },
+ {
+ "id": 10867,
+ "start": 5704.6,
+ "end": 5705.62,
+ "text": "don't"
+ },
+ {
+ "id": 10868,
+ "start": 5705.62,
+ "end": 5705.84,
+ "text": "think"
+ },
+ {
+ "id": 10869,
+ "start": 5705.84,
+ "end": 5705.98,
+ "text": "that"
+ },
+ {
+ "id": 10870,
+ "start": 5705.98,
+ "end": 5706.12,
+ "text": "the"
+ },
+ {
+ "id": 10871,
+ "start": 5706.12,
+ "end": 5706.5,
+ "text": "average"
+ },
+ {
+ "id": 10872,
+ "start": 5706.5,
+ "end": 5706.94,
+ "text": "person"
+ },
+ {
+ "id": 10873,
+ "start": 5706.94,
+ "end": 5707.58,
+ "text": "likely"
+ },
+ {
+ "id": 10874,
+ "start": 5707.58,
+ "end": 5707.92,
+ "text": "reads"
+ },
+ {
+ "id": 10875,
+ "start": 5707.92,
+ "end": 5708.16,
+ "text": "that"
+ },
+ {
+ "id": 10876,
+ "start": 5708.16,
+ "end": 5708.38,
+ "text": "whole"
+ },
+ {
+ "id": 10877,
+ "start": 5708.38,
+ "end": 5708.84,
+ "text": "document,"
+ },
+ {
+ "id": 10878,
+ "start": 5708.84,
+ "end": 5709.2,
+ "text": "but"
+ },
+ {
+ "id": 10879,
+ "start": 5709.2,
+ "end": 5709.24,
+ "text": "I"
+ },
+ {
+ "id": 10880,
+ "start": 5709.24,
+ "end": 5709.4,
+ "text": "think"
+ },
+ {
+ "id": 10881,
+ "start": 5709.4,
+ "end": 5709.5,
+ "text": "that"
+ },
+ {
+ "id": 10882,
+ "start": 5709.5,
+ "end": 5709.64,
+ "text": "there"
+ },
+ {
+ "id": 10883,
+ "start": 5709.64,
+ "end": 5709.74,
+ "text": "are"
+ },
+ {
+ "id": 10884,
+ "start": 5709.74,
+ "end": 5710.04,
+ "text": "different"
+ },
+ {
+ "id": 10885,
+ "start": 5710.04,
+ "end": 5710.32,
+ "text": "ways"
+ },
+ {
+ "id": 10886,
+ "start": 5710.32,
+ "end": 5710.56,
+ "text": "that"
+ },
+ {
+ "id": 10887,
+ "start": 5710.56,
+ "end": 5710.66,
+ "text": "we"
+ },
+ {
+ "id": 10888,
+ "start": 5710.66,
+ "end": 5710.86,
+ "text": "can"
+ },
+ {
+ "id": 10889,
+ "start": 5710.86,
+ "end": 5711.42,
+ "text": "communicate"
+ },
+ {
+ "id": 10890,
+ "start": 5711.42,
+ "end": 5711.58,
+ "text": "that"
+ },
+ {
+ "id": 10891,
+ "start": 5711.58,
+ "end": 5711.72,
+ "text": "and"
+ },
+ {
+ "id": 10892,
+ "start": 5711.72,
+ "end": 5711.88,
+ "text": "have"
+ },
+ {
+ "id": 10893,
+ "start": 5711.88,
+ "end": 5711.94,
+ "text": "a"
+ },
+ {
+ "id": 10894,
+ "start": 5711.94,
+ "end": 5712.7,
+ "text": "responsibility"
+ },
+ {
+ "id": 10895,
+ "start": 5712.7,
+ "end": 5712.8,
+ "text": "to"
+ },
+ {
+ "id": 10896,
+ "start": 5712.8,
+ "end": 5712.96,
+ "text": "do."
+ },
+ {
+ "id": 10897,
+ "start": 5712.96,
+ "end": 5713.2,
+ "text": "So"
+ },
+ {
+ "id": 10898,
+ "start": 5713.2,
+ "end": 5713.38,
+ "text": "do"
+ },
+ {
+ "id": 10899,
+ "start": 5713.38,
+ "end": 5713.9,
+ "text": "you"
+ },
+ {
+ "id": 10900,
+ "start": 5713.9,
+ "end": 5714.14,
+ "text": "agree"
+ },
+ {
+ "id": 10901,
+ "start": 5714.14,
+ "end": 5714.28,
+ "text": "with"
+ },
+ {
+ "id": 10902,
+ "start": 5714.28,
+ "end": 5714.4,
+ "text": "me?"
+ },
+ {
+ "id": 10903,
+ "start": 5714.4,
+ "end": 5714.6,
+ "text": "That"
+ },
+ {
+ "id": 10904,
+ "start": 5714.6,
+ "end": 5714.72,
+ "text": "you"
+ },
+ {
+ "id": 10905,
+ "start": 5714.72,
+ "end": 5715.02,
+ "text": "better"
+ },
+ {
+ "id": 10906,
+ "start": 5715.02,
+ "end": 5715.18,
+ "text": "come"
+ },
+ {
+ "id": 10907,
+ "start": 5715.18,
+ "end": 5715.3,
+ "text": "up"
+ },
+ {
+ "id": 10908,
+ "start": 5715.3,
+ "end": 5715.44,
+ "text": "with"
+ },
+ {
+ "id": 10909,
+ "start": 5715.44,
+ "end": 5715.76,
+ "text": "different"
+ },
+ {
+ "id": 10910,
+ "start": 5715.76,
+ "end": 5716.06,
+ "text": "ways"
+ },
+ {
+ "id": 10911,
+ "start": 5716.06,
+ "end": 5716.38,
+ "text": "because"
+ },
+ {
+ "id": 10912,
+ "start": 5716.38,
+ "end": 5716.6,
+ "text": "this"
+ },
+ {
+ "id": 10913,
+ "start": 5716.6,
+ "end": 5716.68,
+ "text": "I"
+ },
+ {
+ "id": 10914,
+ "start": 5716.68,
+ "end": 5716.92,
+ "text": "ain't"
+ },
+ {
+ "id": 10915,
+ "start": 5716.92,
+ "end": 5718.86,
+ "text": "working"
+ },
+ {
+ "id": 10916,
+ "start": 5718.86,
+ "end": 5719.86,
+ "text": "well,"
+ },
+ {
+ "id": 10917,
+ "start": 5719.86,
+ "end": 5720.26,
+ "text": "Senator,"
+ },
+ {
+ "id": 10918,
+ "start": 5720.26,
+ "end": 5720.34,
+ "text": "I"
+ },
+ {
+ "id": 10919,
+ "start": 5720.34,
+ "end": 5720.52,
+ "text": "think"
+ },
+ {
+ "id": 10920,
+ "start": 5720.52,
+ "end": 5720.68,
+ "text": "in"
+ },
+ {
+ "id": 10921,
+ "start": 5720.68,
+ "end": 5721.04,
+ "text": "certain"
+ },
+ {
+ "id": 10922,
+ "start": 5721.04,
+ "end": 5721.46,
+ "text": "areas"
+ },
+ {
+ "id": 10923,
+ "start": 5721.46,
+ "end": 5722.24,
+ "text": "that"
+ },
+ {
+ "id": 10924,
+ "start": 5722.24,
+ "end": 5722.76,
+ "text": "is"
+ },
+ {
+ "id": 10925,
+ "start": 5722.76,
+ "end": 5723.26,
+ "text": "true."
+ },
+ {
+ "id": 10926,
+ "start": 5723.26,
+ "end": 5723.7,
+ "text": "And"
+ },
+ {
+ "id": 10927,
+ "start": 5723.7,
+ "end": 5723.76,
+ "text": "I"
+ },
+ {
+ "id": 10928,
+ "start": 5723.76,
+ "end": 5723.94,
+ "text": "think"
+ },
+ {
+ "id": 10929,
+ "start": 5723.94,
+ "end": 5724.06,
+ "text": "in"
+ },
+ {
+ "id": 10930,
+ "start": 5724.06,
+ "end": 5724.3,
+ "text": "other"
+ },
+ {
+ "id": 10931,
+ "start": 5724.3,
+ "end": 5724.62,
+ "text": "areas"
+ },
+ {
+ "id": 10932,
+ "start": 5724.62,
+ "end": 5724.8,
+ "text": "like"
+ },
+ {
+ "id": 10933,
+ "start": 5724.8,
+ "end": 5724.92,
+ "text": "the"
+ },
+ {
+ "id": 10934,
+ "start": 5724.92,
+ "end": 5725.24,
+ "text": "core"
+ },
+ {
+ "id": 10935,
+ "start": 5725.24,
+ "end": 5725.48,
+ "text": "part"
+ },
+ {
+ "id": 10936,
+ "start": 5725.48,
+ "end": 5725.56,
+ "text": "of"
+ },
+ {
+ "id": 10937,
+ "start": 5725.56,
+ "end": 5725.72,
+ "text": "what"
+ },
+ {
+ "id": 10938,
+ "start": 5725.72,
+ "end": 5725.82,
+ "text": "we"
+ },
+ {
+ "id": 10939,
+ "start": 5725.82,
+ "end": 5726.04,
+ "text": "do."
+ },
+ {
+ "id": 10940,
+ "start": 5726.04,
+ "end": 5726.48,
+ "text": "But"
+ },
+ {
+ "id": 10941,
+ "start": 5726.48,
+ "end": 5726.56,
+ "text": "if"
+ },
+ {
+ "id": 10942,
+ "start": 5726.56,
+ "end": 5726.84,
+ "text": "you"
+ },
+ {
+ "id": 10943,
+ "start": 5726.84,
+ "end": 5726.98,
+ "text": "think"
+ },
+ {
+ "id": 10944,
+ "start": 5726.98,
+ "end": 5727.18,
+ "text": "about"
+ },
+ {
+ "id": 10945,
+ "start": 5727.18,
+ "end": 5727.32,
+ "text": "just"
+ },
+ {
+ "id": 10946,
+ "start": 5727.32,
+ "end": 5727.46,
+ "text": "at"
+ },
+ {
+ "id": 10947,
+ "start": 5727.46,
+ "end": 5727.56,
+ "text": "the"
+ },
+ {
+ "id": 10948,
+ "start": 5727.56,
+ "end": 5727.76,
+ "text": "most"
+ },
+ {
+ "id": 10949,
+ "start": 5727.76,
+ "end": 5728.12,
+ "text": "basic"
+ },
+ {
+ "id": 10950,
+ "start": 5728.12,
+ "end": 5728.4,
+ "text": "level,"
+ },
+ {
+ "id": 10951,
+ "start": 5728.4,
+ "end": 5729.24,
+ "text": "people"
+ },
+ {
+ "id": 10952,
+ "start": 5729.24,
+ "end": 5729.48,
+ "text": "come"
+ },
+ {
+ "id": 10953,
+ "start": 5729.48,
+ "end": 5729.64,
+ "text": "to"
+ },
+ {
+ "id": 10954,
+ "start": 5729.64,
+ "end": 5730.2,
+ "text": "Facebook"
+ },
+ {
+ "id": 10955,
+ "start": 5730.2,
+ "end": 5730.72,
+ "text": "Instagram"
+ },
+ {
+ "id": 10956,
+ "start": 5730.72,
+ "end": 5730.96,
+ "text": "what's"
+ },
+ {
+ "id": 10957,
+ "start": 5730.96,
+ "end": 5731.2,
+ "text": "that"
+ },
+ {
+ "id": 10958,
+ "start": 5731.2,
+ "end": 5732.02,
+ "text": "Messenger"
+ },
+ {
+ "id": 10959,
+ "start": 5732.02,
+ "end": 5732.66,
+ "text": "about"
+ },
+ {
+ "id": 10960,
+ "start": 5732.66,
+ "end": 5733.54,
+ "text": "100,000,000,000"
+ },
+ {
+ "id": 10961,
+ "start": 5733.54,
+ "end": 5733.92,
+ "text": "times"
+ },
+ {
+ "id": 10962,
+ "start": 5733.92,
+ "end": 5734.02,
+ "text": "a"
+ },
+ {
+ "id": 10963,
+ "start": 5734.02,
+ "end": 5734.2,
+ "text": "day"
+ },
+ {
+ "id": 10964,
+ "start": 5734.2,
+ "end": 5734.8,
+ "text": "to"
+ },
+ {
+ "id": 10965,
+ "start": 5734.8,
+ "end": 5735.12,
+ "text": "share"
+ },
+ {
+ "id": 10966,
+ "start": 5735.12,
+ "end": 5735.18,
+ "text": "a"
+ },
+ {
+ "id": 10967,
+ "start": 5735.18,
+ "end": 5735.48,
+ "text": "piece"
+ },
+ {
+ "id": 10968,
+ "start": 5735.48,
+ "end": 5735.6,
+ "text": "of"
+ },
+ {
+ "id": 10969,
+ "start": 5735.6,
+ "end": 5736,
+ "text": "content"
+ },
+ {
+ "id": 10970,
+ "start": 5736,
+ "end": 5736.12,
+ "text": "or"
+ },
+ {
+ "id": 10971,
+ "start": 5736.12,
+ "end": 5736.22,
+ "text": "a"
+ },
+ {
+ "id": 10972,
+ "start": 5736.22,
+ "end": 5736.66,
+ "text": "message"
+ },
+ {
+ "id": 10973,
+ "start": 5736.66,
+ "end": 5737.14,
+ "text": "with"
+ },
+ {
+ "id": 10974,
+ "start": 5737.14,
+ "end": 5737.24,
+ "text": "a"
+ },
+ {
+ "id": 10975,
+ "start": 5737.24,
+ "end": 5737.78,
+ "text": "specific"
+ },
+ {
+ "id": 10976,
+ "start": 5737.78,
+ "end": 5737.98,
+ "text": "set"
+ },
+ {
+ "id": 10977,
+ "start": 5737.98,
+ "end": 5738.08,
+ "text": "of"
+ },
+ {
+ "id": 10978,
+ "start": 5738.08,
+ "end": 5738.36,
+ "text": "people."
+ },
+ {
+ "id": 10979,
+ "start": 5738.36,
+ "end": 5739.22,
+ "text": "And"
+ },
+ {
+ "id": 10980,
+ "start": 5739.22,
+ "end": 5739.66,
+ "text": "I"
+ },
+ {
+ "id": 10981,
+ "start": 5739.66,
+ "end": 5739.86,
+ "text": "think"
+ },
+ {
+ "id": 10982,
+ "start": 5739.86,
+ "end": 5740,
+ "text": "that"
+ },
+ {
+ "id": 10983,
+ "start": 5740,
+ "end": 5740.28,
+ "text": "that"
+ },
+ {
+ "id": 10984,
+ "start": 5740.28,
+ "end": 5740.76,
+ "text": "basic"
+ },
+ {
+ "id": 10985,
+ "start": 5740.76,
+ "end": 5741.46,
+ "text": "functionality,"
+ },
+ {
+ "id": 10986,
+ "start": 5741.46,
+ "end": 5742.16,
+ "text": "people"
+ },
+ {
+ "id": 10987,
+ "start": 5742.16,
+ "end": 5742.68,
+ "text": "understand"
+ },
+ {
+ "id": 10988,
+ "start": 5742.68,
+ "end": 5742.96,
+ "text": "because"
+ },
+ {
+ "id": 10989,
+ "start": 5742.96,
+ "end": 5743.06,
+ "text": "we"
+ },
+ {
+ "id": 10990,
+ "start": 5743.06,
+ "end": 5743.18,
+ "text": "have"
+ },
+ {
+ "id": 10991,
+ "start": 5743.18,
+ "end": 5743.28,
+ "text": "the"
+ },
+ {
+ "id": 10992,
+ "start": 5743.28,
+ "end": 5743.68,
+ "text": "controls"
+ },
+ {
+ "id": 10993,
+ "start": 5743.68,
+ "end": 5743.84,
+ "text": "in"
+ },
+ {
+ "id": 10994,
+ "start": 5743.84,
+ "end": 5744.06,
+ "text": "line"
+ },
+ {
+ "id": 10995,
+ "start": 5744.06,
+ "end": 5744.3,
+ "text": "every"
+ },
+ {
+ "id": 10996,
+ "start": 5744.3,
+ "end": 5744.58,
+ "text": "time"
+ },
+ {
+ "id": 10997,
+ "start": 5744.58,
+ "end": 5745.3,
+ "text": "and"
+ },
+ {
+ "id": 10998,
+ "start": 5745.3,
+ "end": 5745.8,
+ "text": "given"
+ },
+ {
+ "id": 10999,
+ "start": 5745.8,
+ "end": 5746.48,
+ "text": "the"
+ },
+ {
+ "id": 11000,
+ "start": 5746.48,
+ "end": 5746.96,
+ "text": "volume"
+ },
+ {
+ "id": 11001,
+ "start": 5746.96,
+ "end": 5747.36,
+ "text": "of"
+ },
+ {
+ "id": 11002,
+ "start": 5747.36,
+ "end": 5748.16,
+ "text": "the"
+ },
+ {
+ "id": 11003,
+ "start": 5748.16,
+ "end": 5748.62,
+ "text": "activity"
+ },
+ {
+ "id": 11004,
+ "start": 5748.62,
+ "end": 5748.82,
+ "text": "and"
+ },
+ {
+ "id": 11005,
+ "start": 5748.82,
+ "end": 5748.94,
+ "text": "the"
+ },
+ {
+ "id": 11006,
+ "start": 5748.94,
+ "end": 5749.28,
+ "text": "value"
+ },
+ {
+ "id": 11007,
+ "start": 5749.28,
+ "end": 5749.44,
+ "text": "that"
+ },
+ {
+ "id": 11008,
+ "start": 5749.44,
+ "end": 5749.76,
+ "text": "people"
+ },
+ {
+ "id": 11009,
+ "start": 5749.76,
+ "end": 5750.16,
+ "text": "tell"
+ },
+ {
+ "id": 11010,
+ "start": 5750.16,
+ "end": 5750.26,
+ "text": "us"
+ },
+ {
+ "id": 11011,
+ "start": 5750.26,
+ "end": 5750.4,
+ "text": "that"
+ },
+ {
+ "id": 11012,
+ "start": 5750.4,
+ "end": 5750.58,
+ "text": "they're"
+ },
+ {
+ "id": 11013,
+ "start": 5750.58,
+ "end": 5750.8,
+ "text": "getting"
+ },
+ {
+ "id": 11014,
+ "start": 5750.8,
+ "end": 5750.96,
+ "text": "from"
+ },
+ {
+ "id": 11015,
+ "start": 5750.96,
+ "end": 5751.56,
+ "text": "that."
+ },
+ {
+ "id": 11016,
+ "start": 5751.56,
+ "end": 5751.9,
+ "text": "I"
+ },
+ {
+ "id": 11017,
+ "start": 5751.9,
+ "end": 5752.26,
+ "text": "think"
+ },
+ {
+ "id": 11018,
+ "start": 5752.26,
+ "end": 5752.4,
+ "text": "that"
+ },
+ {
+ "id": 11019,
+ "start": 5752.4,
+ "end": 5752.72,
+ "text": "that"
+ },
+ {
+ "id": 11020,
+ "start": 5752.72,
+ "end": 5753.32,
+ "text": "control"
+ },
+ {
+ "id": 11021,
+ "start": 5753.32,
+ "end": 5753.54,
+ "text": "in"
+ },
+ {
+ "id": 11022,
+ "start": 5753.54,
+ "end": 5753.86,
+ "text": "line"
+ },
+ {
+ "id": 11023,
+ "start": 5753.86,
+ "end": 5754.32,
+ "text": "does"
+ },
+ {
+ "id": 11024,
+ "start": 5754.32,
+ "end": 5754.58,
+ "text": "seem"
+ },
+ {
+ "id": 11025,
+ "start": 5754.58,
+ "end": 5754.7,
+ "text": "to"
+ },
+ {
+ "id": 11026,
+ "start": 5754.7,
+ "end": 5754.82,
+ "text": "be"
+ },
+ {
+ "id": 11027,
+ "start": 5754.82,
+ "end": 5755.1,
+ "text": "working"
+ },
+ {
+ "id": 11028,
+ "start": 5755.1,
+ "end": 5755.48,
+ "text": "fairly"
+ },
+ {
+ "id": 11029,
+ "start": 5755.48,
+ "end": 5755.7,
+ "text": "well."
+ },
+ {
+ "id": 11030,
+ "start": 5755.7,
+ "end": 5756.2,
+ "text": "Now"
+ },
+ {
+ "id": 11031,
+ "start": 5756.2,
+ "end": 5756.3,
+ "text": "we"
+ },
+ {
+ "id": 11032,
+ "start": 5756.3,
+ "end": 5756.44,
+ "text": "can"
+ },
+ {
+ "id": 11033,
+ "start": 5756.44,
+ "end": 5756.7,
+ "text": "always"
+ },
+ {
+ "id": 11034,
+ "start": 5756.7,
+ "end": 5756.8,
+ "text": "do"
+ },
+ {
+ "id": 11035,
+ "start": 5756.8,
+ "end": 5757.06,
+ "text": "better"
+ },
+ {
+ "id": 11036,
+ "start": 5757.06,
+ "end": 5757.64,
+ "text": "and"
+ },
+ {
+ "id": 11037,
+ "start": 5757.64,
+ "end": 5757.8,
+ "text": "there"
+ },
+ {
+ "id": 11038,
+ "start": 5757.8,
+ "end": 5757.92,
+ "text": "are"
+ },
+ {
+ "id": 11039,
+ "start": 5757.92,
+ "end": 5758.16,
+ "text": "other"
+ },
+ {
+ "id": 11040,
+ "start": 5758.16,
+ "end": 5759.14,
+ "text": "services"
+ },
+ {
+ "id": 11041,
+ "start": 5759.14,
+ "end": 5759.32,
+ "text": "are"
+ },
+ {
+ "id": 11042,
+ "start": 5759.32,
+ "end": 5759.74,
+ "text": "complex"
+ },
+ {
+ "id": 11043,
+ "start": 5759.74,
+ "end": 5759.9,
+ "text": "and"
+ },
+ {
+ "id": 11044,
+ "start": 5759.9,
+ "end": 5760.04,
+ "text": "there"
+ },
+ {
+ "id": 11045,
+ "start": 5760.04,
+ "end": 5760.6,
+ "text": "is"
+ },
+ {
+ "id": 11046,
+ "start": 5760.6,
+ "end": 5760.88,
+ "text": "more"
+ },
+ {
+ "id": 11047,
+ "start": 5760.88,
+ "end": 5761.04,
+ "text": "to"
+ },
+ {
+ "id": 11048,
+ "start": 5761.04,
+ "end": 5761.14,
+ "text": "it."
+ },
+ {
+ "id": 11049,
+ "start": 5761.14,
+ "end": 5761.38,
+ "text": "Than"
+ },
+ {
+ "id": 11050,
+ "start": 5761.38,
+ "end": 5762.4,
+ "text": "just"
+ },
+ {
+ "id": 11051,
+ "start": 5762.4,
+ "end": 5763.54,
+ "text": "you"
+ },
+ {
+ "id": 11052,
+ "start": 5763.54,
+ "end": 5763.66,
+ "text": "go"
+ },
+ {
+ "id": 11053,
+ "start": 5763.66,
+ "end": 5763.82,
+ "text": "and"
+ },
+ {
+ "id": 11054,
+ "start": 5763.82,
+ "end": 5763.94,
+ "text": "you"
+ },
+ {
+ "id": 11055,
+ "start": 5763.94,
+ "end": 5764.14,
+ "text": "post"
+ },
+ {
+ "id": 11056,
+ "start": 5764.14,
+ "end": 5764.24,
+ "text": "a"
+ },
+ {
+ "id": 11057,
+ "start": 5764.24,
+ "end": 5764.52,
+ "text": "photo."
+ },
+ {
+ "id": 11058,
+ "start": 5764.52,
+ "end": 5765.64,
+ "text": "So"
+ },
+ {
+ "id": 11059,
+ "start": 5765.64,
+ "end": 5766.54,
+ "text": "I"
+ },
+ {
+ "id": 11060,
+ "start": 5766.54,
+ "end": 5766.84,
+ "text": "agree"
+ },
+ {
+ "id": 11061,
+ "start": 5766.84,
+ "end": 5767.36,
+ "text": "that"
+ },
+ {
+ "id": 11062,
+ "start": 5767.36,
+ "end": 5767.48,
+ "text": "in"
+ },
+ {
+ "id": 11063,
+ "start": 5767.48,
+ "end": 5767.68,
+ "text": "many"
+ },
+ {
+ "id": 11064,
+ "start": 5767.68,
+ "end": 5768,
+ "text": "places"
+ },
+ {
+ "id": 11065,
+ "start": 5768,
+ "end": 5768.1,
+ "text": "we"
+ },
+ {
+ "id": 11066,
+ "start": 5768.1,
+ "end": 5768.24,
+ "text": "could"
+ },
+ {
+ "id": 11067,
+ "start": 5768.24,
+ "end": 5768.32,
+ "text": "do"
+ },
+ {
+ "id": 11068,
+ "start": 5768.32,
+ "end": 5768.52,
+ "text": "better."
+ },
+ {
+ "id": 11069,
+ "start": 5768.52,
+ "end": 5768.62,
+ "text": "But"
+ },
+ {
+ "id": 11070,
+ "start": 5768.62,
+ "end": 5768.66,
+ "text": "I"
+ },
+ {
+ "id": 11071,
+ "start": 5768.66,
+ "end": 5768.82,
+ "text": "think"
+ },
+ {
+ "id": 11072,
+ "start": 5768.82,
+ "end": 5768.92,
+ "text": "for"
+ },
+ {
+ "id": 11073,
+ "start": 5768.92,
+ "end": 5769.04,
+ "text": "the"
+ },
+ {
+ "id": 11074,
+ "start": 5769.04,
+ "end": 5769.24,
+ "text": "core"
+ },
+ {
+ "id": 11075,
+ "start": 5769.24,
+ "end": 5769.32,
+ "text": "of"
+ },
+ {
+ "id": 11076,
+ "start": 5769.32,
+ "end": 5769.44,
+ "text": "the"
+ },
+ {
+ "id": 11077,
+ "start": 5769.44,
+ "end": 5769.8,
+ "text": "service"
+ },
+ {
+ "id": 11078,
+ "start": 5769.8,
+ "end": 5770.06,
+ "text": "it"
+ },
+ {
+ "id": 11079,
+ "start": 5770.06,
+ "end": 5770.46,
+ "text": "actually"
+ },
+ {
+ "id": 11080,
+ "start": 5770.46,
+ "end": 5770.7,
+ "text": "is"
+ },
+ {
+ "id": 11081,
+ "start": 5770.7,
+ "end": 5771.46,
+ "text": "quite"
+ },
+ {
+ "id": 11082,
+ "start": 5771.46,
+ "end": 5771.74,
+ "text": "clear."
+ },
+ {
+ "id": 11083,
+ "start": 5771.74,
+ "end": 5772.42,
+ "text": "Thank"
+ },
+ {
+ "id": 11084,
+ "start": 5772.42,
+ "end": 5772.52,
+ "text": "you,"
+ },
+ {
+ "id": 11085,
+ "start": 5772.52,
+ "end": 5772.82,
+ "text": "Senator."
+ },
+ {
+ "id": 11086,
+ "start": 5772.82,
+ "end": 5773.04,
+ "text": "Graham"
+ },
+ {
+ "id": 11087,
+ "start": 5773.04,
+ "end": 5773.24,
+ "text": "center"
+ },
+ {
+ "id": 11088,
+ "start": 5773.24,
+ "end": 5774.26,
+ "text": "kosher."
+ },
+ {
+ "id": 11089,
+ "start": 5774.26,
+ "end": 5774.44,
+ "text": "Thank"
+ },
+ {
+ "id": 11090,
+ "start": 5774.44,
+ "end": 5774.56,
+ "text": "you,"
+ },
+ {
+ "id": 11091,
+ "start": 5774.56,
+ "end": 5775,
+ "text": "Mr"
+ },
+ {
+ "id": 11092,
+ "start": 5775,
+ "end": 5775.52,
+ "text": "Mr"
+ },
+ {
+ "id": 11093,
+ "start": 5775.52,
+ "end": 5776,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 11094,
+ "start": 5776,
+ "end": 5776.28,
+ "text": "I"
+ },
+ {
+ "id": 11095,
+ "start": 5776.28,
+ "end": 5776.46,
+ "text": "think"
+ },
+ {
+ "id": 11096,
+ "start": 5776.46,
+ "end": 5776.58,
+ "text": "we"
+ },
+ {
+ "id": 11097,
+ "start": 5776.58,
+ "end": 5776.74,
+ "text": "all"
+ },
+ {
+ "id": 11098,
+ "start": 5776.74,
+ "end": 5777.06,
+ "text": "agree"
+ },
+ {
+ "id": 11099,
+ "start": 5777.06,
+ "end": 5777.28,
+ "text": "that"
+ },
+ {
+ "id": 11100,
+ "start": 5777.28,
+ "end": 5777.48,
+ "text": "what"
+ },
+ {
+ "id": 11101,
+ "start": 5777.48,
+ "end": 5777.82,
+ "text": "happened"
+ },
+ {
+ "id": 11102,
+ "start": 5777.82,
+ "end": 5777.96,
+ "text": "here"
+ },
+ {
+ "id": 11103,
+ "start": 5777.96,
+ "end": 5778.14,
+ "text": "was"
+ },
+ {
+ "id": 11104,
+ "start": 5778.14,
+ "end": 5778.46,
+ "text": "bad"
+ },
+ {
+ "id": 11105,
+ "start": 5778.46,
+ "end": 5778.64,
+ "text": "you"
+ },
+ {
+ "id": 11106,
+ "start": 5778.64,
+ "end": 5779.14,
+ "text": "acknowledge"
+ },
+ {
+ "id": 11107,
+ "start": 5779.14,
+ "end": 5779.28,
+ "text": "it"
+ },
+ {
+ "id": 11108,
+ "start": 5779.28,
+ "end": 5779.42,
+ "text": "was"
+ },
+ {
+ "id": 11109,
+ "start": 5779.42,
+ "end": 5779.5,
+ "text": "a"
+ },
+ {
+ "id": 11110,
+ "start": 5779.5,
+ "end": 5779.8,
+ "text": "breach"
+ },
+ {
+ "id": 11111,
+ "start": 5779.8,
+ "end": 5779.92,
+ "text": "of"
+ },
+ {
+ "id": 11112,
+ "start": 5779.92,
+ "end": 5780.34,
+ "text": "trust"
+ },
+ {
+ "id": 11113,
+ "start": 5780.34,
+ "end": 5780.56,
+ "text": "and"
+ },
+ {
+ "id": 11114,
+ "start": 5780.56,
+ "end": 5780.94,
+ "text": "the"
+ },
+ {
+ "id": 11115,
+ "start": 5780.94,
+ "end": 5781.06,
+ "text": "way"
+ },
+ {
+ "id": 11116,
+ "start": 5781.06,
+ "end": 5781.14,
+ "text": "I"
+ },
+ {
+ "id": 11117,
+ "start": 5781.14,
+ "end": 5781.52,
+ "text": "explained"
+ },
+ {
+ "id": 11118,
+ "start": 5781.52,
+ "end": 5781.62,
+ "text": "it"
+ },
+ {
+ "id": 11119,
+ "start": 5781.62,
+ "end": 5781.72,
+ "text": "to"
+ },
+ {
+ "id": 11120,
+ "start": 5781.72,
+ "end": 5781.88,
+ "text": "my"
+ },
+ {
+ "id": 11121,
+ "start": 5781.88,
+ "end": 5782.6,
+ "text": "constituents."
+ },
+ {
+ "id": 11122,
+ "start": 5782.6,
+ "end": 5782.76,
+ "text": "Is"
+ },
+ {
+ "id": 11123,
+ "start": 5782.76,
+ "end": 5782.92,
+ "text": "that"
+ },
+ {
+ "id": 11124,
+ "start": 5782.92,
+ "end": 5783.04,
+ "text": "if"
+ },
+ {
+ "id": 11125,
+ "start": 5783.04,
+ "end": 5783.4,
+ "text": "someone"
+ },
+ {
+ "id": 11126,
+ "start": 5783.4,
+ "end": 5783.96,
+ "text": "breaks"
+ },
+ {
+ "id": 11127,
+ "start": 5783.96,
+ "end": 5784.22,
+ "text": "into"
+ },
+ {
+ "id": 11128,
+ "start": 5784.22,
+ "end": 5784.36,
+ "text": "my"
+ },
+ {
+ "id": 11129,
+ "start": 5784.36,
+ "end": 5784.76,
+ "text": "apartment"
+ },
+ {
+ "id": 11130,
+ "start": 5784.76,
+ "end": 5784.92,
+ "text": "with"
+ },
+ {
+ "id": 11131,
+ "start": 5784.92,
+ "end": 5785.04,
+ "text": "a"
+ },
+ {
+ "id": 11132,
+ "start": 5785.04,
+ "end": 5785.58,
+ "text": "crowbar"
+ },
+ {
+ "id": 11133,
+ "start": 5785.58,
+ "end": 5786.22,
+ "text": "and"
+ },
+ {
+ "id": 11134,
+ "start": 5786.22,
+ "end": 5786.46,
+ "text": "they"
+ },
+ {
+ "id": 11135,
+ "start": 5786.46,
+ "end": 5786.74,
+ "text": "take"
+ },
+ {
+ "id": 11136,
+ "start": 5786.74,
+ "end": 5787,
+ "text": "my"
+ },
+ {
+ "id": 11137,
+ "start": 5787,
+ "end": 5787.6,
+ "text": "stuff"
+ },
+ {
+ "id": 11138,
+ "start": 5787.6,
+ "end": 5788.14,
+ "text": "it's"
+ },
+ {
+ "id": 11139,
+ "start": 5788.14,
+ "end": 5788.36,
+ "text": "just"
+ },
+ {
+ "id": 11140,
+ "start": 5788.36,
+ "end": 5788.58,
+ "text": "like"
+ },
+ {
+ "id": 11141,
+ "start": 5788.58,
+ "end": 5788.72,
+ "text": "if"
+ },
+ {
+ "id": 11142,
+ "start": 5788.72,
+ "end": 5788.86,
+ "text": "the"
+ },
+ {
+ "id": 11143,
+ "start": 5788.86,
+ "end": 5789.28,
+ "text": "manager"
+ },
+ {
+ "id": 11144,
+ "start": 5789.28,
+ "end": 5789.46,
+ "text": "gave"
+ },
+ {
+ "id": 11145,
+ "start": 5789.46,
+ "end": 5789.64,
+ "text": "them"
+ },
+ {
+ "id": 11146,
+ "start": 5789.64,
+ "end": 5789.76,
+ "text": "the"
+ },
+ {
+ "id": 11147,
+ "start": 5789.76,
+ "end": 5790.14,
+ "text": "keys"
+ },
+ {
+ "id": 11148,
+ "start": 5790.14,
+ "end": 5790.32,
+ "text": "or"
+ },
+ {
+ "id": 11149,
+ "start": 5790.32,
+ "end": 5790.46,
+ "text": "if"
+ },
+ {
+ "id": 11150,
+ "start": 5790.46,
+ "end": 5790.6,
+ "text": "they"
+ },
+ {
+ "id": 11151,
+ "start": 5790.6,
+ "end": 5790.84,
+ "text": "didn't"
+ },
+ {
+ "id": 11152,
+ "start": 5790.84,
+ "end": 5791,
+ "text": "have"
+ },
+ {
+ "id": 11153,
+ "start": 5791,
+ "end": 5791.22,
+ "text": "any"
+ },
+ {
+ "id": 11154,
+ "start": 5791.22,
+ "end": 5791.54,
+ "text": "locks"
+ },
+ {
+ "id": 11155,
+ "start": 5791.54,
+ "end": 5791.7,
+ "text": "on"
+ },
+ {
+ "id": 11156,
+ "start": 5791.7,
+ "end": 5791.84,
+ "text": "the"
+ },
+ {
+ "id": 11157,
+ "start": 5791.84,
+ "end": 5792.22,
+ "text": "doors"
+ },
+ {
+ "id": 11158,
+ "start": 5792.22,
+ "end": 5792.44,
+ "text": "it's"
+ },
+ {
+ "id": 11159,
+ "start": 5792.44,
+ "end": 5792.72,
+ "text": "still"
+ },
+ {
+ "id": 11160,
+ "start": 5792.72,
+ "end": 5792.8,
+ "text": "a"
+ },
+ {
+ "id": 11161,
+ "start": 5792.8,
+ "end": 5793.18,
+ "text": "breach"
+ },
+ {
+ "id": 11162,
+ "start": 5793.18,
+ "end": 5793.76,
+ "text": "I'd"
+ },
+ {
+ "id": 11163,
+ "start": 5793.76,
+ "end": 5794,
+ "text": "still"
+ },
+ {
+ "id": 11164,
+ "start": 5794,
+ "end": 5794.08,
+ "text": "a"
+ },
+ {
+ "id": 11165,
+ "start": 5794.08,
+ "end": 5794.38,
+ "text": "break"
+ },
+ {
+ "id": 11166,
+ "start": 5794.38,
+ "end": 5794.62,
+ "text": "in"
+ },
+ {
+ "id": 11167,
+ "start": 5794.62,
+ "end": 5795.28,
+ "text": "and"
+ },
+ {
+ "id": 11168,
+ "start": 5795.28,
+ "end": 5795.86,
+ "text": "I"
+ },
+ {
+ "id": 11169,
+ "start": 5795.86,
+ "end": 5796.18,
+ "text": "believe"
+ },
+ {
+ "id": 11170,
+ "start": 5796.18,
+ "end": 5796.32,
+ "text": "we"
+ },
+ {
+ "id": 11171,
+ "start": 5796.32,
+ "end": 5796.52,
+ "text": "need"
+ },
+ {
+ "id": 11172,
+ "start": 5796.52,
+ "end": 5796.6,
+ "text": "to"
+ },
+ {
+ "id": 11173,
+ "start": 5796.6,
+ "end": 5796.78,
+ "text": "have"
+ },
+ {
+ "id": 11174,
+ "start": 5796.78,
+ "end": 5797.2,
+ "text": "laws"
+ },
+ {
+ "id": 11175,
+ "start": 5797.2,
+ "end": 5797.36,
+ "text": "and"
+ },
+ {
+ "id": 11176,
+ "start": 5797.36,
+ "end": 5797.8,
+ "text": "rules"
+ },
+ {
+ "id": 11177,
+ "start": 5797.8,
+ "end": 5798.24,
+ "text": "that"
+ },
+ {
+ "id": 11178,
+ "start": 5798.24,
+ "end": 5798.4,
+ "text": "are"
+ },
+ {
+ "id": 11179,
+ "start": 5798.4,
+ "end": 5799.32,
+ "text": "sophisticated"
+ },
+ {
+ "id": 11180,
+ "start": 5799.32,
+ "end": 5799.64,
+ "text": "as"
+ },
+ {
+ "id": 11181,
+ "start": 5799.64,
+ "end": 5799.98,
+ "text": "the"
+ },
+ {
+ "id": 11182,
+ "start": 5799.98,
+ "end": 5801.21,
+ "text": "brilliant"
+ },
+ {
+ "id": 11183,
+ "start": 5801.21,
+ "end": 5801.63,
+ "text": "products"
+ },
+ {
+ "id": 11184,
+ "start": 5801.63,
+ "end": 5801.85,
+ "text": "that"
+ },
+ {
+ "id": 11185,
+ "start": 5801.85,
+ "end": 5802.05,
+ "text": "you've"
+ },
+ {
+ "id": 11186,
+ "start": 5802.05,
+ "end": 5802.47,
+ "text": "developed"
+ },
+ {
+ "id": 11187,
+ "start": 5802.47,
+ "end": 5802.71,
+ "text": "here."
+ },
+ {
+ "id": 11188,
+ "start": 5802.71,
+ "end": 5803.13,
+ "text": "And"
+ },
+ {
+ "id": 11189,
+ "start": 5803.13,
+ "end": 5803.27,
+ "text": "we"
+ },
+ {
+ "id": 11190,
+ "start": 5803.27,
+ "end": 5803.45,
+ "text": "just"
+ },
+ {
+ "id": 11191,
+ "start": 5803.45,
+ "end": 5803.75,
+ "text": "haven't"
+ },
+ {
+ "id": 11192,
+ "start": 5803.75,
+ "end": 5803.95,
+ "text": "done"
+ },
+ {
+ "id": 11193,
+ "start": 5803.95,
+ "end": 5804.17,
+ "text": "that"
+ },
+ {
+ "id": 11194,
+ "start": 5804.17,
+ "end": 5804.39,
+ "text": "yet"
+ },
+ {
+ "id": 11195,
+ "start": 5804.39,
+ "end": 5804.95,
+ "text": "and"
+ },
+ {
+ "id": 11196,
+ "start": 5804.95,
+ "end": 5805.25,
+ "text": "one"
+ },
+ {
+ "id": 11197,
+ "start": 5805.25,
+ "end": 5805.35,
+ "text": "of"
+ },
+ {
+ "id": 11198,
+ "start": 5805.35,
+ "end": 5805.49,
+ "text": "the"
+ },
+ {
+ "id": 11199,
+ "start": 5805.49,
+ "end": 5805.91,
+ "text": "areas"
+ },
+ {
+ "id": 11200,
+ "start": 5805.91,
+ "end": 5806.09,
+ "text": "that"
+ },
+ {
+ "id": 11201,
+ "start": 5806.09,
+ "end": 5806.17,
+ "text": "I"
+ },
+ {
+ "id": 11202,
+ "start": 5806.17,
+ "end": 5806.69,
+ "text": "focused"
+ },
+ {
+ "id": 11203,
+ "start": 5806.69,
+ "end": 5806.89,
+ "text": "on"
+ },
+ {
+ "id": 11204,
+ "start": 5806.89,
+ "end": 5807.11,
+ "text": "is"
+ },
+ {
+ "id": 11205,
+ "start": 5807.11,
+ "end": 5807.27,
+ "text": "the"
+ },
+ {
+ "id": 11206,
+ "start": 5807.27,
+ "end": 5807.77,
+ "text": "election."
+ },
+ {
+ "id": 11207,
+ "start": 5807.77,
+ "end": 5808.03,
+ "text": "And"
+ },
+ {
+ "id": 11208,
+ "start": 5808.03,
+ "end": 5808.13,
+ "text": "I"
+ },
+ {
+ "id": 11209,
+ "start": 5808.13,
+ "end": 5808.73,
+ "text": "appreciate"
+ },
+ {
+ "id": 11210,
+ "start": 5808.73,
+ "end": 5809.13,
+ "text": "the"
+ },
+ {
+ "id": 11211,
+ "start": 5809.13,
+ "end": 5809.53,
+ "text": "support"
+ },
+ {
+ "id": 11212,
+ "start": 5809.53,
+ "end": 5809.71,
+ "text": "that"
+ },
+ {
+ "id": 11213,
+ "start": 5809.71,
+ "end": 5809.83,
+ "text": "you"
+ },
+ {
+ "id": 11214,
+ "start": 5809.83,
+ "end": 5810.01,
+ "text": "and"
+ },
+ {
+ "id": 11215,
+ "start": 5810.01,
+ "end": 5810.55,
+ "text": "Facebook."
+ },
+ {
+ "id": 11216,
+ "start": 5810.55,
+ "end": 5811.13,
+ "text": "And"
+ },
+ {
+ "id": 11217,
+ "start": 5811.13,
+ "end": 5811.35,
+ "text": "now"
+ },
+ {
+ "id": 11218,
+ "start": 5811.35,
+ "end": 5811.77,
+ "text": "Twitter"
+ },
+ {
+ "id": 11219,
+ "start": 5811.77,
+ "end": 5812.29,
+ "text": "actually"
+ },
+ {
+ "id": 11220,
+ "start": 5812.29,
+ "end": 5812.51,
+ "text": "have"
+ },
+ {
+ "id": 11221,
+ "start": 5812.51,
+ "end": 5812.85,
+ "text": "given"
+ },
+ {
+ "id": 11222,
+ "start": 5812.85,
+ "end": 5813.05,
+ "text": "to"
+ },
+ {
+ "id": 11223,
+ "start": 5813.05,
+ "end": 5813.17,
+ "text": "the"
+ },
+ {
+ "id": 11224,
+ "start": 5813.17,
+ "end": 5813.55,
+ "text": "honest"
+ },
+ {
+ "id": 11225,
+ "start": 5813.55,
+ "end": 5813.85,
+ "text": "ads"
+ },
+ {
+ "id": 11226,
+ "start": 5813.85,
+ "end": 5814.21,
+ "text": "act."
+ },
+ {
+ "id": 11227,
+ "start": 5814.21,
+ "end": 5814.33,
+ "text": "A"
+ },
+ {
+ "id": 11228,
+ "start": 5814.33,
+ "end": 5814.82,
+ "text": "bill"
+ },
+ {
+ "id": 11229,
+ "start": 5814.82,
+ "end": 5815.22,
+ "text": "that"
+ },
+ {
+ "id": 11230,
+ "start": 5815.22,
+ "end": 5815.36,
+ "text": "you"
+ },
+ {
+ "id": 11231,
+ "start": 5815.36,
+ "end": 5815.78,
+ "text": "mentioned"
+ },
+ {
+ "id": 11232,
+ "start": 5815.78,
+ "end": 5815.98,
+ "text": "that"
+ },
+ {
+ "id": 11233,
+ "start": 5815.98,
+ "end": 5816.14,
+ "text": "I'm"
+ },
+ {
+ "id": 11234,
+ "start": 5816.14,
+ "end": 5816.48,
+ "text": "leading"
+ },
+ {
+ "id": 11235,
+ "start": 5816.48,
+ "end": 5816.68,
+ "text": "with"
+ },
+ {
+ "id": 11236,
+ "start": 5816.68,
+ "end": 5817.18,
+ "text": "Senator"
+ },
+ {
+ "id": 11237,
+ "start": 5817.18,
+ "end": 5818.06,
+ "text": "McCain"
+ },
+ {
+ "id": 11238,
+ "start": 5818.06,
+ "end": 5818.26,
+ "text": "and"
+ },
+ {
+ "id": 11239,
+ "start": 5818.26,
+ "end": 5818.68,
+ "text": "Senator"
+ },
+ {
+ "id": 11240,
+ "start": 5818.68,
+ "end": 5819.1,
+ "text": "Warner."
+ },
+ {
+ "id": 11241,
+ "start": 5819.1,
+ "end": 5819.66,
+ "text": "And"
+ },
+ {
+ "id": 11242,
+ "start": 5819.66,
+ "end": 5819.78,
+ "text": "I"
+ },
+ {
+ "id": 11243,
+ "start": 5819.78,
+ "end": 5819.96,
+ "text": "just"
+ },
+ {
+ "id": 11244,
+ "start": 5819.96,
+ "end": 5820.14,
+ "text": "want"
+ },
+ {
+ "id": 11245,
+ "start": 5820.14,
+ "end": 5820.2,
+ "text": "to"
+ },
+ {
+ "id": 11246,
+ "start": 5820.2,
+ "end": 5820.32,
+ "text": "be"
+ },
+ {
+ "id": 11247,
+ "start": 5820.32,
+ "end": 5820.56,
+ "text": "clear"
+ },
+ {
+ "id": 11248,
+ "start": 5820.56,
+ "end": 5820.86,
+ "text": "as"
+ },
+ {
+ "id": 11249,
+ "start": 5820.86,
+ "end": 5820.96,
+ "text": "we"
+ },
+ {
+ "id": 11250,
+ "start": 5820.96,
+ "end": 5821.24,
+ "text": "work"
+ },
+ {
+ "id": 11251,
+ "start": 5821.24,
+ "end": 5821.38,
+ "text": "to"
+ },
+ {
+ "id": 11252,
+ "start": 5821.38,
+ "end": 5821.8,
+ "text": "pass"
+ },
+ {
+ "id": 11253,
+ "start": 5821.8,
+ "end": 5822.08,
+ "text": "this"
+ },
+ {
+ "id": 11254,
+ "start": 5822.08,
+ "end": 5822.36,
+ "text": "law"
+ },
+ {
+ "id": 11255,
+ "start": 5822.36,
+ "end": 5822.92,
+ "text": "so"
+ },
+ {
+ "id": 11256,
+ "start": 5822.92,
+ "end": 5823.08,
+ "text": "that"
+ },
+ {
+ "id": 11257,
+ "start": 5823.08,
+ "end": 5823.2,
+ "text": "we"
+ },
+ {
+ "id": 11258,
+ "start": 5823.2,
+ "end": 5823.32,
+ "text": "have"
+ },
+ {
+ "id": 11259,
+ "start": 5823.32,
+ "end": 5823.44,
+ "text": "the"
+ },
+ {
+ "id": 11260,
+ "start": 5823.44,
+ "end": 5823.66,
+ "text": "same"
+ },
+ {
+ "id": 11261,
+ "start": 5823.66,
+ "end": 5823.88,
+ "text": "rules"
+ },
+ {
+ "id": 11262,
+ "start": 5823.88,
+ "end": 5824.08,
+ "text": "in"
+ },
+ {
+ "id": 11263,
+ "start": 5824.08,
+ "end": 5824.44,
+ "text": "place"
+ },
+ {
+ "id": 11264,
+ "start": 5824.44,
+ "end": 5824.66,
+ "text": "to"
+ },
+ {
+ "id": 11265,
+ "start": 5824.66,
+ "end": 5825.26,
+ "text": "disclose"
+ },
+ {
+ "id": 11266,
+ "start": 5825.26,
+ "end": 5826.1,
+ "text": "political"
+ },
+ {
+ "id": 11267,
+ "start": 5826.1,
+ "end": 5826.48,
+ "text": "ads"
+ },
+ {
+ "id": 11268,
+ "start": 5826.48,
+ "end": 5826.88,
+ "text": "and"
+ },
+ {
+ "id": 11269,
+ "start": 5826.88,
+ "end": 5827.32,
+ "text": "issue"
+ },
+ {
+ "id": 11270,
+ "start": 5827.32,
+ "end": 5828,
+ "text": "ads"
+ },
+ {
+ "id": 11271,
+ "start": 5828,
+ "end": 5828.56,
+ "text": "as"
+ },
+ {
+ "id": 11272,
+ "start": 5828.56,
+ "end": 5828.7,
+ "text": "we"
+ },
+ {
+ "id": 11273,
+ "start": 5828.7,
+ "end": 5828.9,
+ "text": "do"
+ },
+ {
+ "id": 11274,
+ "start": 5828.9,
+ "end": 5829.2,
+ "text": "for"
+ },
+ {
+ "id": 11275,
+ "start": 5829.2,
+ "end": 5829.6,
+ "text": "TV"
+ },
+ {
+ "id": 11276,
+ "start": 5829.6,
+ "end": 5829.72,
+ "text": "and"
+ },
+ {
+ "id": 11277,
+ "start": 5829.72,
+ "end": 5830.16,
+ "text": "radio"
+ },
+ {
+ "id": 11278,
+ "start": 5830.16,
+ "end": 5830.52,
+ "text": "as"
+ },
+ {
+ "id": 11279,
+ "start": 5830.52,
+ "end": 5830.7,
+ "text": "well"
+ },
+ {
+ "id": 11280,
+ "start": 5830.7,
+ "end": 5830.8,
+ "text": "as"
+ },
+ {
+ "id": 11281,
+ "start": 5830.8,
+ "end": 5831.46,
+ "text": "disclaimers"
+ },
+ {
+ "id": 11282,
+ "start": 5831.46,
+ "end": 5831.82,
+ "text": "that"
+ },
+ {
+ "id": 11283,
+ "start": 5831.82,
+ "end": 5832.02,
+ "text": "you're"
+ },
+ {
+ "id": 11284,
+ "start": 5832.02,
+ "end": 5832.16,
+ "text": "going"
+ },
+ {
+ "id": 11285,
+ "start": 5832.16,
+ "end": 5832.24,
+ "text": "to"
+ },
+ {
+ "id": 11286,
+ "start": 5832.24,
+ "end": 5832.4,
+ "text": "take"
+ },
+ {
+ "id": 11287,
+ "start": 5832.4,
+ "end": 5832.8,
+ "text": "early"
+ },
+ {
+ "id": 11288,
+ "start": 5832.8,
+ "end": 5833.3,
+ "text": "action"
+ },
+ {
+ "id": 11289,
+ "start": 5833.3,
+ "end": 5833.48,
+ "text": "as"
+ },
+ {
+ "id": 11290,
+ "start": 5833.48,
+ "end": 5833.7,
+ "text": "soon"
+ },
+ {
+ "id": 11291,
+ "start": 5833.7,
+ "end": 5833.86,
+ "text": "as"
+ },
+ {
+ "id": 11292,
+ "start": 5833.86,
+ "end": 5834.24,
+ "text": "June."
+ },
+ {
+ "id": 11293,
+ "start": 5834.24,
+ "end": 5834.4,
+ "text": "I"
+ },
+ {
+ "id": 11294,
+ "start": 5834.4,
+ "end": 5834.68,
+ "text": "heard"
+ },
+ {
+ "id": 11295,
+ "start": 5834.68,
+ "end": 5835.52,
+ "text": "before"
+ },
+ {
+ "id": 11296,
+ "start": 5835.52,
+ "end": 5835.72,
+ "text": "this"
+ },
+ {
+ "id": 11297,
+ "start": 5835.72,
+ "end": 5836.2,
+ "text": "election"
+ },
+ {
+ "id": 11298,
+ "start": 5836.2,
+ "end": 5836.62,
+ "text": "so"
+ },
+ {
+ "id": 11299,
+ "start": 5836.62,
+ "end": 5836.8,
+ "text": "that"
+ },
+ {
+ "id": 11300,
+ "start": 5836.8,
+ "end": 5837.06,
+ "text": "people"
+ },
+ {
+ "id": 11301,
+ "start": 5837.06,
+ "end": 5837.24,
+ "text": "can"
+ },
+ {
+ "id": 11302,
+ "start": 5837.24,
+ "end": 5837.46,
+ "text": "view"
+ },
+ {
+ "id": 11303,
+ "start": 5837.46,
+ "end": 5837.68,
+ "text": "these"
+ },
+ {
+ "id": 11304,
+ "start": 5837.68,
+ "end": 5838.02,
+ "text": "ads,"
+ },
+ {
+ "id": 11305,
+ "start": 5838.02,
+ "end": 5838.54,
+ "text": "including"
+ },
+ {
+ "id": 11306,
+ "start": 5838.54,
+ "end": 5838.98,
+ "text": "issue"
+ },
+ {
+ "id": 11307,
+ "start": 5838.98,
+ "end": 5839.22,
+ "text": "ads."
+ },
+ {
+ "id": 11308,
+ "start": 5839.22,
+ "end": 5839.4,
+ "text": "Is"
+ },
+ {
+ "id": 11309,
+ "start": 5839.4,
+ "end": 5839.6,
+ "text": "that"
+ },
+ {
+ "id": 11310,
+ "start": 5839.6,
+ "end": 5839.96,
+ "text": "correct,"
+ },
+ {
+ "id": 11311,
+ "start": 5839.96,
+ "end": 5841.08,
+ "text": "that"
+ },
+ {
+ "id": 11312,
+ "start": 5841.08,
+ "end": 5841.22,
+ "text": "is"
+ },
+ {
+ "id": 11313,
+ "start": 5841.22,
+ "end": 5841.48,
+ "text": "correct,"
+ },
+ {
+ "id": 11314,
+ "start": 5841.48,
+ "end": 5841.94,
+ "text": "Senator."
+ },
+ {
+ "id": 11315,
+ "start": 5841.94,
+ "end": 5842.32,
+ "text": "And"
+ },
+ {
+ "id": 11316,
+ "start": 5842.32,
+ "end": 5842.98,
+ "text": "I"
+ },
+ {
+ "id": 11317,
+ "start": 5842.98,
+ "end": 5843.14,
+ "text": "just"
+ },
+ {
+ "id": 11318,
+ "start": 5843.14,
+ "end": 5843.28,
+ "text": "want"
+ },
+ {
+ "id": 11319,
+ "start": 5843.28,
+ "end": 5843.36,
+ "text": "to"
+ },
+ {
+ "id": 11320,
+ "start": 5843.36,
+ "end": 5843.5,
+ "text": "take"
+ },
+ {
+ "id": 11321,
+ "start": 5843.5,
+ "end": 5843.56,
+ "text": "a"
+ },
+ {
+ "id": 11322,
+ "start": 5843.56,
+ "end": 5843.8,
+ "text": "moment"
+ },
+ {
+ "id": 11323,
+ "start": 5843.8,
+ "end": 5844.02,
+ "text": "before"
+ },
+ {
+ "id": 11324,
+ "start": 5844.02,
+ "end": 5844.12,
+ "text": "I"
+ },
+ {
+ "id": 11325,
+ "start": 5844.12,
+ "end": 5844.22,
+ "text": "go"
+ },
+ {
+ "id": 11326,
+ "start": 5844.22,
+ "end": 5844.38,
+ "text": "into"
+ },
+ {
+ "id": 11327,
+ "start": 5844.38,
+ "end": 5844.5,
+ "text": "this"
+ },
+ {
+ "id": 11328,
+ "start": 5844.5,
+ "end": 5844.6,
+ "text": "in"
+ },
+ {
+ "id": 11329,
+ "start": 5844.6,
+ "end": 5844.76,
+ "text": "more"
+ },
+ {
+ "id": 11330,
+ "start": 5844.76,
+ "end": 5845.02,
+ "text": "detail"
+ },
+ {
+ "id": 11331,
+ "start": 5845.02,
+ "end": 5845.14,
+ "text": "to"
+ },
+ {
+ "id": 11332,
+ "start": 5845.14,
+ "end": 5845.32,
+ "text": "thank"
+ },
+ {
+ "id": 11333,
+ "start": 5845.32,
+ "end": 5845.46,
+ "text": "you"
+ },
+ {
+ "id": 11334,
+ "start": 5845.46,
+ "end": 5845.6,
+ "text": "for"
+ },
+ {
+ "id": 11335,
+ "start": 5845.6,
+ "end": 5845.76,
+ "text": "your"
+ },
+ {
+ "id": 11336,
+ "start": 5845.76,
+ "end": 5846.22,
+ "text": "leadership"
+ },
+ {
+ "id": 11337,
+ "start": 5846.22,
+ "end": 5846.4,
+ "text": "on"
+ },
+ {
+ "id": 11338,
+ "start": 5846.4,
+ "end": 5847.3,
+ "text": "this"
+ },
+ {
+ "id": 11339,
+ "start": 5847.3,
+ "end": 5848.22,
+ "text": "this"
+ },
+ {
+ "id": 11340,
+ "start": 5848.22,
+ "end": 5848.32,
+ "text": "I"
+ },
+ {
+ "id": 11341,
+ "start": 5848.32,
+ "end": 5848.48,
+ "text": "think"
+ },
+ {
+ "id": 11342,
+ "start": 5848.48,
+ "end": 5848.64,
+ "text": "is"
+ },
+ {
+ "id": 11343,
+ "start": 5848.64,
+ "end": 5848.74,
+ "text": "an"
+ },
+ {
+ "id": 11344,
+ "start": 5848.74,
+ "end": 5849.2,
+ "text": "important"
+ },
+ {
+ "id": 11345,
+ "start": 5849.2,
+ "end": 5850.02,
+ "text": "area"
+ },
+ {
+ "id": 11346,
+ "start": 5850.02,
+ "end": 5850.48,
+ "text": "for"
+ },
+ {
+ "id": 11347,
+ "start": 5850.48,
+ "end": 5850.64,
+ "text": "the"
+ },
+ {
+ "id": 11348,
+ "start": 5850.64,
+ "end": 5850.84,
+ "text": "whole"
+ },
+ {
+ "id": 11349,
+ "start": 5850.84,
+ "end": 5851.3,
+ "text": "industry"
+ },
+ {
+ "id": 11350,
+ "start": 5851.3,
+ "end": 5851.5,
+ "text": "to"
+ },
+ {
+ "id": 11351,
+ "start": 5851.5,
+ "end": 5851.72,
+ "text": "move"
+ },
+ {
+ "id": 11352,
+ "start": 5851.72,
+ "end": 5851.92,
+ "text": "on."
+ },
+ {
+ "id": 11353,
+ "start": 5851.92,
+ "end": 5852.92,
+ "text": "The"
+ },
+ {
+ "id": 11354,
+ "start": 5852.92,
+ "end": 5853.16,
+ "text": "two"
+ },
+ {
+ "id": 11355,
+ "start": 5853.16,
+ "end": 5853.74,
+ "text": "specific"
+ },
+ {
+ "id": 11356,
+ "start": 5853.74,
+ "end": 5854,
+ "text": "things"
+ },
+ {
+ "id": 11357,
+ "start": 5854,
+ "end": 5854.2,
+ "text": "that"
+ },
+ {
+ "id": 11358,
+ "start": 5854.2,
+ "end": 5854.46,
+ "text": "we're"
+ },
+ {
+ "id": 11359,
+ "start": 5854.46,
+ "end": 5854.74,
+ "text": "doing"
+ },
+ {
+ "id": 11360,
+ "start": 5854.74,
+ "end": 5855.56,
+ "text": "are"
+ },
+ {
+ "id": 11361,
+ "start": 5855.56,
+ "end": 5855.84,
+ "text": "one"
+ },
+ {
+ "id": 11362,
+ "start": 5855.84,
+ "end": 5855.96,
+ "text": "is"
+ },
+ {
+ "id": 11363,
+ "start": 5855.96,
+ "end": 5856.22,
+ "text": "around"
+ },
+ {
+ "id": 11364,
+ "start": 5856.22,
+ "end": 5856.98,
+ "text": "transparency."
+ },
+ {
+ "id": 11365,
+ "start": 5856.98,
+ "end": 5858.04,
+ "text": "So"
+ },
+ {
+ "id": 11366,
+ "start": 5858.04,
+ "end": 5858.92,
+ "text": "now"
+ },
+ {
+ "id": 11367,
+ "start": 5858.92,
+ "end": 5859.12,
+ "text": "you're"
+ },
+ {
+ "id": 11368,
+ "start": 5859.12,
+ "end": 5859.32,
+ "text": "going"
+ },
+ {
+ "id": 11369,
+ "start": 5859.32,
+ "end": 5859.42,
+ "text": "to"
+ },
+ {
+ "id": 11370,
+ "start": 5859.42,
+ "end": 5859.5,
+ "text": "be"
+ },
+ {
+ "id": 11371,
+ "start": 5859.5,
+ "end": 5859.64,
+ "text": "able"
+ },
+ {
+ "id": 11372,
+ "start": 5859.64,
+ "end": 5859.72,
+ "text": "to"
+ },
+ {
+ "id": 11373,
+ "start": 5859.72,
+ "end": 5860,
+ "text": "go"
+ },
+ {
+ "id": 11374,
+ "start": 5860,
+ "end": 5860.52,
+ "text": "and"
+ },
+ {
+ "id": 11375,
+ "start": 5860.52,
+ "end": 5860.8,
+ "text": "click"
+ },
+ {
+ "id": 11376,
+ "start": 5860.8,
+ "end": 5861.04,
+ "text": "on"
+ },
+ {
+ "id": 11377,
+ "start": 5861.04,
+ "end": 5861.52,
+ "text": "any"
+ },
+ {
+ "id": 11378,
+ "start": 5861.52,
+ "end": 5862.08,
+ "text": "advertiser,"
+ },
+ {
+ "id": 11379,
+ "start": 5862.08,
+ "end": 5862.4,
+ "text": "any"
+ },
+ {
+ "id": 11380,
+ "start": 5862.4,
+ "end": 5862.76,
+ "text": "page"
+ },
+ {
+ "id": 11381,
+ "start": 5862.76,
+ "end": 5863.28,
+ "text": "on"
+ },
+ {
+ "id": 11382,
+ "start": 5863.28,
+ "end": 5863.76,
+ "text": "Facebook"
+ },
+ {
+ "id": 11383,
+ "start": 5863.76,
+ "end": 5864.04,
+ "text": "and"
+ },
+ {
+ "id": 11384,
+ "start": 5864.04,
+ "end": 5864.34,
+ "text": "see"
+ },
+ {
+ "id": 11385,
+ "start": 5864.34,
+ "end": 5864.56,
+ "text": "all"
+ },
+ {
+ "id": 11386,
+ "start": 5864.56,
+ "end": 5864.64,
+ "text": "of"
+ },
+ {
+ "id": 11387,
+ "start": 5864.64,
+ "end": 5864.78,
+ "text": "the"
+ },
+ {
+ "id": 11388,
+ "start": 5864.78,
+ "end": 5865,
+ "text": "ads"
+ },
+ {
+ "id": 11389,
+ "start": 5865,
+ "end": 5865.14,
+ "text": "that"
+ },
+ {
+ "id": 11390,
+ "start": 5865.14,
+ "end": 5865.36,
+ "text": "they're"
+ },
+ {
+ "id": 11391,
+ "start": 5865.36,
+ "end": 5865.88,
+ "text": "running."
+ },
+ {
+ "id": 11392,
+ "start": 5865.88,
+ "end": 5866.28,
+ "text": "So"
+ },
+ {
+ "id": 11393,
+ "start": 5866.28,
+ "end": 5866.46,
+ "text": "that"
+ },
+ {
+ "id": 11394,
+ "start": 5866.46,
+ "end": 5866.76,
+ "text": "actually"
+ },
+ {
+ "id": 11395,
+ "start": 5866.76,
+ "end": 5867.12,
+ "text": "brings"
+ },
+ {
+ "id": 11396,
+ "start": 5867.12,
+ "end": 5867.86,
+ "text": "advertising"
+ },
+ {
+ "id": 11397,
+ "start": 5867.86,
+ "end": 5868.36,
+ "text": "online"
+ },
+ {
+ "id": 11398,
+ "start": 5868.36,
+ "end": 5869.02,
+ "text": "on"
+ },
+ {
+ "id": 11399,
+ "start": 5869.02,
+ "end": 5869.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 11400,
+ "start": 5869.44,
+ "end": 5869.54,
+ "text": "to"
+ },
+ {
+ "id": 11401,
+ "start": 5869.54,
+ "end": 5869.68,
+ "text": "an"
+ },
+ {
+ "id": 11402,
+ "start": 5869.68,
+ "end": 5869.86,
+ "text": "even"
+ },
+ {
+ "id": 11403,
+ "start": 5869.86,
+ "end": 5870.16,
+ "text": "higher"
+ },
+ {
+ "id": 11404,
+ "start": 5870.16,
+ "end": 5870.68,
+ "text": "standard"
+ },
+ {
+ "id": 11405,
+ "start": 5870.68,
+ "end": 5870.9,
+ "text": "than"
+ },
+ {
+ "id": 11406,
+ "start": 5870.9,
+ "end": 5871.02,
+ "text": "what"
+ },
+ {
+ "id": 11407,
+ "start": 5871.02,
+ "end": 5871.12,
+ "text": "you"
+ },
+ {
+ "id": 11408,
+ "start": 5871.12,
+ "end": 5871.28,
+ "text": "would"
+ },
+ {
+ "id": 11409,
+ "start": 5871.28,
+ "end": 5871.44,
+ "text": "have"
+ },
+ {
+ "id": 11410,
+ "start": 5871.44,
+ "end": 5871.56,
+ "text": "on"
+ },
+ {
+ "id": 11411,
+ "start": 5871.56,
+ "end": 5872.06,
+ "text": "TV"
+ },
+ {
+ "id": 11412,
+ "start": 5872.06,
+ "end": 5872.22,
+ "text": "or"
+ },
+ {
+ "id": 11413,
+ "start": 5872.22,
+ "end": 5872.5,
+ "text": "print"
+ },
+ {
+ "id": 11414,
+ "start": 5872.5,
+ "end": 5872.84,
+ "text": "media."
+ },
+ {
+ "id": 11415,
+ "start": 5872.84,
+ "end": 5873.64,
+ "text": "Because"
+ },
+ {
+ "id": 11416,
+ "start": 5873.64,
+ "end": 5874.36,
+ "text": "there's"
+ },
+ {
+ "id": 11417,
+ "start": 5874.36,
+ "end": 5874.7,
+ "text": "nowhere"
+ },
+ {
+ "id": 11418,
+ "start": 5874.7,
+ "end": 5874.9,
+ "text": "where"
+ },
+ {
+ "id": 11419,
+ "start": 5874.9,
+ "end": 5875.02,
+ "text": "you"
+ },
+ {
+ "id": 11420,
+ "start": 5875.02,
+ "end": 5875.16,
+ "text": "can"
+ },
+ {
+ "id": 11421,
+ "start": 5875.16,
+ "end": 5875.36,
+ "text": "see"
+ },
+ {
+ "id": 11422,
+ "start": 5875.36,
+ "end": 5875.56,
+ "text": "all"
+ },
+ {
+ "id": 11423,
+ "start": 5875.56,
+ "end": 5875.64,
+ "text": "of"
+ },
+ {
+ "id": 11424,
+ "start": 5875.64,
+ "end": 5875.78,
+ "text": "the"
+ },
+ {
+ "id": 11425,
+ "start": 5875.78,
+ "end": 5876.12,
+ "text": "TV"
+ },
+ {
+ "id": 11426,
+ "start": 5876.12,
+ "end": 5876.38,
+ "text": "ads"
+ },
+ {
+ "id": 11427,
+ "start": 5876.38,
+ "end": 5876.58,
+ "text": "that"
+ },
+ {
+ "id": 11428,
+ "start": 5876.58,
+ "end": 5876.86,
+ "text": "someone"
+ },
+ {
+ "id": 11429,
+ "start": 5876.86,
+ "end": 5877,
+ "text": "is"
+ },
+ {
+ "id": 11430,
+ "start": 5877,
+ "end": 5877.26,
+ "text": "running,"
+ },
+ {
+ "id": 11431,
+ "start": 5877.26,
+ "end": 5877.44,
+ "text": "for"
+ },
+ {
+ "id": 11432,
+ "start": 5877.44,
+ "end": 5877.84,
+ "text": "example,"
+ },
+ {
+ "id": 11433,
+ "start": 5877.84,
+ "end": 5878.02,
+ "text": "where"
+ },
+ {
+ "id": 11434,
+ "start": 5878.02,
+ "end": 5878.2,
+ "text": "you"
+ },
+ {
+ "id": 11435,
+ "start": 5878.2,
+ "end": 5878.42,
+ "text": "will"
+ },
+ {
+ "id": 11436,
+ "start": 5878.42,
+ "end": 5878.52,
+ "text": "be"
+ },
+ {
+ "id": 11437,
+ "start": 5878.52,
+ "end": 5878.66,
+ "text": "able"
+ },
+ {
+ "id": 11438,
+ "start": 5878.66,
+ "end": 5878.76,
+ "text": "to"
+ },
+ {
+ "id": 11439,
+ "start": 5878.76,
+ "end": 5879.08,
+ "text": "see"
+ },
+ {
+ "id": 11440,
+ "start": 5879.08,
+ "end": 5879.62,
+ "text": "now"
+ },
+ {
+ "id": 11441,
+ "start": 5879.62,
+ "end": 5879.86,
+ "text": "on"
+ },
+ {
+ "id": 11442,
+ "start": 5879.86,
+ "end": 5880.36,
+ "text": "Facebook."
+ },
+ {
+ "id": 11443,
+ "start": 5880.36,
+ "end": 5881.24,
+ "text": "Whether"
+ },
+ {
+ "id": 11444,
+ "start": 5881.24,
+ "end": 5882.04,
+ "text": "this"
+ },
+ {
+ "id": 11445,
+ "start": 5882.04,
+ "end": 5883.1,
+ "text": "campaign"
+ },
+ {
+ "id": 11446,
+ "start": 5883.1,
+ "end": 5883.76,
+ "text": "or"
+ },
+ {
+ "id": 11447,
+ "start": 5883.76,
+ "end": 5884.2,
+ "text": "third"
+ },
+ {
+ "id": 11448,
+ "start": 5884.2,
+ "end": 5884.54,
+ "text": "party"
+ },
+ {
+ "id": 11449,
+ "start": 5884.54,
+ "end": 5884.72,
+ "text": "is"
+ },
+ {
+ "id": 11450,
+ "start": 5884.72,
+ "end": 5885.22,
+ "text": "saying"
+ },
+ {
+ "id": 11451,
+ "start": 5885.22,
+ "end": 5885.5,
+ "text": "different"
+ },
+ {
+ "id": 11452,
+ "start": 5885.5,
+ "end": 5885.92,
+ "text": "messages"
+ },
+ {
+ "id": 11453,
+ "start": 5885.92,
+ "end": 5886.06,
+ "text": "to"
+ },
+ {
+ "id": 11454,
+ "start": 5886.06,
+ "end": 5886.36,
+ "text": "different"
+ },
+ {
+ "id": 11455,
+ "start": 5886.36,
+ "end": 5886.62,
+ "text": "types"
+ },
+ {
+ "id": 11456,
+ "start": 5886.62,
+ "end": 5886.76,
+ "text": "of"
+ },
+ {
+ "id": 11457,
+ "start": 5886.76,
+ "end": 5887.02,
+ "text": "people"
+ },
+ {
+ "id": 11458,
+ "start": 5887.02,
+ "end": 5887.54,
+ "text": "in"
+ },
+ {
+ "id": 11459,
+ "start": 5887.54,
+ "end": 5887.66,
+ "text": "that"
+ },
+ {
+ "id": 11460,
+ "start": 5887.66,
+ "end": 5887.86,
+ "text": "that's"
+ },
+ {
+ "id": 11461,
+ "start": 5887.86,
+ "end": 5887.92,
+ "text": "a"
+ },
+ {
+ "id": 11462,
+ "start": 5887.92,
+ "end": 5888.2,
+ "text": "really"
+ },
+ {
+ "id": 11463,
+ "start": 5888.2,
+ "end": 5888.58,
+ "text": "important"
+ },
+ {
+ "id": 11464,
+ "start": 5888.58,
+ "end": 5888.9,
+ "text": "element"
+ },
+ {
+ "id": 11465,
+ "start": 5888.9,
+ "end": 5889,
+ "text": "of"
+ },
+ {
+ "id": 11466,
+ "start": 5889,
+ "end": 5889.7,
+ "text": "transparency."
+ },
+ {
+ "id": 11467,
+ "start": 5889.7,
+ "end": 5890.2,
+ "text": "Then"
+ },
+ {
+ "id": 11468,
+ "start": 5890.2,
+ "end": 5890.3,
+ "text": "the"
+ },
+ {
+ "id": 11469,
+ "start": 5890.3,
+ "end": 5890.5,
+ "text": "other"
+ },
+ {
+ "id": 11470,
+ "start": 5890.5,
+ "end": 5890.76,
+ "text": "really"
+ },
+ {
+ "id": 11471,
+ "start": 5890.76,
+ "end": 5891.14,
+ "text": "important"
+ },
+ {
+ "id": 11472,
+ "start": 5891.14,
+ "end": 5891.38,
+ "text": "piece"
+ },
+ {
+ "id": 11473,
+ "start": 5891.38,
+ "end": 5891.54,
+ "text": "is"
+ },
+ {
+ "id": 11474,
+ "start": 5891.54,
+ "end": 5891.82,
+ "text": "around"
+ },
+ {
+ "id": 11475,
+ "start": 5891.82,
+ "end": 5892.4,
+ "text": "verifying"
+ },
+ {
+ "id": 11476,
+ "start": 5892.4,
+ "end": 5892.76,
+ "text": "every"
+ },
+ {
+ "id": 11477,
+ "start": 5892.76,
+ "end": 5893.4,
+ "text": "single"
+ },
+ {
+ "id": 11478,
+ "start": 5893.4,
+ "end": 5894.42,
+ "text": "Advertiser"
+ },
+ {
+ "id": 11479,
+ "start": 5894.42,
+ "end": 5894.86,
+ "text": "who's"
+ },
+ {
+ "id": 11480,
+ "start": 5894.86,
+ "end": 5895.02,
+ "text": "going"
+ },
+ {
+ "id": 11481,
+ "start": 5895.02,
+ "end": 5895.08,
+ "text": "to"
+ },
+ {
+ "id": 11482,
+ "start": 5895.08,
+ "end": 5895.14,
+ "text": "be"
+ },
+ {
+ "id": 11483,
+ "start": 5895.14,
+ "end": 5895.38,
+ "text": "running"
+ },
+ {
+ "id": 11484,
+ "start": 5895.38,
+ "end": 5895.88,
+ "text": "political"
+ },
+ {
+ "id": 11485,
+ "start": 5895.88,
+ "end": 5896.8,
+ "text": "or"
+ },
+ {
+ "id": 11486,
+ "start": 5896.8,
+ "end": 5897.08,
+ "text": "issue"
+ },
+ {
+ "id": 11487,
+ "start": 5897.08,
+ "end": 5897.32,
+ "text": "ads."
+ },
+ {
+ "id": 11488,
+ "start": 5897.32,
+ "end": 5897.66,
+ "text": "I"
+ },
+ {
+ "id": 11489,
+ "start": 5897.66,
+ "end": 5898.12,
+ "text": "appreciate"
+ },
+ {
+ "id": 11490,
+ "start": 5898.12,
+ "end": 5898.3,
+ "text": "that"
+ },
+ {
+ "id": 11491,
+ "start": 5898.3,
+ "end": 5898.5,
+ "text": "in"
+ },
+ {
+ "id": 11492,
+ "start": 5898.5,
+ "end": 5898.78,
+ "text": "center"
+ },
+ {
+ "id": 11493,
+ "start": 5898.78,
+ "end": 5899.04,
+ "text": "Warner"
+ },
+ {
+ "id": 11494,
+ "start": 5899.04,
+ "end": 5899.14,
+ "text": "and"
+ },
+ {
+ "id": 11495,
+ "start": 5899.14,
+ "end": 5899.49,
+ "text": "I"
+ },
+ {
+ "id": 11496,
+ "start": 5899.49,
+ "end": 5899.91,
+ "text": "called"
+ },
+ {
+ "id": 11497,
+ "start": 5899.91,
+ "end": 5900.05,
+ "text": "on"
+ },
+ {
+ "id": 11498,
+ "start": 5900.05,
+ "end": 5900.51,
+ "text": "Google"
+ },
+ {
+ "id": 11499,
+ "start": 5900.51,
+ "end": 5900.67,
+ "text": "and"
+ },
+ {
+ "id": 11500,
+ "start": 5900.67,
+ "end": 5900.79,
+ "text": "the"
+ },
+ {
+ "id": 11501,
+ "start": 5900.79,
+ "end": 5901.01,
+ "text": "other"
+ },
+ {
+ "id": 11502,
+ "start": 5901.01,
+ "end": 5901.61,
+ "text": "platforms"
+ },
+ {
+ "id": 11503,
+ "start": 5901.61,
+ "end": 5901.79,
+ "text": "to"
+ },
+ {
+ "id": 11504,
+ "start": 5901.79,
+ "end": 5901.93,
+ "text": "do"
+ },
+ {
+ "id": 11505,
+ "start": 5901.93,
+ "end": 5902.07,
+ "text": "the"
+ },
+ {
+ "id": 11506,
+ "start": 5902.07,
+ "end": 5902.41,
+ "text": "same."
+ },
+ {
+ "id": 11507,
+ "start": 5902.41,
+ "end": 5902.63,
+ "text": "So"
+ },
+ {
+ "id": 11508,
+ "start": 5902.63,
+ "end": 5903.37,
+ "text": "memo"
+ },
+ {
+ "id": 11509,
+ "start": 5903.37,
+ "end": 5903.51,
+ "text": "to"
+ },
+ {
+ "id": 11510,
+ "start": 5903.51,
+ "end": 5903.69,
+ "text": "the"
+ },
+ {
+ "id": 11511,
+ "start": 5903.69,
+ "end": 5903.93,
+ "text": "rest"
+ },
+ {
+ "id": 11512,
+ "start": 5903.93,
+ "end": 5904.05,
+ "text": "of"
+ },
+ {
+ "id": 11513,
+ "start": 5904.05,
+ "end": 5904.29,
+ "text": "you"
+ },
+ {
+ "id": 11514,
+ "start": 5904.29,
+ "end": 5904.99,
+ "text": "we"
+ },
+ {
+ "id": 11515,
+ "start": 5904.99,
+ "end": 5905.17,
+ "text": "have"
+ },
+ {
+ "id": 11516,
+ "start": 5905.17,
+ "end": 5905.29,
+ "text": "to"
+ },
+ {
+ "id": 11517,
+ "start": 5905.29,
+ "end": 5905.41,
+ "text": "get"
+ },
+ {
+ "id": 11518,
+ "start": 5905.41,
+ "end": 5905.63,
+ "text": "this"
+ },
+ {
+ "id": 11519,
+ "start": 5905.63,
+ "end": 5905.83,
+ "text": "done"
+ },
+ {
+ "id": 11520,
+ "start": 5905.83,
+ "end": 5905.93,
+ "text": "or"
+ },
+ {
+ "id": 11521,
+ "start": 5905.93,
+ "end": 5906.11,
+ "text": "we're"
+ },
+ {
+ "id": 11522,
+ "start": 5906.11,
+ "end": 5906.25,
+ "text": "going"
+ },
+ {
+ "id": 11523,
+ "start": 5906.25,
+ "end": 5906.33,
+ "text": "to"
+ },
+ {
+ "id": 11524,
+ "start": 5906.33,
+ "end": 5906.55,
+ "text": "have"
+ },
+ {
+ "id": 11525,
+ "start": 5906.55,
+ "end": 5906.63,
+ "text": "a"
+ },
+ {
+ "id": 11526,
+ "start": 5906.63,
+ "end": 5907.25,
+ "text": "patchwork"
+ },
+ {
+ "id": 11527,
+ "start": 5907.25,
+ "end": 5907.37,
+ "text": "of"
+ },
+ {
+ "id": 11528,
+ "start": 5907.37,
+ "end": 5907.67,
+ "text": "ads."
+ },
+ {
+ "id": 11529,
+ "start": 5907.67,
+ "end": 5907.85,
+ "text": "And"
+ },
+ {
+ "id": 11530,
+ "start": 5907.85,
+ "end": 5908.07,
+ "text": "I"
+ },
+ {
+ "id": 11531,
+ "start": 5908.07,
+ "end": 5908.83,
+ "text": "hope"
+ },
+ {
+ "id": 11532,
+ "start": 5908.83,
+ "end": 5908.99,
+ "text": "that"
+ },
+ {
+ "id": 11533,
+ "start": 5908.99,
+ "end": 5909.21,
+ "text": "you'll"
+ },
+ {
+ "id": 11534,
+ "start": 5909.21,
+ "end": 5909.31,
+ "text": "be"
+ },
+ {
+ "id": 11535,
+ "start": 5909.31,
+ "end": 5909.63,
+ "text": "working"
+ },
+ {
+ "id": 11536,
+ "start": 5909.63,
+ "end": 5909.79,
+ "text": "with"
+ },
+ {
+ "id": 11537,
+ "start": 5909.79,
+ "end": 5910.01,
+ "text": "us"
+ },
+ {
+ "id": 11538,
+ "start": 5910.01,
+ "end": 5910.17,
+ "text": "to"
+ },
+ {
+ "id": 11539,
+ "start": 5910.17,
+ "end": 5910.51,
+ "text": "pass"
+ },
+ {
+ "id": 11540,
+ "start": 5910.51,
+ "end": 5910.71,
+ "text": "this."
+ },
+ {
+ "id": 11541,
+ "start": 5910.71,
+ "end": 5910.99,
+ "text": "Bill"
+ },
+ {
+ "id": 11542,
+ "start": 5910.99,
+ "end": 5911.23,
+ "text": "is"
+ },
+ {
+ "id": 11543,
+ "start": 5911.23,
+ "end": 5911.39,
+ "text": "that"
+ },
+ {
+ "id": 11544,
+ "start": 5911.39,
+ "end": 5911.61,
+ "text": "right,"
+ },
+ {
+ "id": 11545,
+ "start": 5911.61,
+ "end": 5912.03,
+ "text": "we"
+ },
+ {
+ "id": 11546,
+ "start": 5912.03,
+ "end": 5912.29,
+ "text": "will."
+ },
+ {
+ "id": 11547,
+ "start": 5912.29,
+ "end": 5912.85,
+ "text": "Okay,"
+ },
+ {
+ "id": 11548,
+ "start": 5912.85,
+ "end": 5913.09,
+ "text": "thank"
+ },
+ {
+ "id": 11549,
+ "start": 5913.09,
+ "end": 5913.29,
+ "text": "you."
+ },
+ {
+ "id": 11550,
+ "start": 5913.29,
+ "end": 5914.33,
+ "text": "Now,"
+ },
+ {
+ "id": 11551,
+ "start": 5914.33,
+ "end": 5914.49,
+ "text": "on"
+ },
+ {
+ "id": 11552,
+ "start": 5914.49,
+ "end": 5914.65,
+ "text": "the"
+ },
+ {
+ "id": 11553,
+ "start": 5914.65,
+ "end": 5915.03,
+ "text": "subject"
+ },
+ {
+ "id": 11554,
+ "start": 5915.03,
+ "end": 5915.15,
+ "text": "of"
+ },
+ {
+ "id": 11555,
+ "start": 5915.15,
+ "end": 5915.57,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11556,
+ "start": 5915.57,
+ "end": 5916.94,
+ "text": "Analytica,"
+ },
+ {
+ "id": 11557,
+ "start": 5916.94,
+ "end": 5917.86,
+ "text": "were"
+ },
+ {
+ "id": 11558,
+ "start": 5917.86,
+ "end": 5918.22,
+ "text": "these"
+ },
+ {
+ "id": 11559,
+ "start": 5918.22,
+ "end": 5918.54,
+ "text": "people"
+ },
+ {
+ "id": 11560,
+ "start": 5918.54,
+ "end": 5919.12,
+ "text": "that"
+ },
+ {
+ "id": 11561,
+ "start": 5919.12,
+ "end": 5920.16,
+ "text": "87,000,000"
+ },
+ {
+ "id": 11562,
+ "start": 5920.16,
+ "end": 5920.56,
+ "text": "people"
+ },
+ {
+ "id": 11563,
+ "start": 5920.56,
+ "end": 5922.4,
+ "text": "users"
+ },
+ {
+ "id": 11564,
+ "start": 5922.4,
+ "end": 5923.38,
+ "text": "concentrated"
+ },
+ {
+ "id": 11565,
+ "start": 5923.38,
+ "end": 5923.54,
+ "text": "in"
+ },
+ {
+ "id": 11566,
+ "start": 5923.54,
+ "end": 5923.88,
+ "text": "certain"
+ },
+ {
+ "id": 11567,
+ "start": 5923.88,
+ "end": 5924.2,
+ "text": "states."
+ },
+ {
+ "id": 11568,
+ "start": 5924.2,
+ "end": 5924.34,
+ "text": "Are"
+ },
+ {
+ "id": 11569,
+ "start": 5924.34,
+ "end": 5924.44,
+ "text": "you"
+ },
+ {
+ "id": 11570,
+ "start": 5924.44,
+ "end": 5924.76,
+ "text": "able"
+ },
+ {
+ "id": 11571,
+ "start": 5924.76,
+ "end": 5924.88,
+ "text": "to"
+ },
+ {
+ "id": 11572,
+ "start": 5924.88,
+ "end": 5925.18,
+ "text": "figure"
+ },
+ {
+ "id": 11573,
+ "start": 5925.18,
+ "end": 5925.42,
+ "text": "out"
+ },
+ {
+ "id": 11574,
+ "start": 5925.42,
+ "end": 5925.84,
+ "text": "where"
+ },
+ {
+ "id": 11575,
+ "start": 5925.84,
+ "end": 5926.2,
+ "text": "they're"
+ },
+ {
+ "id": 11576,
+ "start": 5926.2,
+ "end": 5927.14,
+ "text": "from."
+ },
+ {
+ "id": 11577,
+ "start": 5927.14,
+ "end": 5927.92,
+ "text": "I"
+ },
+ {
+ "id": 11578,
+ "start": 5927.92,
+ "end": 5928.06,
+ "text": "do"
+ },
+ {
+ "id": 11579,
+ "start": 5928.06,
+ "end": 5928.42,
+ "text": "not"
+ },
+ {
+ "id": 11580,
+ "start": 5928.42,
+ "end": 5928.78,
+ "text": "have"
+ },
+ {
+ "id": 11581,
+ "start": 5928.78,
+ "end": 5929.06,
+ "text": "that"
+ },
+ {
+ "id": 11582,
+ "start": 5929.06,
+ "end": 5929.74,
+ "text": "information"
+ },
+ {
+ "id": 11583,
+ "start": 5929.74,
+ "end": 5930.78,
+ "text": "with"
+ },
+ {
+ "id": 11584,
+ "start": 5930.78,
+ "end": 5930.92,
+ "text": "me,"
+ },
+ {
+ "id": 11585,
+ "start": 5930.92,
+ "end": 5932.04,
+ "text": "but"
+ },
+ {
+ "id": 11586,
+ "start": 5932.04,
+ "end": 5932.26,
+ "text": "we"
+ },
+ {
+ "id": 11587,
+ "start": 5932.26,
+ "end": 5932.44,
+ "text": "can"
+ },
+ {
+ "id": 11588,
+ "start": 5932.44,
+ "end": 5932.74,
+ "text": "follow"
+ },
+ {
+ "id": 11589,
+ "start": 5932.74,
+ "end": 5932.88,
+ "text": "up"
+ },
+ {
+ "id": 11590,
+ "start": 5932.88,
+ "end": 5933.04,
+ "text": "with"
+ },
+ {
+ "id": 11591,
+ "start": 5933.04,
+ "end": 5933.42,
+ "text": "your"
+ },
+ {
+ "id": 11592,
+ "start": 5933.42,
+ "end": 5933.82,
+ "text": "office."
+ },
+ {
+ "id": 11593,
+ "start": 5933.82,
+ "end": 5934.28,
+ "text": "Okay,"
+ },
+ {
+ "id": 11594,
+ "start": 5934.28,
+ "end": 5934.5,
+ "text": "because"
+ },
+ {
+ "id": 11595,
+ "start": 5934.5,
+ "end": 5934.68,
+ "text": "as"
+ },
+ {
+ "id": 11596,
+ "start": 5934.68,
+ "end": 5934.84,
+ "text": "we"
+ },
+ {
+ "id": 11597,
+ "start": 5934.84,
+ "end": 5935,
+ "text": "know"
+ },
+ {
+ "id": 11598,
+ "start": 5935,
+ "end": 5935.24,
+ "text": "the"
+ },
+ {
+ "id": 11599,
+ "start": 5935.24,
+ "end": 5935.8,
+ "text": "election"
+ },
+ {
+ "id": 11600,
+ "start": 5935.8,
+ "end": 5935.98,
+ "text": "was"
+ },
+ {
+ "id": 11601,
+ "start": 5935.98,
+ "end": 5936.3,
+ "text": "close"
+ },
+ {
+ "id": 11602,
+ "start": 5936.3,
+ "end": 5936.62,
+ "text": "and"
+ },
+ {
+ "id": 11603,
+ "start": 5936.62,
+ "end": 5936.84,
+ "text": "it"
+ },
+ {
+ "id": 11604,
+ "start": 5936.84,
+ "end": 5937,
+ "text": "was"
+ },
+ {
+ "id": 11605,
+ "start": 5937,
+ "end": 5937.34,
+ "text": "only"
+ },
+ {
+ "id": 11606,
+ "start": 5937.34,
+ "end": 5938.08,
+ "text": "thousands"
+ },
+ {
+ "id": 11607,
+ "start": 5938.08,
+ "end": 5938.18,
+ "text": "of"
+ },
+ {
+ "id": 11608,
+ "start": 5938.18,
+ "end": 5938.44,
+ "text": "votes"
+ },
+ {
+ "id": 11609,
+ "start": 5938.44,
+ "end": 5938.62,
+ "text": "in"
+ },
+ {
+ "id": 11610,
+ "start": 5938.62,
+ "end": 5939.04,
+ "text": "certain"
+ },
+ {
+ "id": 11611,
+ "start": 5939.04,
+ "end": 5939.38,
+ "text": "states."
+ },
+ {
+ "id": 11612,
+ "start": 5939.38,
+ "end": 5940.32,
+ "text": "You've"
+ },
+ {
+ "id": 11613,
+ "start": 5940.32,
+ "end": 5940.6,
+ "text": "also"
+ },
+ {
+ "id": 11614,
+ "start": 5940.6,
+ "end": 5941.14,
+ "text": "estimated"
+ },
+ {
+ "id": 11615,
+ "start": 5941.14,
+ "end": 5941.32,
+ "text": "that"
+ },
+ {
+ "id": 11616,
+ "start": 5941.32,
+ "end": 5941.76,
+ "text": "roughly"
+ },
+ {
+ "id": 11617,
+ "start": 5941.76,
+ "end": 5944.09,
+ "text": "126,000,000"
+ },
+ {
+ "id": 11618,
+ "start": 5944.09,
+ "end": 5944.39,
+ "text": "people"
+ },
+ {
+ "id": 11619,
+ "start": 5944.39,
+ "end": 5944.63,
+ "text": "may"
+ },
+ {
+ "id": 11620,
+ "start": 5944.63,
+ "end": 5944.77,
+ "text": "have"
+ },
+ {
+ "id": 11621,
+ "start": 5944.77,
+ "end": 5944.99,
+ "text": "been"
+ },
+ {
+ "id": 11622,
+ "start": 5944.99,
+ "end": 5945.27,
+ "text": "shown"
+ },
+ {
+ "id": 11623,
+ "start": 5945.27,
+ "end": 5945.79,
+ "text": "content"
+ },
+ {
+ "id": 11624,
+ "start": 5945.79,
+ "end": 5946.01,
+ "text": "from"
+ },
+ {
+ "id": 11625,
+ "start": 5946.01,
+ "end": 5946.09,
+ "text": "a"
+ },
+ {
+ "id": 11626,
+ "start": 5946.09,
+ "end": 5946.53,
+ "text": "Facebook"
+ },
+ {
+ "id": 11627,
+ "start": 5946.53,
+ "end": 5946.79,
+ "text": "page"
+ },
+ {
+ "id": 11628,
+ "start": 5946.79,
+ "end": 5947.81,
+ "text": "associated"
+ },
+ {
+ "id": 11629,
+ "start": 5947.81,
+ "end": 5947.97,
+ "text": "with"
+ },
+ {
+ "id": 11630,
+ "start": 5947.97,
+ "end": 5948.09,
+ "text": "the"
+ },
+ {
+ "id": 11631,
+ "start": 5948.09,
+ "end": 5948.53,
+ "text": "Internet"
+ },
+ {
+ "id": 11632,
+ "start": 5948.53,
+ "end": 5948.97,
+ "text": "Research"
+ },
+ {
+ "id": 11633,
+ "start": 5948.97,
+ "end": 5949.63,
+ "text": "Agency,"
+ },
+ {
+ "id": 11634,
+ "start": 5949.63,
+ "end": 5950.21,
+ "text": "have"
+ },
+ {
+ "id": 11635,
+ "start": 5950.21,
+ "end": 5950.37,
+ "text": "you"
+ },
+ {
+ "id": 11636,
+ "start": 5950.37,
+ "end": 5950.91,
+ "text": "determined"
+ },
+ {
+ "id": 11637,
+ "start": 5950.91,
+ "end": 5951.77,
+ "text": "whether"
+ },
+ {
+ "id": 11638,
+ "start": 5951.77,
+ "end": 5951.99,
+ "text": "any"
+ },
+ {
+ "id": 11639,
+ "start": 5951.99,
+ "end": 5952.07,
+ "text": "of"
+ },
+ {
+ "id": 11640,
+ "start": 5952.07,
+ "end": 5952.43,
+ "text": "those"
+ },
+ {
+ "id": 11641,
+ "start": 5952.43,
+ "end": 5952.77,
+ "text": "people"
+ },
+ {
+ "id": 11642,
+ "start": 5952.77,
+ "end": 5953.25,
+ "text": "were"
+ },
+ {
+ "id": 11643,
+ "start": 5953.25,
+ "end": 5953.37,
+ "text": "the"
+ },
+ {
+ "id": 11644,
+ "start": 5953.37,
+ "end": 5953.77,
+ "text": "same"
+ },
+ {
+ "id": 11645,
+ "start": 5953.77,
+ "end": 5954.21,
+ "text": "Facebook"
+ },
+ {
+ "id": 11646,
+ "start": 5954.21,
+ "end": 5954.57,
+ "text": "users"
+ },
+ {
+ "id": 11647,
+ "start": 5954.57,
+ "end": 5954.79,
+ "text": "whose"
+ },
+ {
+ "id": 11648,
+ "start": 5954.79,
+ "end": 5955.07,
+ "text": "data"
+ },
+ {
+ "id": 11649,
+ "start": 5955.07,
+ "end": 5955.23,
+ "text": "was"
+ },
+ {
+ "id": 11650,
+ "start": 5955.23,
+ "end": 5955.51,
+ "text": "shared"
+ },
+ {
+ "id": 11651,
+ "start": 5955.51,
+ "end": 5955.69,
+ "text": "with"
+ },
+ {
+ "id": 11652,
+ "start": 5955.69,
+ "end": 5956.17,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11653,
+ "start": 5956.17,
+ "end": 5956.75,
+ "text": "Analytica?"
+ },
+ {
+ "id": 11654,
+ "start": 5956.75,
+ "end": 5957.29,
+ "text": "Are"
+ },
+ {
+ "id": 11655,
+ "start": 5957.29,
+ "end": 5957.43,
+ "text": "you"
+ },
+ {
+ "id": 11656,
+ "start": 5957.43,
+ "end": 5957.65,
+ "text": "able"
+ },
+ {
+ "id": 11657,
+ "start": 5957.65,
+ "end": 5957.75,
+ "text": "to"
+ },
+ {
+ "id": 11658,
+ "start": 5957.75,
+ "end": 5957.89,
+ "text": "make"
+ },
+ {
+ "id": 11659,
+ "start": 5957.89,
+ "end": 5958.09,
+ "text": "that"
+ },
+ {
+ "id": 11660,
+ "start": 5958.09,
+ "end": 5959.16,
+ "text": "determination,"
+ },
+ {
+ "id": 11661,
+ "start": 5959.16,
+ "end": 5959.82,
+ "text": "Senator"
+ },
+ {
+ "id": 11662,
+ "start": 5959.82,
+ "end": 5960.04,
+ "text": "we're"
+ },
+ {
+ "id": 11663,
+ "start": 5960.04,
+ "end": 5960.64,
+ "text": "investigating"
+ },
+ {
+ "id": 11664,
+ "start": 5960.64,
+ "end": 5960.8,
+ "text": "that"
+ },
+ {
+ "id": 11665,
+ "start": 5960.8,
+ "end": 5961.54,
+ "text": "now"
+ },
+ {
+ "id": 11666,
+ "start": 5961.54,
+ "end": 5962.14,
+ "text": "we"
+ },
+ {
+ "id": 11667,
+ "start": 5962.14,
+ "end": 5962.76,
+ "text": "believe"
+ },
+ {
+ "id": 11668,
+ "start": 5962.76,
+ "end": 5962.92,
+ "text": "that"
+ },
+ {
+ "id": 11669,
+ "start": 5962.92,
+ "end": 5963,
+ "text": "it"
+ },
+ {
+ "id": 11670,
+ "start": 5963,
+ "end": 5963.12,
+ "text": "is"
+ },
+ {
+ "id": 11671,
+ "start": 5963.12,
+ "end": 5963.68,
+ "text": "entirely"
+ },
+ {
+ "id": 11672,
+ "start": 5963.68,
+ "end": 5964.16,
+ "text": "possible"
+ },
+ {
+ "id": 11673,
+ "start": 5964.16,
+ "end": 5964.34,
+ "text": "that"
+ },
+ {
+ "id": 11674,
+ "start": 5964.34,
+ "end": 5964.52,
+ "text": "there"
+ },
+ {
+ "id": 11675,
+ "start": 5964.52,
+ "end": 5964.72,
+ "text": "will"
+ },
+ {
+ "id": 11676,
+ "start": 5964.72,
+ "end": 5964.84,
+ "text": "be"
+ },
+ {
+ "id": 11677,
+ "start": 5964.84,
+ "end": 5964.92,
+ "text": "a"
+ },
+ {
+ "id": 11678,
+ "start": 5964.92,
+ "end": 5965.34,
+ "text": "connection"
+ },
+ {
+ "id": 11679,
+ "start": 5965.34,
+ "end": 5965.56,
+ "text": "there."
+ },
+ {
+ "id": 11680,
+ "start": 5965.56,
+ "end": 5966.56,
+ "text": "Okay,"
+ },
+ {
+ "id": 11681,
+ "start": 5966.56,
+ "end": 5966.8,
+ "text": "that"
+ },
+ {
+ "id": 11682,
+ "start": 5966.8,
+ "end": 5967.1,
+ "text": "seems"
+ },
+ {
+ "id": 11683,
+ "start": 5967.1,
+ "end": 5967.28,
+ "text": "like"
+ },
+ {
+ "id": 11684,
+ "start": 5967.28,
+ "end": 5967.4,
+ "text": "a"
+ },
+ {
+ "id": 11685,
+ "start": 5967.4,
+ "end": 5967.68,
+ "text": "big"
+ },
+ {
+ "id": 11686,
+ "start": 5967.68,
+ "end": 5967.9,
+ "text": "deal."
+ },
+ {
+ "id": 11687,
+ "start": 5967.9,
+ "end": 5968.1,
+ "text": "As"
+ },
+ {
+ "id": 11688,
+ "start": 5968.1,
+ "end": 5968.22,
+ "text": "we"
+ },
+ {
+ "id": 11689,
+ "start": 5968.22,
+ "end": 5968.48,
+ "text": "look"
+ },
+ {
+ "id": 11690,
+ "start": 5968.48,
+ "end": 5968.74,
+ "text": "back"
+ },
+ {
+ "id": 11691,
+ "start": 5968.74,
+ "end": 5968.88,
+ "text": "at"
+ },
+ {
+ "id": 11692,
+ "start": 5968.88,
+ "end": 5969.1,
+ "text": "that"
+ },
+ {
+ "id": 11693,
+ "start": 5969.1,
+ "end": 5969.38,
+ "text": "last"
+ },
+ {
+ "id": 11694,
+ "start": 5969.38,
+ "end": 5969.92,
+ "text": "election,"
+ },
+ {
+ "id": 11695,
+ "start": 5969.92,
+ "end": 5970.88,
+ "text": "former"
+ },
+ {
+ "id": 11696,
+ "start": 5970.88,
+ "end": 5971.34,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11697,
+ "start": 5971.34,
+ "end": 5971.88,
+ "text": "Analytica"
+ },
+ {
+ "id": 11698,
+ "start": 5971.88,
+ "end": 5972.46,
+ "text": "employee"
+ },
+ {
+ "id": 11699,
+ "start": 5972.46,
+ "end": 5973.04,
+ "text": "Christopher"
+ },
+ {
+ "id": 11700,
+ "start": 5973.04,
+ "end": 5974,
+ "text": "Wiley"
+ },
+ {
+ "id": 11701,
+ "start": 5974,
+ "end": 5974.28,
+ "text": "said"
+ },
+ {
+ "id": 11702,
+ "start": 5974.28,
+ "end": 5974.5,
+ "text": "that"
+ },
+ {
+ "id": 11703,
+ "start": 5974.5,
+ "end": 5974.7,
+ "text": "the"
+ },
+ {
+ "id": 11704,
+ "start": 5974.7,
+ "end": 5975.2,
+ "text": "data"
+ },
+ {
+ "id": 11705,
+ "start": 5975.2,
+ "end": 5975.86,
+ "text": "that"
+ },
+ {
+ "id": 11706,
+ "start": 5975.86,
+ "end": 5976.02,
+ "text": "it"
+ },
+ {
+ "id": 11707,
+ "start": 5976.02,
+ "end": 5976.96,
+ "text": "improperly"
+ },
+ {
+ "id": 11708,
+ "start": 5976.96,
+ "end": 5977.56,
+ "text": "obtained"
+ },
+ {
+ "id": 11709,
+ "start": 5977.56,
+ "end": 5977.72,
+ "text": "that"
+ },
+ {
+ "id": 11710,
+ "start": 5977.72,
+ "end": 5978.12,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11711,
+ "start": 5978.12,
+ "end": 5978.62,
+ "text": "analytic"
+ },
+ {
+ "id": 11712,
+ "start": 5978.62,
+ "end": 5978.94,
+ "text": "and"
+ },
+ {
+ "id": 11713,
+ "start": 5978.94,
+ "end": 5979.42,
+ "text": "properly"
+ },
+ {
+ "id": 11714,
+ "start": 5979.42,
+ "end": 5979.84,
+ "text": "obtained"
+ },
+ {
+ "id": 11715,
+ "start": 5979.84,
+ "end": 5980.02,
+ "text": "from"
+ },
+ {
+ "id": 11716,
+ "start": 5980.02,
+ "end": 5980.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 11717,
+ "start": 5980.46,
+ "end": 5980.9,
+ "text": "users"
+ },
+ {
+ "id": 11718,
+ "start": 5980.9,
+ "end": 5981.46,
+ "text": "could"
+ },
+ {
+ "id": 11719,
+ "start": 5981.46,
+ "end": 5981.62,
+ "text": "be"
+ },
+ {
+ "id": 11720,
+ "start": 5981.62,
+ "end": 5982.04,
+ "text": "stored"
+ },
+ {
+ "id": 11721,
+ "start": 5982.04,
+ "end": 5982.2,
+ "text": "in"
+ },
+ {
+ "id": 11722,
+ "start": 5982.2,
+ "end": 5982.64,
+ "text": "Russia."
+ },
+ {
+ "id": 11723,
+ "start": 5982.64,
+ "end": 5983.18,
+ "text": "Do"
+ },
+ {
+ "id": 11724,
+ "start": 5983.18,
+ "end": 5983.32,
+ "text": "you"
+ },
+ {
+ "id": 11725,
+ "start": 5983.32,
+ "end": 5983.62,
+ "text": "agree"
+ },
+ {
+ "id": 11726,
+ "start": 5983.62,
+ "end": 5983.8,
+ "text": "that"
+ },
+ {
+ "id": 11727,
+ "start": 5983.8,
+ "end": 5984.06,
+ "text": "that's"
+ },
+ {
+ "id": 11728,
+ "start": 5984.06,
+ "end": 5984.16,
+ "text": "a"
+ },
+ {
+ "id": 11729,
+ "start": 5984.16,
+ "end": 5987.28,
+ "text": "possibility?"
+ },
+ {
+ "id": 11730,
+ "start": 5987.28,
+ "end": 5988.26,
+ "text": "Sorry,"
+ },
+ {
+ "id": 11731,
+ "start": 5988.26,
+ "end": 5988.66,
+ "text": "are"
+ },
+ {
+ "id": 11732,
+ "start": 5988.66,
+ "end": 5988.76,
+ "text": "you"
+ },
+ {
+ "id": 11733,
+ "start": 5988.76,
+ "end": 5989.14,
+ "text": "asking"
+ },
+ {
+ "id": 11734,
+ "start": 5989.14,
+ "end": 5989.42,
+ "text": "if"
+ },
+ {
+ "id": 11735,
+ "start": 5989.42,
+ "end": 5990.14,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11736,
+ "start": 5990.14,
+ "end": 5990.58,
+ "text": "analytics"
+ },
+ {
+ "id": 11737,
+ "start": 5990.58,
+ "end": 5991.18,
+ "text": "data"
+ },
+ {
+ "id": 11738,
+ "start": 5991.18,
+ "end": 5991.36,
+ "text": "could"
+ },
+ {
+ "id": 11739,
+ "start": 5991.36,
+ "end": 5991.46,
+ "text": "be"
+ },
+ {
+ "id": 11740,
+ "start": 5991.46,
+ "end": 5991.68,
+ "text": "stored"
+ },
+ {
+ "id": 11741,
+ "start": 5991.68,
+ "end": 5991.78,
+ "text": "in"
+ },
+ {
+ "id": 11742,
+ "start": 5991.78,
+ "end": 5992.12,
+ "text": "Russia?"
+ },
+ {
+ "id": 11743,
+ "start": 5992.12,
+ "end": 5992.66,
+ "text": "That's"
+ },
+ {
+ "id": 11744,
+ "start": 5992.66,
+ "end": 5992.8,
+ "text": "what"
+ },
+ {
+ "id": 11745,
+ "start": 5992.8,
+ "end": 5992.94,
+ "text": "he"
+ },
+ {
+ "id": 11746,
+ "start": 5992.94,
+ "end": 5993.18,
+ "text": "said"
+ },
+ {
+ "id": 11747,
+ "start": 5993.18,
+ "end": 5993.38,
+ "text": "this"
+ },
+ {
+ "id": 11748,
+ "start": 5993.38,
+ "end": 5993.76,
+ "text": "weekend"
+ },
+ {
+ "id": 11749,
+ "start": 5993.76,
+ "end": 5993.9,
+ "text": "on"
+ },
+ {
+ "id": 11750,
+ "start": 5993.9,
+ "end": 5994,
+ "text": "a"
+ },
+ {
+ "id": 11751,
+ "start": 5994,
+ "end": 5994.34,
+ "text": "Sunday"
+ },
+ {
+ "id": 11752,
+ "start": 5994.34,
+ "end": 5995.76,
+ "text": "show,"
+ },
+ {
+ "id": 11753,
+ "start": 5995.76,
+ "end": 5996.78,
+ "text": "Senator,"
+ },
+ {
+ "id": 11754,
+ "start": 5996.78,
+ "end": 5997.12,
+ "text": "I"
+ },
+ {
+ "id": 11755,
+ "start": 5997.12,
+ "end": 5997.32,
+ "text": "don't"
+ },
+ {
+ "id": 11756,
+ "start": 5997.32,
+ "end": 5997.52,
+ "text": "have"
+ },
+ {
+ "id": 11757,
+ "start": 5997.52,
+ "end": 5997.76,
+ "text": "any"
+ },
+ {
+ "id": 11758,
+ "start": 5997.76,
+ "end": 5998.88,
+ "text": "specific"
+ },
+ {
+ "id": 11759,
+ "start": 5998.88,
+ "end": 5999.16,
+ "text": "knowledge"
+ },
+ {
+ "id": 11760,
+ "start": 5999.16,
+ "end": 5999.28,
+ "text": "that"
+ },
+ {
+ "id": 11761,
+ "start": 5999.28,
+ "end": 5999.46,
+ "text": "would"
+ },
+ {
+ "id": 11762,
+ "start": 5999.46,
+ "end": 5999.82,
+ "text": "suggest"
+ },
+ {
+ "id": 11763,
+ "start": 5999.82,
+ "end": 6000.08,
+ "text": "that."
+ },
+ {
+ "id": 11764,
+ "start": 6000.08,
+ "end": 6000.28,
+ "text": "But"
+ },
+ {
+ "id": 11765,
+ "start": 6000.28,
+ "end": 6000.74,
+ "text": "one"
+ },
+ {
+ "id": 11766,
+ "start": 6000.74,
+ "end": 6000.84,
+ "text": "of"
+ },
+ {
+ "id": 11767,
+ "start": 6000.84,
+ "end": 6000.94,
+ "text": "the"
+ },
+ {
+ "id": 11768,
+ "start": 6000.94,
+ "end": 6001.36,
+ "text": "steps"
+ },
+ {
+ "id": 11769,
+ "start": 6001.36,
+ "end": 6001.52,
+ "text": "that"
+ },
+ {
+ "id": 11770,
+ "start": 6001.52,
+ "end": 6001.62,
+ "text": "we"
+ },
+ {
+ "id": 11771,
+ "start": 6001.62,
+ "end": 6001.8,
+ "text": "need"
+ },
+ {
+ "id": 11772,
+ "start": 6001.8,
+ "end": 6001.88,
+ "text": "to"
+ },
+ {
+ "id": 11773,
+ "start": 6001.88,
+ "end": 6002.08,
+ "text": "take"
+ },
+ {
+ "id": 11774,
+ "start": 6002.08,
+ "end": 6002.34,
+ "text": "now"
+ },
+ {
+ "id": 11775,
+ "start": 6002.34,
+ "end": 6002.88,
+ "text": "is"
+ },
+ {
+ "id": 11776,
+ "start": 6002.88,
+ "end": 6003.02,
+ "text": "go"
+ },
+ {
+ "id": 11777,
+ "start": 6003.02,
+ "end": 6003.14,
+ "text": "to"
+ },
+ {
+ "id": 11778,
+ "start": 6003.14,
+ "end": 6003.22,
+ "text": "a"
+ },
+ {
+ "id": 11779,
+ "start": 6003.22,
+ "end": 6003.52,
+ "text": "full"
+ },
+ {
+ "id": 11780,
+ "start": 6003.52,
+ "end": 6003.84,
+ "text": "audit"
+ },
+ {
+ "id": 11781,
+ "start": 6003.84,
+ "end": 6004,
+ "text": "of"
+ },
+ {
+ "id": 11782,
+ "start": 6004,
+ "end": 6004.24,
+ "text": "all"
+ },
+ {
+ "id": 11783,
+ "start": 6004.24,
+ "end": 6004.36,
+ "text": "of"
+ },
+ {
+ "id": 11784,
+ "start": 6004.36,
+ "end": 6004.74,
+ "text": "Cambridge"
+ },
+ {
+ "id": 11785,
+ "start": 6004.74,
+ "end": 6005.2,
+ "text": "analytical"
+ },
+ {
+ "id": 11786,
+ "start": 6005.2,
+ "end": 6005.64,
+ "text": "systems"
+ },
+ {
+ "id": 11787,
+ "start": 6005.64,
+ "end": 6005.74,
+ "text": "to"
+ },
+ {
+ "id": 11788,
+ "start": 6005.74,
+ "end": 6006.28,
+ "text": "understand"
+ },
+ {
+ "id": 11789,
+ "start": 6006.28,
+ "end": 6006.96,
+ "text": "what"
+ },
+ {
+ "id": 11790,
+ "start": 6006.96,
+ "end": 6007.2,
+ "text": "they're"
+ },
+ {
+ "id": 11791,
+ "start": 6007.2,
+ "end": 6007.44,
+ "text": "doing."
+ },
+ {
+ "id": 11792,
+ "start": 6007.44,
+ "end": 6007.94,
+ "text": "Whether"
+ },
+ {
+ "id": 11793,
+ "start": 6007.94,
+ "end": 6008.08,
+ "text": "they"
+ },
+ {
+ "id": 11794,
+ "start": 6008.08,
+ "end": 6008.3,
+ "text": "still"
+ },
+ {
+ "id": 11795,
+ "start": 6008.3,
+ "end": 6008.42,
+ "text": "have"
+ },
+ {
+ "id": 11796,
+ "start": 6008.42,
+ "end": 6008.58,
+ "text": "any"
+ },
+ {
+ "id": 11797,
+ "start": 6008.58,
+ "end": 6008.88,
+ "text": "data"
+ },
+ {
+ "id": 11798,
+ "start": 6008.88,
+ "end": 6009.34,
+ "text": "to"
+ },
+ {
+ "id": 11799,
+ "start": 6009.34,
+ "end": 6009.48,
+ "text": "make"
+ },
+ {
+ "id": 11800,
+ "start": 6009.48,
+ "end": 6009.6,
+ "text": "sure"
+ },
+ {
+ "id": 11801,
+ "start": 6009.6,
+ "end": 6009.86,
+ "text": "they"
+ },
+ {
+ "id": 11802,
+ "start": 6009.86,
+ "end": 6010.12,
+ "text": "remove"
+ },
+ {
+ "id": 11803,
+ "start": 6010.12,
+ "end": 6010.24,
+ "text": "all"
+ },
+ {
+ "id": 11804,
+ "start": 6010.24,
+ "end": 6010.36,
+ "text": "the"
+ },
+ {
+ "id": 11805,
+ "start": 6010.36,
+ "end": 6010.56,
+ "text": "data"
+ },
+ {
+ "id": 11806,
+ "start": 6010.56,
+ "end": 6010.62,
+ "text": "if"
+ },
+ {
+ "id": 11807,
+ "start": 6010.62,
+ "end": 6010.76,
+ "text": "they"
+ },
+ {
+ "id": 11808,
+ "start": 6010.76,
+ "end": 6010.94,
+ "text": "don't"
+ },
+ {
+ "id": 11809,
+ "start": 6010.94,
+ "end": 6011.1,
+ "text": "we're"
+ },
+ {
+ "id": 11810,
+ "start": 6011.1,
+ "end": 6011.24,
+ "text": "going"
+ },
+ {
+ "id": 11811,
+ "start": 6011.24,
+ "end": 6011.3,
+ "text": "to"
+ },
+ {
+ "id": 11812,
+ "start": 6011.3,
+ "end": 6011.42,
+ "text": "take"
+ },
+ {
+ "id": 11813,
+ "start": 6011.42,
+ "end": 6011.68,
+ "text": "legal"
+ },
+ {
+ "id": 11814,
+ "start": 6011.68,
+ "end": 6011.94,
+ "text": "action"
+ },
+ {
+ "id": 11815,
+ "start": 6011.94,
+ "end": 6012.22,
+ "text": "against"
+ },
+ {
+ "id": 11816,
+ "start": 6012.22,
+ "end": 6012.42,
+ "text": "them"
+ },
+ {
+ "id": 11817,
+ "start": 6012.42,
+ "end": 6012.52,
+ "text": "to"
+ },
+ {
+ "id": 11818,
+ "start": 6012.52,
+ "end": 6012.68,
+ "text": "do"
+ },
+ {
+ "id": 11819,
+ "start": 6012.68,
+ "end": 6012.92,
+ "text": "so"
+ },
+ {
+ "id": 11820,
+ "start": 6012.92,
+ "end": 6013.86,
+ "text": "that"
+ },
+ {
+ "id": 11821,
+ "start": 6013.86,
+ "end": 6014.82,
+ "text": "audit."
+ },
+ {
+ "id": 11822,
+ "start": 6014.82,
+ "end": 6015.44,
+ "text": "We"
+ },
+ {
+ "id": 11823,
+ "start": 6015.44,
+ "end": 6015.6,
+ "text": "have"
+ },
+ {
+ "id": 11824,
+ "start": 6015.6,
+ "end": 6016.26,
+ "text": "temporarily"
+ },
+ {
+ "id": 11825,
+ "start": 6016.26,
+ "end": 6017.38,
+ "text": "seated"
+ },
+ {
+ "id": 11826,
+ "start": 6017.38,
+ "end": 6017.64,
+ "text": "that"
+ },
+ {
+ "id": 11827,
+ "start": 6017.64,
+ "end": 6017.8,
+ "text": "in"
+ },
+ {
+ "id": 11828,
+ "start": 6017.8,
+ "end": 6018.04,
+ "text": "order"
+ },
+ {
+ "id": 11829,
+ "start": 6018.04,
+ "end": 6018.14,
+ "text": "to"
+ },
+ {
+ "id": 11830,
+ "start": 6018.14,
+ "end": 6018.34,
+ "text": "let"
+ },
+ {
+ "id": 11831,
+ "start": 6018.34,
+ "end": 6018.54,
+ "text": "the"
+ },
+ {
+ "id": 11832,
+ "start": 6018.54,
+ "end": 6018.92,
+ "text": "UK"
+ },
+ {
+ "id": 11833,
+ "start": 6018.92,
+ "end": 6019.4,
+ "text": "Government"
+ },
+ {
+ "id": 11834,
+ "start": 6019.4,
+ "end": 6019.88,
+ "text": "complete"
+ },
+ {
+ "id": 11835,
+ "start": 6019.88,
+ "end": 6020.18,
+ "text": "their"
+ },
+ {
+ "id": 11836,
+ "start": 6020.18,
+ "end": 6020.62,
+ "text": "government"
+ },
+ {
+ "id": 11837,
+ "start": 6020.62,
+ "end": 6021.3,
+ "text": "investigation"
+ },
+ {
+ "id": 11838,
+ "start": 6021.3,
+ "end": 6021.56,
+ "text": "first,"
+ },
+ {
+ "id": 11839,
+ "start": 6021.56,
+ "end": 6021.78,
+ "text": "because,"
+ },
+ {
+ "id": 11840,
+ "start": 6021.78,
+ "end": 6021.88,
+ "text": "of"
+ },
+ {
+ "id": 11841,
+ "start": 6021.88,
+ "end": 6022.06,
+ "text": "course,"
+ },
+ {
+ "id": 11842,
+ "start": 6022.06,
+ "end": 6022.18,
+ "text": "the"
+ },
+ {
+ "id": 11843,
+ "start": 6022.18,
+ "end": 6022.52,
+ "text": "government"
+ },
+ {
+ "id": 11844,
+ "start": 6022.52,
+ "end": 6023.08,
+ "text": "investigation"
+ },
+ {
+ "id": 11845,
+ "start": 6023.08,
+ "end": 6023.32,
+ "text": "takes"
+ },
+ {
+ "id": 11846,
+ "start": 6023.32,
+ "end": 6023.86,
+ "text": "precedence"
+ },
+ {
+ "id": 11847,
+ "start": 6023.86,
+ "end": 6024.16,
+ "text": "over"
+ },
+ {
+ "id": 11848,
+ "start": 6024.16,
+ "end": 6024.58,
+ "text": "a"
+ },
+ {
+ "id": 11849,
+ "start": 6024.58,
+ "end": 6024.98,
+ "text": "company"
+ },
+ {
+ "id": 11850,
+ "start": 6024.98,
+ "end": 6025.22,
+ "text": "doing"
+ },
+ {
+ "id": 11851,
+ "start": 6025.22,
+ "end": 6025.72,
+ "text": "that."
+ },
+ {
+ "id": 11852,
+ "start": 6025.72,
+ "end": 6026.04,
+ "text": "But"
+ },
+ {
+ "id": 11853,
+ "start": 6026.04,
+ "end": 6026.42,
+ "text": "we"
+ },
+ {
+ "id": 11854,
+ "start": 6026.42,
+ "end": 6026.54,
+ "text": "are"
+ },
+ {
+ "id": 11855,
+ "start": 6026.54,
+ "end": 6026.98,
+ "text": "committed"
+ },
+ {
+ "id": 11856,
+ "start": 6026.98,
+ "end": 6027.2,
+ "text": "to"
+ },
+ {
+ "id": 11857,
+ "start": 6027.2,
+ "end": 6027.92,
+ "text": "completing"
+ },
+ {
+ "id": 11858,
+ "start": 6027.92,
+ "end": 6028.08,
+ "text": "this."
+ },
+ {
+ "id": 11859,
+ "start": 6028.08,
+ "end": 6028.32,
+ "text": "Full"
+ },
+ {
+ "id": 11860,
+ "start": 6028.32,
+ "end": 6028.56,
+ "text": "audit"
+ },
+ {
+ "id": 11861,
+ "start": 6028.56,
+ "end": 6028.7,
+ "text": "and"
+ },
+ {
+ "id": 11862,
+ "start": 6028.7,
+ "end": 6028.94,
+ "text": "getting"
+ },
+ {
+ "id": 11863,
+ "start": 6028.94,
+ "end": 6029,
+ "text": "to"
+ },
+ {
+ "id": 11864,
+ "start": 6029,
+ "end": 6029.12,
+ "text": "the"
+ },
+ {
+ "id": 11865,
+ "start": 6029.12,
+ "end": 6029.34,
+ "text": "bottom"
+ },
+ {
+ "id": 11866,
+ "start": 6029.34,
+ "end": 6029.44,
+ "text": "of"
+ },
+ {
+ "id": 11867,
+ "start": 6029.44,
+ "end": 6029.66,
+ "text": "what's"
+ },
+ {
+ "id": 11868,
+ "start": 6029.66,
+ "end": 6029.86,
+ "text": "going"
+ },
+ {
+ "id": 11869,
+ "start": 6029.86,
+ "end": 6029.98,
+ "text": "on"
+ },
+ {
+ "id": 11870,
+ "start": 6029.98,
+ "end": 6030.2,
+ "text": "here."
+ },
+ {
+ "id": 11871,
+ "start": 6030.2,
+ "end": 6030.7,
+ "text": "So"
+ },
+ {
+ "id": 11872,
+ "start": 6030.7,
+ "end": 6030.86,
+ "text": "that"
+ },
+ {
+ "id": 11873,
+ "start": 6030.86,
+ "end": 6031,
+ "text": "way,"
+ },
+ {
+ "id": 11874,
+ "start": 6031,
+ "end": 6031.12,
+ "text": "we"
+ },
+ {
+ "id": 11875,
+ "start": 6031.12,
+ "end": 6031.24,
+ "text": "can"
+ },
+ {
+ "id": 11876,
+ "start": 6031.24,
+ "end": 6031.4,
+ "text": "have"
+ },
+ {
+ "id": 11877,
+ "start": 6031.4,
+ "end": 6031.54,
+ "text": "more"
+ },
+ {
+ "id": 11878,
+ "start": 6031.54,
+ "end": 6031.88,
+ "text": "answers"
+ },
+ {
+ "id": 11879,
+ "start": 6031.88,
+ "end": 6031.98,
+ "text": "to"
+ },
+ {
+ "id": 11880,
+ "start": 6031.98,
+ "end": 6032.14,
+ "text": "this."
+ },
+ {
+ "id": 11881,
+ "start": 6032.14,
+ "end": 6032.84,
+ "text": "Okay?"
+ },
+ {
+ "id": 11882,
+ "start": 6032.84,
+ "end": 6033.2,
+ "text": "You"
+ },
+ {
+ "id": 11883,
+ "start": 6033.2,
+ "end": 6034.08,
+ "text": "earlier"
+ },
+ {
+ "id": 11884,
+ "start": 6034.08,
+ "end": 6034.78,
+ "text": "stated"
+ },
+ {
+ "id": 11885,
+ "start": 6034.78,
+ "end": 6035.66,
+ "text": "publicly"
+ },
+ {
+ "id": 11886,
+ "start": 6035.66,
+ "end": 6035.92,
+ "text": "and"
+ },
+ {
+ "id": 11887,
+ "start": 6035.92,
+ "end": 6036.62,
+ "text": "here"
+ },
+ {
+ "id": 11888,
+ "start": 6036.62,
+ "end": 6037.16,
+ "text": "that"
+ },
+ {
+ "id": 11889,
+ "start": 6037.16,
+ "end": 6037.34,
+ "text": "you"
+ },
+ {
+ "id": 11890,
+ "start": 6037.34,
+ "end": 6037.52,
+ "text": "would"
+ },
+ {
+ "id": 11891,
+ "start": 6037.52,
+ "end": 6037.92,
+ "text": "support"
+ },
+ {
+ "id": 11892,
+ "start": 6037.92,
+ "end": 6038.18,
+ "text": "some"
+ },
+ {
+ "id": 11893,
+ "start": 6038.18,
+ "end": 6038.7,
+ "text": "privacy"
+ },
+ {
+ "id": 11894,
+ "start": 6038.7,
+ "end": 6039.12,
+ "text": "rules"
+ },
+ {
+ "id": 11895,
+ "start": 6039.12,
+ "end": 6039.78,
+ "text": "so"
+ },
+ {
+ "id": 11896,
+ "start": 6039.78,
+ "end": 6039.98,
+ "text": "that"
+ },
+ {
+ "id": 11897,
+ "start": 6039.98,
+ "end": 6040.3,
+ "text": "everyone"
+ },
+ {
+ "id": 11898,
+ "start": 6040.3,
+ "end": 6040.38,
+ "text": "is"
+ },
+ {
+ "id": 11899,
+ "start": 6040.38,
+ "end": 6041.4,
+ "text": "playing"
+ },
+ {
+ "id": 11900,
+ "start": 6041.4,
+ "end": 6041.52,
+ "text": "by"
+ },
+ {
+ "id": 11901,
+ "start": 6041.52,
+ "end": 6041.7,
+ "text": "the"
+ },
+ {
+ "id": 11902,
+ "start": 6041.7,
+ "end": 6041.94,
+ "text": "same"
+ },
+ {
+ "id": 11903,
+ "start": 6041.94,
+ "end": 6042.24,
+ "text": "rules"
+ },
+ {
+ "id": 11904,
+ "start": 6042.24,
+ "end": 6042.58,
+ "text": "here"
+ },
+ {
+ "id": 11905,
+ "start": 6042.58,
+ "end": 6043.48,
+ "text": "and"
+ },
+ {
+ "id": 11906,
+ "start": 6043.48,
+ "end": 6043.58,
+ "text": "you"
+ },
+ {
+ "id": 11907,
+ "start": 6043.58,
+ "end": 6043.86,
+ "text": "also"
+ },
+ {
+ "id": 11908,
+ "start": 6043.86,
+ "end": 6044.12,
+ "text": "said"
+ },
+ {
+ "id": 11909,
+ "start": 6044.12,
+ "end": 6044.38,
+ "text": "here"
+ },
+ {
+ "id": 11910,
+ "start": 6044.38,
+ "end": 6044.58,
+ "text": "that"
+ },
+ {
+ "id": 11911,
+ "start": 6044.58,
+ "end": 6044.7,
+ "text": "you"
+ },
+ {
+ "id": 11912,
+ "start": 6044.7,
+ "end": 6044.9,
+ "text": "should"
+ },
+ {
+ "id": 11913,
+ "start": 6044.9,
+ "end": 6045.02,
+ "text": "have"
+ },
+ {
+ "id": 11914,
+ "start": 6045.02,
+ "end": 6045.52,
+ "text": "notified"
+ },
+ {
+ "id": 11915,
+ "start": 6045.52,
+ "end": 6046.1,
+ "text": "customers"
+ },
+ {
+ "id": 11916,
+ "start": 6046.1,
+ "end": 6046.56,
+ "text": "earlier."
+ },
+ {
+ "id": 11917,
+ "start": 6046.56,
+ "end": 6047.32,
+ "text": "Would"
+ },
+ {
+ "id": 11918,
+ "start": 6047.32,
+ "end": 6047.44,
+ "text": "you"
+ },
+ {
+ "id": 11919,
+ "start": 6047.44,
+ "end": 6047.88,
+ "text": "support"
+ },
+ {
+ "id": 11920,
+ "start": 6047.88,
+ "end": 6048,
+ "text": "a"
+ },
+ {
+ "id": 11921,
+ "start": 6048,
+ "end": 6048.5,
+ "text": "rule"
+ },
+ {
+ "id": 11922,
+ "start": 6048.5,
+ "end": 6049.18,
+ "text": "that"
+ },
+ {
+ "id": 11923,
+ "start": 6049.18,
+ "end": 6049.4,
+ "text": "would"
+ },
+ {
+ "id": 11924,
+ "start": 6049.4,
+ "end": 6049.82,
+ "text": "require"
+ },
+ {
+ "id": 11925,
+ "start": 6049.82,
+ "end": 6050.02,
+ "text": "you"
+ },
+ {
+ "id": 11926,
+ "start": 6050.02,
+ "end": 6050.14,
+ "text": "to"
+ },
+ {
+ "id": 11927,
+ "start": 6050.14,
+ "end": 6050.56,
+ "text": "notify"
+ },
+ {
+ "id": 11928,
+ "start": 6050.56,
+ "end": 6050.88,
+ "text": "your"
+ },
+ {
+ "id": 11929,
+ "start": 6050.88,
+ "end": 6051.32,
+ "text": "users"
+ },
+ {
+ "id": 11930,
+ "start": 6051.32,
+ "end": 6051.54,
+ "text": "of"
+ },
+ {
+ "id": 11931,
+ "start": 6051.54,
+ "end": 6051.64,
+ "text": "a"
+ },
+ {
+ "id": 11932,
+ "start": 6051.64,
+ "end": 6051.94,
+ "text": "breach"
+ },
+ {
+ "id": 11933,
+ "start": 6051.94,
+ "end": 6052.3,
+ "text": "within"
+ },
+ {
+ "id": 11934,
+ "start": 6052.3,
+ "end": 6052.96,
+ "text": "72"
+ },
+ {
+ "id": 11935,
+ "start": 6052.96,
+ "end": 6054.18,
+ "text": "hours."
+ },
+ {
+ "id": 11936,
+ "start": 6054.18,
+ "end": 6055.34,
+ "text": "Senator,"
+ },
+ {
+ "id": 11937,
+ "start": 6055.34,
+ "end": 6055.78,
+ "text": "that"
+ },
+ {
+ "id": 11938,
+ "start": 6055.78,
+ "end": 6056.04,
+ "text": "makes"
+ },
+ {
+ "id": 11939,
+ "start": 6056.04,
+ "end": 6056.36,
+ "text": "sense"
+ },
+ {
+ "id": 11940,
+ "start": 6056.36,
+ "end": 6056.52,
+ "text": "to"
+ },
+ {
+ "id": 11941,
+ "start": 6056.52,
+ "end": 6056.64,
+ "text": "me."
+ },
+ {
+ "id": 11942,
+ "start": 6056.64,
+ "end": 6057.4,
+ "text": "And"
+ },
+ {
+ "id": 11943,
+ "start": 6057.4,
+ "end": 6057.84,
+ "text": "I"
+ },
+ {
+ "id": 11944,
+ "start": 6057.84,
+ "end": 6058.14,
+ "text": "think"
+ },
+ {
+ "id": 11945,
+ "start": 6058.14,
+ "end": 6058.34,
+ "text": "we"
+ },
+ {
+ "id": 11946,
+ "start": 6058.34,
+ "end": 6059.54,
+ "text": "should"
+ },
+ {
+ "id": 11947,
+ "start": 6059.54,
+ "end": 6060.5,
+ "text": "have"
+ },
+ {
+ "id": 11948,
+ "start": 6060.5,
+ "end": 6060.64,
+ "text": "our"
+ },
+ {
+ "id": 11949,
+ "start": 6060.64,
+ "end": 6060.88,
+ "text": "team"
+ },
+ {
+ "id": 11950,
+ "start": 6060.88,
+ "end": 6061.42,
+ "text": "follow"
+ },
+ {
+ "id": 11951,
+ "start": 6061.42,
+ "end": 6061.56,
+ "text": "up"
+ },
+ {
+ "id": 11952,
+ "start": 6061.56,
+ "end": 6061.96,
+ "text": "with"
+ },
+ {
+ "id": 11953,
+ "start": 6061.96,
+ "end": 6062.24,
+ "text": "yours"
+ },
+ {
+ "id": 11954,
+ "start": 6062.24,
+ "end": 6062.8,
+ "text": "to"
+ },
+ {
+ "id": 11955,
+ "start": 6062.8,
+ "end": 6063.12,
+ "text": "discuss"
+ },
+ {
+ "id": 11956,
+ "start": 6063.12,
+ "end": 6063.38,
+ "text": "the"
+ },
+ {
+ "id": 11957,
+ "start": 6063.38,
+ "end": 6063.78,
+ "text": "details"
+ },
+ {
+ "id": 11958,
+ "start": 6063.78,
+ "end": 6064.02,
+ "text": "around"
+ },
+ {
+ "id": 11959,
+ "start": 6064.02,
+ "end": 6064.16,
+ "text": "that"
+ },
+ {
+ "id": 11960,
+ "start": 6064.16,
+ "end": 6064.54,
+ "text": "more."
+ },
+ {
+ "id": 11961,
+ "start": 6064.54,
+ "end": 6065.04,
+ "text": "Thank"
+ },
+ {
+ "id": 11962,
+ "start": 6065.04,
+ "end": 6065.18,
+ "text": "you."
+ },
+ {
+ "id": 11963,
+ "start": 6065.18,
+ "end": 6065.36,
+ "text": "I"
+ },
+ {
+ "id": 11964,
+ "start": 6065.36,
+ "end": 6065.56,
+ "text": "just"
+ },
+ {
+ "id": 11965,
+ "start": 6065.56,
+ "end": 6065.74,
+ "text": "think"
+ },
+ {
+ "id": 11966,
+ "start": 6065.74,
+ "end": 6066.12,
+ "text": "part"
+ },
+ {
+ "id": 11967,
+ "start": 6066.12,
+ "end": 6066.22,
+ "text": "of"
+ },
+ {
+ "id": 11968,
+ "start": 6066.22,
+ "end": 6066.4,
+ "text": "this"
+ },
+ {
+ "id": 11969,
+ "start": 6066.4,
+ "end": 6066.68,
+ "text": "was"
+ },
+ {
+ "id": 11970,
+ "start": 6066.68,
+ "end": 6067.12,
+ "text": "when"
+ },
+ {
+ "id": 11971,
+ "start": 6067.12,
+ "end": 6067.34,
+ "text": "people"
+ },
+ {
+ "id": 11972,
+ "start": 6067.34,
+ "end": 6067.58,
+ "text": "don't"
+ },
+ {
+ "id": 11973,
+ "start": 6067.58,
+ "end": 6067.82,
+ "text": "even"
+ },
+ {
+ "id": 11974,
+ "start": 6067.82,
+ "end": 6068.02,
+ "text": "know"
+ },
+ {
+ "id": 11975,
+ "start": 6068.02,
+ "end": 6068.3,
+ "text": "that"
+ },
+ {
+ "id": 11976,
+ "start": 6068.3,
+ "end": 6068.52,
+ "text": "their"
+ },
+ {
+ "id": 11977,
+ "start": 6068.52,
+ "end": 6068.68,
+ "text": "dad"
+ },
+ {
+ "id": 11978,
+ "start": 6068.68,
+ "end": 6068.84,
+ "text": "has"
+ },
+ {
+ "id": 11979,
+ "start": 6068.84,
+ "end": 6069,
+ "text": "been"
+ },
+ {
+ "id": 11980,
+ "start": 6069,
+ "end": 6069.34,
+ "text": "breached"
+ },
+ {
+ "id": 11981,
+ "start": 6069.34,
+ "end": 6070.06,
+ "text": "that's"
+ },
+ {
+ "id": 11982,
+ "start": 6070.06,
+ "end": 6070.16,
+ "text": "a"
+ },
+ {
+ "id": 11983,
+ "start": 6070.16,
+ "end": 6070.46,
+ "text": "huge"
+ },
+ {
+ "id": 11984,
+ "start": 6070.46,
+ "end": 6070.82,
+ "text": "problem."
+ },
+ {
+ "id": 11985,
+ "start": 6070.82,
+ "end": 6070.96,
+ "text": "And"
+ },
+ {
+ "id": 11986,
+ "start": 6070.96,
+ "end": 6071,
+ "text": "I"
+ },
+ {
+ "id": 11987,
+ "start": 6071,
+ "end": 6071.28,
+ "text": "also"
+ },
+ {
+ "id": 11988,
+ "start": 6071.28,
+ "end": 6071.48,
+ "text": "think"
+ },
+ {
+ "id": 11989,
+ "start": 6071.48,
+ "end": 6071.66,
+ "text": "we"
+ },
+ {
+ "id": 11990,
+ "start": 6071.66,
+ "end": 6071.78,
+ "text": "get"
+ },
+ {
+ "id": 11991,
+ "start": 6071.78,
+ "end": 6071.92,
+ "text": "to"
+ },
+ {
+ "id": 11992,
+ "start": 6071.92,
+ "end": 6072.48,
+ "text": "solutions"
+ },
+ {
+ "id": 11993,
+ "start": 6072.48,
+ "end": 6072.9,
+ "text": "faster"
+ },
+ {
+ "id": 11994,
+ "start": 6072.9,
+ "end": 6073.08,
+ "text": "when"
+ },
+ {
+ "id": 11995,
+ "start": 6073.08,
+ "end": 6073.22,
+ "text": "we"
+ },
+ {
+ "id": 11996,
+ "start": 6073.22,
+ "end": 6073.38,
+ "text": "get"
+ },
+ {
+ "id": 11997,
+ "start": 6073.38,
+ "end": 6073.6,
+ "text": "that"
+ },
+ {
+ "id": 11998,
+ "start": 6073.6,
+ "end": 6074.16,
+ "text": "information"
+ },
+ {
+ "id": 11999,
+ "start": 6074.16,
+ "end": 6074.34,
+ "text": "out"
+ },
+ {
+ "id": 12000,
+ "start": 6074.34,
+ "end": 6074.9,
+ "text": "there,"
+ },
+ {
+ "id": 12001,
+ "start": 6074.9,
+ "end": 6075.44,
+ "text": "thank"
+ },
+ {
+ "id": 12002,
+ "start": 6075.44,
+ "end": 6075.62,
+ "text": "you,"
+ },
+ {
+ "id": 12003,
+ "start": 6075.62,
+ "end": 6075.82,
+ "text": "and"
+ },
+ {
+ "id": 12004,
+ "start": 6075.82,
+ "end": 6075.9,
+ "text": "we"
+ },
+ {
+ "id": 12005,
+ "start": 6075.9,
+ "end": 6076.1,
+ "text": "look"
+ },
+ {
+ "id": 12006,
+ "start": 6076.1,
+ "end": 6076.36,
+ "text": "forward"
+ },
+ {
+ "id": 12007,
+ "start": 6076.36,
+ "end": 6076.48,
+ "text": "to"
+ },
+ {
+ "id": 12008,
+ "start": 6076.48,
+ "end": 6076.88,
+ "text": "passing"
+ },
+ {
+ "id": 12009,
+ "start": 6076.88,
+ "end": 6077.04,
+ "text": "this."
+ },
+ {
+ "id": 12010,
+ "start": 6077.04,
+ "end": 6077.26,
+ "text": "Bill"
+ },
+ {
+ "id": 12011,
+ "start": 6077.26,
+ "end": 6077.5,
+ "text": "we'd"
+ },
+ {
+ "id": 12012,
+ "start": 6077.5,
+ "end": 6077.64,
+ "text": "love"
+ },
+ {
+ "id": 12013,
+ "start": 6077.64,
+ "end": 6077.76,
+ "text": "to"
+ },
+ {
+ "id": 12014,
+ "start": 6077.76,
+ "end": 6078,
+ "text": "pass"
+ },
+ {
+ "id": 12015,
+ "start": 6078,
+ "end": 6078.14,
+ "text": "it"
+ },
+ {
+ "id": 12016,
+ "start": 6078.14,
+ "end": 6078.58,
+ "text": "before"
+ },
+ {
+ "id": 12017,
+ "start": 6078.58,
+ "end": 6078.94,
+ "text": "the"
+ },
+ {
+ "id": 12018,
+ "start": 6078.94,
+ "end": 6079.34,
+ "text": "election"
+ },
+ {
+ "id": 12019,
+ "start": 6079.34,
+ "end": 6079.52,
+ "text": "on"
+ },
+ {
+ "id": 12020,
+ "start": 6079.52,
+ "end": 6079.64,
+ "text": "the"
+ },
+ {
+ "id": 12021,
+ "start": 6079.64,
+ "end": 6079.98,
+ "text": "honest"
+ },
+ {
+ "id": 12022,
+ "start": 6079.98,
+ "end": 6080.34,
+ "text": "ads"
+ },
+ {
+ "id": 12023,
+ "start": 6080.34,
+ "end": 6080.76,
+ "text": "and"
+ },
+ {
+ "id": 12024,
+ "start": 6080.76,
+ "end": 6081.66,
+ "text": "looking"
+ },
+ {
+ "id": 12025,
+ "start": 6081.66,
+ "end": 6082.04,
+ "text": "forward"
+ },
+ {
+ "id": 12026,
+ "start": 6082.04,
+ "end": 6082.22,
+ "text": "to"
+ },
+ {
+ "id": 12027,
+ "start": 6082.22,
+ "end": 6082.84,
+ "text": "better"
+ },
+ {
+ "id": 12028,
+ "start": 6082.84,
+ "end": 6083.5,
+ "text": "disclosure"
+ },
+ {
+ "id": 12029,
+ "start": 6083.5,
+ "end": 6084.12,
+ "text": "this"
+ },
+ {
+ "id": 12030,
+ "start": 6084.12,
+ "end": 6084.6,
+ "text": "election."
+ },
+ {
+ "id": 12031,
+ "start": 6084.6,
+ "end": 6084.96,
+ "text": "Thank"
+ },
+ {
+ "id": 12032,
+ "start": 6084.96,
+ "end": 6085.14,
+ "text": "you,"
+ },
+ {
+ "id": 12033,
+ "start": 6085.14,
+ "end": 6085.54,
+ "text": "thank"
+ },
+ {
+ "id": 12034,
+ "start": 6085.54,
+ "end": 6085.66,
+ "text": "you."
+ },
+ {
+ "id": 12035,
+ "start": 6085.66,
+ "end": 6085.94,
+ "text": "Senator"
+ },
+ {
+ "id": 12036,
+ "start": 6085.94,
+ "end": 6086.2,
+ "text": "Kobe"
+ },
+ {
+ "id": 12037,
+ "start": 6086.2,
+ "end": 6086.48,
+ "text": "Shar"
+ },
+ {
+ "id": 12038,
+ "start": 6086.48,
+ "end": 6086.72,
+ "text": "center"
+ },
+ {
+ "id": 12039,
+ "start": 6086.72,
+ "end": 6086.92,
+ "text": "blown."
+ },
+ {
+ "id": 12040,
+ "start": 6086.92,
+ "end": 6087.1,
+ "text": "So"
+ },
+ {
+ "id": 12041,
+ "start": 6087.1,
+ "end": 6087.68,
+ "text": "next,"
+ },
+ {
+ "id": 12042,
+ "start": 6087.68,
+ "end": 6088.26,
+ "text": "thank"
+ },
+ {
+ "id": 12043,
+ "start": 6088.26,
+ "end": 6088.34,
+ "text": "you,"
+ },
+ {
+ "id": 12044,
+ "start": 6088.34,
+ "end": 6088.52,
+ "text": "Mr"
+ },
+ {
+ "id": 12045,
+ "start": 6088.52,
+ "end": 6088.88,
+ "text": "Chairman,"
+ },
+ {
+ "id": 12046,
+ "start": 6088.88,
+ "end": 6089.62,
+ "text": "Mr"
+ },
+ {
+ "id": 12047,
+ "start": 6089.62,
+ "end": 6089.82,
+ "text": "Berg,"
+ },
+ {
+ "id": 12048,
+ "start": 6089.82,
+ "end": 6090.1,
+ "text": "nice"
+ },
+ {
+ "id": 12049,
+ "start": 6090.1,
+ "end": 6090.24,
+ "text": "to"
+ },
+ {
+ "id": 12050,
+ "start": 6090.24,
+ "end": 6090.42,
+ "text": "see"
+ },
+ {
+ "id": 12051,
+ "start": 6090.42,
+ "end": 6090.56,
+ "text": "you."
+ },
+ {
+ "id": 12052,
+ "start": 6090.56,
+ "end": 6090.96,
+ "text": "When"
+ },
+ {
+ "id": 12053,
+ "start": 6090.96,
+ "end": 6091.18,
+ "text": "I"
+ },
+ {
+ "id": 12054,
+ "start": 6091.18,
+ "end": 6091.44,
+ "text": "saw"
+ },
+ {
+ "id": 12055,
+ "start": 6091.44,
+ "end": 6091.62,
+ "text": "you"
+ },
+ {
+ "id": 12056,
+ "start": 6091.62,
+ "end": 6091.88,
+ "text": "not"
+ },
+ {
+ "id": 12057,
+ "start": 6091.88,
+ "end": 6092.12,
+ "text": "too"
+ },
+ {
+ "id": 12058,
+ "start": 6092.12,
+ "end": 6092.42,
+ "text": "long"
+ },
+ {
+ "id": 12059,
+ "start": 6092.42,
+ "end": 6092.96,
+ "text": "after"
+ },
+ {
+ "id": 12060,
+ "start": 6092.96,
+ "end": 6093.34,
+ "text": "I"
+ },
+ {
+ "id": 12061,
+ "start": 6093.34,
+ "end": 6093.66,
+ "text": "entered"
+ },
+ {
+ "id": 12062,
+ "start": 6093.66,
+ "end": 6093.8,
+ "text": "the"
+ },
+ {
+ "id": 12063,
+ "start": 6093.8,
+ "end": 6094.14,
+ "text": "Senate"
+ },
+ {
+ "id": 12064,
+ "start": 6094.14,
+ "end": 6094.26,
+ "text": "in"
+ },
+ {
+ "id": 12065,
+ "start": 6094.26,
+ "end": 6095.34,
+ "text": "2,011"
+ },
+ {
+ "id": 12066,
+ "start": 6095.34,
+ "end": 6095.46,
+ "text": "I"
+ },
+ {
+ "id": 12067,
+ "start": 6095.46,
+ "end": 6095.7,
+ "text": "told"
+ },
+ {
+ "id": 12068,
+ "start": 6095.7,
+ "end": 6095.84,
+ "text": "you"
+ },
+ {
+ "id": 12069,
+ "start": 6095.84,
+ "end": 6096.04,
+ "text": "when"
+ },
+ {
+ "id": 12070,
+ "start": 6096.04,
+ "end": 6096.6,
+ "text": "I"
+ },
+ {
+ "id": 12071,
+ "start": 6096.6,
+ "end": 6097.22,
+ "text": "sent"
+ },
+ {
+ "id": 12072,
+ "start": 6097.22,
+ "end": 6097.5,
+ "text": "my"
+ },
+ {
+ "id": 12073,
+ "start": 6097.5,
+ "end": 6098.28,
+ "text": "business"
+ },
+ {
+ "id": 12074,
+ "start": 6098.28,
+ "end": 6098.7,
+ "text": "cards"
+ },
+ {
+ "id": 12075,
+ "start": 6098.7,
+ "end": 6099.1,
+ "text": "down"
+ },
+ {
+ "id": 12076,
+ "start": 6099.1,
+ "end": 6099.26,
+ "text": "to"
+ },
+ {
+ "id": 12077,
+ "start": 6099.26,
+ "end": 6099.4,
+ "text": "be"
+ },
+ {
+ "id": 12078,
+ "start": 6099.4,
+ "end": 6099.78,
+ "text": "printed,"
+ },
+ {
+ "id": 12079,
+ "start": 6099.78,
+ "end": 6100,
+ "text": "they"
+ },
+ {
+ "id": 12080,
+ "start": 6100,
+ "end": 6100.3,
+ "text": "came"
+ },
+ {
+ "id": 12081,
+ "start": 6100.3,
+ "end": 6100.56,
+ "text": "back"
+ },
+ {
+ "id": 12082,
+ "start": 6100.56,
+ "end": 6100.76,
+ "text": "from"
+ },
+ {
+ "id": 12083,
+ "start": 6100.76,
+ "end": 6100.88,
+ "text": "the"
+ },
+ {
+ "id": 12084,
+ "start": 6100.88,
+ "end": 6101.22,
+ "text": "Senate"
+ },
+ {
+ "id": 12085,
+ "start": 6101.22,
+ "end": 6101.5,
+ "text": "print"
+ },
+ {
+ "id": 12086,
+ "start": 6101.5,
+ "end": 6101.8,
+ "text": "shop"
+ },
+ {
+ "id": 12087,
+ "start": 6101.8,
+ "end": 6101.96,
+ "text": "with"
+ },
+ {
+ "id": 12088,
+ "start": 6101.96,
+ "end": 6102.08,
+ "text": "the"
+ },
+ {
+ "id": 12089,
+ "start": 6102.08,
+ "end": 6102.54,
+ "text": "message."
+ },
+ {
+ "id": 12090,
+ "start": 6102.54,
+ "end": 6103.14,
+ "text": "That"
+ },
+ {
+ "id": 12091,
+ "start": 6103.14,
+ "end": 6103.28,
+ "text": "was"
+ },
+ {
+ "id": 12092,
+ "start": 6103.28,
+ "end": 6103.4,
+ "text": "the"
+ },
+ {
+ "id": 12093,
+ "start": 6103.4,
+ "end": 6103.64,
+ "text": "first"
+ },
+ {
+ "id": 12094,
+ "start": 6103.64,
+ "end": 6104.32,
+ "text": "business"
+ },
+ {
+ "id": 12095,
+ "start": 6104.32,
+ "end": 6104.6,
+ "text": "card,"
+ },
+ {
+ "id": 12096,
+ "start": 6104.6,
+ "end": 6104.76,
+ "text": "they"
+ },
+ {
+ "id": 12097,
+ "start": 6104.76,
+ "end": 6105.32,
+ "text": "ever"
+ },
+ {
+ "id": 12098,
+ "start": 6105.32,
+ "end": 6106.1,
+ "text": "printed"
+ },
+ {
+ "id": 12099,
+ "start": 6106.1,
+ "end": 6106.4,
+ "text": "a"
+ },
+ {
+ "id": 12100,
+ "start": 6106.4,
+ "end": 6107.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 12101,
+ "start": 6107.1,
+ "end": 6108.32,
+ "text": "address"
+ },
+ {
+ "id": 12102,
+ "start": 6108.32,
+ "end": 6109.28,
+ "text": "on"
+ },
+ {
+ "id": 12103,
+ "start": 6109.28,
+ "end": 6110,
+ "text": "there"
+ },
+ {
+ "id": 12104,
+ "start": 6110,
+ "end": 6110.14,
+ "text": "are"
+ },
+ {
+ "id": 12105,
+ "start": 6110.14,
+ "end": 6110.42,
+ "text": "days"
+ },
+ {
+ "id": 12106,
+ "start": 6110.42,
+ "end": 6110.62,
+ "text": "when"
+ },
+ {
+ "id": 12107,
+ "start": 6110.62,
+ "end": 6110.84,
+ "text": "I've"
+ },
+ {
+ "id": 12108,
+ "start": 6110.84,
+ "end": 6111.34,
+ "text": "regretted"
+ },
+ {
+ "id": 12109,
+ "start": 6111.34,
+ "end": 6111.64,
+ "text": "that."
+ },
+ {
+ "id": 12110,
+ "start": 6111.64,
+ "end": 6111.92,
+ "text": "But"
+ },
+ {
+ "id": 12111,
+ "start": 6111.92,
+ "end": 6112.14,
+ "text": "more"
+ },
+ {
+ "id": 12112,
+ "start": 6112.14,
+ "end": 6112.42,
+ "text": "days"
+ },
+ {
+ "id": 12113,
+ "start": 6112.42,
+ "end": 6112.62,
+ "text": "when"
+ },
+ {
+ "id": 12114,
+ "start": 6112.62,
+ "end": 6112.72,
+ "text": "we"
+ },
+ {
+ "id": 12115,
+ "start": 6112.72,
+ "end": 6112.96,
+ "text": "get"
+ },
+ {
+ "id": 12116,
+ "start": 6112.96,
+ "end": 6113.22,
+ "text": "lots"
+ },
+ {
+ "id": 12117,
+ "start": 6113.22,
+ "end": 6113.34,
+ "text": "of"
+ },
+ {
+ "id": 12118,
+ "start": 6113.34,
+ "end": 6114,
+ "text": "information"
+ },
+ {
+ "id": 12119,
+ "start": 6114,
+ "end": 6114.26,
+ "text": "that"
+ },
+ {
+ "id": 12120,
+ "start": 6114.26,
+ "end": 6114.4,
+ "text": "we"
+ },
+ {
+ "id": 12121,
+ "start": 6114.4,
+ "end": 6115.2,
+ "text": "need"
+ },
+ {
+ "id": 12122,
+ "start": 6115.2,
+ "end": 6115.32,
+ "text": "to"
+ },
+ {
+ "id": 12123,
+ "start": 6115.32,
+ "end": 6115.46,
+ "text": "get"
+ },
+ {
+ "id": 12124,
+ "start": 6115.46,
+ "end": 6115.7,
+ "text": "there"
+ },
+ {
+ "id": 12125,
+ "start": 6115.7,
+ "end": 6115.8,
+ "text": "are"
+ },
+ {
+ "id": 12126,
+ "start": 6115.8,
+ "end": 6116.04,
+ "text": "days"
+ },
+ {
+ "id": 12127,
+ "start": 6116.04,
+ "end": 6116.2,
+ "text": "when"
+ },
+ {
+ "id": 12128,
+ "start": 6116.2,
+ "end": 6116.28,
+ "text": "I"
+ },
+ {
+ "id": 12129,
+ "start": 6116.28,
+ "end": 6116.58,
+ "text": "wonder"
+ },
+ {
+ "id": 12130,
+ "start": 6116.58,
+ "end": 6116.68,
+ "text": "if"
+ },
+ {
+ "id": 12131,
+ "start": 6116.68,
+ "end": 6117.38,
+ "text": "Facebook"
+ },
+ {
+ "id": 12132,
+ "start": 6117.38,
+ "end": 6117.76,
+ "text": "friends"
+ },
+ {
+ "id": 12133,
+ "start": 6117.76,
+ "end": 6117.94,
+ "text": "is"
+ },
+ {
+ "id": 12134,
+ "start": 6117.94,
+ "end": 6118.02,
+ "text": "a"
+ },
+ {
+ "id": 12135,
+ "start": 6118.02,
+ "end": 6118.28,
+ "text": "little"
+ },
+ {
+ "id": 12136,
+ "start": 6118.28,
+ "end": 6118.92,
+ "text": "misstated"
+ },
+ {
+ "id": 12137,
+ "start": 6118.92,
+ "end": 6119.22,
+ "text": "that"
+ },
+ {
+ "id": 12138,
+ "start": 6119.22,
+ "end": 6119.48,
+ "text": "doesn't"
+ },
+ {
+ "id": 12139,
+ "start": 6119.48,
+ "end": 6119.7,
+ "text": "seem"
+ },
+ {
+ "id": 12140,
+ "start": 6119.7,
+ "end": 6119.9,
+ "text": "like"
+ },
+ {
+ "id": 12141,
+ "start": 6119.9,
+ "end": 6120.04,
+ "text": "I"
+ },
+ {
+ "id": 12142,
+ "start": 6120.04,
+ "end": 6120.24,
+ "text": "have"
+ },
+ {
+ "id": 12143,
+ "start": 6120.24,
+ "end": 6120.5,
+ "text": "those"
+ },
+ {
+ "id": 12144,
+ "start": 6120.5,
+ "end": 6120.98,
+ "text": "every"
+ },
+ {
+ "id": 12145,
+ "start": 6120.98,
+ "end": 6121.38,
+ "text": "single"
+ },
+ {
+ "id": 12146,
+ "start": 6121.38,
+ "end": 6121.67,
+ "text": "day."
+ },
+ {
+ "id": 12147,
+ "start": 6121.67,
+ "end": 6122.57,
+ "text": "But"
+ },
+ {
+ "id": 12148,
+ "start": 6122.57,
+ "end": 6122.93,
+ "text": "you"
+ },
+ {
+ "id": 12149,
+ "start": 6122.93,
+ "end": 6123.11,
+ "text": "know,"
+ },
+ {
+ "id": 12150,
+ "start": 6123.11,
+ "end": 6123.61,
+ "text": "the"
+ },
+ {
+ "id": 12151,
+ "start": 6123.61,
+ "end": 6124.35,
+ "text": "platform"
+ },
+ {
+ "id": 12152,
+ "start": 6124.35,
+ "end": 6124.77,
+ "text": "you've"
+ },
+ {
+ "id": 12153,
+ "start": 6124.77,
+ "end": 6125.15,
+ "text": "created"
+ },
+ {
+ "id": 12154,
+ "start": 6125.15,
+ "end": 6125.59,
+ "text": "is"
+ },
+ {
+ "id": 12155,
+ "start": 6125.59,
+ "end": 6126.33,
+ "text": "really"
+ },
+ {
+ "id": 12156,
+ "start": 6126.33,
+ "end": 6126.69,
+ "text": "important."
+ },
+ {
+ "id": 12157,
+ "start": 6126.69,
+ "end": 6126.85,
+ "text": "And"
+ },
+ {
+ "id": 12158,
+ "start": 6126.85,
+ "end": 6127.01,
+ "text": "my"
+ },
+ {
+ "id": 12159,
+ "start": 6127.01,
+ "end": 6127.29,
+ "text": "son,"
+ },
+ {
+ "id": 12160,
+ "start": 6127.29,
+ "end": 6127.69,
+ "text": "Charlie"
+ },
+ {
+ "id": 12161,
+ "start": 6127.69,
+ "end": 6127.93,
+ "text": "who's"
+ },
+ {
+ "id": 12162,
+ "start": 6127.93,
+ "end": 6128.47,
+ "text": "13"
+ },
+ {
+ "id": 12163,
+ "start": 6128.47,
+ "end": 6128.69,
+ "text": "is"
+ },
+ {
+ "id": 12164,
+ "start": 6128.69,
+ "end": 6129.39,
+ "text": "dedicated"
+ },
+ {
+ "id": 12165,
+ "start": 6129.39,
+ "end": 6129.47,
+ "text": "to"
+ },
+ {
+ "id": 12166,
+ "start": 6129.47,
+ "end": 6130.25,
+ "text": "Instagram."
+ },
+ {
+ "id": 12167,
+ "start": 6130.25,
+ "end": 6130.53,
+ "text": "So"
+ },
+ {
+ "id": 12168,
+ "start": 6130.53,
+ "end": 6131.31,
+ "text": "he'd"
+ },
+ {
+ "id": 12169,
+ "start": 6131.31,
+ "end": 6131.47,
+ "text": "want"
+ },
+ {
+ "id": 12170,
+ "start": 6131.47,
+ "end": 6131.53,
+ "text": "to"
+ },
+ {
+ "id": 12171,
+ "start": 6131.53,
+ "end": 6131.65,
+ "text": "be"
+ },
+ {
+ "id": 12172,
+ "start": 6131.65,
+ "end": 6131.83,
+ "text": "sure."
+ },
+ {
+ "id": 12173,
+ "start": 6131.83,
+ "end": 6131.95,
+ "text": "I"
+ },
+ {
+ "id": 12174,
+ "start": 6131.95,
+ "end": 6132.31,
+ "text": "mentioned"
+ },
+ {
+ "id": 12175,
+ "start": 6132.31,
+ "end": 6132.49,
+ "text": "him"
+ },
+ {
+ "id": 12176,
+ "start": 6132.49,
+ "end": 6132.71,
+ "text": "while"
+ },
+ {
+ "id": 12177,
+ "start": 6132.71,
+ "end": 6132.79,
+ "text": "I"
+ },
+ {
+ "id": 12178,
+ "start": 6132.79,
+ "end": 6133.01,
+ "text": "was"
+ },
+ {
+ "id": 12179,
+ "start": 6133.01,
+ "end": 6133.29,
+ "text": "here."
+ },
+ {
+ "id": 12180,
+ "start": 6133.29,
+ "end": 6134.06,
+ "text": "With"
+ },
+ {
+ "id": 12181,
+ "start": 6134.06,
+ "end": 6135.02,
+ "text": "with"
+ },
+ {
+ "id": 12182,
+ "start": 6135.02,
+ "end": 6135.18,
+ "text": "you,"
+ },
+ {
+ "id": 12183,
+ "start": 6135.18,
+ "end": 6135.46,
+ "text": "I"
+ },
+ {
+ "id": 12184,
+ "start": 6135.46,
+ "end": 6135.86,
+ "text": "haven't"
+ },
+ {
+ "id": 12185,
+ "start": 6135.86,
+ "end": 6136.18,
+ "text": "printed"
+ },
+ {
+ "id": 12186,
+ "start": 6136.18,
+ "end": 6136.34,
+ "text": "that"
+ },
+ {
+ "id": 12187,
+ "start": 6136.34,
+ "end": 6136.5,
+ "text": "on"
+ },
+ {
+ "id": 12188,
+ "start": 6136.5,
+ "end": 6136.7,
+ "text": "my"
+ },
+ {
+ "id": 12189,
+ "start": 6136.7,
+ "end": 6136.98,
+ "text": "card"
+ },
+ {
+ "id": 12190,
+ "start": 6136.98,
+ "end": 6137.2,
+ "text": "yet."
+ },
+ {
+ "id": 12191,
+ "start": 6137.2,
+ "end": 6137.54,
+ "text": "I"
+ },
+ {
+ "id": 12192,
+ "start": 6137.54,
+ "end": 6138.22,
+ "text": "will"
+ },
+ {
+ "id": 12193,
+ "start": 6138.22,
+ "end": 6138.44,
+ "text": "say"
+ },
+ {
+ "id": 12194,
+ "start": 6138.44,
+ "end": 6138.64,
+ "text": "that."
+ },
+ {
+ "id": 12195,
+ "start": 6138.64,
+ "end": 6138.78,
+ "text": "But"
+ },
+ {
+ "id": 12196,
+ "start": 6138.78,
+ "end": 6138.84,
+ "text": "I"
+ },
+ {
+ "id": 12197,
+ "start": 6138.84,
+ "end": 6139.04,
+ "text": "think"
+ },
+ {
+ "id": 12198,
+ "start": 6139.04,
+ "end": 6139.18,
+ "text": "we"
+ },
+ {
+ "id": 12199,
+ "start": 6139.18,
+ "end": 6139.38,
+ "text": "have"
+ },
+ {
+ "id": 12200,
+ "start": 6139.38,
+ "end": 6139.56,
+ "text": "that"
+ },
+ {
+ "id": 12201,
+ "start": 6139.56,
+ "end": 6139.96,
+ "text": "account"
+ },
+ {
+ "id": 12202,
+ "start": 6139.96,
+ "end": 6140.26,
+ "text": "as"
+ },
+ {
+ "id": 12203,
+ "start": 6140.26,
+ "end": 6140.58,
+ "text": "well."
+ },
+ {
+ "id": 12204,
+ "start": 6140.58,
+ "end": 6141.06,
+ "text": "Lots"
+ },
+ {
+ "id": 12205,
+ "start": 6141.06,
+ "end": 6141.2,
+ "text": "of"
+ },
+ {
+ "id": 12206,
+ "start": 6141.2,
+ "end": 6141.52,
+ "text": "ways"
+ },
+ {
+ "id": 12207,
+ "start": 6141.52,
+ "end": 6141.68,
+ "text": "to"
+ },
+ {
+ "id": 12208,
+ "start": 6141.68,
+ "end": 6142.08,
+ "text": "connect"
+ },
+ {
+ "id": 12209,
+ "start": 6142.08,
+ "end": 6142.42,
+ "text": "people"
+ },
+ {
+ "id": 12210,
+ "start": 6142.42,
+ "end": 6143.32,
+ "text": "and"
+ },
+ {
+ "id": 12211,
+ "start": 6143.32,
+ "end": 6143.98,
+ "text": "the"
+ },
+ {
+ "id": 12212,
+ "start": 6143.98,
+ "end": 6144.78,
+ "text": "the"
+ },
+ {
+ "id": 12213,
+ "start": 6144.78,
+ "end": 6145.46,
+ "text": "information"
+ },
+ {
+ "id": 12214,
+ "start": 6145.46,
+ "end": 6146.36,
+ "text": "obviously"
+ },
+ {
+ "id": 12215,
+ "start": 6146.36,
+ "end": 6146.58,
+ "text": "is"
+ },
+ {
+ "id": 12216,
+ "start": 6146.58,
+ "end": 6146.7,
+ "text": "an"
+ },
+ {
+ "id": 12217,
+ "start": 6146.7,
+ "end": 6147.2,
+ "text": "important"
+ },
+ {
+ "id": 12218,
+ "start": 6147.2,
+ "end": 6147.8,
+ "text": "commodity"
+ },
+ {
+ "id": 12219,
+ "start": 6147.8,
+ "end": 6148.26,
+ "text": "and"
+ },
+ {
+ "id": 12220,
+ "start": 6148.26,
+ "end": 6149.26,
+ "text": "it's"
+ },
+ {
+ "id": 12221,
+ "start": 6149.26,
+ "end": 6149.5,
+ "text": "what"
+ },
+ {
+ "id": 12222,
+ "start": 6149.5,
+ "end": 6149.82,
+ "text": "makes"
+ },
+ {
+ "id": 12223,
+ "start": 6149.82,
+ "end": 6150.6,
+ "text": "your"
+ },
+ {
+ "id": 12224,
+ "start": 6150.6,
+ "end": 6151.32,
+ "text": "business"
+ },
+ {
+ "id": 12225,
+ "start": 6151.32,
+ "end": 6151.72,
+ "text": "work?"
+ },
+ {
+ "id": 12226,
+ "start": 6151.72,
+ "end": 6152,
+ "text": "I"
+ },
+ {
+ "id": 12227,
+ "start": 6152,
+ "end": 6152.2,
+ "text": "get"
+ },
+ {
+ "id": 12228,
+ "start": 6152.2,
+ "end": 6152.5,
+ "text": "that,"
+ },
+ {
+ "id": 12229,
+ "start": 6152.5,
+ "end": 6153.14,
+ "text": "however."
+ },
+ {
+ "id": 12230,
+ "start": 6153.14,
+ "end": 6153.98,
+ "text": "I"
+ },
+ {
+ "id": 12231,
+ "start": 6153.98,
+ "end": 6154.32,
+ "text": "wonder"
+ },
+ {
+ "id": 12232,
+ "start": 6154.32,
+ "end": 6154.54,
+ "text": "about"
+ },
+ {
+ "id": 12233,
+ "start": 6154.54,
+ "end": 6154.78,
+ "text": "some"
+ },
+ {
+ "id": 12234,
+ "start": 6154.78,
+ "end": 6154.86,
+ "text": "of"
+ },
+ {
+ "id": 12235,
+ "start": 6154.86,
+ "end": 6155,
+ "text": "the"
+ },
+ {
+ "id": 12236,
+ "start": 6155,
+ "end": 6155.56,
+ "text": "collection"
+ },
+ {
+ "id": 12237,
+ "start": 6155.56,
+ "end": 6156.08,
+ "text": "efforts"
+ },
+ {
+ "id": 12238,
+ "start": 6156.08,
+ "end": 6156.28,
+ "text": "and"
+ },
+ {
+ "id": 12239,
+ "start": 6156.28,
+ "end": 6156.48,
+ "text": "maybe"
+ },
+ {
+ "id": 12240,
+ "start": 6156.48,
+ "end": 6156.6,
+ "text": "we"
+ },
+ {
+ "id": 12241,
+ "start": 6156.6,
+ "end": 6156.74,
+ "text": "can"
+ },
+ {
+ "id": 12242,
+ "start": 6156.74,
+ "end": 6156.82,
+ "text": "go"
+ },
+ {
+ "id": 12243,
+ "start": 6156.82,
+ "end": 6157.27,
+ "text": "through"
+ },
+ {
+ "id": 12244,
+ "start": 6157.27,
+ "end": 6157.89,
+ "text": "largely"
+ },
+ {
+ "id": 12245,
+ "start": 6157.89,
+ "end": 6158.61,
+ "text": "seven."
+ },
+ {
+ "id": 12246,
+ "start": 6158.61,
+ "end": 6158.85,
+ "text": "Yes,"
+ },
+ {
+ "id": 12247,
+ "start": 6158.85,
+ "end": 6158.99,
+ "text": "and"
+ },
+ {
+ "id": 12248,
+ "start": 6158.99,
+ "end": 6159.13,
+ "text": "now"
+ },
+ {
+ "id": 12249,
+ "start": 6159.13,
+ "end": 6159.25,
+ "text": "and"
+ },
+ {
+ "id": 12250,
+ "start": 6159.25,
+ "end": 6159.37,
+ "text": "then"
+ },
+ {
+ "id": 12251,
+ "start": 6159.37,
+ "end": 6159.53,
+ "text": "we'll"
+ },
+ {
+ "id": 12252,
+ "start": 6159.53,
+ "end": 6159.65,
+ "text": "get"
+ },
+ {
+ "id": 12253,
+ "start": 6159.65,
+ "end": 6159.85,
+ "text": "back"
+ },
+ {
+ "id": 12254,
+ "start": 6159.85,
+ "end": 6160.03,
+ "text": "to"
+ },
+ {
+ "id": 12255,
+ "start": 6160.03,
+ "end": 6160.91,
+ "text": "more"
+ },
+ {
+ "id": 12256,
+ "start": 6160.91,
+ "end": 6161.87,
+ "text": "expensive"
+ },
+ {
+ "id": 12257,
+ "start": 6161.87,
+ "end": 6162.37,
+ "text": "discussion"
+ },
+ {
+ "id": 12258,
+ "start": 6162.37,
+ "end": 6162.47,
+ "text": "of"
+ },
+ {
+ "id": 12259,
+ "start": 6162.47,
+ "end": 6163.01,
+ "text": "this."
+ },
+ {
+ "id": 12260,
+ "start": 6163.01,
+ "end": 6164.31,
+ "text": "But"
+ },
+ {
+ "id": 12261,
+ "start": 6164.31,
+ "end": 6164.95,
+ "text": "do"
+ },
+ {
+ "id": 12262,
+ "start": 6164.95,
+ "end": 6165.31,
+ "text": "you"
+ },
+ {
+ "id": 12263,
+ "start": 6165.31,
+ "end": 6166.37,
+ "text": "collect"
+ },
+ {
+ "id": 12264,
+ "start": 6166.37,
+ "end": 6166.77,
+ "text": "user"
+ },
+ {
+ "id": 12265,
+ "start": 6166.77,
+ "end": 6167.11,
+ "text": "data"
+ },
+ {
+ "id": 12266,
+ "start": 6167.11,
+ "end": 6167.65,
+ "text": "through"
+ },
+ {
+ "id": 12267,
+ "start": 6167.65,
+ "end": 6168.13,
+ "text": "cross"
+ },
+ {
+ "id": 12268,
+ "start": 6168.13,
+ "end": 6168.55,
+ "text": "device"
+ },
+ {
+ "id": 12269,
+ "start": 6168.55,
+ "end": 6171.36,
+ "text": "tracking"
+ },
+ {
+ "id": 12270,
+ "start": 6171.36,
+ "end": 6172.34,
+ "text": "Senator."
+ },
+ {
+ "id": 12271,
+ "start": 6172.34,
+ "end": 6172.44,
+ "text": "I"
+ },
+ {
+ "id": 12272,
+ "start": 6172.44,
+ "end": 6172.72,
+ "text": "believe"
+ },
+ {
+ "id": 12273,
+ "start": 6172.72,
+ "end": 6172.86,
+ "text": "we"
+ },
+ {
+ "id": 12274,
+ "start": 6172.86,
+ "end": 6173.08,
+ "text": "do"
+ },
+ {
+ "id": 12275,
+ "start": 6173.08,
+ "end": 6173.58,
+ "text": "link"
+ },
+ {
+ "id": 12276,
+ "start": 6173.58,
+ "end": 6174.18,
+ "text": "people's"
+ },
+ {
+ "id": 12277,
+ "start": 6174.18,
+ "end": 6174.62,
+ "text": "accounts"
+ },
+ {
+ "id": 12278,
+ "start": 6174.62,
+ "end": 6175.24,
+ "text": "between"
+ },
+ {
+ "id": 12279,
+ "start": 6175.24,
+ "end": 6175.88,
+ "text": "devices"
+ },
+ {
+ "id": 12280,
+ "start": 6175.88,
+ "end": 6176.1,
+ "text": "in"
+ },
+ {
+ "id": 12281,
+ "start": 6176.1,
+ "end": 6176.38,
+ "text": "order"
+ },
+ {
+ "id": 12282,
+ "start": 6176.38,
+ "end": 6176.66,
+ "text": "to"
+ },
+ {
+ "id": 12283,
+ "start": 6176.66,
+ "end": 6176.94,
+ "text": "make"
+ },
+ {
+ "id": 12284,
+ "start": 6176.94,
+ "end": 6177.18,
+ "text": "sure"
+ },
+ {
+ "id": 12285,
+ "start": 6177.18,
+ "end": 6177.48,
+ "text": "that"
+ },
+ {
+ "id": 12286,
+ "start": 6177.48,
+ "end": 6177.82,
+ "text": "their"
+ },
+ {
+ "id": 12287,
+ "start": 6177.82,
+ "end": 6178.4,
+ "text": "Facebook"
+ },
+ {
+ "id": 12288,
+ "start": 6178.4,
+ "end": 6178.52,
+ "text": "and"
+ },
+ {
+ "id": 12289,
+ "start": 6178.52,
+ "end": 6179,
+ "text": "Instagram"
+ },
+ {
+ "id": 12290,
+ "start": 6179,
+ "end": 6179.14,
+ "text": "and"
+ },
+ {
+ "id": 12291,
+ "start": 6179.14,
+ "end": 6179.28,
+ "text": "there"
+ },
+ {
+ "id": 12292,
+ "start": 6179.28,
+ "end": 6179.38,
+ "text": "are"
+ },
+ {
+ "id": 12293,
+ "start": 6179.38,
+ "end": 6179.54,
+ "text": "other"
+ },
+ {
+ "id": 12294,
+ "start": 6179.54,
+ "end": 6180.06,
+ "text": "experiences"
+ },
+ {
+ "id": 12295,
+ "start": 6180.06,
+ "end": 6180.22,
+ "text": "can"
+ },
+ {
+ "id": 12296,
+ "start": 6180.22,
+ "end": 6180.34,
+ "text": "be"
+ },
+ {
+ "id": 12297,
+ "start": 6180.34,
+ "end": 6180.64,
+ "text": "synced"
+ },
+ {
+ "id": 12298,
+ "start": 6180.64,
+ "end": 6180.98,
+ "text": "between"
+ },
+ {
+ "id": 12299,
+ "start": 6180.98,
+ "end": 6181.18,
+ "text": "their"
+ },
+ {
+ "id": 12300,
+ "start": 6181.18,
+ "end": 6181.7,
+ "text": "devices"
+ },
+ {
+ "id": 12301,
+ "start": 6181.7,
+ "end": 6181.86,
+ "text": "and"
+ },
+ {
+ "id": 12302,
+ "start": 6181.86,
+ "end": 6181.98,
+ "text": "that"
+ },
+ {
+ "id": 12303,
+ "start": 6181.98,
+ "end": 6182.16,
+ "text": "would"
+ },
+ {
+ "id": 12304,
+ "start": 6182.16,
+ "end": 6182.46,
+ "text": "also"
+ },
+ {
+ "id": 12305,
+ "start": 6182.46,
+ "end": 6182.96,
+ "text": "include"
+ },
+ {
+ "id": 12306,
+ "start": 6182.96,
+ "end": 6183.72,
+ "text": "offline."
+ },
+ {
+ "id": 12307,
+ "start": 6183.72,
+ "end": 6184.38,
+ "text": "Data"
+ },
+ {
+ "id": 12308,
+ "start": 6184.38,
+ "end": 6184.78,
+ "text": "data"
+ },
+ {
+ "id": 12309,
+ "start": 6184.78,
+ "end": 6185.02,
+ "text": "that's"
+ },
+ {
+ "id": 12310,
+ "start": 6185.02,
+ "end": 6185.7,
+ "text": "tracking"
+ },
+ {
+ "id": 12311,
+ "start": 6185.7,
+ "end": 6185.98,
+ "text": "that's"
+ },
+ {
+ "id": 12312,
+ "start": 6185.98,
+ "end": 6186.16,
+ "text": "not"
+ },
+ {
+ "id": 12313,
+ "start": 6186.16,
+ "end": 6186.94,
+ "text": "necessarily"
+ },
+ {
+ "id": 12314,
+ "start": 6186.94,
+ "end": 6187.34,
+ "text": "linked"
+ },
+ {
+ "id": 12315,
+ "start": 6187.34,
+ "end": 6187.5,
+ "text": "to"
+ },
+ {
+ "id": 12316,
+ "start": 6187.5,
+ "end": 6188.2,
+ "text": "Facebook"
+ },
+ {
+ "id": 12317,
+ "start": 6188.2,
+ "end": 6188.44,
+ "text": "but"
+ },
+ {
+ "id": 12318,
+ "start": 6188.44,
+ "end": 6188.76,
+ "text": "linked"
+ },
+ {
+ "id": 12319,
+ "start": 6188.76,
+ "end": 6189.24,
+ "text": "to"
+ },
+ {
+ "id": 12320,
+ "start": 6189.24,
+ "end": 6189.64,
+ "text": "some"
+ },
+ {
+ "id": 12321,
+ "start": 6189.64,
+ "end": 6190.02,
+ "text": "device."
+ },
+ {
+ "id": 12322,
+ "start": 6190.02,
+ "end": 6190.32,
+ "text": "They"
+ },
+ {
+ "id": 12323,
+ "start": 6190.32,
+ "end": 6190.68,
+ "text": "went"
+ },
+ {
+ "id": 12324,
+ "start": 6190.68,
+ "end": 6191.06,
+ "text": "through"
+ },
+ {
+ "id": 12325,
+ "start": 6191.06,
+ "end": 6191.7,
+ "text": "Facebook"
+ },
+ {
+ "id": 12326,
+ "start": 6191.7,
+ "end": 6191.98,
+ "text": "on"
+ },
+ {
+ "id": 12327,
+ "start": 6191.98,
+ "end": 6192.14,
+ "text": "is"
+ },
+ {
+ "id": 12328,
+ "start": 6192.14,
+ "end": 6192.32,
+ "text": "that"
+ },
+ {
+ "id": 12329,
+ "start": 6192.32,
+ "end": 6192.84,
+ "text": "right,"
+ },
+ {
+ "id": 12330,
+ "start": 6192.84,
+ "end": 6193.46,
+ "text": "Senator?"
+ },
+ {
+ "id": 12331,
+ "start": 6193.46,
+ "end": 6193.5,
+ "text": "I"
+ },
+ {
+ "id": 12332,
+ "start": 6193.5,
+ "end": 6193.66,
+ "text": "want"
+ },
+ {
+ "id": 12333,
+ "start": 6193.66,
+ "end": 6193.72,
+ "text": "to"
+ },
+ {
+ "id": 12334,
+ "start": 6193.72,
+ "end": 6193.86,
+ "text": "make"
+ },
+ {
+ "id": 12335,
+ "start": 6193.86,
+ "end": 6194,
+ "text": "sure"
+ },
+ {
+ "id": 12336,
+ "start": 6194,
+ "end": 6194.14,
+ "text": "we"
+ },
+ {
+ "id": 12337,
+ "start": 6194.14,
+ "end": 6194.72,
+ "text": "get"
+ },
+ {
+ "id": 12338,
+ "start": 6194.72,
+ "end": 6194.94,
+ "text": "this"
+ },
+ {
+ "id": 12339,
+ "start": 6194.94,
+ "end": 6195.26,
+ "text": "right."
+ },
+ {
+ "id": 12340,
+ "start": 6195.26,
+ "end": 6195.72,
+ "text": "So"
+ },
+ {
+ "id": 12341,
+ "start": 6195.72,
+ "end": 6196.62,
+ "text": "I"
+ },
+ {
+ "id": 12342,
+ "start": 6196.62,
+ "end": 6196.78,
+ "text": "want"
+ },
+ {
+ "id": 12343,
+ "start": 6196.78,
+ "end": 6196.9,
+ "text": "to"
+ },
+ {
+ "id": 12344,
+ "start": 6196.9,
+ "end": 6197.18,
+ "text": "have"
+ },
+ {
+ "id": 12345,
+ "start": 6197.18,
+ "end": 6197.3,
+ "text": "my"
+ },
+ {
+ "id": 12346,
+ "start": 6197.3,
+ "end": 6197.48,
+ "text": "team."
+ },
+ {
+ "id": 12347,
+ "start": 6197.48,
+ "end": 6197.78,
+ "text": "Follow"
+ },
+ {
+ "id": 12348,
+ "start": 6197.78,
+ "end": 6197.86,
+ "text": "up"
+ },
+ {
+ "id": 12349,
+ "start": 6197.86,
+ "end": 6198,
+ "text": "with"
+ },
+ {
+ "id": 12350,
+ "start": 6198,
+ "end": 6198.12,
+ "text": "you"
+ },
+ {
+ "id": 12351,
+ "start": 6198.12,
+ "end": 6198.24,
+ "text": "on"
+ },
+ {
+ "id": 12352,
+ "start": 6198.24,
+ "end": 6198.38,
+ "text": "that"
+ },
+ {
+ "id": 12353,
+ "start": 6198.38,
+ "end": 6199.38,
+ "text": "afterwards."
+ },
+ {
+ "id": 12354,
+ "start": 6199.38,
+ "end": 6200.36,
+ "text": "That"
+ },
+ {
+ "id": 12355,
+ "start": 6200.36,
+ "end": 6200.62,
+ "text": "doesn't"
+ },
+ {
+ "id": 12356,
+ "start": 6200.62,
+ "end": 6200.84,
+ "text": "seem"
+ },
+ {
+ "id": 12357,
+ "start": 6200.84,
+ "end": 6201.06,
+ "text": "that"
+ },
+ {
+ "id": 12358,
+ "start": 6201.06,
+ "end": 6201.7,
+ "text": "complicated"
+ },
+ {
+ "id": 12359,
+ "start": 6201.7,
+ "end": 6201.8,
+ "text": "to"
+ },
+ {
+ "id": 12360,
+ "start": 6201.8,
+ "end": 6201.94,
+ "text": "me."
+ },
+ {
+ "id": 12361,
+ "start": 6201.94,
+ "end": 6202.46,
+ "text": "You"
+ },
+ {
+ "id": 12362,
+ "start": 6202.46,
+ "end": 6202.86,
+ "text": "understand"
+ },
+ {
+ "id": 12363,
+ "start": 6202.86,
+ "end": 6203.19,
+ "text": "this"
+ },
+ {
+ "id": 12364,
+ "start": 6203.19,
+ "end": 6203.53,
+ "text": "than"
+ },
+ {
+ "id": 12365,
+ "start": 6203.53,
+ "end": 6203.63,
+ "text": "I"
+ },
+ {
+ "id": 12366,
+ "start": 6203.63,
+ "end": 6203.85,
+ "text": "do."
+ },
+ {
+ "id": 12367,
+ "start": 6203.85,
+ "end": 6203.99,
+ "text": "But"
+ },
+ {
+ "id": 12368,
+ "start": 6203.99,
+ "end": 6205.09,
+ "text": "maybe"
+ },
+ {
+ "id": 12369,
+ "start": 6205.09,
+ "end": 6205.21,
+ "text": "you"
+ },
+ {
+ "id": 12370,
+ "start": 6205.21,
+ "end": 6205.37,
+ "text": "can"
+ },
+ {
+ "id": 12371,
+ "start": 6205.37,
+ "end": 6205.65,
+ "text": "explain"
+ },
+ {
+ "id": 12372,
+ "start": 6205.65,
+ "end": 6205.77,
+ "text": "to"
+ },
+ {
+ "id": 12373,
+ "start": 6205.77,
+ "end": 6205.89,
+ "text": "me"
+ },
+ {
+ "id": 12374,
+ "start": 6205.89,
+ "end": 6206.15,
+ "text": "why"
+ },
+ {
+ "id": 12375,
+ "start": 6206.15,
+ "end": 6207.05,
+ "text": "that"
+ },
+ {
+ "id": 12376,
+ "start": 6207.05,
+ "end": 6207.23,
+ "text": "why"
+ },
+ {
+ "id": 12377,
+ "start": 6207.23,
+ "end": 6207.45,
+ "text": "that's"
+ },
+ {
+ "id": 12378,
+ "start": 6207.45,
+ "end": 6208.05,
+ "text": "complicated."
+ },
+ {
+ "id": 12379,
+ "start": 6208.05,
+ "end": 6208.35,
+ "text": "Do"
+ },
+ {
+ "id": 12380,
+ "start": 6208.35,
+ "end": 6208.55,
+ "text": "you"
+ },
+ {
+ "id": 12381,
+ "start": 6208.55,
+ "end": 6209.01,
+ "text": "track"
+ },
+ {
+ "id": 12382,
+ "start": 6209.01,
+ "end": 6209.95,
+ "text": "devices"
+ },
+ {
+ "id": 12383,
+ "start": 6209.95,
+ "end": 6210.77,
+ "text": "that"
+ },
+ {
+ "id": 12384,
+ "start": 6210.77,
+ "end": 6210.85,
+ "text": "an"
+ },
+ {
+ "id": 12385,
+ "start": 6210.85,
+ "end": 6211.51,
+ "text": "individual"
+ },
+ {
+ "id": 12386,
+ "start": 6211.51,
+ "end": 6211.73,
+ "text": "who"
+ },
+ {
+ "id": 12387,
+ "start": 6211.73,
+ "end": 6212.15,
+ "text": "uses"
+ },
+ {
+ "id": 12388,
+ "start": 6212.15,
+ "end": 6213.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 12389,
+ "start": 6213.54,
+ "end": 6214.98,
+ "text": "as"
+ },
+ {
+ "id": 12390,
+ "start": 6214.98,
+ "end": 6215.94,
+ "text": "that"
+ },
+ {
+ "id": 12391,
+ "start": 6215.94,
+ "end": 6217.06,
+ "text": "is"
+ },
+ {
+ "id": 12392,
+ "start": 6217.06,
+ "end": 6217.66,
+ "text": "connected"
+ },
+ {
+ "id": 12393,
+ "start": 6217.66,
+ "end": 6217.82,
+ "text": "to"
+ },
+ {
+ "id": 12394,
+ "start": 6217.82,
+ "end": 6218.02,
+ "text": "the"
+ },
+ {
+ "id": 12395,
+ "start": 6218.02,
+ "end": 6218.38,
+ "text": "device"
+ },
+ {
+ "id": 12396,
+ "start": 6218.38,
+ "end": 6218.54,
+ "text": "that"
+ },
+ {
+ "id": 12397,
+ "start": 6218.54,
+ "end": 6218.76,
+ "text": "they"
+ },
+ {
+ "id": 12398,
+ "start": 6218.76,
+ "end": 6219,
+ "text": "use"
+ },
+ {
+ "id": 12399,
+ "start": 6219,
+ "end": 6219.18,
+ "text": "for"
+ },
+ {
+ "id": 12400,
+ "start": 6219.18,
+ "end": 6219.4,
+ "text": "their"
+ },
+ {
+ "id": 12401,
+ "start": 6219.4,
+ "end": 6219.92,
+ "text": "Facebook"
+ },
+ {
+ "id": 12402,
+ "start": 6219.92,
+ "end": 6220.44,
+ "text": "connection."
+ },
+ {
+ "id": 12403,
+ "start": 6220.44,
+ "end": 6220.6,
+ "text": "But"
+ },
+ {
+ "id": 12404,
+ "start": 6220.6,
+ "end": 6220.84,
+ "text": "not"
+ },
+ {
+ "id": 12405,
+ "start": 6220.84,
+ "end": 6221.64,
+ "text": "necessarily"
+ },
+ {
+ "id": 12406,
+ "start": 6221.64,
+ "end": 6222.16,
+ "text": "connected"
+ },
+ {
+ "id": 12407,
+ "start": 6222.16,
+ "end": 6222.28,
+ "text": "to"
+ },
+ {
+ "id": 12408,
+ "start": 6222.28,
+ "end": 6223.86,
+ "text": "Facebook"
+ },
+ {
+ "id": 12409,
+ "start": 6223.86,
+ "end": 6224.58,
+ "text": "I'm"
+ },
+ {
+ "id": 12410,
+ "start": 6224.58,
+ "end": 6225.62,
+ "text": "not"
+ },
+ {
+ "id": 12411,
+ "start": 6225.62,
+ "end": 6225.88,
+ "text": "sure"
+ },
+ {
+ "id": 12412,
+ "start": 6225.88,
+ "end": 6226.08,
+ "text": "the"
+ },
+ {
+ "id": 12413,
+ "start": 6226.08,
+ "end": 6226.4,
+ "text": "answer"
+ },
+ {
+ "id": 12414,
+ "start": 6226.4,
+ "end": 6226.52,
+ "text": "to"
+ },
+ {
+ "id": 12415,
+ "start": 6226.52,
+ "end": 6226.72,
+ "text": "that"
+ },
+ {
+ "id": 12416,
+ "start": 6226.72,
+ "end": 6227.1,
+ "text": "question,"
+ },
+ {
+ "id": 12417,
+ "start": 6227.1,
+ "end": 6227.42,
+ "text": "really."
+ },
+ {
+ "id": 12418,
+ "start": 6227.42,
+ "end": 6228.14,
+ "text": "Yes,"
+ },
+ {
+ "id": 12419,
+ "start": 6228.14,
+ "end": 6229.08,
+ "text": "there"
+ },
+ {
+ "id": 12420,
+ "start": 6229.08,
+ "end": 6229.24,
+ "text": "may"
+ },
+ {
+ "id": 12421,
+ "start": 6229.24,
+ "end": 6229.36,
+ "text": "be"
+ },
+ {
+ "id": 12422,
+ "start": 6229.36,
+ "end": 6229.78,
+ "text": "some"
+ },
+ {
+ "id": 12423,
+ "start": 6229.78,
+ "end": 6230.2,
+ "text": "data"
+ },
+ {
+ "id": 12424,
+ "start": 6230.2,
+ "end": 6230.54,
+ "text": "that"
+ },
+ {
+ "id": 12425,
+ "start": 6230.54,
+ "end": 6231.44,
+ "text": "is"
+ },
+ {
+ "id": 12426,
+ "start": 6231.44,
+ "end": 6232.04,
+ "text": "necessary"
+ },
+ {
+ "id": 12427,
+ "start": 6232.04,
+ "end": 6232.16,
+ "text": "to"
+ },
+ {
+ "id": 12428,
+ "start": 6232.16,
+ "end": 6232.46,
+ "text": "provide"
+ },
+ {
+ "id": 12429,
+ "start": 6232.46,
+ "end": 6232.58,
+ "text": "the"
+ },
+ {
+ "id": 12430,
+ "start": 6232.58,
+ "end": 6232.96,
+ "text": "service"
+ },
+ {
+ "id": 12431,
+ "start": 6232.96,
+ "end": 6233.12,
+ "text": "that"
+ },
+ {
+ "id": 12432,
+ "start": 6233.12,
+ "end": 6233.22,
+ "text": "we"
+ },
+ {
+ "id": 12433,
+ "start": 6233.22,
+ "end": 6234.18,
+ "text": "do."
+ },
+ {
+ "id": 12434,
+ "start": 6234.18,
+ "end": 6235.02,
+ "text": "But"
+ },
+ {
+ "id": 12435,
+ "start": 6235.02,
+ "end": 6235.22,
+ "text": "I"
+ },
+ {
+ "id": 12436,
+ "start": 6235.22,
+ "end": 6236.08,
+ "text": "don't"
+ },
+ {
+ "id": 12437,
+ "start": 6236.08,
+ "end": 6236.24,
+ "text": "have"
+ },
+ {
+ "id": 12438,
+ "start": 6236.24,
+ "end": 6236.86,
+ "text": "that"
+ },
+ {
+ "id": 12439,
+ "start": 6236.86,
+ "end": 6237.82,
+ "text": "sitting"
+ },
+ {
+ "id": 12440,
+ "start": 6237.82,
+ "end": 6237.96,
+ "text": "here."
+ },
+ {
+ "id": 12441,
+ "start": 6237.96,
+ "end": 6238.22,
+ "text": "Today,"
+ },
+ {
+ "id": 12442,
+ "start": 6238.22,
+ "end": 6238.62,
+ "text": "so"
+ },
+ {
+ "id": 12443,
+ "start": 6238.62,
+ "end": 6238.96,
+ "text": "that's"
+ },
+ {
+ "id": 12444,
+ "start": 6238.96,
+ "end": 6239.3,
+ "text": "something"
+ },
+ {
+ "id": 12445,
+ "start": 6239.3,
+ "end": 6239.42,
+ "text": "that"
+ },
+ {
+ "id": 12446,
+ "start": 6239.42,
+ "end": 6239.46,
+ "text": "I"
+ },
+ {
+ "id": 12447,
+ "start": 6239.46,
+ "end": 6239.62,
+ "text": "would"
+ },
+ {
+ "id": 12448,
+ "start": 6239.62,
+ "end": 6239.74,
+ "text": "want"
+ },
+ {
+ "id": 12449,
+ "start": 6239.74,
+ "end": 6239.8,
+ "text": "to"
+ },
+ {
+ "id": 12450,
+ "start": 6239.8,
+ "end": 6239.98,
+ "text": "follow"
+ },
+ {
+ "id": 12451,
+ "start": 6239.98,
+ "end": 6240.16,
+ "text": "now."
+ },
+ {
+ "id": 12452,
+ "start": 6240.16,
+ "end": 6240.3,
+ "text": "The"
+ },
+ {
+ "id": 12453,
+ "start": 6240.3,
+ "end": 6241.06,
+ "text": "FTC"
+ },
+ {
+ "id": 12454,
+ "start": 6241.06,
+ "end": 6241.44,
+ "text": "last"
+ },
+ {
+ "id": 12455,
+ "start": 6241.44,
+ "end": 6241.82,
+ "text": "year"
+ },
+ {
+ "id": 12456,
+ "start": 6241.82,
+ "end": 6242.76,
+ "text": "flag"
+ },
+ {
+ "id": 12457,
+ "start": 6242.76,
+ "end": 6243.12,
+ "text": "cross"
+ },
+ {
+ "id": 12458,
+ "start": 6243.12,
+ "end": 6243.64,
+ "text": "device"
+ },
+ {
+ "id": 12459,
+ "start": 6243.64,
+ "end": 6244.32,
+ "text": "tracking"
+ },
+ {
+ "id": 12460,
+ "start": 6244.32,
+ "end": 6244.8,
+ "text": "as"
+ },
+ {
+ "id": 12461,
+ "start": 6244.8,
+ "end": 6245.02,
+ "text": "one"
+ },
+ {
+ "id": 12462,
+ "start": 6245.02,
+ "end": 6245.12,
+ "text": "of"
+ },
+ {
+ "id": 12463,
+ "start": 6245.12,
+ "end": 6245.36,
+ "text": "their"
+ },
+ {
+ "id": 12464,
+ "start": 6245.36,
+ "end": 6246.64,
+ "text": "concerns."
+ },
+ {
+ "id": 12465,
+ "start": 6246.64,
+ "end": 6247.72,
+ "text": "Generally"
+ },
+ {
+ "id": 12466,
+ "start": 6247.72,
+ "end": 6248.04,
+ "text": "that"
+ },
+ {
+ "id": 12467,
+ "start": 6248.04,
+ "end": 6248.42,
+ "text": "people"
+ },
+ {
+ "id": 12468,
+ "start": 6248.42,
+ "end": 6248.78,
+ "text": "are"
+ },
+ {
+ "id": 12469,
+ "start": 6248.78,
+ "end": 6249.38,
+ "text": "tracking"
+ },
+ {
+ "id": 12470,
+ "start": 6249.38,
+ "end": 6250.06,
+ "text": "devices"
+ },
+ {
+ "id": 12471,
+ "start": 6250.06,
+ "end": 6250.34,
+ "text": "that"
+ },
+ {
+ "id": 12472,
+ "start": 6250.34,
+ "end": 6251.2,
+ "text": "the"
+ },
+ {
+ "id": 12473,
+ "start": 6251.2,
+ "end": 6251.62,
+ "text": "users"
+ },
+ {
+ "id": 12474,
+ "start": 6251.62,
+ "end": 6251.8,
+ "text": "of"
+ },
+ {
+ "id": 12475,
+ "start": 6251.8,
+ "end": 6252.16,
+ "text": "something"
+ },
+ {
+ "id": 12476,
+ "start": 6252.16,
+ "end": 6252.5,
+ "text": "like"
+ },
+ {
+ "id": 12477,
+ "start": 6252.5,
+ "end": 6253.08,
+ "text": "Facebook"
+ },
+ {
+ "id": 12478,
+ "start": 6253.08,
+ "end": 6253.46,
+ "text": "don't"
+ },
+ {
+ "id": 12479,
+ "start": 6253.46,
+ "end": 6253.7,
+ "text": "know"
+ },
+ {
+ "id": 12480,
+ "start": 6253.7,
+ "end": 6254.82,
+ "text": "that"
+ },
+ {
+ "id": 12481,
+ "start": 6254.82,
+ "end": 6254.96,
+ "text": "are"
+ },
+ {
+ "id": 12482,
+ "start": 6254.96,
+ "end": 6255.26,
+ "text": "being"
+ },
+ {
+ "id": 12483,
+ "start": 6255.26,
+ "end": 6255.68,
+ "text": "tracked."
+ },
+ {
+ "id": 12484,
+ "start": 6255.68,
+ "end": 6255.92,
+ "text": "How"
+ },
+ {
+ "id": 12485,
+ "start": 6255.92,
+ "end": 6256.04,
+ "text": "do"
+ },
+ {
+ "id": 12486,
+ "start": 6256.04,
+ "end": 6256.18,
+ "text": "you"
+ },
+ {
+ "id": 12487,
+ "start": 6256.18,
+ "end": 6256.9,
+ "text": "disclose"
+ },
+ {
+ "id": 12488,
+ "start": 6256.9,
+ "end": 6258.12,
+ "text": "your"
+ },
+ {
+ "id": 12489,
+ "start": 6258.12,
+ "end": 6259.14,
+ "text": "collected"
+ },
+ {
+ "id": 12490,
+ "start": 6259.14,
+ "end": 6260.02,
+ "text": "collection"
+ },
+ {
+ "id": 12491,
+ "start": 6260.02,
+ "end": 6260.8,
+ "text": "methods"
+ },
+ {
+ "id": 12492,
+ "start": 6260.8,
+ "end": 6260.96,
+ "text": "is"
+ },
+ {
+ "id": 12493,
+ "start": 6260.96,
+ "end": 6261.16,
+ "text": "at"
+ },
+ {
+ "id": 12494,
+ "start": 6261.16,
+ "end": 6261.42,
+ "text": "all"
+ },
+ {
+ "id": 12495,
+ "start": 6261.42,
+ "end": 6261.68,
+ "text": "in"
+ },
+ {
+ "id": 12496,
+ "start": 6261.68,
+ "end": 6262.3,
+ "text": "this"
+ },
+ {
+ "id": 12497,
+ "start": 6262.3,
+ "end": 6263.18,
+ "text": "document"
+ },
+ {
+ "id": 12498,
+ "start": 6263.18,
+ "end": 6263.36,
+ "text": "that"
+ },
+ {
+ "id": 12499,
+ "start": 6263.36,
+ "end": 6263.48,
+ "text": "I"
+ },
+ {
+ "id": 12500,
+ "start": 6263.48,
+ "end": 6263.7,
+ "text": "would"
+ },
+ {
+ "id": 12501,
+ "start": 6263.7,
+ "end": 6263.96,
+ "text": "see"
+ },
+ {
+ "id": 12502,
+ "start": 6263.96,
+ "end": 6264.08,
+ "text": "and"
+ },
+ {
+ "id": 12503,
+ "start": 6264.08,
+ "end": 6264.46,
+ "text": "agree"
+ },
+ {
+ "id": 12504,
+ "start": 6264.46,
+ "end": 6264.6,
+ "text": "to"
+ },
+ {
+ "id": 12505,
+ "start": 6264.6,
+ "end": 6265.1,
+ "text": "before"
+ },
+ {
+ "id": 12506,
+ "start": 6265.1,
+ "end": 6265.84,
+ "text": "I"
+ },
+ {
+ "id": 12507,
+ "start": 6265.84,
+ "end": 6266.6,
+ "text": "entered"
+ },
+ {
+ "id": 12508,
+ "start": 6266.6,
+ "end": 6266.88,
+ "text": "into"
+ },
+ {
+ "id": 12509,
+ "start": 6266.88,
+ "end": 6267.14,
+ "text": "a"
+ },
+ {
+ "id": 12510,
+ "start": 6267.14,
+ "end": 6268,
+ "text": "Facebook."
+ },
+ {
+ "id": 12511,
+ "start": 6268,
+ "end": 6269,
+ "text": "Yes,"
+ },
+ {
+ "id": 12512,
+ "start": 6269,
+ "end": 6269.34,
+ "text": "Senator,"
+ },
+ {
+ "id": 12513,
+ "start": 6269.34,
+ "end": 6269.5,
+ "text": "so"
+ },
+ {
+ "id": 12514,
+ "start": 6269.5,
+ "end": 6269.98,
+ "text": "there"
+ },
+ {
+ "id": 12515,
+ "start": 6269.98,
+ "end": 6270.08,
+ "text": "are"
+ },
+ {
+ "id": 12516,
+ "start": 6270.08,
+ "end": 6270.32,
+ "text": "two"
+ },
+ {
+ "id": 12517,
+ "start": 6270.32,
+ "end": 6270.66,
+ "text": "ways"
+ },
+ {
+ "id": 12518,
+ "start": 6270.66,
+ "end": 6270.84,
+ "text": "that"
+ },
+ {
+ "id": 12519,
+ "start": 6270.84,
+ "end": 6270.96,
+ "text": "we"
+ },
+ {
+ "id": 12520,
+ "start": 6270.96,
+ "end": 6271.1,
+ "text": "do."
+ },
+ {
+ "id": 12521,
+ "start": 6271.1,
+ "end": 6271.28,
+ "text": "This"
+ },
+ {
+ "id": 12522,
+ "start": 6271.28,
+ "end": 6271.8,
+ "text": "one"
+ },
+ {
+ "id": 12523,
+ "start": 6271.8,
+ "end": 6271.94,
+ "text": "is"
+ },
+ {
+ "id": 12524,
+ "start": 6271.94,
+ "end": 6272.1,
+ "text": "we"
+ },
+ {
+ "id": 12525,
+ "start": 6272.1,
+ "end": 6272.32,
+ "text": "try"
+ },
+ {
+ "id": 12526,
+ "start": 6272.32,
+ "end": 6272.42,
+ "text": "to"
+ },
+ {
+ "id": 12527,
+ "start": 6272.42,
+ "end": 6272.54,
+ "text": "be"
+ },
+ {
+ "id": 12528,
+ "start": 6272.54,
+ "end": 6273.24,
+ "text": "exhaustive"
+ },
+ {
+ "id": 12529,
+ "start": 6273.24,
+ "end": 6273.78,
+ "text": "in"
+ },
+ {
+ "id": 12530,
+ "start": 6273.78,
+ "end": 6273.88,
+ "text": "the"
+ },
+ {
+ "id": 12531,
+ "start": 6273.88,
+ "end": 6274.2,
+ "text": "legal"
+ },
+ {
+ "id": 12532,
+ "start": 6274.2,
+ "end": 6274.64,
+ "text": "documents"
+ },
+ {
+ "id": 12533,
+ "start": 6274.64,
+ "end": 6274.9,
+ "text": "around"
+ },
+ {
+ "id": 12534,
+ "start": 6274.9,
+ "end": 6275,
+ "text": "the"
+ },
+ {
+ "id": 12535,
+ "start": 6275,
+ "end": 6275.24,
+ "text": "terms"
+ },
+ {
+ "id": 12536,
+ "start": 6275.24,
+ "end": 6275.36,
+ "text": "of"
+ },
+ {
+ "id": 12537,
+ "start": 6275.36,
+ "end": 6275.72,
+ "text": "service"
+ },
+ {
+ "id": 12538,
+ "start": 6275.72,
+ "end": 6275.84,
+ "text": "and"
+ },
+ {
+ "id": 12539,
+ "start": 6275.84,
+ "end": 6276.3,
+ "text": "privacy"
+ },
+ {
+ "id": 12540,
+ "start": 6276.3,
+ "end": 6276.8,
+ "text": "policies."
+ },
+ {
+ "id": 12541,
+ "start": 6276.8,
+ "end": 6277.44,
+ "text": "But"
+ },
+ {
+ "id": 12542,
+ "start": 6277.44,
+ "end": 6277.66,
+ "text": "more"
+ },
+ {
+ "id": 12543,
+ "start": 6277.66,
+ "end": 6278.24,
+ "text": "importantly,"
+ },
+ {
+ "id": 12544,
+ "start": 6278.24,
+ "end": 6279.08,
+ "text": "we"
+ },
+ {
+ "id": 12545,
+ "start": 6279.08,
+ "end": 6279.32,
+ "text": "try"
+ },
+ {
+ "id": 12546,
+ "start": 6279.32,
+ "end": 6279.44,
+ "text": "to"
+ },
+ {
+ "id": 12547,
+ "start": 6279.44,
+ "end": 6279.74,
+ "text": "provide"
+ },
+ {
+ "id": 12548,
+ "start": 6279.74,
+ "end": 6280.26,
+ "text": "inline"
+ },
+ {
+ "id": 12549,
+ "start": 6280.26,
+ "end": 6280.94,
+ "text": "controls."
+ },
+ {
+ "id": 12550,
+ "start": 6280.94,
+ "end": 6281.78,
+ "text": "So"
+ },
+ {
+ "id": 12551,
+ "start": 6281.78,
+ "end": 6282.1,
+ "text": "people"
+ },
+ {
+ "id": 12552,
+ "start": 6282.1,
+ "end": 6282.22,
+ "text": "that"
+ },
+ {
+ "id": 12553,
+ "start": 6282.22,
+ "end": 6282.42,
+ "text": "are"
+ },
+ {
+ "id": 12554,
+ "start": 6282.42,
+ "end": 6282.68,
+ "text": "in"
+ },
+ {
+ "id": 12555,
+ "start": 6282.68,
+ "end": 6282.98,
+ "text": "plain"
+ },
+ {
+ "id": 12556,
+ "start": 6282.98,
+ "end": 6283.22,
+ "text": "English"
+ },
+ {
+ "id": 12557,
+ "start": 6283.22,
+ "end": 6283.46,
+ "text": "that"
+ },
+ {
+ "id": 12558,
+ "start": 6283.46,
+ "end": 6283.72,
+ "text": "people"
+ },
+ {
+ "id": 12559,
+ "start": 6283.72,
+ "end": 6283.88,
+ "text": "can"
+ },
+ {
+ "id": 12560,
+ "start": 6283.88,
+ "end": 6284.44,
+ "text": "understand."
+ },
+ {
+ "id": 12561,
+ "start": 6284.44,
+ "end": 6285.28,
+ "text": "They"
+ },
+ {
+ "id": 12562,
+ "start": 6285.28,
+ "end": 6285.44,
+ "text": "can"
+ },
+ {
+ "id": 12563,
+ "start": 6285.44,
+ "end": 6285.86,
+ "text": "either"
+ },
+ {
+ "id": 12564,
+ "start": 6285.86,
+ "end": 6285.98,
+ "text": "go"
+ },
+ {
+ "id": 12565,
+ "start": 6285.98,
+ "end": 6286.08,
+ "text": "to"
+ },
+ {
+ "id": 12566,
+ "start": 6286.08,
+ "end": 6286.42,
+ "text": "settings"
+ },
+ {
+ "id": 12567,
+ "start": 6286.42,
+ "end": 6286.58,
+ "text": "or"
+ },
+ {
+ "id": 12568,
+ "start": 6286.58,
+ "end": 6286.7,
+ "text": "we"
+ },
+ {
+ "id": 12569,
+ "start": 6286.7,
+ "end": 6286.84,
+ "text": "can"
+ },
+ {
+ "id": 12570,
+ "start": 6286.84,
+ "end": 6287.02,
+ "text": "show"
+ },
+ {
+ "id": 12571,
+ "start": 6287.02,
+ "end": 6287.16,
+ "text": "them"
+ },
+ {
+ "id": 12572,
+ "start": 6287.16,
+ "end": 6287.24,
+ "text": "at"
+ },
+ {
+ "id": 12573,
+ "start": 6287.24,
+ "end": 6287.36,
+ "text": "the"
+ },
+ {
+ "id": 12574,
+ "start": 6287.36,
+ "end": 6287.5,
+ "text": "top"
+ },
+ {
+ "id": 12575,
+ "start": 6287.5,
+ "end": 6287.62,
+ "text": "of"
+ },
+ {
+ "id": 12576,
+ "start": 6287.62,
+ "end": 6287.74,
+ "text": "the"
+ },
+ {
+ "id": 12577,
+ "start": 6287.74,
+ "end": 6287.98,
+ "text": "app"
+ },
+ {
+ "id": 12578,
+ "start": 6287.98,
+ "end": 6289.08,
+ "text": "periodically"
+ },
+ {
+ "id": 12579,
+ "start": 6289.08,
+ "end": 6289.64,
+ "text": "is"
+ },
+ {
+ "id": 12580,
+ "start": 6289.64,
+ "end": 6289.8,
+ "text": "that"
+ },
+ {
+ "id": 12581,
+ "start": 6289.8,
+ "end": 6290.04,
+ "text": "people"
+ },
+ {
+ "id": 12582,
+ "start": 6290.04,
+ "end": 6290.62,
+ "text": "understand"
+ },
+ {
+ "id": 12583,
+ "start": 6290.62,
+ "end": 6290.86,
+ "text": "all"
+ },
+ {
+ "id": 12584,
+ "start": 6290.86,
+ "end": 6291.02,
+ "text": "the"
+ },
+ {
+ "id": 12585,
+ "start": 6291.02,
+ "end": 6291.44,
+ "text": "controls"
+ },
+ {
+ "id": 12586,
+ "start": 6291.44,
+ "end": 6291.58,
+ "text": "and"
+ },
+ {
+ "id": 12587,
+ "start": 6291.58,
+ "end": 6291.94,
+ "text": "settings"
+ },
+ {
+ "id": 12588,
+ "start": 6291.94,
+ "end": 6292.14,
+ "text": "they"
+ },
+ {
+ "id": 12589,
+ "start": 6292.14,
+ "end": 6292.46,
+ "text": "have"
+ },
+ {
+ "id": 12590,
+ "start": 6292.46,
+ "end": 6293.5,
+ "text": "and"
+ },
+ {
+ "id": 12591,
+ "start": 6293.5,
+ "end": 6294.4,
+ "text": "can"
+ },
+ {
+ "id": 12592,
+ "start": 6294.4,
+ "end": 6294.92,
+ "text": "configure"
+ },
+ {
+ "id": 12593,
+ "start": 6294.92,
+ "end": 6295.1,
+ "text": "their"
+ },
+ {
+ "id": 12594,
+ "start": 6295.1,
+ "end": 6295.5,
+ "text": "experience"
+ },
+ {
+ "id": 12595,
+ "start": 6295.5,
+ "end": 6295.64,
+ "text": "the"
+ },
+ {
+ "id": 12596,
+ "start": 6295.64,
+ "end": 6295.74,
+ "text": "way"
+ },
+ {
+ "id": 12597,
+ "start": 6295.74,
+ "end": 6295.86,
+ "text": "that"
+ },
+ {
+ "id": 12598,
+ "start": 6295.86,
+ "end": 6295.98,
+ "text": "they"
+ },
+ {
+ "id": 12599,
+ "start": 6295.98,
+ "end": 6296.22,
+ "text": "want."
+ },
+ {
+ "id": 12600,
+ "start": 6296.22,
+ "end": 6297.36,
+ "text": "So"
+ },
+ {
+ "id": 12601,
+ "start": 6297.36,
+ "end": 6298.06,
+ "text": "the"
+ },
+ {
+ "id": 12602,
+ "start": 6298.06,
+ "end": 6299,
+ "text": "people"
+ },
+ {
+ "id": 12603,
+ "start": 6299,
+ "end": 6299.7,
+ "text": "people"
+ },
+ {
+ "id": 12604,
+ "start": 6299.7,
+ "end": 6299.98,
+ "text": "now"
+ },
+ {
+ "id": 12605,
+ "start": 6299.98,
+ "end": 6300.24,
+ "text": "give"
+ },
+ {
+ "id": 12606,
+ "start": 6300.24,
+ "end": 6300.38,
+ "text": "you"
+ },
+ {
+ "id": 12607,
+ "start": 6300.38,
+ "end": 6301.18,
+ "text": "permission"
+ },
+ {
+ "id": 12608,
+ "start": 6301.18,
+ "end": 6301.66,
+ "text": "to"
+ },
+ {
+ "id": 12609,
+ "start": 6301.66,
+ "end": 6302.06,
+ "text": "track"
+ },
+ {
+ "id": 12610,
+ "start": 6302.06,
+ "end": 6302.8,
+ "text": "specific"
+ },
+ {
+ "id": 12611,
+ "start": 6302.8,
+ "end": 6303.44,
+ "text": "devices"
+ },
+ {
+ "id": 12612,
+ "start": 6303.44,
+ "end": 6303.72,
+ "text": "in"
+ },
+ {
+ "id": 12613,
+ "start": 6303.72,
+ "end": 6303.96,
+ "text": "their"
+ },
+ {
+ "id": 12614,
+ "start": 6303.96,
+ "end": 6304.48,
+ "text": "contract."
+ },
+ {
+ "id": 12615,
+ "start": 6304.48,
+ "end": 6304.66,
+ "text": "And"
+ },
+ {
+ "id": 12616,
+ "start": 6304.66,
+ "end": 6304.8,
+ "text": "if"
+ },
+ {
+ "id": 12617,
+ "start": 6304.8,
+ "end": 6304.98,
+ "text": "they"
+ },
+ {
+ "id": 12618,
+ "start": 6304.98,
+ "end": 6305.16,
+ "text": "do,"
+ },
+ {
+ "id": 12619,
+ "start": 6305.16,
+ "end": 6305.4,
+ "text": "is"
+ },
+ {
+ "id": 12620,
+ "start": 6305.4,
+ "end": 6305.6,
+ "text": "that"
+ },
+ {
+ "id": 12621,
+ "start": 6305.6,
+ "end": 6305.78,
+ "text": "a"
+ },
+ {
+ "id": 12622,
+ "start": 6305.78,
+ "end": 6306.88,
+ "text": "relatively"
+ },
+ {
+ "id": 12623,
+ "start": 6306.88,
+ "end": 6307.16,
+ "text": "new"
+ },
+ {
+ "id": 12624,
+ "start": 6307.16,
+ "end": 6307.64,
+ "text": "addition"
+ },
+ {
+ "id": 12625,
+ "start": 6307.64,
+ "end": 6307.8,
+ "text": "to"
+ },
+ {
+ "id": 12626,
+ "start": 6307.8,
+ "end": 6308,
+ "text": "what"
+ },
+ {
+ "id": 12627,
+ "start": 6308,
+ "end": 6308.14,
+ "text": "you"
+ },
+ {
+ "id": 12628,
+ "start": 6308.14,
+ "end": 6309.52,
+ "text": "do,"
+ },
+ {
+ "id": 12629,
+ "start": 6309.52,
+ "end": 6310.52,
+ "text": "Senator"
+ },
+ {
+ "id": 12630,
+ "start": 6310.52,
+ "end": 6311.3,
+ "text": "or"
+ },
+ {
+ "id": 12631,
+ "start": 6311.3,
+ "end": 6312.44,
+ "text": "able"
+ },
+ {
+ "id": 12632,
+ "start": 6312.44,
+ "end": 6312.54,
+ "text": "to"
+ },
+ {
+ "id": 12633,
+ "start": 6312.54,
+ "end": 6312.84,
+ "text": "opt"
+ },
+ {
+ "id": 12634,
+ "start": 6312.84,
+ "end": 6313.04,
+ "text": "out"
+ },
+ {
+ "id": 12635,
+ "start": 6313.04,
+ "end": 6313.18,
+ "text": "and"
+ },
+ {
+ "id": 12636,
+ "start": 6313.18,
+ "end": 6313.28,
+ "text": "I"
+ },
+ {
+ "id": 12637,
+ "start": 6313.28,
+ "end": 6313.5,
+ "text": "will"
+ },
+ {
+ "id": 12638,
+ "start": 6313.5,
+ "end": 6313.66,
+ "text": "say,"
+ },
+ {
+ "id": 12639,
+ "start": 6313.66,
+ "end": 6313.84,
+ "text": "it's"
+ },
+ {
+ "id": 12640,
+ "start": 6313.84,
+ "end": 6314.3,
+ "text": "okay,"
+ },
+ {
+ "id": 12641,
+ "start": 6314.3,
+ "end": 6314.52,
+ "text": "for"
+ },
+ {
+ "id": 12642,
+ "start": 6314.52,
+ "end": 6314.72,
+ "text": "you"
+ },
+ {
+ "id": 12643,
+ "start": 6314.72,
+ "end": 6315.78,
+ "text": "to"
+ },
+ {
+ "id": 12644,
+ "start": 6315.78,
+ "end": 6316.9,
+ "text": "track"
+ },
+ {
+ "id": 12645,
+ "start": 6316.9,
+ "end": 6317.1,
+ "text": "what"
+ },
+ {
+ "id": 12646,
+ "start": 6317.1,
+ "end": 6317.3,
+ "text": "I'm"
+ },
+ {
+ "id": 12647,
+ "start": 6317.3,
+ "end": 6317.74,
+ "text": "saying"
+ },
+ {
+ "id": 12648,
+ "start": 6317.74,
+ "end": 6318.1,
+ "text": "on"
+ },
+ {
+ "id": 12649,
+ "start": 6318.1,
+ "end": 6318.72,
+ "text": "Facebook?"
+ },
+ {
+ "id": 12650,
+ "start": 6318.72,
+ "end": 6318.88,
+ "text": "But"
+ },
+ {
+ "id": 12651,
+ "start": 6318.88,
+ "end": 6318.98,
+ "text": "I"
+ },
+ {
+ "id": 12652,
+ "start": 6318.98,
+ "end": 6319.18,
+ "text": "don't"
+ },
+ {
+ "id": 12653,
+ "start": 6319.18,
+ "end": 6319.34,
+ "text": "want"
+ },
+ {
+ "id": 12654,
+ "start": 6319.34,
+ "end": 6319.5,
+ "text": "you"
+ },
+ {
+ "id": 12655,
+ "start": 6319.5,
+ "end": 6319.58,
+ "text": "to"
+ },
+ {
+ "id": 12656,
+ "start": 6319.58,
+ "end": 6320.06,
+ "text": "track"
+ },
+ {
+ "id": 12657,
+ "start": 6320.06,
+ "end": 6320.46,
+ "text": "what"
+ },
+ {
+ "id": 12658,
+ "start": 6320.46,
+ "end": 6320.7,
+ "text": "I'm"
+ },
+ {
+ "id": 12659,
+ "start": 6320.7,
+ "end": 6321.36,
+ "text": "texting"
+ },
+ {
+ "id": 12660,
+ "start": 6321.36,
+ "end": 6321.72,
+ "text": "to"
+ },
+ {
+ "id": 12661,
+ "start": 6321.72,
+ "end": 6322.22,
+ "text": "somebody"
+ },
+ {
+ "id": 12662,
+ "start": 6322.22,
+ "end": 6322.48,
+ "text": "else"
+ },
+ {
+ "id": 12663,
+ "start": 6322.48,
+ "end": 6322.82,
+ "text": "off"
+ },
+ {
+ "id": 12664,
+ "start": 6322.82,
+ "end": 6323.66,
+ "text": "Facebook"
+ },
+ {
+ "id": 12665,
+ "start": 6323.66,
+ "end": 6323.98,
+ "text": "on"
+ },
+ {
+ "id": 12666,
+ "start": 6323.98,
+ "end": 6324.48,
+ "text": "an"
+ },
+ {
+ "id": 12667,
+ "start": 6324.48,
+ "end": 6324.92,
+ "text": "Android."
+ },
+ {
+ "id": 12668,
+ "start": 6324.92,
+ "end": 6326.1,
+ "text": "Okay,"
+ },
+ {
+ "id": 12669,
+ "start": 6326.1,
+ "end": 6327.14,
+ "text": "yes,"
+ },
+ {
+ "id": 12670,
+ "start": 6327.14,
+ "end": 6328.32,
+ "text": "Senator,"
+ },
+ {
+ "id": 12671,
+ "start": 6328.32,
+ "end": 6329.3,
+ "text": "in"
+ },
+ {
+ "id": 12672,
+ "start": 6329.3,
+ "end": 6329.72,
+ "text": "general,"
+ },
+ {
+ "id": 12673,
+ "start": 6329.72,
+ "end": 6330.42,
+ "text": "Facebook"
+ },
+ {
+ "id": 12674,
+ "start": 6330.42,
+ "end": 6330.56,
+ "text": "is"
+ },
+ {
+ "id": 12675,
+ "start": 6330.56,
+ "end": 6330.92,
+ "text": "not"
+ },
+ {
+ "id": 12676,
+ "start": 6330.92,
+ "end": 6331.52,
+ "text": "collecting"
+ },
+ {
+ "id": 12677,
+ "start": 6331.52,
+ "end": 6331.86,
+ "text": "data"
+ },
+ {
+ "id": 12678,
+ "start": 6331.86,
+ "end": 6332.08,
+ "text": "from"
+ },
+ {
+ "id": 12679,
+ "start": 6332.08,
+ "end": 6332.36,
+ "text": "other"
+ },
+ {
+ "id": 12680,
+ "start": 6332.36,
+ "end": 6332.6,
+ "text": "apps"
+ },
+ {
+ "id": 12681,
+ "start": 6332.6,
+ "end": 6332.78,
+ "text": "that"
+ },
+ {
+ "id": 12682,
+ "start": 6332.78,
+ "end": 6332.9,
+ "text": "you"
+ },
+ {
+ "id": 12683,
+ "start": 6332.9,
+ "end": 6333.3,
+ "text": "use."
+ },
+ {
+ "id": 12684,
+ "start": 6333.3,
+ "end": 6334.02,
+ "text": "There"
+ },
+ {
+ "id": 12685,
+ "start": 6334.02,
+ "end": 6334.24,
+ "text": "may"
+ },
+ {
+ "id": 12686,
+ "start": 6334.24,
+ "end": 6334.38,
+ "text": "be"
+ },
+ {
+ "id": 12687,
+ "start": 6334.38,
+ "end": 6334.64,
+ "text": "some"
+ },
+ {
+ "id": 12688,
+ "start": 6334.64,
+ "end": 6335.24,
+ "text": "specific"
+ },
+ {
+ "id": 12689,
+ "start": 6335.24,
+ "end": 6335.52,
+ "text": "things"
+ },
+ {
+ "id": 12690,
+ "start": 6335.52,
+ "end": 6335.78,
+ "text": "about"
+ },
+ {
+ "id": 12691,
+ "start": 6335.78,
+ "end": 6335.9,
+ "text": "the"
+ },
+ {
+ "id": 12692,
+ "start": 6335.9,
+ "end": 6336.26,
+ "text": "device"
+ },
+ {
+ "id": 12693,
+ "start": 6336.26,
+ "end": 6336.44,
+ "text": "that"
+ },
+ {
+ "id": 12694,
+ "start": 6336.44,
+ "end": 6336.64,
+ "text": "you're"
+ },
+ {
+ "id": 12695,
+ "start": 6336.64,
+ "end": 6337.04,
+ "text": "using"
+ },
+ {
+ "id": 12696,
+ "start": 6337.04,
+ "end": 6337.72,
+ "text": "that"
+ },
+ {
+ "id": 12697,
+ "start": 6337.72,
+ "end": 6338.58,
+ "text": "Facebook"
+ },
+ {
+ "id": 12698,
+ "start": 6338.58,
+ "end": 6338.94,
+ "text": "needs"
+ },
+ {
+ "id": 12699,
+ "start": 6338.94,
+ "end": 6339.04,
+ "text": "to"
+ },
+ {
+ "id": 12700,
+ "start": 6339.04,
+ "end": 6339.54,
+ "text": "understand"
+ },
+ {
+ "id": 12701,
+ "start": 6339.54,
+ "end": 6339.68,
+ "text": "in"
+ },
+ {
+ "id": 12702,
+ "start": 6339.68,
+ "end": 6339.9,
+ "text": "order"
+ },
+ {
+ "id": 12703,
+ "start": 6339.9,
+ "end": 6340,
+ "text": "to"
+ },
+ {
+ "id": 12704,
+ "start": 6340,
+ "end": 6340.28,
+ "text": "offer"
+ },
+ {
+ "id": 12705,
+ "start": 6340.28,
+ "end": 6340.42,
+ "text": "the"
+ },
+ {
+ "id": 12706,
+ "start": 6340.42,
+ "end": 6340.82,
+ "text": "service."
+ },
+ {
+ "id": 12707,
+ "start": 6340.82,
+ "end": 6341.54,
+ "text": "But"
+ },
+ {
+ "id": 12708,
+ "start": 6341.54,
+ "end": 6341.76,
+ "text": "if"
+ },
+ {
+ "id": 12709,
+ "start": 6341.76,
+ "end": 6342.06,
+ "text": "you're"
+ },
+ {
+ "id": 12710,
+ "start": 6342.06,
+ "end": 6342.5,
+ "text": "using"
+ },
+ {
+ "id": 12711,
+ "start": 6342.5,
+ "end": 6342.86,
+ "text": "Google"
+ },
+ {
+ "id": 12712,
+ "start": 6342.86,
+ "end": 6343.16,
+ "text": "or"
+ },
+ {
+ "id": 12713,
+ "start": 6343.16,
+ "end": 6343.4,
+ "text": "you're"
+ },
+ {
+ "id": 12714,
+ "start": 6343.4,
+ "end": 6344.62,
+ "text": "using"
+ },
+ {
+ "id": 12715,
+ "start": 6344.62,
+ "end": 6345.6,
+ "text": "some"
+ },
+ {
+ "id": 12716,
+ "start": 6345.6,
+ "end": 6346.12,
+ "text": "texting"
+ },
+ {
+ "id": 12717,
+ "start": 6346.12,
+ "end": 6346.62,
+ "text": "app"
+ },
+ {
+ "id": 12718,
+ "start": 6346.62,
+ "end": 6347.78,
+ "text": "unless"
+ },
+ {
+ "id": 12719,
+ "start": 6347.78,
+ "end": 6347.92,
+ "text": "you"
+ },
+ {
+ "id": 12720,
+ "start": 6347.92,
+ "end": 6348.66,
+ "text": "specifically"
+ },
+ {
+ "id": 12721,
+ "start": 6348.66,
+ "end": 6349,
+ "text": "opt"
+ },
+ {
+ "id": 12722,
+ "start": 6349,
+ "end": 6349.28,
+ "text": "in"
+ },
+ {
+ "id": 12723,
+ "start": 6349.28,
+ "end": 6349.76,
+ "text": "that"
+ },
+ {
+ "id": 12724,
+ "start": 6349.76,
+ "end": 6349.86,
+ "text": "you"
+ },
+ {
+ "id": 12725,
+ "start": 6349.86,
+ "end": 6350.02,
+ "text": "want"
+ },
+ {
+ "id": 12726,
+ "start": 6350.02,
+ "end": 6350.1,
+ "text": "to"
+ },
+ {
+ "id": 12727,
+ "start": 6350.1,
+ "end": 6350.36,
+ "text": "share"
+ },
+ {
+ "id": 12728,
+ "start": 6350.36,
+ "end": 6350.94,
+ "text": "the"
+ },
+ {
+ "id": 12729,
+ "start": 6350.94,
+ "end": 6351.46,
+ "text": "texting"
+ },
+ {
+ "id": 12730,
+ "start": 6351.46,
+ "end": 6351.66,
+ "text": "app"
+ },
+ {
+ "id": 12731,
+ "start": 6351.66,
+ "end": 6352.98,
+ "text": "information,"
+ },
+ {
+ "id": 12732,
+ "start": 6352.98,
+ "end": 6354,
+ "text": "Facebook"
+ },
+ {
+ "id": 12733,
+ "start": 6354,
+ "end": 6354.26,
+ "text": "won't"
+ },
+ {
+ "id": 12734,
+ "start": 6354.26,
+ "end": 6354.44,
+ "text": "see"
+ },
+ {
+ "id": 12735,
+ "start": 6354.44,
+ "end": 6354.64,
+ "text": "that?"
+ },
+ {
+ "id": 12736,
+ "start": 6354.64,
+ "end": 6355.4,
+ "text": "Has"
+ },
+ {
+ "id": 12737,
+ "start": 6355.4,
+ "end": 6355.58,
+ "text": "it"
+ },
+ {
+ "id": 12738,
+ "start": 6355.58,
+ "end": 6355.98,
+ "text": "always"
+ },
+ {
+ "id": 12739,
+ "start": 6355.98,
+ "end": 6356.18,
+ "text": "been"
+ },
+ {
+ "id": 12740,
+ "start": 6356.18,
+ "end": 6356.38,
+ "text": "that"
+ },
+ {
+ "id": 12741,
+ "start": 6356.38,
+ "end": 6357.16,
+ "text": "way?"
+ },
+ {
+ "id": 12742,
+ "start": 6357.16,
+ "end": 6358.14,
+ "text": "That"
+ },
+ {
+ "id": 12743,
+ "start": 6358.14,
+ "end": 6358.24,
+ "text": "a"
+ },
+ {
+ "id": 12744,
+ "start": 6358.24,
+ "end": 6359.6,
+ "text": "recent"
+ },
+ {
+ "id": 12745,
+ "start": 6359.6,
+ "end": 6360.64,
+ "text": "addition"
+ },
+ {
+ "id": 12746,
+ "start": 6360.64,
+ "end": 6361,
+ "text": "to"
+ },
+ {
+ "id": 12747,
+ "start": 6361,
+ "end": 6361.22,
+ "text": "how"
+ },
+ {
+ "id": 12748,
+ "start": 6361.22,
+ "end": 6361.44,
+ "text": "you"
+ },
+ {
+ "id": 12749,
+ "start": 6361.44,
+ "end": 6361.7,
+ "text": "deal"
+ },
+ {
+ "id": 12750,
+ "start": 6361.7,
+ "end": 6361.88,
+ "text": "with"
+ },
+ {
+ "id": 12751,
+ "start": 6361.88,
+ "end": 6362.1,
+ "text": "those"
+ },
+ {
+ "id": 12752,
+ "start": 6362.1,
+ "end": 6363.98,
+ "text": "other"
+ },
+ {
+ "id": 12753,
+ "start": 6363.98,
+ "end": 6364.96,
+ "text": "ways"
+ },
+ {
+ "id": 12754,
+ "start": 6364.96,
+ "end": 6365.38,
+ "text": "that"
+ },
+ {
+ "id": 12755,
+ "start": 6365.38,
+ "end": 6365.76,
+ "text": "might"
+ },
+ {
+ "id": 12756,
+ "start": 6365.76,
+ "end": 6366.4,
+ "text": "communicate,"
+ },
+ {
+ "id": 12757,
+ "start": 6366.4,
+ "end": 6367.56,
+ "text": "Senator,"
+ },
+ {
+ "id": 12758,
+ "start": 6367.56,
+ "end": 6367.72,
+ "text": "my"
+ },
+ {
+ "id": 12759,
+ "start": 6367.72,
+ "end": 6368.4,
+ "text": "understanding"
+ },
+ {
+ "id": 12760,
+ "start": 6368.4,
+ "end": 6368.66,
+ "text": "is"
+ },
+ {
+ "id": 12761,
+ "start": 6368.66,
+ "end": 6368.9,
+ "text": "that"
+ },
+ {
+ "id": 12762,
+ "start": 6368.9,
+ "end": 6369.3,
+ "text": "that"
+ },
+ {
+ "id": 12763,
+ "start": 6369.3,
+ "end": 6369.46,
+ "text": "is"
+ },
+ {
+ "id": 12764,
+ "start": 6369.46,
+ "end": 6369.74,
+ "text": "how"
+ },
+ {
+ "id": 12765,
+ "start": 6369.74,
+ "end": 6369.94,
+ "text": "the"
+ },
+ {
+ "id": 12766,
+ "start": 6369.94,
+ "end": 6370.28,
+ "text": "mobile"
+ },
+ {
+ "id": 12767,
+ "start": 6370.28,
+ "end": 6370.68,
+ "text": "operating"
+ },
+ {
+ "id": 12768,
+ "start": 6370.68,
+ "end": 6371.06,
+ "text": "systems"
+ },
+ {
+ "id": 12769,
+ "start": 6371.06,
+ "end": 6371.24,
+ "text": "are"
+ },
+ {
+ "id": 12770,
+ "start": 6371.24,
+ "end": 6375.32,
+ "text": "architected"
+ },
+ {
+ "id": 12771,
+ "start": 6375.32,
+ "end": 6379.06,
+ "text": "so"
+ },
+ {
+ "id": 12772,
+ "start": 6379.06,
+ "end": 6380.26,
+ "text": "you"
+ },
+ {
+ "id": 12773,
+ "start": 6380.26,
+ "end": 6380.46,
+ "text": "don't"
+ },
+ {
+ "id": 12774,
+ "start": 6380.46,
+ "end": 6380.64,
+ "text": "have"
+ },
+ {
+ "id": 12775,
+ "start": 6380.64,
+ "end": 6381.24,
+ "text": "bundled"
+ },
+ {
+ "id": 12776,
+ "start": 6381.24,
+ "end": 6382,
+ "text": "permissions"
+ },
+ {
+ "id": 12777,
+ "start": 6382,
+ "end": 6382.82,
+ "text": "for"
+ },
+ {
+ "id": 12778,
+ "start": 6382.82,
+ "end": 6383.18,
+ "text": "how"
+ },
+ {
+ "id": 12779,
+ "start": 6383.18,
+ "end": 6383.52,
+ "text": "I"
+ },
+ {
+ "id": 12780,
+ "start": 6383.52,
+ "end": 6384.58,
+ "text": "can"
+ },
+ {
+ "id": 12781,
+ "start": 6384.58,
+ "end": 6385.32,
+ "text": "agree"
+ },
+ {
+ "id": 12782,
+ "start": 6385.32,
+ "end": 6385.74,
+ "text": "to"
+ },
+ {
+ "id": 12783,
+ "start": 6385.74,
+ "end": 6386.74,
+ "text": "what"
+ },
+ {
+ "id": 12784,
+ "start": 6386.74,
+ "end": 6387.4,
+ "text": "devices"
+ },
+ {
+ "id": 12785,
+ "start": 6387.4,
+ "end": 6387.58,
+ "text": "I"
+ },
+ {
+ "id": 12786,
+ "start": 6387.58,
+ "end": 6387.8,
+ "text": "may"
+ },
+ {
+ "id": 12787,
+ "start": 6387.8,
+ "end": 6388.1,
+ "text": "use"
+ },
+ {
+ "id": 12788,
+ "start": 6388.1,
+ "end": 6388.26,
+ "text": "that"
+ },
+ {
+ "id": 12789,
+ "start": 6388.26,
+ "end": 6388.42,
+ "text": "you"
+ },
+ {
+ "id": 12790,
+ "start": 6388.42,
+ "end": 6388.64,
+ "text": "may"
+ },
+ {
+ "id": 12791,
+ "start": 6388.64,
+ "end": 6388.8,
+ "text": "have"
+ },
+ {
+ "id": 12792,
+ "start": 6388.8,
+ "end": 6389.34,
+ "text": "contact"
+ },
+ {
+ "id": 12793,
+ "start": 6389.34,
+ "end": 6391.76,
+ "text": "with,"
+ },
+ {
+ "id": 12794,
+ "start": 6391.76,
+ "end": 6392.86,
+ "text": "did"
+ },
+ {
+ "id": 12795,
+ "start": 6392.86,
+ "end": 6393,
+ "text": "you?"
+ },
+ {
+ "id": 12796,
+ "start": 6393,
+ "end": 6393.36,
+ "text": "You"
+ },
+ {
+ "id": 12797,
+ "start": 6393.36,
+ "end": 6393.78,
+ "text": "bundle"
+ },
+ {
+ "id": 12798,
+ "start": 6393.78,
+ "end": 6393.98,
+ "text": "that"
+ },
+ {
+ "id": 12799,
+ "start": 6393.98,
+ "end": 6394.52,
+ "text": "permission."
+ },
+ {
+ "id": 12800,
+ "start": 6394.52,
+ "end": 6394.72,
+ "text": "Or"
+ },
+ {
+ "id": 12801,
+ "start": 6394.72,
+ "end": 6395.02,
+ "text": "am"
+ },
+ {
+ "id": 12802,
+ "start": 6395.02,
+ "end": 6395.2,
+ "text": "I"
+ },
+ {
+ "id": 12803,
+ "start": 6395.2,
+ "end": 6395.44,
+ "text": "able"
+ },
+ {
+ "id": 12804,
+ "start": 6395.44,
+ "end": 6395.58,
+ "text": "to"
+ },
+ {
+ "id": 12805,
+ "start": 6395.58,
+ "end": 6395.82,
+ "text": "want"
+ },
+ {
+ "id": 12806,
+ "start": 6395.82,
+ "end": 6397.58,
+ "text": "individually"
+ },
+ {
+ "id": 12807,
+ "start": 6397.58,
+ "end": 6398.6,
+ "text": "say"
+ },
+ {
+ "id": 12808,
+ "start": 6398.6,
+ "end": 6399.06,
+ "text": "what"
+ },
+ {
+ "id": 12809,
+ "start": 6399.06,
+ "end": 6399.44,
+ "text": "I'm"
+ },
+ {
+ "id": 12810,
+ "start": 6399.44,
+ "end": 6399.9,
+ "text": "willing"
+ },
+ {
+ "id": 12811,
+ "start": 6399.9,
+ "end": 6400.06,
+ "text": "for"
+ },
+ {
+ "id": 12812,
+ "start": 6400.06,
+ "end": 6400.2,
+ "text": "you"
+ },
+ {
+ "id": 12813,
+ "start": 6400.2,
+ "end": 6400.6,
+ "text": "to"
+ },
+ {
+ "id": 12814,
+ "start": 6400.6,
+ "end": 6401.7,
+ "text": "to"
+ },
+ {
+ "id": 12815,
+ "start": 6401.7,
+ "end": 6402.3,
+ "text": "watch"
+ },
+ {
+ "id": 12816,
+ "start": 6402.3,
+ "end": 6402.46,
+ "text": "and"
+ },
+ {
+ "id": 12817,
+ "start": 6402.46,
+ "end": 6402.66,
+ "text": "what"
+ },
+ {
+ "id": 12818,
+ "start": 6402.66,
+ "end": 6402.78,
+ "text": "I"
+ },
+ {
+ "id": 12819,
+ "start": 6402.78,
+ "end": 6403,
+ "text": "don't"
+ },
+ {
+ "id": 12820,
+ "start": 6403,
+ "end": 6403.16,
+ "text": "want"
+ },
+ {
+ "id": 12821,
+ "start": 6403.16,
+ "end": 6403.3,
+ "text": "you"
+ },
+ {
+ "id": 12822,
+ "start": 6403.3,
+ "end": 6403.42,
+ "text": "to"
+ },
+ {
+ "id": 12823,
+ "start": 6403.42,
+ "end": 6403.7,
+ "text": "watch."
+ },
+ {
+ "id": 12824,
+ "start": 6403.7,
+ "end": 6403.92,
+ "text": "And"
+ },
+ {
+ "id": 12825,
+ "start": 6403.92,
+ "end": 6404.36,
+ "text": "I"
+ },
+ {
+ "id": 12826,
+ "start": 6404.36,
+ "end": 6404.72,
+ "text": "think"
+ },
+ {
+ "id": 12827,
+ "start": 6404.72,
+ "end": 6404.88,
+ "text": "we"
+ },
+ {
+ "id": 12828,
+ "start": 6404.88,
+ "end": 6405.04,
+ "text": "may"
+ },
+ {
+ "id": 12829,
+ "start": 6405.04,
+ "end": 6405.18,
+ "text": "have"
+ },
+ {
+ "id": 12830,
+ "start": 6405.18,
+ "end": 6405.28,
+ "text": "to"
+ },
+ {
+ "id": 12831,
+ "start": 6405.28,
+ "end": 6405.48,
+ "text": "take"
+ },
+ {
+ "id": 12832,
+ "start": 6405.48,
+ "end": 6405.68,
+ "text": "that"
+ },
+ {
+ "id": 12833,
+ "start": 6405.68,
+ "end": 6405.84,
+ "text": "for"
+ },
+ {
+ "id": 12834,
+ "start": 6405.84,
+ "end": 6405.96,
+ "text": "the"
+ },
+ {
+ "id": 12835,
+ "start": 6405.96,
+ "end": 6406.3,
+ "text": "record"
+ },
+ {
+ "id": 12836,
+ "start": 6406.3,
+ "end": 6406.56,
+ "text": "based"
+ },
+ {
+ "id": 12837,
+ "start": 6406.56,
+ "end": 6406.7,
+ "text": "on"
+ },
+ {
+ "id": 12838,
+ "start": 6406.7,
+ "end": 6407.16,
+ "text": "everybody"
+ },
+ {
+ "id": 12839,
+ "start": 6407.16,
+ "end": 6407.54,
+ "text": "else's"
+ },
+ {
+ "id": 12840,
+ "start": 6407.54,
+ "end": 6409.26,
+ "text": "time."
+ },
+ {
+ "id": 12841,
+ "start": 6409.26,
+ "end": 6410.22,
+ "text": "Thank"
+ },
+ {
+ "id": 12842,
+ "start": 6410.22,
+ "end": 6410.34,
+ "text": "you,"
+ },
+ {
+ "id": 12843,
+ "start": 6410.34,
+ "end": 6410.6,
+ "text": "Senator."
+ },
+ {
+ "id": 12844,
+ "start": 6410.6,
+ "end": 6410.82,
+ "text": "Blunt."
+ },
+ {
+ "id": 12845,
+ "start": 6410.82,
+ "end": 6411.5,
+ "text": "Next"
+ },
+ {
+ "id": 12846,
+ "start": 6411.5,
+ "end": 6411.64,
+ "text": "up"
+ },
+ {
+ "id": 12847,
+ "start": 6411.64,
+ "end": 6411.9,
+ "text": "Senator"
+ },
+ {
+ "id": 12848,
+ "start": 6411.9,
+ "end": 6412.18,
+ "text": "Durbin,"
+ },
+ {
+ "id": 12849,
+ "start": 6412.18,
+ "end": 6413.18,
+ "text": "thank"
+ },
+ {
+ "id": 12850,
+ "start": 6413.18,
+ "end": 6413.42,
+ "text": "very"
+ },
+ {
+ "id": 12851,
+ "start": 6413.42,
+ "end": 6413.58,
+ "text": "much,"
+ },
+ {
+ "id": 12852,
+ "start": 6413.58,
+ "end": 6413.82,
+ "text": "Mr"
+ },
+ {
+ "id": 12853,
+ "start": 6413.82,
+ "end": 6414.18,
+ "text": "Chairman,"
+ },
+ {
+ "id": 12854,
+ "start": 6414.18,
+ "end": 6414.64,
+ "text": "Mr"
+ },
+ {
+ "id": 12855,
+ "start": 6414.64,
+ "end": 6415.08,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 12856,
+ "start": 6415.08,
+ "end": 6415.84,
+ "text": "would"
+ },
+ {
+ "id": 12857,
+ "start": 6415.84,
+ "end": 6415.96,
+ "text": "you"
+ },
+ {
+ "id": 12858,
+ "start": 6415.96,
+ "end": 6416.08,
+ "text": "be"
+ },
+ {
+ "id": 12859,
+ "start": 6416.08,
+ "end": 6416.5,
+ "text": "comfortable"
+ },
+ {
+ "id": 12860,
+ "start": 6416.5,
+ "end": 6416.84,
+ "text": "sharing"
+ },
+ {
+ "id": 12861,
+ "start": 6416.84,
+ "end": 6416.98,
+ "text": "with"
+ },
+ {
+ "id": 12862,
+ "start": 6416.98,
+ "end": 6417.12,
+ "text": "us?"
+ },
+ {
+ "id": 12863,
+ "start": 6417.12,
+ "end": 6417.3,
+ "text": "The"
+ },
+ {
+ "id": 12864,
+ "start": 6417.3,
+ "end": 6417.48,
+ "text": "name"
+ },
+ {
+ "id": 12865,
+ "start": 6417.48,
+ "end": 6417.56,
+ "text": "of"
+ },
+ {
+ "id": 12866,
+ "start": 6417.56,
+ "end": 6417.68,
+ "text": "the"
+ },
+ {
+ "id": 12867,
+ "start": 6417.68,
+ "end": 6418,
+ "text": "hotel"
+ },
+ {
+ "id": 12868,
+ "start": 6418,
+ "end": 6418.12,
+ "text": "you"
+ },
+ {
+ "id": 12869,
+ "start": 6418.12,
+ "end": 6418.38,
+ "text": "stayed"
+ },
+ {
+ "id": 12870,
+ "start": 6418.38,
+ "end": 6418.5,
+ "text": "in"
+ },
+ {
+ "id": 12871,
+ "start": 6418.5,
+ "end": 6418.7,
+ "text": "last"
+ },
+ {
+ "id": 12872,
+ "start": 6418.7,
+ "end": 6424.24,
+ "text": "night?"
+ },
+ {
+ "id": 12873,
+ "start": 6424.24,
+ "end": 6427.76,
+ "text": "No,"
+ },
+ {
+ "id": 12874,
+ "start": 6427.76,
+ "end": 6428.76,
+ "text": "if"
+ },
+ {
+ "id": 12875,
+ "start": 6428.76,
+ "end": 6429.02,
+ "text": "you've"
+ },
+ {
+ "id": 12876,
+ "start": 6429.02,
+ "end": 6429.5,
+ "text": "messaged"
+ },
+ {
+ "id": 12877,
+ "start": 6429.5,
+ "end": 6429.96,
+ "text": "anybody"
+ },
+ {
+ "id": 12878,
+ "start": 6429.96,
+ "end": 6430.16,
+ "text": "this"
+ },
+ {
+ "id": 12879,
+ "start": 6430.16,
+ "end": 6430.38,
+ "text": "week?"
+ },
+ {
+ "id": 12880,
+ "start": 6430.38,
+ "end": 6430.58,
+ "text": "Would"
+ },
+ {
+ "id": 12881,
+ "start": 6430.58,
+ "end": 6430.76,
+ "text": "you"
+ },
+ {
+ "id": 12882,
+ "start": 6430.76,
+ "end": 6431.42,
+ "text": "share"
+ },
+ {
+ "id": 12883,
+ "start": 6431.42,
+ "end": 6431.58,
+ "text": "with"
+ },
+ {
+ "id": 12884,
+ "start": 6431.58,
+ "end": 6431.74,
+ "text": "us?"
+ },
+ {
+ "id": 12885,
+ "start": 6431.74,
+ "end": 6432.18,
+ "text": "The"
+ },
+ {
+ "id": 12886,
+ "start": 6432.18,
+ "end": 6432.46,
+ "text": "names"
+ },
+ {
+ "id": 12887,
+ "start": 6432.46,
+ "end": 6432.66,
+ "text": "of"
+ },
+ {
+ "id": 12888,
+ "start": 6432.66,
+ "end": 6432.98,
+ "text": "the"
+ },
+ {
+ "id": 12889,
+ "start": 6432.98,
+ "end": 6433.18,
+ "text": "people"
+ },
+ {
+ "id": 12890,
+ "start": 6433.18,
+ "end": 6433.42,
+ "text": "you've"
+ },
+ {
+ "id": 12891,
+ "start": 6433.42,
+ "end": 6434.46,
+ "text": "messaged"
+ },
+ {
+ "id": 12892,
+ "start": 6434.46,
+ "end": 6435.64,
+ "text": "Senator?"
+ },
+ {
+ "id": 12893,
+ "start": 6435.64,
+ "end": 6435.8,
+ "text": "No,"
+ },
+ {
+ "id": 12894,
+ "start": 6435.8,
+ "end": 6435.86,
+ "text": "I"
+ },
+ {
+ "id": 12895,
+ "start": 6435.86,
+ "end": 6436.08,
+ "text": "would"
+ },
+ {
+ "id": 12896,
+ "start": 6436.08,
+ "end": 6436.78,
+ "text": "probably"
+ },
+ {
+ "id": 12897,
+ "start": 6436.78,
+ "end": 6436.98,
+ "text": "not"
+ },
+ {
+ "id": 12898,
+ "start": 6436.98,
+ "end": 6437.22,
+ "text": "choose"
+ },
+ {
+ "id": 12899,
+ "start": 6437.22,
+ "end": 6437.32,
+ "text": "to"
+ },
+ {
+ "id": 12900,
+ "start": 6437.32,
+ "end": 6437.42,
+ "text": "do"
+ },
+ {
+ "id": 12901,
+ "start": 6437.42,
+ "end": 6437.6,
+ "text": "that"
+ },
+ {
+ "id": 12902,
+ "start": 6437.6,
+ "end": 6438.02,
+ "text": "publicly"
+ },
+ {
+ "id": 12903,
+ "start": 6438.02,
+ "end": 6438.28,
+ "text": "here."
+ },
+ {
+ "id": 12904,
+ "start": 6438.28,
+ "end": 6438.7,
+ "text": "I"
+ },
+ {
+ "id": 12905,
+ "start": 6438.7,
+ "end": 6438.9,
+ "text": "think"
+ },
+ {
+ "id": 12906,
+ "start": 6438.9,
+ "end": 6439.18,
+ "text": "that"
+ },
+ {
+ "id": 12907,
+ "start": 6439.18,
+ "end": 6439.4,
+ "text": "might"
+ },
+ {
+ "id": 12908,
+ "start": 6439.4,
+ "end": 6439.5,
+ "text": "be"
+ },
+ {
+ "id": 12909,
+ "start": 6439.5,
+ "end": 6439.64,
+ "text": "what"
+ },
+ {
+ "id": 12910,
+ "start": 6439.64,
+ "end": 6439.86,
+ "text": "this"
+ },
+ {
+ "id": 12911,
+ "start": 6439.86,
+ "end": 6440.24,
+ "text": "is"
+ },
+ {
+ "id": 12912,
+ "start": 6440.24,
+ "end": 6440.4,
+ "text": "all"
+ },
+ {
+ "id": 12913,
+ "start": 6440.4,
+ "end": 6441.6,
+ "text": "about"
+ },
+ {
+ "id": 12914,
+ "start": 6441.6,
+ "end": 6442.58,
+ "text": "your"
+ },
+ {
+ "id": 12915,
+ "start": 6442.58,
+ "end": 6442.86,
+ "text": "right"
+ },
+ {
+ "id": 12916,
+ "start": 6442.86,
+ "end": 6442.96,
+ "text": "to"
+ },
+ {
+ "id": 12917,
+ "start": 6442.96,
+ "end": 6443.46,
+ "text": "privacy"
+ },
+ {
+ "id": 12918,
+ "start": 6443.46,
+ "end": 6444.38,
+ "text": "the"
+ },
+ {
+ "id": 12919,
+ "start": 6444.38,
+ "end": 6444.72,
+ "text": "limits"
+ },
+ {
+ "id": 12920,
+ "start": 6444.72,
+ "end": 6444.94,
+ "text": "of"
+ },
+ {
+ "id": 12921,
+ "start": 6444.94,
+ "end": 6445.08,
+ "text": "your"
+ },
+ {
+ "id": 12922,
+ "start": 6445.08,
+ "end": 6445.3,
+ "text": "right"
+ },
+ {
+ "id": 12923,
+ "start": 6445.3,
+ "end": 6445.38,
+ "text": "to"
+ },
+ {
+ "id": 12924,
+ "start": 6445.38,
+ "end": 6445.86,
+ "text": "privacy"
+ },
+ {
+ "id": 12925,
+ "start": 6445.86,
+ "end": 6446.48,
+ "text": "and"
+ },
+ {
+ "id": 12926,
+ "start": 6446.48,
+ "end": 6446.66,
+ "text": "how"
+ },
+ {
+ "id": 12927,
+ "start": 6446.66,
+ "end": 6446.84,
+ "text": "much"
+ },
+ {
+ "id": 12928,
+ "start": 6446.84,
+ "end": 6447.02,
+ "text": "you"
+ },
+ {
+ "id": 12929,
+ "start": 6447.02,
+ "end": 6447.28,
+ "text": "give"
+ },
+ {
+ "id": 12930,
+ "start": 6447.28,
+ "end": 6447.7,
+ "text": "away"
+ },
+ {
+ "id": 12931,
+ "start": 6447.7,
+ "end": 6448.4,
+ "text": "in"
+ },
+ {
+ "id": 12932,
+ "start": 6448.4,
+ "end": 6448.72,
+ "text": "modern"
+ },
+ {
+ "id": 12933,
+ "start": 6448.72,
+ "end": 6449.18,
+ "text": "America,"
+ },
+ {
+ "id": 12934,
+ "start": 6449.18,
+ "end": 6449.84,
+ "text": "in"
+ },
+ {
+ "id": 12935,
+ "start": 6449.84,
+ "end": 6449.96,
+ "text": "the"
+ },
+ {
+ "id": 12936,
+ "start": 6449.96,
+ "end": 6450.18,
+ "text": "name"
+ },
+ {
+ "id": 12937,
+ "start": 6450.18,
+ "end": 6450.38,
+ "text": "of"
+ },
+ {
+ "id": 12938,
+ "start": 6450.38,
+ "end": 6450.84,
+ "text": "quote,"
+ },
+ {
+ "id": 12939,
+ "start": 6450.84,
+ "end": 6451.42,
+ "text": "connecting"
+ },
+ {
+ "id": 12940,
+ "start": 6451.42,
+ "end": 6451.72,
+ "text": "people"
+ },
+ {
+ "id": 12941,
+ "start": 6451.72,
+ "end": 6452.04,
+ "text": "around"
+ },
+ {
+ "id": 12942,
+ "start": 6452.04,
+ "end": 6452.18,
+ "text": "the"
+ },
+ {
+ "id": 12943,
+ "start": 6452.18,
+ "end": 6453.46,
+ "text": "world"
+ },
+ {
+ "id": 12944,
+ "start": 6453.46,
+ "end": 6454.46,
+ "text": "question"
+ },
+ {
+ "id": 12945,
+ "start": 6454.46,
+ "end": 6455.18,
+ "text": "basically"
+ },
+ {
+ "id": 12946,
+ "start": 6455.18,
+ "end": 6455.98,
+ "text": "of"
+ },
+ {
+ "id": 12947,
+ "start": 6455.98,
+ "end": 6456.98,
+ "text": "what"
+ },
+ {
+ "id": 12948,
+ "start": 6456.98,
+ "end": 6457.5,
+ "text": "information"
+ },
+ {
+ "id": 12949,
+ "start": 6457.5,
+ "end": 6457.98,
+ "text": "Facebook"
+ },
+ {
+ "id": 12950,
+ "start": 6457.98,
+ "end": 6458.04,
+ "text": "is"
+ },
+ {
+ "id": 12951,
+ "start": 6458.04,
+ "end": 6458.48,
+ "text": "collecting"
+ },
+ {
+ "id": 12952,
+ "start": 6458.48,
+ "end": 6459.34,
+ "text": "who"
+ },
+ {
+ "id": 12953,
+ "start": 6459.34,
+ "end": 6459.58,
+ "text": "they're"
+ },
+ {
+ "id": 12954,
+ "start": 6459.58,
+ "end": 6459.86,
+ "text": "sending"
+ },
+ {
+ "id": 12955,
+ "start": 6459.86,
+ "end": 6459.96,
+ "text": "it"
+ },
+ {
+ "id": 12956,
+ "start": 6459.96,
+ "end": 6460.12,
+ "text": "to"
+ },
+ {
+ "id": 12957,
+ "start": 6460.12,
+ "end": 6460.46,
+ "text": "and"
+ },
+ {
+ "id": 12958,
+ "start": 6460.46,
+ "end": 6460.74,
+ "text": "whether"
+ },
+ {
+ "id": 12959,
+ "start": 6460.74,
+ "end": 6460.9,
+ "text": "they"
+ },
+ {
+ "id": 12960,
+ "start": 6460.9,
+ "end": 6461.08,
+ "text": "were"
+ },
+ {
+ "id": 12961,
+ "start": 6461.08,
+ "end": 6461.42,
+ "text": "ask"
+ },
+ {
+ "id": 12962,
+ "start": 6461.42,
+ "end": 6461.64,
+ "text": "me"
+ },
+ {
+ "id": 12963,
+ "start": 6461.64,
+ "end": 6461.88,
+ "text": "in"
+ },
+ {
+ "id": 12964,
+ "start": 6461.88,
+ "end": 6462.36,
+ "text": "advance,"
+ },
+ {
+ "id": 12965,
+ "start": 6462.36,
+ "end": 6462.8,
+ "text": "my"
+ },
+ {
+ "id": 12966,
+ "start": 6462.8,
+ "end": 6463.22,
+ "text": "permission"
+ },
+ {
+ "id": 12967,
+ "start": 6463.22,
+ "end": 6463.32,
+ "text": "to"
+ },
+ {
+ "id": 12968,
+ "start": 6463.32,
+ "end": 6463.46,
+ "text": "do"
+ },
+ {
+ "id": 12969,
+ "start": 6463.46,
+ "end": 6463.7,
+ "text": "that."
+ },
+ {
+ "id": 12970,
+ "start": 6463.7,
+ "end": 6464.44,
+ "text": "Is"
+ },
+ {
+ "id": 12971,
+ "start": 6464.44,
+ "end": 6464.6,
+ "text": "that"
+ },
+ {
+ "id": 12972,
+ "start": 6464.6,
+ "end": 6464.66,
+ "text": "a"
+ },
+ {
+ "id": 12973,
+ "start": 6464.66,
+ "end": 6464.98,
+ "text": "fair"
+ },
+ {
+ "id": 12974,
+ "start": 6464.98,
+ "end": 6465.3,
+ "text": "thing"
+ },
+ {
+ "id": 12975,
+ "start": 6465.3,
+ "end": 6465.68,
+ "text": "for"
+ },
+ {
+ "id": 12976,
+ "start": 6465.68,
+ "end": 6465.84,
+ "text": "a"
+ },
+ {
+ "id": 12977,
+ "start": 6465.84,
+ "end": 6466.14,
+ "text": "user"
+ },
+ {
+ "id": 12978,
+ "start": 6466.14,
+ "end": 6466.22,
+ "text": "of"
+ },
+ {
+ "id": 12979,
+ "start": 6466.22,
+ "end": 6466.7,
+ "text": "Facebook"
+ },
+ {
+ "id": 12980,
+ "start": 6466.7,
+ "end": 6466.84,
+ "text": "to"
+ },
+ {
+ "id": 12981,
+ "start": 6466.84,
+ "end": 6467.88,
+ "text": "expect?"
+ },
+ {
+ "id": 12982,
+ "start": 6467.88,
+ "end": 6468.66,
+ "text": "Yes,"
+ },
+ {
+ "id": 12983,
+ "start": 6468.66,
+ "end": 6469.08,
+ "text": "Senator,"
+ },
+ {
+ "id": 12984,
+ "start": 6469.08,
+ "end": 6469.22,
+ "text": "I"
+ },
+ {
+ "id": 12985,
+ "start": 6469.22,
+ "end": 6469.42,
+ "text": "think"
+ },
+ {
+ "id": 12986,
+ "start": 6469.42,
+ "end": 6469.82,
+ "text": "everyone"
+ },
+ {
+ "id": 12987,
+ "start": 6469.82,
+ "end": 6470.06,
+ "text": "should"
+ },
+ {
+ "id": 12988,
+ "start": 6470.06,
+ "end": 6470.18,
+ "text": "have"
+ },
+ {
+ "id": 12989,
+ "start": 6470.18,
+ "end": 6470.54,
+ "text": "control"
+ },
+ {
+ "id": 12990,
+ "start": 6470.54,
+ "end": 6470.88,
+ "text": "over"
+ },
+ {
+ "id": 12991,
+ "start": 6470.88,
+ "end": 6471.02,
+ "text": "how"
+ },
+ {
+ "id": 12992,
+ "start": 6471.02,
+ "end": 6471.22,
+ "text": "their"
+ },
+ {
+ "id": 12993,
+ "start": 6471.22,
+ "end": 6471.7,
+ "text": "information"
+ },
+ {
+ "id": 12994,
+ "start": 6471.7,
+ "end": 6471.86,
+ "text": "is"
+ },
+ {
+ "id": 12995,
+ "start": 6471.86,
+ "end": 6472.16,
+ "text": "used."
+ },
+ {
+ "id": 12996,
+ "start": 6472.16,
+ "end": 6473.42,
+ "text": "And"
+ },
+ {
+ "id": 12997,
+ "start": 6473.42,
+ "end": 6474.2,
+ "text": "as"
+ },
+ {
+ "id": 12998,
+ "start": 6474.2,
+ "end": 6474.44,
+ "text": "we've"
+ },
+ {
+ "id": 12999,
+ "start": 6474.44,
+ "end": 6474.68,
+ "text": "talked"
+ },
+ {
+ "id": 13000,
+ "start": 6474.68,
+ "end": 6474.9,
+ "text": "about"
+ },
+ {
+ "id": 13001,
+ "start": 6474.9,
+ "end": 6475.1,
+ "text": "in"
+ },
+ {
+ "id": 13002,
+ "start": 6475.1,
+ "end": 6475.5,
+ "text": "some"
+ },
+ {
+ "id": 13003,
+ "start": 6475.5,
+ "end": 6475.58,
+ "text": "of"
+ },
+ {
+ "id": 13004,
+ "start": 6475.58,
+ "end": 6475.7,
+ "text": "the"
+ },
+ {
+ "id": 13005,
+ "start": 6475.7,
+ "end": 6476.08,
+ "text": "other"
+ },
+ {
+ "id": 13006,
+ "start": 6476.08,
+ "end": 6476.52,
+ "text": "questions,"
+ },
+ {
+ "id": 13007,
+ "start": 6476.52,
+ "end": 6476.56,
+ "text": "I"
+ },
+ {
+ "id": 13008,
+ "start": 6476.56,
+ "end": 6476.82,
+ "text": "think"
+ },
+ {
+ "id": 13009,
+ "start": 6476.82,
+ "end": 6476.94,
+ "text": "that"
+ },
+ {
+ "id": 13010,
+ "start": 6476.94,
+ "end": 6477.42,
+ "text": "that"
+ },
+ {
+ "id": 13011,
+ "start": 6477.42,
+ "end": 6478.42,
+ "text": "is"
+ },
+ {
+ "id": 13012,
+ "start": 6478.42,
+ "end": 6478.7,
+ "text": "laid"
+ },
+ {
+ "id": 13013,
+ "start": 6478.7,
+ "end": 6478.9,
+ "text": "out"
+ },
+ {
+ "id": 13014,
+ "start": 6478.9,
+ "end": 6479.62,
+ "text": "in"
+ },
+ {
+ "id": 13015,
+ "start": 6479.62,
+ "end": 6479.8,
+ "text": "some"
+ },
+ {
+ "id": 13016,
+ "start": 6479.8,
+ "end": 6479.88,
+ "text": "of"
+ },
+ {
+ "id": 13017,
+ "start": 6479.88,
+ "end": 6479.98,
+ "text": "the"
+ },
+ {
+ "id": 13018,
+ "start": 6479.98,
+ "end": 6480.44,
+ "text": "documents."
+ },
+ {
+ "id": 13019,
+ "start": 6480.44,
+ "end": 6480.66,
+ "text": "But"
+ },
+ {
+ "id": 13020,
+ "start": 6480.66,
+ "end": 6481,
+ "text": "more"
+ },
+ {
+ "id": 13021,
+ "start": 6481,
+ "end": 6481.52,
+ "text": "importantly,"
+ },
+ {
+ "id": 13022,
+ "start": 6481.52,
+ "end": 6481.76,
+ "text": "you"
+ },
+ {
+ "id": 13023,
+ "start": 6481.76,
+ "end": 6481.9,
+ "text": "want"
+ },
+ {
+ "id": 13024,
+ "start": 6481.9,
+ "end": 6481.98,
+ "text": "to"
+ },
+ {
+ "id": 13025,
+ "start": 6481.98,
+ "end": 6482.12,
+ "text": "give"
+ },
+ {
+ "id": 13026,
+ "start": 6482.12,
+ "end": 6482.32,
+ "text": "people"
+ },
+ {
+ "id": 13027,
+ "start": 6482.32,
+ "end": 6482.74,
+ "text": "control"
+ },
+ {
+ "id": 13028,
+ "start": 6482.74,
+ "end": 6482.88,
+ "text": "in"
+ },
+ {
+ "id": 13029,
+ "start": 6482.88,
+ "end": 6483,
+ "text": "the"
+ },
+ {
+ "id": 13030,
+ "start": 6483,
+ "end": 6483.36,
+ "text": "product"
+ },
+ {
+ "id": 13031,
+ "start": 6483.36,
+ "end": 6483.78,
+ "text": "itself."
+ },
+ {
+ "id": 13032,
+ "start": 6483.78,
+ "end": 6485.08,
+ "text": "So"
+ },
+ {
+ "id": 13033,
+ "start": 6485.08,
+ "end": 6485.26,
+ "text": "most"
+ },
+ {
+ "id": 13034,
+ "start": 6485.26,
+ "end": 6485.6,
+ "text": "important"
+ },
+ {
+ "id": 13035,
+ "start": 6485.6,
+ "end": 6485.74,
+ "text": "way"
+ },
+ {
+ "id": 13036,
+ "start": 6485.74,
+ "end": 6485.88,
+ "text": "that"
+ },
+ {
+ "id": 13037,
+ "start": 6485.88,
+ "end": 6486.04,
+ "text": "this"
+ },
+ {
+ "id": 13038,
+ "start": 6486.04,
+ "end": 6486.36,
+ "text": "happens"
+ },
+ {
+ "id": 13039,
+ "start": 6486.36,
+ "end": 6486.68,
+ "text": "across"
+ },
+ {
+ "id": 13040,
+ "start": 6486.68,
+ "end": 6486.9,
+ "text": "our"
+ },
+ {
+ "id": 13041,
+ "start": 6486.9,
+ "end": 6487.42,
+ "text": "services"
+ },
+ {
+ "id": 13042,
+ "start": 6487.42,
+ "end": 6488.62,
+ "text": "is"
+ },
+ {
+ "id": 13043,
+ "start": 6488.62,
+ "end": 6489.58,
+ "text": "that"
+ },
+ {
+ "id": 13044,
+ "start": 6489.58,
+ "end": 6489.82,
+ "text": "every"
+ },
+ {
+ "id": 13045,
+ "start": 6489.82,
+ "end": 6490.08,
+ "text": "day?"
+ },
+ {
+ "id": 13046,
+ "start": 6490.08,
+ "end": 6490.4,
+ "text": "People"
+ },
+ {
+ "id": 13047,
+ "start": 6490.4,
+ "end": 6490.58,
+ "text": "come"
+ },
+ {
+ "id": 13048,
+ "start": 6490.58,
+ "end": 6490.66,
+ "text": "to"
+ },
+ {
+ "id": 13049,
+ "start": 6490.66,
+ "end": 6490.8,
+ "text": "our"
+ },
+ {
+ "id": 13050,
+ "start": 6490.8,
+ "end": 6491.24,
+ "text": "services"
+ },
+ {
+ "id": 13051,
+ "start": 6491.24,
+ "end": 6491.34,
+ "text": "to"
+ },
+ {
+ "id": 13052,
+ "start": 6491.34,
+ "end": 6491.7,
+ "text": "choose"
+ },
+ {
+ "id": 13053,
+ "start": 6491.7,
+ "end": 6491.84,
+ "text": "to"
+ },
+ {
+ "id": 13054,
+ "start": 6491.84,
+ "end": 6492.06,
+ "text": "share"
+ },
+ {
+ "id": 13055,
+ "start": 6492.06,
+ "end": 6492.5,
+ "text": "photos"
+ },
+ {
+ "id": 13056,
+ "start": 6492.5,
+ "end": 6492.66,
+ "text": "or"
+ },
+ {
+ "id": 13057,
+ "start": 6492.66,
+ "end": 6492.86,
+ "text": "send"
+ },
+ {
+ "id": 13058,
+ "start": 6492.86,
+ "end": 6493.34,
+ "text": "messages"
+ },
+ {
+ "id": 13059,
+ "start": 6493.34,
+ "end": 6493.86,
+ "text": "and"
+ },
+ {
+ "id": 13060,
+ "start": 6493.86,
+ "end": 6494.2,
+ "text": "every"
+ },
+ {
+ "id": 13061,
+ "start": 6494.2,
+ "end": 6494.52,
+ "text": "single"
+ },
+ {
+ "id": 13062,
+ "start": 6494.52,
+ "end": 6494.82,
+ "text": "time"
+ },
+ {
+ "id": 13063,
+ "start": 6494.82,
+ "end": 6495.04,
+ "text": "they"
+ },
+ {
+ "id": 13064,
+ "start": 6495.04,
+ "end": 6495.28,
+ "text": "choose"
+ },
+ {
+ "id": 13065,
+ "start": 6495.28,
+ "end": 6495.4,
+ "text": "to"
+ },
+ {
+ "id": 13066,
+ "start": 6495.4,
+ "end": 6495.64,
+ "text": "share"
+ },
+ {
+ "id": 13067,
+ "start": 6495.64,
+ "end": 6496.74,
+ "text": "something."
+ },
+ {
+ "id": 13068,
+ "start": 6496.74,
+ "end": 6497.6,
+ "text": "They"
+ },
+ {
+ "id": 13069,
+ "start": 6497.6,
+ "end": 6497.7,
+ "text": "have"
+ },
+ {
+ "id": 13070,
+ "start": 6497.7,
+ "end": 6497.76,
+ "text": "a"
+ },
+ {
+ "id": 13071,
+ "start": 6497.76,
+ "end": 6498.1,
+ "text": "control"
+ },
+ {
+ "id": 13072,
+ "start": 6498.1,
+ "end": 6498.36,
+ "text": "right"
+ },
+ {
+ "id": 13073,
+ "start": 6498.36,
+ "end": 6498.58,
+ "text": "there"
+ },
+ {
+ "id": 13074,
+ "start": 6498.58,
+ "end": 6498.76,
+ "text": "about"
+ },
+ {
+ "id": 13075,
+ "start": 6498.76,
+ "end": 6498.9,
+ "text": "who"
+ },
+ {
+ "id": 13076,
+ "start": 6498.9,
+ "end": 6499.08,
+ "text": "they"
+ },
+ {
+ "id": 13077,
+ "start": 6499.08,
+ "end": 6499.2,
+ "text": "want"
+ },
+ {
+ "id": 13078,
+ "start": 6499.2,
+ "end": 6499.28,
+ "text": "to"
+ },
+ {
+ "id": 13079,
+ "start": 6499.28,
+ "end": 6499.44,
+ "text": "share"
+ },
+ {
+ "id": 13080,
+ "start": 6499.44,
+ "end": 6499.52,
+ "text": "it"
+ },
+ {
+ "id": 13081,
+ "start": 6499.52,
+ "end": 6499.7,
+ "text": "with,"
+ },
+ {
+ "id": 13082,
+ "start": 6499.7,
+ "end": 6500.18,
+ "text": "but"
+ },
+ {
+ "id": 13083,
+ "start": 6500.18,
+ "end": 6500.36,
+ "text": "that"
+ },
+ {
+ "id": 13084,
+ "start": 6500.36,
+ "end": 6500.64,
+ "text": "level"
+ },
+ {
+ "id": 13085,
+ "start": 6500.64,
+ "end": 6500.74,
+ "text": "of"
+ },
+ {
+ "id": 13086,
+ "start": 6500.74,
+ "end": 6501.08,
+ "text": "control"
+ },
+ {
+ "id": 13087,
+ "start": 6501.08,
+ "end": 6501.2,
+ "text": "is"
+ },
+ {
+ "id": 13088,
+ "start": 6501.2,
+ "end": 6501.74,
+ "text": "extremely"
+ },
+ {
+ "id": 13089,
+ "start": 6501.74,
+ "end": 6502.12,
+ "text": "important."
+ },
+ {
+ "id": 13090,
+ "start": 6502.12,
+ "end": 6502.42,
+ "text": "They"
+ },
+ {
+ "id": 13091,
+ "start": 6502.42,
+ "end": 6502.72,
+ "text": "certainly"
+ },
+ {
+ "id": 13092,
+ "start": 6502.72,
+ "end": 6502.88,
+ "text": "know"
+ },
+ {
+ "id": 13093,
+ "start": 6502.88,
+ "end": 6503.62,
+ "text": "within"
+ },
+ {
+ "id": 13094,
+ "start": 6503.62,
+ "end": 6503.74,
+ "text": "the"
+ },
+ {
+ "id": 13095,
+ "start": 6503.74,
+ "end": 6504.2,
+ "text": "Facebook"
+ },
+ {
+ "id": 13096,
+ "start": 6504.2,
+ "end": 6504.6,
+ "text": "pages"
+ },
+ {
+ "id": 13097,
+ "start": 6504.6,
+ "end": 6504.78,
+ "text": "who"
+ },
+ {
+ "id": 13098,
+ "start": 6504.78,
+ "end": 6504.98,
+ "text": "their"
+ },
+ {
+ "id": 13099,
+ "start": 6504.98,
+ "end": 6505.32,
+ "text": "friends"
+ },
+ {
+ "id": 13100,
+ "start": 6505.32,
+ "end": 6505.74,
+ "text": "are"
+ },
+ {
+ "id": 13101,
+ "start": 6505.74,
+ "end": 6506.46,
+ "text": "but"
+ },
+ {
+ "id": 13102,
+ "start": 6506.46,
+ "end": 6506.62,
+ "text": "they"
+ },
+ {
+ "id": 13103,
+ "start": 6506.62,
+ "end": 6506.78,
+ "text": "may"
+ },
+ {
+ "id": 13104,
+ "start": 6506.78,
+ "end": 6506.98,
+ "text": "not"
+ },
+ {
+ "id": 13105,
+ "start": 6506.98,
+ "end": 6507.54,
+ "text": "know"
+ },
+ {
+ "id": 13106,
+ "start": 6507.54,
+ "end": 6507.76,
+ "text": "as"
+ },
+ {
+ "id": 13107,
+ "start": 6507.76,
+ "end": 6507.96,
+ "text": "has"
+ },
+ {
+ "id": 13108,
+ "start": 6507.96,
+ "end": 6508.38,
+ "text": "happened"
+ },
+ {
+ "id": 13109,
+ "start": 6508.38,
+ "end": 6508.62,
+ "text": "and"
+ },
+ {
+ "id": 13110,
+ "start": 6508.62,
+ "end": 6508.94,
+ "text": "you've"
+ },
+ {
+ "id": 13111,
+ "start": 6508.94,
+ "end": 6509.4,
+ "text": "conceded"
+ },
+ {
+ "id": 13112,
+ "start": 6509.4,
+ "end": 6509.6,
+ "text": "this"
+ },
+ {
+ "id": 13113,
+ "start": 6509.6,
+ "end": 6509.9,
+ "text": "point"
+ },
+ {
+ "id": 13114,
+ "start": 6509.9,
+ "end": 6510.54,
+ "text": "in"
+ },
+ {
+ "id": 13115,
+ "start": 6510.54,
+ "end": 6510.66,
+ "text": "the"
+ },
+ {
+ "id": 13116,
+ "start": 6510.66,
+ "end": 6511.06,
+ "text": "past"
+ },
+ {
+ "id": 13117,
+ "start": 6511.06,
+ "end": 6511.48,
+ "text": "that"
+ },
+ {
+ "id": 13118,
+ "start": 6511.48,
+ "end": 6511.92,
+ "text": "sometimes"
+ },
+ {
+ "id": 13119,
+ "start": 6511.92,
+ "end": 6512.1,
+ "text": "that"
+ },
+ {
+ "id": 13120,
+ "start": 6512.1,
+ "end": 6512.64,
+ "text": "information"
+ },
+ {
+ "id": 13121,
+ "start": 6512.64,
+ "end": 6512.86,
+ "text": "is"
+ },
+ {
+ "id": 13122,
+ "start": 6512.86,
+ "end": 6513.22,
+ "text": "going"
+ },
+ {
+ "id": 13123,
+ "start": 6513.22,
+ "end": 6513.46,
+ "text": "way"
+ },
+ {
+ "id": 13124,
+ "start": 6513.46,
+ "end": 6513.72,
+ "text": "beyond"
+ },
+ {
+ "id": 13125,
+ "start": 6513.72,
+ "end": 6513.9,
+ "text": "their"
+ },
+ {
+ "id": 13126,
+ "start": 6513.9,
+ "end": 6514.32,
+ "text": "friends."
+ },
+ {
+ "id": 13127,
+ "start": 6514.32,
+ "end": 6514.52,
+ "text": "And"
+ },
+ {
+ "id": 13128,
+ "start": 6514.52,
+ "end": 6515.08,
+ "text": "sometimes"
+ },
+ {
+ "id": 13129,
+ "start": 6515.08,
+ "end": 6515.54,
+ "text": "people"
+ },
+ {
+ "id": 13130,
+ "start": 6515.54,
+ "end": 6515.72,
+ "text": "have"
+ },
+ {
+ "id": 13131,
+ "start": 6515.72,
+ "end": 6515.94,
+ "text": "made"
+ },
+ {
+ "id": 13132,
+ "start": 6515.94,
+ "end": 6516.42,
+ "text": "money"
+ },
+ {
+ "id": 13133,
+ "start": 6516.42,
+ "end": 6516.64,
+ "text": "off"
+ },
+ {
+ "id": 13134,
+ "start": 6516.64,
+ "end": 6516.76,
+ "text": "of"
+ },
+ {
+ "id": 13135,
+ "start": 6516.76,
+ "end": 6517.12,
+ "text": "sharing"
+ },
+ {
+ "id": 13136,
+ "start": 6517.12,
+ "end": 6517.32,
+ "text": "that"
+ },
+ {
+ "id": 13137,
+ "start": 6517.32,
+ "end": 6518.34,
+ "text": "information,"
+ },
+ {
+ "id": 13138,
+ "start": 6518.34,
+ "end": 6520.46,
+ "text": "correct,"
+ },
+ {
+ "id": 13139,
+ "start": 6520.46,
+ "end": 6521.42,
+ "text": "Senator"
+ },
+ {
+ "id": 13140,
+ "start": 6521.42,
+ "end": 6521.7,
+ "text": "you're"
+ },
+ {
+ "id": 13141,
+ "start": 6521.7,
+ "end": 6522.12,
+ "text": "referring,"
+ },
+ {
+ "id": 13142,
+ "start": 6522.12,
+ "end": 6522.16,
+ "text": "I"
+ },
+ {
+ "id": 13143,
+ "start": 6522.16,
+ "end": 6522.42,
+ "text": "think"
+ },
+ {
+ "id": 13144,
+ "start": 6522.42,
+ "end": 6522.66,
+ "text": "to"
+ },
+ {
+ "id": 13145,
+ "start": 6522.66,
+ "end": 6522.98,
+ "text": "our"
+ },
+ {
+ "id": 13146,
+ "start": 6522.98,
+ "end": 6523.5,
+ "text": "developer"
+ },
+ {
+ "id": 13147,
+ "start": 6523.5,
+ "end": 6523.98,
+ "text": "platform"
+ },
+ {
+ "id": 13148,
+ "start": 6523.98,
+ "end": 6525.02,
+ "text": "and"
+ },
+ {
+ "id": 13149,
+ "start": 6525.02,
+ "end": 6525.2,
+ "text": "it"
+ },
+ {
+ "id": 13150,
+ "start": 6525.2,
+ "end": 6525.38,
+ "text": "may"
+ },
+ {
+ "id": 13151,
+ "start": 6525.38,
+ "end": 6525.56,
+ "text": "be"
+ },
+ {
+ "id": 13152,
+ "start": 6525.56,
+ "end": 6526.2,
+ "text": "useful"
+ },
+ {
+ "id": 13153,
+ "start": 6526.2,
+ "end": 6526.34,
+ "text": "for"
+ },
+ {
+ "id": 13154,
+ "start": 6526.34,
+ "end": 6526.44,
+ "text": "me"
+ },
+ {
+ "id": 13155,
+ "start": 6526.44,
+ "end": 6526.52,
+ "text": "to"
+ },
+ {
+ "id": 13156,
+ "start": 6526.52,
+ "end": 6526.66,
+ "text": "give"
+ },
+ {
+ "id": 13157,
+ "start": 6526.66,
+ "end": 6526.82,
+ "text": "some"
+ },
+ {
+ "id": 13158,
+ "start": 6526.82,
+ "end": 6527.2,
+ "text": "background"
+ },
+ {
+ "id": 13159,
+ "start": 6527.2,
+ "end": 6527.32,
+ "text": "on"
+ },
+ {
+ "id": 13160,
+ "start": 6527.32,
+ "end": 6527.48,
+ "text": "how"
+ },
+ {
+ "id": 13161,
+ "start": 6527.48,
+ "end": 6527.58,
+ "text": "we"
+ },
+ {
+ "id": 13162,
+ "start": 6527.58,
+ "end": 6527.84,
+ "text": "set"
+ },
+ {
+ "id": 13163,
+ "start": 6527.84,
+ "end": 6527.98,
+ "text": "that"
+ },
+ {
+ "id": 13164,
+ "start": 6527.98,
+ "end": 6528.1,
+ "text": "up."
+ },
+ {
+ "id": 13165,
+ "start": 6528.1,
+ "end": 6528.24,
+ "text": "If"
+ },
+ {
+ "id": 13166,
+ "start": 6528.24,
+ "end": 6528.44,
+ "text": "that's"
+ },
+ {
+ "id": 13167,
+ "start": 6528.44,
+ "end": 6528.8,
+ "text": "useful"
+ },
+ {
+ "id": 13168,
+ "start": 6528.8,
+ "end": 6529.84,
+ "text": "I"
+ },
+ {
+ "id": 13169,
+ "start": 6529.84,
+ "end": 6530,
+ "text": "have"
+ },
+ {
+ "id": 13170,
+ "start": 6530,
+ "end": 6530.28,
+ "text": "three"
+ },
+ {
+ "id": 13171,
+ "start": 6530.28,
+ "end": 6530.56,
+ "text": "minutes"
+ },
+ {
+ "id": 13172,
+ "start": 6530.56,
+ "end": 6530.86,
+ "text": "left."
+ },
+ {
+ "id": 13173,
+ "start": 6530.86,
+ "end": 6531.5,
+ "text": "So"
+ },
+ {
+ "id": 13174,
+ "start": 6531.5,
+ "end": 6531.94,
+ "text": "maybe"
+ },
+ {
+ "id": 13175,
+ "start": 6531.94,
+ "end": 6532.08,
+ "text": "you"
+ },
+ {
+ "id": 13176,
+ "start": 6532.08,
+ "end": 6532.4,
+ "text": "can"
+ },
+ {
+ "id": 13177,
+ "start": 6532.4,
+ "end": 6532.52,
+ "text": "do"
+ },
+ {
+ "id": 13178,
+ "start": 6532.52,
+ "end": 6532.74,
+ "text": "that"
+ },
+ {
+ "id": 13179,
+ "start": 6532.74,
+ "end": 6532.9,
+ "text": "for"
+ },
+ {
+ "id": 13180,
+ "start": 6532.9,
+ "end": 6533.02,
+ "text": "the"
+ },
+ {
+ "id": 13181,
+ "start": 6533.02,
+ "end": 6533.36,
+ "text": "record"
+ },
+ {
+ "id": 13182,
+ "start": 6533.36,
+ "end": 6533.7,
+ "text": "because"
+ },
+ {
+ "id": 13183,
+ "start": 6533.7,
+ "end": 6533.78,
+ "text": "I"
+ },
+ {
+ "id": 13184,
+ "start": 6533.78,
+ "end": 6533.92,
+ "text": "have"
+ },
+ {
+ "id": 13185,
+ "start": 6533.92,
+ "end": 6533.98,
+ "text": "a"
+ },
+ {
+ "id": 13186,
+ "start": 6533.98,
+ "end": 6534.18,
+ "text": "couple"
+ },
+ {
+ "id": 13187,
+ "start": 6534.18,
+ "end": 6534.28,
+ "text": "of"
+ },
+ {
+ "id": 13188,
+ "start": 6534.28,
+ "end": 6534.4,
+ "text": "the"
+ },
+ {
+ "id": 13189,
+ "start": 6534.4,
+ "end": 6534.76,
+ "text": "questions"
+ },
+ {
+ "id": 13190,
+ "start": 6534.76,
+ "end": 6534.96,
+ "text": "I'd"
+ },
+ {
+ "id": 13191,
+ "start": 6534.96,
+ "end": 6535.1,
+ "text": "like"
+ },
+ {
+ "id": 13192,
+ "start": 6535.1,
+ "end": 6535.22,
+ "text": "to"
+ },
+ {
+ "id": 13193,
+ "start": 6535.22,
+ "end": 6536.34,
+ "text": "ask"
+ },
+ {
+ "id": 13194,
+ "start": 6536.34,
+ "end": 6537.4,
+ "text": "you"
+ },
+ {
+ "id": 13195,
+ "start": 6537.4,
+ "end": 6537.82,
+ "text": "have"
+ },
+ {
+ "id": 13196,
+ "start": 6537.82,
+ "end": 6538.28,
+ "text": "recently"
+ },
+ {
+ "id": 13197,
+ "start": 6538.28,
+ "end": 6538.68,
+ "text": "announced"
+ },
+ {
+ "id": 13198,
+ "start": 6538.68,
+ "end": 6539.56,
+ "text": "something"
+ },
+ {
+ "id": 13199,
+ "start": 6539.56,
+ "end": 6540.58,
+ "text": "that"
+ },
+ {
+ "id": 13200,
+ "start": 6540.58,
+ "end": 6540.86,
+ "text": "is"
+ },
+ {
+ "id": 13201,
+ "start": 6540.86,
+ "end": 6543,
+ "text": "called"
+ },
+ {
+ "id": 13202,
+ "start": 6543,
+ "end": 6543.98,
+ "text": "Messenger"
+ },
+ {
+ "id": 13203,
+ "start": 6543.98,
+ "end": 6545.3,
+ "text": "Kids"
+ },
+ {
+ "id": 13204,
+ "start": 6545.3,
+ "end": 6546.28,
+ "text": "Facebook"
+ },
+ {
+ "id": 13205,
+ "start": 6546.28,
+ "end": 6546.58,
+ "text": "created."
+ },
+ {
+ "id": 13206,
+ "start": 6546.58,
+ "end": 6546.7,
+ "text": "An"
+ },
+ {
+ "id": 13207,
+ "start": 6546.7,
+ "end": 6546.96,
+ "text": "app"
+ },
+ {
+ "id": 13208,
+ "start": 6546.96,
+ "end": 6547.36,
+ "text": "allowing"
+ },
+ {
+ "id": 13209,
+ "start": 6547.36,
+ "end": 6547.8,
+ "text": "kids"
+ },
+ {
+ "id": 13210,
+ "start": 6547.8,
+ "end": 6548.24,
+ "text": "between"
+ },
+ {
+ "id": 13211,
+ "start": 6548.24,
+ "end": 6548.34,
+ "text": "the"
+ },
+ {
+ "id": 13212,
+ "start": 6548.34,
+ "end": 6548.64,
+ "text": "ages"
+ },
+ {
+ "id": 13213,
+ "start": 6548.64,
+ "end": 6548.76,
+ "text": "of"
+ },
+ {
+ "id": 13214,
+ "start": 6548.76,
+ "end": 6549.16,
+ "text": "six"
+ },
+ {
+ "id": 13215,
+ "start": 6549.16,
+ "end": 6549.44,
+ "text": "and"
+ },
+ {
+ "id": 13216,
+ "start": 6549.44,
+ "end": 6550.02,
+ "text": "12"
+ },
+ {
+ "id": 13217,
+ "start": 6550.02,
+ "end": 6550.94,
+ "text": "to"
+ },
+ {
+ "id": 13218,
+ "start": 6550.94,
+ "end": 6551.14,
+ "text": "send"
+ },
+ {
+ "id": 13219,
+ "start": 6551.14,
+ "end": 6551.44,
+ "text": "video"
+ },
+ {
+ "id": 13220,
+ "start": 6551.44,
+ "end": 6551.56,
+ "text": "and"
+ },
+ {
+ "id": 13221,
+ "start": 6551.56,
+ "end": 6551.82,
+ "text": "text"
+ },
+ {
+ "id": 13222,
+ "start": 6551.82,
+ "end": 6552.28,
+ "text": "messages"
+ },
+ {
+ "id": 13223,
+ "start": 6552.28,
+ "end": 6552.56,
+ "text": "through"
+ },
+ {
+ "id": 13224,
+ "start": 6552.56,
+ "end": 6553.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 13225,
+ "start": 6553.02,
+ "end": 6553.18,
+ "text": "as"
+ },
+ {
+ "id": 13226,
+ "start": 6553.18,
+ "end": 6553.28,
+ "text": "an"
+ },
+ {
+ "id": 13227,
+ "start": 6553.28,
+ "end": 6553.74,
+ "text": "extension"
+ },
+ {
+ "id": 13228,
+ "start": 6553.74,
+ "end": 6553.84,
+ "text": "of"
+ },
+ {
+ "id": 13229,
+ "start": 6553.84,
+ "end": 6553.98,
+ "text": "their"
+ },
+ {
+ "id": 13230,
+ "start": 6553.98,
+ "end": 6554.28,
+ "text": "parents"
+ },
+ {
+ "id": 13231,
+ "start": 6554.28,
+ "end": 6554.68,
+ "text": "account."
+ },
+ {
+ "id": 13232,
+ "start": 6554.68,
+ "end": 6555.8,
+ "text": "You"
+ },
+ {
+ "id": 13233,
+ "start": 6555.8,
+ "end": 6555.94,
+ "text": "have"
+ },
+ {
+ "id": 13234,
+ "start": 6555.94,
+ "end": 6556.38,
+ "text": "cartoon"
+ },
+ {
+ "id": 13235,
+ "start": 6556.38,
+ "end": 6556.56,
+ "text": "like"
+ },
+ {
+ "id": 13236,
+ "start": 6556.56,
+ "end": 6557,
+ "text": "stickers"
+ },
+ {
+ "id": 13237,
+ "start": 6557,
+ "end": 6557.14,
+ "text": "and"
+ },
+ {
+ "id": 13238,
+ "start": 6557.14,
+ "end": 6557.38,
+ "text": "other"
+ },
+ {
+ "id": 13239,
+ "start": 6557.38,
+ "end": 6557.78,
+ "text": "features"
+ },
+ {
+ "id": 13240,
+ "start": 6557.78,
+ "end": 6558.22,
+ "text": "designed"
+ },
+ {
+ "id": 13241,
+ "start": 6558.22,
+ "end": 6558.3,
+ "text": "to"
+ },
+ {
+ "id": 13242,
+ "start": 6558.3,
+ "end": 6558.66,
+ "text": "appeal"
+ },
+ {
+ "id": 13243,
+ "start": 6558.66,
+ "end": 6558.9,
+ "text": "to"
+ },
+ {
+ "id": 13244,
+ "start": 6558.9,
+ "end": 6559.44,
+ "text": "little"
+ },
+ {
+ "id": 13245,
+ "start": 6559.44,
+ "end": 6559.74,
+ "text": "kids"
+ },
+ {
+ "id": 13246,
+ "start": 6559.74,
+ "end": 6560.22,
+ "text": "first"
+ },
+ {
+ "id": 13247,
+ "start": 6560.22,
+ "end": 6560.58,
+ "text": "graders"
+ },
+ {
+ "id": 13248,
+ "start": 6560.58,
+ "end": 6562.28,
+ "text": "kindergarteners"
+ },
+ {
+ "id": 13249,
+ "start": 6562.28,
+ "end": 6563.24,
+ "text": "on"
+ },
+ {
+ "id": 13250,
+ "start": 6563.24,
+ "end": 6563.6,
+ "text": "January"
+ },
+ {
+ "id": 13251,
+ "start": 6563.6,
+ "end": 6564.04,
+ "text": "thirtieth"
+ },
+ {
+ "id": 13252,
+ "start": 6564.04,
+ "end": 6564.5,
+ "text": "campaign."
+ },
+ {
+ "id": 13253,
+ "start": 6564.5,
+ "end": 6564.66,
+ "text": "For"
+ },
+ {
+ "id": 13254,
+ "start": 6564.66,
+ "end": 6565.08,
+ "text": "commercial"
+ },
+ {
+ "id": 13255,
+ "start": 6565.08,
+ "end": 6565.34,
+ "text": "free"
+ },
+ {
+ "id": 13256,
+ "start": 6565.34,
+ "end": 6565.92,
+ "text": "childhood"
+ },
+ {
+ "id": 13257,
+ "start": 6565.92,
+ "end": 6566.14,
+ "text": "and"
+ },
+ {
+ "id": 13258,
+ "start": 6566.14,
+ "end": 6566.46,
+ "text": "lots"
+ },
+ {
+ "id": 13259,
+ "start": 6566.46,
+ "end": 6566.54,
+ "text": "of"
+ },
+ {
+ "id": 13260,
+ "start": 6566.54,
+ "end": 6566.76,
+ "text": "other"
+ },
+ {
+ "id": 13261,
+ "start": 6566.76,
+ "end": 6567.02,
+ "text": "child"
+ },
+ {
+ "id": 13262,
+ "start": 6567.02,
+ "end": 6567.44,
+ "text": "development"
+ },
+ {
+ "id": 13263,
+ "start": 6567.44,
+ "end": 6568.14,
+ "text": "organizations,"
+ },
+ {
+ "id": 13264,
+ "start": 6568.14,
+ "end": 6568.58,
+ "text": "Warren"
+ },
+ {
+ "id": 13265,
+ "start": 6568.58,
+ "end": 6569.2,
+ "text": "Facebook,"
+ },
+ {
+ "id": 13266,
+ "start": 6569.2,
+ "end": 6570.3,
+ "text": "they"
+ },
+ {
+ "id": 13267,
+ "start": 6570.3,
+ "end": 6570.6,
+ "text": "pointed"
+ },
+ {
+ "id": 13268,
+ "start": 6570.6,
+ "end": 6570.74,
+ "text": "to"
+ },
+ {
+ "id": 13269,
+ "start": 6570.74,
+ "end": 6570.82,
+ "text": "a"
+ },
+ {
+ "id": 13270,
+ "start": 6570.82,
+ "end": 6571.14,
+ "text": "wealth"
+ },
+ {
+ "id": 13271,
+ "start": 6571.14,
+ "end": 6571.26,
+ "text": "of"
+ },
+ {
+ "id": 13272,
+ "start": 6571.26,
+ "end": 6571.78,
+ "text": "research"
+ },
+ {
+ "id": 13273,
+ "start": 6571.78,
+ "end": 6572.4,
+ "text": "demonstrating"
+ },
+ {
+ "id": 13274,
+ "start": 6572.4,
+ "end": 6572.69,
+ "text": "the"
+ },
+ {
+ "id": 13275,
+ "start": 6572.69,
+ "end": 6573.09,
+ "text": "excessive"
+ },
+ {
+ "id": 13276,
+ "start": 6573.09,
+ "end": 6573.31,
+ "text": "use"
+ },
+ {
+ "id": 13277,
+ "start": 6573.31,
+ "end": 6573.45,
+ "text": "of"
+ },
+ {
+ "id": 13278,
+ "start": 6573.45,
+ "end": 6573.85,
+ "text": "digital"
+ },
+ {
+ "id": 13279,
+ "start": 6573.85,
+ "end": 6574.37,
+ "text": "devices"
+ },
+ {
+ "id": 13280,
+ "start": 6574.37,
+ "end": 6574.51,
+ "text": "and"
+ },
+ {
+ "id": 13281,
+ "start": 6574.51,
+ "end": 6574.89,
+ "text": "social"
+ },
+ {
+ "id": 13282,
+ "start": 6574.89,
+ "end": 6575.23,
+ "text": "media"
+ },
+ {
+ "id": 13283,
+ "start": 6575.23,
+ "end": 6575.85,
+ "text": "is"
+ },
+ {
+ "id": 13284,
+ "start": 6575.85,
+ "end": 6576.27,
+ "text": "harmful"
+ },
+ {
+ "id": 13285,
+ "start": 6576.27,
+ "end": 6576.35,
+ "text": "to"
+ },
+ {
+ "id": 13286,
+ "start": 6576.35,
+ "end": 6576.65,
+ "text": "kids"
+ },
+ {
+ "id": 13287,
+ "start": 6576.65,
+ "end": 6577.41,
+ "text": "and"
+ },
+ {
+ "id": 13288,
+ "start": 6577.41,
+ "end": 6577.79,
+ "text": "argued"
+ },
+ {
+ "id": 13289,
+ "start": 6577.79,
+ "end": 6577.95,
+ "text": "that"
+ },
+ {
+ "id": 13290,
+ "start": 6577.95,
+ "end": 6578.23,
+ "text": "young"
+ },
+ {
+ "id": 13291,
+ "start": 6578.23,
+ "end": 6578.65,
+ "text": "children"
+ },
+ {
+ "id": 13292,
+ "start": 6578.65,
+ "end": 6579.07,
+ "text": "simply"
+ },
+ {
+ "id": 13293,
+ "start": 6579.07,
+ "end": 6579.21,
+ "text": "are"
+ },
+ {
+ "id": 13294,
+ "start": 6579.21,
+ "end": 6579.45,
+ "text": "not"
+ },
+ {
+ "id": 13295,
+ "start": 6579.45,
+ "end": 6579.81,
+ "text": "ready"
+ },
+ {
+ "id": 13296,
+ "start": 6579.81,
+ "end": 6579.95,
+ "text": "to"
+ },
+ {
+ "id": 13297,
+ "start": 6579.95,
+ "end": 6580.33,
+ "text": "handle"
+ },
+ {
+ "id": 13298,
+ "start": 6580.33,
+ "end": 6580.81,
+ "text": "social"
+ },
+ {
+ "id": 13299,
+ "start": 6580.81,
+ "end": 6581.13,
+ "text": "media"
+ },
+ {
+ "id": 13300,
+ "start": 6581.13,
+ "end": 6581.63,
+ "text": "accounts"
+ },
+ {
+ "id": 13301,
+ "start": 6581.63,
+ "end": 6581.79,
+ "text": "at"
+ },
+ {
+ "id": 13302,
+ "start": 6581.79,
+ "end": 6582.03,
+ "text": "age"
+ },
+ {
+ "id": 13303,
+ "start": 6582.03,
+ "end": 6583.1,
+ "text": "six"
+ },
+ {
+ "id": 13304,
+ "start": 6583.1,
+ "end": 6583.86,
+ "text": "in"
+ },
+ {
+ "id": 13305,
+ "start": 6583.86,
+ "end": 6584.16,
+ "text": "addition."
+ },
+ {
+ "id": 13306,
+ "start": 6584.16,
+ "end": 6584.36,
+ "text": "There"
+ },
+ {
+ "id": 13307,
+ "start": 6584.36,
+ "end": 6584.46,
+ "text": "are"
+ },
+ {
+ "id": 13308,
+ "start": 6584.46,
+ "end": 6584.84,
+ "text": "concerns"
+ },
+ {
+ "id": 13309,
+ "start": 6584.84,
+ "end": 6585.06,
+ "text": "about"
+ },
+ {
+ "id": 13310,
+ "start": 6585.06,
+ "end": 6585.84,
+ "text": "data"
+ },
+ {
+ "id": 13311,
+ "start": 6585.84,
+ "end": 6586.1,
+ "text": "that's"
+ },
+ {
+ "id": 13312,
+ "start": 6586.1,
+ "end": 6586.34,
+ "text": "being"
+ },
+ {
+ "id": 13313,
+ "start": 6586.34,
+ "end": 6586.9,
+ "text": "gathered"
+ },
+ {
+ "id": 13314,
+ "start": 6586.9,
+ "end": 6587.64,
+ "text": "about"
+ },
+ {
+ "id": 13315,
+ "start": 6587.64,
+ "end": 6587.98,
+ "text": "these"
+ },
+ {
+ "id": 13316,
+ "start": 6587.98,
+ "end": 6588.36,
+ "text": "kids"
+ },
+ {
+ "id": 13317,
+ "start": 6588.36,
+ "end": 6589.32,
+ "text": "now."
+ },
+ {
+ "id": 13318,
+ "start": 6589.32,
+ "end": 6589.48,
+ "text": "There"
+ },
+ {
+ "id": 13319,
+ "start": 6589.48,
+ "end": 6589.58,
+ "text": "are"
+ },
+ {
+ "id": 13320,
+ "start": 6589.58,
+ "end": 6589.8,
+ "text": "certain"
+ },
+ {
+ "id": 13321,
+ "start": 6589.8,
+ "end": 6590.12,
+ "text": "limits"
+ },
+ {
+ "id": 13322,
+ "start": 6590.12,
+ "end": 6590.24,
+ "text": "in"
+ },
+ {
+ "id": 13323,
+ "start": 6590.24,
+ "end": 6590.36,
+ "text": "the"
+ },
+ {
+ "id": 13324,
+ "start": 6590.36,
+ "end": 6590.54,
+ "text": "law."
+ },
+ {
+ "id": 13325,
+ "start": 6590.54,
+ "end": 6591.02,
+ "text": "We"
+ },
+ {
+ "id": 13326,
+ "start": 6591.02,
+ "end": 6591.2,
+ "text": "know"
+ },
+ {
+ "id": 13327,
+ "start": 6591.2,
+ "end": 6592,
+ "text": "the"
+ },
+ {
+ "id": 13328,
+ "start": 6592,
+ "end": 6592.38,
+ "text": "children's"
+ },
+ {
+ "id": 13329,
+ "start": 6592.38,
+ "end": 6592.82,
+ "text": "online"
+ },
+ {
+ "id": 13330,
+ "start": 6592.82,
+ "end": 6593.62,
+ "text": "privacy"
+ },
+ {
+ "id": 13331,
+ "start": 6593.62,
+ "end": 6595.06,
+ "text": "at"
+ },
+ {
+ "id": 13332,
+ "start": 6595.06,
+ "end": 6595.24,
+ "text": "what"
+ },
+ {
+ "id": 13333,
+ "start": 6595.24,
+ "end": 6595.86,
+ "text": "guarantees"
+ },
+ {
+ "id": 13334,
+ "start": 6595.86,
+ "end": 6596.06,
+ "text": "can"
+ },
+ {
+ "id": 13335,
+ "start": 6596.06,
+ "end": 6596.26,
+ "text": "you"
+ },
+ {
+ "id": 13336,
+ "start": 6596.26,
+ "end": 6596.44,
+ "text": "give"
+ },
+ {
+ "id": 13337,
+ "start": 6596.44,
+ "end": 6596.62,
+ "text": "us"
+ },
+ {
+ "id": 13338,
+ "start": 6596.62,
+ "end": 6596.84,
+ "text": "that?"
+ },
+ {
+ "id": 13339,
+ "start": 6596.84,
+ "end": 6597.14,
+ "text": "No,"
+ },
+ {
+ "id": 13340,
+ "start": 6597.14,
+ "end": 6597.6,
+ "text": "data"
+ },
+ {
+ "id": 13341,
+ "start": 6597.6,
+ "end": 6597.8,
+ "text": "for"
+ },
+ {
+ "id": 13342,
+ "start": 6597.8,
+ "end": 6598.42,
+ "text": "Messenger"
+ },
+ {
+ "id": 13343,
+ "start": 6598.42,
+ "end": 6598.74,
+ "text": "kids"
+ },
+ {
+ "id": 13344,
+ "start": 6598.74,
+ "end": 6599.16,
+ "text": "is"
+ },
+ {
+ "id": 13345,
+ "start": 6599.16,
+ "end": 6599.5,
+ "text": "or"
+ },
+ {
+ "id": 13346,
+ "start": 6599.5,
+ "end": 6599.74,
+ "text": "will"
+ },
+ {
+ "id": 13347,
+ "start": 6599.74,
+ "end": 6599.9,
+ "text": "be"
+ },
+ {
+ "id": 13348,
+ "start": 6599.9,
+ "end": 6600.34,
+ "text": "collected"
+ },
+ {
+ "id": 13349,
+ "start": 6600.34,
+ "end": 6600.46,
+ "text": "or"
+ },
+ {
+ "id": 13350,
+ "start": 6600.46,
+ "end": 6600.86,
+ "text": "shared"
+ },
+ {
+ "id": 13351,
+ "start": 6600.86,
+ "end": 6601.9,
+ "text": "with"
+ },
+ {
+ "id": 13352,
+ "start": 6601.9,
+ "end": 6602.14,
+ "text": "those"
+ },
+ {
+ "id": 13353,
+ "start": 6602.14,
+ "end": 6602.3,
+ "text": "that"
+ },
+ {
+ "id": 13354,
+ "start": 6602.3,
+ "end": 6602.52,
+ "text": "might"
+ },
+ {
+ "id": 13355,
+ "start": 6602.52,
+ "end": 6602.92,
+ "text": "violate"
+ },
+ {
+ "id": 13356,
+ "start": 6602.92,
+ "end": 6603.12,
+ "text": "that"
+ },
+ {
+ "id": 13357,
+ "start": 6603.12,
+ "end": 6604.14,
+ "text": "law."
+ },
+ {
+ "id": 13358,
+ "start": 6604.14,
+ "end": 6605.04,
+ "text": "All"
+ },
+ {
+ "id": 13359,
+ "start": 6605.04,
+ "end": 6605.2,
+ "text": "right,"
+ },
+ {
+ "id": 13360,
+ "start": 6605.2,
+ "end": 6605.62,
+ "text": "Senator."
+ },
+ {
+ "id": 13361,
+ "start": 6605.62,
+ "end": 6605.84,
+ "text": "So"
+ },
+ {
+ "id": 13362,
+ "start": 6605.84,
+ "end": 6605.9,
+ "text": "a"
+ },
+ {
+ "id": 13363,
+ "start": 6605.9,
+ "end": 6606.22,
+ "text": "number"
+ },
+ {
+ "id": 13364,
+ "start": 6606.22,
+ "end": 6606.32,
+ "text": "of"
+ },
+ {
+ "id": 13365,
+ "start": 6606.32,
+ "end": 6606.66,
+ "text": "things"
+ },
+ {
+ "id": 13366,
+ "start": 6606.66,
+ "end": 6606.7,
+ "text": "I"
+ },
+ {
+ "id": 13367,
+ "start": 6606.7,
+ "end": 6606.98,
+ "text": "think"
+ },
+ {
+ "id": 13368,
+ "start": 6606.98,
+ "end": 6607.4,
+ "text": "are"
+ },
+ {
+ "id": 13369,
+ "start": 6607.4,
+ "end": 6607.84,
+ "text": "important"
+ },
+ {
+ "id": 13370,
+ "start": 6607.84,
+ "end": 6608.08,
+ "text": "here,"
+ },
+ {
+ "id": 13371,
+ "start": 6608.08,
+ "end": 6608.8,
+ "text": "the"
+ },
+ {
+ "id": 13372,
+ "start": 6608.8,
+ "end": 6609.12,
+ "text": "background"
+ },
+ {
+ "id": 13373,
+ "start": 6609.12,
+ "end": 6609.2,
+ "text": "on"
+ },
+ {
+ "id": 13374,
+ "start": 6609.2,
+ "end": 6609.62,
+ "text": "Messenger"
+ },
+ {
+ "id": 13375,
+ "start": 6609.62,
+ "end": 6609.9,
+ "text": "kids"
+ },
+ {
+ "id": 13376,
+ "start": 6609.9,
+ "end": 6610.66,
+ "text": "is"
+ },
+ {
+ "id": 13377,
+ "start": 6610.66,
+ "end": 6611.32,
+ "text": "we"
+ },
+ {
+ "id": 13378,
+ "start": 6611.32,
+ "end": 6611.54,
+ "text": "heard"
+ },
+ {
+ "id": 13379,
+ "start": 6611.54,
+ "end": 6611.98,
+ "text": "feedback"
+ },
+ {
+ "id": 13380,
+ "start": 6611.98,
+ "end": 6612.14,
+ "text": "from"
+ },
+ {
+ "id": 13381,
+ "start": 6612.14,
+ "end": 6612.68,
+ "text": "thousands"
+ },
+ {
+ "id": 13382,
+ "start": 6612.68,
+ "end": 6612.82,
+ "text": "of"
+ },
+ {
+ "id": 13383,
+ "start": 6612.82,
+ "end": 6613.24,
+ "text": "parents"
+ },
+ {
+ "id": 13384,
+ "start": 6613.24,
+ "end": 6614.16,
+ "text": "that"
+ },
+ {
+ "id": 13385,
+ "start": 6614.16,
+ "end": 6615.24,
+ "text": "they"
+ },
+ {
+ "id": 13386,
+ "start": 6615.24,
+ "end": 6615.42,
+ "text": "want"
+ },
+ {
+ "id": 13387,
+ "start": 6615.42,
+ "end": 6615.52,
+ "text": "to"
+ },
+ {
+ "id": 13388,
+ "start": 6615.52,
+ "end": 6615.64,
+ "text": "be"
+ },
+ {
+ "id": 13389,
+ "start": 6615.64,
+ "end": 6615.82,
+ "text": "able"
+ },
+ {
+ "id": 13390,
+ "start": 6615.82,
+ "end": 6615.92,
+ "text": "to"
+ },
+ {
+ "id": 13391,
+ "start": 6615.92,
+ "end": 6616.14,
+ "text": "stay"
+ },
+ {
+ "id": 13392,
+ "start": 6616.14,
+ "end": 6616.24,
+ "text": "in"
+ },
+ {
+ "id": 13393,
+ "start": 6616.24,
+ "end": 6616.46,
+ "text": "touch"
+ },
+ {
+ "id": 13394,
+ "start": 6616.46,
+ "end": 6616.62,
+ "text": "with"
+ },
+ {
+ "id": 13395,
+ "start": 6616.62,
+ "end": 6616.8,
+ "text": "their"
+ },
+ {
+ "id": 13396,
+ "start": 6616.8,
+ "end": 6617.04,
+ "text": "kids"
+ },
+ {
+ "id": 13397,
+ "start": 6617.04,
+ "end": 6617.22,
+ "text": "and"
+ },
+ {
+ "id": 13398,
+ "start": 6617.22,
+ "end": 6617.46,
+ "text": "call"
+ },
+ {
+ "id": 13399,
+ "start": 6617.46,
+ "end": 6617.7,
+ "text": "them"
+ },
+ {
+ "id": 13400,
+ "start": 6617.7,
+ "end": 6617.98,
+ "text": "use"
+ },
+ {
+ "id": 13401,
+ "start": 6617.98,
+ "end": 6618.24,
+ "text": "apps"
+ },
+ {
+ "id": 13402,
+ "start": 6618.24,
+ "end": 6618.44,
+ "text": "like"
+ },
+ {
+ "id": 13403,
+ "start": 6618.44,
+ "end": 6619.1,
+ "text": "FaceTime"
+ },
+ {
+ "id": 13404,
+ "start": 6619.1,
+ "end": 6619.78,
+ "text": "when"
+ },
+ {
+ "id": 13405,
+ "start": 6619.78,
+ "end": 6620.03,
+ "text": "they're"
+ },
+ {
+ "id": 13406,
+ "start": 6620.03,
+ "end": 6620.33,
+ "text": "working"
+ },
+ {
+ "id": 13407,
+ "start": 6620.33,
+ "end": 6620.61,
+ "text": "late"
+ },
+ {
+ "id": 13408,
+ "start": 6620.61,
+ "end": 6620.81,
+ "text": "or"
+ },
+ {
+ "id": 13409,
+ "start": 6620.81,
+ "end": 6621.01,
+ "text": "not"
+ },
+ {
+ "id": 13410,
+ "start": 6621.01,
+ "end": 6621.33,
+ "text": "around"
+ },
+ {
+ "id": 13411,
+ "start": 6621.33,
+ "end": 6621.49,
+ "text": "and"
+ },
+ {
+ "id": 13412,
+ "start": 6621.49,
+ "end": 6621.65,
+ "text": "want"
+ },
+ {
+ "id": 13413,
+ "start": 6621.65,
+ "end": 6621.73,
+ "text": "to"
+ },
+ {
+ "id": 13414,
+ "start": 6621.73,
+ "end": 6622.09,
+ "text": "communicate"
+ },
+ {
+ "id": 13415,
+ "start": 6622.09,
+ "end": 6622.21,
+ "text": "with"
+ },
+ {
+ "id": 13416,
+ "start": 6622.21,
+ "end": 6622.35,
+ "text": "their"
+ },
+ {
+ "id": 13417,
+ "start": 6622.35,
+ "end": 6622.47,
+ "text": "kids."
+ },
+ {
+ "id": 13418,
+ "start": 6622.47,
+ "end": 6622.59,
+ "text": "But"
+ },
+ {
+ "id": 13419,
+ "start": 6622.59,
+ "end": 6622.71,
+ "text": "they"
+ },
+ {
+ "id": 13420,
+ "start": 6622.71,
+ "end": 6622.85,
+ "text": "want"
+ },
+ {
+ "id": 13421,
+ "start": 6622.85,
+ "end": 6622.91,
+ "text": "to"
+ },
+ {
+ "id": 13422,
+ "start": 6622.91,
+ "end": 6623.03,
+ "text": "have"
+ },
+ {
+ "id": 13423,
+ "start": 6623.03,
+ "end": 6623.35,
+ "text": "complete"
+ },
+ {
+ "id": 13424,
+ "start": 6623.35,
+ "end": 6623.65,
+ "text": "control"
+ },
+ {
+ "id": 13425,
+ "start": 6623.65,
+ "end": 6623.85,
+ "text": "over"
+ },
+ {
+ "id": 13426,
+ "start": 6623.85,
+ "end": 6624.01,
+ "text": "that"
+ },
+ {
+ "id": 13427,
+ "start": 6624.01,
+ "end": 6624.21,
+ "text": "so"
+ },
+ {
+ "id": 13428,
+ "start": 6624.21,
+ "end": 6624.27,
+ "text": "I"
+ },
+ {
+ "id": 13429,
+ "start": 6624.27,
+ "end": 6624.43,
+ "text": "think"
+ },
+ {
+ "id": 13430,
+ "start": 6624.43,
+ "end": 6624.51,
+ "text": "we"
+ },
+ {
+ "id": 13431,
+ "start": 6624.51,
+ "end": 6624.65,
+ "text": "can"
+ },
+ {
+ "id": 13432,
+ "start": 6624.65,
+ "end": 6624.79,
+ "text": "all"
+ },
+ {
+ "id": 13433,
+ "start": 6624.79,
+ "end": 6625.11,
+ "text": "agree"
+ },
+ {
+ "id": 13434,
+ "start": 6625.11,
+ "end": 6625.81,
+ "text": "that"
+ },
+ {
+ "id": 13435,
+ "start": 6625.81,
+ "end": 6626.29,
+ "text": "when"
+ },
+ {
+ "id": 13436,
+ "start": 6626.29,
+ "end": 6626.45,
+ "text": "your"
+ },
+ {
+ "id": 13437,
+ "start": 6626.45,
+ "end": 6626.61,
+ "text": "kid"
+ },
+ {
+ "id": 13438,
+ "start": 6626.61,
+ "end": 6626.77,
+ "text": "is"
+ },
+ {
+ "id": 13439,
+ "start": 6626.77,
+ "end": 6627.01,
+ "text": "six"
+ },
+ {
+ "id": 13440,
+ "start": 6627.01,
+ "end": 6627.19,
+ "text": "or"
+ },
+ {
+ "id": 13441,
+ "start": 6627.19,
+ "end": 6627.47,
+ "text": "7"
+ },
+ {
+ "id": 13442,
+ "start": 6627.47,
+ "end": 6627.71,
+ "text": "even"
+ },
+ {
+ "id": 13443,
+ "start": 6627.71,
+ "end": 6627.81,
+ "text": "if"
+ },
+ {
+ "id": 13444,
+ "start": 6627.81,
+ "end": 6628.01,
+ "text": "they"
+ },
+ {
+ "id": 13445,
+ "start": 6628.01,
+ "end": 6628.49,
+ "text": "have"
+ },
+ {
+ "id": 13446,
+ "start": 6628.49,
+ "end": 6628.85,
+ "text": "access"
+ },
+ {
+ "id": 13447,
+ "start": 6628.85,
+ "end": 6628.97,
+ "text": "to"
+ },
+ {
+ "id": 13448,
+ "start": 6628.97,
+ "end": 6629.05,
+ "text": "a"
+ },
+ {
+ "id": 13449,
+ "start": 6629.05,
+ "end": 6629.29,
+ "text": "phone,"
+ },
+ {
+ "id": 13450,
+ "start": 6629.29,
+ "end": 6629.41,
+ "text": "you"
+ },
+ {
+ "id": 13451,
+ "start": 6629.41,
+ "end": 6629.53,
+ "text": "want"
+ },
+ {
+ "id": 13452,
+ "start": 6629.53,
+ "end": 6629.61,
+ "text": "to"
+ },
+ {
+ "id": 13453,
+ "start": 6629.61,
+ "end": 6629.67,
+ "text": "be"
+ },
+ {
+ "id": 13454,
+ "start": 6629.67,
+ "end": 6629.79,
+ "text": "able"
+ },
+ {
+ "id": 13455,
+ "start": 6629.79,
+ "end": 6629.87,
+ "text": "to"
+ },
+ {
+ "id": 13456,
+ "start": 6629.87,
+ "end": 6630.17,
+ "text": "control"
+ },
+ {
+ "id": 13457,
+ "start": 6630.17,
+ "end": 6630.57,
+ "text": "everyone"
+ },
+ {
+ "id": 13458,
+ "start": 6630.57,
+ "end": 6630.73,
+ "text": "who"
+ },
+ {
+ "id": 13459,
+ "start": 6630.73,
+ "end": 6630.91,
+ "text": "they"
+ },
+ {
+ "id": 13460,
+ "start": 6630.91,
+ "end": 6631.07,
+ "text": "can"
+ },
+ {
+ "id": 13461,
+ "start": 6631.07,
+ "end": 6631.53,
+ "text": "contact"
+ },
+ {
+ "id": 13462,
+ "start": 6631.53,
+ "end": 6632.01,
+ "text": "and"
+ },
+ {
+ "id": 13463,
+ "start": 6632.01,
+ "end": 6632.17,
+ "text": "there"
+ },
+ {
+ "id": 13464,
+ "start": 6632.17,
+ "end": 6632.43,
+ "text": "wasn't"
+ },
+ {
+ "id": 13465,
+ "start": 6632.43,
+ "end": 6632.51,
+ "text": "an"
+ },
+ {
+ "id": 13466,
+ "start": 6632.51,
+ "end": 6632.75,
+ "text": "app"
+ },
+ {
+ "id": 13467,
+ "start": 6632.75,
+ "end": 6632.95,
+ "text": "out"
+ },
+ {
+ "id": 13468,
+ "start": 6632.95,
+ "end": 6633.13,
+ "text": "there"
+ },
+ {
+ "id": 13469,
+ "start": 6633.13,
+ "end": 6633.31,
+ "text": "that"
+ },
+ {
+ "id": 13470,
+ "start": 6633.31,
+ "end": 6633.51,
+ "text": "did"
+ },
+ {
+ "id": 13471,
+ "start": 6633.51,
+ "end": 6633.71,
+ "text": "that."
+ },
+ {
+ "id": 13472,
+ "start": 6633.71,
+ "end": 6634.27,
+ "text": "So"
+ },
+ {
+ "id": 13473,
+ "start": 6634.27,
+ "end": 6634.43,
+ "text": "we"
+ },
+ {
+ "id": 13474,
+ "start": 6634.43,
+ "end": 6634.65,
+ "text": "built"
+ },
+ {
+ "id": 13475,
+ "start": 6634.65,
+ "end": 6634.83,
+ "text": "this"
+ },
+ {
+ "id": 13476,
+ "start": 6634.83,
+ "end": 6635.21,
+ "text": "service"
+ },
+ {
+ "id": 13477,
+ "start": 6635.21,
+ "end": 6635.31,
+ "text": "to"
+ },
+ {
+ "id": 13478,
+ "start": 6635.31,
+ "end": 6635.45,
+ "text": "do"
+ },
+ {
+ "id": 13479,
+ "start": 6635.45,
+ "end": 6635.92,
+ "text": "that."
+ },
+ {
+ "id": 13480,
+ "start": 6635.92,
+ "end": 6636.36,
+ "text": "The"
+ },
+ {
+ "id": 13481,
+ "start": 6636.36,
+ "end": 6636.62,
+ "text": "app"
+ },
+ {
+ "id": 13482,
+ "start": 6636.62,
+ "end": 6637.5,
+ "text": "collects"
+ },
+ {
+ "id": 13483,
+ "start": 6637.5,
+ "end": 6637.6,
+ "text": "a"
+ },
+ {
+ "id": 13484,
+ "start": 6637.6,
+ "end": 6638,
+ "text": "minimum"
+ },
+ {
+ "id": 13485,
+ "start": 6638,
+ "end": 6638.3,
+ "text": "amount"
+ },
+ {
+ "id": 13486,
+ "start": 6638.3,
+ "end": 6638.4,
+ "text": "of"
+ },
+ {
+ "id": 13487,
+ "start": 6638.4,
+ "end": 6638.96,
+ "text": "information"
+ },
+ {
+ "id": 13488,
+ "start": 6638.96,
+ "end": 6639.7,
+ "text": "that"
+ },
+ {
+ "id": 13489,
+ "start": 6639.7,
+ "end": 6639.84,
+ "text": "is"
+ },
+ {
+ "id": 13490,
+ "start": 6639.84,
+ "end": 6640.36,
+ "text": "necessary"
+ },
+ {
+ "id": 13491,
+ "start": 6640.36,
+ "end": 6640.56,
+ "text": "to"
+ },
+ {
+ "id": 13492,
+ "start": 6640.56,
+ "end": 6641.24,
+ "text": "operate"
+ },
+ {
+ "id": 13493,
+ "start": 6641.24,
+ "end": 6641.38,
+ "text": "the"
+ },
+ {
+ "id": 13494,
+ "start": 6641.38,
+ "end": 6641.7,
+ "text": "service."
+ },
+ {
+ "id": 13495,
+ "start": 6641.7,
+ "end": 6642.06,
+ "text": "So,"
+ },
+ {
+ "id": 13496,
+ "start": 6642.06,
+ "end": 6642.24,
+ "text": "for"
+ },
+ {
+ "id": 13497,
+ "start": 6642.24,
+ "end": 6642.56,
+ "text": "example,"
+ },
+ {
+ "id": 13498,
+ "start": 6642.56,
+ "end": 6642.72,
+ "text": "the"
+ },
+ {
+ "id": 13499,
+ "start": 6642.72,
+ "end": 6643.14,
+ "text": "messages"
+ },
+ {
+ "id": 13500,
+ "start": 6643.14,
+ "end": 6643.3,
+ "text": "that"
+ },
+ {
+ "id": 13501,
+ "start": 6643.3,
+ "end": 6643.52,
+ "text": "people"
+ },
+ {
+ "id": 13502,
+ "start": 6643.52,
+ "end": 6643.86,
+ "text": "send"
+ },
+ {
+ "id": 13503,
+ "start": 6643.86,
+ "end": 6644.44,
+ "text": "is"
+ },
+ {
+ "id": 13504,
+ "start": 6644.44,
+ "end": 6644.72,
+ "text": "something"
+ },
+ {
+ "id": 13505,
+ "start": 6644.72,
+ "end": 6644.84,
+ "text": "that"
+ },
+ {
+ "id": 13506,
+ "start": 6644.84,
+ "end": 6644.96,
+ "text": "we"
+ },
+ {
+ "id": 13507,
+ "start": 6644.96,
+ "end": 6645.22,
+ "text": "collect"
+ },
+ {
+ "id": 13508,
+ "start": 6645.22,
+ "end": 6645.34,
+ "text": "in"
+ },
+ {
+ "id": 13509,
+ "start": 6645.34,
+ "end": 6645.52,
+ "text": "order"
+ },
+ {
+ "id": 13510,
+ "start": 6645.52,
+ "end": 6645.6,
+ "text": "to"
+ },
+ {
+ "id": 13511,
+ "start": 6645.6,
+ "end": 6645.88,
+ "text": "operate."
+ },
+ {
+ "id": 13512,
+ "start": 6645.88,
+ "end": 6646,
+ "text": "The"
+ },
+ {
+ "id": 13513,
+ "start": 6646,
+ "end": 6646.36,
+ "text": "service"
+ },
+ {
+ "id": 13514,
+ "start": 6646.36,
+ "end": 6647.43,
+ "text": "but"
+ },
+ {
+ "id": 13515,
+ "start": 6647.43,
+ "end": 6647.95,
+ "text": "in"
+ },
+ {
+ "id": 13516,
+ "start": 6647.95,
+ "end": 6648.31,
+ "text": "general,"
+ },
+ {
+ "id": 13517,
+ "start": 6648.31,
+ "end": 6648.59,
+ "text": "that"
+ },
+ {
+ "id": 13518,
+ "start": 6648.59,
+ "end": 6648.85,
+ "text": "data"
+ },
+ {
+ "id": 13519,
+ "start": 6648.85,
+ "end": 6649.09,
+ "text": "is"
+ },
+ {
+ "id": 13520,
+ "start": 6649.09,
+ "end": 6649.41,
+ "text": "not"
+ },
+ {
+ "id": 13521,
+ "start": 6649.41,
+ "end": 6649.71,
+ "text": "going"
+ },
+ {
+ "id": 13522,
+ "start": 6649.71,
+ "end": 6649.79,
+ "text": "to"
+ },
+ {
+ "id": 13523,
+ "start": 6649.79,
+ "end": 6649.87,
+ "text": "be"
+ },
+ {
+ "id": 13524,
+ "start": 6649.87,
+ "end": 6650.09,
+ "text": "shared"
+ },
+ {
+ "id": 13525,
+ "start": 6650.09,
+ "end": 6650.23,
+ "text": "with"
+ },
+ {
+ "id": 13526,
+ "start": 6650.23,
+ "end": 6650.45,
+ "text": "third"
+ },
+ {
+ "id": 13527,
+ "start": 6650.45,
+ "end": 6650.81,
+ "text": "parties."
+ },
+ {
+ "id": 13528,
+ "start": 6650.81,
+ "end": 6651.49,
+ "text": "It"
+ },
+ {
+ "id": 13529,
+ "start": 6651.49,
+ "end": 6651.61,
+ "text": "is"
+ },
+ {
+ "id": 13530,
+ "start": 6651.61,
+ "end": 6651.87,
+ "text": "not"
+ },
+ {
+ "id": 13531,
+ "start": 6651.87,
+ "end": 6652.35,
+ "text": "connected"
+ },
+ {
+ "id": 13532,
+ "start": 6652.35,
+ "end": 6652.55,
+ "text": "to"
+ },
+ {
+ "id": 13533,
+ "start": 6652.55,
+ "end": 6653.39,
+ "text": "the"
+ },
+ {
+ "id": 13534,
+ "start": 6653.39,
+ "end": 6653.65,
+ "text": "broader"
+ },
+ {
+ "id": 13535,
+ "start": 6653.65,
+ "end": 6654.07,
+ "text": "Facebook."
+ },
+ {
+ "id": 13536,
+ "start": 6654.07,
+ "end": 6654.39,
+ "text": "Excuse"
+ },
+ {
+ "id": 13537,
+ "start": 6654.39,
+ "end": 6654.49,
+ "text": "me"
+ },
+ {
+ "id": 13538,
+ "start": 6654.49,
+ "end": 6655.23,
+ "text": "as"
+ },
+ {
+ "id": 13539,
+ "start": 6655.23,
+ "end": 6655.31,
+ "text": "a"
+ },
+ {
+ "id": 13540,
+ "start": 6655.31,
+ "end": 6655.67,
+ "text": "lawyer,"
+ },
+ {
+ "id": 13541,
+ "start": 6655.67,
+ "end": 6655.83,
+ "text": "I"
+ },
+ {
+ "id": 13542,
+ "start": 6655.83,
+ "end": 6656.05,
+ "text": "picked"
+ },
+ {
+ "id": 13543,
+ "start": 6656.05,
+ "end": 6656.15,
+ "text": "up"
+ },
+ {
+ "id": 13544,
+ "start": 6656.15,
+ "end": 6656.29,
+ "text": "on"
+ },
+ {
+ "id": 13545,
+ "start": 6656.29,
+ "end": 6656.43,
+ "text": "the"
+ },
+ {
+ "id": 13546,
+ "start": 6656.43,
+ "end": 6656.65,
+ "text": "word"
+ },
+ {
+ "id": 13547,
+ "start": 6656.65,
+ "end": 6656.81,
+ "text": "in"
+ },
+ {
+ "id": 13548,
+ "start": 6656.81,
+ "end": 6657.29,
+ "text": "general,"
+ },
+ {
+ "id": 13549,
+ "start": 6657.29,
+ "end": 6657.61,
+ "text": "the"
+ },
+ {
+ "id": 13550,
+ "start": 6657.61,
+ "end": 6657.93,
+ "text": "phrase"
+ },
+ {
+ "id": 13551,
+ "start": 6657.93,
+ "end": 6658.13,
+ "text": "in"
+ },
+ {
+ "id": 13552,
+ "start": 6658.13,
+ "end": 6658.94,
+ "text": "general,"
+ },
+ {
+ "id": 13553,
+ "start": 6658.94,
+ "end": 6659.44,
+ "text": "it"
+ },
+ {
+ "id": 13554,
+ "start": 6659.44,
+ "end": 6659.8,
+ "text": "seems"
+ },
+ {
+ "id": 13555,
+ "start": 6659.8,
+ "end": 6659.92,
+ "text": "to"
+ },
+ {
+ "id": 13556,
+ "start": 6659.92,
+ "end": 6660.28,
+ "text": "suggest"
+ },
+ {
+ "id": 13557,
+ "start": 6660.28,
+ "end": 6660.46,
+ "text": "that"
+ },
+ {
+ "id": 13558,
+ "start": 6660.46,
+ "end": 6660.56,
+ "text": "in"
+ },
+ {
+ "id": 13559,
+ "start": 6660.56,
+ "end": 6660.78,
+ "text": "some"
+ },
+ {
+ "id": 13560,
+ "start": 6660.78,
+ "end": 6661.48,
+ "text": "circumstances,"
+ },
+ {
+ "id": 13561,
+ "start": 6661.48,
+ "end": 6661.62,
+ "text": "it"
+ },
+ {
+ "id": 13562,
+ "start": 6661.62,
+ "end": 6661.94,
+ "text": "will"
+ },
+ {
+ "id": 13563,
+ "start": 6661.94,
+ "end": 6662.08,
+ "text": "be"
+ },
+ {
+ "id": 13564,
+ "start": 6662.08,
+ "end": 6662.4,
+ "text": "shared"
+ },
+ {
+ "id": 13565,
+ "start": 6662.4,
+ "end": 6662.56,
+ "text": "with"
+ },
+ {
+ "id": 13566,
+ "start": 6662.56,
+ "end": 6662.82,
+ "text": "third"
+ },
+ {
+ "id": 13567,
+ "start": 6662.82,
+ "end": 6663.14,
+ "text": "parties."
+ },
+ {
+ "id": 13568,
+ "start": 6663.14,
+ "end": 6663.48,
+ "text": "No,"
+ },
+ {
+ "id": 13569,
+ "start": 6663.48,
+ "end": 6664.3,
+ "text": "it"
+ },
+ {
+ "id": 13570,
+ "start": 6664.3,
+ "end": 6664.48,
+ "text": "will"
+ },
+ {
+ "id": 13571,
+ "start": 6664.48,
+ "end": 6664.68,
+ "text": "not"
+ },
+ {
+ "id": 13572,
+ "start": 6664.68,
+ "end": 6666.02,
+ "text": "alright,"
+ },
+ {
+ "id": 13573,
+ "start": 6666.02,
+ "end": 6667.08,
+ "text": "would"
+ },
+ {
+ "id": 13574,
+ "start": 6667.08,
+ "end": 6667.22,
+ "text": "you"
+ },
+ {
+ "id": 13575,
+ "start": 6667.22,
+ "end": 6667.34,
+ "text": "be"
+ },
+ {
+ "id": 13576,
+ "start": 6667.34,
+ "end": 6667.76,
+ "text": "open"
+ },
+ {
+ "id": 13577,
+ "start": 6667.76,
+ "end": 6667.9,
+ "text": "to"
+ },
+ {
+ "id": 13578,
+ "start": 6667.9,
+ "end": 6668.02,
+ "text": "the"
+ },
+ {
+ "id": 13579,
+ "start": 6668.02,
+ "end": 6668.38,
+ "text": "idea"
+ },
+ {
+ "id": 13580,
+ "start": 6668.38,
+ "end": 6668.7,
+ "text": "that"
+ },
+ {
+ "id": 13581,
+ "start": 6668.7,
+ "end": 6669.22,
+ "text": "someone"
+ },
+ {
+ "id": 13582,
+ "start": 6669.22,
+ "end": 6669.54,
+ "text": "having"
+ },
+ {
+ "id": 13583,
+ "start": 6669.54,
+ "end": 6669.8,
+ "text": "reached"
+ },
+ {
+ "id": 13584,
+ "start": 6669.8,
+ "end": 6669.98,
+ "text": "at"
+ },
+ {
+ "id": 13585,
+ "start": 6669.98,
+ "end": 6670.2,
+ "text": "old"
+ },
+ {
+ "id": 13586,
+ "start": 6670.2,
+ "end": 6670.58,
+ "text": "age"
+ },
+ {
+ "id": 13587,
+ "start": 6670.58,
+ "end": 6670.88,
+ "text": "having"
+ },
+ {
+ "id": 13588,
+ "start": 6670.88,
+ "end": 6671.14,
+ "text": "grown"
+ },
+ {
+ "id": 13589,
+ "start": 6671.14,
+ "end": 6671.26,
+ "text": "up"
+ },
+ {
+ "id": 13590,
+ "start": 6671.26,
+ "end": 6671.42,
+ "text": "with"
+ },
+ {
+ "id": 13591,
+ "start": 6671.42,
+ "end": 6671.96,
+ "text": "Messenger?"
+ },
+ {
+ "id": 13592,
+ "start": 6671.96,
+ "end": 6672.26,
+ "text": "Kids"
+ },
+ {
+ "id": 13593,
+ "start": 6672.26,
+ "end": 6672.92,
+ "text": "should"
+ },
+ {
+ "id": 13594,
+ "start": 6672.92,
+ "end": 6673.02,
+ "text": "be"
+ },
+ {
+ "id": 13595,
+ "start": 6673.02,
+ "end": 6673.34,
+ "text": "allowed"
+ },
+ {
+ "id": 13596,
+ "start": 6673.34,
+ "end": 6673.68,
+ "text": "to"
+ },
+ {
+ "id": 13597,
+ "start": 6673.68,
+ "end": 6674.22,
+ "text": "delete"
+ },
+ {
+ "id": 13598,
+ "start": 6674.22,
+ "end": 6674.38,
+ "text": "the"
+ },
+ {
+ "id": 13599,
+ "start": 6674.38,
+ "end": 6674.66,
+ "text": "data"
+ },
+ {
+ "id": 13600,
+ "start": 6674.66,
+ "end": 6674.82,
+ "text": "that"
+ },
+ {
+ "id": 13601,
+ "start": 6674.82,
+ "end": 6675.06,
+ "text": "you've"
+ },
+ {
+ "id": 13602,
+ "start": 6675.06,
+ "end": 6677.5,
+ "text": "collected,"
+ },
+ {
+ "id": 13603,
+ "start": 6677.5,
+ "end": 6678.46,
+ "text": "Senator."
+ },
+ {
+ "id": 13604,
+ "start": 6678.46,
+ "end": 6678.76,
+ "text": "Yes,"
+ },
+ {
+ "id": 13605,
+ "start": 6678.76,
+ "end": 6679.24,
+ "text": "as"
+ },
+ {
+ "id": 13606,
+ "start": 6679.24,
+ "end": 6679.3,
+ "text": "a"
+ },
+ {
+ "id": 13607,
+ "start": 6679.3,
+ "end": 6679.54,
+ "text": "matter"
+ },
+ {
+ "id": 13608,
+ "start": 6679.54,
+ "end": 6679.62,
+ "text": "of"
+ },
+ {
+ "id": 13609,
+ "start": 6679.62,
+ "end": 6679.88,
+ "text": "fact,"
+ },
+ {
+ "id": 13610,
+ "start": 6679.88,
+ "end": 6680.68,
+ "text": "when"
+ },
+ {
+ "id": 13611,
+ "start": 6680.68,
+ "end": 6680.8,
+ "text": "you"
+ },
+ {
+ "id": 13612,
+ "start": 6680.8,
+ "end": 6681.26,
+ "text": "become"
+ },
+ {
+ "id": 13613,
+ "start": 6681.26,
+ "end": 6682.12,
+ "text": "13"
+ },
+ {
+ "id": 13614,
+ "start": 6682.12,
+ "end": 6682.38,
+ "text": "which"
+ },
+ {
+ "id": 13615,
+ "start": 6682.38,
+ "end": 6682.5,
+ "text": "is"
+ },
+ {
+ "id": 13616,
+ "start": 6682.5,
+ "end": 6682.74,
+ "text": "our"
+ },
+ {
+ "id": 13617,
+ "start": 6682.74,
+ "end": 6683.14,
+ "text": "legal"
+ },
+ {
+ "id": 13618,
+ "start": 6683.14,
+ "end": 6683.42,
+ "text": "limit"
+ },
+ {
+ "id": 13619,
+ "start": 6683.42,
+ "end": 6683.68,
+ "text": "or"
+ },
+ {
+ "id": 13620,
+ "start": 6683.68,
+ "end": 6684.04,
+ "text": "limited."
+ },
+ {
+ "id": 13621,
+ "start": 6684.04,
+ "end": 6684.38,
+ "text": "We"
+ },
+ {
+ "id": 13622,
+ "start": 6684.38,
+ "end": 6684.54,
+ "text": "don't"
+ },
+ {
+ "id": 13623,
+ "start": 6684.54,
+ "end": 6684.72,
+ "text": "allow"
+ },
+ {
+ "id": 13624,
+ "start": 6684.72,
+ "end": 6684.92,
+ "text": "people"
+ },
+ {
+ "id": 13625,
+ "start": 6684.92,
+ "end": 6685.12,
+ "text": "under"
+ },
+ {
+ "id": 13626,
+ "start": 6685.12,
+ "end": 6685.24,
+ "text": "the"
+ },
+ {
+ "id": 13627,
+ "start": 6685.24,
+ "end": 6685.34,
+ "text": "age"
+ },
+ {
+ "id": 13628,
+ "start": 6685.34,
+ "end": 6685.42,
+ "text": "of"
+ },
+ {
+ "id": 13629,
+ "start": 6685.42,
+ "end": 6685.74,
+ "text": "13"
+ },
+ {
+ "id": 13630,
+ "start": 6685.74,
+ "end": 6685.84,
+ "text": "to"
+ },
+ {
+ "id": 13631,
+ "start": 6685.84,
+ "end": 6686,
+ "text": "use"
+ },
+ {
+ "id": 13632,
+ "start": 6686,
+ "end": 6687.28,
+ "text": "Facebook,"
+ },
+ {
+ "id": 13633,
+ "start": 6687.28,
+ "end": 6688.24,
+ "text": "you"
+ },
+ {
+ "id": 13634,
+ "start": 6688.24,
+ "end": 6688.56,
+ "text": "don't"
+ },
+ {
+ "id": 13635,
+ "start": 6688.56,
+ "end": 6689.2,
+ "text": "automatically"
+ },
+ {
+ "id": 13636,
+ "start": 6689.2,
+ "end": 6689.32,
+ "text": "go"
+ },
+ {
+ "id": 13637,
+ "start": 6689.32,
+ "end": 6689.56,
+ "text": "from"
+ },
+ {
+ "id": 13638,
+ "start": 6689.56,
+ "end": 6689.82,
+ "text": "having"
+ },
+ {
+ "id": 13639,
+ "start": 6689.82,
+ "end": 6689.86,
+ "text": "a"
+ },
+ {
+ "id": 13640,
+ "start": 6689.86,
+ "end": 6690.26,
+ "text": "Messenger."
+ },
+ {
+ "id": 13641,
+ "start": 6690.26,
+ "end": 6690.5,
+ "text": "Kids"
+ },
+ {
+ "id": 13642,
+ "start": 6690.5,
+ "end": 6691.26,
+ "text": "account"
+ },
+ {
+ "id": 13643,
+ "start": 6691.26,
+ "end": 6691.44,
+ "text": "to"
+ },
+ {
+ "id": 13644,
+ "start": 6691.44,
+ "end": 6691.5,
+ "text": "a"
+ },
+ {
+ "id": 13645,
+ "start": 6691.5,
+ "end": 6691.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 13646,
+ "start": 6691.9,
+ "end": 6692.18,
+ "text": "account."
+ },
+ {
+ "id": 13647,
+ "start": 6692.18,
+ "end": 6692.32,
+ "text": "You"
+ },
+ {
+ "id": 13648,
+ "start": 6692.32,
+ "end": 6692.46,
+ "text": "have"
+ },
+ {
+ "id": 13649,
+ "start": 6692.46,
+ "end": 6692.54,
+ "text": "to"
+ },
+ {
+ "id": 13650,
+ "start": 6692.54,
+ "end": 6692.78,
+ "text": "start"
+ },
+ {
+ "id": 13651,
+ "start": 6692.78,
+ "end": 6693.06,
+ "text": "over"
+ },
+ {
+ "id": 13652,
+ "start": 6693.06,
+ "end": 6693.26,
+ "text": "and"
+ },
+ {
+ "id": 13653,
+ "start": 6693.26,
+ "end": 6693.4,
+ "text": "get"
+ },
+ {
+ "id": 13654,
+ "start": 6693.4,
+ "end": 6693.46,
+ "text": "a"
+ },
+ {
+ "id": 13655,
+ "start": 6693.46,
+ "end": 6693.84,
+ "text": "Facebook"
+ },
+ {
+ "id": 13656,
+ "start": 6693.84,
+ "end": 6694.14,
+ "text": "account."
+ },
+ {
+ "id": 13657,
+ "start": 6694.14,
+ "end": 6694.94,
+ "text": "So"
+ },
+ {
+ "id": 13658,
+ "start": 6694.94,
+ "end": 6695.84,
+ "text": "so"
+ },
+ {
+ "id": 13659,
+ "start": 6695.84,
+ "end": 6695.88,
+ "text": "I"
+ },
+ {
+ "id": 13660,
+ "start": 6695.88,
+ "end": 6696.02,
+ "text": "think"
+ },
+ {
+ "id": 13661,
+ "start": 6696.02,
+ "end": 6696.16,
+ "text": "it's"
+ },
+ {
+ "id": 13662,
+ "start": 6696.16,
+ "end": 6696.48,
+ "text": "a"
+ },
+ {
+ "id": 13663,
+ "start": 6696.48,
+ "end": 6696.62,
+ "text": "good"
+ },
+ {
+ "id": 13664,
+ "start": 6696.62,
+ "end": 6696.8,
+ "text": "idea"
+ },
+ {
+ "id": 13665,
+ "start": 6696.8,
+ "end": 6697.02,
+ "text": "to"
+ },
+ {
+ "id": 13666,
+ "start": 6697.02,
+ "end": 6697.36,
+ "text": "consider"
+ },
+ {
+ "id": 13667,
+ "start": 6697.36,
+ "end": 6697.68,
+ "text": "making"
+ },
+ {
+ "id": 13668,
+ "start": 6697.68,
+ "end": 6697.86,
+ "text": "sure"
+ },
+ {
+ "id": 13669,
+ "start": 6697.86,
+ "end": 6698,
+ "text": "that"
+ },
+ {
+ "id": 13670,
+ "start": 6698,
+ "end": 6698.12,
+ "text": "all"
+ },
+ {
+ "id": 13671,
+ "start": 6698.12,
+ "end": 6698.3,
+ "text": "that"
+ },
+ {
+ "id": 13672,
+ "start": 6698.3,
+ "end": 6698.72,
+ "text": "information"
+ },
+ {
+ "id": 13673,
+ "start": 6698.72,
+ "end": 6698.9,
+ "text": "is"
+ },
+ {
+ "id": 13674,
+ "start": 6698.9,
+ "end": 6699.22,
+ "text": "deleted."
+ },
+ {
+ "id": 13675,
+ "start": 6699.22,
+ "end": 6699.36,
+ "text": "And"
+ },
+ {
+ "id": 13676,
+ "start": 6699.36,
+ "end": 6699.5,
+ "text": "in"
+ },
+ {
+ "id": 13677,
+ "start": 6699.5,
+ "end": 6699.86,
+ "text": "general,"
+ },
+ {
+ "id": 13678,
+ "start": 6699.86,
+ "end": 6700.06,
+ "text": "people"
+ },
+ {
+ "id": 13679,
+ "start": 6700.06,
+ "end": 6700.18,
+ "text": "are"
+ },
+ {
+ "id": 13680,
+ "start": 6700.18,
+ "end": 6700.32,
+ "text": "going"
+ },
+ {
+ "id": 13681,
+ "start": 6700.32,
+ "end": 6700.38,
+ "text": "to"
+ },
+ {
+ "id": 13682,
+ "start": 6700.38,
+ "end": 6700.44,
+ "text": "be"
+ },
+ {
+ "id": 13683,
+ "start": 6700.44,
+ "end": 6700.72,
+ "text": "starting"
+ },
+ {
+ "id": 13684,
+ "start": 6700.72,
+ "end": 6700.94,
+ "text": "over"
+ },
+ {
+ "id": 13685,
+ "start": 6700.94,
+ "end": 6701.1,
+ "text": "when"
+ },
+ {
+ "id": 13686,
+ "start": 6701.1,
+ "end": 6701.24,
+ "text": "they"
+ },
+ {
+ "id": 13687,
+ "start": 6701.24,
+ "end": 6701.36,
+ "text": "get"
+ },
+ {
+ "id": 13688,
+ "start": 6701.36,
+ "end": 6701.6,
+ "text": "their"
+ },
+ {
+ "id": 13689,
+ "start": 6701.6,
+ "end": 6702.02,
+ "text": "their"
+ },
+ {
+ "id": 13690,
+ "start": 6702.02,
+ "end": 6702.4,
+ "text": "Facebook"
+ },
+ {
+ "id": 13691,
+ "start": 6702.4,
+ "end": 6702.48,
+ "text": "or"
+ },
+ {
+ "id": 13692,
+ "start": 6702.48,
+ "end": 6702.7,
+ "text": "other"
+ },
+ {
+ "id": 13693,
+ "start": 6702.7,
+ "end": 6703,
+ "text": "accounts."
+ },
+ {
+ "id": 13694,
+ "start": 6703,
+ "end": 6703.42,
+ "text": "A"
+ },
+ {
+ "id": 13695,
+ "start": 6703.42,
+ "end": 6703.82,
+ "text": "close"
+ },
+ {
+ "id": 13696,
+ "start": 6703.82,
+ "end": 6704.06,
+ "text": "because"
+ },
+ {
+ "id": 13697,
+ "start": 6704.06,
+ "end": 6704.22,
+ "text": "they"
+ },
+ {
+ "id": 13698,
+ "start": 6704.22,
+ "end": 6704.36,
+ "text": "just"
+ },
+ {
+ "id": 13699,
+ "start": 6704.36,
+ "end": 6704.54,
+ "text": "have"
+ },
+ {
+ "id": 13700,
+ "start": 6704.54,
+ "end": 6704.6,
+ "text": "a"
+ },
+ {
+ "id": 13701,
+ "start": 6704.6,
+ "end": 6704.8,
+ "text": "few"
+ },
+ {
+ "id": 13702,
+ "start": 6704.8,
+ "end": 6705.16,
+ "text": "seconds."
+ },
+ {
+ "id": 13703,
+ "start": 6705.16,
+ "end": 6705.62,
+ "text": "Illinois"
+ },
+ {
+ "id": 13704,
+ "start": 6705.62,
+ "end": 6705.78,
+ "text": "has"
+ },
+ {
+ "id": 13705,
+ "start": 6705.78,
+ "end": 6705.86,
+ "text": "a"
+ },
+ {
+ "id": 13706,
+ "start": 6705.86,
+ "end": 6706.84,
+ "text": "biometric"
+ },
+ {
+ "id": 13707,
+ "start": 6706.84,
+ "end": 6707.52,
+ "text": "information,"
+ },
+ {
+ "id": 13708,
+ "start": 6707.52,
+ "end": 6708.14,
+ "text": "Privacy"
+ },
+ {
+ "id": 13709,
+ "start": 6708.14,
+ "end": 6708.42,
+ "text": "Act."
+ },
+ {
+ "id": 13710,
+ "start": 6708.42,
+ "end": 6709.28,
+ "text": "Our"
+ },
+ {
+ "id": 13711,
+ "start": 6709.28,
+ "end": 6709.6,
+ "text": "state"
+ },
+ {
+ "id": 13712,
+ "start": 6709.6,
+ "end": 6710.24,
+ "text": "does,"
+ },
+ {
+ "id": 13713,
+ "start": 6710.24,
+ "end": 6710.8,
+ "text": "which"
+ },
+ {
+ "id": 13714,
+ "start": 6710.8,
+ "end": 6710.94,
+ "text": "is"
+ },
+ {
+ "id": 13715,
+ "start": 6710.94,
+ "end": 6711.3,
+ "text": "to"
+ },
+ {
+ "id": 13716,
+ "start": 6711.3,
+ "end": 6711.8,
+ "text": "regulate"
+ },
+ {
+ "id": 13717,
+ "start": 6711.8,
+ "end": 6712.48,
+ "text": "the"
+ },
+ {
+ "id": 13718,
+ "start": 6712.48,
+ "end": 6712.96,
+ "text": "commercial"
+ },
+ {
+ "id": 13719,
+ "start": 6712.96,
+ "end": 6713.18,
+ "text": "use"
+ },
+ {
+ "id": 13720,
+ "start": 6713.18,
+ "end": 6713.3,
+ "text": "of"
+ },
+ {
+ "id": 13721,
+ "start": 6713.3,
+ "end": 6713.8,
+ "text": "facial,"
+ },
+ {
+ "id": 13722,
+ "start": 6713.8,
+ "end": 6714.2,
+ "text": "voice"
+ },
+ {
+ "id": 13723,
+ "start": 6714.2,
+ "end": 6714.68,
+ "text": "finger"
+ },
+ {
+ "id": 13724,
+ "start": 6714.68,
+ "end": 6714.82,
+ "text": "and"
+ },
+ {
+ "id": 13725,
+ "start": 6714.82,
+ "end": 6715.22,
+ "text": "Iris"
+ },
+ {
+ "id": 13726,
+ "start": 6715.22,
+ "end": 6715.64,
+ "text": "scans"
+ },
+ {
+ "id": 13727,
+ "start": 6715.64,
+ "end": 6715.78,
+ "text": "and"
+ },
+ {
+ "id": 13728,
+ "start": 6715.78,
+ "end": 6715.9,
+ "text": "the"
+ },
+ {
+ "id": 13729,
+ "start": 6715.9,
+ "end": 6716.16,
+ "text": "like"
+ },
+ {
+ "id": 13730,
+ "start": 6716.16,
+ "end": 6717.04,
+ "text": "we're"
+ },
+ {
+ "id": 13731,
+ "start": 6717.04,
+ "end": 6717.22,
+ "text": "now"
+ },
+ {
+ "id": 13732,
+ "start": 6717.22,
+ "end": 6717.34,
+ "text": "in"
+ },
+ {
+ "id": 13733,
+ "start": 6717.34,
+ "end": 6717.4,
+ "text": "a"
+ },
+ {
+ "id": 13734,
+ "start": 6717.4,
+ "end": 6717.8,
+ "text": "fulsome"
+ },
+ {
+ "id": 13735,
+ "start": 6717.8,
+ "end": 6718.1,
+ "text": "debate"
+ },
+ {
+ "id": 13736,
+ "start": 6718.1,
+ "end": 6718.24,
+ "text": "on"
+ },
+ {
+ "id": 13737,
+ "start": 6718.24,
+ "end": 6718.48,
+ "text": "that"
+ },
+ {
+ "id": 13738,
+ "start": 6718.48,
+ "end": 6718.66,
+ "text": "and"
+ },
+ {
+ "id": 13739,
+ "start": 6718.66,
+ "end": 6718.8,
+ "text": "I'm"
+ },
+ {
+ "id": 13740,
+ "start": 6718.8,
+ "end": 6719.16,
+ "text": "afraid."
+ },
+ {
+ "id": 13741,
+ "start": 6719.16,
+ "end": 6720.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 13742,
+ "start": 6720.12,
+ "end": 6720.44,
+ "text": "is"
+ },
+ {
+ "id": 13743,
+ "start": 6720.44,
+ "end": 6720.8,
+ "text": "the"
+ },
+ {
+ "id": 13744,
+ "start": 6720.8,
+ "end": 6721.22,
+ "text": "position"
+ },
+ {
+ "id": 13745,
+ "start": 6721.22,
+ "end": 6721.5,
+ "text": "trying"
+ },
+ {
+ "id": 13746,
+ "start": 6721.5,
+ "end": 6721.6,
+ "text": "to"
+ },
+ {
+ "id": 13747,
+ "start": 6721.6,
+ "end": 6721.86,
+ "text": "carve"
+ },
+ {
+ "id": 13748,
+ "start": 6721.86,
+ "end": 6722.02,
+ "text": "out"
+ },
+ {
+ "id": 13749,
+ "start": 6722.02,
+ "end": 6722.64,
+ "text": "exceptions"
+ },
+ {
+ "id": 13750,
+ "start": 6722.64,
+ "end": 6722.82,
+ "text": "to"
+ },
+ {
+ "id": 13751,
+ "start": 6722.82,
+ "end": 6723.06,
+ "text": "that."
+ },
+ {
+ "id": 13752,
+ "start": 6723.06,
+ "end": 6723.64,
+ "text": "I"
+ },
+ {
+ "id": 13753,
+ "start": 6723.64,
+ "end": 6723.82,
+ "text": "hope"
+ },
+ {
+ "id": 13754,
+ "start": 6723.82,
+ "end": 6724.04,
+ "text": "you'll"
+ },
+ {
+ "id": 13755,
+ "start": 6724.04,
+ "end": 6724.28,
+ "text": "fill"
+ },
+ {
+ "id": 13756,
+ "start": 6724.28,
+ "end": 6724.38,
+ "text": "me"
+ },
+ {
+ "id": 13757,
+ "start": 6724.38,
+ "end": 6724.56,
+ "text": "in"
+ },
+ {
+ "id": 13758,
+ "start": 6724.56,
+ "end": 6724.74,
+ "text": "on"
+ },
+ {
+ "id": 13759,
+ "start": 6724.74,
+ "end": 6724.92,
+ "text": "how"
+ },
+ {
+ "id": 13760,
+ "start": 6724.92,
+ "end": 6725.08,
+ "text": "that"
+ },
+ {
+ "id": 13761,
+ "start": 6725.08,
+ "end": 6725.22,
+ "text": "is"
+ },
+ {
+ "id": 13762,
+ "start": 6725.22,
+ "end": 6725.76,
+ "text": "consistent"
+ },
+ {
+ "id": 13763,
+ "start": 6725.76,
+ "end": 6725.92,
+ "text": "with"
+ },
+ {
+ "id": 13764,
+ "start": 6725.92,
+ "end": 6726.44,
+ "text": "protecting"
+ },
+ {
+ "id": 13765,
+ "start": 6726.44,
+ "end": 6727.34,
+ "text": "privacy."
+ },
+ {
+ "id": 13766,
+ "start": 6727.34,
+ "end": 6728.3,
+ "text": "Thank"
+ },
+ {
+ "id": 13767,
+ "start": 6728.3,
+ "end": 6728.48,
+ "text": "you,"
+ },
+ {
+ "id": 13768,
+ "start": 6728.48,
+ "end": 6728.86,
+ "text": "thank"
+ },
+ {
+ "id": 13769,
+ "start": 6728.86,
+ "end": 6728.96,
+ "text": "you."
+ },
+ {
+ "id": 13770,
+ "start": 6728.96,
+ "end": 6729.2,
+ "text": "Senator"
+ },
+ {
+ "id": 13771,
+ "start": 6729.2,
+ "end": 6729.5,
+ "text": "Durbin"
+ },
+ {
+ "id": 13772,
+ "start": 6729.5,
+ "end": 6729.7,
+ "text": "center"
+ },
+ {
+ "id": 13773,
+ "start": 6729.7,
+ "end": 6730.64,
+ "text": "corny."
+ },
+ {
+ "id": 13774,
+ "start": 6730.64,
+ "end": 6731.44,
+ "text": "Thank"
+ },
+ {
+ "id": 13775,
+ "start": 6731.44,
+ "end": 6731.56,
+ "text": "you,"
+ },
+ {
+ "id": 13776,
+ "start": 6731.56,
+ "end": 6731.82,
+ "text": "Mr"
+ },
+ {
+ "id": 13777,
+ "start": 6731.82,
+ "end": 6732.3,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 13778,
+ "start": 6732.3,
+ "end": 6732.52,
+ "text": "for"
+ },
+ {
+ "id": 13779,
+ "start": 6732.52,
+ "end": 6732.76,
+ "text": "being"
+ },
+ {
+ "id": 13780,
+ "start": 6732.76,
+ "end": 6733.96,
+ "text": "here."
+ },
+ {
+ "id": 13781,
+ "start": 6733.96,
+ "end": 6734.92,
+ "text": "Up"
+ },
+ {
+ "id": 13782,
+ "start": 6734.92,
+ "end": 6735.22,
+ "text": "until"
+ },
+ {
+ "id": 13783,
+ "start": 6735.22,
+ "end": 6737.6,
+ "text": "2,014"
+ },
+ {
+ "id": 13784,
+ "start": 6737.6,
+ "end": 6738.72,
+ "text": "the"
+ },
+ {
+ "id": 13785,
+ "start": 6738.72,
+ "end": 6739.24,
+ "text": "mantra"
+ },
+ {
+ "id": 13786,
+ "start": 6739.24,
+ "end": 6739.42,
+ "text": "or"
+ },
+ {
+ "id": 13787,
+ "start": 6739.42,
+ "end": 6739.92,
+ "text": "motto."
+ },
+ {
+ "id": 13788,
+ "start": 6739.92,
+ "end": 6740.58,
+ "text": "A"
+ },
+ {
+ "id": 13789,
+ "start": 6740.58,
+ "end": 6741.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 13790,
+ "start": 6741.1,
+ "end": 6741.32,
+ "text": "was"
+ },
+ {
+ "id": 13791,
+ "start": 6741.32,
+ "end": 6741.7,
+ "text": "move"
+ },
+ {
+ "id": 13792,
+ "start": 6741.7,
+ "end": 6742.14,
+ "text": "fast"
+ },
+ {
+ "id": 13793,
+ "start": 6742.14,
+ "end": 6742.32,
+ "text": "and"
+ },
+ {
+ "id": 13794,
+ "start": 6742.32,
+ "end": 6742.64,
+ "text": "break"
+ },
+ {
+ "id": 13795,
+ "start": 6742.64,
+ "end": 6743,
+ "text": "things,"
+ },
+ {
+ "id": 13796,
+ "start": 6743,
+ "end": 6743.78,
+ "text": "is"
+ },
+ {
+ "id": 13797,
+ "start": 6743.78,
+ "end": 6743.96,
+ "text": "that"
+ },
+ {
+ "id": 13798,
+ "start": 6743.96,
+ "end": 6744.86,
+ "text": "correct?"
+ },
+ {
+ "id": 13799,
+ "start": 6744.86,
+ "end": 6744.9,
+ "text": "I"
+ },
+ {
+ "id": 13800,
+ "start": 6744.9,
+ "end": 6745.76,
+ "text": "don't"
+ },
+ {
+ "id": 13801,
+ "start": 6745.76,
+ "end": 6745.88,
+ "text": "know"
+ },
+ {
+ "id": 13802,
+ "start": 6745.88,
+ "end": 6746.02,
+ "text": "when"
+ },
+ {
+ "id": 13803,
+ "start": 6746.02,
+ "end": 6746.14,
+ "text": "we"
+ },
+ {
+ "id": 13804,
+ "start": 6746.14,
+ "end": 6746.5,
+ "text": "changed"
+ },
+ {
+ "id": 13805,
+ "start": 6746.5,
+ "end": 6746.66,
+ "text": "it,"
+ },
+ {
+ "id": 13806,
+ "start": 6746.66,
+ "end": 6747.46,
+ "text": "but"
+ },
+ {
+ "id": 13807,
+ "start": 6747.46,
+ "end": 6747.62,
+ "text": "the"
+ },
+ {
+ "id": 13808,
+ "start": 6747.62,
+ "end": 6748,
+ "text": "mantra"
+ },
+ {
+ "id": 13809,
+ "start": 6748,
+ "end": 6748.14,
+ "text": "is"
+ },
+ {
+ "id": 13810,
+ "start": 6748.14,
+ "end": 6748.6,
+ "text": "currently"
+ },
+ {
+ "id": 13811,
+ "start": 6748.6,
+ "end": 6748.92,
+ "text": "move"
+ },
+ {
+ "id": 13812,
+ "start": 6748.92,
+ "end": 6749.28,
+ "text": "fast"
+ },
+ {
+ "id": 13813,
+ "start": 6749.28,
+ "end": 6749.46,
+ "text": "with"
+ },
+ {
+ "id": 13814,
+ "start": 6749.46,
+ "end": 6749.9,
+ "text": "stable"
+ },
+ {
+ "id": 13815,
+ "start": 6749.9,
+ "end": 6750.66,
+ "text": "infrastructure,"
+ },
+ {
+ "id": 13816,
+ "start": 6750.66,
+ "end": 6751.1,
+ "text": "which"
+ },
+ {
+ "id": 13817,
+ "start": 6751.1,
+ "end": 6751.26,
+ "text": "is"
+ },
+ {
+ "id": 13818,
+ "start": 6751.26,
+ "end": 6751.42,
+ "text": "a"
+ },
+ {
+ "id": 13819,
+ "start": 6751.42,
+ "end": 6751.76,
+ "text": "much"
+ },
+ {
+ "id": 13820,
+ "start": 6751.76,
+ "end": 6752.06,
+ "text": "less"
+ },
+ {
+ "id": 13821,
+ "start": 6752.06,
+ "end": 6752.6,
+ "text": "sexy."
+ },
+ {
+ "id": 13822,
+ "start": 6752.6,
+ "end": 6753.04,
+ "text": "Mantra"
+ },
+ {
+ "id": 13823,
+ "start": 6753.04,
+ "end": 6753.54,
+ "text": "sounds"
+ },
+ {
+ "id": 13824,
+ "start": 6753.54,
+ "end": 6753.82,
+ "text": "much"
+ },
+ {
+ "id": 13825,
+ "start": 6753.82,
+ "end": 6754.08,
+ "text": "more"
+ },
+ {
+ "id": 13826,
+ "start": 6754.08,
+ "end": 6754.48,
+ "text": "boring."
+ },
+ {
+ "id": 13827,
+ "start": 6754.48,
+ "end": 6754.66,
+ "text": "But"
+ },
+ {
+ "id": 13828,
+ "start": 6754.66,
+ "end": 6755.14,
+ "text": "my"
+ },
+ {
+ "id": 13829,
+ "start": 6755.14,
+ "end": 6755.56,
+ "text": "question"
+ },
+ {
+ "id": 13830,
+ "start": 6755.56,
+ "end": 6755.76,
+ "text": "is"
+ },
+ {
+ "id": 13831,
+ "start": 6755.76,
+ "end": 6756.38,
+ "text": "during"
+ },
+ {
+ "id": 13832,
+ "start": 6756.38,
+ "end": 6756.48,
+ "text": "the"
+ },
+ {
+ "id": 13833,
+ "start": 6756.48,
+ "end": 6756.76,
+ "text": "time"
+ },
+ {
+ "id": 13834,
+ "start": 6756.76,
+ "end": 6757.08,
+ "text": "it"
+ },
+ {
+ "id": 13835,
+ "start": 6757.08,
+ "end": 6757.34,
+ "text": "was"
+ },
+ {
+ "id": 13836,
+ "start": 6757.34,
+ "end": 6758.04,
+ "text": "Facebook,"
+ },
+ {
+ "id": 13837,
+ "start": 6758.04,
+ "end": 6759.02,
+ "text": "mantra"
+ },
+ {
+ "id": 13838,
+ "start": 6759.02,
+ "end": 6759.2,
+ "text": "or"
+ },
+ {
+ "id": 13839,
+ "start": 6759.2,
+ "end": 6759.68,
+ "text": "motto"
+ },
+ {
+ "id": 13840,
+ "start": 6759.68,
+ "end": 6759.78,
+ "text": "to"
+ },
+ {
+ "id": 13841,
+ "start": 6759.78,
+ "end": 6760.08,
+ "text": "move"
+ },
+ {
+ "id": 13842,
+ "start": 6760.08,
+ "end": 6760.42,
+ "text": "fast"
+ },
+ {
+ "id": 13843,
+ "start": 6760.42,
+ "end": 6760.58,
+ "text": "and"
+ },
+ {
+ "id": 13844,
+ "start": 6760.58,
+ "end": 6760.86,
+ "text": "break"
+ },
+ {
+ "id": 13845,
+ "start": 6760.86,
+ "end": 6761.16,
+ "text": "things."
+ },
+ {
+ "id": 13846,
+ "start": 6761.16,
+ "end": 6761.82,
+ "text": "Do"
+ },
+ {
+ "id": 13847,
+ "start": 6761.82,
+ "end": 6761.96,
+ "text": "you"
+ },
+ {
+ "id": 13848,
+ "start": 6761.96,
+ "end": 6762.16,
+ "text": "think"
+ },
+ {
+ "id": 13849,
+ "start": 6762.16,
+ "end": 6762.42,
+ "text": "some"
+ },
+ {
+ "id": 13850,
+ "start": 6762.42,
+ "end": 6762.5,
+ "text": "of"
+ },
+ {
+ "id": 13851,
+ "start": 6762.5,
+ "end": 6763.54,
+ "text": "the"
+ },
+ {
+ "id": 13852,
+ "start": 6763.54,
+ "end": 6765.58,
+ "text": "misjudgments"
+ },
+ {
+ "id": 13853,
+ "start": 6765.58,
+ "end": 6765.98,
+ "text": "perhaps"
+ },
+ {
+ "id": 13854,
+ "start": 6765.98,
+ "end": 6766.66,
+ "text": "mistakes"
+ },
+ {
+ "id": 13855,
+ "start": 6766.66,
+ "end": 6766.92,
+ "text": "that"
+ },
+ {
+ "id": 13856,
+ "start": 6766.92,
+ "end": 6767.9,
+ "text": "you've"
+ },
+ {
+ "id": 13857,
+ "start": 6767.9,
+ "end": 6768.98,
+ "text": "admitted"
+ },
+ {
+ "id": 13858,
+ "start": 6768.98,
+ "end": 6769.14,
+ "text": "to"
+ },
+ {
+ "id": 13859,
+ "start": 6769.14,
+ "end": 6769.54,
+ "text": "here"
+ },
+ {
+ "id": 13860,
+ "start": 6769.54,
+ "end": 6770.14,
+ "text": "where"
+ },
+ {
+ "id": 13861,
+ "start": 6770.14,
+ "end": 6770.3,
+ "text": "as"
+ },
+ {
+ "id": 13862,
+ "start": 6770.3,
+ "end": 6770.36,
+ "text": "a"
+ },
+ {
+ "id": 13863,
+ "start": 6770.36,
+ "end": 6770.72,
+ "text": "result"
+ },
+ {
+ "id": 13864,
+ "start": 6770.72,
+ "end": 6770.84,
+ "text": "of"
+ },
+ {
+ "id": 13865,
+ "start": 6770.84,
+ "end": 6771.04,
+ "text": "that"
+ },
+ {
+ "id": 13866,
+ "start": 6771.04,
+ "end": 6771.72,
+ "text": "culture"
+ },
+ {
+ "id": 13867,
+ "start": 6771.72,
+ "end": 6771.9,
+ "text": "or"
+ },
+ {
+ "id": 13868,
+ "start": 6771.9,
+ "end": 6772.16,
+ "text": "that"
+ },
+ {
+ "id": 13869,
+ "start": 6772.16,
+ "end": 6772.76,
+ "text": "attitude,"
+ },
+ {
+ "id": 13870,
+ "start": 6772.76,
+ "end": 6773.3,
+ "text": "particularly"
+ },
+ {
+ "id": 13871,
+ "start": 6773.3,
+ "end": 6773.48,
+ "text": "as"
+ },
+ {
+ "id": 13872,
+ "start": 6773.48,
+ "end": 6773.9,
+ "text": "regards"
+ },
+ {
+ "id": 13873,
+ "start": 6773.9,
+ "end": 6774.24,
+ "text": "to"
+ },
+ {
+ "id": 13874,
+ "start": 6774.24,
+ "end": 6774.94,
+ "text": "personal"
+ },
+ {
+ "id": 13875,
+ "start": 6774.94,
+ "end": 6775.48,
+ "text": "privacy"
+ },
+ {
+ "id": 13876,
+ "start": 6775.48,
+ "end": 6775.66,
+ "text": "of"
+ },
+ {
+ "id": 13877,
+ "start": 6775.66,
+ "end": 6776.28,
+ "text": "information"
+ },
+ {
+ "id": 13878,
+ "start": 6776.28,
+ "end": 6776.38,
+ "text": "of"
+ },
+ {
+ "id": 13879,
+ "start": 6776.38,
+ "end": 6776.54,
+ "text": "your"
+ },
+ {
+ "id": 13880,
+ "start": 6776.54,
+ "end": 6778.28,
+ "text": "subscribers."
+ },
+ {
+ "id": 13881,
+ "start": 6778.28,
+ "end": 6779.3,
+ "text": "Senator."
+ },
+ {
+ "id": 13882,
+ "start": 6779.3,
+ "end": 6780.14,
+ "text": "I"
+ },
+ {
+ "id": 13883,
+ "start": 6780.14,
+ "end": 6780.32,
+ "text": "do"
+ },
+ {
+ "id": 13884,
+ "start": 6780.32,
+ "end": 6780.52,
+ "text": "think"
+ },
+ {
+ "id": 13885,
+ "start": 6780.52,
+ "end": 6780.66,
+ "text": "that"
+ },
+ {
+ "id": 13886,
+ "start": 6780.66,
+ "end": 6780.76,
+ "text": "we"
+ },
+ {
+ "id": 13887,
+ "start": 6780.76,
+ "end": 6781.04,
+ "text": "made"
+ },
+ {
+ "id": 13888,
+ "start": 6781.04,
+ "end": 6781.56,
+ "text": "mistakes"
+ },
+ {
+ "id": 13889,
+ "start": 6781.56,
+ "end": 6782,
+ "text": "because"
+ },
+ {
+ "id": 13890,
+ "start": 6782,
+ "end": 6782.14,
+ "text": "of"
+ },
+ {
+ "id": 13891,
+ "start": 6782.14,
+ "end": 6782.42,
+ "text": "that"
+ },
+ {
+ "id": 13892,
+ "start": 6782.42,
+ "end": 6784.48,
+ "text": "but"
+ },
+ {
+ "id": 13893,
+ "start": 6784.48,
+ "end": 6785.46,
+ "text": "the"
+ },
+ {
+ "id": 13894,
+ "start": 6785.46,
+ "end": 6786.02,
+ "text": "broadest"
+ },
+ {
+ "id": 13895,
+ "start": 6786.02,
+ "end": 6786.52,
+ "text": "mistakes"
+ },
+ {
+ "id": 13896,
+ "start": 6786.52,
+ "end": 6786.72,
+ "text": "that"
+ },
+ {
+ "id": 13897,
+ "start": 6786.72,
+ "end": 6786.8,
+ "text": "we"
+ },
+ {
+ "id": 13898,
+ "start": 6786.8,
+ "end": 6787.04,
+ "text": "made"
+ },
+ {
+ "id": 13899,
+ "start": 6787.04,
+ "end": 6787.28,
+ "text": "here"
+ },
+ {
+ "id": 13900,
+ "start": 6787.28,
+ "end": 6788.06,
+ "text": "are"
+ },
+ {
+ "id": 13901,
+ "start": 6788.06,
+ "end": 6788.28,
+ "text": "not"
+ },
+ {
+ "id": 13902,
+ "start": 6788.28,
+ "end": 6788.64,
+ "text": "taking"
+ },
+ {
+ "id": 13903,
+ "start": 6788.64,
+ "end": 6788.72,
+ "text": "a"
+ },
+ {
+ "id": 13904,
+ "start": 6788.72,
+ "end": 6788.96,
+ "text": "broad"
+ },
+ {
+ "id": 13905,
+ "start": 6788.96,
+ "end": 6789.18,
+ "text": "enough"
+ },
+ {
+ "id": 13906,
+ "start": 6789.18,
+ "end": 6789.4,
+ "text": "view"
+ },
+ {
+ "id": 13907,
+ "start": 6789.4,
+ "end": 6789.5,
+ "text": "of"
+ },
+ {
+ "id": 13908,
+ "start": 6789.5,
+ "end": 6789.64,
+ "text": "our"
+ },
+ {
+ "id": 13909,
+ "start": 6789.64,
+ "end": 6790.48,
+ "text": "responsibility."
+ },
+ {
+ "id": 13910,
+ "start": 6790.48,
+ "end": 6791.22,
+ "text": "And"
+ },
+ {
+ "id": 13911,
+ "start": 6791.22,
+ "end": 6791.8,
+ "text": "that"
+ },
+ {
+ "id": 13912,
+ "start": 6791.8,
+ "end": 6792.08,
+ "text": "wasn't"
+ },
+ {
+ "id": 13913,
+ "start": 6792.08,
+ "end": 6792.16,
+ "text": "a"
+ },
+ {
+ "id": 13914,
+ "start": 6792.16,
+ "end": 6792.46,
+ "text": "matter."
+ },
+ {
+ "id": 13915,
+ "start": 6792.46,
+ "end": 6793.02,
+ "text": "The"
+ },
+ {
+ "id": 13916,
+ "start": 6793.02,
+ "end": 6793.22,
+ "text": "move"
+ },
+ {
+ "id": 13917,
+ "start": 6793.22,
+ "end": 6794.58,
+ "text": "fast"
+ },
+ {
+ "id": 13918,
+ "start": 6794.58,
+ "end": 6795.56,
+ "text": "cultural"
+ },
+ {
+ "id": 13919,
+ "start": 6795.56,
+ "end": 6795.94,
+ "text": "value"
+ },
+ {
+ "id": 13920,
+ "start": 6795.94,
+ "end": 6796.08,
+ "text": "is"
+ },
+ {
+ "id": 13921,
+ "start": 6796.08,
+ "end": 6797,
+ "text": "more"
+ },
+ {
+ "id": 13922,
+ "start": 6797,
+ "end": 6797.98,
+ "text": "tactical"
+ },
+ {
+ "id": 13923,
+ "start": 6797.98,
+ "end": 6798.3,
+ "text": "around"
+ },
+ {
+ "id": 13924,
+ "start": 6798.3,
+ "end": 6798.56,
+ "text": "whether"
+ },
+ {
+ "id": 13925,
+ "start": 6798.56,
+ "end": 6799.06,
+ "text": "engineers"
+ },
+ {
+ "id": 13926,
+ "start": 6799.06,
+ "end": 6799.28,
+ "text": "can"
+ },
+ {
+ "id": 13927,
+ "start": 6799.28,
+ "end": 6799.46,
+ "text": "ship"
+ },
+ {
+ "id": 13928,
+ "start": 6799.46,
+ "end": 6799.88,
+ "text": "things"
+ },
+ {
+ "id": 13929,
+ "start": 6799.88,
+ "end": 6800.88,
+ "text": "and"
+ },
+ {
+ "id": 13930,
+ "start": 6800.88,
+ "end": 6801.48,
+ "text": "different"
+ },
+ {
+ "id": 13931,
+ "start": 6801.48,
+ "end": 6801.62,
+ "text": "ways"
+ },
+ {
+ "id": 13932,
+ "start": 6801.62,
+ "end": 6801.76,
+ "text": "that"
+ },
+ {
+ "id": 13933,
+ "start": 6801.76,
+ "end": 6801.84,
+ "text": "we"
+ },
+ {
+ "id": 13934,
+ "start": 6801.84,
+ "end": 6802.26,
+ "text": "operate."
+ },
+ {
+ "id": 13935,
+ "start": 6802.26,
+ "end": 6802.88,
+ "text": "But"
+ },
+ {
+ "id": 13936,
+ "start": 6802.88,
+ "end": 6802.94,
+ "text": "I"
+ },
+ {
+ "id": 13937,
+ "start": 6802.94,
+ "end": 6803.12,
+ "text": "think"
+ },
+ {
+ "id": 13938,
+ "start": 6803.12,
+ "end": 6803.3,
+ "text": "the"
+ },
+ {
+ "id": 13939,
+ "start": 6803.3,
+ "end": 6803.54,
+ "text": "big"
+ },
+ {
+ "id": 13940,
+ "start": 6803.54,
+ "end": 6804.1,
+ "text": "mistake"
+ },
+ {
+ "id": 13941,
+ "start": 6804.1,
+ "end": 6804.28,
+ "text": "that"
+ },
+ {
+ "id": 13942,
+ "start": 6804.28,
+ "end": 6804.54,
+ "text": "we've"
+ },
+ {
+ "id": 13943,
+ "start": 6804.54,
+ "end": 6804.78,
+ "text": "made"
+ },
+ {
+ "id": 13944,
+ "start": 6804.78,
+ "end": 6805.14,
+ "text": "looking"
+ },
+ {
+ "id": 13945,
+ "start": 6805.14,
+ "end": 6805.34,
+ "text": "back"
+ },
+ {
+ "id": 13946,
+ "start": 6805.34,
+ "end": 6805.46,
+ "text": "on"
+ },
+ {
+ "id": 13947,
+ "start": 6805.46,
+ "end": 6806.31,
+ "text": "this"
+ },
+ {
+ "id": 13948,
+ "start": 6806.31,
+ "end": 6806.93,
+ "text": "viewing"
+ },
+ {
+ "id": 13949,
+ "start": 6806.93,
+ "end": 6807.11,
+ "text": "our"
+ },
+ {
+ "id": 13950,
+ "start": 6807.11,
+ "end": 6807.89,
+ "text": "responsibility"
+ },
+ {
+ "id": 13951,
+ "start": 6807.89,
+ "end": 6808.17,
+ "text": "as"
+ },
+ {
+ "id": 13952,
+ "start": 6808.17,
+ "end": 6808.45,
+ "text": "just"
+ },
+ {
+ "id": 13953,
+ "start": 6808.45,
+ "end": 6808.87,
+ "text": "building"
+ },
+ {
+ "id": 13954,
+ "start": 6808.87,
+ "end": 6809.27,
+ "text": "tools"
+ },
+ {
+ "id": 13955,
+ "start": 6809.27,
+ "end": 6810.21,
+ "text": "rather"
+ },
+ {
+ "id": 13956,
+ "start": 6810.21,
+ "end": 6810.47,
+ "text": "than"
+ },
+ {
+ "id": 13957,
+ "start": 6810.47,
+ "end": 6811.21,
+ "text": "viewing,"
+ },
+ {
+ "id": 13958,
+ "start": 6811.21,
+ "end": 6811.37,
+ "text": "our"
+ },
+ {
+ "id": 13959,
+ "start": 6811.37,
+ "end": 6811.57,
+ "text": "whole"
+ },
+ {
+ "id": 13960,
+ "start": 6811.57,
+ "end": 6812.25,
+ "text": "responsibility"
+ },
+ {
+ "id": 13961,
+ "start": 6812.25,
+ "end": 6812.37,
+ "text": "is"
+ },
+ {
+ "id": 13962,
+ "start": 6812.37,
+ "end": 6812.73,
+ "text": "making"
+ },
+ {
+ "id": 13963,
+ "start": 6812.73,
+ "end": 6812.97,
+ "text": "sure"
+ },
+ {
+ "id": 13964,
+ "start": 6812.97,
+ "end": 6813.11,
+ "text": "that"
+ },
+ {
+ "id": 13965,
+ "start": 6813.11,
+ "end": 6813.33,
+ "text": "those"
+ },
+ {
+ "id": 13966,
+ "start": 6813.33,
+ "end": 6813.65,
+ "text": "tools"
+ },
+ {
+ "id": 13967,
+ "start": 6813.65,
+ "end": 6813.97,
+ "text": "are"
+ },
+ {
+ "id": 13968,
+ "start": 6813.97,
+ "end": 6814.25,
+ "text": "used"
+ },
+ {
+ "id": 13969,
+ "start": 6814.25,
+ "end": 6814.43,
+ "text": "for"
+ },
+ {
+ "id": 13970,
+ "start": 6814.43,
+ "end": 6815.03,
+ "text": "good."
+ },
+ {
+ "id": 13971,
+ "start": 6815.03,
+ "end": 6816.01,
+ "text": "And"
+ },
+ {
+ "id": 13972,
+ "start": 6816.01,
+ "end": 6816.13,
+ "text": "I"
+ },
+ {
+ "id": 13973,
+ "start": 6816.13,
+ "end": 6816.67,
+ "text": "appreciate"
+ },
+ {
+ "id": 13974,
+ "start": 6816.67,
+ "end": 6816.91,
+ "text": "that."
+ },
+ {
+ "id": 13975,
+ "start": 6816.91,
+ "end": 6818.26,
+ "text": "Because"
+ },
+ {
+ "id": 13976,
+ "start": 6818.26,
+ "end": 6819.2,
+ "text": "previously"
+ },
+ {
+ "id": 13977,
+ "start": 6819.2,
+ "end": 6819.74,
+ "text": "or"
+ },
+ {
+ "id": 13978,
+ "start": 6819.74,
+ "end": 6820.72,
+ "text": "earlier"
+ },
+ {
+ "id": 13979,
+ "start": 6820.72,
+ "end": 6821.56,
+ "text": "in"
+ },
+ {
+ "id": 13980,
+ "start": 6821.56,
+ "end": 6821.72,
+ "text": "the"
+ },
+ {
+ "id": 13981,
+ "start": 6821.72,
+ "end": 6822.1,
+ "text": "past,"
+ },
+ {
+ "id": 13982,
+ "start": 6822.1,
+ "end": 6823.08,
+ "text": "we've"
+ },
+ {
+ "id": 13983,
+ "start": 6823.08,
+ "end": 6823.26,
+ "text": "been"
+ },
+ {
+ "id": 13984,
+ "start": 6823.26,
+ "end": 6823.52,
+ "text": "told"
+ },
+ {
+ "id": 13985,
+ "start": 6823.52,
+ "end": 6824.34,
+ "text": "that"
+ },
+ {
+ "id": 13986,
+ "start": 6824.34,
+ "end": 6825.34,
+ "text": "platforms"
+ },
+ {
+ "id": 13987,
+ "start": 6825.34,
+ "end": 6826.24,
+ "text": "like"
+ },
+ {
+ "id": 13988,
+ "start": 6826.24,
+ "end": 6827.16,
+ "text": "Facebook,"
+ },
+ {
+ "id": 13989,
+ "start": 6827.16,
+ "end": 6827.96,
+ "text": "Twitter,"
+ },
+ {
+ "id": 13990,
+ "start": 6827.96,
+ "end": 6828.8,
+ "text": "Instagram,"
+ },
+ {
+ "id": 13991,
+ "start": 6828.8,
+ "end": 6829,
+ "text": "the"
+ },
+ {
+ "id": 13992,
+ "start": 6829,
+ "end": 6829.2,
+ "text": "like"
+ },
+ {
+ "id": 13993,
+ "start": 6829.2,
+ "end": 6829.36,
+ "text": "or"
+ },
+ {
+ "id": 13994,
+ "start": 6829.36,
+ "end": 6829.84,
+ "text": "neutral"
+ },
+ {
+ "id": 13995,
+ "start": 6829.84,
+ "end": 6830.52,
+ "text": "platforms."
+ },
+ {
+ "id": 13996,
+ "start": 6830.52,
+ "end": 6831.2,
+ "text": "And"
+ },
+ {
+ "id": 13997,
+ "start": 6831.2,
+ "end": 6831.36,
+ "text": "the"
+ },
+ {
+ "id": 13998,
+ "start": 6831.36,
+ "end": 6831.7,
+ "text": "people"
+ },
+ {
+ "id": 13999,
+ "start": 6831.7,
+ "end": 6831.94,
+ "text": "who"
+ },
+ {
+ "id": 14000,
+ "start": 6831.94,
+ "end": 6832.3,
+ "text": "own"
+ },
+ {
+ "id": 14001,
+ "start": 6832.3,
+ "end": 6832.46,
+ "text": "and"
+ },
+ {
+ "id": 14002,
+ "start": 6832.46,
+ "end": 6832.72,
+ "text": "run"
+ },
+ {
+ "id": 14003,
+ "start": 6832.72,
+ "end": 6833.54,
+ "text": "those"
+ },
+ {
+ "id": 14004,
+ "start": 6833.54,
+ "end": 6834.24,
+ "text": "for"
+ },
+ {
+ "id": 14005,
+ "start": 6834.24,
+ "end": 6834.64,
+ "text": "profit"
+ },
+ {
+ "id": 14006,
+ "start": 6834.64,
+ "end": 6834.84,
+ "text": "and"
+ },
+ {
+ "id": 14007,
+ "start": 6834.84,
+ "end": 6835,
+ "text": "I'm"
+ },
+ {
+ "id": 14008,
+ "start": 6835,
+ "end": 6835.2,
+ "text": "not"
+ },
+ {
+ "id": 14009,
+ "start": 6835.2,
+ "end": 6835.88,
+ "text": "criticizing"
+ },
+ {
+ "id": 14010,
+ "start": 6835.88,
+ "end": 6836.72,
+ "text": "doing"
+ },
+ {
+ "id": 14011,
+ "start": 6836.72,
+ "end": 6837.04,
+ "text": "something"
+ },
+ {
+ "id": 14012,
+ "start": 6837.04,
+ "end": 6837.18,
+ "text": "for"
+ },
+ {
+ "id": 14013,
+ "start": 6837.18,
+ "end": 6837.56,
+ "text": "profit"
+ },
+ {
+ "id": 14014,
+ "start": 6837.56,
+ "end": 6837.66,
+ "text": "in"
+ },
+ {
+ "id": 14015,
+ "start": 6837.66,
+ "end": 6837.86,
+ "text": "this"
+ },
+ {
+ "id": 14016,
+ "start": 6837.86,
+ "end": 6839.12,
+ "text": "country."
+ },
+ {
+ "id": 14017,
+ "start": 6839.12,
+ "end": 6840.08,
+ "text": "But"
+ },
+ {
+ "id": 14018,
+ "start": 6840.08,
+ "end": 6840.24,
+ "text": "they"
+ },
+ {
+ "id": 14019,
+ "start": 6840.24,
+ "end": 6840.76,
+ "text": "bore"
+ },
+ {
+ "id": 14020,
+ "start": 6840.76,
+ "end": 6840.92,
+ "text": "no"
+ },
+ {
+ "id": 14021,
+ "start": 6840.92,
+ "end": 6841.84,
+ "text": "responsibility"
+ },
+ {
+ "id": 14022,
+ "start": 6841.84,
+ "end": 6842,
+ "text": "for"
+ },
+ {
+ "id": 14023,
+ "start": 6842,
+ "end": 6842.14,
+ "text": "the"
+ },
+ {
+ "id": 14024,
+ "start": 6842.14,
+ "end": 6842.72,
+ "text": "content."
+ },
+ {
+ "id": 14025,
+ "start": 6842.72,
+ "end": 6843.56,
+ "text": "You"
+ },
+ {
+ "id": 14026,
+ "start": 6843.56,
+ "end": 6845.08,
+ "text": "agree"
+ },
+ {
+ "id": 14027,
+ "start": 6845.08,
+ "end": 6845.86,
+ "text": "that"
+ },
+ {
+ "id": 14028,
+ "start": 6845.86,
+ "end": 6846.38,
+ "text": "Facebook"
+ },
+ {
+ "id": 14029,
+ "start": 6846.38,
+ "end": 6846.78,
+ "text": "and"
+ },
+ {
+ "id": 14030,
+ "start": 6846.78,
+ "end": 6847.46,
+ "text": "other"
+ },
+ {
+ "id": 14031,
+ "start": 6847.46,
+ "end": 6847.9,
+ "text": "social"
+ },
+ {
+ "id": 14032,
+ "start": 6847.9,
+ "end": 6848.22,
+ "text": "media"
+ },
+ {
+ "id": 14033,
+ "start": 6848.22,
+ "end": 6848.8,
+ "text": "platforms"
+ },
+ {
+ "id": 14034,
+ "start": 6848.8,
+ "end": 6848.96,
+ "text": "are"
+ },
+ {
+ "id": 14035,
+ "start": 6848.96,
+ "end": 6849.14,
+ "text": "not"
+ },
+ {
+ "id": 14036,
+ "start": 6849.14,
+ "end": 6849.52,
+ "text": "neutral"
+ },
+ {
+ "id": 14037,
+ "start": 6849.52,
+ "end": 6850.04,
+ "text": "platforms,"
+ },
+ {
+ "id": 14038,
+ "start": 6850.04,
+ "end": 6850.26,
+ "text": "but"
+ },
+ {
+ "id": 14039,
+ "start": 6850.26,
+ "end": 6850.52,
+ "text": "bear"
+ },
+ {
+ "id": 14040,
+ "start": 6850.52,
+ "end": 6850.78,
+ "text": "some"
+ },
+ {
+ "id": 14041,
+ "start": 6850.78,
+ "end": 6851.7,
+ "text": "responsibility"
+ },
+ {
+ "id": 14042,
+ "start": 6851.7,
+ "end": 6852.5,
+ "text": "for"
+ },
+ {
+ "id": 14043,
+ "start": 6852.5,
+ "end": 6852.66,
+ "text": "the"
+ },
+ {
+ "id": 14044,
+ "start": 6852.66,
+ "end": 6853.12,
+ "text": "content."
+ },
+ {
+ "id": 14045,
+ "start": 6853.12,
+ "end": 6854.02,
+ "text": "I"
+ },
+ {
+ "id": 14046,
+ "start": 6854.02,
+ "end": 6854.3,
+ "text": "agree"
+ },
+ {
+ "id": 14047,
+ "start": 6854.3,
+ "end": 6854.42,
+ "text": "that"
+ },
+ {
+ "id": 14048,
+ "start": 6854.42,
+ "end": 6854.62,
+ "text": "we're"
+ },
+ {
+ "id": 14049,
+ "start": 6854.62,
+ "end": 6855.22,
+ "text": "responsible"
+ },
+ {
+ "id": 14050,
+ "start": 6855.22,
+ "end": 6855.38,
+ "text": "for"
+ },
+ {
+ "id": 14051,
+ "start": 6855.38,
+ "end": 6855.52,
+ "text": "the"
+ },
+ {
+ "id": 14052,
+ "start": 6855.52,
+ "end": 6856.62,
+ "text": "content"
+ },
+ {
+ "id": 14053,
+ "start": 6856.62,
+ "end": 6857.5,
+ "text": "and"
+ },
+ {
+ "id": 14054,
+ "start": 6857.5,
+ "end": 6857.56,
+ "text": "I"
+ },
+ {
+ "id": 14055,
+ "start": 6857.56,
+ "end": 6857.74,
+ "text": "think"
+ },
+ {
+ "id": 14056,
+ "start": 6857.74,
+ "end": 6857.86,
+ "text": "that"
+ },
+ {
+ "id": 14057,
+ "start": 6857.86,
+ "end": 6858,
+ "text": "there"
+ },
+ {
+ "id": 14058,
+ "start": 6858,
+ "end": 6858.08,
+ "text": "is"
+ },
+ {
+ "id": 14059,
+ "start": 6858.08,
+ "end": 6858.38,
+ "text": "one"
+ },
+ {
+ "id": 14060,
+ "start": 6858.38,
+ "end": 6858.46,
+ "text": "of"
+ },
+ {
+ "id": 14061,
+ "start": 6858.46,
+ "end": 6858.56,
+ "text": "the"
+ },
+ {
+ "id": 14062,
+ "start": 6858.56,
+ "end": 6858.9,
+ "text": "big"
+ },
+ {
+ "id": 14063,
+ "start": 6858.9,
+ "end": 6860.04,
+ "text": "societal"
+ },
+ {
+ "id": 14064,
+ "start": 6860.04,
+ "end": 6860.5,
+ "text": "questions"
+ },
+ {
+ "id": 14065,
+ "start": 6860.5,
+ "end": 6860.6,
+ "text": "I"
+ },
+ {
+ "id": 14066,
+ "start": 6860.6,
+ "end": 6860.9,
+ "text": "think"
+ },
+ {
+ "id": 14067,
+ "start": 6860.9,
+ "end": 6861.08,
+ "text": "we're"
+ },
+ {
+ "id": 14068,
+ "start": 6861.08,
+ "end": 6861.24,
+ "text": "going"
+ },
+ {
+ "id": 14069,
+ "start": 6861.24,
+ "end": 6861.32,
+ "text": "to"
+ },
+ {
+ "id": 14070,
+ "start": 6861.32,
+ "end": 6861.48,
+ "text": "need"
+ },
+ {
+ "id": 14071,
+ "start": 6861.48,
+ "end": 6861.56,
+ "text": "to"
+ },
+ {
+ "id": 14072,
+ "start": 6861.56,
+ "end": 6861.98,
+ "text": "answer"
+ },
+ {
+ "id": 14073,
+ "start": 6861.98,
+ "end": 6863.24,
+ "text": "is"
+ },
+ {
+ "id": 14074,
+ "start": 6863.24,
+ "end": 6864.22,
+ "text": "the"
+ },
+ {
+ "id": 14075,
+ "start": 6864.22,
+ "end": 6864.56,
+ "text": "current"
+ },
+ {
+ "id": 14076,
+ "start": 6864.56,
+ "end": 6865.18,
+ "text": "framework"
+ },
+ {
+ "id": 14077,
+ "start": 6865.18,
+ "end": 6865.32,
+ "text": "that"
+ },
+ {
+ "id": 14078,
+ "start": 6865.32,
+ "end": 6865.44,
+ "text": "we"
+ },
+ {
+ "id": 14079,
+ "start": 6865.44,
+ "end": 6866.38,
+ "text": "have"
+ },
+ {
+ "id": 14080,
+ "start": 6866.38,
+ "end": 6867.26,
+ "text": "is"
+ },
+ {
+ "id": 14081,
+ "start": 6867.26,
+ "end": 6867.6,
+ "text": "based"
+ },
+ {
+ "id": 14082,
+ "start": 6867.6,
+ "end": 6867.74,
+ "text": "on"
+ },
+ {
+ "id": 14083,
+ "start": 6867.74,
+ "end": 6867.92,
+ "text": "this"
+ },
+ {
+ "id": 14084,
+ "start": 6867.92,
+ "end": 6868.46,
+ "text": "reactive"
+ },
+ {
+ "id": 14085,
+ "start": 6868.46,
+ "end": 6868.74,
+ "text": "model"
+ },
+ {
+ "id": 14086,
+ "start": 6868.74,
+ "end": 6869.44,
+ "text": "that"
+ },
+ {
+ "id": 14087,
+ "start": 6869.44,
+ "end": 6869.92,
+ "text": "assumed"
+ },
+ {
+ "id": 14088,
+ "start": 6869.92,
+ "end": 6870.06,
+ "text": "that"
+ },
+ {
+ "id": 14089,
+ "start": 6870.06,
+ "end": 6870.26,
+ "text": "there"
+ },
+ {
+ "id": 14090,
+ "start": 6870.26,
+ "end": 6870.5,
+ "text": "weren't"
+ },
+ {
+ "id": 14091,
+ "start": 6870.5,
+ "end": 6870.84,
+ "text": "AI"
+ },
+ {
+ "id": 14092,
+ "start": 6870.84,
+ "end": 6871.2,
+ "text": "tools"
+ },
+ {
+ "id": 14093,
+ "start": 6871.2,
+ "end": 6871.72,
+ "text": "that"
+ },
+ {
+ "id": 14094,
+ "start": 6871.72,
+ "end": 6871.9,
+ "text": "could"
+ },
+ {
+ "id": 14095,
+ "start": 6871.9,
+ "end": 6872.58,
+ "text": "proactively"
+ },
+ {
+ "id": 14096,
+ "start": 6872.58,
+ "end": 6873.54,
+ "text": "tell"
+ },
+ {
+ "id": 14097,
+ "start": 6873.54,
+ "end": 6874.48,
+ "text": "whether"
+ },
+ {
+ "id": 14098,
+ "start": 6874.48,
+ "end": 6874.82,
+ "text": "something"
+ },
+ {
+ "id": 14099,
+ "start": 6874.82,
+ "end": 6874.96,
+ "text": "was"
+ },
+ {
+ "id": 14100,
+ "start": 6874.96,
+ "end": 6875.34,
+ "text": "terrorist"
+ },
+ {
+ "id": 14101,
+ "start": 6875.34,
+ "end": 6875.7,
+ "text": "content"
+ },
+ {
+ "id": 14102,
+ "start": 6875.7,
+ "end": 6875.84,
+ "text": "or"
+ },
+ {
+ "id": 14103,
+ "start": 6875.84,
+ "end": 6876.12,
+ "text": "something"
+ },
+ {
+ "id": 14104,
+ "start": 6876.12,
+ "end": 6876.4,
+ "text": "bad."
+ },
+ {
+ "id": 14105,
+ "start": 6876.4,
+ "end": 6876.88,
+ "text": "So"
+ },
+ {
+ "id": 14106,
+ "start": 6876.88,
+ "end": 6877.04,
+ "text": "it"
+ },
+ {
+ "id": 14107,
+ "start": 6877.04,
+ "end": 6877.56,
+ "text": "naturally"
+ },
+ {
+ "id": 14108,
+ "start": 6877.56,
+ "end": 6878.14,
+ "text": "relied"
+ },
+ {
+ "id": 14109,
+ "start": 6878.14,
+ "end": 6878.58,
+ "text": "on"
+ },
+ {
+ "id": 14110,
+ "start": 6878.58,
+ "end": 6879.66,
+ "text": "requiring"
+ },
+ {
+ "id": 14111,
+ "start": 6879.66,
+ "end": 6880.1,
+ "text": "people"
+ },
+ {
+ "id": 14112,
+ "start": 6880.1,
+ "end": 6880.38,
+ "text": "to"
+ },
+ {
+ "id": 14113,
+ "start": 6880.38,
+ "end": 6880.96,
+ "text": "flag"
+ },
+ {
+ "id": 14114,
+ "start": 6880.96,
+ "end": 6881.12,
+ "text": "for"
+ },
+ {
+ "id": 14115,
+ "start": 6881.12,
+ "end": 6881.18,
+ "text": "a"
+ },
+ {
+ "id": 14116,
+ "start": 6881.18,
+ "end": 6881.5,
+ "text": "company."
+ },
+ {
+ "id": 14117,
+ "start": 6881.5,
+ "end": 6881.6,
+ "text": "And"
+ },
+ {
+ "id": 14118,
+ "start": 6881.6,
+ "end": 6881.7,
+ "text": "then"
+ },
+ {
+ "id": 14119,
+ "start": 6881.7,
+ "end": 6881.8,
+ "text": "the"
+ },
+ {
+ "id": 14120,
+ "start": 6881.8,
+ "end": 6882.08,
+ "text": "company"
+ },
+ {
+ "id": 14121,
+ "start": 6882.08,
+ "end": 6882.38,
+ "text": "being"
+ },
+ {
+ "id": 14122,
+ "start": 6882.38,
+ "end": 6882.48,
+ "text": "to"
+ },
+ {
+ "id": 14123,
+ "start": 6882.48,
+ "end": 6882.64,
+ "text": "take"
+ },
+ {
+ "id": 14124,
+ "start": 6882.64,
+ "end": 6883.12,
+ "text": "reasonable"
+ },
+ {
+ "id": 14125,
+ "start": 6883.12,
+ "end": 6883.46,
+ "text": "action"
+ },
+ {
+ "id": 14126,
+ "start": 6883.46,
+ "end": 6884.08,
+ "text": "in"
+ },
+ {
+ "id": 14127,
+ "start": 6884.08,
+ "end": 6884.18,
+ "text": "the"
+ },
+ {
+ "id": 14128,
+ "start": 6884.18,
+ "end": 6884.54,
+ "text": "future"
+ },
+ {
+ "id": 14129,
+ "start": 6884.54,
+ "end": 6884.76,
+ "text": "we're"
+ },
+ {
+ "id": 14130,
+ "start": 6884.76,
+ "end": 6884.9,
+ "text": "going"
+ },
+ {
+ "id": 14131,
+ "start": 6884.9,
+ "end": 6884.96,
+ "text": "to"
+ },
+ {
+ "id": 14132,
+ "start": 6884.96,
+ "end": 6885.1,
+ "text": "have"
+ },
+ {
+ "id": 14133,
+ "start": 6885.1,
+ "end": 6885.54,
+ "text": "tools"
+ },
+ {
+ "id": 14134,
+ "start": 6885.54,
+ "end": 6886.2,
+ "text": "that"
+ },
+ {
+ "id": 14135,
+ "start": 6886.2,
+ "end": 6886.36,
+ "text": "are"
+ },
+ {
+ "id": 14136,
+ "start": 6886.36,
+ "end": 6886.62,
+ "text": "going"
+ },
+ {
+ "id": 14137,
+ "start": 6886.62,
+ "end": 6886.78,
+ "text": "to"
+ },
+ {
+ "id": 14138,
+ "start": 6886.78,
+ "end": 6886.92,
+ "text": "be"
+ },
+ {
+ "id": 14139,
+ "start": 6886.92,
+ "end": 6887.18,
+ "text": "able"
+ },
+ {
+ "id": 14140,
+ "start": 6887.18,
+ "end": 6887.42,
+ "text": "to"
+ },
+ {
+ "id": 14141,
+ "start": 6887.42,
+ "end": 6888.02,
+ "text": "identify"
+ },
+ {
+ "id": 14142,
+ "start": 6888.02,
+ "end": 6888.28,
+ "text": "more"
+ },
+ {
+ "id": 14143,
+ "start": 6888.28,
+ "end": 6888.52,
+ "text": "types"
+ },
+ {
+ "id": 14144,
+ "start": 6888.52,
+ "end": 6888.66,
+ "text": "of"
+ },
+ {
+ "id": 14145,
+ "start": 6888.66,
+ "end": 6888.92,
+ "text": "bad"
+ },
+ {
+ "id": 14146,
+ "start": 6888.92,
+ "end": 6889.38,
+ "text": "content."
+ },
+ {
+ "id": 14147,
+ "start": 6889.38,
+ "end": 6889.9,
+ "text": "And"
+ },
+ {
+ "id": 14148,
+ "start": 6889.9,
+ "end": 6889.98,
+ "text": "I"
+ },
+ {
+ "id": 14149,
+ "start": 6889.98,
+ "end": 6890.18,
+ "text": "think"
+ },
+ {
+ "id": 14150,
+ "start": 6890.18,
+ "end": 6890.3,
+ "text": "that"
+ },
+ {
+ "id": 14151,
+ "start": 6890.3,
+ "end": 6891.22,
+ "text": "there"
+ },
+ {
+ "id": 14152,
+ "start": 6891.22,
+ "end": 6891.34,
+ "text": "are"
+ },
+ {
+ "id": 14153,
+ "start": 6891.34,
+ "end": 6891.78,
+ "text": "moral"
+ },
+ {
+ "id": 14154,
+ "start": 6891.78,
+ "end": 6891.94,
+ "text": "and"
+ },
+ {
+ "id": 14155,
+ "start": 6891.94,
+ "end": 6892.22,
+ "text": "legal"
+ },
+ {
+ "id": 14156,
+ "start": 6892.22,
+ "end": 6892.86,
+ "text": "obligation"
+ },
+ {
+ "id": 14157,
+ "start": 6892.86,
+ "end": 6893.82,
+ "text": "questions"
+ },
+ {
+ "id": 14158,
+ "start": 6893.82,
+ "end": 6894.4,
+ "text": "that"
+ },
+ {
+ "id": 14159,
+ "start": 6894.4,
+ "end": 6894.46,
+ "text": "I"
+ },
+ {
+ "id": 14160,
+ "start": 6894.46,
+ "end": 6894.62,
+ "text": "think"
+ },
+ {
+ "id": 14161,
+ "start": 6894.62,
+ "end": 6894.84,
+ "text": "we'll"
+ },
+ {
+ "id": 14162,
+ "start": 6894.84,
+ "end": 6894.98,
+ "text": "have"
+ },
+ {
+ "id": 14163,
+ "start": 6894.98,
+ "end": 6895.08,
+ "text": "to"
+ },
+ {
+ "id": 14164,
+ "start": 6895.08,
+ "end": 6895.4,
+ "text": "wrestle"
+ },
+ {
+ "id": 14165,
+ "start": 6895.4,
+ "end": 6895.56,
+ "text": "with"
+ },
+ {
+ "id": 14166,
+ "start": 6895.56,
+ "end": 6895.72,
+ "text": "as"
+ },
+ {
+ "id": 14167,
+ "start": 6895.72,
+ "end": 6895.82,
+ "text": "a"
+ },
+ {
+ "id": 14168,
+ "start": 6895.82,
+ "end": 6896.38,
+ "text": "society"
+ },
+ {
+ "id": 14169,
+ "start": 6896.38,
+ "end": 6896.94,
+ "text": "about"
+ },
+ {
+ "id": 14170,
+ "start": 6896.94,
+ "end": 6897.22,
+ "text": "when"
+ },
+ {
+ "id": 14171,
+ "start": 6897.22,
+ "end": 6897.34,
+ "text": "we"
+ },
+ {
+ "id": 14172,
+ "start": 6897.34,
+ "end": 6897.58,
+ "text": "want"
+ },
+ {
+ "id": 14173,
+ "start": 6897.58,
+ "end": 6897.78,
+ "text": "to"
+ },
+ {
+ "id": 14174,
+ "start": 6897.78,
+ "end": 6898.5,
+ "text": "require"
+ },
+ {
+ "id": 14175,
+ "start": 6898.5,
+ "end": 6899.02,
+ "text": "companies"
+ },
+ {
+ "id": 14176,
+ "start": 6899.02,
+ "end": 6899.16,
+ "text": "to"
+ },
+ {
+ "id": 14177,
+ "start": 6899.16,
+ "end": 6899.38,
+ "text": "take"
+ },
+ {
+ "id": 14178,
+ "start": 6899.38,
+ "end": 6899.8,
+ "text": "action."
+ },
+ {
+ "id": 14179,
+ "start": 6899.8,
+ "end": 6900.5,
+ "text": "Proactively"
+ },
+ {
+ "id": 14180,
+ "start": 6900.5,
+ "end": 6900.94,
+ "text": "uncertain"
+ },
+ {
+ "id": 14181,
+ "start": 6900.94,
+ "end": 6901.04,
+ "text": "of"
+ },
+ {
+ "id": 14182,
+ "start": 6901.04,
+ "end": 6901.26,
+ "text": "those"
+ },
+ {
+ "id": 14183,
+ "start": 6901.26,
+ "end": 6901.58,
+ "text": "things"
+ },
+ {
+ "id": 14184,
+ "start": 6901.58,
+ "end": 6902.4,
+ "text": "when"
+ },
+ {
+ "id": 14185,
+ "start": 6902.4,
+ "end": 6902.56,
+ "text": "that"
+ },
+ {
+ "id": 14186,
+ "start": 6902.56,
+ "end": 6902.72,
+ "text": "gets"
+ },
+ {
+ "id": 14187,
+ "start": 6902.72,
+ "end": 6902.84,
+ "text": "in"
+ },
+ {
+ "id": 14188,
+ "start": 6902.84,
+ "end": 6902.94,
+ "text": "the"
+ },
+ {
+ "id": 14189,
+ "start": 6902.94,
+ "end": 6903.12,
+ "text": "way,"
+ },
+ {
+ "id": 14190,
+ "start": 6903.12,
+ "end": 6903.18,
+ "text": "I"
+ },
+ {
+ "id": 14191,
+ "start": 6903.18,
+ "end": 6903.82,
+ "text": "appreciate"
+ },
+ {
+ "id": 14192,
+ "start": 6903.82,
+ "end": 6903.98,
+ "text": "that"
+ },
+ {
+ "id": 14193,
+ "start": 6903.98,
+ "end": 6904.08,
+ "text": "I"
+ },
+ {
+ "id": 14194,
+ "start": 6904.08,
+ "end": 6904.24,
+ "text": "have"
+ },
+ {
+ "id": 14195,
+ "start": 6904.24,
+ "end": 6904.66,
+ "text": "two"
+ },
+ {
+ "id": 14196,
+ "start": 6904.66,
+ "end": 6904.94,
+ "text": "minutes"
+ },
+ {
+ "id": 14197,
+ "start": 6904.94,
+ "end": 6905.26,
+ "text": "left."
+ },
+ {
+ "id": 14198,
+ "start": 6905.26,
+ "end": 6905.48,
+ "text": "All"
+ },
+ {
+ "id": 14199,
+ "start": 6905.48,
+ "end": 6905.62,
+ "text": "right"
+ },
+ {
+ "id": 14200,
+ "start": 6905.62,
+ "end": 6905.72,
+ "text": "to"
+ },
+ {
+ "id": 14201,
+ "start": 6905.72,
+ "end": 6905.9,
+ "text": "ask"
+ },
+ {
+ "id": 14202,
+ "start": 6905.9,
+ "end": 6906.06,
+ "text": "you"
+ },
+ {
+ "id": 14203,
+ "start": 6906.06,
+ "end": 6906.48,
+ "text": "questions."
+ },
+ {
+ "id": 14204,
+ "start": 6906.48,
+ "end": 6907.32,
+ "text": "So"
+ },
+ {
+ "id": 14205,
+ "start": 6907.32,
+ "end": 6908.4,
+ "text": "you"
+ },
+ {
+ "id": 14206,
+ "start": 6908.4,
+ "end": 6909.4,
+ "text": "interestingly"
+ },
+ {
+ "id": 14207,
+ "start": 6909.4,
+ "end": 6909.58,
+ "text": "the"
+ },
+ {
+ "id": 14208,
+ "start": 6909.58,
+ "end": 6909.96,
+ "text": "terms"
+ },
+ {
+ "id": 14209,
+ "start": 6909.96,
+ "end": 6911.02,
+ "text": "of"
+ },
+ {
+ "id": 14210,
+ "start": 6911.02,
+ "end": 6911.98,
+ "text": "what"
+ },
+ {
+ "id": 14211,
+ "start": 6911.98,
+ "end": 6912.06,
+ "text": "do"
+ },
+ {
+ "id": 14212,
+ "start": 6912.06,
+ "end": 6912.18,
+ "text": "you"
+ },
+ {
+ "id": 14213,
+ "start": 6912.18,
+ "end": 6912.36,
+ "text": "call"
+ },
+ {
+ "id": 14214,
+ "start": 6912.36,
+ "end": 6912.46,
+ "text": "it?"
+ },
+ {
+ "id": 14215,
+ "start": 6912.46,
+ "end": 6912.58,
+ "text": "The"
+ },
+ {
+ "id": 14216,
+ "start": 6912.58,
+ "end": 6912.96,
+ "text": "terms"
+ },
+ {
+ "id": 14217,
+ "start": 6912.96,
+ "end": 6913.12,
+ "text": "of"
+ },
+ {
+ "id": 14218,
+ "start": 6913.12,
+ "end": 6913.62,
+ "text": "service"
+ },
+ {
+ "id": 14219,
+ "start": 6913.62,
+ "end": 6914.3,
+ "text": "is"
+ },
+ {
+ "id": 14220,
+ "start": 6914.3,
+ "end": 6914.38,
+ "text": "a"
+ },
+ {
+ "id": 14221,
+ "start": 6914.38,
+ "end": 6914.74,
+ "text": "legal"
+ },
+ {
+ "id": 14222,
+ "start": 6914.74,
+ "end": 6915.28,
+ "text": "document"
+ },
+ {
+ "id": 14223,
+ "start": 6915.28,
+ "end": 6915.58,
+ "text": "which"
+ },
+ {
+ "id": 14224,
+ "start": 6915.58,
+ "end": 6916.3,
+ "text": "discloses"
+ },
+ {
+ "id": 14225,
+ "start": 6916.3,
+ "end": 6916.48,
+ "text": "to"
+ },
+ {
+ "id": 14226,
+ "start": 6916.48,
+ "end": 6916.7,
+ "text": "your"
+ },
+ {
+ "id": 14227,
+ "start": 6916.7,
+ "end": 6917.46,
+ "text": "subscribers."
+ },
+ {
+ "id": 14228,
+ "start": 6917.46,
+ "end": 6917.8,
+ "text": "How"
+ },
+ {
+ "id": 14229,
+ "start": 6917.8,
+ "end": 6918.04,
+ "text": "their"
+ },
+ {
+ "id": 14230,
+ "start": 6918.04,
+ "end": 6918.56,
+ "text": "information"
+ },
+ {
+ "id": 14231,
+ "start": 6918.56,
+ "end": 6918.74,
+ "text": "is"
+ },
+ {
+ "id": 14232,
+ "start": 6918.74,
+ "end": 6918.9,
+ "text": "going"
+ },
+ {
+ "id": 14233,
+ "start": 6918.9,
+ "end": 6918.98,
+ "text": "to"
+ },
+ {
+ "id": 14234,
+ "start": 6918.98,
+ "end": 6919.08,
+ "text": "be"
+ },
+ {
+ "id": 14235,
+ "start": 6919.08,
+ "end": 6919.34,
+ "text": "used."
+ },
+ {
+ "id": 14236,
+ "start": 6919.34,
+ "end": 6919.58,
+ "text": "How"
+ },
+ {
+ "id": 14237,
+ "start": 6919.58,
+ "end": 6920.14,
+ "text": "Facebook"
+ },
+ {
+ "id": 14238,
+ "start": 6920.14,
+ "end": 6920.58,
+ "text": "is"
+ },
+ {
+ "id": 14239,
+ "start": 6920.58,
+ "end": 6920.74,
+ "text": "going"
+ },
+ {
+ "id": 14240,
+ "start": 6920.74,
+ "end": 6920.82,
+ "text": "to"
+ },
+ {
+ "id": 14241,
+ "start": 6920.82,
+ "end": 6921.96,
+ "text": "operate"
+ },
+ {
+ "id": 14242,
+ "start": 6921.96,
+ "end": 6922.94,
+ "text": "but"
+ },
+ {
+ "id": 14243,
+ "start": 6922.94,
+ "end": 6923.18,
+ "text": "you"
+ },
+ {
+ "id": 14244,
+ "start": 6923.18,
+ "end": 6923.4,
+ "text": "can"
+ },
+ {
+ "id": 14245,
+ "start": 6923.4,
+ "end": 6923.7,
+ "text": "see"
+ },
+ {
+ "id": 14246,
+ "start": 6923.7,
+ "end": 6923.92,
+ "text": "that"
+ },
+ {
+ "id": 14247,
+ "start": 6923.92,
+ "end": 6924.96,
+ "text": "you"
+ },
+ {
+ "id": 14248,
+ "start": 6924.96,
+ "end": 6925.9,
+ "text": "doubt."
+ },
+ {
+ "id": 14249,
+ "start": 6925.9,
+ "end": 6926.94,
+ "text": "Everybody"
+ },
+ {
+ "id": 14250,
+ "start": 6926.94,
+ "end": 6928,
+ "text": "reads"
+ },
+ {
+ "id": 14251,
+ "start": 6928,
+ "end": 6928.4,
+ "text": "or"
+ },
+ {
+ "id": 14252,
+ "start": 6928.4,
+ "end": 6929.82,
+ "text": "understands"
+ },
+ {
+ "id": 14253,
+ "start": 6929.82,
+ "end": 6930.68,
+ "text": "that"
+ },
+ {
+ "id": 14254,
+ "start": 6930.68,
+ "end": 6931.32,
+ "text": "legalese"
+ },
+ {
+ "id": 14255,
+ "start": 6931.32,
+ "end": 6931.6,
+ "text": "those"
+ },
+ {
+ "id": 14256,
+ "start": 6931.6,
+ "end": 6931.92,
+ "text": "terms"
+ },
+ {
+ "id": 14257,
+ "start": 6931.92,
+ "end": 6932.06,
+ "text": "of"
+ },
+ {
+ "id": 14258,
+ "start": 6932.06,
+ "end": 6932.5,
+ "text": "service."
+ },
+ {
+ "id": 14259,
+ "start": 6932.5,
+ "end": 6933.44,
+ "text": "So"
+ },
+ {
+ "id": 14260,
+ "start": 6933.44,
+ "end": 6934.5,
+ "text": "is"
+ },
+ {
+ "id": 14261,
+ "start": 6934.5,
+ "end": 6934.66,
+ "text": "that"
+ },
+ {
+ "id": 14262,
+ "start": 6934.66,
+ "end": 6934.82,
+ "text": "to"
+ },
+ {
+ "id": 14263,
+ "start": 6934.82,
+ "end": 6935.3,
+ "text": "suggest"
+ },
+ {
+ "id": 14264,
+ "start": 6935.3,
+ "end": 6935.5,
+ "text": "that"
+ },
+ {
+ "id": 14265,
+ "start": 6935.5,
+ "end": 6935.76,
+ "text": "the"
+ },
+ {
+ "id": 14266,
+ "start": 6935.76,
+ "end": 6936.46,
+ "text": "consent"
+ },
+ {
+ "id": 14267,
+ "start": 6936.46,
+ "end": 6937.32,
+ "text": "that"
+ },
+ {
+ "id": 14268,
+ "start": 6937.32,
+ "end": 6937.66,
+ "text": "people"
+ },
+ {
+ "id": 14269,
+ "start": 6937.66,
+ "end": 6938.64,
+ "text": "give"
+ },
+ {
+ "id": 14270,
+ "start": 6938.64,
+ "end": 6939.66,
+ "text": "subject"
+ },
+ {
+ "id": 14271,
+ "start": 6939.66,
+ "end": 6939.8,
+ "text": "to"
+ },
+ {
+ "id": 14272,
+ "start": 6939.8,
+ "end": 6939.96,
+ "text": "that"
+ },
+ {
+ "id": 14273,
+ "start": 6939.96,
+ "end": 6940.32,
+ "text": "terms"
+ },
+ {
+ "id": 14274,
+ "start": 6940.32,
+ "end": 6940.44,
+ "text": "of"
+ },
+ {
+ "id": 14275,
+ "start": 6940.44,
+ "end": 6940.78,
+ "text": "service"
+ },
+ {
+ "id": 14276,
+ "start": 6940.78,
+ "end": 6940.92,
+ "text": "is"
+ },
+ {
+ "id": 14277,
+ "start": 6940.92,
+ "end": 6941.18,
+ "text": "not"
+ },
+ {
+ "id": 14278,
+ "start": 6941.18,
+ "end": 6941.84,
+ "text": "informed"
+ },
+ {
+ "id": 14279,
+ "start": 6941.84,
+ "end": 6942.94,
+ "text": "consent."
+ },
+ {
+ "id": 14280,
+ "start": 6942.94,
+ "end": 6943.06,
+ "text": "In"
+ },
+ {
+ "id": 14281,
+ "start": 6943.06,
+ "end": 6943.24,
+ "text": "other"
+ },
+ {
+ "id": 14282,
+ "start": 6943.24,
+ "end": 6943.44,
+ "text": "words,"
+ },
+ {
+ "id": 14283,
+ "start": 6943.44,
+ "end": 6944.04,
+ "text": "they"
+ },
+ {
+ "id": 14284,
+ "start": 6944.04,
+ "end": 6944.2,
+ "text": "may"
+ },
+ {
+ "id": 14285,
+ "start": 6944.2,
+ "end": 6944.36,
+ "text": "not"
+ },
+ {
+ "id": 14286,
+ "start": 6944.36,
+ "end": 6944.56,
+ "text": "read"
+ },
+ {
+ "id": 14287,
+ "start": 6944.56,
+ "end": 6944.68,
+ "text": "it."
+ },
+ {
+ "id": 14288,
+ "start": 6944.68,
+ "end": 6945.02,
+ "text": "And"
+ },
+ {
+ "id": 14289,
+ "start": 6945.02,
+ "end": 6945.22,
+ "text": "even"
+ },
+ {
+ "id": 14290,
+ "start": 6945.22,
+ "end": 6945.34,
+ "text": "if"
+ },
+ {
+ "id": 14291,
+ "start": 6945.34,
+ "end": 6945.46,
+ "text": "they"
+ },
+ {
+ "id": 14292,
+ "start": 6945.46,
+ "end": 6945.66,
+ "text": "read"
+ },
+ {
+ "id": 14293,
+ "start": 6945.66,
+ "end": 6945.74,
+ "text": "it,"
+ },
+ {
+ "id": 14294,
+ "start": 6945.74,
+ "end": 6945.88,
+ "text": "they"
+ },
+ {
+ "id": 14295,
+ "start": 6945.88,
+ "end": 6946.02,
+ "text": "may"
+ },
+ {
+ "id": 14296,
+ "start": 6946.02,
+ "end": 6946.18,
+ "text": "not"
+ },
+ {
+ "id": 14297,
+ "start": 6946.18,
+ "end": 6946.7,
+ "text": "understand"
+ },
+ {
+ "id": 14298,
+ "start": 6946.7,
+ "end": 6947.52,
+ "text": "it,"
+ },
+ {
+ "id": 14299,
+ "start": 6947.52,
+ "end": 6948.3,
+ "text": "I"
+ },
+ {
+ "id": 14300,
+ "start": 6948.3,
+ "end": 6948.52,
+ "text": "just"
+ },
+ {
+ "id": 14301,
+ "start": 6948.52,
+ "end": 6948.7,
+ "text": "think"
+ },
+ {
+ "id": 14302,
+ "start": 6948.7,
+ "end": 6948.82,
+ "text": "we"
+ },
+ {
+ "id": 14303,
+ "start": 6948.82,
+ "end": 6949,
+ "text": "have"
+ },
+ {
+ "id": 14304,
+ "start": 6949,
+ "end": 6949.04,
+ "text": "a"
+ },
+ {
+ "id": 14305,
+ "start": 6949.04,
+ "end": 6949.48,
+ "text": "broader"
+ },
+ {
+ "id": 14306,
+ "start": 6949.48,
+ "end": 6950.4,
+ "text": "responsibility"
+ },
+ {
+ "id": 14307,
+ "start": 6950.4,
+ "end": 6950.82,
+ "text": "than"
+ },
+ {
+ "id": 14308,
+ "start": 6950.82,
+ "end": 6951,
+ "text": "what"
+ },
+ {
+ "id": 14309,
+ "start": 6951,
+ "end": 6951.12,
+ "text": "the"
+ },
+ {
+ "id": 14310,
+ "start": 6951.12,
+ "end": 6951.36,
+ "text": "law"
+ },
+ {
+ "id": 14311,
+ "start": 6951.36,
+ "end": 6951.92,
+ "text": "requires."
+ },
+ {
+ "id": 14312,
+ "start": 6951.92,
+ "end": 6952.88,
+ "text": "So"
+ },
+ {
+ "id": 14313,
+ "start": 6952.88,
+ "end": 6953.86,
+ "text": "I'm"
+ },
+ {
+ "id": 14314,
+ "start": 6953.86,
+ "end": 6954.5,
+ "text": "I'm"
+ },
+ {
+ "id": 14315,
+ "start": 6954.5,
+ "end": 6955.06,
+ "text": "in."
+ },
+ {
+ "id": 14316,
+ "start": 6955.06,
+ "end": 6955.14,
+ "text": "I"
+ },
+ {
+ "id": 14317,
+ "start": 6955.14,
+ "end": 6955.52,
+ "text": "appreciate"
+ },
+ {
+ "id": 14318,
+ "start": 6955.52,
+ "end": 6955.66,
+ "text": "that."
+ },
+ {
+ "id": 14319,
+ "start": 6955.66,
+ "end": 6955.8,
+ "text": "What"
+ },
+ {
+ "id": 14320,
+ "start": 6955.8,
+ "end": 6955.94,
+ "text": "I'm"
+ },
+ {
+ "id": 14321,
+ "start": 6955.94,
+ "end": 6956.28,
+ "text": "asking"
+ },
+ {
+ "id": 14322,
+ "start": 6956.28,
+ "end": 6956.54,
+ "text": "about"
+ },
+ {
+ "id": 14323,
+ "start": 6956.54,
+ "end": 6956.72,
+ "text": "in"
+ },
+ {
+ "id": 14324,
+ "start": 6956.72,
+ "end": 6956.98,
+ "text": "terms"
+ },
+ {
+ "id": 14325,
+ "start": 6956.98,
+ "end": 6957.08,
+ "text": "of"
+ },
+ {
+ "id": 14326,
+ "start": 6957.08,
+ "end": 6957.28,
+ "text": "what"
+ },
+ {
+ "id": 14327,
+ "start": 6957.28,
+ "end": 6957.52,
+ "text": "your"
+ },
+ {
+ "id": 14328,
+ "start": 6957.52,
+ "end": 6958.28,
+ "text": "subscribers"
+ },
+ {
+ "id": 14329,
+ "start": 6958.28,
+ "end": 6959.34,
+ "text": "understand"
+ },
+ {
+ "id": 14330,
+ "start": 6959.34,
+ "end": 6959.48,
+ "text": "in"
+ },
+ {
+ "id": 14331,
+ "start": 6959.48,
+ "end": 6959.76,
+ "text": "terms"
+ },
+ {
+ "id": 14332,
+ "start": 6959.76,
+ "end": 6959.86,
+ "text": "of"
+ },
+ {
+ "id": 14333,
+ "start": 6959.86,
+ "end": 6960.12,
+ "text": "how"
+ },
+ {
+ "id": 14334,
+ "start": 6960.12,
+ "end": 6960.36,
+ "text": "their"
+ },
+ {
+ "id": 14335,
+ "start": 6960.36,
+ "end": 6960.74,
+ "text": "data"
+ },
+ {
+ "id": 14336,
+ "start": 6960.74,
+ "end": 6961.42,
+ "text": "is"
+ },
+ {
+ "id": 14337,
+ "start": 6961.42,
+ "end": 6961.68,
+ "text": "going"
+ },
+ {
+ "id": 14338,
+ "start": 6961.68,
+ "end": 6961.8,
+ "text": "to"
+ },
+ {
+ "id": 14339,
+ "start": 6961.8,
+ "end": 6961.92,
+ "text": "be"
+ },
+ {
+ "id": 14340,
+ "start": 6961.92,
+ "end": 6962.66,
+ "text": "used."
+ },
+ {
+ "id": 14341,
+ "start": 6962.66,
+ "end": 6963.32,
+ "text": "But"
+ },
+ {
+ "id": 14342,
+ "start": 6963.32,
+ "end": 6964.04,
+ "text": "let"
+ },
+ {
+ "id": 14343,
+ "start": 6964.04,
+ "end": 6964.14,
+ "text": "me"
+ },
+ {
+ "id": 14344,
+ "start": 6964.14,
+ "end": 6964.48,
+ "text": "go"
+ },
+ {
+ "id": 14345,
+ "start": 6964.48,
+ "end": 6964.68,
+ "text": "to"
+ },
+ {
+ "id": 14346,
+ "start": 6964.68,
+ "end": 6964.82,
+ "text": "the"
+ },
+ {
+ "id": 14347,
+ "start": 6964.82,
+ "end": 6965.1,
+ "text": "terms"
+ },
+ {
+ "id": 14348,
+ "start": 6965.1,
+ "end": 6965.24,
+ "text": "of"
+ },
+ {
+ "id": 14349,
+ "start": 6965.24,
+ "end": 6965.62,
+ "text": "service"
+ },
+ {
+ "id": 14350,
+ "start": 6965.62,
+ "end": 6966.56,
+ "text": "under"
+ },
+ {
+ "id": 14351,
+ "start": 6966.56,
+ "end": 6967.56,
+ "text": "paragraph"
+ },
+ {
+ "id": 14352,
+ "start": 6967.56,
+ "end": 6967.88,
+ "text": "number"
+ },
+ {
+ "id": 14353,
+ "start": 6967.88,
+ "end": 6968.22,
+ "text": "two."
+ },
+ {
+ "id": 14354,
+ "start": 6968.22,
+ "end": 6968.54,
+ "text": "You"
+ },
+ {
+ "id": 14355,
+ "start": 6968.54,
+ "end": 6968.76,
+ "text": "say"
+ },
+ {
+ "id": 14356,
+ "start": 6968.76,
+ "end": 6969.02,
+ "text": "you"
+ },
+ {
+ "id": 14357,
+ "start": 6969.02,
+ "end": 6969.46,
+ "text": "own"
+ },
+ {
+ "id": 14358,
+ "start": 6969.46,
+ "end": 6969.82,
+ "text": "all"
+ },
+ {
+ "id": 14359,
+ "start": 6969.82,
+ "end": 6969.92,
+ "text": "of"
+ },
+ {
+ "id": 14360,
+ "start": 6969.92,
+ "end": 6970.06,
+ "text": "the"
+ },
+ {
+ "id": 14361,
+ "start": 6970.06,
+ "end": 6970.56,
+ "text": "content"
+ },
+ {
+ "id": 14362,
+ "start": 6970.56,
+ "end": 6970.76,
+ "text": "and"
+ },
+ {
+ "id": 14363,
+ "start": 6970.76,
+ "end": 6971.5,
+ "text": "information"
+ },
+ {
+ "id": 14364,
+ "start": 6971.5,
+ "end": 6972.12,
+ "text": "you"
+ },
+ {
+ "id": 14365,
+ "start": 6972.12,
+ "end": 6972.46,
+ "text": "post"
+ },
+ {
+ "id": 14366,
+ "start": 6972.46,
+ "end": 6972.66,
+ "text": "on"
+ },
+ {
+ "id": 14367,
+ "start": 6972.66,
+ "end": 6973.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 14368,
+ "start": 6973.16,
+ "end": 6973.46,
+ "text": "that's"
+ },
+ {
+ "id": 14369,
+ "start": 6973.46,
+ "end": 6973.76,
+ "text": "what"
+ },
+ {
+ "id": 14370,
+ "start": 6973.76,
+ "end": 6974,
+ "text": "you've"
+ },
+ {
+ "id": 14371,
+ "start": 6974,
+ "end": 6974.16,
+ "text": "told"
+ },
+ {
+ "id": 14372,
+ "start": 6974.16,
+ "end": 6974.28,
+ "text": "us"
+ },
+ {
+ "id": 14373,
+ "start": 6974.28,
+ "end": 6974.46,
+ "text": "here"
+ },
+ {
+ "id": 14374,
+ "start": 6974.46,
+ "end": 6974.8,
+ "text": "today."
+ },
+ {
+ "id": 14375,
+ "start": 6974.8,
+ "end": 6975.46,
+ "text": "A"
+ },
+ {
+ "id": 14376,
+ "start": 6975.46,
+ "end": 6975.74,
+ "text": "number"
+ },
+ {
+ "id": 14377,
+ "start": 6975.74,
+ "end": 6975.82,
+ "text": "of"
+ },
+ {
+ "id": 14378,
+ "start": 6975.82,
+ "end": 6976.64,
+ "text": "times."
+ },
+ {
+ "id": 14379,
+ "start": 6976.64,
+ "end": 6977.54,
+ "text": "So"
+ },
+ {
+ "id": 14380,
+ "start": 6977.54,
+ "end": 6978.54,
+ "text": "if"
+ },
+ {
+ "id": 14381,
+ "start": 6978.54,
+ "end": 6978.66,
+ "text": "I"
+ },
+ {
+ "id": 14382,
+ "start": 6978.66,
+ "end": 6979.24,
+ "text": "choose"
+ },
+ {
+ "id": 14383,
+ "start": 6979.24,
+ "end": 6979.8,
+ "text": "to"
+ },
+ {
+ "id": 14384,
+ "start": 6979.8,
+ "end": 6980.76,
+ "text": "terminate"
+ },
+ {
+ "id": 14385,
+ "start": 6980.76,
+ "end": 6981.62,
+ "text": "my"
+ },
+ {
+ "id": 14386,
+ "start": 6981.62,
+ "end": 6982.48,
+ "text": "Facebook"
+ },
+ {
+ "id": 14387,
+ "start": 6982.48,
+ "end": 6983.48,
+ "text": "account."
+ },
+ {
+ "id": 14388,
+ "start": 6983.48,
+ "end": 6984.62,
+ "text": "Can"
+ },
+ {
+ "id": 14389,
+ "start": 6984.62,
+ "end": 6984.84,
+ "text": "I"
+ },
+ {
+ "id": 14390,
+ "start": 6984.84,
+ "end": 6985.5,
+ "text": "bar"
+ },
+ {
+ "id": 14391,
+ "start": 6985.5,
+ "end": 6986.6,
+ "text": "Facebook"
+ },
+ {
+ "id": 14392,
+ "start": 6986.6,
+ "end": 6986.78,
+ "text": "or"
+ },
+ {
+ "id": 14393,
+ "start": 6986.78,
+ "end": 6987.04,
+ "text": "any"
+ },
+ {
+ "id": 14394,
+ "start": 6987.04,
+ "end": 6987.34,
+ "text": "third"
+ },
+ {
+ "id": 14395,
+ "start": 6987.34,
+ "end": 6987.74,
+ "text": "parties"
+ },
+ {
+ "id": 14396,
+ "start": 6987.74,
+ "end": 6988.08,
+ "text": "from"
+ },
+ {
+ "id": 14397,
+ "start": 6988.08,
+ "end": 6988.62,
+ "text": "using"
+ },
+ {
+ "id": 14398,
+ "start": 6988.62,
+ "end": 6988.78,
+ "text": "the"
+ },
+ {
+ "id": 14399,
+ "start": 6988.78,
+ "end": 6989.14,
+ "text": "data"
+ },
+ {
+ "id": 14400,
+ "start": 6989.14,
+ "end": 6989.32,
+ "text": "that"
+ },
+ {
+ "id": 14401,
+ "start": 6989.32,
+ "end": 6989.36,
+ "text": "I"
+ },
+ {
+ "id": 14402,
+ "start": 6989.36,
+ "end": 6989.6,
+ "text": "had"
+ },
+ {
+ "id": 14403,
+ "start": 6989.6,
+ "end": 6990.1,
+ "text": "previously"
+ },
+ {
+ "id": 14404,
+ "start": 6990.1,
+ "end": 6990.74,
+ "text": "supplied"
+ },
+ {
+ "id": 14405,
+ "start": 6990.74,
+ "end": 6991.64,
+ "text": "for"
+ },
+ {
+ "id": 14406,
+ "start": 6991.64,
+ "end": 6991.88,
+ "text": "any"
+ },
+ {
+ "id": 14407,
+ "start": 6991.88,
+ "end": 6992.18,
+ "text": "purpose"
+ },
+ {
+ "id": 14408,
+ "start": 6992.18,
+ "end": 6993.34,
+ "text": "whatsoever?"
+ },
+ {
+ "id": 14409,
+ "start": 6993.34,
+ "end": 6994.02,
+ "text": "Yes,"
+ },
+ {
+ "id": 14410,
+ "start": 6994.02,
+ "end": 6994.52,
+ "text": "Senator,"
+ },
+ {
+ "id": 14411,
+ "start": 6994.52,
+ "end": 6994.66,
+ "text": "if"
+ },
+ {
+ "id": 14412,
+ "start": 6994.66,
+ "end": 6994.78,
+ "text": "you"
+ },
+ {
+ "id": 14413,
+ "start": 6994.78,
+ "end": 6995.12,
+ "text": "delete"
+ },
+ {
+ "id": 14414,
+ "start": 6995.12,
+ "end": 6995.28,
+ "text": "your"
+ },
+ {
+ "id": 14415,
+ "start": 6995.28,
+ "end": 6995.6,
+ "text": "account,"
+ },
+ {
+ "id": 14416,
+ "start": 6995.6,
+ "end": 6995.78,
+ "text": "we"
+ },
+ {
+ "id": 14417,
+ "start": 6995.78,
+ "end": 6996.08,
+ "text": "should"
+ },
+ {
+ "id": 14418,
+ "start": 6996.08,
+ "end": 6996.22,
+ "text": "get"
+ },
+ {
+ "id": 14419,
+ "start": 6996.22,
+ "end": 6996.4,
+ "text": "rid"
+ },
+ {
+ "id": 14420,
+ "start": 6996.4,
+ "end": 6996.5,
+ "text": "of"
+ },
+ {
+ "id": 14421,
+ "start": 6996.5,
+ "end": 6996.64,
+ "text": "all"
+ },
+ {
+ "id": 14422,
+ "start": 6996.64,
+ "end": 6996.72,
+ "text": "of"
+ },
+ {
+ "id": 14423,
+ "start": 6996.72,
+ "end": 6996.88,
+ "text": "your"
+ },
+ {
+ "id": 14424,
+ "start": 6996.88,
+ "end": 6997.38,
+ "text": "information"
+ },
+ {
+ "id": 14425,
+ "start": 6997.38,
+ "end": 6997.88,
+ "text": "you"
+ },
+ {
+ "id": 14426,
+ "start": 6997.88,
+ "end": 6998.18,
+ "text": "should"
+ },
+ {
+ "id": 14427,
+ "start": 6998.18,
+ "end": 6998.32,
+ "text": "or"
+ },
+ {
+ "id": 14428,
+ "start": 6998.32,
+ "end": 6998.5,
+ "text": "we"
+ },
+ {
+ "id": 14429,
+ "start": 6998.5,
+ "end": 6998.68,
+ "text": "do"
+ },
+ {
+ "id": 14430,
+ "start": 6998.68,
+ "end": 6999,
+ "text": "you"
+ },
+ {
+ "id": 14431,
+ "start": 6999,
+ "end": 6999.54,
+ "text": "we"
+ },
+ {
+ "id": 14432,
+ "start": 6999.54,
+ "end": 6999.74,
+ "text": "do."
+ },
+ {
+ "id": 14433,
+ "start": 6999.74,
+ "end": 7000,
+ "text": "How"
+ },
+ {
+ "id": 14434,
+ "start": 7000,
+ "end": 7000.2,
+ "text": "about"
+ },
+ {
+ "id": 14435,
+ "start": 7000.2,
+ "end": 7000.58,
+ "text": "third"
+ },
+ {
+ "id": 14436,
+ "start": 7000.58,
+ "end": 7000.98,
+ "text": "parties"
+ },
+ {
+ "id": 14437,
+ "start": 7000.98,
+ "end": 7001.22,
+ "text": "that"
+ },
+ {
+ "id": 14438,
+ "start": 7001.22,
+ "end": 7001.46,
+ "text": "you"
+ },
+ {
+ "id": 14439,
+ "start": 7001.46,
+ "end": 7002.12,
+ "text": "have"
+ },
+ {
+ "id": 14440,
+ "start": 7002.12,
+ "end": 7003.12,
+ "text": "contracted"
+ },
+ {
+ "id": 14441,
+ "start": 7003.12,
+ "end": 7003.38,
+ "text": "with"
+ },
+ {
+ "id": 14442,
+ "start": 7003.38,
+ "end": 7003.54,
+ "text": "to"
+ },
+ {
+ "id": 14443,
+ "start": 7003.54,
+ "end": 7003.9,
+ "text": "use"
+ },
+ {
+ "id": 14444,
+ "start": 7003.9,
+ "end": 7004.5,
+ "text": "some"
+ },
+ {
+ "id": 14445,
+ "start": 7004.5,
+ "end": 7004.6,
+ "text": "of"
+ },
+ {
+ "id": 14446,
+ "start": 7004.6,
+ "end": 7004.8,
+ "text": "that"
+ },
+ {
+ "id": 14447,
+ "start": 7004.8,
+ "end": 7005.62,
+ "text": "underlying"
+ },
+ {
+ "id": 14448,
+ "start": 7005.62,
+ "end": 7006.28,
+ "text": "information,"
+ },
+ {
+ "id": 14449,
+ "start": 7006.28,
+ "end": 7006.74,
+ "text": "perhaps"
+ },
+ {
+ "id": 14450,
+ "start": 7006.74,
+ "end": 7007.4,
+ "text": "to"
+ },
+ {
+ "id": 14451,
+ "start": 7007.4,
+ "end": 7007.82,
+ "text": "target"
+ },
+ {
+ "id": 14452,
+ "start": 7007.82,
+ "end": 7008.62,
+ "text": "advertising"
+ },
+ {
+ "id": 14453,
+ "start": 7008.62,
+ "end": 7009.44,
+ "text": "for"
+ },
+ {
+ "id": 14454,
+ "start": 7009.44,
+ "end": 7009.94,
+ "text": "themselves."
+ },
+ {
+ "id": 14455,
+ "start": 7009.94,
+ "end": 7010.12,
+ "text": "You"
+ },
+ {
+ "id": 14456,
+ "start": 7010.12,
+ "end": 7011.98,
+ "text": "can"
+ },
+ {
+ "id": 14457,
+ "start": 7011.98,
+ "end": 7012.54,
+ "text": "with"
+ },
+ {
+ "id": 14458,
+ "start": 7012.54,
+ "end": 7012.82,
+ "text": "do"
+ },
+ {
+ "id": 14459,
+ "start": 7012.82,
+ "end": 7012.96,
+ "text": "you"
+ },
+ {
+ "id": 14460,
+ "start": 7012.96,
+ "end": 7013.28,
+ "text": "call"
+ },
+ {
+ "id": 14461,
+ "start": 7013.28,
+ "end": 7013.52,
+ "text": "back"
+ },
+ {
+ "id": 14462,
+ "start": 7013.52,
+ "end": 7014.32,
+ "text": "that"
+ },
+ {
+ "id": 14463,
+ "start": 7014.32,
+ "end": 7014.92,
+ "text": "information"
+ },
+ {
+ "id": 14464,
+ "start": 7014.92,
+ "end": 7015.08,
+ "text": "as"
+ },
+ {
+ "id": 14465,
+ "start": 7015.08,
+ "end": 7015.32,
+ "text": "well."
+ },
+ {
+ "id": 14466,
+ "start": 7015.32,
+ "end": 7015.42,
+ "text": "Or"
+ },
+ {
+ "id": 14467,
+ "start": 7015.42,
+ "end": 7015.76,
+ "text": "does"
+ },
+ {
+ "id": 14468,
+ "start": 7015.76,
+ "end": 7015.94,
+ "text": "that"
+ },
+ {
+ "id": 14469,
+ "start": 7015.94,
+ "end": 7016.34,
+ "text": "remain"
+ },
+ {
+ "id": 14470,
+ "start": 7016.34,
+ "end": 7016.44,
+ "text": "in"
+ },
+ {
+ "id": 14471,
+ "start": 7016.44,
+ "end": 7017,
+ "text": "their"
+ },
+ {
+ "id": 14472,
+ "start": 7017,
+ "end": 7017.98,
+ "text": "senator,"
+ },
+ {
+ "id": 14473,
+ "start": 7017.98,
+ "end": 7018.14,
+ "text": "this"
+ },
+ {
+ "id": 14474,
+ "start": 7018.14,
+ "end": 7018.24,
+ "text": "is"
+ },
+ {
+ "id": 14475,
+ "start": 7018.24,
+ "end": 7018.52,
+ "text": "actually"
+ },
+ {
+ "id": 14476,
+ "start": 7018.52,
+ "end": 7018.6,
+ "text": "a"
+ },
+ {
+ "id": 14477,
+ "start": 7018.6,
+ "end": 7018.84,
+ "text": "very"
+ },
+ {
+ "id": 14478,
+ "start": 7018.84,
+ "end": 7019.26,
+ "text": "important"
+ },
+ {
+ "id": 14479,
+ "start": 7019.26,
+ "end": 7019.58,
+ "text": "question"
+ },
+ {
+ "id": 14480,
+ "start": 7019.58,
+ "end": 7019.8,
+ "text": "I'm"
+ },
+ {
+ "id": 14481,
+ "start": 7019.8,
+ "end": 7020,
+ "text": "glad"
+ },
+ {
+ "id": 14482,
+ "start": 7020,
+ "end": 7020.16,
+ "text": "you"
+ },
+ {
+ "id": 14483,
+ "start": 7020.16,
+ "end": 7020.38,
+ "text": "brought"
+ },
+ {
+ "id": 14484,
+ "start": 7020.38,
+ "end": 7020.52,
+ "text": "this"
+ },
+ {
+ "id": 14485,
+ "start": 7020.52,
+ "end": 7020.7,
+ "text": "up"
+ },
+ {
+ "id": 14486,
+ "start": 7020.7,
+ "end": 7020.94,
+ "text": "because"
+ },
+ {
+ "id": 14487,
+ "start": 7020.94,
+ "end": 7021.18,
+ "text": "there's"
+ },
+ {
+ "id": 14488,
+ "start": 7021.18,
+ "end": 7021.52,
+ "text": "a"
+ },
+ {
+ "id": 14489,
+ "start": 7021.52,
+ "end": 7021.8,
+ "text": "very"
+ },
+ {
+ "id": 14490,
+ "start": 7021.8,
+ "end": 7022.16,
+ "text": "common"
+ },
+ {
+ "id": 14491,
+ "start": 7022.16,
+ "end": 7022.88,
+ "text": "misperception"
+ },
+ {
+ "id": 14492,
+ "start": 7022.88,
+ "end": 7023.2,
+ "text": "about"
+ },
+ {
+ "id": 14493,
+ "start": 7023.2,
+ "end": 7023.68,
+ "text": "Facebook"
+ },
+ {
+ "id": 14494,
+ "start": 7023.68,
+ "end": 7024.14,
+ "text": "that"
+ },
+ {
+ "id": 14495,
+ "start": 7024.14,
+ "end": 7024.32,
+ "text": "we"
+ },
+ {
+ "id": 14496,
+ "start": 7024.32,
+ "end": 7024.62,
+ "text": "sell"
+ },
+ {
+ "id": 14497,
+ "start": 7024.62,
+ "end": 7024.96,
+ "text": "data"
+ },
+ {
+ "id": 14498,
+ "start": 7024.96,
+ "end": 7025.06,
+ "text": "to"
+ },
+ {
+ "id": 14499,
+ "start": 7025.06,
+ "end": 7025.78,
+ "text": "advertisers"
+ },
+ {
+ "id": 14500,
+ "start": 7025.78,
+ "end": 7026.4,
+ "text": "and"
+ },
+ {
+ "id": 14501,
+ "start": 7026.4,
+ "end": 7026.56,
+ "text": "we"
+ },
+ {
+ "id": 14502,
+ "start": 7026.56,
+ "end": 7026.72,
+ "text": "do"
+ },
+ {
+ "id": 14503,
+ "start": 7026.72,
+ "end": 7026.92,
+ "text": "not"
+ },
+ {
+ "id": 14504,
+ "start": 7026.92,
+ "end": 7027.16,
+ "text": "sell"
+ },
+ {
+ "id": 14505,
+ "start": 7027.16,
+ "end": 7027.4,
+ "text": "data"
+ },
+ {
+ "id": 14506,
+ "start": 7027.4,
+ "end": 7027.48,
+ "text": "to"
+ },
+ {
+ "id": 14507,
+ "start": 7027.48,
+ "end": 7028.1,
+ "text": "advertisers."
+ },
+ {
+ "id": 14508,
+ "start": 7028.1,
+ "end": 7028.32,
+ "text": "We"
+ },
+ {
+ "id": 14509,
+ "start": 7028.32,
+ "end": 7028.48,
+ "text": "don't"
+ },
+ {
+ "id": 14510,
+ "start": 7028.48,
+ "end": 7028.64,
+ "text": "sell"
+ },
+ {
+ "id": 14511,
+ "start": 7028.64,
+ "end": 7029.32,
+ "text": "eerily"
+ },
+ {
+ "id": 14512,
+ "start": 7029.32,
+ "end": 7030.4,
+ "text": "rented."
+ },
+ {
+ "id": 14513,
+ "start": 7030.4,
+ "end": 7031.26,
+ "text": "What"
+ },
+ {
+ "id": 14514,
+ "start": 7031.26,
+ "end": 7031.42,
+ "text": "we"
+ },
+ {
+ "id": 14515,
+ "start": 7031.42,
+ "end": 7031.76,
+ "text": "allow"
+ },
+ {
+ "id": 14516,
+ "start": 7031.76,
+ "end": 7032.1,
+ "text": "is"
+ },
+ {
+ "id": 14517,
+ "start": 7032.1,
+ "end": 7032.32,
+ "text": "for"
+ },
+ {
+ "id": 14518,
+ "start": 7032.32,
+ "end": 7033.02,
+ "text": "advertisers"
+ },
+ {
+ "id": 14519,
+ "start": 7033.02,
+ "end": 7033.24,
+ "text": "to"
+ },
+ {
+ "id": 14520,
+ "start": 7033.24,
+ "end": 7033.9,
+ "text": "tell"
+ },
+ {
+ "id": 14521,
+ "start": 7033.9,
+ "end": 7034.04,
+ "text": "us"
+ },
+ {
+ "id": 14522,
+ "start": 7034.04,
+ "end": 7034.22,
+ "text": "who"
+ },
+ {
+ "id": 14523,
+ "start": 7034.22,
+ "end": 7034.4,
+ "text": "they"
+ },
+ {
+ "id": 14524,
+ "start": 7034.4,
+ "end": 7034.54,
+ "text": "want"
+ },
+ {
+ "id": 14525,
+ "start": 7034.54,
+ "end": 7034.62,
+ "text": "to"
+ },
+ {
+ "id": 14526,
+ "start": 7034.62,
+ "end": 7034.84,
+ "text": "reach."
+ },
+ {
+ "id": 14527,
+ "start": 7034.84,
+ "end": 7035.62,
+ "text": "And"
+ },
+ {
+ "id": 14528,
+ "start": 7035.62,
+ "end": 7035.82,
+ "text": "then"
+ },
+ {
+ "id": 14529,
+ "start": 7035.82,
+ "end": 7036.12,
+ "text": "we"
+ },
+ {
+ "id": 14530,
+ "start": 7036.12,
+ "end": 7036.3,
+ "text": "do"
+ },
+ {
+ "id": 14531,
+ "start": 7036.3,
+ "end": 7036.5,
+ "text": "the"
+ },
+ {
+ "id": 14532,
+ "start": 7036.5,
+ "end": 7036.92,
+ "text": "placement."
+ },
+ {
+ "id": 14533,
+ "start": 7036.92,
+ "end": 7037.44,
+ "text": "So"
+ },
+ {
+ "id": 14534,
+ "start": 7037.44,
+ "end": 7037.84,
+ "text": "if"
+ },
+ {
+ "id": 14535,
+ "start": 7037.84,
+ "end": 7037.96,
+ "text": "an"
+ },
+ {
+ "id": 14536,
+ "start": 7037.96,
+ "end": 7038.54,
+ "text": "advertiser"
+ },
+ {
+ "id": 14537,
+ "start": 7038.54,
+ "end": 7038.78,
+ "text": "comes"
+ },
+ {
+ "id": 14538,
+ "start": 7038.78,
+ "end": 7038.88,
+ "text": "to"
+ },
+ {
+ "id": 14539,
+ "start": 7038.88,
+ "end": 7038.98,
+ "text": "us"
+ },
+ {
+ "id": 14540,
+ "start": 7038.98,
+ "end": 7039.14,
+ "text": "and"
+ },
+ {
+ "id": 14541,
+ "start": 7039.14,
+ "end": 7039.44,
+ "text": "says,"
+ },
+ {
+ "id": 14542,
+ "start": 7039.44,
+ "end": 7040.06,
+ "text": "all"
+ },
+ {
+ "id": 14543,
+ "start": 7040.06,
+ "end": 7040.26,
+ "text": "right"
+ },
+ {
+ "id": 14544,
+ "start": 7040.26,
+ "end": 7040.62,
+ "text": "I'm"
+ },
+ {
+ "id": 14545,
+ "start": 7040.62,
+ "end": 7040.74,
+ "text": "a"
+ },
+ {
+ "id": 14546,
+ "start": 7040.74,
+ "end": 7041.1,
+ "text": "ski"
+ },
+ {
+ "id": 14547,
+ "start": 7041.1,
+ "end": 7041.44,
+ "text": "shop."
+ },
+ {
+ "id": 14548,
+ "start": 7041.44,
+ "end": 7041.68,
+ "text": "And"
+ },
+ {
+ "id": 14549,
+ "start": 7041.68,
+ "end": 7041.88,
+ "text": "I"
+ },
+ {
+ "id": 14550,
+ "start": 7041.88,
+ "end": 7042.3,
+ "text": "want"
+ },
+ {
+ "id": 14551,
+ "start": 7042.3,
+ "end": 7042.38,
+ "text": "to"
+ },
+ {
+ "id": 14552,
+ "start": 7042.38,
+ "end": 7042.62,
+ "text": "sell"
+ },
+ {
+ "id": 14553,
+ "start": 7042.62,
+ "end": 7043.12,
+ "text": "skis"
+ },
+ {
+ "id": 14554,
+ "start": 7043.12,
+ "end": 7043.42,
+ "text": "to"
+ },
+ {
+ "id": 14555,
+ "start": 7043.42,
+ "end": 7044.62,
+ "text": "women."
+ },
+ {
+ "id": 14556,
+ "start": 7044.62,
+ "end": 7045.34,
+ "text": "Then"
+ },
+ {
+ "id": 14557,
+ "start": 7045.34,
+ "end": 7046.06,
+ "text": "we"
+ },
+ {
+ "id": 14558,
+ "start": 7046.06,
+ "end": 7046.34,
+ "text": "might"
+ },
+ {
+ "id": 14559,
+ "start": 7046.34,
+ "end": 7046.6,
+ "text": "have"
+ },
+ {
+ "id": 14560,
+ "start": 7046.6,
+ "end": 7046.84,
+ "text": "some"
+ },
+ {
+ "id": 14561,
+ "start": 7046.84,
+ "end": 7047.16,
+ "text": "sense"
+ },
+ {
+ "id": 14562,
+ "start": 7047.16,
+ "end": 7047.44,
+ "text": "because"
+ },
+ {
+ "id": 14563,
+ "start": 7047.44,
+ "end": 7047.68,
+ "text": "people"
+ },
+ {
+ "id": 14564,
+ "start": 7047.68,
+ "end": 7048.1,
+ "text": "shared"
+ },
+ {
+ "id": 14565,
+ "start": 7048.1,
+ "end": 7048.74,
+ "text": "skiing"
+ },
+ {
+ "id": 14566,
+ "start": 7048.74,
+ "end": 7049.1,
+ "text": "related"
+ },
+ {
+ "id": 14567,
+ "start": 7049.1,
+ "end": 7049.5,
+ "text": "content"
+ },
+ {
+ "id": 14568,
+ "start": 7049.5,
+ "end": 7049.64,
+ "text": "or"
+ },
+ {
+ "id": 14569,
+ "start": 7049.64,
+ "end": 7049.84,
+ "text": "said"
+ },
+ {
+ "id": 14570,
+ "start": 7049.84,
+ "end": 7049.98,
+ "text": "they"
+ },
+ {
+ "id": 14571,
+ "start": 7049.98,
+ "end": 7050.14,
+ "text": "were"
+ },
+ {
+ "id": 14572,
+ "start": 7050.14,
+ "end": 7050.62,
+ "text": "interested"
+ },
+ {
+ "id": 14573,
+ "start": 7050.62,
+ "end": 7050.74,
+ "text": "in"
+ },
+ {
+ "id": 14574,
+ "start": 7050.74,
+ "end": 7051.42,
+ "text": "that"
+ },
+ {
+ "id": 14575,
+ "start": 7051.42,
+ "end": 7052.02,
+ "text": "they"
+ },
+ {
+ "id": 14576,
+ "start": 7052.02,
+ "end": 7052.32,
+ "text": "shared."
+ },
+ {
+ "id": 14577,
+ "start": 7052.32,
+ "end": 7052.64,
+ "text": "Whether"
+ },
+ {
+ "id": 14578,
+ "start": 7052.64,
+ "end": 7052.88,
+ "text": "they're"
+ },
+ {
+ "id": 14579,
+ "start": 7052.88,
+ "end": 7052.92,
+ "text": "a"
+ },
+ {
+ "id": 14580,
+ "start": 7052.92,
+ "end": 7053.18,
+ "text": "woman"
+ },
+ {
+ "id": 14581,
+ "start": 7053.18,
+ "end": 7053.74,
+ "text": "and"
+ },
+ {
+ "id": 14582,
+ "start": 7053.74,
+ "end": 7053.9,
+ "text": "then"
+ },
+ {
+ "id": 14583,
+ "start": 7053.9,
+ "end": 7054.04,
+ "text": "we"
+ },
+ {
+ "id": 14584,
+ "start": 7054.04,
+ "end": 7054.2,
+ "text": "can"
+ },
+ {
+ "id": 14585,
+ "start": 7054.2,
+ "end": 7054.42,
+ "text": "show"
+ },
+ {
+ "id": 14586,
+ "start": 7054.42,
+ "end": 7054.54,
+ "text": "the"
+ },
+ {
+ "id": 14587,
+ "start": 7054.54,
+ "end": 7054.76,
+ "text": "ads"
+ },
+ {
+ "id": 14588,
+ "start": 7054.76,
+ "end": 7054.9,
+ "text": "to"
+ },
+ {
+ "id": 14589,
+ "start": 7054.9,
+ "end": 7055,
+ "text": "the"
+ },
+ {
+ "id": 14590,
+ "start": 7055,
+ "end": 7055.2,
+ "text": "right"
+ },
+ {
+ "id": 14591,
+ "start": 7055.2,
+ "end": 7055.46,
+ "text": "people"
+ },
+ {
+ "id": 14592,
+ "start": 7055.46,
+ "end": 7055.8,
+ "text": "without"
+ },
+ {
+ "id": 14593,
+ "start": 7055.8,
+ "end": 7056.36,
+ "text": "that"
+ },
+ {
+ "id": 14594,
+ "start": 7056.36,
+ "end": 7056.62,
+ "text": "data."
+ },
+ {
+ "id": 14595,
+ "start": 7056.62,
+ "end": 7056.94,
+ "text": "Ever"
+ },
+ {
+ "id": 14596,
+ "start": 7056.94,
+ "end": 7057.3,
+ "text": "changing"
+ },
+ {
+ "id": 14597,
+ "start": 7057.3,
+ "end": 7057.7,
+ "text": "hands"
+ },
+ {
+ "id": 14598,
+ "start": 7057.7,
+ "end": 7058.26,
+ "text": "and"
+ },
+ {
+ "id": 14599,
+ "start": 7058.26,
+ "end": 7058.52,
+ "text": "going"
+ },
+ {
+ "id": 14600,
+ "start": 7058.52,
+ "end": 7058.68,
+ "text": "to"
+ },
+ {
+ "id": 14601,
+ "start": 7058.68,
+ "end": 7058.78,
+ "text": "the"
+ },
+ {
+ "id": 14602,
+ "start": 7058.78,
+ "end": 7059.36,
+ "text": "advertiser"
+ },
+ {
+ "id": 14603,
+ "start": 7059.36,
+ "end": 7059.56,
+ "text": "that's"
+ },
+ {
+ "id": 14604,
+ "start": 7059.56,
+ "end": 7059.64,
+ "text": "a"
+ },
+ {
+ "id": 14605,
+ "start": 7059.64,
+ "end": 7059.92,
+ "text": "very"
+ },
+ {
+ "id": 14606,
+ "start": 7059.92,
+ "end": 7060.48,
+ "text": "fundamental"
+ },
+ {
+ "id": 14607,
+ "start": 7060.48,
+ "end": 7060.72,
+ "text": "part"
+ },
+ {
+ "id": 14608,
+ "start": 7060.72,
+ "end": 7060.8,
+ "text": "of"
+ },
+ {
+ "id": 14609,
+ "start": 7060.8,
+ "end": 7060.94,
+ "text": "how"
+ },
+ {
+ "id": 14610,
+ "start": 7060.94,
+ "end": 7061.1,
+ "text": "our"
+ },
+ {
+ "id": 14611,
+ "start": 7061.1,
+ "end": 7061.38,
+ "text": "model"
+ },
+ {
+ "id": 14612,
+ "start": 7061.38,
+ "end": 7061.64,
+ "text": "works"
+ },
+ {
+ "id": 14613,
+ "start": 7061.64,
+ "end": 7062.18,
+ "text": "and"
+ },
+ {
+ "id": 14614,
+ "start": 7062.18,
+ "end": 7062.46,
+ "text": "something"
+ },
+ {
+ "id": 14615,
+ "start": 7062.46,
+ "end": 7062.58,
+ "text": "that"
+ },
+ {
+ "id": 14616,
+ "start": 7062.58,
+ "end": 7062.76,
+ "text": "is"
+ },
+ {
+ "id": 14617,
+ "start": 7062.76,
+ "end": 7063.32,
+ "text": "often"
+ },
+ {
+ "id": 14618,
+ "start": 7063.32,
+ "end": 7064,
+ "text": "misunderstood,"
+ },
+ {
+ "id": 14619,
+ "start": 7064,
+ "end": 7064.18,
+ "text": "so"
+ },
+ {
+ "id": 14620,
+ "start": 7064.18,
+ "end": 7064.86,
+ "text": "I"
+ },
+ {
+ "id": 14621,
+ "start": 7064.86,
+ "end": 7065.24,
+ "text": "appreciate"
+ },
+ {
+ "id": 14622,
+ "start": 7065.24,
+ "end": 7065.36,
+ "text": "that"
+ },
+ {
+ "id": 14623,
+ "start": 7065.36,
+ "end": 7065.48,
+ "text": "you"
+ },
+ {
+ "id": 14624,
+ "start": 7065.48,
+ "end": 7065.68,
+ "text": "brought"
+ },
+ {
+ "id": 14625,
+ "start": 7065.68,
+ "end": 7065.8,
+ "text": "that"
+ },
+ {
+ "id": 14626,
+ "start": 7065.8,
+ "end": 7066.42,
+ "text": "up."
+ },
+ {
+ "id": 14627,
+ "start": 7066.42,
+ "end": 7067.08,
+ "text": "Thank"
+ },
+ {
+ "id": 14628,
+ "start": 7067.08,
+ "end": 7067.2,
+ "text": "you,"
+ },
+ {
+ "id": 14629,
+ "start": 7067.2,
+ "end": 7067.44,
+ "text": "Senator"
+ },
+ {
+ "id": 14630,
+ "start": 7067.44,
+ "end": 7067.78,
+ "text": "Cornyn."
+ },
+ {
+ "id": 14631,
+ "start": 7067.78,
+ "end": 7068.5,
+ "text": "We"
+ },
+ {
+ "id": 14632,
+ "start": 7068.5,
+ "end": 7068.62,
+ "text": "had"
+ },
+ {
+ "id": 14633,
+ "start": 7068.62,
+ "end": 7069.04,
+ "text": "indicated"
+ },
+ {
+ "id": 14634,
+ "start": 7069.04,
+ "end": 7069.42,
+ "text": "earlier"
+ },
+ {
+ "id": 14635,
+ "start": 7069.42,
+ "end": 7069.6,
+ "text": "on"
+ },
+ {
+ "id": 14636,
+ "start": 7069.6,
+ "end": 7069.76,
+ "text": "that"
+ },
+ {
+ "id": 14637,
+ "start": 7069.76,
+ "end": 7069.92,
+ "text": "we"
+ },
+ {
+ "id": 14638,
+ "start": 7069.92,
+ "end": 7070.18,
+ "text": "would"
+ },
+ {
+ "id": 14639,
+ "start": 7070.18,
+ "end": 7070.88,
+ "text": "take"
+ },
+ {
+ "id": 14640,
+ "start": 7070.88,
+ "end": 7070.92,
+ "text": "a"
+ },
+ {
+ "id": 14641,
+ "start": 7070.92,
+ "end": 7071.22,
+ "text": "couple"
+ },
+ {
+ "id": 14642,
+ "start": 7071.22,
+ "end": 7071.32,
+ "text": "of"
+ },
+ {
+ "id": 14643,
+ "start": 7071.32,
+ "end": 7071.56,
+ "text": "breaks."
+ },
+ {
+ "id": 14644,
+ "start": 7071.56,
+ "end": 7071.74,
+ "text": "Give"
+ },
+ {
+ "id": 14645,
+ "start": 7071.74,
+ "end": 7071.86,
+ "text": "our"
+ },
+ {
+ "id": 14646,
+ "start": 7071.86,
+ "end": 7072.16,
+ "text": "witness,"
+ },
+ {
+ "id": 14647,
+ "start": 7072.16,
+ "end": 7072.26,
+ "text": "an"
+ },
+ {
+ "id": 14648,
+ "start": 7072.26,
+ "end": 7072.92,
+ "text": "opportunity."
+ },
+ {
+ "id": 14649,
+ "start": 7072.92,
+ "end": 7074,
+ "text": "And"
+ },
+ {
+ "id": 14650,
+ "start": 7074,
+ "end": 7074.12,
+ "text": "I"
+ },
+ {
+ "id": 14651,
+ "start": 7074.12,
+ "end": 7074.3,
+ "text": "think"
+ },
+ {
+ "id": 14652,
+ "start": 7074.3,
+ "end": 7074.48,
+ "text": "we've"
+ },
+ {
+ "id": 14653,
+ "start": 7074.48,
+ "end": 7074.64,
+ "text": "been"
+ },
+ {
+ "id": 14654,
+ "start": 7074.64,
+ "end": 7074.84,
+ "text": "going"
+ },
+ {
+ "id": 14655,
+ "start": 7074.84,
+ "end": 7075,
+ "text": "now"
+ },
+ {
+ "id": 14656,
+ "start": 7075,
+ "end": 7075.16,
+ "text": "for"
+ },
+ {
+ "id": 14657,
+ "start": 7075.16,
+ "end": 7075.36,
+ "text": "just"
+ },
+ {
+ "id": 14658,
+ "start": 7075.36,
+ "end": 7075.64,
+ "text": "under"
+ },
+ {
+ "id": 14659,
+ "start": 7075.64,
+ "end": 7075.84,
+ "text": "two"
+ },
+ {
+ "id": 14660,
+ "start": 7075.84,
+ "end": 7076.2,
+ "text": "hours."
+ },
+ {
+ "id": 14661,
+ "start": 7076.2,
+ "end": 7077.04,
+ "text": "So"
+ },
+ {
+ "id": 14662,
+ "start": 7077.04,
+ "end": 7077.6,
+ "text": "I"
+ },
+ {
+ "id": 14663,
+ "start": 7077.6,
+ "end": 7077.76,
+ "text": "think"
+ },
+ {
+ "id": 14664,
+ "start": 7077.76,
+ "end": 7078.02,
+ "text": "we'll"
+ },
+ {
+ "id": 14665,
+ "start": 7078.02,
+ "end": 7078.12,
+ "text": "do"
+ },
+ {
+ "id": 14666,
+ "start": 7078.12,
+ "end": 7078.36,
+ "text": "is"
+ },
+ {
+ "id": 14667,
+ "start": 7078.36,
+ "end": 7078.52,
+ "text": "do"
+ },
+ {
+ "id": 14668,
+ "start": 7078.52,
+ "end": 7078.56,
+ "text": "a"
+ },
+ {
+ "id": 14669,
+ "start": 7078.56,
+ "end": 7078.72,
+ "text": "few"
+ },
+ {
+ "id": 14670,
+ "start": 7078.72,
+ "end": 7078.9,
+ "text": "more."
+ },
+ {
+ "id": 14671,
+ "start": 7078.9,
+ "end": 7079.18,
+ "text": "Er,"
+ },
+ {
+ "id": 14672,
+ "start": 7079.18,
+ "end": 7079.42,
+ "text": "Burger"
+ },
+ {
+ "id": 14673,
+ "start": 7079.42,
+ "end": 7079.66,
+ "text": "are"
+ },
+ {
+ "id": 14674,
+ "start": 7079.66,
+ "end": 7080.78,
+ "text": "you"
+ },
+ {
+ "id": 14675,
+ "start": 7080.78,
+ "end": 7082.2,
+ "text": "do,"
+ },
+ {
+ "id": 14676,
+ "start": 7082.2,
+ "end": 7082.32,
+ "text": "you"
+ },
+ {
+ "id": 14677,
+ "start": 7082.32,
+ "end": 7082.44,
+ "text": "want"
+ },
+ {
+ "id": 14678,
+ "start": 7082.44,
+ "end": 7082.52,
+ "text": "to"
+ },
+ {
+ "id": 14679,
+ "start": 7082.52,
+ "end": 7082.7,
+ "text": "keep"
+ },
+ {
+ "id": 14680,
+ "start": 7082.7,
+ "end": 7082.94,
+ "text": "going,"
+ },
+ {
+ "id": 14681,
+ "start": 7082.94,
+ "end": 7084.18,
+ "text": "maybe"
+ },
+ {
+ "id": 14682,
+ "start": 7084.18,
+ "end": 7084.52,
+ "text": "15"
+ },
+ {
+ "id": 14683,
+ "start": 7084.52,
+ "end": 7084.76,
+ "text": "minutes,"
+ },
+ {
+ "id": 14684,
+ "start": 7084.76,
+ "end": 7085.32,
+ "text": "okay?"
+ },
+ {
+ "id": 14685,
+ "start": 7085.32,
+ "end": 7085.9,
+ "text": "Alright"
+ },
+ {
+ "id": 14686,
+ "start": 7085.9,
+ "end": 7086.12,
+ "text": "we'll"
+ },
+ {
+ "id": 14687,
+ "start": 7086.12,
+ "end": 7086.3,
+ "text": "keep"
+ },
+ {
+ "id": 14688,
+ "start": 7086.3,
+ "end": 7086.58,
+ "text": "going"
+ },
+ {
+ "id": 14689,
+ "start": 7086.58,
+ "end": 7086.86,
+ "text": "center."
+ },
+ {
+ "id": 14690,
+ "start": 7086.86,
+ "end": 7087.5,
+ "text": "Blumenthal"
+ },
+ {
+ "id": 14691,
+ "start": 7087.5,
+ "end": 7088.04,
+ "text": "is"
+ },
+ {
+ "id": 14692,
+ "start": 7088.04,
+ "end": 7088.24,
+ "text": "up"
+ },
+ {
+ "id": 14693,
+ "start": 7088.24,
+ "end": 7088.58,
+ "text": "next"
+ },
+ {
+ "id": 14694,
+ "start": 7088.58,
+ "end": 7089.28,
+ "text": "and"
+ },
+ {
+ "id": 14695,
+ "start": 7089.28,
+ "end": 7090.32,
+ "text": "we"
+ },
+ {
+ "id": 14696,
+ "start": 7090.32,
+ "end": 7091.2,
+ "text": "will"
+ },
+ {
+ "id": 14697,
+ "start": 7091.2,
+ "end": 7092.24,
+ "text": "commence."
+ },
+ {
+ "id": 14698,
+ "start": 7092.24,
+ "end": 7093.16,
+ "text": "Thank"
+ },
+ {
+ "id": 14699,
+ "start": 7093.16,
+ "end": 7093.28,
+ "text": "you,"
+ },
+ {
+ "id": 14700,
+ "start": 7093.28,
+ "end": 7093.52,
+ "text": "Mr"
+ },
+ {
+ "id": 14701,
+ "start": 7093.52,
+ "end": 7093.88,
+ "text": "Chairman."
+ },
+ {
+ "id": 14702,
+ "start": 7093.88,
+ "end": 7095.02,
+ "text": "Thank"
+ },
+ {
+ "id": 14703,
+ "start": 7095.02,
+ "end": 7095.16,
+ "text": "you"
+ },
+ {
+ "id": 14704,
+ "start": 7095.16,
+ "end": 7095.3,
+ "text": "for"
+ },
+ {
+ "id": 14705,
+ "start": 7095.3,
+ "end": 7095.5,
+ "text": "being"
+ },
+ {
+ "id": 14706,
+ "start": 7095.5,
+ "end": 7095.68,
+ "text": "here"
+ },
+ {
+ "id": 14707,
+ "start": 7095.68,
+ "end": 7096.24,
+ "text": "today,"
+ },
+ {
+ "id": 14708,
+ "start": 7096.24,
+ "end": 7097.32,
+ "text": "Mr"
+ },
+ {
+ "id": 14709,
+ "start": 7097.32,
+ "end": 7098.5,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 14710,
+ "start": 7098.5,
+ "end": 7099.3,
+ "text": "You"
+ },
+ {
+ "id": 14711,
+ "start": 7099.3,
+ "end": 7099.54,
+ "text": "have"
+ },
+ {
+ "id": 14712,
+ "start": 7099.54,
+ "end": 7099.8,
+ "text": "told"
+ },
+ {
+ "id": 14713,
+ "start": 7099.8,
+ "end": 7100.06,
+ "text": "us"
+ },
+ {
+ "id": 14714,
+ "start": 7100.06,
+ "end": 7100.6,
+ "text": "today"
+ },
+ {
+ "id": 14715,
+ "start": 7100.6,
+ "end": 7101.06,
+ "text": "and"
+ },
+ {
+ "id": 14716,
+ "start": 7101.06,
+ "end": 7101.28,
+ "text": "you've"
+ },
+ {
+ "id": 14717,
+ "start": 7101.28,
+ "end": 7101.46,
+ "text": "told"
+ },
+ {
+ "id": 14718,
+ "start": 7101.46,
+ "end": 7101.6,
+ "text": "the"
+ },
+ {
+ "id": 14719,
+ "start": 7101.6,
+ "end": 7101.92,
+ "text": "world"
+ },
+ {
+ "id": 14720,
+ "start": 7101.92,
+ "end": 7102.98,
+ "text": "that"
+ },
+ {
+ "id": 14721,
+ "start": 7102.98,
+ "end": 7103.88,
+ "text": "Facebook"
+ },
+ {
+ "id": 14722,
+ "start": 7103.88,
+ "end": 7104.16,
+ "text": "was"
+ },
+ {
+ "id": 14723,
+ "start": 7104.16,
+ "end": 7104.9,
+ "text": "deceived"
+ },
+ {
+ "id": 14724,
+ "start": 7104.9,
+ "end": 7105.66,
+ "text": "by"
+ },
+ {
+ "id": 14725,
+ "start": 7105.66,
+ "end": 7106.66,
+ "text": "Alexander"
+ },
+ {
+ "id": 14726,
+ "start": 7106.66,
+ "end": 7107.24,
+ "text": "Kogan"
+ },
+ {
+ "id": 14727,
+ "start": 7107.24,
+ "end": 7107.98,
+ "text": "when"
+ },
+ {
+ "id": 14728,
+ "start": 7107.98,
+ "end": 7108.14,
+ "text": "he"
+ },
+ {
+ "id": 14729,
+ "start": 7108.14,
+ "end": 7108.7,
+ "text": "sold"
+ },
+ {
+ "id": 14730,
+ "start": 7108.7,
+ "end": 7109.78,
+ "text": "user"
+ },
+ {
+ "id": 14731,
+ "start": 7109.78,
+ "end": 7110.28,
+ "text": "information"
+ },
+ {
+ "id": 14732,
+ "start": 7110.28,
+ "end": 7110.42,
+ "text": "to"
+ },
+ {
+ "id": 14733,
+ "start": 7110.42,
+ "end": 7110.82,
+ "text": "Cambridge"
+ },
+ {
+ "id": 14734,
+ "start": 7110.82,
+ "end": 7111.44,
+ "text": "Analytica,"
+ },
+ {
+ "id": 14735,
+ "start": 7111.44,
+ "end": 7112.16,
+ "text": "correct."
+ },
+ {
+ "id": 14736,
+ "start": 7112.16,
+ "end": 7113.94,
+ "text": "Yes,"
+ },
+ {
+ "id": 14737,
+ "start": 7113.94,
+ "end": 7113.98,
+ "text": "I"
+ },
+ {
+ "id": 14738,
+ "start": 7113.98,
+ "end": 7114.9,
+ "text": "want"
+ },
+ {
+ "id": 14739,
+ "start": 7114.9,
+ "end": 7115,
+ "text": "to"
+ },
+ {
+ "id": 14740,
+ "start": 7115,
+ "end": 7115.2,
+ "text": "show"
+ },
+ {
+ "id": 14741,
+ "start": 7115.2,
+ "end": 7115.4,
+ "text": "you"
+ },
+ {
+ "id": 14742,
+ "start": 7115.4,
+ "end": 7116.16,
+ "text": "the"
+ },
+ {
+ "id": 14743,
+ "start": 7116.16,
+ "end": 7116.52,
+ "text": "terms"
+ },
+ {
+ "id": 14744,
+ "start": 7116.52,
+ "end": 7116.68,
+ "text": "of"
+ },
+ {
+ "id": 14745,
+ "start": 7116.68,
+ "end": 7117.22,
+ "text": "service"
+ },
+ {
+ "id": 14746,
+ "start": 7117.22,
+ "end": 7118.02,
+ "text": "that"
+ },
+ {
+ "id": 14747,
+ "start": 7118.02,
+ "end": 7119,
+ "text": "Alexander"
+ },
+ {
+ "id": 14748,
+ "start": 7119,
+ "end": 7119.6,
+ "text": "Cogan"
+ },
+ {
+ "id": 14749,
+ "start": 7119.6,
+ "end": 7120.4,
+ "text": "provided"
+ },
+ {
+ "id": 14750,
+ "start": 7120.4,
+ "end": 7120.68,
+ "text": "to"
+ },
+ {
+ "id": 14751,
+ "start": 7120.68,
+ "end": 7122.74,
+ "text": "Facebook"
+ },
+ {
+ "id": 14752,
+ "start": 7122.74,
+ "end": 7123.74,
+ "text": "and"
+ },
+ {
+ "id": 14753,
+ "start": 7123.74,
+ "end": 7124.28,
+ "text": "note"
+ },
+ {
+ "id": 14754,
+ "start": 7124.28,
+ "end": 7124.52,
+ "text": "for"
+ },
+ {
+ "id": 14755,
+ "start": 7124.52,
+ "end": 7125.36,
+ "text": "you"
+ },
+ {
+ "id": 14756,
+ "start": 7125.36,
+ "end": 7126.38,
+ "text": "that,"
+ },
+ {
+ "id": 14757,
+ "start": 7126.38,
+ "end": 7127.08,
+ "text": "in"
+ },
+ {
+ "id": 14758,
+ "start": 7127.08,
+ "end": 7127.58,
+ "text": "fact,"
+ },
+ {
+ "id": 14759,
+ "start": 7127.58,
+ "end": 7128.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 14760,
+ "start": 7128.9,
+ "end": 7129.92,
+ "text": "was"
+ },
+ {
+ "id": 14761,
+ "start": 7129.92,
+ "end": 7130.34,
+ "text": "on"
+ },
+ {
+ "id": 14762,
+ "start": 7130.34,
+ "end": 7130.78,
+ "text": "notice"
+ },
+ {
+ "id": 14763,
+ "start": 7130.78,
+ "end": 7131.28,
+ "text": "that"
+ },
+ {
+ "id": 14764,
+ "start": 7131.28,
+ "end": 7131.66,
+ "text": "he"
+ },
+ {
+ "id": 14765,
+ "start": 7131.66,
+ "end": 7132,
+ "text": "could"
+ },
+ {
+ "id": 14766,
+ "start": 7132,
+ "end": 7132.54,
+ "text": "sell"
+ },
+ {
+ "id": 14767,
+ "start": 7132.54,
+ "end": 7133.34,
+ "text": "that"
+ },
+ {
+ "id": 14768,
+ "start": 7133.34,
+ "end": 7133.64,
+ "text": "user"
+ },
+ {
+ "id": 14769,
+ "start": 7133.64,
+ "end": 7134.18,
+ "text": "information,"
+ },
+ {
+ "id": 14770,
+ "start": 7134.18,
+ "end": 7134.28,
+ "text": "have"
+ },
+ {
+ "id": 14771,
+ "start": 7134.28,
+ "end": 7134.42,
+ "text": "you"
+ },
+ {
+ "id": 14772,
+ "start": 7134.42,
+ "end": 7134.76,
+ "text": "seen"
+ },
+ {
+ "id": 14773,
+ "start": 7134.76,
+ "end": 7134.96,
+ "text": "these"
+ },
+ {
+ "id": 14774,
+ "start": 7134.96,
+ "end": 7135.22,
+ "text": "terms"
+ },
+ {
+ "id": 14775,
+ "start": 7135.22,
+ "end": 7135.34,
+ "text": "of"
+ },
+ {
+ "id": 14776,
+ "start": 7135.34,
+ "end": 7135.68,
+ "text": "service"
+ },
+ {
+ "id": 14777,
+ "start": 7135.68,
+ "end": 7136.04,
+ "text": "before?"
+ },
+ {
+ "id": 14778,
+ "start": 7136.04,
+ "end": 7137.08,
+ "text": "I"
+ },
+ {
+ "id": 14779,
+ "start": 7137.08,
+ "end": 7137.26,
+ "text": "have"
+ },
+ {
+ "id": 14780,
+ "start": 7137.26,
+ "end": 7137.84,
+ "text": "not"
+ },
+ {
+ "id": 14781,
+ "start": 7137.84,
+ "end": 7138.84,
+ "text": "who"
+ },
+ {
+ "id": 14782,
+ "start": 7138.84,
+ "end": 7139.22,
+ "text": "in"
+ },
+ {
+ "id": 14783,
+ "start": 7139.22,
+ "end": 7139.88,
+ "text": "Facebook"
+ },
+ {
+ "id": 14784,
+ "start": 7139.88,
+ "end": 7140.24,
+ "text": "was"
+ },
+ {
+ "id": 14785,
+ "start": 7140.24,
+ "end": 7141,
+ "text": "responsible"
+ },
+ {
+ "id": 14786,
+ "start": 7141,
+ "end": 7141.5,
+ "text": "for"
+ },
+ {
+ "id": 14787,
+ "start": 7141.5,
+ "end": 7141.9,
+ "text": "seeing"
+ },
+ {
+ "id": 14788,
+ "start": 7141.9,
+ "end": 7142.42,
+ "text": "those"
+ },
+ {
+ "id": 14789,
+ "start": 7142.42,
+ "end": 7142.74,
+ "text": "terms"
+ },
+ {
+ "id": 14790,
+ "start": 7142.74,
+ "end": 7142.86,
+ "text": "of"
+ },
+ {
+ "id": 14791,
+ "start": 7142.86,
+ "end": 7143.26,
+ "text": "service"
+ },
+ {
+ "id": 14792,
+ "start": 7143.26,
+ "end": 7143.48,
+ "text": "that"
+ },
+ {
+ "id": 14793,
+ "start": 7143.48,
+ "end": 7144.28,
+ "text": "put"
+ },
+ {
+ "id": 14794,
+ "start": 7144.28,
+ "end": 7144.48,
+ "text": "you"
+ },
+ {
+ "id": 14795,
+ "start": 7144.48,
+ "end": 7144.84,
+ "text": "on"
+ },
+ {
+ "id": 14796,
+ "start": 7144.84,
+ "end": 7146.04,
+ "text": "notice"
+ },
+ {
+ "id": 14797,
+ "start": 7146.04,
+ "end": 7147.02,
+ "text": "that"
+ },
+ {
+ "id": 14798,
+ "start": 7147.02,
+ "end": 7148.02,
+ "text": "that"
+ },
+ {
+ "id": 14799,
+ "start": 7148.02,
+ "end": 7148.66,
+ "text": "information"
+ },
+ {
+ "id": 14800,
+ "start": 7148.66,
+ "end": 7149.54,
+ "text": "could"
+ },
+ {
+ "id": 14801,
+ "start": 7149.54,
+ "end": 7149.66,
+ "text": "be"
+ },
+ {
+ "id": 14802,
+ "start": 7149.66,
+ "end": 7150.88,
+ "text": "sold."
+ },
+ {
+ "id": 14803,
+ "start": 7150.88,
+ "end": 7151.88,
+ "text": "Senator"
+ },
+ {
+ "id": 14804,
+ "start": 7151.88,
+ "end": 7152.14,
+ "text": "or"
+ },
+ {
+ "id": 14805,
+ "start": 7152.14,
+ "end": 7152.38,
+ "text": "a"
+ },
+ {
+ "id": 14806,
+ "start": 7152.38,
+ "end": 7152.7,
+ "text": "review"
+ },
+ {
+ "id": 14807,
+ "start": 7152.7,
+ "end": 7153,
+ "text": "team"
+ },
+ {
+ "id": 14808,
+ "start": 7153,
+ "end": 7153.4,
+ "text": "would"
+ },
+ {
+ "id": 14809,
+ "start": 7153.4,
+ "end": 7153.5,
+ "text": "be"
+ },
+ {
+ "id": 14810,
+ "start": 7153.5,
+ "end": 7154.08,
+ "text": "responsible"
+ },
+ {
+ "id": 14811,
+ "start": 7154.08,
+ "end": 7154.22,
+ "text": "for"
+ },
+ {
+ "id": 14812,
+ "start": 7154.22,
+ "end": 7154.44,
+ "text": "that."
+ },
+ {
+ "id": 14813,
+ "start": 7154.44,
+ "end": 7155.14,
+ "text": "Has"
+ },
+ {
+ "id": 14814,
+ "start": 7155.14,
+ "end": 7155.5,
+ "text": "anyone"
+ },
+ {
+ "id": 14815,
+ "start": 7155.5,
+ "end": 7155.74,
+ "text": "been"
+ },
+ {
+ "id": 14816,
+ "start": 7155.74,
+ "end": 7156.16,
+ "text": "fired"
+ },
+ {
+ "id": 14817,
+ "start": 7156.16,
+ "end": 7156.3,
+ "text": "on"
+ },
+ {
+ "id": 14818,
+ "start": 7156.3,
+ "end": 7156.48,
+ "text": "that?"
+ },
+ {
+ "id": 14819,
+ "start": 7156.48,
+ "end": 7156.68,
+ "text": "A"
+ },
+ {
+ "id": 14820,
+ "start": 7156.68,
+ "end": 7157.48,
+ "text": "review"
+ },
+ {
+ "id": 14821,
+ "start": 7157.48,
+ "end": 7159.2,
+ "text": "team,"
+ },
+ {
+ "id": 14822,
+ "start": 7159.2,
+ "end": 7160.9,
+ "text": "Senator,"
+ },
+ {
+ "id": 14823,
+ "start": 7160.9,
+ "end": 7161.8,
+ "text": "not"
+ },
+ {
+ "id": 14824,
+ "start": 7161.8,
+ "end": 7162.14,
+ "text": "because"
+ },
+ {
+ "id": 14825,
+ "start": 7162.14,
+ "end": 7162.26,
+ "text": "of"
+ },
+ {
+ "id": 14826,
+ "start": 7162.26,
+ "end": 7165.42,
+ "text": "this"
+ },
+ {
+ "id": 14827,
+ "start": 7165.42,
+ "end": 7166.38,
+ "text": "doesn't"
+ },
+ {
+ "id": 14828,
+ "start": 7166.38,
+ "end": 7167.06,
+ "text": "that"
+ },
+ {
+ "id": 14829,
+ "start": 7167.06,
+ "end": 7168.06,
+ "text": "term"
+ },
+ {
+ "id": 14830,
+ "start": 7168.06,
+ "end": 7168.2,
+ "text": "of"
+ },
+ {
+ "id": 14831,
+ "start": 7168.2,
+ "end": 7168.64,
+ "text": "service"
+ },
+ {
+ "id": 14832,
+ "start": 7168.64,
+ "end": 7169.36,
+ "text": "conflict"
+ },
+ {
+ "id": 14833,
+ "start": 7169.36,
+ "end": 7169.84,
+ "text": "with"
+ },
+ {
+ "id": 14834,
+ "start": 7169.84,
+ "end": 7170.28,
+ "text": "the"
+ },
+ {
+ "id": 14835,
+ "start": 7170.28,
+ "end": 7171.32,
+ "text": "FTC"
+ },
+ {
+ "id": 14836,
+ "start": 7171.32,
+ "end": 7172.02,
+ "text": "order"
+ },
+ {
+ "id": 14837,
+ "start": 7172.02,
+ "end": 7173.02,
+ "text": "that"
+ },
+ {
+ "id": 14838,
+ "start": 7173.02,
+ "end": 7173.52,
+ "text": "Facebook"
+ },
+ {
+ "id": 14839,
+ "start": 7173.52,
+ "end": 7173.68,
+ "text": "was"
+ },
+ {
+ "id": 14840,
+ "start": 7173.68,
+ "end": 7174,
+ "text": "under"
+ },
+ {
+ "id": 14841,
+ "start": 7174,
+ "end": 7174.18,
+ "text": "at"
+ },
+ {
+ "id": 14842,
+ "start": 7174.18,
+ "end": 7174.46,
+ "text": "that"
+ },
+ {
+ "id": 14843,
+ "start": 7174.46,
+ "end": 7174.74,
+ "text": "very"
+ },
+ {
+ "id": 14844,
+ "start": 7174.74,
+ "end": 7175.32,
+ "text": "time"
+ },
+ {
+ "id": 14845,
+ "start": 7175.32,
+ "end": 7176.18,
+ "text": "that"
+ },
+ {
+ "id": 14846,
+ "start": 7176.18,
+ "end": 7176.5,
+ "text": "this"
+ },
+ {
+ "id": 14847,
+ "start": 7176.5,
+ "end": 7177.36,
+ "text": "term"
+ },
+ {
+ "id": 14848,
+ "start": 7177.36,
+ "end": 7177.46,
+ "text": "of"
+ },
+ {
+ "id": 14849,
+ "start": 7177.46,
+ "end": 7177.9,
+ "text": "service"
+ },
+ {
+ "id": 14850,
+ "start": 7177.9,
+ "end": 7178.96,
+ "text": "was"
+ },
+ {
+ "id": 14851,
+ "start": 7178.96,
+ "end": 7179.6,
+ "text": "in"
+ },
+ {
+ "id": 14852,
+ "start": 7179.6,
+ "end": 7180.64,
+ "text": "fact,"
+ },
+ {
+ "id": 14853,
+ "start": 7180.64,
+ "end": 7181.76,
+ "text": "provided"
+ },
+ {
+ "id": 14854,
+ "start": 7181.76,
+ "end": 7181.88,
+ "text": "to"
+ },
+ {
+ "id": 14855,
+ "start": 7181.88,
+ "end": 7182.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 14856,
+ "start": 7182.34,
+ "end": 7182.5,
+ "text": "and"
+ },
+ {
+ "id": 14857,
+ "start": 7182.5,
+ "end": 7182.74,
+ "text": "you'll"
+ },
+ {
+ "id": 14858,
+ "start": 7182.74,
+ "end": 7183.1,
+ "text": "note"
+ },
+ {
+ "id": 14859,
+ "start": 7183.1,
+ "end": 7183.78,
+ "text": "that"
+ },
+ {
+ "id": 14860,
+ "start": 7183.78,
+ "end": 7186.62,
+ "text": "the"
+ },
+ {
+ "id": 14861,
+ "start": 7186.62,
+ "end": 7187.7,
+ "text": "FTC"
+ },
+ {
+ "id": 14862,
+ "start": 7187.7,
+ "end": 7187.96,
+ "text": "order"
+ },
+ {
+ "id": 14863,
+ "start": 7187.96,
+ "end": 7188.94,
+ "text": "specifically"
+ },
+ {
+ "id": 14864,
+ "start": 7188.94,
+ "end": 7190.1,
+ "text": "requires"
+ },
+ {
+ "id": 14865,
+ "start": 7190.1,
+ "end": 7190.66,
+ "text": "Facebook"
+ },
+ {
+ "id": 14866,
+ "start": 7190.66,
+ "end": 7190.86,
+ "text": "to"
+ },
+ {
+ "id": 14867,
+ "start": 7190.86,
+ "end": 7191.26,
+ "text": "protect"
+ },
+ {
+ "id": 14868,
+ "start": 7191.26,
+ "end": 7191.88,
+ "text": "privacy"
+ },
+ {
+ "id": 14869,
+ "start": 7191.88,
+ "end": 7192.06,
+ "text": "isn't"
+ },
+ {
+ "id": 14870,
+ "start": 7192.06,
+ "end": 7192.22,
+ "text": "there"
+ },
+ {
+ "id": 14871,
+ "start": 7192.22,
+ "end": 7192.3,
+ "text": "a"
+ },
+ {
+ "id": 14872,
+ "start": 7192.3,
+ "end": 7192.72,
+ "text": "conflict"
+ },
+ {
+ "id": 14873,
+ "start": 7192.72,
+ "end": 7194.52,
+ "text": "there."
+ },
+ {
+ "id": 14874,
+ "start": 7194.52,
+ "end": 7195.52,
+ "text": "Senator."
+ },
+ {
+ "id": 14875,
+ "start": 7195.52,
+ "end": 7195.92,
+ "text": "It"
+ },
+ {
+ "id": 14876,
+ "start": 7195.92,
+ "end": 7196.32,
+ "text": "certainly"
+ },
+ {
+ "id": 14877,
+ "start": 7196.32,
+ "end": 7196.82,
+ "text": "appears"
+ },
+ {
+ "id": 14878,
+ "start": 7196.82,
+ "end": 7197.36,
+ "text": "that"
+ },
+ {
+ "id": 14879,
+ "start": 7197.36,
+ "end": 7197.8,
+ "text": "we"
+ },
+ {
+ "id": 14880,
+ "start": 7197.8,
+ "end": 7198.04,
+ "text": "should"
+ },
+ {
+ "id": 14881,
+ "start": 7198.04,
+ "end": 7198.18,
+ "text": "have"
+ },
+ {
+ "id": 14882,
+ "start": 7198.18,
+ "end": 7198.34,
+ "text": "been"
+ },
+ {
+ "id": 14883,
+ "start": 7198.34,
+ "end": 7198.62,
+ "text": "aware"
+ },
+ {
+ "id": 14884,
+ "start": 7198.62,
+ "end": 7199,
+ "text": "that"
+ },
+ {
+ "id": 14885,
+ "start": 7199,
+ "end": 7199.46,
+ "text": "this"
+ },
+ {
+ "id": 14886,
+ "start": 7199.46,
+ "end": 7199.7,
+ "text": "app"
+ },
+ {
+ "id": 14887,
+ "start": 7199.7,
+ "end": 7200.14,
+ "text": "developer"
+ },
+ {
+ "id": 14888,
+ "start": 7200.14,
+ "end": 7200.62,
+ "text": "submitted"
+ },
+ {
+ "id": 14889,
+ "start": 7200.62,
+ "end": 7200.7,
+ "text": "a"
+ },
+ {
+ "id": 14890,
+ "start": 7200.7,
+ "end": 7201.12,
+ "text": "term"
+ },
+ {
+ "id": 14891,
+ "start": 7201.12,
+ "end": 7201.88,
+ "text": "that"
+ },
+ {
+ "id": 14892,
+ "start": 7201.88,
+ "end": 7202.26,
+ "text": "was"
+ },
+ {
+ "id": 14893,
+ "start": 7202.26,
+ "end": 7202.42,
+ "text": "in"
+ },
+ {
+ "id": 14894,
+ "start": 7202.42,
+ "end": 7202.9,
+ "text": "conflict"
+ },
+ {
+ "id": 14895,
+ "start": 7202.9,
+ "end": 7203.08,
+ "text": "with"
+ },
+ {
+ "id": 14896,
+ "start": 7203.08,
+ "end": 7203.18,
+ "text": "the"
+ },
+ {
+ "id": 14897,
+ "start": 7203.18,
+ "end": 7203.4,
+ "text": "rules"
+ },
+ {
+ "id": 14898,
+ "start": 7203.4,
+ "end": 7203.52,
+ "text": "of"
+ },
+ {
+ "id": 14899,
+ "start": 7203.52,
+ "end": 7203.64,
+ "text": "the"
+ },
+ {
+ "id": 14900,
+ "start": 7203.64,
+ "end": 7204.16,
+ "text": "platform."
+ },
+ {
+ "id": 14901,
+ "start": 7204.16,
+ "end": 7204.82,
+ "text": "Well,"
+ },
+ {
+ "id": 14902,
+ "start": 7204.82,
+ "end": 7204.98,
+ "text": "what"
+ },
+ {
+ "id": 14903,
+ "start": 7204.98,
+ "end": 7205.38,
+ "text": "happened"
+ },
+ {
+ "id": 14904,
+ "start": 7205.38,
+ "end": 7206.54,
+ "text": "here"
+ },
+ {
+ "id": 14905,
+ "start": 7206.54,
+ "end": 7207.58,
+ "text": "was"
+ },
+ {
+ "id": 14906,
+ "start": 7207.58,
+ "end": 7207.8,
+ "text": "in"
+ },
+ {
+ "id": 14907,
+ "start": 7207.8,
+ "end": 7208.28,
+ "text": "effect"
+ },
+ {
+ "id": 14908,
+ "start": 7208.28,
+ "end": 7208.94,
+ "text": "willful"
+ },
+ {
+ "id": 14909,
+ "start": 7208.94,
+ "end": 7210.24,
+ "text": "blindness,"
+ },
+ {
+ "id": 14910,
+ "start": 7210.24,
+ "end": 7211.24,
+ "text": "it"
+ },
+ {
+ "id": 14911,
+ "start": 7211.24,
+ "end": 7211.46,
+ "text": "was"
+ },
+ {
+ "id": 14912,
+ "start": 7211.46,
+ "end": 7211.98,
+ "text": "heedless"
+ },
+ {
+ "id": 14913,
+ "start": 7211.98,
+ "end": 7212.26,
+ "text": "and"
+ },
+ {
+ "id": 14914,
+ "start": 7212.26,
+ "end": 7212.78,
+ "text": "reckless,"
+ },
+ {
+ "id": 14915,
+ "start": 7212.78,
+ "end": 7213.18,
+ "text": "which,"
+ },
+ {
+ "id": 14916,
+ "start": 7213.18,
+ "end": 7213.68,
+ "text": "in"
+ },
+ {
+ "id": 14917,
+ "start": 7213.68,
+ "end": 7214.54,
+ "text": "fact,"
+ },
+ {
+ "id": 14918,
+ "start": 7214.54,
+ "end": 7215.52,
+ "text": "amounted"
+ },
+ {
+ "id": 14919,
+ "start": 7215.52,
+ "end": 7215.74,
+ "text": "to"
+ },
+ {
+ "id": 14920,
+ "start": 7215.74,
+ "end": 7216.04,
+ "text": "a"
+ },
+ {
+ "id": 14921,
+ "start": 7216.04,
+ "end": 7216.74,
+ "text": "violation"
+ },
+ {
+ "id": 14922,
+ "start": 7216.74,
+ "end": 7216.96,
+ "text": "of"
+ },
+ {
+ "id": 14923,
+ "start": 7216.96,
+ "end": 7217.14,
+ "text": "the"
+ },
+ {
+ "id": 14924,
+ "start": 7217.14,
+ "end": 7217.98,
+ "text": "FTC"
+ },
+ {
+ "id": 14925,
+ "start": 7217.98,
+ "end": 7218.98,
+ "text": "consent"
+ },
+ {
+ "id": 14926,
+ "start": 7218.98,
+ "end": 7219.34,
+ "text": "decree,"
+ },
+ {
+ "id": 14927,
+ "start": 7219.34,
+ "end": 7219.54,
+ "text": "would"
+ },
+ {
+ "id": 14928,
+ "start": 7219.54,
+ "end": 7219.68,
+ "text": "you"
+ },
+ {
+ "id": 14929,
+ "start": 7219.68,
+ "end": 7220.8,
+ "text": "agree?"
+ },
+ {
+ "id": 14930,
+ "start": 7220.8,
+ "end": 7221.82,
+ "text": "No,"
+ },
+ {
+ "id": 14931,
+ "start": 7221.82,
+ "end": 7222.34,
+ "text": "Senator,"
+ },
+ {
+ "id": 14932,
+ "start": 7222.34,
+ "end": 7223.12,
+ "text": "my"
+ },
+ {
+ "id": 14933,
+ "start": 7223.12,
+ "end": 7223.62,
+ "text": "understanding"
+ },
+ {
+ "id": 14934,
+ "start": 7223.62,
+ "end": 7223.78,
+ "text": "is"
+ },
+ {
+ "id": 14935,
+ "start": 7223.78,
+ "end": 7224.08,
+ "text": "that"
+ },
+ {
+ "id": 14936,
+ "start": 7224.08,
+ "end": 7225.2,
+ "text": "is"
+ },
+ {
+ "id": 14937,
+ "start": 7225.2,
+ "end": 7225.4,
+ "text": "not"
+ },
+ {
+ "id": 14938,
+ "start": 7225.4,
+ "end": 7225.54,
+ "text": "that"
+ },
+ {
+ "id": 14939,
+ "start": 7225.54,
+ "end": 7225.74,
+ "text": "this"
+ },
+ {
+ "id": 14940,
+ "start": 7225.74,
+ "end": 7225.88,
+ "text": "was"
+ },
+ {
+ "id": 14941,
+ "start": 7225.88,
+ "end": 7225.96,
+ "text": "a"
+ },
+ {
+ "id": 14942,
+ "start": 7225.96,
+ "end": 7226.4,
+ "text": "violation"
+ },
+ {
+ "id": 14943,
+ "start": 7226.4,
+ "end": 7226.5,
+ "text": "of"
+ },
+ {
+ "id": 14944,
+ "start": 7226.5,
+ "end": 7226.62,
+ "text": "the"
+ },
+ {
+ "id": 14945,
+ "start": 7226.62,
+ "end": 7226.94,
+ "text": "consent"
+ },
+ {
+ "id": 14946,
+ "start": 7226.94,
+ "end": 7227.26,
+ "text": "decree."
+ },
+ {
+ "id": 14947,
+ "start": 7227.26,
+ "end": 7227.46,
+ "text": "But"
+ },
+ {
+ "id": 14948,
+ "start": 7227.46,
+ "end": 7228.14,
+ "text": "as"
+ },
+ {
+ "id": 14949,
+ "start": 7228.14,
+ "end": 7228.34,
+ "text": "I've"
+ },
+ {
+ "id": 14950,
+ "start": 7228.34,
+ "end": 7228.5,
+ "text": "said,"
+ },
+ {
+ "id": 14951,
+ "start": 7228.5,
+ "end": 7228.56,
+ "text": "a"
+ },
+ {
+ "id": 14952,
+ "start": 7228.56,
+ "end": 7228.84,
+ "text": "number"
+ },
+ {
+ "id": 14953,
+ "start": 7228.84,
+ "end": 7228.92,
+ "text": "of"
+ },
+ {
+ "id": 14954,
+ "start": 7228.92,
+ "end": 7229.2,
+ "text": "times"
+ },
+ {
+ "id": 14955,
+ "start": 7229.2,
+ "end": 7229.54,
+ "text": "today,"
+ },
+ {
+ "id": 14956,
+ "start": 7229.54,
+ "end": 7230.56,
+ "text": "I"
+ },
+ {
+ "id": 14957,
+ "start": 7230.56,
+ "end": 7230.74,
+ "text": "think"
+ },
+ {
+ "id": 14958,
+ "start": 7230.74,
+ "end": 7230.88,
+ "text": "we"
+ },
+ {
+ "id": 14959,
+ "start": 7230.88,
+ "end": 7231.04,
+ "text": "need"
+ },
+ {
+ "id": 14960,
+ "start": 7231.04,
+ "end": 7231.12,
+ "text": "to"
+ },
+ {
+ "id": 14961,
+ "start": 7231.12,
+ "end": 7231.28,
+ "text": "take"
+ },
+ {
+ "id": 14962,
+ "start": 7231.28,
+ "end": 7231.36,
+ "text": "a"
+ },
+ {
+ "id": 14963,
+ "start": 7231.36,
+ "end": 7231.66,
+ "text": "broad"
+ },
+ {
+ "id": 14964,
+ "start": 7231.66,
+ "end": 7232.04,
+ "text": "view"
+ },
+ {
+ "id": 14965,
+ "start": 7232.04,
+ "end": 7232.16,
+ "text": "of"
+ },
+ {
+ "id": 14966,
+ "start": 7232.16,
+ "end": 7232.32,
+ "text": "our"
+ },
+ {
+ "id": 14967,
+ "start": 7232.32,
+ "end": 7233.04,
+ "text": "responsibility"
+ },
+ {
+ "id": 14968,
+ "start": 7233.04,
+ "end": 7233.36,
+ "text": "around"
+ },
+ {
+ "id": 14969,
+ "start": 7233.36,
+ "end": 7233.88,
+ "text": "privacy"
+ },
+ {
+ "id": 14970,
+ "start": 7233.88,
+ "end": 7234.14,
+ "text": "than"
+ },
+ {
+ "id": 14971,
+ "start": 7234.14,
+ "end": 7234.4,
+ "text": "just"
+ },
+ {
+ "id": 14972,
+ "start": 7234.4,
+ "end": 7234.56,
+ "text": "what"
+ },
+ {
+ "id": 14973,
+ "start": 7234.56,
+ "end": 7234.72,
+ "text": "is"
+ },
+ {
+ "id": 14974,
+ "start": 7234.72,
+ "end": 7235.3,
+ "text": "mandated"
+ },
+ {
+ "id": 14975,
+ "start": 7235.3,
+ "end": 7236.02,
+ "text": "in"
+ },
+ {
+ "id": 14976,
+ "start": 7236.02,
+ "end": 7236.14,
+ "text": "the"
+ },
+ {
+ "id": 14977,
+ "start": 7236.14,
+ "end": 7236.38,
+ "text": "current"
+ },
+ {
+ "id": 14978,
+ "start": 7236.38,
+ "end": 7236.62,
+ "text": "law."
+ },
+ {
+ "id": 14979,
+ "start": 7236.62,
+ "end": 7237.18,
+ "text": "Here"
+ },
+ {
+ "id": 14980,
+ "start": 7237.18,
+ "end": 7237.34,
+ "text": "is"
+ },
+ {
+ "id": 14981,
+ "start": 7237.34,
+ "end": 7237.58,
+ "text": "my"
+ },
+ {
+ "id": 14982,
+ "start": 7237.58,
+ "end": 7238.3,
+ "text": "reservation,"
+ },
+ {
+ "id": 14983,
+ "start": 7238.3,
+ "end": 7238.76,
+ "text": "Mr"
+ },
+ {
+ "id": 14984,
+ "start": 7238.76,
+ "end": 7239.16,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 14985,
+ "start": 7239.16,
+ "end": 7239.3,
+ "text": "and"
+ },
+ {
+ "id": 14986,
+ "start": 7239.3,
+ "end": 7239.4,
+ "text": "I"
+ },
+ {
+ "id": 14987,
+ "start": 7239.4,
+ "end": 7239.96,
+ "text": "apologize"
+ },
+ {
+ "id": 14988,
+ "start": 7239.96,
+ "end": 7240.1,
+ "text": "for"
+ },
+ {
+ "id": 14989,
+ "start": 7240.1,
+ "end": 7240.54,
+ "text": "interrupting"
+ },
+ {
+ "id": 14990,
+ "start": 7240.54,
+ "end": 7240.68,
+ "text": "you."
+ },
+ {
+ "id": 14991,
+ "start": 7240.68,
+ "end": 7240.86,
+ "text": "But"
+ },
+ {
+ "id": 14992,
+ "start": 7240.86,
+ "end": 7241.08,
+ "text": "my"
+ },
+ {
+ "id": 14993,
+ "start": 7241.08,
+ "end": 7241.3,
+ "text": "time"
+ },
+ {
+ "id": 14994,
+ "start": 7241.3,
+ "end": 7241.44,
+ "text": "is"
+ },
+ {
+ "id": 14995,
+ "start": 7241.44,
+ "end": 7242.52,
+ "text": "limited"
+ },
+ {
+ "id": 14996,
+ "start": 7242.52,
+ "end": 7243.58,
+ "text": "we've"
+ },
+ {
+ "id": 14997,
+ "start": 7243.58,
+ "end": 7244.06,
+ "text": "seen"
+ },
+ {
+ "id": 14998,
+ "start": 7244.06,
+ "end": 7244.22,
+ "text": "the"
+ },
+ {
+ "id": 14999,
+ "start": 7244.22,
+ "end": 7244.72,
+ "text": "apology"
+ },
+ {
+ "id": 15000,
+ "start": 7244.72,
+ "end": 7245.1,
+ "text": "tours"
+ },
+ {
+ "id": 15001,
+ "start": 7245.1,
+ "end": 7245.46,
+ "text": "before"
+ },
+ {
+ "id": 15002,
+ "start": 7245.46,
+ "end": 7246.6,
+ "text": "you"
+ },
+ {
+ "id": 15003,
+ "start": 7246.6,
+ "end": 7246.9,
+ "text": "have"
+ },
+ {
+ "id": 15004,
+ "start": 7246.9,
+ "end": 7247.64,
+ "text": "refused"
+ },
+ {
+ "id": 15005,
+ "start": 7247.64,
+ "end": 7247.78,
+ "text": "to"
+ },
+ {
+ "id": 15006,
+ "start": 7247.78,
+ "end": 7248.34,
+ "text": "acknowledge"
+ },
+ {
+ "id": 15007,
+ "start": 7248.34,
+ "end": 7248.64,
+ "text": "even"
+ },
+ {
+ "id": 15008,
+ "start": 7248.64,
+ "end": 7248.78,
+ "text": "an"
+ },
+ {
+ "id": 15009,
+ "start": 7248.78,
+ "end": 7249.42,
+ "text": "ethical"
+ },
+ {
+ "id": 15010,
+ "start": 7249.42,
+ "end": 7250.56,
+ "text": "obligation"
+ },
+ {
+ "id": 15011,
+ "start": 7250.56,
+ "end": 7250.74,
+ "text": "to"
+ },
+ {
+ "id": 15012,
+ "start": 7250.74,
+ "end": 7250.92,
+ "text": "have"
+ },
+ {
+ "id": 15013,
+ "start": 7250.92,
+ "end": 7251.44,
+ "text": "reported"
+ },
+ {
+ "id": 15014,
+ "start": 7251.44,
+ "end": 7252.32,
+ "text": "this"
+ },
+ {
+ "id": 15015,
+ "start": 7252.32,
+ "end": 7252.96,
+ "text": "violation"
+ },
+ {
+ "id": 15016,
+ "start": 7252.96,
+ "end": 7253.26,
+ "text": "of"
+ },
+ {
+ "id": 15017,
+ "start": 7253.26,
+ "end": 7253.54,
+ "text": "the"
+ },
+ {
+ "id": 15018,
+ "start": 7253.54,
+ "end": 7253.96,
+ "text": "FTC"
+ },
+ {
+ "id": 15019,
+ "start": 7253.96,
+ "end": 7254.52,
+ "text": "consent"
+ },
+ {
+ "id": 15020,
+ "start": 7254.52,
+ "end": 7255.6,
+ "text": "decree"
+ },
+ {
+ "id": 15021,
+ "start": 7255.6,
+ "end": 7256.62,
+ "text": "and"
+ },
+ {
+ "id": 15022,
+ "start": 7256.62,
+ "end": 7257.26,
+ "text": "we"
+ },
+ {
+ "id": 15023,
+ "start": 7257.26,
+ "end": 7258.62,
+ "text": "have"
+ },
+ {
+ "id": 15024,
+ "start": 7258.62,
+ "end": 7259.6,
+ "text": "letters"
+ },
+ {
+ "id": 15025,
+ "start": 7259.6,
+ "end": 7259.86,
+ "text": "we've"
+ },
+ {
+ "id": 15026,
+ "start": 7259.86,
+ "end": 7260.02,
+ "text": "had"
+ },
+ {
+ "id": 15027,
+ "start": 7260.02,
+ "end": 7260.62,
+ "text": "contacts"
+ },
+ {
+ "id": 15028,
+ "start": 7260.62,
+ "end": 7260.98,
+ "text": "with"
+ },
+ {
+ "id": 15029,
+ "start": 7260.98,
+ "end": 7262.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 15030,
+ "start": 7262.02,
+ "end": 7262.92,
+ "text": "employees"
+ },
+ {
+ "id": 15031,
+ "start": 7262.92,
+ "end": 7263.94,
+ "text": "and"
+ },
+ {
+ "id": 15032,
+ "start": 7263.94,
+ "end": 7264.1,
+ "text": "I'm"
+ },
+ {
+ "id": 15033,
+ "start": 7264.1,
+ "end": 7264.28,
+ "text": "going"
+ },
+ {
+ "id": 15034,
+ "start": 7264.28,
+ "end": 7264.34,
+ "text": "to"
+ },
+ {
+ "id": 15035,
+ "start": 7264.34,
+ "end": 7264.72,
+ "text": "submit"
+ },
+ {
+ "id": 15036,
+ "start": 7264.72,
+ "end": 7264.84,
+ "text": "a"
+ },
+ {
+ "id": 15037,
+ "start": 7264.84,
+ "end": 7265.18,
+ "text": "letter"
+ },
+ {
+ "id": 15038,
+ "start": 7265.18,
+ "end": 7265.38,
+ "text": "for"
+ },
+ {
+ "id": 15039,
+ "start": 7265.38,
+ "end": 7265.5,
+ "text": "the"
+ },
+ {
+ "id": 15040,
+ "start": 7265.5,
+ "end": 7265.92,
+ "text": "record"
+ },
+ {
+ "id": 15041,
+ "start": 7265.92,
+ "end": 7266.42,
+ "text": "from"
+ },
+ {
+ "id": 15042,
+ "start": 7266.42,
+ "end": 7267.1,
+ "text": "Sandy"
+ },
+ {
+ "id": 15043,
+ "start": 7267.1,
+ "end": 7267.92,
+ "text": "parcels"
+ },
+ {
+ "id": 15044,
+ "start": 7267.92,
+ "end": 7268.52,
+ "text": "with"
+ },
+ {
+ "id": 15045,
+ "start": 7268.52,
+ "end": 7268.74,
+ "text": "your"
+ },
+ {
+ "id": 15046,
+ "start": 7268.74,
+ "end": 7270.14,
+ "text": "permission."
+ },
+ {
+ "id": 15047,
+ "start": 7270.14,
+ "end": 7271.32,
+ "text": "That"
+ },
+ {
+ "id": 15048,
+ "start": 7271.32,
+ "end": 7271.94,
+ "text": "indicates"
+ },
+ {
+ "id": 15049,
+ "start": 7271.94,
+ "end": 7272.5,
+ "text": "not"
+ },
+ {
+ "id": 15050,
+ "start": 7272.5,
+ "end": 7272.76,
+ "text": "only"
+ },
+ {
+ "id": 15051,
+ "start": 7272.76,
+ "end": 7273.16,
+ "text": "a"
+ },
+ {
+ "id": 15052,
+ "start": 7273.16,
+ "end": 7273.44,
+ "text": "lack"
+ },
+ {
+ "id": 15053,
+ "start": 7273.44,
+ "end": 7273.56,
+ "text": "of"
+ },
+ {
+ "id": 15054,
+ "start": 7273.56,
+ "end": 7274.16,
+ "text": "resources,"
+ },
+ {
+ "id": 15055,
+ "start": 7274.16,
+ "end": 7274.36,
+ "text": "but"
+ },
+ {
+ "id": 15056,
+ "start": 7274.36,
+ "end": 7274.72,
+ "text": "lack"
+ },
+ {
+ "id": 15057,
+ "start": 7274.72,
+ "end": 7275.04,
+ "text": "of"
+ },
+ {
+ "id": 15058,
+ "start": 7275.04,
+ "end": 7275.68,
+ "text": "attention"
+ },
+ {
+ "id": 15059,
+ "start": 7275.68,
+ "end": 7276.92,
+ "text": "to"
+ },
+ {
+ "id": 15060,
+ "start": 7276.92,
+ "end": 7277.7,
+ "text": "privacy."
+ },
+ {
+ "id": 15061,
+ "start": 7277.7,
+ "end": 7278.6,
+ "text": "And"
+ },
+ {
+ "id": 15062,
+ "start": 7278.6,
+ "end": 7279.02,
+ "text": "so"
+ },
+ {
+ "id": 15063,
+ "start": 7279.02,
+ "end": 7281.4,
+ "text": "my"
+ },
+ {
+ "id": 15064,
+ "start": 7281.4,
+ "end": 7282.38,
+ "text": "reservation"
+ },
+ {
+ "id": 15065,
+ "start": 7282.38,
+ "end": 7283,
+ "text": "about"
+ },
+ {
+ "id": 15066,
+ "start": 7283,
+ "end": 7283.2,
+ "text": "your"
+ },
+ {
+ "id": 15067,
+ "start": 7283.2,
+ "end": 7283.68,
+ "text": "testimony"
+ },
+ {
+ "id": 15068,
+ "start": 7283.68,
+ "end": 7283.96,
+ "text": "today"
+ },
+ {
+ "id": 15069,
+ "start": 7283.96,
+ "end": 7284.4,
+ "text": "is"
+ },
+ {
+ "id": 15070,
+ "start": 7284.4,
+ "end": 7285.46,
+ "text": "that"
+ },
+ {
+ "id": 15071,
+ "start": 7285.46,
+ "end": 7286.58,
+ "text": "I"
+ },
+ {
+ "id": 15072,
+ "start": 7286.58,
+ "end": 7286.86,
+ "text": "don't"
+ },
+ {
+ "id": 15073,
+ "start": 7286.86,
+ "end": 7287.34,
+ "text": "see"
+ },
+ {
+ "id": 15074,
+ "start": 7287.34,
+ "end": 7287.98,
+ "text": "how"
+ },
+ {
+ "id": 15075,
+ "start": 7287.98,
+ "end": 7288.62,
+ "text": "you"
+ },
+ {
+ "id": 15076,
+ "start": 7288.62,
+ "end": 7288.82,
+ "text": "can"
+ },
+ {
+ "id": 15077,
+ "start": 7288.82,
+ "end": 7289.16,
+ "text": "change"
+ },
+ {
+ "id": 15078,
+ "start": 7289.16,
+ "end": 7289.34,
+ "text": "your"
+ },
+ {
+ "id": 15079,
+ "start": 7289.34,
+ "end": 7289.72,
+ "text": "business."
+ },
+ {
+ "id": 15080,
+ "start": 7289.72,
+ "end": 7290.04,
+ "text": "Model,"
+ },
+ {
+ "id": 15081,
+ "start": 7290.04,
+ "end": 7290.92,
+ "text": "unless"
+ },
+ {
+ "id": 15082,
+ "start": 7290.92,
+ "end": 7291.16,
+ "text": "there"
+ },
+ {
+ "id": 15083,
+ "start": 7291.16,
+ "end": 7291.32,
+ "text": "are"
+ },
+ {
+ "id": 15084,
+ "start": 7291.32,
+ "end": 7291.94,
+ "text": "specific"
+ },
+ {
+ "id": 15085,
+ "start": 7291.94,
+ "end": 7292.82,
+ "text": "rules"
+ },
+ {
+ "id": 15086,
+ "start": 7292.82,
+ "end": 7292.96,
+ "text": "of"
+ },
+ {
+ "id": 15087,
+ "start": 7292.96,
+ "end": 7293.08,
+ "text": "the"
+ },
+ {
+ "id": 15088,
+ "start": 7293.08,
+ "end": 7293.3,
+ "text": "road,"
+ },
+ {
+ "id": 15089,
+ "start": 7293.3,
+ "end": 7293.5,
+ "text": "your"
+ },
+ {
+ "id": 15090,
+ "start": 7293.5,
+ "end": 7293.82,
+ "text": "business"
+ },
+ {
+ "id": 15091,
+ "start": 7293.82,
+ "end": 7294.12,
+ "text": "model"
+ },
+ {
+ "id": 15092,
+ "start": 7294.12,
+ "end": 7294.4,
+ "text": "is"
+ },
+ {
+ "id": 15093,
+ "start": 7294.4,
+ "end": 7294.56,
+ "text": "to"
+ },
+ {
+ "id": 15094,
+ "start": 7294.56,
+ "end": 7295.3,
+ "text": "monetize"
+ },
+ {
+ "id": 15095,
+ "start": 7295.3,
+ "end": 7296.4,
+ "text": "user"
+ },
+ {
+ "id": 15096,
+ "start": 7296.4,
+ "end": 7297,
+ "text": "information"
+ },
+ {
+ "id": 15097,
+ "start": 7297,
+ "end": 7297.28,
+ "text": "to"
+ },
+ {
+ "id": 15098,
+ "start": 7297.28,
+ "end": 7297.88,
+ "text": "maximize"
+ },
+ {
+ "id": 15099,
+ "start": 7297.88,
+ "end": 7298.36,
+ "text": "profit"
+ },
+ {
+ "id": 15100,
+ "start": 7298.36,
+ "end": 7299.12,
+ "text": "over"
+ },
+ {
+ "id": 15101,
+ "start": 7299.12,
+ "end": 7300.06,
+ "text": "privacy."
+ },
+ {
+ "id": 15102,
+ "start": 7300.06,
+ "end": 7301.12,
+ "text": "And"
+ },
+ {
+ "id": 15103,
+ "start": 7301.12,
+ "end": 7302.26,
+ "text": "unless"
+ },
+ {
+ "id": 15104,
+ "start": 7302.26,
+ "end": 7302.54,
+ "text": "there"
+ },
+ {
+ "id": 15105,
+ "start": 7302.54,
+ "end": 7302.76,
+ "text": "are"
+ },
+ {
+ "id": 15106,
+ "start": 7302.76,
+ "end": 7303.72,
+ "text": "specific"
+ },
+ {
+ "id": 15107,
+ "start": 7303.72,
+ "end": 7304.62,
+ "text": "rules"
+ },
+ {
+ "id": 15108,
+ "start": 7304.62,
+ "end": 7304.84,
+ "text": "and"
+ },
+ {
+ "id": 15109,
+ "start": 7304.84,
+ "end": 7305.48,
+ "text": "requirements"
+ },
+ {
+ "id": 15110,
+ "start": 7305.48,
+ "end": 7305.96,
+ "text": "enforced"
+ },
+ {
+ "id": 15111,
+ "start": 7305.96,
+ "end": 7306.36,
+ "text": "by"
+ },
+ {
+ "id": 15112,
+ "start": 7306.36,
+ "end": 7306.88,
+ "text": "an"
+ },
+ {
+ "id": 15113,
+ "start": 7306.88,
+ "end": 7307.52,
+ "text": "outside"
+ },
+ {
+ "id": 15114,
+ "start": 7307.52,
+ "end": 7309.54,
+ "text": "agency."
+ },
+ {
+ "id": 15115,
+ "start": 7309.54,
+ "end": 7309.9,
+ "text": "I"
+ },
+ {
+ "id": 15116,
+ "start": 7309.9,
+ "end": 7310.86,
+ "text": "have"
+ },
+ {
+ "id": 15117,
+ "start": 7310.86,
+ "end": 7311.14,
+ "text": "no"
+ },
+ {
+ "id": 15118,
+ "start": 7311.14,
+ "end": 7311.68,
+ "text": "assurance"
+ },
+ {
+ "id": 15119,
+ "start": 7311.68,
+ "end": 7311.96,
+ "text": "that"
+ },
+ {
+ "id": 15120,
+ "start": 7311.96,
+ "end": 7312.72,
+ "text": "these"
+ },
+ {
+ "id": 15121,
+ "start": 7312.72,
+ "end": 7313.28,
+ "text": "kinds"
+ },
+ {
+ "id": 15122,
+ "start": 7313.28,
+ "end": 7313.66,
+ "text": "of"
+ },
+ {
+ "id": 15123,
+ "start": 7313.66,
+ "end": 7314.14,
+ "text": "vague"
+ },
+ {
+ "id": 15124,
+ "start": 7314.14,
+ "end": 7314.94,
+ "text": "commitments"
+ },
+ {
+ "id": 15125,
+ "start": 7314.94,
+ "end": 7315.94,
+ "text": "are"
+ },
+ {
+ "id": 15126,
+ "start": 7315.94,
+ "end": 7316.26,
+ "text": "going"
+ },
+ {
+ "id": 15127,
+ "start": 7316.26,
+ "end": 7317.2,
+ "text": "to"
+ },
+ {
+ "id": 15128,
+ "start": 7317.2,
+ "end": 7318.16,
+ "text": "produce"
+ },
+ {
+ "id": 15129,
+ "start": 7318.16,
+ "end": 7318.58,
+ "text": "action."
+ },
+ {
+ "id": 15130,
+ "start": 7318.58,
+ "end": 7319.34,
+ "text": "So"
+ },
+ {
+ "id": 15131,
+ "start": 7319.34,
+ "end": 7319.46,
+ "text": "I"
+ },
+ {
+ "id": 15132,
+ "start": 7319.46,
+ "end": 7319.64,
+ "text": "want"
+ },
+ {
+ "id": 15133,
+ "start": 7319.64,
+ "end": 7319.74,
+ "text": "to"
+ },
+ {
+ "id": 15134,
+ "start": 7319.74,
+ "end": 7319.92,
+ "text": "ask"
+ },
+ {
+ "id": 15135,
+ "start": 7319.92,
+ "end": 7320.1,
+ "text": "you"
+ },
+ {
+ "id": 15136,
+ "start": 7320.1,
+ "end": 7320.18,
+ "text": "a"
+ },
+ {
+ "id": 15137,
+ "start": 7320.18,
+ "end": 7320.46,
+ "text": "couple"
+ },
+ {
+ "id": 15138,
+ "start": 7320.46,
+ "end": 7320.66,
+ "text": "of"
+ },
+ {
+ "id": 15139,
+ "start": 7320.66,
+ "end": 7321.22,
+ "text": "very"
+ },
+ {
+ "id": 15140,
+ "start": 7321.22,
+ "end": 7321.7,
+ "text": "specific"
+ },
+ {
+ "id": 15141,
+ "start": 7321.7,
+ "end": 7322.08,
+ "text": "questions"
+ },
+ {
+ "id": 15142,
+ "start": 7322.08,
+ "end": 7322.9,
+ "text": "and"
+ },
+ {
+ "id": 15143,
+ "start": 7322.9,
+ "end": 7323.06,
+ "text": "they"
+ },
+ {
+ "id": 15144,
+ "start": 7323.06,
+ "end": 7323.2,
+ "text": "are"
+ },
+ {
+ "id": 15145,
+ "start": 7323.2,
+ "end": 7323.48,
+ "text": "based"
+ },
+ {
+ "id": 15146,
+ "start": 7323.48,
+ "end": 7323.62,
+ "text": "on"
+ },
+ {
+ "id": 15147,
+ "start": 7323.62,
+ "end": 7324.3,
+ "text": "legislation"
+ },
+ {
+ "id": 15148,
+ "start": 7324.3,
+ "end": 7324.58,
+ "text": "that"
+ },
+ {
+ "id": 15149,
+ "start": 7324.58,
+ "end": 7324.8,
+ "text": "I've"
+ },
+ {
+ "id": 15150,
+ "start": 7324.8,
+ "end": 7325.2,
+ "text": "offered"
+ },
+ {
+ "id": 15151,
+ "start": 7325.2,
+ "end": 7325.44,
+ "text": "the"
+ },
+ {
+ "id": 15152,
+ "start": 7325.44,
+ "end": 7325.64,
+ "text": "my"
+ },
+ {
+ "id": 15153,
+ "start": 7325.64,
+ "end": 7325.98,
+ "text": "data"
+ },
+ {
+ "id": 15154,
+ "start": 7325.98,
+ "end": 7326.28,
+ "text": "ACT"
+ },
+ {
+ "id": 15155,
+ "start": 7326.28,
+ "end": 7327.38,
+ "text": "legislation"
+ },
+ {
+ "id": 15156,
+ "start": 7327.38,
+ "end": 7327.56,
+ "text": "that"
+ },
+ {
+ "id": 15157,
+ "start": 7327.56,
+ "end": 7327.94,
+ "text": "Senator"
+ },
+ {
+ "id": 15158,
+ "start": 7327.94,
+ "end": 7328.32,
+ "text": "Markey"
+ },
+ {
+ "id": 15159,
+ "start": 7328.32,
+ "end": 7328.52,
+ "text": "is"
+ },
+ {
+ "id": 15160,
+ "start": 7328.52,
+ "end": 7329.48,
+ "text": "introducing"
+ },
+ {
+ "id": 15161,
+ "start": 7329.48,
+ "end": 7329.78,
+ "text": "today."
+ },
+ {
+ "id": 15162,
+ "start": 7329.78,
+ "end": 7329.92,
+ "text": "The"
+ },
+ {
+ "id": 15163,
+ "start": 7329.92,
+ "end": 7330.3,
+ "text": "consent"
+ },
+ {
+ "id": 15164,
+ "start": 7330.3,
+ "end": 7330.52,
+ "text": "act"
+ },
+ {
+ "id": 15165,
+ "start": 7330.52,
+ "end": 7330.7,
+ "text": "which"
+ },
+ {
+ "id": 15166,
+ "start": 7330.7,
+ "end": 7330.96,
+ "text": "I'm"
+ },
+ {
+ "id": 15167,
+ "start": 7330.96,
+ "end": 7332.78,
+ "text": "joining"
+ },
+ {
+ "id": 15168,
+ "start": 7332.78,
+ "end": 7333.7,
+ "text": "don't"
+ },
+ {
+ "id": 15169,
+ "start": 7333.7,
+ "end": 7333.86,
+ "text": "you"
+ },
+ {
+ "id": 15170,
+ "start": 7333.86,
+ "end": 7334.2,
+ "text": "agree"
+ },
+ {
+ "id": 15171,
+ "start": 7334.2,
+ "end": 7334.7,
+ "text": "that"
+ },
+ {
+ "id": 15172,
+ "start": 7334.7,
+ "end": 7335.26,
+ "text": "companies"
+ },
+ {
+ "id": 15173,
+ "start": 7335.26,
+ "end": 7335.48,
+ "text": "ought"
+ },
+ {
+ "id": 15174,
+ "start": 7335.48,
+ "end": 7335.56,
+ "text": "to"
+ },
+ {
+ "id": 15175,
+ "start": 7335.56,
+ "end": 7335.64,
+ "text": "be"
+ },
+ {
+ "id": 15176,
+ "start": 7335.64,
+ "end": 7336.62,
+ "text": "required"
+ },
+ {
+ "id": 15177,
+ "start": 7336.62,
+ "end": 7337.64,
+ "text": "to"
+ },
+ {
+ "id": 15178,
+ "start": 7337.64,
+ "end": 7338.36,
+ "text": "provide"
+ },
+ {
+ "id": 15179,
+ "start": 7338.36,
+ "end": 7338.8,
+ "text": "users"
+ },
+ {
+ "id": 15180,
+ "start": 7338.8,
+ "end": 7339.1,
+ "text": "with"
+ },
+ {
+ "id": 15181,
+ "start": 7339.1,
+ "end": 7340.04,
+ "text": "clear"
+ },
+ {
+ "id": 15182,
+ "start": 7340.04,
+ "end": 7340.9,
+ "text": "plain"
+ },
+ {
+ "id": 15183,
+ "start": 7340.9,
+ "end": 7341.78,
+ "text": "information"
+ },
+ {
+ "id": 15184,
+ "start": 7341.78,
+ "end": 7342.66,
+ "text": "about"
+ },
+ {
+ "id": 15185,
+ "start": 7342.66,
+ "end": 7342.86,
+ "text": "how"
+ },
+ {
+ "id": 15186,
+ "start": 7342.86,
+ "end": 7343.08,
+ "text": "their"
+ },
+ {
+ "id": 15187,
+ "start": 7343.08,
+ "end": 7343.34,
+ "text": "data"
+ },
+ {
+ "id": 15188,
+ "start": 7343.34,
+ "end": 7343.56,
+ "text": "will"
+ },
+ {
+ "id": 15189,
+ "start": 7343.56,
+ "end": 7343.64,
+ "text": "be"
+ },
+ {
+ "id": 15190,
+ "start": 7343.64,
+ "end": 7343.94,
+ "text": "used"
+ },
+ {
+ "id": 15191,
+ "start": 7343.94,
+ "end": 7344.88,
+ "text": "and"
+ },
+ {
+ "id": 15192,
+ "start": 7344.88,
+ "end": 7346.3,
+ "text": "specific"
+ },
+ {
+ "id": 15193,
+ "start": 7346.3,
+ "end": 7347.38,
+ "text": "ability"
+ },
+ {
+ "id": 15194,
+ "start": 7347.38,
+ "end": 7348.74,
+ "text": "to"
+ },
+ {
+ "id": 15195,
+ "start": 7348.74,
+ "end": 7349.58,
+ "text": "consent"
+ },
+ {
+ "id": 15196,
+ "start": 7349.58,
+ "end": 7349.72,
+ "text": "to"
+ },
+ {
+ "id": 15197,
+ "start": 7349.72,
+ "end": 7349.86,
+ "text": "the"
+ },
+ {
+ "id": 15198,
+ "start": 7349.86,
+ "end": 7350.08,
+ "text": "use"
+ },
+ {
+ "id": 15199,
+ "start": 7350.08,
+ "end": 7350.22,
+ "text": "of"
+ },
+ {
+ "id": 15200,
+ "start": 7350.22,
+ "end": 7350.48,
+ "text": "that"
+ },
+ {
+ "id": 15201,
+ "start": 7350.48,
+ "end": 7352.8,
+ "text": "information,"
+ },
+ {
+ "id": 15202,
+ "start": 7352.8,
+ "end": 7353.78,
+ "text": "Senator."
+ },
+ {
+ "id": 15203,
+ "start": 7353.78,
+ "end": 7354.48,
+ "text": "I"
+ },
+ {
+ "id": 15204,
+ "start": 7354.48,
+ "end": 7355.02,
+ "text": "do"
+ },
+ {
+ "id": 15205,
+ "start": 7355.02,
+ "end": 7355.5,
+ "text": "generally"
+ },
+ {
+ "id": 15206,
+ "start": 7355.5,
+ "end": 7355.82,
+ "text": "agree"
+ },
+ {
+ "id": 15207,
+ "start": 7355.82,
+ "end": 7356.02,
+ "text": "with"
+ },
+ {
+ "id": 15208,
+ "start": 7356.02,
+ "end": 7356.44,
+ "text": "what"
+ },
+ {
+ "id": 15209,
+ "start": 7356.44,
+ "end": 7356.64,
+ "text": "you're"
+ },
+ {
+ "id": 15210,
+ "start": 7356.64,
+ "end": 7356.88,
+ "text": "saying."
+ },
+ {
+ "id": 15211,
+ "start": 7356.88,
+ "end": 7357.14,
+ "text": "And"
+ },
+ {
+ "id": 15212,
+ "start": 7357.14,
+ "end": 7357.26,
+ "text": "I"
+ },
+ {
+ "id": 15213,
+ "start": 7357.26,
+ "end": 7357.58,
+ "text": "laid"
+ },
+ {
+ "id": 15214,
+ "start": 7357.58,
+ "end": 7357.74,
+ "text": "that"
+ },
+ {
+ "id": 15215,
+ "start": 7357.74,
+ "end": 7357.98,
+ "text": "out"
+ },
+ {
+ "id": 15216,
+ "start": 7357.98,
+ "end": 7358.5,
+ "text": "earlier."
+ },
+ {
+ "id": 15217,
+ "start": 7358.5,
+ "end": 7358.68,
+ "text": "When"
+ },
+ {
+ "id": 15218,
+ "start": 7358.68,
+ "end": 7358.76,
+ "text": "I"
+ },
+ {
+ "id": 15219,
+ "start": 7358.76,
+ "end": 7359.5,
+ "text": "talked"
+ },
+ {
+ "id": 15220,
+ "start": 7359.5,
+ "end": 7359.82,
+ "text": "about,"
+ },
+ {
+ "id": 15221,
+ "start": 7359.82,
+ "end": 7360.24,
+ "text": "what"
+ },
+ {
+ "id": 15222,
+ "start": 7360.24,
+ "end": 7360.46,
+ "text": "would"
+ },
+ {
+ "id": 15223,
+ "start": 7360.46,
+ "end": 7360.6,
+ "text": "you"
+ },
+ {
+ "id": 15224,
+ "start": 7360.6,
+ "end": 7360.96,
+ "text": "agree?"
+ },
+ {
+ "id": 15225,
+ "start": 7360.96,
+ "end": 7361.1,
+ "text": "To"
+ },
+ {
+ "id": 15226,
+ "start": 7361.1,
+ "end": 7361.24,
+ "text": "an"
+ },
+ {
+ "id": 15227,
+ "start": 7361.24,
+ "end": 7361.56,
+ "text": "opt"
+ },
+ {
+ "id": 15228,
+ "start": 7361.56,
+ "end": 7362.48,
+ "text": "in"
+ },
+ {
+ "id": 15229,
+ "start": 7362.48,
+ "end": 7362.88,
+ "text": "as"
+ },
+ {
+ "id": 15230,
+ "start": 7362.88,
+ "end": 7363.3,
+ "text": "opposed"
+ },
+ {
+ "id": 15231,
+ "start": 7363.3,
+ "end": 7363.48,
+ "text": "to"
+ },
+ {
+ "id": 15232,
+ "start": 7363.48,
+ "end": 7363.8,
+ "text": "an"
+ },
+ {
+ "id": 15233,
+ "start": 7363.8,
+ "end": 7364.12,
+ "text": "opt"
+ },
+ {
+ "id": 15234,
+ "start": 7364.12,
+ "end": 7365.88,
+ "text": "out."
+ },
+ {
+ "id": 15235,
+ "start": 7365.88,
+ "end": 7366.86,
+ "text": "Senator,"
+ },
+ {
+ "id": 15236,
+ "start": 7366.86,
+ "end": 7366.94,
+ "text": "I"
+ },
+ {
+ "id": 15237,
+ "start": 7366.94,
+ "end": 7367.14,
+ "text": "think"
+ },
+ {
+ "id": 15238,
+ "start": 7367.14,
+ "end": 7367.38,
+ "text": "that"
+ },
+ {
+ "id": 15239,
+ "start": 7367.38,
+ "end": 7367.94,
+ "text": "that"
+ },
+ {
+ "id": 15240,
+ "start": 7367.94,
+ "end": 7368.52,
+ "text": "certainly"
+ },
+ {
+ "id": 15241,
+ "start": 7368.52,
+ "end": 7369.52,
+ "text": "makes"
+ },
+ {
+ "id": 15242,
+ "start": 7369.52,
+ "end": 7369.78,
+ "text": "sense"
+ },
+ {
+ "id": 15243,
+ "start": 7369.78,
+ "end": 7369.88,
+ "text": "to"
+ },
+ {
+ "id": 15244,
+ "start": 7369.88,
+ "end": 7370.34,
+ "text": "discuss."
+ },
+ {
+ "id": 15245,
+ "start": 7370.34,
+ "end": 7370.68,
+ "text": "And"
+ },
+ {
+ "id": 15246,
+ "start": 7370.68,
+ "end": 7370.74,
+ "text": "I"
+ },
+ {
+ "id": 15247,
+ "start": 7370.74,
+ "end": 7370.94,
+ "text": "think"
+ },
+ {
+ "id": 15248,
+ "start": 7370.94,
+ "end": 7371.06,
+ "text": "the"
+ },
+ {
+ "id": 15249,
+ "start": 7371.06,
+ "end": 7371.48,
+ "text": "details"
+ },
+ {
+ "id": 15250,
+ "start": 7371.48,
+ "end": 7371.76,
+ "text": "around"
+ },
+ {
+ "id": 15251,
+ "start": 7371.76,
+ "end": 7371.94,
+ "text": "this"
+ },
+ {
+ "id": 15252,
+ "start": 7371.94,
+ "end": 7372.24,
+ "text": "matter,"
+ },
+ {
+ "id": 15253,
+ "start": 7372.24,
+ "end": 7372.3,
+ "text": "a"
+ },
+ {
+ "id": 15254,
+ "start": 7372.3,
+ "end": 7372.56,
+ "text": "lot,"
+ },
+ {
+ "id": 15255,
+ "start": 7372.56,
+ "end": 7373.12,
+ "text": "which"
+ },
+ {
+ "id": 15256,
+ "start": 7373.12,
+ "end": 7373.28,
+ "text": "I"
+ },
+ {
+ "id": 15257,
+ "start": 7373.28,
+ "end": 7373.64,
+ "text": "agree"
+ },
+ {
+ "id": 15258,
+ "start": 7373.64,
+ "end": 7374.32,
+ "text": "that"
+ },
+ {
+ "id": 15259,
+ "start": 7374.32,
+ "end": 7375.34,
+ "text": "users"
+ },
+ {
+ "id": 15260,
+ "start": 7375.34,
+ "end": 7375.94,
+ "text": "should"
+ },
+ {
+ "id": 15261,
+ "start": 7375.94,
+ "end": 7376.06,
+ "text": "be"
+ },
+ {
+ "id": 15262,
+ "start": 7376.06,
+ "end": 7376.28,
+ "text": "able"
+ },
+ {
+ "id": 15263,
+ "start": 7376.28,
+ "end": 7376.36,
+ "text": "to"
+ },
+ {
+ "id": 15264,
+ "start": 7376.36,
+ "end": 7376.9,
+ "text": "access"
+ },
+ {
+ "id": 15265,
+ "start": 7376.9,
+ "end": 7377.49,
+ "text": "all"
+ },
+ {
+ "id": 15266,
+ "start": 7377.49,
+ "end": 7377.83,
+ "text": "their"
+ },
+ {
+ "id": 15267,
+ "start": 7377.83,
+ "end": 7379.85,
+ "text": "information."
+ },
+ {
+ "id": 15268,
+ "start": 7379.85,
+ "end": 7380.85,
+ "text": "Senator"
+ },
+ {
+ "id": 15269,
+ "start": 7380.85,
+ "end": 7381.07,
+ "text": "yes,"
+ },
+ {
+ "id": 15270,
+ "start": 7381.07,
+ "end": 7381.19,
+ "text": "of"
+ },
+ {
+ "id": 15271,
+ "start": 7381.19,
+ "end": 7381.49,
+ "text": "course."
+ },
+ {
+ "id": 15272,
+ "start": 7381.49,
+ "end": 7382.41,
+ "text": "All"
+ },
+ {
+ "id": 15273,
+ "start": 7382.41,
+ "end": 7382.59,
+ "text": "the"
+ },
+ {
+ "id": 15274,
+ "start": 7382.59,
+ "end": 7383.11,
+ "text": "information"
+ },
+ {
+ "id": 15275,
+ "start": 7383.11,
+ "end": 7383.29,
+ "text": "that"
+ },
+ {
+ "id": 15276,
+ "start": 7383.29,
+ "end": 7383.49,
+ "text": "you"
+ },
+ {
+ "id": 15277,
+ "start": 7383.49,
+ "end": 7383.89,
+ "text": "collect"
+ },
+ {
+ "id": 15278,
+ "start": 7383.89,
+ "end": 7384.11,
+ "text": "as"
+ },
+ {
+ "id": 15279,
+ "start": 7384.11,
+ "end": 7384.19,
+ "text": "a"
+ },
+ {
+ "id": 15280,
+ "start": 7384.19,
+ "end": 7384.63,
+ "text": "result"
+ },
+ {
+ "id": 15281,
+ "start": 7384.63,
+ "end": 7384.89,
+ "text": "of"
+ },
+ {
+ "id": 15282,
+ "start": 7384.89,
+ "end": 7385.95,
+ "text": "purchases"
+ },
+ {
+ "id": 15283,
+ "start": 7385.95,
+ "end": 7386.15,
+ "text": "from"
+ },
+ {
+ "id": 15284,
+ "start": 7386.15,
+ "end": 7386.55,
+ "text": "data"
+ },
+ {
+ "id": 15285,
+ "start": 7386.55,
+ "end": 7387.01,
+ "text": "brokers"
+ },
+ {
+ "id": 15286,
+ "start": 7387.01,
+ "end": 7387.57,
+ "text": "as"
+ },
+ {
+ "id": 15287,
+ "start": 7387.57,
+ "end": 7387.77,
+ "text": "well"
+ },
+ {
+ "id": 15288,
+ "start": 7387.77,
+ "end": 7387.91,
+ "text": "as"
+ },
+ {
+ "id": 15289,
+ "start": 7387.91,
+ "end": 7388.41,
+ "text": "tracking"
+ },
+ {
+ "id": 15290,
+ "start": 7388.41,
+ "end": 7389.54,
+ "text": "them."
+ },
+ {
+ "id": 15291,
+ "start": 7389.54,
+ "end": 7390.6,
+ "text": "Senator,"
+ },
+ {
+ "id": 15292,
+ "start": 7390.6,
+ "end": 7390.8,
+ "text": "we"
+ },
+ {
+ "id": 15293,
+ "start": 7390.8,
+ "end": 7391.24,
+ "text": "have"
+ },
+ {
+ "id": 15294,
+ "start": 7391.24,
+ "end": 7391.76,
+ "text": "already"
+ },
+ {
+ "id": 15295,
+ "start": 7391.76,
+ "end": 7392.06,
+ "text": "a"
+ },
+ {
+ "id": 15296,
+ "start": 7392.06,
+ "end": 7392.48,
+ "text": "download"
+ },
+ {
+ "id": 15297,
+ "start": 7392.48,
+ "end": 7392.66,
+ "text": "your"
+ },
+ {
+ "id": 15298,
+ "start": 7392.66,
+ "end": 7393.2,
+ "text": "information"
+ },
+ {
+ "id": 15299,
+ "start": 7393.2,
+ "end": 7393.54,
+ "text": "tool"
+ },
+ {
+ "id": 15300,
+ "start": 7393.54,
+ "end": 7394.04,
+ "text": "that"
+ },
+ {
+ "id": 15301,
+ "start": 7394.04,
+ "end": 7394.44,
+ "text": "allows"
+ },
+ {
+ "id": 15302,
+ "start": 7394.44,
+ "end": 7394.7,
+ "text": "people"
+ },
+ {
+ "id": 15303,
+ "start": 7394.7,
+ "end": 7394.9,
+ "text": "to"
+ },
+ {
+ "id": 15304,
+ "start": 7394.9,
+ "end": 7395.28,
+ "text": "see"
+ },
+ {
+ "id": 15305,
+ "start": 7395.28,
+ "end": 7395.52,
+ "text": "and"
+ },
+ {
+ "id": 15306,
+ "start": 7395.52,
+ "end": 7395.64,
+ "text": "to"
+ },
+ {
+ "id": 15307,
+ "start": 7395.64,
+ "end": 7395.9,
+ "text": "take"
+ },
+ {
+ "id": 15308,
+ "start": 7395.9,
+ "end": 7396.16,
+ "text": "out"
+ },
+ {
+ "id": 15309,
+ "start": 7396.16,
+ "end": 7396.72,
+ "text": "all"
+ },
+ {
+ "id": 15310,
+ "start": 7396.72,
+ "end": 7396.8,
+ "text": "of"
+ },
+ {
+ "id": 15311,
+ "start": 7396.8,
+ "end": 7396.94,
+ "text": "the"
+ },
+ {
+ "id": 15312,
+ "start": 7396.94,
+ "end": 7397.46,
+ "text": "information"
+ },
+ {
+ "id": 15313,
+ "start": 7397.46,
+ "end": 7397.7,
+ "text": "that"
+ },
+ {
+ "id": 15314,
+ "start": 7397.7,
+ "end": 7398.24,
+ "text": "Facebook"
+ },
+ {
+ "id": 15315,
+ "start": 7398.24,
+ "end": 7398.64,
+ "text": "that"
+ },
+ {
+ "id": 15316,
+ "start": 7398.64,
+ "end": 7398.88,
+ "text": "they've"
+ },
+ {
+ "id": 15317,
+ "start": 7398.88,
+ "end": 7399,
+ "text": "put"
+ },
+ {
+ "id": 15318,
+ "start": 7399,
+ "end": 7399.22,
+ "text": "into"
+ },
+ {
+ "id": 15319,
+ "start": 7399.22,
+ "end": 7399.6,
+ "text": "Facebook"
+ },
+ {
+ "id": 15320,
+ "start": 7399.6,
+ "end": 7399.72,
+ "text": "or"
+ },
+ {
+ "id": 15321,
+ "start": 7399.72,
+ "end": 7399.88,
+ "text": "that"
+ },
+ {
+ "id": 15322,
+ "start": 7399.88,
+ "end": 7400.22,
+ "text": "Facebook"
+ },
+ {
+ "id": 15323,
+ "start": 7400.22,
+ "end": 7400.46,
+ "text": "knows"
+ },
+ {
+ "id": 15324,
+ "start": 7400.46,
+ "end": 7400.62,
+ "text": "about"
+ },
+ {
+ "id": 15325,
+ "start": 7400.62,
+ "end": 7400.8,
+ "text": "them."
+ },
+ {
+ "id": 15326,
+ "start": 7400.8,
+ "end": 7400.98,
+ "text": "So,"
+ },
+ {
+ "id": 15327,
+ "start": 7400.98,
+ "end": 7401.18,
+ "text": "yes,"
+ },
+ {
+ "id": 15328,
+ "start": 7401.18,
+ "end": 7401.32,
+ "text": "I"
+ },
+ {
+ "id": 15329,
+ "start": 7401.32,
+ "end": 7401.54,
+ "text": "agree"
+ },
+ {
+ "id": 15330,
+ "start": 7401.54,
+ "end": 7401.68,
+ "text": "with"
+ },
+ {
+ "id": 15331,
+ "start": 7401.68,
+ "end": 7401.78,
+ "text": "that."
+ },
+ {
+ "id": 15332,
+ "start": 7401.78,
+ "end": 7401.9,
+ "text": "We"
+ },
+ {
+ "id": 15333,
+ "start": 7401.9,
+ "end": 7402.16,
+ "text": "already"
+ },
+ {
+ "id": 15334,
+ "start": 7402.16,
+ "end": 7402.34,
+ "text": "have"
+ },
+ {
+ "id": 15335,
+ "start": 7402.34,
+ "end": 7403.02,
+ "text": "that."
+ },
+ {
+ "id": 15336,
+ "start": 7403.02,
+ "end": 7403.06,
+ "text": "I"
+ },
+ {
+ "id": 15337,
+ "start": 7403.06,
+ "end": 7403.84,
+ "text": "have"
+ },
+ {
+ "id": 15338,
+ "start": 7403.84,
+ "end": 7403.88,
+ "text": "a"
+ },
+ {
+ "id": 15339,
+ "start": 7403.88,
+ "end": 7404.18,
+ "text": "number"
+ },
+ {
+ "id": 15340,
+ "start": 7404.18,
+ "end": 7404.28,
+ "text": "of"
+ },
+ {
+ "id": 15341,
+ "start": 7404.28,
+ "end": 7404.5,
+ "text": "other"
+ },
+ {
+ "id": 15342,
+ "start": 7404.5,
+ "end": 7405.3,
+ "text": "specific"
+ },
+ {
+ "id": 15343,
+ "start": 7405.3,
+ "end": 7406.2,
+ "text": "requests"
+ },
+ {
+ "id": 15344,
+ "start": 7406.2,
+ "end": 7407.1,
+ "text": "that"
+ },
+ {
+ "id": 15345,
+ "start": 7407.1,
+ "end": 7407.4,
+ "text": "you"
+ },
+ {
+ "id": 15346,
+ "start": 7407.4,
+ "end": 7407.86,
+ "text": "agree"
+ },
+ {
+ "id": 15347,
+ "start": 7407.86,
+ "end": 7408.2,
+ "text": "to"
+ },
+ {
+ "id": 15348,
+ "start": 7408.2,
+ "end": 7409.22,
+ "text": "support"
+ },
+ {
+ "id": 15349,
+ "start": 7409.22,
+ "end": 7410.08,
+ "text": "as"
+ },
+ {
+ "id": 15350,
+ "start": 7410.08,
+ "end": 7410.4,
+ "text": "part"
+ },
+ {
+ "id": 15351,
+ "start": 7410.4,
+ "end": 7410.54,
+ "text": "of"
+ },
+ {
+ "id": 15352,
+ "start": 7410.54,
+ "end": 7411.14,
+ "text": "legislation."
+ },
+ {
+ "id": 15353,
+ "start": 7411.14,
+ "end": 7411.2,
+ "text": "I"
+ },
+ {
+ "id": 15354,
+ "start": 7411.2,
+ "end": 7411.42,
+ "text": "think"
+ },
+ {
+ "id": 15355,
+ "start": 7411.42,
+ "end": 7412.04,
+ "text": "legislation"
+ },
+ {
+ "id": 15356,
+ "start": 7412.04,
+ "end": 7412.36,
+ "text": "is"
+ },
+ {
+ "id": 15357,
+ "start": 7412.36,
+ "end": 7413.08,
+ "text": "necessary."
+ },
+ {
+ "id": 15358,
+ "start": 7413.08,
+ "end": 7413.64,
+ "text": "The"
+ },
+ {
+ "id": 15359,
+ "start": 7413.64,
+ "end": 7413.88,
+ "text": "rules"
+ },
+ {
+ "id": 15360,
+ "start": 7413.88,
+ "end": 7414,
+ "text": "of"
+ },
+ {
+ "id": 15361,
+ "start": 7414,
+ "end": 7414.1,
+ "text": "the"
+ },
+ {
+ "id": 15362,
+ "start": 7414.1,
+ "end": 7414.42,
+ "text": "road"
+ },
+ {
+ "id": 15363,
+ "start": 7414.42,
+ "end": 7415.12,
+ "text": "have"
+ },
+ {
+ "id": 15364,
+ "start": 7415.12,
+ "end": 7415.26,
+ "text": "to"
+ },
+ {
+ "id": 15365,
+ "start": 7415.26,
+ "end": 7415.38,
+ "text": "be"
+ },
+ {
+ "id": 15366,
+ "start": 7415.38,
+ "end": 7415.84,
+ "text": "the"
+ },
+ {
+ "id": 15367,
+ "start": 7415.84,
+ "end": 7416.22,
+ "text": "result"
+ },
+ {
+ "id": 15368,
+ "start": 7416.22,
+ "end": 7416.4,
+ "text": "of"
+ },
+ {
+ "id": 15369,
+ "start": 7416.4,
+ "end": 7417.02,
+ "text": "congressional"
+ },
+ {
+ "id": 15370,
+ "start": 7417.02,
+ "end": 7418.02,
+ "text": "action"
+ },
+ {
+ "id": 15371,
+ "start": 7418.02,
+ "end": 7418.66,
+ "text": "we"
+ },
+ {
+ "id": 15372,
+ "start": 7418.66,
+ "end": 7420.18,
+ "text": "have"
+ },
+ {
+ "id": 15373,
+ "start": 7420.18,
+ "end": 7421.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 15374,
+ "start": 7421.16,
+ "end": 7421.74,
+ "text": "has"
+ },
+ {
+ "id": 15375,
+ "start": 7421.74,
+ "end": 7423.26,
+ "text": "participated"
+ },
+ {
+ "id": 15376,
+ "start": 7423.26,
+ "end": 7424.2,
+ "text": "recently"
+ },
+ {
+ "id": 15377,
+ "start": 7424.2,
+ "end": 7424.9,
+ "text": "in"
+ },
+ {
+ "id": 15378,
+ "start": 7424.9,
+ "end": 7425.56,
+ "text": "the"
+ },
+ {
+ "id": 15379,
+ "start": 7425.56,
+ "end": 7425.88,
+ "text": "fight"
+ },
+ {
+ "id": 15380,
+ "start": 7425.88,
+ "end": 7426.58,
+ "text": "against"
+ },
+ {
+ "id": 15381,
+ "start": 7426.58,
+ "end": 7428.12,
+ "text": "the"
+ },
+ {
+ "id": 15382,
+ "start": 7428.12,
+ "end": 7428.44,
+ "text": "scourge"
+ },
+ {
+ "id": 15383,
+ "start": 7428.44,
+ "end": 7428.6,
+ "text": "of"
+ },
+ {
+ "id": 15384,
+ "start": 7428.6,
+ "end": 7429.04,
+ "text": "sex"
+ },
+ {
+ "id": 15385,
+ "start": 7429.04,
+ "end": 7429.58,
+ "text": "trafficking"
+ },
+ {
+ "id": 15386,
+ "start": 7429.58,
+ "end": 7430.22,
+ "text": "and"
+ },
+ {
+ "id": 15387,
+ "start": 7430.22,
+ "end": 7430.36,
+ "text": "the"
+ },
+ {
+ "id": 15388,
+ "start": 7430.36,
+ "end": 7430.6,
+ "text": "bill"
+ },
+ {
+ "id": 15389,
+ "start": 7430.6,
+ "end": 7430.82,
+ "text": "that"
+ },
+ {
+ "id": 15390,
+ "start": 7430.82,
+ "end": 7431.58,
+ "text": "we've"
+ },
+ {
+ "id": 15391,
+ "start": 7431.58,
+ "end": 7431.8,
+ "text": "just"
+ },
+ {
+ "id": 15392,
+ "start": 7431.8,
+ "end": 7432.16,
+ "text": "passed."
+ },
+ {
+ "id": 15393,
+ "start": 7432.16,
+ "end": 7432.28,
+ "text": "It"
+ },
+ {
+ "id": 15394,
+ "start": 7432.28,
+ "end": 7432.48,
+ "text": "will"
+ },
+ {
+ "id": 15395,
+ "start": 7432.48,
+ "end": 7432.56,
+ "text": "be"
+ },
+ {
+ "id": 15396,
+ "start": 7432.56,
+ "end": 7432.82,
+ "text": "signed"
+ },
+ {
+ "id": 15397,
+ "start": 7432.82,
+ "end": 7433,
+ "text": "into"
+ },
+ {
+ "id": 15398,
+ "start": 7433,
+ "end": 7433.22,
+ "text": "law"
+ },
+ {
+ "id": 15399,
+ "start": 7433.22,
+ "end": 7433.62,
+ "text": "tomorrow"
+ },
+ {
+ "id": 15400,
+ "start": 7433.62,
+ "end": 7434.6,
+ "text": "at"
+ },
+ {
+ "id": 15401,
+ "start": 7434.6,
+ "end": 7434.86,
+ "text": "the"
+ },
+ {
+ "id": 15402,
+ "start": 7434.86,
+ "end": 7435.18,
+ "text": "stop,"
+ },
+ {
+ "id": 15403,
+ "start": 7435.18,
+ "end": 7435.87,
+ "text": "exploiting"
+ },
+ {
+ "id": 15404,
+ "start": 7435.87,
+ "end": 7436.33,
+ "text": "sex"
+ },
+ {
+ "id": 15405,
+ "start": 7436.33,
+ "end": 7436.89,
+ "text": "trafficking"
+ },
+ {
+ "id": 15406,
+ "start": 7436.89,
+ "end": 7437.15,
+ "text": "act"
+ },
+ {
+ "id": 15407,
+ "start": 7437.15,
+ "end": 7437.55,
+ "text": "was"
+ },
+ {
+ "id": 15408,
+ "start": 7437.55,
+ "end": 7438.07,
+ "text": "the"
+ },
+ {
+ "id": 15409,
+ "start": 7438.07,
+ "end": 7438.41,
+ "text": "result"
+ },
+ {
+ "id": 15410,
+ "start": 7438.41,
+ "end": 7438.49,
+ "text": "of"
+ },
+ {
+ "id": 15411,
+ "start": 7438.49,
+ "end": 7438.63,
+ "text": "our"
+ },
+ {
+ "id": 15412,
+ "start": 7438.63,
+ "end": 7439.09,
+ "text": "cooperation."
+ },
+ {
+ "id": 15413,
+ "start": 7439.09,
+ "end": 7439.19,
+ "text": "I"
+ },
+ {
+ "id": 15414,
+ "start": 7439.19,
+ "end": 7439.39,
+ "text": "hope"
+ },
+ {
+ "id": 15415,
+ "start": 7439.39,
+ "end": 7439.53,
+ "text": "that"
+ },
+ {
+ "id": 15416,
+ "start": 7439.53,
+ "end": 7439.63,
+ "text": "we"
+ },
+ {
+ "id": 15417,
+ "start": 7439.63,
+ "end": 7439.91,
+ "text": "can"
+ },
+ {
+ "id": 15418,
+ "start": 7439.91,
+ "end": 7440.91,
+ "text": "cooperate"
+ },
+ {
+ "id": 15419,
+ "start": 7440.91,
+ "end": 7441.13,
+ "text": "on"
+ },
+ {
+ "id": 15420,
+ "start": 7441.13,
+ "end": 7441.39,
+ "text": "this"
+ },
+ {
+ "id": 15421,
+ "start": 7441.39,
+ "end": 7441.59,
+ "text": "kind"
+ },
+ {
+ "id": 15422,
+ "start": 7441.59,
+ "end": 7441.71,
+ "text": "of"
+ },
+ {
+ "id": 15423,
+ "start": 7441.71,
+ "end": 7442.05,
+ "text": "measure"
+ },
+ {
+ "id": 15424,
+ "start": 7442.05,
+ "end": 7442.21,
+ "text": "as"
+ },
+ {
+ "id": 15425,
+ "start": 7442.21,
+ "end": 7442.47,
+ "text": "well."
+ },
+ {
+ "id": 15426,
+ "start": 7442.47,
+ "end": 7443.63,
+ "text": "Senator,"
+ },
+ {
+ "id": 15427,
+ "start": 7443.63,
+ "end": 7443.69,
+ "text": "I"
+ },
+ {
+ "id": 15428,
+ "start": 7443.69,
+ "end": 7443.91,
+ "text": "look"
+ },
+ {
+ "id": 15429,
+ "start": 7443.91,
+ "end": 7444.13,
+ "text": "forward"
+ },
+ {
+ "id": 15430,
+ "start": 7444.13,
+ "end": 7444.21,
+ "text": "to"
+ },
+ {
+ "id": 15431,
+ "start": 7444.21,
+ "end": 7444.49,
+ "text": "having"
+ },
+ {
+ "id": 15432,
+ "start": 7444.49,
+ "end": 7444.87,
+ "text": "my"
+ },
+ {
+ "id": 15433,
+ "start": 7444.87,
+ "end": 7445.11,
+ "text": "team"
+ },
+ {
+ "id": 15434,
+ "start": 7445.11,
+ "end": 7445.31,
+ "text": "work"
+ },
+ {
+ "id": 15435,
+ "start": 7445.31,
+ "end": 7445.45,
+ "text": "with"
+ },
+ {
+ "id": 15436,
+ "start": 7445.45,
+ "end": 7445.57,
+ "text": "you"
+ },
+ {
+ "id": 15437,
+ "start": 7445.57,
+ "end": 7445.71,
+ "text": "on"
+ },
+ {
+ "id": 15438,
+ "start": 7445.71,
+ "end": 7445.87,
+ "text": "this."
+ },
+ {
+ "id": 15439,
+ "start": 7445.87,
+ "end": 7446.07,
+ "text": "Thank"
+ },
+ {
+ "id": 15440,
+ "start": 7446.07,
+ "end": 7446.17,
+ "text": "you,"
+ },
+ {
+ "id": 15441,
+ "start": 7446.17,
+ "end": 7446.79,
+ "text": "Senator."
+ },
+ {
+ "id": 15442,
+ "start": 7446.79,
+ "end": 7446.97,
+ "text": "BLO"
+ },
+ {
+ "id": 15443,
+ "start": 7446.97,
+ "end": 7447.09,
+ "text": "with"
+ },
+ {
+ "id": 15444,
+ "start": 7447.09,
+ "end": 7447.23,
+ "text": "all"
+ },
+ {
+ "id": 15445,
+ "start": 7447.23,
+ "end": 7447.47,
+ "text": "Senator"
+ },
+ {
+ "id": 15446,
+ "start": 7447.47,
+ "end": 7448.48,
+ "text": "Cruz."
+ },
+ {
+ "id": 15447,
+ "start": 7448.48,
+ "end": 7449.48,
+ "text": "Thank"
+ },
+ {
+ "id": 15448,
+ "start": 7449.48,
+ "end": 7449.58,
+ "text": "you,"
+ },
+ {
+ "id": 15449,
+ "start": 7449.58,
+ "end": 7449.86,
+ "text": "Mr"
+ },
+ {
+ "id": 15450,
+ "start": 7449.86,
+ "end": 7450.18,
+ "text": "Chairman,"
+ },
+ {
+ "id": 15451,
+ "start": 7450.18,
+ "end": 7450.48,
+ "text": "Mr"
+ },
+ {
+ "id": 15452,
+ "start": 7450.48,
+ "end": 7450.9,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 15453,
+ "start": 7450.9,
+ "end": 7451.24,
+ "text": "Welcome."
+ },
+ {
+ "id": 15454,
+ "start": 7451.24,
+ "end": 7451.42,
+ "text": "Thank"
+ },
+ {
+ "id": 15455,
+ "start": 7451.42,
+ "end": 7451.52,
+ "text": "you"
+ },
+ {
+ "id": 15456,
+ "start": 7451.52,
+ "end": 7451.66,
+ "text": "for"
+ },
+ {
+ "id": 15457,
+ "start": 7451.66,
+ "end": 7451.88,
+ "text": "being"
+ },
+ {
+ "id": 15458,
+ "start": 7451.88,
+ "end": 7452.08,
+ "text": "here,"
+ },
+ {
+ "id": 15459,
+ "start": 7452.08,
+ "end": 7452.98,
+ "text": "Mr"
+ },
+ {
+ "id": 15460,
+ "start": 7452.98,
+ "end": 7453.34,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 15461,
+ "start": 7453.34,
+ "end": 7453.56,
+ "text": "is"
+ },
+ {
+ "id": 15462,
+ "start": 7453.56,
+ "end": 7454.14,
+ "text": "Facebook"
+ },
+ {
+ "id": 15463,
+ "start": 7454.14,
+ "end": 7454.52,
+ "text": "consider"
+ },
+ {
+ "id": 15464,
+ "start": 7454.52,
+ "end": 7454.98,
+ "text": "itself"
+ },
+ {
+ "id": 15465,
+ "start": 7454.98,
+ "end": 7455.2,
+ "text": "a"
+ },
+ {
+ "id": 15466,
+ "start": 7455.2,
+ "end": 7455.54,
+ "text": "neutral"
+ },
+ {
+ "id": 15467,
+ "start": 7455.54,
+ "end": 7455.84,
+ "text": "public"
+ },
+ {
+ "id": 15468,
+ "start": 7455.84,
+ "end": 7456.8,
+ "text": "forum."
+ },
+ {
+ "id": 15469,
+ "start": 7456.8,
+ "end": 7457.8,
+ "text": "Senator,"
+ },
+ {
+ "id": 15470,
+ "start": 7457.8,
+ "end": 7457.94,
+ "text": "we"
+ },
+ {
+ "id": 15471,
+ "start": 7457.94,
+ "end": 7458.38,
+ "text": "consider"
+ },
+ {
+ "id": 15472,
+ "start": 7458.38,
+ "end": 7458.86,
+ "text": "ourselves"
+ },
+ {
+ "id": 15473,
+ "start": 7458.86,
+ "end": 7459.02,
+ "text": "to"
+ },
+ {
+ "id": 15474,
+ "start": 7459.02,
+ "end": 7459.14,
+ "text": "be"
+ },
+ {
+ "id": 15475,
+ "start": 7459.14,
+ "end": 7459.24,
+ "text": "a"
+ },
+ {
+ "id": 15476,
+ "start": 7459.24,
+ "end": 7459.86,
+ "text": "platform"
+ },
+ {
+ "id": 15477,
+ "start": 7459.86,
+ "end": 7460.08,
+ "text": "for"
+ },
+ {
+ "id": 15478,
+ "start": 7460.08,
+ "end": 7460.34,
+ "text": "all"
+ },
+ {
+ "id": 15479,
+ "start": 7460.34,
+ "end": 7461.86,
+ "text": "ideas."
+ },
+ {
+ "id": 15480,
+ "start": 7461.86,
+ "end": 7462.94,
+ "text": "Let"
+ },
+ {
+ "id": 15481,
+ "start": 7462.94,
+ "end": 7463.04,
+ "text": "me"
+ },
+ {
+ "id": 15482,
+ "start": 7463.04,
+ "end": 7463.18,
+ "text": "ask"
+ },
+ {
+ "id": 15483,
+ "start": 7463.18,
+ "end": 7463.32,
+ "text": "the"
+ },
+ {
+ "id": 15484,
+ "start": 7463.32,
+ "end": 7463.62,
+ "text": "question"
+ },
+ {
+ "id": 15485,
+ "start": 7463.62,
+ "end": 7463.92,
+ "text": "again."
+ },
+ {
+ "id": 15486,
+ "start": 7463.92,
+ "end": 7464.2,
+ "text": "This"
+ },
+ {
+ "id": 15487,
+ "start": 7464.2,
+ "end": 7464.7,
+ "text": "Facebook"
+ },
+ {
+ "id": 15488,
+ "start": 7464.7,
+ "end": 7465.06,
+ "text": "consider"
+ },
+ {
+ "id": 15489,
+ "start": 7465.06,
+ "end": 7465.34,
+ "text": "itself"
+ },
+ {
+ "id": 15490,
+ "start": 7465.34,
+ "end": 7465.44,
+ "text": "to"
+ },
+ {
+ "id": 15491,
+ "start": 7465.44,
+ "end": 7465.54,
+ "text": "be"
+ },
+ {
+ "id": 15492,
+ "start": 7465.54,
+ "end": 7465.6,
+ "text": "a"
+ },
+ {
+ "id": 15493,
+ "start": 7465.6,
+ "end": 7465.9,
+ "text": "neutral."
+ },
+ {
+ "id": 15494,
+ "start": 7465.9,
+ "end": 7466.22,
+ "text": "Public"
+ },
+ {
+ "id": 15495,
+ "start": 7466.22,
+ "end": 7466.48,
+ "text": "forum"
+ },
+ {
+ "id": 15496,
+ "start": 7466.48,
+ "end": 7466.6,
+ "text": "and"
+ },
+ {
+ "id": 15497,
+ "start": 7466.6,
+ "end": 7467.16,
+ "text": "representatives"
+ },
+ {
+ "id": 15498,
+ "start": 7467.16,
+ "end": 7467.22,
+ "text": "of"
+ },
+ {
+ "id": 15499,
+ "start": 7467.22,
+ "end": 7467.36,
+ "text": "your"
+ },
+ {
+ "id": 15500,
+ "start": 7467.36,
+ "end": 7467.6,
+ "text": "company"
+ },
+ {
+ "id": 15501,
+ "start": 7467.6,
+ "end": 7467.74,
+ "text": "have"
+ },
+ {
+ "id": 15502,
+ "start": 7467.74,
+ "end": 7467.96,
+ "text": "given"
+ },
+ {
+ "id": 15503,
+ "start": 7467.96,
+ "end": 7468.42,
+ "text": "conflicting"
+ },
+ {
+ "id": 15504,
+ "start": 7468.42,
+ "end": 7468.82,
+ "text": "answers"
+ },
+ {
+ "id": 15505,
+ "start": 7468.82,
+ "end": 7469.02,
+ "text": "on"
+ },
+ {
+ "id": 15506,
+ "start": 7469.02,
+ "end": 7469.22,
+ "text": "this."
+ },
+ {
+ "id": 15507,
+ "start": 7469.22,
+ "end": 7470.28,
+ "text": "Are"
+ },
+ {
+ "id": 15508,
+ "start": 7470.28,
+ "end": 7470.4,
+ "text": "you"
+ },
+ {
+ "id": 15509,
+ "start": 7470.4,
+ "end": 7470.46,
+ "text": "a"
+ },
+ {
+ "id": 15510,
+ "start": 7470.46,
+ "end": 7470.7,
+ "text": "first"
+ },
+ {
+ "id": 15511,
+ "start": 7470.7,
+ "end": 7471.16,
+ "text": "limit"
+ },
+ {
+ "id": 15512,
+ "start": 7471.16,
+ "end": 7471.52,
+ "text": "speaker"
+ },
+ {
+ "id": 15513,
+ "start": 7471.52,
+ "end": 7472.02,
+ "text": "expressing"
+ },
+ {
+ "id": 15514,
+ "start": 7472.02,
+ "end": 7472.18,
+ "text": "your"
+ },
+ {
+ "id": 15515,
+ "start": 7472.18,
+ "end": 7472.6,
+ "text": "views"
+ },
+ {
+ "id": 15516,
+ "start": 7472.6,
+ "end": 7473.16,
+ "text": "or"
+ },
+ {
+ "id": 15517,
+ "start": 7473.16,
+ "end": 7473.26,
+ "text": "are"
+ },
+ {
+ "id": 15518,
+ "start": 7473.26,
+ "end": 7473.4,
+ "text": "you"
+ },
+ {
+ "id": 15519,
+ "start": 7473.4,
+ "end": 7473.46,
+ "text": "a"
+ },
+ {
+ "id": 15520,
+ "start": 7473.46,
+ "end": 7473.84,
+ "text": "neutral"
+ },
+ {
+ "id": 15521,
+ "start": 7473.84,
+ "end": 7474.18,
+ "text": "public"
+ },
+ {
+ "id": 15522,
+ "start": 7474.18,
+ "end": 7474.5,
+ "text": "form?"
+ },
+ {
+ "id": 15523,
+ "start": 7474.5,
+ "end": 7474.84,
+ "text": "Allowing"
+ },
+ {
+ "id": 15524,
+ "start": 7474.84,
+ "end": 7475.22,
+ "text": "everyone"
+ },
+ {
+ "id": 15525,
+ "start": 7475.22,
+ "end": 7475.3,
+ "text": "to"
+ },
+ {
+ "id": 15526,
+ "start": 7475.3,
+ "end": 7476.44,
+ "text": "speak?"
+ },
+ {
+ "id": 15527,
+ "start": 7476.44,
+ "end": 7477.6,
+ "text": "Senator"
+ },
+ {
+ "id": 15528,
+ "start": 7477.6,
+ "end": 7477.8,
+ "text": "here's"
+ },
+ {
+ "id": 15529,
+ "start": 7477.8,
+ "end": 7477.9,
+ "text": "how"
+ },
+ {
+ "id": 15530,
+ "start": 7477.9,
+ "end": 7478.02,
+ "text": "we"
+ },
+ {
+ "id": 15531,
+ "start": 7478.02,
+ "end": 7478.22,
+ "text": "think"
+ },
+ {
+ "id": 15532,
+ "start": 7478.22,
+ "end": 7478.4,
+ "text": "about"
+ },
+ {
+ "id": 15533,
+ "start": 7478.4,
+ "end": 7478.54,
+ "text": "this."
+ },
+ {
+ "id": 15534,
+ "start": 7478.54,
+ "end": 7479.34,
+ "text": "I"
+ },
+ {
+ "id": 15535,
+ "start": 7479.34,
+ "end": 7479.58,
+ "text": "don't"
+ },
+ {
+ "id": 15536,
+ "start": 7479.58,
+ "end": 7479.98,
+ "text": "believe"
+ },
+ {
+ "id": 15537,
+ "start": 7479.98,
+ "end": 7481.34,
+ "text": "that"
+ },
+ {
+ "id": 15538,
+ "start": 7481.34,
+ "end": 7482.36,
+ "text": "there"
+ },
+ {
+ "id": 15539,
+ "start": 7482.36,
+ "end": 7482.48,
+ "text": "are"
+ },
+ {
+ "id": 15540,
+ "start": 7482.48,
+ "end": 7482.78,
+ "text": "certain"
+ },
+ {
+ "id": 15541,
+ "start": 7482.78,
+ "end": 7483.14,
+ "text": "content"
+ },
+ {
+ "id": 15542,
+ "start": 7483.14,
+ "end": 7483.3,
+ "text": "that"
+ },
+ {
+ "id": 15543,
+ "start": 7483.3,
+ "end": 7483.64,
+ "text": "clearly"
+ },
+ {
+ "id": 15544,
+ "start": 7483.64,
+ "end": 7483.76,
+ "text": "we"
+ },
+ {
+ "id": 15545,
+ "start": 7483.76,
+ "end": 7483.88,
+ "text": "do"
+ },
+ {
+ "id": 15546,
+ "start": 7483.88,
+ "end": 7484.02,
+ "text": "not"
+ },
+ {
+ "id": 15547,
+ "start": 7484.02,
+ "end": 7484.78,
+ "text": "allow"
+ },
+ {
+ "id": 15548,
+ "start": 7484.78,
+ "end": 7485.78,
+ "text": "hate"
+ },
+ {
+ "id": 15549,
+ "start": 7485.78,
+ "end": 7486.14,
+ "text": "speech"
+ },
+ {
+ "id": 15550,
+ "start": 7486.14,
+ "end": 7486.96,
+ "text": "terrorist"
+ },
+ {
+ "id": 15551,
+ "start": 7486.96,
+ "end": 7489.58,
+ "text": "content."
+ },
+ {
+ "id": 15552,
+ "start": 7489.58,
+ "end": 7490.54,
+ "text": "Anything"
+ },
+ {
+ "id": 15553,
+ "start": 7490.54,
+ "end": 7490.68,
+ "text": "that"
+ },
+ {
+ "id": 15554,
+ "start": 7490.68,
+ "end": 7490.88,
+ "text": "makes"
+ },
+ {
+ "id": 15555,
+ "start": 7490.88,
+ "end": 7491.18,
+ "text": "people"
+ },
+ {
+ "id": 15556,
+ "start": 7491.18,
+ "end": 7491.46,
+ "text": "feel"
+ },
+ {
+ "id": 15557,
+ "start": 7491.46,
+ "end": 7491.98,
+ "text": "unsafe"
+ },
+ {
+ "id": 15558,
+ "start": 7491.98,
+ "end": 7492.3,
+ "text": "and"
+ },
+ {
+ "id": 15559,
+ "start": 7492.3,
+ "end": 7492.44,
+ "text": "in"
+ },
+ {
+ "id": 15560,
+ "start": 7492.44,
+ "end": 7492.56,
+ "text": "the"
+ },
+ {
+ "id": 15561,
+ "start": 7492.56,
+ "end": 7493.34,
+ "text": "community."
+ },
+ {
+ "id": 15562,
+ "start": 7493.34,
+ "end": 7494.32,
+ "text": "From"
+ },
+ {
+ "id": 15563,
+ "start": 7494.32,
+ "end": 7494.5,
+ "text": "that"
+ },
+ {
+ "id": 15564,
+ "start": 7494.5,
+ "end": 7495.1,
+ "text": "perspective"
+ },
+ {
+ "id": 15565,
+ "start": 7495.1,
+ "end": 7495.64,
+ "text": "that's"
+ },
+ {
+ "id": 15566,
+ "start": 7495.64,
+ "end": 7495.82,
+ "text": "why"
+ },
+ {
+ "id": 15567,
+ "start": 7495.82,
+ "end": 7495.98,
+ "text": "we"
+ },
+ {
+ "id": 15568,
+ "start": 7495.98,
+ "end": 7496.4,
+ "text": "generally"
+ },
+ {
+ "id": 15569,
+ "start": 7496.4,
+ "end": 7496.58,
+ "text": "try"
+ },
+ {
+ "id": 15570,
+ "start": 7496.58,
+ "end": 7496.68,
+ "text": "to"
+ },
+ {
+ "id": 15571,
+ "start": 7496.68,
+ "end": 7497.08,
+ "text": "refer"
+ },
+ {
+ "id": 15572,
+ "start": 7497.08,
+ "end": 7497.32,
+ "text": "to"
+ },
+ {
+ "id": 15573,
+ "start": 7497.32,
+ "end": 7497.48,
+ "text": "what"
+ },
+ {
+ "id": 15574,
+ "start": 7497.48,
+ "end": 7497.6,
+ "text": "we"
+ },
+ {
+ "id": 15575,
+ "start": 7497.6,
+ "end": 7497.86,
+ "text": "do"
+ },
+ {
+ "id": 15576,
+ "start": 7497.86,
+ "end": 7498.36,
+ "text": "as"
+ },
+ {
+ "id": 15577,
+ "start": 7498.36,
+ "end": 7498.46,
+ "text": "a"
+ },
+ {
+ "id": 15578,
+ "start": 7498.46,
+ "end": 7499.26,
+ "text": "platform"
+ },
+ {
+ "id": 15579,
+ "start": 7499.26,
+ "end": 7499.64,
+ "text": "just"
+ },
+ {
+ "id": 15580,
+ "start": 7499.64,
+ "end": 7499.86,
+ "text": "because"
+ },
+ {
+ "id": 15581,
+ "start": 7499.86,
+ "end": 7500.02,
+ "text": "the"
+ },
+ {
+ "id": 15582,
+ "start": 7500.02,
+ "end": 7500.24,
+ "text": "time"
+ },
+ {
+ "id": 15583,
+ "start": 7500.24,
+ "end": 7500.42,
+ "text": "is"
+ },
+ {
+ "id": 15584,
+ "start": 7500.42,
+ "end": 7501,
+ "text": "constraint"
+ },
+ {
+ "id": 15585,
+ "start": 7501,
+ "end": 7502,
+ "text": "it's"
+ },
+ {
+ "id": 15586,
+ "start": 7502,
+ "end": 7502.23,
+ "text": "just"
+ },
+ {
+ "id": 15587,
+ "start": 7502.23,
+ "end": 7502.27,
+ "text": "a"
+ },
+ {
+ "id": 15588,
+ "start": 7502.27,
+ "end": 7503.13,
+ "text": "simple"
+ },
+ {
+ "id": 15589,
+ "start": 7503.13,
+ "end": 7503.59,
+ "text": "question."
+ },
+ {
+ "id": 15590,
+ "start": 7503.59,
+ "end": 7504.37,
+ "text": "The"
+ },
+ {
+ "id": 15591,
+ "start": 7504.37,
+ "end": 7504.89,
+ "text": "predicate"
+ },
+ {
+ "id": 15592,
+ "start": 7504.89,
+ "end": 7505.37,
+ "text": "for"
+ },
+ {
+ "id": 15593,
+ "start": 7505.37,
+ "end": 7505.73,
+ "text": "section"
+ },
+ {
+ "id": 15594,
+ "start": 7505.73,
+ "end": 7505.89,
+ "text": "2"
+ },
+ {
+ "id": 15595,
+ "start": 7505.89,
+ "end": 7506.25,
+ "text": "30"
+ },
+ {
+ "id": 15596,
+ "start": 7506.25,
+ "end": 7506.69,
+ "text": "immunity"
+ },
+ {
+ "id": 15597,
+ "start": 7506.69,
+ "end": 7506.89,
+ "text": "under"
+ },
+ {
+ "id": 15598,
+ "start": 7506.89,
+ "end": 7507.01,
+ "text": "the"
+ },
+ {
+ "id": 15599,
+ "start": 7507.01,
+ "end": 7507.83,
+ "text": "CDA."
+ },
+ {
+ "id": 15600,
+ "start": 7507.83,
+ "end": 7507.97,
+ "text": "Is"
+ },
+ {
+ "id": 15601,
+ "start": 7507.97,
+ "end": 7508.19,
+ "text": "that"
+ },
+ {
+ "id": 15602,
+ "start": 7508.19,
+ "end": 7508.35,
+ "text": "you"
+ },
+ {
+ "id": 15603,
+ "start": 7508.35,
+ "end": 7508.45,
+ "text": "are"
+ },
+ {
+ "id": 15604,
+ "start": 7508.45,
+ "end": 7508.51,
+ "text": "a"
+ },
+ {
+ "id": 15605,
+ "start": 7508.51,
+ "end": 7508.85,
+ "text": "neutral"
+ },
+ {
+ "id": 15606,
+ "start": 7508.85,
+ "end": 7509.15,
+ "text": "public"
+ },
+ {
+ "id": 15607,
+ "start": 7509.15,
+ "end": 7509.51,
+ "text": "forum."
+ },
+ {
+ "id": 15608,
+ "start": 7509.51,
+ "end": 7510.41,
+ "text": "Do"
+ },
+ {
+ "id": 15609,
+ "start": 7510.41,
+ "end": 7510.55,
+ "text": "you"
+ },
+ {
+ "id": 15610,
+ "start": 7510.55,
+ "end": 7510.95,
+ "text": "consider"
+ },
+ {
+ "id": 15611,
+ "start": 7510.95,
+ "end": 7511.29,
+ "text": "yourself"
+ },
+ {
+ "id": 15612,
+ "start": 7511.29,
+ "end": 7511.37,
+ "text": "a"
+ },
+ {
+ "id": 15613,
+ "start": 7511.37,
+ "end": 7511.69,
+ "text": "neutral"
+ },
+ {
+ "id": 15614,
+ "start": 7511.69,
+ "end": 7511.99,
+ "text": "public"
+ },
+ {
+ "id": 15615,
+ "start": 7511.99,
+ "end": 7512.31,
+ "text": "forum"
+ },
+ {
+ "id": 15616,
+ "start": 7512.31,
+ "end": 7512.45,
+ "text": "or"
+ },
+ {
+ "id": 15617,
+ "start": 7512.45,
+ "end": 7512.59,
+ "text": "you"
+ },
+ {
+ "id": 15618,
+ "start": 7512.59,
+ "end": 7513.01,
+ "text": "engaged"
+ },
+ {
+ "id": 15619,
+ "start": 7513.01,
+ "end": 7513.17,
+ "text": "in"
+ },
+ {
+ "id": 15620,
+ "start": 7513.17,
+ "end": 7513.57,
+ "text": "political"
+ },
+ {
+ "id": 15621,
+ "start": 7513.57,
+ "end": 7513.85,
+ "text": "speech,"
+ },
+ {
+ "id": 15622,
+ "start": 7513.85,
+ "end": 7514.01,
+ "text": "which"
+ },
+ {
+ "id": 15623,
+ "start": 7514.01,
+ "end": 7514.11,
+ "text": "is"
+ },
+ {
+ "id": 15624,
+ "start": 7514.11,
+ "end": 7514.29,
+ "text": "your"
+ },
+ {
+ "id": 15625,
+ "start": 7514.29,
+ "end": 7514.49,
+ "text": "right"
+ },
+ {
+ "id": 15626,
+ "start": 7514.49,
+ "end": 7514.69,
+ "text": "under"
+ },
+ {
+ "id": 15627,
+ "start": 7514.69,
+ "end": 7514.81,
+ "text": "the"
+ },
+ {
+ "id": 15628,
+ "start": 7514.81,
+ "end": 7514.97,
+ "text": "first"
+ },
+ {
+ "id": 15629,
+ "start": 7514.97,
+ "end": 7515.9,
+ "text": "amendment?"
+ },
+ {
+ "id": 15630,
+ "start": 7515.9,
+ "end": 7516.68,
+ "text": "Well,"
+ },
+ {
+ "id": 15631,
+ "start": 7516.68,
+ "end": 7517.1,
+ "text": "Senator,"
+ },
+ {
+ "id": 15632,
+ "start": 7517.1,
+ "end": 7517.86,
+ "text": "our"
+ },
+ {
+ "id": 15633,
+ "start": 7517.86,
+ "end": 7518.04,
+ "text": "goal"
+ },
+ {
+ "id": 15634,
+ "start": 7518.04,
+ "end": 7518.22,
+ "text": "is"
+ },
+ {
+ "id": 15635,
+ "start": 7518.22,
+ "end": 7518.56,
+ "text": "certainly"
+ },
+ {
+ "id": 15636,
+ "start": 7518.56,
+ "end": 7518.72,
+ "text": "not"
+ },
+ {
+ "id": 15637,
+ "start": 7518.72,
+ "end": 7518.9,
+ "text": "to"
+ },
+ {
+ "id": 15638,
+ "start": 7518.9,
+ "end": 7519.24,
+ "text": "engage"
+ },
+ {
+ "id": 15639,
+ "start": 7519.24,
+ "end": 7519.38,
+ "text": "in"
+ },
+ {
+ "id": 15640,
+ "start": 7519.38,
+ "end": 7519.82,
+ "text": "political"
+ },
+ {
+ "id": 15641,
+ "start": 7519.82,
+ "end": 7520.18,
+ "text": "speech"
+ },
+ {
+ "id": 15642,
+ "start": 7520.18,
+ "end": 7520.82,
+ "text": "I'm"
+ },
+ {
+ "id": 15643,
+ "start": 7520.82,
+ "end": 7521.08,
+ "text": "not"
+ },
+ {
+ "id": 15644,
+ "start": 7521.08,
+ "end": 7521.26,
+ "text": "that"
+ },
+ {
+ "id": 15645,
+ "start": 7521.26,
+ "end": 7521.66,
+ "text": "familiar"
+ },
+ {
+ "id": 15646,
+ "start": 7521.66,
+ "end": 7521.84,
+ "text": "with"
+ },
+ {
+ "id": 15647,
+ "start": 7521.84,
+ "end": 7521.92,
+ "text": "the"
+ },
+ {
+ "id": 15648,
+ "start": 7521.92,
+ "end": 7522.38,
+ "text": "specific"
+ },
+ {
+ "id": 15649,
+ "start": 7522.38,
+ "end": 7522.68,
+ "text": "legal"
+ },
+ {
+ "id": 15650,
+ "start": 7522.68,
+ "end": 7523.14,
+ "text": "language"
+ },
+ {
+ "id": 15651,
+ "start": 7523.14,
+ "end": 7523.34,
+ "text": "of"
+ },
+ {
+ "id": 15652,
+ "start": 7523.34,
+ "end": 7523.66,
+ "text": "the"
+ },
+ {
+ "id": 15653,
+ "start": 7523.66,
+ "end": 7524.38,
+ "text": "law"
+ },
+ {
+ "id": 15654,
+ "start": 7524.38,
+ "end": 7524.54,
+ "text": "that"
+ },
+ {
+ "id": 15655,
+ "start": 7524.54,
+ "end": 7524.84,
+ "text": "you"
+ },
+ {
+ "id": 15656,
+ "start": 7524.84,
+ "end": 7525,
+ "text": "that"
+ },
+ {
+ "id": 15657,
+ "start": 7525,
+ "end": 7525.14,
+ "text": "you"
+ },
+ {
+ "id": 15658,
+ "start": 7525.14,
+ "end": 7525.36,
+ "text": "speak"
+ },
+ {
+ "id": 15659,
+ "start": 7525.36,
+ "end": 7525.48,
+ "text": "to"
+ },
+ {
+ "id": 15660,
+ "start": 7525.48,
+ "end": 7526,
+ "text": "so"
+ },
+ {
+ "id": 15661,
+ "start": 7526,
+ "end": 7526.52,
+ "text": "I"
+ },
+ {
+ "id": 15662,
+ "start": 7526.52,
+ "end": 7526.96,
+ "text": "would"
+ },
+ {
+ "id": 15663,
+ "start": 7526.96,
+ "end": 7527.12,
+ "text": "need"
+ },
+ {
+ "id": 15664,
+ "start": 7527.12,
+ "end": 7527.18,
+ "text": "to"
+ },
+ {
+ "id": 15665,
+ "start": 7527.18,
+ "end": 7527.4,
+ "text": "follow"
+ },
+ {
+ "id": 15666,
+ "start": 7527.4,
+ "end": 7527.52,
+ "text": "up"
+ },
+ {
+ "id": 15667,
+ "start": 7527.52,
+ "end": 7527.66,
+ "text": "with"
+ },
+ {
+ "id": 15668,
+ "start": 7527.66,
+ "end": 7527.78,
+ "text": "you"
+ },
+ {
+ "id": 15669,
+ "start": 7527.78,
+ "end": 7527.9,
+ "text": "on"
+ },
+ {
+ "id": 15670,
+ "start": 7527.9,
+ "end": 7528.12,
+ "text": "that"
+ },
+ {
+ "id": 15671,
+ "start": 7528.12,
+ "end": 7528.98,
+ "text": "I'm"
+ },
+ {
+ "id": 15672,
+ "start": 7528.98,
+ "end": 7529.12,
+ "text": "just"
+ },
+ {
+ "id": 15673,
+ "start": 7529.12,
+ "end": 7529.34,
+ "text": "trying"
+ },
+ {
+ "id": 15674,
+ "start": 7529.34,
+ "end": 7529.44,
+ "text": "to"
+ },
+ {
+ "id": 15675,
+ "start": 7529.44,
+ "end": 7529.6,
+ "text": "lay"
+ },
+ {
+ "id": 15676,
+ "start": 7529.6,
+ "end": 7529.78,
+ "text": "out"
+ },
+ {
+ "id": 15677,
+ "start": 7529.78,
+ "end": 7530.02,
+ "text": "how"
+ },
+ {
+ "id": 15678,
+ "start": 7530.02,
+ "end": 7530.46,
+ "text": "broadly"
+ },
+ {
+ "id": 15679,
+ "start": 7530.46,
+ "end": 7530.56,
+ "text": "I"
+ },
+ {
+ "id": 15680,
+ "start": 7530.56,
+ "end": 7530.74,
+ "text": "think"
+ },
+ {
+ "id": 15681,
+ "start": 7530.74,
+ "end": 7530.94,
+ "text": "about"
+ },
+ {
+ "id": 15682,
+ "start": 7530.94,
+ "end": 7531.14,
+ "text": "this,"
+ },
+ {
+ "id": 15683,
+ "start": 7531.14,
+ "end": 7531.7,
+ "text": "Mr"
+ },
+ {
+ "id": 15684,
+ "start": 7531.7,
+ "end": 7532.04,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 15685,
+ "start": 7532.04,
+ "end": 7532.18,
+ "text": "I"
+ },
+ {
+ "id": 15686,
+ "start": 7532.18,
+ "end": 7532.38,
+ "text": "will"
+ },
+ {
+ "id": 15687,
+ "start": 7532.38,
+ "end": 7532.58,
+ "text": "say"
+ },
+ {
+ "id": 15688,
+ "start": 7532.58,
+ "end": 7532.82,
+ "text": "there"
+ },
+ {
+ "id": 15689,
+ "start": 7532.82,
+ "end": 7533.04,
+ "text": "are"
+ },
+ {
+ "id": 15690,
+ "start": 7533.04,
+ "end": 7533.6,
+ "text": "a"
+ },
+ {
+ "id": 15691,
+ "start": 7533.6,
+ "end": 7533.86,
+ "text": "great"
+ },
+ {
+ "id": 15692,
+ "start": 7533.86,
+ "end": 7534.7,
+ "text": "many"
+ },
+ {
+ "id": 15693,
+ "start": 7534.7,
+ "end": 7535.88,
+ "text": "Americans"
+ },
+ {
+ "id": 15694,
+ "start": 7535.88,
+ "end": 7536.36,
+ "text": "who"
+ },
+ {
+ "id": 15695,
+ "start": 7536.36,
+ "end": 7536.5,
+ "text": "I"
+ },
+ {
+ "id": 15696,
+ "start": 7536.5,
+ "end": 7536.78,
+ "text": "think"
+ },
+ {
+ "id": 15697,
+ "start": 7536.78,
+ "end": 7536.98,
+ "text": "are"
+ },
+ {
+ "id": 15698,
+ "start": 7536.98,
+ "end": 7537.3,
+ "text": "deeply"
+ },
+ {
+ "id": 15699,
+ "start": 7537.3,
+ "end": 7537.88,
+ "text": "concerned"
+ },
+ {
+ "id": 15700,
+ "start": 7537.88,
+ "end": 7538.26,
+ "text": "that"
+ },
+ {
+ "id": 15701,
+ "start": 7538.26,
+ "end": 7538.54,
+ "text": "that"
+ },
+ {
+ "id": 15702,
+ "start": 7538.54,
+ "end": 7539.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 15703,
+ "start": 7539.1,
+ "end": 7539.88,
+ "text": "and"
+ },
+ {
+ "id": 15704,
+ "start": 7539.88,
+ "end": 7540.12,
+ "text": "other"
+ },
+ {
+ "id": 15705,
+ "start": 7540.12,
+ "end": 7540.34,
+ "text": "tech"
+ },
+ {
+ "id": 15706,
+ "start": 7540.34,
+ "end": 7540.8,
+ "text": "companies"
+ },
+ {
+ "id": 15707,
+ "start": 7540.8,
+ "end": 7541.82,
+ "text": "are"
+ },
+ {
+ "id": 15708,
+ "start": 7541.82,
+ "end": 7542.42,
+ "text": "engaged"
+ },
+ {
+ "id": 15709,
+ "start": 7542.42,
+ "end": 7542.52,
+ "text": "in"
+ },
+ {
+ "id": 15710,
+ "start": 7542.52,
+ "end": 7542.62,
+ "text": "a"
+ },
+ {
+ "id": 15711,
+ "start": 7542.62,
+ "end": 7543.18,
+ "text": "pervasive"
+ },
+ {
+ "id": 15712,
+ "start": 7543.18,
+ "end": 7543.64,
+ "text": "pattern"
+ },
+ {
+ "id": 15713,
+ "start": 7543.64,
+ "end": 7544.32,
+ "text": "of"
+ },
+ {
+ "id": 15714,
+ "start": 7544.32,
+ "end": 7544.76,
+ "text": "bias"
+ },
+ {
+ "id": 15715,
+ "start": 7544.76,
+ "end": 7544.9,
+ "text": "and"
+ },
+ {
+ "id": 15716,
+ "start": 7544.9,
+ "end": 7545.3,
+ "text": "political"
+ },
+ {
+ "id": 15717,
+ "start": 7545.3,
+ "end": 7546.38,
+ "text": "censorship."
+ },
+ {
+ "id": 15718,
+ "start": 7546.38,
+ "end": 7547.1,
+ "text": "There"
+ },
+ {
+ "id": 15719,
+ "start": 7547.1,
+ "end": 7547.28,
+ "text": "have"
+ },
+ {
+ "id": 15720,
+ "start": 7547.28,
+ "end": 7547.42,
+ "text": "been"
+ },
+ {
+ "id": 15721,
+ "start": 7547.42,
+ "end": 7547.8,
+ "text": "numerous"
+ },
+ {
+ "id": 15722,
+ "start": 7547.8,
+ "end": 7548.42,
+ "text": "instances"
+ },
+ {
+ "id": 15723,
+ "start": 7548.42,
+ "end": 7548.64,
+ "text": "with"
+ },
+ {
+ "id": 15724,
+ "start": 7548.64,
+ "end": 7549.18,
+ "text": "Facebook"
+ },
+ {
+ "id": 15725,
+ "start": 7549.18,
+ "end": 7549.76,
+ "text": "in"
+ },
+ {
+ "id": 15726,
+ "start": 7549.76,
+ "end": 7549.92,
+ "text": "May"
+ },
+ {
+ "id": 15727,
+ "start": 7549.92,
+ "end": 7550.06,
+ "text": "of"
+ },
+ {
+ "id": 15728,
+ "start": 7550.06,
+ "end": 7550.32,
+ "text": "20"
+ },
+ {
+ "id": 15729,
+ "start": 7550.32,
+ "end": 7550.9,
+ "text": "16"
+ },
+ {
+ "id": 15730,
+ "start": 7550.9,
+ "end": 7551.5,
+ "text": "Gizmodo"
+ },
+ {
+ "id": 15731,
+ "start": 7551.5,
+ "end": 7551.92,
+ "text": "reported"
+ },
+ {
+ "id": 15732,
+ "start": 7551.92,
+ "end": 7552.06,
+ "text": "that"
+ },
+ {
+ "id": 15733,
+ "start": 7552.06,
+ "end": 7552.58,
+ "text": "Facebook"
+ },
+ {
+ "id": 15734,
+ "start": 7552.58,
+ "end": 7552.8,
+ "text": "had"
+ },
+ {
+ "id": 15735,
+ "start": 7552.8,
+ "end": 7553.44,
+ "text": "purposely"
+ },
+ {
+ "id": 15736,
+ "start": 7553.44,
+ "end": 7553.6,
+ "text": "and"
+ },
+ {
+ "id": 15737,
+ "start": 7553.6,
+ "end": 7554.22,
+ "text": "routinely"
+ },
+ {
+ "id": 15738,
+ "start": 7554.22,
+ "end": 7554.72,
+ "text": "suppressed."
+ },
+ {
+ "id": 15739,
+ "start": 7554.72,
+ "end": 7555.34,
+ "text": "Conservative"
+ },
+ {
+ "id": 15740,
+ "start": 7555.34,
+ "end": 7555.8,
+ "text": "stories"
+ },
+ {
+ "id": 15741,
+ "start": 7555.8,
+ "end": 7556,
+ "text": "from"
+ },
+ {
+ "id": 15742,
+ "start": 7556,
+ "end": 7556.4,
+ "text": "trending"
+ },
+ {
+ "id": 15743,
+ "start": 7556.4,
+ "end": 7556.76,
+ "text": "news,"
+ },
+ {
+ "id": 15744,
+ "start": 7556.76,
+ "end": 7557.64,
+ "text": "including"
+ },
+ {
+ "id": 15745,
+ "start": 7557.64,
+ "end": 7557.98,
+ "text": "stories"
+ },
+ {
+ "id": 15746,
+ "start": 7557.98,
+ "end": 7558.2,
+ "text": "about"
+ },
+ {
+ "id": 15747,
+ "start": 7558.2,
+ "end": 7558.7,
+ "text": "CPAC"
+ },
+ {
+ "id": 15748,
+ "start": 7558.7,
+ "end": 7559.08,
+ "text": "including"
+ },
+ {
+ "id": 15749,
+ "start": 7559.08,
+ "end": 7559.38,
+ "text": "stories"
+ },
+ {
+ "id": 15750,
+ "start": 7559.38,
+ "end": 7559.56,
+ "text": "about"
+ },
+ {
+ "id": 15751,
+ "start": 7559.56,
+ "end": 7559.78,
+ "text": "Mitt"
+ },
+ {
+ "id": 15752,
+ "start": 7559.78,
+ "end": 7560.14,
+ "text": "Romney,"
+ },
+ {
+ "id": 15753,
+ "start": 7560.14,
+ "end": 7560.58,
+ "text": "including"
+ },
+ {
+ "id": 15754,
+ "start": 7560.58,
+ "end": 7560.96,
+ "text": "stories"
+ },
+ {
+ "id": 15755,
+ "start": 7560.96,
+ "end": 7561.26,
+ "text": "about"
+ },
+ {
+ "id": 15756,
+ "start": 7561.26,
+ "end": 7561.76,
+ "text": "the"
+ },
+ {
+ "id": 15757,
+ "start": 7561.76,
+ "end": 7562.06,
+ "text": "lowest"
+ },
+ {
+ "id": 15758,
+ "start": 7562.06,
+ "end": 7562.42,
+ "text": "learner"
+ },
+ {
+ "id": 15759,
+ "start": 7562.42,
+ "end": 7563,
+ "text": "IRS"
+ },
+ {
+ "id": 15760,
+ "start": 7563,
+ "end": 7563.44,
+ "text": "scandal"
+ },
+ {
+ "id": 15761,
+ "start": 7563.44,
+ "end": 7563.84,
+ "text": "including"
+ },
+ {
+ "id": 15762,
+ "start": 7563.84,
+ "end": 7564.28,
+ "text": "stories"
+ },
+ {
+ "id": 15763,
+ "start": 7564.28,
+ "end": 7564.66,
+ "text": "about"
+ },
+ {
+ "id": 15764,
+ "start": 7564.66,
+ "end": 7565.58,
+ "text": "Glenn"
+ },
+ {
+ "id": 15765,
+ "start": 7565.58,
+ "end": 7566.42,
+ "text": "Beck."
+ },
+ {
+ "id": 15766,
+ "start": 7566.42,
+ "end": 7567.1,
+ "text": "In"
+ },
+ {
+ "id": 15767,
+ "start": 7567.1,
+ "end": 7567.44,
+ "text": "addition"
+ },
+ {
+ "id": 15768,
+ "start": 7567.44,
+ "end": 7567.58,
+ "text": "to"
+ },
+ {
+ "id": 15769,
+ "start": 7567.58,
+ "end": 7567.8,
+ "text": "that,"
+ },
+ {
+ "id": 15770,
+ "start": 7567.8,
+ "end": 7568.42,
+ "text": "Facebook"
+ },
+ {
+ "id": 15771,
+ "start": 7568.42,
+ "end": 7569.04,
+ "text": "has"
+ },
+ {
+ "id": 15772,
+ "start": 7569.04,
+ "end": 7570,
+ "text": "initially"
+ },
+ {
+ "id": 15773,
+ "start": 7570,
+ "end": 7570.28,
+ "text": "shut"
+ },
+ {
+ "id": 15774,
+ "start": 7570.28,
+ "end": 7570.58,
+ "text": "down"
+ },
+ {
+ "id": 15775,
+ "start": 7570.58,
+ "end": 7570.74,
+ "text": "the"
+ },
+ {
+ "id": 15776,
+ "start": 7570.74,
+ "end": 7570.98,
+ "text": "chick"
+ },
+ {
+ "id": 15777,
+ "start": 7570.98,
+ "end": 7571.36,
+ "text": "filet"
+ },
+ {
+ "id": 15778,
+ "start": 7571.36,
+ "end": 7572.08,
+ "text": "appreciation"
+ },
+ {
+ "id": 15779,
+ "start": 7572.08,
+ "end": 7572.46,
+ "text": "day"
+ },
+ {
+ "id": 15780,
+ "start": 7572.46,
+ "end": 7573.26,
+ "text": "page"
+ },
+ {
+ "id": 15781,
+ "start": 7573.26,
+ "end": 7573.88,
+ "text": "has"
+ },
+ {
+ "id": 15782,
+ "start": 7573.88,
+ "end": 7574.28,
+ "text": "blocked"
+ },
+ {
+ "id": 15783,
+ "start": 7574.28,
+ "end": 7574.4,
+ "text": "a"
+ },
+ {
+ "id": 15784,
+ "start": 7574.4,
+ "end": 7574.76,
+ "text": "post"
+ },
+ {
+ "id": 15785,
+ "start": 7574.76,
+ "end": 7574.9,
+ "text": "of"
+ },
+ {
+ "id": 15786,
+ "start": 7574.9,
+ "end": 7575.54,
+ "text": "Fox"
+ },
+ {
+ "id": 15787,
+ "start": 7575.54,
+ "end": 7575.78,
+ "text": "News"
+ },
+ {
+ "id": 15788,
+ "start": 7575.78,
+ "end": 7576.3,
+ "text": "reporter"
+ },
+ {
+ "id": 15789,
+ "start": 7576.3,
+ "end": 7577.22,
+ "text": "has"
+ },
+ {
+ "id": 15790,
+ "start": 7577.22,
+ "end": 7577.66,
+ "text": "blocked"
+ },
+ {
+ "id": 15791,
+ "start": 7577.66,
+ "end": 7578.56,
+ "text": "over"
+ },
+ {
+ "id": 15792,
+ "start": 7578.56,
+ "end": 7578.76,
+ "text": "two"
+ },
+ {
+ "id": 15793,
+ "start": 7578.76,
+ "end": 7579.18,
+ "text": "dozen"
+ },
+ {
+ "id": 15794,
+ "start": 7579.18,
+ "end": 7579.68,
+ "text": "Catholic"
+ },
+ {
+ "id": 15795,
+ "start": 7579.68,
+ "end": 7580.12,
+ "text": "pages"
+ },
+ {
+ "id": 15796,
+ "start": 7580.12,
+ "end": 7581.12,
+ "text": "and"
+ },
+ {
+ "id": 15797,
+ "start": 7581.12,
+ "end": 7581.42,
+ "text": "most"
+ },
+ {
+ "id": 15798,
+ "start": 7581.42,
+ "end": 7582.14,
+ "text": "recently"
+ },
+ {
+ "id": 15799,
+ "start": 7582.14,
+ "end": 7582.6,
+ "text": "blocked"
+ },
+ {
+ "id": 15800,
+ "start": 7582.6,
+ "end": 7583.18,
+ "text": "Trump"
+ },
+ {
+ "id": 15801,
+ "start": 7583.18,
+ "end": 7583.68,
+ "text": "supporters."
+ },
+ {
+ "id": 15802,
+ "start": 7583.68,
+ "end": 7584.08,
+ "text": "Diamond"
+ },
+ {
+ "id": 15803,
+ "start": 7584.08,
+ "end": 7584.22,
+ "text": "and"
+ },
+ {
+ "id": 15804,
+ "start": 7584.22,
+ "end": 7584.58,
+ "text": "silk"
+ },
+ {
+ "id": 15805,
+ "start": 7584.58,
+ "end": 7585.24,
+ "text": "page"
+ },
+ {
+ "id": 15806,
+ "start": 7585.24,
+ "end": 7585.98,
+ "text": "with"
+ },
+ {
+ "id": 15807,
+ "start": 7585.98,
+ "end": 7586.26,
+ "text": "1"
+ },
+ {
+ "id": 15808,
+ "start": 7586.26,
+ "end": 7587.08,
+ "text": "2,000,000"
+ },
+ {
+ "id": 15809,
+ "start": 7587.08,
+ "end": 7587.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 15810,
+ "start": 7587.54,
+ "end": 7588.14,
+ "text": "followers"
+ },
+ {
+ "id": 15811,
+ "start": 7588.14,
+ "end": 7588.48,
+ "text": "after"
+ },
+ {
+ "id": 15812,
+ "start": 7588.48,
+ "end": 7588.98,
+ "text": "determining"
+ },
+ {
+ "id": 15813,
+ "start": 7588.98,
+ "end": 7589.22,
+ "text": "their"
+ },
+ {
+ "id": 15814,
+ "start": 7589.22,
+ "end": 7589.66,
+ "text": "content"
+ },
+ {
+ "id": 15815,
+ "start": 7589.66,
+ "end": 7589.82,
+ "text": "and"
+ },
+ {
+ "id": 15816,
+ "start": 7589.82,
+ "end": 7590.24,
+ "text": "brand"
+ },
+ {
+ "id": 15817,
+ "start": 7590.24,
+ "end": 7590.56,
+ "text": "were"
+ },
+ {
+ "id": 15818,
+ "start": 7590.56,
+ "end": 7591.42,
+ "text": "quote"
+ },
+ {
+ "id": 15819,
+ "start": 7591.42,
+ "end": 7592.16,
+ "text": "unsafe"
+ },
+ {
+ "id": 15820,
+ "start": 7592.16,
+ "end": 7592.42,
+ "text": "to"
+ },
+ {
+ "id": 15821,
+ "start": 7592.42,
+ "end": 7592.54,
+ "text": "the"
+ },
+ {
+ "id": 15822,
+ "start": 7592.54,
+ "end": 7593.02,
+ "text": "community"
+ },
+ {
+ "id": 15823,
+ "start": 7593.02,
+ "end": 7593.9,
+ "text": "to"
+ },
+ {
+ "id": 15824,
+ "start": 7593.9,
+ "end": 7593.96,
+ "text": "a"
+ },
+ {
+ "id": 15825,
+ "start": 7593.96,
+ "end": 7594.2,
+ "text": "great"
+ },
+ {
+ "id": 15826,
+ "start": 7594.2,
+ "end": 7594.42,
+ "text": "many"
+ },
+ {
+ "id": 15827,
+ "start": 7594.42,
+ "end": 7594.92,
+ "text": "Americans"
+ },
+ {
+ "id": 15828,
+ "start": 7594.92,
+ "end": 7595.1,
+ "text": "that"
+ },
+ {
+ "id": 15829,
+ "start": 7595.1,
+ "end": 7595.48,
+ "text": "appears"
+ },
+ {
+ "id": 15830,
+ "start": 7595.48,
+ "end": 7595.64,
+ "text": "to"
+ },
+ {
+ "id": 15831,
+ "start": 7595.64,
+ "end": 7595.92,
+ "text": "be"
+ },
+ {
+ "id": 15832,
+ "start": 7595.92,
+ "end": 7596.54,
+ "text": "a"
+ },
+ {
+ "id": 15833,
+ "start": 7596.54,
+ "end": 7597.86,
+ "text": "pervasive"
+ },
+ {
+ "id": 15834,
+ "start": 7597.86,
+ "end": 7598.68,
+ "text": "pattern"
+ },
+ {
+ "id": 15835,
+ "start": 7598.68,
+ "end": 7598.82,
+ "text": "of"
+ },
+ {
+ "id": 15836,
+ "start": 7598.82,
+ "end": 7599.26,
+ "text": "political"
+ },
+ {
+ "id": 15837,
+ "start": 7599.26,
+ "end": 7599.62,
+ "text": "bias."
+ },
+ {
+ "id": 15838,
+ "start": 7599.62,
+ "end": 7599.74,
+ "text": "Do"
+ },
+ {
+ "id": 15839,
+ "start": 7599.74,
+ "end": 7599.86,
+ "text": "you"
+ },
+ {
+ "id": 15840,
+ "start": 7599.86,
+ "end": 7600.08,
+ "text": "agree"
+ },
+ {
+ "id": 15841,
+ "start": 7600.08,
+ "end": 7600.22,
+ "text": "with"
+ },
+ {
+ "id": 15842,
+ "start": 7600.22,
+ "end": 7600.34,
+ "text": "that"
+ },
+ {
+ "id": 15843,
+ "start": 7600.34,
+ "end": 7601.34,
+ "text": "assessment?"
+ },
+ {
+ "id": 15844,
+ "start": 7601.34,
+ "end": 7602.38,
+ "text": "So"
+ },
+ {
+ "id": 15845,
+ "start": 7602.38,
+ "end": 7602.5,
+ "text": "let"
+ },
+ {
+ "id": 15846,
+ "start": 7602.5,
+ "end": 7602.58,
+ "text": "me"
+ },
+ {
+ "id": 15847,
+ "start": 7602.58,
+ "end": 7602.74,
+ "text": "say"
+ },
+ {
+ "id": 15848,
+ "start": 7602.74,
+ "end": 7602.8,
+ "text": "a"
+ },
+ {
+ "id": 15849,
+ "start": 7602.8,
+ "end": 7602.96,
+ "text": "few"
+ },
+ {
+ "id": 15850,
+ "start": 7602.96,
+ "end": 7603.22,
+ "text": "things"
+ },
+ {
+ "id": 15851,
+ "start": 7603.22,
+ "end": 7603.46,
+ "text": "about"
+ },
+ {
+ "id": 15852,
+ "start": 7603.46,
+ "end": 7603.94,
+ "text": "this"
+ },
+ {
+ "id": 15853,
+ "start": 7603.94,
+ "end": 7604.94,
+ "text": "first."
+ },
+ {
+ "id": 15854,
+ "start": 7604.94,
+ "end": 7606.1,
+ "text": "I"
+ },
+ {
+ "id": 15855,
+ "start": 7606.1,
+ "end": 7606.56,
+ "text": "understand"
+ },
+ {
+ "id": 15856,
+ "start": 7606.56,
+ "end": 7606.78,
+ "text": "where"
+ },
+ {
+ "id": 15857,
+ "start": 7606.78,
+ "end": 7606.94,
+ "text": "that"
+ },
+ {
+ "id": 15858,
+ "start": 7606.94,
+ "end": 7607.3,
+ "text": "concern"
+ },
+ {
+ "id": 15859,
+ "start": 7607.3,
+ "end": 7607.46,
+ "text": "is"
+ },
+ {
+ "id": 15860,
+ "start": 7607.46,
+ "end": 7607.72,
+ "text": "coming"
+ },
+ {
+ "id": 15861,
+ "start": 7607.72,
+ "end": 7607.98,
+ "text": "from"
+ },
+ {
+ "id": 15862,
+ "start": 7607.98,
+ "end": 7608.48,
+ "text": "because"
+ },
+ {
+ "id": 15863,
+ "start": 7608.48,
+ "end": 7609.3,
+ "text": "Facebook"
+ },
+ {
+ "id": 15864,
+ "start": 7609.3,
+ "end": 7609.4,
+ "text": "in"
+ },
+ {
+ "id": 15865,
+ "start": 7609.4,
+ "end": 7609.5,
+ "text": "the"
+ },
+ {
+ "id": 15866,
+ "start": 7609.5,
+ "end": 7609.68,
+ "text": "tech"
+ },
+ {
+ "id": 15867,
+ "start": 7609.68,
+ "end": 7610.1,
+ "text": "industry"
+ },
+ {
+ "id": 15868,
+ "start": 7610.1,
+ "end": 7610.28,
+ "text": "are"
+ },
+ {
+ "id": 15869,
+ "start": 7610.28,
+ "end": 7610.82,
+ "text": "located"
+ },
+ {
+ "id": 15870,
+ "start": 7610.82,
+ "end": 7610.94,
+ "text": "in"
+ },
+ {
+ "id": 15871,
+ "start": 7610.94,
+ "end": 7611.36,
+ "text": "Silicon"
+ },
+ {
+ "id": 15872,
+ "start": 7611.36,
+ "end": 7611.62,
+ "text": "Valley,"
+ },
+ {
+ "id": 15873,
+ "start": 7611.62,
+ "end": 7611.78,
+ "text": "which"
+ },
+ {
+ "id": 15874,
+ "start": 7611.78,
+ "end": 7611.9,
+ "text": "is"
+ },
+ {
+ "id": 15875,
+ "start": 7611.9,
+ "end": 7611.98,
+ "text": "an"
+ },
+ {
+ "id": 15876,
+ "start": 7611.98,
+ "end": 7612.78,
+ "text": "extremely"
+ },
+ {
+ "id": 15877,
+ "start": 7612.78,
+ "end": 7613.04,
+ "text": "left"
+ },
+ {
+ "id": 15878,
+ "start": 7613.04,
+ "end": 7613.34,
+ "text": "leaning"
+ },
+ {
+ "id": 15879,
+ "start": 7613.34,
+ "end": 7613.64,
+ "text": "place."
+ },
+ {
+ "id": 15880,
+ "start": 7613.64,
+ "end": 7614.46,
+ "text": "And"
+ },
+ {
+ "id": 15881,
+ "start": 7614.46,
+ "end": 7615.3,
+ "text": "this"
+ },
+ {
+ "id": 15882,
+ "start": 7615.3,
+ "end": 7615.52,
+ "text": "is"
+ },
+ {
+ "id": 15883,
+ "start": 7615.52,
+ "end": 7615.96,
+ "text": "actually"
+ },
+ {
+ "id": 15884,
+ "start": 7615.96,
+ "end": 7616.04,
+ "text": "a"
+ },
+ {
+ "id": 15885,
+ "start": 7616.04,
+ "end": 7616.48,
+ "text": "concern"
+ },
+ {
+ "id": 15886,
+ "start": 7616.48,
+ "end": 7616.62,
+ "text": "that"
+ },
+ {
+ "id": 15887,
+ "start": 7616.62,
+ "end": 7616.78,
+ "text": "I"
+ },
+ {
+ "id": 15888,
+ "start": 7616.78,
+ "end": 7617.1,
+ "text": "have"
+ },
+ {
+ "id": 15889,
+ "start": 7617.1,
+ "end": 7617.24,
+ "text": "and"
+ },
+ {
+ "id": 15890,
+ "start": 7617.24,
+ "end": 7617.36,
+ "text": "that"
+ },
+ {
+ "id": 15891,
+ "start": 7617.36,
+ "end": 7617.48,
+ "text": "I"
+ },
+ {
+ "id": 15892,
+ "start": 7617.48,
+ "end": 7617.68,
+ "text": "try"
+ },
+ {
+ "id": 15893,
+ "start": 7617.68,
+ "end": 7617.76,
+ "text": "to"
+ },
+ {
+ "id": 15894,
+ "start": 7617.76,
+ "end": 7617.96,
+ "text": "root"
+ },
+ {
+ "id": 15895,
+ "start": 7617.96,
+ "end": 7618.09,
+ "text": "out."
+ },
+ {
+ "id": 15896,
+ "start": 7618.09,
+ "end": 7618.45,
+ "text": "The"
+ },
+ {
+ "id": 15897,
+ "start": 7618.45,
+ "end": 7618.81,
+ "text": "company"
+ },
+ {
+ "id": 15898,
+ "start": 7618.81,
+ "end": 7619.39,
+ "text": "is"
+ },
+ {
+ "id": 15899,
+ "start": 7619.39,
+ "end": 7619.69,
+ "text": "making"
+ },
+ {
+ "id": 15900,
+ "start": 7619.69,
+ "end": 7619.95,
+ "text": "sure"
+ },
+ {
+ "id": 15901,
+ "start": 7619.95,
+ "end": 7620.17,
+ "text": "that"
+ },
+ {
+ "id": 15902,
+ "start": 7620.17,
+ "end": 7620.35,
+ "text": "we"
+ },
+ {
+ "id": 15903,
+ "start": 7620.35,
+ "end": 7620.67,
+ "text": "don't"
+ },
+ {
+ "id": 15904,
+ "start": 7620.67,
+ "end": 7621.01,
+ "text": "have"
+ },
+ {
+ "id": 15905,
+ "start": 7621.01,
+ "end": 7622.03,
+ "text": "any"
+ },
+ {
+ "id": 15906,
+ "start": 7622.03,
+ "end": 7622.43,
+ "text": "bias"
+ },
+ {
+ "id": 15907,
+ "start": 7622.43,
+ "end": 7622.65,
+ "text": "in"
+ },
+ {
+ "id": 15908,
+ "start": 7622.65,
+ "end": 7622.79,
+ "text": "the"
+ },
+ {
+ "id": 15909,
+ "start": 7622.79,
+ "end": 7622.99,
+ "text": "work"
+ },
+ {
+ "id": 15910,
+ "start": 7622.99,
+ "end": 7623.13,
+ "text": "that"
+ },
+ {
+ "id": 15911,
+ "start": 7623.13,
+ "end": 7623.21,
+ "text": "we"
+ },
+ {
+ "id": 15912,
+ "start": 7623.21,
+ "end": 7623.37,
+ "text": "do."
+ },
+ {
+ "id": 15913,
+ "start": 7623.37,
+ "end": 7623.97,
+ "text": "And"
+ },
+ {
+ "id": 15914,
+ "start": 7623.97,
+ "end": 7624.13,
+ "text": "I"
+ },
+ {
+ "id": 15915,
+ "start": 7624.13,
+ "end": 7624.33,
+ "text": "think"
+ },
+ {
+ "id": 15916,
+ "start": 7624.33,
+ "end": 7624.47,
+ "text": "it"
+ },
+ {
+ "id": 15917,
+ "start": 7624.47,
+ "end": 7624.65,
+ "text": "is"
+ },
+ {
+ "id": 15918,
+ "start": 7624.65,
+ "end": 7624.71,
+ "text": "a"
+ },
+ {
+ "id": 15919,
+ "start": 7624.71,
+ "end": 7625.17,
+ "text": "fair"
+ },
+ {
+ "id": 15920,
+ "start": 7625.17,
+ "end": 7625.73,
+ "text": "concern"
+ },
+ {
+ "id": 15921,
+ "start": 7625.73,
+ "end": 7626.79,
+ "text": "that"
+ },
+ {
+ "id": 15922,
+ "start": 7626.79,
+ "end": 7627.03,
+ "text": "people"
+ },
+ {
+ "id": 15923,
+ "start": 7627.03,
+ "end": 7627.29,
+ "text": "would"
+ },
+ {
+ "id": 15924,
+ "start": 7627.29,
+ "end": 7627.89,
+ "text": "let"
+ },
+ {
+ "id": 15925,
+ "start": 7627.89,
+ "end": 7627.99,
+ "text": "me"
+ },
+ {
+ "id": 15926,
+ "start": 7627.99,
+ "end": 7628.43,
+ "text": "wonder"
+ },
+ {
+ "id": 15927,
+ "start": 7628.43,
+ "end": 7628.59,
+ "text": "about."
+ },
+ {
+ "id": 15928,
+ "start": 7628.59,
+ "end": 7628.71,
+ "text": "Let"
+ },
+ {
+ "id": 15929,
+ "start": 7628.71,
+ "end": 7628.81,
+ "text": "me"
+ },
+ {
+ "id": 15930,
+ "start": 7628.81,
+ "end": 7628.97,
+ "text": "ask"
+ },
+ {
+ "id": 15931,
+ "start": 7628.97,
+ "end": 7629.19,
+ "text": "this."
+ },
+ {
+ "id": 15932,
+ "start": 7629.19,
+ "end": 7630.01,
+ "text": "Are"
+ },
+ {
+ "id": 15933,
+ "start": 7630.01,
+ "end": 7630.15,
+ "text": "you"
+ },
+ {
+ "id": 15934,
+ "start": 7630.15,
+ "end": 7630.53,
+ "text": "aware"
+ },
+ {
+ "id": 15935,
+ "start": 7630.53,
+ "end": 7630.91,
+ "text": "of"
+ },
+ {
+ "id": 15936,
+ "start": 7630.91,
+ "end": 7631.33,
+ "text": "any"
+ },
+ {
+ "id": 15937,
+ "start": 7631.33,
+ "end": 7631.77,
+ "text": "ad"
+ },
+ {
+ "id": 15938,
+ "start": 7631.77,
+ "end": 7631.91,
+ "text": "or"
+ },
+ {
+ "id": 15939,
+ "start": 7631.91,
+ "end": 7632.27,
+ "text": "page"
+ },
+ {
+ "id": 15940,
+ "start": 7632.27,
+ "end": 7632.41,
+ "text": "that"
+ },
+ {
+ "id": 15941,
+ "start": 7632.41,
+ "end": 7632.55,
+ "text": "has"
+ },
+ {
+ "id": 15942,
+ "start": 7632.55,
+ "end": 7632.73,
+ "text": "been"
+ },
+ {
+ "id": 15943,
+ "start": 7632.73,
+ "end": 7633.01,
+ "text": "taken"
+ },
+ {
+ "id": 15944,
+ "start": 7633.01,
+ "end": 7633.29,
+ "text": "down"
+ },
+ {
+ "id": 15945,
+ "start": 7633.29,
+ "end": 7633.49,
+ "text": "from"
+ },
+ {
+ "id": 15946,
+ "start": 7633.49,
+ "end": 7633.75,
+ "text": "Planned"
+ },
+ {
+ "id": 15947,
+ "start": 7633.75,
+ "end": 7634.84,
+ "text": "Parenthood."
+ },
+ {
+ "id": 15948,
+ "start": 7634.84,
+ "end": 7636.26,
+ "text": "Senator"
+ },
+ {
+ "id": 15949,
+ "start": 7636.26,
+ "end": 7637.4,
+ "text": "I'm"
+ },
+ {
+ "id": 15950,
+ "start": 7637.4,
+ "end": 7637.68,
+ "text": "not,"
+ },
+ {
+ "id": 15951,
+ "start": 7637.68,
+ "end": 7637.88,
+ "text": "but"
+ },
+ {
+ "id": 15952,
+ "start": 7637.88,
+ "end": 7638.08,
+ "text": "let"
+ },
+ {
+ "id": 15953,
+ "start": 7638.08,
+ "end": 7638.18,
+ "text": "me"
+ },
+ {
+ "id": 15954,
+ "start": 7638.18,
+ "end": 7638.34,
+ "text": "just"
+ },
+ {
+ "id": 15955,
+ "start": 7638.34,
+ "end": 7638.7,
+ "text": "how"
+ },
+ {
+ "id": 15956,
+ "start": 7638.7,
+ "end": 7638.9,
+ "text": "I"
+ },
+ {
+ "id": 15957,
+ "start": 7638.9,
+ "end": 7639.08,
+ "text": "move"
+ },
+ {
+ "id": 15958,
+ "start": 7639.08,
+ "end": 7639.2,
+ "text": "on"
+ },
+ {
+ "id": 15959,
+ "start": 7639.2,
+ "end": 7640.1,
+ "text": "org"
+ },
+ {
+ "id": 15960,
+ "start": 7640.1,
+ "end": 7641.1,
+ "text": "sorry,"
+ },
+ {
+ "id": 15961,
+ "start": 7641.1,
+ "end": 7641.38,
+ "text": "how"
+ },
+ {
+ "id": 15962,
+ "start": 7641.38,
+ "end": 7641.56,
+ "text": "about"
+ },
+ {
+ "id": 15963,
+ "start": 7641.56,
+ "end": 7641.96,
+ "text": "MoveOn?"
+ },
+ {
+ "id": 15964,
+ "start": 7641.96,
+ "end": 7642.4,
+ "text": "Org"
+ },
+ {
+ "id": 15965,
+ "start": 7642.4,
+ "end": 7642.96,
+ "text": "I'm"
+ },
+ {
+ "id": 15966,
+ "start": 7642.96,
+ "end": 7643.14,
+ "text": "not"
+ },
+ {
+ "id": 15967,
+ "start": 7643.14,
+ "end": 7643.72,
+ "text": "specifically"
+ },
+ {
+ "id": 15968,
+ "start": 7643.72,
+ "end": 7644,
+ "text": "aware"
+ },
+ {
+ "id": 15969,
+ "start": 7644,
+ "end": 7644.12,
+ "text": "of"
+ },
+ {
+ "id": 15970,
+ "start": 7644.12,
+ "end": 7644.38,
+ "text": "this"
+ },
+ {
+ "id": 15971,
+ "start": 7644.38,
+ "end": 7644.62,
+ "text": "about"
+ },
+ {
+ "id": 15972,
+ "start": 7644.62,
+ "end": 7644.82,
+ "text": "any"
+ },
+ {
+ "id": 15973,
+ "start": 7644.82,
+ "end": 7645.38,
+ "text": "Democratic"
+ },
+ {
+ "id": 15974,
+ "start": 7645.38,
+ "end": 7645.76,
+ "text": "candidate"
+ },
+ {
+ "id": 15975,
+ "start": 7645.76,
+ "end": 7645.88,
+ "text": "for"
+ },
+ {
+ "id": 15976,
+ "start": 7645.88,
+ "end": 7646.88,
+ "text": "office"
+ },
+ {
+ "id": 15977,
+ "start": 7646.88,
+ "end": 7647.68,
+ "text": "I'm"
+ },
+ {
+ "id": 15978,
+ "start": 7647.68,
+ "end": 7647.86,
+ "text": "not"
+ },
+ {
+ "id": 15979,
+ "start": 7647.86,
+ "end": 7648.4,
+ "text": "specifically"
+ },
+ {
+ "id": 15980,
+ "start": 7648.4,
+ "end": 7648.66,
+ "text": "aware,"
+ },
+ {
+ "id": 15981,
+ "start": 7648.66,
+ "end": 7648.74,
+ "text": "I"
+ },
+ {
+ "id": 15982,
+ "start": 7648.74,
+ "end": 7648.98,
+ "text": "mean"
+ },
+ {
+ "id": 15983,
+ "start": 7648.98,
+ "end": 7649.76,
+ "text": "I'm"
+ },
+ {
+ "id": 15984,
+ "start": 7649.76,
+ "end": 7650.28,
+ "text": "not"
+ },
+ {
+ "id": 15985,
+ "start": 7650.28,
+ "end": 7650.5,
+ "text": "sure."
+ },
+ {
+ "id": 15986,
+ "start": 7650.5,
+ "end": 7651.14,
+ "text": "In"
+ },
+ {
+ "id": 15987,
+ "start": 7651.14,
+ "end": 7651.38,
+ "text": "your"
+ },
+ {
+ "id": 15988,
+ "start": 7651.38,
+ "end": 7652.14,
+ "text": "testimony,"
+ },
+ {
+ "id": 15989,
+ "start": 7652.14,
+ "end": 7652.3,
+ "text": "you"
+ },
+ {
+ "id": 15990,
+ "start": 7652.3,
+ "end": 7652.72,
+ "text": "say"
+ },
+ {
+ "id": 15991,
+ "start": 7652.72,
+ "end": 7652.88,
+ "text": "that"
+ },
+ {
+ "id": 15992,
+ "start": 7652.88,
+ "end": 7653.04,
+ "text": "you"
+ },
+ {
+ "id": 15993,
+ "start": 7653.04,
+ "end": 7653.42,
+ "text": "have"
+ },
+ {
+ "id": 15994,
+ "start": 7653.42,
+ "end": 7653.82,
+ "text": "15"
+ },
+ {
+ "id": 15995,
+ "start": 7653.82,
+ "end": 7653.98,
+ "text": "to"
+ },
+ {
+ "id": 15996,
+ "start": 7653.98,
+ "end": 7654.68,
+ "text": "20,000"
+ },
+ {
+ "id": 15997,
+ "start": 7654.68,
+ "end": 7654.96,
+ "text": "people"
+ },
+ {
+ "id": 15998,
+ "start": 7654.96,
+ "end": 7655.32,
+ "text": "working"
+ },
+ {
+ "id": 15999,
+ "start": 7655.32,
+ "end": 7655.46,
+ "text": "on"
+ },
+ {
+ "id": 16000,
+ "start": 7655.46,
+ "end": 7656.1,
+ "text": "security"
+ },
+ {
+ "id": 16001,
+ "start": 7656.1,
+ "end": 7656.24,
+ "text": "and"
+ },
+ {
+ "id": 16002,
+ "start": 7656.24,
+ "end": 7656.78,
+ "text": "content"
+ },
+ {
+ "id": 16003,
+ "start": 7656.78,
+ "end": 7657.16,
+ "text": "review."
+ },
+ {
+ "id": 16004,
+ "start": 7657.16,
+ "end": 7658.04,
+ "text": "Do"
+ },
+ {
+ "id": 16005,
+ "start": 7658.04,
+ "end": 7658.16,
+ "text": "you"
+ },
+ {
+ "id": 16006,
+ "start": 7658.16,
+ "end": 7658.32,
+ "text": "know"
+ },
+ {
+ "id": 16007,
+ "start": 7658.32,
+ "end": 7658.46,
+ "text": "the"
+ },
+ {
+ "id": 16008,
+ "start": 7658.46,
+ "end": 7659.36,
+ "text": "political"
+ },
+ {
+ "id": 16009,
+ "start": 7659.36,
+ "end": 7660.36,
+ "text": "orientation"
+ },
+ {
+ "id": 16010,
+ "start": 7660.36,
+ "end": 7660.48,
+ "text": "of"
+ },
+ {
+ "id": 16011,
+ "start": 7660.48,
+ "end": 7660.68,
+ "text": "those"
+ },
+ {
+ "id": 16012,
+ "start": 7660.68,
+ "end": 7661.04,
+ "text": "15"
+ },
+ {
+ "id": 16013,
+ "start": 7661.04,
+ "end": 7661.18,
+ "text": "to"
+ },
+ {
+ "id": 16014,
+ "start": 7661.18,
+ "end": 7661.86,
+ "text": "20,000"
+ },
+ {
+ "id": 16015,
+ "start": 7661.86,
+ "end": 7662.1,
+ "text": "people"
+ },
+ {
+ "id": 16016,
+ "start": 7662.1,
+ "end": 7662.5,
+ "text": "engage"
+ },
+ {
+ "id": 16017,
+ "start": 7662.5,
+ "end": 7662.62,
+ "text": "in"
+ },
+ {
+ "id": 16018,
+ "start": 7662.62,
+ "end": 7663.04,
+ "text": "content"
+ },
+ {
+ "id": 16019,
+ "start": 7663.04,
+ "end": 7664.12,
+ "text": "review."
+ },
+ {
+ "id": 16020,
+ "start": 7664.12,
+ "end": 7665.08,
+ "text": "No,"
+ },
+ {
+ "id": 16021,
+ "start": 7665.08,
+ "end": 7665.42,
+ "text": "Senator,"
+ },
+ {
+ "id": 16022,
+ "start": 7665.42,
+ "end": 7665.58,
+ "text": "we"
+ },
+ {
+ "id": 16023,
+ "start": 7665.58,
+ "end": 7665.74,
+ "text": "do"
+ },
+ {
+ "id": 16024,
+ "start": 7665.74,
+ "end": 7665.94,
+ "text": "not"
+ },
+ {
+ "id": 16025,
+ "start": 7665.94,
+ "end": 7666.46,
+ "text": "generally"
+ },
+ {
+ "id": 16026,
+ "start": 7666.46,
+ "end": 7666.78,
+ "text": "ask"
+ },
+ {
+ "id": 16027,
+ "start": 7666.78,
+ "end": 7667.08,
+ "text": "people"
+ },
+ {
+ "id": 16028,
+ "start": 7667.08,
+ "end": 7667.3,
+ "text": "about"
+ },
+ {
+ "id": 16029,
+ "start": 7667.3,
+ "end": 7667.5,
+ "text": "their"
+ },
+ {
+ "id": 16030,
+ "start": 7667.5,
+ "end": 7667.9,
+ "text": "political"
+ },
+ {
+ "id": 16031,
+ "start": 7667.9,
+ "end": 7668.56,
+ "text": "orientation"
+ },
+ {
+ "id": 16032,
+ "start": 7668.56,
+ "end": 7668.72,
+ "text": "when"
+ },
+ {
+ "id": 16033,
+ "start": 7668.72,
+ "end": 7668.94,
+ "text": "they're"
+ },
+ {
+ "id": 16034,
+ "start": 7668.94,
+ "end": 7669.24,
+ "text": "joining"
+ },
+ {
+ "id": 16035,
+ "start": 7669.24,
+ "end": 7669.36,
+ "text": "the"
+ },
+ {
+ "id": 16036,
+ "start": 7669.36,
+ "end": 7669.68,
+ "text": "company"
+ },
+ {
+ "id": 16037,
+ "start": 7669.68,
+ "end": 7670.12,
+ "text": "so,"
+ },
+ {
+ "id": 16038,
+ "start": 7670.12,
+ "end": 7670.28,
+ "text": "as"
+ },
+ {
+ "id": 16039,
+ "start": 7670.28,
+ "end": 7670.8,
+ "text": "CEO,"
+ },
+ {
+ "id": 16040,
+ "start": 7670.8,
+ "end": 7670.96,
+ "text": "have"
+ },
+ {
+ "id": 16041,
+ "start": 7670.96,
+ "end": 7671.08,
+ "text": "you"
+ },
+ {
+ "id": 16042,
+ "start": 7671.08,
+ "end": 7671.32,
+ "text": "ever"
+ },
+ {
+ "id": 16043,
+ "start": 7671.32,
+ "end": 7671.54,
+ "text": "made"
+ },
+ {
+ "id": 16044,
+ "start": 7671.54,
+ "end": 7671.94,
+ "text": "hiring"
+ },
+ {
+ "id": 16045,
+ "start": 7671.94,
+ "end": 7672.06,
+ "text": "or"
+ },
+ {
+ "id": 16046,
+ "start": 7672.06,
+ "end": 7672.44,
+ "text": "firing"
+ },
+ {
+ "id": 16047,
+ "start": 7672.44,
+ "end": 7672.96,
+ "text": "decisions"
+ },
+ {
+ "id": 16048,
+ "start": 7672.96,
+ "end": 7673.3,
+ "text": "based"
+ },
+ {
+ "id": 16049,
+ "start": 7673.3,
+ "end": 7673.5,
+ "text": "on"
+ },
+ {
+ "id": 16050,
+ "start": 7673.5,
+ "end": 7674.02,
+ "text": "political"
+ },
+ {
+ "id": 16051,
+ "start": 7674.02,
+ "end": 7674.48,
+ "text": "positions"
+ },
+ {
+ "id": 16052,
+ "start": 7674.48,
+ "end": 7674.6,
+ "text": "or"
+ },
+ {
+ "id": 16053,
+ "start": 7674.6,
+ "end": 7674.78,
+ "text": "what"
+ },
+ {
+ "id": 16054,
+ "start": 7674.78,
+ "end": 7675.2,
+ "text": "candidates"
+ },
+ {
+ "id": 16055,
+ "start": 7675.2,
+ "end": 7675.42,
+ "text": "they"
+ },
+ {
+ "id": 16056,
+ "start": 7675.42,
+ "end": 7675.82,
+ "text": "supported?"
+ },
+ {
+ "id": 16057,
+ "start": 7675.82,
+ "end": 7677.12,
+ "text": "No,"
+ },
+ {
+ "id": 16058,
+ "start": 7677.12,
+ "end": 7678.12,
+ "text": "why"
+ },
+ {
+ "id": 16059,
+ "start": 7678.12,
+ "end": 7678.34,
+ "text": "was"
+ },
+ {
+ "id": 16060,
+ "start": 7678.34,
+ "end": 7678.62,
+ "text": "Palmer"
+ },
+ {
+ "id": 16061,
+ "start": 7678.62,
+ "end": 7678.88,
+ "text": "lucky"
+ },
+ {
+ "id": 16062,
+ "start": 7678.88,
+ "end": 7680.24,
+ "text": "fired?"
+ },
+ {
+ "id": 16063,
+ "start": 7680.24,
+ "end": 7681.26,
+ "text": "That"
+ },
+ {
+ "id": 16064,
+ "start": 7681.26,
+ "end": 7681.42,
+ "text": "is"
+ },
+ {
+ "id": 16065,
+ "start": 7681.42,
+ "end": 7681.52,
+ "text": "a"
+ },
+ {
+ "id": 16066,
+ "start": 7681.52,
+ "end": 7682.12,
+ "text": "specific"
+ },
+ {
+ "id": 16067,
+ "start": 7682.12,
+ "end": 7682.64,
+ "text": "personnel"
+ },
+ {
+ "id": 16068,
+ "start": 7682.64,
+ "end": 7682.96,
+ "text": "matter"
+ },
+ {
+ "id": 16069,
+ "start": 7682.96,
+ "end": 7683.2,
+ "text": "that"
+ },
+ {
+ "id": 16070,
+ "start": 7683.2,
+ "end": 7683.54,
+ "text": "seems"
+ },
+ {
+ "id": 16071,
+ "start": 7683.54,
+ "end": 7683.7,
+ "text": "like"
+ },
+ {
+ "id": 16072,
+ "start": 7683.7,
+ "end": 7683.78,
+ "text": "it"
+ },
+ {
+ "id": 16073,
+ "start": 7683.78,
+ "end": 7683.94,
+ "text": "would"
+ },
+ {
+ "id": 16074,
+ "start": 7683.94,
+ "end": 7684.02,
+ "text": "be"
+ },
+ {
+ "id": 16075,
+ "start": 7684.02,
+ "end": 7684.62,
+ "text": "inappropriate."
+ },
+ {
+ "id": 16076,
+ "start": 7684.62,
+ "end": 7684.8,
+ "text": "You"
+ },
+ {
+ "id": 16077,
+ "start": 7684.8,
+ "end": 7684.98,
+ "text": "just"
+ },
+ {
+ "id": 16078,
+ "start": 7684.98,
+ "end": 7685.16,
+ "text": "made"
+ },
+ {
+ "id": 16079,
+ "start": 7685.16,
+ "end": 7685.24,
+ "text": "a"
+ },
+ {
+ "id": 16080,
+ "start": 7685.24,
+ "end": 7685.74,
+ "text": "specific"
+ },
+ {
+ "id": 16081,
+ "start": 7685.74,
+ "end": 7686.5,
+ "text": "representation"
+ },
+ {
+ "id": 16082,
+ "start": 7686.5,
+ "end": 7686.66,
+ "text": "that"
+ },
+ {
+ "id": 16083,
+ "start": 7686.66,
+ "end": 7686.78,
+ "text": "you"
+ },
+ {
+ "id": 16084,
+ "start": 7686.78,
+ "end": 7687,
+ "text": "didn't"
+ },
+ {
+ "id": 16085,
+ "start": 7687,
+ "end": 7687.16,
+ "text": "make"
+ },
+ {
+ "id": 16086,
+ "start": 7687.16,
+ "end": 7687.6,
+ "text": "decisions"
+ },
+ {
+ "id": 16087,
+ "start": 7687.6,
+ "end": 7687.84,
+ "text": "based"
+ },
+ {
+ "id": 16088,
+ "start": 7687.84,
+ "end": 7687.98,
+ "text": "on"
+ },
+ {
+ "id": 16089,
+ "start": 7687.98,
+ "end": 7688.38,
+ "text": "political"
+ },
+ {
+ "id": 16090,
+ "start": 7688.38,
+ "end": 7688.6,
+ "text": "view."
+ },
+ {
+ "id": 16091,
+ "start": 7688.6,
+ "end": 7689.52,
+ "text": "I"
+ },
+ {
+ "id": 16092,
+ "start": 7689.52,
+ "end": 7689.7,
+ "text": "can"
+ },
+ {
+ "id": 16093,
+ "start": 7689.7,
+ "end": 7690.02,
+ "text": "commit"
+ },
+ {
+ "id": 16094,
+ "start": 7690.02,
+ "end": 7690.22,
+ "text": "that"
+ },
+ {
+ "id": 16095,
+ "start": 7690.22,
+ "end": 7690.48,
+ "text": "it"
+ },
+ {
+ "id": 16096,
+ "start": 7690.48,
+ "end": 7690.64,
+ "text": "was"
+ },
+ {
+ "id": 16097,
+ "start": 7690.64,
+ "end": 7690.9,
+ "text": "not"
+ },
+ {
+ "id": 16098,
+ "start": 7690.9,
+ "end": 7691.14,
+ "text": "because"
+ },
+ {
+ "id": 16099,
+ "start": 7691.14,
+ "end": 7691.26,
+ "text": "of"
+ },
+ {
+ "id": 16100,
+ "start": 7691.26,
+ "end": 7691.34,
+ "text": "a"
+ },
+ {
+ "id": 16101,
+ "start": 7691.34,
+ "end": 7691.74,
+ "text": "political"
+ },
+ {
+ "id": 16102,
+ "start": 7691.74,
+ "end": 7692.8,
+ "text": "view."
+ },
+ {
+ "id": 16103,
+ "start": 7692.8,
+ "end": 7693.74,
+ "text": "Do"
+ },
+ {
+ "id": 16104,
+ "start": 7693.74,
+ "end": 7693.86,
+ "text": "you"
+ },
+ {
+ "id": 16105,
+ "start": 7693.86,
+ "end": 7693.98,
+ "text": "know"
+ },
+ {
+ "id": 16106,
+ "start": 7693.98,
+ "end": 7694.14,
+ "text": "of"
+ },
+ {
+ "id": 16107,
+ "start": 7694.14,
+ "end": 7694.34,
+ "text": "those"
+ },
+ {
+ "id": 16108,
+ "start": 7694.34,
+ "end": 7694.68,
+ "text": "15"
+ },
+ {
+ "id": 16109,
+ "start": 7694.68,
+ "end": 7694.8,
+ "text": "to"
+ },
+ {
+ "id": 16110,
+ "start": 7694.8,
+ "end": 7695.46,
+ "text": "20,000"
+ },
+ {
+ "id": 16111,
+ "start": 7695.46,
+ "end": 7695.7,
+ "text": "people"
+ },
+ {
+ "id": 16112,
+ "start": 7695.7,
+ "end": 7696.1,
+ "text": "engage"
+ },
+ {
+ "id": 16113,
+ "start": 7696.1,
+ "end": 7696.26,
+ "text": "in"
+ },
+ {
+ "id": 16114,
+ "start": 7696.26,
+ "end": 7696.74,
+ "text": "content"
+ },
+ {
+ "id": 16115,
+ "start": 7696.74,
+ "end": 7697.22,
+ "text": "review."
+ },
+ {
+ "id": 16116,
+ "start": 7697.22,
+ "end": 7698.38,
+ "text": "How"
+ },
+ {
+ "id": 16117,
+ "start": 7698.38,
+ "end": 7698.7,
+ "text": "many"
+ },
+ {
+ "id": 16118,
+ "start": 7698.7,
+ "end": 7698.88,
+ "text": "if"
+ },
+ {
+ "id": 16119,
+ "start": 7698.88,
+ "end": 7699.28,
+ "text": "any"
+ },
+ {
+ "id": 16120,
+ "start": 7699.28,
+ "end": 7699.48,
+ "text": "have"
+ },
+ {
+ "id": 16121,
+ "start": 7699.48,
+ "end": 7699.8,
+ "text": "ever"
+ },
+ {
+ "id": 16122,
+ "start": 7699.8,
+ "end": 7700.42,
+ "text": "supported"
+ },
+ {
+ "id": 16123,
+ "start": 7700.42,
+ "end": 7701.3,
+ "text": "financially"
+ },
+ {
+ "id": 16124,
+ "start": 7701.3,
+ "end": 7701.38,
+ "text": "a"
+ },
+ {
+ "id": 16125,
+ "start": 7701.38,
+ "end": 7701.88,
+ "text": "Republican"
+ },
+ {
+ "id": 16126,
+ "start": 7701.88,
+ "end": 7702.24,
+ "text": "candidate"
+ },
+ {
+ "id": 16127,
+ "start": 7702.24,
+ "end": 7702.36,
+ "text": "for"
+ },
+ {
+ "id": 16128,
+ "start": 7702.36,
+ "end": 7703.82,
+ "text": "office,"
+ },
+ {
+ "id": 16129,
+ "start": 7703.82,
+ "end": 7704.8,
+ "text": "Senator."
+ },
+ {
+ "id": 16130,
+ "start": 7704.8,
+ "end": 7704.88,
+ "text": "I"
+ },
+ {
+ "id": 16131,
+ "start": 7704.88,
+ "end": 7705.02,
+ "text": "do"
+ },
+ {
+ "id": 16132,
+ "start": 7705.02,
+ "end": 7705.24,
+ "text": "not"
+ },
+ {
+ "id": 16133,
+ "start": 7705.24,
+ "end": 7705.4,
+ "text": "know"
+ },
+ {
+ "id": 16134,
+ "start": 7705.4,
+ "end": 7705.86,
+ "text": "that."
+ },
+ {
+ "id": 16135,
+ "start": 7705.86,
+ "end": 7706.84,
+ "text": "Your"
+ },
+ {
+ "id": 16136,
+ "start": 7706.84,
+ "end": 7707.46,
+ "text": "testimony"
+ },
+ {
+ "id": 16137,
+ "start": 7707.46,
+ "end": 7707.9,
+ "text": "says"
+ },
+ {
+ "id": 16138,
+ "start": 7707.9,
+ "end": 7708.86,
+ "text": "it"
+ },
+ {
+ "id": 16139,
+ "start": 7708.86,
+ "end": 7709.08,
+ "text": "is"
+ },
+ {
+ "id": 16140,
+ "start": 7709.08,
+ "end": 7709.3,
+ "text": "not"
+ },
+ {
+ "id": 16141,
+ "start": 7709.3,
+ "end": 7709.58,
+ "text": "enough"
+ },
+ {
+ "id": 16142,
+ "start": 7709.58,
+ "end": 7709.74,
+ "text": "that"
+ },
+ {
+ "id": 16143,
+ "start": 7709.74,
+ "end": 7709.84,
+ "text": "we"
+ },
+ {
+ "id": 16144,
+ "start": 7709.84,
+ "end": 7710.08,
+ "text": "just"
+ },
+ {
+ "id": 16145,
+ "start": 7710.08,
+ "end": 7710.38,
+ "text": "connect"
+ },
+ {
+ "id": 16146,
+ "start": 7710.38,
+ "end": 7710.72,
+ "text": "people."
+ },
+ {
+ "id": 16147,
+ "start": 7710.72,
+ "end": 7711.1,
+ "text": "We"
+ },
+ {
+ "id": 16148,
+ "start": 7711.1,
+ "end": 7711.32,
+ "text": "have"
+ },
+ {
+ "id": 16149,
+ "start": 7711.32,
+ "end": 7711.44,
+ "text": "to"
+ },
+ {
+ "id": 16150,
+ "start": 7711.44,
+ "end": 7711.62,
+ "text": "make"
+ },
+ {
+ "id": 16151,
+ "start": 7711.62,
+ "end": 7711.86,
+ "text": "sure"
+ },
+ {
+ "id": 16152,
+ "start": 7711.86,
+ "end": 7712.14,
+ "text": "those"
+ },
+ {
+ "id": 16153,
+ "start": 7712.14,
+ "end": 7712.62,
+ "text": "connections"
+ },
+ {
+ "id": 16154,
+ "start": 7712.62,
+ "end": 7712.78,
+ "text": "are"
+ },
+ {
+ "id": 16155,
+ "start": 7712.78,
+ "end": 7713.3,
+ "text": "positive,"
+ },
+ {
+ "id": 16156,
+ "start": 7713.3,
+ "end": 7714.38,
+ "text": "it"
+ },
+ {
+ "id": 16157,
+ "start": 7714.38,
+ "end": 7714.74,
+ "text": "says"
+ },
+ {
+ "id": 16158,
+ "start": 7714.74,
+ "end": 7714.86,
+ "text": "we"
+ },
+ {
+ "id": 16159,
+ "start": 7714.86,
+ "end": 7715.1,
+ "text": "have"
+ },
+ {
+ "id": 16160,
+ "start": 7715.1,
+ "end": 7715.2,
+ "text": "to"
+ },
+ {
+ "id": 16161,
+ "start": 7715.2,
+ "end": 7715.38,
+ "text": "make"
+ },
+ {
+ "id": 16162,
+ "start": 7715.38,
+ "end": 7715.66,
+ "text": "sure"
+ },
+ {
+ "id": 16163,
+ "start": 7715.66,
+ "end": 7716.08,
+ "text": "people"
+ },
+ {
+ "id": 16164,
+ "start": 7716.08,
+ "end": 7716.5,
+ "text": "aren't"
+ },
+ {
+ "id": 16165,
+ "start": 7716.5,
+ "end": 7716.98,
+ "text": "using"
+ },
+ {
+ "id": 16166,
+ "start": 7716.98,
+ "end": 7717.24,
+ "text": "their"
+ },
+ {
+ "id": 16167,
+ "start": 7717.24,
+ "end": 7717.58,
+ "text": "voice"
+ },
+ {
+ "id": 16168,
+ "start": 7717.58,
+ "end": 7717.76,
+ "text": "to"
+ },
+ {
+ "id": 16169,
+ "start": 7717.76,
+ "end": 7718.06,
+ "text": "hurt"
+ },
+ {
+ "id": 16170,
+ "start": 7718.06,
+ "end": 7718.38,
+ "text": "people"
+ },
+ {
+ "id": 16171,
+ "start": 7718.38,
+ "end": 7718.58,
+ "text": "or"
+ },
+ {
+ "id": 16172,
+ "start": 7718.58,
+ "end": 7718.92,
+ "text": "spread"
+ },
+ {
+ "id": 16173,
+ "start": 7718.92,
+ "end": 7720.09,
+ "text": "misinformation."
+ },
+ {
+ "id": 16174,
+ "start": 7720.09,
+ "end": 7720.69,
+ "text": "We"
+ },
+ {
+ "id": 16175,
+ "start": 7720.69,
+ "end": 7720.87,
+ "text": "have"
+ },
+ {
+ "id": 16176,
+ "start": 7720.87,
+ "end": 7720.91,
+ "text": "a"
+ },
+ {
+ "id": 16177,
+ "start": 7720.91,
+ "end": 7721.75,
+ "text": "responsibility"
+ },
+ {
+ "id": 16178,
+ "start": 7721.75,
+ "end": 7721.95,
+ "text": "not"
+ },
+ {
+ "id": 16179,
+ "start": 7721.95,
+ "end": 7722.13,
+ "text": "just"
+ },
+ {
+ "id": 16180,
+ "start": 7722.13,
+ "end": 7722.23,
+ "text": "to"
+ },
+ {
+ "id": 16181,
+ "start": 7722.23,
+ "end": 7722.51,
+ "text": "build"
+ },
+ {
+ "id": 16182,
+ "start": 7722.51,
+ "end": 7722.89,
+ "text": "tools"
+ },
+ {
+ "id": 16183,
+ "start": 7722.89,
+ "end": 7723.07,
+ "text": "to"
+ },
+ {
+ "id": 16184,
+ "start": 7723.07,
+ "end": 7723.33,
+ "text": "make"
+ },
+ {
+ "id": 16185,
+ "start": 7723.33,
+ "end": 7723.61,
+ "text": "sure"
+ },
+ {
+ "id": 16186,
+ "start": 7723.61,
+ "end": 7723.89,
+ "text": "those"
+ },
+ {
+ "id": 16187,
+ "start": 7723.89,
+ "end": 7724.19,
+ "text": "tools"
+ },
+ {
+ "id": 16188,
+ "start": 7724.19,
+ "end": 7724.37,
+ "text": "are"
+ },
+ {
+ "id": 16189,
+ "start": 7724.37,
+ "end": 7724.67,
+ "text": "used"
+ },
+ {
+ "id": 16190,
+ "start": 7724.67,
+ "end": 7724.83,
+ "text": "for"
+ },
+ {
+ "id": 16191,
+ "start": 7724.83,
+ "end": 7725.07,
+ "text": "good."
+ },
+ {
+ "id": 16192,
+ "start": 7725.07,
+ "end": 7725.39,
+ "text": "Mr"
+ },
+ {
+ "id": 16193,
+ "start": 7725.39,
+ "end": 7725.83,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 16194,
+ "start": 7725.83,
+ "end": 7726.35,
+ "text": "do"
+ },
+ {
+ "id": 16195,
+ "start": 7726.35,
+ "end": 7726.47,
+ "text": "you"
+ },
+ {
+ "id": 16196,
+ "start": 7726.47,
+ "end": 7726.69,
+ "text": "fill"
+ },
+ {
+ "id": 16197,
+ "start": 7726.69,
+ "end": 7726.77,
+ "text": "a"
+ },
+ {
+ "id": 16198,
+ "start": 7726.77,
+ "end": 7726.97,
+ "text": "Cur"
+ },
+ {
+ "id": 16199,
+ "start": 7726.97,
+ "end": 7727.75,
+ "text": "responsibility"
+ },
+ {
+ "id": 16200,
+ "start": 7727.75,
+ "end": 7727.87,
+ "text": "to"
+ },
+ {
+ "id": 16201,
+ "start": 7727.87,
+ "end": 7728.29,
+ "text": "assess"
+ },
+ {
+ "id": 16202,
+ "start": 7728.29,
+ "end": 7728.75,
+ "text": "users"
+ },
+ {
+ "id": 16203,
+ "start": 7728.75,
+ "end": 7729.05,
+ "text": "whether"
+ },
+ {
+ "id": 16204,
+ "start": 7729.05,
+ "end": 7729.23,
+ "text": "they"
+ },
+ {
+ "id": 16205,
+ "start": 7729.23,
+ "end": 7729.37,
+ "text": "are"
+ },
+ {
+ "id": 16206,
+ "start": 7729.37,
+ "end": 7729.67,
+ "text": "good"
+ },
+ {
+ "id": 16207,
+ "start": 7729.67,
+ "end": 7729.81,
+ "text": "and"
+ },
+ {
+ "id": 16208,
+ "start": 7729.81,
+ "end": 7730.33,
+ "text": "positive"
+ },
+ {
+ "id": 16209,
+ "start": 7730.33,
+ "end": 7730.97,
+ "text": "connections"
+ },
+ {
+ "id": 16210,
+ "start": 7730.97,
+ "end": 7731.33,
+ "text": "or"
+ },
+ {
+ "id": 16211,
+ "start": 7731.33,
+ "end": 7731.73,
+ "text": "ones"
+ },
+ {
+ "id": 16212,
+ "start": 7731.73,
+ "end": 7731.99,
+ "text": "that"
+ },
+ {
+ "id": 16213,
+ "start": 7731.99,
+ "end": 7732.33,
+ "text": "those"
+ },
+ {
+ "id": 16214,
+ "start": 7732.33,
+ "end": 7732.71,
+ "text": "15"
+ },
+ {
+ "id": 16215,
+ "start": 7732.71,
+ "end": 7732.79,
+ "text": "to"
+ },
+ {
+ "id": 16216,
+ "start": 7732.79,
+ "end": 7733.43,
+ "text": "20,000"
+ },
+ {
+ "id": 16217,
+ "start": 7733.43,
+ "end": 7733.77,
+ "text": "people,"
+ },
+ {
+ "id": 16218,
+ "start": 7733.77,
+ "end": 7734.13,
+ "text": "deem"
+ },
+ {
+ "id": 16219,
+ "start": 7734.13,
+ "end": 7735.27,
+ "text": "unacceptable"
+ },
+ {
+ "id": 16220,
+ "start": 7735.27,
+ "end": 7735.41,
+ "text": "or"
+ },
+ {
+ "id": 16221,
+ "start": 7735.41,
+ "end": 7736.6,
+ "text": "deplorable"
+ },
+ {
+ "id": 16222,
+ "start": 7736.6,
+ "end": 7737.56,
+ "text": "Senator"
+ },
+ {
+ "id": 16223,
+ "start": 7737.56,
+ "end": 7737.76,
+ "text": "you're"
+ },
+ {
+ "id": 16224,
+ "start": 7737.76,
+ "end": 7737.96,
+ "text": "asking"
+ },
+ {
+ "id": 16225,
+ "start": 7737.96,
+ "end": 7738.28,
+ "text": "me"
+ },
+ {
+ "id": 16226,
+ "start": 7738.28,
+ "end": 7738.8,
+ "text": "personally"
+ },
+ {
+ "id": 16227,
+ "start": 7738.8,
+ "end": 7740,
+ "text": "Facebook."
+ },
+ {
+ "id": 16228,
+ "start": 7740,
+ "end": 7741,
+ "text": "Senator,"
+ },
+ {
+ "id": 16229,
+ "start": 7741,
+ "end": 7741.06,
+ "text": "I"
+ },
+ {
+ "id": 16230,
+ "start": 7741.06,
+ "end": 7741.2,
+ "text": "think"
+ },
+ {
+ "id": 16231,
+ "start": 7741.2,
+ "end": 7741.32,
+ "text": "that"
+ },
+ {
+ "id": 16232,
+ "start": 7741.32,
+ "end": 7741.5,
+ "text": "there"
+ },
+ {
+ "id": 16233,
+ "start": 7741.5,
+ "end": 7741.62,
+ "text": "are"
+ },
+ {
+ "id": 16234,
+ "start": 7741.62,
+ "end": 7741.68,
+ "text": "a"
+ },
+ {
+ "id": 16235,
+ "start": 7741.68,
+ "end": 7742.1,
+ "text": "number"
+ },
+ {
+ "id": 16236,
+ "start": 7742.1,
+ "end": 7742.18,
+ "text": "of"
+ },
+ {
+ "id": 16237,
+ "start": 7742.18,
+ "end": 7742.6,
+ "text": "things"
+ },
+ {
+ "id": 16238,
+ "start": 7742.6,
+ "end": 7742.82,
+ "text": "that"
+ },
+ {
+ "id": 16239,
+ "start": 7742.82,
+ "end": 7742.92,
+ "text": "we"
+ },
+ {
+ "id": 16240,
+ "start": 7742.92,
+ "end": 7743.1,
+ "text": "would"
+ },
+ {
+ "id": 16241,
+ "start": 7743.1,
+ "end": 7743.26,
+ "text": "all"
+ },
+ {
+ "id": 16242,
+ "start": 7743.26,
+ "end": 7743.58,
+ "text": "agree"
+ },
+ {
+ "id": 16243,
+ "start": 7743.58,
+ "end": 7743.74,
+ "text": "are"
+ },
+ {
+ "id": 16244,
+ "start": 7743.74,
+ "end": 7744.14,
+ "text": "clearly"
+ },
+ {
+ "id": 16245,
+ "start": 7744.14,
+ "end": 7744.46,
+ "text": "bad"
+ },
+ {
+ "id": 16246,
+ "start": 7744.46,
+ "end": 7745.22,
+ "text": "foreign"
+ },
+ {
+ "id": 16247,
+ "start": 7745.22,
+ "end": 7745.76,
+ "text": "interference"
+ },
+ {
+ "id": 16248,
+ "start": 7745.76,
+ "end": 7745.86,
+ "text": "in"
+ },
+ {
+ "id": 16249,
+ "start": 7745.86,
+ "end": 7745.98,
+ "text": "our"
+ },
+ {
+ "id": 16250,
+ "start": 7745.98,
+ "end": 7746.46,
+ "text": "elections,"
+ },
+ {
+ "id": 16251,
+ "start": 7746.46,
+ "end": 7747.78,
+ "text": "terrorism"
+ },
+ {
+ "id": 16252,
+ "start": 7747.78,
+ "end": 7748.38,
+ "text": "self"
+ },
+ {
+ "id": 16253,
+ "start": 7748.38,
+ "end": 7748.68,
+ "text": "harm."
+ },
+ {
+ "id": 16254,
+ "start": 7748.68,
+ "end": 7749.34,
+ "text": "Those"
+ },
+ {
+ "id": 16255,
+ "start": 7749.34,
+ "end": 7749.5,
+ "text": "are"
+ },
+ {
+ "id": 16256,
+ "start": 7749.5,
+ "end": 7749.76,
+ "text": "things"
+ },
+ {
+ "id": 16257,
+ "start": 7749.76,
+ "end": 7750.32,
+ "text": "censorship."
+ },
+ {
+ "id": 16258,
+ "start": 7750.32,
+ "end": 7751.36,
+ "text": "Well,"
+ },
+ {
+ "id": 16259,
+ "start": 7751.36,
+ "end": 7751.94,
+ "text": "I"
+ },
+ {
+ "id": 16260,
+ "start": 7751.94,
+ "end": 7752.14,
+ "text": "think"
+ },
+ {
+ "id": 16261,
+ "start": 7752.14,
+ "end": 7752.38,
+ "text": "that"
+ },
+ {
+ "id": 16262,
+ "start": 7752.38,
+ "end": 7752.54,
+ "text": "you"
+ },
+ {
+ "id": 16263,
+ "start": 7752.54,
+ "end": 7752.72,
+ "text": "would"
+ },
+ {
+ "id": 16264,
+ "start": 7752.72,
+ "end": 7753.22,
+ "text": "probably"
+ },
+ {
+ "id": 16265,
+ "start": 7753.22,
+ "end": 7753.68,
+ "text": "agree"
+ },
+ {
+ "id": 16266,
+ "start": 7753.68,
+ "end": 7753.86,
+ "text": "that"
+ },
+ {
+ "id": 16267,
+ "start": 7753.86,
+ "end": 7753.98,
+ "text": "we"
+ },
+ {
+ "id": 16268,
+ "start": 7753.98,
+ "end": 7754.2,
+ "text": "should"
+ },
+ {
+ "id": 16269,
+ "start": 7754.2,
+ "end": 7754.48,
+ "text": "remove"
+ },
+ {
+ "id": 16270,
+ "start": 7754.48,
+ "end": 7754.86,
+ "text": "terrorist"
+ },
+ {
+ "id": 16271,
+ "start": 7754.86,
+ "end": 7755.48,
+ "text": "propaganda"
+ },
+ {
+ "id": 16272,
+ "start": 7755.48,
+ "end": 7755.62,
+ "text": "from"
+ },
+ {
+ "id": 16273,
+ "start": 7755.62,
+ "end": 7755.74,
+ "text": "the"
+ },
+ {
+ "id": 16274,
+ "start": 7755.74,
+ "end": 7756.08,
+ "text": "service."
+ },
+ {
+ "id": 16275,
+ "start": 7756.08,
+ "end": 7756.84,
+ "text": "So"
+ },
+ {
+ "id": 16276,
+ "start": 7756.84,
+ "end": 7757.56,
+ "text": "that"
+ },
+ {
+ "id": 16277,
+ "start": 7757.56,
+ "end": 7757.88,
+ "text": "I"
+ },
+ {
+ "id": 16278,
+ "start": 7757.88,
+ "end": 7758.3,
+ "text": "agree,"
+ },
+ {
+ "id": 16279,
+ "start": 7758.3,
+ "end": 7758.54,
+ "text": "I"
+ },
+ {
+ "id": 16280,
+ "start": 7758.54,
+ "end": 7758.81,
+ "text": "think"
+ },
+ {
+ "id": 16281,
+ "start": 7758.81,
+ "end": 7759.25,
+ "text": "is"
+ },
+ {
+ "id": 16282,
+ "start": 7759.25,
+ "end": 7759.61,
+ "text": "clearly"
+ },
+ {
+ "id": 16283,
+ "start": 7759.61,
+ "end": 7759.87,
+ "text": "bad"
+ },
+ {
+ "id": 16284,
+ "start": 7759.87,
+ "end": 7760.45,
+ "text": "activity"
+ },
+ {
+ "id": 16285,
+ "start": 7760.45,
+ "end": 7760.65,
+ "text": "that"
+ },
+ {
+ "id": 16286,
+ "start": 7760.65,
+ "end": 7760.75,
+ "text": "we"
+ },
+ {
+ "id": 16287,
+ "start": 7760.75,
+ "end": 7760.91,
+ "text": "want"
+ },
+ {
+ "id": 16288,
+ "start": 7760.91,
+ "end": 7761.01,
+ "text": "to"
+ },
+ {
+ "id": 16289,
+ "start": 7761.01,
+ "end": 7761.23,
+ "text": "get"
+ },
+ {
+ "id": 16290,
+ "start": 7761.23,
+ "end": 7761.57,
+ "text": "down"
+ },
+ {
+ "id": 16291,
+ "start": 7761.57,
+ "end": 7761.99,
+ "text": "and"
+ },
+ {
+ "id": 16292,
+ "start": 7761.99,
+ "end": 7762.17,
+ "text": "we're"
+ },
+ {
+ "id": 16293,
+ "start": 7762.17,
+ "end": 7762.57,
+ "text": "generally"
+ },
+ {
+ "id": 16294,
+ "start": 7762.57,
+ "end": 7762.87,
+ "text": "proud"
+ },
+ {
+ "id": 16295,
+ "start": 7762.87,
+ "end": 7763.03,
+ "text": "of"
+ },
+ {
+ "id": 16296,
+ "start": 7763.03,
+ "end": 7763.53,
+ "text": "how"
+ },
+ {
+ "id": 16297,
+ "start": 7763.53,
+ "end": 7763.75,
+ "text": "well"
+ },
+ {
+ "id": 16298,
+ "start": 7763.75,
+ "end": 7764.13,
+ "text": "we"
+ },
+ {
+ "id": 16299,
+ "start": 7764.13,
+ "end": 7764.25,
+ "text": "do"
+ },
+ {
+ "id": 16300,
+ "start": 7764.25,
+ "end": 7764.41,
+ "text": "with"
+ },
+ {
+ "id": 16301,
+ "start": 7764.41,
+ "end": 7764.63,
+ "text": "that."
+ },
+ {
+ "id": 16302,
+ "start": 7764.63,
+ "end": 7765.33,
+ "text": "Now,"
+ },
+ {
+ "id": 16303,
+ "start": 7765.33,
+ "end": 7765.67,
+ "text": "what"
+ },
+ {
+ "id": 16304,
+ "start": 7765.67,
+ "end": 7765.79,
+ "text": "I"
+ },
+ {
+ "id": 16305,
+ "start": 7765.79,
+ "end": 7765.99,
+ "text": "can"
+ },
+ {
+ "id": 16306,
+ "start": 7765.99,
+ "end": 7766.19,
+ "text": "say"
+ },
+ {
+ "id": 16307,
+ "start": 7766.19,
+ "end": 7766.77,
+ "text": "and"
+ },
+ {
+ "id": 16308,
+ "start": 7766.77,
+ "end": 7766.81,
+ "text": "I"
+ },
+ {
+ "id": 16309,
+ "start": 7766.81,
+ "end": 7766.95,
+ "text": "do"
+ },
+ {
+ "id": 16310,
+ "start": 7766.95,
+ "end": 7767.07,
+ "text": "want"
+ },
+ {
+ "id": 16311,
+ "start": 7767.07,
+ "end": 7767.13,
+ "text": "to"
+ },
+ {
+ "id": 16312,
+ "start": 7767.13,
+ "end": 7767.23,
+ "text": "get"
+ },
+ {
+ "id": 16313,
+ "start": 7767.23,
+ "end": 7767.35,
+ "text": "this"
+ },
+ {
+ "id": 16314,
+ "start": 7767.35,
+ "end": 7767.55,
+ "text": "in"
+ },
+ {
+ "id": 16315,
+ "start": 7767.55,
+ "end": 7767.81,
+ "text": "before"
+ },
+ {
+ "id": 16316,
+ "start": 7767.81,
+ "end": 7767.93,
+ "text": "the"
+ },
+ {
+ "id": 16317,
+ "start": 7767.93,
+ "end": 7768.05,
+ "text": "end."
+ },
+ {
+ "id": 16318,
+ "start": 7768.05,
+ "end": 7768.29,
+ "text": "Here"
+ },
+ {
+ "id": 16319,
+ "start": 7768.29,
+ "end": 7768.85,
+ "text": "is"
+ },
+ {
+ "id": 16320,
+ "start": 7768.85,
+ "end": 7769.05,
+ "text": "that"
+ },
+ {
+ "id": 16321,
+ "start": 7769.05,
+ "end": 7769.84,
+ "text": "I"
+ },
+ {
+ "id": 16322,
+ "start": 7769.84,
+ "end": 7770.88,
+ "text": "I'm"
+ },
+ {
+ "id": 16323,
+ "start": 7770.88,
+ "end": 7771.24,
+ "text": "very"
+ },
+ {
+ "id": 16324,
+ "start": 7771.24,
+ "end": 7771.62,
+ "text": "committed"
+ },
+ {
+ "id": 16325,
+ "start": 7771.62,
+ "end": 7771.9,
+ "text": "to"
+ },
+ {
+ "id": 16326,
+ "start": 7771.9,
+ "end": 7772.16,
+ "text": "making"
+ },
+ {
+ "id": 16327,
+ "start": 7772.16,
+ "end": 7772.38,
+ "text": "sure"
+ },
+ {
+ "id": 16328,
+ "start": 7772.38,
+ "end": 7772.58,
+ "text": "that"
+ },
+ {
+ "id": 16329,
+ "start": 7772.58,
+ "end": 7772.96,
+ "text": "Facebook"
+ },
+ {
+ "id": 16330,
+ "start": 7772.96,
+ "end": 7773.04,
+ "text": "is"
+ },
+ {
+ "id": 16331,
+ "start": 7773.04,
+ "end": 7773.12,
+ "text": "a"
+ },
+ {
+ "id": 16332,
+ "start": 7773.12,
+ "end": 7773.58,
+ "text": "platform"
+ },
+ {
+ "id": 16333,
+ "start": 7773.58,
+ "end": 7773.74,
+ "text": "for"
+ },
+ {
+ "id": 16334,
+ "start": 7773.74,
+ "end": 7773.92,
+ "text": "all"
+ },
+ {
+ "id": 16335,
+ "start": 7773.92,
+ "end": 7774.34,
+ "text": "ideas."
+ },
+ {
+ "id": 16336,
+ "start": 7774.34,
+ "end": 7774.92,
+ "text": "That"
+ },
+ {
+ "id": 16337,
+ "start": 7774.92,
+ "end": 7775.06,
+ "text": "is"
+ },
+ {
+ "id": 16338,
+ "start": 7775.06,
+ "end": 7775.32,
+ "text": "a"
+ },
+ {
+ "id": 16339,
+ "start": 7775.32,
+ "end": 7775.62,
+ "text": "very"
+ },
+ {
+ "id": 16340,
+ "start": 7775.62,
+ "end": 7776.02,
+ "text": "important"
+ },
+ {
+ "id": 16341,
+ "start": 7776.02,
+ "end": 7776.44,
+ "text": "founding"
+ },
+ {
+ "id": 16342,
+ "start": 7776.44,
+ "end": 7776.94,
+ "text": "principle"
+ },
+ {
+ "id": 16343,
+ "start": 7776.94,
+ "end": 7777.52,
+ "text": "of"
+ },
+ {
+ "id": 16344,
+ "start": 7777.52,
+ "end": 7778.04,
+ "text": "what"
+ },
+ {
+ "id": 16345,
+ "start": 7778.04,
+ "end": 7778.18,
+ "text": "we"
+ },
+ {
+ "id": 16346,
+ "start": 7778.18,
+ "end": 7778.34,
+ "text": "do"
+ },
+ {
+ "id": 16347,
+ "start": 7778.34,
+ "end": 7779.16,
+ "text": "we're"
+ },
+ {
+ "id": 16348,
+ "start": 7779.16,
+ "end": 7779.48,
+ "text": "proud"
+ },
+ {
+ "id": 16349,
+ "start": 7779.48,
+ "end": 7779.58,
+ "text": "of"
+ },
+ {
+ "id": 16350,
+ "start": 7779.58,
+ "end": 7779.7,
+ "text": "the"
+ },
+ {
+ "id": 16351,
+ "start": 7779.7,
+ "end": 7780.14,
+ "text": "discourse"
+ },
+ {
+ "id": 16352,
+ "start": 7780.14,
+ "end": 7780.28,
+ "text": "and"
+ },
+ {
+ "id": 16353,
+ "start": 7780.28,
+ "end": 7780.38,
+ "text": "the"
+ },
+ {
+ "id": 16354,
+ "start": 7780.38,
+ "end": 7780.66,
+ "text": "different"
+ },
+ {
+ "id": 16355,
+ "start": 7780.66,
+ "end": 7781.2,
+ "text": "that"
+ },
+ {
+ "id": 16356,
+ "start": 7781.2,
+ "end": 7781.46,
+ "text": "people"
+ },
+ {
+ "id": 16357,
+ "start": 7781.46,
+ "end": 7781.64,
+ "text": "can"
+ },
+ {
+ "id": 16358,
+ "start": 7781.64,
+ "end": 7781.84,
+ "text": "share"
+ },
+ {
+ "id": 16359,
+ "start": 7781.84,
+ "end": 7782.02,
+ "text": "on"
+ },
+ {
+ "id": 16360,
+ "start": 7782.02,
+ "end": 7782.14,
+ "text": "the"
+ },
+ {
+ "id": 16361,
+ "start": 7782.14,
+ "end": 7782.48,
+ "text": "service"
+ },
+ {
+ "id": 16362,
+ "start": 7782.48,
+ "end": 7783.14,
+ "text": "and"
+ },
+ {
+ "id": 16363,
+ "start": 7783.14,
+ "end": 7783.38,
+ "text": "that"
+ },
+ {
+ "id": 16364,
+ "start": 7783.38,
+ "end": 7783.52,
+ "text": "is"
+ },
+ {
+ "id": 16365,
+ "start": 7783.52,
+ "end": 7783.86,
+ "text": "something"
+ },
+ {
+ "id": 16366,
+ "start": 7783.86,
+ "end": 7784.1,
+ "text": "that"
+ },
+ {
+ "id": 16367,
+ "start": 7784.1,
+ "end": 7784.24,
+ "text": "as"
+ },
+ {
+ "id": 16368,
+ "start": 7784.24,
+ "end": 7784.4,
+ "text": "long"
+ },
+ {
+ "id": 16369,
+ "start": 7784.4,
+ "end": 7784.5,
+ "text": "as"
+ },
+ {
+ "id": 16370,
+ "start": 7784.5,
+ "end": 7784.64,
+ "text": "I'm"
+ },
+ {
+ "id": 16371,
+ "start": 7784.64,
+ "end": 7784.88,
+ "text": "running"
+ },
+ {
+ "id": 16372,
+ "start": 7784.88,
+ "end": 7785,
+ "text": "the"
+ },
+ {
+ "id": 16373,
+ "start": 7785,
+ "end": 7785.26,
+ "text": "company"
+ },
+ {
+ "id": 16374,
+ "start": 7785.26,
+ "end": 7785.46,
+ "text": "I'm"
+ },
+ {
+ "id": 16375,
+ "start": 7785.46,
+ "end": 7785.6,
+ "text": "going"
+ },
+ {
+ "id": 16376,
+ "start": 7785.6,
+ "end": 7785.66,
+ "text": "to"
+ },
+ {
+ "id": 16377,
+ "start": 7785.66,
+ "end": 7785.74,
+ "text": "be"
+ },
+ {
+ "id": 16378,
+ "start": 7785.74,
+ "end": 7786.08,
+ "text": "committed"
+ },
+ {
+ "id": 16379,
+ "start": 7786.08,
+ "end": 7786.22,
+ "text": "to"
+ },
+ {
+ "id": 16380,
+ "start": 7786.22,
+ "end": 7786.56,
+ "text": "making"
+ },
+ {
+ "id": 16381,
+ "start": 7786.56,
+ "end": 7786.72,
+ "text": "sure"
+ },
+ {
+ "id": 16382,
+ "start": 7786.72,
+ "end": 7786.84,
+ "text": "is"
+ },
+ {
+ "id": 16383,
+ "start": 7786.84,
+ "end": 7786.96,
+ "text": "the"
+ },
+ {
+ "id": 16384,
+ "start": 7786.96,
+ "end": 7787.16,
+ "text": "case"
+ },
+ {
+ "id": 16385,
+ "start": 7787.16,
+ "end": 7787.6,
+ "text": "Thank"
+ },
+ {
+ "id": 16386,
+ "start": 7787.6,
+ "end": 7787.72,
+ "text": "you,"
+ },
+ {
+ "id": 16387,
+ "start": 7787.72,
+ "end": 7788.16,
+ "text": "thank"
+ },
+ {
+ "id": 16388,
+ "start": 7788.16,
+ "end": 7788.28,
+ "text": "you,"
+ },
+ {
+ "id": 16389,
+ "start": 7788.28,
+ "end": 7788.66,
+ "text": "Senator"
+ },
+ {
+ "id": 16390,
+ "start": 7788.66,
+ "end": 7788.96,
+ "text": "Cruz,"
+ },
+ {
+ "id": 16391,
+ "start": 7788.96,
+ "end": 7789.74,
+ "text": "you"
+ },
+ {
+ "id": 16392,
+ "start": 7789.74,
+ "end": 7789.86,
+ "text": "want"
+ },
+ {
+ "id": 16393,
+ "start": 7789.86,
+ "end": 7789.94,
+ "text": "to"
+ },
+ {
+ "id": 16394,
+ "start": 7789.94,
+ "end": 7790.12,
+ "text": "break"
+ },
+ {
+ "id": 16395,
+ "start": 7790.12,
+ "end": 7791.7,
+ "text": "now."
+ },
+ {
+ "id": 16396,
+ "start": 7791.7,
+ "end": 7792.68,
+ "text": "We"
+ },
+ {
+ "id": 16397,
+ "start": 7792.68,
+ "end": 7792.94,
+ "text": "want"
+ },
+ {
+ "id": 16398,
+ "start": 7792.94,
+ "end": 7793,
+ "text": "to"
+ },
+ {
+ "id": 16399,
+ "start": 7793,
+ "end": 7793.18,
+ "text": "keep"
+ },
+ {
+ "id": 16400,
+ "start": 7793.18,
+ "end": 7793.44,
+ "text": "going"
+ },
+ {
+ "id": 16401,
+ "start": 7793.44,
+ "end": 7794.46,
+ "text": "sure"
+ },
+ {
+ "id": 16402,
+ "start": 7794.46,
+ "end": 7795.04,
+ "text": "that"
+ },
+ {
+ "id": 16403,
+ "start": 7795.04,
+ "end": 7795.16,
+ "text": "was"
+ },
+ {
+ "id": 16404,
+ "start": 7795.16,
+ "end": 7795.38,
+ "text": "pretty"
+ },
+ {
+ "id": 16405,
+ "start": 7795.38,
+ "end": 7795.58,
+ "text": "good."
+ },
+ {
+ "id": 16406,
+ "start": 7795.58,
+ "end": 7797.06,
+ "text": "Alright,"
+ },
+ {
+ "id": 16407,
+ "start": 7797.06,
+ "end": 7797.82,
+ "text": "all"
+ },
+ {
+ "id": 16408,
+ "start": 7797.82,
+ "end": 7798.02,
+ "text": "right."
+ },
+ {
+ "id": 16409,
+ "start": 7798.02,
+ "end": 7798.22,
+ "text": "We"
+ },
+ {
+ "id": 16410,
+ "start": 7798.22,
+ "end": 7798.44,
+ "text": "have"
+ },
+ {
+ "id": 16411,
+ "start": 7798.44,
+ "end": 7799.3,
+ "text": "Senator"
+ },
+ {
+ "id": 16412,
+ "start": 7799.3,
+ "end": 7800,
+ "text": "White"
+ },
+ {
+ "id": 16413,
+ "start": 7800,
+ "end": 7800.24,
+ "text": "House"
+ },
+ {
+ "id": 16414,
+ "start": 7800.24,
+ "end": 7800.4,
+ "text": "is"
+ },
+ {
+ "id": 16415,
+ "start": 7800.4,
+ "end": 7800.6,
+ "text": "up"
+ },
+ {
+ "id": 16416,
+ "start": 7800.6,
+ "end": 7800.98,
+ "text": "next,"
+ },
+ {
+ "id": 16417,
+ "start": 7800.98,
+ "end": 7801.48,
+ "text": "but"
+ },
+ {
+ "id": 16418,
+ "start": 7801.48,
+ "end": 7801.62,
+ "text": "if"
+ },
+ {
+ "id": 16419,
+ "start": 7801.62,
+ "end": 7801.76,
+ "text": "you"
+ },
+ {
+ "id": 16420,
+ "start": 7801.76,
+ "end": 7801.92,
+ "text": "want"
+ },
+ {
+ "id": 16421,
+ "start": 7801.92,
+ "end": 7802.02,
+ "text": "to"
+ },
+ {
+ "id": 16422,
+ "start": 7802.02,
+ "end": 7802.24,
+ "text": "take"
+ },
+ {
+ "id": 16423,
+ "start": 7802.24,
+ "end": 7802.6,
+ "text": "a"
+ },
+ {
+ "id": 16424,
+ "start": 7802.6,
+ "end": 7803.14,
+ "text": "five"
+ },
+ {
+ "id": 16425,
+ "start": 7803.14,
+ "end": 7803.38,
+ "text": "minute"
+ },
+ {
+ "id": 16426,
+ "start": 7803.38,
+ "end": 7803.6,
+ "text": "break"
+ },
+ {
+ "id": 16427,
+ "start": 7803.6,
+ "end": 7803.84,
+ "text": "right"
+ },
+ {
+ "id": 16428,
+ "start": 7803.84,
+ "end": 7804.12,
+ "text": "now,"
+ },
+ {
+ "id": 16429,
+ "start": 7804.12,
+ "end": 7804.82,
+ "text": "we"
+ },
+ {
+ "id": 16430,
+ "start": 7804.82,
+ "end": 7804.96,
+ "text": "have"
+ },
+ {
+ "id": 16431,
+ "start": 7804.96,
+ "end": 7805.14,
+ "text": "now"
+ },
+ {
+ "id": 16432,
+ "start": 7805.14,
+ "end": 7805.32,
+ "text": "been"
+ },
+ {
+ "id": 16433,
+ "start": 7805.32,
+ "end": 7805.56,
+ "text": "going"
+ },
+ {
+ "id": 16434,
+ "start": 7805.56,
+ "end": 7806.04,
+ "text": "a"
+ },
+ {
+ "id": 16435,
+ "start": 7806.04,
+ "end": 7806.22,
+ "text": "good"
+ },
+ {
+ "id": 16436,
+ "start": 7806.22,
+ "end": 7806.38,
+ "text": "two"
+ },
+ {
+ "id": 16437,
+ "start": 7806.38,
+ "end": 7806.74,
+ "text": "hours."
+ },
+ {
+ "id": 16438,
+ "start": 7806.74,
+ "end": 7807.18,
+ "text": "So"
+ },
+ {
+ "id": 16439,
+ "start": 7807.18,
+ "end": 7807.46,
+ "text": "thank"
+ },
+ {
+ "id": 16440,
+ "start": 7807.46,
+ "end": 7807.6,
+ "text": "you"
+ },
+ {
+ "id": 16441,
+ "start": 7807.6,
+ "end": 7808.58,
+ "text": "will"
+ },
+ {
+ "id": 16442,
+ "start": 7808.58,
+ "end": 7808.98,
+ "text": "recess"
+ },
+ {
+ "id": 16443,
+ "start": 7808.98,
+ "end": 7809.14,
+ "text": "for"
+ },
+ {
+ "id": 16444,
+ "start": 7809.14,
+ "end": 7809.38,
+ "text": "five"
+ },
+ {
+ "id": 16445,
+ "start": 7809.38,
+ "end": 7809.7,
+ "text": "minutes"
+ },
+ {
+ "id": 16446,
+ "start": 7809.7,
+ "end": 7810.56,
+ "text": "and"
+ },
+ {
+ "id": 16447,
+ "start": 7810.56,
+ "end": 7937.2,
+ "text": "reconvene."
+ },
+ {
+ "id": 16448,
+ "start": 7937.2,
+ "end": 7938.22,
+ "text": "Of"
+ },
+ {
+ "id": 16449,
+ "start": 7938.22,
+ "end": 7941.84,
+ "text": "course"
+ },
+ {
+ "id": 16450,
+ "start": 7941.84,
+ "end": 7951.26,
+ "text": "we"
+ },
+ {
+ "id": 16451,
+ "start": 7951.26,
+ "end": 7975.54,
+ "text": "for"
+ },
+ {
+ "id": 16452,
+ "start": 7975.54,
+ "end": 7976.52,
+ "text": "in"
+ },
+ {
+ "id": 16453,
+ "start": 7976.52,
+ "end": 7976.62,
+ "text": "the"
+ },
+ {
+ "id": 16454,
+ "start": 7976.62,
+ "end": 7978.76,
+ "text": "back."
+ },
+ {
+ "id": 16455,
+ "start": 7978.76,
+ "end": 7979.1,
+ "text": "Yeah,"
+ },
+ {
+ "id": 16456,
+ "start": 7979.1,
+ "end": 8051.62,
+ "text": "yeah,"
+ },
+ {
+ "id": 16457,
+ "start": 8051.62,
+ "end": 8052.62,
+ "text": "got"
+ },
+ {
+ "id": 16458,
+ "start": 8052.62,
+ "end": 8097.68,
+ "text": "it."
+ },
+ {
+ "id": 16459,
+ "start": 8097.68,
+ "end": 8106.8,
+ "text": "The"
+ },
+ {
+ "id": 16460,
+ "start": 8106.8,
+ "end": 8129.02,
+ "text": "geography"
+ },
+ {
+ "id": 16461,
+ "start": 8129.02,
+ "end": 8136.24,
+ "text": "we"
+ },
+ {
+ "id": 16462,
+ "start": 8136.24,
+ "end": 8156.34,
+ "text": "have"
+ },
+ {
+ "id": 16463,
+ "start": 8156.34,
+ "end": 8224.58,
+ "text": "on."
+ },
+ {
+ "id": 16464,
+ "start": 8224.58,
+ "end": 8228.48,
+ "text": "I"
+ },
+ {
+ "id": 16465,
+ "start": 8228.48,
+ "end": 8229.52,
+ "text": "did"
+ },
+ {
+ "id": 16466,
+ "start": 8229.52,
+ "end": 8264.32,
+ "text": "a"
+ },
+ {
+ "id": 16467,
+ "start": 8264.32,
+ "end": 8322.6,
+ "text": "no."
+ },
+ {
+ "id": 16468,
+ "start": 8322.6,
+ "end": 8323.94,
+ "text": "No."
+ },
+ {
+ "id": 16469,
+ "start": 8323.94,
+ "end": 8337.98,
+ "text": "I"
+ },
+ {
+ "id": 16470,
+ "start": 8337.98,
+ "end": 8339.14,
+ "text": "we"
+ },
+ {
+ "id": 16471,
+ "start": 8339.14,
+ "end": 8395.68,
+ "text": "actually"
+ },
+ {
+ "id": 16472,
+ "start": 8395.68,
+ "end": 8455.24,
+ "text": "letters"
+ },
+ {
+ "id": 16473,
+ "start": 8455.24,
+ "end": 8456.28,
+ "text": "the"
+ },
+ {
+ "id": 16474,
+ "start": 8456.28,
+ "end": 8456.68,
+ "text": "committee"
+ },
+ {
+ "id": 16475,
+ "start": 8456.68,
+ "end": 8457,
+ "text": "will"
+ },
+ {
+ "id": 16476,
+ "start": 8457,
+ "end": 8457.26,
+ "text": "come"
+ },
+ {
+ "id": 16477,
+ "start": 8457.26,
+ "end": 8457.36,
+ "text": "to"
+ },
+ {
+ "id": 16478,
+ "start": 8457.36,
+ "end": 8462.6,
+ "text": "order."
+ },
+ {
+ "id": 16479,
+ "start": 8462.6,
+ "end": 8463.6,
+ "text": "The"
+ },
+ {
+ "id": 16480,
+ "start": 8463.6,
+ "end": 8464.02,
+ "text": "committee"
+ },
+ {
+ "id": 16481,
+ "start": 8464.02,
+ "end": 8464.34,
+ "text": "will"
+ },
+ {
+ "id": 16482,
+ "start": 8464.34,
+ "end": 8464.62,
+ "text": "come"
+ },
+ {
+ "id": 16483,
+ "start": 8464.62,
+ "end": 8464.72,
+ "text": "to"
+ },
+ {
+ "id": 16484,
+ "start": 8464.72,
+ "end": 8468.8,
+ "text": "order."
+ },
+ {
+ "id": 16485,
+ "start": 8468.8,
+ "end": 8469.96,
+ "text": "Okay,"
+ },
+ {
+ "id": 16486,
+ "start": 8469.96,
+ "end": 8470.14,
+ "text": "I"
+ },
+ {
+ "id": 16487,
+ "start": 8470.14,
+ "end": 8470.3,
+ "text": "got"
+ },
+ {
+ "id": 16488,
+ "start": 8470.3,
+ "end": 8470.38,
+ "text": "to"
+ },
+ {
+ "id": 16489,
+ "start": 8470.38,
+ "end": 8470.6,
+ "text": "read"
+ },
+ {
+ "id": 16490,
+ "start": 8470.6,
+ "end": 8470.84,
+ "text": "this"
+ },
+ {
+ "id": 16491,
+ "start": 8470.84,
+ "end": 8485.06,
+ "text": "for"
+ },
+ {
+ "id": 16492,
+ "start": 8485.06,
+ "end": 8486.04,
+ "text": "before."
+ },
+ {
+ "id": 16493,
+ "start": 8486.04,
+ "end": 8486.18,
+ "text": "I"
+ },
+ {
+ "id": 16494,
+ "start": 8486.18,
+ "end": 8486.6,
+ "text": "call"
+ },
+ {
+ "id": 16495,
+ "start": 8486.6,
+ "end": 8486.8,
+ "text": "on"
+ },
+ {
+ "id": 16496,
+ "start": 8486.8,
+ "end": 8487.24,
+ "text": "Senator"
+ },
+ {
+ "id": 16497,
+ "start": 8487.24,
+ "end": 8488.54,
+ "text": "Whitehouse,"
+ },
+ {
+ "id": 16498,
+ "start": 8488.54,
+ "end": 8490.18,
+ "text": "Senator"
+ },
+ {
+ "id": 16499,
+ "start": 8490.18,
+ "end": 8491.2,
+ "text": "Feinstein"
+ },
+ {
+ "id": 16500,
+ "start": 8491.2,
+ "end": 8492.22,
+ "text": "as"
+ },
+ {
+ "id": 16501,
+ "start": 8492.22,
+ "end": 8492.84,
+ "text": "permission"
+ },
+ {
+ "id": 16502,
+ "start": 8492.84,
+ "end": 8493.26,
+ "text": "to"
+ },
+ {
+ "id": 16503,
+ "start": 8493.26,
+ "end": 8493.46,
+ "text": "put"
+ },
+ {
+ "id": 16504,
+ "start": 8493.46,
+ "end": 8493.82,
+ "text": "letters"
+ },
+ {
+ "id": 16505,
+ "start": 8493.82,
+ "end": 8493.98,
+ "text": "and"
+ },
+ {
+ "id": 16506,
+ "start": 8493.98,
+ "end": 8494.52,
+ "text": "statements"
+ },
+ {
+ "id": 16507,
+ "start": 8494.52,
+ "end": 8494.7,
+ "text": "in"
+ },
+ {
+ "id": 16508,
+ "start": 8494.7,
+ "end": 8494.84,
+ "text": "the"
+ },
+ {
+ "id": 16509,
+ "start": 8494.84,
+ "end": 8495.2,
+ "text": "record"
+ },
+ {
+ "id": 16510,
+ "start": 8495.2,
+ "end": 8495.72,
+ "text": "and"
+ },
+ {
+ "id": 16511,
+ "start": 8495.72,
+ "end": 8496.5,
+ "text": "without"
+ },
+ {
+ "id": 16512,
+ "start": 8496.5,
+ "end": 8497.56,
+ "text": "objection,"
+ },
+ {
+ "id": 16513,
+ "start": 8497.56,
+ "end": 8497.92,
+ "text": "they"
+ },
+ {
+ "id": 16514,
+ "start": 8497.92,
+ "end": 8498.16,
+ "text": "will"
+ },
+ {
+ "id": 16515,
+ "start": 8498.16,
+ "end": 8498.4,
+ "text": "be"
+ },
+ {
+ "id": 16516,
+ "start": 8498.4,
+ "end": 8498.94,
+ "text": "put"
+ },
+ {
+ "id": 16517,
+ "start": 8498.94,
+ "end": 8499.24,
+ "text": "in"
+ },
+ {
+ "id": 16518,
+ "start": 8499.24,
+ "end": 8499.5,
+ "text": "from"
+ },
+ {
+ "id": 16519,
+ "start": 8499.5,
+ "end": 8499.6,
+ "text": "the"
+ },
+ {
+ "id": 16520,
+ "start": 8499.6,
+ "end": 8500.46,
+ "text": "ACLU."
+ },
+ {
+ "id": 16521,
+ "start": 8500.46,
+ "end": 8501.46,
+ "text": "The"
+ },
+ {
+ "id": 16522,
+ "start": 8501.46,
+ "end": 8502.44,
+ "text": "Electronic"
+ },
+ {
+ "id": 16523,
+ "start": 8502.44,
+ "end": 8503,
+ "text": "Privacy"
+ },
+ {
+ "id": 16524,
+ "start": 8503,
+ "end": 8503.72,
+ "text": "Information"
+ },
+ {
+ "id": 16525,
+ "start": 8503.72,
+ "end": 8504.12,
+ "text": "Center."
+ },
+ {
+ "id": 16526,
+ "start": 8504.12,
+ "end": 8504.84,
+ "text": "The"
+ },
+ {
+ "id": 16527,
+ "start": 8504.84,
+ "end": 8505.7,
+ "text": "Association"
+ },
+ {
+ "id": 16528,
+ "start": 8505.7,
+ "end": 8505.9,
+ "text": "for"
+ },
+ {
+ "id": 16529,
+ "start": 8505.9,
+ "end": 8506.98,
+ "text": "computing"
+ },
+ {
+ "id": 16530,
+ "start": 8506.98,
+ "end": 8508.02,
+ "text": "computing,"
+ },
+ {
+ "id": 16531,
+ "start": 8508.02,
+ "end": 8508.82,
+ "text": "machinery,"
+ },
+ {
+ "id": 16532,
+ "start": 8508.82,
+ "end": 8509.38,
+ "text": "public"
+ },
+ {
+ "id": 16533,
+ "start": 8509.38,
+ "end": 8509.82,
+ "text": "policy."
+ },
+ {
+ "id": 16534,
+ "start": 8509.82,
+ "end": 8510.32,
+ "text": "Console"
+ },
+ {
+ "id": 16535,
+ "start": 8510.32,
+ "end": 8511.1,
+ "text": "and"
+ },
+ {
+ "id": 16536,
+ "start": 8511.1,
+ "end": 8511.52,
+ "text": "public"
+ },
+ {
+ "id": 16537,
+ "start": 8511.52,
+ "end": 8512,
+ "text": "village,"
+ },
+ {
+ "id": 16538,
+ "start": 8512,
+ "end": 8512.86,
+ "text": "Senator"
+ },
+ {
+ "id": 16539,
+ "start": 8512.86,
+ "end": 8513.44,
+ "text": "Whitehouse."
+ },
+ {
+ "id": 16540,
+ "start": 8513.44,
+ "end": 8514.4,
+ "text": "Thank"
+ },
+ {
+ "id": 16541,
+ "start": 8514.4,
+ "end": 8514.52,
+ "text": "you,"
+ },
+ {
+ "id": 16542,
+ "start": 8514.52,
+ "end": 8520.13,
+ "text": "chairman."
+ },
+ {
+ "id": 16543,
+ "start": 8520.13,
+ "end": 8521.09,
+ "text": "Thank"
+ },
+ {
+ "id": 16544,
+ "start": 8521.09,
+ "end": 8521.25,
+ "text": "you,"
+ },
+ {
+ "id": 16545,
+ "start": 8521.25,
+ "end": 8522.13,
+ "text": "Mr"
+ },
+ {
+ "id": 16546,
+ "start": 8522.13,
+ "end": 8522.41,
+ "text": "Chairman."
+ },
+ {
+ "id": 16547,
+ "start": 8522.41,
+ "end": 8522.57,
+ "text": "I"
+ },
+ {
+ "id": 16548,
+ "start": 8522.57,
+ "end": 8522.79,
+ "text": "want"
+ },
+ {
+ "id": 16549,
+ "start": 8522.79,
+ "end": 8522.89,
+ "text": "to"
+ },
+ {
+ "id": 16550,
+ "start": 8522.89,
+ "end": 8523.27,
+ "text": "correct"
+ },
+ {
+ "id": 16551,
+ "start": 8523.27,
+ "end": 8523.75,
+ "text": "one"
+ },
+ {
+ "id": 16552,
+ "start": 8523.75,
+ "end": 8524.35,
+ "text": "thing"
+ },
+ {
+ "id": 16553,
+ "start": 8524.35,
+ "end": 8524.51,
+ "text": "that"
+ },
+ {
+ "id": 16554,
+ "start": 8524.51,
+ "end": 8524.57,
+ "text": "I"
+ },
+ {
+ "id": 16555,
+ "start": 8524.57,
+ "end": 8524.87,
+ "text": "said"
+ },
+ {
+ "id": 16556,
+ "start": 8524.87,
+ "end": 8525.29,
+ "text": "earlier"
+ },
+ {
+ "id": 16557,
+ "start": 8525.29,
+ "end": 8525.61,
+ "text": "in"
+ },
+ {
+ "id": 16558,
+ "start": 8525.61,
+ "end": 8526.09,
+ "text": "response"
+ },
+ {
+ "id": 16559,
+ "start": 8526.09,
+ "end": 8526.25,
+ "text": "to"
+ },
+ {
+ "id": 16560,
+ "start": 8526.25,
+ "end": 8526.49,
+ "text": "a"
+ },
+ {
+ "id": 16561,
+ "start": 8526.49,
+ "end": 8527.23,
+ "text": "question"
+ },
+ {
+ "id": 16562,
+ "start": 8527.23,
+ "end": 8527.43,
+ "text": "from"
+ },
+ {
+ "id": 16563,
+ "start": 8527.43,
+ "end": 8527.83,
+ "text": "Senator,"
+ },
+ {
+ "id": 16564,
+ "start": 8527.83,
+ "end": 8529,
+ "text": "the"
+ },
+ {
+ "id": 16565,
+ "start": 8529,
+ "end": 8529.76,
+ "text": "he"
+ },
+ {
+ "id": 16566,
+ "start": 8529.76,
+ "end": 8529.98,
+ "text": "had"
+ },
+ {
+ "id": 16567,
+ "start": 8529.98,
+ "end": 8530.3,
+ "text": "asked"
+ },
+ {
+ "id": 16568,
+ "start": 8530.3,
+ "end": 8531.26,
+ "text": "if"
+ },
+ {
+ "id": 16569,
+ "start": 8531.26,
+ "end": 8532.44,
+ "text": "why"
+ },
+ {
+ "id": 16570,
+ "start": 8532.44,
+ "end": 8532.56,
+ "text": "we"
+ },
+ {
+ "id": 16571,
+ "start": 8532.56,
+ "end": 8532.9,
+ "text": "didn't"
+ },
+ {
+ "id": 16572,
+ "start": 8532.9,
+ "end": 8533.88,
+ "text": "ban"
+ },
+ {
+ "id": 16573,
+ "start": 8533.88,
+ "end": 8534.26,
+ "text": "Cambridge"
+ },
+ {
+ "id": 16574,
+ "start": 8534.26,
+ "end": 8534.68,
+ "text": "Analytica"
+ },
+ {
+ "id": 16575,
+ "start": 8534.68,
+ "end": 8534.86,
+ "text": "at"
+ },
+ {
+ "id": 16576,
+ "start": 8534.86,
+ "end": 8534.98,
+ "text": "the"
+ },
+ {
+ "id": 16577,
+ "start": 8534.98,
+ "end": 8535.26,
+ "text": "time"
+ },
+ {
+ "id": 16578,
+ "start": 8535.26,
+ "end": 8535.4,
+ "text": "when"
+ },
+ {
+ "id": 16579,
+ "start": 8535.4,
+ "end": 8535.52,
+ "text": "we"
+ },
+ {
+ "id": 16580,
+ "start": 8535.52,
+ "end": 8535.76,
+ "text": "learned"
+ },
+ {
+ "id": 16581,
+ "start": 8535.76,
+ "end": 8535.94,
+ "text": "about"
+ },
+ {
+ "id": 16582,
+ "start": 8535.94,
+ "end": 8536.08,
+ "text": "them"
+ },
+ {
+ "id": 16583,
+ "start": 8536.08,
+ "end": 8536.18,
+ "text": "in"
+ },
+ {
+ "id": 16584,
+ "start": 8536.18,
+ "end": 8536.4,
+ "text": "20"
+ },
+ {
+ "id": 16585,
+ "start": 8536.4,
+ "end": 8536.92,
+ "text": "15"
+ },
+ {
+ "id": 16586,
+ "start": 8536.92,
+ "end": 8537.44,
+ "text": "and"
+ },
+ {
+ "id": 16587,
+ "start": 8537.44,
+ "end": 8537.62,
+ "text": "I"
+ },
+ {
+ "id": 16588,
+ "start": 8537.62,
+ "end": 8538.12,
+ "text": "answered"
+ },
+ {
+ "id": 16589,
+ "start": 8538.12,
+ "end": 8538.48,
+ "text": "that"
+ },
+ {
+ "id": 16590,
+ "start": 8538.48,
+ "end": 8540.36,
+ "text": "what"
+ },
+ {
+ "id": 16591,
+ "start": 8540.36,
+ "end": 8540.5,
+ "text": "my"
+ },
+ {
+ "id": 16592,
+ "start": 8540.5,
+ "end": 8540.96,
+ "text": "understanding"
+ },
+ {
+ "id": 16593,
+ "start": 8540.96,
+ "end": 8541.14,
+ "text": "was"
+ },
+ {
+ "id": 16594,
+ "start": 8541.14,
+ "end": 8541.3,
+ "text": "was"
+ },
+ {
+ "id": 16595,
+ "start": 8541.3,
+ "end": 8541.42,
+ "text": "that"
+ },
+ {
+ "id": 16596,
+ "start": 8541.42,
+ "end": 8541.54,
+ "text": "they"
+ },
+ {
+ "id": 16597,
+ "start": 8541.54,
+ "end": 8541.68,
+ "text": "were"
+ },
+ {
+ "id": 16598,
+ "start": 8541.68,
+ "end": 8541.86,
+ "text": "not"
+ },
+ {
+ "id": 16599,
+ "start": 8541.86,
+ "end": 8541.96,
+ "text": "on"
+ },
+ {
+ "id": 16600,
+ "start": 8541.96,
+ "end": 8542.08,
+ "text": "the"
+ },
+ {
+ "id": 16601,
+ "start": 8542.08,
+ "end": 8542.56,
+ "text": "platform"
+ },
+ {
+ "id": 16602,
+ "start": 8542.56,
+ "end": 8542.78,
+ "text": "were"
+ },
+ {
+ "id": 16603,
+ "start": 8542.78,
+ "end": 8543,
+ "text": "not"
+ },
+ {
+ "id": 16604,
+ "start": 8543,
+ "end": 8543.24,
+ "text": "an"
+ },
+ {
+ "id": 16605,
+ "start": 8543.24,
+ "end": 8543.48,
+ "text": "app"
+ },
+ {
+ "id": 16606,
+ "start": 8543.48,
+ "end": 8544,
+ "text": "developer"
+ },
+ {
+ "id": 16607,
+ "start": 8544,
+ "end": 8544.24,
+ "text": "or"
+ },
+ {
+ "id": 16608,
+ "start": 8544.24,
+ "end": 8545.86,
+ "text": "advertiser."
+ },
+ {
+ "id": 16609,
+ "start": 8545.86,
+ "end": 8546.98,
+ "text": "When"
+ },
+ {
+ "id": 16610,
+ "start": 8546.98,
+ "end": 8547.04,
+ "text": "I"
+ },
+ {
+ "id": 16611,
+ "start": 8547.04,
+ "end": 8547.22,
+ "text": "went"
+ },
+ {
+ "id": 16612,
+ "start": 8547.22,
+ "end": 8547.42,
+ "text": "back"
+ },
+ {
+ "id": 16613,
+ "start": 8547.42,
+ "end": 8547.76,
+ "text": "and"
+ },
+ {
+ "id": 16614,
+ "start": 8547.76,
+ "end": 8547.9,
+ "text": "met"
+ },
+ {
+ "id": 16615,
+ "start": 8547.9,
+ "end": 8548.02,
+ "text": "with"
+ },
+ {
+ "id": 16616,
+ "start": 8548.02,
+ "end": 8548.12,
+ "text": "my"
+ },
+ {
+ "id": 16617,
+ "start": 8548.12,
+ "end": 8548.3,
+ "text": "team"
+ },
+ {
+ "id": 16618,
+ "start": 8548.3,
+ "end": 8548.78,
+ "text": "afterwards"
+ },
+ {
+ "id": 16619,
+ "start": 8548.78,
+ "end": 8549.02,
+ "text": "they"
+ },
+ {
+ "id": 16620,
+ "start": 8549.02,
+ "end": 8549.98,
+ "text": "let"
+ },
+ {
+ "id": 16621,
+ "start": 8549.98,
+ "end": 8550.08,
+ "text": "me"
+ },
+ {
+ "id": 16622,
+ "start": 8550.08,
+ "end": 8550.22,
+ "text": "know"
+ },
+ {
+ "id": 16623,
+ "start": 8550.22,
+ "end": 8550.54,
+ "text": "that"
+ },
+ {
+ "id": 16624,
+ "start": 8550.54,
+ "end": 8551.1,
+ "text": "Cambridge"
+ },
+ {
+ "id": 16625,
+ "start": 8551.1,
+ "end": 8551.44,
+ "text": "Analytica"
+ },
+ {
+ "id": 16626,
+ "start": 8551.44,
+ "end": 8551.82,
+ "text": "actually"
+ },
+ {
+ "id": 16627,
+ "start": 8551.82,
+ "end": 8552.06,
+ "text": "did"
+ },
+ {
+ "id": 16628,
+ "start": 8552.06,
+ "end": 8552.4,
+ "text": "start"
+ },
+ {
+ "id": 16629,
+ "start": 8552.4,
+ "end": 8552.58,
+ "text": "as"
+ },
+ {
+ "id": 16630,
+ "start": 8552.58,
+ "end": 8552.68,
+ "text": "an"
+ },
+ {
+ "id": 16631,
+ "start": 8552.68,
+ "end": 8553.32,
+ "text": "advertiser"
+ },
+ {
+ "id": 16632,
+ "start": 8553.32,
+ "end": 8553.58,
+ "text": "later"
+ },
+ {
+ "id": 16633,
+ "start": 8553.58,
+ "end": 8553.72,
+ "text": "in"
+ },
+ {
+ "id": 16634,
+ "start": 8553.72,
+ "end": 8554.08,
+ "text": "20"
+ },
+ {
+ "id": 16635,
+ "start": 8554.08,
+ "end": 8556.13,
+ "text": "15"
+ },
+ {
+ "id": 16636,
+ "start": 8556.13,
+ "end": 8556.21,
+ "text": "we"
+ },
+ {
+ "id": 16637,
+ "start": 8556.21,
+ "end": 8556.63,
+ "text": "could"
+ },
+ {
+ "id": 16638,
+ "start": 8556.63,
+ "end": 8556.81,
+ "text": "have"
+ },
+ {
+ "id": 16639,
+ "start": 8556.81,
+ "end": 8557.07,
+ "text": "in"
+ },
+ {
+ "id": 16640,
+ "start": 8557.07,
+ "end": 8557.39,
+ "text": "theory"
+ },
+ {
+ "id": 16641,
+ "start": 8557.39,
+ "end": 8557.65,
+ "text": "banned"
+ },
+ {
+ "id": 16642,
+ "start": 8557.65,
+ "end": 8557.81,
+ "text": "them."
+ },
+ {
+ "id": 16643,
+ "start": 8557.81,
+ "end": 8558.03,
+ "text": "Then"
+ },
+ {
+ "id": 16644,
+ "start": 8558.03,
+ "end": 8558.57,
+ "text": "we"
+ },
+ {
+ "id": 16645,
+ "start": 8558.57,
+ "end": 8558.71,
+ "text": "made"
+ },
+ {
+ "id": 16646,
+ "start": 8558.71,
+ "end": 8558.77,
+ "text": "a"
+ },
+ {
+ "id": 16647,
+ "start": 8558.77,
+ "end": 8559.11,
+ "text": "mistake"
+ },
+ {
+ "id": 16648,
+ "start": 8559.11,
+ "end": 8559.27,
+ "text": "by"
+ },
+ {
+ "id": 16649,
+ "start": 8559.27,
+ "end": 8559.45,
+ "text": "not"
+ },
+ {
+ "id": 16650,
+ "start": 8559.45,
+ "end": 8559.69,
+ "text": "doing"
+ },
+ {
+ "id": 16651,
+ "start": 8559.69,
+ "end": 8559.99,
+ "text": "so."
+ },
+ {
+ "id": 16652,
+ "start": 8559.99,
+ "end": 8560.35,
+ "text": "But"
+ },
+ {
+ "id": 16653,
+ "start": 8560.35,
+ "end": 8560.45,
+ "text": "I"
+ },
+ {
+ "id": 16654,
+ "start": 8560.45,
+ "end": 8560.61,
+ "text": "just"
+ },
+ {
+ "id": 16655,
+ "start": 8560.61,
+ "end": 8560.81,
+ "text": "wanted"
+ },
+ {
+ "id": 16656,
+ "start": 8560.81,
+ "end": 8560.89,
+ "text": "to"
+ },
+ {
+ "id": 16657,
+ "start": 8560.89,
+ "end": 8561.03,
+ "text": "make"
+ },
+ {
+ "id": 16658,
+ "start": 8561.03,
+ "end": 8561.21,
+ "text": "sure"
+ },
+ {
+ "id": 16659,
+ "start": 8561.21,
+ "end": 8561.39,
+ "text": "that"
+ },
+ {
+ "id": 16660,
+ "start": 8561.39,
+ "end": 8561.55,
+ "text": "I"
+ },
+ {
+ "id": 16661,
+ "start": 8561.55,
+ "end": 8562.01,
+ "text": "updated"
+ },
+ {
+ "id": 16662,
+ "start": 8562.01,
+ "end": 8562.23,
+ "text": "that"
+ },
+ {
+ "id": 16663,
+ "start": 8562.23,
+ "end": 8562.69,
+ "text": "because"
+ },
+ {
+ "id": 16664,
+ "start": 8562.69,
+ "end": 8563.39,
+ "text": "I"
+ },
+ {
+ "id": 16665,
+ "start": 8563.39,
+ "end": 8563.83,
+ "text": "misspoke"
+ },
+ {
+ "id": 16666,
+ "start": 8563.83,
+ "end": 8564.17,
+ "text": "or"
+ },
+ {
+ "id": 16667,
+ "start": 8564.17,
+ "end": 8564.29,
+ "text": "got"
+ },
+ {
+ "id": 16668,
+ "start": 8564.29,
+ "end": 8564.45,
+ "text": "that"
+ },
+ {
+ "id": 16669,
+ "start": 8564.45,
+ "end": 8564.65,
+ "text": "wrong"
+ },
+ {
+ "id": 16670,
+ "start": 8564.65,
+ "end": 8567.1,
+ "text": "earlier"
+ },
+ {
+ "id": 16671,
+ "start": 8567.1,
+ "end": 8568.06,
+ "text": "White"
+ },
+ {
+ "id": 16672,
+ "start": 8568.06,
+ "end": 8568.36,
+ "text": "House,"
+ },
+ {
+ "id": 16673,
+ "start": 8568.36,
+ "end": 8568.84,
+ "text": "thank"
+ },
+ {
+ "id": 16674,
+ "start": 8568.84,
+ "end": 8568.96,
+ "text": "you"
+ },
+ {
+ "id": 16675,
+ "start": 8568.96,
+ "end": 8569.32,
+ "text": "chairman,"
+ },
+ {
+ "id": 16676,
+ "start": 8569.32,
+ "end": 8570.12,
+ "text": "welcome"
+ },
+ {
+ "id": 16677,
+ "start": 8570.12,
+ "end": 8570.32,
+ "text": "back."
+ },
+ {
+ "id": 16678,
+ "start": 8570.32,
+ "end": 8571.5,
+ "text": "Mr"
+ },
+ {
+ "id": 16679,
+ "start": 8571.5,
+ "end": 8572.02,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 16680,
+ "start": 8572.02,
+ "end": 8572.86,
+ "text": "on"
+ },
+ {
+ "id": 16681,
+ "start": 8572.86,
+ "end": 8572.98,
+ "text": "the"
+ },
+ {
+ "id": 16682,
+ "start": 8572.98,
+ "end": 8573.4,
+ "text": "subject"
+ },
+ {
+ "id": 16683,
+ "start": 8573.4,
+ "end": 8573.6,
+ "text": "of"
+ },
+ {
+ "id": 16684,
+ "start": 8573.6,
+ "end": 8574.78,
+ "text": "bands."
+ },
+ {
+ "id": 16685,
+ "start": 8574.78,
+ "end": 8574.94,
+ "text": "I"
+ },
+ {
+ "id": 16686,
+ "start": 8574.94,
+ "end": 8575.1,
+ "text": "just"
+ },
+ {
+ "id": 16687,
+ "start": 8575.1,
+ "end": 8575.38,
+ "text": "wanted"
+ },
+ {
+ "id": 16688,
+ "start": 8575.38,
+ "end": 8575.46,
+ "text": "to"
+ },
+ {
+ "id": 16689,
+ "start": 8575.46,
+ "end": 8576,
+ "text": "explore"
+ },
+ {
+ "id": 16690,
+ "start": 8576,
+ "end": 8576.08,
+ "text": "a"
+ },
+ {
+ "id": 16691,
+ "start": 8576.08,
+ "end": 8576.32,
+ "text": "little"
+ },
+ {
+ "id": 16692,
+ "start": 8576.32,
+ "end": 8576.46,
+ "text": "bit."
+ },
+ {
+ "id": 16693,
+ "start": 8576.46,
+ "end": 8576.74,
+ "text": "What"
+ },
+ {
+ "id": 16694,
+ "start": 8576.74,
+ "end": 8577,
+ "text": "these"
+ },
+ {
+ "id": 16695,
+ "start": 8577,
+ "end": 8577.74,
+ "text": "bands"
+ },
+ {
+ "id": 16696,
+ "start": 8577.74,
+ "end": 8579.12,
+ "text": "mean."
+ },
+ {
+ "id": 16697,
+ "start": 8579.12,
+ "end": 8580.18,
+ "text": "Obviously"
+ },
+ {
+ "id": 16698,
+ "start": 8580.18,
+ "end": 8580.8,
+ "text": "Facebook"
+ },
+ {
+ "id": 16699,
+ "start": 8580.8,
+ "end": 8581.02,
+ "text": "has"
+ },
+ {
+ "id": 16700,
+ "start": 8581.02,
+ "end": 8581.24,
+ "text": "been"
+ },
+ {
+ "id": 16701,
+ "start": 8581.24,
+ "end": 8581.5,
+ "text": "done"
+ },
+ {
+ "id": 16702,
+ "start": 8581.5,
+ "end": 8582.14,
+ "text": "considerable"
+ },
+ {
+ "id": 16703,
+ "start": 8582.14,
+ "end": 8583.06,
+ "text": "reputational"
+ },
+ {
+ "id": 16704,
+ "start": 8583.06,
+ "end": 8583.52,
+ "text": "damage"
+ },
+ {
+ "id": 16705,
+ "start": 8583.52,
+ "end": 8583.76,
+ "text": "by"
+ },
+ {
+ "id": 16706,
+ "start": 8583.76,
+ "end": 8583.9,
+ "text": "its"
+ },
+ {
+ "id": 16707,
+ "start": 8583.9,
+ "end": 8584.7,
+ "text": "association"
+ },
+ {
+ "id": 16708,
+ "start": 8584.7,
+ "end": 8584.9,
+ "text": "with"
+ },
+ {
+ "id": 16709,
+ "start": 8584.9,
+ "end": 8586,
+ "text": "Alexander"
+ },
+ {
+ "id": 16710,
+ "start": 8586,
+ "end": 8586.7,
+ "text": "Cogan"
+ },
+ {
+ "id": 16711,
+ "start": 8586.7,
+ "end": 8587.02,
+ "text": "and"
+ },
+ {
+ "id": 16712,
+ "start": 8587.02,
+ "end": 8587.36,
+ "text": "with"
+ },
+ {
+ "id": 16713,
+ "start": 8587.36,
+ "end": 8587.8,
+ "text": "Cambridge"
+ },
+ {
+ "id": 16714,
+ "start": 8587.8,
+ "end": 8588.42,
+ "text": "Analytica."
+ },
+ {
+ "id": 16715,
+ "start": 8588.42,
+ "end": 8588.62,
+ "text": "Which"
+ },
+ {
+ "id": 16716,
+ "start": 8588.62,
+ "end": 8588.78,
+ "text": "is"
+ },
+ {
+ "id": 16717,
+ "start": 8588.78,
+ "end": 8589.88,
+ "text": "one"
+ },
+ {
+ "id": 16718,
+ "start": 8589.88,
+ "end": 8589.96,
+ "text": "of"
+ },
+ {
+ "id": 16719,
+ "start": 8589.96,
+ "end": 8590.06,
+ "text": "the"
+ },
+ {
+ "id": 16720,
+ "start": 8590.06,
+ "end": 8590.36,
+ "text": "reasons"
+ },
+ {
+ "id": 16721,
+ "start": 8590.36,
+ "end": 8590.58,
+ "text": "you're"
+ },
+ {
+ "id": 16722,
+ "start": 8590.58,
+ "end": 8590.78,
+ "text": "having"
+ },
+ {
+ "id": 16723,
+ "start": 8590.78,
+ "end": 8590.96,
+ "text": "this"
+ },
+ {
+ "id": 16724,
+ "start": 8590.96,
+ "end": 8591.56,
+ "text": "enjoyable"
+ },
+ {
+ "id": 16725,
+ "start": 8591.56,
+ "end": 8592.3,
+ "text": "afternoon"
+ },
+ {
+ "id": 16726,
+ "start": 8592.3,
+ "end": 8592.46,
+ "text": "with"
+ },
+ {
+ "id": 16727,
+ "start": 8592.46,
+ "end": 8594.52,
+ "text": "us."
+ },
+ {
+ "id": 16728,
+ "start": 8594.52,
+ "end": 8595.56,
+ "text": "Your"
+ },
+ {
+ "id": 16729,
+ "start": 8595.56,
+ "end": 8596.12,
+ "text": "testimony"
+ },
+ {
+ "id": 16730,
+ "start": 8596.12,
+ "end": 8596.48,
+ "text": "says"
+ },
+ {
+ "id": 16731,
+ "start": 8596.48,
+ "end": 8596.72,
+ "text": "that"
+ },
+ {
+ "id": 16732,
+ "start": 8596.72,
+ "end": 8597.4,
+ "text": "Alexander"
+ },
+ {
+ "id": 16733,
+ "start": 8597.4,
+ "end": 8598.34,
+ "text": "Cogan"
+ },
+ {
+ "id": 16734,
+ "start": 8598.34,
+ "end": 8599.24,
+ "text": "app"
+ },
+ {
+ "id": 16735,
+ "start": 8599.24,
+ "end": 8600.26,
+ "text": "has"
+ },
+ {
+ "id": 16736,
+ "start": 8600.26,
+ "end": 8600.48,
+ "text": "been"
+ },
+ {
+ "id": 16737,
+ "start": 8600.48,
+ "end": 8600.88,
+ "text": "banned."
+ },
+ {
+ "id": 16738,
+ "start": 8600.88,
+ "end": 8601.12,
+ "text": "Has"
+ },
+ {
+ "id": 16739,
+ "start": 8601.12,
+ "end": 8601.32,
+ "text": "he"
+ },
+ {
+ "id": 16740,
+ "start": 8601.32,
+ "end": 8601.72,
+ "text": "also"
+ },
+ {
+ "id": 16741,
+ "start": 8601.72,
+ "end": 8601.92,
+ "text": "been"
+ },
+ {
+ "id": 16742,
+ "start": 8601.92,
+ "end": 8602.58,
+ "text": "banned?"
+ },
+ {
+ "id": 16743,
+ "start": 8602.58,
+ "end": 8603.62,
+ "text": "Yes,"
+ },
+ {
+ "id": 16744,
+ "start": 8603.62,
+ "end": 8603.82,
+ "text": "my"
+ },
+ {
+ "id": 16745,
+ "start": 8603.82,
+ "end": 8604.22,
+ "text": "understanding"
+ },
+ {
+ "id": 16746,
+ "start": 8604.22,
+ "end": 8604.34,
+ "text": "is"
+ },
+ {
+ "id": 16747,
+ "start": 8604.34,
+ "end": 8604.44,
+ "text": "he"
+ },
+ {
+ "id": 16748,
+ "start": 8604.44,
+ "end": 8605.28,
+ "text": "has."
+ },
+ {
+ "id": 16749,
+ "start": 8605.28,
+ "end": 8606.06,
+ "text": "So"
+ },
+ {
+ "id": 16750,
+ "start": 8606.06,
+ "end": 8606.24,
+ "text": "if"
+ },
+ {
+ "id": 16751,
+ "start": 8606.24,
+ "end": 8606.4,
+ "text": "he"
+ },
+ {
+ "id": 16752,
+ "start": 8606.4,
+ "end": 8606.7,
+ "text": "were"
+ },
+ {
+ "id": 16753,
+ "start": 8606.7,
+ "end": 8607.28,
+ "text": "to"
+ },
+ {
+ "id": 16754,
+ "start": 8607.28,
+ "end": 8608.28,
+ "text": "open"
+ },
+ {
+ "id": 16755,
+ "start": 8608.28,
+ "end": 8608.4,
+ "text": "up"
+ },
+ {
+ "id": 16756,
+ "start": 8608.4,
+ "end": 8609.06,
+ "text": "another"
+ },
+ {
+ "id": 16757,
+ "start": 8609.06,
+ "end": 8609.44,
+ "text": "account"
+ },
+ {
+ "id": 16758,
+ "start": 8609.44,
+ "end": 8610.06,
+ "text": "under"
+ },
+ {
+ "id": 16759,
+ "start": 8610.06,
+ "end": 8610.46,
+ "text": "a"
+ },
+ {
+ "id": 16760,
+ "start": 8610.46,
+ "end": 8610.9,
+ "text": "name"
+ },
+ {
+ "id": 16761,
+ "start": 8610.9,
+ "end": 8611.18,
+ "text": "and"
+ },
+ {
+ "id": 16762,
+ "start": 8611.18,
+ "end": 8611.32,
+ "text": "you"
+ },
+ {
+ "id": 16763,
+ "start": 8611.32,
+ "end": 8611.46,
+ "text": "were"
+ },
+ {
+ "id": 16764,
+ "start": 8611.46,
+ "end": 8611.64,
+ "text": "able"
+ },
+ {
+ "id": 16765,
+ "start": 8611.64,
+ "end": 8611.74,
+ "text": "to"
+ },
+ {
+ "id": 16766,
+ "start": 8611.74,
+ "end": 8611.94,
+ "text": "find"
+ },
+ {
+ "id": 16767,
+ "start": 8611.94,
+ "end": 8612.04,
+ "text": "it"
+ },
+ {
+ "id": 16768,
+ "start": 8612.04,
+ "end": 8612.24,
+ "text": "out."
+ },
+ {
+ "id": 16769,
+ "start": 8612.24,
+ "end": 8612.5,
+ "text": "That"
+ },
+ {
+ "id": 16770,
+ "start": 8612.5,
+ "end": 8612.7,
+ "text": "would"
+ },
+ {
+ "id": 16771,
+ "start": 8612.7,
+ "end": 8613.2,
+ "text": "be"
+ },
+ {
+ "id": 16772,
+ "start": 8613.2,
+ "end": 8614.26,
+ "text": "taken."
+ },
+ {
+ "id": 16773,
+ "start": 8614.26,
+ "end": 8614.4,
+ "text": "That"
+ },
+ {
+ "id": 16774,
+ "start": 8614.4,
+ "end": 8614.56,
+ "text": "would"
+ },
+ {
+ "id": 16775,
+ "start": 8614.56,
+ "end": 8614.64,
+ "text": "be"
+ },
+ {
+ "id": 16776,
+ "start": 8614.64,
+ "end": 8614.88,
+ "text": "closed"
+ },
+ {
+ "id": 16777,
+ "start": 8614.88,
+ "end": 8615.66,
+ "text": "down"
+ },
+ {
+ "id": 16778,
+ "start": 8615.66,
+ "end": 8616.58,
+ "text": "Senator."
+ },
+ {
+ "id": 16779,
+ "start": 8616.58,
+ "end": 8616.64,
+ "text": "I"
+ },
+ {
+ "id": 16780,
+ "start": 8616.64,
+ "end": 8616.92,
+ "text": "believe"
+ },
+ {
+ "id": 16781,
+ "start": 8616.92,
+ "end": 8617.06,
+ "text": "we"
+ },
+ {
+ "id": 16782,
+ "start": 8617.06,
+ "end": 8617.46,
+ "text": "are"
+ },
+ {
+ "id": 16783,
+ "start": 8617.46,
+ "end": 8617.96,
+ "text": "preventing"
+ },
+ {
+ "id": 16784,
+ "start": 8617.96,
+ "end": 8618.16,
+ "text": "him"
+ },
+ {
+ "id": 16785,
+ "start": 8618.16,
+ "end": 8618.42,
+ "text": "from"
+ },
+ {
+ "id": 16786,
+ "start": 8618.42,
+ "end": 8618.84,
+ "text": "building."
+ },
+ {
+ "id": 16787,
+ "start": 8618.84,
+ "end": 8619.1,
+ "text": "Any"
+ },
+ {
+ "id": 16788,
+ "start": 8619.1,
+ "end": 8619.32,
+ "text": "more"
+ },
+ {
+ "id": 16789,
+ "start": 8619.32,
+ "end": 8620.66,
+ "text": "apps"
+ },
+ {
+ "id": 16790,
+ "start": 8620.66,
+ "end": 8621.56,
+ "text": "does"
+ },
+ {
+ "id": 16791,
+ "start": 8621.56,
+ "end": 8621.64,
+ "text": "he"
+ },
+ {
+ "id": 16792,
+ "start": 8621.64,
+ "end": 8621.78,
+ "text": "have"
+ },
+ {
+ "id": 16793,
+ "start": 8621.78,
+ "end": 8621.82,
+ "text": "a"
+ },
+ {
+ "id": 16794,
+ "start": 8621.82,
+ "end": 8622.18,
+ "text": "Facebook"
+ },
+ {
+ "id": 16795,
+ "start": 8622.18,
+ "end": 8622.5,
+ "text": "account."
+ },
+ {
+ "id": 16796,
+ "start": 8622.5,
+ "end": 8623.26,
+ "text": "Still,"
+ },
+ {
+ "id": 16797,
+ "start": 8623.26,
+ "end": 8624.26,
+ "text": "Senator,"
+ },
+ {
+ "id": 16798,
+ "start": 8624.26,
+ "end": 8624.36,
+ "text": "I"
+ },
+ {
+ "id": 16799,
+ "start": 8624.36,
+ "end": 8624.68,
+ "text": "believe"
+ },
+ {
+ "id": 16800,
+ "start": 8624.68,
+ "end": 8624.82,
+ "text": "the"
+ },
+ {
+ "id": 16801,
+ "start": 8624.82,
+ "end": 8625.06,
+ "text": "answer"
+ },
+ {
+ "id": 16802,
+ "start": 8625.06,
+ "end": 8625.16,
+ "text": "to"
+ },
+ {
+ "id": 16803,
+ "start": 8625.16,
+ "end": 8625.32,
+ "text": "that"
+ },
+ {
+ "id": 16804,
+ "start": 8625.32,
+ "end": 8625.48,
+ "text": "is"
+ },
+ {
+ "id": 16805,
+ "start": 8625.48,
+ "end": 8625.84,
+ "text": "no."
+ },
+ {
+ "id": 16806,
+ "start": 8625.84,
+ "end": 8626.64,
+ "text": "But"
+ },
+ {
+ "id": 16807,
+ "start": 8626.64,
+ "end": 8626.78,
+ "text": "I"
+ },
+ {
+ "id": 16808,
+ "start": 8626.78,
+ "end": 8626.96,
+ "text": "can"
+ },
+ {
+ "id": 16809,
+ "start": 8626.96,
+ "end": 8627.2,
+ "text": "follow"
+ },
+ {
+ "id": 16810,
+ "start": 8627.2,
+ "end": 8627.28,
+ "text": "up"
+ },
+ {
+ "id": 16811,
+ "start": 8627.28,
+ "end": 8627.42,
+ "text": "with"
+ },
+ {
+ "id": 16812,
+ "start": 8627.42,
+ "end": 8627.52,
+ "text": "you"
+ },
+ {
+ "id": 16813,
+ "start": 8627.52,
+ "end": 8627.96,
+ "text": "afterwards."
+ },
+ {
+ "id": 16814,
+ "start": 8627.96,
+ "end": 8628.5,
+ "text": "Okay,"
+ },
+ {
+ "id": 16815,
+ "start": 8628.5,
+ "end": 8629.54,
+ "text": "and"
+ },
+ {
+ "id": 16816,
+ "start": 8629.54,
+ "end": 8629.72,
+ "text": "with"
+ },
+ {
+ "id": 16817,
+ "start": 8629.72,
+ "end": 8630.1,
+ "text": "respect"
+ },
+ {
+ "id": 16818,
+ "start": 8630.1,
+ "end": 8630.3,
+ "text": "to"
+ },
+ {
+ "id": 16819,
+ "start": 8630.3,
+ "end": 8630.74,
+ "text": "Cambridge,"
+ },
+ {
+ "id": 16820,
+ "start": 8630.74,
+ "end": 8631.34,
+ "text": "Analytica,"
+ },
+ {
+ "id": 16821,
+ "start": 8631.34,
+ "end": 8631.58,
+ "text": "your"
+ },
+ {
+ "id": 16822,
+ "start": 8631.58,
+ "end": 8632.1,
+ "text": "testimony"
+ },
+ {
+ "id": 16823,
+ "start": 8632.1,
+ "end": 8632.4,
+ "text": "is"
+ },
+ {
+ "id": 16824,
+ "start": 8632.4,
+ "end": 8633.62,
+ "text": "that"
+ },
+ {
+ "id": 16825,
+ "start": 8633.62,
+ "end": 8634.64,
+ "text": "first."
+ },
+ {
+ "id": 16826,
+ "start": 8634.64,
+ "end": 8635.3,
+ "text": "You"
+ },
+ {
+ "id": 16827,
+ "start": 8635.3,
+ "end": 8635.78,
+ "text": "require"
+ },
+ {
+ "id": 16828,
+ "start": 8635.78,
+ "end": 8635.94,
+ "text": "them"
+ },
+ {
+ "id": 16829,
+ "start": 8635.94,
+ "end": 8636.26,
+ "text": "to"
+ },
+ {
+ "id": 16830,
+ "start": 8636.26,
+ "end": 8636.62,
+ "text": "Mally"
+ },
+ {
+ "id": 16831,
+ "start": 8636.62,
+ "end": 8637.26,
+ "text": "certify"
+ },
+ {
+ "id": 16832,
+ "start": 8637.26,
+ "end": 8637.42,
+ "text": "that"
+ },
+ {
+ "id": 16833,
+ "start": 8637.42,
+ "end": 8637.58,
+ "text": "they"
+ },
+ {
+ "id": 16834,
+ "start": 8637.58,
+ "end": 8637.74,
+ "text": "had"
+ },
+ {
+ "id": 16835,
+ "start": 8637.74,
+ "end": 8638.18,
+ "text": "deleted"
+ },
+ {
+ "id": 16836,
+ "start": 8638.18,
+ "end": 8639.28,
+ "text": "all"
+ },
+ {
+ "id": 16837,
+ "start": 8639.28,
+ "end": 8640.28,
+ "text": "improperly"
+ },
+ {
+ "id": 16838,
+ "start": 8640.28,
+ "end": 8640.76,
+ "text": "acquired"
+ },
+ {
+ "id": 16839,
+ "start": 8640.76,
+ "end": 8641.5,
+ "text": "data."
+ },
+ {
+ "id": 16840,
+ "start": 8641.5,
+ "end": 8642.12,
+ "text": "Where"
+ },
+ {
+ "id": 16841,
+ "start": 8642.12,
+ "end": 8642.26,
+ "text": "did"
+ },
+ {
+ "id": 16842,
+ "start": 8642.26,
+ "end": 8642.42,
+ "text": "that"
+ },
+ {
+ "id": 16843,
+ "start": 8642.42,
+ "end": 8643.06,
+ "text": "formal"
+ },
+ {
+ "id": 16844,
+ "start": 8643.06,
+ "end": 8643.88,
+ "text": "certification"
+ },
+ {
+ "id": 16845,
+ "start": 8643.88,
+ "end": 8644.28,
+ "text": "take"
+ },
+ {
+ "id": 16846,
+ "start": 8644.28,
+ "end": 8644.6,
+ "text": "place?"
+ },
+ {
+ "id": 16847,
+ "start": 8644.6,
+ "end": 8644.82,
+ "text": "That"
+ },
+ {
+ "id": 16848,
+ "start": 8644.82,
+ "end": 8645.18,
+ "text": "sounds"
+ },
+ {
+ "id": 16849,
+ "start": 8645.18,
+ "end": 8645.4,
+ "text": "kind"
+ },
+ {
+ "id": 16850,
+ "start": 8645.4,
+ "end": 8645.5,
+ "text": "of"
+ },
+ {
+ "id": 16851,
+ "start": 8645.5,
+ "end": 8645.68,
+ "text": "like"
+ },
+ {
+ "id": 16852,
+ "start": 8645.68,
+ "end": 8646.12,
+ "text": "a"
+ },
+ {
+ "id": 16853,
+ "start": 8646.12,
+ "end": 8647.24,
+ "text": "quasi"
+ },
+ {
+ "id": 16854,
+ "start": 8647.24,
+ "end": 8647.8,
+ "text": "official"
+ },
+ {
+ "id": 16855,
+ "start": 8647.8,
+ "end": 8648.56,
+ "text": "thing"
+ },
+ {
+ "id": 16856,
+ "start": 8648.56,
+ "end": 8648.74,
+ "text": "to"
+ },
+ {
+ "id": 16857,
+ "start": 8648.74,
+ "end": 8649.28,
+ "text": "formally"
+ },
+ {
+ "id": 16858,
+ "start": 8649.28,
+ "end": 8649.98,
+ "text": "certify."
+ },
+ {
+ "id": 16859,
+ "start": 8649.98,
+ "end": 8650.56,
+ "text": "What"
+ },
+ {
+ "id": 16860,
+ "start": 8650.56,
+ "end": 8650.72,
+ "text": "did"
+ },
+ {
+ "id": 16861,
+ "start": 8650.72,
+ "end": 8650.86,
+ "text": "that"
+ },
+ {
+ "id": 16862,
+ "start": 8650.86,
+ "end": 8651.86,
+ "text": "entail?"
+ },
+ {
+ "id": 16863,
+ "start": 8651.86,
+ "end": 8652.72,
+ "text": "Senator?"
+ },
+ {
+ "id": 16864,
+ "start": 8652.72,
+ "end": 8653.18,
+ "text": "First"
+ },
+ {
+ "id": 16865,
+ "start": 8653.18,
+ "end": 8654.2,
+ "text": "they"
+ },
+ {
+ "id": 16866,
+ "start": 8654.2,
+ "end": 8654.76,
+ "text": "sent"
+ },
+ {
+ "id": 16867,
+ "start": 8654.76,
+ "end": 8654.96,
+ "text": "us"
+ },
+ {
+ "id": 16868,
+ "start": 8654.96,
+ "end": 8655.5,
+ "text": "an"
+ },
+ {
+ "id": 16869,
+ "start": 8655.5,
+ "end": 8655.8,
+ "text": "email"
+ },
+ {
+ "id": 16870,
+ "start": 8655.8,
+ "end": 8656.14,
+ "text": "notice"
+ },
+ {
+ "id": 16871,
+ "start": 8656.14,
+ "end": 8656.32,
+ "text": "from"
+ },
+ {
+ "id": 16872,
+ "start": 8656.32,
+ "end": 8656.5,
+ "text": "their"
+ },
+ {
+ "id": 16873,
+ "start": 8656.5,
+ "end": 8656.78,
+ "text": "chief"
+ },
+ {
+ "id": 16874,
+ "start": 8656.78,
+ "end": 8657.12,
+ "text": "data"
+ },
+ {
+ "id": 16875,
+ "start": 8657.12,
+ "end": 8657.52,
+ "text": "officer"
+ },
+ {
+ "id": 16876,
+ "start": 8657.52,
+ "end": 8658.52,
+ "text": "telling"
+ },
+ {
+ "id": 16877,
+ "start": 8658.52,
+ "end": 8658.64,
+ "text": "us"
+ },
+ {
+ "id": 16878,
+ "start": 8658.64,
+ "end": 8658.88,
+ "text": "that"
+ },
+ {
+ "id": 16879,
+ "start": 8658.88,
+ "end": 8659.28,
+ "text": "they"
+ },
+ {
+ "id": 16880,
+ "start": 8659.28,
+ "end": 8659.94,
+ "text": "didn't"
+ },
+ {
+ "id": 16881,
+ "start": 8659.94,
+ "end": 8660.08,
+ "text": "have"
+ },
+ {
+ "id": 16882,
+ "start": 8660.08,
+ "end": 8660.18,
+ "text": "any"
+ },
+ {
+ "id": 16883,
+ "start": 8660.18,
+ "end": 8660.26,
+ "text": "of"
+ },
+ {
+ "id": 16884,
+ "start": 8660.26,
+ "end": 8660.34,
+ "text": "the"
+ },
+ {
+ "id": 16885,
+ "start": 8660.34,
+ "end": 8660.5,
+ "text": "data"
+ },
+ {
+ "id": 16886,
+ "start": 8660.5,
+ "end": 8660.84,
+ "text": "anymore"
+ },
+ {
+ "id": 16887,
+ "start": 8660.84,
+ "end": 8660.98,
+ "text": "that"
+ },
+ {
+ "id": 16888,
+ "start": 8660.98,
+ "end": 8661.1,
+ "text": "they"
+ },
+ {
+ "id": 16889,
+ "start": 8661.1,
+ "end": 8661.44,
+ "text": "deleted"
+ },
+ {
+ "id": 16890,
+ "start": 8661.44,
+ "end": 8661.54,
+ "text": "it"
+ },
+ {
+ "id": 16891,
+ "start": 8661.54,
+ "end": 8661.66,
+ "text": "and"
+ },
+ {
+ "id": 16892,
+ "start": 8661.66,
+ "end": 8661.92,
+ "text": "weren't"
+ },
+ {
+ "id": 16893,
+ "start": 8661.92,
+ "end": 8662.21,
+ "text": "using."
+ },
+ {
+ "id": 16894,
+ "start": 8662.21,
+ "end": 8662.81,
+ "text": "And"
+ },
+ {
+ "id": 16895,
+ "start": 8662.81,
+ "end": 8662.97,
+ "text": "then"
+ },
+ {
+ "id": 16896,
+ "start": 8662.97,
+ "end": 8663.31,
+ "text": "later"
+ },
+ {
+ "id": 16897,
+ "start": 8663.31,
+ "end": 8663.51,
+ "text": "we"
+ },
+ {
+ "id": 16898,
+ "start": 8663.51,
+ "end": 8663.89,
+ "text": "followed"
+ },
+ {
+ "id": 16899,
+ "start": 8663.89,
+ "end": 8664.03,
+ "text": "up"
+ },
+ {
+ "id": 16900,
+ "start": 8664.03,
+ "end": 8664.49,
+ "text": "with."
+ },
+ {
+ "id": 16901,
+ "start": 8664.49,
+ "end": 8665.07,
+ "text": "I"
+ },
+ {
+ "id": 16902,
+ "start": 8665.07,
+ "end": 8665.43,
+ "text": "believe"
+ },
+ {
+ "id": 16903,
+ "start": 8665.43,
+ "end": 8665.49,
+ "text": "a"
+ },
+ {
+ "id": 16904,
+ "start": 8665.49,
+ "end": 8665.81,
+ "text": "full"
+ },
+ {
+ "id": 16905,
+ "start": 8665.81,
+ "end": 8666.25,
+ "text": "legal"
+ },
+ {
+ "id": 16906,
+ "start": 8666.25,
+ "end": 8667.43,
+ "text": "contract"
+ },
+ {
+ "id": 16907,
+ "start": 8667.43,
+ "end": 8667.69,
+ "text": "where"
+ },
+ {
+ "id": 16908,
+ "start": 8667.69,
+ "end": 8667.81,
+ "text": "they"
+ },
+ {
+ "id": 16909,
+ "start": 8667.81,
+ "end": 8668.43,
+ "text": "certified"
+ },
+ {
+ "id": 16910,
+ "start": 8668.43,
+ "end": 8669.19,
+ "text": "that"
+ },
+ {
+ "id": 16911,
+ "start": 8669.19,
+ "end": 8669.63,
+ "text": "they"
+ },
+ {
+ "id": 16912,
+ "start": 8669.63,
+ "end": 8669.85,
+ "text": "had"
+ },
+ {
+ "id": 16913,
+ "start": 8669.85,
+ "end": 8670.17,
+ "text": "deleted"
+ },
+ {
+ "id": 16914,
+ "start": 8670.17,
+ "end": 8670.29,
+ "text": "the"
+ },
+ {
+ "id": 16915,
+ "start": 8670.29,
+ "end": 8670.51,
+ "text": "data"
+ },
+ {
+ "id": 16916,
+ "start": 8670.51,
+ "end": 8671.21,
+ "text": "in"
+ },
+ {
+ "id": 16917,
+ "start": 8671.21,
+ "end": 8671.31,
+ "text": "a"
+ },
+ {
+ "id": 16918,
+ "start": 8671.31,
+ "end": 8671.61,
+ "text": "legal"
+ },
+ {
+ "id": 16919,
+ "start": 8671.61,
+ "end": 8672.56,
+ "text": "contract."
+ },
+ {
+ "id": 16920,
+ "start": 8672.56,
+ "end": 8673.2,
+ "text": "Yes,"
+ },
+ {
+ "id": 16921,
+ "start": 8673.2,
+ "end": 8673.34,
+ "text": "I"
+ },
+ {
+ "id": 16922,
+ "start": 8673.34,
+ "end": 8673.6,
+ "text": "believe"
+ },
+ {
+ "id": 16923,
+ "start": 8673.6,
+ "end": 8673.72,
+ "text": "so."
+ },
+ {
+ "id": 16924,
+ "start": 8673.72,
+ "end": 8674.26,
+ "text": "Okay,"
+ },
+ {
+ "id": 16925,
+ "start": 8674.26,
+ "end": 8674.92,
+ "text": "and"
+ },
+ {
+ "id": 16926,
+ "start": 8674.92,
+ "end": 8675.26,
+ "text": "then"
+ },
+ {
+ "id": 16927,
+ "start": 8675.26,
+ "end": 8676.24,
+ "text": "you"
+ },
+ {
+ "id": 16928,
+ "start": 8676.24,
+ "end": 8677.2,
+ "text": "ultimately"
+ },
+ {
+ "id": 16929,
+ "start": 8677.2,
+ "end": 8677.5,
+ "text": "said"
+ },
+ {
+ "id": 16930,
+ "start": 8677.5,
+ "end": 8677.68,
+ "text": "that"
+ },
+ {
+ "id": 16931,
+ "start": 8677.68,
+ "end": 8677.82,
+ "text": "you"
+ },
+ {
+ "id": 16932,
+ "start": 8677.82,
+ "end": 8678.06,
+ "text": "have"
+ },
+ {
+ "id": 16933,
+ "start": 8678.06,
+ "end": 8678.58,
+ "text": "banned"
+ },
+ {
+ "id": 16934,
+ "start": 8678.58,
+ "end": 8679.28,
+ "text": "Cambridge"
+ },
+ {
+ "id": 16935,
+ "start": 8679.28,
+ "end": 8680.72,
+ "text": "Analytica"
+ },
+ {
+ "id": 16936,
+ "start": 8680.72,
+ "end": 8681.62,
+ "text": "who"
+ },
+ {
+ "id": 16937,
+ "start": 8681.62,
+ "end": 8682.2,
+ "text": "exactly"
+ },
+ {
+ "id": 16938,
+ "start": 8682.2,
+ "end": 8682.5,
+ "text": "is"
+ },
+ {
+ "id": 16939,
+ "start": 8682.5,
+ "end": 8682.96,
+ "text": "banned?"
+ },
+ {
+ "id": 16940,
+ "start": 8682.96,
+ "end": 8683.14,
+ "text": "What"
+ },
+ {
+ "id": 16941,
+ "start": 8683.14,
+ "end": 8683.3,
+ "text": "if"
+ },
+ {
+ "id": 16942,
+ "start": 8683.3,
+ "end": 8684.22,
+ "text": "they"
+ },
+ {
+ "id": 16943,
+ "start": 8684.22,
+ "end": 8684.66,
+ "text": "opened"
+ },
+ {
+ "id": 16944,
+ "start": 8684.66,
+ "end": 8685.38,
+ "text": "up"
+ },
+ {
+ "id": 16945,
+ "start": 8685.38,
+ "end": 8686.38,
+ "text": "Cranston,"
+ },
+ {
+ "id": 16946,
+ "start": 8686.38,
+ "end": 8686.54,
+ "text": "Rhode"
+ },
+ {
+ "id": 16947,
+ "start": 8686.54,
+ "end": 8686.82,
+ "text": "Island,"
+ },
+ {
+ "id": 16948,
+ "start": 8686.82,
+ "end": 8688.18,
+ "text": "analytic"
+ },
+ {
+ "id": 16949,
+ "start": 8688.18,
+ "end": 8689.2,
+ "text": "different"
+ },
+ {
+ "id": 16950,
+ "start": 8689.2,
+ "end": 8689.56,
+ "text": "corporate"
+ },
+ {
+ "id": 16951,
+ "start": 8689.56,
+ "end": 8689.9,
+ "text": "form,"
+ },
+ {
+ "id": 16952,
+ "start": 8689.9,
+ "end": 8690.98,
+ "text": "same"
+ },
+ {
+ "id": 16953,
+ "start": 8690.98,
+ "end": 8691.98,
+ "text": "enterprise?"
+ },
+ {
+ "id": 16954,
+ "start": 8691.98,
+ "end": 8692.52,
+ "text": "Would"
+ },
+ {
+ "id": 16955,
+ "start": 8692.52,
+ "end": 8693.52,
+ "text": "that"
+ },
+ {
+ "id": 16956,
+ "start": 8693.52,
+ "end": 8693.98,
+ "text": "enterprise"
+ },
+ {
+ "id": 16957,
+ "start": 8693.98,
+ "end": 8694.36,
+ "text": "also"
+ },
+ {
+ "id": 16958,
+ "start": 8694.36,
+ "end": 8694.5,
+ "text": "be"
+ },
+ {
+ "id": 16959,
+ "start": 8694.5,
+ "end": 8695.52,
+ "text": "banned?"
+ },
+ {
+ "id": 16960,
+ "start": 8695.52,
+ "end": 8696.54,
+ "text": "Senator,"
+ },
+ {
+ "id": 16961,
+ "start": 8696.54,
+ "end": 8696.74,
+ "text": "that"
+ },
+ {
+ "id": 16962,
+ "start": 8696.74,
+ "end": 8696.88,
+ "text": "is"
+ },
+ {
+ "id": 16963,
+ "start": 8696.88,
+ "end": 8697.26,
+ "text": "certainly"
+ },
+ {
+ "id": 16964,
+ "start": 8697.26,
+ "end": 8697.44,
+ "text": "the"
+ },
+ {
+ "id": 16965,
+ "start": 8697.44,
+ "end": 8697.86,
+ "text": "intent"
+ },
+ {
+ "id": 16966,
+ "start": 8697.86,
+ "end": 8699.04,
+ "text": "Cambridge"
+ },
+ {
+ "id": 16967,
+ "start": 8699.04,
+ "end": 8699.4,
+ "text": "Analytica"
+ },
+ {
+ "id": 16968,
+ "start": 8699.4,
+ "end": 8699.78,
+ "text": "actually"
+ },
+ {
+ "id": 16969,
+ "start": 8699.78,
+ "end": 8700.06,
+ "text": "has"
+ },
+ {
+ "id": 16970,
+ "start": 8700.06,
+ "end": 8700.24,
+ "text": "a"
+ },
+ {
+ "id": 16971,
+ "start": 8700.24,
+ "end": 8700.6,
+ "text": "parent"
+ },
+ {
+ "id": 16972,
+ "start": 8700.6,
+ "end": 8700.92,
+ "text": "company"
+ },
+ {
+ "id": 16973,
+ "start": 8700.92,
+ "end": 8701.8,
+ "text": "and"
+ },
+ {
+ "id": 16974,
+ "start": 8701.8,
+ "end": 8702.28,
+ "text": "we"
+ },
+ {
+ "id": 16975,
+ "start": 8702.28,
+ "end": 8702.94,
+ "text": "banned"
+ },
+ {
+ "id": 16976,
+ "start": 8702.94,
+ "end": 8703.04,
+ "text": "the"
+ },
+ {
+ "id": 16977,
+ "start": 8703.04,
+ "end": 8703.48,
+ "text": "parent"
+ },
+ {
+ "id": 16978,
+ "start": 8703.48,
+ "end": 8703.78,
+ "text": "company."
+ },
+ {
+ "id": 16979,
+ "start": 8703.78,
+ "end": 8704.58,
+ "text": "And"
+ },
+ {
+ "id": 16980,
+ "start": 8704.58,
+ "end": 8705.14,
+ "text": "recently"
+ },
+ {
+ "id": 16981,
+ "start": 8705.14,
+ "end": 8705.38,
+ "text": "we"
+ },
+ {
+ "id": 16982,
+ "start": 8705.38,
+ "end": 8705.72,
+ "text": "also"
+ },
+ {
+ "id": 16983,
+ "start": 8705.72,
+ "end": 8706.1,
+ "text": "banned"
+ },
+ {
+ "id": 16984,
+ "start": 8706.1,
+ "end": 8706.4,
+ "text": "a"
+ },
+ {
+ "id": 16985,
+ "start": 8706.4,
+ "end": 8706.74,
+ "text": "firm"
+ },
+ {
+ "id": 16986,
+ "start": 8706.74,
+ "end": 8706.98,
+ "text": "called"
+ },
+ {
+ "id": 16987,
+ "start": 8706.98,
+ "end": 8707.74,
+ "text": "AIQ,"
+ },
+ {
+ "id": 16988,
+ "start": 8707.74,
+ "end": 8708.2,
+ "text": "which"
+ },
+ {
+ "id": 16989,
+ "start": 8708.2,
+ "end": 8708.28,
+ "text": "I"
+ },
+ {
+ "id": 16990,
+ "start": 8708.28,
+ "end": 8708.42,
+ "text": "think"
+ },
+ {
+ "id": 16991,
+ "start": 8708.42,
+ "end": 8708.58,
+ "text": "is"
+ },
+ {
+ "id": 16992,
+ "start": 8708.58,
+ "end": 8708.78,
+ "text": "also"
+ },
+ {
+ "id": 16993,
+ "start": 8708.78,
+ "end": 8709.34,
+ "text": "associated"
+ },
+ {
+ "id": 16994,
+ "start": 8709.34,
+ "end": 8709.48,
+ "text": "with"
+ },
+ {
+ "id": 16995,
+ "start": 8709.48,
+ "end": 8710.08,
+ "text": "them,"
+ },
+ {
+ "id": 16996,
+ "start": 8710.08,
+ "end": 8710.82,
+ "text": "and"
+ },
+ {
+ "id": 16997,
+ "start": 8710.82,
+ "end": 8710.98,
+ "text": "if"
+ },
+ {
+ "id": 16998,
+ "start": 8710.98,
+ "end": 8711.08,
+ "text": "we"
+ },
+ {
+ "id": 16999,
+ "start": 8711.08,
+ "end": 8711.32,
+ "text": "find"
+ },
+ {
+ "id": 17000,
+ "start": 8711.32,
+ "end": 8711.54,
+ "text": "other"
+ },
+ {
+ "id": 17001,
+ "start": 8711.54,
+ "end": 8711.82,
+ "text": "firms"
+ },
+ {
+ "id": 17002,
+ "start": 8711.82,
+ "end": 8711.94,
+ "text": "that"
+ },
+ {
+ "id": 17003,
+ "start": 8711.94,
+ "end": 8712.06,
+ "text": "are"
+ },
+ {
+ "id": 17004,
+ "start": 8712.06,
+ "end": 8712.52,
+ "text": "associated"
+ },
+ {
+ "id": 17005,
+ "start": 8712.52,
+ "end": 8712.66,
+ "text": "with"
+ },
+ {
+ "id": 17006,
+ "start": 8712.66,
+ "end": 8712.82,
+ "text": "them,"
+ },
+ {
+ "id": 17007,
+ "start": 8712.82,
+ "end": 8713.14,
+ "text": "we"
+ },
+ {
+ "id": 17008,
+ "start": 8713.14,
+ "end": 8713.36,
+ "text": "will"
+ },
+ {
+ "id": 17009,
+ "start": 8713.36,
+ "end": 8713.64,
+ "text": "block"
+ },
+ {
+ "id": 17010,
+ "start": 8713.64,
+ "end": 8713.84,
+ "text": "them"
+ },
+ {
+ "id": 17011,
+ "start": 8713.84,
+ "end": 8714,
+ "text": "from"
+ },
+ {
+ "id": 17012,
+ "start": 8714,
+ "end": 8714.12,
+ "text": "the"
+ },
+ {
+ "id": 17013,
+ "start": 8714.12,
+ "end": 8714.46,
+ "text": "platform"
+ },
+ {
+ "id": 17014,
+ "start": 8714.46,
+ "end": 8714.62,
+ "text": "as"
+ },
+ {
+ "id": 17015,
+ "start": 8714.62,
+ "end": 8714.78,
+ "text": "well."
+ },
+ {
+ "id": 17016,
+ "start": 8714.78,
+ "end": 8715.5,
+ "text": "Our"
+ },
+ {
+ "id": 17017,
+ "start": 8715.5,
+ "end": 8716.18,
+ "text": "individual"
+ },
+ {
+ "id": 17018,
+ "start": 8716.18,
+ "end": 8717.8,
+ "text": "principles"
+ },
+ {
+ "id": 17019,
+ "start": 8717.8,
+ "end": 8718.84,
+ "text": "pals"
+ },
+ {
+ "id": 17020,
+ "start": 8718.84,
+ "end": 8719.44,
+ "text": "principles"
+ },
+ {
+ "id": 17021,
+ "start": 8719.44,
+ "end": 8719.62,
+ "text": "of"
+ },
+ {
+ "id": 17022,
+ "start": 8719.62,
+ "end": 8719.76,
+ "text": "the"
+ },
+ {
+ "id": 17023,
+ "start": 8719.76,
+ "end": 8720.16,
+ "text": "firm"
+ },
+ {
+ "id": 17024,
+ "start": 8720.16,
+ "end": 8720.82,
+ "text": "also"
+ },
+ {
+ "id": 17025,
+ "start": 8720.82,
+ "end": 8725.08,
+ "text": "banned"
+ },
+ {
+ "id": 17026,
+ "start": 8725.08,
+ "end": 8726.06,
+ "text": "my"
+ },
+ {
+ "id": 17027,
+ "start": 8726.06,
+ "end": 8726.5,
+ "text": "understanding"
+ },
+ {
+ "id": 17028,
+ "start": 8726.5,
+ "end": 8726.62,
+ "text": "is"
+ },
+ {
+ "id": 17029,
+ "start": 8726.62,
+ "end": 8726.82,
+ "text": "we're"
+ },
+ {
+ "id": 17030,
+ "start": 8726.82,
+ "end": 8727.22,
+ "text": "blocking"
+ },
+ {
+ "id": 17031,
+ "start": 8727.22,
+ "end": 8727.46,
+ "text": "them"
+ },
+ {
+ "id": 17032,
+ "start": 8727.46,
+ "end": 8727.7,
+ "text": "from"
+ },
+ {
+ "id": 17033,
+ "start": 8727.7,
+ "end": 8727.98,
+ "text": "doing"
+ },
+ {
+ "id": 17034,
+ "start": 8727.98,
+ "end": 8728.38,
+ "text": "business"
+ },
+ {
+ "id": 17035,
+ "start": 8728.38,
+ "end": 8728.52,
+ "text": "on"
+ },
+ {
+ "id": 17036,
+ "start": 8728.52,
+ "end": 8728.64,
+ "text": "the"
+ },
+ {
+ "id": 17037,
+ "start": 8728.64,
+ "end": 8729.16,
+ "text": "platform,"
+ },
+ {
+ "id": 17038,
+ "start": 8729.16,
+ "end": 8729.92,
+ "text": "but"
+ },
+ {
+ "id": 17039,
+ "start": 8729.92,
+ "end": 8730.64,
+ "text": "I"
+ },
+ {
+ "id": 17040,
+ "start": 8730.64,
+ "end": 8730.88,
+ "text": "do"
+ },
+ {
+ "id": 17041,
+ "start": 8730.88,
+ "end": 8731.1,
+ "text": "not"
+ },
+ {
+ "id": 17042,
+ "start": 8731.1,
+ "end": 8731.44,
+ "text": "believe"
+ },
+ {
+ "id": 17043,
+ "start": 8731.44,
+ "end": 8731.6,
+ "text": "that"
+ },
+ {
+ "id": 17044,
+ "start": 8731.6,
+ "end": 8731.7,
+ "text": "we"
+ },
+ {
+ "id": 17045,
+ "start": 8731.7,
+ "end": 8731.82,
+ "text": "are"
+ },
+ {
+ "id": 17046,
+ "start": 8731.82,
+ "end": 8732.32,
+ "text": "blocking"
+ },
+ {
+ "id": 17047,
+ "start": 8732.32,
+ "end": 8733.08,
+ "text": "people's"
+ },
+ {
+ "id": 17048,
+ "start": 8733.08,
+ "end": 8733.54,
+ "text": "personal"
+ },
+ {
+ "id": 17049,
+ "start": 8733.54,
+ "end": 8733.92,
+ "text": "accounts."
+ },
+ {
+ "id": 17050,
+ "start": 8733.92,
+ "end": 8738.14,
+ "text": "Okay,"
+ },
+ {
+ "id": 17051,
+ "start": 8738.14,
+ "end": 8739.12,
+ "text": "can"
+ },
+ {
+ "id": 17052,
+ "start": 8739.12,
+ "end": 8739.4,
+ "text": "any"
+ },
+ {
+ "id": 17053,
+ "start": 8739.4,
+ "end": 8740.26,
+ "text": "customer"
+ },
+ {
+ "id": 17054,
+ "start": 8740.26,
+ "end": 8741.32,
+ "text": "amend"
+ },
+ {
+ "id": 17055,
+ "start": 8741.32,
+ "end": 8741.62,
+ "text": "your"
+ },
+ {
+ "id": 17056,
+ "start": 8741.62,
+ "end": 8742.02,
+ "text": "terms"
+ },
+ {
+ "id": 17057,
+ "start": 8742.02,
+ "end": 8742.16,
+ "text": "of"
+ },
+ {
+ "id": 17058,
+ "start": 8742.16,
+ "end": 8743.3,
+ "text": "service"
+ },
+ {
+ "id": 17059,
+ "start": 8743.3,
+ "end": 8744.14,
+ "text": "or"
+ },
+ {
+ "id": 17060,
+ "start": 8744.14,
+ "end": 8744.26,
+ "text": "is"
+ },
+ {
+ "id": 17061,
+ "start": 8744.26,
+ "end": 8744.38,
+ "text": "the"
+ },
+ {
+ "id": 17062,
+ "start": 8744.38,
+ "end": 8744.66,
+ "text": "terms"
+ },
+ {
+ "id": 17063,
+ "start": 8744.66,
+ "end": 8744.78,
+ "text": "of"
+ },
+ {
+ "id": 17064,
+ "start": 8744.78,
+ "end": 8745.16,
+ "text": "service"
+ },
+ {
+ "id": 17065,
+ "start": 8745.16,
+ "end": 8745.28,
+ "text": "to"
+ },
+ {
+ "id": 17066,
+ "start": 8745.28,
+ "end": 8745.46,
+ "text": "take"
+ },
+ {
+ "id": 17067,
+ "start": 8745.46,
+ "end": 8745.54,
+ "text": "it"
+ },
+ {
+ "id": 17068,
+ "start": 8745.54,
+ "end": 8745.64,
+ "text": "or"
+ },
+ {
+ "id": 17069,
+ "start": 8745.64,
+ "end": 8745.82,
+ "text": "leave"
+ },
+ {
+ "id": 17070,
+ "start": 8745.82,
+ "end": 8745.92,
+ "text": "it"
+ },
+ {
+ "id": 17071,
+ "start": 8745.92,
+ "end": 8746.52,
+ "text": "proposition"
+ },
+ {
+ "id": 17072,
+ "start": 8746.52,
+ "end": 8746.7,
+ "text": "for"
+ },
+ {
+ "id": 17073,
+ "start": 8746.7,
+ "end": 8746.8,
+ "text": "the"
+ },
+ {
+ "id": 17074,
+ "start": 8746.8,
+ "end": 8747.1,
+ "text": "average"
+ },
+ {
+ "id": 17075,
+ "start": 8747.1,
+ "end": 8750.02,
+ "text": "customer."
+ },
+ {
+ "id": 17076,
+ "start": 8750.02,
+ "end": 8751,
+ "text": "Senator,"
+ },
+ {
+ "id": 17077,
+ "start": 8751,
+ "end": 8751.24,
+ "text": "I"
+ },
+ {
+ "id": 17078,
+ "start": 8751.24,
+ "end": 8751.62,
+ "text": "think"
+ },
+ {
+ "id": 17079,
+ "start": 8751.62,
+ "end": 8751.76,
+ "text": "the"
+ },
+ {
+ "id": 17080,
+ "start": 8751.76,
+ "end": 8752.1,
+ "text": "terms"
+ },
+ {
+ "id": 17081,
+ "start": 8752.1,
+ "end": 8752.24,
+ "text": "of"
+ },
+ {
+ "id": 17082,
+ "start": 8752.24,
+ "end": 8752.7,
+ "text": "service"
+ },
+ {
+ "id": 17083,
+ "start": 8752.7,
+ "end": 8753.02,
+ "text": "are"
+ },
+ {
+ "id": 17084,
+ "start": 8753.02,
+ "end": 8753.84,
+ "text": "what"
+ },
+ {
+ "id": 17085,
+ "start": 8753.84,
+ "end": 8754,
+ "text": "they"
+ },
+ {
+ "id": 17086,
+ "start": 8754,
+ "end": 8754.2,
+ "text": "are."
+ },
+ {
+ "id": 17087,
+ "start": 8754.2,
+ "end": 8754.84,
+ "text": "But"
+ },
+ {
+ "id": 17088,
+ "start": 8754.84,
+ "end": 8755,
+ "text": "the"
+ },
+ {
+ "id": 17089,
+ "start": 8755,
+ "end": 8755.42,
+ "text": "service"
+ },
+ {
+ "id": 17090,
+ "start": 8755.42,
+ "end": 8755.6,
+ "text": "is"
+ },
+ {
+ "id": 17091,
+ "start": 8755.6,
+ "end": 8755.86,
+ "text": "really"
+ },
+ {
+ "id": 17092,
+ "start": 8755.86,
+ "end": 8756.28,
+ "text": "defined"
+ },
+ {
+ "id": 17093,
+ "start": 8756.28,
+ "end": 8756.44,
+ "text": "by"
+ },
+ {
+ "id": 17094,
+ "start": 8756.44,
+ "end": 8756.82,
+ "text": "people"
+ },
+ {
+ "id": 17095,
+ "start": 8756.82,
+ "end": 8757.7,
+ "text": "because"
+ },
+ {
+ "id": 17096,
+ "start": 8757.7,
+ "end": 8758.26,
+ "text": "you"
+ },
+ {
+ "id": 17097,
+ "start": 8758.26,
+ "end": 8758.38,
+ "text": "get"
+ },
+ {
+ "id": 17098,
+ "start": 8758.38,
+ "end": 8758.52,
+ "text": "to"
+ },
+ {
+ "id": 17099,
+ "start": 8758.52,
+ "end": 8758.86,
+ "text": "choose"
+ },
+ {
+ "id": 17100,
+ "start": 8758.86,
+ "end": 8759.2,
+ "text": "what"
+ },
+ {
+ "id": 17101,
+ "start": 8759.2,
+ "end": 8759.76,
+ "text": "information"
+ },
+ {
+ "id": 17102,
+ "start": 8759.76,
+ "end": 8759.9,
+ "text": "you"
+ },
+ {
+ "id": 17103,
+ "start": 8759.9,
+ "end": 8760.18,
+ "text": "share."
+ },
+ {
+ "id": 17104,
+ "start": 8760.18,
+ "end": 8760.9,
+ "text": "And"
+ },
+ {
+ "id": 17105,
+ "start": 8760.9,
+ "end": 8761.02,
+ "text": "the"
+ },
+ {
+ "id": 17106,
+ "start": 8761.02,
+ "end": 8761.39,
+ "text": "whole"
+ },
+ {
+ "id": 17107,
+ "start": 8761.39,
+ "end": 8761.75,
+ "text": "services"
+ },
+ {
+ "id": 17108,
+ "start": 8761.75,
+ "end": 8762.17,
+ "text": "about"
+ },
+ {
+ "id": 17109,
+ "start": 8762.17,
+ "end": 8762.71,
+ "text": "which"
+ },
+ {
+ "id": 17110,
+ "start": 8762.71,
+ "end": 8763.05,
+ "text": "friends"
+ },
+ {
+ "id": 17111,
+ "start": 8763.05,
+ "end": 8763.25,
+ "text": "you"
+ },
+ {
+ "id": 17112,
+ "start": 8763.25,
+ "end": 8763.51,
+ "text": "connect"
+ },
+ {
+ "id": 17113,
+ "start": 8763.51,
+ "end": 8763.63,
+ "text": "to,"
+ },
+ {
+ "id": 17114,
+ "start": 8763.63,
+ "end": 8763.85,
+ "text": "which"
+ },
+ {
+ "id": 17115,
+ "start": 8763.85,
+ "end": 8764.51,
+ "text": "is"
+ },
+ {
+ "id": 17116,
+ "start": 8764.51,
+ "end": 8764.65,
+ "text": "to"
+ },
+ {
+ "id": 17117,
+ "start": 8764.65,
+ "end": 8764.87,
+ "text": "connect"
+ },
+ {
+ "id": 17118,
+ "start": 8764.87,
+ "end": 8765.05,
+ "text": "to"
+ },
+ {
+ "id": 17119,
+ "start": 8765.05,
+ "end": 8765.37,
+ "text": "my"
+ },
+ {
+ "id": 17120,
+ "start": 8765.37,
+ "end": 8765.69,
+ "text": "question"
+ },
+ {
+ "id": 17121,
+ "start": 8765.69,
+ "end": 8765.89,
+ "text": "would"
+ },
+ {
+ "id": 17122,
+ "start": 8765.89,
+ "end": 8766.19,
+ "text": "relate"
+ },
+ {
+ "id": 17123,
+ "start": 8766.19,
+ "end": 8766.49,
+ "text": "to."
+ },
+ {
+ "id": 17124,
+ "start": 8766.49,
+ "end": 8767.27,
+ "text": "Senator"
+ },
+ {
+ "id": 17125,
+ "start": 8767.27,
+ "end": 8767.59,
+ "text": "Graham"
+ },
+ {
+ "id": 17126,
+ "start": 8767.59,
+ "end": 8767.79,
+ "text": "held"
+ },
+ {
+ "id": 17127,
+ "start": 8767.79,
+ "end": 8767.95,
+ "text": "up"
+ },
+ {
+ "id": 17128,
+ "start": 8767.95,
+ "end": 8768.17,
+ "text": "that"
+ },
+ {
+ "id": 17129,
+ "start": 8768.17,
+ "end": 8768.39,
+ "text": "big"
+ },
+ {
+ "id": 17130,
+ "start": 8768.39,
+ "end": 8768.67,
+ "text": "fat"
+ },
+ {
+ "id": 17131,
+ "start": 8768.67,
+ "end": 8769.33,
+ "text": "document"
+ },
+ {
+ "id": 17132,
+ "start": 8769.33,
+ "end": 8769.83,
+ "text": "it's"
+ },
+ {
+ "id": 17133,
+ "start": 8769.83,
+ "end": 8770.15,
+ "text": "easy"
+ },
+ {
+ "id": 17134,
+ "start": 8770.15,
+ "end": 8770.25,
+ "text": "to"
+ },
+ {
+ "id": 17135,
+ "start": 8770.25,
+ "end": 8770.39,
+ "text": "put"
+ },
+ {
+ "id": 17136,
+ "start": 8770.39,
+ "end": 8770.45,
+ "text": "a"
+ },
+ {
+ "id": 17137,
+ "start": 8770.45,
+ "end": 8770.61,
+ "text": "lot"
+ },
+ {
+ "id": 17138,
+ "start": 8770.61,
+ "end": 8770.69,
+ "text": "of"
+ },
+ {
+ "id": 17139,
+ "start": 8770.69,
+ "end": 8771.01,
+ "text": "things"
+ },
+ {
+ "id": 17140,
+ "start": 8771.01,
+ "end": 8771.43,
+ "text": "buried"
+ },
+ {
+ "id": 17141,
+ "start": 8771.43,
+ "end": 8771.55,
+ "text": "in"
+ },
+ {
+ "id": 17142,
+ "start": 8771.55,
+ "end": 8771.63,
+ "text": "a"
+ },
+ {
+ "id": 17143,
+ "start": 8771.63,
+ "end": 8772.17,
+ "text": "document"
+ },
+ {
+ "id": 17144,
+ "start": 8772.17,
+ "end": 8772.47,
+ "text": "that"
+ },
+ {
+ "id": 17145,
+ "start": 8772.47,
+ "end": 8773.7,
+ "text": "then"
+ },
+ {
+ "id": 17146,
+ "start": 8773.7,
+ "end": 8774.44,
+ "text": "later"
+ },
+ {
+ "id": 17147,
+ "start": 8774.44,
+ "end": 8774.64,
+ "text": "turn"
+ },
+ {
+ "id": 17148,
+ "start": 8774.64,
+ "end": 8774.8,
+ "text": "out"
+ },
+ {
+ "id": 17149,
+ "start": 8774.8,
+ "end": 8774.96,
+ "text": "to"
+ },
+ {
+ "id": 17150,
+ "start": 8774.96,
+ "end": 8775.12,
+ "text": "be"
+ },
+ {
+ "id": 17151,
+ "start": 8775.12,
+ "end": 8775.92,
+ "text": "of"
+ },
+ {
+ "id": 17152,
+ "start": 8775.92,
+ "end": 8776.84,
+ "text": "consequence."
+ },
+ {
+ "id": 17153,
+ "start": 8776.84,
+ "end": 8777.68,
+ "text": "And"
+ },
+ {
+ "id": 17154,
+ "start": 8777.68,
+ "end": 8777.86,
+ "text": "all"
+ },
+ {
+ "id": 17155,
+ "start": 8777.86,
+ "end": 8777.94,
+ "text": "I"
+ },
+ {
+ "id": 17156,
+ "start": 8777.94,
+ "end": 8778.18,
+ "text": "wanted"
+ },
+ {
+ "id": 17157,
+ "start": 8778.18,
+ "end": 8778.28,
+ "text": "to"
+ },
+ {
+ "id": 17158,
+ "start": 8778.28,
+ "end": 8778.78,
+ "text": "establish"
+ },
+ {
+ "id": 17159,
+ "start": 8778.78,
+ "end": 8778.96,
+ "text": "with"
+ },
+ {
+ "id": 17160,
+ "start": 8778.96,
+ "end": 8779.2,
+ "text": "you"
+ },
+ {
+ "id": 17161,
+ "start": 8779.2,
+ "end": 8779.42,
+ "text": "is"
+ },
+ {
+ "id": 17162,
+ "start": 8779.42,
+ "end": 8779.6,
+ "text": "that"
+ },
+ {
+ "id": 17163,
+ "start": 8779.6,
+ "end": 8779.8,
+ "text": "that"
+ },
+ {
+ "id": 17164,
+ "start": 8779.8,
+ "end": 8780.24,
+ "text": "document"
+ },
+ {
+ "id": 17165,
+ "start": 8780.24,
+ "end": 8780.38,
+ "text": "the"
+ },
+ {
+ "id": 17166,
+ "start": 8780.38,
+ "end": 8780.74,
+ "text": "Senator"
+ },
+ {
+ "id": 17167,
+ "start": 8780.74,
+ "end": 8781.1,
+ "text": "Graham"
+ },
+ {
+ "id": 17168,
+ "start": 8781.1,
+ "end": 8781.32,
+ "text": "held"
+ },
+ {
+ "id": 17169,
+ "start": 8781.32,
+ "end": 8781.54,
+ "text": "up,"
+ },
+ {
+ "id": 17170,
+ "start": 8781.54,
+ "end": 8782.2,
+ "text": "that"
+ },
+ {
+ "id": 17171,
+ "start": 8782.2,
+ "end": 8782.32,
+ "text": "is"
+ },
+ {
+ "id": 17172,
+ "start": 8782.32,
+ "end": 8782.52,
+ "text": "not"
+ },
+ {
+ "id": 17173,
+ "start": 8782.52,
+ "end": 8782.64,
+ "text": "a"
+ },
+ {
+ "id": 17174,
+ "start": 8782.64,
+ "end": 8783.28,
+ "text": "negotiable"
+ },
+ {
+ "id": 17175,
+ "start": 8783.28,
+ "end": 8783.64,
+ "text": "thing"
+ },
+ {
+ "id": 17176,
+ "start": 8783.64,
+ "end": 8784.14,
+ "text": "with"
+ },
+ {
+ "id": 17177,
+ "start": 8784.14,
+ "end": 8785.52,
+ "text": "individual"
+ },
+ {
+ "id": 17178,
+ "start": 8785.52,
+ "end": 8786.72,
+ "text": "customers."
+ },
+ {
+ "id": 17179,
+ "start": 8786.72,
+ "end": 8787.24,
+ "text": "That"
+ },
+ {
+ "id": 17180,
+ "start": 8787.24,
+ "end": 8787.4,
+ "text": "is"
+ },
+ {
+ "id": 17181,
+ "start": 8787.4,
+ "end": 8787.52,
+ "text": "a"
+ },
+ {
+ "id": 17182,
+ "start": 8787.52,
+ "end": 8787.76,
+ "text": "take"
+ },
+ {
+ "id": 17183,
+ "start": 8787.76,
+ "end": 8787.86,
+ "text": "it"
+ },
+ {
+ "id": 17184,
+ "start": 8787.86,
+ "end": 8787.96,
+ "text": "or"
+ },
+ {
+ "id": 17185,
+ "start": 8787.96,
+ "end": 8788.14,
+ "text": "leave"
+ },
+ {
+ "id": 17186,
+ "start": 8788.14,
+ "end": 8788.26,
+ "text": "it"
+ },
+ {
+ "id": 17187,
+ "start": 8788.26,
+ "end": 8788.96,
+ "text": "proposition"
+ },
+ {
+ "id": 17188,
+ "start": 8788.96,
+ "end": 8789.18,
+ "text": "for"
+ },
+ {
+ "id": 17189,
+ "start": 8789.18,
+ "end": 8789.38,
+ "text": "your"
+ },
+ {
+ "id": 17190,
+ "start": 8789.38,
+ "end": 8789.88,
+ "text": "customers"
+ },
+ {
+ "id": 17191,
+ "start": 8789.88,
+ "end": 8790.04,
+ "text": "to"
+ },
+ {
+ "id": 17192,
+ "start": 8790.04,
+ "end": 8790.26,
+ "text": "sign"
+ },
+ {
+ "id": 17193,
+ "start": 8790.26,
+ "end": 8790.4,
+ "text": "up"
+ },
+ {
+ "id": 17194,
+ "start": 8790.4,
+ "end": 8790.54,
+ "text": "to"
+ },
+ {
+ "id": 17195,
+ "start": 8790.54,
+ "end": 8791.18,
+ "text": "or"
+ },
+ {
+ "id": 17196,
+ "start": 8791.18,
+ "end": 8791.36,
+ "text": "not."
+ },
+ {
+ "id": 17197,
+ "start": 8791.36,
+ "end": 8791.58,
+ "text": "Use"
+ },
+ {
+ "id": 17198,
+ "start": 8791.58,
+ "end": 8791.7,
+ "text": "the"
+ },
+ {
+ "id": 17199,
+ "start": 8791.7,
+ "end": 8792.34,
+ "text": "service"
+ },
+ {
+ "id": 17200,
+ "start": 8792.34,
+ "end": 8793.32,
+ "text": "senator"
+ },
+ {
+ "id": 17201,
+ "start": 8793.32,
+ "end": 8793.52,
+ "text": "that's"
+ },
+ {
+ "id": 17202,
+ "start": 8793.52,
+ "end": 8793.74,
+ "text": "right"
+ },
+ {
+ "id": 17203,
+ "start": 8793.74,
+ "end": 8793.84,
+ "text": "on"
+ },
+ {
+ "id": 17204,
+ "start": 8793.84,
+ "end": 8793.96,
+ "text": "the"
+ },
+ {
+ "id": 17205,
+ "start": 8793.96,
+ "end": 8794.2,
+ "text": "terms"
+ },
+ {
+ "id": 17206,
+ "start": 8794.2,
+ "end": 8794.32,
+ "text": "of"
+ },
+ {
+ "id": 17207,
+ "start": 8794.32,
+ "end": 8794.72,
+ "text": "service,"
+ },
+ {
+ "id": 17208,
+ "start": 8794.72,
+ "end": 8795.18,
+ "text": "although"
+ },
+ {
+ "id": 17209,
+ "start": 8795.18,
+ "end": 8795.38,
+ "text": "we"
+ },
+ {
+ "id": 17210,
+ "start": 8795.38,
+ "end": 8795.8,
+ "text": "offer"
+ },
+ {
+ "id": 17211,
+ "start": 8795.8,
+ "end": 8796.34,
+ "text": "a"
+ },
+ {
+ "id": 17212,
+ "start": 8796.34,
+ "end": 8796.6,
+ "text": "lot"
+ },
+ {
+ "id": 17213,
+ "start": 8796.6,
+ "end": 8796.72,
+ "text": "of"
+ },
+ {
+ "id": 17214,
+ "start": 8796.72,
+ "end": 8798.16,
+ "text": "controls"
+ },
+ {
+ "id": 17215,
+ "start": 8798.16,
+ "end": 8799.06,
+ "text": "so"
+ },
+ {
+ "id": 17216,
+ "start": 8799.06,
+ "end": 8799.32,
+ "text": "people"
+ },
+ {
+ "id": 17217,
+ "start": 8799.32,
+ "end": 8799.5,
+ "text": "can"
+ },
+ {
+ "id": 17218,
+ "start": 8799.5,
+ "end": 8799.98,
+ "text": "configure"
+ },
+ {
+ "id": 17219,
+ "start": 8799.98,
+ "end": 8800.2,
+ "text": "the"
+ },
+ {
+ "id": 17220,
+ "start": 8800.2,
+ "end": 8800.8,
+ "text": "experience"
+ },
+ {
+ "id": 17221,
+ "start": 8800.8,
+ "end": 8800.96,
+ "text": "how"
+ },
+ {
+ "id": 17222,
+ "start": 8800.96,
+ "end": 8801.14,
+ "text": "they"
+ },
+ {
+ "id": 17223,
+ "start": 8801.14,
+ "end": 8801.38,
+ "text": "want."
+ },
+ {
+ "id": 17224,
+ "start": 8801.38,
+ "end": 8802.44,
+ "text": "So"
+ },
+ {
+ "id": 17225,
+ "start": 8802.44,
+ "end": 8803.6,
+ "text": "last"
+ },
+ {
+ "id": 17226,
+ "start": 8803.6,
+ "end": 8804.02,
+ "text": "question"
+ },
+ {
+ "id": 17227,
+ "start": 8804.02,
+ "end": 8804.32,
+ "text": "on"
+ },
+ {
+ "id": 17228,
+ "start": 8804.32,
+ "end": 8804.42,
+ "text": "a"
+ },
+ {
+ "id": 17229,
+ "start": 8804.42,
+ "end": 8804.74,
+ "text": "different"
+ },
+ {
+ "id": 17230,
+ "start": 8804.74,
+ "end": 8805.14,
+ "text": "subject."
+ },
+ {
+ "id": 17231,
+ "start": 8805.14,
+ "end": 8805.48,
+ "text": "Having"
+ },
+ {
+ "id": 17232,
+ "start": 8805.48,
+ "end": 8805.58,
+ "text": "to"
+ },
+ {
+ "id": 17233,
+ "start": 8805.58,
+ "end": 8805.8,
+ "text": "do"
+ },
+ {
+ "id": 17234,
+ "start": 8805.8,
+ "end": 8806.02,
+ "text": "with"
+ },
+ {
+ "id": 17235,
+ "start": 8806.02,
+ "end": 8807.08,
+ "text": "the"
+ },
+ {
+ "id": 17236,
+ "start": 8807.08,
+ "end": 8808.12,
+ "text": "authorization"
+ },
+ {
+ "id": 17237,
+ "start": 8808.12,
+ "end": 8809.12,
+ "text": "process"
+ },
+ {
+ "id": 17238,
+ "start": 8809.12,
+ "end": 8809.34,
+ "text": "that"
+ },
+ {
+ "id": 17239,
+ "start": 8809.34,
+ "end": 8809.52,
+ "text": "you"
+ },
+ {
+ "id": 17240,
+ "start": 8809.52,
+ "end": 8809.7,
+ "text": "are"
+ },
+ {
+ "id": 17241,
+ "start": 8809.7,
+ "end": 8810.5,
+ "text": "undertaking"
+ },
+ {
+ "id": 17242,
+ "start": 8810.5,
+ "end": 8811.36,
+ "text": "for"
+ },
+ {
+ "id": 17243,
+ "start": 8811.36,
+ "end": 8812.34,
+ "text": "entities"
+ },
+ {
+ "id": 17244,
+ "start": 8812.34,
+ "end": 8812.56,
+ "text": "that"
+ },
+ {
+ "id": 17245,
+ "start": 8812.56,
+ "end": 8812.7,
+ "text": "are"
+ },
+ {
+ "id": 17246,
+ "start": 8812.7,
+ "end": 8812.94,
+ "text": "putting"
+ },
+ {
+ "id": 17247,
+ "start": 8812.94,
+ "end": 8813.12,
+ "text": "up"
+ },
+ {
+ "id": 17248,
+ "start": 8813.12,
+ "end": 8813.76,
+ "text": "political"
+ },
+ {
+ "id": 17249,
+ "start": 8813.76,
+ "end": 8814.28,
+ "text": "content"
+ },
+ {
+ "id": 17250,
+ "start": 8814.28,
+ "end": 8814.5,
+ "text": "or"
+ },
+ {
+ "id": 17251,
+ "start": 8814.5,
+ "end": 8814.68,
+ "text": "is"
+ },
+ {
+ "id": 17252,
+ "start": 8814.68,
+ "end": 8814.94,
+ "text": "so"
+ },
+ {
+ "id": 17253,
+ "start": 8814.94,
+ "end": 8815.16,
+ "text": "called"
+ },
+ {
+ "id": 17254,
+ "start": 8815.16,
+ "end": 8815.44,
+ "text": "issue."
+ },
+ {
+ "id": 17255,
+ "start": 8815.44,
+ "end": 8816.38,
+ "text": "Add"
+ },
+ {
+ "id": 17256,
+ "start": 8816.38,
+ "end": 8817.38,
+ "text": "content"
+ },
+ {
+ "id": 17257,
+ "start": 8817.38,
+ "end": 8818.16,
+ "text": "you've"
+ },
+ {
+ "id": 17258,
+ "start": 8818.16,
+ "end": 8818.34,
+ "text": "said"
+ },
+ {
+ "id": 17259,
+ "start": 8818.34,
+ "end": 8818.48,
+ "text": "that"
+ },
+ {
+ "id": 17260,
+ "start": 8818.48,
+ "end": 8819.08,
+ "text": "they"
+ },
+ {
+ "id": 17261,
+ "start": 8819.08,
+ "end": 8819.24,
+ "text": "all"
+ },
+ {
+ "id": 17262,
+ "start": 8819.24,
+ "end": 8819.42,
+ "text": "have"
+ },
+ {
+ "id": 17263,
+ "start": 8819.42,
+ "end": 8819.54,
+ "text": "to"
+ },
+ {
+ "id": 17264,
+ "start": 8819.54,
+ "end": 8819.66,
+ "text": "go"
+ },
+ {
+ "id": 17265,
+ "start": 8819.66,
+ "end": 8820.02,
+ "text": "through"
+ },
+ {
+ "id": 17266,
+ "start": 8820.02,
+ "end": 8820.12,
+ "text": "an"
+ },
+ {
+ "id": 17267,
+ "start": 8820.12,
+ "end": 8820.88,
+ "text": "authorization"
+ },
+ {
+ "id": 17268,
+ "start": 8820.88,
+ "end": 8821.5,
+ "text": "process"
+ },
+ {
+ "id": 17269,
+ "start": 8821.5,
+ "end": 8821.9,
+ "text": "before"
+ },
+ {
+ "id": 17270,
+ "start": 8821.9,
+ "end": 8822.08,
+ "text": "they"
+ },
+ {
+ "id": 17271,
+ "start": 8822.08,
+ "end": 8822.84,
+ "text": "do"
+ },
+ {
+ "id": 17272,
+ "start": 8822.84,
+ "end": 8823.02,
+ "text": "it."
+ },
+ {
+ "id": 17273,
+ "start": 8823.02,
+ "end": 8823.28,
+ "text": "You"
+ },
+ {
+ "id": 17274,
+ "start": 8823.28,
+ "end": 8823.56,
+ "text": "said"
+ },
+ {
+ "id": 17275,
+ "start": 8823.56,
+ "end": 8823.84,
+ "text": "here"
+ },
+ {
+ "id": 17276,
+ "start": 8823.84,
+ "end": 8824.04,
+ "text": "we"
+ },
+ {
+ "id": 17277,
+ "start": 8824.04,
+ "end": 8824.24,
+ "text": "will"
+ },
+ {
+ "id": 17278,
+ "start": 8824.24,
+ "end": 8824.32,
+ "text": "be"
+ },
+ {
+ "id": 17279,
+ "start": 8824.32,
+ "end": 8825,
+ "text": "verifying"
+ },
+ {
+ "id": 17280,
+ "start": 8825,
+ "end": 8825.18,
+ "text": "the"
+ },
+ {
+ "id": 17281,
+ "start": 8825.18,
+ "end": 8825.94,
+ "text": "identity."
+ },
+ {
+ "id": 17282,
+ "start": 8825.94,
+ "end": 8826.8,
+ "text": "How"
+ },
+ {
+ "id": 17283,
+ "start": 8826.8,
+ "end": 8826.9,
+ "text": "do"
+ },
+ {
+ "id": 17284,
+ "start": 8826.9,
+ "end": 8827.04,
+ "text": "you"
+ },
+ {
+ "id": 17285,
+ "start": 8827.04,
+ "end": 8827.34,
+ "text": "look"
+ },
+ {
+ "id": 17286,
+ "start": 8827.34,
+ "end": 8827.72,
+ "text": "behind"
+ },
+ {
+ "id": 17287,
+ "start": 8827.72,
+ "end": 8827.8,
+ "text": "a"
+ },
+ {
+ "id": 17288,
+ "start": 8827.8,
+ "end": 8828.14,
+ "text": "shell"
+ },
+ {
+ "id": 17289,
+ "start": 8828.14,
+ "end": 8828.82,
+ "text": "corporation"
+ },
+ {
+ "id": 17290,
+ "start": 8828.82,
+ "end": 8828.98,
+ "text": "and"
+ },
+ {
+ "id": 17291,
+ "start": 8828.98,
+ "end": 8829.26,
+ "text": "find"
+ },
+ {
+ "id": 17292,
+ "start": 8829.26,
+ "end": 8829.42,
+ "text": "who"
+ },
+ {
+ "id": 17293,
+ "start": 8829.42,
+ "end": 8829.52,
+ "text": "is"
+ },
+ {
+ "id": 17294,
+ "start": 8829.52,
+ "end": 8829.88,
+ "text": "really"
+ },
+ {
+ "id": 17295,
+ "start": 8829.88,
+ "end": 8830.3,
+ "text": "behind"
+ },
+ {
+ "id": 17296,
+ "start": 8830.3,
+ "end": 8830.48,
+ "text": "it"
+ },
+ {
+ "id": 17297,
+ "start": 8830.48,
+ "end": 8830.88,
+ "text": "through"
+ },
+ {
+ "id": 17298,
+ "start": 8830.88,
+ "end": 8831.04,
+ "text": "your"
+ },
+ {
+ "id": 17299,
+ "start": 8831.04,
+ "end": 8831.8,
+ "text": "authorization"
+ },
+ {
+ "id": 17300,
+ "start": 8831.8,
+ "end": 8832.24,
+ "text": "process,"
+ },
+ {
+ "id": 17301,
+ "start": 8832.24,
+ "end": 8833.28,
+ "text": "step"
+ },
+ {
+ "id": 17302,
+ "start": 8833.28,
+ "end": 8833.52,
+ "text": "back."
+ },
+ {
+ "id": 17303,
+ "start": 8833.52,
+ "end": 8834.58,
+ "text": "Do"
+ },
+ {
+ "id": 17304,
+ "start": 8834.58,
+ "end": 8834.74,
+ "text": "you"
+ },
+ {
+ "id": 17305,
+ "start": 8834.74,
+ "end": 8835.04,
+ "text": "need"
+ },
+ {
+ "id": 17306,
+ "start": 8835.04,
+ "end": 8835.18,
+ "text": "to"
+ },
+ {
+ "id": 17307,
+ "start": 8835.18,
+ "end": 8835.4,
+ "text": "look"
+ },
+ {
+ "id": 17308,
+ "start": 8835.4,
+ "end": 8836.42,
+ "text": "behind"
+ },
+ {
+ "id": 17309,
+ "start": 8836.42,
+ "end": 8837.24,
+ "text": "shell"
+ },
+ {
+ "id": 17310,
+ "start": 8837.24,
+ "end": 8838.02,
+ "text": "corporations"
+ },
+ {
+ "id": 17311,
+ "start": 8838.02,
+ "end": 8838.2,
+ "text": "in"
+ },
+ {
+ "id": 17312,
+ "start": 8838.2,
+ "end": 8838.46,
+ "text": "order"
+ },
+ {
+ "id": 17313,
+ "start": 8838.46,
+ "end": 8838.56,
+ "text": "to"
+ },
+ {
+ "id": 17314,
+ "start": 8838.56,
+ "end": 8838.82,
+ "text": "find"
+ },
+ {
+ "id": 17315,
+ "start": 8838.82,
+ "end": 8839.12,
+ "text": "out"
+ },
+ {
+ "id": 17316,
+ "start": 8839.12,
+ "end": 8839.6,
+ "text": "who"
+ },
+ {
+ "id": 17317,
+ "start": 8839.6,
+ "end": 8839.8,
+ "text": "is"
+ },
+ {
+ "id": 17318,
+ "start": 8839.8,
+ "end": 8840.18,
+ "text": "really"
+ },
+ {
+ "id": 17319,
+ "start": 8840.18,
+ "end": 8841.38,
+ "text": "behind"
+ },
+ {
+ "id": 17320,
+ "start": 8841.38,
+ "end": 8842.38,
+ "text": "the"
+ },
+ {
+ "id": 17321,
+ "start": 8842.38,
+ "end": 8842.88,
+ "text": "content"
+ },
+ {
+ "id": 17322,
+ "start": 8842.88,
+ "end": 8843.12,
+ "text": "that's"
+ },
+ {
+ "id": 17323,
+ "start": 8843.12,
+ "end": 8843.36,
+ "text": "being"
+ },
+ {
+ "id": 17324,
+ "start": 8843.36,
+ "end": 8843.88,
+ "text": "posted."
+ },
+ {
+ "id": 17325,
+ "start": 8843.88,
+ "end": 8844.46,
+ "text": "And"
+ },
+ {
+ "id": 17326,
+ "start": 8844.46,
+ "end": 8844.58,
+ "text": "if"
+ },
+ {
+ "id": 17327,
+ "start": 8844.58,
+ "end": 8844.9,
+ "text": "you"
+ },
+ {
+ "id": 17328,
+ "start": 8844.9,
+ "end": 8845.36,
+ "text": "may"
+ },
+ {
+ "id": 17329,
+ "start": 8845.36,
+ "end": 8845.58,
+ "text": "need"
+ },
+ {
+ "id": 17330,
+ "start": 8845.58,
+ "end": 8845.68,
+ "text": "to"
+ },
+ {
+ "id": 17331,
+ "start": 8845.68,
+ "end": 8845.88,
+ "text": "look"
+ },
+ {
+ "id": 17332,
+ "start": 8845.88,
+ "end": 8846.26,
+ "text": "behind"
+ },
+ {
+ "id": 17333,
+ "start": 8846.26,
+ "end": 8846.4,
+ "text": "a"
+ },
+ {
+ "id": 17334,
+ "start": 8846.4,
+ "end": 8846.7,
+ "text": "shell"
+ },
+ {
+ "id": 17335,
+ "start": 8846.7,
+ "end": 8847.3,
+ "text": "Corporation,"
+ },
+ {
+ "id": 17336,
+ "start": 8847.3,
+ "end": 8847.73,
+ "text": "how"
+ },
+ {
+ "id": 17337,
+ "start": 8847.73,
+ "end": 8847.99,
+ "text": "go"
+ },
+ {
+ "id": 17338,
+ "start": 8847.99,
+ "end": 8848.27,
+ "text": "about"
+ },
+ {
+ "id": 17339,
+ "start": 8848.27,
+ "end": 8848.77,
+ "text": "doing"
+ },
+ {
+ "id": 17340,
+ "start": 8848.77,
+ "end": 8848.99,
+ "text": "that?"
+ },
+ {
+ "id": 17341,
+ "start": 8848.99,
+ "end": 8849.17,
+ "text": "How"
+ },
+ {
+ "id": 17342,
+ "start": 8849.17,
+ "end": 8849.37,
+ "text": "will"
+ },
+ {
+ "id": 17343,
+ "start": 8849.37,
+ "end": 8849.51,
+ "text": "you"
+ },
+ {
+ "id": 17344,
+ "start": 8849.51,
+ "end": 8849.69,
+ "text": "get"
+ },
+ {
+ "id": 17345,
+ "start": 8849.69,
+ "end": 8849.97,
+ "text": "back"
+ },
+ {
+ "id": 17346,
+ "start": 8849.97,
+ "end": 8850.13,
+ "text": "to"
+ },
+ {
+ "id": 17347,
+ "start": 8850.13,
+ "end": 8850.93,
+ "text": "the"
+ },
+ {
+ "id": 17348,
+ "start": 8850.93,
+ "end": 8851.33,
+ "text": "true"
+ },
+ {
+ "id": 17349,
+ "start": 8851.33,
+ "end": 8851.53,
+ "text": "what"
+ },
+ {
+ "id": 17350,
+ "start": 8851.53,
+ "end": 8851.85,
+ "text": "lawyers"
+ },
+ {
+ "id": 17351,
+ "start": 8851.85,
+ "end": 8852.03,
+ "text": "would"
+ },
+ {
+ "id": 17352,
+ "start": 8852.03,
+ "end": 8852.21,
+ "text": "call"
+ },
+ {
+ "id": 17353,
+ "start": 8852.21,
+ "end": 8852.91,
+ "text": "beneficial"
+ },
+ {
+ "id": 17354,
+ "start": 8852.91,
+ "end": 8853.37,
+ "text": "owner"
+ },
+ {
+ "id": 17355,
+ "start": 8853.37,
+ "end": 8854.05,
+ "text": "of"
+ },
+ {
+ "id": 17356,
+ "start": 8854.05,
+ "end": 8854.27,
+ "text": "the"
+ },
+ {
+ "id": 17357,
+ "start": 8854.27,
+ "end": 8854.71,
+ "text": "site"
+ },
+ {
+ "id": 17358,
+ "start": 8854.71,
+ "end": 8854.91,
+ "text": "that"
+ },
+ {
+ "id": 17359,
+ "start": 8854.91,
+ "end": 8855.09,
+ "text": "is"
+ },
+ {
+ "id": 17360,
+ "start": 8855.09,
+ "end": 8855.87,
+ "text": "putting"
+ },
+ {
+ "id": 17361,
+ "start": 8855.87,
+ "end": 8856.05,
+ "text": "out"
+ },
+ {
+ "id": 17362,
+ "start": 8856.05,
+ "end": 8856.45,
+ "text": "the"
+ },
+ {
+ "id": 17363,
+ "start": 8856.45,
+ "end": 8857.41,
+ "text": "political"
+ },
+ {
+ "id": 17364,
+ "start": 8857.41,
+ "end": 8859.04,
+ "text": "material."
+ },
+ {
+ "id": 17365,
+ "start": 8859.04,
+ "end": 8859.98,
+ "text": "Senator,"
+ },
+ {
+ "id": 17366,
+ "start": 8859.98,
+ "end": 8860.32,
+ "text": "are"
+ },
+ {
+ "id": 17367,
+ "start": 8860.32,
+ "end": 8860.42,
+ "text": "you"
+ },
+ {
+ "id": 17368,
+ "start": 8860.42,
+ "end": 8860.86,
+ "text": "referring"
+ },
+ {
+ "id": 17369,
+ "start": 8860.86,
+ "end": 8861.14,
+ "text": "to"
+ },
+ {
+ "id": 17370,
+ "start": 8861.14,
+ "end": 8861.42,
+ "text": "the"
+ },
+ {
+ "id": 17371,
+ "start": 8861.42,
+ "end": 8862.24,
+ "text": "verification"
+ },
+ {
+ "id": 17372,
+ "start": 8862.24,
+ "end": 8862.46,
+ "text": "of"
+ },
+ {
+ "id": 17373,
+ "start": 8862.46,
+ "end": 8862.88,
+ "text": "political"
+ },
+ {
+ "id": 17374,
+ "start": 8862.88,
+ "end": 8863,
+ "text": "and"
+ },
+ {
+ "id": 17375,
+ "start": 8863,
+ "end": 8863.2,
+ "text": "issue"
+ },
+ {
+ "id": 17376,
+ "start": 8863.2,
+ "end": 8863.42,
+ "text": "ads."
+ },
+ {
+ "id": 17377,
+ "start": 8863.42,
+ "end": 8863.78,
+ "text": "Yes,"
+ },
+ {
+ "id": 17378,
+ "start": 8863.78,
+ "end": 8864.52,
+ "text": "and"
+ },
+ {
+ "id": 17379,
+ "start": 8864.52,
+ "end": 8864.82,
+ "text": "before"
+ },
+ {
+ "id": 17380,
+ "start": 8864.82,
+ "end": 8865.06,
+ "text": "that,"
+ },
+ {
+ "id": 17381,
+ "start": 8865.06,
+ "end": 8865.52,
+ "text": "political"
+ },
+ {
+ "id": 17382,
+ "start": 8865.52,
+ "end": 8865.72,
+ "text": "ads,"
+ },
+ {
+ "id": 17383,
+ "start": 8865.72,
+ "end": 8865.94,
+ "text": "yes,"
+ },
+ {
+ "id": 17384,
+ "start": 8865.94,
+ "end": 8866.44,
+ "text": "yes."
+ },
+ {
+ "id": 17385,
+ "start": 8866.44,
+ "end": 8866.96,
+ "text": "So"
+ },
+ {
+ "id": 17386,
+ "start": 8866.96,
+ "end": 8867.08,
+ "text": "what"
+ },
+ {
+ "id": 17387,
+ "start": 8867.08,
+ "end": 8867.24,
+ "text": "we're"
+ },
+ {
+ "id": 17388,
+ "start": 8867.24,
+ "end": 8867.36,
+ "text": "going"
+ },
+ {
+ "id": 17389,
+ "start": 8867.36,
+ "end": 8867.42,
+ "text": "to"
+ },
+ {
+ "id": 17390,
+ "start": 8867.42,
+ "end": 8867.56,
+ "text": "do"
+ },
+ {
+ "id": 17391,
+ "start": 8867.56,
+ "end": 8867.96,
+ "text": "is"
+ },
+ {
+ "id": 17392,
+ "start": 8867.96,
+ "end": 8868.76,
+ "text": "require"
+ },
+ {
+ "id": 17393,
+ "start": 8868.76,
+ "end": 8869.2,
+ "text": "a"
+ },
+ {
+ "id": 17394,
+ "start": 8869.2,
+ "end": 8869.76,
+ "text": "valid"
+ },
+ {
+ "id": 17395,
+ "start": 8869.76,
+ "end": 8870.2,
+ "text": "government,"
+ },
+ {
+ "id": 17396,
+ "start": 8870.2,
+ "end": 8870.76,
+ "text": "identity"
+ },
+ {
+ "id": 17397,
+ "start": 8870.76,
+ "end": 8871.32,
+ "text": "and"
+ },
+ {
+ "id": 17398,
+ "start": 8871.32,
+ "end": 8871.54,
+ "text": "we're"
+ },
+ {
+ "id": 17399,
+ "start": 8871.54,
+ "end": 8871.72,
+ "text": "going"
+ },
+ {
+ "id": 17400,
+ "start": 8871.72,
+ "end": 8871.82,
+ "text": "to"
+ },
+ {
+ "id": 17401,
+ "start": 8871.82,
+ "end": 8872.5,
+ "text": "verify"
+ },
+ {
+ "id": 17402,
+ "start": 8872.5,
+ "end": 8873.12,
+ "text": "the"
+ },
+ {
+ "id": 17403,
+ "start": 8873.12,
+ "end": 8873.64,
+ "text": "location."
+ },
+ {
+ "id": 17404,
+ "start": 8873.64,
+ "end": 8874.28,
+ "text": "So"
+ },
+ {
+ "id": 17405,
+ "start": 8874.28,
+ "end": 8874.56,
+ "text": "we're"
+ },
+ {
+ "id": 17406,
+ "start": 8874.56,
+ "end": 8874.76,
+ "text": "going"
+ },
+ {
+ "id": 17407,
+ "start": 8874.76,
+ "end": 8874.86,
+ "text": "to"
+ },
+ {
+ "id": 17408,
+ "start": 8874.86,
+ "end": 8874.98,
+ "text": "do"
+ },
+ {
+ "id": 17409,
+ "start": 8874.98,
+ "end": 8875.2,
+ "text": "that."
+ },
+ {
+ "id": 17410,
+ "start": 8875.2,
+ "end": 8875.34,
+ "text": "So,"
+ },
+ {
+ "id": 17411,
+ "start": 8875.34,
+ "end": 8875.48,
+ "text": "that"
+ },
+ {
+ "id": 17412,
+ "start": 8875.48,
+ "end": 8875.62,
+ "text": "way,"
+ },
+ {
+ "id": 17413,
+ "start": 8875.62,
+ "end": 8875.98,
+ "text": "someone"
+ },
+ {
+ "id": 17414,
+ "start": 8875.98,
+ "end": 8876.38,
+ "text": "sitting"
+ },
+ {
+ "id": 17415,
+ "start": 8876.38,
+ "end": 8876.48,
+ "text": "in"
+ },
+ {
+ "id": 17416,
+ "start": 8876.48,
+ "end": 8876.78,
+ "text": "Russia,"
+ },
+ {
+ "id": 17417,
+ "start": 8876.78,
+ "end": 8877,
+ "text": "for"
+ },
+ {
+ "id": 17418,
+ "start": 8877,
+ "end": 8877.86,
+ "text": "example,"
+ },
+ {
+ "id": 17419,
+ "start": 8877.86,
+ "end": 8878.5,
+ "text": "couldn't"
+ },
+ {
+ "id": 17420,
+ "start": 8878.5,
+ "end": 8878.68,
+ "text": "say"
+ },
+ {
+ "id": 17421,
+ "start": 8878.68,
+ "end": 8878.84,
+ "text": "that"
+ },
+ {
+ "id": 17422,
+ "start": 8878.84,
+ "end": 8879.06,
+ "text": "they're"
+ },
+ {
+ "id": 17423,
+ "start": 8879.06,
+ "end": 8879.14,
+ "text": "in"
+ },
+ {
+ "id": 17424,
+ "start": 8879.14,
+ "end": 8879.58,
+ "text": "America"
+ },
+ {
+ "id": 17425,
+ "start": 8879.58,
+ "end": 8879.74,
+ "text": "and"
+ },
+ {
+ "id": 17426,
+ "start": 8879.74,
+ "end": 8880.14,
+ "text": "therefore"
+ },
+ {
+ "id": 17427,
+ "start": 8880.14,
+ "end": 8880.5,
+ "text": "able"
+ },
+ {
+ "id": 17428,
+ "start": 8880.5,
+ "end": 8880.68,
+ "text": "to"
+ },
+ {
+ "id": 17429,
+ "start": 8880.68,
+ "end": 8881.02,
+ "text": "run"
+ },
+ {
+ "id": 17430,
+ "start": 8881.02,
+ "end": 8881.1,
+ "text": "an"
+ },
+ {
+ "id": 17431,
+ "start": 8881.1,
+ "end": 8881.46,
+ "text": "election"
+ },
+ {
+ "id": 17432,
+ "start": 8881.46,
+ "end": 8881.74,
+ "text": "ad."
+ },
+ {
+ "id": 17433,
+ "start": 8881.74,
+ "end": 8882.08,
+ "text": "But"
+ },
+ {
+ "id": 17434,
+ "start": 8882.08,
+ "end": 8882.18,
+ "text": "if"
+ },
+ {
+ "id": 17435,
+ "start": 8882.18,
+ "end": 8882.32,
+ "text": "they"
+ },
+ {
+ "id": 17436,
+ "start": 8882.32,
+ "end": 8882.46,
+ "text": "were"
+ },
+ {
+ "id": 17437,
+ "start": 8882.46,
+ "end": 8882.72,
+ "text": "running"
+ },
+ {
+ "id": 17438,
+ "start": 8882.72,
+ "end": 8882.96,
+ "text": "through"
+ },
+ {
+ "id": 17439,
+ "start": 8882.96,
+ "end": 8883.04,
+ "text": "a"
+ },
+ {
+ "id": 17440,
+ "start": 8883.04,
+ "end": 8883.82,
+ "text": "corporation"
+ },
+ {
+ "id": 17441,
+ "start": 8883.82,
+ "end": 8884.5,
+ "text": "domiciled"
+ },
+ {
+ "id": 17442,
+ "start": 8884.5,
+ "end": 8885.28,
+ "text": "in"
+ },
+ {
+ "id": 17443,
+ "start": 8885.28,
+ "end": 8885.78,
+ "text": "Delaware,"
+ },
+ {
+ "id": 17444,
+ "start": 8885.78,
+ "end": 8885.94,
+ "text": "you"
+ },
+ {
+ "id": 17445,
+ "start": 8885.94,
+ "end": 8886.24,
+ "text": "wouldn't"
+ },
+ {
+ "id": 17446,
+ "start": 8886.24,
+ "end": 8886.48,
+ "text": "know"
+ },
+ {
+ "id": 17447,
+ "start": 8886.48,
+ "end": 8886.64,
+ "text": "that"
+ },
+ {
+ "id": 17448,
+ "start": 8886.64,
+ "end": 8886.8,
+ "text": "they"
+ },
+ {
+ "id": 17449,
+ "start": 8886.8,
+ "end": 8886.96,
+ "text": "were"
+ },
+ {
+ "id": 17450,
+ "start": 8886.96,
+ "end": 8887.38,
+ "text": "actually"
+ },
+ {
+ "id": 17451,
+ "start": 8887.38,
+ "end": 8887.44,
+ "text": "a"
+ },
+ {
+ "id": 17452,
+ "start": 8887.44,
+ "end": 8887.86,
+ "text": "Russian"
+ },
+ {
+ "id": 17453,
+ "start": 8887.86,
+ "end": 8888.96,
+ "text": "owner,"
+ },
+ {
+ "id": 17454,
+ "start": 8888.96,
+ "end": 8889.98,
+ "text": "Senator"
+ },
+ {
+ "id": 17455,
+ "start": 8889.98,
+ "end": 8890.96,
+ "text": "that's"
+ },
+ {
+ "id": 17456,
+ "start": 8890.96,
+ "end": 8891.36,
+ "text": "correct."
+ },
+ {
+ "id": 17457,
+ "start": 8891.36,
+ "end": 8891.88,
+ "text": "Okay,"
+ },
+ {
+ "id": 17458,
+ "start": 8891.88,
+ "end": 8892.18,
+ "text": "thank"
+ },
+ {
+ "id": 17459,
+ "start": 8892.18,
+ "end": 8892.3,
+ "text": "you,"
+ },
+ {
+ "id": 17460,
+ "start": 8892.3,
+ "end": 8892.5,
+ "text": "my"
+ },
+ {
+ "id": 17461,
+ "start": 8892.5,
+ "end": 8892.66,
+ "text": "time"
+ },
+ {
+ "id": 17462,
+ "start": 8892.66,
+ "end": 8892.8,
+ "text": "is"
+ },
+ {
+ "id": 17463,
+ "start": 8892.8,
+ "end": 8893.16,
+ "text": "expired"
+ },
+ {
+ "id": 17464,
+ "start": 8893.16,
+ "end": 8893.26,
+ "text": "and"
+ },
+ {
+ "id": 17465,
+ "start": 8893.26,
+ "end": 8893.3,
+ "text": "I"
+ },
+ {
+ "id": 17466,
+ "start": 8893.3,
+ "end": 8893.72,
+ "text": "appreciate"
+ },
+ {
+ "id": 17467,
+ "start": 8893.72,
+ "end": 8893.9,
+ "text": "the"
+ },
+ {
+ "id": 17468,
+ "start": 8893.9,
+ "end": 8894.5,
+ "text": "crate."
+ },
+ {
+ "id": 17469,
+ "start": 8894.5,
+ "end": 8894.64,
+ "text": "See"
+ },
+ {
+ "id": 17470,
+ "start": 8894.64,
+ "end": 8894.76,
+ "text": "the"
+ },
+ {
+ "id": 17471,
+ "start": 8894.76,
+ "end": 8894.98,
+ "text": "chair"
+ },
+ {
+ "id": 17472,
+ "start": 8894.98,
+ "end": 8895.1,
+ "text": "for"
+ },
+ {
+ "id": 17473,
+ "start": 8895.1,
+ "end": 8895.2,
+ "text": "the"
+ },
+ {
+ "id": 17474,
+ "start": 8895.2,
+ "end": 8895.46,
+ "text": "extra"
+ },
+ {
+ "id": 17475,
+ "start": 8895.46,
+ "end": 8895.82,
+ "text": "seconds."
+ },
+ {
+ "id": 17476,
+ "start": 8895.82,
+ "end": 8896.34,
+ "text": "Thank"
+ },
+ {
+ "id": 17477,
+ "start": 8896.34,
+ "end": 8896.44,
+ "text": "you,"
+ },
+ {
+ "id": 17478,
+ "start": 8896.44,
+ "end": 8896.7,
+ "text": "Mr"
+ },
+ {
+ "id": 17479,
+ "start": 8896.7,
+ "end": 8897.84,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 17480,
+ "start": 8897.84,
+ "end": 8898.78,
+ "text": "Thank"
+ },
+ {
+ "id": 17481,
+ "start": 8898.78,
+ "end": 8898.9,
+ "text": "you,"
+ },
+ {
+ "id": 17482,
+ "start": 8898.9,
+ "end": 8899.14,
+ "text": "Mr"
+ },
+ {
+ "id": 17483,
+ "start": 8899.14,
+ "end": 8899.42,
+ "text": "Chairman."
+ },
+ {
+ "id": 17484,
+ "start": 8899.42,
+ "end": 8900.2,
+ "text": "Mr"
+ },
+ {
+ "id": 17485,
+ "start": 8900.2,
+ "end": 8900.56,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 17486,
+ "start": 8900.56,
+ "end": 8900.64,
+ "text": "I"
+ },
+ {
+ "id": 17487,
+ "start": 8900.64,
+ "end": 8900.9,
+ "text": "wanted"
+ },
+ {
+ "id": 17488,
+ "start": 8900.9,
+ "end": 8901,
+ "text": "to"
+ },
+ {
+ "id": 17489,
+ "start": 8901,
+ "end": 8901.3,
+ "text": "follow"
+ },
+ {
+ "id": 17490,
+ "start": 8901.3,
+ "end": 8901.42,
+ "text": "up"
+ },
+ {
+ "id": 17491,
+ "start": 8901.42,
+ "end": 8901.98,
+ "text": "on"
+ },
+ {
+ "id": 17492,
+ "start": 8901.98,
+ "end": 8902.42,
+ "text": "a"
+ },
+ {
+ "id": 17493,
+ "start": 8902.42,
+ "end": 8902.96,
+ "text": "statement"
+ },
+ {
+ "id": 17494,
+ "start": 8902.96,
+ "end": 8903.1,
+ "text": "that"
+ },
+ {
+ "id": 17495,
+ "start": 8903.1,
+ "end": 8903.2,
+ "text": "you"
+ },
+ {
+ "id": 17496,
+ "start": 8903.2,
+ "end": 8903.42,
+ "text": "made"
+ },
+ {
+ "id": 17497,
+ "start": 8903.42,
+ "end": 8903.96,
+ "text": "shortly"
+ },
+ {
+ "id": 17498,
+ "start": 8903.96,
+ "end": 8904.26,
+ "text": "before"
+ },
+ {
+ "id": 17499,
+ "start": 8904.26,
+ "end": 8904.4,
+ "text": "the"
+ },
+ {
+ "id": 17500,
+ "start": 8904.4,
+ "end": 8904.72,
+ "text": "break."
+ },
+ {
+ "id": 17501,
+ "start": 8904.72,
+ "end": 8904.94,
+ "text": "Just"
+ },
+ {
+ "id": 17502,
+ "start": 8904.94,
+ "end": 8905.04,
+ "text": "a"
+ },
+ {
+ "id": 17503,
+ "start": 8905.04,
+ "end": 8905.26,
+ "text": "few"
+ },
+ {
+ "id": 17504,
+ "start": 8905.26,
+ "end": 8905.54,
+ "text": "minutes"
+ },
+ {
+ "id": 17505,
+ "start": 8905.54,
+ "end": 8906.34,
+ "text": "ago."
+ },
+ {
+ "id": 17506,
+ "start": 8906.34,
+ "end": 8906.94,
+ "text": "You"
+ },
+ {
+ "id": 17507,
+ "start": 8906.94,
+ "end": 8907.16,
+ "text": "said"
+ },
+ {
+ "id": 17508,
+ "start": 8907.16,
+ "end": 8907.28,
+ "text": "that"
+ },
+ {
+ "id": 17509,
+ "start": 8907.28,
+ "end": 8907.44,
+ "text": "there"
+ },
+ {
+ "id": 17510,
+ "start": 8907.44,
+ "end": 8907.54,
+ "text": "are"
+ },
+ {
+ "id": 17511,
+ "start": 8907.54,
+ "end": 8907.68,
+ "text": "some"
+ },
+ {
+ "id": 17512,
+ "start": 8907.68,
+ "end": 8908.32,
+ "text": "categories"
+ },
+ {
+ "id": 17513,
+ "start": 8908.32,
+ "end": 8908.44,
+ "text": "of"
+ },
+ {
+ "id": 17514,
+ "start": 8908.44,
+ "end": 8908.72,
+ "text": "speech."
+ },
+ {
+ "id": 17515,
+ "start": 8908.72,
+ "end": 8908.94,
+ "text": "Some"
+ },
+ {
+ "id": 17516,
+ "start": 8908.94,
+ "end": 8909.22,
+ "text": "types"
+ },
+ {
+ "id": 17517,
+ "start": 8909.22,
+ "end": 8909.36,
+ "text": "of"
+ },
+ {
+ "id": 17518,
+ "start": 8909.36,
+ "end": 8909.88,
+ "text": "content"
+ },
+ {
+ "id": 17519,
+ "start": 8909.88,
+ "end": 8910.66,
+ "text": "that"
+ },
+ {
+ "id": 17520,
+ "start": 8910.66,
+ "end": 8911.04,
+ "text": "Facebook"
+ },
+ {
+ "id": 17521,
+ "start": 8911.04,
+ "end": 8911.28,
+ "text": "would"
+ },
+ {
+ "id": 17522,
+ "start": 8911.28,
+ "end": 8911.52,
+ "text": "never"
+ },
+ {
+ "id": 17523,
+ "start": 8911.52,
+ "end": 8911.7,
+ "text": "want"
+ },
+ {
+ "id": 17524,
+ "start": 8911.7,
+ "end": 8911.8,
+ "text": "to"
+ },
+ {
+ "id": 17525,
+ "start": 8911.8,
+ "end": 8911.94,
+ "text": "have"
+ },
+ {
+ "id": 17526,
+ "start": 8911.94,
+ "end": 8912.1,
+ "text": "any"
+ },
+ {
+ "id": 17527,
+ "start": 8912.1,
+ "end": 8912.32,
+ "text": "part"
+ },
+ {
+ "id": 17528,
+ "start": 8912.32,
+ "end": 8912.4,
+ "text": "of"
+ },
+ {
+ "id": 17529,
+ "start": 8912.4,
+ "end": 8912.58,
+ "text": "and"
+ },
+ {
+ "id": 17530,
+ "start": 8912.58,
+ "end": 8912.96,
+ "text": "it"
+ },
+ {
+ "id": 17531,
+ "start": 8912.96,
+ "end": 8913.18,
+ "text": "takes"
+ },
+ {
+ "id": 17532,
+ "start": 8913.18,
+ "end": 8913.68,
+ "text": "active"
+ },
+ {
+ "id": 17533,
+ "start": 8913.68,
+ "end": 8914.14,
+ "text": "steps"
+ },
+ {
+ "id": 17534,
+ "start": 8914.14,
+ "end": 8914.94,
+ "text": "to"
+ },
+ {
+ "id": 17535,
+ "start": 8914.94,
+ "end": 8915.34,
+ "text": "avoid"
+ },
+ {
+ "id": 17536,
+ "start": 8915.34,
+ "end": 8915.98,
+ "text": "disseminating"
+ },
+ {
+ "id": 17537,
+ "start": 8915.98,
+ "end": 8916.42,
+ "text": "including"
+ },
+ {
+ "id": 17538,
+ "start": 8916.42,
+ "end": 8916.72,
+ "text": "hate"
+ },
+ {
+ "id": 17539,
+ "start": 8916.72,
+ "end": 8917.04,
+ "text": "speech,"
+ },
+ {
+ "id": 17540,
+ "start": 8917.04,
+ "end": 8918.8,
+ "text": "nudity"
+ },
+ {
+ "id": 17541,
+ "start": 8918.8,
+ "end": 8919.72,
+ "text": "racist"
+ },
+ {
+ "id": 17542,
+ "start": 8919.72,
+ "end": 8920.22,
+ "text": "speech."
+ },
+ {
+ "id": 17543,
+ "start": 8920.22,
+ "end": 8920.86,
+ "text": "I"
+ },
+ {
+ "id": 17544,
+ "start": 8920.86,
+ "end": 8921.62,
+ "text": "assume"
+ },
+ {
+ "id": 17545,
+ "start": 8921.62,
+ "end": 8921.8,
+ "text": "you"
+ },
+ {
+ "id": 17546,
+ "start": 8921.8,
+ "end": 8922.1,
+ "text": "also"
+ },
+ {
+ "id": 17547,
+ "start": 8922.1,
+ "end": 8922.34,
+ "text": "met"
+ },
+ {
+ "id": 17548,
+ "start": 8922.34,
+ "end": 8923.2,
+ "text": "terrorist"
+ },
+ {
+ "id": 17549,
+ "start": 8923.2,
+ "end": 8924.06,
+ "text": "acts"
+ },
+ {
+ "id": 17550,
+ "start": 8924.06,
+ "end": 8925.06,
+ "text": "threats"
+ },
+ {
+ "id": 17551,
+ "start": 8925.06,
+ "end": 8925.14,
+ "text": "of"
+ },
+ {
+ "id": 17552,
+ "start": 8925.14,
+ "end": 8925.46,
+ "text": "physical"
+ },
+ {
+ "id": 17553,
+ "start": 8925.46,
+ "end": 8925.8,
+ "text": "violence."
+ },
+ {
+ "id": 17554,
+ "start": 8925.8,
+ "end": 8926.04,
+ "text": "Things"
+ },
+ {
+ "id": 17555,
+ "start": 8926.04,
+ "end": 8926.2,
+ "text": "like"
+ },
+ {
+ "id": 17556,
+ "start": 8926.2,
+ "end": 8927.08,
+ "text": "that"
+ },
+ {
+ "id": 17557,
+ "start": 8927.08,
+ "end": 8928.16,
+ "text": "beyond"
+ },
+ {
+ "id": 17558,
+ "start": 8928.16,
+ "end": 8928.44,
+ "text": "that"
+ },
+ {
+ "id": 17559,
+ "start": 8928.44,
+ "end": 8928.88,
+ "text": "would"
+ },
+ {
+ "id": 17560,
+ "start": 8928.88,
+ "end": 8929.02,
+ "text": "you"
+ },
+ {
+ "id": 17561,
+ "start": 8929.02,
+ "end": 8929.34,
+ "text": "agree"
+ },
+ {
+ "id": 17562,
+ "start": 8929.34,
+ "end": 8929.52,
+ "text": "that"
+ },
+ {
+ "id": 17563,
+ "start": 8929.52,
+ "end": 8930.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 17564,
+ "start": 8930.26,
+ "end": 8931.32,
+ "text": "ought"
+ },
+ {
+ "id": 17565,
+ "start": 8931.32,
+ "end": 8931.68,
+ "text": "not"
+ },
+ {
+ "id": 17566,
+ "start": 8931.68,
+ "end": 8931.92,
+ "text": "be"
+ },
+ {
+ "id": 17567,
+ "start": 8931.92,
+ "end": 8932.22,
+ "text": "putting"
+ },
+ {
+ "id": 17568,
+ "start": 8932.22,
+ "end": 8932.36,
+ "text": "its"
+ },
+ {
+ "id": 17569,
+ "start": 8932.36,
+ "end": 8932.56,
+ "text": "thumb"
+ },
+ {
+ "id": 17570,
+ "start": 8932.56,
+ "end": 8932.66,
+ "text": "on"
+ },
+ {
+ "id": 17571,
+ "start": 8932.66,
+ "end": 8932.78,
+ "text": "the"
+ },
+ {
+ "id": 17572,
+ "start": 8932.78,
+ "end": 8933.18,
+ "text": "scale"
+ },
+ {
+ "id": 17573,
+ "start": 8933.18,
+ "end": 8933.66,
+ "text": "with"
+ },
+ {
+ "id": 17574,
+ "start": 8933.66,
+ "end": 8934.04,
+ "text": "regard"
+ },
+ {
+ "id": 17575,
+ "start": 8934.04,
+ "end": 8934.12,
+ "text": "to"
+ },
+ {
+ "id": 17576,
+ "start": 8934.12,
+ "end": 8934.3,
+ "text": "the"
+ },
+ {
+ "id": 17577,
+ "start": 8934.3,
+ "end": 8934.78,
+ "text": "content"
+ },
+ {
+ "id": 17578,
+ "start": 8934.78,
+ "end": 8934.92,
+ "text": "of"
+ },
+ {
+ "id": 17579,
+ "start": 8934.92,
+ "end": 8935.24,
+ "text": "speech."
+ },
+ {
+ "id": 17580,
+ "start": 8935.24,
+ "end": 8936,
+ "text": "Assuming"
+ },
+ {
+ "id": 17581,
+ "start": 8936,
+ "end": 8936.1,
+ "text": "it"
+ },
+ {
+ "id": 17582,
+ "start": 8936.1,
+ "end": 8936.32,
+ "text": "fits"
+ },
+ {
+ "id": 17583,
+ "start": 8936.32,
+ "end": 8936.48,
+ "text": "out"
+ },
+ {
+ "id": 17584,
+ "start": 8936.48,
+ "end": 8936.58,
+ "text": "of"
+ },
+ {
+ "id": 17585,
+ "start": 8936.58,
+ "end": 8936.76,
+ "text": "one"
+ },
+ {
+ "id": 17586,
+ "start": 8936.76,
+ "end": 8936.82,
+ "text": "of"
+ },
+ {
+ "id": 17587,
+ "start": 8936.82,
+ "end": 8937,
+ "text": "those"
+ },
+ {
+ "id": 17588,
+ "start": 8937,
+ "end": 8937.54,
+ "text": "categories,"
+ },
+ {
+ "id": 17589,
+ "start": 8937.54,
+ "end": 8938.34,
+ "text": "that's"
+ },
+ {
+ "id": 17590,
+ "start": 8938.34,
+ "end": 8940.46,
+ "text": "prohibited,"
+ },
+ {
+ "id": 17591,
+ "start": 8940.46,
+ "end": 8941.36,
+ "text": "Senator."
+ },
+ {
+ "id": 17592,
+ "start": 8941.36,
+ "end": 8941.82,
+ "text": "Yes,"
+ },
+ {
+ "id": 17593,
+ "start": 8941.82,
+ "end": 8942.26,
+ "text": "there"
+ },
+ {
+ "id": 17594,
+ "start": 8942.26,
+ "end": 8942.42,
+ "text": "are"
+ },
+ {
+ "id": 17595,
+ "start": 8942.42,
+ "end": 8942.9,
+ "text": "generally"
+ },
+ {
+ "id": 17596,
+ "start": 8942.9,
+ "end": 8943.18,
+ "text": "two"
+ },
+ {
+ "id": 17597,
+ "start": 8943.18,
+ "end": 8943.78,
+ "text": "categories"
+ },
+ {
+ "id": 17598,
+ "start": 8943.78,
+ "end": 8943.94,
+ "text": "of"
+ },
+ {
+ "id": 17599,
+ "start": 8943.94,
+ "end": 8944.38,
+ "text": "content"
+ },
+ {
+ "id": 17600,
+ "start": 8944.38,
+ "end": 8944.94,
+ "text": "that"
+ },
+ {
+ "id": 17601,
+ "start": 8944.94,
+ "end": 8945.14,
+ "text": "we're"
+ },
+ {
+ "id": 17602,
+ "start": 8945.14,
+ "end": 8945.38,
+ "text": "very"
+ },
+ {
+ "id": 17603,
+ "start": 8945.38,
+ "end": 8945.64,
+ "text": "worried"
+ },
+ {
+ "id": 17604,
+ "start": 8945.64,
+ "end": 8945.86,
+ "text": "about"
+ },
+ {
+ "id": 17605,
+ "start": 8945.86,
+ "end": 8946.48,
+ "text": "one"
+ },
+ {
+ "id": 17606,
+ "start": 8946.48,
+ "end": 8946.76,
+ "text": "are"
+ },
+ {
+ "id": 17607,
+ "start": 8946.76,
+ "end": 8947.08,
+ "text": "things"
+ },
+ {
+ "id": 17608,
+ "start": 8947.08,
+ "end": 8947.36,
+ "text": "that"
+ },
+ {
+ "id": 17609,
+ "start": 8947.36,
+ "end": 8947.62,
+ "text": "could"
+ },
+ {
+ "id": 17610,
+ "start": 8947.62,
+ "end": 8947.94,
+ "text": "cause"
+ },
+ {
+ "id": 17611,
+ "start": 8947.94,
+ "end": 8948.26,
+ "text": "real"
+ },
+ {
+ "id": 17612,
+ "start": 8948.26,
+ "end": 8948.56,
+ "text": "world"
+ },
+ {
+ "id": 17613,
+ "start": 8948.56,
+ "end": 8948.88,
+ "text": "harm."
+ },
+ {
+ "id": 17614,
+ "start": 8948.88,
+ "end": 8949.42,
+ "text": "So"
+ },
+ {
+ "id": 17615,
+ "start": 8949.42,
+ "end": 8950.02,
+ "text": "terrorism"
+ },
+ {
+ "id": 17616,
+ "start": 8950.02,
+ "end": 8950.46,
+ "text": "certainly"
+ },
+ {
+ "id": 17617,
+ "start": 8950.46,
+ "end": 8950.68,
+ "text": "fits"
+ },
+ {
+ "id": 17618,
+ "start": 8950.68,
+ "end": 8950.9,
+ "text": "into"
+ },
+ {
+ "id": 17619,
+ "start": 8950.9,
+ "end": 8951.16,
+ "text": "that"
+ },
+ {
+ "id": 17620,
+ "start": 8951.16,
+ "end": 8952.28,
+ "text": "self"
+ },
+ {
+ "id": 17621,
+ "start": 8952.28,
+ "end": 8952.58,
+ "text": "harm"
+ },
+ {
+ "id": 17622,
+ "start": 8952.58,
+ "end": 8952.82,
+ "text": "fits"
+ },
+ {
+ "id": 17623,
+ "start": 8952.82,
+ "end": 8953.04,
+ "text": "into"
+ },
+ {
+ "id": 17624,
+ "start": 8953.04,
+ "end": 8953.84,
+ "text": "that."
+ },
+ {
+ "id": 17625,
+ "start": 8953.84,
+ "end": 8954.4,
+ "text": "I"
+ },
+ {
+ "id": 17626,
+ "start": 8954.4,
+ "end": 8954.68,
+ "text": "would"
+ },
+ {
+ "id": 17627,
+ "start": 8954.68,
+ "end": 8954.96,
+ "text": "consider"
+ },
+ {
+ "id": 17628,
+ "start": 8954.96,
+ "end": 8955.3,
+ "text": "election"
+ },
+ {
+ "id": 17629,
+ "start": 8955.3,
+ "end": 8955.9,
+ "text": "interference"
+ },
+ {
+ "id": 17630,
+ "start": 8955.9,
+ "end": 8956.06,
+ "text": "to"
+ },
+ {
+ "id": 17631,
+ "start": 8956.06,
+ "end": 8956.22,
+ "text": "fit"
+ },
+ {
+ "id": 17632,
+ "start": 8956.22,
+ "end": 8956.48,
+ "text": "into"
+ },
+ {
+ "id": 17633,
+ "start": 8956.48,
+ "end": 8956.7,
+ "text": "that,"
+ },
+ {
+ "id": 17634,
+ "start": 8956.7,
+ "end": 8957.16,
+ "text": "and"
+ },
+ {
+ "id": 17635,
+ "start": 8957.16,
+ "end": 8957.34,
+ "text": "those"
+ },
+ {
+ "id": 17636,
+ "start": 8957.34,
+ "end": 8957.5,
+ "text": "are"
+ },
+ {
+ "id": 17637,
+ "start": 8957.5,
+ "end": 8957.6,
+ "text": "the"
+ },
+ {
+ "id": 17638,
+ "start": 8957.6,
+ "end": 8957.8,
+ "text": "types"
+ },
+ {
+ "id": 17639,
+ "start": 8957.8,
+ "end": 8957.9,
+ "text": "of"
+ },
+ {
+ "id": 17640,
+ "start": 8957.9,
+ "end": 8958.14,
+ "text": "things"
+ },
+ {
+ "id": 17641,
+ "start": 8958.14,
+ "end": 8958.34,
+ "text": "that"
+ },
+ {
+ "id": 17642,
+ "start": 8958.34,
+ "end": 8958.54,
+ "text": "we"
+ },
+ {
+ "id": 17643,
+ "start": 8958.54,
+ "end": 8959.6,
+ "text": "I"
+ },
+ {
+ "id": 17644,
+ "start": 8959.6,
+ "end": 8959.76,
+ "text": "don't"
+ },
+ {
+ "id": 17645,
+ "start": 8959.76,
+ "end": 8959.98,
+ "text": "really"
+ },
+ {
+ "id": 17646,
+ "start": 8959.98,
+ "end": 8960.24,
+ "text": "consider"
+ },
+ {
+ "id": 17647,
+ "start": 8960.24,
+ "end": 8960.46,
+ "text": "there"
+ },
+ {
+ "id": 17648,
+ "start": 8960.46,
+ "end": 8960.54,
+ "text": "to"
+ },
+ {
+ "id": 17649,
+ "start": 8960.54,
+ "end": 8960.64,
+ "text": "be"
+ },
+ {
+ "id": 17650,
+ "start": 8960.64,
+ "end": 8960.8,
+ "text": "much"
+ },
+ {
+ "id": 17651,
+ "start": 8960.8,
+ "end": 8961.34,
+ "text": "discussion"
+ },
+ {
+ "id": 17652,
+ "start": 8961.34,
+ "end": 8961.6,
+ "text": "around"
+ },
+ {
+ "id": 17653,
+ "start": 8961.6,
+ "end": 8961.82,
+ "text": "whether"
+ },
+ {
+ "id": 17654,
+ "start": 8961.82,
+ "end": 8962.02,
+ "text": "those"
+ },
+ {
+ "id": 17655,
+ "start": 8962.02,
+ "end": 8962.2,
+ "text": "are"
+ },
+ {
+ "id": 17656,
+ "start": 8962.2,
+ "end": 8962.36,
+ "text": "good"
+ },
+ {
+ "id": 17657,
+ "start": 8962.36,
+ "end": 8962.44,
+ "text": "or"
+ },
+ {
+ "id": 17658,
+ "start": 8962.44,
+ "end": 8963.28,
+ "text": "bad?"
+ },
+ {
+ "id": 17659,
+ "start": 8963.28,
+ "end": 8963.78,
+ "text": "Yeah,"
+ },
+ {
+ "id": 17660,
+ "start": 8963.78,
+ "end": 8963.86,
+ "text": "and"
+ },
+ {
+ "id": 17661,
+ "start": 8963.86,
+ "end": 8963.98,
+ "text": "I'm"
+ },
+ {
+ "id": 17662,
+ "start": 8963.98,
+ "end": 8964.14,
+ "text": "not"
+ },
+ {
+ "id": 17663,
+ "start": 8964.14,
+ "end": 8964.54,
+ "text": "disputing"
+ },
+ {
+ "id": 17664,
+ "start": 8964.54,
+ "end": 8964.74,
+ "text": "that."
+ },
+ {
+ "id": 17665,
+ "start": 8964.74,
+ "end": 8965.72,
+ "text": "What"
+ },
+ {
+ "id": 17666,
+ "start": 8965.72,
+ "end": 8965.86,
+ "text": "I'm"
+ },
+ {
+ "id": 17667,
+ "start": 8965.86,
+ "end": 8966.16,
+ "text": "asking"
+ },
+ {
+ "id": 17668,
+ "start": 8966.16,
+ "end": 8966.32,
+ "text": "is"
+ },
+ {
+ "id": 17669,
+ "start": 8966.32,
+ "end": 8966.86,
+ "text": "once"
+ },
+ {
+ "id": 17670,
+ "start": 8966.86,
+ "end": 8967.04,
+ "text": "you"
+ },
+ {
+ "id": 17671,
+ "start": 8967.04,
+ "end": 8967.2,
+ "text": "get"
+ },
+ {
+ "id": 17672,
+ "start": 8967.2,
+ "end": 8967.62,
+ "text": "beyond"
+ },
+ {
+ "id": 17673,
+ "start": 8967.62,
+ "end": 8967.86,
+ "text": "those"
+ },
+ {
+ "id": 17674,
+ "start": 8967.86,
+ "end": 8968.4,
+ "text": "categories"
+ },
+ {
+ "id": 17675,
+ "start": 8968.4,
+ "end": 8968.58,
+ "text": "of"
+ },
+ {
+ "id": 17676,
+ "start": 8968.58,
+ "end": 8968.84,
+ "text": "things"
+ },
+ {
+ "id": 17677,
+ "start": 8968.84,
+ "end": 8969,
+ "text": "that"
+ },
+ {
+ "id": 17678,
+ "start": 8969,
+ "end": 8969.16,
+ "text": "are"
+ },
+ {
+ "id": 17679,
+ "start": 8969.16,
+ "end": 8969.62,
+ "text": "prohibited"
+ },
+ {
+ "id": 17680,
+ "start": 8969.62,
+ "end": 8969.76,
+ "text": "and"
+ },
+ {
+ "id": 17681,
+ "start": 8969.76,
+ "end": 8970.02,
+ "text": "should"
+ },
+ {
+ "id": 17682,
+ "start": 8970.02,
+ "end": 8971.2,
+ "text": "be,"
+ },
+ {
+ "id": 17683,
+ "start": 8971.2,
+ "end": 8972.26,
+ "text": "is"
+ },
+ {
+ "id": 17684,
+ "start": 8972.26,
+ "end": 8972.52,
+ "text": "it"
+ },
+ {
+ "id": 17685,
+ "start": 8972.52,
+ "end": 8973.08,
+ "text": "Facebook's"
+ },
+ {
+ "id": 17686,
+ "start": 8973.08,
+ "end": 8973.46,
+ "text": "position"
+ },
+ {
+ "id": 17687,
+ "start": 8973.46,
+ "end": 8973.58,
+ "text": "that"
+ },
+ {
+ "id": 17688,
+ "start": 8973.58,
+ "end": 8973.68,
+ "text": "it"
+ },
+ {
+ "id": 17689,
+ "start": 8973.68,
+ "end": 8973.88,
+ "text": "should"
+ },
+ {
+ "id": 17690,
+ "start": 8973.88,
+ "end": 8974.08,
+ "text": "not"
+ },
+ {
+ "id": 17691,
+ "start": 8974.08,
+ "end": 8974.2,
+ "text": "be"
+ },
+ {
+ "id": 17692,
+ "start": 8974.2,
+ "end": 8974.48,
+ "text": "putting"
+ },
+ {
+ "id": 17693,
+ "start": 8974.48,
+ "end": 8974.56,
+ "text": "it"
+ },
+ {
+ "id": 17694,
+ "start": 8974.56,
+ "end": 8974.84,
+ "text": "thumb"
+ },
+ {
+ "id": 17695,
+ "start": 8974.84,
+ "end": 8974.94,
+ "text": "on"
+ },
+ {
+ "id": 17696,
+ "start": 8974.94,
+ "end": 8975.08,
+ "text": "the"
+ },
+ {
+ "id": 17697,
+ "start": 8975.08,
+ "end": 8975.36,
+ "text": "scale."
+ },
+ {
+ "id": 17698,
+ "start": 8975.36,
+ "end": 8975.48,
+ "text": "It"
+ },
+ {
+ "id": 17699,
+ "start": 8975.48,
+ "end": 8975.74,
+ "text": "should"
+ },
+ {
+ "id": 17700,
+ "start": 8975.74,
+ "end": 8975.96,
+ "text": "not"
+ },
+ {
+ "id": 17701,
+ "start": 8975.96,
+ "end": 8976.2,
+ "text": "be"
+ },
+ {
+ "id": 17702,
+ "start": 8976.2,
+ "end": 8977.02,
+ "text": "favoring"
+ },
+ {
+ "id": 17703,
+ "start": 8977.02,
+ "end": 8977.18,
+ "text": "or"
+ },
+ {
+ "id": 17704,
+ "start": 8977.18,
+ "end": 8977.82,
+ "text": "Disfavoring"
+ },
+ {
+ "id": 17705,
+ "start": 8977.82,
+ "end": 8978.16,
+ "text": "speech"
+ },
+ {
+ "id": 17706,
+ "start": 8978.16,
+ "end": 8978.44,
+ "text": "based"
+ },
+ {
+ "id": 17707,
+ "start": 8978.44,
+ "end": 8978.56,
+ "text": "on"
+ },
+ {
+ "id": 17708,
+ "start": 8978.56,
+ "end": 8978.72,
+ "text": "his"
+ },
+ {
+ "id": 17709,
+ "start": 8978.72,
+ "end": 8979.16,
+ "text": "content"
+ },
+ {
+ "id": 17710,
+ "start": 8979.16,
+ "end": 8979.46,
+ "text": "based"
+ },
+ {
+ "id": 17711,
+ "start": 8979.46,
+ "end": 8979.64,
+ "text": "on"
+ },
+ {
+ "id": 17712,
+ "start": 8979.64,
+ "end": 8980,
+ "text": "the"
+ },
+ {
+ "id": 17713,
+ "start": 8980,
+ "end": 8980.52,
+ "text": "viewpoint"
+ },
+ {
+ "id": 17714,
+ "start": 8980.52,
+ "end": 8980.62,
+ "text": "of"
+ },
+ {
+ "id": 17715,
+ "start": 8980.62,
+ "end": 8980.8,
+ "text": "that"
+ },
+ {
+ "id": 17716,
+ "start": 8980.8,
+ "end": 8981.92,
+ "text": "speech."
+ },
+ {
+ "id": 17717,
+ "start": 8981.92,
+ "end": 8983.08,
+ "text": "Senator"
+ },
+ {
+ "id": 17718,
+ "start": 8983.08,
+ "end": 8983.26,
+ "text": "in"
+ },
+ {
+ "id": 17719,
+ "start": 8983.26,
+ "end": 8983.64,
+ "text": "general"
+ },
+ {
+ "id": 17720,
+ "start": 8983.64,
+ "end": 8983.9,
+ "text": "that's"
+ },
+ {
+ "id": 17721,
+ "start": 8983.9,
+ "end": 8984.08,
+ "text": "our"
+ },
+ {
+ "id": 17722,
+ "start": 8984.08,
+ "end": 8984.54,
+ "text": "position."
+ },
+ {
+ "id": 17723,
+ "start": 8984.54,
+ "end": 8985.5,
+ "text": "What"
+ },
+ {
+ "id": 17724,
+ "start": 8985.5,
+ "end": 8986.48,
+ "text": "one"
+ },
+ {
+ "id": 17725,
+ "start": 8986.48,
+ "end": 8986.56,
+ "text": "of"
+ },
+ {
+ "id": 17726,
+ "start": 8986.56,
+ "end": 8986.66,
+ "text": "the"
+ },
+ {
+ "id": 17727,
+ "start": 8986.66,
+ "end": 8986.88,
+ "text": "things"
+ },
+ {
+ "id": 17728,
+ "start": 8986.88,
+ "end": 8987.04,
+ "text": "that"
+ },
+ {
+ "id": 17729,
+ "start": 8987.04,
+ "end": 8987.18,
+ "text": "is"
+ },
+ {
+ "id": 17730,
+ "start": 8987.18,
+ "end": 8987.46,
+ "text": "really"
+ },
+ {
+ "id": 17731,
+ "start": 8987.46,
+ "end": 8987.88,
+ "text": "important,"
+ },
+ {
+ "id": 17732,
+ "start": 8987.88,
+ "end": 8988.16,
+ "text": "though,"
+ },
+ {
+ "id": 17733,
+ "start": 8988.16,
+ "end": 8988.66,
+ "text": "is"
+ },
+ {
+ "id": 17734,
+ "start": 8988.66,
+ "end": 8988.88,
+ "text": "that"
+ },
+ {
+ "id": 17735,
+ "start": 8988.88,
+ "end": 8989.12,
+ "text": "in"
+ },
+ {
+ "id": 17736,
+ "start": 8989.12,
+ "end": 8989.4,
+ "text": "order"
+ },
+ {
+ "id": 17737,
+ "start": 8989.4,
+ "end": 8989.5,
+ "text": "to"
+ },
+ {
+ "id": 17738,
+ "start": 8989.5,
+ "end": 8989.74,
+ "text": "create"
+ },
+ {
+ "id": 17739,
+ "start": 8989.74,
+ "end": 8989.8,
+ "text": "a"
+ },
+ {
+ "id": 17740,
+ "start": 8989.8,
+ "end": 8990.24,
+ "text": "service"
+ },
+ {
+ "id": 17741,
+ "start": 8990.24,
+ "end": 8990.68,
+ "text": "where"
+ },
+ {
+ "id": 17742,
+ "start": 8990.68,
+ "end": 8991.14,
+ "text": "everyone"
+ },
+ {
+ "id": 17743,
+ "start": 8991.14,
+ "end": 8991.32,
+ "text": "has"
+ },
+ {
+ "id": 17744,
+ "start": 8991.32,
+ "end": 8991.4,
+ "text": "a"
+ },
+ {
+ "id": 17745,
+ "start": 8991.4,
+ "end": 8991.74,
+ "text": "voice?"
+ },
+ {
+ "id": 17746,
+ "start": 8991.74,
+ "end": 8992.84,
+ "text": "We"
+ },
+ {
+ "id": 17747,
+ "start": 8992.84,
+ "end": 8993.12,
+ "text": "also"
+ },
+ {
+ "id": 17748,
+ "start": 8993.12,
+ "end": 8993.3,
+ "text": "need"
+ },
+ {
+ "id": 17749,
+ "start": 8993.3,
+ "end": 8993.38,
+ "text": "to"
+ },
+ {
+ "id": 17750,
+ "start": 8993.38,
+ "end": 8993.52,
+ "text": "make"
+ },
+ {
+ "id": 17751,
+ "start": 8993.52,
+ "end": 8993.68,
+ "text": "sure"
+ },
+ {
+ "id": 17752,
+ "start": 8993.68,
+ "end": 8993.84,
+ "text": "that"
+ },
+ {
+ "id": 17753,
+ "start": 8993.84,
+ "end": 8994.08,
+ "text": "people"
+ },
+ {
+ "id": 17754,
+ "start": 8994.08,
+ "end": 8994.38,
+ "text": "aren't"
+ },
+ {
+ "id": 17755,
+ "start": 8994.38,
+ "end": 8994.84,
+ "text": "bullied"
+ },
+ {
+ "id": 17756,
+ "start": 8994.84,
+ "end": 8995.54,
+ "text": "or"
+ },
+ {
+ "id": 17757,
+ "start": 8995.54,
+ "end": 8996.38,
+ "text": "or"
+ },
+ {
+ "id": 17758,
+ "start": 8996.38,
+ "end": 8996.78,
+ "text": "basically"
+ },
+ {
+ "id": 17759,
+ "start": 8996.78,
+ "end": 8997.46,
+ "text": "intimidated"
+ },
+ {
+ "id": 17760,
+ "start": 8997.46,
+ "end": 8997.68,
+ "text": "or"
+ },
+ {
+ "id": 17761,
+ "start": 8997.68,
+ "end": 8997.94,
+ "text": "the"
+ },
+ {
+ "id": 17762,
+ "start": 8997.94,
+ "end": 8998.4,
+ "text": "environment"
+ },
+ {
+ "id": 17763,
+ "start": 8998.4,
+ "end": 8998.68,
+ "text": "feels"
+ },
+ {
+ "id": 17764,
+ "start": 8998.68,
+ "end": 8999.12,
+ "text": "unsafe"
+ },
+ {
+ "id": 17765,
+ "start": 8999.12,
+ "end": 8999.26,
+ "text": "for"
+ },
+ {
+ "id": 17766,
+ "start": 8999.26,
+ "end": 8999.44,
+ "text": "them."
+ },
+ {
+ "id": 17767,
+ "start": 8999.44,
+ "end": 9000.44,
+ "text": "Okay,"
+ },
+ {
+ "id": 17768,
+ "start": 9000.44,
+ "end": 9001.02,
+ "text": "so"
+ },
+ {
+ "id": 17769,
+ "start": 9001.02,
+ "end": 9001.88,
+ "text": "when"
+ },
+ {
+ "id": 17770,
+ "start": 9001.88,
+ "end": 9001.98,
+ "text": "you"
+ },
+ {
+ "id": 17771,
+ "start": 9001.98,
+ "end": 9002.16,
+ "text": "say"
+ },
+ {
+ "id": 17772,
+ "start": 9002.16,
+ "end": 9002.26,
+ "text": "in"
+ },
+ {
+ "id": 17773,
+ "start": 9002.26,
+ "end": 9002.62,
+ "text": "general"
+ },
+ {
+ "id": 17774,
+ "start": 9002.62,
+ "end": 9003.3,
+ "text": "that's"
+ },
+ {
+ "id": 17775,
+ "start": 9003.3,
+ "end": 9003.84,
+ "text": "the"
+ },
+ {
+ "id": 17776,
+ "start": 9003.84,
+ "end": 9004.28,
+ "text": "exception"
+ },
+ {
+ "id": 17777,
+ "start": 9004.28,
+ "end": 9004.4,
+ "text": "that"
+ },
+ {
+ "id": 17778,
+ "start": 9004.4,
+ "end": 9004.6,
+ "text": "you're"
+ },
+ {
+ "id": 17779,
+ "start": 9004.6,
+ "end": 9004.96,
+ "text": "referring"
+ },
+ {
+ "id": 17780,
+ "start": 9004.96,
+ "end": 9005.8,
+ "text": "to"
+ },
+ {
+ "id": 17781,
+ "start": 9005.8,
+ "end": 9006.58,
+ "text": "the"
+ },
+ {
+ "id": 17782,
+ "start": 9006.58,
+ "end": 9007.1,
+ "text": "exception"
+ },
+ {
+ "id": 17783,
+ "start": 9007.1,
+ "end": 9007.48,
+ "text": "being"
+ },
+ {
+ "id": 17784,
+ "start": 9007.48,
+ "end": 9007.72,
+ "text": "that"
+ },
+ {
+ "id": 17785,
+ "start": 9007.72,
+ "end": 9007.86,
+ "text": "if"
+ },
+ {
+ "id": 17786,
+ "start": 9007.86,
+ "end": 9008.16,
+ "text": "someone"
+ },
+ {
+ "id": 17787,
+ "start": 9008.16,
+ "end": 9008.42,
+ "text": "feels"
+ },
+ {
+ "id": 17788,
+ "start": 9008.42,
+ "end": 9008.76,
+ "text": "bully,"
+ },
+ {
+ "id": 17789,
+ "start": 9008.76,
+ "end": 9009.08,
+ "text": "even"
+ },
+ {
+ "id": 17790,
+ "start": 9009.08,
+ "end": 9009.18,
+ "text": "if"
+ },
+ {
+ "id": 17791,
+ "start": 9009.18,
+ "end": 9009.32,
+ "text": "it's"
+ },
+ {
+ "id": 17792,
+ "start": 9009.32,
+ "end": 9009.44,
+ "text": "not"
+ },
+ {
+ "id": 17793,
+ "start": 9009.44,
+ "end": 9009.52,
+ "text": "a"
+ },
+ {
+ "id": 17794,
+ "start": 9009.52,
+ "end": 9009.88,
+ "text": "terrorist"
+ },
+ {
+ "id": 17795,
+ "start": 9009.88,
+ "end": 9010.12,
+ "text": "act"
+ },
+ {
+ "id": 17796,
+ "start": 9010.12,
+ "end": 9011,
+ "text": "nudity"
+ },
+ {
+ "id": 17797,
+ "start": 9011,
+ "end": 9011.4,
+ "text": "terrorist"
+ },
+ {
+ "id": 17798,
+ "start": 9011.4,
+ "end": 9011.72,
+ "text": "threats,"
+ },
+ {
+ "id": 17799,
+ "start": 9011.72,
+ "end": 9012.08,
+ "text": "race"
+ },
+ {
+ "id": 17800,
+ "start": 9012.08,
+ "end": 9012.2,
+ "text": "is"
+ },
+ {
+ "id": 17801,
+ "start": 9012.2,
+ "end": 9012.44,
+ "text": "speech"
+ },
+ {
+ "id": 17802,
+ "start": 9012.44,
+ "end": 9012.6,
+ "text": "or"
+ },
+ {
+ "id": 17803,
+ "start": 9012.6,
+ "end": 9012.88,
+ "text": "something"
+ },
+ {
+ "id": 17804,
+ "start": 9012.88,
+ "end": 9013.04,
+ "text": "like"
+ },
+ {
+ "id": 17805,
+ "start": 9013.04,
+ "end": 9013.92,
+ "text": "that."
+ },
+ {
+ "id": 17806,
+ "start": 9013.92,
+ "end": 9014.72,
+ "text": "You"
+ },
+ {
+ "id": 17807,
+ "start": 9014.72,
+ "end": 9014.92,
+ "text": "might"
+ },
+ {
+ "id": 17808,
+ "start": 9014.92,
+ "end": 9015.08,
+ "text": "step"
+ },
+ {
+ "id": 17809,
+ "start": 9015.08,
+ "end": 9015.24,
+ "text": "in"
+ },
+ {
+ "id": 17810,
+ "start": 9015.24,
+ "end": 9015.44,
+ "text": "there"
+ },
+ {
+ "id": 17811,
+ "start": 9015.44,
+ "end": 9015.78,
+ "text": "beyond"
+ },
+ {
+ "id": 17812,
+ "start": 9015.78,
+ "end": 9016,
+ "text": "that."
+ },
+ {
+ "id": 17813,
+ "start": 9016,
+ "end": 9016.3,
+ "text": "Would"
+ },
+ {
+ "id": 17814,
+ "start": 9016.3,
+ "end": 9016.44,
+ "text": "you"
+ },
+ {
+ "id": 17815,
+ "start": 9016.44,
+ "end": 9016.88,
+ "text": "step"
+ },
+ {
+ "id": 17816,
+ "start": 9016.88,
+ "end": 9017.08,
+ "text": "in"
+ },
+ {
+ "id": 17817,
+ "start": 9017.08,
+ "end": 9017.3,
+ "text": "and"
+ },
+ {
+ "id": 17818,
+ "start": 9017.3,
+ "end": 9017.44,
+ "text": "put"
+ },
+ {
+ "id": 17819,
+ "start": 9017.44,
+ "end": 9017.62,
+ "text": "your"
+ },
+ {
+ "id": 17820,
+ "start": 9017.62,
+ "end": 9017.82,
+ "text": "thumb"
+ },
+ {
+ "id": 17821,
+ "start": 9017.82,
+ "end": 9017.92,
+ "text": "on"
+ },
+ {
+ "id": 17822,
+ "start": 9017.92,
+ "end": 9018.04,
+ "text": "the"
+ },
+ {
+ "id": 17823,
+ "start": 9018.04,
+ "end": 9018.34,
+ "text": "scale"
+ },
+ {
+ "id": 17824,
+ "start": 9018.34,
+ "end": 9018.88,
+ "text": "as"
+ },
+ {
+ "id": 17825,
+ "start": 9018.88,
+ "end": 9019.04,
+ "text": "far"
+ },
+ {
+ "id": 17826,
+ "start": 9019.04,
+ "end": 9019.18,
+ "text": "as"
+ },
+ {
+ "id": 17827,
+ "start": 9019.18,
+ "end": 9019.34,
+ "text": "the"
+ },
+ {
+ "id": 17828,
+ "start": 9019.34,
+ "end": 9019.92,
+ "text": "viewpoint"
+ },
+ {
+ "id": 17829,
+ "start": 9019.92,
+ "end": 9020.94,
+ "text": "of"
+ },
+ {
+ "id": 17830,
+ "start": 9020.94,
+ "end": 9021.08,
+ "text": "the"
+ },
+ {
+ "id": 17831,
+ "start": 9021.08,
+ "end": 9021.5,
+ "text": "content"
+ },
+ {
+ "id": 17832,
+ "start": 9021.5,
+ "end": 9022.2,
+ "text": "being"
+ },
+ {
+ "id": 17833,
+ "start": 9022.2,
+ "end": 9024.48,
+ "text": "posted?"
+ },
+ {
+ "id": 17834,
+ "start": 9024.48,
+ "end": 9025.48,
+ "text": "Senator"
+ },
+ {
+ "id": 17835,
+ "start": 9025.48,
+ "end": 9025.66,
+ "text": "no,"
+ },
+ {
+ "id": 17836,
+ "start": 9025.66,
+ "end": 9025.72,
+ "text": "I"
+ },
+ {
+ "id": 17837,
+ "start": 9025.72,
+ "end": 9025.9,
+ "text": "mean,"
+ },
+ {
+ "id": 17838,
+ "start": 9025.9,
+ "end": 9026.04,
+ "text": "in"
+ },
+ {
+ "id": 17839,
+ "start": 9026.04,
+ "end": 9026.46,
+ "text": "general,"
+ },
+ {
+ "id": 17840,
+ "start": 9026.46,
+ "end": 9026.98,
+ "text": "our"
+ },
+ {
+ "id": 17841,
+ "start": 9026.98,
+ "end": 9027.74,
+ "text": "goal"
+ },
+ {
+ "id": 17842,
+ "start": 9027.74,
+ "end": 9027.92,
+ "text": "is"
+ },
+ {
+ "id": 17843,
+ "start": 9027.92,
+ "end": 9028.16,
+ "text": "to"
+ },
+ {
+ "id": 17844,
+ "start": 9028.16,
+ "end": 9028.48,
+ "text": "allow"
+ },
+ {
+ "id": 17845,
+ "start": 9028.48,
+ "end": 9028.72,
+ "text": "people"
+ },
+ {
+ "id": 17846,
+ "start": 9028.72,
+ "end": 9028.82,
+ "text": "to"
+ },
+ {
+ "id": 17847,
+ "start": 9028.82,
+ "end": 9028.96,
+ "text": "have"
+ },
+ {
+ "id": 17848,
+ "start": 9028.96,
+ "end": 9029.1,
+ "text": "as"
+ },
+ {
+ "id": 17849,
+ "start": 9029.1,
+ "end": 9029.42,
+ "text": "much"
+ },
+ {
+ "id": 17850,
+ "start": 9029.42,
+ "end": 9029.96,
+ "text": "expression"
+ },
+ {
+ "id": 17851,
+ "start": 9029.96,
+ "end": 9030.14,
+ "text": "as"
+ },
+ {
+ "id": 17852,
+ "start": 9030.14,
+ "end": 9030.68,
+ "text": "possible."
+ },
+ {
+ "id": 17853,
+ "start": 9030.68,
+ "end": 9031.26,
+ "text": "Okay,"
+ },
+ {
+ "id": 17854,
+ "start": 9031.26,
+ "end": 9031.52,
+ "text": "so"
+ },
+ {
+ "id": 17855,
+ "start": 9031.52,
+ "end": 9031.86,
+ "text": "subject"
+ },
+ {
+ "id": 17856,
+ "start": 9031.86,
+ "end": 9031.96,
+ "text": "to"
+ },
+ {
+ "id": 17857,
+ "start": 9031.96,
+ "end": 9032.14,
+ "text": "the"
+ },
+ {
+ "id": 17858,
+ "start": 9032.14,
+ "end": 9032.74,
+ "text": "exceptions"
+ },
+ {
+ "id": 17859,
+ "start": 9032.74,
+ "end": 9032.98,
+ "text": "we've"
+ },
+ {
+ "id": 17860,
+ "start": 9032.98,
+ "end": 9033.4,
+ "text": "discussed,"
+ },
+ {
+ "id": 17861,
+ "start": 9033.4,
+ "end": 9034.4,
+ "text": "you"
+ },
+ {
+ "id": 17862,
+ "start": 9034.4,
+ "end": 9034.58,
+ "text": "would"
+ },
+ {
+ "id": 17863,
+ "start": 9034.58,
+ "end": 9034.78,
+ "text": "stay"
+ },
+ {
+ "id": 17864,
+ "start": 9034.78,
+ "end": 9034.9,
+ "text": "out"
+ },
+ {
+ "id": 17865,
+ "start": 9034.9,
+ "end": 9034.96,
+ "text": "of"
+ },
+ {
+ "id": 17866,
+ "start": 9034.96,
+ "end": 9035.14,
+ "text": "that,"
+ },
+ {
+ "id": 17867,
+ "start": 9035.14,
+ "end": 9035.76,
+ "text": "let"
+ },
+ {
+ "id": 17868,
+ "start": 9035.76,
+ "end": 9035.86,
+ "text": "me"
+ },
+ {
+ "id": 17869,
+ "start": 9035.86,
+ "end": 9036.02,
+ "text": "ask"
+ },
+ {
+ "id": 17870,
+ "start": 9036.02,
+ "end": 9036.16,
+ "text": "you"
+ },
+ {
+ "id": 17871,
+ "start": 9036.16,
+ "end": 9036.59,
+ "text": "this"
+ },
+ {
+ "id": 17872,
+ "start": 9036.59,
+ "end": 9037.17,
+ "text": "isn't"
+ },
+ {
+ "id": 17873,
+ "start": 9037.17,
+ "end": 9037.53,
+ "text": "there."
+ },
+ {
+ "id": 17874,
+ "start": 9037.53,
+ "end": 9037.83,
+ "text": "A"
+ },
+ {
+ "id": 17875,
+ "start": 9037.83,
+ "end": 9038.79,
+ "text": "significant"
+ },
+ {
+ "id": 17876,
+ "start": 9038.79,
+ "end": 9039.47,
+ "text": "free"
+ },
+ {
+ "id": 17877,
+ "start": 9039.47,
+ "end": 9039.81,
+ "text": "market"
+ },
+ {
+ "id": 17878,
+ "start": 9039.81,
+ "end": 9040.43,
+ "text": "incentive."
+ },
+ {
+ "id": 17879,
+ "start": 9040.43,
+ "end": 9041.11,
+ "text": "That"
+ },
+ {
+ "id": 17880,
+ "start": 9041.11,
+ "end": 9041.19,
+ "text": "a"
+ },
+ {
+ "id": 17881,
+ "start": 9041.19,
+ "end": 9041.59,
+ "text": "social"
+ },
+ {
+ "id": 17882,
+ "start": 9041.59,
+ "end": 9041.93,
+ "text": "media"
+ },
+ {
+ "id": 17883,
+ "start": 9041.93,
+ "end": 9042.35,
+ "text": "company"
+ },
+ {
+ "id": 17884,
+ "start": 9042.35,
+ "end": 9042.87,
+ "text": "including"
+ },
+ {
+ "id": 17885,
+ "start": 9042.87,
+ "end": 9043.23,
+ "text": "yours"
+ },
+ {
+ "id": 17886,
+ "start": 9043.23,
+ "end": 9044.07,
+ "text": "has"
+ },
+ {
+ "id": 17887,
+ "start": 9044.07,
+ "end": 9045.05,
+ "text": "in"
+ },
+ {
+ "id": 17888,
+ "start": 9045.05,
+ "end": 9045.33,
+ "text": "order"
+ },
+ {
+ "id": 17889,
+ "start": 9045.33,
+ "end": 9045.43,
+ "text": "to"
+ },
+ {
+ "id": 17890,
+ "start": 9045.43,
+ "end": 9046.03,
+ "text": "safeguard"
+ },
+ {
+ "id": 17891,
+ "start": 9046.03,
+ "end": 9046.25,
+ "text": "the"
+ },
+ {
+ "id": 17892,
+ "start": 9046.25,
+ "end": 9046.69,
+ "text": "data"
+ },
+ {
+ "id": 17893,
+ "start": 9046.69,
+ "end": 9047.55,
+ "text": "of"
+ },
+ {
+ "id": 17894,
+ "start": 9047.55,
+ "end": 9047.85,
+ "text": "your"
+ },
+ {
+ "id": 17895,
+ "start": 9047.85,
+ "end": 9049.62,
+ "text": "users"
+ },
+ {
+ "id": 17896,
+ "start": 9049.62,
+ "end": 9050.58,
+ "text": "don't"
+ },
+ {
+ "id": 17897,
+ "start": 9050.58,
+ "end": 9050.7,
+ "text": "you"
+ },
+ {
+ "id": 17898,
+ "start": 9050.7,
+ "end": 9050.9,
+ "text": "have"
+ },
+ {
+ "id": 17899,
+ "start": 9050.9,
+ "end": 9051.18,
+ "text": "free"
+ },
+ {
+ "id": 17900,
+ "start": 9051.18,
+ "end": 9051.44,
+ "text": "market"
+ },
+ {
+ "id": 17901,
+ "start": 9051.44,
+ "end": 9051.9,
+ "text": "incentives"
+ },
+ {
+ "id": 17902,
+ "start": 9051.9,
+ "end": 9052.02,
+ "text": "and"
+ },
+ {
+ "id": 17903,
+ "start": 9052.02,
+ "end": 9053.06,
+ "text": "Senator"
+ },
+ {
+ "id": 17904,
+ "start": 9053.06,
+ "end": 9053.58,
+ "text": "don't"
+ },
+ {
+ "id": 17905,
+ "start": 9053.58,
+ "end": 9053.78,
+ "text": "your"
+ },
+ {
+ "id": 17906,
+ "start": 9053.78,
+ "end": 9054.2,
+ "text": "interests"
+ },
+ {
+ "id": 17907,
+ "start": 9054.2,
+ "end": 9055.12,
+ "text": "align."
+ },
+ {
+ "id": 17908,
+ "start": 9055.12,
+ "end": 9055.74,
+ "text": "With"
+ },
+ {
+ "id": 17909,
+ "start": 9055.74,
+ "end": 9056.44,
+ "text": "with"
+ },
+ {
+ "id": 17910,
+ "start": 9056.44,
+ "end": 9056.66,
+ "text": "those"
+ },
+ {
+ "id": 17911,
+ "start": 9056.66,
+ "end": 9056.76,
+ "text": "of"
+ },
+ {
+ "id": 17912,
+ "start": 9056.76,
+ "end": 9056.94,
+ "text": "us"
+ },
+ {
+ "id": 17913,
+ "start": 9056.94,
+ "end": 9057.34,
+ "text": "here"
+ },
+ {
+ "id": 17914,
+ "start": 9057.34,
+ "end": 9058.02,
+ "text": "who"
+ },
+ {
+ "id": 17915,
+ "start": 9058.02,
+ "end": 9058.24,
+ "text": "want"
+ },
+ {
+ "id": 17916,
+ "start": 9058.24,
+ "end": 9058.38,
+ "text": "to"
+ },
+ {
+ "id": 17917,
+ "start": 9058.38,
+ "end": 9058.72,
+ "text": "see"
+ },
+ {
+ "id": 17918,
+ "start": 9058.72,
+ "end": 9059.18,
+ "text": "data"
+ },
+ {
+ "id": 17919,
+ "start": 9059.18,
+ "end": 9059.8,
+ "text": "safeguard,"
+ },
+ {
+ "id": 17920,
+ "start": 9059.8,
+ "end": 9060.96,
+ "text": "absolutely,"
+ },
+ {
+ "id": 17921,
+ "start": 9060.96,
+ "end": 9061.4,
+ "text": "do"
+ },
+ {
+ "id": 17922,
+ "start": 9061.4,
+ "end": 9061.52,
+ "text": "you"
+ },
+ {
+ "id": 17923,
+ "start": 9061.52,
+ "end": 9061.66,
+ "text": "have"
+ },
+ {
+ "id": 17924,
+ "start": 9061.66,
+ "end": 9061.78,
+ "text": "the"
+ },
+ {
+ "id": 17925,
+ "start": 9061.78,
+ "end": 9062.46,
+ "text": "technological"
+ },
+ {
+ "id": 17926,
+ "start": 9062.46,
+ "end": 9063.86,
+ "text": "means"
+ },
+ {
+ "id": 17927,
+ "start": 9063.86,
+ "end": 9064.84,
+ "text": "available"
+ },
+ {
+ "id": 17928,
+ "start": 9064.84,
+ "end": 9065.22,
+ "text": "at"
+ },
+ {
+ "id": 17929,
+ "start": 9065.22,
+ "end": 9065.4,
+ "text": "your"
+ },
+ {
+ "id": 17930,
+ "start": 9065.4,
+ "end": 9065.9,
+ "text": "disposal"
+ },
+ {
+ "id": 17931,
+ "start": 9065.9,
+ "end": 9066.06,
+ "text": "to"
+ },
+ {
+ "id": 17932,
+ "start": 9066.06,
+ "end": 9066.22,
+ "text": "make"
+ },
+ {
+ "id": 17933,
+ "start": 9066.22,
+ "end": 9066.36,
+ "text": "sure"
+ },
+ {
+ "id": 17934,
+ "start": 9066.36,
+ "end": 9066.5,
+ "text": "that"
+ },
+ {
+ "id": 17935,
+ "start": 9066.5,
+ "end": 9066.68,
+ "text": "that"
+ },
+ {
+ "id": 17936,
+ "start": 9066.68,
+ "end": 9067.4,
+ "text": "doesn't"
+ },
+ {
+ "id": 17937,
+ "start": 9067.4,
+ "end": 9067.78,
+ "text": "happen."
+ },
+ {
+ "id": 17938,
+ "start": 9067.78,
+ "end": 9068.04,
+ "text": "And"
+ },
+ {
+ "id": 17939,
+ "start": 9068.04,
+ "end": 9068.56,
+ "text": "to"
+ },
+ {
+ "id": 17940,
+ "start": 9068.56,
+ "end": 9069.04,
+ "text": "protect"
+ },
+ {
+ "id": 17941,
+ "start": 9069.04,
+ "end": 9070.08,
+ "text": "say"
+ },
+ {
+ "id": 17942,
+ "start": 9070.08,
+ "end": 9070.2,
+ "text": "an"
+ },
+ {
+ "id": 17943,
+ "start": 9070.2,
+ "end": 9070.52,
+ "text": "app"
+ },
+ {
+ "id": 17944,
+ "start": 9070.52,
+ "end": 9071.36,
+ "text": "developer"
+ },
+ {
+ "id": 17945,
+ "start": 9071.36,
+ "end": 9072.34,
+ "text": "from"
+ },
+ {
+ "id": 17946,
+ "start": 9072.34,
+ "end": 9073.12,
+ "text": "transferring"
+ },
+ {
+ "id": 17947,
+ "start": 9073.12,
+ "end": 9074.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 17948,
+ "start": 9074.02,
+ "end": 9074.44,
+ "text": "data"
+ },
+ {
+ "id": 17949,
+ "start": 9074.44,
+ "end": 9074.62,
+ "text": "to"
+ },
+ {
+ "id": 17950,
+ "start": 9074.62,
+ "end": 9074.72,
+ "text": "a"
+ },
+ {
+ "id": 17951,
+ "start": 9074.72,
+ "end": 9074.98,
+ "text": "third"
+ },
+ {
+ "id": 17952,
+ "start": 9074.98,
+ "end": 9077.42,
+ "text": "party"
+ },
+ {
+ "id": 17953,
+ "start": 9077.42,
+ "end": 9078.46,
+ "text": "center,"
+ },
+ {
+ "id": 17954,
+ "start": 9078.46,
+ "end": 9078.88,
+ "text": "a"
+ },
+ {
+ "id": 17955,
+ "start": 9078.88,
+ "end": 9079.08,
+ "text": "lot"
+ },
+ {
+ "id": 17956,
+ "start": 9079.08,
+ "end": 9079.16,
+ "text": "of"
+ },
+ {
+ "id": 17957,
+ "start": 9079.16,
+ "end": 9079.3,
+ "text": "that."
+ },
+ {
+ "id": 17958,
+ "start": 9079.3,
+ "end": 9079.4,
+ "text": "We"
+ },
+ {
+ "id": 17959,
+ "start": 9079.4,
+ "end": 9079.66,
+ "text": "do"
+ },
+ {
+ "id": 17960,
+ "start": 9079.66,
+ "end": 9080.16,
+ "text": "and"
+ },
+ {
+ "id": 17961,
+ "start": 9080.16,
+ "end": 9080.36,
+ "text": "some"
+ },
+ {
+ "id": 17962,
+ "start": 9080.36,
+ "end": 9080.44,
+ "text": "of"
+ },
+ {
+ "id": 17963,
+ "start": 9080.44,
+ "end": 9080.66,
+ "text": "that"
+ },
+ {
+ "id": 17964,
+ "start": 9080.66,
+ "end": 9080.96,
+ "text": "happen"
+ },
+ {
+ "id": 17965,
+ "start": 9080.96,
+ "end": 9081.42,
+ "text": "outside"
+ },
+ {
+ "id": 17966,
+ "start": 9081.42,
+ "end": 9081.5,
+ "text": "of"
+ },
+ {
+ "id": 17967,
+ "start": 9081.5,
+ "end": 9081.64,
+ "text": "our"
+ },
+ {
+ "id": 17968,
+ "start": 9081.64,
+ "end": 9082.04,
+ "text": "systems"
+ },
+ {
+ "id": 17969,
+ "start": 9082.04,
+ "end": 9082.14,
+ "text": "and"
+ },
+ {
+ "id": 17970,
+ "start": 9082.14,
+ "end": 9082.34,
+ "text": "will"
+ },
+ {
+ "id": 17971,
+ "start": 9082.34,
+ "end": 9082.7,
+ "text": "require"
+ },
+ {
+ "id": 17972,
+ "start": 9082.7,
+ "end": 9082.94,
+ "text": "new"
+ },
+ {
+ "id": 17973,
+ "start": 9082.94,
+ "end": 9083.32,
+ "text": "measures."
+ },
+ {
+ "id": 17974,
+ "start": 9083.32,
+ "end": 9083.74,
+ "text": "So,"
+ },
+ {
+ "id": 17975,
+ "start": 9083.74,
+ "end": 9083.94,
+ "text": "for"
+ },
+ {
+ "id": 17976,
+ "start": 9083.94,
+ "end": 9084.28,
+ "text": "example,"
+ },
+ {
+ "id": 17977,
+ "start": 9084.28,
+ "end": 9084.46,
+ "text": "what"
+ },
+ {
+ "id": 17978,
+ "start": 9084.46,
+ "end": 9084.6,
+ "text": "we"
+ },
+ {
+ "id": 17979,
+ "start": 9084.6,
+ "end": 9084.86,
+ "text": "saw"
+ },
+ {
+ "id": 17980,
+ "start": 9084.86,
+ "end": 9085.28,
+ "text": "here"
+ },
+ {
+ "id": 17981,
+ "start": 9085.28,
+ "end": 9086.18,
+ "text": "was"
+ },
+ {
+ "id": 17982,
+ "start": 9086.18,
+ "end": 9087.24,
+ "text": "people"
+ },
+ {
+ "id": 17983,
+ "start": 9087.24,
+ "end": 9087.58,
+ "text": "chose"
+ },
+ {
+ "id": 17984,
+ "start": 9087.58,
+ "end": 9087.72,
+ "text": "to"
+ },
+ {
+ "id": 17985,
+ "start": 9087.72,
+ "end": 9087.98,
+ "text": "share"
+ },
+ {
+ "id": 17986,
+ "start": 9087.98,
+ "end": 9088.48,
+ "text": "information"
+ },
+ {
+ "id": 17987,
+ "start": 9088.48,
+ "end": 9088.66,
+ "text": "with"
+ },
+ {
+ "id": 17988,
+ "start": 9088.66,
+ "end": 9088.76,
+ "text": "an"
+ },
+ {
+ "id": 17989,
+ "start": 9088.76,
+ "end": 9088.92,
+ "text": "app"
+ },
+ {
+ "id": 17990,
+ "start": 9088.92,
+ "end": 9089.38,
+ "text": "developer"
+ },
+ {
+ "id": 17991,
+ "start": 9089.38,
+ "end": 9090.12,
+ "text": "that"
+ },
+ {
+ "id": 17992,
+ "start": 9090.12,
+ "end": 9090.4,
+ "text": "worked"
+ },
+ {
+ "id": 17993,
+ "start": 9090.4,
+ "end": 9090.84,
+ "text": "according"
+ },
+ {
+ "id": 17994,
+ "start": 9090.84,
+ "end": 9090.9,
+ "text": "to"
+ },
+ {
+ "id": 17995,
+ "start": 9090.9,
+ "end": 9091.1,
+ "text": "the"
+ },
+ {
+ "id": 17996,
+ "start": 9091.1,
+ "end": 9091.36,
+ "text": "system"
+ },
+ {
+ "id": 17997,
+ "start": 9091.36,
+ "end": 9091.58,
+ "text": "was"
+ },
+ {
+ "id": 17998,
+ "start": 9091.58,
+ "end": 9092.42,
+ "text": "designed."
+ },
+ {
+ "id": 17999,
+ "start": 9092.42,
+ "end": 9093,
+ "text": "That"
+ },
+ {
+ "id": 18000,
+ "start": 9093,
+ "end": 9093.46,
+ "text": "information"
+ },
+ {
+ "id": 18001,
+ "start": 9093.46,
+ "end": 9093.62,
+ "text": "was"
+ },
+ {
+ "id": 18002,
+ "start": 9093.62,
+ "end": 9093.8,
+ "text": "then"
+ },
+ {
+ "id": 18003,
+ "start": 9093.8,
+ "end": 9094.26,
+ "text": "transferred"
+ },
+ {
+ "id": 18004,
+ "start": 9094.26,
+ "end": 9094.44,
+ "text": "out"
+ },
+ {
+ "id": 18005,
+ "start": 9094.44,
+ "end": 9094.52,
+ "text": "of"
+ },
+ {
+ "id": 18006,
+ "start": 9094.52,
+ "end": 9094.66,
+ "text": "our"
+ },
+ {
+ "id": 18007,
+ "start": 9094.66,
+ "end": 9095.06,
+ "text": "system"
+ },
+ {
+ "id": 18008,
+ "start": 9095.06,
+ "end": 9095.96,
+ "text": "to"
+ },
+ {
+ "id": 18009,
+ "start": 9095.96,
+ "end": 9096.62,
+ "text": "servers"
+ },
+ {
+ "id": 18010,
+ "start": 9096.62,
+ "end": 9096.9,
+ "text": "that"
+ },
+ {
+ "id": 18011,
+ "start": 9096.9,
+ "end": 9097.34,
+ "text": "this"
+ },
+ {
+ "id": 18012,
+ "start": 9097.34,
+ "end": 9097.78,
+ "text": "developer"
+ },
+ {
+ "id": 18013,
+ "start": 9097.78,
+ "end": 9098.34,
+ "text": "Alexander"
+ },
+ {
+ "id": 18014,
+ "start": 9098.34,
+ "end": 9098.7,
+ "text": "Cogan"
+ },
+ {
+ "id": 18015,
+ "start": 9098.7,
+ "end": 9098.96,
+ "text": "had"
+ },
+ {
+ "id": 18016,
+ "start": 9098.96,
+ "end": 9099.78,
+ "text": "and"
+ },
+ {
+ "id": 18017,
+ "start": 9099.78,
+ "end": 9100.06,
+ "text": "then"
+ },
+ {
+ "id": 18018,
+ "start": 9100.06,
+ "end": 9100.24,
+ "text": "that"
+ },
+ {
+ "id": 18019,
+ "start": 9100.24,
+ "end": 9100.62,
+ "text": "person"
+ },
+ {
+ "id": 18020,
+ "start": 9100.62,
+ "end": 9100.96,
+ "text": "chose"
+ },
+ {
+ "id": 18021,
+ "start": 9100.96,
+ "end": 9101.12,
+ "text": "to"
+ },
+ {
+ "id": 18022,
+ "start": 9101.12,
+ "end": 9101.36,
+ "text": "then"
+ },
+ {
+ "id": 18023,
+ "start": 9101.36,
+ "end": 9101.56,
+ "text": "go"
+ },
+ {
+ "id": 18024,
+ "start": 9101.56,
+ "end": 9101.82,
+ "text": "sell"
+ },
+ {
+ "id": 18025,
+ "start": 9101.82,
+ "end": 9101.94,
+ "text": "the"
+ },
+ {
+ "id": 18026,
+ "start": 9101.94,
+ "end": 9102.24,
+ "text": "data"
+ },
+ {
+ "id": 18027,
+ "start": 9102.24,
+ "end": 9102.96,
+ "text": "to"
+ },
+ {
+ "id": 18028,
+ "start": 9102.96,
+ "end": 9103.3,
+ "text": "Cambridge"
+ },
+ {
+ "id": 18029,
+ "start": 9103.3,
+ "end": 9104.5,
+ "text": "Analytica."
+ },
+ {
+ "id": 18030,
+ "start": 9104.5,
+ "end": 9104.7,
+ "text": "That"
+ },
+ {
+ "id": 18031,
+ "start": 9104.7,
+ "end": 9104.9,
+ "text": "is"
+ },
+ {
+ "id": 18032,
+ "start": 9104.9,
+ "end": 9105.12,
+ "text": "going"
+ },
+ {
+ "id": 18033,
+ "start": 9105.12,
+ "end": 9105.22,
+ "text": "to"
+ },
+ {
+ "id": 18034,
+ "start": 9105.22,
+ "end": 9105.62,
+ "text": "require"
+ },
+ {
+ "id": 18035,
+ "start": 9105.62,
+ "end": 9105.92,
+ "text": "much"
+ },
+ {
+ "id": 18036,
+ "start": 9105.92,
+ "end": 9106.14,
+ "text": "more"
+ },
+ {
+ "id": 18037,
+ "start": 9106.14,
+ "end": 9106.48,
+ "text": "active."
+ },
+ {
+ "id": 18038,
+ "start": 9106.48,
+ "end": 9107.14,
+ "text": "Intervention"
+ },
+ {
+ "id": 18039,
+ "start": 9107.14,
+ "end": 9107.34,
+ "text": "and"
+ },
+ {
+ "id": 18040,
+ "start": 9107.34,
+ "end": 9107.72,
+ "text": "auditing"
+ },
+ {
+ "id": 18041,
+ "start": 9107.72,
+ "end": 9107.98,
+ "text": "from"
+ },
+ {
+ "id": 18042,
+ "start": 9107.98,
+ "end": 9108.16,
+ "text": "us"
+ },
+ {
+ "id": 18043,
+ "start": 9108.16,
+ "end": 9108.42,
+ "text": "to"
+ },
+ {
+ "id": 18044,
+ "start": 9108.42,
+ "end": 9108.8,
+ "text": "prevent"
+ },
+ {
+ "id": 18045,
+ "start": 9108.8,
+ "end": 9109.1,
+ "text": "going"
+ },
+ {
+ "id": 18046,
+ "start": 9109.1,
+ "end": 9109.5,
+ "text": "forward"
+ },
+ {
+ "id": 18047,
+ "start": 9109.5,
+ "end": 9110.42,
+ "text": "because"
+ },
+ {
+ "id": 18048,
+ "start": 9110.42,
+ "end": 9110.82,
+ "text": "once"
+ },
+ {
+ "id": 18049,
+ "start": 9110.82,
+ "end": 9111.02,
+ "text": "it's"
+ },
+ {
+ "id": 18050,
+ "start": 9111.02,
+ "end": 9111.18,
+ "text": "out"
+ },
+ {
+ "id": 18051,
+ "start": 9111.18,
+ "end": 9111.28,
+ "text": "of"
+ },
+ {
+ "id": 18052,
+ "start": 9111.28,
+ "end": 9111.46,
+ "text": "our"
+ },
+ {
+ "id": 18053,
+ "start": 9111.46,
+ "end": 9111.86,
+ "text": "system,"
+ },
+ {
+ "id": 18054,
+ "start": 9111.86,
+ "end": 9111.98,
+ "text": "it"
+ },
+ {
+ "id": 18055,
+ "start": 9111.98,
+ "end": 9112.12,
+ "text": "is"
+ },
+ {
+ "id": 18056,
+ "start": 9112.12,
+ "end": 9112.2,
+ "text": "a"
+ },
+ {
+ "id": 18057,
+ "start": 9112.2,
+ "end": 9112.4,
+ "text": "lot"
+ },
+ {
+ "id": 18058,
+ "start": 9112.4,
+ "end": 9112.7,
+ "text": "harder"
+ },
+ {
+ "id": 18059,
+ "start": 9112.7,
+ "end": 9112.88,
+ "text": "for"
+ },
+ {
+ "id": 18060,
+ "start": 9112.88,
+ "end": 9113.04,
+ "text": "us"
+ },
+ {
+ "id": 18061,
+ "start": 9113.04,
+ "end": 9113.36,
+ "text": "to"
+ },
+ {
+ "id": 18062,
+ "start": 9113.36,
+ "end": 9114.4,
+ "text": "have"
+ },
+ {
+ "id": 18063,
+ "start": 9114.4,
+ "end": 9114.48,
+ "text": "a"
+ },
+ {
+ "id": 18064,
+ "start": 9114.48,
+ "end": 9114.72,
+ "text": "full"
+ },
+ {
+ "id": 18065,
+ "start": 9114.72,
+ "end": 9115.18,
+ "text": "understanding"
+ },
+ {
+ "id": 18066,
+ "start": 9115.18,
+ "end": 9115.24,
+ "text": "of"
+ },
+ {
+ "id": 18067,
+ "start": 9115.24,
+ "end": 9115.46,
+ "text": "what's"
+ },
+ {
+ "id": 18068,
+ "start": 9115.46,
+ "end": 9116.58,
+ "text": "happening"
+ },
+ {
+ "id": 18069,
+ "start": 9116.58,
+ "end": 9117.56,
+ "text": "from"
+ },
+ {
+ "id": 18070,
+ "start": 9117.56,
+ "end": 9117.72,
+ "text": "what"
+ },
+ {
+ "id": 18071,
+ "start": 9117.72,
+ "end": 9117.96,
+ "text": "you've"
+ },
+ {
+ "id": 18072,
+ "start": 9117.96,
+ "end": 9118.16,
+ "text": "said"
+ },
+ {
+ "id": 18073,
+ "start": 9118.16,
+ "end": 9118.62,
+ "text": "today."
+ },
+ {
+ "id": 18074,
+ "start": 9118.62,
+ "end": 9118.94,
+ "text": "And"
+ },
+ {
+ "id": 18075,
+ "start": 9118.94,
+ "end": 9119.14,
+ "text": "from"
+ },
+ {
+ "id": 18076,
+ "start": 9119.14,
+ "end": 9119.66,
+ "text": "previous"
+ },
+ {
+ "id": 18077,
+ "start": 9119.66,
+ "end": 9120.08,
+ "text": "statements"
+ },
+ {
+ "id": 18078,
+ "start": 9120.08,
+ "end": 9120.44,
+ "text": "made"
+ },
+ {
+ "id": 18079,
+ "start": 9120.44,
+ "end": 9120.68,
+ "text": "by"
+ },
+ {
+ "id": 18080,
+ "start": 9120.68,
+ "end": 9120.94,
+ "text": "you"
+ },
+ {
+ "id": 18081,
+ "start": 9120.94,
+ "end": 9121.54,
+ "text": "and"
+ },
+ {
+ "id": 18082,
+ "start": 9121.54,
+ "end": 9121.76,
+ "text": "other"
+ },
+ {
+ "id": 18083,
+ "start": 9121.76,
+ "end": 9122.14,
+ "text": "officials"
+ },
+ {
+ "id": 18084,
+ "start": 9122.14,
+ "end": 9122.28,
+ "text": "at"
+ },
+ {
+ "id": 18085,
+ "start": 9122.28,
+ "end": 9122.46,
+ "text": "your"
+ },
+ {
+ "id": 18086,
+ "start": 9122.46,
+ "end": 9123.4,
+ "text": "company"
+ },
+ {
+ "id": 18087,
+ "start": 9123.4,
+ "end": 9124.4,
+ "text": "data"
+ },
+ {
+ "id": 18088,
+ "start": 9124.4,
+ "end": 9125.18,
+ "text": "is"
+ },
+ {
+ "id": 18089,
+ "start": 9125.18,
+ "end": 9126,
+ "text": "at"
+ },
+ {
+ "id": 18090,
+ "start": 9126,
+ "end": 9126.16,
+ "text": "the"
+ },
+ {
+ "id": 18091,
+ "start": 9126.16,
+ "end": 9126.5,
+ "text": "center"
+ },
+ {
+ "id": 18092,
+ "start": 9126.5,
+ "end": 9126.88,
+ "text": "of"
+ },
+ {
+ "id": 18093,
+ "start": 9126.88,
+ "end": 9127.04,
+ "text": "your"
+ },
+ {
+ "id": 18094,
+ "start": 9127.04,
+ "end": 9127.36,
+ "text": "business"
+ },
+ {
+ "id": 18095,
+ "start": 9127.36,
+ "end": 9127.66,
+ "text": "model"
+ },
+ {
+ "id": 18096,
+ "start": 9127.66,
+ "end": 9128.26,
+ "text": "is"
+ },
+ {
+ "id": 18097,
+ "start": 9128.26,
+ "end": 9128.52,
+ "text": "it's"
+ },
+ {
+ "id": 18098,
+ "start": 9128.52,
+ "end": 9128.66,
+ "text": "how"
+ },
+ {
+ "id": 18099,
+ "start": 9128.66,
+ "end": 9128.82,
+ "text": "you"
+ },
+ {
+ "id": 18100,
+ "start": 9128.82,
+ "end": 9129,
+ "text": "make"
+ },
+ {
+ "id": 18101,
+ "start": 9129,
+ "end": 9129.32,
+ "text": "money"
+ },
+ {
+ "id": 18102,
+ "start": 9129.32,
+ "end": 9129.58,
+ "text": "your"
+ },
+ {
+ "id": 18103,
+ "start": 9129.58,
+ "end": 9130,
+ "text": "ability"
+ },
+ {
+ "id": 18104,
+ "start": 9130,
+ "end": 9131.1,
+ "text": "to"
+ },
+ {
+ "id": 18105,
+ "start": 9131.1,
+ "end": 9131.3,
+ "text": "run"
+ },
+ {
+ "id": 18106,
+ "start": 9131.3,
+ "end": 9131.46,
+ "text": "your"
+ },
+ {
+ "id": 18107,
+ "start": 9131.46,
+ "end": 9131.86,
+ "text": "business?"
+ },
+ {
+ "id": 18108,
+ "start": 9131.86,
+ "end": 9132.4,
+ "text": "Effectively?"
+ },
+ {
+ "id": 18109,
+ "start": 9132.4,
+ "end": 9132.64,
+ "text": "Given"
+ },
+ {
+ "id": 18110,
+ "start": 9132.64,
+ "end": 9132.76,
+ "text": "that"
+ },
+ {
+ "id": 18111,
+ "start": 9132.76,
+ "end": 9132.86,
+ "text": "you"
+ },
+ {
+ "id": 18112,
+ "start": 9132.86,
+ "end": 9133.04,
+ "text": "don't"
+ },
+ {
+ "id": 18113,
+ "start": 9133.04,
+ "end": 9133.42,
+ "text": "charge,"
+ },
+ {
+ "id": 18114,
+ "start": 9133.42,
+ "end": 9134.06,
+ "text": "your"
+ },
+ {
+ "id": 18115,
+ "start": 9134.06,
+ "end": 9134.8,
+ "text": "users"
+ },
+ {
+ "id": 18116,
+ "start": 9134.8,
+ "end": 9135.98,
+ "text": "is"
+ },
+ {
+ "id": 18117,
+ "start": 9135.98,
+ "end": 9136.36,
+ "text": "based"
+ },
+ {
+ "id": 18118,
+ "start": 9136.36,
+ "end": 9136.52,
+ "text": "on"
+ },
+ {
+ "id": 18119,
+ "start": 9136.52,
+ "end": 9137.42,
+ "text": "monetizing"
+ },
+ {
+ "id": 18120,
+ "start": 9137.42,
+ "end": 9138.34,
+ "text": "data."
+ },
+ {
+ "id": 18121,
+ "start": 9138.34,
+ "end": 9138.96,
+ "text": "And"
+ },
+ {
+ "id": 18122,
+ "start": 9138.96,
+ "end": 9139.18,
+ "text": "so"
+ },
+ {
+ "id": 18123,
+ "start": 9139.18,
+ "end": 9139.74,
+ "text": "the"
+ },
+ {
+ "id": 18124,
+ "start": 9139.74,
+ "end": 9139.94,
+ "text": "real"
+ },
+ {
+ "id": 18125,
+ "start": 9139.94,
+ "end": 9140.14,
+ "text": "issue"
+ },
+ {
+ "id": 18126,
+ "start": 9140.14,
+ "end": 9140.26,
+ "text": "it"
+ },
+ {
+ "id": 18127,
+ "start": 9140.26,
+ "end": 9140.5,
+ "text": "seems"
+ },
+ {
+ "id": 18128,
+ "start": 9140.5,
+ "end": 9140.62,
+ "text": "to"
+ },
+ {
+ "id": 18129,
+ "start": 9140.62,
+ "end": 9141.6,
+ "text": "me"
+ },
+ {
+ "id": 18130,
+ "start": 9141.6,
+ "end": 9142.64,
+ "text": "really"
+ },
+ {
+ "id": 18131,
+ "start": 9142.64,
+ "end": 9142.94,
+ "text": "comes"
+ },
+ {
+ "id": 18132,
+ "start": 9142.94,
+ "end": 9143.16,
+ "text": "down"
+ },
+ {
+ "id": 18133,
+ "start": 9143.16,
+ "end": 9143.36,
+ "text": "to"
+ },
+ {
+ "id": 18134,
+ "start": 9143.36,
+ "end": 9143.56,
+ "text": "what"
+ },
+ {
+ "id": 18135,
+ "start": 9143.56,
+ "end": 9143.74,
+ "text": "you"
+ },
+ {
+ "id": 18136,
+ "start": 9143.74,
+ "end": 9144.1,
+ "text": "tell"
+ },
+ {
+ "id": 18137,
+ "start": 9144.1,
+ "end": 9144.32,
+ "text": "the"
+ },
+ {
+ "id": 18138,
+ "start": 9144.32,
+ "end": 9144.6,
+ "text": "public."
+ },
+ {
+ "id": 18139,
+ "start": 9144.6,
+ "end": 9144.76,
+ "text": "What"
+ },
+ {
+ "id": 18140,
+ "start": 9144.76,
+ "end": 9144.88,
+ "text": "you"
+ },
+ {
+ "id": 18141,
+ "start": 9144.88,
+ "end": 9145.14,
+ "text": "tell"
+ },
+ {
+ "id": 18142,
+ "start": 9145.14,
+ "end": 9145.7,
+ "text": "users"
+ },
+ {
+ "id": 18143,
+ "start": 9145.7,
+ "end": 9146.46,
+ "text": "of"
+ },
+ {
+ "id": 18144,
+ "start": 9146.46,
+ "end": 9146.98,
+ "text": "Facebook"
+ },
+ {
+ "id": 18145,
+ "start": 9146.98,
+ "end": 9147.68,
+ "text": "about"
+ },
+ {
+ "id": 18146,
+ "start": 9147.68,
+ "end": 9147.86,
+ "text": "what"
+ },
+ {
+ "id": 18147,
+ "start": 9147.86,
+ "end": 9148.1,
+ "text": "you're"
+ },
+ {
+ "id": 18148,
+ "start": 9148.1,
+ "end": 9148.36,
+ "text": "going"
+ },
+ {
+ "id": 18149,
+ "start": 9148.36,
+ "end": 9148.52,
+ "text": "to"
+ },
+ {
+ "id": 18150,
+ "start": 9148.52,
+ "end": 9148.74,
+ "text": "do"
+ },
+ {
+ "id": 18151,
+ "start": 9148.74,
+ "end": 9149,
+ "text": "with"
+ },
+ {
+ "id": 18152,
+ "start": 9149,
+ "end": 9149.12,
+ "text": "the"
+ },
+ {
+ "id": 18153,
+ "start": 9149.12,
+ "end": 9149.46,
+ "text": "data"
+ },
+ {
+ "id": 18154,
+ "start": 9149.46,
+ "end": 9149.94,
+ "text": "about"
+ },
+ {
+ "id": 18155,
+ "start": 9149.94,
+ "end": 9150.22,
+ "text": "how"
+ },
+ {
+ "id": 18156,
+ "start": 9150.22,
+ "end": 9150.48,
+ "text": "you're"
+ },
+ {
+ "id": 18157,
+ "start": 9150.48,
+ "end": 9150.84,
+ "text": "going"
+ },
+ {
+ "id": 18158,
+ "start": 9150.84,
+ "end": 9151.6,
+ "text": "to"
+ },
+ {
+ "id": 18159,
+ "start": 9151.6,
+ "end": 9151.88,
+ "text": "use"
+ },
+ {
+ "id": 18160,
+ "start": 9151.88,
+ "end": 9152.04,
+ "text": "it?"
+ },
+ {
+ "id": 18161,
+ "start": 9152.04,
+ "end": 9152.94,
+ "text": "Can"
+ },
+ {
+ "id": 18162,
+ "start": 9152.94,
+ "end": 9153.46,
+ "text": "you"
+ },
+ {
+ "id": 18163,
+ "start": 9153.46,
+ "end": 9153.64,
+ "text": "give"
+ },
+ {
+ "id": 18164,
+ "start": 9153.64,
+ "end": 9153.76,
+ "text": "me"
+ },
+ {
+ "id": 18165,
+ "start": 9153.76,
+ "end": 9153.84,
+ "text": "a"
+ },
+ {
+ "id": 18166,
+ "start": 9153.84,
+ "end": 9154.14,
+ "text": "couple"
+ },
+ {
+ "id": 18167,
+ "start": 9154.14,
+ "end": 9154.24,
+ "text": "of"
+ },
+ {
+ "id": 18168,
+ "start": 9154.24,
+ "end": 9154.74,
+ "text": "examples?"
+ },
+ {
+ "id": 18169,
+ "start": 9154.74,
+ "end": 9155.02,
+ "text": "Maybe"
+ },
+ {
+ "id": 18170,
+ "start": 9155.02,
+ "end": 9155.4,
+ "text": "two"
+ },
+ {
+ "id": 18171,
+ "start": 9155.4,
+ "end": 9155.96,
+ "text": "examples"
+ },
+ {
+ "id": 18172,
+ "start": 9155.96,
+ "end": 9156.22,
+ "text": "of"
+ },
+ {
+ "id": 18173,
+ "start": 9156.22,
+ "end": 9157.22,
+ "text": "ways"
+ },
+ {
+ "id": 18174,
+ "start": 9157.22,
+ "end": 9158.04,
+ "text": "in"
+ },
+ {
+ "id": 18175,
+ "start": 9158.04,
+ "end": 9158.26,
+ "text": "which"
+ },
+ {
+ "id": 18176,
+ "start": 9158.26,
+ "end": 9158.68,
+ "text": "data"
+ },
+ {
+ "id": 18177,
+ "start": 9158.68,
+ "end": 9159.38,
+ "text": "is"
+ },
+ {
+ "id": 18178,
+ "start": 9159.38,
+ "end": 9159.84,
+ "text": "collected"
+ },
+ {
+ "id": 18179,
+ "start": 9159.84,
+ "end": 9160,
+ "text": "by"
+ },
+ {
+ "id": 18180,
+ "start": 9160,
+ "end": 9160.8,
+ "text": "Facebook"
+ },
+ {
+ "id": 18181,
+ "start": 9160.8,
+ "end": 9161.8,
+ "text": "in"
+ },
+ {
+ "id": 18182,
+ "start": 9161.8,
+ "end": 9161.86,
+ "text": "a"
+ },
+ {
+ "id": 18183,
+ "start": 9161.86,
+ "end": 9162.04,
+ "text": "way"
+ },
+ {
+ "id": 18184,
+ "start": 9162.04,
+ "end": 9162.2,
+ "text": "that"
+ },
+ {
+ "id": 18185,
+ "start": 9162.2,
+ "end": 9162.4,
+ "text": "people"
+ },
+ {
+ "id": 18186,
+ "start": 9162.4,
+ "end": 9162.54,
+ "text": "are"
+ },
+ {
+ "id": 18187,
+ "start": 9162.54,
+ "end": 9162.7,
+ "text": "not"
+ },
+ {
+ "id": 18188,
+ "start": 9162.7,
+ "end": 9163,
+ "text": "aware"
+ },
+ {
+ "id": 18189,
+ "start": 9163,
+ "end": 9163.4,
+ "text": "of"
+ },
+ {
+ "id": 18190,
+ "start": 9163.4,
+ "end": 9164.42,
+ "text": "two"
+ },
+ {
+ "id": 18191,
+ "start": 9164.42,
+ "end": 9165.04,
+ "text": "examples"
+ },
+ {
+ "id": 18192,
+ "start": 9165.04,
+ "end": 9166.02,
+ "text": "of"
+ },
+ {
+ "id": 18193,
+ "start": 9166.02,
+ "end": 9167,
+ "text": "types"
+ },
+ {
+ "id": 18194,
+ "start": 9167,
+ "end": 9167.14,
+ "text": "of"
+ },
+ {
+ "id": 18195,
+ "start": 9167.14,
+ "end": 9167.48,
+ "text": "data"
+ },
+ {
+ "id": 18196,
+ "start": 9167.48,
+ "end": 9167.68,
+ "text": "that"
+ },
+ {
+ "id": 18197,
+ "start": 9167.68,
+ "end": 9168.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 18198,
+ "start": 9168.12,
+ "end": 9168.52,
+ "text": "collects."
+ },
+ {
+ "id": 18199,
+ "start": 9168.52,
+ "end": 9168.76,
+ "text": "That"
+ },
+ {
+ "id": 18200,
+ "start": 9168.76,
+ "end": 9168.96,
+ "text": "might"
+ },
+ {
+ "id": 18201,
+ "start": 9168.96,
+ "end": 9169.04,
+ "text": "be"
+ },
+ {
+ "id": 18202,
+ "start": 9169.04,
+ "end": 9169.62,
+ "text": "surprising"
+ },
+ {
+ "id": 18203,
+ "start": 9169.62,
+ "end": 9170.34,
+ "text": "to"
+ },
+ {
+ "id": 18204,
+ "start": 9170.34,
+ "end": 9171.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 18205,
+ "start": 9171.16,
+ "end": 9172.36,
+ "text": "users"
+ },
+ {
+ "id": 18206,
+ "start": 9172.36,
+ "end": 9173.38,
+ "text": "well"
+ },
+ {
+ "id": 18207,
+ "start": 9173.38,
+ "end": 9173.68,
+ "text": "center."
+ },
+ {
+ "id": 18208,
+ "start": 9173.68,
+ "end": 9173.74,
+ "text": "I"
+ },
+ {
+ "id": 18209,
+ "start": 9173.74,
+ "end": 9173.9,
+ "text": "would"
+ },
+ {
+ "id": 18210,
+ "start": 9173.9,
+ "end": 9174.08,
+ "text": "hope"
+ },
+ {
+ "id": 18211,
+ "start": 9174.08,
+ "end": 9174.32,
+ "text": "that"
+ },
+ {
+ "id": 18212,
+ "start": 9174.32,
+ "end": 9174.68,
+ "text": "what"
+ },
+ {
+ "id": 18213,
+ "start": 9174.68,
+ "end": 9174.8,
+ "text": "we"
+ },
+ {
+ "id": 18214,
+ "start": 9174.8,
+ "end": 9174.94,
+ "text": "do"
+ },
+ {
+ "id": 18215,
+ "start": 9174.94,
+ "end": 9175.1,
+ "text": "is"
+ },
+ {
+ "id": 18216,
+ "start": 9175.1,
+ "end": 9175.4,
+ "text": "data"
+ },
+ {
+ "id": 18217,
+ "start": 9175.4,
+ "end": 9175.54,
+ "text": "is"
+ },
+ {
+ "id": 18218,
+ "start": 9175.54,
+ "end": 9175.78,
+ "text": "not"
+ },
+ {
+ "id": 18219,
+ "start": 9175.78,
+ "end": 9176.34,
+ "text": "surprising"
+ },
+ {
+ "id": 18220,
+ "start": 9176.34,
+ "end": 9176.48,
+ "text": "to"
+ },
+ {
+ "id": 18221,
+ "start": 9176.48,
+ "end": 9178.2,
+ "text": "people"
+ },
+ {
+ "id": 18222,
+ "start": 9178.2,
+ "end": 9179.16,
+ "text": "and"
+ },
+ {
+ "id": 18223,
+ "start": 9179.16,
+ "end": 9179.36,
+ "text": "has"
+ },
+ {
+ "id": 18224,
+ "start": 9179.36,
+ "end": 9179.48,
+ "text": "it"
+ },
+ {
+ "id": 18225,
+ "start": 9179.48,
+ "end": 9179.66,
+ "text": "been"
+ },
+ {
+ "id": 18226,
+ "start": 9179.66,
+ "end": 9179.76,
+ "text": "at"
+ },
+ {
+ "id": 18227,
+ "start": 9179.76,
+ "end": 9181.58,
+ "text": "times?"
+ },
+ {
+ "id": 18228,
+ "start": 9181.58,
+ "end": 9182.56,
+ "text": "Well,"
+ },
+ {
+ "id": 18229,
+ "start": 9182.56,
+ "end": 9182.86,
+ "text": "Senator,"
+ },
+ {
+ "id": 18230,
+ "start": 9182.86,
+ "end": 9182.9,
+ "text": "I"
+ },
+ {
+ "id": 18231,
+ "start": 9182.9,
+ "end": 9183.06,
+ "text": "think"
+ },
+ {
+ "id": 18232,
+ "start": 9183.06,
+ "end": 9183.38,
+ "text": "in"
+ },
+ {
+ "id": 18233,
+ "start": 9183.38,
+ "end": 9183.54,
+ "text": "this"
+ },
+ {
+ "id": 18234,
+ "start": 9183.54,
+ "end": 9183.78,
+ "text": "case,"
+ },
+ {
+ "id": 18235,
+ "start": 9183.78,
+ "end": 9184.18,
+ "text": "people"
+ },
+ {
+ "id": 18236,
+ "start": 9184.18,
+ "end": 9184.5,
+ "text": "certainly"
+ },
+ {
+ "id": 18237,
+ "start": 9184.5,
+ "end": 9184.72,
+ "text": "didn't"
+ },
+ {
+ "id": 18238,
+ "start": 9184.72,
+ "end": 9185.04,
+ "text": "expect"
+ },
+ {
+ "id": 18239,
+ "start": 9185.04,
+ "end": 9185.28,
+ "text": "this"
+ },
+ {
+ "id": 18240,
+ "start": 9185.28,
+ "end": 9185.74,
+ "text": "developer"
+ },
+ {
+ "id": 18241,
+ "start": 9185.74,
+ "end": 9185.86,
+ "text": "to"
+ },
+ {
+ "id": 18242,
+ "start": 9185.86,
+ "end": 9186.06,
+ "text": "sell"
+ },
+ {
+ "id": 18243,
+ "start": 9186.06,
+ "end": 9186.16,
+ "text": "the"
+ },
+ {
+ "id": 18244,
+ "start": 9186.16,
+ "end": 9186.34,
+ "text": "data"
+ },
+ {
+ "id": 18245,
+ "start": 9186.34,
+ "end": 9186.44,
+ "text": "to"
+ },
+ {
+ "id": 18246,
+ "start": 9186.44,
+ "end": 9186.78,
+ "text": "Cambridge"
+ },
+ {
+ "id": 18247,
+ "start": 9186.78,
+ "end": 9187.56,
+ "text": "Analytica"
+ },
+ {
+ "id": 18248,
+ "start": 9187.56,
+ "end": 9188.58,
+ "text": "in"
+ },
+ {
+ "id": 18249,
+ "start": 9188.58,
+ "end": 9189.02,
+ "text": "general,"
+ },
+ {
+ "id": 18250,
+ "start": 9189.02,
+ "end": 9189.58,
+ "text": "there"
+ },
+ {
+ "id": 18251,
+ "start": 9189.58,
+ "end": 9189.7,
+ "text": "are"
+ },
+ {
+ "id": 18252,
+ "start": 9189.7,
+ "end": 9190.04,
+ "text": "two"
+ },
+ {
+ "id": 18253,
+ "start": 9190.04,
+ "end": 9191.12,
+ "text": "types"
+ },
+ {
+ "id": 18254,
+ "start": 9191.12,
+ "end": 9191.28,
+ "text": "of"
+ },
+ {
+ "id": 18255,
+ "start": 9191.28,
+ "end": 9191.64,
+ "text": "data"
+ },
+ {
+ "id": 18256,
+ "start": 9191.64,
+ "end": 9192.4,
+ "text": "that"
+ },
+ {
+ "id": 18257,
+ "start": 9192.4,
+ "end": 9193.42,
+ "text": "that"
+ },
+ {
+ "id": 18258,
+ "start": 9193.42,
+ "end": 9193.88,
+ "text": "Facebook"
+ },
+ {
+ "id": 18259,
+ "start": 9193.88,
+ "end": 9194.14,
+ "text": "has"
+ },
+ {
+ "id": 18260,
+ "start": 9194.14,
+ "end": 9195.14,
+ "text": "the"
+ },
+ {
+ "id": 18261,
+ "start": 9195.14,
+ "end": 9195.42,
+ "text": "vast"
+ },
+ {
+ "id": 18262,
+ "start": 9195.42,
+ "end": 9195.8,
+ "text": "majority."
+ },
+ {
+ "id": 18263,
+ "start": 9195.8,
+ "end": 9195.92,
+ "text": "And"
+ },
+ {
+ "id": 18264,
+ "start": 9195.92,
+ "end": 9196.04,
+ "text": "then"
+ },
+ {
+ "id": 18265,
+ "start": 9196.04,
+ "end": 9196.14,
+ "text": "the"
+ },
+ {
+ "id": 18266,
+ "start": 9196.14,
+ "end": 9196.36,
+ "text": "first"
+ },
+ {
+ "id": 18267,
+ "start": 9196.36,
+ "end": 9196.92,
+ "text": "category"
+ },
+ {
+ "id": 18268,
+ "start": 9196.92,
+ "end": 9197.54,
+ "text": "is"
+ },
+ {
+ "id": 18269,
+ "start": 9197.54,
+ "end": 9197.96,
+ "text": "content"
+ },
+ {
+ "id": 18270,
+ "start": 9197.96,
+ "end": 9198.12,
+ "text": "that"
+ },
+ {
+ "id": 18271,
+ "start": 9198.12,
+ "end": 9198.46,
+ "text": "people"
+ },
+ {
+ "id": 18272,
+ "start": 9198.46,
+ "end": 9198.82,
+ "text": "chose"
+ },
+ {
+ "id": 18273,
+ "start": 9198.82,
+ "end": 9198.98,
+ "text": "to"
+ },
+ {
+ "id": 18274,
+ "start": 9198.98,
+ "end": 9199.34,
+ "text": "share"
+ },
+ {
+ "id": 18275,
+ "start": 9199.34,
+ "end": 9199.7,
+ "text": "on"
+ },
+ {
+ "id": 18276,
+ "start": 9199.7,
+ "end": 9199.82,
+ "text": "the"
+ },
+ {
+ "id": 18277,
+ "start": 9199.82,
+ "end": 9200.16,
+ "text": "service"
+ },
+ {
+ "id": 18278,
+ "start": 9200.16,
+ "end": 9200.68,
+ "text": "themselves."
+ },
+ {
+ "id": 18279,
+ "start": 9200.68,
+ "end": 9201.26,
+ "text": "So"
+ },
+ {
+ "id": 18280,
+ "start": 9201.26,
+ "end": 9201.56,
+ "text": "that's"
+ },
+ {
+ "id": 18281,
+ "start": 9201.56,
+ "end": 9202.24,
+ "text": "all"
+ },
+ {
+ "id": 18282,
+ "start": 9202.24,
+ "end": 9202.38,
+ "text": "the"
+ },
+ {
+ "id": 18283,
+ "start": 9202.38,
+ "end": 9202.71,
+ "text": "photos"
+ },
+ {
+ "id": 18284,
+ "start": 9202.71,
+ "end": 9202.97,
+ "text": "that"
+ },
+ {
+ "id": 18285,
+ "start": 9202.97,
+ "end": 9203.09,
+ "text": "you"
+ },
+ {
+ "id": 18286,
+ "start": 9203.09,
+ "end": 9203.33,
+ "text": "share"
+ },
+ {
+ "id": 18287,
+ "start": 9203.33,
+ "end": 9203.63,
+ "text": "the"
+ },
+ {
+ "id": 18288,
+ "start": 9203.63,
+ "end": 9203.95,
+ "text": "posts"
+ },
+ {
+ "id": 18289,
+ "start": 9203.95,
+ "end": 9204.17,
+ "text": "that"
+ },
+ {
+ "id": 18290,
+ "start": 9204.17,
+ "end": 9204.33,
+ "text": "you"
+ },
+ {
+ "id": 18291,
+ "start": 9204.33,
+ "end": 9204.61,
+ "text": "make."
+ },
+ {
+ "id": 18292,
+ "start": 9204.61,
+ "end": 9205.31,
+ "text": "What"
+ },
+ {
+ "id": 18293,
+ "start": 9205.31,
+ "end": 9205.47,
+ "text": "you"
+ },
+ {
+ "id": 18294,
+ "start": 9205.47,
+ "end": 9205.65,
+ "text": "think"
+ },
+ {
+ "id": 18295,
+ "start": 9205.65,
+ "end": 9205.77,
+ "text": "of"
+ },
+ {
+ "id": 18296,
+ "start": 9205.77,
+ "end": 9205.97,
+ "text": "is"
+ },
+ {
+ "id": 18297,
+ "start": 9205.97,
+ "end": 9206.11,
+ "text": "the"
+ },
+ {
+ "id": 18298,
+ "start": 9206.11,
+ "end": 9206.51,
+ "text": "Facebook"
+ },
+ {
+ "id": 18299,
+ "start": 9206.51,
+ "end": 9206.91,
+ "text": "service"
+ },
+ {
+ "id": 18300,
+ "start": 9206.91,
+ "end": 9208.23,
+ "text": "that"
+ },
+ {
+ "id": 18301,
+ "start": 9208.23,
+ "end": 9208.49,
+ "text": "everyone"
+ },
+ {
+ "id": 18302,
+ "start": 9208.49,
+ "end": 9208.67,
+ "text": "has"
+ },
+ {
+ "id": 18303,
+ "start": 9208.67,
+ "end": 9209.05,
+ "text": "control"
+ },
+ {
+ "id": 18304,
+ "start": 9209.05,
+ "end": 9209.33,
+ "text": "every"
+ },
+ {
+ "id": 18305,
+ "start": 9209.33,
+ "end": 9209.59,
+ "text": "single"
+ },
+ {
+ "id": 18306,
+ "start": 9209.59,
+ "end": 9209.77,
+ "text": "time"
+ },
+ {
+ "id": 18307,
+ "start": 9209.77,
+ "end": 9209.91,
+ "text": "that"
+ },
+ {
+ "id": 18308,
+ "start": 9209.91,
+ "end": 9210.05,
+ "text": "they"
+ },
+ {
+ "id": 18309,
+ "start": 9210.05,
+ "end": 9210.17,
+ "text": "go"
+ },
+ {
+ "id": 18310,
+ "start": 9210.17,
+ "end": 9210.25,
+ "text": "to"
+ },
+ {
+ "id": 18311,
+ "start": 9210.25,
+ "end": 9210.45,
+ "text": "share"
+ },
+ {
+ "id": 18312,
+ "start": 9210.45,
+ "end": 9210.69,
+ "text": "that"
+ },
+ {
+ "id": 18313,
+ "start": 9210.69,
+ "end": 9211.13,
+ "text": "they"
+ },
+ {
+ "id": 18314,
+ "start": 9211.13,
+ "end": 9211.27,
+ "text": "can"
+ },
+ {
+ "id": 18315,
+ "start": 9211.27,
+ "end": 9211.51,
+ "text": "delete"
+ },
+ {
+ "id": 18316,
+ "start": 9211.51,
+ "end": 9211.67,
+ "text": "that"
+ },
+ {
+ "id": 18317,
+ "start": 9211.67,
+ "end": 9211.87,
+ "text": "data"
+ },
+ {
+ "id": 18318,
+ "start": 9211.87,
+ "end": 9212.25,
+ "text": "anytime."
+ },
+ {
+ "id": 18319,
+ "start": 9212.25,
+ "end": 9212.41,
+ "text": "They"
+ },
+ {
+ "id": 18320,
+ "start": 9212.41,
+ "end": 9213.02,
+ "text": "want"
+ },
+ {
+ "id": 18321,
+ "start": 9213.02,
+ "end": 9213.58,
+ "text": "full"
+ },
+ {
+ "id": 18322,
+ "start": 9213.58,
+ "end": 9213.92,
+ "text": "control."
+ },
+ {
+ "id": 18323,
+ "start": 9213.92,
+ "end": 9214.3,
+ "text": "The"
+ },
+ {
+ "id": 18324,
+ "start": 9214.3,
+ "end": 9214.66,
+ "text": "majority"
+ },
+ {
+ "id": 18325,
+ "start": 9214.66,
+ "end": 9214.74,
+ "text": "of"
+ },
+ {
+ "id": 18326,
+ "start": 9214.74,
+ "end": 9214.82,
+ "text": "the"
+ },
+ {
+ "id": 18327,
+ "start": 9214.82,
+ "end": 9215.02,
+ "text": "data"
+ },
+ {
+ "id": 18328,
+ "start": 9215.02,
+ "end": 9215.7,
+ "text": "the"
+ },
+ {
+ "id": 18329,
+ "start": 9215.7,
+ "end": 9216.06,
+ "text": "second"
+ },
+ {
+ "id": 18330,
+ "start": 9216.06,
+ "end": 9216.56,
+ "text": "category"
+ },
+ {
+ "id": 18331,
+ "start": 9216.56,
+ "end": 9217.06,
+ "text": "is"
+ },
+ {
+ "id": 18332,
+ "start": 9217.06,
+ "end": 9217.44,
+ "text": "around"
+ },
+ {
+ "id": 18333,
+ "start": 9217.44,
+ "end": 9218.34,
+ "text": "specific"
+ },
+ {
+ "id": 18334,
+ "start": 9218.34,
+ "end": 9218.62,
+ "text": "data"
+ },
+ {
+ "id": 18335,
+ "start": 9218.62,
+ "end": 9218.96,
+ "text": "that"
+ },
+ {
+ "id": 18336,
+ "start": 9218.96,
+ "end": 9219.12,
+ "text": "we"
+ },
+ {
+ "id": 18337,
+ "start": 9219.12,
+ "end": 9219.56,
+ "text": "collect"
+ },
+ {
+ "id": 18338,
+ "start": 9219.56,
+ "end": 9220.14,
+ "text": "in"
+ },
+ {
+ "id": 18339,
+ "start": 9220.14,
+ "end": 9220.38,
+ "text": "order"
+ },
+ {
+ "id": 18340,
+ "start": 9220.38,
+ "end": 9220.48,
+ "text": "to"
+ },
+ {
+ "id": 18341,
+ "start": 9220.48,
+ "end": 9220.66,
+ "text": "make"
+ },
+ {
+ "id": 18342,
+ "start": 9220.66,
+ "end": 9220.8,
+ "text": "the"
+ },
+ {
+ "id": 18343,
+ "start": 9220.8,
+ "end": 9221.46,
+ "text": "advertising"
+ },
+ {
+ "id": 18344,
+ "start": 9221.46,
+ "end": 9222.3,
+ "text": "experiences"
+ },
+ {
+ "id": 18345,
+ "start": 9222.3,
+ "end": 9223.04,
+ "text": "better"
+ },
+ {
+ "id": 18346,
+ "start": 9223.04,
+ "end": 9223.32,
+ "text": "and"
+ },
+ {
+ "id": 18347,
+ "start": 9223.32,
+ "end": 9223.69,
+ "text": "more"
+ },
+ {
+ "id": 18348,
+ "start": 9223.69,
+ "end": 9224.17,
+ "text": "and"
+ },
+ {
+ "id": 18349,
+ "start": 9224.17,
+ "end": 9224.43,
+ "text": "work"
+ },
+ {
+ "id": 18350,
+ "start": 9224.43,
+ "end": 9224.79,
+ "text": "for"
+ },
+ {
+ "id": 18351,
+ "start": 9224.79,
+ "end": 9225.37,
+ "text": "businesses"
+ },
+ {
+ "id": 18352,
+ "start": 9225.37,
+ "end": 9225.91,
+ "text": "and"
+ },
+ {
+ "id": 18353,
+ "start": 9225.91,
+ "end": 9226.11,
+ "text": "those"
+ },
+ {
+ "id": 18354,
+ "start": 9226.11,
+ "end": 9226.47,
+ "text": "often"
+ },
+ {
+ "id": 18355,
+ "start": 9226.47,
+ "end": 9226.83,
+ "text": "revolve"
+ },
+ {
+ "id": 18356,
+ "start": 9226.83,
+ "end": 9227.09,
+ "text": "around"
+ },
+ {
+ "id": 18357,
+ "start": 9227.09,
+ "end": 9227.53,
+ "text": "measuring"
+ },
+ {
+ "id": 18358,
+ "start": 9227.53,
+ "end": 9228.23,
+ "text": "okay,"
+ },
+ {
+ "id": 18359,
+ "start": 9228.23,
+ "end": 9228.83,
+ "text": "if"
+ },
+ {
+ "id": 18360,
+ "start": 9228.83,
+ "end": 9228.97,
+ "text": "we"
+ },
+ {
+ "id": 18361,
+ "start": 9228.97,
+ "end": 9229.19,
+ "text": "showed"
+ },
+ {
+ "id": 18362,
+ "start": 9229.19,
+ "end": 9229.31,
+ "text": "you"
+ },
+ {
+ "id": 18363,
+ "start": 9229.31,
+ "end": 9229.39,
+ "text": "an"
+ },
+ {
+ "id": 18364,
+ "start": 9229.39,
+ "end": 9229.65,
+ "text": "ad"
+ },
+ {
+ "id": 18365,
+ "start": 9229.65,
+ "end": 9230.13,
+ "text": "and"
+ },
+ {
+ "id": 18366,
+ "start": 9230.13,
+ "end": 9230.25,
+ "text": "then"
+ },
+ {
+ "id": 18367,
+ "start": 9230.25,
+ "end": 9230.37,
+ "text": "you"
+ },
+ {
+ "id": 18368,
+ "start": 9230.37,
+ "end": 9230.57,
+ "text": "click"
+ },
+ {
+ "id": 18369,
+ "start": 9230.57,
+ "end": 9230.85,
+ "text": "through"
+ },
+ {
+ "id": 18370,
+ "start": 9230.85,
+ "end": 9230.97,
+ "text": "and"
+ },
+ {
+ "id": 18371,
+ "start": 9230.97,
+ "end": 9231.11,
+ "text": "you"
+ },
+ {
+ "id": 18372,
+ "start": 9231.11,
+ "end": 9231.21,
+ "text": "go"
+ },
+ {
+ "id": 18373,
+ "start": 9231.21,
+ "end": 9231.53,
+ "text": "somewhere"
+ },
+ {
+ "id": 18374,
+ "start": 9231.53,
+ "end": 9231.69,
+ "text": "else."
+ },
+ {
+ "id": 18375,
+ "start": 9231.69,
+ "end": 9231.93,
+ "text": "We"
+ },
+ {
+ "id": 18376,
+ "start": 9231.93,
+ "end": 9232.07,
+ "text": "can"
+ },
+ {
+ "id": 18377,
+ "start": 9232.07,
+ "end": 9232.43,
+ "text": "measure"
+ },
+ {
+ "id": 18378,
+ "start": 9232.43,
+ "end": 9233.05,
+ "text": "that."
+ },
+ {
+ "id": 18379,
+ "start": 9233.05,
+ "end": 9233.21,
+ "text": "You"
+ },
+ {
+ "id": 18380,
+ "start": 9233.21,
+ "end": 9234.36,
+ "text": "actually"
+ },
+ {
+ "id": 18381,
+ "start": 9234.36,
+ "end": 9234.94,
+ "text": "that"
+ },
+ {
+ "id": 18382,
+ "start": 9234.94,
+ "end": 9235.38,
+ "text": "the"
+ },
+ {
+ "id": 18383,
+ "start": 9235.38,
+ "end": 9235.54,
+ "text": "ad"
+ },
+ {
+ "id": 18384,
+ "start": 9235.54,
+ "end": 9235.82,
+ "text": "worked"
+ },
+ {
+ "id": 18385,
+ "start": 9235.82,
+ "end": 9236.3,
+ "text": "that"
+ },
+ {
+ "id": 18386,
+ "start": 9236.3,
+ "end": 9236.52,
+ "text": "helps"
+ },
+ {
+ "id": 18387,
+ "start": 9236.52,
+ "end": 9236.76,
+ "text": "make"
+ },
+ {
+ "id": 18388,
+ "start": 9236.76,
+ "end": 9236.88,
+ "text": "the"
+ },
+ {
+ "id": 18389,
+ "start": 9236.88,
+ "end": 9237.38,
+ "text": "experience"
+ },
+ {
+ "id": 18390,
+ "start": 9237.38,
+ "end": 9237.58,
+ "text": "more"
+ },
+ {
+ "id": 18391,
+ "start": 9237.58,
+ "end": 9238,
+ "text": "relevant"
+ },
+ {
+ "id": 18392,
+ "start": 9238,
+ "end": 9238.18,
+ "text": "and"
+ },
+ {
+ "id": 18393,
+ "start": 9238.18,
+ "end": 9238.52,
+ "text": "better"
+ },
+ {
+ "id": 18394,
+ "start": 9238.52,
+ "end": 9239.52,
+ "text": "for"
+ },
+ {
+ "id": 18395,
+ "start": 9239.52,
+ "end": 9239.76,
+ "text": "people"
+ },
+ {
+ "id": 18396,
+ "start": 9239.76,
+ "end": 9239.88,
+ "text": "who"
+ },
+ {
+ "id": 18397,
+ "start": 9239.88,
+ "end": 9240,
+ "text": "are"
+ },
+ {
+ "id": 18398,
+ "start": 9240,
+ "end": 9240.22,
+ "text": "getting"
+ },
+ {
+ "id": 18399,
+ "start": 9240.22,
+ "end": 9240.34,
+ "text": "more"
+ },
+ {
+ "id": 18400,
+ "start": 9240.34,
+ "end": 9240.64,
+ "text": "relevant"
+ },
+ {
+ "id": 18401,
+ "start": 9240.64,
+ "end": 9240.86,
+ "text": "ads"
+ },
+ {
+ "id": 18402,
+ "start": 9240.86,
+ "end": 9241.02,
+ "text": "and"
+ },
+ {
+ "id": 18403,
+ "start": 9241.02,
+ "end": 9241.24,
+ "text": "better"
+ },
+ {
+ "id": 18404,
+ "start": 9241.24,
+ "end": 9241.36,
+ "text": "for"
+ },
+ {
+ "id": 18405,
+ "start": 9241.36,
+ "end": 9241.46,
+ "text": "the"
+ },
+ {
+ "id": 18406,
+ "start": 9241.46,
+ "end": 9241.88,
+ "text": "businesses"
+ },
+ {
+ "id": 18407,
+ "start": 9241.88,
+ "end": 9242.16,
+ "text": "because"
+ },
+ {
+ "id": 18408,
+ "start": 9242.16,
+ "end": 9242.32,
+ "text": "they"
+ },
+ {
+ "id": 18409,
+ "start": 9242.32,
+ "end": 9242.66,
+ "text": "perform"
+ },
+ {
+ "id": 18410,
+ "start": 9242.66,
+ "end": 9242.88,
+ "text": "better."
+ },
+ {
+ "id": 18411,
+ "start": 9242.88,
+ "end": 9243.48,
+ "text": "You"
+ },
+ {
+ "id": 18412,
+ "start": 9243.48,
+ "end": 9243.8,
+ "text": "also"
+ },
+ {
+ "id": 18413,
+ "start": 9243.8,
+ "end": 9243.98,
+ "text": "have"
+ },
+ {
+ "id": 18414,
+ "start": 9243.98,
+ "end": 9244.48,
+ "text": "control"
+ },
+ {
+ "id": 18415,
+ "start": 9244.48,
+ "end": 9245.08,
+ "text": "completely"
+ },
+ {
+ "id": 18416,
+ "start": 9245.08,
+ "end": 9245.4,
+ "text": "of"
+ },
+ {
+ "id": 18417,
+ "start": 9245.4,
+ "end": 9245.56,
+ "text": "that"
+ },
+ {
+ "id": 18418,
+ "start": 9245.56,
+ "end": 9245.81,
+ "text": "second,"
+ },
+ {
+ "id": 18419,
+ "start": 9245.81,
+ "end": 9245.85,
+ "text": "a"
+ },
+ {
+ "id": 18420,
+ "start": 9245.85,
+ "end": 9246.09,
+ "text": "type"
+ },
+ {
+ "id": 18421,
+ "start": 9246.09,
+ "end": 9246.19,
+ "text": "of"
+ },
+ {
+ "id": 18422,
+ "start": 9246.19,
+ "end": 9246.45,
+ "text": "data"
+ },
+ {
+ "id": 18423,
+ "start": 9246.45,
+ "end": 9246.93,
+ "text": "you"
+ },
+ {
+ "id": 18424,
+ "start": 9246.93,
+ "end": 9247.07,
+ "text": "can"
+ },
+ {
+ "id": 18425,
+ "start": 9247.07,
+ "end": 9247.29,
+ "text": "turn"
+ },
+ {
+ "id": 18426,
+ "start": 9247.29,
+ "end": 9247.53,
+ "text": "off"
+ },
+ {
+ "id": 18427,
+ "start": 9247.53,
+ "end": 9247.83,
+ "text": "the"
+ },
+ {
+ "id": 18428,
+ "start": 9247.83,
+ "end": 9248.21,
+ "text": "ability"
+ },
+ {
+ "id": 18429,
+ "start": 9248.21,
+ "end": 9248.61,
+ "text": "for"
+ },
+ {
+ "id": 18430,
+ "start": 9248.61,
+ "end": 9248.97,
+ "text": "Facebook"
+ },
+ {
+ "id": 18431,
+ "start": 9248.97,
+ "end": 9249.07,
+ "text": "to"
+ },
+ {
+ "id": 18432,
+ "start": 9249.07,
+ "end": 9249.31,
+ "text": "collect"
+ },
+ {
+ "id": 18433,
+ "start": 9249.31,
+ "end": 9249.53,
+ "text": "that"
+ },
+ {
+ "id": 18434,
+ "start": 9249.53,
+ "end": 9249.91,
+ "text": "your"
+ },
+ {
+ "id": 18435,
+ "start": 9249.91,
+ "end": 9250.09,
+ "text": "ads"
+ },
+ {
+ "id": 18436,
+ "start": 9250.09,
+ "end": 9250.27,
+ "text": "will"
+ },
+ {
+ "id": 18437,
+ "start": 9250.27,
+ "end": 9250.39,
+ "text": "get"
+ },
+ {
+ "id": 18438,
+ "start": 9250.39,
+ "end": 9250.63,
+ "text": "worse."
+ },
+ {
+ "id": 18439,
+ "start": 9250.63,
+ "end": 9251.03,
+ "text": "So"
+ },
+ {
+ "id": 18440,
+ "start": 9251.03,
+ "end": 9251.09,
+ "text": "a"
+ },
+ {
+ "id": 18441,
+ "start": 9251.09,
+ "end": 9251.21,
+ "text": "lot"
+ },
+ {
+ "id": 18442,
+ "start": 9251.21,
+ "end": 9251.27,
+ "text": "of"
+ },
+ {
+ "id": 18443,
+ "start": 9251.27,
+ "end": 9251.45,
+ "text": "people"
+ },
+ {
+ "id": 18444,
+ "start": 9251.45,
+ "end": 9251.61,
+ "text": "don't"
+ },
+ {
+ "id": 18445,
+ "start": 9251.61,
+ "end": 9251.71,
+ "text": "want"
+ },
+ {
+ "id": 18446,
+ "start": 9251.71,
+ "end": 9251.77,
+ "text": "to"
+ },
+ {
+ "id": 18447,
+ "start": 9251.77,
+ "end": 9251.85,
+ "text": "do"
+ },
+ {
+ "id": 18448,
+ "start": 9251.85,
+ "end": 9252.05,
+ "text": "that?"
+ },
+ {
+ "id": 18449,
+ "start": 9252.05,
+ "end": 9252.83,
+ "text": "But"
+ },
+ {
+ "id": 18450,
+ "start": 9252.83,
+ "end": 9252.99,
+ "text": "you"
+ },
+ {
+ "id": 18451,
+ "start": 9252.99,
+ "end": 9253.15,
+ "text": "have"
+ },
+ {
+ "id": 18452,
+ "start": 9253.15,
+ "end": 9253.53,
+ "text": "complete"
+ },
+ {
+ "id": 18453,
+ "start": 9253.53,
+ "end": 9253.93,
+ "text": "control"
+ },
+ {
+ "id": 18454,
+ "start": 9253.93,
+ "end": 9254.31,
+ "text": "over"
+ },
+ {
+ "id": 18455,
+ "start": 9254.31,
+ "end": 9254.45,
+ "text": "what"
+ },
+ {
+ "id": 18456,
+ "start": 9254.45,
+ "end": 9254.57,
+ "text": "you"
+ },
+ {
+ "id": 18457,
+ "start": 9254.57,
+ "end": 9254.71,
+ "text": "do"
+ },
+ {
+ "id": 18458,
+ "start": 9254.71,
+ "end": 9254.89,
+ "text": "there"
+ },
+ {
+ "id": 18459,
+ "start": 9254.89,
+ "end": 9255.05,
+ "text": "as"
+ },
+ {
+ "id": 18460,
+ "start": 9255.05,
+ "end": 9255.25,
+ "text": "well."
+ },
+ {
+ "id": 18461,
+ "start": 9255.25,
+ "end": 9256.03,
+ "text": "See"
+ },
+ {
+ "id": 18462,
+ "start": 9256.03,
+ "end": 9257.26,
+ "text": "shots,"
+ },
+ {
+ "id": 18463,
+ "start": 9257.26,
+ "end": 9258.44,
+ "text": "thank"
+ },
+ {
+ "id": 18464,
+ "start": 9258.44,
+ "end": 9258.54,
+ "text": "you,"
+ },
+ {
+ "id": 18465,
+ "start": 9258.54,
+ "end": 9258.78,
+ "text": "Mr"
+ },
+ {
+ "id": 18466,
+ "start": 9258.78,
+ "end": 9259.04,
+ "text": "Chairman."
+ },
+ {
+ "id": 18467,
+ "start": 9259.04,
+ "end": 9259.08,
+ "text": "I"
+ },
+ {
+ "id": 18468,
+ "start": 9259.08,
+ "end": 9259.26,
+ "text": "want"
+ },
+ {
+ "id": 18469,
+ "start": 9259.26,
+ "end": 9259.38,
+ "text": "to"
+ },
+ {
+ "id": 18470,
+ "start": 9259.38,
+ "end": 9259.88,
+ "text": "follow"
+ },
+ {
+ "id": 18471,
+ "start": 9259.88,
+ "end": 9260.04,
+ "text": "up"
+ },
+ {
+ "id": 18472,
+ "start": 9260.04,
+ "end": 9260.2,
+ "text": "on"
+ },
+ {
+ "id": 18473,
+ "start": 9260.2,
+ "end": 9260.42,
+ "text": "the"
+ },
+ {
+ "id": 18474,
+ "start": 9260.42,
+ "end": 9261.34,
+ "text": "questions"
+ },
+ {
+ "id": 18475,
+ "start": 9261.34,
+ "end": 9261.68,
+ "text": "around"
+ },
+ {
+ "id": 18476,
+ "start": 9261.68,
+ "end": 9261.8,
+ "text": "the"
+ },
+ {
+ "id": 18477,
+ "start": 9261.8,
+ "end": 9262.12,
+ "text": "terms"
+ },
+ {
+ "id": 18478,
+ "start": 9262.12,
+ "end": 9262.24,
+ "text": "of"
+ },
+ {
+ "id": 18479,
+ "start": 9262.24,
+ "end": 9262.7,
+ "text": "service,"
+ },
+ {
+ "id": 18480,
+ "start": 9262.7,
+ "end": 9263.44,
+ "text": "your"
+ },
+ {
+ "id": 18481,
+ "start": 9263.44,
+ "end": 9263.7,
+ "text": "terms"
+ },
+ {
+ "id": 18482,
+ "start": 9263.7,
+ "end": 9263.82,
+ "text": "of"
+ },
+ {
+ "id": 18483,
+ "start": 9263.82,
+ "end": 9264.12,
+ "text": "service"
+ },
+ {
+ "id": 18484,
+ "start": 9264.12,
+ "end": 9264.26,
+ "text": "are"
+ },
+ {
+ "id": 18485,
+ "start": 9264.26,
+ "end": 9264.44,
+ "text": "about"
+ },
+ {
+ "id": 18486,
+ "start": 9264.44,
+ "end": 9265.12,
+ "text": "3,200"
+ },
+ {
+ "id": 18487,
+ "start": 9265.12,
+ "end": 9265.5,
+ "text": "words"
+ },
+ {
+ "id": 18488,
+ "start": 9265.5,
+ "end": 9265.74,
+ "text": "with"
+ },
+ {
+ "id": 18489,
+ "start": 9265.74,
+ "end": 9266.1,
+ "text": "30"
+ },
+ {
+ "id": 18490,
+ "start": 9266.1,
+ "end": 9266.4,
+ "text": "links."
+ },
+ {
+ "id": 18491,
+ "start": 9266.4,
+ "end": 9267.12,
+ "text": "One"
+ },
+ {
+ "id": 18492,
+ "start": 9267.12,
+ "end": 9267.22,
+ "text": "of"
+ },
+ {
+ "id": 18493,
+ "start": 9267.22,
+ "end": 9267.36,
+ "text": "the"
+ },
+ {
+ "id": 18494,
+ "start": 9267.36,
+ "end": 9267.58,
+ "text": "links"
+ },
+ {
+ "id": 18495,
+ "start": 9267.58,
+ "end": 9267.74,
+ "text": "is"
+ },
+ {
+ "id": 18496,
+ "start": 9267.74,
+ "end": 9267.86,
+ "text": "to"
+ },
+ {
+ "id": 18497,
+ "start": 9267.86,
+ "end": 9268.04,
+ "text": "your"
+ },
+ {
+ "id": 18498,
+ "start": 9268.04,
+ "end": 9268.32,
+ "text": "data"
+ },
+ {
+ "id": 18499,
+ "start": 9268.32,
+ "end": 9268.84,
+ "text": "policy,"
+ },
+ {
+ "id": 18500,
+ "start": 9268.84,
+ "end": 9269,
+ "text": "which"
+ },
+ {
+ "id": 18501,
+ "start": 9269,
+ "end": 9269.14,
+ "text": "is"
+ },
+ {
+ "id": 18502,
+ "start": 9269.14,
+ "end": 9269.36,
+ "text": "about"
+ },
+ {
+ "id": 18503,
+ "start": 9269.36,
+ "end": 9270.76,
+ "text": "2,700"
+ },
+ {
+ "id": 18504,
+ "start": 9270.76,
+ "end": 9271.02,
+ "text": "words"
+ },
+ {
+ "id": 18505,
+ "start": 9271.02,
+ "end": 9271.2,
+ "text": "with"
+ },
+ {
+ "id": 18506,
+ "start": 9271.2,
+ "end": 9272,
+ "text": "22"
+ },
+ {
+ "id": 18507,
+ "start": 9272,
+ "end": 9272.66,
+ "text": "links."
+ },
+ {
+ "id": 18508,
+ "start": 9272.66,
+ "end": 9273.22,
+ "text": "And"
+ },
+ {
+ "id": 18509,
+ "start": 9273.22,
+ "end": 9273.26,
+ "text": "I"
+ },
+ {
+ "id": 18510,
+ "start": 9273.26,
+ "end": 9273.46,
+ "text": "think"
+ },
+ {
+ "id": 18511,
+ "start": 9273.46,
+ "end": 9273.58,
+ "text": "the"
+ },
+ {
+ "id": 18512,
+ "start": 9273.58,
+ "end": 9273.8,
+ "text": "point"
+ },
+ {
+ "id": 18513,
+ "start": 9273.8,
+ "end": 9273.96,
+ "text": "has"
+ },
+ {
+ "id": 18514,
+ "start": 9273.96,
+ "end": 9274.14,
+ "text": "been"
+ },
+ {
+ "id": 18515,
+ "start": 9274.14,
+ "end": 9274.38,
+ "text": "well"
+ },
+ {
+ "id": 18516,
+ "start": 9274.38,
+ "end": 9274.62,
+ "text": "made"
+ },
+ {
+ "id": 18517,
+ "start": 9274.62,
+ "end": 9274.78,
+ "text": "that"
+ },
+ {
+ "id": 18518,
+ "start": 9274.78,
+ "end": 9275.02,
+ "text": "people"
+ },
+ {
+ "id": 18519,
+ "start": 9275.02,
+ "end": 9275.32,
+ "text": "really"
+ },
+ {
+ "id": 18520,
+ "start": 9275.32,
+ "end": 9275.48,
+ "text": "have"
+ },
+ {
+ "id": 18521,
+ "start": 9275.48,
+ "end": 9275.62,
+ "text": "no"
+ },
+ {
+ "id": 18522,
+ "start": 9275.62,
+ "end": 9276.06,
+ "text": "earthly"
+ },
+ {
+ "id": 18523,
+ "start": 9276.06,
+ "end": 9276.36,
+ "text": "idea."
+ },
+ {
+ "id": 18524,
+ "start": 9276.36,
+ "end": 9276.54,
+ "text": "What"
+ },
+ {
+ "id": 18525,
+ "start": 9276.54,
+ "end": 9276.78,
+ "text": "they're"
+ },
+ {
+ "id": 18526,
+ "start": 9276.78,
+ "end": 9277.1,
+ "text": "signing"
+ },
+ {
+ "id": 18527,
+ "start": 9277.1,
+ "end": 9277.24,
+ "text": "up"
+ },
+ {
+ "id": 18528,
+ "start": 9277.24,
+ "end": 9277.48,
+ "text": "for"
+ },
+ {
+ "id": 18529,
+ "start": 9277.48,
+ "end": 9278.42,
+ "text": "and"
+ },
+ {
+ "id": 18530,
+ "start": 9278.42,
+ "end": 9278.72,
+ "text": "I"
+ },
+ {
+ "id": 18531,
+ "start": 9278.72,
+ "end": 9279.38,
+ "text": "understand"
+ },
+ {
+ "id": 18532,
+ "start": 9279.38,
+ "end": 9280.12,
+ "text": "that"
+ },
+ {
+ "id": 18533,
+ "start": 9280.12,
+ "end": 9280.6,
+ "text": "at"
+ },
+ {
+ "id": 18534,
+ "start": 9280.6,
+ "end": 9280.72,
+ "text": "the"
+ },
+ {
+ "id": 18535,
+ "start": 9280.72,
+ "end": 9281.02,
+ "text": "present"
+ },
+ {
+ "id": 18536,
+ "start": 9281.02,
+ "end": 9281.2,
+ "text": "time"
+ },
+ {
+ "id": 18537,
+ "start": 9281.2,
+ "end": 9281.42,
+ "text": "that's"
+ },
+ {
+ "id": 18538,
+ "start": 9281.42,
+ "end": 9281.8,
+ "text": "legally"
+ },
+ {
+ "id": 18539,
+ "start": 9281.8,
+ "end": 9282.16,
+ "text": "binding."
+ },
+ {
+ "id": 18540,
+ "start": 9282.16,
+ "end": 9282.3,
+ "text": "But"
+ },
+ {
+ "id": 18541,
+ "start": 9282.3,
+ "end": 9282.4,
+ "text": "I'm"
+ },
+ {
+ "id": 18542,
+ "start": 9282.4,
+ "end": 9282.72,
+ "text": "wondering"
+ },
+ {
+ "id": 18543,
+ "start": 9282.72,
+ "end": 9282.84,
+ "text": "if"
+ },
+ {
+ "id": 18544,
+ "start": 9282.84,
+ "end": 9283.02,
+ "text": "you"
+ },
+ {
+ "id": 18545,
+ "start": 9283.02,
+ "end": 9283.18,
+ "text": "can"
+ },
+ {
+ "id": 18546,
+ "start": 9283.18,
+ "end": 9283.76,
+ "text": "explain"
+ },
+ {
+ "id": 18547,
+ "start": 9283.76,
+ "end": 9284.36,
+ "text": "to"
+ },
+ {
+ "id": 18548,
+ "start": 9284.36,
+ "end": 9284.6,
+ "text": "the"
+ },
+ {
+ "id": 18549,
+ "start": 9284.6,
+ "end": 9284.98,
+ "text": "billions"
+ },
+ {
+ "id": 18550,
+ "start": 9284.98,
+ "end": 9285.08,
+ "text": "of"
+ },
+ {
+ "id": 18551,
+ "start": 9285.08,
+ "end": 9285.58,
+ "text": "users"
+ },
+ {
+ "id": 18552,
+ "start": 9285.58,
+ "end": 9286.42,
+ "text": "in"
+ },
+ {
+ "id": 18553,
+ "start": 9286.42,
+ "end": 9286.74,
+ "text": "plain"
+ },
+ {
+ "id": 18554,
+ "start": 9286.74,
+ "end": 9287.26,
+ "text": "language?"
+ },
+ {
+ "id": 18555,
+ "start": 9287.26,
+ "end": 9287.88,
+ "text": "What"
+ },
+ {
+ "id": 18556,
+ "start": 9287.88,
+ "end": 9288,
+ "text": "are"
+ },
+ {
+ "id": 18557,
+ "start": 9288,
+ "end": 9288.16,
+ "text": "they"
+ },
+ {
+ "id": 18558,
+ "start": 9288.16,
+ "end": 9288.5,
+ "text": "signing"
+ },
+ {
+ "id": 18559,
+ "start": 9288.5,
+ "end": 9288.64,
+ "text": "up"
+ },
+ {
+ "id": 18560,
+ "start": 9288.64,
+ "end": 9290.48,
+ "text": "for"
+ },
+ {
+ "id": 18561,
+ "start": 9290.48,
+ "end": 9291.44,
+ "text": "Senator"
+ },
+ {
+ "id": 18562,
+ "start": 9291.44,
+ "end": 9291.66,
+ "text": "that's"
+ },
+ {
+ "id": 18563,
+ "start": 9291.66,
+ "end": 9292.54,
+ "text": "a"
+ },
+ {
+ "id": 18564,
+ "start": 9292.54,
+ "end": 9292.82,
+ "text": "good"
+ },
+ {
+ "id": 18565,
+ "start": 9292.82,
+ "end": 9293.06,
+ "text": "and"
+ },
+ {
+ "id": 18566,
+ "start": 9293.06,
+ "end": 9293.46,
+ "text": "important"
+ },
+ {
+ "id": 18567,
+ "start": 9293.46,
+ "end": 9293.82,
+ "text": "question"
+ },
+ {
+ "id": 18568,
+ "start": 9293.82,
+ "end": 9294.7,
+ "text": "here"
+ },
+ {
+ "id": 18569,
+ "start": 9294.7,
+ "end": 9295.72,
+ "text": "in"
+ },
+ {
+ "id": 18570,
+ "start": 9295.72,
+ "end": 9296.12,
+ "text": "general."
+ },
+ {
+ "id": 18571,
+ "start": 9296.12,
+ "end": 9297.14,
+ "text": "You"
+ },
+ {
+ "id": 18572,
+ "start": 9297.14,
+ "end": 9297.32,
+ "text": "sign"
+ },
+ {
+ "id": 18573,
+ "start": 9297.32,
+ "end": 9297.42,
+ "text": "up"
+ },
+ {
+ "id": 18574,
+ "start": 9297.42,
+ "end": 9297.54,
+ "text": "for"
+ },
+ {
+ "id": 18575,
+ "start": 9297.54,
+ "end": 9297.64,
+ "text": "the"
+ },
+ {
+ "id": 18576,
+ "start": 9297.64,
+ "end": 9298.04,
+ "text": "Facebook."
+ },
+ {
+ "id": 18577,
+ "start": 9298.04,
+ "end": 9299.22,
+ "text": "You"
+ },
+ {
+ "id": 18578,
+ "start": 9299.22,
+ "end": 9299.36,
+ "text": "get"
+ },
+ {
+ "id": 18579,
+ "start": 9299.36,
+ "end": 9299.54,
+ "text": "the"
+ },
+ {
+ "id": 18580,
+ "start": 9299.54,
+ "end": 9299.94,
+ "text": "ability"
+ },
+ {
+ "id": 18581,
+ "start": 9299.94,
+ "end": 9300.1,
+ "text": "to"
+ },
+ {
+ "id": 18582,
+ "start": 9300.1,
+ "end": 9300.36,
+ "text": "share"
+ },
+ {
+ "id": 18583,
+ "start": 9300.36,
+ "end": 9300.58,
+ "text": "the"
+ },
+ {
+ "id": 18584,
+ "start": 9300.58,
+ "end": 9300.93,
+ "text": "information"
+ },
+ {
+ "id": 18585,
+ "start": 9300.93,
+ "end": 9301.25,
+ "text": "that"
+ },
+ {
+ "id": 18586,
+ "start": 9301.25,
+ "end": 9301.35,
+ "text": "you"
+ },
+ {
+ "id": 18587,
+ "start": 9301.35,
+ "end": 9301.55,
+ "text": "want"
+ },
+ {
+ "id": 18588,
+ "start": 9301.55,
+ "end": 9302.11,
+ "text": "with"
+ },
+ {
+ "id": 18589,
+ "start": 9302.11,
+ "end": 9302.33,
+ "text": "people"
+ },
+ {
+ "id": 18590,
+ "start": 9302.33,
+ "end": 9302.53,
+ "text": "that's"
+ },
+ {
+ "id": 18591,
+ "start": 9302.53,
+ "end": 9302.65,
+ "text": "what"
+ },
+ {
+ "id": 18592,
+ "start": 9302.65,
+ "end": 9302.77,
+ "text": "the"
+ },
+ {
+ "id": 18593,
+ "start": 9302.77,
+ "end": 9303.09,
+ "text": "service"
+ },
+ {
+ "id": 18594,
+ "start": 9303.09,
+ "end": 9303.39,
+ "text": "is"
+ },
+ {
+ "id": 18595,
+ "start": 9303.39,
+ "end": 9303.95,
+ "text": "that"
+ },
+ {
+ "id": 18596,
+ "start": 9303.95,
+ "end": 9304.67,
+ "text": "you"
+ },
+ {
+ "id": 18597,
+ "start": 9304.67,
+ "end": 9304.83,
+ "text": "can"
+ },
+ {
+ "id": 18598,
+ "start": 9304.83,
+ "end": 9305.13,
+ "text": "connect"
+ },
+ {
+ "id": 18599,
+ "start": 9305.13,
+ "end": 9305.41,
+ "text": "with"
+ },
+ {
+ "id": 18600,
+ "start": 9305.41,
+ "end": 9305.51,
+ "text": "the"
+ },
+ {
+ "id": 18601,
+ "start": 9305.51,
+ "end": 9305.69,
+ "text": "people"
+ },
+ {
+ "id": 18602,
+ "start": 9305.69,
+ "end": 9305.81,
+ "text": "that"
+ },
+ {
+ "id": 18603,
+ "start": 9305.81,
+ "end": 9305.91,
+ "text": "you"
+ },
+ {
+ "id": 18604,
+ "start": 9305.91,
+ "end": 9306.15,
+ "text": "want"
+ },
+ {
+ "id": 18605,
+ "start": 9306.15,
+ "end": 9306.37,
+ "text": "and"
+ },
+ {
+ "id": 18606,
+ "start": 9306.37,
+ "end": 9306.53,
+ "text": "you"
+ },
+ {
+ "id": 18607,
+ "start": 9306.53,
+ "end": 9306.73,
+ "text": "can"
+ },
+ {
+ "id": 18608,
+ "start": 9306.73,
+ "end": 9306.97,
+ "text": "share"
+ },
+ {
+ "id": 18609,
+ "start": 9306.97,
+ "end": 9307.37,
+ "text": "whatever"
+ },
+ {
+ "id": 18610,
+ "start": 9307.37,
+ "end": 9307.77,
+ "text": "content"
+ },
+ {
+ "id": 18611,
+ "start": 9307.77,
+ "end": 9308.69,
+ "text": "matters"
+ },
+ {
+ "id": 18612,
+ "start": 9308.69,
+ "end": 9308.79,
+ "text": "to"
+ },
+ {
+ "id": 18613,
+ "start": 9308.79,
+ "end": 9308.89,
+ "text": "you."
+ },
+ {
+ "id": 18614,
+ "start": 9308.89,
+ "end": 9309.15,
+ "text": "Whether"
+ },
+ {
+ "id": 18615,
+ "start": 9309.15,
+ "end": 9309.35,
+ "text": "that's"
+ },
+ {
+ "id": 18616,
+ "start": 9309.35,
+ "end": 9309.83,
+ "text": "photos"
+ },
+ {
+ "id": 18617,
+ "start": 9309.83,
+ "end": 9310.03,
+ "text": "or"
+ },
+ {
+ "id": 18618,
+ "start": 9310.03,
+ "end": 9310.39,
+ "text": "links"
+ },
+ {
+ "id": 18619,
+ "start": 9310.39,
+ "end": 9310.71,
+ "text": "or"
+ },
+ {
+ "id": 18620,
+ "start": 9310.71,
+ "end": 9311.86,
+ "text": "post"
+ },
+ {
+ "id": 18621,
+ "start": 9311.86,
+ "end": 9312.48,
+ "text": "and"
+ },
+ {
+ "id": 18622,
+ "start": 9312.48,
+ "end": 9312.58,
+ "text": "you"
+ },
+ {
+ "id": 18623,
+ "start": 9312.58,
+ "end": 9312.72,
+ "text": "get"
+ },
+ {
+ "id": 18624,
+ "start": 9312.72,
+ "end": 9313.04,
+ "text": "control"
+ },
+ {
+ "id": 18625,
+ "start": 9313.04,
+ "end": 9313.2,
+ "text": "over"
+ },
+ {
+ "id": 18626,
+ "start": 9313.2,
+ "end": 9313.32,
+ "text": "who"
+ },
+ {
+ "id": 18627,
+ "start": 9313.32,
+ "end": 9313.48,
+ "text": "you"
+ },
+ {
+ "id": 18628,
+ "start": 9313.48,
+ "end": 9313.7,
+ "text": "share"
+ },
+ {
+ "id": 18629,
+ "start": 9313.7,
+ "end": 9313.78,
+ "text": "it"
+ },
+ {
+ "id": 18630,
+ "start": 9313.78,
+ "end": 9313.96,
+ "text": "with."
+ },
+ {
+ "id": 18631,
+ "start": 9313.96,
+ "end": 9314.24,
+ "text": "And"
+ },
+ {
+ "id": 18632,
+ "start": 9314.24,
+ "end": 9314.36,
+ "text": "you"
+ },
+ {
+ "id": 18633,
+ "start": 9314.36,
+ "end": 9314.48,
+ "text": "can"
+ },
+ {
+ "id": 18634,
+ "start": 9314.48,
+ "end": 9314.62,
+ "text": "take"
+ },
+ {
+ "id": 18635,
+ "start": 9314.62,
+ "end": 9314.7,
+ "text": "it"
+ },
+ {
+ "id": 18636,
+ "start": 9314.7,
+ "end": 9314.88,
+ "text": "down"
+ },
+ {
+ "id": 18637,
+ "start": 9314.88,
+ "end": 9315.02,
+ "text": "if"
+ },
+ {
+ "id": 18638,
+ "start": 9315.02,
+ "end": 9315.12,
+ "text": "you"
+ },
+ {
+ "id": 18639,
+ "start": 9315.12,
+ "end": 9315.36,
+ "text": "want."
+ },
+ {
+ "id": 18640,
+ "start": 9315.36,
+ "end": 9315.52,
+ "text": "And"
+ },
+ {
+ "id": 18641,
+ "start": 9315.52,
+ "end": 9315.74,
+ "text": "you"
+ },
+ {
+ "id": 18642,
+ "start": 9315.74,
+ "end": 9316.08,
+ "text": "don't"
+ },
+ {
+ "id": 18643,
+ "start": 9316.08,
+ "end": 9316.22,
+ "text": "need"
+ },
+ {
+ "id": 18644,
+ "start": 9316.22,
+ "end": 9316.28,
+ "text": "to"
+ },
+ {
+ "id": 18645,
+ "start": 9316.28,
+ "end": 9316.38,
+ "text": "put"
+ },
+ {
+ "id": 18646,
+ "start": 9316.38,
+ "end": 9316.66,
+ "text": "anything"
+ },
+ {
+ "id": 18647,
+ "start": 9316.66,
+ "end": 9316.76,
+ "text": "up"
+ },
+ {
+ "id": 18648,
+ "start": 9316.76,
+ "end": 9316.84,
+ "text": "in"
+ },
+ {
+ "id": 18649,
+ "start": 9316.84,
+ "end": 9316.96,
+ "text": "the"
+ },
+ {
+ "id": 18650,
+ "start": 9316.96,
+ "end": 9317.14,
+ "text": "first"
+ },
+ {
+ "id": 18651,
+ "start": 9317.14,
+ "end": 9317.34,
+ "text": "place,"
+ },
+ {
+ "id": 18652,
+ "start": 9317.34,
+ "end": 9317.5,
+ "text": "if"
+ },
+ {
+ "id": 18653,
+ "start": 9317.5,
+ "end": 9317.64,
+ "text": "you"
+ },
+ {
+ "id": 18654,
+ "start": 9317.64,
+ "end": 9317.82,
+ "text": "don't"
+ },
+ {
+ "id": 18655,
+ "start": 9317.82,
+ "end": 9318.04,
+ "text": "want"
+ },
+ {
+ "id": 18656,
+ "start": 9318.04,
+ "end": 9319.12,
+ "text": "about"
+ },
+ {
+ "id": 18657,
+ "start": 9319.12,
+ "end": 9319.26,
+ "text": "the"
+ },
+ {
+ "id": 18658,
+ "start": 9319.26,
+ "end": 9319.42,
+ "text": "part"
+ },
+ {
+ "id": 18659,
+ "start": 9319.42,
+ "end": 9319.6,
+ "text": "that"
+ },
+ {
+ "id": 18660,
+ "start": 9319.6,
+ "end": 9319.78,
+ "text": "people"
+ },
+ {
+ "id": 18661,
+ "start": 9319.78,
+ "end": 9319.98,
+ "text": "are"
+ },
+ {
+ "id": 18662,
+ "start": 9319.98,
+ "end": 9320.24,
+ "text": "worried"
+ },
+ {
+ "id": 18663,
+ "start": 9320.24,
+ "end": 9320.48,
+ "text": "about"
+ },
+ {
+ "id": 18664,
+ "start": 9320.48,
+ "end": 9320.7,
+ "text": "not"
+ },
+ {
+ "id": 18665,
+ "start": 9320.7,
+ "end": 9320.82,
+ "text": "the"
+ },
+ {
+ "id": 18666,
+ "start": 9320.82,
+ "end": 9321.06,
+ "text": "fun"
+ },
+ {
+ "id": 18667,
+ "start": 9321.06,
+ "end": 9323.16,
+ "text": "part."
+ },
+ {
+ "id": 18668,
+ "start": 9323.16,
+ "end": 9324.18,
+ "text": "Well"
+ },
+ {
+ "id": 18669,
+ "start": 9324.18,
+ "end": 9325.14,
+ "text": "what's"
+ },
+ {
+ "id": 18670,
+ "start": 9325.14,
+ "end": 9328.9,
+ "text": "that"
+ },
+ {
+ "id": 18671,
+ "start": 9328.9,
+ "end": 9329.9,
+ "text": "the"
+ },
+ {
+ "id": 18672,
+ "start": 9329.9,
+ "end": 9330.08,
+ "text": "part"
+ },
+ {
+ "id": 18673,
+ "start": 9330.08,
+ "end": 9330.24,
+ "text": "that"
+ },
+ {
+ "id": 18674,
+ "start": 9330.24,
+ "end": 9330.46,
+ "text": "people"
+ },
+ {
+ "id": 18675,
+ "start": 9330.46,
+ "end": 9330.62,
+ "text": "are"
+ },
+ {
+ "id": 18676,
+ "start": 9330.62,
+ "end": 9330.92,
+ "text": "worried"
+ },
+ {
+ "id": 18677,
+ "start": 9330.92,
+ "end": 9331.18,
+ "text": "about"
+ },
+ {
+ "id": 18678,
+ "start": 9331.18,
+ "end": 9331.36,
+ "text": "is"
+ },
+ {
+ "id": 18679,
+ "start": 9331.36,
+ "end": 9331.5,
+ "text": "that"
+ },
+ {
+ "id": 18680,
+ "start": 9331.5,
+ "end": 9331.68,
+ "text": "the"
+ },
+ {
+ "id": 18681,
+ "start": 9331.68,
+ "end": 9332,
+ "text": "data"
+ },
+ {
+ "id": 18682,
+ "start": 9332,
+ "end": 9332.14,
+ "text": "is"
+ },
+ {
+ "id": 18683,
+ "start": 9332.14,
+ "end": 9332.34,
+ "text": "going"
+ },
+ {
+ "id": 18684,
+ "start": 9332.34,
+ "end": 9332.4,
+ "text": "to"
+ },
+ {
+ "id": 18685,
+ "start": 9332.4,
+ "end": 9332.48,
+ "text": "be"
+ },
+ {
+ "id": 18686,
+ "start": 9332.48,
+ "end": 9333.12,
+ "text": "improperly"
+ },
+ {
+ "id": 18687,
+ "start": 9333.12,
+ "end": 9333.48,
+ "text": "used."
+ },
+ {
+ "id": 18688,
+ "start": 9333.48,
+ "end": 9333.64,
+ "text": "So"
+ },
+ {
+ "id": 18689,
+ "start": 9333.64,
+ "end": 9333.84,
+ "text": "people"
+ },
+ {
+ "id": 18690,
+ "start": 9333.84,
+ "end": 9333.98,
+ "text": "are"
+ },
+ {
+ "id": 18691,
+ "start": 9333.98,
+ "end": 9334.2,
+ "text": "trying"
+ },
+ {
+ "id": 18692,
+ "start": 9334.2,
+ "end": 9334.28,
+ "text": "to"
+ },
+ {
+ "id": 18693,
+ "start": 9334.28,
+ "end": 9334.58,
+ "text": "figure"
+ },
+ {
+ "id": 18694,
+ "start": 9334.58,
+ "end": 9334.84,
+ "text": "out."
+ },
+ {
+ "id": 18695,
+ "start": 9334.84,
+ "end": 9335.88,
+ "text": "Are"
+ },
+ {
+ "id": 18696,
+ "start": 9335.88,
+ "end": 9336.04,
+ "text": "your"
+ },
+ {
+ "id": 18697,
+ "start": 9336.04,
+ "end": 9336.54,
+ "text": "DMs"
+ },
+ {
+ "id": 18698,
+ "start": 9336.54,
+ "end": 9337.44,
+ "text": "informing"
+ },
+ {
+ "id": 18699,
+ "start": 9337.44,
+ "end": 9338.32,
+ "text": "the"
+ },
+ {
+ "id": 18700,
+ "start": 9338.32,
+ "end": 9338.82,
+ "text": "ads?"
+ },
+ {
+ "id": 18701,
+ "start": 9338.82,
+ "end": 9339.88,
+ "text": "Are"
+ },
+ {
+ "id": 18702,
+ "start": 9339.88,
+ "end": 9340.22,
+ "text": "your"
+ },
+ {
+ "id": 18703,
+ "start": 9340.22,
+ "end": 9340.98,
+ "text": "browsing"
+ },
+ {
+ "id": 18704,
+ "start": 9340.98,
+ "end": 9341.8,
+ "text": "habits?"
+ },
+ {
+ "id": 18705,
+ "start": 9341.8,
+ "end": 9342.4,
+ "text": "Being"
+ },
+ {
+ "id": 18706,
+ "start": 9342.4,
+ "end": 9342.96,
+ "text": "collected,"
+ },
+ {
+ "id": 18707,
+ "start": 9342.96,
+ "end": 9343.7,
+ "text": "everybody"
+ },
+ {
+ "id": 18708,
+ "start": 9343.7,
+ "end": 9343.9,
+ "text": "kind"
+ },
+ {
+ "id": 18709,
+ "start": 9343.9,
+ "end": 9343.98,
+ "text": "of"
+ },
+ {
+ "id": 18710,
+ "start": 9343.98,
+ "end": 9344.34,
+ "text": "understands"
+ },
+ {
+ "id": 18711,
+ "start": 9344.34,
+ "end": 9344.48,
+ "text": "that"
+ },
+ {
+ "id": 18712,
+ "start": 9344.48,
+ "end": 9344.6,
+ "text": "when"
+ },
+ {
+ "id": 18713,
+ "start": 9344.6,
+ "end": 9344.7,
+ "text": "you"
+ },
+ {
+ "id": 18714,
+ "start": 9344.7,
+ "end": 9344.96,
+ "text": "click"
+ },
+ {
+ "id": 18715,
+ "start": 9344.96,
+ "end": 9345.24,
+ "text": "like"
+ },
+ {
+ "id": 18716,
+ "start": 9345.24,
+ "end": 9345.42,
+ "text": "on"
+ },
+ {
+ "id": 18717,
+ "start": 9345.42,
+ "end": 9345.96,
+ "text": "something"
+ },
+ {
+ "id": 18718,
+ "start": 9345.96,
+ "end": 9346.52,
+ "text": "or"
+ },
+ {
+ "id": 18719,
+ "start": 9346.52,
+ "end": 9346.72,
+ "text": "if"
+ },
+ {
+ "id": 18720,
+ "start": 9346.72,
+ "end": 9346.84,
+ "text": "you"
+ },
+ {
+ "id": 18721,
+ "start": 9346.84,
+ "end": 9347.02,
+ "text": "say"
+ },
+ {
+ "id": 18722,
+ "start": 9347.02,
+ "end": 9347.14,
+ "text": "you"
+ },
+ {
+ "id": 18723,
+ "start": 9347.14,
+ "end": 9347.34,
+ "text": "like"
+ },
+ {
+ "id": 18724,
+ "start": 9347.34,
+ "end": 9347.4,
+ "text": "a"
+ },
+ {
+ "id": 18725,
+ "start": 9347.4,
+ "end": 9347.7,
+ "text": "certain"
+ },
+ {
+ "id": 18726,
+ "start": 9347.7,
+ "end": 9348.02,
+ "text": "movie"
+ },
+ {
+ "id": 18727,
+ "start": 9348.02,
+ "end": 9348.2,
+ "text": "or"
+ },
+ {
+ "id": 18728,
+ "start": 9348.2,
+ "end": 9348.4,
+ "text": "have"
+ },
+ {
+ "id": 18729,
+ "start": 9348.4,
+ "end": 9348.46,
+ "text": "a"
+ },
+ {
+ "id": 18730,
+ "start": 9348.46,
+ "end": 9349.54,
+ "text": "particular"
+ },
+ {
+ "id": 18731,
+ "start": 9349.54,
+ "end": 9350.12,
+ "text": "political"
+ },
+ {
+ "id": 18732,
+ "start": 9350.12,
+ "end": 9350.74,
+ "text": "proclivity"
+ },
+ {
+ "id": 18733,
+ "start": 9350.74,
+ "end": 9351.4,
+ "text": "that"
+ },
+ {
+ "id": 18734,
+ "start": 9351.4,
+ "end": 9351.52,
+ "text": "I"
+ },
+ {
+ "id": 18735,
+ "start": 9351.52,
+ "end": 9351.68,
+ "text": "think"
+ },
+ {
+ "id": 18736,
+ "start": 9351.68,
+ "end": 9351.88,
+ "text": "that's"
+ },
+ {
+ "id": 18737,
+ "start": 9351.88,
+ "end": 9352.16,
+ "text": "fair"
+ },
+ {
+ "id": 18738,
+ "start": 9352.16,
+ "end": 9352.4,
+ "text": "game."
+ },
+ {
+ "id": 18739,
+ "start": 9352.4,
+ "end": 9352.82,
+ "text": "Everybody"
+ },
+ {
+ "id": 18740,
+ "start": 9352.82,
+ "end": 9353.34,
+ "text": "understands"
+ },
+ {
+ "id": 18741,
+ "start": 9353.34,
+ "end": 9353.52,
+ "text": "that"
+ },
+ {
+ "id": 18742,
+ "start": 9353.52,
+ "end": 9353.68,
+ "text": "what"
+ },
+ {
+ "id": 18743,
+ "start": 9353.68,
+ "end": 9353.8,
+ "text": "we"
+ },
+ {
+ "id": 18744,
+ "start": 9353.8,
+ "end": 9354.06,
+ "text": "don't"
+ },
+ {
+ "id": 18745,
+ "start": 9354.06,
+ "end": 9354.8,
+ "text": "understand"
+ },
+ {
+ "id": 18746,
+ "start": 9354.8,
+ "end": 9355.43,
+ "text": "exactly"
+ },
+ {
+ "id": 18747,
+ "start": 9355.43,
+ "end": 9356.57,
+ "text": "because"
+ },
+ {
+ "id": 18748,
+ "start": 9356.57,
+ "end": 9356.99,
+ "text": "both"
+ },
+ {
+ "id": 18749,
+ "start": 9356.99,
+ "end": 9357.13,
+ "text": "as"
+ },
+ {
+ "id": 18750,
+ "start": 9357.13,
+ "end": 9357.19,
+ "text": "a"
+ },
+ {
+ "id": 18751,
+ "start": 9357.19,
+ "end": 9357.43,
+ "text": "matter"
+ },
+ {
+ "id": 18752,
+ "start": 9357.43,
+ "end": 9357.49,
+ "text": "of"
+ },
+ {
+ "id": 18753,
+ "start": 9357.49,
+ "end": 9357.93,
+ "text": "practice."
+ },
+ {
+ "id": 18754,
+ "start": 9357.93,
+ "end": 9358.09,
+ "text": "And"
+ },
+ {
+ "id": 18755,
+ "start": 9358.09,
+ "end": 9358.41,
+ "text": "as"
+ },
+ {
+ "id": 18756,
+ "start": 9358.41,
+ "end": 9358.47,
+ "text": "a"
+ },
+ {
+ "id": 18757,
+ "start": 9358.47,
+ "end": 9358.79,
+ "text": "matter"
+ },
+ {
+ "id": 18758,
+ "start": 9358.79,
+ "end": 9358.91,
+ "text": "of"
+ },
+ {
+ "id": 18759,
+ "start": 9358.91,
+ "end": 9359.17,
+ "text": "not"
+ },
+ {
+ "id": 18760,
+ "start": 9359.17,
+ "end": 9359.39,
+ "text": "being"
+ },
+ {
+ "id": 18761,
+ "start": 9359.39,
+ "end": 9359.57,
+ "text": "able"
+ },
+ {
+ "id": 18762,
+ "start": 9359.57,
+ "end": 9359.67,
+ "text": "to"
+ },
+ {
+ "id": 18763,
+ "start": 9359.67,
+ "end": 9360.25,
+ "text": "decipher"
+ },
+ {
+ "id": 18764,
+ "start": 9360.25,
+ "end": 9360.93,
+ "text": "those"
+ },
+ {
+ "id": 18765,
+ "start": 9360.93,
+ "end": 9361.23,
+ "text": "terms"
+ },
+ {
+ "id": 18766,
+ "start": 9361.23,
+ "end": 9361.35,
+ "text": "of"
+ },
+ {
+ "id": 18767,
+ "start": 9361.35,
+ "end": 9361.79,
+ "text": "service"
+ },
+ {
+ "id": 18768,
+ "start": 9361.79,
+ "end": 9361.91,
+ "text": "and"
+ },
+ {
+ "id": 18769,
+ "start": 9361.91,
+ "end": 9362.03,
+ "text": "the"
+ },
+ {
+ "id": 18770,
+ "start": 9362.03,
+ "end": 9362.51,
+ "text": "privacy"
+ },
+ {
+ "id": 18771,
+ "start": 9362.51,
+ "end": 9363.01,
+ "text": "policy"
+ },
+ {
+ "id": 18772,
+ "start": 9363.01,
+ "end": 9363.85,
+ "text": "is"
+ },
+ {
+ "id": 18773,
+ "start": 9363.85,
+ "end": 9364.53,
+ "text": "what"
+ },
+ {
+ "id": 18774,
+ "start": 9364.53,
+ "end": 9365.05,
+ "text": "exactly"
+ },
+ {
+ "id": 18775,
+ "start": 9365.05,
+ "end": 9365.23,
+ "text": "are"
+ },
+ {
+ "id": 18776,
+ "start": 9365.23,
+ "end": 9365.41,
+ "text": "you"
+ },
+ {
+ "id": 18777,
+ "start": 9365.41,
+ "end": 9365.63,
+ "text": "doing"
+ },
+ {
+ "id": 18778,
+ "start": 9365.63,
+ "end": 9365.77,
+ "text": "with"
+ },
+ {
+ "id": 18779,
+ "start": 9365.77,
+ "end": 9365.87,
+ "text": "the"
+ },
+ {
+ "id": 18780,
+ "start": 9365.87,
+ "end": 9366.15,
+ "text": "data?"
+ },
+ {
+ "id": 18781,
+ "start": 9366.15,
+ "end": 9366.31,
+ "text": "And"
+ },
+ {
+ "id": 18782,
+ "start": 9366.31,
+ "end": 9366.47,
+ "text": "do"
+ },
+ {
+ "id": 18783,
+ "start": 9366.47,
+ "end": 9366.63,
+ "text": "you"
+ },
+ {
+ "id": 18784,
+ "start": 9366.63,
+ "end": 9366.87,
+ "text": "draw"
+ },
+ {
+ "id": 18785,
+ "start": 9366.87,
+ "end": 9366.93,
+ "text": "a"
+ },
+ {
+ "id": 18786,
+ "start": 9366.93,
+ "end": 9367.71,
+ "text": "distinction"
+ },
+ {
+ "id": 18787,
+ "start": 9367.71,
+ "end": 9369.06,
+ "text": "between"
+ },
+ {
+ "id": 18788,
+ "start": 9369.06,
+ "end": 9369.76,
+ "text": "data"
+ },
+ {
+ "id": 18789,
+ "start": 9369.76,
+ "end": 9370.24,
+ "text": "collected"
+ },
+ {
+ "id": 18790,
+ "start": 9370.24,
+ "end": 9370.38,
+ "text": "in"
+ },
+ {
+ "id": 18791,
+ "start": 9370.38,
+ "end": 9370.52,
+ "text": "the"
+ },
+ {
+ "id": 18792,
+ "start": 9370.52,
+ "end": 9371.14,
+ "text": "process"
+ },
+ {
+ "id": 18793,
+ "start": 9371.14,
+ "end": 9371.34,
+ "text": "of"
+ },
+ {
+ "id": 18794,
+ "start": 9371.34,
+ "end": 9371.94,
+ "text": "utilizing"
+ },
+ {
+ "id": 18795,
+ "start": 9371.94,
+ "end": 9372.06,
+ "text": "the"
+ },
+ {
+ "id": 18796,
+ "start": 9372.06,
+ "end": 9372.6,
+ "text": "platform"
+ },
+ {
+ "id": 18797,
+ "start": 9372.6,
+ "end": 9372.82,
+ "text": "and"
+ },
+ {
+ "id": 18798,
+ "start": 9372.82,
+ "end": 9373.06,
+ "text": "that"
+ },
+ {
+ "id": 18799,
+ "start": 9373.06,
+ "end": 9373.28,
+ "text": "which"
+ },
+ {
+ "id": 18800,
+ "start": 9373.28,
+ "end": 9373.44,
+ "text": "we"
+ },
+ {
+ "id": 18801,
+ "start": 9373.44,
+ "end": 9374.5,
+ "text": "clearly"
+ },
+ {
+ "id": 18802,
+ "start": 9374.5,
+ "end": 9375.28,
+ "text": "volunteer"
+ },
+ {
+ "id": 18803,
+ "start": 9375.28,
+ "end": 9375.5,
+ "text": "to"
+ },
+ {
+ "id": 18804,
+ "start": 9375.5,
+ "end": 9375.66,
+ "text": "the"
+ },
+ {
+ "id": 18805,
+ "start": 9375.66,
+ "end": 9376.02,
+ "text": "public"
+ },
+ {
+ "id": 18806,
+ "start": 9376.02,
+ "end": 9376.2,
+ "text": "to"
+ },
+ {
+ "id": 18807,
+ "start": 9376.2,
+ "end": 9376.58,
+ "text": "present"
+ },
+ {
+ "id": 18808,
+ "start": 9376.58,
+ "end": 9377.08,
+ "text": "ourselves"
+ },
+ {
+ "id": 18809,
+ "start": 9377.08,
+ "end": 9377.18,
+ "text": "to"
+ },
+ {
+ "id": 18810,
+ "start": 9377.18,
+ "end": 9377.46,
+ "text": "other"
+ },
+ {
+ "id": 18811,
+ "start": 9377.46,
+ "end": 9377.86,
+ "text": "Facebook"
+ },
+ {
+ "id": 18812,
+ "start": 9377.86,
+ "end": 9381.44,
+ "text": "users."
+ },
+ {
+ "id": 18813,
+ "start": 9381.44,
+ "end": 9382.42,
+ "text": "Senator"
+ },
+ {
+ "id": 18814,
+ "start": 9382.42,
+ "end": 9382.54,
+ "text": "I'm"
+ },
+ {
+ "id": 18815,
+ "start": 9382.54,
+ "end": 9382.72,
+ "text": "not"
+ },
+ {
+ "id": 18816,
+ "start": 9382.72,
+ "end": 9382.96,
+ "text": "sure."
+ },
+ {
+ "id": 18817,
+ "start": 9382.96,
+ "end": 9383.18,
+ "text": "I"
+ },
+ {
+ "id": 18818,
+ "start": 9383.18,
+ "end": 9383.64,
+ "text": "fully"
+ },
+ {
+ "id": 18819,
+ "start": 9383.64,
+ "end": 9384.04,
+ "text": "understand"
+ },
+ {
+ "id": 18820,
+ "start": 9384.04,
+ "end": 9384.18,
+ "text": "this"
+ },
+ {
+ "id": 18821,
+ "start": 9384.18,
+ "end": 9384.98,
+ "text": "in"
+ },
+ {
+ "id": 18822,
+ "start": 9384.98,
+ "end": 9385.4,
+ "text": "general,"
+ },
+ {
+ "id": 18823,
+ "start": 9385.4,
+ "end": 9386.46,
+ "text": "people"
+ },
+ {
+ "id": 18824,
+ "start": 9386.46,
+ "end": 9387.22,
+ "text": "come"
+ },
+ {
+ "id": 18825,
+ "start": 9387.22,
+ "end": 9387.34,
+ "text": "to"
+ },
+ {
+ "id": 18826,
+ "start": 9387.34,
+ "end": 9387.78,
+ "text": "Facebook"
+ },
+ {
+ "id": 18827,
+ "start": 9387.78,
+ "end": 9387.94,
+ "text": "to"
+ },
+ {
+ "id": 18828,
+ "start": 9387.94,
+ "end": 9388.54,
+ "text": "share"
+ },
+ {
+ "id": 18829,
+ "start": 9388.54,
+ "end": 9388.86,
+ "text": "content"
+ },
+ {
+ "id": 18830,
+ "start": 9388.86,
+ "end": 9389,
+ "text": "with"
+ },
+ {
+ "id": 18831,
+ "start": 9389,
+ "end": 9389.18,
+ "text": "other"
+ },
+ {
+ "id": 18832,
+ "start": 9389.18,
+ "end": 9389.4,
+ "text": "people."
+ },
+ {
+ "id": 18833,
+ "start": 9389.4,
+ "end": 9390.02,
+ "text": "We"
+ },
+ {
+ "id": 18834,
+ "start": 9390.02,
+ "end": 9390.3,
+ "text": "use"
+ },
+ {
+ "id": 18835,
+ "start": 9390.3,
+ "end": 9390.62,
+ "text": "that"
+ },
+ {
+ "id": 18836,
+ "start": 9390.62,
+ "end": 9391.04,
+ "text": "in"
+ },
+ {
+ "id": 18837,
+ "start": 9391.04,
+ "end": 9391.3,
+ "text": "order"
+ },
+ {
+ "id": 18838,
+ "start": 9391.3,
+ "end": 9391.48,
+ "text": "to"
+ },
+ {
+ "id": 18839,
+ "start": 9391.48,
+ "end": 9392.58,
+ "text": "also"
+ },
+ {
+ "id": 18840,
+ "start": 9392.58,
+ "end": 9393.78,
+ "text": "inform"
+ },
+ {
+ "id": 18841,
+ "start": 9393.78,
+ "end": 9394.12,
+ "text": "how"
+ },
+ {
+ "id": 18842,
+ "start": 9394.12,
+ "end": 9394.24,
+ "text": "we"
+ },
+ {
+ "id": 18843,
+ "start": 9394.24,
+ "end": 9394.5,
+ "text": "rank"
+ },
+ {
+ "id": 18844,
+ "start": 9394.5,
+ "end": 9395.2,
+ "text": "services"
+ },
+ {
+ "id": 18845,
+ "start": 9395.2,
+ "end": 9395.38,
+ "text": "like"
+ },
+ {
+ "id": 18846,
+ "start": 9395.38,
+ "end": 9395.64,
+ "text": "news,"
+ },
+ {
+ "id": 18847,
+ "start": 9395.64,
+ "end": 9395.94,
+ "text": "feed"
+ },
+ {
+ "id": 18848,
+ "start": 9395.94,
+ "end": 9396.08,
+ "text": "and"
+ },
+ {
+ "id": 18849,
+ "start": 9396.08,
+ "end": 9396.38,
+ "text": "ads"
+ },
+ {
+ "id": 18850,
+ "start": 9396.38,
+ "end": 9396.6,
+ "text": "to"
+ },
+ {
+ "id": 18851,
+ "start": 9396.6,
+ "end": 9396.94,
+ "text": "provide"
+ },
+ {
+ "id": 18852,
+ "start": 9396.94,
+ "end": 9397.12,
+ "text": "more"
+ },
+ {
+ "id": 18853,
+ "start": 9397.12,
+ "end": 9397.48,
+ "text": "relevant"
+ },
+ {
+ "id": 18854,
+ "start": 9397.48,
+ "end": 9397.94,
+ "text": "experience,"
+ },
+ {
+ "id": 18855,
+ "start": 9397.94,
+ "end": 9398.56,
+ "text": "let"
+ },
+ {
+ "id": 18856,
+ "start": 9398.56,
+ "end": 9398.62,
+ "text": "me"
+ },
+ {
+ "id": 18857,
+ "start": 9398.62,
+ "end": 9398.78,
+ "text": "try"
+ },
+ {
+ "id": 18858,
+ "start": 9398.78,
+ "end": 9398.84,
+ "text": "a"
+ },
+ {
+ "id": 18859,
+ "start": 9398.84,
+ "end": 9399.06,
+ "text": "couple"
+ },
+ {
+ "id": 18860,
+ "start": 9399.06,
+ "end": 9399.24,
+ "text": "of"
+ },
+ {
+ "id": 18861,
+ "start": 9399.24,
+ "end": 9399.86,
+ "text": "specific"
+ },
+ {
+ "id": 18862,
+ "start": 9399.86,
+ "end": 9400.34,
+ "text": "examples."
+ },
+ {
+ "id": 18863,
+ "start": 9400.34,
+ "end": 9400.9,
+ "text": "If"
+ },
+ {
+ "id": 18864,
+ "start": 9400.9,
+ "end": 9401.86,
+ "text": "I'm"
+ },
+ {
+ "id": 18865,
+ "start": 9401.86,
+ "end": 9402.86,
+ "text": "emailing"
+ },
+ {
+ "id": 18866,
+ "start": 9402.86,
+ "end": 9403.2,
+ "text": "within"
+ },
+ {
+ "id": 18867,
+ "start": 9403.2,
+ "end": 9403.78,
+ "text": "WhatsApp,"
+ },
+ {
+ "id": 18868,
+ "start": 9403.78,
+ "end": 9404.02,
+ "text": "does"
+ },
+ {
+ "id": 18869,
+ "start": 9404.02,
+ "end": 9404.22,
+ "text": "that"
+ },
+ {
+ "id": 18870,
+ "start": 9404.22,
+ "end": 9404.46,
+ "text": "ever"
+ },
+ {
+ "id": 18871,
+ "start": 9404.46,
+ "end": 9404.9,
+ "text": "inform"
+ },
+ {
+ "id": 18872,
+ "start": 9404.9,
+ "end": 9405.04,
+ "text": "your"
+ },
+ {
+ "id": 18873,
+ "start": 9405.04,
+ "end": 9406.56,
+ "text": "advertisers?"
+ },
+ {
+ "id": 18874,
+ "start": 9406.56,
+ "end": 9407.52,
+ "text": "No,"
+ },
+ {
+ "id": 18875,
+ "start": 9407.52,
+ "end": 9407.9,
+ "text": "we"
+ },
+ {
+ "id": 18876,
+ "start": 9407.9,
+ "end": 9408.1,
+ "text": "don't"
+ },
+ {
+ "id": 18877,
+ "start": 9408.1,
+ "end": 9408.32,
+ "text": "see"
+ },
+ {
+ "id": 18878,
+ "start": 9408.32,
+ "end": 9408.46,
+ "text": "any"
+ },
+ {
+ "id": 18879,
+ "start": 9408.46,
+ "end": 9408.54,
+ "text": "of"
+ },
+ {
+ "id": 18880,
+ "start": 9408.54,
+ "end": 9408.64,
+ "text": "the"
+ },
+ {
+ "id": 18881,
+ "start": 9408.64,
+ "end": 9408.96,
+ "text": "content"
+ },
+ {
+ "id": 18882,
+ "start": 9408.96,
+ "end": 9409.08,
+ "text": "and"
+ },
+ {
+ "id": 18883,
+ "start": 9409.08,
+ "end": 9409.5,
+ "text": "WhatsApp"
+ },
+ {
+ "id": 18884,
+ "start": 9409.5,
+ "end": 9409.7,
+ "text": "it's"
+ },
+ {
+ "id": 18885,
+ "start": 9409.7,
+ "end": 9409.92,
+ "text": "fully"
+ },
+ {
+ "id": 18886,
+ "start": 9409.92,
+ "end": 9410.34,
+ "text": "encrypted,"
+ },
+ {
+ "id": 18887,
+ "start": 9410.34,
+ "end": 9411.12,
+ "text": "right,"
+ },
+ {
+ "id": 18888,
+ "start": 9411.12,
+ "end": 9411.24,
+ "text": "but"
+ },
+ {
+ "id": 18889,
+ "start": 9411.24,
+ "end": 9411.66,
+ "text": "is"
+ },
+ {
+ "id": 18890,
+ "start": 9411.66,
+ "end": 9411.82,
+ "text": "there"
+ },
+ {
+ "id": 18891,
+ "start": 9411.82,
+ "end": 9412,
+ "text": "some"
+ },
+ {
+ "id": 18892,
+ "start": 9412,
+ "end": 9412.52,
+ "text": "algorithm"
+ },
+ {
+ "id": 18893,
+ "start": 9412.52,
+ "end": 9412.68,
+ "text": "that"
+ },
+ {
+ "id": 18894,
+ "start": 9412.68,
+ "end": 9413.06,
+ "text": "spits"
+ },
+ {
+ "id": 18895,
+ "start": 9413.06,
+ "end": 9413.32,
+ "text": "out"
+ },
+ {
+ "id": 18896,
+ "start": 9413.32,
+ "end": 9413.76,
+ "text": "some"
+ },
+ {
+ "id": 18897,
+ "start": 9413.76,
+ "end": 9414.5,
+ "text": "information"
+ },
+ {
+ "id": 18898,
+ "start": 9414.5,
+ "end": 9414.84,
+ "text": "to"
+ },
+ {
+ "id": 18899,
+ "start": 9414.84,
+ "end": 9415.12,
+ "text": "your"
+ },
+ {
+ "id": 18900,
+ "start": 9415.12,
+ "end": 9415.46,
+ "text": "ad"
+ },
+ {
+ "id": 18901,
+ "start": 9415.46,
+ "end": 9416.1,
+ "text": "platform?"
+ },
+ {
+ "id": 18902,
+ "start": 9416.1,
+ "end": 9416.6,
+ "text": "And"
+ },
+ {
+ "id": 18903,
+ "start": 9416.6,
+ "end": 9416.86,
+ "text": "then"
+ },
+ {
+ "id": 18904,
+ "start": 9416.86,
+ "end": 9417.34,
+ "text": "let's"
+ },
+ {
+ "id": 18905,
+ "start": 9417.34,
+ "end": 9417.48,
+ "text": "say,"
+ },
+ {
+ "id": 18906,
+ "start": 9417.48,
+ "end": 9417.68,
+ "text": "I'm"
+ },
+ {
+ "id": 18907,
+ "start": 9417.68,
+ "end": 9418.22,
+ "text": "emailing"
+ },
+ {
+ "id": 18908,
+ "start": 9418.22,
+ "end": 9418.46,
+ "text": "about"
+ },
+ {
+ "id": 18909,
+ "start": 9418.46,
+ "end": 9418.72,
+ "text": "Black"
+ },
+ {
+ "id": 18910,
+ "start": 9418.72,
+ "end": 9419.28,
+ "text": "Panther"
+ },
+ {
+ "id": 18911,
+ "start": 9419.28,
+ "end": 9420.18,
+ "text": "within"
+ },
+ {
+ "id": 18912,
+ "start": 9420.18,
+ "end": 9420.44,
+ "text": "what"
+ },
+ {
+ "id": 18913,
+ "start": 9420.44,
+ "end": 9420.66,
+ "text": "app"
+ },
+ {
+ "id": 18914,
+ "start": 9420.66,
+ "end": 9420.8,
+ "text": "do"
+ },
+ {
+ "id": 18915,
+ "start": 9420.8,
+ "end": 9420.88,
+ "text": "I"
+ },
+ {
+ "id": 18916,
+ "start": 9420.88,
+ "end": 9421,
+ "text": "get"
+ },
+ {
+ "id": 18917,
+ "start": 9421,
+ "end": 9421.08,
+ "text": "a?"
+ },
+ {
+ "id": 18918,
+ "start": 9421.08,
+ "end": 9421.6,
+ "text": "What"
+ },
+ {
+ "id": 18919,
+ "start": 9421.6,
+ "end": 9421.74,
+ "text": "do"
+ },
+ {
+ "id": 18920,
+ "start": 9421.74,
+ "end": 9421.84,
+ "text": "I"
+ },
+ {
+ "id": 18921,
+ "start": 9421.84,
+ "end": 9422,
+ "text": "get"
+ },
+ {
+ "id": 18922,
+ "start": 9422,
+ "end": 9422.45,
+ "text": "a"
+ },
+ {
+ "id": 18923,
+ "start": 9422.45,
+ "end": 9422.75,
+ "text": "Black"
+ },
+ {
+ "id": 18924,
+ "start": 9422.75,
+ "end": 9423.23,
+ "text": "Panther"
+ },
+ {
+ "id": 18925,
+ "start": 9423.23,
+ "end": 9423.81,
+ "text": "banner"
+ },
+ {
+ "id": 18926,
+ "start": 9423.81,
+ "end": 9424.55,
+ "text": "ad"
+ },
+ {
+ "id": 18927,
+ "start": 9424.55,
+ "end": 9425.57,
+ "text": "Senator,"
+ },
+ {
+ "id": 18928,
+ "start": 9425.57,
+ "end": 9425.93,
+ "text": "we"
+ },
+ {
+ "id": 18929,
+ "start": 9425.93,
+ "end": 9426.19,
+ "text": "don't"
+ },
+ {
+ "id": 18930,
+ "start": 9426.19,
+ "end": 9427.23,
+ "text": "Facebook"
+ },
+ {
+ "id": 18931,
+ "start": 9427.23,
+ "end": 9427.73,
+ "text": "systems"
+ },
+ {
+ "id": 18932,
+ "start": 9427.73,
+ "end": 9427.95,
+ "text": "do"
+ },
+ {
+ "id": 18933,
+ "start": 9427.95,
+ "end": 9428.15,
+ "text": "not"
+ },
+ {
+ "id": 18934,
+ "start": 9428.15,
+ "end": 9428.45,
+ "text": "see"
+ },
+ {
+ "id": 18935,
+ "start": 9428.45,
+ "end": 9428.59,
+ "text": "the"
+ },
+ {
+ "id": 18936,
+ "start": 9428.59,
+ "end": 9429.01,
+ "text": "content"
+ },
+ {
+ "id": 18937,
+ "start": 9429.01,
+ "end": 9429.17,
+ "text": "of"
+ },
+ {
+ "id": 18938,
+ "start": 9429.17,
+ "end": 9429.67,
+ "text": "messages"
+ },
+ {
+ "id": 18939,
+ "start": 9429.67,
+ "end": 9429.91,
+ "text": "being"
+ },
+ {
+ "id": 18940,
+ "start": 9429.91,
+ "end": 9430.35,
+ "text": "transferred"
+ },
+ {
+ "id": 18941,
+ "start": 9430.35,
+ "end": 9430.51,
+ "text": "over"
+ },
+ {
+ "id": 18942,
+ "start": 9430.51,
+ "end": 9430.69,
+ "text": "what?"
+ },
+ {
+ "id": 18943,
+ "start": 9430.69,
+ "end": 9430.97,
+ "text": "Yeah,"
+ },
+ {
+ "id": 18944,
+ "start": 9430.97,
+ "end": 9431.09,
+ "text": "I"
+ },
+ {
+ "id": 18945,
+ "start": 9431.09,
+ "end": 9431.21,
+ "text": "know."
+ },
+ {
+ "id": 18946,
+ "start": 9431.21,
+ "end": 9431.33,
+ "text": "But"
+ },
+ {
+ "id": 18947,
+ "start": 9431.33,
+ "end": 9431.81,
+ "text": "that's"
+ },
+ {
+ "id": 18948,
+ "start": 9431.81,
+ "end": 9431.93,
+ "text": "not"
+ },
+ {
+ "id": 18949,
+ "start": 9431.93,
+ "end": 9432.05,
+ "text": "what"
+ },
+ {
+ "id": 18950,
+ "start": 9432.05,
+ "end": 9432.19,
+ "text": "I'm"
+ },
+ {
+ "id": 18951,
+ "start": 9432.19,
+ "end": 9432.53,
+ "text": "asking"
+ },
+ {
+ "id": 18952,
+ "start": 9432.53,
+ "end": 9432.71,
+ "text": "I'm"
+ },
+ {
+ "id": 18953,
+ "start": 9432.71,
+ "end": 9433.09,
+ "text": "asking"
+ },
+ {
+ "id": 18954,
+ "start": 9433.09,
+ "end": 9433.83,
+ "text": "about"
+ },
+ {
+ "id": 18955,
+ "start": 9433.83,
+ "end": 9434.13,
+ "text": "whether"
+ },
+ {
+ "id": 18956,
+ "start": 9434.13,
+ "end": 9434.53,
+ "text": "these"
+ },
+ {
+ "id": 18957,
+ "start": 9434.53,
+ "end": 9434.97,
+ "text": "systems"
+ },
+ {
+ "id": 18958,
+ "start": 9434.97,
+ "end": 9435.25,
+ "text": "talk"
+ },
+ {
+ "id": 18959,
+ "start": 9435.25,
+ "end": 9435.37,
+ "text": "to"
+ },
+ {
+ "id": 18960,
+ "start": 9435.37,
+ "end": 9435.57,
+ "text": "each"
+ },
+ {
+ "id": 18961,
+ "start": 9435.57,
+ "end": 9435.81,
+ "text": "other"
+ },
+ {
+ "id": 18962,
+ "start": 9435.81,
+ "end": 9436.09,
+ "text": "without"
+ },
+ {
+ "id": 18963,
+ "start": 9436.09,
+ "end": 9436.17,
+ "text": "a"
+ },
+ {
+ "id": 18964,
+ "start": 9436.17,
+ "end": 9436.47,
+ "text": "human"
+ },
+ {
+ "id": 18965,
+ "start": 9436.47,
+ "end": 9436.69,
+ "text": "being"
+ },
+ {
+ "id": 18966,
+ "start": 9436.69,
+ "end": 9437.01,
+ "text": "touching"
+ },
+ {
+ "id": 18967,
+ "start": 9437.01,
+ "end": 9438.76,
+ "text": "it"
+ },
+ {
+ "id": 18968,
+ "start": 9438.76,
+ "end": 9439.82,
+ "text": "and"
+ },
+ {
+ "id": 18969,
+ "start": 9439.82,
+ "end": 9439.88,
+ "text": "I"
+ },
+ {
+ "id": 18970,
+ "start": 9439.88,
+ "end": 9440.04,
+ "text": "think"
+ },
+ {
+ "id": 18971,
+ "start": 9440.04,
+ "end": 9440.16,
+ "text": "the"
+ },
+ {
+ "id": 18972,
+ "start": 9440.16,
+ "end": 9440.34,
+ "text": "answer"
+ },
+ {
+ "id": 18973,
+ "start": 9440.34,
+ "end": 9440.44,
+ "text": "to"
+ },
+ {
+ "id": 18974,
+ "start": 9440.44,
+ "end": 9440.56,
+ "text": "your"
+ },
+ {
+ "id": 18975,
+ "start": 9440.56,
+ "end": 9440.92,
+ "text": "specific"
+ },
+ {
+ "id": 18976,
+ "start": 9440.92,
+ "end": 9441.18,
+ "text": "question"
+ },
+ {
+ "id": 18977,
+ "start": 9441.18,
+ "end": 9441.36,
+ "text": "is"
+ },
+ {
+ "id": 18978,
+ "start": 9441.36,
+ "end": 9441.54,
+ "text": "if"
+ },
+ {
+ "id": 18979,
+ "start": 9441.54,
+ "end": 9441.74,
+ "text": "you"
+ },
+ {
+ "id": 18980,
+ "start": 9441.74,
+ "end": 9442.08,
+ "text": "message"
+ },
+ {
+ "id": 18981,
+ "start": 9442.08,
+ "end": 9442.34,
+ "text": "someone"
+ },
+ {
+ "id": 18982,
+ "start": 9442.34,
+ "end": 9442.52,
+ "text": "about"
+ },
+ {
+ "id": 18983,
+ "start": 9442.52,
+ "end": 9442.78,
+ "text": "Black"
+ },
+ {
+ "id": 18984,
+ "start": 9442.78,
+ "end": 9443.1,
+ "text": "Panther"
+ },
+ {
+ "id": 18985,
+ "start": 9443.1,
+ "end": 9443.22,
+ "text": "and"
+ },
+ {
+ "id": 18986,
+ "start": 9443.22,
+ "end": 9443.66,
+ "text": "WhatsApp,"
+ },
+ {
+ "id": 18987,
+ "start": 9443.66,
+ "end": 9443.78,
+ "text": "it"
+ },
+ {
+ "id": 18988,
+ "start": 9443.78,
+ "end": 9443.96,
+ "text": "would"
+ },
+ {
+ "id": 18989,
+ "start": 9443.96,
+ "end": 9444.14,
+ "text": "not"
+ },
+ {
+ "id": 18990,
+ "start": 9444.14,
+ "end": 9445.1,
+ "text": "inform"
+ },
+ {
+ "id": 18991,
+ "start": 9445.1,
+ "end": 9445.66,
+ "text": "any"
+ },
+ {
+ "id": 18992,
+ "start": 9445.66,
+ "end": 9445.92,
+ "text": "ads."
+ },
+ {
+ "id": 18993,
+ "start": 9445.92,
+ "end": 9446.28,
+ "text": "Okay,"
+ },
+ {
+ "id": 18994,
+ "start": 9446.28,
+ "end": 9446.82,
+ "text": "I"
+ },
+ {
+ "id": 18995,
+ "start": 9446.82,
+ "end": 9446.96,
+ "text": "want"
+ },
+ {
+ "id": 18996,
+ "start": 9446.96,
+ "end": 9447.04,
+ "text": "to"
+ },
+ {
+ "id": 18997,
+ "start": 9447.04,
+ "end": 9447.26,
+ "text": "follow"
+ },
+ {
+ "id": 18998,
+ "start": 9447.26,
+ "end": 9447.36,
+ "text": "up"
+ },
+ {
+ "id": 18999,
+ "start": 9447.36,
+ "end": 9447.46,
+ "text": "on"
+ },
+ {
+ "id": 19000,
+ "start": 9447.46,
+ "end": 9447.8,
+ "text": "center"
+ },
+ {
+ "id": 19001,
+ "start": 9447.8,
+ "end": 9448.24,
+ "text": "Nelson's"
+ },
+ {
+ "id": 19002,
+ "start": 9448.24,
+ "end": 9448.7,
+ "text": "original"
+ },
+ {
+ "id": 19003,
+ "start": 9448.7,
+ "end": 9449.06,
+ "text": "question,"
+ },
+ {
+ "id": 19004,
+ "start": 9449.06,
+ "end": 9449.24,
+ "text": "which"
+ },
+ {
+ "id": 19005,
+ "start": 9449.24,
+ "end": 9449.4,
+ "text": "is"
+ },
+ {
+ "id": 19006,
+ "start": 9449.4,
+ "end": 9449.84,
+ "text": "the"
+ },
+ {
+ "id": 19007,
+ "start": 9449.84,
+ "end": 9450.12,
+ "text": "question"
+ },
+ {
+ "id": 19008,
+ "start": 9450.12,
+ "end": 9450.22,
+ "text": "of"
+ },
+ {
+ "id": 19009,
+ "start": 9450.22,
+ "end": 9450.72,
+ "text": "ownership"
+ },
+ {
+ "id": 19010,
+ "start": 9450.72,
+ "end": 9450.82,
+ "text": "of"
+ },
+ {
+ "id": 19011,
+ "start": 9450.82,
+ "end": 9450.94,
+ "text": "the"
+ },
+ {
+ "id": 19012,
+ "start": 9450.94,
+ "end": 9451.2,
+ "text": "data."
+ },
+ {
+ "id": 19013,
+ "start": 9451.2,
+ "end": 9451.3,
+ "text": "And"
+ },
+ {
+ "id": 19014,
+ "start": 9451.3,
+ "end": 9451.36,
+ "text": "I"
+ },
+ {
+ "id": 19015,
+ "start": 9451.36,
+ "end": 9451.7,
+ "text": "understand"
+ },
+ {
+ "id": 19016,
+ "start": 9451.7,
+ "end": 9451.86,
+ "text": "as"
+ },
+ {
+ "id": 19017,
+ "start": 9451.86,
+ "end": 9451.98,
+ "text": "a"
+ },
+ {
+ "id": 19018,
+ "start": 9451.98,
+ "end": 9452.16,
+ "text": "sort"
+ },
+ {
+ "id": 19019,
+ "start": 9452.16,
+ "end": 9452.24,
+ "text": "of"
+ },
+ {
+ "id": 19020,
+ "start": 9452.24,
+ "end": 9452.28,
+ "text": "a"
+ },
+ {
+ "id": 19021,
+ "start": 9452.28,
+ "end": 9452.52,
+ "text": "matter"
+ },
+ {
+ "id": 19022,
+ "start": 9452.52,
+ "end": 9452.6,
+ "text": "of"
+ },
+ {
+ "id": 19023,
+ "start": 9452.6,
+ "end": 9453.08,
+ "text": "principle"
+ },
+ {
+ "id": 19024,
+ "start": 9453.08,
+ "end": 9453.32,
+ "text": "you're"
+ },
+ {
+ "id": 19025,
+ "start": 9453.32,
+ "end": 9453.58,
+ "text": "saying,"
+ },
+ {
+ "id": 19026,
+ "start": 9453.58,
+ "end": 9454.02,
+ "text": "you"
+ },
+ {
+ "id": 19027,
+ "start": 9454.02,
+ "end": 9454.16,
+ "text": "know,"
+ },
+ {
+ "id": 19028,
+ "start": 9454.16,
+ "end": 9454.26,
+ "text": "we"
+ },
+ {
+ "id": 19029,
+ "start": 9454.26,
+ "end": 9454.42,
+ "text": "want"
+ },
+ {
+ "id": 19030,
+ "start": 9454.42,
+ "end": 9454.56,
+ "text": "our"
+ },
+ {
+ "id": 19031,
+ "start": 9454.56,
+ "end": 9454.96,
+ "text": "customers"
+ },
+ {
+ "id": 19032,
+ "start": 9454.96,
+ "end": 9455.1,
+ "text": "to"
+ },
+ {
+ "id": 19033,
+ "start": 9455.1,
+ "end": 9455.24,
+ "text": "have"
+ },
+ {
+ "id": 19034,
+ "start": 9455.24,
+ "end": 9455.5,
+ "text": "more"
+ },
+ {
+ "id": 19035,
+ "start": 9455.5,
+ "end": 9455.76,
+ "text": "rather"
+ },
+ {
+ "id": 19036,
+ "start": 9455.76,
+ "end": 9455.9,
+ "text": "than"
+ },
+ {
+ "id": 19037,
+ "start": 9455.9,
+ "end": 9456.16,
+ "text": "less"
+ },
+ {
+ "id": 19038,
+ "start": 9456.16,
+ "end": 9456.6,
+ "text": "control"
+ },
+ {
+ "id": 19039,
+ "start": 9456.6,
+ "end": 9456.8,
+ "text": "over"
+ },
+ {
+ "id": 19040,
+ "start": 9456.8,
+ "end": 9456.94,
+ "text": "the"
+ },
+ {
+ "id": 19041,
+ "start": 9456.94,
+ "end": 9457.2,
+ "text": "data."
+ },
+ {
+ "id": 19042,
+ "start": 9457.2,
+ "end": 9457.58,
+ "text": "But"
+ },
+ {
+ "id": 19043,
+ "start": 9457.58,
+ "end": 9457.66,
+ "text": "I"
+ },
+ {
+ "id": 19044,
+ "start": 9457.66,
+ "end": 9457.9,
+ "text": "can't"
+ },
+ {
+ "id": 19045,
+ "start": 9457.9,
+ "end": 9458.2,
+ "text": "imagine"
+ },
+ {
+ "id": 19046,
+ "start": 9458.2,
+ "end": 9458.32,
+ "text": "that"
+ },
+ {
+ "id": 19047,
+ "start": 9458.32,
+ "end": 9458.48,
+ "text": "it"
+ },
+ {
+ "id": 19048,
+ "start": 9458.48,
+ "end": 9458.88,
+ "text": "true"
+ },
+ {
+ "id": 19049,
+ "start": 9458.88,
+ "end": 9459.02,
+ "text": "as"
+ },
+ {
+ "id": 19050,
+ "start": 9459.02,
+ "end": 9459.08,
+ "text": "a"
+ },
+ {
+ "id": 19051,
+ "start": 9459.08,
+ "end": 9459.5,
+ "text": "legal"
+ },
+ {
+ "id": 19052,
+ "start": 9459.5,
+ "end": 9459.86,
+ "text": "matter."
+ },
+ {
+ "id": 19053,
+ "start": 9459.86,
+ "end": 9460.38,
+ "text": "That"
+ },
+ {
+ "id": 19054,
+ "start": 9460.38,
+ "end": 9460.6,
+ "text": "I"
+ },
+ {
+ "id": 19055,
+ "start": 9460.6,
+ "end": 9461.04,
+ "text": "actually"
+ },
+ {
+ "id": 19056,
+ "start": 9461.04,
+ "end": 9461.4,
+ "text": "own"
+ },
+ {
+ "id": 19057,
+ "start": 9461.4,
+ "end": 9461.7,
+ "text": "my"
+ },
+ {
+ "id": 19058,
+ "start": 9461.7,
+ "end": 9462.42,
+ "text": "Facebook"
+ },
+ {
+ "id": 19059,
+ "start": 9462.42,
+ "end": 9462.64,
+ "text": "data"
+ },
+ {
+ "id": 19060,
+ "start": 9462.64,
+ "end": 9462.9,
+ "text": "because"
+ },
+ {
+ "id": 19061,
+ "start": 9462.9,
+ "end": 9463.6,
+ "text": "you're"
+ },
+ {
+ "id": 19062,
+ "start": 9463.6,
+ "end": 9464,
+ "text": "the"
+ },
+ {
+ "id": 19063,
+ "start": 9464,
+ "end": 9464.76,
+ "text": "one"
+ },
+ {
+ "id": 19064,
+ "start": 9464.76,
+ "end": 9465.48,
+ "text": "monetizing"
+ },
+ {
+ "id": 19065,
+ "start": 9465.48,
+ "end": 9465.64,
+ "text": "it."
+ },
+ {
+ "id": 19066,
+ "start": 9465.64,
+ "end": 9466.38,
+ "text": "Do"
+ },
+ {
+ "id": 19067,
+ "start": 9466.38,
+ "end": 9466.5,
+ "text": "you"
+ },
+ {
+ "id": 19068,
+ "start": 9466.5,
+ "end": 9466.66,
+ "text": "want"
+ },
+ {
+ "id": 19069,
+ "start": 9466.66,
+ "end": 9466.74,
+ "text": "to"
+ },
+ {
+ "id": 19070,
+ "start": 9466.74,
+ "end": 9467.12,
+ "text": "modify"
+ },
+ {
+ "id": 19071,
+ "start": 9467.12,
+ "end": 9467.36,
+ "text": "that"
+ },
+ {
+ "id": 19072,
+ "start": 9467.36,
+ "end": 9467.48,
+ "text": "to"
+ },
+ {
+ "id": 19073,
+ "start": 9467.48,
+ "end": 9467.74,
+ "text": "sort"
+ },
+ {
+ "id": 19074,
+ "start": 9467.74,
+ "end": 9467.86,
+ "text": "of"
+ },
+ {
+ "id": 19075,
+ "start": 9467.86,
+ "end": 9468.3,
+ "text": "express"
+ },
+ {
+ "id": 19076,
+ "start": 9468.3,
+ "end": 9468.46,
+ "text": "that"
+ },
+ {
+ "id": 19077,
+ "start": 9468.46,
+ "end": 9468.6,
+ "text": "as"
+ },
+ {
+ "id": 19078,
+ "start": 9468.6,
+ "end": 9468.68,
+ "text": "a"
+ },
+ {
+ "id": 19079,
+ "start": 9468.68,
+ "end": 9469.12,
+ "text": "statement"
+ },
+ {
+ "id": 19080,
+ "start": 9469.12,
+ "end": 9469.22,
+ "text": "of"
+ },
+ {
+ "id": 19081,
+ "start": 9469.22,
+ "end": 9469.84,
+ "text": "principle"
+ },
+ {
+ "id": 19082,
+ "start": 9469.84,
+ "end": 9470.24,
+ "text": "a"
+ },
+ {
+ "id": 19083,
+ "start": 9470.24,
+ "end": 9470.4,
+ "text": "sort"
+ },
+ {
+ "id": 19084,
+ "start": 9470.4,
+ "end": 9470.48,
+ "text": "of"
+ },
+ {
+ "id": 19085,
+ "start": 9470.48,
+ "end": 9471.86,
+ "text": "aspirational"
+ },
+ {
+ "id": 19086,
+ "start": 9471.86,
+ "end": 9472.62,
+ "text": "goal."
+ },
+ {
+ "id": 19087,
+ "start": 9472.62,
+ "end": 9472.86,
+ "text": "But"
+ },
+ {
+ "id": 19088,
+ "start": 9472.86,
+ "end": 9472.98,
+ "text": "it"
+ },
+ {
+ "id": 19089,
+ "start": 9472.98,
+ "end": 9473.28,
+ "text": "doesn't"
+ },
+ {
+ "id": 19090,
+ "start": 9473.28,
+ "end": 9473.5,
+ "text": "seem"
+ },
+ {
+ "id": 19091,
+ "start": 9473.5,
+ "end": 9473.68,
+ "text": "to"
+ },
+ {
+ "id": 19092,
+ "start": 9473.68,
+ "end": 9473.88,
+ "text": "me"
+ },
+ {
+ "id": 19093,
+ "start": 9473.88,
+ "end": 9475.1,
+ "text": "that"
+ },
+ {
+ "id": 19094,
+ "start": 9475.1,
+ "end": 9475.7,
+ "text": "we"
+ },
+ {
+ "id": 19095,
+ "start": 9475.7,
+ "end": 9475.98,
+ "text": "own"
+ },
+ {
+ "id": 19096,
+ "start": 9475.98,
+ "end": 9476.16,
+ "text": "our"
+ },
+ {
+ "id": 19097,
+ "start": 9476.16,
+ "end": 9476.34,
+ "text": "own"
+ },
+ {
+ "id": 19098,
+ "start": 9476.34,
+ "end": 9476.66,
+ "text": "data,"
+ },
+ {
+ "id": 19099,
+ "start": 9476.66,
+ "end": 9477.08,
+ "text": "otherwise"
+ },
+ {
+ "id": 19100,
+ "start": 9477.08,
+ "end": 9477.28,
+ "text": "we'd"
+ },
+ {
+ "id": 19101,
+ "start": 9477.28,
+ "end": 9477.38,
+ "text": "be"
+ },
+ {
+ "id": 19102,
+ "start": 9477.38,
+ "end": 9477.62,
+ "text": "getting"
+ },
+ {
+ "id": 19103,
+ "start": 9477.62,
+ "end": 9477.68,
+ "text": "a"
+ },
+ {
+ "id": 19104,
+ "start": 9477.68,
+ "end": 9479.16,
+ "text": "cut."
+ },
+ {
+ "id": 19105,
+ "start": 9479.16,
+ "end": 9480.2,
+ "text": "Well,"
+ },
+ {
+ "id": 19106,
+ "start": 9480.2,
+ "end": 9481.02,
+ "text": "Senator,"
+ },
+ {
+ "id": 19107,
+ "start": 9481.02,
+ "end": 9482.04,
+ "text": "you"
+ },
+ {
+ "id": 19108,
+ "start": 9482.04,
+ "end": 9482.26,
+ "text": "own"
+ },
+ {
+ "id": 19109,
+ "start": 9482.26,
+ "end": 9482.38,
+ "text": "it"
+ },
+ {
+ "id": 19110,
+ "start": 9482.38,
+ "end": 9482.52,
+ "text": "in"
+ },
+ {
+ "id": 19111,
+ "start": 9482.52,
+ "end": 9482.66,
+ "text": "the"
+ },
+ {
+ "id": 19112,
+ "start": 9482.66,
+ "end": 9482.92,
+ "text": "sense"
+ },
+ {
+ "id": 19113,
+ "start": 9482.92,
+ "end": 9483.12,
+ "text": "that"
+ },
+ {
+ "id": 19114,
+ "start": 9483.12,
+ "end": 9483.52,
+ "text": "you"
+ },
+ {
+ "id": 19115,
+ "start": 9483.52,
+ "end": 9483.84,
+ "text": "choose"
+ },
+ {
+ "id": 19116,
+ "start": 9483.84,
+ "end": 9483.94,
+ "text": "to"
+ },
+ {
+ "id": 19117,
+ "start": 9483.94,
+ "end": 9484.1,
+ "text": "put"
+ },
+ {
+ "id": 19118,
+ "start": 9484.1,
+ "end": 9484.2,
+ "text": "it"
+ },
+ {
+ "id": 19119,
+ "start": 9484.2,
+ "end": 9484.47,
+ "text": "there,"
+ },
+ {
+ "id": 19120,
+ "start": 9484.47,
+ "end": 9484.65,
+ "text": "you"
+ },
+ {
+ "id": 19121,
+ "start": 9484.65,
+ "end": 9484.79,
+ "text": "could"
+ },
+ {
+ "id": 19122,
+ "start": 9484.79,
+ "end": 9484.93,
+ "text": "take"
+ },
+ {
+ "id": 19123,
+ "start": 9484.93,
+ "end": 9485.03,
+ "text": "it"
+ },
+ {
+ "id": 19124,
+ "start": 9485.03,
+ "end": 9485.19,
+ "text": "down"
+ },
+ {
+ "id": 19125,
+ "start": 9485.19,
+ "end": 9485.43,
+ "text": "any"
+ },
+ {
+ "id": 19126,
+ "start": 9485.43,
+ "end": 9485.67,
+ "text": "time."
+ },
+ {
+ "id": 19127,
+ "start": 9485.67,
+ "end": 9485.81,
+ "text": "And"
+ },
+ {
+ "id": 19128,
+ "start": 9485.81,
+ "end": 9485.93,
+ "text": "you"
+ },
+ {
+ "id": 19129,
+ "start": 9485.93,
+ "end": 9486.47,
+ "text": "completely"
+ },
+ {
+ "id": 19130,
+ "start": 9486.47,
+ "end": 9486.83,
+ "text": "control"
+ },
+ {
+ "id": 19131,
+ "start": 9486.83,
+ "end": 9486.95,
+ "text": "the"
+ },
+ {
+ "id": 19132,
+ "start": 9486.95,
+ "end": 9487.23,
+ "text": "terms"
+ },
+ {
+ "id": 19133,
+ "start": 9487.23,
+ "end": 9487.47,
+ "text": "under"
+ },
+ {
+ "id": 19134,
+ "start": 9487.47,
+ "end": 9487.65,
+ "text": "which"
+ },
+ {
+ "id": 19135,
+ "start": 9487.65,
+ "end": 9487.81,
+ "text": "it's"
+ },
+ {
+ "id": 19136,
+ "start": 9487.81,
+ "end": 9488.11,
+ "text": "used."
+ },
+ {
+ "id": 19137,
+ "start": 9488.11,
+ "end": 9488.73,
+ "text": "When"
+ },
+ {
+ "id": 19138,
+ "start": 9488.73,
+ "end": 9488.89,
+ "text": "you"
+ },
+ {
+ "id": 19139,
+ "start": 9488.89,
+ "end": 9489.01,
+ "text": "put"
+ },
+ {
+ "id": 19140,
+ "start": 9489.01,
+ "end": 9489.11,
+ "text": "it"
+ },
+ {
+ "id": 19141,
+ "start": 9489.11,
+ "end": 9489.27,
+ "text": "on"
+ },
+ {
+ "id": 19142,
+ "start": 9489.27,
+ "end": 9489.77,
+ "text": "Facebook,"
+ },
+ {
+ "id": 19143,
+ "start": 9489.77,
+ "end": 9489.95,
+ "text": "you"
+ },
+ {
+ "id": 19144,
+ "start": 9489.95,
+ "end": 9490.15,
+ "text": "are"
+ },
+ {
+ "id": 19145,
+ "start": 9490.15,
+ "end": 9490.53,
+ "text": "granting"
+ },
+ {
+ "id": 19146,
+ "start": 9490.53,
+ "end": 9490.69,
+ "text": "us"
+ },
+ {
+ "id": 19147,
+ "start": 9490.69,
+ "end": 9490.81,
+ "text": "a"
+ },
+ {
+ "id": 19148,
+ "start": 9490.81,
+ "end": 9491.27,
+ "text": "license"
+ },
+ {
+ "id": 19149,
+ "start": 9491.27,
+ "end": 9491.55,
+ "text": "to"
+ },
+ {
+ "id": 19150,
+ "start": 9491.55,
+ "end": 9491.67,
+ "text": "be"
+ },
+ {
+ "id": 19151,
+ "start": 9491.67,
+ "end": 9491.81,
+ "text": "able"
+ },
+ {
+ "id": 19152,
+ "start": 9491.81,
+ "end": 9491.89,
+ "text": "to"
+ },
+ {
+ "id": 19153,
+ "start": 9491.89,
+ "end": 9492.05,
+ "text": "show"
+ },
+ {
+ "id": 19154,
+ "start": 9492.05,
+ "end": 9492.15,
+ "text": "it"
+ },
+ {
+ "id": 19155,
+ "start": 9492.15,
+ "end": 9492.21,
+ "text": "to"
+ },
+ {
+ "id": 19156,
+ "start": 9492.21,
+ "end": 9492.45,
+ "text": "other"
+ },
+ {
+ "id": 19157,
+ "start": 9492.45,
+ "end": 9492.73,
+ "text": "people."
+ },
+ {
+ "id": 19158,
+ "start": 9492.73,
+ "end": 9492.85,
+ "text": "I"
+ },
+ {
+ "id": 19159,
+ "start": 9492.85,
+ "end": 9493.01,
+ "text": "mean"
+ },
+ {
+ "id": 19160,
+ "start": 9493.01,
+ "end": 9493.51,
+ "text": "that's"
+ },
+ {
+ "id": 19161,
+ "start": 9493.51,
+ "end": 9494.47,
+ "text": "necessary"
+ },
+ {
+ "id": 19162,
+ "start": 9494.47,
+ "end": 9494.55,
+ "text": "in"
+ },
+ {
+ "id": 19163,
+ "start": 9494.55,
+ "end": 9494.77,
+ "text": "order"
+ },
+ {
+ "id": 19164,
+ "start": 9494.77,
+ "end": 9494.91,
+ "text": "for"
+ },
+ {
+ "id": 19165,
+ "start": 9494.91,
+ "end": 9495.01,
+ "text": "the"
+ },
+ {
+ "id": 19166,
+ "start": 9495.01,
+ "end": 9495.37,
+ "text": "service"
+ },
+ {
+ "id": 19167,
+ "start": 9495.37,
+ "end": 9495.59,
+ "text": "to"
+ },
+ {
+ "id": 19168,
+ "start": 9495.59,
+ "end": 9497.08,
+ "text": "operate."
+ },
+ {
+ "id": 19169,
+ "start": 9497.08,
+ "end": 9497.88,
+ "text": "So,"
+ },
+ {
+ "id": 19170,
+ "start": 9497.88,
+ "end": 9498.06,
+ "text": "your"
+ },
+ {
+ "id": 19171,
+ "start": 9498.06,
+ "end": 9498.48,
+ "text": "definition"
+ },
+ {
+ "id": 19172,
+ "start": 9498.48,
+ "end": 9498.58,
+ "text": "of"
+ },
+ {
+ "id": 19173,
+ "start": 9498.58,
+ "end": 9499.02,
+ "text": "ownership"
+ },
+ {
+ "id": 19174,
+ "start": 9499.02,
+ "end": 9499.24,
+ "text": "is"
+ },
+ {
+ "id": 19175,
+ "start": 9499.24,
+ "end": 9499.9,
+ "text": "I"
+ },
+ {
+ "id": 19176,
+ "start": 9499.9,
+ "end": 9500.2,
+ "text": "sign"
+ },
+ {
+ "id": 19177,
+ "start": 9500.2,
+ "end": 9500.42,
+ "text": "up."
+ },
+ {
+ "id": 19178,
+ "start": 9500.42,
+ "end": 9501.5,
+ "text": "I"
+ },
+ {
+ "id": 19179,
+ "start": 9501.5,
+ "end": 9502.52,
+ "text": "voluntarily"
+ },
+ {
+ "id": 19180,
+ "start": 9502.52,
+ "end": 9503.24,
+ "text": "and"
+ },
+ {
+ "id": 19181,
+ "start": 9503.24,
+ "end": 9503.44,
+ "text": "I"
+ },
+ {
+ "id": 19182,
+ "start": 9503.44,
+ "end": 9503.66,
+ "text": "may"
+ },
+ {
+ "id": 19183,
+ "start": 9503.66,
+ "end": 9503.98,
+ "text": "delete"
+ },
+ {
+ "id": 19184,
+ "start": 9503.98,
+ "end": 9504.12,
+ "text": "my"
+ },
+ {
+ "id": 19185,
+ "start": 9504.12,
+ "end": 9504.44,
+ "text": "account"
+ },
+ {
+ "id": 19186,
+ "start": 9504.44,
+ "end": 9504.58,
+ "text": "if"
+ },
+ {
+ "id": 19187,
+ "start": 9504.58,
+ "end": 9504.74,
+ "text": "I"
+ },
+ {
+ "id": 19188,
+ "start": 9504.74,
+ "end": 9505.04,
+ "text": "wish,"
+ },
+ {
+ "id": 19189,
+ "start": 9505.04,
+ "end": 9505.18,
+ "text": "but"
+ },
+ {
+ "id": 19190,
+ "start": 9505.18,
+ "end": 9505.42,
+ "text": "that's"
+ },
+ {
+ "id": 19191,
+ "start": 9505.42,
+ "end": 9505.92,
+ "text": "basically,"
+ },
+ {
+ "id": 19192,
+ "start": 9505.92,
+ "end": 9507.72,
+ "text": "it"
+ },
+ {
+ "id": 19193,
+ "start": 9507.72,
+ "end": 9509.04,
+ "text": "Senator."
+ },
+ {
+ "id": 19194,
+ "start": 9509.04,
+ "end": 9510.06,
+ "text": "I"
+ },
+ {
+ "id": 19195,
+ "start": 9510.06,
+ "end": 9510.26,
+ "text": "think"
+ },
+ {
+ "id": 19196,
+ "start": 9510.26,
+ "end": 9510.4,
+ "text": "that"
+ },
+ {
+ "id": 19197,
+ "start": 9510.4,
+ "end": 9510.54,
+ "text": "the"
+ },
+ {
+ "id": 19198,
+ "start": 9510.54,
+ "end": 9510.84,
+ "text": "control"
+ },
+ {
+ "id": 19199,
+ "start": 9510.84,
+ "end": 9510.94,
+ "text": "is"
+ },
+ {
+ "id": 19200,
+ "start": 9510.94,
+ "end": 9511.12,
+ "text": "much"
+ },
+ {
+ "id": 19201,
+ "start": 9511.12,
+ "end": 9511.32,
+ "text": "more"
+ },
+ {
+ "id": 19202,
+ "start": 9511.32,
+ "end": 9511.78,
+ "text": "granular"
+ },
+ {
+ "id": 19203,
+ "start": 9511.78,
+ "end": 9511.94,
+ "text": "than"
+ },
+ {
+ "id": 19204,
+ "start": 9511.94,
+ "end": 9512.12,
+ "text": "that."
+ },
+ {
+ "id": 19205,
+ "start": 9512.12,
+ "end": 9512.66,
+ "text": "You"
+ },
+ {
+ "id": 19206,
+ "start": 9512.66,
+ "end": 9512.84,
+ "text": "can"
+ },
+ {
+ "id": 19207,
+ "start": 9512.84,
+ "end": 9513.18,
+ "text": "choose"
+ },
+ {
+ "id": 19208,
+ "start": 9513.18,
+ "end": 9514.2,
+ "text": "each"
+ },
+ {
+ "id": 19209,
+ "start": 9514.2,
+ "end": 9514.58,
+ "text": "photo"
+ },
+ {
+ "id": 19210,
+ "start": 9514.58,
+ "end": 9514.92,
+ "text": "that"
+ },
+ {
+ "id": 19211,
+ "start": 9514.92,
+ "end": 9515.04,
+ "text": "you"
+ },
+ {
+ "id": 19212,
+ "start": 9515.04,
+ "end": 9515.18,
+ "text": "want"
+ },
+ {
+ "id": 19213,
+ "start": 9515.18,
+ "end": 9515.26,
+ "text": "to"
+ },
+ {
+ "id": 19214,
+ "start": 9515.26,
+ "end": 9515.38,
+ "text": "put"
+ },
+ {
+ "id": 19215,
+ "start": 9515.38,
+ "end": 9515.52,
+ "text": "up"
+ },
+ {
+ "id": 19216,
+ "start": 9515.52,
+ "end": 9515.68,
+ "text": "or"
+ },
+ {
+ "id": 19217,
+ "start": 9515.68,
+ "end": 9515.86,
+ "text": "each"
+ },
+ {
+ "id": 19218,
+ "start": 9515.86,
+ "end": 9516.3,
+ "text": "message"
+ },
+ {
+ "id": 19219,
+ "start": 9516.3,
+ "end": 9517.2,
+ "text": "and"
+ },
+ {
+ "id": 19220,
+ "start": 9517.2,
+ "end": 9517.36,
+ "text": "you"
+ },
+ {
+ "id": 19221,
+ "start": 9517.36,
+ "end": 9517.66,
+ "text": "can"
+ },
+ {
+ "id": 19222,
+ "start": 9517.66,
+ "end": 9518.34,
+ "text": "delete"
+ },
+ {
+ "id": 19223,
+ "start": 9518.34,
+ "end": 9518.87,
+ "text": "those."
+ },
+ {
+ "id": 19224,
+ "start": 9518.87,
+ "end": 9519.01,
+ "text": "You"
+ },
+ {
+ "id": 19225,
+ "start": 9519.01,
+ "end": 9519.15,
+ "text": "don't"
+ },
+ {
+ "id": 19226,
+ "start": 9519.15,
+ "end": 9519.27,
+ "text": "need"
+ },
+ {
+ "id": 19227,
+ "start": 9519.27,
+ "end": 9519.35,
+ "text": "to"
+ },
+ {
+ "id": 19228,
+ "start": 9519.35,
+ "end": 9519.55,
+ "text": "delete"
+ },
+ {
+ "id": 19229,
+ "start": 9519.55,
+ "end": 9519.67,
+ "text": "your"
+ },
+ {
+ "id": 19230,
+ "start": 9519.67,
+ "end": 9519.83,
+ "text": "whole"
+ },
+ {
+ "id": 19231,
+ "start": 9519.83,
+ "end": 9520.13,
+ "text": "account,"
+ },
+ {
+ "id": 19232,
+ "start": 9520.13,
+ "end": 9520.37,
+ "text": "you"
+ },
+ {
+ "id": 19233,
+ "start": 9520.37,
+ "end": 9520.55,
+ "text": "have"
+ },
+ {
+ "id": 19234,
+ "start": 9520.55,
+ "end": 9521.03,
+ "text": "specific"
+ },
+ {
+ "id": 19235,
+ "start": 9521.03,
+ "end": 9521.41,
+ "text": "control."
+ },
+ {
+ "id": 19236,
+ "start": 9521.41,
+ "end": 9521.57,
+ "text": "You"
+ },
+ {
+ "id": 19237,
+ "start": 9521.57,
+ "end": 9521.71,
+ "text": "can"
+ },
+ {
+ "id": 19238,
+ "start": 9521.71,
+ "end": 9522.25,
+ "text": "share"
+ },
+ {
+ "id": 19239,
+ "start": 9522.25,
+ "end": 9522.59,
+ "text": "different"
+ },
+ {
+ "id": 19240,
+ "start": 9522.59,
+ "end": 9522.87,
+ "text": "posts"
+ },
+ {
+ "id": 19241,
+ "start": 9522.87,
+ "end": 9523.09,
+ "text": "with"
+ },
+ {
+ "id": 19242,
+ "start": 9523.09,
+ "end": 9523.69,
+ "text": "people"
+ },
+ {
+ "id": 19243,
+ "start": 9523.69,
+ "end": 9523.97,
+ "text": "in"
+ },
+ {
+ "id": 19244,
+ "start": 9523.97,
+ "end": 9524.07,
+ "text": "the"
+ },
+ {
+ "id": 19245,
+ "start": 9524.07,
+ "end": 9524.23,
+ "text": "time"
+ },
+ {
+ "id": 19246,
+ "start": 9524.23,
+ "end": 9524.35,
+ "text": "I"
+ },
+ {
+ "id": 19247,
+ "start": 9524.35,
+ "end": 9524.49,
+ "text": "have"
+ },
+ {
+ "id": 19248,
+ "start": 9524.49,
+ "end": 9524.69,
+ "text": "left."
+ },
+ {
+ "id": 19249,
+ "start": 9524.69,
+ "end": 9524.79,
+ "text": "I"
+ },
+ {
+ "id": 19250,
+ "start": 9524.79,
+ "end": 9525.37,
+ "text": "want"
+ },
+ {
+ "id": 19251,
+ "start": 9525.37,
+ "end": 9525.43,
+ "text": "to"
+ },
+ {
+ "id": 19252,
+ "start": 9525.43,
+ "end": 9525.79,
+ "text": "propose"
+ },
+ {
+ "id": 19253,
+ "start": 9525.79,
+ "end": 9526.09,
+ "text": "something"
+ },
+ {
+ "id": 19254,
+ "start": 9526.09,
+ "end": 9526.17,
+ "text": "to"
+ },
+ {
+ "id": 19255,
+ "start": 9526.17,
+ "end": 9526.33,
+ "text": "you"
+ },
+ {
+ "id": 19256,
+ "start": 9526.33,
+ "end": 9526.49,
+ "text": "and"
+ },
+ {
+ "id": 19257,
+ "start": 9526.49,
+ "end": 9526.65,
+ "text": "take"
+ },
+ {
+ "id": 19258,
+ "start": 9526.65,
+ "end": 9526.75,
+ "text": "it"
+ },
+ {
+ "id": 19259,
+ "start": 9526.75,
+ "end": 9526.89,
+ "text": "for"
+ },
+ {
+ "id": 19260,
+ "start": 9526.89,
+ "end": 9527.01,
+ "text": "the"
+ },
+ {
+ "id": 19261,
+ "start": 9527.01,
+ "end": 9527.39,
+ "text": "record."
+ },
+ {
+ "id": 19262,
+ "start": 9527.39,
+ "end": 9527.99,
+ "text": "I"
+ },
+ {
+ "id": 19263,
+ "start": 9527.99,
+ "end": 9528.17,
+ "text": "read"
+ },
+ {
+ "id": 19264,
+ "start": 9528.17,
+ "end": 9528.27,
+ "text": "an"
+ },
+ {
+ "id": 19265,
+ "start": 9528.27,
+ "end": 9528.65,
+ "text": "interesting"
+ },
+ {
+ "id": 19266,
+ "start": 9528.65,
+ "end": 9528.95,
+ "text": "article"
+ },
+ {
+ "id": 19267,
+ "start": 9528.95,
+ "end": 9529.17,
+ "text": "this"
+ },
+ {
+ "id": 19268,
+ "start": 9529.17,
+ "end": 9529.35,
+ "text": "week"
+ },
+ {
+ "id": 19269,
+ "start": 9529.35,
+ "end": 9529.53,
+ "text": "by"
+ },
+ {
+ "id": 19270,
+ "start": 9529.53,
+ "end": 9530.03,
+ "text": "Professor"
+ },
+ {
+ "id": 19271,
+ "start": 9530.03,
+ "end": 9530.64,
+ "text": "Jack"
+ },
+ {
+ "id": 19272,
+ "start": 9530.64,
+ "end": 9531.36,
+ "text": "Balkan"
+ },
+ {
+ "id": 19273,
+ "start": 9531.36,
+ "end": 9531.48,
+ "text": "at"
+ },
+ {
+ "id": 19274,
+ "start": 9531.48,
+ "end": 9531.86,
+ "text": "Yale."
+ },
+ {
+ "id": 19275,
+ "start": 9531.86,
+ "end": 9532.56,
+ "text": "That"
+ },
+ {
+ "id": 19276,
+ "start": 9532.56,
+ "end": 9533.08,
+ "text": "proposes"
+ },
+ {
+ "id": 19277,
+ "start": 9533.08,
+ "end": 9533.18,
+ "text": "a"
+ },
+ {
+ "id": 19278,
+ "start": 9533.18,
+ "end": 9533.6,
+ "text": "concept"
+ },
+ {
+ "id": 19279,
+ "start": 9533.6,
+ "end": 9533.72,
+ "text": "of"
+ },
+ {
+ "id": 19280,
+ "start": 9533.72,
+ "end": 9533.82,
+ "text": "an"
+ },
+ {
+ "id": 19281,
+ "start": 9533.82,
+ "end": 9534.6,
+ "text": "information"
+ },
+ {
+ "id": 19282,
+ "start": 9534.6,
+ "end": 9535.52,
+ "text": "fiduciary."
+ },
+ {
+ "id": 19283,
+ "start": 9535.52,
+ "end": 9535.76,
+ "text": "People"
+ },
+ {
+ "id": 19284,
+ "start": 9535.76,
+ "end": 9535.94,
+ "text": "think"
+ },
+ {
+ "id": 19285,
+ "start": 9535.94,
+ "end": 9536.02,
+ "text": "of"
+ },
+ {
+ "id": 19286,
+ "start": 9536.02,
+ "end": 9536.58,
+ "text": "fiduciaries"
+ },
+ {
+ "id": 19287,
+ "start": 9536.58,
+ "end": 9536.74,
+ "text": "is"
+ },
+ {
+ "id": 19288,
+ "start": 9536.74,
+ "end": 9537.28,
+ "text": "responsible"
+ },
+ {
+ "id": 19289,
+ "start": 9537.28,
+ "end": 9537.86,
+ "text": "primarily"
+ },
+ {
+ "id": 19290,
+ "start": 9537.86,
+ "end": 9538.4,
+ "text": "in"
+ },
+ {
+ "id": 19291,
+ "start": 9538.4,
+ "end": 9538.62,
+ "text": "the"
+ },
+ {
+ "id": 19292,
+ "start": 9538.62,
+ "end": 9539.48,
+ "text": "economic"
+ },
+ {
+ "id": 19293,
+ "start": 9539.48,
+ "end": 9539.7,
+ "text": "sense."
+ },
+ {
+ "id": 19294,
+ "start": 9539.7,
+ "end": 9539.84,
+ "text": "But"
+ },
+ {
+ "id": 19295,
+ "start": 9539.84,
+ "end": 9540,
+ "text": "this"
+ },
+ {
+ "id": 19296,
+ "start": 9540,
+ "end": 9540.16,
+ "text": "is"
+ },
+ {
+ "id": 19297,
+ "start": 9540.16,
+ "end": 9540.44,
+ "text": "really"
+ },
+ {
+ "id": 19298,
+ "start": 9540.44,
+ "end": 9540.72,
+ "text": "about"
+ },
+ {
+ "id": 19299,
+ "start": 9540.72,
+ "end": 9540.88,
+ "text": "a"
+ },
+ {
+ "id": 19300,
+ "start": 9540.88,
+ "end": 9541.3,
+ "text": "trust"
+ },
+ {
+ "id": 19301,
+ "start": 9541.3,
+ "end": 9542.06,
+ "text": "relationship."
+ },
+ {
+ "id": 19302,
+ "start": 9542.06,
+ "end": 9542.41,
+ "text": "Like"
+ },
+ {
+ "id": 19303,
+ "start": 9542.41,
+ "end": 9542.83,
+ "text": "doctors"
+ },
+ {
+ "id": 19304,
+ "start": 9542.83,
+ "end": 9542.95,
+ "text": "and"
+ },
+ {
+ "id": 19305,
+ "start": 9542.95,
+ "end": 9543.31,
+ "text": "lawyers"
+ },
+ {
+ "id": 19306,
+ "start": 9543.31,
+ "end": 9544.05,
+ "text": "tech"
+ },
+ {
+ "id": 19307,
+ "start": 9544.05,
+ "end": 9544.53,
+ "text": "companies"
+ },
+ {
+ "id": 19308,
+ "start": 9544.53,
+ "end": 9545.69,
+ "text": "should"
+ },
+ {
+ "id": 19309,
+ "start": 9545.69,
+ "end": 9546.05,
+ "text": "hold"
+ },
+ {
+ "id": 19310,
+ "start": 9546.05,
+ "end": 9546.31,
+ "text": "in"
+ },
+ {
+ "id": 19311,
+ "start": 9546.31,
+ "end": 9546.77,
+ "text": "trust."
+ },
+ {
+ "id": 19312,
+ "start": 9546.77,
+ "end": 9547.09,
+ "text": "Our"
+ },
+ {
+ "id": 19313,
+ "start": 9547.09,
+ "end": 9547.61,
+ "text": "personal"
+ },
+ {
+ "id": 19314,
+ "start": 9547.61,
+ "end": 9547.99,
+ "text": "data"
+ },
+ {
+ "id": 19315,
+ "start": 9547.99,
+ "end": 9548.45,
+ "text": "are"
+ },
+ {
+ "id": 19316,
+ "start": 9548.45,
+ "end": 9548.57,
+ "text": "you"
+ },
+ {
+ "id": 19317,
+ "start": 9548.57,
+ "end": 9548.89,
+ "text": "open"
+ },
+ {
+ "id": 19318,
+ "start": 9548.89,
+ "end": 9549.01,
+ "text": "to"
+ },
+ {
+ "id": 19319,
+ "start": 9549.01,
+ "end": 9549.15,
+ "text": "the"
+ },
+ {
+ "id": 19320,
+ "start": 9549.15,
+ "end": 9549.63,
+ "text": "idea"
+ },
+ {
+ "id": 19321,
+ "start": 9549.63,
+ "end": 9550.23,
+ "text": "of"
+ },
+ {
+ "id": 19322,
+ "start": 9550.23,
+ "end": 9551.23,
+ "text": "information"
+ },
+ {
+ "id": 19323,
+ "start": 9551.23,
+ "end": 9552.13,
+ "text": "fiduciary"
+ },
+ {
+ "id": 19324,
+ "start": 9552.13,
+ "end": 9552.33,
+ "text": "in"
+ },
+ {
+ "id": 19325,
+ "start": 9552.33,
+ "end": 9552.65,
+ "text": "shrine"
+ },
+ {
+ "id": 19326,
+ "start": 9552.65,
+ "end": 9552.79,
+ "text": "and"
+ },
+ {
+ "id": 19327,
+ "start": 9552.79,
+ "end": 9554.48,
+ "text": "statute?"
+ },
+ {
+ "id": 19328,
+ "start": 9554.48,
+ "end": 9555.46,
+ "text": "Senator,"
+ },
+ {
+ "id": 19329,
+ "start": 9555.46,
+ "end": 9555.52,
+ "text": "I"
+ },
+ {
+ "id": 19330,
+ "start": 9555.52,
+ "end": 9555.72,
+ "text": "think"
+ },
+ {
+ "id": 19331,
+ "start": 9555.72,
+ "end": 9555.86,
+ "text": "it's"
+ },
+ {
+ "id": 19332,
+ "start": 9555.86,
+ "end": 9556.22,
+ "text": "certainly"
+ },
+ {
+ "id": 19333,
+ "start": 9556.22,
+ "end": 9556.32,
+ "text": "an"
+ },
+ {
+ "id": 19334,
+ "start": 9556.32,
+ "end": 9556.78,
+ "text": "interesting"
+ },
+ {
+ "id": 19335,
+ "start": 9556.78,
+ "end": 9557.06,
+ "text": "idea."
+ },
+ {
+ "id": 19336,
+ "start": 9557.06,
+ "end": 9557.4,
+ "text": "And"
+ },
+ {
+ "id": 19337,
+ "start": 9557.4,
+ "end": 9557.7,
+ "text": "Jack"
+ },
+ {
+ "id": 19338,
+ "start": 9557.7,
+ "end": 9557.88,
+ "text": "is"
+ },
+ {
+ "id": 19339,
+ "start": 9557.88,
+ "end": 9558.14,
+ "text": "very"
+ },
+ {
+ "id": 19340,
+ "start": 9558.14,
+ "end": 9558.56,
+ "text": "thoughtful"
+ },
+ {
+ "id": 19341,
+ "start": 9558.56,
+ "end": 9558.68,
+ "text": "in"
+ },
+ {
+ "id": 19342,
+ "start": 9558.68,
+ "end": 9558.84,
+ "text": "this"
+ },
+ {
+ "id": 19343,
+ "start": 9558.84,
+ "end": 9559.14,
+ "text": "space"
+ },
+ {
+ "id": 19344,
+ "start": 9559.14,
+ "end": 9559.8,
+ "text": "so"
+ },
+ {
+ "id": 19345,
+ "start": 9559.8,
+ "end": 9560.06,
+ "text": "I"
+ },
+ {
+ "id": 19346,
+ "start": 9560.06,
+ "end": 9560.2,
+ "text": "do"
+ },
+ {
+ "id": 19347,
+ "start": 9560.2,
+ "end": 9560.42,
+ "text": "think"
+ },
+ {
+ "id": 19348,
+ "start": 9560.42,
+ "end": 9560.5,
+ "text": "it"
+ },
+ {
+ "id": 19349,
+ "start": 9560.5,
+ "end": 9560.84,
+ "text": "deserves"
+ },
+ {
+ "id": 19350,
+ "start": 9560.84,
+ "end": 9561.5,
+ "text": "consideration."
+ },
+ {
+ "id": 19351,
+ "start": 9561.5,
+ "end": 9562.06,
+ "text": "Thank"
+ },
+ {
+ "id": 19352,
+ "start": 9562.06,
+ "end": 9563.88,
+ "text": "you,"
+ },
+ {
+ "id": 19353,
+ "start": 9563.88,
+ "end": 9565.04,
+ "text": "her"
+ },
+ {
+ "id": 19354,
+ "start": 9565.04,
+ "end": 9567.18,
+ "text": "father."
+ },
+ {
+ "id": 19355,
+ "start": 9567.18,
+ "end": 9567.38,
+ "text": "Thank"
+ },
+ {
+ "id": 19356,
+ "start": 9567.38,
+ "end": 9567.5,
+ "text": "you,"
+ },
+ {
+ "id": 19357,
+ "start": 9567.5,
+ "end": 9567.84,
+ "text": "Mr"
+ },
+ {
+ "id": 19358,
+ "start": 9567.84,
+ "end": 9568.24,
+ "text": "Chairman."
+ },
+ {
+ "id": 19359,
+ "start": 9568.24,
+ "end": 9568.7,
+ "text": "Thank"
+ },
+ {
+ "id": 19360,
+ "start": 9568.7,
+ "end": 9568.88,
+ "text": "you,"
+ },
+ {
+ "id": 19361,
+ "start": 9568.88,
+ "end": 9569.18,
+ "text": "Mr"
+ },
+ {
+ "id": 19362,
+ "start": 9569.18,
+ "end": 9569.72,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 19363,
+ "start": 9569.72,
+ "end": 9569.88,
+ "text": "for"
+ },
+ {
+ "id": 19364,
+ "start": 9569.88,
+ "end": 9570.14,
+ "text": "being"
+ },
+ {
+ "id": 19365,
+ "start": 9570.14,
+ "end": 9570.34,
+ "text": "here"
+ },
+ {
+ "id": 19366,
+ "start": 9570.34,
+ "end": 9570.68,
+ "text": "today."
+ },
+ {
+ "id": 19367,
+ "start": 9570.68,
+ "end": 9570.76,
+ "text": "I"
+ },
+ {
+ "id": 19368,
+ "start": 9570.76,
+ "end": 9571.28,
+ "text": "appreciate"
+ },
+ {
+ "id": 19369,
+ "start": 9571.28,
+ "end": 9571.46,
+ "text": "your"
+ },
+ {
+ "id": 19370,
+ "start": 9571.46,
+ "end": 9572.2,
+ "text": "testimony."
+ },
+ {
+ "id": 19371,
+ "start": 9572.2,
+ "end": 9573.3,
+ "text": "The"
+ },
+ {
+ "id": 19372,
+ "start": 9573.3,
+ "end": 9573.66,
+ "text": "full"
+ },
+ {
+ "id": 19373,
+ "start": 9573.66,
+ "end": 9574,
+ "text": "scope"
+ },
+ {
+ "id": 19374,
+ "start": 9574,
+ "end": 9574.22,
+ "text": "of"
+ },
+ {
+ "id": 19375,
+ "start": 9574.22,
+ "end": 9574.58,
+ "text": "a"
+ },
+ {
+ "id": 19376,
+ "start": 9574.58,
+ "end": 9575.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 19377,
+ "start": 9575.16,
+ "end": 9575.6,
+ "text": "users"
+ },
+ {
+ "id": 19378,
+ "start": 9575.6,
+ "end": 9576.42,
+ "text": "activity"
+ },
+ {
+ "id": 19379,
+ "start": 9576.42,
+ "end": 9576.86,
+ "text": "can"
+ },
+ {
+ "id": 19380,
+ "start": 9576.86,
+ "end": 9578.28,
+ "text": "print"
+ },
+ {
+ "id": 19381,
+ "start": 9578.28,
+ "end": 9578.5,
+ "text": "very"
+ },
+ {
+ "id": 19382,
+ "start": 9578.5,
+ "end": 9579,
+ "text": "personal"
+ },
+ {
+ "id": 19383,
+ "start": 9579,
+ "end": 9579.68,
+ "text": "picture,"
+ },
+ {
+ "id": 19384,
+ "start": 9579.68,
+ "end": 9579.86,
+ "text": "I"
+ },
+ {
+ "id": 19385,
+ "start": 9579.86,
+ "end": 9580.37,
+ "text": "think."
+ },
+ {
+ "id": 19386,
+ "start": 9580.37,
+ "end": 9580.91,
+ "text": "And"
+ },
+ {
+ "id": 19387,
+ "start": 9580.91,
+ "end": 9581.53,
+ "text": "additionally,"
+ },
+ {
+ "id": 19388,
+ "start": 9581.53,
+ "end": 9581.95,
+ "text": "you"
+ },
+ {
+ "id": 19389,
+ "start": 9581.95,
+ "end": 9582.23,
+ "text": "have"
+ },
+ {
+ "id": 19390,
+ "start": 9582.23,
+ "end": 9582.47,
+ "text": "those"
+ },
+ {
+ "id": 19391,
+ "start": 9582.47,
+ "end": 9584.19,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 19392,
+ "start": 9584.19,
+ "end": 9585.17,
+ "text": "users"
+ },
+ {
+ "id": 19393,
+ "start": 9585.17,
+ "end": 9585.81,
+ "text": "that"
+ },
+ {
+ "id": 19394,
+ "start": 9585.81,
+ "end": 9585.99,
+ "text": "are"
+ },
+ {
+ "id": 19395,
+ "start": 9585.99,
+ "end": 9586.21,
+ "text": "out"
+ },
+ {
+ "id": 19396,
+ "start": 9586.21,
+ "end": 9586.43,
+ "text": "there"
+ },
+ {
+ "id": 19397,
+ "start": 9586.43,
+ "end": 9586.71,
+ "text": "every"
+ },
+ {
+ "id": 19398,
+ "start": 9586.71,
+ "end": 9587.07,
+ "text": "month."
+ },
+ {
+ "id": 19399,
+ "start": 9587.07,
+ "end": 9587.27,
+ "text": "And"
+ },
+ {
+ "id": 19400,
+ "start": 9587.27,
+ "end": 9587.55,
+ "text": "so"
+ },
+ {
+ "id": 19401,
+ "start": 9587.55,
+ "end": 9588.09,
+ "text": "we"
+ },
+ {
+ "id": 19402,
+ "start": 9588.09,
+ "end": 9588.29,
+ "text": "all"
+ },
+ {
+ "id": 19403,
+ "start": 9588.29,
+ "end": 9588.43,
+ "text": "know"
+ },
+ {
+ "id": 19404,
+ "start": 9588.43,
+ "end": 9588.71,
+ "text": "that's"
+ },
+ {
+ "id": 19405,
+ "start": 9588.71,
+ "end": 9589.27,
+ "text": "larger"
+ },
+ {
+ "id": 19406,
+ "start": 9589.27,
+ "end": 9589.43,
+ "text": "than"
+ },
+ {
+ "id": 19407,
+ "start": 9589.43,
+ "end": 9589.57,
+ "text": "the"
+ },
+ {
+ "id": 19408,
+ "start": 9589.57,
+ "end": 9590.15,
+ "text": "population"
+ },
+ {
+ "id": 19409,
+ "start": 9590.15,
+ "end": 9590.29,
+ "text": "in"
+ },
+ {
+ "id": 19410,
+ "start": 9590.29,
+ "end": 9590.49,
+ "text": "most"
+ },
+ {
+ "id": 19411,
+ "start": 9590.49,
+ "end": 9591.07,
+ "text": "countries."
+ },
+ {
+ "id": 19412,
+ "start": 9591.07,
+ "end": 9591.75,
+ "text": "So"
+ },
+ {
+ "id": 19413,
+ "start": 9591.75,
+ "end": 9592.01,
+ "text": "how"
+ },
+ {
+ "id": 19414,
+ "start": 9592.01,
+ "end": 9592.35,
+ "text": "many"
+ },
+ {
+ "id": 19415,
+ "start": 9592.35,
+ "end": 9593.05,
+ "text": "data"
+ },
+ {
+ "id": 19416,
+ "start": 9593.05,
+ "end": 9594.19,
+ "text": "categories"
+ },
+ {
+ "id": 19417,
+ "start": 9594.19,
+ "end": 9594.49,
+ "text": "do"
+ },
+ {
+ "id": 19418,
+ "start": 9594.49,
+ "end": 9594.67,
+ "text": "you"
+ },
+ {
+ "id": 19419,
+ "start": 9594.67,
+ "end": 9595.33,
+ "text": "store"
+ },
+ {
+ "id": 19420,
+ "start": 9595.33,
+ "end": 9595.65,
+ "text": "does"
+ },
+ {
+ "id": 19421,
+ "start": 9595.65,
+ "end": 9596.19,
+ "text": "Facebook"
+ },
+ {
+ "id": 19422,
+ "start": 9596.19,
+ "end": 9597.3,
+ "text": "store"
+ },
+ {
+ "id": 19423,
+ "start": 9597.3,
+ "end": 9597.92,
+ "text": "on"
+ },
+ {
+ "id": 19424,
+ "start": 9597.92,
+ "end": 9598.06,
+ "text": "the"
+ },
+ {
+ "id": 19425,
+ "start": 9598.06,
+ "end": 9598.94,
+ "text": "categories"
+ },
+ {
+ "id": 19426,
+ "start": 9598.94,
+ "end": 9599.12,
+ "text": "that"
+ },
+ {
+ "id": 19427,
+ "start": 9599.12,
+ "end": 9599.26,
+ "text": "you"
+ },
+ {
+ "id": 19428,
+ "start": 9599.26,
+ "end": 9600.52,
+ "text": "collect?"
+ },
+ {
+ "id": 19429,
+ "start": 9600.52,
+ "end": 9601.56,
+ "text": "Senator"
+ },
+ {
+ "id": 19430,
+ "start": 9601.56,
+ "end": 9602.62,
+ "text": "can"
+ },
+ {
+ "id": 19431,
+ "start": 9602.62,
+ "end": 9602.74,
+ "text": "you"
+ },
+ {
+ "id": 19432,
+ "start": 9602.74,
+ "end": 9603.18,
+ "text": "clarify"
+ },
+ {
+ "id": 19433,
+ "start": 9603.18,
+ "end": 9603.38,
+ "text": "what"
+ },
+ {
+ "id": 19434,
+ "start": 9603.38,
+ "end": 9603.5,
+ "text": "you"
+ },
+ {
+ "id": 19435,
+ "start": 9603.5,
+ "end": 9603.72,
+ "text": "mean"
+ },
+ {
+ "id": 19436,
+ "start": 9603.72,
+ "end": 9603.84,
+ "text": "by?"
+ },
+ {
+ "id": 19437,
+ "start": 9603.84,
+ "end": 9604.82,
+ "text": "There"
+ },
+ {
+ "id": 19438,
+ "start": 9604.82,
+ "end": 9604.94,
+ "text": "are"
+ },
+ {
+ "id": 19439,
+ "start": 9604.94,
+ "end": 9605.12,
+ "text": "some"
+ },
+ {
+ "id": 19440,
+ "start": 9605.12,
+ "end": 9605.48,
+ "text": "past"
+ },
+ {
+ "id": 19441,
+ "start": 9605.48,
+ "end": 9605.9,
+ "text": "reports"
+ },
+ {
+ "id": 19442,
+ "start": 9605.9,
+ "end": 9606.06,
+ "text": "that"
+ },
+ {
+ "id": 19443,
+ "start": 9606.06,
+ "end": 9606.22,
+ "text": "have"
+ },
+ {
+ "id": 19444,
+ "start": 9606.22,
+ "end": 9606.38,
+ "text": "been"
+ },
+ {
+ "id": 19445,
+ "start": 9606.38,
+ "end": 9606.52,
+ "text": "out"
+ },
+ {
+ "id": 19446,
+ "start": 9606.52,
+ "end": 9606.76,
+ "text": "there."
+ },
+ {
+ "id": 19447,
+ "start": 9606.76,
+ "end": 9606.98,
+ "text": "That"
+ },
+ {
+ "id": 19448,
+ "start": 9606.98,
+ "end": 9607.7,
+ "text": "indicate"
+ },
+ {
+ "id": 19449,
+ "start": 9607.7,
+ "end": 9608.32,
+ "text": "that"
+ },
+ {
+ "id": 19450,
+ "start": 9608.32,
+ "end": 9609.32,
+ "text": "Facebook"
+ },
+ {
+ "id": 19451,
+ "start": 9609.32,
+ "end": 9609.82,
+ "text": "collects"
+ },
+ {
+ "id": 19452,
+ "start": 9609.82,
+ "end": 9610.26,
+ "text": "about"
+ },
+ {
+ "id": 19453,
+ "start": 9610.26,
+ "end": 9611.16,
+ "text": "96"
+ },
+ {
+ "id": 19454,
+ "start": 9611.16,
+ "end": 9611.96,
+ "text": "data"
+ },
+ {
+ "id": 19455,
+ "start": 9611.96,
+ "end": 9612.86,
+ "text": "categories"
+ },
+ {
+ "id": 19456,
+ "start": 9612.86,
+ "end": 9613.44,
+ "text": "for"
+ },
+ {
+ "id": 19457,
+ "start": 9613.44,
+ "end": 9613.68,
+ "text": "those"
+ },
+ {
+ "id": 19458,
+ "start": 9613.68,
+ "end": 9615.51,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 19459,
+ "start": 9615.51,
+ "end": 9616.47,
+ "text": "users"
+ },
+ {
+ "id": 19460,
+ "start": 9616.47,
+ "end": 9616.79,
+ "text": "that's"
+ },
+ {
+ "id": 19461,
+ "start": 9616.79,
+ "end": 9618.75,
+ "text": "192,000,000,000"
+ },
+ {
+ "id": 19462,
+ "start": 9618.75,
+ "end": 9619.13,
+ "text": "data"
+ },
+ {
+ "id": 19463,
+ "start": 9619.13,
+ "end": 9619.47,
+ "text": "points"
+ },
+ {
+ "id": 19464,
+ "start": 9619.47,
+ "end": 9619.69,
+ "text": "that"
+ },
+ {
+ "id": 19465,
+ "start": 9619.69,
+ "end": 9619.85,
+ "text": "are"
+ },
+ {
+ "id": 19466,
+ "start": 9619.85,
+ "end": 9620.15,
+ "text": "being"
+ },
+ {
+ "id": 19467,
+ "start": 9620.15,
+ "end": 9620.81,
+ "text": "generated,"
+ },
+ {
+ "id": 19468,
+ "start": 9620.81,
+ "end": 9620.95,
+ "text": "I"
+ },
+ {
+ "id": 19469,
+ "start": 9620.95,
+ "end": 9621.15,
+ "text": "think"
+ },
+ {
+ "id": 19470,
+ "start": 9621.15,
+ "end": 9621.29,
+ "text": "at"
+ },
+ {
+ "id": 19471,
+ "start": 9621.29,
+ "end": 9621.63,
+ "text": "any"
+ },
+ {
+ "id": 19472,
+ "start": 9621.63,
+ "end": 9622.07,
+ "text": "time"
+ },
+ {
+ "id": 19473,
+ "start": 9622.07,
+ "end": 9623.07,
+ "text": "from"
+ },
+ {
+ "id": 19474,
+ "start": 9623.07,
+ "end": 9623.73,
+ "text": "consumers"
+ },
+ {
+ "id": 19475,
+ "start": 9623.73,
+ "end": 9624.47,
+ "text": "globally."
+ },
+ {
+ "id": 19476,
+ "start": 9624.47,
+ "end": 9625.01,
+ "text": "So"
+ },
+ {
+ "id": 19477,
+ "start": 9625.01,
+ "end": 9626.09,
+ "text": "how"
+ },
+ {
+ "id": 19478,
+ "start": 9626.09,
+ "end": 9626.47,
+ "text": "many"
+ },
+ {
+ "id": 19479,
+ "start": 9626.47,
+ "end": 9627.31,
+ "text": "does"
+ },
+ {
+ "id": 19480,
+ "start": 9627.31,
+ "end": 9627.95,
+ "text": "Facebook"
+ },
+ {
+ "id": 19481,
+ "start": 9627.95,
+ "end": 9628.35,
+ "text": "store"
+ },
+ {
+ "id": 19482,
+ "start": 9628.35,
+ "end": 9628.53,
+ "text": "out"
+ },
+ {
+ "id": 19483,
+ "start": 9628.53,
+ "end": 9628.63,
+ "text": "of"
+ },
+ {
+ "id": 19484,
+ "start": 9628.63,
+ "end": 9628.79,
+ "text": "that?"
+ },
+ {
+ "id": 19485,
+ "start": 9628.79,
+ "end": 9628.89,
+ "text": "Do"
+ },
+ {
+ "id": 19486,
+ "start": 9628.89,
+ "end": 9629.03,
+ "text": "you"
+ },
+ {
+ "id": 19487,
+ "start": 9629.03,
+ "end": 9629.31,
+ "text": "store"
+ },
+ {
+ "id": 19488,
+ "start": 9629.31,
+ "end": 9630.8,
+ "text": "any"
+ },
+ {
+ "id": 19489,
+ "start": 9630.8,
+ "end": 9631.76,
+ "text": "Senator"
+ },
+ {
+ "id": 19490,
+ "start": 9631.76,
+ "end": 9632.08,
+ "text": "I'm"
+ },
+ {
+ "id": 19491,
+ "start": 9632.08,
+ "end": 9632.24,
+ "text": "not"
+ },
+ {
+ "id": 19492,
+ "start": 9632.24,
+ "end": 9632.54,
+ "text": "actually"
+ },
+ {
+ "id": 19493,
+ "start": 9632.54,
+ "end": 9632.78,
+ "text": "sure"
+ },
+ {
+ "id": 19494,
+ "start": 9632.78,
+ "end": 9633,
+ "text": "what"
+ },
+ {
+ "id": 19495,
+ "start": 9633,
+ "end": 9633.26,
+ "text": "that"
+ },
+ {
+ "id": 19496,
+ "start": 9633.26,
+ "end": 9633.48,
+ "text": "is"
+ },
+ {
+ "id": 19497,
+ "start": 9633.48,
+ "end": 9634.02,
+ "text": "referring"
+ },
+ {
+ "id": 19498,
+ "start": 9634.02,
+ "end": 9636.34,
+ "text": "to"
+ },
+ {
+ "id": 19499,
+ "start": 9636.34,
+ "end": 9638.16,
+ "text": "on"
+ },
+ {
+ "id": 19500,
+ "start": 9638.16,
+ "end": 9638.64,
+ "text": "the"
+ },
+ {
+ "id": 19501,
+ "start": 9638.64,
+ "end": 9639.06,
+ "text": "points"
+ },
+ {
+ "id": 19502,
+ "start": 9639.06,
+ "end": 9639.32,
+ "text": "that"
+ },
+ {
+ "id": 19503,
+ "start": 9639.32,
+ "end": 9639.44,
+ "text": "you"
+ },
+ {
+ "id": 19504,
+ "start": 9639.44,
+ "end": 9640.66,
+ "text": "collect"
+ },
+ {
+ "id": 19505,
+ "start": 9640.66,
+ "end": 9642.02,
+ "text": "information."
+ },
+ {
+ "id": 19506,
+ "start": 9642.02,
+ "end": 9643,
+ "text": "If"
+ },
+ {
+ "id": 19507,
+ "start": 9643,
+ "end": 9643.1,
+ "text": "we"
+ },
+ {
+ "id": 19508,
+ "start": 9643.1,
+ "end": 9643.38,
+ "text": "call"
+ },
+ {
+ "id": 19509,
+ "start": 9643.38,
+ "end": 9644.02,
+ "text": "those"
+ },
+ {
+ "id": 19510,
+ "start": 9644.02,
+ "end": 9645.02,
+ "text": "categories,"
+ },
+ {
+ "id": 19511,
+ "start": 9645.02,
+ "end": 9645.9,
+ "text": "how"
+ },
+ {
+ "id": 19512,
+ "start": 9645.9,
+ "end": 9646.14,
+ "text": "many"
+ },
+ {
+ "id": 19513,
+ "start": 9646.14,
+ "end": 9646.3,
+ "text": "do"
+ },
+ {
+ "id": 19514,
+ "start": 9646.3,
+ "end": 9646.42,
+ "text": "you"
+ },
+ {
+ "id": 19515,
+ "start": 9646.42,
+ "end": 9647.12,
+ "text": "store"
+ },
+ {
+ "id": 19516,
+ "start": 9647.12,
+ "end": 9647.72,
+ "text": "of"
+ },
+ {
+ "id": 19517,
+ "start": 9647.72,
+ "end": 9648.38,
+ "text": "information"
+ },
+ {
+ "id": 19518,
+ "start": 9648.38,
+ "end": 9648.58,
+ "text": "that"
+ },
+ {
+ "id": 19519,
+ "start": 9648.58,
+ "end": 9648.74,
+ "text": "you"
+ },
+ {
+ "id": 19520,
+ "start": 9648.74,
+ "end": 9648.92,
+ "text": "are"
+ },
+ {
+ "id": 19521,
+ "start": 9648.92,
+ "end": 9653.3,
+ "text": "collecting."
+ },
+ {
+ "id": 19522,
+ "start": 9653.3,
+ "end": 9654.46,
+ "text": "So"
+ },
+ {
+ "id": 19523,
+ "start": 9654.46,
+ "end": 9654.84,
+ "text": "the"
+ },
+ {
+ "id": 19524,
+ "start": 9654.84,
+ "end": 9655.06,
+ "text": "way"
+ },
+ {
+ "id": 19525,
+ "start": 9655.06,
+ "end": 9655.26,
+ "text": "I"
+ },
+ {
+ "id": 19526,
+ "start": 9655.26,
+ "end": 9655.48,
+ "text": "think"
+ },
+ {
+ "id": 19527,
+ "start": 9655.48,
+ "end": 9655.7,
+ "text": "about"
+ },
+ {
+ "id": 19528,
+ "start": 9655.7,
+ "end": 9655.94,
+ "text": "this"
+ },
+ {
+ "id": 19529,
+ "start": 9655.94,
+ "end": 9656.7,
+ "text": "is"
+ },
+ {
+ "id": 19530,
+ "start": 9656.7,
+ "end": 9657,
+ "text": "there"
+ },
+ {
+ "id": 19531,
+ "start": 9657,
+ "end": 9657.14,
+ "text": "are"
+ },
+ {
+ "id": 19532,
+ "start": 9657.14,
+ "end": 9657.36,
+ "text": "two"
+ },
+ {
+ "id": 19533,
+ "start": 9657.36,
+ "end": 9657.72,
+ "text": "broad"
+ },
+ {
+ "id": 19534,
+ "start": 9657.72,
+ "end": 9658.84,
+ "text": "categories."
+ },
+ {
+ "id": 19535,
+ "start": 9658.84,
+ "end": 9659.82,
+ "text": "This"
+ },
+ {
+ "id": 19536,
+ "start": 9659.82,
+ "end": 9660.04,
+ "text": "probably"
+ },
+ {
+ "id": 19537,
+ "start": 9660.04,
+ "end": 9660.22,
+ "text": "doesn't"
+ },
+ {
+ "id": 19538,
+ "start": 9660.22,
+ "end": 9660.4,
+ "text": "line"
+ },
+ {
+ "id": 19539,
+ "start": 9660.4,
+ "end": 9660.54,
+ "text": "up"
+ },
+ {
+ "id": 19540,
+ "start": 9660.54,
+ "end": 9660.72,
+ "text": "with"
+ },
+ {
+ "id": 19541,
+ "start": 9660.72,
+ "end": 9661.1,
+ "text": "whatever"
+ },
+ {
+ "id": 19542,
+ "start": 9661.1,
+ "end": 9661.54,
+ "text": "the"
+ },
+ {
+ "id": 19543,
+ "start": 9661.54,
+ "end": 9661.94,
+ "text": "specific"
+ },
+ {
+ "id": 19544,
+ "start": 9661.94,
+ "end": 9662.26,
+ "text": "report"
+ },
+ {
+ "id": 19545,
+ "start": 9662.26,
+ "end": 9662.4,
+ "text": "that"
+ },
+ {
+ "id": 19546,
+ "start": 9662.4,
+ "end": 9662.52,
+ "text": "you"
+ },
+ {
+ "id": 19547,
+ "start": 9662.52,
+ "end": 9662.66,
+ "text": "are"
+ },
+ {
+ "id": 19548,
+ "start": 9662.66,
+ "end": 9662.88,
+ "text": "seeing"
+ },
+ {
+ "id": 19549,
+ "start": 9662.88,
+ "end": 9663.08,
+ "text": "is"
+ },
+ {
+ "id": 19550,
+ "start": 9663.08,
+ "end": 9663.3,
+ "text": "and"
+ },
+ {
+ "id": 19551,
+ "start": 9663.3,
+ "end": 9663.72,
+ "text": "I"
+ },
+ {
+ "id": 19552,
+ "start": 9663.72,
+ "end": 9663.86,
+ "text": "can"
+ },
+ {
+ "id": 19553,
+ "start": 9663.86,
+ "end": 9663.98,
+ "text": "make"
+ },
+ {
+ "id": 19554,
+ "start": 9663.98,
+ "end": 9664.16,
+ "text": "sure"
+ },
+ {
+ "id": 19555,
+ "start": 9664.16,
+ "end": 9664.38,
+ "text": "that"
+ },
+ {
+ "id": 19556,
+ "start": 9664.38,
+ "end": 9664.58,
+ "text": "we"
+ },
+ {
+ "id": 19557,
+ "start": 9664.58,
+ "end": 9664.84,
+ "text": "follow"
+ },
+ {
+ "id": 19558,
+ "start": 9664.84,
+ "end": 9664.92,
+ "text": "up"
+ },
+ {
+ "id": 19559,
+ "start": 9664.92,
+ "end": 9665.1,
+ "text": "with"
+ },
+ {
+ "id": 19560,
+ "start": 9665.1,
+ "end": 9665.68,
+ "text": "afterwards"
+ },
+ {
+ "id": 19561,
+ "start": 9665.68,
+ "end": 9665.86,
+ "text": "to"
+ },
+ {
+ "id": 19562,
+ "start": 9665.86,
+ "end": 9666.18,
+ "text": "get"
+ },
+ {
+ "id": 19563,
+ "start": 9666.18,
+ "end": 9666.28,
+ "text": "you"
+ },
+ {
+ "id": 19564,
+ "start": 9666.28,
+ "end": 9666.42,
+ "text": "the"
+ },
+ {
+ "id": 19565,
+ "start": 9666.42,
+ "end": 9666.84,
+ "text": "information"
+ },
+ {
+ "id": 19566,
+ "start": 9666.84,
+ "end": 9666.98,
+ "text": "you"
+ },
+ {
+ "id": 19567,
+ "start": 9666.98,
+ "end": 9667.16,
+ "text": "need"
+ },
+ {
+ "id": 19568,
+ "start": 9667.16,
+ "end": 9667.26,
+ "text": "on"
+ },
+ {
+ "id": 19569,
+ "start": 9667.26,
+ "end": 9667.42,
+ "text": "that."
+ },
+ {
+ "id": 19570,
+ "start": 9667.42,
+ "end": 9668.08,
+ "text": "The"
+ },
+ {
+ "id": 19571,
+ "start": 9668.08,
+ "end": 9668.24,
+ "text": "two"
+ },
+ {
+ "id": 19572,
+ "start": 9668.24,
+ "end": 9668.58,
+ "text": "broad"
+ },
+ {
+ "id": 19573,
+ "start": 9668.58,
+ "end": 9669.12,
+ "text": "categories"
+ },
+ {
+ "id": 19574,
+ "start": 9669.12,
+ "end": 9669.32,
+ "text": "that"
+ },
+ {
+ "id": 19575,
+ "start": 9669.32,
+ "end": 9669.38,
+ "text": "I"
+ },
+ {
+ "id": 19576,
+ "start": 9669.38,
+ "end": 9669.6,
+ "text": "think"
+ },
+ {
+ "id": 19577,
+ "start": 9669.6,
+ "end": 9669.86,
+ "text": "about"
+ },
+ {
+ "id": 19578,
+ "start": 9669.86,
+ "end": 9670.58,
+ "text": "our"
+ },
+ {
+ "id": 19579,
+ "start": 9670.58,
+ "end": 9671.4,
+ "text": "content"
+ },
+ {
+ "id": 19580,
+ "start": 9671.4,
+ "end": 9671.8,
+ "text": "that"
+ },
+ {
+ "id": 19581,
+ "start": 9671.8,
+ "end": 9671.88,
+ "text": "a"
+ },
+ {
+ "id": 19582,
+ "start": 9671.88,
+ "end": 9672.2,
+ "text": "person"
+ },
+ {
+ "id": 19583,
+ "start": 9672.2,
+ "end": 9672.36,
+ "text": "has"
+ },
+ {
+ "id": 19584,
+ "start": 9672.36,
+ "end": 9672.72,
+ "text": "chosen"
+ },
+ {
+ "id": 19585,
+ "start": 9672.72,
+ "end": 9672.82,
+ "text": "to"
+ },
+ {
+ "id": 19586,
+ "start": 9672.82,
+ "end": 9673.12,
+ "text": "share"
+ },
+ {
+ "id": 19587,
+ "start": 9673.12,
+ "end": 9673.96,
+ "text": "and"
+ },
+ {
+ "id": 19588,
+ "start": 9673.96,
+ "end": 9674.12,
+ "text": "that"
+ },
+ {
+ "id": 19589,
+ "start": 9674.12,
+ "end": 9674.26,
+ "text": "they"
+ },
+ {
+ "id": 19590,
+ "start": 9674.26,
+ "end": 9674.4,
+ "text": "have"
+ },
+ {
+ "id": 19591,
+ "start": 9674.4,
+ "end": 9674.74,
+ "text": "complete"
+ },
+ {
+ "id": 19592,
+ "start": 9674.74,
+ "end": 9675.04,
+ "text": "control"
+ },
+ {
+ "id": 19593,
+ "start": 9675.04,
+ "end": 9675.22,
+ "text": "over."
+ },
+ {
+ "id": 19594,
+ "start": 9675.22,
+ "end": 9675.46,
+ "text": "They"
+ },
+ {
+ "id": 19595,
+ "start": 9675.46,
+ "end": 9675.58,
+ "text": "get"
+ },
+ {
+ "id": 19596,
+ "start": 9675.58,
+ "end": 9675.66,
+ "text": "to"
+ },
+ {
+ "id": 19597,
+ "start": 9675.66,
+ "end": 9675.96,
+ "text": "control"
+ },
+ {
+ "id": 19598,
+ "start": 9675.96,
+ "end": 9676.1,
+ "text": "when"
+ },
+ {
+ "id": 19599,
+ "start": 9676.1,
+ "end": 9676.24,
+ "text": "they"
+ },
+ {
+ "id": 19600,
+ "start": 9676.24,
+ "end": 9676.36,
+ "text": "put"
+ },
+ {
+ "id": 19601,
+ "start": 9676.36,
+ "end": 9676.46,
+ "text": "it"
+ },
+ {
+ "id": 19602,
+ "start": 9676.46,
+ "end": 9676.64,
+ "text": "into"
+ },
+ {
+ "id": 19603,
+ "start": 9676.64,
+ "end": 9676.76,
+ "text": "the"
+ },
+ {
+ "id": 19604,
+ "start": 9676.76,
+ "end": 9677.08,
+ "text": "service"
+ },
+ {
+ "id": 19605,
+ "start": 9677.08,
+ "end": 9677.26,
+ "text": "when"
+ },
+ {
+ "id": 19606,
+ "start": 9677.26,
+ "end": 9677.44,
+ "text": "they"
+ },
+ {
+ "id": 19607,
+ "start": 9677.44,
+ "end": 9677.6,
+ "text": "take"
+ },
+ {
+ "id": 19608,
+ "start": 9677.6,
+ "end": 9677.7,
+ "text": "it"
+ },
+ {
+ "id": 19609,
+ "start": 9677.7,
+ "end": 9678.34,
+ "text": "down,"
+ },
+ {
+ "id": 19610,
+ "start": 9678.34,
+ "end": 9678.74,
+ "text": "who"
+ },
+ {
+ "id": 19611,
+ "start": 9678.74,
+ "end": 9679.12,
+ "text": "sees"
+ },
+ {
+ "id": 19612,
+ "start": 9679.12,
+ "end": 9679.26,
+ "text": "it"
+ },
+ {
+ "id": 19613,
+ "start": 9679.26,
+ "end": 9679.94,
+ "text": "and"
+ },
+ {
+ "id": 19614,
+ "start": 9679.94,
+ "end": 9680.08,
+ "text": "then"
+ },
+ {
+ "id": 19615,
+ "start": 9680.08,
+ "end": 9680.18,
+ "text": "the"
+ },
+ {
+ "id": 19616,
+ "start": 9680.18,
+ "end": 9680.36,
+ "text": "other"
+ },
+ {
+ "id": 19617,
+ "start": 9680.36,
+ "end": 9680.84,
+ "text": "category"
+ },
+ {
+ "id": 19618,
+ "start": 9680.84,
+ "end": 9681.28,
+ "text": "are"
+ },
+ {
+ "id": 19619,
+ "start": 9681.28,
+ "end": 9682.46,
+ "text": "data"
+ },
+ {
+ "id": 19620,
+ "start": 9682.46,
+ "end": 9682.68,
+ "text": "that"
+ },
+ {
+ "id": 19621,
+ "start": 9682.68,
+ "end": 9682.84,
+ "text": "are"
+ },
+ {
+ "id": 19622,
+ "start": 9682.84,
+ "end": 9683.54,
+ "text": "connected"
+ },
+ {
+ "id": 19623,
+ "start": 9683.54,
+ "end": 9683.96,
+ "text": "to"
+ },
+ {
+ "id": 19624,
+ "start": 9683.96,
+ "end": 9685,
+ "text": "making"
+ },
+ {
+ "id": 19625,
+ "start": 9685,
+ "end": 9685.3,
+ "text": "the"
+ },
+ {
+ "id": 19626,
+ "start": 9685.3,
+ "end": 9685.58,
+ "text": "ads"
+ },
+ {
+ "id": 19627,
+ "start": 9685.58,
+ "end": 9686.06,
+ "text": "relevant."
+ },
+ {
+ "id": 19628,
+ "start": 9686.06,
+ "end": 9686.56,
+ "text": "You"
+ },
+ {
+ "id": 19629,
+ "start": 9686.56,
+ "end": 9686.7,
+ "text": "have"
+ },
+ {
+ "id": 19630,
+ "start": 9686.7,
+ "end": 9687.02,
+ "text": "complete"
+ },
+ {
+ "id": 19631,
+ "start": 9687.02,
+ "end": 9687.34,
+ "text": "control"
+ },
+ {
+ "id": 19632,
+ "start": 9687.34,
+ "end": 9687.54,
+ "text": "over"
+ },
+ {
+ "id": 19633,
+ "start": 9687.54,
+ "end": 9688.5,
+ "text": "both"
+ },
+ {
+ "id": 19634,
+ "start": 9688.5,
+ "end": 9688.84,
+ "text": "of"
+ },
+ {
+ "id": 19635,
+ "start": 9688.84,
+ "end": 9688.94,
+ "text": "the"
+ },
+ {
+ "id": 19636,
+ "start": 9688.94,
+ "end": 9689.22,
+ "text": "data"
+ },
+ {
+ "id": 19637,
+ "start": 9689.22,
+ "end": 9689.64,
+ "text": "related"
+ },
+ {
+ "id": 19638,
+ "start": 9689.64,
+ "end": 9689.72,
+ "text": "to"
+ },
+ {
+ "id": 19639,
+ "start": 9689.72,
+ "end": 9689.94,
+ "text": "a"
+ },
+ {
+ "id": 19640,
+ "start": 9689.94,
+ "end": 9690.3,
+ "text": "you"
+ },
+ {
+ "id": 19641,
+ "start": 9690.3,
+ "end": 9690.44,
+ "text": "can"
+ },
+ {
+ "id": 19642,
+ "start": 9690.44,
+ "end": 9690.68,
+ "text": "choose"
+ },
+ {
+ "id": 19643,
+ "start": 9690.68,
+ "end": 9690.88,
+ "text": "not"
+ },
+ {
+ "id": 19644,
+ "start": 9690.88,
+ "end": 9691.04,
+ "text": "to"
+ },
+ {
+ "id": 19645,
+ "start": 9691.04,
+ "end": 9691.38,
+ "text": "share"
+ },
+ {
+ "id": 19646,
+ "start": 9691.38,
+ "end": 9691.56,
+ "text": "any"
+ },
+ {
+ "id": 19647,
+ "start": 9691.56,
+ "end": 9691.98,
+ "text": "content"
+ },
+ {
+ "id": 19648,
+ "start": 9691.98,
+ "end": 9692.24,
+ "text": "or"
+ },
+ {
+ "id": 19649,
+ "start": 9692.24,
+ "end": 9692.9,
+ "text": "control."
+ },
+ {
+ "id": 19650,
+ "start": 9692.9,
+ "end": 9693.26,
+ "text": "Exactly"
+ },
+ {
+ "id": 19651,
+ "start": 9693.26,
+ "end": 9693.46,
+ "text": "who"
+ },
+ {
+ "id": 19652,
+ "start": 9693.46,
+ "end": 9693.7,
+ "text": "sees"
+ },
+ {
+ "id": 19653,
+ "start": 9693.7,
+ "end": 9693.8,
+ "text": "it"
+ },
+ {
+ "id": 19654,
+ "start": 9693.8,
+ "end": 9693.94,
+ "text": "or"
+ },
+ {
+ "id": 19655,
+ "start": 9693.94,
+ "end": 9694.14,
+ "text": "take"
+ },
+ {
+ "id": 19656,
+ "start": 9694.14,
+ "end": 9694.32,
+ "text": "down"
+ },
+ {
+ "id": 19657,
+ "start": 9694.32,
+ "end": 9694.46,
+ "text": "the"
+ },
+ {
+ "id": 19658,
+ "start": 9694.46,
+ "end": 9694.78,
+ "text": "content"
+ },
+ {
+ "id": 19659,
+ "start": 9694.78,
+ "end": 9694.9,
+ "text": "in"
+ },
+ {
+ "id": 19660,
+ "start": 9694.9,
+ "end": 9695,
+ "text": "the"
+ },
+ {
+ "id": 19661,
+ "start": 9695,
+ "end": 9695.28,
+ "text": "former"
+ },
+ {
+ "id": 19662,
+ "start": 9695.28,
+ "end": 9695.72,
+ "text": "category"
+ },
+ {
+ "id": 19663,
+ "start": 9695.72,
+ "end": 9695.92,
+ "text": "and"
+ },
+ {
+ "id": 19664,
+ "start": 9695.92,
+ "end": 9696.48,
+ "text": "does"
+ },
+ {
+ "id": 19665,
+ "start": 9696.48,
+ "end": 9697,
+ "text": "Facebook"
+ },
+ {
+ "id": 19666,
+ "start": 9697,
+ "end": 9697.56,
+ "text": "store"
+ },
+ {
+ "id": 19667,
+ "start": 9697.56,
+ "end": 9697.74,
+ "text": "an"
+ },
+ {
+ "id": 19668,
+ "start": 9697.74,
+ "end": 9698.66,
+ "text": "event?"
+ },
+ {
+ "id": 19669,
+ "start": 9698.66,
+ "end": 9700.78,
+ "text": "Yes,"
+ },
+ {
+ "id": 19670,
+ "start": 9700.78,
+ "end": 9701.82,
+ "text": "how"
+ },
+ {
+ "id": 19671,
+ "start": 9701.82,
+ "end": 9702.24,
+ "text": "much"
+ },
+ {
+ "id": 19672,
+ "start": 9702.24,
+ "end": 9702.48,
+ "text": "do"
+ },
+ {
+ "id": 19673,
+ "start": 9702.48,
+ "end": 9702.62,
+ "text": "you"
+ },
+ {
+ "id": 19674,
+ "start": 9702.62,
+ "end": 9703.04,
+ "text": "store"
+ },
+ {
+ "id": 19675,
+ "start": 9703.04,
+ "end": 9703.22,
+ "text": "of"
+ },
+ {
+ "id": 19676,
+ "start": 9703.22,
+ "end": 9703.54,
+ "text": "that?"
+ },
+ {
+ "id": 19677,
+ "start": 9703.54,
+ "end": 9703.92,
+ "text": "All"
+ },
+ {
+ "id": 19678,
+ "start": 9703.92,
+ "end": 9704,
+ "text": "of"
+ },
+ {
+ "id": 19679,
+ "start": 9704,
+ "end": 9704.22,
+ "text": "it,"
+ },
+ {
+ "id": 19680,
+ "start": 9704.22,
+ "end": 9704.64,
+ "text": "all"
+ },
+ {
+ "id": 19681,
+ "start": 9704.64,
+ "end": 9704.76,
+ "text": "of"
+ },
+ {
+ "id": 19682,
+ "start": 9704.76,
+ "end": 9704.92,
+ "text": "it."
+ },
+ {
+ "id": 19683,
+ "start": 9704.92,
+ "end": 9705.4,
+ "text": "Everything"
+ },
+ {
+ "id": 19684,
+ "start": 9705.4,
+ "end": 9705.62,
+ "text": "we"
+ },
+ {
+ "id": 19685,
+ "start": 9705.62,
+ "end": 9705.88,
+ "text": "click"
+ },
+ {
+ "id": 19686,
+ "start": 9705.88,
+ "end": 9706.1,
+ "text": "on."
+ },
+ {
+ "id": 19687,
+ "start": 9706.1,
+ "end": 9706.42,
+ "text": "Is"
+ },
+ {
+ "id": 19688,
+ "start": 9706.42,
+ "end": 9706.6,
+ "text": "that"
+ },
+ {
+ "id": 19689,
+ "start": 9706.6,
+ "end": 9706.74,
+ "text": "in"
+ },
+ {
+ "id": 19690,
+ "start": 9706.74,
+ "end": 9707.22,
+ "text": "storage"
+ },
+ {
+ "id": 19691,
+ "start": 9707.22,
+ "end": 9708.8,
+ "text": "somewhere,"
+ },
+ {
+ "id": 19692,
+ "start": 9708.8,
+ "end": 9709.82,
+ "text": "Senator,"
+ },
+ {
+ "id": 19693,
+ "start": 9709.82,
+ "end": 9710.48,
+ "text": "we"
+ },
+ {
+ "id": 19694,
+ "start": 9710.48,
+ "end": 9711.58,
+ "text": "store"
+ },
+ {
+ "id": 19695,
+ "start": 9711.58,
+ "end": 9712.56,
+ "text": "data"
+ },
+ {
+ "id": 19696,
+ "start": 9712.56,
+ "end": 9712.9,
+ "text": "about"
+ },
+ {
+ "id": 19697,
+ "start": 9712.9,
+ "end": 9713.1,
+ "text": "what"
+ },
+ {
+ "id": 19698,
+ "start": 9713.1,
+ "end": 9713.38,
+ "text": "people"
+ },
+ {
+ "id": 19699,
+ "start": 9713.38,
+ "end": 9714.1,
+ "text": "Share"
+ },
+ {
+ "id": 19700,
+ "start": 9714.1,
+ "end": 9714.22,
+ "text": "On"
+ },
+ {
+ "id": 19701,
+ "start": 9714.22,
+ "end": 9714.34,
+ "text": "the"
+ },
+ {
+ "id": 19702,
+ "start": 9714.34,
+ "end": 9714.72,
+ "text": "service"
+ },
+ {
+ "id": 19703,
+ "start": 9714.72,
+ "end": 9715.72,
+ "text": "and"
+ },
+ {
+ "id": 19704,
+ "start": 9715.72,
+ "end": 9716.36,
+ "text": "information"
+ },
+ {
+ "id": 19705,
+ "start": 9716.36,
+ "end": 9716.6,
+ "text": "that's"
+ },
+ {
+ "id": 19706,
+ "start": 9716.6,
+ "end": 9717.08,
+ "text": "required"
+ },
+ {
+ "id": 19707,
+ "start": 9717.08,
+ "end": 9717.22,
+ "text": "to"
+ },
+ {
+ "id": 19708,
+ "start": 9717.22,
+ "end": 9717.38,
+ "text": "do"
+ },
+ {
+ "id": 19709,
+ "start": 9717.38,
+ "end": 9718,
+ "text": "ranking"
+ },
+ {
+ "id": 19710,
+ "start": 9718,
+ "end": 9718.3,
+ "text": "better"
+ },
+ {
+ "id": 19711,
+ "start": 9718.3,
+ "end": 9718.46,
+ "text": "to"
+ },
+ {
+ "id": 19712,
+ "start": 9718.46,
+ "end": 9719.5,
+ "text": "show"
+ },
+ {
+ "id": 19713,
+ "start": 9719.5,
+ "end": 9719.62,
+ "text": "you"
+ },
+ {
+ "id": 19714,
+ "start": 9719.62,
+ "end": 9719.74,
+ "text": "what"
+ },
+ {
+ "id": 19715,
+ "start": 9719.74,
+ "end": 9719.86,
+ "text": "you"
+ },
+ {
+ "id": 19716,
+ "start": 9719.86,
+ "end": 9720.04,
+ "text": "care"
+ },
+ {
+ "id": 19717,
+ "start": 9720.04,
+ "end": 9720.22,
+ "text": "about."
+ },
+ {
+ "id": 19718,
+ "start": 9720.22,
+ "end": 9720.28,
+ "text": "A"
+ },
+ {
+ "id": 19719,
+ "start": 9720.28,
+ "end": 9720.54,
+ "text": "news"
+ },
+ {
+ "id": 19720,
+ "start": 9720.54,
+ "end": 9721.84,
+ "text": "feed,"
+ },
+ {
+ "id": 19721,
+ "start": 9721.84,
+ "end": 9722.94,
+ "text": "do"
+ },
+ {
+ "id": 19722,
+ "start": 9722.94,
+ "end": 9723.84,
+ "text": "you"
+ },
+ {
+ "id": 19723,
+ "start": 9723.84,
+ "end": 9724.72,
+ "text": "store"
+ },
+ {
+ "id": 19724,
+ "start": 9724.72,
+ "end": 9724.92,
+ "text": "a"
+ },
+ {
+ "id": 19725,
+ "start": 9724.92,
+ "end": 9725.84,
+ "text": "text"
+ },
+ {
+ "id": 19726,
+ "start": 9725.84,
+ "end": 9726.6,
+ "text": "history?"
+ },
+ {
+ "id": 19727,
+ "start": 9726.6,
+ "end": 9727.1,
+ "text": "User"
+ },
+ {
+ "id": 19728,
+ "start": 9727.1,
+ "end": 9728.6,
+ "text": "content"
+ },
+ {
+ "id": 19729,
+ "start": 9728.6,
+ "end": 9729.58,
+ "text": "activity"
+ },
+ {
+ "id": 19730,
+ "start": 9729.58,
+ "end": 9730.16,
+ "text": "device"
+ },
+ {
+ "id": 19731,
+ "start": 9730.16,
+ "end": 9732.66,
+ "text": "location?"
+ },
+ {
+ "id": 19732,
+ "start": 9732.66,
+ "end": 9733.64,
+ "text": "Senator,"
+ },
+ {
+ "id": 19733,
+ "start": 9733.64,
+ "end": 9733.88,
+ "text": "some"
+ },
+ {
+ "id": 19734,
+ "start": 9733.88,
+ "end": 9733.98,
+ "text": "of"
+ },
+ {
+ "id": 19735,
+ "start": 9733.98,
+ "end": 9734.18,
+ "text": "that"
+ },
+ {
+ "id": 19736,
+ "start": 9734.18,
+ "end": 9734.66,
+ "text": "content"
+ },
+ {
+ "id": 19737,
+ "start": 9734.66,
+ "end": 9735.18,
+ "text": "with"
+ },
+ {
+ "id": 19738,
+ "start": 9735.18,
+ "end": 9735.62,
+ "text": "people's"
+ },
+ {
+ "id": 19739,
+ "start": 9735.62,
+ "end": 9736.14,
+ "text": "permission,"
+ },
+ {
+ "id": 19740,
+ "start": 9736.14,
+ "end": 9736.8,
+ "text": "we"
+ },
+ {
+ "id": 19741,
+ "start": 9736.8,
+ "end": 9736.96,
+ "text": "do"
+ },
+ {
+ "id": 19742,
+ "start": 9736.96,
+ "end": 9739.46,
+ "text": "store."
+ },
+ {
+ "id": 19743,
+ "start": 9739.46,
+ "end": 9740.44,
+ "text": "Do"
+ },
+ {
+ "id": 19744,
+ "start": 9740.44,
+ "end": 9741.22,
+ "text": "you"
+ },
+ {
+ "id": 19745,
+ "start": 9741.22,
+ "end": 9742.2,
+ "text": "disclose"
+ },
+ {
+ "id": 19746,
+ "start": 9742.2,
+ "end": 9742.68,
+ "text": "any"
+ },
+ {
+ "id": 19747,
+ "start": 9742.68,
+ "end": 9742.82,
+ "text": "of"
+ },
+ {
+ "id": 19748,
+ "start": 9742.82,
+ "end": 9745.02,
+ "text": "that?"
+ },
+ {
+ "id": 19749,
+ "start": 9745.02,
+ "end": 9746.26,
+ "text": "Yes,"
+ },
+ {
+ "id": 19750,
+ "start": 9746.26,
+ "end": 9747.24,
+ "text": "Senator,"
+ },
+ {
+ "id": 19751,
+ "start": 9747.24,
+ "end": 9747.34,
+ "text": "in"
+ },
+ {
+ "id": 19752,
+ "start": 9747.34,
+ "end": 9748.78,
+ "text": "order"
+ },
+ {
+ "id": 19753,
+ "start": 9748.78,
+ "end": 9749.76,
+ "text": "for"
+ },
+ {
+ "id": 19754,
+ "start": 9749.76,
+ "end": 9750.06,
+ "text": "people"
+ },
+ {
+ "id": 19755,
+ "start": 9750.06,
+ "end": 9750.26,
+ "text": "to"
+ },
+ {
+ "id": 19756,
+ "start": 9750.26,
+ "end": 9750.7,
+ "text": "share"
+ },
+ {
+ "id": 19757,
+ "start": 9750.7,
+ "end": 9750.86,
+ "text": "the"
+ },
+ {
+ "id": 19758,
+ "start": 9750.86,
+ "end": 9751.3,
+ "text": "information"
+ },
+ {
+ "id": 19759,
+ "start": 9751.3,
+ "end": 9751.46,
+ "text": "with"
+ },
+ {
+ "id": 19760,
+ "start": 9751.46,
+ "end": 9751.92,
+ "text": "Facebook,"
+ },
+ {
+ "id": 19761,
+ "start": 9751.92,
+ "end": 9753.04,
+ "text": "I"
+ },
+ {
+ "id": 19762,
+ "start": 9753.04,
+ "end": 9753.3,
+ "text": "believe"
+ },
+ {
+ "id": 19763,
+ "start": 9753.3,
+ "end": 9753.42,
+ "text": "that"
+ },
+ {
+ "id": 19764,
+ "start": 9753.42,
+ "end": 9753.66,
+ "text": "almost"
+ },
+ {
+ "id": 19765,
+ "start": 9753.66,
+ "end": 9754.02,
+ "text": "everything"
+ },
+ {
+ "id": 19766,
+ "start": 9754.02,
+ "end": 9754.14,
+ "text": "that"
+ },
+ {
+ "id": 19767,
+ "start": 9754.14,
+ "end": 9754.26,
+ "text": "you"
+ },
+ {
+ "id": 19768,
+ "start": 9754.26,
+ "end": 9754.4,
+ "text": "just"
+ },
+ {
+ "id": 19769,
+ "start": 9754.4,
+ "end": 9754.58,
+ "text": "said"
+ },
+ {
+ "id": 19770,
+ "start": 9754.58,
+ "end": 9754.78,
+ "text": "would"
+ },
+ {
+ "id": 19771,
+ "start": 9754.78,
+ "end": 9755.83,
+ "text": "be."
+ },
+ {
+ "id": 19772,
+ "start": 9755.83,
+ "end": 9756.81,
+ "text": "And"
+ },
+ {
+ "id": 19773,
+ "start": 9756.81,
+ "end": 9756.95,
+ "text": "the"
+ },
+ {
+ "id": 19774,
+ "start": 9756.95,
+ "end": 9757.55,
+ "text": "privacy"
+ },
+ {
+ "id": 19775,
+ "start": 9757.55,
+ "end": 9758.03,
+ "text": "settings"
+ },
+ {
+ "id": 19776,
+ "start": 9758.03,
+ "end": 9758.29,
+ "text": "it's"
+ },
+ {
+ "id": 19777,
+ "start": 9758.29,
+ "end": 9758.47,
+ "text": "my"
+ },
+ {
+ "id": 19778,
+ "start": 9758.47,
+ "end": 9759.27,
+ "text": "understanding"
+ },
+ {
+ "id": 19779,
+ "start": 9759.27,
+ "end": 9759.47,
+ "text": "that"
+ },
+ {
+ "id": 19780,
+ "start": 9759.47,
+ "end": 9759.85,
+ "text": "they"
+ },
+ {
+ "id": 19781,
+ "start": 9759.85,
+ "end": 9760.27,
+ "text": "limit"
+ },
+ {
+ "id": 19782,
+ "start": 9760.27,
+ "end": 9760.43,
+ "text": "the"
+ },
+ {
+ "id": 19783,
+ "start": 9760.43,
+ "end": 9760.97,
+ "text": "sharing"
+ },
+ {
+ "id": 19784,
+ "start": 9760.97,
+ "end": 9761.13,
+ "text": "of"
+ },
+ {
+ "id": 19785,
+ "start": 9761.13,
+ "end": 9761.43,
+ "text": "that"
+ },
+ {
+ "id": 19786,
+ "start": 9761.43,
+ "end": 9761.87,
+ "text": "data"
+ },
+ {
+ "id": 19787,
+ "start": 9761.87,
+ "end": 9762.17,
+ "text": "with"
+ },
+ {
+ "id": 19788,
+ "start": 9762.17,
+ "end": 9762.87,
+ "text": "other"
+ },
+ {
+ "id": 19789,
+ "start": 9762.87,
+ "end": 9763.37,
+ "text": "Facebook"
+ },
+ {
+ "id": 19790,
+ "start": 9763.37,
+ "end": 9763.91,
+ "text": "users."
+ },
+ {
+ "id": 19791,
+ "start": 9763.91,
+ "end": 9764.15,
+ "text": "Is"
+ },
+ {
+ "id": 19792,
+ "start": 9764.15,
+ "end": 9764.35,
+ "text": "that"
+ },
+ {
+ "id": 19793,
+ "start": 9764.35,
+ "end": 9765.88,
+ "text": "correct,"
+ },
+ {
+ "id": 19794,
+ "start": 9765.88,
+ "end": 9766.86,
+ "text": "Senator?"
+ },
+ {
+ "id": 19795,
+ "start": 9766.86,
+ "end": 9767.12,
+ "text": "Yes,"
+ },
+ {
+ "id": 19796,
+ "start": 9767.12,
+ "end": 9767.82,
+ "text": "every"
+ },
+ {
+ "id": 19797,
+ "start": 9767.82,
+ "end": 9768.14,
+ "text": "person"
+ },
+ {
+ "id": 19798,
+ "start": 9768.14,
+ "end": 9768.4,
+ "text": "gets"
+ },
+ {
+ "id": 19799,
+ "start": 9768.4,
+ "end": 9768.54,
+ "text": "to"
+ },
+ {
+ "id": 19800,
+ "start": 9768.54,
+ "end": 9769.08,
+ "text": "control"
+ },
+ {
+ "id": 19801,
+ "start": 9769.08,
+ "end": 9769.98,
+ "text": "who"
+ },
+ {
+ "id": 19802,
+ "start": 9769.98,
+ "end": 9770.26,
+ "text": "gets"
+ },
+ {
+ "id": 19803,
+ "start": 9770.26,
+ "end": 9770.42,
+ "text": "to"
+ },
+ {
+ "id": 19804,
+ "start": 9770.42,
+ "end": 9770.6,
+ "text": "see"
+ },
+ {
+ "id": 19805,
+ "start": 9770.6,
+ "end": 9770.8,
+ "text": "their"
+ },
+ {
+ "id": 19806,
+ "start": 9770.8,
+ "end": 9771.24,
+ "text": "content"
+ },
+ {
+ "id": 19807,
+ "start": 9771.24,
+ "end": 9771.7,
+ "text": "and"
+ },
+ {
+ "id": 19808,
+ "start": 9771.7,
+ "end": 9771.92,
+ "text": "does"
+ },
+ {
+ "id": 19809,
+ "start": 9771.92,
+ "end": 9772.2,
+ "text": "that"
+ },
+ {
+ "id": 19810,
+ "start": 9772.2,
+ "end": 9772.68,
+ "text": "also"
+ },
+ {
+ "id": 19811,
+ "start": 9772.68,
+ "end": 9773.04,
+ "text": "limit"
+ },
+ {
+ "id": 19812,
+ "start": 9773.04,
+ "end": 9773.18,
+ "text": "the"
+ },
+ {
+ "id": 19813,
+ "start": 9773.18,
+ "end": 9773.74,
+ "text": "ability"
+ },
+ {
+ "id": 19814,
+ "start": 9773.74,
+ "end": 9774.08,
+ "text": "for"
+ },
+ {
+ "id": 19815,
+ "start": 9774.08,
+ "end": 9774.82,
+ "text": "Facebook"
+ },
+ {
+ "id": 19816,
+ "start": 9774.82,
+ "end": 9775.1,
+ "text": "to"
+ },
+ {
+ "id": 19817,
+ "start": 9775.1,
+ "end": 9775.66,
+ "text": "collect"
+ },
+ {
+ "id": 19818,
+ "start": 9775.66,
+ "end": 9775.94,
+ "text": "and"
+ },
+ {
+ "id": 19819,
+ "start": 9775.94,
+ "end": 9776.2,
+ "text": "use"
+ },
+ {
+ "id": 19820,
+ "start": 9776.2,
+ "end": 9777.46,
+ "text": "it?"
+ },
+ {
+ "id": 19821,
+ "start": 9777.46,
+ "end": 9778.44,
+ "text": "Senator"
+ },
+ {
+ "id": 19822,
+ "start": 9778.44,
+ "end": 9779,
+ "text": "yes,"
+ },
+ {
+ "id": 19823,
+ "start": 9779,
+ "end": 9779.68,
+ "text": "there"
+ },
+ {
+ "id": 19824,
+ "start": 9779.68,
+ "end": 9780.66,
+ "text": "there"
+ },
+ {
+ "id": 19825,
+ "start": 9780.66,
+ "end": 9780.86,
+ "text": "are"
+ },
+ {
+ "id": 19826,
+ "start": 9780.86,
+ "end": 9781.48,
+ "text": "controls"
+ },
+ {
+ "id": 19827,
+ "start": 9781.48,
+ "end": 9781.78,
+ "text": "that"
+ },
+ {
+ "id": 19828,
+ "start": 9781.78,
+ "end": 9782.84,
+ "text": "determine"
+ },
+ {
+ "id": 19829,
+ "start": 9782.84,
+ "end": 9783.04,
+ "text": "what"
+ },
+ {
+ "id": 19830,
+ "start": 9783.04,
+ "end": 9783.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 19831,
+ "start": 9783.46,
+ "end": 9783.62,
+ "text": "can"
+ },
+ {
+ "id": 19832,
+ "start": 9783.62,
+ "end": 9783.76,
+ "text": "do"
+ },
+ {
+ "id": 19833,
+ "start": 9783.76,
+ "end": 9783.94,
+ "text": "as"
+ },
+ {
+ "id": 19834,
+ "start": 9783.94,
+ "end": 9784.2,
+ "text": "well."
+ },
+ {
+ "id": 19835,
+ "start": 9784.2,
+ "end": 9784.64,
+ "text": "So"
+ },
+ {
+ "id": 19836,
+ "start": 9784.64,
+ "end": 9784.8,
+ "text": "for"
+ },
+ {
+ "id": 19837,
+ "start": 9784.8,
+ "end": 9785.12,
+ "text": "example,"
+ },
+ {
+ "id": 19838,
+ "start": 9785.12,
+ "end": 9785.34,
+ "text": "people"
+ },
+ {
+ "id": 19839,
+ "start": 9785.34,
+ "end": 9785.48,
+ "text": "have"
+ },
+ {
+ "id": 19840,
+ "start": 9785.48,
+ "end": 9785.56,
+ "text": "a"
+ },
+ {
+ "id": 19841,
+ "start": 9785.56,
+ "end": 9785.94,
+ "text": "control"
+ },
+ {
+ "id": 19842,
+ "start": 9785.94,
+ "end": 9786.28,
+ "text": "about"
+ },
+ {
+ "id": 19843,
+ "start": 9786.28,
+ "end": 9786.88,
+ "text": "face"
+ },
+ {
+ "id": 19844,
+ "start": 9786.88,
+ "end": 9787.48,
+ "text": "recognition."
+ },
+ {
+ "id": 19845,
+ "start": 9787.48,
+ "end": 9787.82,
+ "text": "If"
+ },
+ {
+ "id": 19846,
+ "start": 9787.82,
+ "end": 9788.1,
+ "text": "people"
+ },
+ {
+ "id": 19847,
+ "start": 9788.1,
+ "end": 9788.34,
+ "text": "don't"
+ },
+ {
+ "id": 19848,
+ "start": 9788.34,
+ "end": 9788.58,
+ "text": "want"
+ },
+ {
+ "id": 19849,
+ "start": 9788.58,
+ "end": 9788.78,
+ "text": "us"
+ },
+ {
+ "id": 19850,
+ "start": 9788.78,
+ "end": 9789.04,
+ "text": "to"
+ },
+ {
+ "id": 19851,
+ "start": 9789.04,
+ "end": 9789.88,
+ "text": "be"
+ },
+ {
+ "id": 19852,
+ "start": 9789.88,
+ "end": 9790.06,
+ "text": "able"
+ },
+ {
+ "id": 19853,
+ "start": 9790.06,
+ "end": 9790.78,
+ "text": "to"
+ },
+ {
+ "id": 19854,
+ "start": 9790.78,
+ "end": 9791.46,
+ "text": "help"
+ },
+ {
+ "id": 19855,
+ "start": 9791.46,
+ "end": 9792.02,
+ "text": "identify."
+ },
+ {
+ "id": 19856,
+ "start": 9792.02,
+ "end": 9792.34,
+ "text": "When"
+ },
+ {
+ "id": 19857,
+ "start": 9792.34,
+ "end": 9792.6,
+ "text": "they're"
+ },
+ {
+ "id": 19858,
+ "start": 9792.6,
+ "end": 9792.8,
+ "text": "in"
+ },
+ {
+ "id": 19859,
+ "start": 9792.8,
+ "end": 9793.24,
+ "text": "photos"
+ },
+ {
+ "id": 19860,
+ "start": 9793.24,
+ "end": 9793.38,
+ "text": "that"
+ },
+ {
+ "id": 19861,
+ "start": 9793.38,
+ "end": 9793.58,
+ "text": "their"
+ },
+ {
+ "id": 19862,
+ "start": 9793.58,
+ "end": 9793.88,
+ "text": "friends"
+ },
+ {
+ "id": 19863,
+ "start": 9793.88,
+ "end": 9794.56,
+ "text": "upload,"
+ },
+ {
+ "id": 19864,
+ "start": 9794.56,
+ "end": 9795.28,
+ "text": "they"
+ },
+ {
+ "id": 19865,
+ "start": 9795.28,
+ "end": 9795.38,
+ "text": "can"
+ },
+ {
+ "id": 19866,
+ "start": 9795.38,
+ "end": 9795.54,
+ "text": "turn"
+ },
+ {
+ "id": 19867,
+ "start": 9795.54,
+ "end": 9795.68,
+ "text": "that"
+ },
+ {
+ "id": 19868,
+ "start": 9795.68,
+ "end": 9795.84,
+ "text": "off."
+ },
+ {
+ "id": 19869,
+ "start": 9795.84,
+ "end": 9796.24,
+ "text": "And"
+ },
+ {
+ "id": 19870,
+ "start": 9796.24,
+ "end": 9796.36,
+ "text": "then"
+ },
+ {
+ "id": 19871,
+ "start": 9796.36,
+ "end": 9796.46,
+ "text": "we"
+ },
+ {
+ "id": 19872,
+ "start": 9796.46,
+ "end": 9796.7,
+ "text": "won't"
+ },
+ {
+ "id": 19873,
+ "start": 9796.7,
+ "end": 9797.08,
+ "text": "store"
+ },
+ {
+ "id": 19874,
+ "start": 9797.08,
+ "end": 9797.66,
+ "text": "that"
+ },
+ {
+ "id": 19875,
+ "start": 9797.66,
+ "end": 9797.96,
+ "text": "kind"
+ },
+ {
+ "id": 19876,
+ "start": 9797.96,
+ "end": 9798.06,
+ "text": "of"
+ },
+ {
+ "id": 19877,
+ "start": 9798.06,
+ "end": 9798.8,
+ "text": "template"
+ },
+ {
+ "id": 19878,
+ "start": 9798.8,
+ "end": 9798.92,
+ "text": "for"
+ },
+ {
+ "id": 19879,
+ "start": 9798.92,
+ "end": 9799.1,
+ "text": "them."
+ },
+ {
+ "id": 19880,
+ "start": 9799.1,
+ "end": 9800.48,
+ "text": "And"
+ },
+ {
+ "id": 19881,
+ "start": 9800.48,
+ "end": 9800.72,
+ "text": "there"
+ },
+ {
+ "id": 19882,
+ "start": 9800.72,
+ "end": 9801.1,
+ "text": "was"
+ },
+ {
+ "id": 19883,
+ "start": 9801.1,
+ "end": 9801.66,
+ "text": "some"
+ },
+ {
+ "id": 19884,
+ "start": 9801.66,
+ "end": 9802.1,
+ "text": "action"
+ },
+ {
+ "id": 19885,
+ "start": 9802.1,
+ "end": 9802.52,
+ "text": "taken"
+ },
+ {
+ "id": 19886,
+ "start": 9802.52,
+ "end": 9802.66,
+ "text": "by"
+ },
+ {
+ "id": 19887,
+ "start": 9802.66,
+ "end": 9802.94,
+ "text": "the"
+ },
+ {
+ "id": 19888,
+ "start": 9802.94,
+ "end": 9803.9,
+ "text": "FTC"
+ },
+ {
+ "id": 19889,
+ "start": 9803.9,
+ "end": 9804.56,
+ "text": "in"
+ },
+ {
+ "id": 19890,
+ "start": 9804.56,
+ "end": 9805,
+ "text": "20"
+ },
+ {
+ "id": 19891,
+ "start": 9805,
+ "end": 9805.5,
+ "text": "11"
+ },
+ {
+ "id": 19892,
+ "start": 9805.5,
+ "end": 9806.34,
+ "text": "and"
+ },
+ {
+ "id": 19893,
+ "start": 9806.34,
+ "end": 9806.62,
+ "text": "you"
+ },
+ {
+ "id": 19894,
+ "start": 9806.62,
+ "end": 9806.88,
+ "text": "wrote"
+ },
+ {
+ "id": 19895,
+ "start": 9806.88,
+ "end": 9806.96,
+ "text": "a"
+ },
+ {
+ "id": 19896,
+ "start": 9806.96,
+ "end": 9807.54,
+ "text": "Facebook"
+ },
+ {
+ "id": 19897,
+ "start": 9807.54,
+ "end": 9807.92,
+ "text": "post"
+ },
+ {
+ "id": 19898,
+ "start": 9807.92,
+ "end": 9808.1,
+ "text": "at"
+ },
+ {
+ "id": 19899,
+ "start": 9808.1,
+ "end": 9808.22,
+ "text": "the"
+ },
+ {
+ "id": 19900,
+ "start": 9808.22,
+ "end": 9809.52,
+ "text": "time"
+ },
+ {
+ "id": 19901,
+ "start": 9809.52,
+ "end": 9810.58,
+ "text": "on"
+ },
+ {
+ "id": 19902,
+ "start": 9810.58,
+ "end": 9810.64,
+ "text": "a"
+ },
+ {
+ "id": 19903,
+ "start": 9810.64,
+ "end": 9811.04,
+ "text": "public"
+ },
+ {
+ "id": 19904,
+ "start": 9811.04,
+ "end": 9811.44,
+ "text": "page"
+ },
+ {
+ "id": 19905,
+ "start": 9811.44,
+ "end": 9811.64,
+ "text": "on"
+ },
+ {
+ "id": 19906,
+ "start": 9811.64,
+ "end": 9811.76,
+ "text": "the"
+ },
+ {
+ "id": 19907,
+ "start": 9811.76,
+ "end": 9812.16,
+ "text": "Internet"
+ },
+ {
+ "id": 19908,
+ "start": 9812.16,
+ "end": 9812.44,
+ "text": "that"
+ },
+ {
+ "id": 19909,
+ "start": 9812.44,
+ "end": 9812.56,
+ "text": "it"
+ },
+ {
+ "id": 19910,
+ "start": 9812.56,
+ "end": 9812.82,
+ "text": "used"
+ },
+ {
+ "id": 19911,
+ "start": 9812.82,
+ "end": 9812.98,
+ "text": "to"
+ },
+ {
+ "id": 19912,
+ "start": 9812.98,
+ "end": 9813.34,
+ "text": "seem"
+ },
+ {
+ "id": 19913,
+ "start": 9813.34,
+ "end": 9813.9,
+ "text": "scary"
+ },
+ {
+ "id": 19914,
+ "start": 9813.9,
+ "end": 9814.02,
+ "text": "to"
+ },
+ {
+ "id": 19915,
+ "start": 9814.02,
+ "end": 9814.52,
+ "text": "people."
+ },
+ {
+ "id": 19916,
+ "start": 9814.52,
+ "end": 9814.88,
+ "text": "But"
+ },
+ {
+ "id": 19917,
+ "start": 9814.88,
+ "end": 9815.12,
+ "text": "as"
+ },
+ {
+ "id": 19918,
+ "start": 9815.12,
+ "end": 9815.36,
+ "text": "long"
+ },
+ {
+ "id": 19919,
+ "start": 9815.36,
+ "end": 9815.5,
+ "text": "as"
+ },
+ {
+ "id": 19920,
+ "start": 9815.5,
+ "end": 9815.74,
+ "text": "they"
+ },
+ {
+ "id": 19921,
+ "start": 9815.74,
+ "end": 9816.04,
+ "text": "could"
+ },
+ {
+ "id": 19922,
+ "start": 9816.04,
+ "end": 9816.64,
+ "text": "make"
+ },
+ {
+ "id": 19923,
+ "start": 9816.64,
+ "end": 9816.86,
+ "text": "their"
+ },
+ {
+ "id": 19924,
+ "start": 9816.86,
+ "end": 9817.18,
+ "text": "page"
+ },
+ {
+ "id": 19925,
+ "start": 9817.18,
+ "end": 9817.7,
+ "text": "private,"
+ },
+ {
+ "id": 19926,
+ "start": 9817.7,
+ "end": 9817.92,
+ "text": "they"
+ },
+ {
+ "id": 19927,
+ "start": 9817.92,
+ "end": 9818.26,
+ "text": "felt"
+ },
+ {
+ "id": 19928,
+ "start": 9818.26,
+ "end": 9818.68,
+ "text": "safe"
+ },
+ {
+ "id": 19929,
+ "start": 9818.68,
+ "end": 9819.32,
+ "text": "sharing"
+ },
+ {
+ "id": 19930,
+ "start": 9819.32,
+ "end": 9819.86,
+ "text": "with"
+ },
+ {
+ "id": 19931,
+ "start": 9819.86,
+ "end": 9820.06,
+ "text": "their"
+ },
+ {
+ "id": 19932,
+ "start": 9820.06,
+ "end": 9820.38,
+ "text": "friends"
+ },
+ {
+ "id": 19933,
+ "start": 9820.38,
+ "end": 9821.08,
+ "text": "online"
+ },
+ {
+ "id": 19934,
+ "start": 9821.08,
+ "end": 9821.82,
+ "text": "control"
+ },
+ {
+ "id": 19935,
+ "start": 9821.82,
+ "end": 9822.04,
+ "text": "was"
+ },
+ {
+ "id": 19936,
+ "start": 9822.04,
+ "end": 9822.52,
+ "text": "key"
+ },
+ {
+ "id": 19937,
+ "start": 9822.52,
+ "end": 9823.02,
+ "text": "and"
+ },
+ {
+ "id": 19938,
+ "start": 9823.02,
+ "end": 9823.22,
+ "text": "you"
+ },
+ {
+ "id": 19939,
+ "start": 9823.22,
+ "end": 9823.44,
+ "text": "just"
+ },
+ {
+ "id": 19940,
+ "start": 9823.44,
+ "end": 9824.12,
+ "text": "mentioned"
+ },
+ {
+ "id": 19941,
+ "start": 9824.12,
+ "end": 9825.14,
+ "text": "control."
+ },
+ {
+ "id": 19942,
+ "start": 9825.14,
+ "end": 9826.24,
+ "text": "Senator"
+ },
+ {
+ "id": 19943,
+ "start": 9826.24,
+ "end": 9827.9,
+ "text": "Hatch"
+ },
+ {
+ "id": 19944,
+ "start": 9827.9,
+ "end": 9828.92,
+ "text": "ask"
+ },
+ {
+ "id": 19945,
+ "start": 9828.92,
+ "end": 9829.08,
+ "text": "you"
+ },
+ {
+ "id": 19946,
+ "start": 9829.08,
+ "end": 9829.18,
+ "text": "a"
+ },
+ {
+ "id": 19947,
+ "start": 9829.18,
+ "end": 9829.58,
+ "text": "question"
+ },
+ {
+ "id": 19948,
+ "start": 9829.58,
+ "end": 9829.74,
+ "text": "and"
+ },
+ {
+ "id": 19949,
+ "start": 9829.74,
+ "end": 9829.84,
+ "text": "you"
+ },
+ {
+ "id": 19950,
+ "start": 9829.84,
+ "end": 9830.52,
+ "text": "responded"
+ },
+ {
+ "id": 19951,
+ "start": 9830.52,
+ "end": 9830.8,
+ "text": "there"
+ },
+ {
+ "id": 19952,
+ "start": 9830.8,
+ "end": 9831.06,
+ "text": "about"
+ },
+ {
+ "id": 19953,
+ "start": 9831.06,
+ "end": 9831.62,
+ "text": "complete"
+ },
+ {
+ "id": 19954,
+ "start": 9831.62,
+ "end": 9832.16,
+ "text": "control,"
+ },
+ {
+ "id": 19955,
+ "start": 9832.16,
+ "end": 9832.98,
+ "text": "so"
+ },
+ {
+ "id": 19956,
+ "start": 9832.98,
+ "end": 9833.92,
+ "text": "you"
+ },
+ {
+ "id": 19957,
+ "start": 9833.92,
+ "end": 9834.04,
+ "text": "and"
+ },
+ {
+ "id": 19958,
+ "start": 9834.04,
+ "end": 9834.2,
+ "text": "your"
+ },
+ {
+ "id": 19959,
+ "start": 9834.2,
+ "end": 9834.66,
+ "text": "company"
+ },
+ {
+ "id": 19960,
+ "start": 9834.66,
+ "end": 9834.96,
+ "text": "have"
+ },
+ {
+ "id": 19961,
+ "start": 9834.96,
+ "end": 9835.26,
+ "text": "used"
+ },
+ {
+ "id": 19962,
+ "start": 9835.26,
+ "end": 9835.7,
+ "text": "that"
+ },
+ {
+ "id": 19963,
+ "start": 9835.7,
+ "end": 9836.24,
+ "text": "term"
+ },
+ {
+ "id": 19964,
+ "start": 9836.24,
+ "end": 9837.36,
+ "text": "repeatedly."
+ },
+ {
+ "id": 19965,
+ "start": 9837.36,
+ "end": 9838.3,
+ "text": "And"
+ },
+ {
+ "id": 19966,
+ "start": 9838.3,
+ "end": 9838.46,
+ "text": "I"
+ },
+ {
+ "id": 19967,
+ "start": 9838.46,
+ "end": 9838.78,
+ "text": "believe"
+ },
+ {
+ "id": 19968,
+ "start": 9838.78,
+ "end": 9838.98,
+ "text": "you"
+ },
+ {
+ "id": 19969,
+ "start": 9838.98,
+ "end": 9839.24,
+ "text": "use"
+ },
+ {
+ "id": 19970,
+ "start": 9839.24,
+ "end": 9839.5,
+ "text": "it"
+ },
+ {
+ "id": 19971,
+ "start": 9839.5,
+ "end": 9840.04,
+ "text": "to"
+ },
+ {
+ "id": 19972,
+ "start": 9840.04,
+ "end": 9840.68,
+ "text": "reassure"
+ },
+ {
+ "id": 19973,
+ "start": 9840.68,
+ "end": 9841.24,
+ "text": "users,"
+ },
+ {
+ "id": 19974,
+ "start": 9841.24,
+ "end": 9841.48,
+ "text": "is"
+ },
+ {
+ "id": 19975,
+ "start": 9841.48,
+ "end": 9841.72,
+ "text": "that"
+ },
+ {
+ "id": 19976,
+ "start": 9841.72,
+ "end": 9842.18,
+ "text": "correct?"
+ },
+ {
+ "id": 19977,
+ "start": 9842.18,
+ "end": 9843.26,
+ "text": "But"
+ },
+ {
+ "id": 19978,
+ "start": 9843.26,
+ "end": 9843.4,
+ "text": "you"
+ },
+ {
+ "id": 19979,
+ "start": 9843.4,
+ "end": 9843.6,
+ "text": "do"
+ },
+ {
+ "id": 19980,
+ "start": 9843.6,
+ "end": 9843.82,
+ "text": "have"
+ },
+ {
+ "id": 19981,
+ "start": 9843.82,
+ "end": 9844.52,
+ "text": "control"
+ },
+ {
+ "id": 19982,
+ "start": 9844.52,
+ "end": 9844.76,
+ "text": "and"
+ },
+ {
+ "id": 19983,
+ "start": 9844.76,
+ "end": 9845.26,
+ "text": "complete"
+ },
+ {
+ "id": 19984,
+ "start": 9845.26,
+ "end": 9845.78,
+ "text": "control"
+ },
+ {
+ "id": 19985,
+ "start": 9845.78,
+ "end": 9846.04,
+ "text": "over"
+ },
+ {
+ "id": 19986,
+ "start": 9846.04,
+ "end": 9846.24,
+ "text": "this"
+ },
+ {
+ "id": 19987,
+ "start": 9846.24,
+ "end": 9847.62,
+ "text": "information."
+ },
+ {
+ "id": 19988,
+ "start": 9847.62,
+ "end": 9848.5,
+ "text": "Well,"
+ },
+ {
+ "id": 19989,
+ "start": 9848.5,
+ "end": 9849,
+ "text": "Senator,"
+ },
+ {
+ "id": 19990,
+ "start": 9849,
+ "end": 9849.24,
+ "text": "this"
+ },
+ {
+ "id": 19991,
+ "start": 9849.24,
+ "end": 9849.42,
+ "text": "is"
+ },
+ {
+ "id": 19992,
+ "start": 9849.42,
+ "end": 9849.66,
+ "text": "how"
+ },
+ {
+ "id": 19993,
+ "start": 9849.66,
+ "end": 9849.8,
+ "text": "the"
+ },
+ {
+ "id": 19994,
+ "start": 9849.8,
+ "end": 9850.2,
+ "text": "service"
+ },
+ {
+ "id": 19995,
+ "start": 9850.2,
+ "end": 9850.52,
+ "text": "works"
+ },
+ {
+ "id": 19996,
+ "start": 9850.52,
+ "end": 9851.18,
+ "text": "is."
+ },
+ {
+ "id": 19997,
+ "start": 9851.18,
+ "end": 9851.26,
+ "text": "I"
+ },
+ {
+ "id": 19998,
+ "start": 9851.26,
+ "end": 9851.42,
+ "text": "mean,"
+ },
+ {
+ "id": 19999,
+ "start": 9851.42,
+ "end": 9851.54,
+ "text": "the"
+ },
+ {
+ "id": 20000,
+ "start": 9851.54,
+ "end": 9851.86,
+ "text": "core"
+ },
+ {
+ "id": 20001,
+ "start": 9851.86,
+ "end": 9852.18,
+ "text": "thing"
+ },
+ {
+ "id": 20002,
+ "start": 9852.18,
+ "end": 9852.46,
+ "text": "that"
+ },
+ {
+ "id": 20003,
+ "start": 9852.46,
+ "end": 9852.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 20004,
+ "start": 9852.9,
+ "end": 9853.2,
+ "text": "is"
+ },
+ {
+ "id": 20005,
+ "start": 9853.2,
+ "end": 9853.98,
+ "text": "and"
+ },
+ {
+ "id": 20006,
+ "start": 9853.98,
+ "end": 9854.12,
+ "text": "all"
+ },
+ {
+ "id": 20007,
+ "start": 9854.12,
+ "end": 9854.18,
+ "text": "of"
+ },
+ {
+ "id": 20008,
+ "start": 9854.18,
+ "end": 9854.32,
+ "text": "our"
+ },
+ {
+ "id": 20009,
+ "start": 9854.32,
+ "end": 9854.82,
+ "text": "services"
+ },
+ {
+ "id": 20010,
+ "start": 9854.82,
+ "end": 9855.08,
+ "text": "what's"
+ },
+ {
+ "id": 20011,
+ "start": 9855.08,
+ "end": 9855.3,
+ "text": "that"
+ },
+ {
+ "id": 20012,
+ "start": 9855.3,
+ "end": 9856.06,
+ "text": "Instagram"
+ },
+ {
+ "id": 20013,
+ "start": 9856.06,
+ "end": 9856.48,
+ "text": "Messenger."
+ },
+ {
+ "id": 20014,
+ "start": 9856.48,
+ "end": 9857.12,
+ "text": "So"
+ },
+ {
+ "id": 20015,
+ "start": 9857.12,
+ "end": 9857.32,
+ "text": "is"
+ },
+ {
+ "id": 20016,
+ "start": 9857.32,
+ "end": 9858.22,
+ "text": "this"
+ },
+ {
+ "id": 20017,
+ "start": 9858.22,
+ "end": 9859.33,
+ "text": "the"
+ },
+ {
+ "id": 20018,
+ "start": 9859.33,
+ "end": 9860.07,
+ "text": "of"
+ },
+ {
+ "id": 20019,
+ "start": 9860.07,
+ "end": 9861.09,
+ "text": "Facebook"
+ },
+ {
+ "id": 20020,
+ "start": 9861.09,
+ "end": 9861.99,
+ "text": "is"
+ },
+ {
+ "id": 20021,
+ "start": 9861.99,
+ "end": 9862.39,
+ "text": "about"
+ },
+ {
+ "id": 20022,
+ "start": 9862.39,
+ "end": 9862.91,
+ "text": "feeling"
+ },
+ {
+ "id": 20023,
+ "start": 9862.91,
+ "end": 9863.41,
+ "text": "safe"
+ },
+ {
+ "id": 20024,
+ "start": 9863.41,
+ "end": 9863.81,
+ "text": "or"
+ },
+ {
+ "id": 20025,
+ "start": 9863.81,
+ "end": 9864.85,
+ "text": "our"
+ },
+ {
+ "id": 20026,
+ "start": 9864.85,
+ "end": 9865.77,
+ "text": "users"
+ },
+ {
+ "id": 20027,
+ "start": 9865.77,
+ "end": 9866.79,
+ "text": "actually"
+ },
+ {
+ "id": 20028,
+ "start": 9866.79,
+ "end": 9867.25,
+ "text": "safe?"
+ },
+ {
+ "id": 20029,
+ "start": 9867.25,
+ "end": 9868.23,
+ "text": "Is"
+ },
+ {
+ "id": 20030,
+ "start": 9868.23,
+ "end": 9869.23,
+ "text": "Facebook"
+ },
+ {
+ "id": 20031,
+ "start": 9869.23,
+ "end": 9869.75,
+ "text": "being"
+ },
+ {
+ "id": 20032,
+ "start": 9869.75,
+ "end": 9871.04,
+ "text": "safe?"
+ },
+ {
+ "id": 20033,
+ "start": 9871.04,
+ "end": 9872.1,
+ "text": "Senator?"
+ },
+ {
+ "id": 20034,
+ "start": 9872.1,
+ "end": 9872.22,
+ "text": "I"
+ },
+ {
+ "id": 20035,
+ "start": 9872.22,
+ "end": 9872.42,
+ "text": "think"
+ },
+ {
+ "id": 20036,
+ "start": 9872.42,
+ "end": 9872.86,
+ "text": "Facebook"
+ },
+ {
+ "id": 20037,
+ "start": 9872.86,
+ "end": 9872.94,
+ "text": "is"
+ },
+ {
+ "id": 20038,
+ "start": 9872.94,
+ "end": 9873.24,
+ "text": "safe."
+ },
+ {
+ "id": 20039,
+ "start": 9873.24,
+ "end": 9873.66,
+ "text": "I"
+ },
+ {
+ "id": 20040,
+ "start": 9873.66,
+ "end": 9873.9,
+ "text": "use"
+ },
+ {
+ "id": 20041,
+ "start": 9873.9,
+ "end": 9874.02,
+ "text": "it"
+ },
+ {
+ "id": 20042,
+ "start": 9874.02,
+ "end": 9874.18,
+ "text": "and"
+ },
+ {
+ "id": 20043,
+ "start": 9874.18,
+ "end": 9874.32,
+ "text": "my"
+ },
+ {
+ "id": 20044,
+ "start": 9874.32,
+ "end": 9874.7,
+ "text": "family"
+ },
+ {
+ "id": 20045,
+ "start": 9874.7,
+ "end": 9874.9,
+ "text": "use"
+ },
+ {
+ "id": 20046,
+ "start": 9874.9,
+ "end": 9875,
+ "text": "it"
+ },
+ {
+ "id": 20047,
+ "start": 9875,
+ "end": 9875.12,
+ "text": "and"
+ },
+ {
+ "id": 20048,
+ "start": 9875.12,
+ "end": 9875.24,
+ "text": "all"
+ },
+ {
+ "id": 20049,
+ "start": 9875.24,
+ "end": 9875.36,
+ "text": "the"
+ },
+ {
+ "id": 20050,
+ "start": 9875.36,
+ "end": 9875.54,
+ "text": "people"
+ },
+ {
+ "id": 20051,
+ "start": 9875.54,
+ "end": 9875.62,
+ "text": "I"
+ },
+ {
+ "id": 20052,
+ "start": 9875.62,
+ "end": 9875.86,
+ "text": "love"
+ },
+ {
+ "id": 20053,
+ "start": 9875.86,
+ "end": 9876,
+ "text": "and"
+ },
+ {
+ "id": 20054,
+ "start": 9876,
+ "end": 9876.24,
+ "text": "care"
+ },
+ {
+ "id": 20055,
+ "start": 9876.24,
+ "end": 9876.46,
+ "text": "about"
+ },
+ {
+ "id": 20056,
+ "start": 9876.46,
+ "end": 9876.66,
+ "text": "use"
+ },
+ {
+ "id": 20057,
+ "start": 9876.66,
+ "end": 9876.78,
+ "text": "it"
+ },
+ {
+ "id": 20058,
+ "start": 9876.78,
+ "end": 9876.92,
+ "text": "all"
+ },
+ {
+ "id": 20059,
+ "start": 9876.92,
+ "end": 9877.04,
+ "text": "the"
+ },
+ {
+ "id": 20060,
+ "start": 9877.04,
+ "end": 9877.38,
+ "text": "time."
+ },
+ {
+ "id": 20061,
+ "start": 9877.38,
+ "end": 9878.58,
+ "text": "These"
+ },
+ {
+ "id": 20062,
+ "start": 9878.58,
+ "end": 9879.34,
+ "text": "controls"
+ },
+ {
+ "id": 20063,
+ "start": 9879.34,
+ "end": 9880.38,
+ "text": "are"
+ },
+ {
+ "id": 20064,
+ "start": 9880.38,
+ "end": 9880.56,
+ "text": "not"
+ },
+ {
+ "id": 20065,
+ "start": 9880.56,
+ "end": 9880.7,
+ "text": "just"
+ },
+ {
+ "id": 20066,
+ "start": 9880.7,
+ "end": 9880.78,
+ "text": "to"
+ },
+ {
+ "id": 20067,
+ "start": 9880.78,
+ "end": 9880.94,
+ "text": "make"
+ },
+ {
+ "id": 20068,
+ "start": 9880.94,
+ "end": 9881.2,
+ "text": "people"
+ },
+ {
+ "id": 20069,
+ "start": 9881.2,
+ "end": 9881.44,
+ "text": "feel"
+ },
+ {
+ "id": 20070,
+ "start": 9881.44,
+ "end": 9881.76,
+ "text": "safe"
+ },
+ {
+ "id": 20071,
+ "start": 9881.76,
+ "end": 9881.96,
+ "text": "it's"
+ },
+ {
+ "id": 20072,
+ "start": 9881.96,
+ "end": 9882.26,
+ "text": "actually"
+ },
+ {
+ "id": 20073,
+ "start": 9882.26,
+ "end": 9882.44,
+ "text": "what"
+ },
+ {
+ "id": 20074,
+ "start": 9882.44,
+ "end": 9882.66,
+ "text": "people"
+ },
+ {
+ "id": 20075,
+ "start": 9882.66,
+ "end": 9883.04,
+ "text": "want"
+ },
+ {
+ "id": 20076,
+ "start": 9883.04,
+ "end": 9883.16,
+ "text": "in"
+ },
+ {
+ "id": 20077,
+ "start": 9883.16,
+ "end": 9883.3,
+ "text": "the"
+ },
+ {
+ "id": 20078,
+ "start": 9883.3,
+ "end": 9883.63,
+ "text": "product."
+ },
+ {
+ "id": 20079,
+ "start": 9883.63,
+ "end": 9884.25,
+ "text": "The"
+ },
+ {
+ "id": 20080,
+ "start": 9884.25,
+ "end": 9884.71,
+ "text": "reality"
+ },
+ {
+ "id": 20081,
+ "start": 9884.71,
+ "end": 9884.87,
+ "text": "is"
+ },
+ {
+ "id": 20082,
+ "start": 9884.87,
+ "end": 9885.05,
+ "text": "is"
+ },
+ {
+ "id": 20083,
+ "start": 9885.05,
+ "end": 9885.25,
+ "text": "that"
+ },
+ {
+ "id": 20084,
+ "start": 9885.25,
+ "end": 9885.43,
+ "text": "when"
+ },
+ {
+ "id": 20085,
+ "start": 9885.43,
+ "end": 9886.19,
+ "text": "you"
+ },
+ {
+ "id": 20086,
+ "start": 9886.19,
+ "end": 9886.31,
+ "text": "just"
+ },
+ {
+ "id": 20087,
+ "start": 9886.31,
+ "end": 9886.45,
+ "text": "think"
+ },
+ {
+ "id": 20088,
+ "start": 9886.45,
+ "end": 9886.61,
+ "text": "about"
+ },
+ {
+ "id": 20089,
+ "start": 9886.61,
+ "end": 9886.73,
+ "text": "how"
+ },
+ {
+ "id": 20090,
+ "start": 9886.73,
+ "end": 9886.87,
+ "text": "you"
+ },
+ {
+ "id": 20091,
+ "start": 9886.87,
+ "end": 9887.09,
+ "text": "use"
+ },
+ {
+ "id": 20092,
+ "start": 9887.09,
+ "end": 9887.27,
+ "text": "this"
+ },
+ {
+ "id": 20093,
+ "start": 9887.27,
+ "end": 9887.67,
+ "text": "yourself?"
+ },
+ {
+ "id": 20094,
+ "start": 9887.67,
+ "end": 9887.89,
+ "text": "You"
+ },
+ {
+ "id": 20095,
+ "start": 9887.89,
+ "end": 9888.05,
+ "text": "don't"
+ },
+ {
+ "id": 20096,
+ "start": 9888.05,
+ "end": 9888.17,
+ "text": "want"
+ },
+ {
+ "id": 20097,
+ "start": 9888.17,
+ "end": 9888.23,
+ "text": "to"
+ },
+ {
+ "id": 20098,
+ "start": 9888.23,
+ "end": 9888.45,
+ "text": "share"
+ },
+ {
+ "id": 20099,
+ "start": 9888.45,
+ "end": 9888.99,
+ "text": "if"
+ },
+ {
+ "id": 20100,
+ "start": 9888.99,
+ "end": 9889.13,
+ "text": "you"
+ },
+ {
+ "id": 20101,
+ "start": 9889.13,
+ "end": 9889.29,
+ "text": "take"
+ },
+ {
+ "id": 20102,
+ "start": 9889.29,
+ "end": 9889.35,
+ "text": "a"
+ },
+ {
+ "id": 20103,
+ "start": 9889.35,
+ "end": 9889.73,
+ "text": "photo"
+ },
+ {
+ "id": 20104,
+ "start": 9889.73,
+ "end": 9890.19,
+ "text": "you're"
+ },
+ {
+ "id": 20105,
+ "start": 9890.19,
+ "end": 9890.29,
+ "text": "not"
+ },
+ {
+ "id": 20106,
+ "start": 9890.29,
+ "end": 9890.41,
+ "text": "going"
+ },
+ {
+ "id": 20107,
+ "start": 9890.41,
+ "end": 9890.55,
+ "text": "to"
+ },
+ {
+ "id": 20108,
+ "start": 9890.55,
+ "end": 9890.79,
+ "text": "send"
+ },
+ {
+ "id": 20109,
+ "start": 9890.79,
+ "end": 9890.95,
+ "text": "that"
+ },
+ {
+ "id": 20110,
+ "start": 9890.95,
+ "end": 9891.05,
+ "text": "to"
+ },
+ {
+ "id": 20111,
+ "start": 9891.05,
+ "end": 9891.17,
+ "text": "the"
+ },
+ {
+ "id": 20112,
+ "start": 9891.17,
+ "end": 9891.37,
+ "text": "same"
+ },
+ {
+ "id": 20113,
+ "start": 9891.37,
+ "end": 9891.67,
+ "text": "people"
+ },
+ {
+ "id": 20114,
+ "start": 9891.67,
+ "end": 9892.21,
+ "text": "sometimes"
+ },
+ {
+ "id": 20115,
+ "start": 9892.21,
+ "end": 9892.41,
+ "text": "you're"
+ },
+ {
+ "id": 20116,
+ "start": 9892.41,
+ "end": 9892.53,
+ "text": "going"
+ },
+ {
+ "id": 20117,
+ "start": 9892.53,
+ "end": 9892.61,
+ "text": "to"
+ },
+ {
+ "id": 20118,
+ "start": 9892.61,
+ "end": 9892.99,
+ "text": "want"
+ },
+ {
+ "id": 20119,
+ "start": 9892.99,
+ "end": 9893.07,
+ "text": "to"
+ },
+ {
+ "id": 20120,
+ "start": 9893.07,
+ "end": 9893.33,
+ "text": "text"
+ },
+ {
+ "id": 20121,
+ "start": 9893.33,
+ "end": 9893.47,
+ "text": "it"
+ },
+ {
+ "id": 20122,
+ "start": 9893.47,
+ "end": 9893.59,
+ "text": "to"
+ },
+ {
+ "id": 20123,
+ "start": 9893.59,
+ "end": 9893.81,
+ "text": "one"
+ },
+ {
+ "id": 20124,
+ "start": 9893.81,
+ "end": 9894.23,
+ "text": "person."
+ },
+ {
+ "id": 20125,
+ "start": 9894.23,
+ "end": 9894.87,
+ "text": "Sometimes"
+ },
+ {
+ "id": 20126,
+ "start": 9894.87,
+ "end": 9895.01,
+ "text": "you"
+ },
+ {
+ "id": 20127,
+ "start": 9895.01,
+ "end": 9895.17,
+ "text": "might"
+ },
+ {
+ "id": 20128,
+ "start": 9895.17,
+ "end": 9895.33,
+ "text": "send"
+ },
+ {
+ "id": 20129,
+ "start": 9895.33,
+ "end": 9895.43,
+ "text": "it"
+ },
+ {
+ "id": 20130,
+ "start": 9895.43,
+ "end": 9895.53,
+ "text": "to"
+ },
+ {
+ "id": 20131,
+ "start": 9895.53,
+ "end": 9895.61,
+ "text": "a"
+ },
+ {
+ "id": 20132,
+ "start": 9895.61,
+ "end": 9896.22,
+ "text": "group."
+ },
+ {
+ "id": 20133,
+ "start": 9896.22,
+ "end": 9896.64,
+ "text": "I"
+ },
+ {
+ "id": 20134,
+ "start": 9896.64,
+ "end": 9896.86,
+ "text": "bet"
+ },
+ {
+ "id": 20135,
+ "start": 9896.86,
+ "end": 9896.98,
+ "text": "you"
+ },
+ {
+ "id": 20136,
+ "start": 9896.98,
+ "end": 9897.12,
+ "text": "have"
+ },
+ {
+ "id": 20137,
+ "start": 9897.12,
+ "end": 9897.18,
+ "text": "a"
+ },
+ {
+ "id": 20138,
+ "start": 9897.18,
+ "end": 9897.5,
+ "text": "page"
+ },
+ {
+ "id": 20139,
+ "start": 9897.5,
+ "end": 9898.18,
+ "text": "you'll"
+ },
+ {
+ "id": 20140,
+ "start": 9898.18,
+ "end": 9898.42,
+ "text": "probably"
+ },
+ {
+ "id": 20141,
+ "start": 9898.42,
+ "end": 9898.54,
+ "text": "want"
+ },
+ {
+ "id": 20142,
+ "start": 9898.54,
+ "end": 9898.6,
+ "text": "to"
+ },
+ {
+ "id": 20143,
+ "start": 9898.6,
+ "end": 9898.72,
+ "text": "put"
+ },
+ {
+ "id": 20144,
+ "start": 9898.72,
+ "end": 9899.16,
+ "text": "some"
+ },
+ {
+ "id": 20145,
+ "start": 9899.16,
+ "end": 9899.38,
+ "text": "stuff"
+ },
+ {
+ "id": 20146,
+ "start": 9899.38,
+ "end": 9899.48,
+ "text": "out"
+ },
+ {
+ "id": 20147,
+ "start": 9899.48,
+ "end": 9899.68,
+ "text": "there"
+ },
+ {
+ "id": 20148,
+ "start": 9899.68,
+ "end": 9900.06,
+ "text": "publicly."
+ },
+ {
+ "id": 20149,
+ "start": 9900.06,
+ "end": 9900.24,
+ "text": "So"
+ },
+ {
+ "id": 20150,
+ "start": 9900.24,
+ "end": 9900.34,
+ "text": "you"
+ },
+ {
+ "id": 20151,
+ "start": 9900.34,
+ "end": 9900.48,
+ "text": "can"
+ },
+ {
+ "id": 20152,
+ "start": 9900.48,
+ "end": 9900.9,
+ "text": "communicate"
+ },
+ {
+ "id": 20153,
+ "start": 9900.9,
+ "end": 9901.04,
+ "text": "with"
+ },
+ {
+ "id": 20154,
+ "start": 9901.04,
+ "end": 9901.18,
+ "text": "your"
+ },
+ {
+ "id": 20155,
+ "start": 9901.18,
+ "end": 9901.78,
+ "text": "constituents"
+ },
+ {
+ "id": 20156,
+ "start": 9901.78,
+ "end": 9902.34,
+ "text": "there"
+ },
+ {
+ "id": 20157,
+ "start": 9902.34,
+ "end": 9902.46,
+ "text": "are"
+ },
+ {
+ "id": 20158,
+ "start": 9902.46,
+ "end": 9902.58,
+ "text": "all"
+ },
+ {
+ "id": 20159,
+ "start": 9902.58,
+ "end": 9902.8,
+ "text": "these"
+ },
+ {
+ "id": 20160,
+ "start": 9902.8,
+ "end": 9903.1,
+ "text": "different"
+ },
+ {
+ "id": 20161,
+ "start": 9903.1,
+ "end": 9903.34,
+ "text": "groups"
+ },
+ {
+ "id": 20162,
+ "start": 9903.34,
+ "end": 9903.5,
+ "text": "of"
+ },
+ {
+ "id": 20163,
+ "start": 9903.5,
+ "end": 9903.74,
+ "text": "people"
+ },
+ {
+ "id": 20164,
+ "start": 9903.74,
+ "end": 9903.92,
+ "text": "that"
+ },
+ {
+ "id": 20165,
+ "start": 9903.92,
+ "end": 9904.26,
+ "text": "someone"
+ },
+ {
+ "id": 20166,
+ "start": 9904.26,
+ "end": 9904.48,
+ "text": "might"
+ },
+ {
+ "id": 20167,
+ "start": 9904.48,
+ "end": 9904.66,
+ "text": "want"
+ },
+ {
+ "id": 20168,
+ "start": 9904.66,
+ "end": 9904.8,
+ "text": "to"
+ },
+ {
+ "id": 20169,
+ "start": 9904.8,
+ "end": 9905.16,
+ "text": "connect"
+ },
+ {
+ "id": 20170,
+ "start": 9905.16,
+ "end": 9905.36,
+ "text": "with."
+ },
+ {
+ "id": 20171,
+ "start": 9905.36,
+ "end": 9905.96,
+ "text": "And"
+ },
+ {
+ "id": 20172,
+ "start": 9905.96,
+ "end": 9906.28,
+ "text": "those"
+ },
+ {
+ "id": 20173,
+ "start": 9906.28,
+ "end": 9906.78,
+ "text": "controls"
+ },
+ {
+ "id": 20174,
+ "start": 9906.78,
+ "end": 9907,
+ "text": "are"
+ },
+ {
+ "id": 20175,
+ "start": 9907,
+ "end": 9907.77,
+ "text": "very"
+ },
+ {
+ "id": 20176,
+ "start": 9907.77,
+ "end": 9908.11,
+ "text": "and"
+ },
+ {
+ "id": 20177,
+ "start": 9908.11,
+ "end": 9908.53,
+ "text": "practice"
+ },
+ {
+ "id": 20178,
+ "start": 9908.53,
+ "end": 9908.69,
+ "text": "for"
+ },
+ {
+ "id": 20179,
+ "start": 9908.69,
+ "end": 9908.79,
+ "text": "the"
+ },
+ {
+ "id": 20180,
+ "start": 9908.79,
+ "end": 9909.37,
+ "text": "operation"
+ },
+ {
+ "id": 20181,
+ "start": 9909.37,
+ "end": 9909.49,
+ "text": "of"
+ },
+ {
+ "id": 20182,
+ "start": 9909.49,
+ "end": 9909.61,
+ "text": "the"
+ },
+ {
+ "id": 20183,
+ "start": 9909.61,
+ "end": 9910.01,
+ "text": "service."
+ },
+ {
+ "id": 20184,
+ "start": 9910.01,
+ "end": 9910.31,
+ "text": "Not"
+ },
+ {
+ "id": 20185,
+ "start": 9910.31,
+ "end": 9910.87,
+ "text": "just"
+ },
+ {
+ "id": 20186,
+ "start": 9910.87,
+ "end": 9910.99,
+ "text": "to"
+ },
+ {
+ "id": 20187,
+ "start": 9910.99,
+ "end": 9911.23,
+ "text": "build"
+ },
+ {
+ "id": 20188,
+ "start": 9911.23,
+ "end": 9911.57,
+ "text": "trust."
+ },
+ {
+ "id": 20189,
+ "start": 9911.57,
+ "end": 9911.89,
+ "text": "Although"
+ },
+ {
+ "id": 20190,
+ "start": 9911.89,
+ "end": 9911.95,
+ "text": "I"
+ },
+ {
+ "id": 20191,
+ "start": 9911.95,
+ "end": 9912.11,
+ "text": "think"
+ },
+ {
+ "id": 20192,
+ "start": 9912.11,
+ "end": 9912.23,
+ "text": "that"
+ },
+ {
+ "id": 20193,
+ "start": 9912.23,
+ "end": 9912.41,
+ "text": "the"
+ },
+ {
+ "id": 20194,
+ "start": 9912.41,
+ "end": 9913.21,
+ "text": "providing"
+ },
+ {
+ "id": 20195,
+ "start": 9913.21,
+ "end": 9913.43,
+ "text": "people"
+ },
+ {
+ "id": 20196,
+ "start": 9913.43,
+ "end": 9913.59,
+ "text": "with"
+ },
+ {
+ "id": 20197,
+ "start": 9913.59,
+ "end": 9913.99,
+ "text": "control"
+ },
+ {
+ "id": 20198,
+ "start": 9913.99,
+ "end": 9914.35,
+ "text": "also"
+ },
+ {
+ "id": 20199,
+ "start": 9914.35,
+ "end": 9914.59,
+ "text": "does"
+ },
+ {
+ "id": 20200,
+ "start": 9914.59,
+ "end": 9914.91,
+ "text": "that."
+ },
+ {
+ "id": 20201,
+ "start": 9914.91,
+ "end": 9915.59,
+ "text": "But"
+ },
+ {
+ "id": 20202,
+ "start": 9915.59,
+ "end": 9916.15,
+ "text": "actually"
+ },
+ {
+ "id": 20203,
+ "start": 9916.15,
+ "end": 9916.27,
+ "text": "in"
+ },
+ {
+ "id": 20204,
+ "start": 9916.27,
+ "end": 9916.51,
+ "text": "order"
+ },
+ {
+ "id": 20205,
+ "start": 9916.51,
+ "end": 9916.61,
+ "text": "to"
+ },
+ {
+ "id": 20206,
+ "start": 9916.61,
+ "end": 9916.77,
+ "text": "make"
+ },
+ {
+ "id": 20207,
+ "start": 9916.77,
+ "end": 9916.89,
+ "text": "it"
+ },
+ {
+ "id": 20208,
+ "start": 9916.89,
+ "end": 9917.09,
+ "text": "that"
+ },
+ {
+ "id": 20209,
+ "start": 9917.09,
+ "end": 9917.37,
+ "text": "people"
+ },
+ {
+ "id": 20210,
+ "start": 9917.37,
+ "end": 9917.57,
+ "text": "can"
+ },
+ {
+ "id": 20211,
+ "start": 9917.57,
+ "end": 9917.93,
+ "text": "fulfill"
+ },
+ {
+ "id": 20212,
+ "start": 9917.93,
+ "end": 9918.11,
+ "text": "their"
+ },
+ {
+ "id": 20213,
+ "start": 9918.11,
+ "end": 9918.35,
+ "text": "goals"
+ },
+ {
+ "id": 20214,
+ "start": 9918.35,
+ "end": 9918.53,
+ "text": "with"
+ },
+ {
+ "id": 20215,
+ "start": 9918.53,
+ "end": 9918.65,
+ "text": "the"
+ },
+ {
+ "id": 20216,
+ "start": 9918.65,
+ "end": 9919.32,
+ "text": "service."
+ },
+ {
+ "id": 20217,
+ "start": 9919.32,
+ "end": 9920.08,
+ "text": "Senator."
+ },
+ {
+ "id": 20218,
+ "start": 9920.08,
+ "end": 9920.36,
+ "text": "Cool,"
+ },
+ {
+ "id": 20219,
+ "start": 9920.36,
+ "end": 9920.82,
+ "text": "thank"
+ },
+ {
+ "id": 20220,
+ "start": 9920.82,
+ "end": 9921.02,
+ "text": "you."
+ },
+ {
+ "id": 20221,
+ "start": 9921.02,
+ "end": 9921.5,
+ "text": "Thank"
+ },
+ {
+ "id": 20222,
+ "start": 9921.5,
+ "end": 9921.6,
+ "text": "you,"
+ },
+ {
+ "id": 20223,
+ "start": 9921.6,
+ "end": 9921.92,
+ "text": "chairman."
+ },
+ {
+ "id": 20224,
+ "start": 9921.92,
+ "end": 9922.28,
+ "text": "Grassley."
+ },
+ {
+ "id": 20225,
+ "start": 9922.28,
+ "end": 9922.46,
+ "text": "Thank"
+ },
+ {
+ "id": 20226,
+ "start": 9922.46,
+ "end": 9922.58,
+ "text": "you,"
+ },
+ {
+ "id": 20227,
+ "start": 9922.58,
+ "end": 9922.84,
+ "text": "Mr"
+ },
+ {
+ "id": 20228,
+ "start": 9922.84,
+ "end": 9923.3,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 20229,
+ "start": 9923.3,
+ "end": 9923.46,
+ "text": "for"
+ },
+ {
+ "id": 20230,
+ "start": 9923.46,
+ "end": 9923.76,
+ "text": "joining"
+ },
+ {
+ "id": 20231,
+ "start": 9923.76,
+ "end": 9923.9,
+ "text": "us"
+ },
+ {
+ "id": 20232,
+ "start": 9923.9,
+ "end": 9924.14,
+ "text": "today."
+ },
+ {
+ "id": 20233,
+ "start": 9924.14,
+ "end": 9924.34,
+ "text": "I"
+ },
+ {
+ "id": 20234,
+ "start": 9924.34,
+ "end": 9924.52,
+ "text": "think"
+ },
+ {
+ "id": 20235,
+ "start": 9924.52,
+ "end": 9924.68,
+ "text": "the"
+ },
+ {
+ "id": 20236,
+ "start": 9924.68,
+ "end": 9924.92,
+ "text": "whole"
+ },
+ {
+ "id": 20237,
+ "start": 9924.92,
+ "end": 9925.28,
+ "text": "reason"
+ },
+ {
+ "id": 20238,
+ "start": 9925.28,
+ "end": 9925.5,
+ "text": "we're"
+ },
+ {
+ "id": 20239,
+ "start": 9925.5,
+ "end": 9925.82,
+ "text": "having"
+ },
+ {
+ "id": 20240,
+ "start": 9925.82,
+ "end": 9925.98,
+ "text": "this"
+ },
+ {
+ "id": 20241,
+ "start": 9925.98,
+ "end": 9926.26,
+ "text": "hearing"
+ },
+ {
+ "id": 20242,
+ "start": 9926.26,
+ "end": 9926.88,
+ "text": "is"
+ },
+ {
+ "id": 20243,
+ "start": 9926.88,
+ "end": 9927.18,
+ "text": "because"
+ },
+ {
+ "id": 20244,
+ "start": 9927.18,
+ "end": 9927.3,
+ "text": "of"
+ },
+ {
+ "id": 20245,
+ "start": 9927.3,
+ "end": 9927.9,
+ "text": "attention"
+ },
+ {
+ "id": 20246,
+ "start": 9927.9,
+ "end": 9928.32,
+ "text": "between"
+ },
+ {
+ "id": 20247,
+ "start": 9928.32,
+ "end": 9928.6,
+ "text": "two"
+ },
+ {
+ "id": 20248,
+ "start": 9928.6,
+ "end": 9928.98,
+ "text": "basic"
+ },
+ {
+ "id": 20249,
+ "start": 9928.98,
+ "end": 9929.46,
+ "text": "principles."
+ },
+ {
+ "id": 20250,
+ "start": 9929.46,
+ "end": 9929.68,
+ "text": "You've"
+ },
+ {
+ "id": 20251,
+ "start": 9929.68,
+ "end": 9929.84,
+ "text": "laid"
+ },
+ {
+ "id": 20252,
+ "start": 9929.84,
+ "end": 9930.44,
+ "text": "out"
+ },
+ {
+ "id": 20253,
+ "start": 9930.44,
+ "end": 9931.08,
+ "text": "first."
+ },
+ {
+ "id": 20254,
+ "start": 9931.08,
+ "end": 9931.3,
+ "text": "You've"
+ },
+ {
+ "id": 20255,
+ "start": 9931.3,
+ "end": 9931.5,
+ "text": "said"
+ },
+ {
+ "id": 20256,
+ "start": 9931.5,
+ "end": 9931.7,
+ "text": "about"
+ },
+ {
+ "id": 20257,
+ "start": 9931.7,
+ "end": 9931.88,
+ "text": "the"
+ },
+ {
+ "id": 20258,
+ "start": 9931.88,
+ "end": 9932.24,
+ "text": "data"
+ },
+ {
+ "id": 20259,
+ "start": 9932.24,
+ "end": 9932.4,
+ "text": "that"
+ },
+ {
+ "id": 20260,
+ "start": 9932.4,
+ "end": 9932.78,
+ "text": "users"
+ },
+ {
+ "id": 20261,
+ "start": 9932.78,
+ "end": 9933.06,
+ "text": "post"
+ },
+ {
+ "id": 20262,
+ "start": 9933.06,
+ "end": 9933.22,
+ "text": "on"
+ },
+ {
+ "id": 20263,
+ "start": 9933.22,
+ "end": 9933.64,
+ "text": "Facebook."
+ },
+ {
+ "id": 20264,
+ "start": 9933.64,
+ "end": 9933.86,
+ "text": "You"
+ },
+ {
+ "id": 20265,
+ "start": 9933.86,
+ "end": 9934.48,
+ "text": "control"
+ },
+ {
+ "id": 20266,
+ "start": 9934.48,
+ "end": 9934.64,
+ "text": "and"
+ },
+ {
+ "id": 20267,
+ "start": 9934.64,
+ "end": 9934.9,
+ "text": "own"
+ },
+ {
+ "id": 20268,
+ "start": 9934.9,
+ "end": 9935.04,
+ "text": "the"
+ },
+ {
+ "id": 20269,
+ "start": 9935.04,
+ "end": 9935.34,
+ "text": "data"
+ },
+ {
+ "id": 20270,
+ "start": 9935.34,
+ "end": 9935.88,
+ "text": "that"
+ },
+ {
+ "id": 20271,
+ "start": 9935.88,
+ "end": 9936.02,
+ "text": "you"
+ },
+ {
+ "id": 20272,
+ "start": 9936.02,
+ "end": 9936.34,
+ "text": "put"
+ },
+ {
+ "id": 20273,
+ "start": 9936.34,
+ "end": 9936.76,
+ "text": "on"
+ },
+ {
+ "id": 20274,
+ "start": 9936.76,
+ "end": 9937.18,
+ "text": "Facebook."
+ },
+ {
+ "id": 20275,
+ "start": 9937.18,
+ "end": 9937.64,
+ "text": "You"
+ },
+ {
+ "id": 20276,
+ "start": 9937.64,
+ "end": 9937.84,
+ "text": "said"
+ },
+ {
+ "id": 20277,
+ "start": 9937.84,
+ "end": 9938,
+ "text": "some"
+ },
+ {
+ "id": 20278,
+ "start": 9938,
+ "end": 9938.2,
+ "text": "very"
+ },
+ {
+ "id": 20279,
+ "start": 9938.2,
+ "end": 9938.7,
+ "text": "positive"
+ },
+ {
+ "id": 20280,
+ "start": 9938.7,
+ "end": 9939.24,
+ "text": "optimistic"
+ },
+ {
+ "id": 20281,
+ "start": 9939.24,
+ "end": 9939.5,
+ "text": "things"
+ },
+ {
+ "id": 20282,
+ "start": 9939.5,
+ "end": 9939.72,
+ "text": "about"
+ },
+ {
+ "id": 20283,
+ "start": 9939.72,
+ "end": 9940.24,
+ "text": "privacy"
+ },
+ {
+ "id": 20284,
+ "start": 9940.24,
+ "end": 9940.36,
+ "text": "and"
+ },
+ {
+ "id": 20285,
+ "start": 9940.36,
+ "end": 9940.6,
+ "text": "data"
+ },
+ {
+ "id": 20286,
+ "start": 9940.6,
+ "end": 9941.02,
+ "text": "ownership."
+ },
+ {
+ "id": 20287,
+ "start": 9941.02,
+ "end": 9941.72,
+ "text": "But"
+ },
+ {
+ "id": 20288,
+ "start": 9941.72,
+ "end": 9941.86,
+ "text": "it's"
+ },
+ {
+ "id": 20289,
+ "start": 9941.86,
+ "end": 9942.1,
+ "text": "also"
+ },
+ {
+ "id": 20290,
+ "start": 9942.1,
+ "end": 9942.24,
+ "text": "the"
+ },
+ {
+ "id": 20291,
+ "start": 9942.24,
+ "end": 9942.7,
+ "text": "reality"
+ },
+ {
+ "id": 20292,
+ "start": 9942.7,
+ "end": 9942.98,
+ "text": "that"
+ },
+ {
+ "id": 20293,
+ "start": 9942.98,
+ "end": 9943.48,
+ "text": "Facebook"
+ },
+ {
+ "id": 20294,
+ "start": 9943.48,
+ "end": 9943.64,
+ "text": "is"
+ },
+ {
+ "id": 20295,
+ "start": 9943.64,
+ "end": 9943.76,
+ "text": "a"
+ },
+ {
+ "id": 20296,
+ "start": 9943.76,
+ "end": 9944.28,
+ "text": "for"
+ },
+ {
+ "id": 20297,
+ "start": 9944.28,
+ "end": 9944.68,
+ "text": "profit"
+ },
+ {
+ "id": 20298,
+ "start": 9944.68,
+ "end": 9945.04,
+ "text": "entity"
+ },
+ {
+ "id": 20299,
+ "start": 9945.04,
+ "end": 9945.26,
+ "text": "that"
+ },
+ {
+ "id": 20300,
+ "start": 9945.26,
+ "end": 9946.08,
+ "text": "generated"
+ },
+ {
+ "id": 20301,
+ "start": 9946.08,
+ "end": 9946.84,
+ "text": "40,000,000,000"
+ },
+ {
+ "id": 20302,
+ "start": 9946.84,
+ "end": 9947.16,
+ "text": "dollars"
+ },
+ {
+ "id": 20303,
+ "start": 9947.16,
+ "end": 9947.28,
+ "text": "in"
+ },
+ {
+ "id": 20304,
+ "start": 9947.28,
+ "end": 9947.48,
+ "text": "ad"
+ },
+ {
+ "id": 20305,
+ "start": 9947.48,
+ "end": 9947.9,
+ "text": "revenue"
+ },
+ {
+ "id": 20306,
+ "start": 9947.9,
+ "end": 9948.16,
+ "text": "last"
+ },
+ {
+ "id": 20307,
+ "start": 9948.16,
+ "end": 9948.38,
+ "text": "year"
+ },
+ {
+ "id": 20308,
+ "start": 9948.38,
+ "end": 9948.58,
+ "text": "by"
+ },
+ {
+ "id": 20309,
+ "start": 9948.58,
+ "end": 9949.18,
+ "text": "targeting"
+ },
+ {
+ "id": 20310,
+ "start": 9949.18,
+ "end": 9949.9,
+ "text": "ads."
+ },
+ {
+ "id": 20311,
+ "start": 9949.9,
+ "end": 9950.3,
+ "text": "In"
+ },
+ {
+ "id": 20312,
+ "start": 9950.3,
+ "end": 9950.54,
+ "text": "fact,"
+ },
+ {
+ "id": 20313,
+ "start": 9950.54,
+ "end": 9951.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 20314,
+ "start": 9951.1,
+ "end": 9951.52,
+ "text": "claims"
+ },
+ {
+ "id": 20315,
+ "start": 9951.52,
+ "end": 9951.88,
+ "text": "that"
+ },
+ {
+ "id": 20316,
+ "start": 9951.88,
+ "end": 9952.7,
+ "text": "advertising"
+ },
+ {
+ "id": 20317,
+ "start": 9952.7,
+ "end": 9953.26,
+ "text": "makes"
+ },
+ {
+ "id": 20318,
+ "start": 9953.26,
+ "end": 9953.42,
+ "text": "it"
+ },
+ {
+ "id": 20319,
+ "start": 9953.42,
+ "end": 9953.7,
+ "text": "easy"
+ },
+ {
+ "id": 20320,
+ "start": 9953.7,
+ "end": 9953.92,
+ "text": "to"
+ },
+ {
+ "id": 20321,
+ "start": 9953.92,
+ "end": 9954.18,
+ "text": "find"
+ },
+ {
+ "id": 20322,
+ "start": 9954.18,
+ "end": 9954.3,
+ "text": "the"
+ },
+ {
+ "id": 20323,
+ "start": 9954.3,
+ "end": 9954.52,
+ "text": "right"
+ },
+ {
+ "id": 20324,
+ "start": 9954.52,
+ "end": 9954.78,
+ "text": "people"
+ },
+ {
+ "id": 20325,
+ "start": 9954.78,
+ "end": 9955.3,
+ "text": "capture"
+ },
+ {
+ "id": 20326,
+ "start": 9955.3,
+ "end": 9955.46,
+ "text": "their"
+ },
+ {
+ "id": 20327,
+ "start": 9955.46,
+ "end": 9955.82,
+ "text": "attention"
+ },
+ {
+ "id": 20328,
+ "start": 9955.82,
+ "end": 9955.98,
+ "text": "and"
+ },
+ {
+ "id": 20329,
+ "start": 9955.98,
+ "end": 9956.16,
+ "text": "get"
+ },
+ {
+ "id": 20330,
+ "start": 9956.16,
+ "end": 9956.56,
+ "text": "results"
+ },
+ {
+ "id": 20331,
+ "start": 9956.56,
+ "end": 9956.72,
+ "text": "and"
+ },
+ {
+ "id": 20332,
+ "start": 9956.72,
+ "end": 9956.9,
+ "text": "you"
+ },
+ {
+ "id": 20333,
+ "start": 9956.9,
+ "end": 9957.48,
+ "text": "recognize"
+ },
+ {
+ "id": 20334,
+ "start": 9957.48,
+ "end": 9957.66,
+ "text": "that"
+ },
+ {
+ "id": 20335,
+ "start": 9957.66,
+ "end": 9957.8,
+ "text": "an"
+ },
+ {
+ "id": 20336,
+ "start": 9957.8,
+ "end": 9958.1,
+ "text": "ad"
+ },
+ {
+ "id": 20337,
+ "start": 9958.1,
+ "end": 9958.62,
+ "text": "supported"
+ },
+ {
+ "id": 20338,
+ "start": 9958.62,
+ "end": 9959,
+ "text": "service"
+ },
+ {
+ "id": 20339,
+ "start": 9959,
+ "end": 9959.78,
+ "text": "is,"
+ },
+ {
+ "id": 20340,
+ "start": 9959.78,
+ "end": 9959.96,
+ "text": "as"
+ },
+ {
+ "id": 20341,
+ "start": 9959.96,
+ "end": 9960.1,
+ "text": "you"
+ },
+ {
+ "id": 20342,
+ "start": 9960.1,
+ "end": 9960.26,
+ "text": "said"
+ },
+ {
+ "id": 20343,
+ "start": 9960.26,
+ "end": 9960.54,
+ "text": "earlier"
+ },
+ {
+ "id": 20344,
+ "start": 9960.54,
+ "end": 9960.82,
+ "text": "today,"
+ },
+ {
+ "id": 20345,
+ "start": 9960.82,
+ "end": 9961.12,
+ "text": "best"
+ },
+ {
+ "id": 20346,
+ "start": 9961.12,
+ "end": 9961.66,
+ "text": "aligned"
+ },
+ {
+ "id": 20347,
+ "start": 9961.66,
+ "end": 9962,
+ "text": "with"
+ },
+ {
+ "id": 20348,
+ "start": 9962,
+ "end": 9962.22,
+ "text": "your"
+ },
+ {
+ "id": 20349,
+ "start": 9962.22,
+ "end": 9962.62,
+ "text": "mission"
+ },
+ {
+ "id": 20350,
+ "start": 9962.62,
+ "end": 9962.74,
+ "text": "and"
+ },
+ {
+ "id": 20351,
+ "start": 9962.74,
+ "end": 9963.56,
+ "text": "values."
+ },
+ {
+ "id": 20352,
+ "start": 9963.56,
+ "end": 9964.14,
+ "text": "But"
+ },
+ {
+ "id": 20353,
+ "start": 9964.14,
+ "end": 9964.26,
+ "text": "the"
+ },
+ {
+ "id": 20354,
+ "start": 9964.26,
+ "end": 9964.62,
+ "text": "reality"
+ },
+ {
+ "id": 20355,
+ "start": 9964.62,
+ "end": 9964.74,
+ "text": "is"
+ },
+ {
+ "id": 20356,
+ "start": 9964.74,
+ "end": 9965.02,
+ "text": "there's"
+ },
+ {
+ "id": 20357,
+ "start": 9965.02,
+ "end": 9965.06,
+ "text": "a"
+ },
+ {
+ "id": 20358,
+ "start": 9965.06,
+ "end": 9965.24,
+ "text": "lot"
+ },
+ {
+ "id": 20359,
+ "start": 9965.24,
+ "end": 9965.36,
+ "text": "of"
+ },
+ {
+ "id": 20360,
+ "start": 9965.36,
+ "end": 9965.92,
+ "text": "examples"
+ },
+ {
+ "id": 20361,
+ "start": 9965.92,
+ "end": 9966.46,
+ "text": "where"
+ },
+ {
+ "id": 20362,
+ "start": 9966.46,
+ "end": 9966.84,
+ "text": "ad"
+ },
+ {
+ "id": 20363,
+ "start": 9966.84,
+ "end": 9967.34,
+ "text": "targeting"
+ },
+ {
+ "id": 20364,
+ "start": 9967.34,
+ "end": 9967.58,
+ "text": "has"
+ },
+ {
+ "id": 20365,
+ "start": 9967.58,
+ "end": 9967.8,
+ "text": "led"
+ },
+ {
+ "id": 20366,
+ "start": 9967.8,
+ "end": 9967.92,
+ "text": "to"
+ },
+ {
+ "id": 20367,
+ "start": 9967.92,
+ "end": 9968.32,
+ "text": "results"
+ },
+ {
+ "id": 20368,
+ "start": 9968.32,
+ "end": 9968.52,
+ "text": "that"
+ },
+ {
+ "id": 20369,
+ "start": 9968.52,
+ "end": 9968.6,
+ "text": "I"
+ },
+ {
+ "id": 20370,
+ "start": 9968.6,
+ "end": 9968.8,
+ "text": "think"
+ },
+ {
+ "id": 20371,
+ "start": 9968.8,
+ "end": 9968.96,
+ "text": "we"
+ },
+ {
+ "id": 20372,
+ "start": 9968.96,
+ "end": 9969.14,
+ "text": "would"
+ },
+ {
+ "id": 20373,
+ "start": 9969.14,
+ "end": 9969.5,
+ "text": "all"
+ },
+ {
+ "id": 20374,
+ "start": 9969.5,
+ "end": 9970.54,
+ "text": "disagree"
+ },
+ {
+ "id": 20375,
+ "start": 9970.54,
+ "end": 9970.72,
+ "text": "with"
+ },
+ {
+ "id": 20376,
+ "start": 9970.72,
+ "end": 9971,
+ "text": "or"
+ },
+ {
+ "id": 20377,
+ "start": 9971,
+ "end": 9971.5,
+ "text": "dislike"
+ },
+ {
+ "id": 20378,
+ "start": 9971.5,
+ "end": 9971.62,
+ "text": "or"
+ },
+ {
+ "id": 20379,
+ "start": 9971.62,
+ "end": 9971.78,
+ "text": "would"
+ },
+ {
+ "id": 20380,
+ "start": 9971.78,
+ "end": 9972.14,
+ "text": "concern"
+ },
+ {
+ "id": 20381,
+ "start": 9972.14,
+ "end": 9972.28,
+ "text": "us."
+ },
+ {
+ "id": 20382,
+ "start": 9972.28,
+ "end": 9973.16,
+ "text": "You've"
+ },
+ {
+ "id": 20383,
+ "start": 9973.16,
+ "end": 9973.38,
+ "text": "already"
+ },
+ {
+ "id": 20384,
+ "start": 9973.38,
+ "end": 9973.72,
+ "text": "admitted"
+ },
+ {
+ "id": 20385,
+ "start": 9973.72,
+ "end": 9973.92,
+ "text": "that"
+ },
+ {
+ "id": 20386,
+ "start": 9973.92,
+ "end": 9974.38,
+ "text": "Facebook's"
+ },
+ {
+ "id": 20387,
+ "start": 9974.38,
+ "end": 9974.84,
+ "text": "on"
+ },
+ {
+ "id": 20388,
+ "start": 9974.84,
+ "end": 9975.34,
+ "text": "tools"
+ },
+ {
+ "id": 20389,
+ "start": 9975.34,
+ "end": 9975.86,
+ "text": "allowed"
+ },
+ {
+ "id": 20390,
+ "start": 9975.86,
+ "end": 9976.34,
+ "text": "Russians"
+ },
+ {
+ "id": 20391,
+ "start": 9976.34,
+ "end": 9976.56,
+ "text": "to"
+ },
+ {
+ "id": 20392,
+ "start": 9976.56,
+ "end": 9977.04,
+ "text": "target"
+ },
+ {
+ "id": 20393,
+ "start": 9977.04,
+ "end": 9977.94,
+ "text": "users"
+ },
+ {
+ "id": 20394,
+ "start": 9977.94,
+ "end": 9978.8,
+ "text": "voters"
+ },
+ {
+ "id": 20395,
+ "start": 9978.8,
+ "end": 9979.5,
+ "text": "based"
+ },
+ {
+ "id": 20396,
+ "start": 9979.5,
+ "end": 9979.64,
+ "text": "on"
+ },
+ {
+ "id": 20397,
+ "start": 9979.64,
+ "end": 9980.12,
+ "text": "racist"
+ },
+ {
+ "id": 20398,
+ "start": 9980.12,
+ "end": 9980.28,
+ "text": "or"
+ },
+ {
+ "id": 20399,
+ "start": 9980.28,
+ "end": 9980.58,
+ "text": "Anti"
+ },
+ {
+ "id": 20400,
+ "start": 9980.58,
+ "end": 9980.94,
+ "text": "Muslim"
+ },
+ {
+ "id": 20401,
+ "start": 9980.94,
+ "end": 9981.1,
+ "text": "or"
+ },
+ {
+ "id": 20402,
+ "start": 9981.1,
+ "end": 9981.82,
+ "text": "Antiimmigrant"
+ },
+ {
+ "id": 20403,
+ "start": 9981.82,
+ "end": 9982.14,
+ "text": "views."
+ },
+ {
+ "id": 20404,
+ "start": 9982.14,
+ "end": 9982.28,
+ "text": "And"
+ },
+ {
+ "id": 20405,
+ "start": 9982.28,
+ "end": 9982.42,
+ "text": "that"
+ },
+ {
+ "id": 20406,
+ "start": 9982.42,
+ "end": 9982.64,
+ "text": "that"
+ },
+ {
+ "id": 20407,
+ "start": 9982.64,
+ "end": 9982.94,
+ "text": "may"
+ },
+ {
+ "id": 20408,
+ "start": 9982.94,
+ "end": 9983.1,
+ "text": "have"
+ },
+ {
+ "id": 20409,
+ "start": 9983.1,
+ "end": 9983.34,
+ "text": "played"
+ },
+ {
+ "id": 20410,
+ "start": 9983.34,
+ "end": 9983.42,
+ "text": "a"
+ },
+ {
+ "id": 20411,
+ "start": 9983.42,
+ "end": 9984,
+ "text": "significant"
+ },
+ {
+ "id": 20412,
+ "start": 9984,
+ "end": 9984.26,
+ "text": "role"
+ },
+ {
+ "id": 20413,
+ "start": 9984.26,
+ "end": 9984.5,
+ "text": "in"
+ },
+ {
+ "id": 20414,
+ "start": 9984.5,
+ "end": 9984.64,
+ "text": "an"
+ },
+ {
+ "id": 20415,
+ "start": 9984.64,
+ "end": 9984.98,
+ "text": "election."
+ },
+ {
+ "id": 20416,
+ "start": 9984.98,
+ "end": 9985.12,
+ "text": "Here"
+ },
+ {
+ "id": 20417,
+ "start": 9985.12,
+ "end": 9985.2,
+ "text": "in"
+ },
+ {
+ "id": 20418,
+ "start": 9985.2,
+ "end": 9985.3,
+ "text": "the"
+ },
+ {
+ "id": 20419,
+ "start": 9985.3,
+ "end": 9985.5,
+ "text": "United"
+ },
+ {
+ "id": 20420,
+ "start": 9985.5,
+ "end": 9986.12,
+ "text": "States."
+ },
+ {
+ "id": 20421,
+ "start": 9986.12,
+ "end": 9986.62,
+ "text": "Just"
+ },
+ {
+ "id": 20422,
+ "start": 9986.62,
+ "end": 9986.9,
+ "text": "today,"
+ },
+ {
+ "id": 20423,
+ "start": 9986.9,
+ "end": 9987.24,
+ "text": "Time"
+ },
+ {
+ "id": 20424,
+ "start": 9987.24,
+ "end": 9987.7,
+ "text": "magazine"
+ },
+ {
+ "id": 20425,
+ "start": 9987.7,
+ "end": 9988.06,
+ "text": "posted"
+ },
+ {
+ "id": 20426,
+ "start": 9988.06,
+ "end": 9988.1,
+ "text": "a"
+ },
+ {
+ "id": 20427,
+ "start": 9988.1,
+ "end": 9988.42,
+ "text": "story"
+ },
+ {
+ "id": 20428,
+ "start": 9988.42,
+ "end": 9988.68,
+ "text": "saying"
+ },
+ {
+ "id": 20429,
+ "start": 9988.68,
+ "end": 9988.84,
+ "text": "that"
+ },
+ {
+ "id": 20430,
+ "start": 9988.84,
+ "end": 9989.32,
+ "text": "wildlife"
+ },
+ {
+ "id": 20431,
+ "start": 9989.32,
+ "end": 9989.86,
+ "text": "traffickers"
+ },
+ {
+ "id": 20432,
+ "start": 9989.86,
+ "end": 9990.04,
+ "text": "are"
+ },
+ {
+ "id": 20433,
+ "start": 9990.04,
+ "end": 9990.64,
+ "text": "continuing"
+ },
+ {
+ "id": 20434,
+ "start": 9990.64,
+ "end": 9990.78,
+ "text": "to"
+ },
+ {
+ "id": 20435,
+ "start": 9990.78,
+ "end": 9990.96,
+ "text": "use"
+ },
+ {
+ "id": 20436,
+ "start": 9990.96,
+ "end": 9991.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 20437,
+ "start": 9991.9,
+ "end": 9992.2,
+ "text": "tools"
+ },
+ {
+ "id": 20438,
+ "start": 9992.2,
+ "end": 9992.34,
+ "text": "to"
+ },
+ {
+ "id": 20439,
+ "start": 9992.34,
+ "end": 9993.02,
+ "text": "advertise"
+ },
+ {
+ "id": 20440,
+ "start": 9993.02,
+ "end": 9993.48,
+ "text": "illegal"
+ },
+ {
+ "id": 20441,
+ "start": 9993.48,
+ "end": 9993.82,
+ "text": "sales"
+ },
+ {
+ "id": 20442,
+ "start": 9993.82,
+ "end": 9994,
+ "text": "of"
+ },
+ {
+ "id": 20443,
+ "start": 9994,
+ "end": 9994.46,
+ "text": "protected"
+ },
+ {
+ "id": 20444,
+ "start": 9994.46,
+ "end": 9994.94,
+ "text": "animal"
+ },
+ {
+ "id": 20445,
+ "start": 9994.94,
+ "end": 9995.26,
+ "text": "parts"
+ },
+ {
+ "id": 20446,
+ "start": 9995.26,
+ "end": 9995.48,
+ "text": "and"
+ },
+ {
+ "id": 20447,
+ "start": 9995.48,
+ "end": 9995.8,
+ "text": "I"
+ },
+ {
+ "id": 20448,
+ "start": 9995.8,
+ "end": 9996.38,
+ "text": "am"
+ },
+ {
+ "id": 20449,
+ "start": 9996.38,
+ "end": 9996.66,
+ "text": "left"
+ },
+ {
+ "id": 20450,
+ "start": 9996.66,
+ "end": 9997.14,
+ "text": "questioning"
+ },
+ {
+ "id": 20451,
+ "start": 9997.14,
+ "end": 9997.58,
+ "text": "whether"
+ },
+ {
+ "id": 20452,
+ "start": 9997.58,
+ "end": 9997.88,
+ "text": "your"
+ },
+ {
+ "id": 20453,
+ "start": 9997.88,
+ "end": 9998.14,
+ "text": "ad"
+ },
+ {
+ "id": 20454,
+ "start": 9998.14,
+ "end": 9998.6,
+ "text": "targeting"
+ },
+ {
+ "id": 20455,
+ "start": 9998.6,
+ "end": 9999,
+ "text": "tools"
+ },
+ {
+ "id": 20456,
+ "start": 9999,
+ "end": 9999.22,
+ "text": "would"
+ },
+ {
+ "id": 20457,
+ "start": 9999.22,
+ "end": 9999.66,
+ "text": "allow"
+ },
+ {
+ "id": 20458,
+ "start": 9999.66,
+ "end": 10000.48,
+ "text": "other"
+ },
+ {
+ "id": 20459,
+ "start": 10000.48,
+ "end": 10000.98,
+ "text": "concerning"
+ },
+ {
+ "id": 20460,
+ "start": 10000.98,
+ "end": 10001.58,
+ "text": "practices"
+ },
+ {
+ "id": 20461,
+ "start": 10001.58,
+ "end": 10002.53,
+ "text": "like"
+ },
+ {
+ "id": 20462,
+ "start": 10002.53,
+ "end": 10003.53,
+ "text": "manufacturers,"
+ },
+ {
+ "id": 20463,
+ "start": 10003.53,
+ "end": 10004.05,
+ "text": "targeting"
+ },
+ {
+ "id": 20464,
+ "start": 10004.05,
+ "end": 10004.71,
+ "text": "teenagers"
+ },
+ {
+ "id": 20465,
+ "start": 10004.71,
+ "end": 10004.83,
+ "text": "who"
+ },
+ {
+ "id": 20466,
+ "start": 10004.83,
+ "end": 10004.95,
+ "text": "are"
+ },
+ {
+ "id": 20467,
+ "start": 10004.95,
+ "end": 10005.35,
+ "text": "struggling"
+ },
+ {
+ "id": 20468,
+ "start": 10005.35,
+ "end": 10005.51,
+ "text": "with"
+ },
+ {
+ "id": 20469,
+ "start": 10005.51,
+ "end": 10005.67,
+ "text": "their"
+ },
+ {
+ "id": 20470,
+ "start": 10005.67,
+ "end": 10005.93,
+ "text": "weight"
+ },
+ {
+ "id": 20471,
+ "start": 10005.93,
+ "end": 10006.19,
+ "text": "or"
+ },
+ {
+ "id": 20472,
+ "start": 10006.19,
+ "end": 10007.07,
+ "text": "allowing"
+ },
+ {
+ "id": 20473,
+ "start": 10007.07,
+ "end": 10007.15,
+ "text": "a"
+ },
+ {
+ "id": 20474,
+ "start": 10007.15,
+ "end": 10007.43,
+ "text": "liquor"
+ },
+ {
+ "id": 20475,
+ "start": 10007.43,
+ "end": 10007.99,
+ "text": "distributor"
+ },
+ {
+ "id": 20476,
+ "start": 10007.99,
+ "end": 10008.15,
+ "text": "to"
+ },
+ {
+ "id": 20477,
+ "start": 10008.15,
+ "end": 10008.51,
+ "text": "target"
+ },
+ {
+ "id": 20478,
+ "start": 10008.51,
+ "end": 10009.25,
+ "text": "Alcoholics"
+ },
+ {
+ "id": 20479,
+ "start": 10009.25,
+ "end": 10009.51,
+ "text": "or"
+ },
+ {
+ "id": 20480,
+ "start": 10009.51,
+ "end": 10010.71,
+ "text": "gambling"
+ },
+ {
+ "id": 20481,
+ "start": 10010.71,
+ "end": 10011.51,
+ "text": "organization"
+ },
+ {
+ "id": 20482,
+ "start": 10011.51,
+ "end": 10011.65,
+ "text": "to"
+ },
+ {
+ "id": 20483,
+ "start": 10011.65,
+ "end": 10011.97,
+ "text": "target"
+ },
+ {
+ "id": 20484,
+ "start": 10011.97,
+ "end": 10012.19,
+ "text": "those"
+ },
+ {
+ "id": 20485,
+ "start": 10012.19,
+ "end": 10012.35,
+ "text": "with"
+ },
+ {
+ "id": 20486,
+ "start": 10012.35,
+ "end": 10012.77,
+ "text": "gambling"
+ },
+ {
+ "id": 20487,
+ "start": 10012.77,
+ "end": 10013.19,
+ "text": "problems"
+ },
+ {
+ "id": 20488,
+ "start": 10013.19,
+ "end": 10014.15,
+ "text": "I'll"
+ },
+ {
+ "id": 20489,
+ "start": 10014.15,
+ "end": 10014.29,
+ "text": "give"
+ },
+ {
+ "id": 20490,
+ "start": 10014.29,
+ "end": 10014.43,
+ "text": "you"
+ },
+ {
+ "id": 20491,
+ "start": 10014.43,
+ "end": 10014.69,
+ "text": "one"
+ },
+ {
+ "id": 20492,
+ "start": 10014.69,
+ "end": 10015.11,
+ "text": "concrete"
+ },
+ {
+ "id": 20493,
+ "start": 10015.11,
+ "end": 10015.47,
+ "text": "example"
+ },
+ {
+ "id": 20494,
+ "start": 10015.47,
+ "end": 10015.61,
+ "text": "I'm"
+ },
+ {
+ "id": 20495,
+ "start": 10015.61,
+ "end": 10015.77,
+ "text": "sure"
+ },
+ {
+ "id": 20496,
+ "start": 10015.77,
+ "end": 10015.97,
+ "text": "you're"
+ },
+ {
+ "id": 20497,
+ "start": 10015.97,
+ "end": 10016.29,
+ "text": "familiar"
+ },
+ {
+ "id": 20498,
+ "start": 10016.29,
+ "end": 10016.45,
+ "text": "with"
+ },
+ {
+ "id": 20499,
+ "start": 10016.45,
+ "end": 10017.17,
+ "text": "ProPublica"
+ },
+ {
+ "id": 20500,
+ "start": 10017.17,
+ "end": 10017.37,
+ "text": "back"
+ },
+ {
+ "id": 20501,
+ "start": 10017.37,
+ "end": 10017.51,
+ "text": "in"
+ },
+ {
+ "id": 20502,
+ "start": 10017.51,
+ "end": 10017.85,
+ "text": "20"
+ },
+ {
+ "id": 20503,
+ "start": 10017.85,
+ "end": 10018.94,
+ "text": "16"
+ },
+ {
+ "id": 20504,
+ "start": 10018.94,
+ "end": 10019.98,
+ "text": "highlighted"
+ },
+ {
+ "id": 20505,
+ "start": 10019.98,
+ "end": 10020.12,
+ "text": "that"
+ },
+ {
+ "id": 20506,
+ "start": 10020.12,
+ "end": 10020.6,
+ "text": "Facebook"
+ },
+ {
+ "id": 20507,
+ "start": 10020.6,
+ "end": 10020.9,
+ "text": "lets"
+ },
+ {
+ "id": 20508,
+ "start": 10020.9,
+ "end": 10021.84,
+ "text": "advertisers"
+ },
+ {
+ "id": 20509,
+ "start": 10021.84,
+ "end": 10022.62,
+ "text": "exclude"
+ },
+ {
+ "id": 20510,
+ "start": 10022.62,
+ "end": 10023.1,
+ "text": "users"
+ },
+ {
+ "id": 20511,
+ "start": 10023.1,
+ "end": 10023.36,
+ "text": "by"
+ },
+ {
+ "id": 20512,
+ "start": 10023.36,
+ "end": 10023.74,
+ "text": "race"
+ },
+ {
+ "id": 20513,
+ "start": 10023.74,
+ "end": 10024.52,
+ "text": "in"
+ },
+ {
+ "id": 20514,
+ "start": 10024.52,
+ "end": 10024.74,
+ "text": "real"
+ },
+ {
+ "id": 20515,
+ "start": 10024.74,
+ "end": 10025.06,
+ "text": "estate"
+ },
+ {
+ "id": 20516,
+ "start": 10025.06,
+ "end": 10026.04,
+ "text": "advertising."
+ },
+ {
+ "id": 20517,
+ "start": 10026.04,
+ "end": 10026.6,
+ "text": "There"
+ },
+ {
+ "id": 20518,
+ "start": 10026.6,
+ "end": 10026.76,
+ "text": "was"
+ },
+ {
+ "id": 20519,
+ "start": 10026.76,
+ "end": 10026.8,
+ "text": "a"
+ },
+ {
+ "id": 20520,
+ "start": 10026.8,
+ "end": 10027.02,
+ "text": "way"
+ },
+ {
+ "id": 20521,
+ "start": 10027.02,
+ "end": 10027.2,
+ "text": "that"
+ },
+ {
+ "id": 20522,
+ "start": 10027.2,
+ "end": 10027.34,
+ "text": "you"
+ },
+ {
+ "id": 20523,
+ "start": 10027.34,
+ "end": 10027.56,
+ "text": "could"
+ },
+ {
+ "id": 20524,
+ "start": 10027.56,
+ "end": 10027.78,
+ "text": "say"
+ },
+ {
+ "id": 20525,
+ "start": 10027.78,
+ "end": 10028,
+ "text": "that"
+ },
+ {
+ "id": 20526,
+ "start": 10028,
+ "end": 10028.4,
+ "text": "this"
+ },
+ {
+ "id": 20527,
+ "start": 10028.4,
+ "end": 10028.92,
+ "text": "particular"
+ },
+ {
+ "id": 20528,
+ "start": 10028.92,
+ "end": 10029.2,
+ "text": "ad"
+ },
+ {
+ "id": 20529,
+ "start": 10029.2,
+ "end": 10029.36,
+ "text": "I"
+ },
+ {
+ "id": 20530,
+ "start": 10029.36,
+ "end": 10029.64,
+ "text": "only"
+ },
+ {
+ "id": 20531,
+ "start": 10029.64,
+ "end": 10029.86,
+ "text": "want"
+ },
+ {
+ "id": 20532,
+ "start": 10029.86,
+ "end": 10029.98,
+ "text": "to"
+ },
+ {
+ "id": 20533,
+ "start": 10029.98,
+ "end": 10030.1,
+ "text": "be"
+ },
+ {
+ "id": 20534,
+ "start": 10030.1,
+ "end": 10030.36,
+ "text": "seen"
+ },
+ {
+ "id": 20535,
+ "start": 10030.36,
+ "end": 10030.54,
+ "text": "by"
+ },
+ {
+ "id": 20536,
+ "start": 10030.54,
+ "end": 10030.76,
+ "text": "white"
+ },
+ {
+ "id": 20537,
+ "start": 10030.76,
+ "end": 10031.02,
+ "text": "folks,"
+ },
+ {
+ "id": 20538,
+ "start": 10031.02,
+ "end": 10031.5,
+ "text": "not"
+ },
+ {
+ "id": 20539,
+ "start": 10031.5,
+ "end": 10031.74,
+ "text": "by"
+ },
+ {
+ "id": 20540,
+ "start": 10031.74,
+ "end": 10032.34,
+ "text": "people"
+ },
+ {
+ "id": 20541,
+ "start": 10032.34,
+ "end": 10032.48,
+ "text": "of"
+ },
+ {
+ "id": 20542,
+ "start": 10032.48,
+ "end": 10032.76,
+ "text": "color."
+ },
+ {
+ "id": 20543,
+ "start": 10032.76,
+ "end": 10032.86,
+ "text": "And"
+ },
+ {
+ "id": 20544,
+ "start": 10032.86,
+ "end": 10033.02,
+ "text": "that"
+ },
+ {
+ "id": 20545,
+ "start": 10033.02,
+ "end": 10033.38,
+ "text": "clearly"
+ },
+ {
+ "id": 20546,
+ "start": 10033.38,
+ "end": 10033.78,
+ "text": "violates"
+ },
+ {
+ "id": 20547,
+ "start": 10033.78,
+ "end": 10034.04,
+ "text": "fair"
+ },
+ {
+ "id": 20548,
+ "start": 10034.04,
+ "end": 10034.34,
+ "text": "housing"
+ },
+ {
+ "id": 20549,
+ "start": 10034.34,
+ "end": 10034.64,
+ "text": "laws."
+ },
+ {
+ "id": 20550,
+ "start": 10034.64,
+ "end": 10034.8,
+ "text": "And"
+ },
+ {
+ "id": 20551,
+ "start": 10034.8,
+ "end": 10035.34,
+ "text": "our"
+ },
+ {
+ "id": 20552,
+ "start": 10035.34,
+ "end": 10035.64,
+ "text": "basic"
+ },
+ {
+ "id": 20553,
+ "start": 10035.64,
+ "end": 10035.86,
+ "text": "sense"
+ },
+ {
+ "id": 20554,
+ "start": 10035.86,
+ "end": 10035.98,
+ "text": "of"
+ },
+ {
+ "id": 20555,
+ "start": 10035.98,
+ "end": 10036.32,
+ "text": "fairness"
+ },
+ {
+ "id": 20556,
+ "start": 10036.32,
+ "end": 10036.4,
+ "text": "in"
+ },
+ {
+ "id": 20557,
+ "start": 10036.4,
+ "end": 10036.5,
+ "text": "the"
+ },
+ {
+ "id": 20558,
+ "start": 10036.5,
+ "end": 10036.74,
+ "text": "United"
+ },
+ {
+ "id": 20559,
+ "start": 10036.74,
+ "end": 10037,
+ "text": "States."
+ },
+ {
+ "id": 20560,
+ "start": 10037,
+ "end": 10037.12,
+ "text": "And"
+ },
+ {
+ "id": 20561,
+ "start": 10037.12,
+ "end": 10037.3,
+ "text": "you"
+ },
+ {
+ "id": 20562,
+ "start": 10037.3,
+ "end": 10038.26,
+ "text": "promptly"
+ },
+ {
+ "id": 20563,
+ "start": 10038.26,
+ "end": 10038.64,
+ "text": "announced"
+ },
+ {
+ "id": 20564,
+ "start": 10038.64,
+ "end": 10038.84,
+ "text": "that"
+ },
+ {
+ "id": 20565,
+ "start": 10038.84,
+ "end": 10039.18,
+ "text": "that"
+ },
+ {
+ "id": 20566,
+ "start": 10039.18,
+ "end": 10039.3,
+ "text": "was"
+ },
+ {
+ "id": 20567,
+ "start": 10039.3,
+ "end": 10039.38,
+ "text": "a"
+ },
+ {
+ "id": 20568,
+ "start": 10039.38,
+ "end": 10039.58,
+ "text": "bad"
+ },
+ {
+ "id": 20569,
+ "start": 10039.58,
+ "end": 10039.88,
+ "text": "idea."
+ },
+ {
+ "id": 20570,
+ "start": 10039.88,
+ "end": 10040.02,
+ "text": "You"
+ },
+ {
+ "id": 20571,
+ "start": 10040.02,
+ "end": 10040.18,
+ "text": "were"
+ },
+ {
+ "id": 20572,
+ "start": 10040.18,
+ "end": 10040.32,
+ "text": "going"
+ },
+ {
+ "id": 20573,
+ "start": 10040.32,
+ "end": 10040.38,
+ "text": "to"
+ },
+ {
+ "id": 20574,
+ "start": 10040.38,
+ "end": 10040.6,
+ "text": "change"
+ },
+ {
+ "id": 20575,
+ "start": 10040.6,
+ "end": 10040.86,
+ "text": "the"
+ },
+ {
+ "id": 20576,
+ "start": 10040.86,
+ "end": 10041.2,
+ "text": "tools"
+ },
+ {
+ "id": 20577,
+ "start": 10041.2,
+ "end": 10041.82,
+ "text": "that"
+ },
+ {
+ "id": 20578,
+ "start": 10041.82,
+ "end": 10041.92,
+ "text": "you"
+ },
+ {
+ "id": 20579,
+ "start": 10041.92,
+ "end": 10042.04,
+ "text": "would"
+ },
+ {
+ "id": 20580,
+ "start": 10042.04,
+ "end": 10042.2,
+ "text": "build"
+ },
+ {
+ "id": 20581,
+ "start": 10042.2,
+ "end": 10042.28,
+ "text": "a"
+ },
+ {
+ "id": 20582,
+ "start": 10042.28,
+ "end": 10042.5,
+ "text": "new"
+ },
+ {
+ "id": 20583,
+ "start": 10042.5,
+ "end": 10042.92,
+ "text": "system"
+ },
+ {
+ "id": 20584,
+ "start": 10042.92,
+ "end": 10043.1,
+ "text": "to"
+ },
+ {
+ "id": 20585,
+ "start": 10043.1,
+ "end": 10043.44,
+ "text": "spot"
+ },
+ {
+ "id": 20586,
+ "start": 10043.44,
+ "end": 10043.6,
+ "text": "and"
+ },
+ {
+ "id": 20587,
+ "start": 10043.6,
+ "end": 10044.04,
+ "text": "reject"
+ },
+ {
+ "id": 20588,
+ "start": 10044.04,
+ "end": 10045.22,
+ "text": "discriminatory"
+ },
+ {
+ "id": 20589,
+ "start": 10045.22,
+ "end": 10045.46,
+ "text": "ads"
+ },
+ {
+ "id": 20590,
+ "start": 10045.46,
+ "end": 10045.64,
+ "text": "to"
+ },
+ {
+ "id": 20591,
+ "start": 10045.64,
+ "end": 10045.98,
+ "text": "violate"
+ },
+ {
+ "id": 20592,
+ "start": 10045.98,
+ "end": 10046.1,
+ "text": "our"
+ },
+ {
+ "id": 20593,
+ "start": 10046.1,
+ "end": 10046.48,
+ "text": "commitment"
+ },
+ {
+ "id": 20594,
+ "start": 10046.48,
+ "end": 10046.58,
+ "text": "to"
+ },
+ {
+ "id": 20595,
+ "start": 10046.58,
+ "end": 10046.86,
+ "text": "fair"
+ },
+ {
+ "id": 20596,
+ "start": 10046.86,
+ "end": 10047.16,
+ "text": "housing."
+ },
+ {
+ "id": 20597,
+ "start": 10047.16,
+ "end": 10047.28,
+ "text": "And"
+ },
+ {
+ "id": 20598,
+ "start": 10047.28,
+ "end": 10047.44,
+ "text": "yet"
+ },
+ {
+ "id": 20599,
+ "start": 10047.44,
+ "end": 10047.62,
+ "text": "a"
+ },
+ {
+ "id": 20600,
+ "start": 10047.62,
+ "end": 10047.9,
+ "text": "year"
+ },
+ {
+ "id": 20601,
+ "start": 10047.9,
+ "end": 10048.2,
+ "text": "later,"
+ },
+ {
+ "id": 20602,
+ "start": 10048.2,
+ "end": 10048.72,
+ "text": "a"
+ },
+ {
+ "id": 20603,
+ "start": 10048.72,
+ "end": 10049.06,
+ "text": "follow"
+ },
+ {
+ "id": 20604,
+ "start": 10049.06,
+ "end": 10049.14,
+ "text": "up"
+ },
+ {
+ "id": 20605,
+ "start": 10049.14,
+ "end": 10049.46,
+ "text": "story"
+ },
+ {
+ "id": 20606,
+ "start": 10049.46,
+ "end": 10049.62,
+ "text": "by"
+ },
+ {
+ "id": 20607,
+ "start": 10049.62,
+ "end": 10050.3,
+ "text": "ProPublica"
+ },
+ {
+ "id": 20608,
+ "start": 10050.3,
+ "end": 10050.5,
+ "text": "said"
+ },
+ {
+ "id": 20609,
+ "start": 10050.5,
+ "end": 10050.66,
+ "text": "that"
+ },
+ {
+ "id": 20610,
+ "start": 10050.66,
+ "end": 10051.28,
+ "text": "those"
+ },
+ {
+ "id": 20611,
+ "start": 10051.28,
+ "end": 10051.68,
+ "text": "changes"
+ },
+ {
+ "id": 20612,
+ "start": 10051.68,
+ "end": 10052.04,
+ "text": "hadn't"
+ },
+ {
+ "id": 20613,
+ "start": 10052.04,
+ "end": 10052.3,
+ "text": "fully"
+ },
+ {
+ "id": 20614,
+ "start": 10052.3,
+ "end": 10052.48,
+ "text": "been"
+ },
+ {
+ "id": 20615,
+ "start": 10052.48,
+ "end": 10052.6,
+ "text": "made"
+ },
+ {
+ "id": 20616,
+ "start": 10052.6,
+ "end": 10052.7,
+ "text": "and"
+ },
+ {
+ "id": 20617,
+ "start": 10052.7,
+ "end": 10052.78,
+ "text": "it"
+ },
+ {
+ "id": 20618,
+ "start": 10052.78,
+ "end": 10052.9,
+ "text": "was"
+ },
+ {
+ "id": 20619,
+ "start": 10052.9,
+ "end": 10053.18,
+ "text": "still"
+ },
+ {
+ "id": 20620,
+ "start": 10053.18,
+ "end": 10053.78,
+ "text": "possible"
+ },
+ {
+ "id": 20621,
+ "start": 10053.78,
+ "end": 10054.34,
+ "text": "to"
+ },
+ {
+ "id": 20622,
+ "start": 10054.34,
+ "end": 10055.16,
+ "text": "target"
+ },
+ {
+ "id": 20623,
+ "start": 10055.16,
+ "end": 10055.8,
+ "text": "housing"
+ },
+ {
+ "id": 20624,
+ "start": 10055.8,
+ "end": 10056.5,
+ "text": "advertisement"
+ },
+ {
+ "id": 20625,
+ "start": 10056.5,
+ "end": 10056.94,
+ "text": "in"
+ },
+ {
+ "id": 20626,
+ "start": 10056.94,
+ "end": 10057,
+ "text": "a"
+ },
+ {
+ "id": 20627,
+ "start": 10057,
+ "end": 10057.16,
+ "text": "way"
+ },
+ {
+ "id": 20628,
+ "start": 10057.16,
+ "end": 10057.32,
+ "text": "that"
+ },
+ {
+ "id": 20629,
+ "start": 10057.32,
+ "end": 10057.46,
+ "text": "was"
+ },
+ {
+ "id": 20630,
+ "start": 10057.46,
+ "end": 10057.9,
+ "text": "racially"
+ },
+ {
+ "id": 20631,
+ "start": 10057.9,
+ "end": 10058.74,
+ "text": "discriminatory."
+ },
+ {
+ "id": 20632,
+ "start": 10058.74,
+ "end": 10059.36,
+ "text": "And"
+ },
+ {
+ "id": 20633,
+ "start": 10059.36,
+ "end": 10059.56,
+ "text": "my"
+ },
+ {
+ "id": 20634,
+ "start": 10059.56,
+ "end": 10060.04,
+ "text": "concern"
+ },
+ {
+ "id": 20635,
+ "start": 10060.04,
+ "end": 10060.18,
+ "text": "is"
+ },
+ {
+ "id": 20636,
+ "start": 10060.18,
+ "end": 10060.32,
+ "text": "that"
+ },
+ {
+ "id": 20637,
+ "start": 10060.32,
+ "end": 10060.5,
+ "text": "this"
+ },
+ {
+ "id": 20638,
+ "start": 10060.5,
+ "end": 10061.04,
+ "text": "practice"
+ },
+ {
+ "id": 20639,
+ "start": 10061.04,
+ "end": 10061.24,
+ "text": "of"
+ },
+ {
+ "id": 20640,
+ "start": 10061.24,
+ "end": 10062,
+ "text": "making"
+ },
+ {
+ "id": 20641,
+ "start": 10062,
+ "end": 10062.32,
+ "text": "bold"
+ },
+ {
+ "id": 20642,
+ "start": 10062.32,
+ "end": 10062.78,
+ "text": "and"
+ },
+ {
+ "id": 20643,
+ "start": 10062.78,
+ "end": 10063.3,
+ "text": "engaging"
+ },
+ {
+ "id": 20644,
+ "start": 10063.3,
+ "end": 10063.84,
+ "text": "promises"
+ },
+ {
+ "id": 20645,
+ "start": 10063.84,
+ "end": 10064.12,
+ "text": "about"
+ },
+ {
+ "id": 20646,
+ "start": 10064.12,
+ "end": 10064.5,
+ "text": "changes"
+ },
+ {
+ "id": 20647,
+ "start": 10064.5,
+ "end": 10064.64,
+ "text": "in"
+ },
+ {
+ "id": 20648,
+ "start": 10064.64,
+ "end": 10065.26,
+ "text": "practices"
+ },
+ {
+ "id": 20649,
+ "start": 10065.26,
+ "end": 10065.74,
+ "text": "and"
+ },
+ {
+ "id": 20650,
+ "start": 10065.74,
+ "end": 10065.88,
+ "text": "then"
+ },
+ {
+ "id": 20651,
+ "start": 10065.88,
+ "end": 10066.02,
+ "text": "the"
+ },
+ {
+ "id": 20652,
+ "start": 10066.02,
+ "end": 10066.62,
+ "text": "reality"
+ },
+ {
+ "id": 20653,
+ "start": 10066.62,
+ "end": 10066.84,
+ "text": "of"
+ },
+ {
+ "id": 20654,
+ "start": 10066.84,
+ "end": 10067.22,
+ "text": "how"
+ },
+ {
+ "id": 20655,
+ "start": 10067.22,
+ "end": 10067.66,
+ "text": "Facebook"
+ },
+ {
+ "id": 20656,
+ "start": 10067.66,
+ "end": 10067.88,
+ "text": "has"
+ },
+ {
+ "id": 20657,
+ "start": 10067.88,
+ "end": 10068.44,
+ "text": "operated"
+ },
+ {
+ "id": 20658,
+ "start": 10068.44,
+ "end": 10068.56,
+ "text": "in"
+ },
+ {
+ "id": 20659,
+ "start": 10068.56,
+ "end": 10068.68,
+ "text": "the"
+ },
+ {
+ "id": 20660,
+ "start": 10068.68,
+ "end": 10068.92,
+ "text": "real"
+ },
+ {
+ "id": 20661,
+ "start": 10068.92,
+ "end": 10069.26,
+ "text": "world"
+ },
+ {
+ "id": 20662,
+ "start": 10069.26,
+ "end": 10070.02,
+ "text": "are"
+ },
+ {
+ "id": 20663,
+ "start": 10070.02,
+ "end": 10070.18,
+ "text": "in"
+ },
+ {
+ "id": 20664,
+ "start": 10070.18,
+ "end": 10070.72,
+ "text": "persistent"
+ },
+ {
+ "id": 20665,
+ "start": 10070.72,
+ "end": 10071.68,
+ "text": "tension."
+ },
+ {
+ "id": 20666,
+ "start": 10071.68,
+ "end": 10072.4,
+ "text": "Several"
+ },
+ {
+ "id": 20667,
+ "start": 10072.4,
+ "end": 10072.74,
+ "text": "different"
+ },
+ {
+ "id": 20668,
+ "start": 10072.74,
+ "end": 10073.14,
+ "text": "senators"
+ },
+ {
+ "id": 20669,
+ "start": 10073.14,
+ "end": 10073.32,
+ "text": "have"
+ },
+ {
+ "id": 20670,
+ "start": 10073.32,
+ "end": 10073.6,
+ "text": "asked"
+ },
+ {
+ "id": 20671,
+ "start": 10073.6,
+ "end": 10073.9,
+ "text": "earlier"
+ },
+ {
+ "id": 20672,
+ "start": 10073.9,
+ "end": 10074.18,
+ "text": "today"
+ },
+ {
+ "id": 20673,
+ "start": 10074.18,
+ "end": 10074.44,
+ "text": "about"
+ },
+ {
+ "id": 20674,
+ "start": 10074.44,
+ "end": 10075.02,
+ "text": "the"
+ },
+ {
+ "id": 20675,
+ "start": 10075.02,
+ "end": 10075.28,
+ "text": "20"
+ },
+ {
+ "id": 20676,
+ "start": 10075.28,
+ "end": 10075.68,
+ "text": "11"
+ },
+ {
+ "id": 20677,
+ "start": 10075.68,
+ "end": 10076.1,
+ "text": "FTC"
+ },
+ {
+ "id": 20678,
+ "start": 10076.1,
+ "end": 10076.66,
+ "text": "consent"
+ },
+ {
+ "id": 20679,
+ "start": 10076.66,
+ "end": 10077.06,
+ "text": "decree"
+ },
+ {
+ "id": 20680,
+ "start": 10077.06,
+ "end": 10077.24,
+ "text": "that"
+ },
+ {
+ "id": 20681,
+ "start": 10077.24,
+ "end": 10078.14,
+ "text": "required"
+ },
+ {
+ "id": 20682,
+ "start": 10078.14,
+ "end": 10078.62,
+ "text": "Facebook"
+ },
+ {
+ "id": 20683,
+ "start": 10078.62,
+ "end": 10078.78,
+ "text": "to"
+ },
+ {
+ "id": 20684,
+ "start": 10078.78,
+ "end": 10079.12,
+ "text": "better"
+ },
+ {
+ "id": 20685,
+ "start": 10079.12,
+ "end": 10079.56,
+ "text": "protect"
+ },
+ {
+ "id": 20686,
+ "start": 10079.56,
+ "end": 10080,
+ "text": "users"
+ },
+ {
+ "id": 20687,
+ "start": 10080,
+ "end": 10080.96,
+ "text": "privacy."
+ },
+ {
+ "id": 20688,
+ "start": 10080.96,
+ "end": 10081.52,
+ "text": "And"
+ },
+ {
+ "id": 20689,
+ "start": 10081.52,
+ "end": 10081.72,
+ "text": "there"
+ },
+ {
+ "id": 20690,
+ "start": 10081.72,
+ "end": 10081.92,
+ "text": "are"
+ },
+ {
+ "id": 20691,
+ "start": 10081.92,
+ "end": 10082,
+ "text": "a"
+ },
+ {
+ "id": 20692,
+ "start": 10082,
+ "end": 10082.32,
+ "text": "whole"
+ },
+ {
+ "id": 20693,
+ "start": 10082.32,
+ "end": 10082.72,
+ "text": "series"
+ },
+ {
+ "id": 20694,
+ "start": 10082.72,
+ "end": 10082.86,
+ "text": "of"
+ },
+ {
+ "id": 20695,
+ "start": 10082.86,
+ "end": 10083.38,
+ "text": "examples"
+ },
+ {
+ "id": 20696,
+ "start": 10083.38,
+ "end": 10084,
+ "text": "where"
+ },
+ {
+ "id": 20697,
+ "start": 10084,
+ "end": 10084.16,
+ "text": "there"
+ },
+ {
+ "id": 20698,
+ "start": 10084.16,
+ "end": 10084.28,
+ "text": "have"
+ },
+ {
+ "id": 20699,
+ "start": 10084.28,
+ "end": 10084.4,
+ "text": "been"
+ },
+ {
+ "id": 20700,
+ "start": 10084.4,
+ "end": 10084.64,
+ "text": "things"
+ },
+ {
+ "id": 20701,
+ "start": 10084.64,
+ "end": 10084.9,
+ "text": "brought"
+ },
+ {
+ "id": 20702,
+ "start": 10084.9,
+ "end": 10085,
+ "text": "to"
+ },
+ {
+ "id": 20703,
+ "start": 10085,
+ "end": 10085.16,
+ "text": "your"
+ },
+ {
+ "id": 20704,
+ "start": 10085.16,
+ "end": 10085.56,
+ "text": "attention."
+ },
+ {
+ "id": 20705,
+ "start": 10085.56,
+ "end": 10086.2,
+ "text": "Where"
+ },
+ {
+ "id": 20706,
+ "start": 10086.2,
+ "end": 10086.64,
+ "text": "Facebook"
+ },
+ {
+ "id": 20707,
+ "start": 10086.64,
+ "end": 10086.82,
+ "text": "has"
+ },
+ {
+ "id": 20708,
+ "start": 10086.82,
+ "end": 10087.62,
+ "text": "apologized"
+ },
+ {
+ "id": 20709,
+ "start": 10087.62,
+ "end": 10087.76,
+ "text": "and"
+ },
+ {
+ "id": 20710,
+ "start": 10087.76,
+ "end": 10087.88,
+ "text": "it"
+ },
+ {
+ "id": 20711,
+ "start": 10087.88,
+ "end": 10088.04,
+ "text": "said,"
+ },
+ {
+ "id": 20712,
+ "start": 10088.04,
+ "end": 10088.2,
+ "text": "we're"
+ },
+ {
+ "id": 20713,
+ "start": 10088.2,
+ "end": 10088.34,
+ "text": "going"
+ },
+ {
+ "id": 20714,
+ "start": 10088.34,
+ "end": 10088.4,
+ "text": "to"
+ },
+ {
+ "id": 20715,
+ "start": 10088.4,
+ "end": 10088.64,
+ "text": "change"
+ },
+ {
+ "id": 20716,
+ "start": 10088.64,
+ "end": 10088.78,
+ "text": "our"
+ },
+ {
+ "id": 20717,
+ "start": 10088.78,
+ "end": 10089.32,
+ "text": "practices"
+ },
+ {
+ "id": 20718,
+ "start": 10089.32,
+ "end": 10089.42,
+ "text": "and"
+ },
+ {
+ "id": 20719,
+ "start": 10089.42,
+ "end": 10089.56,
+ "text": "our"
+ },
+ {
+ "id": 20720,
+ "start": 10089.56,
+ "end": 10090.08,
+ "text": "policies."
+ },
+ {
+ "id": 20721,
+ "start": 10090.08,
+ "end": 10090.92,
+ "text": "And"
+ },
+ {
+ "id": 20722,
+ "start": 10090.92,
+ "end": 10091.18,
+ "text": "yet"
+ },
+ {
+ "id": 20723,
+ "start": 10091.18,
+ "end": 10092.1,
+ "text": "there"
+ },
+ {
+ "id": 20724,
+ "start": 10092.1,
+ "end": 10092.34,
+ "text": "doesn't"
+ },
+ {
+ "id": 20725,
+ "start": 10092.34,
+ "end": 10092.56,
+ "text": "seem"
+ },
+ {
+ "id": 20726,
+ "start": 10092.56,
+ "end": 10092.68,
+ "text": "to"
+ },
+ {
+ "id": 20727,
+ "start": 10092.68,
+ "end": 10092.82,
+ "text": "have"
+ },
+ {
+ "id": 20728,
+ "start": 10092.82,
+ "end": 10092.98,
+ "text": "been"
+ },
+ {
+ "id": 20729,
+ "start": 10092.98,
+ "end": 10093.12,
+ "text": "as"
+ },
+ {
+ "id": 20730,
+ "start": 10093.12,
+ "end": 10093.36,
+ "text": "much"
+ },
+ {
+ "id": 20731,
+ "start": 10093.36,
+ "end": 10093.94,
+ "text": "follow"
+ },
+ {
+ "id": 20732,
+ "start": 10093.94,
+ "end": 10094.08,
+ "text": "up"
+ },
+ {
+ "id": 20733,
+ "start": 10094.08,
+ "end": 10094.26,
+ "text": "as"
+ },
+ {
+ "id": 20734,
+ "start": 10094.26,
+ "end": 10094.5,
+ "text": "would"
+ },
+ {
+ "id": 20735,
+ "start": 10094.5,
+ "end": 10094.62,
+ "text": "be"
+ },
+ {
+ "id": 20736,
+ "start": 10094.62,
+ "end": 10094.94,
+ "text": "called"
+ },
+ {
+ "id": 20737,
+ "start": 10094.94,
+ "end": 10095.12,
+ "text": "for"
+ },
+ {
+ "id": 20738,
+ "start": 10095.12,
+ "end": 10095.66,
+ "text": "at"
+ },
+ {
+ "id": 20739,
+ "start": 10095.66,
+ "end": 10095.78,
+ "text": "the"
+ },
+ {
+ "id": 20740,
+ "start": 10095.78,
+ "end": 10095.96,
+ "text": "end"
+ },
+ {
+ "id": 20741,
+ "start": 10095.96,
+ "end": 10096.04,
+ "text": "of"
+ },
+ {
+ "id": 20742,
+ "start": 10096.04,
+ "end": 10096.16,
+ "text": "the"
+ },
+ {
+ "id": 20743,
+ "start": 10096.16,
+ "end": 10096.44,
+ "text": "day"
+ },
+ {
+ "id": 20744,
+ "start": 10096.44,
+ "end": 10097.04,
+ "text": "policies."
+ },
+ {
+ "id": 20745,
+ "start": 10097.04,
+ "end": 10097.26,
+ "text": "Aren't"
+ },
+ {
+ "id": 20746,
+ "start": 10097.26,
+ "end": 10097.46,
+ "text": "worth"
+ },
+ {
+ "id": 20747,
+ "start": 10097.46,
+ "end": 10097.6,
+ "text": "the"
+ },
+ {
+ "id": 20748,
+ "start": 10097.6,
+ "end": 10097.82,
+ "text": "paper"
+ },
+ {
+ "id": 20749,
+ "start": 10097.82,
+ "end": 10098.06,
+ "text": "they're"
+ },
+ {
+ "id": 20750,
+ "start": 10098.06,
+ "end": 10098.3,
+ "text": "written"
+ },
+ {
+ "id": 20751,
+ "start": 10098.3,
+ "end": 10098.46,
+ "text": "on"
+ },
+ {
+ "id": 20752,
+ "start": 10098.46,
+ "end": 10098.62,
+ "text": "if"
+ },
+ {
+ "id": 20753,
+ "start": 10098.62,
+ "end": 10099.01,
+ "text": "Facebook"
+ },
+ {
+ "id": 20754,
+ "start": 10099.01,
+ "end": 10099.39,
+ "text": "doesn't"
+ },
+ {
+ "id": 20755,
+ "start": 10099.39,
+ "end": 10100.11,
+ "text": "enforce"
+ },
+ {
+ "id": 20756,
+ "start": 10100.11,
+ "end": 10100.33,
+ "text": "them"
+ },
+ {
+ "id": 20757,
+ "start": 10100.33,
+ "end": 10101.17,
+ "text": "and"
+ },
+ {
+ "id": 20758,
+ "start": 10101.17,
+ "end": 10101.35,
+ "text": "I'll"
+ },
+ {
+ "id": 20759,
+ "start": 10101.35,
+ "end": 10101.59,
+ "text": "close"
+ },
+ {
+ "id": 20760,
+ "start": 10101.59,
+ "end": 10101.75,
+ "text": "with"
+ },
+ {
+ "id": 20761,
+ "start": 10101.75,
+ "end": 10101.83,
+ "text": "a"
+ },
+ {
+ "id": 20762,
+ "start": 10101.83,
+ "end": 10102.13,
+ "text": "question"
+ },
+ {
+ "id": 20763,
+ "start": 10102.13,
+ "end": 10102.33,
+ "text": "that's"
+ },
+ {
+ "id": 20764,
+ "start": 10102.33,
+ "end": 10102.63,
+ "text": "really"
+ },
+ {
+ "id": 20765,
+ "start": 10102.63,
+ "end": 10103.17,
+ "text": "rooted"
+ },
+ {
+ "id": 20766,
+ "start": 10103.17,
+ "end": 10103.29,
+ "text": "in"
+ },
+ {
+ "id": 20767,
+ "start": 10103.29,
+ "end": 10103.41,
+ "text": "an"
+ },
+ {
+ "id": 20768,
+ "start": 10103.41,
+ "end": 10103.87,
+ "text": "experience"
+ },
+ {
+ "id": 20769,
+ "start": 10103.87,
+ "end": 10103.99,
+ "text": "I"
+ },
+ {
+ "id": 20770,
+ "start": 10103.99,
+ "end": 10104.19,
+ "text": "had"
+ },
+ {
+ "id": 20771,
+ "start": 10104.19,
+ "end": 10104.55,
+ "text": "today"
+ },
+ {
+ "id": 20772,
+ "start": 10104.55,
+ "end": 10104.89,
+ "text": "as"
+ },
+ {
+ "id": 20773,
+ "start": 10104.89,
+ "end": 10105.01,
+ "text": "an"
+ },
+ {
+ "id": 20774,
+ "start": 10105.01,
+ "end": 10105.41,
+ "text": "avid"
+ },
+ {
+ "id": 20775,
+ "start": 10105.41,
+ "end": 10105.81,
+ "text": "Facebook"
+ },
+ {
+ "id": 20776,
+ "start": 10105.81,
+ "end": 10106.11,
+ "text": "user."
+ },
+ {
+ "id": 20777,
+ "start": 10106.11,
+ "end": 10107.01,
+ "text": "I"
+ },
+ {
+ "id": 20778,
+ "start": 10107.01,
+ "end": 10107.25,
+ "text": "woke"
+ },
+ {
+ "id": 20779,
+ "start": 10107.25,
+ "end": 10107.37,
+ "text": "up"
+ },
+ {
+ "id": 20780,
+ "start": 10107.37,
+ "end": 10107.57,
+ "text": "this"
+ },
+ {
+ "id": 20781,
+ "start": 10107.57,
+ "end": 10107.87,
+ "text": "morning"
+ },
+ {
+ "id": 20782,
+ "start": 10107.87,
+ "end": 10108.43,
+ "text": "and"
+ },
+ {
+ "id": 20783,
+ "start": 10108.43,
+ "end": 10108.65,
+ "text": "was"
+ },
+ {
+ "id": 20784,
+ "start": 10108.65,
+ "end": 10109.23,
+ "text": "notified"
+ },
+ {
+ "id": 20785,
+ "start": 10109.23,
+ "end": 10109.55,
+ "text": "by"
+ },
+ {
+ "id": 20786,
+ "start": 10109.55,
+ "end": 10109.67,
+ "text": "a"
+ },
+ {
+ "id": 20787,
+ "start": 10109.67,
+ "end": 10109.87,
+ "text": "whole"
+ },
+ {
+ "id": 20788,
+ "start": 10109.87,
+ "end": 10110.05,
+ "text": "group"
+ },
+ {
+ "id": 20789,
+ "start": 10110.05,
+ "end": 10110.15,
+ "text": "of"
+ },
+ {
+ "id": 20790,
+ "start": 10110.15,
+ "end": 10110.43,
+ "text": "friends"
+ },
+ {
+ "id": 20791,
+ "start": 10110.43,
+ "end": 10110.81,
+ "text": "across"
+ },
+ {
+ "id": 20792,
+ "start": 10110.81,
+ "end": 10110.95,
+ "text": "the"
+ },
+ {
+ "id": 20793,
+ "start": 10110.95,
+ "end": 10111.29,
+ "text": "country"
+ },
+ {
+ "id": 20794,
+ "start": 10111.29,
+ "end": 10112.39,
+ "text": "asking"
+ },
+ {
+ "id": 20795,
+ "start": 10112.39,
+ "end": 10112.53,
+ "text": "if"
+ },
+ {
+ "id": 20796,
+ "start": 10112.53,
+ "end": 10112.65,
+ "text": "I"
+ },
+ {
+ "id": 20797,
+ "start": 10112.65,
+ "end": 10112.81,
+ "text": "had"
+ },
+ {
+ "id": 20798,
+ "start": 10112.81,
+ "end": 10112.87,
+ "text": "a"
+ },
+ {
+ "id": 20799,
+ "start": 10112.87,
+ "end": 10113.05,
+ "text": "new"
+ },
+ {
+ "id": 20800,
+ "start": 10113.05,
+ "end": 10113.47,
+ "text": "family"
+ },
+ {
+ "id": 20801,
+ "start": 10113.47,
+ "end": 10114.09,
+ "text": "or"
+ },
+ {
+ "id": 20802,
+ "start": 10114.09,
+ "end": 10114.23,
+ "text": "if"
+ },
+ {
+ "id": 20803,
+ "start": 10114.23,
+ "end": 10114.43,
+ "text": "there"
+ },
+ {
+ "id": 20804,
+ "start": 10114.43,
+ "end": 10114.59,
+ "text": "was"
+ },
+ {
+ "id": 20805,
+ "start": 10114.59,
+ "end": 10114.85,
+ "text": "a"
+ },
+ {
+ "id": 20806,
+ "start": 10114.85,
+ "end": 10115.27,
+ "text": "fake"
+ },
+ {
+ "id": 20807,
+ "start": 10115.27,
+ "end": 10115.71,
+ "text": "Facebook"
+ },
+ {
+ "id": 20808,
+ "start": 10115.71,
+ "end": 10116.01,
+ "text": "post"
+ },
+ {
+ "id": 20809,
+ "start": 10116.01,
+ "end": 10116.13,
+ "text": "of"
+ },
+ {
+ "id": 20810,
+ "start": 10116.13,
+ "end": 10116.37,
+ "text": "Chris"
+ },
+ {
+ "id": 20811,
+ "start": 10116.37,
+ "end": 10117.06,
+ "text": "Coons."
+ },
+ {
+ "id": 20812,
+ "start": 10117.06,
+ "end": 10117.1,
+ "text": "I"
+ },
+ {
+ "id": 20813,
+ "start": 10117.1,
+ "end": 10117.84,
+ "text": "went"
+ },
+ {
+ "id": 20814,
+ "start": 10117.84,
+ "end": 10117.94,
+ "text": "to"
+ },
+ {
+ "id": 20815,
+ "start": 10117.94,
+ "end": 10118.08,
+ "text": "the"
+ },
+ {
+ "id": 20816,
+ "start": 10118.08,
+ "end": 10118.2,
+ "text": "one"
+ },
+ {
+ "id": 20817,
+ "start": 10118.2,
+ "end": 10118.34,
+ "text": "they"
+ },
+ {
+ "id": 20818,
+ "start": 10118.34,
+ "end": 10118.82,
+ "text": "suggested"
+ },
+ {
+ "id": 20819,
+ "start": 10118.82,
+ "end": 10118.94,
+ "text": "it"
+ },
+ {
+ "id": 20820,
+ "start": 10118.94,
+ "end": 10119.1,
+ "text": "had"
+ },
+ {
+ "id": 20821,
+ "start": 10119.1,
+ "end": 10119.16,
+ "text": "a"
+ },
+ {
+ "id": 20822,
+ "start": 10119.16,
+ "end": 10119.48,
+ "text": "different"
+ },
+ {
+ "id": 20823,
+ "start": 10119.48,
+ "end": 10119.7,
+ "text": "middle"
+ },
+ {
+ "id": 20824,
+ "start": 10119.7,
+ "end": 10120.04,
+ "text": "initial"
+ },
+ {
+ "id": 20825,
+ "start": 10120.04,
+ "end": 10120.22,
+ "text": "than"
+ },
+ {
+ "id": 20826,
+ "start": 10120.22,
+ "end": 10120.54,
+ "text": "mine"
+ },
+ {
+ "id": 20827,
+ "start": 10120.54,
+ "end": 10121.34,
+ "text": "and"
+ },
+ {
+ "id": 20828,
+ "start": 10121.34,
+ "end": 10121.58,
+ "text": "there's"
+ },
+ {
+ "id": 20829,
+ "start": 10121.58,
+ "end": 10121.76,
+ "text": "my"
+ },
+ {
+ "id": 20830,
+ "start": 10121.76,
+ "end": 10122.16,
+ "text": "picture"
+ },
+ {
+ "id": 20831,
+ "start": 10122.16,
+ "end": 10122.62,
+ "text": "with"
+ },
+ {
+ "id": 20832,
+ "start": 10122.62,
+ "end": 10123.06,
+ "text": "Senator"
+ },
+ {
+ "id": 20833,
+ "start": 10123.06,
+ "end": 10123.3,
+ "text": "Dan"
+ },
+ {
+ "id": 20834,
+ "start": 10123.3,
+ "end": 10123.84,
+ "text": "Sullivan's"
+ },
+ {
+ "id": 20835,
+ "start": 10123.84,
+ "end": 10124.56,
+ "text": "family,"
+ },
+ {
+ "id": 20836,
+ "start": 10124.56,
+ "end": 10125.58,
+ "text": "same"
+ },
+ {
+ "id": 20837,
+ "start": 10125.58,
+ "end": 10125.9,
+ "text": "schools"
+ },
+ {
+ "id": 20838,
+ "start": 10125.9,
+ "end": 10126.04,
+ "text": "I"
+ },
+ {
+ "id": 20839,
+ "start": 10126.04,
+ "end": 10126.26,
+ "text": "went"
+ },
+ {
+ "id": 20840,
+ "start": 10126.26,
+ "end": 10126.44,
+ "text": "to"
+ },
+ {
+ "id": 20841,
+ "start": 10126.44,
+ "end": 10126.94,
+ "text": "but"
+ },
+ {
+ "id": 20842,
+ "start": 10126.94,
+ "end": 10127.08,
+ "text": "a"
+ },
+ {
+ "id": 20843,
+ "start": 10127.08,
+ "end": 10127.34,
+ "text": "whole"
+ },
+ {
+ "id": 20844,
+ "start": 10127.34,
+ "end": 10127.5,
+ "text": "lot"
+ },
+ {
+ "id": 20845,
+ "start": 10127.5,
+ "end": 10127.58,
+ "text": "of"
+ },
+ {
+ "id": 20846,
+ "start": 10127.58,
+ "end": 10127.92,
+ "text": "Russian"
+ },
+ {
+ "id": 20847,
+ "start": 10127.92,
+ "end": 10128.26,
+ "text": "friends."
+ },
+ {
+ "id": 20848,
+ "start": 10128.26,
+ "end": 10128.94,
+ "text": "Dan"
+ },
+ {
+ "id": 20849,
+ "start": 10128.94,
+ "end": 10129.34,
+ "text": "Sullivan's"
+ },
+ {
+ "id": 20850,
+ "start": 10129.34,
+ "end": 10129.44,
+ "text": "got"
+ },
+ {
+ "id": 20851,
+ "start": 10129.44,
+ "end": 10129.5,
+ "text": "a"
+ },
+ {
+ "id": 20852,
+ "start": 10129.5,
+ "end": 10129.68,
+ "text": "very"
+ },
+ {
+ "id": 20853,
+ "start": 10129.68,
+ "end": 10130.06,
+ "text": "Tractive"
+ },
+ {
+ "id": 20854,
+ "start": 10130.06,
+ "end": 10130.34,
+ "text": "family,"
+ },
+ {
+ "id": 20855,
+ "start": 10130.34,
+ "end": 10130.48,
+ "text": "by"
+ },
+ {
+ "id": 20856,
+ "start": 10130.48,
+ "end": 10130.6,
+ "text": "the"
+ },
+ {
+ "id": 20857,
+ "start": 10130.6,
+ "end": 10131.18,
+ "text": "way,"
+ },
+ {
+ "id": 20858,
+ "start": 10131.18,
+ "end": 10132.2,
+ "text": "and"
+ },
+ {
+ "id": 20859,
+ "start": 10132.2,
+ "end": 10132.44,
+ "text": "keep"
+ },
+ {
+ "id": 20860,
+ "start": 10132.44,
+ "end": 10132.62,
+ "text": "that"
+ },
+ {
+ "id": 20861,
+ "start": 10132.62,
+ "end": 10132.76,
+ "text": "for"
+ },
+ {
+ "id": 20862,
+ "start": 10132.76,
+ "end": 10132.88,
+ "text": "the"
+ },
+ {
+ "id": 20863,
+ "start": 10132.88,
+ "end": 10133.18,
+ "text": "record"
+ },
+ {
+ "id": 20864,
+ "start": 10133.18,
+ "end": 10135.38,
+ "text": "as"
+ },
+ {
+ "id": 20865,
+ "start": 10135.38,
+ "end": 10136.52,
+ "text": "the"
+ },
+ {
+ "id": 20866,
+ "start": 10136.52,
+ "end": 10136.8,
+ "text": "friends"
+ },
+ {
+ "id": 20867,
+ "start": 10136.8,
+ "end": 10136.9,
+ "text": "who"
+ },
+ {
+ "id": 20868,
+ "start": 10136.9,
+ "end": 10137.16,
+ "text": "brought"
+ },
+ {
+ "id": 20869,
+ "start": 10137.16,
+ "end": 10137.3,
+ "text": "this"
+ },
+ {
+ "id": 20870,
+ "start": 10137.3,
+ "end": 10137.42,
+ "text": "to"
+ },
+ {
+ "id": 20871,
+ "start": 10137.42,
+ "end": 10137.58,
+ "text": "my"
+ },
+ {
+ "id": 20872,
+ "start": 10137.58,
+ "end": 10138.02,
+ "text": "attention"
+ },
+ {
+ "id": 20873,
+ "start": 10138.02,
+ "end": 10138.6,
+ "text": "included"
+ },
+ {
+ "id": 20874,
+ "start": 10138.6,
+ "end": 10139.02,
+ "text": "people."
+ },
+ {
+ "id": 20875,
+ "start": 10139.02,
+ "end": 10139.08,
+ "text": "I"
+ },
+ {
+ "id": 20876,
+ "start": 10139.08,
+ "end": 10139.3,
+ "text": "went"
+ },
+ {
+ "id": 20877,
+ "start": 10139.3,
+ "end": 10139.42,
+ "text": "to"
+ },
+ {
+ "id": 20878,
+ "start": 10139.42,
+ "end": 10139.62,
+ "text": "law"
+ },
+ {
+ "id": 20879,
+ "start": 10139.62,
+ "end": 10139.88,
+ "text": "school"
+ },
+ {
+ "id": 20880,
+ "start": 10139.88,
+ "end": 10140.04,
+ "text": "with"
+ },
+ {
+ "id": 20881,
+ "start": 10140.04,
+ "end": 10140.14,
+ "text": "in"
+ },
+ {
+ "id": 20882,
+ "start": 10140.14,
+ "end": 10140.58,
+ "text": "Hawaii"
+ },
+ {
+ "id": 20883,
+ "start": 10140.58,
+ "end": 10140.7,
+ "text": "and"
+ },
+ {
+ "id": 20884,
+ "start": 10140.7,
+ "end": 10140.86,
+ "text": "our"
+ },
+ {
+ "id": 20885,
+ "start": 10140.86,
+ "end": 10141.06,
+ "text": "own"
+ },
+ {
+ "id": 20886,
+ "start": 10141.06,
+ "end": 10141.44,
+ "text": "attorney"
+ },
+ {
+ "id": 20887,
+ "start": 10141.44,
+ "end": 10141.72,
+ "text": "general"
+ },
+ {
+ "id": 20888,
+ "start": 10141.72,
+ "end": 10141.78,
+ "text": "in"
+ },
+ {
+ "id": 20889,
+ "start": 10141.78,
+ "end": 10141.88,
+ "text": "the"
+ },
+ {
+ "id": 20890,
+ "start": 10141.88,
+ "end": 10142.06,
+ "text": "state"
+ },
+ {
+ "id": 20891,
+ "start": 10142.06,
+ "end": 10142.14,
+ "text": "of"
+ },
+ {
+ "id": 20892,
+ "start": 10142.14,
+ "end": 10142.5,
+ "text": "Delaware."
+ },
+ {
+ "id": 20893,
+ "start": 10142.5,
+ "end": 10143.14,
+ "text": "And"
+ },
+ {
+ "id": 20894,
+ "start": 10143.14,
+ "end": 10143.64,
+ "text": "fortunately"
+ },
+ {
+ "id": 20895,
+ "start": 10143.64,
+ "end": 10143.88,
+ "text": "I've"
+ },
+ {
+ "id": 20896,
+ "start": 10143.88,
+ "end": 10144.1,
+ "text": "got,"
+ },
+ {
+ "id": 20897,
+ "start": 10144.1,
+ "end": 10144.48,
+ "text": "you"
+ },
+ {
+ "id": 20898,
+ "start": 10144.48,
+ "end": 10144.62,
+ "text": "know,"
+ },
+ {
+ "id": 20899,
+ "start": 10144.62,
+ "end": 10144.88,
+ "text": "great"
+ },
+ {
+ "id": 20900,
+ "start": 10144.88,
+ "end": 10145.1,
+ "text": "folks"
+ },
+ {
+ "id": 20901,
+ "start": 10145.1,
+ "end": 10145.24,
+ "text": "who"
+ },
+ {
+ "id": 20902,
+ "start": 10145.24,
+ "end": 10145.42,
+ "text": "worked"
+ },
+ {
+ "id": 20903,
+ "start": 10145.42,
+ "end": 10145.5,
+ "text": "in"
+ },
+ {
+ "id": 20904,
+ "start": 10145.5,
+ "end": 10145.62,
+ "text": "my"
+ },
+ {
+ "id": 20905,
+ "start": 10145.62,
+ "end": 10145.9,
+ "text": "office."
+ },
+ {
+ "id": 20906,
+ "start": 10145.9,
+ "end": 10146.02,
+ "text": "I"
+ },
+ {
+ "id": 20907,
+ "start": 10146.02,
+ "end": 10146.24,
+ "text": "brought"
+ },
+ {
+ "id": 20908,
+ "start": 10146.24,
+ "end": 10146.32,
+ "text": "it"
+ },
+ {
+ "id": 20909,
+ "start": 10146.32,
+ "end": 10146.42,
+ "text": "to"
+ },
+ {
+ "id": 20910,
+ "start": 10146.42,
+ "end": 10146.58,
+ "text": "their"
+ },
+ {
+ "id": 20911,
+ "start": 10146.58,
+ "end": 10147.06,
+ "text": "attention,"
+ },
+ {
+ "id": 20912,
+ "start": 10147.06,
+ "end": 10147.38,
+ "text": "they"
+ },
+ {
+ "id": 20913,
+ "start": 10147.38,
+ "end": 10148.02,
+ "text": "pushed"
+ },
+ {
+ "id": 20914,
+ "start": 10148.02,
+ "end": 10148.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 20915,
+ "start": 10148.5,
+ "end": 10148.62,
+ "text": "and"
+ },
+ {
+ "id": 20916,
+ "start": 10148.62,
+ "end": 10148.72,
+ "text": "it"
+ },
+ {
+ "id": 20917,
+ "start": 10148.72,
+ "end": 10148.84,
+ "text": "was"
+ },
+ {
+ "id": 20918,
+ "start": 10148.84,
+ "end": 10149.14,
+ "text": "taken"
+ },
+ {
+ "id": 20919,
+ "start": 10149.14,
+ "end": 10149.34,
+ "text": "down"
+ },
+ {
+ "id": 20920,
+ "start": 10149.34,
+ "end": 10149.52,
+ "text": "by"
+ },
+ {
+ "id": 20921,
+ "start": 10149.52,
+ "end": 10150.52,
+ "text": "midday."
+ },
+ {
+ "id": 20922,
+ "start": 10150.52,
+ "end": 10151.14,
+ "text": "But"
+ },
+ {
+ "id": 20923,
+ "start": 10151.14,
+ "end": 10151.28,
+ "text": "I'm"
+ },
+ {
+ "id": 20924,
+ "start": 10151.28,
+ "end": 10151.54,
+ "text": "left"
+ },
+ {
+ "id": 20925,
+ "start": 10151.54,
+ "end": 10151.92,
+ "text": "worried"
+ },
+ {
+ "id": 20926,
+ "start": 10151.92,
+ "end": 10152.16,
+ "text": "about"
+ },
+ {
+ "id": 20927,
+ "start": 10152.16,
+ "end": 10152.32,
+ "text": "what"
+ },
+ {
+ "id": 20928,
+ "start": 10152.32,
+ "end": 10152.66,
+ "text": "happens"
+ },
+ {
+ "id": 20929,
+ "start": 10152.66,
+ "end": 10152.82,
+ "text": "to"
+ },
+ {
+ "id": 20930,
+ "start": 10152.82,
+ "end": 10153.46,
+ "text": "Delawareans"
+ },
+ {
+ "id": 20931,
+ "start": 10153.46,
+ "end": 10153.64,
+ "text": "who"
+ },
+ {
+ "id": 20932,
+ "start": 10153.64,
+ "end": 10153.9,
+ "text": "don't"
+ },
+ {
+ "id": 20933,
+ "start": 10153.9,
+ "end": 10154.08,
+ "text": "have"
+ },
+ {
+ "id": 20934,
+ "start": 10154.08,
+ "end": 10154.3,
+ "text": "these"
+ },
+ {
+ "id": 20935,
+ "start": 10154.3,
+ "end": 10154.98,
+ "text": "resources?"
+ },
+ {
+ "id": 20936,
+ "start": 10154.98,
+ "end": 10155.9,
+ "text": "It's"
+ },
+ {
+ "id": 20937,
+ "start": 10155.9,
+ "end": 10156.14,
+ "text": "still"
+ },
+ {
+ "id": 20938,
+ "start": 10156.14,
+ "end": 10156.62,
+ "text": "possible"
+ },
+ {
+ "id": 20939,
+ "start": 10156.62,
+ "end": 10156.74,
+ "text": "to"
+ },
+ {
+ "id": 20940,
+ "start": 10156.74,
+ "end": 10156.94,
+ "text": "find"
+ },
+ {
+ "id": 20941,
+ "start": 10156.94,
+ "end": 10157.28,
+ "text": "Russian"
+ },
+ {
+ "id": 20942,
+ "start": 10157.28,
+ "end": 10157.6,
+ "text": "trolls"
+ },
+ {
+ "id": 20943,
+ "start": 10157.6,
+ "end": 10158.06,
+ "text": "operating"
+ },
+ {
+ "id": 20944,
+ "start": 10158.06,
+ "end": 10158.16,
+ "text": "in"
+ },
+ {
+ "id": 20945,
+ "start": 10158.16,
+ "end": 10158.26,
+ "text": "the"
+ },
+ {
+ "id": 20946,
+ "start": 10158.26,
+ "end": 10158.76,
+ "text": "platform"
+ },
+ {
+ "id": 20947,
+ "start": 10158.76,
+ "end": 10159,
+ "text": "hate"
+ },
+ {
+ "id": 20948,
+ "start": 10159,
+ "end": 10159.3,
+ "text": "groups"
+ },
+ {
+ "id": 20949,
+ "start": 10159.3,
+ "end": 10159.84,
+ "text": "thrive"
+ },
+ {
+ "id": 20950,
+ "start": 10159.84,
+ "end": 10160,
+ "text": "in"
+ },
+ {
+ "id": 20951,
+ "start": 10160,
+ "end": 10160.3,
+ "text": "some"
+ },
+ {
+ "id": 20952,
+ "start": 10160.3,
+ "end": 10160.68,
+ "text": "areas"
+ },
+ {
+ "id": 20953,
+ "start": 10160.68,
+ "end": 10160.82,
+ "text": "of"
+ },
+ {
+ "id": 20954,
+ "start": 10160.82,
+ "end": 10161.22,
+ "text": "Facebook."
+ },
+ {
+ "id": 20955,
+ "start": 10161.22,
+ "end": 10161.44,
+ "text": "Even"
+ },
+ {
+ "id": 20956,
+ "start": 10161.44,
+ "end": 10161.7,
+ "text": "though"
+ },
+ {
+ "id": 20957,
+ "start": 10161.7,
+ "end": 10162.18,
+ "text": "your"
+ },
+ {
+ "id": 20958,
+ "start": 10162.18,
+ "end": 10162.66,
+ "text": "policies"
+ },
+ {
+ "id": 20959,
+ "start": 10162.66,
+ "end": 10163.06,
+ "text": "prohibit"
+ },
+ {
+ "id": 20960,
+ "start": 10163.06,
+ "end": 10163.28,
+ "text": "hate"
+ },
+ {
+ "id": 20961,
+ "start": 10163.28,
+ "end": 10163.54,
+ "text": "speech"
+ },
+ {
+ "id": 20962,
+ "start": 10163.54,
+ "end": 10163.66,
+ "text": "and"
+ },
+ {
+ "id": 20963,
+ "start": 10163.66,
+ "end": 10163.76,
+ "text": "you"
+ },
+ {
+ "id": 20964,
+ "start": 10163.76,
+ "end": 10163.88,
+ "text": "have"
+ },
+ {
+ "id": 20965,
+ "start": 10163.88,
+ "end": 10164.18,
+ "text": "taken"
+ },
+ {
+ "id": 20966,
+ "start": 10164.18,
+ "end": 10164.7,
+ "text": "strong"
+ },
+ {
+ "id": 20967,
+ "start": 10164.7,
+ "end": 10165.06,
+ "text": "steps"
+ },
+ {
+ "id": 20968,
+ "start": 10165.06,
+ "end": 10165.44,
+ "text": "against"
+ },
+ {
+ "id": 20969,
+ "start": 10165.44,
+ "end": 10166.18,
+ "text": "extremism"
+ },
+ {
+ "id": 20970,
+ "start": 10166.18,
+ "end": 10166.38,
+ "text": "and"
+ },
+ {
+ "id": 20971,
+ "start": 10166.38,
+ "end": 10167.26,
+ "text": "terrorists."
+ },
+ {
+ "id": 20972,
+ "start": 10167.26,
+ "end": 10167.94,
+ "text": "But"
+ },
+ {
+ "id": 20973,
+ "start": 10167.94,
+ "end": 10168.36,
+ "text": "is"
+ },
+ {
+ "id": 20974,
+ "start": 10168.36,
+ "end": 10168.48,
+ "text": "it"
+ },
+ {
+ "id": 20975,
+ "start": 10168.48,
+ "end": 10168.8,
+ "text": "double"
+ },
+ {
+ "id": 20976,
+ "start": 10168.8,
+ "end": 10169.08,
+ "text": "Arian?"
+ },
+ {
+ "id": 20977,
+ "start": 10169.08,
+ "end": 10169.2,
+ "text": "Who"
+ },
+ {
+ "id": 20978,
+ "start": 10169.2,
+ "end": 10169.28,
+ "text": "is"
+ },
+ {
+ "id": 20979,
+ "start": 10169.28,
+ "end": 10169.48,
+ "text": "not"
+ },
+ {
+ "id": 20980,
+ "start": 10169.48,
+ "end": 10169.6,
+ "text": "in"
+ },
+ {
+ "id": 20981,
+ "start": 10169.6,
+ "end": 10169.72,
+ "text": "the"
+ },
+ {
+ "id": 20982,
+ "start": 10169.72,
+ "end": 10170.08,
+ "text": "Senate"
+ },
+ {
+ "id": 20983,
+ "start": 10170.08,
+ "end": 10170.4,
+ "text": "going"
+ },
+ {
+ "id": 20984,
+ "start": 10170.4,
+ "end": 10170.48,
+ "text": "to"
+ },
+ {
+ "id": 20985,
+ "start": 10170.48,
+ "end": 10170.64,
+ "text": "get"
+ },
+ {
+ "id": 20986,
+ "start": 10170.64,
+ "end": 10170.8,
+ "text": "the"
+ },
+ {
+ "id": 20987,
+ "start": 10170.8,
+ "end": 10171.2,
+ "text": "same"
+ },
+ {
+ "id": 20988,
+ "start": 10171.2,
+ "end": 10171.44,
+ "text": "sort"
+ },
+ {
+ "id": 20989,
+ "start": 10171.44,
+ "end": 10171.56,
+ "text": "of"
+ },
+ {
+ "id": 20990,
+ "start": 10171.56,
+ "end": 10171.88,
+ "text": "quick"
+ },
+ {
+ "id": 20991,
+ "start": 10171.88,
+ "end": 10172.5,
+ "text": "response"
+ },
+ {
+ "id": 20992,
+ "start": 10172.5,
+ "end": 10173.22,
+ "text": "I've"
+ },
+ {
+ "id": 20993,
+ "start": 10173.22,
+ "end": 10173.48,
+ "text": "already"
+ },
+ {
+ "id": 20994,
+ "start": 10173.48,
+ "end": 10173.78,
+ "text": "gotten"
+ },
+ {
+ "id": 20995,
+ "start": 10173.78,
+ "end": 10174.22,
+ "text": "input"
+ },
+ {
+ "id": 20996,
+ "start": 10174.22,
+ "end": 10174.42,
+ "text": "from"
+ },
+ {
+ "id": 20997,
+ "start": 10174.42,
+ "end": 10174.66,
+ "text": "other"
+ },
+ {
+ "id": 20998,
+ "start": 10174.66,
+ "end": 10174.98,
+ "text": "friends"
+ },
+ {
+ "id": 20999,
+ "start": 10174.98,
+ "end": 10175.2,
+ "text": "who"
+ },
+ {
+ "id": 21000,
+ "start": 10175.2,
+ "end": 10175.46,
+ "text": "say"
+ },
+ {
+ "id": 21001,
+ "start": 10175.46,
+ "end": 10175.72,
+ "text": "they've"
+ },
+ {
+ "id": 21002,
+ "start": 10175.72,
+ "end": 10175.84,
+ "text": "had"
+ },
+ {
+ "id": 21003,
+ "start": 10175.84,
+ "end": 10176.24,
+ "text": "trouble"
+ },
+ {
+ "id": 21004,
+ "start": 10176.24,
+ "end": 10177.02,
+ "text": "getting"
+ },
+ {
+ "id": 21005,
+ "start": 10177.02,
+ "end": 10177.1,
+ "text": "a"
+ },
+ {
+ "id": 21006,
+ "start": 10177.1,
+ "end": 10177.62,
+ "text": "positive"
+ },
+ {
+ "id": 21007,
+ "start": 10177.62,
+ "end": 10178.08,
+ "text": "response"
+ },
+ {
+ "id": 21008,
+ "start": 10178.08,
+ "end": 10178.22,
+ "text": "when"
+ },
+ {
+ "id": 21009,
+ "start": 10178.22,
+ "end": 10178.46,
+ "text": "they've"
+ },
+ {
+ "id": 21010,
+ "start": 10178.46,
+ "end": 10178.7,
+ "text": "brought"
+ },
+ {
+ "id": 21011,
+ "start": 10178.7,
+ "end": 10178.84,
+ "text": "to"
+ },
+ {
+ "id": 21012,
+ "start": 10178.84,
+ "end": 10179.32,
+ "text": "Facebook's"
+ },
+ {
+ "id": 21013,
+ "start": 10179.32,
+ "end": 10179.82,
+ "text": "attention."
+ },
+ {
+ "id": 21014,
+ "start": 10179.82,
+ "end": 10180.26,
+ "text": "A"
+ },
+ {
+ "id": 21015,
+ "start": 10180.26,
+ "end": 10180.58,
+ "text": "page"
+ },
+ {
+ "id": 21016,
+ "start": 10180.58,
+ "end": 10181.62,
+ "text": "that's"
+ },
+ {
+ "id": 21017,
+ "start": 10181.62,
+ "end": 10182.12,
+ "text": "frankly,"
+ },
+ {
+ "id": 21018,
+ "start": 10182.12,
+ "end": 10182.66,
+ "text": "clearly"
+ },
+ {
+ "id": 21019,
+ "start": 10182.66,
+ "end": 10183.02,
+ "text": "Violet"
+ },
+ {
+ "id": 21020,
+ "start": 10183.02,
+ "end": 10183.12,
+ "text": "of"
+ },
+ {
+ "id": 21021,
+ "start": 10183.12,
+ "end": 10183.3,
+ "text": "your"
+ },
+ {
+ "id": 21022,
+ "start": 10183.3,
+ "end": 10183.56,
+ "text": "basic"
+ },
+ {
+ "id": 21023,
+ "start": 10183.56,
+ "end": 10184.08,
+ "text": "principles."
+ },
+ {
+ "id": 21024,
+ "start": 10184.08,
+ "end": 10184.76,
+ "text": "My"
+ },
+ {
+ "id": 21025,
+ "start": 10184.76,
+ "end": 10185.04,
+ "text": "core"
+ },
+ {
+ "id": 21026,
+ "start": 10185.04,
+ "end": 10185.54,
+ "text": "question"
+ },
+ {
+ "id": 21027,
+ "start": 10185.54,
+ "end": 10186.36,
+ "text": "isn't"
+ },
+ {
+ "id": 21028,
+ "start": 10186.36,
+ "end": 10186.48,
+ "text": "it"
+ },
+ {
+ "id": 21029,
+ "start": 10186.48,
+ "end": 10186.98,
+ "text": "Facebook's"
+ },
+ {
+ "id": 21030,
+ "start": 10186.98,
+ "end": 10187.44,
+ "text": "job"
+ },
+ {
+ "id": 21031,
+ "start": 10187.44,
+ "end": 10187.82,
+ "text": "to"
+ },
+ {
+ "id": 21032,
+ "start": 10187.82,
+ "end": 10188.1,
+ "text": "better"
+ },
+ {
+ "id": 21033,
+ "start": 10188.1,
+ "end": 10188.46,
+ "text": "protect"
+ },
+ {
+ "id": 21034,
+ "start": 10188.46,
+ "end": 10188.66,
+ "text": "its"
+ },
+ {
+ "id": 21035,
+ "start": 10188.66,
+ "end": 10189.04,
+ "text": "users."
+ },
+ {
+ "id": 21036,
+ "start": 10189.04,
+ "end": 10189.54,
+ "text": "And"
+ },
+ {
+ "id": 21037,
+ "start": 10189.54,
+ "end": 10189.74,
+ "text": "why"
+ },
+ {
+ "id": 21038,
+ "start": 10189.74,
+ "end": 10189.84,
+ "text": "do"
+ },
+ {
+ "id": 21039,
+ "start": 10189.84,
+ "end": 10189.98,
+ "text": "you"
+ },
+ {
+ "id": 21040,
+ "start": 10189.98,
+ "end": 10190.28,
+ "text": "shift"
+ },
+ {
+ "id": 21041,
+ "start": 10190.28,
+ "end": 10190.42,
+ "text": "the"
+ },
+ {
+ "id": 21042,
+ "start": 10190.42,
+ "end": 10190.84,
+ "text": "burden"
+ },
+ {
+ "id": 21043,
+ "start": 10190.84,
+ "end": 10191.1,
+ "text": "to"
+ },
+ {
+ "id": 21044,
+ "start": 10191.1,
+ "end": 10191.68,
+ "text": "users"
+ },
+ {
+ "id": 21045,
+ "start": 10191.68,
+ "end": 10192.3,
+ "text": "to"
+ },
+ {
+ "id": 21046,
+ "start": 10192.3,
+ "end": 10192.66,
+ "text": "flag"
+ },
+ {
+ "id": 21047,
+ "start": 10192.66,
+ "end": 10193.28,
+ "text": "inappropriate"
+ },
+ {
+ "id": 21048,
+ "start": 10193.28,
+ "end": 10193.68,
+ "text": "content"
+ },
+ {
+ "id": 21049,
+ "start": 10193.68,
+ "end": 10193.82,
+ "text": "and"
+ },
+ {
+ "id": 21050,
+ "start": 10193.82,
+ "end": 10193.98,
+ "text": "make"
+ },
+ {
+ "id": 21051,
+ "start": 10193.98,
+ "end": 10194.14,
+ "text": "sure"
+ },
+ {
+ "id": 21052,
+ "start": 10194.14,
+ "end": 10194.32,
+ "text": "it's"
+ },
+ {
+ "id": 21053,
+ "start": 10194.32,
+ "end": 10194.64,
+ "text": "taken"
+ },
+ {
+ "id": 21054,
+ "start": 10194.64,
+ "end": 10196.48,
+ "text": "down"
+ },
+ {
+ "id": 21055,
+ "start": 10196.48,
+ "end": 10197.46,
+ "text": "Senator,"
+ },
+ {
+ "id": 21056,
+ "start": 10197.46,
+ "end": 10197.82,
+ "text": "there"
+ },
+ {
+ "id": 21057,
+ "start": 10197.82,
+ "end": 10197.92,
+ "text": "are"
+ },
+ {
+ "id": 21058,
+ "start": 10197.92,
+ "end": 10197.98,
+ "text": "a"
+ },
+ {
+ "id": 21059,
+ "start": 10197.98,
+ "end": 10198.24,
+ "text": "number"
+ },
+ {
+ "id": 21060,
+ "start": 10198.24,
+ "end": 10198.34,
+ "text": "of"
+ },
+ {
+ "id": 21061,
+ "start": 10198.34,
+ "end": 10198.78,
+ "text": "important"
+ },
+ {
+ "id": 21062,
+ "start": 10198.78,
+ "end": 10199.08,
+ "text": "points"
+ },
+ {
+ "id": 21063,
+ "start": 10199.08,
+ "end": 10199.22,
+ "text": "in"
+ },
+ {
+ "id": 21064,
+ "start": 10199.22,
+ "end": 10199.46,
+ "text": "there"
+ },
+ {
+ "id": 21065,
+ "start": 10199.46,
+ "end": 10200.04,
+ "text": "and"
+ },
+ {
+ "id": 21066,
+ "start": 10200.04,
+ "end": 10200.96,
+ "text": "I"
+ },
+ {
+ "id": 21067,
+ "start": 10200.96,
+ "end": 10201.16,
+ "text": "think"
+ },
+ {
+ "id": 21068,
+ "start": 10201.16,
+ "end": 10201.34,
+ "text": "it's"
+ },
+ {
+ "id": 21069,
+ "start": 10201.34,
+ "end": 10201.68,
+ "text": "clear"
+ },
+ {
+ "id": 21070,
+ "start": 10201.68,
+ "end": 10201.9,
+ "text": "that"
+ },
+ {
+ "id": 21071,
+ "start": 10201.9,
+ "end": 10202.12,
+ "text": "this"
+ },
+ {
+ "id": 21072,
+ "start": 10202.12,
+ "end": 10202.28,
+ "text": "is"
+ },
+ {
+ "id": 21073,
+ "start": 10202.28,
+ "end": 10202.44,
+ "text": "an"
+ },
+ {
+ "id": 21074,
+ "start": 10202.44,
+ "end": 10202.82,
+ "text": "area"
+ },
+ {
+ "id": 21075,
+ "start": 10202.82,
+ "end": 10203.58,
+ "text": "content"
+ },
+ {
+ "id": 21076,
+ "start": 10203.58,
+ "end": 10203.96,
+ "text": "policy"
+ },
+ {
+ "id": 21077,
+ "start": 10203.96,
+ "end": 10204.5,
+ "text": "enforcement"
+ },
+ {
+ "id": 21078,
+ "start": 10204.5,
+ "end": 10204.74,
+ "text": "that"
+ },
+ {
+ "id": 21079,
+ "start": 10204.74,
+ "end": 10204.9,
+ "text": "we"
+ },
+ {
+ "id": 21080,
+ "start": 10204.9,
+ "end": 10205.2,
+ "text": "need"
+ },
+ {
+ "id": 21081,
+ "start": 10205.2,
+ "end": 10205.3,
+ "text": "to"
+ },
+ {
+ "id": 21082,
+ "start": 10205.3,
+ "end": 10205.4,
+ "text": "do"
+ },
+ {
+ "id": 21083,
+ "start": 10205.4,
+ "end": 10205.5,
+ "text": "a"
+ },
+ {
+ "id": 21084,
+ "start": 10205.5,
+ "end": 10205.66,
+ "text": "lot"
+ },
+ {
+ "id": 21085,
+ "start": 10205.66,
+ "end": 10205.9,
+ "text": "better"
+ },
+ {
+ "id": 21086,
+ "start": 10205.9,
+ "end": 10206.08,
+ "text": "on"
+ },
+ {
+ "id": 21087,
+ "start": 10206.08,
+ "end": 10206.34,
+ "text": "over"
+ },
+ {
+ "id": 21088,
+ "start": 10206.34,
+ "end": 10206.68,
+ "text": "time."
+ },
+ {
+ "id": 21089,
+ "start": 10206.68,
+ "end": 10207.72,
+ "text": "The"
+ },
+ {
+ "id": 21090,
+ "start": 10207.72,
+ "end": 10208.12,
+ "text": "history"
+ },
+ {
+ "id": 21091,
+ "start": 10208.12,
+ "end": 10208.22,
+ "text": "of"
+ },
+ {
+ "id": 21092,
+ "start": 10208.22,
+ "end": 10208.38,
+ "text": "how"
+ },
+ {
+ "id": 21093,
+ "start": 10208.38,
+ "end": 10208.48,
+ "text": "we"
+ },
+ {
+ "id": 21094,
+ "start": 10208.48,
+ "end": 10208.72,
+ "text": "got"
+ },
+ {
+ "id": 21095,
+ "start": 10208.72,
+ "end": 10209.02,
+ "text": "here"
+ },
+ {
+ "id": 21096,
+ "start": 10209.02,
+ "end": 10209.78,
+ "text": "is"
+ },
+ {
+ "id": 21097,
+ "start": 10209.78,
+ "end": 10209.98,
+ "text": "we"
+ },
+ {
+ "id": 21098,
+ "start": 10209.98,
+ "end": 10210.34,
+ "text": "started"
+ },
+ {
+ "id": 21099,
+ "start": 10210.34,
+ "end": 10211.2,
+ "text": "off"
+ },
+ {
+ "id": 21100,
+ "start": 10211.2,
+ "end": 10211.96,
+ "text": "in"
+ },
+ {
+ "id": 21101,
+ "start": 10211.96,
+ "end": 10212.1,
+ "text": "my"
+ },
+ {
+ "id": 21102,
+ "start": 10212.1,
+ "end": 10212.36,
+ "text": "dorm"
+ },
+ {
+ "id": 21103,
+ "start": 10212.36,
+ "end": 10212.58,
+ "text": "room"
+ },
+ {
+ "id": 21104,
+ "start": 10212.58,
+ "end": 10212.94,
+ "text": "with"
+ },
+ {
+ "id": 21105,
+ "start": 10212.94,
+ "end": 10213.12,
+ "text": "not"
+ },
+ {
+ "id": 21106,
+ "start": 10213.12,
+ "end": 10213.18,
+ "text": "a"
+ },
+ {
+ "id": 21107,
+ "start": 10213.18,
+ "end": 10213.3,
+ "text": "lot"
+ },
+ {
+ "id": 21108,
+ "start": 10213.3,
+ "end": 10213.38,
+ "text": "of"
+ },
+ {
+ "id": 21109,
+ "start": 10213.38,
+ "end": 10213.94,
+ "text": "resources"
+ },
+ {
+ "id": 21110,
+ "start": 10213.94,
+ "end": 10214.12,
+ "text": "and"
+ },
+ {
+ "id": 21111,
+ "start": 10214.12,
+ "end": 10214.36,
+ "text": "not"
+ },
+ {
+ "id": 21112,
+ "start": 10214.36,
+ "end": 10214.64,
+ "text": "having"
+ },
+ {
+ "id": 21113,
+ "start": 10214.64,
+ "end": 10215.06,
+ "text": "the"
+ },
+ {
+ "id": 21114,
+ "start": 10215.06,
+ "end": 10215.4,
+ "text": "AI"
+ },
+ {
+ "id": 21115,
+ "start": 10215.4,
+ "end": 10216.02,
+ "text": "technology"
+ },
+ {
+ "id": 21116,
+ "start": 10216.02,
+ "end": 10216.12,
+ "text": "to"
+ },
+ {
+ "id": 21117,
+ "start": 10216.12,
+ "end": 10216.22,
+ "text": "be"
+ },
+ {
+ "id": 21118,
+ "start": 10216.22,
+ "end": 10216.36,
+ "text": "able"
+ },
+ {
+ "id": 21119,
+ "start": 10216.36,
+ "end": 10216.46,
+ "text": "to"
+ },
+ {
+ "id": 21120,
+ "start": 10216.46,
+ "end": 10217.02,
+ "text": "proactively"
+ },
+ {
+ "id": 21121,
+ "start": 10217.02,
+ "end": 10217.5,
+ "text": "identify"
+ },
+ {
+ "id": 21122,
+ "start": 10217.5,
+ "end": 10217.58,
+ "text": "a"
+ },
+ {
+ "id": 21123,
+ "start": 10217.58,
+ "end": 10217.74,
+ "text": "lot"
+ },
+ {
+ "id": 21124,
+ "start": 10217.74,
+ "end": 10217.82,
+ "text": "of"
+ },
+ {
+ "id": 21125,
+ "start": 10217.82,
+ "end": 10217.94,
+ "text": "this"
+ },
+ {
+ "id": 21126,
+ "start": 10217.94,
+ "end": 10218.16,
+ "text": "stuff."
+ },
+ {
+ "id": 21127,
+ "start": 10218.16,
+ "end": 10219.2,
+ "text": "So"
+ },
+ {
+ "id": 21128,
+ "start": 10219.2,
+ "end": 10219.4,
+ "text": "just"
+ },
+ {
+ "id": 21129,
+ "start": 10219.4,
+ "end": 10219.64,
+ "text": "because"
+ },
+ {
+ "id": 21130,
+ "start": 10219.64,
+ "end": 10219.78,
+ "text": "of"
+ },
+ {
+ "id": 21131,
+ "start": 10219.78,
+ "end": 10219.9,
+ "text": "the"
+ },
+ {
+ "id": 21132,
+ "start": 10219.9,
+ "end": 10220.18,
+ "text": "sheer"
+ },
+ {
+ "id": 21133,
+ "start": 10220.18,
+ "end": 10220.56,
+ "text": "volume"
+ },
+ {
+ "id": 21134,
+ "start": 10220.56,
+ "end": 10220.68,
+ "text": "of"
+ },
+ {
+ "id": 21135,
+ "start": 10220.68,
+ "end": 10221.98,
+ "text": "content."
+ },
+ {
+ "id": 21136,
+ "start": 10221.98,
+ "end": 10222.94,
+ "text": "The"
+ },
+ {
+ "id": 21137,
+ "start": 10222.94,
+ "end": 10223.28,
+ "text": "main"
+ },
+ {
+ "id": 21138,
+ "start": 10223.28,
+ "end": 10223.44,
+ "text": "way"
+ },
+ {
+ "id": 21139,
+ "start": 10223.44,
+ "end": 10223.66,
+ "text": "that"
+ },
+ {
+ "id": 21140,
+ "start": 10223.66,
+ "end": 10223.82,
+ "text": "this"
+ },
+ {
+ "id": 21141,
+ "start": 10223.82,
+ "end": 10224.12,
+ "text": "works"
+ },
+ {
+ "id": 21142,
+ "start": 10224.12,
+ "end": 10224.42,
+ "text": "today"
+ },
+ {
+ "id": 21143,
+ "start": 10224.42,
+ "end": 10224.72,
+ "text": "is"
+ },
+ {
+ "id": 21144,
+ "start": 10224.72,
+ "end": 10224.9,
+ "text": "that"
+ },
+ {
+ "id": 21145,
+ "start": 10224.9,
+ "end": 10225.18,
+ "text": "people"
+ },
+ {
+ "id": 21146,
+ "start": 10225.18,
+ "end": 10225.92,
+ "text": "report"
+ },
+ {
+ "id": 21147,
+ "start": 10225.92,
+ "end": 10226.2,
+ "text": "things"
+ },
+ {
+ "id": 21148,
+ "start": 10226.2,
+ "end": 10226.38,
+ "text": "to"
+ },
+ {
+ "id": 21149,
+ "start": 10226.38,
+ "end": 10226.54,
+ "text": "us"
+ },
+ {
+ "id": 21150,
+ "start": 10226.54,
+ "end": 10227.26,
+ "text": "and"
+ },
+ {
+ "id": 21151,
+ "start": 10227.26,
+ "end": 10227.5,
+ "text": "then"
+ },
+ {
+ "id": 21152,
+ "start": 10227.5,
+ "end": 10228.16,
+ "text": "we"
+ },
+ {
+ "id": 21153,
+ "start": 10228.16,
+ "end": 10228.38,
+ "text": "have"
+ },
+ {
+ "id": 21154,
+ "start": 10228.38,
+ "end": 10228.58,
+ "text": "our"
+ },
+ {
+ "id": 21155,
+ "start": 10228.58,
+ "end": 10228.86,
+ "text": "team"
+ },
+ {
+ "id": 21156,
+ "start": 10228.86,
+ "end": 10229.18,
+ "text": "review"
+ },
+ {
+ "id": 21157,
+ "start": 10229.18,
+ "end": 10229.36,
+ "text": "that."
+ },
+ {
+ "id": 21158,
+ "start": 10229.36,
+ "end": 10229.58,
+ "text": "And"
+ },
+ {
+ "id": 21159,
+ "start": 10229.58,
+ "end": 10229.74,
+ "text": "as"
+ },
+ {
+ "id": 21160,
+ "start": 10229.74,
+ "end": 10229.88,
+ "text": "I"
+ },
+ {
+ "id": 21161,
+ "start": 10229.88,
+ "end": 10230.06,
+ "text": "said"
+ },
+ {
+ "id": 21162,
+ "start": 10230.06,
+ "end": 10230.38,
+ "text": "before,"
+ },
+ {
+ "id": 21163,
+ "start": 10230.38,
+ "end": 10230.94,
+ "text": "by"
+ },
+ {
+ "id": 21164,
+ "start": 10230.94,
+ "end": 10231.08,
+ "text": "the"
+ },
+ {
+ "id": 21165,
+ "start": 10231.08,
+ "end": 10231.18,
+ "text": "end"
+ },
+ {
+ "id": 21166,
+ "start": 10231.18,
+ "end": 10231.26,
+ "text": "of"
+ },
+ {
+ "id": 21167,
+ "start": 10231.26,
+ "end": 10231.38,
+ "text": "this"
+ },
+ {
+ "id": 21168,
+ "start": 10231.38,
+ "end": 10231.54,
+ "text": "year"
+ },
+ {
+ "id": 21169,
+ "start": 10231.54,
+ "end": 10231.76,
+ "text": "we're"
+ },
+ {
+ "id": 21170,
+ "start": 10231.76,
+ "end": 10231.92,
+ "text": "going"
+ },
+ {
+ "id": 21171,
+ "start": 10231.92,
+ "end": 10231.98,
+ "text": "to"
+ },
+ {
+ "id": 21172,
+ "start": 10231.98,
+ "end": 10232.12,
+ "text": "have"
+ },
+ {
+ "id": 21173,
+ "start": 10232.12,
+ "end": 10232.28,
+ "text": "more"
+ },
+ {
+ "id": 21174,
+ "start": 10232.28,
+ "end": 10232.44,
+ "text": "than"
+ },
+ {
+ "id": 21175,
+ "start": 10232.44,
+ "end": 10233.12,
+ "text": "20,000"
+ },
+ {
+ "id": 21176,
+ "start": 10233.12,
+ "end": 10233.34,
+ "text": "people"
+ },
+ {
+ "id": 21177,
+ "start": 10233.34,
+ "end": 10233.44,
+ "text": "at"
+ },
+ {
+ "id": 21178,
+ "start": 10233.44,
+ "end": 10233.56,
+ "text": "the"
+ },
+ {
+ "id": 21179,
+ "start": 10233.56,
+ "end": 10233.84,
+ "text": "company"
+ },
+ {
+ "id": 21180,
+ "start": 10233.84,
+ "end": 10234.14,
+ "text": "working"
+ },
+ {
+ "id": 21181,
+ "start": 10234.14,
+ "end": 10234.26,
+ "text": "on"
+ },
+ {
+ "id": 21182,
+ "start": 10234.26,
+ "end": 10234.72,
+ "text": "security"
+ },
+ {
+ "id": 21183,
+ "start": 10234.72,
+ "end": 10234.84,
+ "text": "and"
+ },
+ {
+ "id": 21184,
+ "start": 10234.84,
+ "end": 10235.2,
+ "text": "content"
+ },
+ {
+ "id": 21185,
+ "start": 10235.2,
+ "end": 10235.5,
+ "text": "review."
+ },
+ {
+ "id": 21186,
+ "start": 10235.5,
+ "end": 10235.72,
+ "text": "Because"
+ },
+ {
+ "id": 21187,
+ "start": 10235.72,
+ "end": 10235.86,
+ "text": "this"
+ },
+ {
+ "id": 21188,
+ "start": 10235.86,
+ "end": 10235.98,
+ "text": "is"
+ },
+ {
+ "id": 21189,
+ "start": 10235.98,
+ "end": 10237.18,
+ "text": "important"
+ },
+ {
+ "id": 21190,
+ "start": 10237.18,
+ "end": 10238.16,
+ "text": "over"
+ },
+ {
+ "id": 21191,
+ "start": 10238.16,
+ "end": 10238.56,
+ "text": "time"
+ },
+ {
+ "id": 21192,
+ "start": 10238.56,
+ "end": 10239.7,
+ "text": "we're"
+ },
+ {
+ "id": 21193,
+ "start": 10239.7,
+ "end": 10239.84,
+ "text": "going"
+ },
+ {
+ "id": 21194,
+ "start": 10239.84,
+ "end": 10239.92,
+ "text": "to"
+ },
+ {
+ "id": 21195,
+ "start": 10239.92,
+ "end": 10240.14,
+ "text": "shift"
+ },
+ {
+ "id": 21196,
+ "start": 10240.14,
+ "end": 10240.88,
+ "text": "increasingly"
+ },
+ {
+ "id": 21197,
+ "start": 10240.88,
+ "end": 10242.46,
+ "text": "to"
+ },
+ {
+ "id": 21198,
+ "start": 10242.46,
+ "end": 10243.34,
+ "text": "a"
+ },
+ {
+ "id": 21199,
+ "start": 10243.34,
+ "end": 10244.32,
+ "text": "method"
+ },
+ {
+ "id": 21200,
+ "start": 10244.32,
+ "end": 10244.76,
+ "text": "where"
+ },
+ {
+ "id": 21201,
+ "start": 10244.76,
+ "end": 10245.08,
+ "text": "more"
+ },
+ {
+ "id": 21202,
+ "start": 10245.08,
+ "end": 10245.18,
+ "text": "of"
+ },
+ {
+ "id": 21203,
+ "start": 10245.18,
+ "end": 10245.36,
+ "text": "this"
+ },
+ {
+ "id": 21204,
+ "start": 10245.36,
+ "end": 10245.72,
+ "text": "content"
+ },
+ {
+ "id": 21205,
+ "start": 10245.72,
+ "end": 10245.9,
+ "text": "is"
+ },
+ {
+ "id": 21206,
+ "start": 10245.9,
+ "end": 10246.32,
+ "text": "flagged"
+ },
+ {
+ "id": 21207,
+ "start": 10246.32,
+ "end": 10246.94,
+ "text": "upfront"
+ },
+ {
+ "id": 21208,
+ "start": 10246.94,
+ "end": 10247.4,
+ "text": "by"
+ },
+ {
+ "id": 21209,
+ "start": 10247.4,
+ "end": 10247.78,
+ "text": "AI"
+ },
+ {
+ "id": 21210,
+ "start": 10247.78,
+ "end": 10248.1,
+ "text": "tools"
+ },
+ {
+ "id": 21211,
+ "start": 10248.1,
+ "end": 10248.24,
+ "text": "that"
+ },
+ {
+ "id": 21212,
+ "start": 10248.24,
+ "end": 10248.36,
+ "text": "we"
+ },
+ {
+ "id": 21213,
+ "start": 10248.36,
+ "end": 10248.76,
+ "text": "develop"
+ },
+ {
+ "id": 21214,
+ "start": 10248.76,
+ "end": 10249.54,
+ "text": "we've"
+ },
+ {
+ "id": 21215,
+ "start": 10249.54,
+ "end": 10250.34,
+ "text": "prioritized."
+ },
+ {
+ "id": 21216,
+ "start": 10250.34,
+ "end": 10251.1,
+ "text": "The"
+ },
+ {
+ "id": 21217,
+ "start": 10251.1,
+ "end": 10252.24,
+ "text": "most"
+ },
+ {
+ "id": 21218,
+ "start": 10252.24,
+ "end": 10252.68,
+ "text": "important"
+ },
+ {
+ "id": 21219,
+ "start": 10252.68,
+ "end": 10252.96,
+ "text": "types"
+ },
+ {
+ "id": 21220,
+ "start": 10252.96,
+ "end": 10253.08,
+ "text": "of"
+ },
+ {
+ "id": 21221,
+ "start": 10253.08,
+ "end": 10253.52,
+ "text": "content"
+ },
+ {
+ "id": 21222,
+ "start": 10253.52,
+ "end": 10253.76,
+ "text": "that"
+ },
+ {
+ "id": 21223,
+ "start": 10253.76,
+ "end": 10253.92,
+ "text": "we"
+ },
+ {
+ "id": 21224,
+ "start": 10253.92,
+ "end": 10254.2,
+ "text": "can"
+ },
+ {
+ "id": 21225,
+ "start": 10254.2,
+ "end": 10254.62,
+ "text": "build"
+ },
+ {
+ "id": 21226,
+ "start": 10254.62,
+ "end": 10254.88,
+ "text": "AI"
+ },
+ {
+ "id": 21227,
+ "start": 10254.88,
+ "end": 10255.16,
+ "text": "tools"
+ },
+ {
+ "id": 21228,
+ "start": 10255.16,
+ "end": 10255.4,
+ "text": "for"
+ },
+ {
+ "id": 21229,
+ "start": 10255.4,
+ "end": 10255.76,
+ "text": "today,"
+ },
+ {
+ "id": 21230,
+ "start": 10255.76,
+ "end": 10256.44,
+ "text": "like"
+ },
+ {
+ "id": 21231,
+ "start": 10256.44,
+ "end": 10256.94,
+ "text": "terror"
+ },
+ {
+ "id": 21232,
+ "start": 10256.94,
+ "end": 10257.36,
+ "text": "related"
+ },
+ {
+ "id": 21233,
+ "start": 10257.36,
+ "end": 10257.72,
+ "text": "content"
+ },
+ {
+ "id": 21234,
+ "start": 10257.72,
+ "end": 10257.9,
+ "text": "where"
+ },
+ {
+ "id": 21235,
+ "start": 10257.9,
+ "end": 10257.96,
+ "text": "I"
+ },
+ {
+ "id": 21236,
+ "start": 10257.96,
+ "end": 10258.43,
+ "text": "mentioned"
+ },
+ {
+ "id": 21237,
+ "start": 10258.43,
+ "end": 10258.69,
+ "text": "lie"
+ },
+ {
+ "id": 21238,
+ "start": 10258.69,
+ "end": 10258.89,
+ "text": "that"
+ },
+ {
+ "id": 21239,
+ "start": 10258.89,
+ "end": 10259.81,
+ "text": "our"
+ },
+ {
+ "id": 21240,
+ "start": 10259.81,
+ "end": 10260.21,
+ "text": "systems"
+ },
+ {
+ "id": 21241,
+ "start": 10260.21,
+ "end": 10260.33,
+ "text": "that"
+ },
+ {
+ "id": 21242,
+ "start": 10260.33,
+ "end": 10260.43,
+ "text": "we"
+ },
+ {
+ "id": 21243,
+ "start": 10260.43,
+ "end": 10260.83,
+ "text": "deploy."
+ },
+ {
+ "id": 21244,
+ "start": 10260.83,
+ "end": 10261.31,
+ "text": "I"
+ },
+ {
+ "id": 21245,
+ "start": 10261.31,
+ "end": 10261.45,
+ "text": "mean"
+ },
+ {
+ "id": 21246,
+ "start": 10261.45,
+ "end": 10261.63,
+ "text": "we're"
+ },
+ {
+ "id": 21247,
+ "start": 10261.63,
+ "end": 10261.83,
+ "text": "taking"
+ },
+ {
+ "id": 21248,
+ "start": 10261.83,
+ "end": 10262.01,
+ "text": "down"
+ },
+ {
+ "id": 21249,
+ "start": 10262.01,
+ "end": 10262.85,
+ "text": "99%"
+ },
+ {
+ "id": 21250,
+ "start": 10262.85,
+ "end": 10262.95,
+ "text": "of"
+ },
+ {
+ "id": 21251,
+ "start": 10262.95,
+ "end": 10263.05,
+ "text": "the"
+ },
+ {
+ "id": 21252,
+ "start": 10263.05,
+ "end": 10263.39,
+ "text": "ISIS"
+ },
+ {
+ "id": 21253,
+ "start": 10263.39,
+ "end": 10263.49,
+ "text": "and"
+ },
+ {
+ "id": 21254,
+ "start": 10263.49,
+ "end": 10263.67,
+ "text": "Al"
+ },
+ {
+ "id": 21255,
+ "start": 10263.67,
+ "end": 10263.97,
+ "text": "Qaeda"
+ },
+ {
+ "id": 21256,
+ "start": 10263.97,
+ "end": 10264.59,
+ "text": "related"
+ },
+ {
+ "id": 21257,
+ "start": 10264.59,
+ "end": 10264.89,
+ "text": "content"
+ },
+ {
+ "id": 21258,
+ "start": 10264.89,
+ "end": 10265.01,
+ "text": "that"
+ },
+ {
+ "id": 21259,
+ "start": 10265.01,
+ "end": 10265.11,
+ "text": "we"
+ },
+ {
+ "id": 21260,
+ "start": 10265.11,
+ "end": 10265.25,
+ "text": "take"
+ },
+ {
+ "id": 21261,
+ "start": 10265.25,
+ "end": 10265.47,
+ "text": "down"
+ },
+ {
+ "id": 21262,
+ "start": 10265.47,
+ "end": 10265.85,
+ "text": "before"
+ },
+ {
+ "id": 21263,
+ "start": 10265.85,
+ "end": 10265.91,
+ "text": "a"
+ },
+ {
+ "id": 21264,
+ "start": 10265.91,
+ "end": 10266.33,
+ "text": "person"
+ },
+ {
+ "id": 21265,
+ "start": 10266.33,
+ "end": 10266.79,
+ "text": "even"
+ },
+ {
+ "id": 21266,
+ "start": 10266.79,
+ "end": 10267.07,
+ "text": "flags"
+ },
+ {
+ "id": 21267,
+ "start": 10267.07,
+ "end": 10267.29,
+ "text": "them"
+ },
+ {
+ "id": 21268,
+ "start": 10267.29,
+ "end": 10267.39,
+ "text": "to"
+ },
+ {
+ "id": 21269,
+ "start": 10267.39,
+ "end": 10267.55,
+ "text": "us."
+ },
+ {
+ "id": 21270,
+ "start": 10267.55,
+ "end": 10268.53,
+ "text": "If"
+ },
+ {
+ "id": 21271,
+ "start": 10268.53,
+ "end": 10268.71,
+ "text": "we"
+ },
+ {
+ "id": 21272,
+ "start": 10268.71,
+ "end": 10269.65,
+ "text": "fast"
+ },
+ {
+ "id": 21273,
+ "start": 10269.65,
+ "end": 10269.93,
+ "text": "forward"
+ },
+ {
+ "id": 21274,
+ "start": 10269.93,
+ "end": 10270.17,
+ "text": "five"
+ },
+ {
+ "id": 21275,
+ "start": 10270.17,
+ "end": 10270.27,
+ "text": "or"
+ },
+ {
+ "id": 21276,
+ "start": 10270.27,
+ "end": 10270.45,
+ "text": "10"
+ },
+ {
+ "id": 21277,
+ "start": 10270.45,
+ "end": 10270.69,
+ "text": "years,"
+ },
+ {
+ "id": 21278,
+ "start": 10270.69,
+ "end": 10270.79,
+ "text": "I"
+ },
+ {
+ "id": 21279,
+ "start": 10270.79,
+ "end": 10270.95,
+ "text": "think"
+ },
+ {
+ "id": 21280,
+ "start": 10270.95,
+ "end": 10271.11,
+ "text": "we're"
+ },
+ {
+ "id": 21281,
+ "start": 10271.11,
+ "end": 10271.25,
+ "text": "going"
+ },
+ {
+ "id": 21282,
+ "start": 10271.25,
+ "end": 10271.31,
+ "text": "to"
+ },
+ {
+ "id": 21283,
+ "start": 10271.31,
+ "end": 10271.49,
+ "text": "have"
+ },
+ {
+ "id": 21284,
+ "start": 10271.49,
+ "end": 10271.77,
+ "text": "more"
+ },
+ {
+ "id": 21285,
+ "start": 10271.77,
+ "end": 10272.09,
+ "text": "AI"
+ },
+ {
+ "id": 21286,
+ "start": 10272.09,
+ "end": 10272.61,
+ "text": "technology"
+ },
+ {
+ "id": 21287,
+ "start": 10272.61,
+ "end": 10272.77,
+ "text": "that"
+ },
+ {
+ "id": 21288,
+ "start": 10272.77,
+ "end": 10272.91,
+ "text": "can"
+ },
+ {
+ "id": 21289,
+ "start": 10272.91,
+ "end": 10273.03,
+ "text": "do"
+ },
+ {
+ "id": 21290,
+ "start": 10273.03,
+ "end": 10273.17,
+ "text": "that"
+ },
+ {
+ "id": 21291,
+ "start": 10273.17,
+ "end": 10273.25,
+ "text": "in"
+ },
+ {
+ "id": 21292,
+ "start": 10273.25,
+ "end": 10273.45,
+ "text": "more"
+ },
+ {
+ "id": 21293,
+ "start": 10273.45,
+ "end": 10274.4,
+ "text": "areas."
+ },
+ {
+ "id": 21294,
+ "start": 10274.4,
+ "end": 10275.24,
+ "text": "And"
+ },
+ {
+ "id": 21295,
+ "start": 10275.24,
+ "end": 10275.64,
+ "text": "I"
+ },
+ {
+ "id": 21296,
+ "start": 10275.64,
+ "end": 10275.82,
+ "text": "think"
+ },
+ {
+ "id": 21297,
+ "start": 10275.82,
+ "end": 10275.92,
+ "text": "we"
+ },
+ {
+ "id": 21298,
+ "start": 10275.92,
+ "end": 10276.1,
+ "text": "need"
+ },
+ {
+ "id": 21299,
+ "start": 10276.1,
+ "end": 10276.18,
+ "text": "to"
+ },
+ {
+ "id": 21300,
+ "start": 10276.18,
+ "end": 10276.28,
+ "text": "get"
+ },
+ {
+ "id": 21301,
+ "start": 10276.28,
+ "end": 10276.46,
+ "text": "there"
+ },
+ {
+ "id": 21302,
+ "start": 10276.46,
+ "end": 10276.54,
+ "text": "as"
+ },
+ {
+ "id": 21303,
+ "start": 10276.54,
+ "end": 10276.74,
+ "text": "soon"
+ },
+ {
+ "id": 21304,
+ "start": 10276.74,
+ "end": 10276.84,
+ "text": "as"
+ },
+ {
+ "id": 21305,
+ "start": 10276.84,
+ "end": 10277.22,
+ "text": "possible."
+ },
+ {
+ "id": 21306,
+ "start": 10277.22,
+ "end": 10277.38,
+ "text": "Which"
+ },
+ {
+ "id": 21307,
+ "start": 10277.38,
+ "end": 10277.46,
+ "text": "is"
+ },
+ {
+ "id": 21308,
+ "start": 10277.46,
+ "end": 10277.6,
+ "text": "why"
+ },
+ {
+ "id": 21309,
+ "start": 10277.6,
+ "end": 10277.8,
+ "text": "we're"
+ },
+ {
+ "id": 21310,
+ "start": 10277.8,
+ "end": 10278.16,
+ "text": "investing"
+ },
+ {
+ "id": 21311,
+ "start": 10278.16,
+ "end": 10278.26,
+ "text": "in"
+ },
+ {
+ "id": 21312,
+ "start": 10278.26,
+ "end": 10278.46,
+ "text": "that"
+ },
+ {
+ "id": 21313,
+ "start": 10278.46,
+ "end": 10279.28,
+ "text": "would"
+ },
+ {
+ "id": 21314,
+ "start": 10279.28,
+ "end": 10279.52,
+ "text": "agree"
+ },
+ {
+ "id": 21315,
+ "start": 10279.52,
+ "end": 10279.7,
+ "text": "more,"
+ },
+ {
+ "id": 21316,
+ "start": 10279.7,
+ "end": 10279.78,
+ "text": "I"
+ },
+ {
+ "id": 21317,
+ "start": 10279.78,
+ "end": 10279.96,
+ "text": "just"
+ },
+ {
+ "id": 21318,
+ "start": 10279.96,
+ "end": 10280.16,
+ "text": "think"
+ },
+ {
+ "id": 21319,
+ "start": 10280.16,
+ "end": 10280.32,
+ "text": "we"
+ },
+ {
+ "id": 21320,
+ "start": 10280.32,
+ "end": 10280.58,
+ "text": "can't"
+ },
+ {
+ "id": 21321,
+ "start": 10280.58,
+ "end": 10280.8,
+ "text": "wait,"
+ },
+ {
+ "id": 21322,
+ "start": 10280.8,
+ "end": 10281.12,
+ "text": "five"
+ },
+ {
+ "id": 21323,
+ "start": 10281.12,
+ "end": 10281.44,
+ "text": "years"
+ },
+ {
+ "id": 21324,
+ "start": 10281.44,
+ "end": 10281.88,
+ "text": "to"
+ },
+ {
+ "id": 21325,
+ "start": 10281.88,
+ "end": 10282.5,
+ "text": "be"
+ },
+ {
+ "id": 21326,
+ "start": 10282.5,
+ "end": 10282.84,
+ "text": "housing"
+ },
+ {
+ "id": 21327,
+ "start": 10282.84,
+ "end": 10283.54,
+ "text": "discrimination"
+ },
+ {
+ "id": 21328,
+ "start": 10283.54,
+ "end": 10283.82,
+ "text": "and"
+ },
+ {
+ "id": 21329,
+ "start": 10283.82,
+ "end": 10284.26,
+ "text": "personally"
+ },
+ {
+ "id": 21330,
+ "start": 10284.26,
+ "end": 10284.64,
+ "text": "offensive"
+ },
+ {
+ "id": 21331,
+ "start": 10284.64,
+ "end": 10285.04,
+ "text": "material"
+ },
+ {
+ "id": 21332,
+ "start": 10285.04,
+ "end": 10285.22,
+ "text": "out"
+ },
+ {
+ "id": 21333,
+ "start": 10285.22,
+ "end": 10285.32,
+ "text": "of"
+ },
+ {
+ "id": 21334,
+ "start": 10285.32,
+ "end": 10286.08,
+ "text": "Facebook."
+ },
+ {
+ "id": 21335,
+ "start": 10286.08,
+ "end": 10287.1,
+ "text": "It"
+ },
+ {
+ "id": 21336,
+ "start": 10287.1,
+ "end": 10288.12,
+ "text": "says"
+ },
+ {
+ "id": 21337,
+ "start": 10288.12,
+ "end": 10288.26,
+ "text": "Thank"
+ },
+ {
+ "id": 21338,
+ "start": 10288.26,
+ "end": 10288.38,
+ "text": "you,"
+ },
+ {
+ "id": 21339,
+ "start": 10288.38,
+ "end": 10288.6,
+ "text": "Mr"
+ },
+ {
+ "id": 21340,
+ "start": 10288.6,
+ "end": 10288.92,
+ "text": "Chairman,"
+ },
+ {
+ "id": 21341,
+ "start": 10288.92,
+ "end": 10289.5,
+ "text": "Mr"
+ },
+ {
+ "id": 21342,
+ "start": 10289.5,
+ "end": 10289.96,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 21343,
+ "start": 10289.96,
+ "end": 10290.22,
+ "text": "Thanks"
+ },
+ {
+ "id": 21344,
+ "start": 10290.22,
+ "end": 10290.36,
+ "text": "for"
+ },
+ {
+ "id": 21345,
+ "start": 10290.36,
+ "end": 10290.56,
+ "text": "being"
+ },
+ {
+ "id": 21346,
+ "start": 10290.56,
+ "end": 10290.8,
+ "text": "here"
+ },
+ {
+ "id": 21347,
+ "start": 10290.8,
+ "end": 10291.5,
+ "text": "at"
+ },
+ {
+ "id": 21348,
+ "start": 10291.5,
+ "end": 10292.04,
+ "text": "current"
+ },
+ {
+ "id": 21349,
+ "start": 10292.04,
+ "end": 10292.38,
+ "text": "pace"
+ },
+ {
+ "id": 21350,
+ "start": 10292.38,
+ "end": 10293.12,
+ "text": "you're"
+ },
+ {
+ "id": 21351,
+ "start": 10293.12,
+ "end": 10293.3,
+ "text": "due"
+ },
+ {
+ "id": 21352,
+ "start": 10293.3,
+ "end": 10293.42,
+ "text": "to"
+ },
+ {
+ "id": 21353,
+ "start": 10293.42,
+ "end": 10293.54,
+ "text": "be"
+ },
+ {
+ "id": 21354,
+ "start": 10293.54,
+ "end": 10293.7,
+ "text": "done"
+ },
+ {
+ "id": 21355,
+ "start": 10293.7,
+ "end": 10293.86,
+ "text": "with"
+ },
+ {
+ "id": 21356,
+ "start": 10293.86,
+ "end": 10294.06,
+ "text": "first"
+ },
+ {
+ "id": 21357,
+ "start": 10294.06,
+ "end": 10294.28,
+ "text": "round"
+ },
+ {
+ "id": 21358,
+ "start": 10294.28,
+ "end": 10294.4,
+ "text": "of"
+ },
+ {
+ "id": 21359,
+ "start": 10294.4,
+ "end": 10294.82,
+ "text": "questioning"
+ },
+ {
+ "id": 21360,
+ "start": 10294.82,
+ "end": 10294.98,
+ "text": "by"
+ },
+ {
+ "id": 21361,
+ "start": 10294.98,
+ "end": 10295.18,
+ "text": "about"
+ },
+ {
+ "id": 21362,
+ "start": 10295.18,
+ "end": 10295.38,
+ "text": "one"
+ },
+ {
+ "id": 21363,
+ "start": 10295.38,
+ "end": 10295.5,
+ "text": "a"
+ },
+ {
+ "id": 21364,
+ "start": 10295.5,
+ "end": 10295.74,
+ "text": "M."
+ },
+ {
+ "id": 21365,
+ "start": 10295.74,
+ "end": 10296.02,
+ "text": "So"
+ },
+ {
+ "id": 21366,
+ "start": 10296.02,
+ "end": 10297.76,
+ "text": "congratulations,"
+ },
+ {
+ "id": 21367,
+ "start": 10297.76,
+ "end": 10298.28,
+ "text": "I"
+ },
+ {
+ "id": 21368,
+ "start": 10298.28,
+ "end": 10299.18,
+ "text": "like"
+ },
+ {
+ "id": 21369,
+ "start": 10299.18,
+ "end": 10299.52,
+ "text": "Chris"
+ },
+ {
+ "id": 21370,
+ "start": 10299.52,
+ "end": 10299.84,
+ "text": "Coons."
+ },
+ {
+ "id": 21371,
+ "start": 10299.84,
+ "end": 10299.9,
+ "text": "A"
+ },
+ {
+ "id": 21372,
+ "start": 10299.9,
+ "end": 10300.24,
+ "text": "lot"
+ },
+ {
+ "id": 21373,
+ "start": 10300.24,
+ "end": 10300.8,
+ "text": "with"
+ },
+ {
+ "id": 21374,
+ "start": 10300.8,
+ "end": 10300.96,
+ "text": "his"
+ },
+ {
+ "id": 21375,
+ "start": 10300.96,
+ "end": 10301.16,
+ "text": "own"
+ },
+ {
+ "id": 21376,
+ "start": 10301.16,
+ "end": 10301.58,
+ "text": "family"
+ },
+ {
+ "id": 21377,
+ "start": 10301.58,
+ "end": 10301.74,
+ "text": "or"
+ },
+ {
+ "id": 21378,
+ "start": 10301.74,
+ "end": 10301.9,
+ "text": "with"
+ },
+ {
+ "id": 21379,
+ "start": 10301.9,
+ "end": 10302.08,
+ "text": "an"
+ },
+ {
+ "id": 21380,
+ "start": 10302.08,
+ "end": 10302.54,
+ "text": "Sullivan's"
+ },
+ {
+ "id": 21381,
+ "start": 10302.54,
+ "end": 10302.92,
+ "text": "family,"
+ },
+ {
+ "id": 21382,
+ "start": 10302.92,
+ "end": 10303.14,
+ "text": "both"
+ },
+ {
+ "id": 21383,
+ "start": 10303.14,
+ "end": 10303.32,
+ "text": "are"
+ },
+ {
+ "id": 21384,
+ "start": 10303.32,
+ "end": 10303.52,
+ "text": "great"
+ },
+ {
+ "id": 21385,
+ "start": 10303.52,
+ "end": 10303.92,
+ "text": "photos."
+ },
+ {
+ "id": 21386,
+ "start": 10303.92,
+ "end": 10304.64,
+ "text": "But"
+ },
+ {
+ "id": 21387,
+ "start": 10304.64,
+ "end": 10304.72,
+ "text": "I"
+ },
+ {
+ "id": 21388,
+ "start": 10304.72,
+ "end": 10304.86,
+ "text": "want"
+ },
+ {
+ "id": 21389,
+ "start": 10304.86,
+ "end": 10304.94,
+ "text": "to"
+ },
+ {
+ "id": 21390,
+ "start": 10304.94,
+ "end": 10305.04,
+ "text": "ask"
+ },
+ {
+ "id": 21391,
+ "start": 10305.04,
+ "end": 10305.14,
+ "text": "a"
+ },
+ {
+ "id": 21392,
+ "start": 10305.14,
+ "end": 10305.42,
+ "text": "similar"
+ },
+ {
+ "id": 21393,
+ "start": 10305.42,
+ "end": 10305.6,
+ "text": "set"
+ },
+ {
+ "id": 21394,
+ "start": 10305.6,
+ "end": 10305.66,
+ "text": "of"
+ },
+ {
+ "id": 21395,
+ "start": 10305.66,
+ "end": 10305.94,
+ "text": "questions"
+ },
+ {
+ "id": 21396,
+ "start": 10305.94,
+ "end": 10306.1,
+ "text": "from"
+ },
+ {
+ "id": 21397,
+ "start": 10306.1,
+ "end": 10306.2,
+ "text": "the"
+ },
+ {
+ "id": 21398,
+ "start": 10306.2,
+ "end": 10306.38,
+ "text": "other"
+ },
+ {
+ "id": 21399,
+ "start": 10306.38,
+ "end": 10306.6,
+ "text": "side."
+ },
+ {
+ "id": 21400,
+ "start": 10306.6,
+ "end": 10307.28,
+ "text": "Maybe"
+ },
+ {
+ "id": 21401,
+ "start": 10307.28,
+ "end": 10307.58,
+ "text": "I"
+ },
+ {
+ "id": 21402,
+ "start": 10307.58,
+ "end": 10307.98,
+ "text": "think"
+ },
+ {
+ "id": 21403,
+ "start": 10307.98,
+ "end": 10308.56,
+ "text": "the"
+ },
+ {
+ "id": 21404,
+ "start": 10308.56,
+ "end": 10309.16,
+ "text": "line,"
+ },
+ {
+ "id": 21405,
+ "start": 10309.16,
+ "end": 10309.42,
+ "text": "the"
+ },
+ {
+ "id": 21406,
+ "start": 10309.42,
+ "end": 10309.88,
+ "text": "conceptual"
+ },
+ {
+ "id": 21407,
+ "start": 10309.88,
+ "end": 10310.24,
+ "text": "line"
+ },
+ {
+ "id": 21408,
+ "start": 10310.24,
+ "end": 10311,
+ "text": "between"
+ },
+ {
+ "id": 21409,
+ "start": 10311,
+ "end": 10311.56,
+ "text": "mere"
+ },
+ {
+ "id": 21410,
+ "start": 10311.56,
+ "end": 10311.82,
+ "text": "tech"
+ },
+ {
+ "id": 21411,
+ "start": 10311.82,
+ "end": 10312.34,
+ "text": "company,"
+ },
+ {
+ "id": 21412,
+ "start": 10312.34,
+ "end": 10312.72,
+ "text": "mere"
+ },
+ {
+ "id": 21413,
+ "start": 10312.72,
+ "end": 10313.12,
+ "text": "tools"
+ },
+ {
+ "id": 21414,
+ "start": 10313.12,
+ "end": 10313.72,
+ "text": "and"
+ },
+ {
+ "id": 21415,
+ "start": 10313.72,
+ "end": 10313.84,
+ "text": "an"
+ },
+ {
+ "id": 21416,
+ "start": 10313.84,
+ "end": 10314.26,
+ "text": "actual"
+ },
+ {
+ "id": 21417,
+ "start": 10314.26,
+ "end": 10314.7,
+ "text": "content"
+ },
+ {
+ "id": 21418,
+ "start": 10314.7,
+ "end": 10315.1,
+ "text": "company."
+ },
+ {
+ "id": 21419,
+ "start": 10315.1,
+ "end": 10315.18,
+ "text": "I"
+ },
+ {
+ "id": 21420,
+ "start": 10315.18,
+ "end": 10315.34,
+ "text": "think"
+ },
+ {
+ "id": 21421,
+ "start": 10315.34,
+ "end": 10315.5,
+ "text": "it's"
+ },
+ {
+ "id": 21422,
+ "start": 10315.5,
+ "end": 10315.82,
+ "text": "really"
+ },
+ {
+ "id": 21423,
+ "start": 10315.82,
+ "end": 10316.12,
+ "text": "hard."
+ },
+ {
+ "id": 21424,
+ "start": 10316.12,
+ "end": 10316.32,
+ "text": "I"
+ },
+ {
+ "id": 21425,
+ "start": 10316.32,
+ "end": 10316.52,
+ "text": "think"
+ },
+ {
+ "id": 21426,
+ "start": 10316.52,
+ "end": 10316.76,
+ "text": "you"
+ },
+ {
+ "id": 21427,
+ "start": 10316.76,
+ "end": 10316.94,
+ "text": "guys"
+ },
+ {
+ "id": 21428,
+ "start": 10316.94,
+ "end": 10317.12,
+ "text": "have"
+ },
+ {
+ "id": 21429,
+ "start": 10317.12,
+ "end": 10317.18,
+ "text": "a"
+ },
+ {
+ "id": 21430,
+ "start": 10317.18,
+ "end": 10317.36,
+ "text": "hard"
+ },
+ {
+ "id": 21431,
+ "start": 10317.36,
+ "end": 10317.76,
+ "text": "challenge,"
+ },
+ {
+ "id": 21432,
+ "start": 10317.76,
+ "end": 10317.84,
+ "text": "I"
+ },
+ {
+ "id": 21433,
+ "start": 10317.84,
+ "end": 10318.04,
+ "text": "think"
+ },
+ {
+ "id": 21434,
+ "start": 10318.04,
+ "end": 10318.64,
+ "text": "regulation"
+ },
+ {
+ "id": 21435,
+ "start": 10318.64,
+ "end": 10318.84,
+ "text": "over"
+ },
+ {
+ "id": 21436,
+ "start": 10318.84,
+ "end": 10319.04,
+ "text": "time"
+ },
+ {
+ "id": 21437,
+ "start": 10319.04,
+ "end": 10319.22,
+ "text": "will"
+ },
+ {
+ "id": 21438,
+ "start": 10319.22,
+ "end": 10319.34,
+ "text": "have"
+ },
+ {
+ "id": 21439,
+ "start": 10319.34,
+ "end": 10319.38,
+ "text": "a"
+ },
+ {
+ "id": 21440,
+ "start": 10319.38,
+ "end": 10319.56,
+ "text": "hard"
+ },
+ {
+ "id": 21441,
+ "start": 10319.56,
+ "end": 10319.94,
+ "text": "challenge"
+ },
+ {
+ "id": 21442,
+ "start": 10319.94,
+ "end": 10320.78,
+ "text": "and"
+ },
+ {
+ "id": 21443,
+ "start": 10320.78,
+ "end": 10320.98,
+ "text": "your"
+ },
+ {
+ "id": 21444,
+ "start": 10320.98,
+ "end": 10321.34,
+ "text": "private"
+ },
+ {
+ "id": 21445,
+ "start": 10321.34,
+ "end": 10321.7,
+ "text": "company"
+ },
+ {
+ "id": 21446,
+ "start": 10321.7,
+ "end": 10321.92,
+ "text": "so"
+ },
+ {
+ "id": 21447,
+ "start": 10321.92,
+ "end": 10322.08,
+ "text": "you"
+ },
+ {
+ "id": 21448,
+ "start": 10322.08,
+ "end": 10322.26,
+ "text": "can"
+ },
+ {
+ "id": 21449,
+ "start": 10322.26,
+ "end": 10322.5,
+ "text": "make"
+ },
+ {
+ "id": 21450,
+ "start": 10322.5,
+ "end": 10323.16,
+ "text": "policies"
+ },
+ {
+ "id": 21451,
+ "start": 10323.16,
+ "end": 10323.94,
+ "text": "that"
+ },
+ {
+ "id": 21452,
+ "start": 10323.94,
+ "end": 10324.16,
+ "text": "may"
+ },
+ {
+ "id": 21453,
+ "start": 10324.16,
+ "end": 10325.3,
+ "text": "be"
+ },
+ {
+ "id": 21454,
+ "start": 10325.3,
+ "end": 10326.46,
+ "text": "less"
+ },
+ {
+ "id": 21455,
+ "start": 10326.46,
+ "end": 10326.66,
+ "text": "than"
+ },
+ {
+ "id": 21456,
+ "start": 10326.66,
+ "end": 10327,
+ "text": "first"
+ },
+ {
+ "id": 21457,
+ "start": 10327,
+ "end": 10327.52,
+ "text": "amendment."
+ },
+ {
+ "id": 21458,
+ "start": 10327.52,
+ "end": 10327.86,
+ "text": "Full"
+ },
+ {
+ "id": 21459,
+ "start": 10327.86,
+ "end": 10328.22,
+ "text": "spirit"
+ },
+ {
+ "id": 21460,
+ "start": 10328.22,
+ "end": 10328.8,
+ "text": "embracing"
+ },
+ {
+ "id": 21461,
+ "start": 10328.8,
+ "end": 10329.28,
+ "text": "in"
+ },
+ {
+ "id": 21462,
+ "start": 10329.28,
+ "end": 10329.46,
+ "text": "my"
+ },
+ {
+ "id": 21463,
+ "start": 10329.46,
+ "end": 10329.66,
+ "text": "view."
+ },
+ {
+ "id": 21464,
+ "start": 10329.66,
+ "end": 10330.02,
+ "text": "But"
+ },
+ {
+ "id": 21465,
+ "start": 10330.02,
+ "end": 10330.1,
+ "text": "I"
+ },
+ {
+ "id": 21466,
+ "start": 10330.1,
+ "end": 10330.5,
+ "text": "worry"
+ },
+ {
+ "id": 21467,
+ "start": 10330.5,
+ "end": 10330.72,
+ "text": "about"
+ },
+ {
+ "id": 21468,
+ "start": 10330.72,
+ "end": 10331.02,
+ "text": "that."
+ },
+ {
+ "id": 21469,
+ "start": 10331.02,
+ "end": 10331.2,
+ "text": "I"
+ },
+ {
+ "id": 21470,
+ "start": 10331.2,
+ "end": 10331.66,
+ "text": "worry"
+ },
+ {
+ "id": 21471,
+ "start": 10331.66,
+ "end": 10331.9,
+ "text": "about"
+ },
+ {
+ "id": 21472,
+ "start": 10331.9,
+ "end": 10332,
+ "text": "a"
+ },
+ {
+ "id": 21473,
+ "start": 10332,
+ "end": 10332.34,
+ "text": "world"
+ },
+ {
+ "id": 21474,
+ "start": 10332.34,
+ "end": 10332.62,
+ "text": "where"
+ },
+ {
+ "id": 21475,
+ "start": 10332.62,
+ "end": 10333.12,
+ "text": "when"
+ },
+ {
+ "id": 21476,
+ "start": 10333.12,
+ "end": 10333.3,
+ "text": "you"
+ },
+ {
+ "id": 21477,
+ "start": 10333.3,
+ "end": 10333.44,
+ "text": "go"
+ },
+ {
+ "id": 21478,
+ "start": 10333.44,
+ "end": 10333.86,
+ "text": "from"
+ },
+ {
+ "id": 21479,
+ "start": 10333.86,
+ "end": 10334.58,
+ "text": "violent"
+ },
+ {
+ "id": 21480,
+ "start": 10334.58,
+ "end": 10334.94,
+ "text": "groups"
+ },
+ {
+ "id": 21481,
+ "start": 10334.94,
+ "end": 10335.44,
+ "text": "to"
+ },
+ {
+ "id": 21482,
+ "start": 10335.44,
+ "end": 10335.66,
+ "text": "hate"
+ },
+ {
+ "id": 21483,
+ "start": 10335.66,
+ "end": 10336.06,
+ "text": "speech"
+ },
+ {
+ "id": 21484,
+ "start": 10336.06,
+ "end": 10336.26,
+ "text": "in"
+ },
+ {
+ "id": 21485,
+ "start": 10336.26,
+ "end": 10336.32,
+ "text": "a"
+ },
+ {
+ "id": 21486,
+ "start": 10336.32,
+ "end": 10336.68,
+ "text": "hurry"
+ },
+ {
+ "id": 21487,
+ "start": 10336.68,
+ "end": 10337.08,
+ "text": "in"
+ },
+ {
+ "id": 21488,
+ "start": 10337.08,
+ "end": 10337.28,
+ "text": "one"
+ },
+ {
+ "id": 21489,
+ "start": 10337.28,
+ "end": 10337.42,
+ "text": "of"
+ },
+ {
+ "id": 21490,
+ "start": 10337.42,
+ "end": 10337.6,
+ "text": "your"
+ },
+ {
+ "id": 21491,
+ "start": 10337.6,
+ "end": 10338,
+ "text": "responses"
+ },
+ {
+ "id": 21492,
+ "start": 10338,
+ "end": 10338.1,
+ "text": "to"
+ },
+ {
+ "id": 21493,
+ "start": 10338.1,
+ "end": 10338.22,
+ "text": "one"
+ },
+ {
+ "id": 21494,
+ "start": 10338.22,
+ "end": 10338.28,
+ "text": "of"
+ },
+ {
+ "id": 21495,
+ "start": 10338.28,
+ "end": 10338.38,
+ "text": "the"
+ },
+ {
+ "id": 21496,
+ "start": 10338.38,
+ "end": 10338.7,
+ "text": "opening"
+ },
+ {
+ "id": 21497,
+ "start": 10338.7,
+ "end": 10339.58,
+ "text": "questions"
+ },
+ {
+ "id": 21498,
+ "start": 10339.58,
+ "end": 10340.02,
+ "text": "you"
+ },
+ {
+ "id": 21499,
+ "start": 10340.02,
+ "end": 10340.26,
+ "text": "may"
+ },
+ {
+ "id": 21500,
+ "start": 10340.26,
+ "end": 10340.82,
+ "text": "decide"
+ },
+ {
+ "id": 21501,
+ "start": 10340.82,
+ "end": 10340.98,
+ "text": "or"
+ },
+ {
+ "id": 21502,
+ "start": 10340.98,
+ "end": 10341.36,
+ "text": "Facebook"
+ },
+ {
+ "id": 21503,
+ "start": 10341.36,
+ "end": 10341.54,
+ "text": "may"
+ },
+ {
+ "id": 21504,
+ "start": 10341.54,
+ "end": 10341.92,
+ "text": "decide"
+ },
+ {
+ "id": 21505,
+ "start": 10341.92,
+ "end": 10342.24,
+ "text": "it"
+ },
+ {
+ "id": 21506,
+ "start": 10342.24,
+ "end": 10342.48,
+ "text": "needs"
+ },
+ {
+ "id": 21507,
+ "start": 10342.48,
+ "end": 10342.62,
+ "text": "to"
+ },
+ {
+ "id": 21508,
+ "start": 10342.62,
+ "end": 10343,
+ "text": "police"
+ },
+ {
+ "id": 21509,
+ "start": 10343,
+ "end": 10343.14,
+ "text": "a"
+ },
+ {
+ "id": 21510,
+ "start": 10343.14,
+ "end": 10343.46,
+ "text": "whole"
+ },
+ {
+ "id": 21511,
+ "start": 10343.46,
+ "end": 10343.7,
+ "text": "bunch"
+ },
+ {
+ "id": 21512,
+ "start": 10343.7,
+ "end": 10343.84,
+ "text": "of"
+ },
+ {
+ "id": 21513,
+ "start": 10343.84,
+ "end": 10344.2,
+ "text": "speech"
+ },
+ {
+ "id": 21514,
+ "start": 10344.2,
+ "end": 10345.04,
+ "text": "that"
+ },
+ {
+ "id": 21515,
+ "start": 10345.04,
+ "end": 10345.16,
+ "text": "I"
+ },
+ {
+ "id": 21516,
+ "start": 10345.16,
+ "end": 10345.42,
+ "text": "think"
+ },
+ {
+ "id": 21517,
+ "start": 10345.42,
+ "end": 10346.1,
+ "text": "America"
+ },
+ {
+ "id": 21518,
+ "start": 10346.1,
+ "end": 10346.28,
+ "text": "might"
+ },
+ {
+ "id": 21519,
+ "start": 10346.28,
+ "end": 10346.38,
+ "text": "be"
+ },
+ {
+ "id": 21520,
+ "start": 10346.38,
+ "end": 10346.66,
+ "text": "better"
+ },
+ {
+ "id": 21521,
+ "start": 10346.66,
+ "end": 10346.88,
+ "text": "off."
+ },
+ {
+ "id": 21522,
+ "start": 10346.88,
+ "end": 10347.2,
+ "text": "Not"
+ },
+ {
+ "id": 21523,
+ "start": 10347.2,
+ "end": 10347.48,
+ "text": "having"
+ },
+ {
+ "id": 21524,
+ "start": 10347.48,
+ "end": 10347.9,
+ "text": "policed"
+ },
+ {
+ "id": 21525,
+ "start": 10347.9,
+ "end": 10348.16,
+ "text": "by"
+ },
+ {
+ "id": 21526,
+ "start": 10348.16,
+ "end": 10348.38,
+ "text": "one"
+ },
+ {
+ "id": 21527,
+ "start": 10348.38,
+ "end": 10348.78,
+ "text": "company."
+ },
+ {
+ "id": 21528,
+ "start": 10348.78,
+ "end": 10348.92,
+ "text": "That"
+ },
+ {
+ "id": 21529,
+ "start": 10348.92,
+ "end": 10349.08,
+ "text": "has"
+ },
+ {
+ "id": 21530,
+ "start": 10349.08,
+ "end": 10349.16,
+ "text": "a"
+ },
+ {
+ "id": 21531,
+ "start": 10349.16,
+ "end": 10349.62,
+ "text": "really"
+ },
+ {
+ "id": 21532,
+ "start": 10349.62,
+ "end": 10349.84,
+ "text": "big"
+ },
+ {
+ "id": 21533,
+ "start": 10349.84,
+ "end": 10349.96,
+ "text": "and"
+ },
+ {
+ "id": 21534,
+ "start": 10349.96,
+ "end": 10350.36,
+ "text": "powerful"
+ },
+ {
+ "id": 21535,
+ "start": 10350.36,
+ "end": 10350.84,
+ "text": "platform."
+ },
+ {
+ "id": 21536,
+ "start": 10350.84,
+ "end": 10351.26,
+ "text": "Can"
+ },
+ {
+ "id": 21537,
+ "start": 10351.26,
+ "end": 10351.4,
+ "text": "you"
+ },
+ {
+ "id": 21538,
+ "start": 10351.4,
+ "end": 10352.02,
+ "text": "define"
+ },
+ {
+ "id": 21539,
+ "start": 10352.02,
+ "end": 10352.4,
+ "text": "hate"
+ },
+ {
+ "id": 21540,
+ "start": 10352.4,
+ "end": 10354.38,
+ "text": "speech,"
+ },
+ {
+ "id": 21541,
+ "start": 10354.38,
+ "end": 10355.34,
+ "text": "Senator?"
+ },
+ {
+ "id": 21542,
+ "start": 10355.34,
+ "end": 10355.4,
+ "text": "I"
+ },
+ {
+ "id": 21543,
+ "start": 10355.4,
+ "end": 10355.56,
+ "text": "think"
+ },
+ {
+ "id": 21544,
+ "start": 10355.56,
+ "end": 10355.68,
+ "text": "that"
+ },
+ {
+ "id": 21545,
+ "start": 10355.68,
+ "end": 10355.84,
+ "text": "this"
+ },
+ {
+ "id": 21546,
+ "start": 10355.84,
+ "end": 10355.96,
+ "text": "is"
+ },
+ {
+ "id": 21547,
+ "start": 10355.96,
+ "end": 10356.02,
+ "text": "a"
+ },
+ {
+ "id": 21548,
+ "start": 10356.02,
+ "end": 10356.42,
+ "text": "really"
+ },
+ {
+ "id": 21549,
+ "start": 10356.42,
+ "end": 10356.78,
+ "text": "hard"
+ },
+ {
+ "id": 21550,
+ "start": 10356.78,
+ "end": 10357.84,
+ "text": "question."
+ },
+ {
+ "id": 21551,
+ "start": 10357.84,
+ "end": 10358.72,
+ "text": "And"
+ },
+ {
+ "id": 21552,
+ "start": 10358.72,
+ "end": 10358.98,
+ "text": "I"
+ },
+ {
+ "id": 21553,
+ "start": 10358.98,
+ "end": 10359.14,
+ "text": "think,"
+ },
+ {
+ "id": 21554,
+ "start": 10359.14,
+ "end": 10359.28,
+ "text": "it's"
+ },
+ {
+ "id": 21555,
+ "start": 10359.28,
+ "end": 10359.42,
+ "text": "one"
+ },
+ {
+ "id": 21556,
+ "start": 10359.42,
+ "end": 10359.5,
+ "text": "of"
+ },
+ {
+ "id": 21557,
+ "start": 10359.5,
+ "end": 10359.6,
+ "text": "the"
+ },
+ {
+ "id": 21558,
+ "start": 10359.6,
+ "end": 10359.84,
+ "text": "reasons"
+ },
+ {
+ "id": 21559,
+ "start": 10359.84,
+ "end": 10359.98,
+ "text": "why"
+ },
+ {
+ "id": 21560,
+ "start": 10359.98,
+ "end": 10360.12,
+ "text": "we"
+ },
+ {
+ "id": 21561,
+ "start": 10360.12,
+ "end": 10360.5,
+ "text": "struggle"
+ },
+ {
+ "id": 21562,
+ "start": 10360.5,
+ "end": 10360.64,
+ "text": "with"
+ },
+ {
+ "id": 21563,
+ "start": 10360.64,
+ "end": 10360.76,
+ "text": "it."
+ },
+ {
+ "id": 21564,
+ "start": 10360.76,
+ "end": 10361.22,
+ "text": "There"
+ },
+ {
+ "id": 21565,
+ "start": 10361.22,
+ "end": 10361.32,
+ "text": "are"
+ },
+ {
+ "id": 21566,
+ "start": 10361.32,
+ "end": 10361.58,
+ "text": "certain"
+ },
+ {
+ "id": 21567,
+ "start": 10361.58,
+ "end": 10362.22,
+ "text": "definitions"
+ },
+ {
+ "id": 21568,
+ "start": 10362.22,
+ "end": 10363.16,
+ "text": "that"
+ },
+ {
+ "id": 21569,
+ "start": 10363.16,
+ "end": 10364.12,
+ "text": "we"
+ },
+ {
+ "id": 21570,
+ "start": 10364.12,
+ "end": 10364.44,
+ "text": "have"
+ },
+ {
+ "id": 21571,
+ "start": 10364.44,
+ "end": 10366.38,
+ "text": "around"
+ },
+ {
+ "id": 21572,
+ "start": 10366.38,
+ "end": 10367.36,
+ "text": "calling"
+ },
+ {
+ "id": 21573,
+ "start": 10367.36,
+ "end": 10367.92,
+ "text": "for"
+ },
+ {
+ "id": 21574,
+ "start": 10367.92,
+ "end": 10368.44,
+ "text": "violence"
+ },
+ {
+ "id": 21575,
+ "start": 10368.44,
+ "end": 10369.84,
+ "text": "or"
+ },
+ {
+ "id": 21576,
+ "start": 10369.84,
+ "end": 10370.8,
+ "text": "let's"
+ },
+ {
+ "id": 21577,
+ "start": 10370.8,
+ "end": 10370.96,
+ "text": "just"
+ },
+ {
+ "id": 21578,
+ "start": 10370.96,
+ "end": 10371.26,
+ "text": "agree"
+ },
+ {
+ "id": 21579,
+ "start": 10371.26,
+ "end": 10371.38,
+ "text": "on"
+ },
+ {
+ "id": 21580,
+ "start": 10371.38,
+ "end": 10371.6,
+ "text": "that."
+ },
+ {
+ "id": 21581,
+ "start": 10371.6,
+ "end": 10371.86,
+ "text": "If"
+ },
+ {
+ "id": 21582,
+ "start": 10371.86,
+ "end": 10372.22,
+ "text": "somebody's"
+ },
+ {
+ "id": 21583,
+ "start": 10372.22,
+ "end": 10372.52,
+ "text": "going"
+ },
+ {
+ "id": 21584,
+ "start": 10372.52,
+ "end": 10372.62,
+ "text": "for"
+ },
+ {
+ "id": 21585,
+ "start": 10372.62,
+ "end": 10372.98,
+ "text": "violence"
+ },
+ {
+ "id": 21586,
+ "start": 10372.98,
+ "end": 10373.58,
+ "text": "that"
+ },
+ {
+ "id": 21587,
+ "start": 10373.58,
+ "end": 10373.88,
+ "text": "shouldn't"
+ },
+ {
+ "id": 21588,
+ "start": 10373.88,
+ "end": 10373.98,
+ "text": "be"
+ },
+ {
+ "id": 21589,
+ "start": 10373.98,
+ "end": 10374.18,
+ "text": "there"
+ },
+ {
+ "id": 21590,
+ "start": 10374.18,
+ "end": 10374.54,
+ "text": "I'm"
+ },
+ {
+ "id": 21591,
+ "start": 10374.54,
+ "end": 10374.78,
+ "text": "worried"
+ },
+ {
+ "id": 21592,
+ "start": 10374.78,
+ "end": 10374.92,
+ "text": "about"
+ },
+ {
+ "id": 21593,
+ "start": 10374.92,
+ "end": 10375.06,
+ "text": "the"
+ },
+ {
+ "id": 21594,
+ "start": 10375.06,
+ "end": 10375.88,
+ "text": "psychological"
+ },
+ {
+ "id": 21595,
+ "start": 10375.88,
+ "end": 10376.38,
+ "text": "categories"
+ },
+ {
+ "id": 21596,
+ "start": 10376.38,
+ "end": 10376.66,
+ "text": "around"
+ },
+ {
+ "id": 21597,
+ "start": 10376.66,
+ "end": 10377,
+ "text": "speech."
+ },
+ {
+ "id": 21598,
+ "start": 10377,
+ "end": 10377.78,
+ "text": "You"
+ },
+ {
+ "id": 21599,
+ "start": 10377.78,
+ "end": 10378,
+ "text": "use"
+ },
+ {
+ "id": 21600,
+ "start": 10378,
+ "end": 10378.48,
+ "text": "language"
+ },
+ {
+ "id": 21601,
+ "start": 10378.48,
+ "end": 10378.62,
+ "text": "of"
+ },
+ {
+ "id": 21602,
+ "start": 10378.62,
+ "end": 10379,
+ "text": "safety"
+ },
+ {
+ "id": 21603,
+ "start": 10379,
+ "end": 10379.14,
+ "text": "and"
+ },
+ {
+ "id": 21604,
+ "start": 10379.14,
+ "end": 10379.7,
+ "text": "protection"
+ },
+ {
+ "id": 21605,
+ "start": 10379.7,
+ "end": 10380.14,
+ "text": "earlier"
+ },
+ {
+ "id": 21606,
+ "start": 10380.14,
+ "end": 10380.5,
+ "text": "we"
+ },
+ {
+ "id": 21607,
+ "start": 10380.5,
+ "end": 10380.68,
+ "text": "see"
+ },
+ {
+ "id": 21608,
+ "start": 10380.68,
+ "end": 10380.82,
+ "text": "this"
+ },
+ {
+ "id": 21609,
+ "start": 10380.82,
+ "end": 10381.2,
+ "text": "happening"
+ },
+ {
+ "id": 21610,
+ "start": 10381.2,
+ "end": 10381.34,
+ "text": "on"
+ },
+ {
+ "id": 21611,
+ "start": 10381.34,
+ "end": 10381.68,
+ "text": "college"
+ },
+ {
+ "id": 21612,
+ "start": 10381.68,
+ "end": 10382.2,
+ "text": "campuses"
+ },
+ {
+ "id": 21613,
+ "start": 10382.2,
+ "end": 10382.44,
+ "text": "all"
+ },
+ {
+ "id": 21614,
+ "start": 10382.44,
+ "end": 10382.76,
+ "text": "across"
+ },
+ {
+ "id": 21615,
+ "start": 10382.76,
+ "end": 10382.9,
+ "text": "the"
+ },
+ {
+ "id": 21616,
+ "start": 10382.9,
+ "end": 10383.28,
+ "text": "country"
+ },
+ {
+ "id": 21617,
+ "start": 10383.28,
+ "end": 10383.72,
+ "text": "it's"
+ },
+ {
+ "id": 21618,
+ "start": 10383.72,
+ "end": 10384.6,
+ "text": "dangerous"
+ },
+ {
+ "id": 21619,
+ "start": 10384.6,
+ "end": 10385.56,
+ "text": "40%"
+ },
+ {
+ "id": 21620,
+ "start": 10385.56,
+ "end": 10385.62,
+ "text": "of"
+ },
+ {
+ "id": 21621,
+ "start": 10385.62,
+ "end": 10386.1,
+ "text": "Americans"
+ },
+ {
+ "id": 21622,
+ "start": 10386.1,
+ "end": 10386.4,
+ "text": "under"
+ },
+ {
+ "id": 21623,
+ "start": 10386.4,
+ "end": 10386.58,
+ "text": "age"
+ },
+ {
+ "id": 21624,
+ "start": 10386.58,
+ "end": 10387.22,
+ "text": "35"
+ },
+ {
+ "id": 21625,
+ "start": 10387.22,
+ "end": 10387.76,
+ "text": "tell"
+ },
+ {
+ "id": 21626,
+ "start": 10387.76,
+ "end": 10388.24,
+ "text": "pollsters"
+ },
+ {
+ "id": 21627,
+ "start": 10388.24,
+ "end": 10388.4,
+ "text": "they"
+ },
+ {
+ "id": 21628,
+ "start": 10388.4,
+ "end": 10388.58,
+ "text": "think"
+ },
+ {
+ "id": 21629,
+ "start": 10388.58,
+ "end": 10388.72,
+ "text": "the"
+ },
+ {
+ "id": 21630,
+ "start": 10388.72,
+ "end": 10388.94,
+ "text": "first"
+ },
+ {
+ "id": 21631,
+ "start": 10388.94,
+ "end": 10389.34,
+ "text": "amendment"
+ },
+ {
+ "id": 21632,
+ "start": 10389.34,
+ "end": 10389.44,
+ "text": "is"
+ },
+ {
+ "id": 21633,
+ "start": 10389.44,
+ "end": 10389.96,
+ "text": "dangerous"
+ },
+ {
+ "id": 21634,
+ "start": 10389.96,
+ "end": 10390.54,
+ "text": "because"
+ },
+ {
+ "id": 21635,
+ "start": 10390.54,
+ "end": 10390.7,
+ "text": "you"
+ },
+ {
+ "id": 21636,
+ "start": 10390.7,
+ "end": 10390.9,
+ "text": "might"
+ },
+ {
+ "id": 21637,
+ "start": 10390.9,
+ "end": 10391.06,
+ "text": "use"
+ },
+ {
+ "id": 21638,
+ "start": 10391.06,
+ "end": 10391.2,
+ "text": "your"
+ },
+ {
+ "id": 21639,
+ "start": 10391.2,
+ "end": 10391.56,
+ "text": "freedom"
+ },
+ {
+ "id": 21640,
+ "start": 10391.56,
+ "end": 10391.7,
+ "text": "to"
+ },
+ {
+ "id": 21641,
+ "start": 10391.7,
+ "end": 10391.9,
+ "text": "say"
+ },
+ {
+ "id": 21642,
+ "start": 10391.9,
+ "end": 10392.2,
+ "text": "something"
+ },
+ {
+ "id": 21643,
+ "start": 10392.2,
+ "end": 10392.34,
+ "text": "that"
+ },
+ {
+ "id": 21644,
+ "start": 10392.34,
+ "end": 10392.54,
+ "text": "hurts."
+ },
+ {
+ "id": 21645,
+ "start": 10392.54,
+ "end": 10392.86,
+ "text": "Somebody"
+ },
+ {
+ "id": 21646,
+ "start": 10392.86,
+ "end": 10393.2,
+ "text": "else's"
+ },
+ {
+ "id": 21647,
+ "start": 10393.2,
+ "end": 10393.62,
+ "text": "feelings,"
+ },
+ {
+ "id": 21648,
+ "start": 10393.62,
+ "end": 10394.2,
+ "text": "guess"
+ },
+ {
+ "id": 21649,
+ "start": 10394.2,
+ "end": 10394.44,
+ "text": "what?"
+ },
+ {
+ "id": 21650,
+ "start": 10394.44,
+ "end": 10394.82,
+ "text": "There"
+ },
+ {
+ "id": 21651,
+ "start": 10394.82,
+ "end": 10394.94,
+ "text": "are"
+ },
+ {
+ "id": 21652,
+ "start": 10394.94,
+ "end": 10395.12,
+ "text": "some"
+ },
+ {
+ "id": 21653,
+ "start": 10395.12,
+ "end": 10395.58,
+ "text": "really"
+ },
+ {
+ "id": 21654,
+ "start": 10395.58,
+ "end": 10396.08,
+ "text": "passionately"
+ },
+ {
+ "id": 21655,
+ "start": 10396.08,
+ "end": 10396.34,
+ "text": "held"
+ },
+ {
+ "id": 21656,
+ "start": 10396.34,
+ "end": 10396.64,
+ "text": "views"
+ },
+ {
+ "id": 21657,
+ "start": 10396.64,
+ "end": 10396.86,
+ "text": "about"
+ },
+ {
+ "id": 21658,
+ "start": 10396.86,
+ "end": 10396.98,
+ "text": "the"
+ },
+ {
+ "id": 21659,
+ "start": 10396.98,
+ "end": 10397.36,
+ "text": "abortion"
+ },
+ {
+ "id": 21660,
+ "start": 10397.36,
+ "end": 10397.62,
+ "text": "issue"
+ },
+ {
+ "id": 21661,
+ "start": 10397.62,
+ "end": 10397.78,
+ "text": "on"
+ },
+ {
+ "id": 21662,
+ "start": 10397.78,
+ "end": 10397.98,
+ "text": "this"
+ },
+ {
+ "id": 21663,
+ "start": 10397.98,
+ "end": 10398.38,
+ "text": "panel"
+ },
+ {
+ "id": 21664,
+ "start": 10398.38,
+ "end": 10398.82,
+ "text": "today,"
+ },
+ {
+ "id": 21665,
+ "start": 10398.82,
+ "end": 10399.3,
+ "text": "can"
+ },
+ {
+ "id": 21666,
+ "start": 10399.3,
+ "end": 10399.42,
+ "text": "you"
+ },
+ {
+ "id": 21667,
+ "start": 10399.42,
+ "end": 10399.76,
+ "text": "imagine"
+ },
+ {
+ "id": 21668,
+ "start": 10399.76,
+ "end": 10399.84,
+ "text": "a"
+ },
+ {
+ "id": 21669,
+ "start": 10399.84,
+ "end": 10400.06,
+ "text": "world"
+ },
+ {
+ "id": 21670,
+ "start": 10400.06,
+ "end": 10401.02,
+ "text": "where"
+ },
+ {
+ "id": 21671,
+ "start": 10401.02,
+ "end": 10401.16,
+ "text": "you"
+ },
+ {
+ "id": 21672,
+ "start": 10401.16,
+ "end": 10401.46,
+ "text": "might"
+ },
+ {
+ "id": 21673,
+ "start": 10401.46,
+ "end": 10401.92,
+ "text": "decide"
+ },
+ {
+ "id": 21674,
+ "start": 10401.92,
+ "end": 10402.16,
+ "text": "that"
+ },
+ {
+ "id": 21675,
+ "start": 10402.16,
+ "end": 10402.42,
+ "text": "pro"
+ },
+ {
+ "id": 21676,
+ "start": 10402.42,
+ "end": 10402.76,
+ "text": "Lifers"
+ },
+ {
+ "id": 21677,
+ "start": 10402.76,
+ "end": 10402.92,
+ "text": "are"
+ },
+ {
+ "id": 21678,
+ "start": 10402.92,
+ "end": 10403.4,
+ "text": "prohibited"
+ },
+ {
+ "id": 21679,
+ "start": 10403.4,
+ "end": 10403.64,
+ "text": "from"
+ },
+ {
+ "id": 21680,
+ "start": 10403.64,
+ "end": 10404.06,
+ "text": "speaking"
+ },
+ {
+ "id": 21681,
+ "start": 10404.06,
+ "end": 10404.26,
+ "text": "about"
+ },
+ {
+ "id": 21682,
+ "start": 10404.26,
+ "end": 10404.4,
+ "text": "the"
+ },
+ {
+ "id": 21683,
+ "start": 10404.4,
+ "end": 10404.8,
+ "text": "abortion"
+ },
+ {
+ "id": 21684,
+ "start": 10404.8,
+ "end": 10405.02,
+ "text": "views"
+ },
+ {
+ "id": 21685,
+ "start": 10405.02,
+ "end": 10405.16,
+ "text": "on"
+ },
+ {
+ "id": 21686,
+ "start": 10405.16,
+ "end": 10405.32,
+ "text": "your"
+ },
+ {
+ "id": 21687,
+ "start": 10405.32,
+ "end": 10405.7,
+ "text": "content"
+ },
+ {
+ "id": 21688,
+ "start": 10405.7,
+ "end": 10405.86,
+ "text": "on"
+ },
+ {
+ "id": 21689,
+ "start": 10405.86,
+ "end": 10406.06,
+ "text": "your"
+ },
+ {
+ "id": 21690,
+ "start": 10406.06,
+ "end": 10406.54,
+ "text": "platform."
+ },
+ {
+ "id": 21691,
+ "start": 10406.54,
+ "end": 10407.58,
+ "text": "I"
+ },
+ {
+ "id": 21692,
+ "start": 10407.58,
+ "end": 10407.9,
+ "text": "certainly"
+ },
+ {
+ "id": 21693,
+ "start": 10407.9,
+ "end": 10408.1,
+ "text": "would"
+ },
+ {
+ "id": 21694,
+ "start": 10408.1,
+ "end": 10408.26,
+ "text": "not"
+ },
+ {
+ "id": 21695,
+ "start": 10408.26,
+ "end": 10408.48,
+ "text": "want"
+ },
+ {
+ "id": 21696,
+ "start": 10408.48,
+ "end": 10408.7,
+ "text": "that"
+ },
+ {
+ "id": 21697,
+ "start": 10408.7,
+ "end": 10408.94,
+ "text": "to"
+ },
+ {
+ "id": 21698,
+ "start": 10408.94,
+ "end": 10409.08,
+ "text": "be"
+ },
+ {
+ "id": 21699,
+ "start": 10409.08,
+ "end": 10409.24,
+ "text": "the"
+ },
+ {
+ "id": 21700,
+ "start": 10409.24,
+ "end": 10409.46,
+ "text": "case."
+ },
+ {
+ "id": 21701,
+ "start": 10409.46,
+ "end": 10410.28,
+ "text": "But"
+ },
+ {
+ "id": 21702,
+ "start": 10410.28,
+ "end": 10410.82,
+ "text": "it"
+ },
+ {
+ "id": 21703,
+ "start": 10410.82,
+ "end": 10411.08,
+ "text": "might"
+ },
+ {
+ "id": 21704,
+ "start": 10411.08,
+ "end": 10411.48,
+ "text": "really"
+ },
+ {
+ "id": 21705,
+ "start": 10411.48,
+ "end": 10411.62,
+ "text": "be"
+ },
+ {
+ "id": 21706,
+ "start": 10411.62,
+ "end": 10412.16,
+ "text": "unsettling"
+ },
+ {
+ "id": 21707,
+ "start": 10412.16,
+ "end": 10412.28,
+ "text": "to"
+ },
+ {
+ "id": 21708,
+ "start": 10412.28,
+ "end": 10412.5,
+ "text": "people"
+ },
+ {
+ "id": 21709,
+ "start": 10412.5,
+ "end": 10412.62,
+ "text": "who"
+ },
+ {
+ "id": 21710,
+ "start": 10412.62,
+ "end": 10412.72,
+ "text": "have"
+ },
+ {
+ "id": 21711,
+ "start": 10412.72,
+ "end": 10412.82,
+ "text": "had"
+ },
+ {
+ "id": 21712,
+ "start": 10412.82,
+ "end": 10412.92,
+ "text": "an"
+ },
+ {
+ "id": 21713,
+ "start": 10412.92,
+ "end": 10413.32,
+ "text": "abortion"
+ },
+ {
+ "id": 21714,
+ "start": 10413.32,
+ "end": 10413.44,
+ "text": "to"
+ },
+ {
+ "id": 21715,
+ "start": 10413.44,
+ "end": 10413.56,
+ "text": "have"
+ },
+ {
+ "id": 21716,
+ "start": 10413.56,
+ "end": 10413.66,
+ "text": "an"
+ },
+ {
+ "id": 21717,
+ "start": 10413.66,
+ "end": 10413.9,
+ "text": "open"
+ },
+ {
+ "id": 21718,
+ "start": 10413.9,
+ "end": 10414.16,
+ "text": "debate"
+ },
+ {
+ "id": 21719,
+ "start": 10414.16,
+ "end": 10414.36,
+ "text": "about"
+ },
+ {
+ "id": 21720,
+ "start": 10414.36,
+ "end": 10414.56,
+ "text": "that"
+ },
+ {
+ "id": 21721,
+ "start": 10414.56,
+ "end": 10414.84,
+ "text": "wouldn't"
+ },
+ {
+ "id": 21722,
+ "start": 10414.84,
+ "end": 10415.52,
+ "text": "it"
+ },
+ {
+ "id": 21723,
+ "start": 10415.52,
+ "end": 10416.3,
+ "text": "it"
+ },
+ {
+ "id": 21724,
+ "start": 10416.3,
+ "end": 10416.54,
+ "text": "might"
+ },
+ {
+ "id": 21725,
+ "start": 10416.54,
+ "end": 10416.66,
+ "text": "be."
+ },
+ {
+ "id": 21726,
+ "start": 10416.66,
+ "end": 10416.88,
+ "text": "But"
+ },
+ {
+ "id": 21727,
+ "start": 10416.88,
+ "end": 10416.94,
+ "text": "I"
+ },
+ {
+ "id": 21728,
+ "start": 10416.94,
+ "end": 10417.1,
+ "text": "don't"
+ },
+ {
+ "id": 21729,
+ "start": 10417.1,
+ "end": 10417.26,
+ "text": "think"
+ },
+ {
+ "id": 21730,
+ "start": 10417.26,
+ "end": 10417.38,
+ "text": "that"
+ },
+ {
+ "id": 21731,
+ "start": 10417.38,
+ "end": 10417.6,
+ "text": "that"
+ },
+ {
+ "id": 21732,
+ "start": 10417.6,
+ "end": 10421.06,
+ "text": "would"
+ },
+ {
+ "id": 21733,
+ "start": 10421.06,
+ "end": 10421.22,
+ "text": "fit"
+ },
+ {
+ "id": 21734,
+ "start": 10421.22,
+ "end": 10421.38,
+ "text": "any"
+ },
+ {
+ "id": 21735,
+ "start": 10421.38,
+ "end": 10421.46,
+ "text": "of"
+ },
+ {
+ "id": 21736,
+ "start": 10421.46,
+ "end": 10421.56,
+ "text": "the"
+ },
+ {
+ "id": 21737,
+ "start": 10421.56,
+ "end": 10422.08,
+ "text": "definitions"
+ },
+ {
+ "id": 21738,
+ "start": 10422.08,
+ "end": 10422.32,
+ "text": "of"
+ },
+ {
+ "id": 21739,
+ "start": 10422.32,
+ "end": 10423.14,
+ "text": "what"
+ },
+ {
+ "id": 21740,
+ "start": 10423.14,
+ "end": 10423.28,
+ "text": "we"
+ },
+ {
+ "id": 21741,
+ "start": 10423.28,
+ "end": 10423.56,
+ "text": "have."
+ },
+ {
+ "id": 21742,
+ "start": 10423.56,
+ "end": 10424.22,
+ "text": "But"
+ },
+ {
+ "id": 21743,
+ "start": 10424.22,
+ "end": 10424.32,
+ "text": "I"
+ },
+ {
+ "id": 21744,
+ "start": 10424.32,
+ "end": 10424.54,
+ "text": "do"
+ },
+ {
+ "id": 21745,
+ "start": 10424.54,
+ "end": 10425.02,
+ "text": "generally"
+ },
+ {
+ "id": 21746,
+ "start": 10425.02,
+ "end": 10425.44,
+ "text": "agree"
+ },
+ {
+ "id": 21747,
+ "start": 10425.44,
+ "end": 10426.04,
+ "text": "with"
+ },
+ {
+ "id": 21748,
+ "start": 10426.04,
+ "end": 10426.16,
+ "text": "the"
+ },
+ {
+ "id": 21749,
+ "start": 10426.16,
+ "end": 10426.34,
+ "text": "point."
+ },
+ {
+ "id": 21750,
+ "start": 10426.34,
+ "end": 10426.46,
+ "text": "That"
+ },
+ {
+ "id": 21751,
+ "start": 10426.46,
+ "end": 10426.66,
+ "text": "you're"
+ },
+ {
+ "id": 21752,
+ "start": 10426.66,
+ "end": 10426.94,
+ "text": "making"
+ },
+ {
+ "id": 21753,
+ "start": 10426.94,
+ "end": 10427.32,
+ "text": "which"
+ },
+ {
+ "id": 21754,
+ "start": 10427.32,
+ "end": 10427.5,
+ "text": "is"
+ },
+ {
+ "id": 21755,
+ "start": 10427.5,
+ "end": 10428.18,
+ "text": "as"
+ },
+ {
+ "id": 21756,
+ "start": 10428.18,
+ "end": 10429.06,
+ "text": "we're"
+ },
+ {
+ "id": 21757,
+ "start": 10429.06,
+ "end": 10429.28,
+ "text": "able"
+ },
+ {
+ "id": 21758,
+ "start": 10429.28,
+ "end": 10429.42,
+ "text": "to"
+ },
+ {
+ "id": 21759,
+ "start": 10429.42,
+ "end": 10430.26,
+ "text": "technologically"
+ },
+ {
+ "id": 21760,
+ "start": 10430.26,
+ "end": 10430.6,
+ "text": "shift"
+ },
+ {
+ "id": 21761,
+ "start": 10430.6,
+ "end": 10431.56,
+ "text": "towards."
+ },
+ {
+ "id": 21762,
+ "start": 10431.56,
+ "end": 10432.6,
+ "text": "Especially"
+ },
+ {
+ "id": 21763,
+ "start": 10432.6,
+ "end": 10432.86,
+ "text": "having"
+ },
+ {
+ "id": 21764,
+ "start": 10432.86,
+ "end": 10433.8,
+ "text": "AI"
+ },
+ {
+ "id": 21765,
+ "start": 10433.8,
+ "end": 10434.9,
+ "text": "proactively."
+ },
+ {
+ "id": 21766,
+ "start": 10434.9,
+ "end": 10435.5,
+ "text": "Look"
+ },
+ {
+ "id": 21767,
+ "start": 10435.5,
+ "end": 10435.6,
+ "text": "at"
+ },
+ {
+ "id": 21768,
+ "start": 10435.6,
+ "end": 10436.08,
+ "text": "content."
+ },
+ {
+ "id": 21769,
+ "start": 10436.08,
+ "end": 10436.16,
+ "text": "I"
+ },
+ {
+ "id": 21770,
+ "start": 10436.16,
+ "end": 10436.96,
+ "text": "think"
+ },
+ {
+ "id": 21771,
+ "start": 10436.96,
+ "end": 10437.06,
+ "text": "that"
+ },
+ {
+ "id": 21772,
+ "start": 10437.06,
+ "end": 10437.28,
+ "text": "that's"
+ },
+ {
+ "id": 21773,
+ "start": 10437.28,
+ "end": 10437.46,
+ "text": "going"
+ },
+ {
+ "id": 21774,
+ "start": 10437.46,
+ "end": 10437.56,
+ "text": "to"
+ },
+ {
+ "id": 21775,
+ "start": 10437.56,
+ "end": 10438.44,
+ "text": "create"
+ },
+ {
+ "id": 21776,
+ "start": 10438.44,
+ "end": 10439.38,
+ "text": "massive"
+ },
+ {
+ "id": 21777,
+ "start": 10439.38,
+ "end": 10439.86,
+ "text": "questions"
+ },
+ {
+ "id": 21778,
+ "start": 10439.86,
+ "end": 10440.06,
+ "text": "for"
+ },
+ {
+ "id": 21779,
+ "start": 10440.06,
+ "end": 10440.66,
+ "text": "society"
+ },
+ {
+ "id": 21780,
+ "start": 10440.66,
+ "end": 10441.34,
+ "text": "about"
+ },
+ {
+ "id": 21781,
+ "start": 10441.34,
+ "end": 10441.52,
+ "text": "what"
+ },
+ {
+ "id": 21782,
+ "start": 10441.52,
+ "end": 10442.16,
+ "text": "obligations"
+ },
+ {
+ "id": 21783,
+ "start": 10442.16,
+ "end": 10442.28,
+ "text": "we"
+ },
+ {
+ "id": 21784,
+ "start": 10442.28,
+ "end": 10442.54,
+ "text": "want"
+ },
+ {
+ "id": 21785,
+ "start": 10442.54,
+ "end": 10442.62,
+ "text": "to"
+ },
+ {
+ "id": 21786,
+ "start": 10442.62,
+ "end": 10443,
+ "text": "require"
+ },
+ {
+ "id": 21787,
+ "start": 10443,
+ "end": 10443.5,
+ "text": "companies"
+ },
+ {
+ "id": 21788,
+ "start": 10443.5,
+ "end": 10444.74,
+ "text": "to"
+ },
+ {
+ "id": 21789,
+ "start": 10444.74,
+ "end": 10445.47,
+ "text": "fulfill."
+ },
+ {
+ "id": 21790,
+ "start": 10445.47,
+ "end": 10446.47,
+ "text": "And"
+ },
+ {
+ "id": 21791,
+ "start": 10446.47,
+ "end": 10446.55,
+ "text": "I"
+ },
+ {
+ "id": 21792,
+ "start": 10446.55,
+ "end": 10446.69,
+ "text": "do"
+ },
+ {
+ "id": 21793,
+ "start": 10446.69,
+ "end": 10446.89,
+ "text": "think"
+ },
+ {
+ "id": 21794,
+ "start": 10446.89,
+ "end": 10447.01,
+ "text": "that"
+ },
+ {
+ "id": 21795,
+ "start": 10447.01,
+ "end": 10447.23,
+ "text": "that's"
+ },
+ {
+ "id": 21796,
+ "start": 10447.23,
+ "end": 10447.33,
+ "text": "a"
+ },
+ {
+ "id": 21797,
+ "start": 10447.33,
+ "end": 10447.73,
+ "text": "question"
+ },
+ {
+ "id": 21798,
+ "start": 10447.73,
+ "end": 10448.13,
+ "text": "that"
+ },
+ {
+ "id": 21799,
+ "start": 10448.13,
+ "end": 10449.11,
+ "text": "we"
+ },
+ {
+ "id": 21800,
+ "start": 10449.11,
+ "end": 10449.57,
+ "text": "need"
+ },
+ {
+ "id": 21801,
+ "start": 10449.57,
+ "end": 10449.67,
+ "text": "to"
+ },
+ {
+ "id": 21802,
+ "start": 10449.67,
+ "end": 10450.13,
+ "text": "struggle"
+ },
+ {
+ "id": 21803,
+ "start": 10450.13,
+ "end": 10450.33,
+ "text": "with"
+ },
+ {
+ "id": 21804,
+ "start": 10450.33,
+ "end": 10450.61,
+ "text": "as"
+ },
+ {
+ "id": 21805,
+ "start": 10450.61,
+ "end": 10450.69,
+ "text": "a"
+ },
+ {
+ "id": 21806,
+ "start": 10450.69,
+ "end": 10451.19,
+ "text": "country."
+ },
+ {
+ "id": 21807,
+ "start": 10451.19,
+ "end": 10451.81,
+ "text": "Because"
+ },
+ {
+ "id": 21808,
+ "start": 10451.81,
+ "end": 10451.87,
+ "text": "I"
+ },
+ {
+ "id": 21809,
+ "start": 10451.87,
+ "end": 10452.01,
+ "text": "know"
+ },
+ {
+ "id": 21810,
+ "start": 10452.01,
+ "end": 10452.23,
+ "text": "other"
+ },
+ {
+ "id": 21811,
+ "start": 10452.23,
+ "end": 10452.57,
+ "text": "countries"
+ },
+ {
+ "id": 21812,
+ "start": 10452.57,
+ "end": 10452.77,
+ "text": "are"
+ },
+ {
+ "id": 21813,
+ "start": 10452.77,
+ "end": 10452.99,
+ "text": "and"
+ },
+ {
+ "id": 21814,
+ "start": 10452.99,
+ "end": 10453.21,
+ "text": "they're"
+ },
+ {
+ "id": 21815,
+ "start": 10453.21,
+ "end": 10453.43,
+ "text": "putting"
+ },
+ {
+ "id": 21816,
+ "start": 10453.43,
+ "end": 10453.67,
+ "text": "laws"
+ },
+ {
+ "id": 21817,
+ "start": 10453.67,
+ "end": 10453.81,
+ "text": "in"
+ },
+ {
+ "id": 21818,
+ "start": 10453.81,
+ "end": 10454.11,
+ "text": "place."
+ },
+ {
+ "id": 21819,
+ "start": 10454.11,
+ "end": 10454.95,
+ "text": "And"
+ },
+ {
+ "id": 21820,
+ "start": 10454.95,
+ "end": 10455.27,
+ "text": "I"
+ },
+ {
+ "id": 21821,
+ "start": 10455.27,
+ "end": 10455.45,
+ "text": "think"
+ },
+ {
+ "id": 21822,
+ "start": 10455.45,
+ "end": 10455.57,
+ "text": "that"
+ },
+ {
+ "id": 21823,
+ "start": 10455.57,
+ "end": 10455.93,
+ "text": "America"
+ },
+ {
+ "id": 21824,
+ "start": 10455.93,
+ "end": 10456.27,
+ "text": "needs"
+ },
+ {
+ "id": 21825,
+ "start": 10456.27,
+ "end": 10457.14,
+ "text": "to"
+ },
+ {
+ "id": 21826,
+ "start": 10457.14,
+ "end": 10458.06,
+ "text": "figure"
+ },
+ {
+ "id": 21827,
+ "start": 10458.06,
+ "end": 10458.26,
+ "text": "out"
+ },
+ {
+ "id": 21828,
+ "start": 10458.26,
+ "end": 10458.4,
+ "text": "and"
+ },
+ {
+ "id": 21829,
+ "start": 10458.4,
+ "end": 10458.62,
+ "text": "create"
+ },
+ {
+ "id": 21830,
+ "start": 10458.62,
+ "end": 10458.72,
+ "text": "the"
+ },
+ {
+ "id": 21831,
+ "start": 10458.72,
+ "end": 10458.84,
+ "text": "set"
+ },
+ {
+ "id": 21832,
+ "start": 10458.84,
+ "end": 10458.92,
+ "text": "of"
+ },
+ {
+ "id": 21833,
+ "start": 10458.92,
+ "end": 10459.34,
+ "text": "principles"
+ },
+ {
+ "id": 21834,
+ "start": 10459.34,
+ "end": 10459.48,
+ "text": "that"
+ },
+ {
+ "id": 21835,
+ "start": 10459.48,
+ "end": 10459.56,
+ "text": "we"
+ },
+ {
+ "id": 21836,
+ "start": 10459.56,
+ "end": 10459.74,
+ "text": "want"
+ },
+ {
+ "id": 21837,
+ "start": 10459.74,
+ "end": 10460.12,
+ "text": "American"
+ },
+ {
+ "id": 21838,
+ "start": 10460.12,
+ "end": 10460.54,
+ "text": "companies"
+ },
+ {
+ "id": 21839,
+ "start": 10460.54,
+ "end": 10460.66,
+ "text": "to"
+ },
+ {
+ "id": 21840,
+ "start": 10460.66,
+ "end": 10461.08,
+ "text": "operate"
+ },
+ {
+ "id": 21841,
+ "start": 10461.08,
+ "end": 10461.3,
+ "text": "under"
+ },
+ {
+ "id": 21842,
+ "start": 10461.3,
+ "end": 10462.1,
+ "text": "thanks."
+ },
+ {
+ "id": 21843,
+ "start": 10462.1,
+ "end": 10462.42,
+ "text": "I"
+ },
+ {
+ "id": 21844,
+ "start": 10462.42,
+ "end": 10462.68,
+ "text": "wouldn't"
+ },
+ {
+ "id": 21845,
+ "start": 10462.68,
+ "end": 10462.82,
+ "text": "want"
+ },
+ {
+ "id": 21846,
+ "start": 10462.82,
+ "end": 10462.98,
+ "text": "you"
+ },
+ {
+ "id": 21847,
+ "start": 10462.98,
+ "end": 10463.08,
+ "text": "to"
+ },
+ {
+ "id": 21848,
+ "start": 10463.08,
+ "end": 10463.28,
+ "text": "leave"
+ },
+ {
+ "id": 21849,
+ "start": 10463.28,
+ "end": 10463.46,
+ "text": "here"
+ },
+ {
+ "id": 21850,
+ "start": 10463.46,
+ "end": 10463.7,
+ "text": "today"
+ },
+ {
+ "id": 21851,
+ "start": 10463.7,
+ "end": 10463.88,
+ "text": "and"
+ },
+ {
+ "id": 21852,
+ "start": 10463.88,
+ "end": 10464.06,
+ "text": "think,"
+ },
+ {
+ "id": 21853,
+ "start": 10464.06,
+ "end": 10464.3,
+ "text": "there's"
+ },
+ {
+ "id": 21854,
+ "start": 10464.3,
+ "end": 10464.46,
+ "text": "sort"
+ },
+ {
+ "id": 21855,
+ "start": 10464.46,
+ "end": 10464.54,
+ "text": "of"
+ },
+ {
+ "id": 21856,
+ "start": 10464.54,
+ "end": 10464.6,
+ "text": "a"
+ },
+ {
+ "id": 21857,
+ "start": 10464.6,
+ "end": 10465.12,
+ "text": "unified"
+ },
+ {
+ "id": 21858,
+ "start": 10465.12,
+ "end": 10465.32,
+ "text": "view"
+ },
+ {
+ "id": 21859,
+ "start": 10465.32,
+ "end": 10465.44,
+ "text": "in"
+ },
+ {
+ "id": 21860,
+ "start": 10465.44,
+ "end": 10465.56,
+ "text": "the"
+ },
+ {
+ "id": 21861,
+ "start": 10465.56,
+ "end": 10466,
+ "text": "Congress"
+ },
+ {
+ "id": 21862,
+ "start": 10466,
+ "end": 10466.42,
+ "text": "that"
+ },
+ {
+ "id": 21863,
+ "start": 10466.42,
+ "end": 10466.58,
+ "text": "you"
+ },
+ {
+ "id": 21864,
+ "start": 10466.58,
+ "end": 10466.82,
+ "text": "should"
+ },
+ {
+ "id": 21865,
+ "start": 10466.82,
+ "end": 10466.94,
+ "text": "be"
+ },
+ {
+ "id": 21866,
+ "start": 10466.94,
+ "end": 10467.28,
+ "text": "moving"
+ },
+ {
+ "id": 21867,
+ "start": 10467.28,
+ "end": 10467.52,
+ "text": "toward"
+ },
+ {
+ "id": 21868,
+ "start": 10467.52,
+ "end": 10467.98,
+ "text": "Policing,"
+ },
+ {
+ "id": 21869,
+ "start": 10467.98,
+ "end": 10468.18,
+ "text": "more"
+ },
+ {
+ "id": 21870,
+ "start": 10468.18,
+ "end": 10468.32,
+ "text": "and"
+ },
+ {
+ "id": 21871,
+ "start": 10468.32,
+ "end": 10468.48,
+ "text": "more"
+ },
+ {
+ "id": 21872,
+ "start": 10468.48,
+ "end": 10468.58,
+ "text": "and"
+ },
+ {
+ "id": 21873,
+ "start": 10468.58,
+ "end": 10468.78,
+ "text": "more"
+ },
+ {
+ "id": 21874,
+ "start": 10468.78,
+ "end": 10469.12,
+ "text": "speech."
+ },
+ {
+ "id": 21875,
+ "start": 10469.12,
+ "end": 10469.48,
+ "text": "I"
+ },
+ {
+ "id": 21876,
+ "start": 10469.48,
+ "end": 10469.68,
+ "text": "think"
+ },
+ {
+ "id": 21877,
+ "start": 10469.68,
+ "end": 10470.5,
+ "text": "violence"
+ },
+ {
+ "id": 21878,
+ "start": 10470.5,
+ "end": 10471,
+ "text": "has"
+ },
+ {
+ "id": 21879,
+ "start": 10471,
+ "end": 10471.22,
+ "text": "no"
+ },
+ {
+ "id": 21880,
+ "start": 10471.22,
+ "end": 10471.48,
+ "text": "place"
+ },
+ {
+ "id": 21881,
+ "start": 10471.48,
+ "end": 10471.62,
+ "text": "on"
+ },
+ {
+ "id": 21882,
+ "start": 10471.62,
+ "end": 10471.78,
+ "text": "your"
+ },
+ {
+ "id": 21883,
+ "start": 10471.78,
+ "end": 10472.7,
+ "text": "platform."
+ },
+ {
+ "id": 21884,
+ "start": 10472.7,
+ "end": 10473.28,
+ "text": "Sex"
+ },
+ {
+ "id": 21885,
+ "start": 10473.28,
+ "end": 10473.84,
+ "text": "traffickers"
+ },
+ {
+ "id": 21886,
+ "start": 10473.84,
+ "end": 10473.98,
+ "text": "and"
+ },
+ {
+ "id": 21887,
+ "start": 10473.98,
+ "end": 10474.22,
+ "text": "human"
+ },
+ {
+ "id": 21888,
+ "start": 10474.22,
+ "end": 10474.66,
+ "text": "traffickers"
+ },
+ {
+ "id": 21889,
+ "start": 10474.66,
+ "end": 10474.86,
+ "text": "have"
+ },
+ {
+ "id": 21890,
+ "start": 10474.86,
+ "end": 10475,
+ "text": "no"
+ },
+ {
+ "id": 21891,
+ "start": 10475,
+ "end": 10475.2,
+ "text": "place"
+ },
+ {
+ "id": 21892,
+ "start": 10475.2,
+ "end": 10475.32,
+ "text": "on"
+ },
+ {
+ "id": 21893,
+ "start": 10475.32,
+ "end": 10475.48,
+ "text": "your"
+ },
+ {
+ "id": 21894,
+ "start": 10475.48,
+ "end": 10475.94,
+ "text": "platform."
+ },
+ {
+ "id": 21895,
+ "start": 10475.94,
+ "end": 10476.36,
+ "text": "But"
+ },
+ {
+ "id": 21896,
+ "start": 10476.36,
+ "end": 10476.8,
+ "text": "vigorous"
+ },
+ {
+ "id": 21897,
+ "start": 10476.8,
+ "end": 10477.24,
+ "text": "debates,"
+ },
+ {
+ "id": 21898,
+ "start": 10477.24,
+ "end": 10477.78,
+ "text": "adults"
+ },
+ {
+ "id": 21899,
+ "start": 10477.78,
+ "end": 10478,
+ "text": "need"
+ },
+ {
+ "id": 21900,
+ "start": 10478,
+ "end": 10478.08,
+ "text": "to"
+ },
+ {
+ "id": 21901,
+ "start": 10478.08,
+ "end": 10478.46,
+ "text": "engage"
+ },
+ {
+ "id": 21902,
+ "start": 10478.46,
+ "end": 10478.62,
+ "text": "in"
+ },
+ {
+ "id": 21903,
+ "start": 10478.62,
+ "end": 10479.02,
+ "text": "vigorous"
+ },
+ {
+ "id": 21904,
+ "start": 10479.02,
+ "end": 10479.4,
+ "text": "debates."
+ },
+ {
+ "id": 21905,
+ "start": 10479.4,
+ "end": 10480.02,
+ "text": "I"
+ },
+ {
+ "id": 21906,
+ "start": 10480.02,
+ "end": 10480.22,
+ "text": "have"
+ },
+ {
+ "id": 21907,
+ "start": 10480.22,
+ "end": 10480.74,
+ "text": "only"
+ },
+ {
+ "id": 21908,
+ "start": 10480.74,
+ "end": 10480.88,
+ "text": "a"
+ },
+ {
+ "id": 21909,
+ "start": 10480.88,
+ "end": 10481.12,
+ "text": "little"
+ },
+ {
+ "id": 21910,
+ "start": 10481.12,
+ "end": 10481.3,
+ "text": "less"
+ },
+ {
+ "id": 21911,
+ "start": 10481.3,
+ "end": 10481.48,
+ "text": "than"
+ },
+ {
+ "id": 21912,
+ "start": 10481.48,
+ "end": 10481.68,
+ "text": "two"
+ },
+ {
+ "id": 21913,
+ "start": 10481.68,
+ "end": 10481.94,
+ "text": "minutes"
+ },
+ {
+ "id": 21914,
+ "start": 10481.94,
+ "end": 10482.18,
+ "text": "left"
+ },
+ {
+ "id": 21915,
+ "start": 10482.18,
+ "end": 10482.46,
+ "text": "one"
+ },
+ {
+ "id": 21916,
+ "start": 10482.46,
+ "end": 10482.68,
+ "text": "shift"
+ },
+ {
+ "id": 21917,
+ "start": 10482.68,
+ "end": 10482.92,
+ "text": "gears"
+ },
+ {
+ "id": 21918,
+ "start": 10482.92,
+ "end": 10483,
+ "text": "a"
+ },
+ {
+ "id": 21919,
+ "start": 10483,
+ "end": 10483.22,
+ "text": "little"
+ },
+ {
+ "id": 21920,
+ "start": 10483.22,
+ "end": 10483.32,
+ "text": "bit,"
+ },
+ {
+ "id": 21921,
+ "start": 10483.32,
+ "end": 10483.44,
+ "text": "but"
+ },
+ {
+ "id": 21922,
+ "start": 10483.44,
+ "end": 10483.58,
+ "text": "that"
+ },
+ {
+ "id": 21923,
+ "start": 10483.58,
+ "end": 10483.7,
+ "text": "was"
+ },
+ {
+ "id": 21924,
+ "start": 10483.7,
+ "end": 10483.92,
+ "text": "about"
+ },
+ {
+ "id": 21925,
+ "start": 10483.92,
+ "end": 10484.64,
+ "text": "adults"
+ },
+ {
+ "id": 21926,
+ "start": 10484.64,
+ "end": 10485.22,
+ "text": "you're"
+ },
+ {
+ "id": 21927,
+ "start": 10485.22,
+ "end": 10485.28,
+ "text": "a"
+ },
+ {
+ "id": 21928,
+ "start": 10485.28,
+ "end": 10485.66,
+ "text": "dad"
+ },
+ {
+ "id": 21929,
+ "start": 10485.66,
+ "end": 10486.44,
+ "text": "I'd"
+ },
+ {
+ "id": 21930,
+ "start": 10486.44,
+ "end": 10486.56,
+ "text": "like"
+ },
+ {
+ "id": 21931,
+ "start": 10486.56,
+ "end": 10486.64,
+ "text": "to"
+ },
+ {
+ "id": 21932,
+ "start": 10486.64,
+ "end": 10486.8,
+ "text": "talk"
+ },
+ {
+ "id": 21933,
+ "start": 10486.8,
+ "end": 10486.88,
+ "text": "a"
+ },
+ {
+ "id": 21934,
+ "start": 10486.88,
+ "end": 10487.14,
+ "text": "little"
+ },
+ {
+ "id": 21935,
+ "start": 10487.14,
+ "end": 10487.32,
+ "text": "bit"
+ },
+ {
+ "id": 21936,
+ "start": 10487.32,
+ "end": 10487.7,
+ "text": "about"
+ },
+ {
+ "id": 21937,
+ "start": 10487.7,
+ "end": 10488.06,
+ "text": "social"
+ },
+ {
+ "id": 21938,
+ "start": 10488.06,
+ "end": 10488.28,
+ "text": "media"
+ },
+ {
+ "id": 21939,
+ "start": 10488.28,
+ "end": 10488.84,
+ "text": "addiction."
+ },
+ {
+ "id": 21940,
+ "start": 10488.84,
+ "end": 10489.7,
+ "text": "You"
+ },
+ {
+ "id": 21941,
+ "start": 10489.7,
+ "end": 10490.34,
+ "text": "started"
+ },
+ {
+ "id": 21942,
+ "start": 10490.34,
+ "end": 10490.96,
+ "text": "your"
+ },
+ {
+ "id": 21943,
+ "start": 10490.96,
+ "end": 10491.4,
+ "text": "comments"
+ },
+ {
+ "id": 21944,
+ "start": 10491.4,
+ "end": 10491.74,
+ "text": "today"
+ },
+ {
+ "id": 21945,
+ "start": 10491.74,
+ "end": 10491.84,
+ "text": "by"
+ },
+ {
+ "id": 21946,
+ "start": 10491.84,
+ "end": 10492.14,
+ "text": "talking"
+ },
+ {
+ "id": 21947,
+ "start": 10492.14,
+ "end": 10492.3,
+ "text": "about"
+ },
+ {
+ "id": 21948,
+ "start": 10492.3,
+ "end": 10492.48,
+ "text": "how"
+ },
+ {
+ "id": 21949,
+ "start": 10492.48,
+ "end": 10492.98,
+ "text": "Facebook"
+ },
+ {
+ "id": 21950,
+ "start": 10492.98,
+ "end": 10493.34,
+ "text": "is"
+ },
+ {
+ "id": 21951,
+ "start": 10493.34,
+ "end": 10493.54,
+ "text": "and"
+ },
+ {
+ "id": 21952,
+ "start": 10493.54,
+ "end": 10493.72,
+ "text": "was"
+ },
+ {
+ "id": 21953,
+ "start": 10493.72,
+ "end": 10494.04,
+ "text": "founded"
+ },
+ {
+ "id": 21954,
+ "start": 10494.04,
+ "end": 10494.22,
+ "text": "as"
+ },
+ {
+ "id": 21955,
+ "start": 10494.22,
+ "end": 10494.36,
+ "text": "an"
+ },
+ {
+ "id": 21956,
+ "start": 10494.36,
+ "end": 10494.96,
+ "text": "optimistic"
+ },
+ {
+ "id": 21957,
+ "start": 10494.96,
+ "end": 10495.36,
+ "text": "company."
+ },
+ {
+ "id": 21958,
+ "start": 10495.36,
+ "end": 10495.7,
+ "text": "You"
+ },
+ {
+ "id": 21959,
+ "start": 10495.7,
+ "end": 10495.82,
+ "text": "and"
+ },
+ {
+ "id": 21960,
+ "start": 10495.82,
+ "end": 10495.9,
+ "text": "I"
+ },
+ {
+ "id": 21961,
+ "start": 10495.9,
+ "end": 10496.06,
+ "text": "have"
+ },
+ {
+ "id": 21962,
+ "start": 10496.06,
+ "end": 10496.28,
+ "text": "had"
+ },
+ {
+ "id": 21963,
+ "start": 10496.28,
+ "end": 10497.04,
+ "text": "conversations"
+ },
+ {
+ "id": 21964,
+ "start": 10497.04,
+ "end": 10497.42,
+ "text": "separate"
+ },
+ {
+ "id": 21965,
+ "start": 10497.42,
+ "end": 10497.58,
+ "text": "from"
+ },
+ {
+ "id": 21966,
+ "start": 10497.58,
+ "end": 10497.82,
+ "text": "here."
+ },
+ {
+ "id": 21967,
+ "start": 10497.82,
+ "end": 10498.3,
+ "text": "I"
+ },
+ {
+ "id": 21968,
+ "start": 10498.3,
+ "end": 10498.62,
+ "text": "don't"
+ },
+ {
+ "id": 21969,
+ "start": 10498.62,
+ "end": 10498.78,
+ "text": "put"
+ },
+ {
+ "id": 21970,
+ "start": 10498.78,
+ "end": 10498.98,
+ "text": "words"
+ },
+ {
+ "id": 21971,
+ "start": 10498.98,
+ "end": 10499.06,
+ "text": "in"
+ },
+ {
+ "id": 21972,
+ "start": 10499.06,
+ "end": 10499.22,
+ "text": "your"
+ },
+ {
+ "id": 21973,
+ "start": 10499.22,
+ "end": 10499.42,
+ "text": "mouth."
+ },
+ {
+ "id": 21974,
+ "start": 10499.42,
+ "end": 10499.58,
+ "text": "But"
+ },
+ {
+ "id": 21975,
+ "start": 10499.58,
+ "end": 10499.66,
+ "text": "I"
+ },
+ {
+ "id": 21976,
+ "start": 10499.66,
+ "end": 10499.88,
+ "text": "think"
+ },
+ {
+ "id": 21977,
+ "start": 10499.88,
+ "end": 10500.14,
+ "text": "as"
+ },
+ {
+ "id": 21978,
+ "start": 10500.14,
+ "end": 10500.36,
+ "text": "you've"
+ },
+ {
+ "id": 21979,
+ "start": 10500.36,
+ "end": 10500.62,
+ "text": "aged,"
+ },
+ {
+ "id": 21980,
+ "start": 10500.62,
+ "end": 10500.8,
+ "text": "you"
+ },
+ {
+ "id": 21981,
+ "start": 10500.8,
+ "end": 10500.98,
+ "text": "might"
+ },
+ {
+ "id": 21982,
+ "start": 10500.98,
+ "end": 10501.08,
+ "text": "be"
+ },
+ {
+ "id": 21983,
+ "start": 10501.08,
+ "end": 10501.14,
+ "text": "a"
+ },
+ {
+ "id": 21984,
+ "start": 10501.14,
+ "end": 10501.42,
+ "text": "little"
+ },
+ {
+ "id": 21985,
+ "start": 10501.42,
+ "end": 10501.56,
+ "text": "bit"
+ },
+ {
+ "id": 21986,
+ "start": 10501.56,
+ "end": 10501.82,
+ "text": "less"
+ },
+ {
+ "id": 21987,
+ "start": 10501.82,
+ "end": 10502.5,
+ "text": "idealistic"
+ },
+ {
+ "id": 21988,
+ "start": 10502.5,
+ "end": 10502.66,
+ "text": "and"
+ },
+ {
+ "id": 21989,
+ "start": 10502.66,
+ "end": 10503.3,
+ "text": "optimistic"
+ },
+ {
+ "id": 21990,
+ "start": 10503.3,
+ "end": 10504.22,
+ "text": "than"
+ },
+ {
+ "id": 21991,
+ "start": 10504.22,
+ "end": 10504.36,
+ "text": "you"
+ },
+ {
+ "id": 21992,
+ "start": 10504.36,
+ "end": 10504.54,
+ "text": "were."
+ },
+ {
+ "id": 21993,
+ "start": 10504.54,
+ "end": 10505.1,
+ "text": "When"
+ },
+ {
+ "id": 21994,
+ "start": 10505.1,
+ "end": 10505.22,
+ "text": "you"
+ },
+ {
+ "id": 21995,
+ "start": 10505.22,
+ "end": 10505.56,
+ "text": "started"
+ },
+ {
+ "id": 21996,
+ "start": 10505.56,
+ "end": 10506.04,
+ "text": "Facebook"
+ },
+ {
+ "id": 21997,
+ "start": 10506.04,
+ "end": 10506.88,
+ "text": "as"
+ },
+ {
+ "id": 21998,
+ "start": 10506.88,
+ "end": 10506.98,
+ "text": "a"
+ },
+ {
+ "id": 21999,
+ "start": 10506.98,
+ "end": 10507.42,
+ "text": "dad."
+ },
+ {
+ "id": 22000,
+ "start": 10507.42,
+ "end": 10508.1,
+ "text": "Do"
+ },
+ {
+ "id": 22001,
+ "start": 10508.1,
+ "end": 10508.28,
+ "text": "you"
+ },
+ {
+ "id": 22002,
+ "start": 10508.28,
+ "end": 10508.74,
+ "text": "worry"
+ },
+ {
+ "id": 22003,
+ "start": 10508.74,
+ "end": 10509.18,
+ "text": "about"
+ },
+ {
+ "id": 22004,
+ "start": 10509.18,
+ "end": 10509.54,
+ "text": "social"
+ },
+ {
+ "id": 22005,
+ "start": 10509.54,
+ "end": 10509.8,
+ "text": "media"
+ },
+ {
+ "id": 22006,
+ "start": 10509.8,
+ "end": 10510.36,
+ "text": "addiction"
+ },
+ {
+ "id": 22007,
+ "start": 10510.36,
+ "end": 10510.62,
+ "text": "as"
+ },
+ {
+ "id": 22008,
+ "start": 10510.62,
+ "end": 10510.7,
+ "text": "a"
+ },
+ {
+ "id": 22009,
+ "start": 10510.7,
+ "end": 10511.06,
+ "text": "problem"
+ },
+ {
+ "id": 22010,
+ "start": 10511.06,
+ "end": 10511.2,
+ "text": "for"
+ },
+ {
+ "id": 22011,
+ "start": 10511.2,
+ "end": 10511.6,
+ "text": "America's"
+ },
+ {
+ "id": 22012,
+ "start": 10511.6,
+ "end": 10512.6,
+ "text": "teens,"
+ },
+ {
+ "id": 22013,
+ "start": 10512.6,
+ "end": 10513.54,
+ "text": "well,"
+ },
+ {
+ "id": 22014,
+ "start": 10513.54,
+ "end": 10513.66,
+ "text": "my"
+ },
+ {
+ "id": 22015,
+ "start": 10513.66,
+ "end": 10513.96,
+ "text": "hope"
+ },
+ {
+ "id": 22016,
+ "start": 10513.96,
+ "end": 10514.18,
+ "text": "is"
+ },
+ {
+ "id": 22017,
+ "start": 10514.18,
+ "end": 10514.6,
+ "text": "that"
+ },
+ {
+ "id": 22018,
+ "start": 10514.6,
+ "end": 10514.7,
+ "text": "we"
+ },
+ {
+ "id": 22019,
+ "start": 10514.7,
+ "end": 10514.88,
+ "text": "can"
+ },
+ {
+ "id": 22020,
+ "start": 10514.88,
+ "end": 10515.26,
+ "text": "be"
+ },
+ {
+ "id": 22021,
+ "start": 10515.26,
+ "end": 10515.9,
+ "text": "idealistic"
+ },
+ {
+ "id": 22022,
+ "start": 10515.9,
+ "end": 10516.12,
+ "text": "but"
+ },
+ {
+ "id": 22023,
+ "start": 10516.12,
+ "end": 10516.34,
+ "text": "have"
+ },
+ {
+ "id": 22024,
+ "start": 10516.34,
+ "end": 10516.44,
+ "text": "a"
+ },
+ {
+ "id": 22025,
+ "start": 10516.44,
+ "end": 10516.78,
+ "text": "broad"
+ },
+ {
+ "id": 22026,
+ "start": 10516.78,
+ "end": 10516.96,
+ "text": "view"
+ },
+ {
+ "id": 22027,
+ "start": 10516.96,
+ "end": 10517.06,
+ "text": "of"
+ },
+ {
+ "id": 22028,
+ "start": 10517.06,
+ "end": 10517.18,
+ "text": "our"
+ },
+ {
+ "id": 22029,
+ "start": 10517.18,
+ "end": 10517.98,
+ "text": "responsibility"
+ },
+ {
+ "id": 22030,
+ "start": 10517.98,
+ "end": 10519.16,
+ "text": "to"
+ },
+ {
+ "id": 22031,
+ "start": 10519.16,
+ "end": 10519.6,
+ "text": "your"
+ },
+ {
+ "id": 22032,
+ "start": 10519.6,
+ "end": 10519.78,
+ "text": "point"
+ },
+ {
+ "id": 22033,
+ "start": 10519.78,
+ "end": 10519.98,
+ "text": "about"
+ },
+ {
+ "id": 22034,
+ "start": 10519.98,
+ "end": 10520.36,
+ "text": "teams."
+ },
+ {
+ "id": 22035,
+ "start": 10520.36,
+ "end": 10521.12,
+ "text": "This"
+ },
+ {
+ "id": 22036,
+ "start": 10521.12,
+ "end": 10521.28,
+ "text": "is"
+ },
+ {
+ "id": 22037,
+ "start": 10521.28,
+ "end": 10521.64,
+ "text": "certainly"
+ },
+ {
+ "id": 22038,
+ "start": 10521.64,
+ "end": 10521.9,
+ "text": "something"
+ },
+ {
+ "id": 22039,
+ "start": 10521.9,
+ "end": 10522,
+ "text": "that"
+ },
+ {
+ "id": 22040,
+ "start": 10522,
+ "end": 10522.06,
+ "text": "I"
+ },
+ {
+ "id": 22041,
+ "start": 10522.06,
+ "end": 10522.22,
+ "text": "think"
+ },
+ {
+ "id": 22042,
+ "start": 10522.22,
+ "end": 10522.42,
+ "text": "any"
+ },
+ {
+ "id": 22043,
+ "start": 10522.42,
+ "end": 10522.78,
+ "text": "parent"
+ },
+ {
+ "id": 22044,
+ "start": 10522.78,
+ "end": 10523.06,
+ "text": "thinks"
+ },
+ {
+ "id": 22045,
+ "start": 10523.06,
+ "end": 10523.4,
+ "text": "about"
+ },
+ {
+ "id": 22046,
+ "start": 10523.4,
+ "end": 10523.64,
+ "text": "is"
+ },
+ {
+ "id": 22047,
+ "start": 10523.64,
+ "end": 10523.86,
+ "text": "how"
+ },
+ {
+ "id": 22048,
+ "start": 10523.86,
+ "end": 10524.02,
+ "text": "much"
+ },
+ {
+ "id": 22049,
+ "start": 10524.02,
+ "end": 10524.12,
+ "text": "do"
+ },
+ {
+ "id": 22050,
+ "start": 10524.12,
+ "end": 10524.24,
+ "text": "you"
+ },
+ {
+ "id": 22051,
+ "start": 10524.24,
+ "end": 10524.4,
+ "text": "want"
+ },
+ {
+ "id": 22052,
+ "start": 10524.4,
+ "end": 10524.6,
+ "text": "your"
+ },
+ {
+ "id": 22053,
+ "start": 10524.6,
+ "end": 10524.82,
+ "text": "kids"
+ },
+ {
+ "id": 22054,
+ "start": 10524.82,
+ "end": 10525.12,
+ "text": "using"
+ },
+ {
+ "id": 22055,
+ "start": 10525.12,
+ "end": 10526.72,
+ "text": "technology"
+ },
+ {
+ "id": 22056,
+ "start": 10526.72,
+ "end": 10527.86,
+ "text": "at"
+ },
+ {
+ "id": 22057,
+ "start": 10527.86,
+ "end": 10528.3,
+ "text": "Facebook"
+ },
+ {
+ "id": 22058,
+ "start": 10528.3,
+ "end": 10529.02,
+ "text": "specifically?"
+ },
+ {
+ "id": 22059,
+ "start": 10529.02,
+ "end": 10529.92,
+ "text": "I"
+ },
+ {
+ "id": 22060,
+ "start": 10529.92,
+ "end": 10530.14,
+ "text": "view"
+ },
+ {
+ "id": 22061,
+ "start": 10530.14,
+ "end": 10530.26,
+ "text": "our"
+ },
+ {
+ "id": 22062,
+ "start": 10530.26,
+ "end": 10531.02,
+ "text": "responsibility"
+ },
+ {
+ "id": 22063,
+ "start": 10531.02,
+ "end": 10531.18,
+ "text": "is"
+ },
+ {
+ "id": 22064,
+ "start": 10531.18,
+ "end": 10531.42,
+ "text": "not"
+ },
+ {
+ "id": 22065,
+ "start": 10531.42,
+ "end": 10531.6,
+ "text": "just"
+ },
+ {
+ "id": 22066,
+ "start": 10531.6,
+ "end": 10531.92,
+ "text": "building"
+ },
+ {
+ "id": 22067,
+ "start": 10531.92,
+ "end": 10532.42,
+ "text": "services"
+ },
+ {
+ "id": 22068,
+ "start": 10532.42,
+ "end": 10532.6,
+ "text": "that"
+ },
+ {
+ "id": 22069,
+ "start": 10532.6,
+ "end": 10532.84,
+ "text": "people"
+ },
+ {
+ "id": 22070,
+ "start": 10532.84,
+ "end": 10533.12,
+ "text": "like"
+ },
+ {
+ "id": 22071,
+ "start": 10533.12,
+ "end": 10533.82,
+ "text": "but"
+ },
+ {
+ "id": 22072,
+ "start": 10533.82,
+ "end": 10534.12,
+ "text": "building"
+ },
+ {
+ "id": 22073,
+ "start": 10534.12,
+ "end": 10534.58,
+ "text": "services"
+ },
+ {
+ "id": 22074,
+ "start": 10534.58,
+ "end": 10534.74,
+ "text": "that"
+ },
+ {
+ "id": 22075,
+ "start": 10534.74,
+ "end": 10534.86,
+ "text": "are"
+ },
+ {
+ "id": 22076,
+ "start": 10534.86,
+ "end": 10535.04,
+ "text": "good"
+ },
+ {
+ "id": 22077,
+ "start": 10535.04,
+ "end": 10535.2,
+ "text": "for"
+ },
+ {
+ "id": 22078,
+ "start": 10535.2,
+ "end": 10535.48,
+ "text": "people"
+ },
+ {
+ "id": 22079,
+ "start": 10535.48,
+ "end": 10535.66,
+ "text": "and"
+ },
+ {
+ "id": 22080,
+ "start": 10535.66,
+ "end": 10535.86,
+ "text": "good"
+ },
+ {
+ "id": 22081,
+ "start": 10535.86,
+ "end": 10536,
+ "text": "for"
+ },
+ {
+ "id": 22082,
+ "start": 10536,
+ "end": 10536.58,
+ "text": "society"
+ },
+ {
+ "id": 22083,
+ "start": 10536.58,
+ "end": 10536.72,
+ "text": "as"
+ },
+ {
+ "id": 22084,
+ "start": 10536.72,
+ "end": 10536.94,
+ "text": "well."
+ },
+ {
+ "id": 22085,
+ "start": 10536.94,
+ "end": 10537.18,
+ "text": "So"
+ },
+ {
+ "id": 22086,
+ "start": 10537.18,
+ "end": 10537.34,
+ "text": "we"
+ },
+ {
+ "id": 22087,
+ "start": 10537.34,
+ "end": 10537.78,
+ "text": "study"
+ },
+ {
+ "id": 22088,
+ "start": 10537.78,
+ "end": 10538.38,
+ "text": "a"
+ },
+ {
+ "id": 22089,
+ "start": 10538.38,
+ "end": 10538.6,
+ "text": "lot"
+ },
+ {
+ "id": 22090,
+ "start": 10538.6,
+ "end": 10538.7,
+ "text": "of"
+ },
+ {
+ "id": 22091,
+ "start": 10538.7,
+ "end": 10539.08,
+ "text": "effects"
+ },
+ {
+ "id": 22092,
+ "start": 10539.08,
+ "end": 10539.22,
+ "text": "of"
+ },
+ {
+ "id": 22093,
+ "start": 10539.22,
+ "end": 10539.84,
+ "text": "wellbeing"
+ },
+ {
+ "id": 22094,
+ "start": 10539.84,
+ "end": 10540.86,
+ "text": "of"
+ },
+ {
+ "id": 22095,
+ "start": 10540.86,
+ "end": 10541.44,
+ "text": "our"
+ },
+ {
+ "id": 22096,
+ "start": 10541.44,
+ "end": 10541.74,
+ "text": "tools"
+ },
+ {
+ "id": 22097,
+ "start": 10541.74,
+ "end": 10541.94,
+ "text": "and"
+ },
+ {
+ "id": 22098,
+ "start": 10541.94,
+ "end": 10542.28,
+ "text": "broader"
+ },
+ {
+ "id": 22099,
+ "start": 10542.28,
+ "end": 10542.9,
+ "text": "technology"
+ },
+ {
+ "id": 22100,
+ "start": 10542.9,
+ "end": 10543.06,
+ "text": "and"
+ },
+ {
+ "id": 22101,
+ "start": 10543.06,
+ "end": 10543.5,
+ "text": "you"
+ },
+ {
+ "id": 22102,
+ "start": 10543.5,
+ "end": 10543.66,
+ "text": "know,"
+ },
+ {
+ "id": 22103,
+ "start": 10543.66,
+ "end": 10543.8,
+ "text": "like"
+ },
+ {
+ "id": 22104,
+ "start": 10543.8,
+ "end": 10544,
+ "text": "any"
+ },
+ {
+ "id": 22105,
+ "start": 10544,
+ "end": 10544.58,
+ "text": "tool"
+ },
+ {
+ "id": 22106,
+ "start": 10544.58,
+ "end": 10545.14,
+ "text": "they're"
+ },
+ {
+ "id": 22107,
+ "start": 10545.14,
+ "end": 10545.42,
+ "text": "good"
+ },
+ {
+ "id": 22108,
+ "start": 10545.42,
+ "end": 10545.78,
+ "text": "and"
+ },
+ {
+ "id": 22109,
+ "start": 10545.78,
+ "end": 10546.02,
+ "text": "bad"
+ },
+ {
+ "id": 22110,
+ "start": 10546.02,
+ "end": 10546.32,
+ "text": "uses"
+ },
+ {
+ "id": 22111,
+ "start": 10546.32,
+ "end": 10546.44,
+ "text": "of"
+ },
+ {
+ "id": 22112,
+ "start": 10546.44,
+ "end": 10546.56,
+ "text": "it."
+ },
+ {
+ "id": 22113,
+ "start": 10546.56,
+ "end": 10546.78,
+ "text": "What"
+ },
+ {
+ "id": 22114,
+ "start": 10546.78,
+ "end": 10546.92,
+ "text": "we"
+ },
+ {
+ "id": 22115,
+ "start": 10546.92,
+ "end": 10547.14,
+ "text": "find"
+ },
+ {
+ "id": 22116,
+ "start": 10547.14,
+ "end": 10547.3,
+ "text": "in"
+ },
+ {
+ "id": 22117,
+ "start": 10547.3,
+ "end": 10547.7,
+ "text": "general"
+ },
+ {
+ "id": 22118,
+ "start": 10547.7,
+ "end": 10548.44,
+ "text": "is"
+ },
+ {
+ "id": 22119,
+ "start": 10548.44,
+ "end": 10548.72,
+ "text": "that"
+ },
+ {
+ "id": 22120,
+ "start": 10548.72,
+ "end": 10549.4,
+ "text": "if"
+ },
+ {
+ "id": 22121,
+ "start": 10549.4,
+ "end": 10549.66,
+ "text": "you're"
+ },
+ {
+ "id": 22122,
+ "start": 10549.66,
+ "end": 10550.02,
+ "text": "using"
+ },
+ {
+ "id": 22123,
+ "start": 10550.02,
+ "end": 10550.46,
+ "text": "social"
+ },
+ {
+ "id": 22124,
+ "start": 10550.46,
+ "end": 10550.8,
+ "text": "media"
+ },
+ {
+ "id": 22125,
+ "start": 10550.8,
+ "end": 10551.58,
+ "text": "in"
+ },
+ {
+ "id": 22126,
+ "start": 10551.58,
+ "end": 10551.82,
+ "text": "order,"
+ },
+ {
+ "id": 22127,
+ "start": 10551.82,
+ "end": 10551.9,
+ "text": "to"
+ },
+ {
+ "id": 22128,
+ "start": 10551.9,
+ "end": 10552.1,
+ "text": "build"
+ },
+ {
+ "id": 22129,
+ "start": 10552.1,
+ "end": 10552.78,
+ "text": "relationships,"
+ },
+ {
+ "id": 22130,
+ "start": 10552.78,
+ "end": 10553.34,
+ "text": "right"
+ },
+ {
+ "id": 22131,
+ "start": 10553.34,
+ "end": 10553.84,
+ "text": "you're"
+ },
+ {
+ "id": 22132,
+ "start": 10553.84,
+ "end": 10554.1,
+ "text": "sharing"
+ },
+ {
+ "id": 22133,
+ "start": 10554.1,
+ "end": 10554.4,
+ "text": "content"
+ },
+ {
+ "id": 22134,
+ "start": 10554.4,
+ "end": 10554.54,
+ "text": "with"
+ },
+ {
+ "id": 22135,
+ "start": 10554.54,
+ "end": 10554.82,
+ "text": "friends"
+ },
+ {
+ "id": 22136,
+ "start": 10554.82,
+ "end": 10555.31,
+ "text": "you're"
+ },
+ {
+ "id": 22137,
+ "start": 10555.31,
+ "end": 10556.11,
+ "text": "then"
+ },
+ {
+ "id": 22138,
+ "start": 10556.11,
+ "end": 10556.27,
+ "text": "that"
+ },
+ {
+ "id": 22139,
+ "start": 10556.27,
+ "end": 10556.39,
+ "text": "is"
+ },
+ {
+ "id": 22140,
+ "start": 10556.39,
+ "end": 10557.01,
+ "text": "associated"
+ },
+ {
+ "id": 22141,
+ "start": 10557.01,
+ "end": 10557.21,
+ "text": "with"
+ },
+ {
+ "id": 22142,
+ "start": 10557.21,
+ "end": 10557.51,
+ "text": "all"
+ },
+ {
+ "id": 22143,
+ "start": 10557.51,
+ "end": 10557.61,
+ "text": "of"
+ },
+ {
+ "id": 22144,
+ "start": 10557.61,
+ "end": 10557.95,
+ "text": "the"
+ },
+ {
+ "id": 22145,
+ "start": 10557.95,
+ "end": 10558.59,
+ "text": "long"
+ },
+ {
+ "id": 22146,
+ "start": 10558.59,
+ "end": 10558.79,
+ "text": "term"
+ },
+ {
+ "id": 22147,
+ "start": 10558.79,
+ "end": 10559.21,
+ "text": "measures"
+ },
+ {
+ "id": 22148,
+ "start": 10559.21,
+ "end": 10559.37,
+ "text": "of"
+ },
+ {
+ "id": 22149,
+ "start": 10559.37,
+ "end": 10559.63,
+ "text": "well"
+ },
+ {
+ "id": 22150,
+ "start": 10559.63,
+ "end": 10559.93,
+ "text": "being"
+ },
+ {
+ "id": 22151,
+ "start": 10559.93,
+ "end": 10560.61,
+ "text": "that"
+ },
+ {
+ "id": 22152,
+ "start": 10560.61,
+ "end": 10560.77,
+ "text": "you"
+ },
+ {
+ "id": 22153,
+ "start": 10560.77,
+ "end": 10561.37,
+ "text": "intuitively"
+ },
+ {
+ "id": 22154,
+ "start": 10561.37,
+ "end": 10561.57,
+ "text": "think"
+ },
+ {
+ "id": 22155,
+ "start": 10561.57,
+ "end": 10561.73,
+ "text": "of"
+ },
+ {
+ "id": 22156,
+ "start": 10561.73,
+ "end": 10561.99,
+ "text": "long"
+ },
+ {
+ "id": 22157,
+ "start": 10561.99,
+ "end": 10562.25,
+ "text": "term"
+ },
+ {
+ "id": 22158,
+ "start": 10562.25,
+ "end": 10562.75,
+ "text": "health,"
+ },
+ {
+ "id": 22159,
+ "start": 10562.75,
+ "end": 10563.01,
+ "text": "long"
+ },
+ {
+ "id": 22160,
+ "start": 10563.01,
+ "end": 10563.19,
+ "text": "term"
+ },
+ {
+ "id": 22161,
+ "start": 10563.19,
+ "end": 10563.65,
+ "text": "happiness"
+ },
+ {
+ "id": 22162,
+ "start": 10563.65,
+ "end": 10563.89,
+ "text": "long"
+ },
+ {
+ "id": 22163,
+ "start": 10563.89,
+ "end": 10564.09,
+ "text": "term"
+ },
+ {
+ "id": 22164,
+ "start": 10564.09,
+ "end": 10564.41,
+ "text": "feeling"
+ },
+ {
+ "id": 22165,
+ "start": 10564.41,
+ "end": 10564.85,
+ "text": "connected"
+ },
+ {
+ "id": 22166,
+ "start": 10564.85,
+ "end": 10565.13,
+ "text": "feeling"
+ },
+ {
+ "id": 22167,
+ "start": 10565.13,
+ "end": 10565.31,
+ "text": "less"
+ },
+ {
+ "id": 22168,
+ "start": 10565.31,
+ "end": 10566.04,
+ "text": "lonely."
+ },
+ {
+ "id": 22169,
+ "start": 10566.04,
+ "end": 10566.6,
+ "text": "But"
+ },
+ {
+ "id": 22170,
+ "start": 10566.6,
+ "end": 10567.08,
+ "text": "if"
+ },
+ {
+ "id": 22171,
+ "start": 10567.08,
+ "end": 10567.28,
+ "text": "you're"
+ },
+ {
+ "id": 22172,
+ "start": 10567.28,
+ "end": 10567.54,
+ "text": "using"
+ },
+ {
+ "id": 22173,
+ "start": 10567.54,
+ "end": 10567.64,
+ "text": "the"
+ },
+ {
+ "id": 22174,
+ "start": 10567.64,
+ "end": 10567.98,
+ "text": "Internet"
+ },
+ {
+ "id": 22175,
+ "start": 10567.98,
+ "end": 10568.18,
+ "text": "and"
+ },
+ {
+ "id": 22176,
+ "start": 10568.18,
+ "end": 10568.5,
+ "text": "social"
+ },
+ {
+ "id": 22177,
+ "start": 10568.5,
+ "end": 10568.78,
+ "text": "media"
+ },
+ {
+ "id": 22178,
+ "start": 10568.78,
+ "end": 10569.88,
+ "text": "primarily"
+ },
+ {
+ "id": 22179,
+ "start": 10569.88,
+ "end": 10570.02,
+ "text": "to"
+ },
+ {
+ "id": 22180,
+ "start": 10570.02,
+ "end": 10570.16,
+ "text": "just"
+ },
+ {
+ "id": 22181,
+ "start": 10570.16,
+ "end": 10570.64,
+ "text": "passively"
+ },
+ {
+ "id": 22182,
+ "start": 10570.64,
+ "end": 10571.02,
+ "text": "consume"
+ },
+ {
+ "id": 22183,
+ "start": 10571.02,
+ "end": 10571.4,
+ "text": "content"
+ },
+ {
+ "id": 22184,
+ "start": 10571.4,
+ "end": 10571.54,
+ "text": "and"
+ },
+ {
+ "id": 22185,
+ "start": 10571.54,
+ "end": 10571.72,
+ "text": "you're"
+ },
+ {
+ "id": 22186,
+ "start": 10571.72,
+ "end": 10571.84,
+ "text": "not"
+ },
+ {
+ "id": 22187,
+ "start": 10571.84,
+ "end": 10572.2,
+ "text": "engaging"
+ },
+ {
+ "id": 22188,
+ "start": 10572.2,
+ "end": 10572.34,
+ "text": "with"
+ },
+ {
+ "id": 22189,
+ "start": 10572.34,
+ "end": 10572.54,
+ "text": "other"
+ },
+ {
+ "id": 22190,
+ "start": 10572.54,
+ "end": 10572.78,
+ "text": "people,"
+ },
+ {
+ "id": 22191,
+ "start": 10572.78,
+ "end": 10573.26,
+ "text": "then"
+ },
+ {
+ "id": 22192,
+ "start": 10573.26,
+ "end": 10573.54,
+ "text": "doesn't"
+ },
+ {
+ "id": 22193,
+ "start": 10573.54,
+ "end": 10573.7,
+ "text": "have"
+ },
+ {
+ "id": 22194,
+ "start": 10573.7,
+ "end": 10573.9,
+ "text": "those"
+ },
+ {
+ "id": 22195,
+ "start": 10573.9,
+ "end": 10574.38,
+ "text": "positive"
+ },
+ {
+ "id": 22196,
+ "start": 10574.38,
+ "end": 10574.68,
+ "text": "effects"
+ },
+ {
+ "id": 22197,
+ "start": 10574.68,
+ "end": 10574.8,
+ "text": "and"
+ },
+ {
+ "id": 22198,
+ "start": 10574.8,
+ "end": 10574.92,
+ "text": "it"
+ },
+ {
+ "id": 22199,
+ "start": 10574.92,
+ "end": 10575.12,
+ "text": "could"
+ },
+ {
+ "id": 22200,
+ "start": 10575.12,
+ "end": 10575.22,
+ "text": "be"
+ },
+ {
+ "id": 22201,
+ "start": 10575.22,
+ "end": 10575.58,
+ "text": "negative."
+ },
+ {
+ "id": 22202,
+ "start": 10575.58,
+ "end": 10576.1,
+ "text": "We're"
+ },
+ {
+ "id": 22203,
+ "start": 10576.1,
+ "end": 10576.32,
+ "text": "almost"
+ },
+ {
+ "id": 22204,
+ "start": 10576.32,
+ "end": 10576.48,
+ "text": "the"
+ },
+ {
+ "id": 22205,
+ "start": 10576.48,
+ "end": 10576.73,
+ "text": "time."
+ },
+ {
+ "id": 22206,
+ "start": 10576.73,
+ "end": 10576.85,
+ "text": "So"
+ },
+ {
+ "id": 22207,
+ "start": 10576.85,
+ "end": 10576.93,
+ "text": "I"
+ },
+ {
+ "id": 22208,
+ "start": 10576.93,
+ "end": 10577.45,
+ "text": "want"
+ },
+ {
+ "id": 22209,
+ "start": 10577.45,
+ "end": 10577.51,
+ "text": "to"
+ },
+ {
+ "id": 22210,
+ "start": 10577.51,
+ "end": 10577.63,
+ "text": "ask"
+ },
+ {
+ "id": 22211,
+ "start": 10577.63,
+ "end": 10577.75,
+ "text": "you"
+ },
+ {
+ "id": 22212,
+ "start": 10577.75,
+ "end": 10577.91,
+ "text": "one"
+ },
+ {
+ "id": 22213,
+ "start": 10577.91,
+ "end": 10578.15,
+ "text": "more"
+ },
+ {
+ "id": 22214,
+ "start": 10578.15,
+ "end": 10578.59,
+ "text": "do"
+ },
+ {
+ "id": 22215,
+ "start": 10578.59,
+ "end": 10578.89,
+ "text": "social"
+ },
+ {
+ "id": 22216,
+ "start": 10578.89,
+ "end": 10579.11,
+ "text": "media"
+ },
+ {
+ "id": 22217,
+ "start": 10579.11,
+ "end": 10579.57,
+ "text": "companies,"
+ },
+ {
+ "id": 22218,
+ "start": 10579.57,
+ "end": 10580.09,
+ "text": "hire"
+ },
+ {
+ "id": 22219,
+ "start": 10580.09,
+ "end": 10580.67,
+ "text": "consulting"
+ },
+ {
+ "id": 22220,
+ "start": 10580.67,
+ "end": 10580.97,
+ "text": "firms"
+ },
+ {
+ "id": 22221,
+ "start": 10580.97,
+ "end": 10581.13,
+ "text": "to"
+ },
+ {
+ "id": 22222,
+ "start": 10581.13,
+ "end": 10581.27,
+ "text": "help"
+ },
+ {
+ "id": 22223,
+ "start": 10581.27,
+ "end": 10581.45,
+ "text": "them"
+ },
+ {
+ "id": 22224,
+ "start": 10581.45,
+ "end": 10581.77,
+ "text": "figure"
+ },
+ {
+ "id": 22225,
+ "start": 10581.77,
+ "end": 10581.97,
+ "text": "out"
+ },
+ {
+ "id": 22226,
+ "start": 10581.97,
+ "end": 10582.37,
+ "text": "how"
+ },
+ {
+ "id": 22227,
+ "start": 10582.37,
+ "end": 10582.47,
+ "text": "to"
+ },
+ {
+ "id": 22228,
+ "start": 10582.47,
+ "end": 10582.63,
+ "text": "get"
+ },
+ {
+ "id": 22229,
+ "start": 10582.63,
+ "end": 10582.87,
+ "text": "more"
+ },
+ {
+ "id": 22230,
+ "start": 10582.87,
+ "end": 10583.45,
+ "text": "dopamine?"
+ },
+ {
+ "id": 22231,
+ "start": 10583.45,
+ "end": 10583.89,
+ "text": "Feedback"
+ },
+ {
+ "id": 22232,
+ "start": 10583.89,
+ "end": 10584.21,
+ "text": "loops"
+ },
+ {
+ "id": 22233,
+ "start": 10584.21,
+ "end": 10584.79,
+ "text": "so"
+ },
+ {
+ "id": 22234,
+ "start": 10584.79,
+ "end": 10585.09,
+ "text": "that"
+ },
+ {
+ "id": 22235,
+ "start": 10585.09,
+ "end": 10585.57,
+ "text": "people"
+ },
+ {
+ "id": 22236,
+ "start": 10585.57,
+ "end": 10585.81,
+ "text": "don't"
+ },
+ {
+ "id": 22237,
+ "start": 10585.81,
+ "end": 10585.97,
+ "text": "want"
+ },
+ {
+ "id": 22238,
+ "start": 10585.97,
+ "end": 10586.07,
+ "text": "to"
+ },
+ {
+ "id": 22239,
+ "start": 10586.07,
+ "end": 10586.35,
+ "text": "leave"
+ },
+ {
+ "id": 22240,
+ "start": 10586.35,
+ "end": 10586.57,
+ "text": "the"
+ },
+ {
+ "id": 22241,
+ "start": 10586.57,
+ "end": 10587.42,
+ "text": "platform?"
+ },
+ {
+ "id": 22242,
+ "start": 10587.42,
+ "end": 10587.92,
+ "text": "No,"
+ },
+ {
+ "id": 22243,
+ "start": 10587.92,
+ "end": 10588.36,
+ "text": "Senator"
+ },
+ {
+ "id": 22244,
+ "start": 10588.36,
+ "end": 10588.72,
+ "text": "that's"
+ },
+ {
+ "id": 22245,
+ "start": 10588.72,
+ "end": 10589.04,
+ "text": "not"
+ },
+ {
+ "id": 22246,
+ "start": 10589.04,
+ "end": 10589.38,
+ "text": "how"
+ },
+ {
+ "id": 22247,
+ "start": 10589.38,
+ "end": 10589.64,
+ "text": "we"
+ },
+ {
+ "id": 22248,
+ "start": 10589.64,
+ "end": 10590.18,
+ "text": "talk"
+ },
+ {
+ "id": 22249,
+ "start": 10590.18,
+ "end": 10590.4,
+ "text": "about"
+ },
+ {
+ "id": 22250,
+ "start": 10590.4,
+ "end": 10590.6,
+ "text": "this"
+ },
+ {
+ "id": 22251,
+ "start": 10590.6,
+ "end": 10591.44,
+ "text": "or"
+ },
+ {
+ "id": 22252,
+ "start": 10591.44,
+ "end": 10591.6,
+ "text": "how"
+ },
+ {
+ "id": 22253,
+ "start": 10591.6,
+ "end": 10591.74,
+ "text": "we"
+ },
+ {
+ "id": 22254,
+ "start": 10591.74,
+ "end": 10592.7,
+ "text": "set"
+ },
+ {
+ "id": 22255,
+ "start": 10592.7,
+ "end": 10592.8,
+ "text": "up"
+ },
+ {
+ "id": 22256,
+ "start": 10592.8,
+ "end": 10592.94,
+ "text": "our"
+ },
+ {
+ "id": 22257,
+ "start": 10592.94,
+ "end": 10593.24,
+ "text": "product"
+ },
+ {
+ "id": 22258,
+ "start": 10593.24,
+ "end": 10593.5,
+ "text": "teams."
+ },
+ {
+ "id": 22259,
+ "start": 10593.5,
+ "end": 10594.02,
+ "text": "We"
+ },
+ {
+ "id": 22260,
+ "start": 10594.02,
+ "end": 10594.18,
+ "text": "want"
+ },
+ {
+ "id": 22261,
+ "start": 10594.18,
+ "end": 10594.4,
+ "text": "our"
+ },
+ {
+ "id": 22262,
+ "start": 10594.4,
+ "end": 10594.68,
+ "text": "products"
+ },
+ {
+ "id": 22263,
+ "start": 10594.68,
+ "end": 10594.86,
+ "text": "to"
+ },
+ {
+ "id": 22264,
+ "start": 10594.86,
+ "end": 10594.96,
+ "text": "be"
+ },
+ {
+ "id": 22265,
+ "start": 10594.96,
+ "end": 10595.82,
+ "text": "valuable"
+ },
+ {
+ "id": 22266,
+ "start": 10595.82,
+ "end": 10596.3,
+ "text": "to"
+ },
+ {
+ "id": 22267,
+ "start": 10596.3,
+ "end": 10596.6,
+ "text": "people."
+ },
+ {
+ "id": 22268,
+ "start": 10596.6,
+ "end": 10597,
+ "text": "And"
+ },
+ {
+ "id": 22269,
+ "start": 10597,
+ "end": 10597.1,
+ "text": "if"
+ },
+ {
+ "id": 22270,
+ "start": 10597.1,
+ "end": 10597.32,
+ "text": "they're"
+ },
+ {
+ "id": 22271,
+ "start": 10597.32,
+ "end": 10597.68,
+ "text": "valuable"
+ },
+ {
+ "id": 22272,
+ "start": 10597.68,
+ "end": 10597.88,
+ "text": "then"
+ },
+ {
+ "id": 22273,
+ "start": 10597.88,
+ "end": 10598.12,
+ "text": "people"
+ },
+ {
+ "id": 22274,
+ "start": 10598.12,
+ "end": 10598.46,
+ "text": "choose"
+ },
+ {
+ "id": 22275,
+ "start": 10598.46,
+ "end": 10598.56,
+ "text": "to"
+ },
+ {
+ "id": 22276,
+ "start": 10598.56,
+ "end": 10598.74,
+ "text": "use"
+ },
+ {
+ "id": 22277,
+ "start": 10598.74,
+ "end": 10598.92,
+ "text": "them."
+ },
+ {
+ "id": 22278,
+ "start": 10598.92,
+ "end": 10599.1,
+ "text": "Are"
+ },
+ {
+ "id": 22279,
+ "start": 10599.1,
+ "end": 10599.22,
+ "text": "you"
+ },
+ {
+ "id": 22280,
+ "start": 10599.22,
+ "end": 10599.44,
+ "text": "aware"
+ },
+ {
+ "id": 22281,
+ "start": 10599.44,
+ "end": 10599.5,
+ "text": "of"
+ },
+ {
+ "id": 22282,
+ "start": 10599.5,
+ "end": 10599.82,
+ "text": "other"
+ },
+ {
+ "id": 22283,
+ "start": 10599.82,
+ "end": 10600.12,
+ "text": "social"
+ },
+ {
+ "id": 22284,
+ "start": 10600.12,
+ "end": 10600.36,
+ "text": "media"
+ },
+ {
+ "id": 22285,
+ "start": 10600.36,
+ "end": 10600.76,
+ "text": "companies"
+ },
+ {
+ "id": 22286,
+ "start": 10600.76,
+ "end": 10600.96,
+ "text": "that"
+ },
+ {
+ "id": 22287,
+ "start": 10600.96,
+ "end": 10601.12,
+ "text": "do"
+ },
+ {
+ "id": 22288,
+ "start": 10601.12,
+ "end": 10601.38,
+ "text": "hire"
+ },
+ {
+ "id": 22289,
+ "start": 10601.38,
+ "end": 10601.6,
+ "text": "such"
+ },
+ {
+ "id": 22290,
+ "start": 10601.6,
+ "end": 10603.02,
+ "text": "consultants?"
+ },
+ {
+ "id": 22291,
+ "start": 10603.02,
+ "end": 10604.18,
+ "text": "Not"
+ },
+ {
+ "id": 22292,
+ "start": 10604.18,
+ "end": 10604.5,
+ "text": "sitting"
+ },
+ {
+ "id": 22293,
+ "start": 10604.5,
+ "end": 10604.66,
+ "text": "here"
+ },
+ {
+ "id": 22294,
+ "start": 10604.66,
+ "end": 10604.92,
+ "text": "today."
+ },
+ {
+ "id": 22295,
+ "start": 10604.92,
+ "end": 10605.42,
+ "text": "Thanks,"
+ },
+ {
+ "id": 22296,
+ "start": 10605.42,
+ "end": 10606.52,
+ "text": "Senator"
+ },
+ {
+ "id": 22297,
+ "start": 10606.52,
+ "end": 10607.76,
+ "text": "Markey."
+ },
+ {
+ "id": 22298,
+ "start": 10607.76,
+ "end": 10608.72,
+ "text": "Thank"
+ },
+ {
+ "id": 22299,
+ "start": 10608.72,
+ "end": 10608.82,
+ "text": "you,"
+ },
+ {
+ "id": 22300,
+ "start": 10608.82,
+ "end": 10609.02,
+ "text": "Mr"
+ },
+ {
+ "id": 22301,
+ "start": 10609.02,
+ "end": 10610.3,
+ "text": "chairman"
+ },
+ {
+ "id": 22302,
+ "start": 10610.3,
+ "end": 10611.42,
+ "text": "in"
+ },
+ {
+ "id": 22303,
+ "start": 10611.42,
+ "end": 10611.94,
+ "text": "response"
+ },
+ {
+ "id": 22304,
+ "start": 10611.94,
+ "end": 10612.18,
+ "text": "to"
+ },
+ {
+ "id": 22305,
+ "start": 10612.18,
+ "end": 10612.84,
+ "text": "Senator"
+ },
+ {
+ "id": 22306,
+ "start": 10612.84,
+ "end": 10613.54,
+ "text": "Blumenthal's"
+ },
+ {
+ "id": 22307,
+ "start": 10613.54,
+ "end": 10614.12,
+ "text": "pointed"
+ },
+ {
+ "id": 22308,
+ "start": 10614.12,
+ "end": 10614.7,
+ "text": "questions."
+ },
+ {
+ "id": 22309,
+ "start": 10614.7,
+ "end": 10615.02,
+ "text": "You"
+ },
+ {
+ "id": 22310,
+ "start": 10615.02,
+ "end": 10616.06,
+ "text": "refuse"
+ },
+ {
+ "id": 22311,
+ "start": 10616.06,
+ "end": 10616.26,
+ "text": "to"
+ },
+ {
+ "id": 22312,
+ "start": 10616.26,
+ "end": 10616.8,
+ "text": "answer"
+ },
+ {
+ "id": 22313,
+ "start": 10616.8,
+ "end": 10617.32,
+ "text": "whether"
+ },
+ {
+ "id": 22314,
+ "start": 10617.32,
+ "end": 10617.92,
+ "text": "Facebook"
+ },
+ {
+ "id": 22315,
+ "start": 10617.92,
+ "end": 10619.06,
+ "text": "should"
+ },
+ {
+ "id": 22316,
+ "start": 10619.06,
+ "end": 10619.22,
+ "text": "be"
+ },
+ {
+ "id": 22317,
+ "start": 10619.22,
+ "end": 10619.78,
+ "text": "required"
+ },
+ {
+ "id": 22318,
+ "start": 10619.78,
+ "end": 10620.04,
+ "text": "by"
+ },
+ {
+ "id": 22319,
+ "start": 10620.04,
+ "end": 10620.68,
+ "text": "law"
+ },
+ {
+ "id": 22320,
+ "start": 10620.68,
+ "end": 10621.38,
+ "text": "to"
+ },
+ {
+ "id": 22321,
+ "start": 10621.38,
+ "end": 10621.82,
+ "text": "obtain"
+ },
+ {
+ "id": 22322,
+ "start": 10621.82,
+ "end": 10622.3,
+ "text": "clear"
+ },
+ {
+ "id": 22323,
+ "start": 10622.3,
+ "end": 10623.36,
+ "text": "permission"
+ },
+ {
+ "id": 22324,
+ "start": 10623.36,
+ "end": 10624.08,
+ "text": "from"
+ },
+ {
+ "id": 22325,
+ "start": 10624.08,
+ "end": 10624.7,
+ "text": "users"
+ },
+ {
+ "id": 22326,
+ "start": 10624.7,
+ "end": 10625.06,
+ "text": "before"
+ },
+ {
+ "id": 22327,
+ "start": 10625.06,
+ "end": 10625.6,
+ "text": "selling"
+ },
+ {
+ "id": 22328,
+ "start": 10625.6,
+ "end": 10625.92,
+ "text": "or"
+ },
+ {
+ "id": 22329,
+ "start": 10625.92,
+ "end": 10626.64,
+ "text": "sharing"
+ },
+ {
+ "id": 22330,
+ "start": 10626.64,
+ "end": 10627.26,
+ "text": "their"
+ },
+ {
+ "id": 22331,
+ "start": 10627.26,
+ "end": 10627.8,
+ "text": "personal"
+ },
+ {
+ "id": 22332,
+ "start": 10627.8,
+ "end": 10628.62,
+ "text": "information,"
+ },
+ {
+ "id": 22333,
+ "start": 10628.62,
+ "end": 10629.56,
+ "text": "so"
+ },
+ {
+ "id": 22334,
+ "start": 10629.56,
+ "end": 10629.92,
+ "text": "I'm"
+ },
+ {
+ "id": 22335,
+ "start": 10629.92,
+ "end": 10630.12,
+ "text": "going"
+ },
+ {
+ "id": 22336,
+ "start": 10630.12,
+ "end": 10630.2,
+ "text": "to"
+ },
+ {
+ "id": 22337,
+ "start": 10630.2,
+ "end": 10630.44,
+ "text": "ask"
+ },
+ {
+ "id": 22338,
+ "start": 10630.44,
+ "end": 10630.6,
+ "text": "it"
+ },
+ {
+ "id": 22339,
+ "start": 10630.6,
+ "end": 10630.78,
+ "text": "one"
+ },
+ {
+ "id": 22340,
+ "start": 10630.78,
+ "end": 10631,
+ "text": "more"
+ },
+ {
+ "id": 22341,
+ "start": 10631,
+ "end": 10631.4,
+ "text": "time."
+ },
+ {
+ "id": 22342,
+ "start": 10631.4,
+ "end": 10632.34,
+ "text": "Yes,"
+ },
+ {
+ "id": 22343,
+ "start": 10632.34,
+ "end": 10632.48,
+ "text": "and"
+ },
+ {
+ "id": 22344,
+ "start": 10632.48,
+ "end": 10632.72,
+ "text": "no."
+ },
+ {
+ "id": 22345,
+ "start": 10632.72,
+ "end": 10633.18,
+ "text": "Should"
+ },
+ {
+ "id": 22346,
+ "start": 10633.18,
+ "end": 10633.96,
+ "text": "Facebook"
+ },
+ {
+ "id": 22347,
+ "start": 10633.96,
+ "end": 10634.92,
+ "text": "debt"
+ },
+ {
+ "id": 22348,
+ "start": 10634.92,
+ "end": 10635.5,
+ "text": "clear"
+ },
+ {
+ "id": 22349,
+ "start": 10635.5,
+ "end": 10636.79,
+ "text": "permission"
+ },
+ {
+ "id": 22350,
+ "start": 10636.79,
+ "end": 10637.11,
+ "text": "from"
+ },
+ {
+ "id": 22351,
+ "start": 10637.11,
+ "end": 10637.71,
+ "text": "users"
+ },
+ {
+ "id": 22352,
+ "start": 10637.71,
+ "end": 10638.87,
+ "text": "before"
+ },
+ {
+ "id": 22353,
+ "start": 10638.87,
+ "end": 10639.49,
+ "text": "selling"
+ },
+ {
+ "id": 22354,
+ "start": 10639.49,
+ "end": 10639.75,
+ "text": "or"
+ },
+ {
+ "id": 22355,
+ "start": 10639.75,
+ "end": 10640.33,
+ "text": "sharing"
+ },
+ {
+ "id": 22356,
+ "start": 10640.33,
+ "end": 10641.03,
+ "text": "sensitive"
+ },
+ {
+ "id": 22357,
+ "start": 10641.03,
+ "end": 10641.85,
+ "text": "information"
+ },
+ {
+ "id": 22358,
+ "start": 10641.85,
+ "end": 10642.83,
+ "text": "about"
+ },
+ {
+ "id": 22359,
+ "start": 10642.83,
+ "end": 10643.09,
+ "text": "your"
+ },
+ {
+ "id": 22360,
+ "start": 10643.09,
+ "end": 10643.45,
+ "text": "health,"
+ },
+ {
+ "id": 22361,
+ "start": 10643.45,
+ "end": 10644.07,
+ "text": "your"
+ },
+ {
+ "id": 22362,
+ "start": 10644.07,
+ "end": 10644.71,
+ "text": "finances,"
+ },
+ {
+ "id": 22363,
+ "start": 10644.71,
+ "end": 10645.51,
+ "text": "your"
+ },
+ {
+ "id": 22364,
+ "start": 10645.51,
+ "end": 10646.15,
+ "text": "relationships."
+ },
+ {
+ "id": 22365,
+ "start": 10646.15,
+ "end": 10647.03,
+ "text": "Should"
+ },
+ {
+ "id": 22366,
+ "start": 10647.03,
+ "end": 10647.17,
+ "text": "you"
+ },
+ {
+ "id": 22367,
+ "start": 10647.17,
+ "end": 10647.49,
+ "text": "have"
+ },
+ {
+ "id": 22368,
+ "start": 10647.49,
+ "end": 10647.63,
+ "text": "to"
+ },
+ {
+ "id": 22369,
+ "start": 10647.63,
+ "end": 10647.77,
+ "text": "get"
+ },
+ {
+ "id": 22370,
+ "start": 10647.77,
+ "end": 10648.03,
+ "text": "their"
+ },
+ {
+ "id": 22371,
+ "start": 10648.03,
+ "end": 10648.43,
+ "text": "permission?"
+ },
+ {
+ "id": 22372,
+ "start": 10648.43,
+ "end": 10649.07,
+ "text": "That's"
+ },
+ {
+ "id": 22373,
+ "start": 10649.07,
+ "end": 10650.22,
+ "text": "essentially"
+ },
+ {
+ "id": 22374,
+ "start": 10650.22,
+ "end": 10650.8,
+ "text": "the"
+ },
+ {
+ "id": 22375,
+ "start": 10650.8,
+ "end": 10651.16,
+ "text": "consent"
+ },
+ {
+ "id": 22376,
+ "start": 10651.16,
+ "end": 10651.52,
+ "text": "cry"
+ },
+ {
+ "id": 22377,
+ "start": 10651.52,
+ "end": 10651.8,
+ "text": "with"
+ },
+ {
+ "id": 22378,
+ "start": 10651.8,
+ "end": 10651.92,
+ "text": "the"
+ },
+ {
+ "id": 22379,
+ "start": 10651.92,
+ "end": 10652.4,
+ "text": "Federal"
+ },
+ {
+ "id": 22380,
+ "start": 10652.4,
+ "end": 10652.6,
+ "text": "Trade"
+ },
+ {
+ "id": 22381,
+ "start": 10652.6,
+ "end": 10652.98,
+ "text": "Commission"
+ },
+ {
+ "id": 22382,
+ "start": 10652.98,
+ "end": 10653.9,
+ "text": "that"
+ },
+ {
+ "id": 22383,
+ "start": 10653.9,
+ "end": 10654.06,
+ "text": "you"
+ },
+ {
+ "id": 22384,
+ "start": 10654.06,
+ "end": 10654.34,
+ "text": "signed"
+ },
+ {
+ "id": 22385,
+ "start": 10654.34,
+ "end": 10654.44,
+ "text": "in"
+ },
+ {
+ "id": 22386,
+ "start": 10654.44,
+ "end": 10654.7,
+ "text": "20"
+ },
+ {
+ "id": 22387,
+ "start": 10654.7,
+ "end": 10655.02,
+ "text": "11"
+ },
+ {
+ "id": 22388,
+ "start": 10655.02,
+ "end": 10656.02,
+ "text": "should"
+ },
+ {
+ "id": 22389,
+ "start": 10656.02,
+ "end": 10656.26,
+ "text": "you"
+ },
+ {
+ "id": 22390,
+ "start": 10656.26,
+ "end": 10656.5,
+ "text": "have"
+ },
+ {
+ "id": 22391,
+ "start": 10656.5,
+ "end": 10656.68,
+ "text": "to"
+ },
+ {
+ "id": 22392,
+ "start": 10656.68,
+ "end": 10656.88,
+ "text": "get"
+ },
+ {
+ "id": 22393,
+ "start": 10656.88,
+ "end": 10657.44,
+ "text": "permission?"
+ },
+ {
+ "id": 22394,
+ "start": 10657.44,
+ "end": 10657.9,
+ "text": "Should"
+ },
+ {
+ "id": 22395,
+ "start": 10657.9,
+ "end": 10658.28,
+ "text": "the"
+ },
+ {
+ "id": 22396,
+ "start": 10658.28,
+ "end": 10658.8,
+ "text": "consumer"
+ },
+ {
+ "id": 22397,
+ "start": 10658.8,
+ "end": 10659.1,
+ "text": "have"
+ },
+ {
+ "id": 22398,
+ "start": 10659.1,
+ "end": 10659.26,
+ "text": "to"
+ },
+ {
+ "id": 22399,
+ "start": 10659.26,
+ "end": 10659.6,
+ "text": "opt"
+ },
+ {
+ "id": 22400,
+ "start": 10659.6,
+ "end": 10661.8,
+ "text": "in"
+ },
+ {
+ "id": 22401,
+ "start": 10661.8,
+ "end": 10662.78,
+ "text": "Senator?"
+ },
+ {
+ "id": 22402,
+ "start": 10662.78,
+ "end": 10664,
+ "text": "We"
+ },
+ {
+ "id": 22403,
+ "start": 10664,
+ "end": 10664.34,
+ "text": "do"
+ },
+ {
+ "id": 22404,
+ "start": 10664.34,
+ "end": 10665.04,
+ "text": "require"
+ },
+ {
+ "id": 22405,
+ "start": 10665.04,
+ "end": 10666.04,
+ "text": "permission"
+ },
+ {
+ "id": 22406,
+ "start": 10666.04,
+ "end": 10667,
+ "text": "to"
+ },
+ {
+ "id": 22407,
+ "start": 10667,
+ "end": 10667.28,
+ "text": "use"
+ },
+ {
+ "id": 22408,
+ "start": 10667.28,
+ "end": 10667.66,
+ "text": "the"
+ },
+ {
+ "id": 22409,
+ "start": 10667.66,
+ "end": 10668.12,
+ "text": "system"
+ },
+ {
+ "id": 22410,
+ "start": 10668.12,
+ "end": 10669.18,
+ "text": "and"
+ },
+ {
+ "id": 22411,
+ "start": 10669.18,
+ "end": 10669.48,
+ "text": "to"
+ },
+ {
+ "id": 22412,
+ "start": 10669.48,
+ "end": 10669.62,
+ "text": "put"
+ },
+ {
+ "id": 22413,
+ "start": 10669.62,
+ "end": 10670.16,
+ "text": "information"
+ },
+ {
+ "id": 22414,
+ "start": 10670.16,
+ "end": 10670.26,
+ "text": "in"
+ },
+ {
+ "id": 22415,
+ "start": 10670.26,
+ "end": 10670.48,
+ "text": "there"
+ },
+ {
+ "id": 22416,
+ "start": 10670.48,
+ "end": 10670.62,
+ "text": "and"
+ },
+ {
+ "id": 22417,
+ "start": 10670.62,
+ "end": 10671.02,
+ "text": "for"
+ },
+ {
+ "id": 22418,
+ "start": 10671.02,
+ "end": 10671.16,
+ "text": "all"
+ },
+ {
+ "id": 22419,
+ "start": 10671.16,
+ "end": 10671.3,
+ "text": "the"
+ },
+ {
+ "id": 22420,
+ "start": 10671.3,
+ "end": 10671.54,
+ "text": "uses"
+ },
+ {
+ "id": 22421,
+ "start": 10671.54,
+ "end": 10671.66,
+ "text": "of"
+ },
+ {
+ "id": 22422,
+ "start": 10671.66,
+ "end": 10671.8,
+ "text": "it,"
+ },
+ {
+ "id": 22423,
+ "start": 10671.8,
+ "end": 10672.42,
+ "text": "I"
+ },
+ {
+ "id": 22424,
+ "start": 10672.42,
+ "end": 10672.56,
+ "text": "want"
+ },
+ {
+ "id": 22425,
+ "start": 10672.56,
+ "end": 10672.64,
+ "text": "to"
+ },
+ {
+ "id": 22426,
+ "start": 10672.64,
+ "end": 10672.72,
+ "text": "be"
+ },
+ {
+ "id": 22427,
+ "start": 10672.72,
+ "end": 10673.04,
+ "text": "clear"
+ },
+ {
+ "id": 22428,
+ "start": 10673.04,
+ "end": 10673.72,
+ "text": "we"
+ },
+ {
+ "id": 22429,
+ "start": 10673.72,
+ "end": 10674.01,
+ "text": "don't"
+ },
+ {
+ "id": 22430,
+ "start": 10674.01,
+ "end": 10674.75,
+ "text": "information."
+ },
+ {
+ "id": 22431,
+ "start": 10674.75,
+ "end": 10675.69,
+ "text": "So"
+ },
+ {
+ "id": 22432,
+ "start": 10675.69,
+ "end": 10676.21,
+ "text": "regardless"
+ },
+ {
+ "id": 22433,
+ "start": 10676.21,
+ "end": 10676.31,
+ "text": "of"
+ },
+ {
+ "id": 22434,
+ "start": 10676.31,
+ "end": 10676.55,
+ "text": "whether"
+ },
+ {
+ "id": 22435,
+ "start": 10676.55,
+ "end": 10676.67,
+ "text": "we"
+ },
+ {
+ "id": 22436,
+ "start": 10676.67,
+ "end": 10676.83,
+ "text": "could"
+ },
+ {
+ "id": 22437,
+ "start": 10676.83,
+ "end": 10676.95,
+ "text": "get"
+ },
+ {
+ "id": 22438,
+ "start": 10676.95,
+ "end": 10677.35,
+ "text": "permission"
+ },
+ {
+ "id": 22439,
+ "start": 10677.35,
+ "end": 10677.45,
+ "text": "to"
+ },
+ {
+ "id": 22440,
+ "start": 10677.45,
+ "end": 10677.59,
+ "text": "do"
+ },
+ {
+ "id": 22441,
+ "start": 10677.59,
+ "end": 10677.81,
+ "text": "that"
+ },
+ {
+ "id": 22442,
+ "start": 10677.81,
+ "end": 10678.87,
+ "text": "that's"
+ },
+ {
+ "id": 22443,
+ "start": 10678.87,
+ "end": 10679.05,
+ "text": "just"
+ },
+ {
+ "id": 22444,
+ "start": 10679.05,
+ "end": 10679.27,
+ "text": "not"
+ },
+ {
+ "id": 22445,
+ "start": 10679.27,
+ "end": 10679.35,
+ "text": "a"
+ },
+ {
+ "id": 22446,
+ "start": 10679.35,
+ "end": 10679.53,
+ "text": "thing"
+ },
+ {
+ "id": 22447,
+ "start": 10679.53,
+ "end": 10679.65,
+ "text": "that"
+ },
+ {
+ "id": 22448,
+ "start": 10679.65,
+ "end": 10679.81,
+ "text": "we're"
+ },
+ {
+ "id": 22449,
+ "start": 10679.81,
+ "end": 10679.95,
+ "text": "going"
+ },
+ {
+ "id": 22450,
+ "start": 10679.95,
+ "end": 10680.03,
+ "text": "to"
+ },
+ {
+ "id": 22451,
+ "start": 10680.03,
+ "end": 10680.11,
+ "text": "go"
+ },
+ {
+ "id": 22452,
+ "start": 10680.11,
+ "end": 10680.41,
+ "text": "do"
+ },
+ {
+ "id": 22453,
+ "start": 10680.41,
+ "end": 10680.89,
+ "text": "so."
+ },
+ {
+ "id": 22454,
+ "start": 10680.89,
+ "end": 10681.17,
+ "text": "Would"
+ },
+ {
+ "id": 22455,
+ "start": 10681.17,
+ "end": 10681.35,
+ "text": "you"
+ },
+ {
+ "id": 22456,
+ "start": 10681.35,
+ "end": 10681.91,
+ "text": "support"
+ },
+ {
+ "id": 22457,
+ "start": 10681.91,
+ "end": 10683.01,
+ "text": "legislation?"
+ },
+ {
+ "id": 22458,
+ "start": 10683.01,
+ "end": 10683.77,
+ "text": "I"
+ },
+ {
+ "id": 22459,
+ "start": 10683.77,
+ "end": 10683.95,
+ "text": "have"
+ },
+ {
+ "id": 22460,
+ "start": 10683.95,
+ "end": 10684.01,
+ "text": "a"
+ },
+ {
+ "id": 22461,
+ "start": 10684.01,
+ "end": 10684.33,
+ "text": "bill."
+ },
+ {
+ "id": 22462,
+ "start": 10684.33,
+ "end": 10684.69,
+ "text": "So"
+ },
+ {
+ "id": 22463,
+ "start": 10684.69,
+ "end": 10684.87,
+ "text": "to"
+ },
+ {
+ "id": 22464,
+ "start": 10684.87,
+ "end": 10684.95,
+ "text": "the"
+ },
+ {
+ "id": 22465,
+ "start": 10684.95,
+ "end": 10685.55,
+ "text": "Blumenthal"
+ },
+ {
+ "id": 22466,
+ "start": 10685.55,
+ "end": 10686.03,
+ "text": "refer"
+ },
+ {
+ "id": 22467,
+ "start": 10686.03,
+ "end": 10686.13,
+ "text": "it"
+ },
+ {
+ "id": 22468,
+ "start": 10686.13,
+ "end": 10686.21,
+ "text": "to"
+ },
+ {
+ "id": 22469,
+ "start": 10686.21,
+ "end": 10686.84,
+ "text": "it."
+ },
+ {
+ "id": 22470,
+ "start": 10686.84,
+ "end": 10687.44,
+ "text": "The"
+ },
+ {
+ "id": 22471,
+ "start": 10687.44,
+ "end": 10687.86,
+ "text": "consent"
+ },
+ {
+ "id": 22472,
+ "start": 10687.86,
+ "end": 10688.34,
+ "text": "act"
+ },
+ {
+ "id": 22473,
+ "start": 10688.34,
+ "end": 10689.44,
+ "text": "that"
+ },
+ {
+ "id": 22474,
+ "start": 10689.44,
+ "end": 10689.66,
+ "text": "would"
+ },
+ {
+ "id": 22475,
+ "start": 10689.66,
+ "end": 10689.86,
+ "text": "just"
+ },
+ {
+ "id": 22476,
+ "start": 10689.86,
+ "end": 10690.12,
+ "text": "put"
+ },
+ {
+ "id": 22477,
+ "start": 10690.12,
+ "end": 10690.28,
+ "text": "on"
+ },
+ {
+ "id": 22478,
+ "start": 10690.28,
+ "end": 10690.4,
+ "text": "the"
+ },
+ {
+ "id": 22479,
+ "start": 10690.4,
+ "end": 10690.68,
+ "text": "books."
+ },
+ {
+ "id": 22480,
+ "start": 10690.68,
+ "end": 10690.92,
+ "text": "A"
+ },
+ {
+ "id": 22481,
+ "start": 10690.92,
+ "end": 10691.36,
+ "text": "law"
+ },
+ {
+ "id": 22482,
+ "start": 10691.36,
+ "end": 10691.54,
+ "text": "that"
+ },
+ {
+ "id": 22483,
+ "start": 10691.54,
+ "end": 10691.84,
+ "text": "said"
+ },
+ {
+ "id": 22484,
+ "start": 10691.84,
+ "end": 10692.06,
+ "text": "that"
+ },
+ {
+ "id": 22485,
+ "start": 10692.06,
+ "end": 10692.68,
+ "text": "Facebook"
+ },
+ {
+ "id": 22486,
+ "start": 10692.68,
+ "end": 10693.12,
+ "text": "and"
+ },
+ {
+ "id": 22487,
+ "start": 10693.12,
+ "end": 10693.5,
+ "text": "any"
+ },
+ {
+ "id": 22488,
+ "start": 10693.5,
+ "end": 10693.78,
+ "text": "other"
+ },
+ {
+ "id": 22489,
+ "start": 10693.78,
+ "end": 10694.16,
+ "text": "company"
+ },
+ {
+ "id": 22490,
+ "start": 10694.16,
+ "end": 10694.88,
+ "text": "that"
+ },
+ {
+ "id": 22491,
+ "start": 10694.88,
+ "end": 10695.46,
+ "text": "gathers"
+ },
+ {
+ "id": 22492,
+ "start": 10695.46,
+ "end": 10696.48,
+ "text": "information"
+ },
+ {
+ "id": 22493,
+ "start": 10696.48,
+ "end": 10697.48,
+ "text": "about"
+ },
+ {
+ "id": 22494,
+ "start": 10697.48,
+ "end": 10698.18,
+ "text": "Americans"
+ },
+ {
+ "id": 22495,
+ "start": 10698.18,
+ "end": 10698.92,
+ "text": "has"
+ },
+ {
+ "id": 22496,
+ "start": 10698.92,
+ "end": 10699.06,
+ "text": "to"
+ },
+ {
+ "id": 22497,
+ "start": 10699.06,
+ "end": 10699.24,
+ "text": "get"
+ },
+ {
+ "id": 22498,
+ "start": 10699.24,
+ "end": 10699.5,
+ "text": "their"
+ },
+ {
+ "id": 22499,
+ "start": 10699.5,
+ "end": 10699.96,
+ "text": "permission"
+ },
+ {
+ "id": 22500,
+ "start": 10699.96,
+ "end": 10700.28,
+ "text": "their"
+ },
+ {
+ "id": 22501,
+ "start": 10700.28,
+ "end": 10700.82,
+ "text": "affirmative"
+ },
+ {
+ "id": 22502,
+ "start": 10700.82,
+ "end": 10701.16,
+ "text": "permission"
+ },
+ {
+ "id": 22503,
+ "start": 10701.16,
+ "end": 10701.48,
+ "text": "before"
+ },
+ {
+ "id": 22504,
+ "start": 10701.48,
+ "end": 10701.6,
+ "text": "it"
+ },
+ {
+ "id": 22505,
+ "start": 10701.6,
+ "end": 10701.74,
+ "text": "can"
+ },
+ {
+ "id": 22506,
+ "start": 10701.74,
+ "end": 10701.84,
+ "text": "be"
+ },
+ {
+ "id": 22507,
+ "start": 10701.84,
+ "end": 10702.4,
+ "text": "reused"
+ },
+ {
+ "id": 22508,
+ "start": 10702.4,
+ "end": 10702.84,
+ "text": "for"
+ },
+ {
+ "id": 22509,
+ "start": 10702.84,
+ "end": 10703.16,
+ "text": "other"
+ },
+ {
+ "id": 22510,
+ "start": 10703.16,
+ "end": 10703.72,
+ "text": "purposes."
+ },
+ {
+ "id": 22511,
+ "start": 10703.72,
+ "end": 10704.22,
+ "text": "Would"
+ },
+ {
+ "id": 22512,
+ "start": 10704.22,
+ "end": 10704.34,
+ "text": "you"
+ },
+ {
+ "id": 22513,
+ "start": 10704.34,
+ "end": 10704.74,
+ "text": "support"
+ },
+ {
+ "id": 22514,
+ "start": 10704.74,
+ "end": 10705.02,
+ "text": "that"
+ },
+ {
+ "id": 22515,
+ "start": 10705.02,
+ "end": 10705.62,
+ "text": "legislation"
+ },
+ {
+ "id": 22516,
+ "start": 10705.62,
+ "end": 10706.08,
+ "text": "to"
+ },
+ {
+ "id": 22517,
+ "start": 10706.08,
+ "end": 10706.26,
+ "text": "make"
+ },
+ {
+ "id": 22518,
+ "start": 10706.26,
+ "end": 10706.38,
+ "text": "it"
+ },
+ {
+ "id": 22519,
+ "start": 10706.38,
+ "end": 10706.48,
+ "text": "a"
+ },
+ {
+ "id": 22520,
+ "start": 10706.48,
+ "end": 10706.94,
+ "text": "national"
+ },
+ {
+ "id": 22521,
+ "start": 10706.94,
+ "end": 10707.34,
+ "text": "standard"
+ },
+ {
+ "id": 22522,
+ "start": 10707.34,
+ "end": 10707.94,
+ "text": "for"
+ },
+ {
+ "id": 22523,
+ "start": 10707.94,
+ "end": 10708.1,
+ "text": "not"
+ },
+ {
+ "id": 22524,
+ "start": 10708.1,
+ "end": 10708.28,
+ "text": "just"
+ },
+ {
+ "id": 22525,
+ "start": 10708.28,
+ "end": 10708.7,
+ "text": "Facebook?"
+ },
+ {
+ "id": 22526,
+ "start": 10708.7,
+ "end": 10708.84,
+ "text": "But"
+ },
+ {
+ "id": 22527,
+ "start": 10708.84,
+ "end": 10708.98,
+ "text": "for"
+ },
+ {
+ "id": 22528,
+ "start": 10708.98,
+ "end": 10709.28,
+ "text": "all"
+ },
+ {
+ "id": 22529,
+ "start": 10709.28,
+ "end": 10709.48,
+ "text": "the"
+ },
+ {
+ "id": 22530,
+ "start": 10709.48,
+ "end": 10709.82,
+ "text": "other"
+ },
+ {
+ "id": 22531,
+ "start": 10709.82,
+ "end": 10710.3,
+ "text": "companies"
+ },
+ {
+ "id": 22532,
+ "start": 10710.3,
+ "end": 10710.42,
+ "text": "out"
+ },
+ {
+ "id": 22533,
+ "start": 10710.42,
+ "end": 10710.64,
+ "text": "there"
+ },
+ {
+ "id": 22534,
+ "start": 10710.64,
+ "end": 10710.88,
+ "text": "some"
+ },
+ {
+ "id": 22535,
+ "start": 10710.88,
+ "end": 10710.96,
+ "text": "of"
+ },
+ {
+ "id": 22536,
+ "start": 10710.96,
+ "end": 10711.16,
+ "text": "them,"
+ },
+ {
+ "id": 22537,
+ "start": 10711.16,
+ "end": 10711.7,
+ "text": "bad"
+ },
+ {
+ "id": 22538,
+ "start": 10711.7,
+ "end": 10712.12,
+ "text": "actors."
+ },
+ {
+ "id": 22539,
+ "start": 10712.12,
+ "end": 10712.82,
+ "text": "Would"
+ },
+ {
+ "id": 22540,
+ "start": 10712.82,
+ "end": 10712.94,
+ "text": "you"
+ },
+ {
+ "id": 22541,
+ "start": 10712.94,
+ "end": 10713.2,
+ "text": "support"
+ },
+ {
+ "id": 22542,
+ "start": 10713.2,
+ "end": 10713.38,
+ "text": "that"
+ },
+ {
+ "id": 22543,
+ "start": 10713.38,
+ "end": 10715.06,
+ "text": "legislation"
+ },
+ {
+ "id": 22544,
+ "start": 10715.06,
+ "end": 10716.04,
+ "text": "senator"
+ },
+ {
+ "id": 22545,
+ "start": 10716.04,
+ "end": 10716.56,
+ "text": "in"
+ },
+ {
+ "id": 22546,
+ "start": 10716.56,
+ "end": 10716.9,
+ "text": "general?"
+ },
+ {
+ "id": 22547,
+ "start": 10716.9,
+ "end": 10716.98,
+ "text": "I"
+ },
+ {
+ "id": 22548,
+ "start": 10716.98,
+ "end": 10717.18,
+ "text": "think"
+ },
+ {
+ "id": 22549,
+ "start": 10717.18,
+ "end": 10717.3,
+ "text": "that"
+ },
+ {
+ "id": 22550,
+ "start": 10717.3,
+ "end": 10717.46,
+ "text": "that"
+ },
+ {
+ "id": 22551,
+ "start": 10717.46,
+ "end": 10717.94,
+ "text": "principle"
+ },
+ {
+ "id": 22552,
+ "start": 10717.94,
+ "end": 10718.08,
+ "text": "is"
+ },
+ {
+ "id": 22553,
+ "start": 10718.08,
+ "end": 10718.54,
+ "text": "exactly"
+ },
+ {
+ "id": 22554,
+ "start": 10718.54,
+ "end": 10718.84,
+ "text": "right."
+ },
+ {
+ "id": 22555,
+ "start": 10718.84,
+ "end": 10719,
+ "text": "And"
+ },
+ {
+ "id": 22556,
+ "start": 10719,
+ "end": 10719.12,
+ "text": "I"
+ },
+ {
+ "id": 22557,
+ "start": 10719.12,
+ "end": 10719.3,
+ "text": "think"
+ },
+ {
+ "id": 22558,
+ "start": 10719.3,
+ "end": 10719.5,
+ "text": "we"
+ },
+ {
+ "id": 22559,
+ "start": 10719.5,
+ "end": 10719.82,
+ "text": "should"
+ },
+ {
+ "id": 22560,
+ "start": 10719.82,
+ "end": 10720.26,
+ "text": "have"
+ },
+ {
+ "id": 22561,
+ "start": 10720.26,
+ "end": 10720.96,
+ "text": "a"
+ },
+ {
+ "id": 22562,
+ "start": 10720.96,
+ "end": 10721.4,
+ "text": "discussion"
+ },
+ {
+ "id": 22563,
+ "start": 10721.4,
+ "end": 10721.7,
+ "text": "around"
+ },
+ {
+ "id": 22564,
+ "start": 10721.7,
+ "end": 10721.92,
+ "text": "how"
+ },
+ {
+ "id": 22565,
+ "start": 10721.92,
+ "end": 10722.02,
+ "text": "to"
+ },
+ {
+ "id": 22566,
+ "start": 10722.02,
+ "end": 10722.7,
+ "text": "would"
+ },
+ {
+ "id": 22567,
+ "start": 10722.7,
+ "end": 10722.84,
+ "text": "you"
+ },
+ {
+ "id": 22568,
+ "start": 10722.84,
+ "end": 10723.24,
+ "text": "support"
+ },
+ {
+ "id": 22569,
+ "start": 10723.24,
+ "end": 10724.6,
+ "text": "legislation"
+ },
+ {
+ "id": 22570,
+ "start": 10724.6,
+ "end": 10725.06,
+ "text": "to"
+ },
+ {
+ "id": 22571,
+ "start": 10725.06,
+ "end": 10725.72,
+ "text": "back."
+ },
+ {
+ "id": 22572,
+ "start": 10725.72,
+ "end": 10726.2,
+ "text": "That"
+ },
+ {
+ "id": 22573,
+ "start": 10726.2,
+ "end": 10726.9,
+ "text": "general"
+ },
+ {
+ "id": 22574,
+ "start": 10726.9,
+ "end": 10727.5,
+ "text": "principle"
+ },
+ {
+ "id": 22575,
+ "start": 10727.5,
+ "end": 10727.94,
+ "text": "that"
+ },
+ {
+ "id": 22576,
+ "start": 10727.94,
+ "end": 10728.4,
+ "text": "opt"
+ },
+ {
+ "id": 22577,
+ "start": 10728.4,
+ "end": 10728.76,
+ "text": "in"
+ },
+ {
+ "id": 22578,
+ "start": 10728.76,
+ "end": 10729.04,
+ "text": "that"
+ },
+ {
+ "id": 22579,
+ "start": 10729.04,
+ "end": 10729.36,
+ "text": "getting"
+ },
+ {
+ "id": 22580,
+ "start": 10729.36,
+ "end": 10729.86,
+ "text": "permission"
+ },
+ {
+ "id": 22581,
+ "start": 10729.86,
+ "end": 10730.06,
+ "text": "is"
+ },
+ {
+ "id": 22582,
+ "start": 10730.06,
+ "end": 10730.18,
+ "text": "the"
+ },
+ {
+ "id": 22583,
+ "start": 10730.18,
+ "end": 10730.46,
+ "text": "standard."
+ },
+ {
+ "id": 22584,
+ "start": 10730.46,
+ "end": 10730.64,
+ "text": "Would"
+ },
+ {
+ "id": 22585,
+ "start": 10730.64,
+ "end": 10730.78,
+ "text": "you"
+ },
+ {
+ "id": 22586,
+ "start": 10730.78,
+ "end": 10731.14,
+ "text": "support"
+ },
+ {
+ "id": 22587,
+ "start": 10731.14,
+ "end": 10731.68,
+ "text": "legislation"
+ },
+ {
+ "id": 22588,
+ "start": 10731.68,
+ "end": 10731.86,
+ "text": "to"
+ },
+ {
+ "id": 22589,
+ "start": 10731.86,
+ "end": 10732.02,
+ "text": "make"
+ },
+ {
+ "id": 22590,
+ "start": 10732.02,
+ "end": 10732.24,
+ "text": "that"
+ },
+ {
+ "id": 22591,
+ "start": 10732.24,
+ "end": 10732.48,
+ "text": "the"
+ },
+ {
+ "id": 22592,
+ "start": 10732.48,
+ "end": 10733.02,
+ "text": "American"
+ },
+ {
+ "id": 22593,
+ "start": 10733.02,
+ "end": 10733.38,
+ "text": "standard"
+ },
+ {
+ "id": 22594,
+ "start": 10733.38,
+ "end": 10733.94,
+ "text": "Europeans"
+ },
+ {
+ "id": 22595,
+ "start": 10733.94,
+ "end": 10734.6,
+ "text": "have"
+ },
+ {
+ "id": 22596,
+ "start": 10734.6,
+ "end": 10734.92,
+ "text": "passed"
+ },
+ {
+ "id": 22597,
+ "start": 10734.92,
+ "end": 10735.08,
+ "text": "that"
+ },
+ {
+ "id": 22598,
+ "start": 10735.08,
+ "end": 10735.22,
+ "text": "as"
+ },
+ {
+ "id": 22599,
+ "start": 10735.22,
+ "end": 10735.28,
+ "text": "a"
+ },
+ {
+ "id": 22600,
+ "start": 10735.28,
+ "end": 10735.6,
+ "text": "lie."
+ },
+ {
+ "id": 22601,
+ "start": 10735.6,
+ "end": 10736.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 22602,
+ "start": 10736.16,
+ "end": 10736.26,
+ "text": "is"
+ },
+ {
+ "id": 22603,
+ "start": 10736.26,
+ "end": 10736.46,
+ "text": "going"
+ },
+ {
+ "id": 22604,
+ "start": 10736.46,
+ "end": 10736.52,
+ "text": "to"
+ },
+ {
+ "id": 22605,
+ "start": 10736.52,
+ "end": 10737.08,
+ "text": "live"
+ },
+ {
+ "id": 22606,
+ "start": 10737.08,
+ "end": 10737.64,
+ "text": "with"
+ },
+ {
+ "id": 22607,
+ "start": 10737.64,
+ "end": 10737.84,
+ "text": "that"
+ },
+ {
+ "id": 22608,
+ "start": 10737.84,
+ "end": 10738.1,
+ "text": "law"
+ },
+ {
+ "id": 22609,
+ "start": 10738.1,
+ "end": 10738.54,
+ "text": "beginning"
+ },
+ {
+ "id": 22610,
+ "start": 10738.54,
+ "end": 10738.66,
+ "text": "on"
+ },
+ {
+ "id": 22611,
+ "start": 10738.66,
+ "end": 10738.9,
+ "text": "May"
+ },
+ {
+ "id": 22612,
+ "start": 10738.9,
+ "end": 10739.24,
+ "text": "20"
+ },
+ {
+ "id": 22613,
+ "start": 10739.24,
+ "end": 10739.8,
+ "text": "would"
+ },
+ {
+ "id": 22614,
+ "start": 10739.8,
+ "end": 10739.98,
+ "text": "you"
+ },
+ {
+ "id": 22615,
+ "start": 10739.98,
+ "end": 10740.46,
+ "text": "support"
+ },
+ {
+ "id": 22616,
+ "start": 10740.46,
+ "end": 10740.74,
+ "text": "that"
+ },
+ {
+ "id": 22617,
+ "start": 10740.74,
+ "end": 10741.18,
+ "text": "as"
+ },
+ {
+ "id": 22618,
+ "start": 10741.18,
+ "end": 10741.62,
+ "text": "the"
+ },
+ {
+ "id": 22619,
+ "start": 10741.62,
+ "end": 10741.94,
+ "text": "law"
+ },
+ {
+ "id": 22620,
+ "start": 10741.94,
+ "end": 10742.08,
+ "text": "in"
+ },
+ {
+ "id": 22621,
+ "start": 10742.08,
+ "end": 10742.2,
+ "text": "the"
+ },
+ {
+ "id": 22622,
+ "start": 10742.2,
+ "end": 10742.54,
+ "text": "United"
+ },
+ {
+ "id": 22623,
+ "start": 10742.54,
+ "end": 10743.38,
+ "text": "States,"
+ },
+ {
+ "id": 22624,
+ "start": 10743.38,
+ "end": 10744.26,
+ "text": "Senator"
+ },
+ {
+ "id": 22625,
+ "start": 10744.26,
+ "end": 10745.08,
+ "text": "as"
+ },
+ {
+ "id": 22626,
+ "start": 10745.08,
+ "end": 10745.14,
+ "text": "a"
+ },
+ {
+ "id": 22627,
+ "start": 10745.14,
+ "end": 10745.76,
+ "text": "principle."
+ },
+ {
+ "id": 22628,
+ "start": 10745.76,
+ "end": 10746.04,
+ "text": "Yes,"
+ },
+ {
+ "id": 22629,
+ "start": 10746.04,
+ "end": 10746.22,
+ "text": "I"
+ },
+ {
+ "id": 22630,
+ "start": 10746.22,
+ "end": 10746.54,
+ "text": "would."
+ },
+ {
+ "id": 22631,
+ "start": 10746.54,
+ "end": 10746.88,
+ "text": "I"
+ },
+ {
+ "id": 22632,
+ "start": 10746.88,
+ "end": 10747.06,
+ "text": "think"
+ },
+ {
+ "id": 22633,
+ "start": 10747.06,
+ "end": 10747.2,
+ "text": "the"
+ },
+ {
+ "id": 22634,
+ "start": 10747.2,
+ "end": 10747.66,
+ "text": "details"
+ },
+ {
+ "id": 22635,
+ "start": 10747.66,
+ "end": 10747.98,
+ "text": "matter"
+ },
+ {
+ "id": 22636,
+ "start": 10747.98,
+ "end": 10748.04,
+ "text": "a"
+ },
+ {
+ "id": 22637,
+ "start": 10748.04,
+ "end": 10748.26,
+ "text": "lot"
+ },
+ {
+ "id": 22638,
+ "start": 10748.26,
+ "end": 10749.02,
+ "text": "and"
+ },
+ {
+ "id": 22639,
+ "start": 10749.02,
+ "end": 10749.78,
+ "text": "assuming"
+ },
+ {
+ "id": 22640,
+ "start": 10749.78,
+ "end": 10749.92,
+ "text": "that"
+ },
+ {
+ "id": 22641,
+ "start": 10749.92,
+ "end": 10750.06,
+ "text": "we"
+ },
+ {
+ "id": 22642,
+ "start": 10750.06,
+ "end": 10750.3,
+ "text": "work"
+ },
+ {
+ "id": 22643,
+ "start": 10750.3,
+ "end": 10750.48,
+ "text": "out"
+ },
+ {
+ "id": 22644,
+ "start": 10750.48,
+ "end": 10750.66,
+ "text": "the"
+ },
+ {
+ "id": 22645,
+ "start": 10750.66,
+ "end": 10751.18,
+ "text": "details."
+ },
+ {
+ "id": 22646,
+ "start": 10751.18,
+ "end": 10752.02,
+ "text": "You"
+ },
+ {
+ "id": 22647,
+ "start": 10752.02,
+ "end": 10752.32,
+ "text": "do"
+ },
+ {
+ "id": 22648,
+ "start": 10752.32,
+ "end": 10752.86,
+ "text": "support"
+ },
+ {
+ "id": 22649,
+ "start": 10752.86,
+ "end": 10753.66,
+ "text": "opt"
+ },
+ {
+ "id": 22650,
+ "start": 10753.66,
+ "end": 10754.42,
+ "text": "in"
+ },
+ {
+ "id": 22651,
+ "start": 10754.42,
+ "end": 10754.76,
+ "text": "as"
+ },
+ {
+ "id": 22652,
+ "start": 10754.76,
+ "end": 10754.96,
+ "text": "the"
+ },
+ {
+ "id": 22653,
+ "start": 10754.96,
+ "end": 10755.48,
+ "text": "standard"
+ },
+ {
+ "id": 22654,
+ "start": 10755.48,
+ "end": 10755.88,
+ "text": "getting"
+ },
+ {
+ "id": 22655,
+ "start": 10755.88,
+ "end": 10756.78,
+ "text": "permission"
+ },
+ {
+ "id": 22656,
+ "start": 10756.78,
+ "end": 10757.8,
+ "text": "affirmatively"
+ },
+ {
+ "id": 22657,
+ "start": 10757.8,
+ "end": 10758.12,
+ "text": "as"
+ },
+ {
+ "id": 22658,
+ "start": 10758.12,
+ "end": 10758.3,
+ "text": "the"
+ },
+ {
+ "id": 22659,
+ "start": 10758.3,
+ "end": 10758.7,
+ "text": "standard"
+ },
+ {
+ "id": 22660,
+ "start": 10758.7,
+ "end": 10758.88,
+ "text": "for"
+ },
+ {
+ "id": 22661,
+ "start": 10758.88,
+ "end": 10759.27,
+ "text": "the"
+ },
+ {
+ "id": 22662,
+ "start": 10759.27,
+ "end": 10761.13,
+ "text": "a"
+ },
+ {
+ "id": 22663,
+ "start": 10761.13,
+ "end": 10761.51,
+ "text": "correct."
+ },
+ {
+ "id": 22664,
+ "start": 10761.51,
+ "end": 10761.79,
+ "text": "Senator,"
+ },
+ {
+ "id": 22665,
+ "start": 10761.79,
+ "end": 10761.85,
+ "text": "I"
+ },
+ {
+ "id": 22666,
+ "start": 10761.85,
+ "end": 10762.01,
+ "text": "think"
+ },
+ {
+ "id": 22667,
+ "start": 10762.01,
+ "end": 10762.11,
+ "text": "that"
+ },
+ {
+ "id": 22668,
+ "start": 10762.11,
+ "end": 10762.31,
+ "text": "that's"
+ },
+ {
+ "id": 22669,
+ "start": 10762.31,
+ "end": 10762.43,
+ "text": "the"
+ },
+ {
+ "id": 22670,
+ "start": 10762.43,
+ "end": 10762.61,
+ "text": "right"
+ },
+ {
+ "id": 22671,
+ "start": 10762.61,
+ "end": 10763.07,
+ "text": "principle."
+ },
+ {
+ "id": 22672,
+ "start": 10763.07,
+ "end": 10763.41,
+ "text": "And"
+ },
+ {
+ "id": 22673,
+ "start": 10763.41,
+ "end": 10764.71,
+ "text": "100,000,000,000"
+ },
+ {
+ "id": 22674,
+ "start": 10764.71,
+ "end": 10764.99,
+ "text": "times"
+ },
+ {
+ "id": 22675,
+ "start": 10764.99,
+ "end": 10765.09,
+ "text": "a"
+ },
+ {
+ "id": 22676,
+ "start": 10765.09,
+ "end": 10765.23,
+ "text": "day"
+ },
+ {
+ "id": 22677,
+ "start": 10765.23,
+ "end": 10765.35,
+ "text": "in"
+ },
+ {
+ "id": 22678,
+ "start": 10765.35,
+ "end": 10765.53,
+ "text": "our"
+ },
+ {
+ "id": 22679,
+ "start": 10765.53,
+ "end": 10766.03,
+ "text": "services,"
+ },
+ {
+ "id": 22680,
+ "start": 10766.03,
+ "end": 10766.21,
+ "text": "when"
+ },
+ {
+ "id": 22681,
+ "start": 10766.21,
+ "end": 10766.47,
+ "text": "people"
+ },
+ {
+ "id": 22682,
+ "start": 10766.47,
+ "end": 10766.59,
+ "text": "go"
+ },
+ {
+ "id": 22683,
+ "start": 10766.59,
+ "end": 10766.69,
+ "text": "to"
+ },
+ {
+ "id": 22684,
+ "start": 10766.69,
+ "end": 10766.93,
+ "text": "share"
+ },
+ {
+ "id": 22685,
+ "start": 10766.93,
+ "end": 10767.35,
+ "text": "content,"
+ },
+ {
+ "id": 22686,
+ "start": 10767.35,
+ "end": 10768.11,
+ "text": "they"
+ },
+ {
+ "id": 22687,
+ "start": 10768.11,
+ "end": 10768.39,
+ "text": "choose"
+ },
+ {
+ "id": 22688,
+ "start": 10768.39,
+ "end": 10768.55,
+ "text": "who"
+ },
+ {
+ "id": 22689,
+ "start": 10768.55,
+ "end": 10768.69,
+ "text": "they"
+ },
+ {
+ "id": 22690,
+ "start": 10768.69,
+ "end": 10768.83,
+ "text": "want"
+ },
+ {
+ "id": 22691,
+ "start": 10768.83,
+ "end": 10768.89,
+ "text": "to"
+ },
+ {
+ "id": 22692,
+ "start": 10768.89,
+ "end": 10769.05,
+ "text": "share"
+ },
+ {
+ "id": 22693,
+ "start": 10769.05,
+ "end": 10769.53,
+ "text": "to"
+ },
+ {
+ "id": 22694,
+ "start": 10769.53,
+ "end": 10770.21,
+ "text": "firmly."
+ },
+ {
+ "id": 22695,
+ "start": 10770.21,
+ "end": 10770.35,
+ "text": "You"
+ },
+ {
+ "id": 22696,
+ "start": 10770.35,
+ "end": 10770.55,
+ "text": "could"
+ },
+ {
+ "id": 22697,
+ "start": 10770.55,
+ "end": 10770.89,
+ "text": "support"
+ },
+ {
+ "id": 22698,
+ "start": 10770.89,
+ "end": 10770.97,
+ "text": "a"
+ },
+ {
+ "id": 22699,
+ "start": 10770.97,
+ "end": 10771.31,
+ "text": "law"
+ },
+ {
+ "id": 22700,
+ "start": 10771.31,
+ "end": 10772.09,
+ "text": "that"
+ },
+ {
+ "id": 22701,
+ "start": 10772.09,
+ "end": 10772.81,
+ "text": "enshrines"
+ },
+ {
+ "id": 22702,
+ "start": 10772.81,
+ "end": 10773.11,
+ "text": "that"
+ },
+ {
+ "id": 22703,
+ "start": 10773.11,
+ "end": 10773.51,
+ "text": "as"
+ },
+ {
+ "id": 22704,
+ "start": 10773.51,
+ "end": 10773.93,
+ "text": "the"
+ },
+ {
+ "id": 22705,
+ "start": 10773.93,
+ "end": 10774.39,
+ "text": "promise"
+ },
+ {
+ "id": 22706,
+ "start": 10774.39,
+ "end": 10775.16,
+ "text": "that"
+ },
+ {
+ "id": 22707,
+ "start": 10775.16,
+ "end": 10775.76,
+ "text": "we"
+ },
+ {
+ "id": 22708,
+ "start": 10775.76,
+ "end": 10776.04,
+ "text": "make"
+ },
+ {
+ "id": 22709,
+ "start": 10776.04,
+ "end": 10776.2,
+ "text": "to"
+ },
+ {
+ "id": 22710,
+ "start": 10776.2,
+ "end": 10776.36,
+ "text": "the"
+ },
+ {
+ "id": 22711,
+ "start": 10776.36,
+ "end": 10776.74,
+ "text": "American"
+ },
+ {
+ "id": 22712,
+ "start": 10776.74,
+ "end": 10777,
+ "text": "people"
+ },
+ {
+ "id": 22713,
+ "start": 10777,
+ "end": 10777.44,
+ "text": "that"
+ },
+ {
+ "id": 22714,
+ "start": 10777.44,
+ "end": 10778.06,
+ "text": "permission"
+ },
+ {
+ "id": 22715,
+ "start": 10778.06,
+ "end": 10778.34,
+ "text": "has"
+ },
+ {
+ "id": 22716,
+ "start": 10778.34,
+ "end": 10778.5,
+ "text": "to"
+ },
+ {
+ "id": 22717,
+ "start": 10778.5,
+ "end": 10778.66,
+ "text": "be"
+ },
+ {
+ "id": 22718,
+ "start": 10778.66,
+ "end": 10779.6,
+ "text": "obtained"
+ },
+ {
+ "id": 22719,
+ "start": 10779.6,
+ "end": 10779.96,
+ "text": "before"
+ },
+ {
+ "id": 22720,
+ "start": 10779.96,
+ "end": 10780.2,
+ "text": "their"
+ },
+ {
+ "id": 22721,
+ "start": 10780.2,
+ "end": 10780.64,
+ "text": "information"
+ },
+ {
+ "id": 22722,
+ "start": 10780.64,
+ "end": 10780.76,
+ "text": "is"
+ },
+ {
+ "id": 22723,
+ "start": 10780.76,
+ "end": 10781,
+ "text": "used."
+ },
+ {
+ "id": 22724,
+ "start": 10781,
+ "end": 10781.2,
+ "text": "Is"
+ },
+ {
+ "id": 22725,
+ "start": 10781.2,
+ "end": 10781.36,
+ "text": "that"
+ },
+ {
+ "id": 22726,
+ "start": 10781.36,
+ "end": 10782.18,
+ "text": "correct,"
+ },
+ {
+ "id": 22727,
+ "start": 10782.18,
+ "end": 10783.02,
+ "text": "Senator?"
+ },
+ {
+ "id": 22728,
+ "start": 10783.02,
+ "end": 10783.24,
+ "text": "Yes,"
+ },
+ {
+ "id": 22729,
+ "start": 10783.24,
+ "end": 10783.84,
+ "text": "said"
+ },
+ {
+ "id": 22730,
+ "start": 10783.84,
+ "end": 10783.98,
+ "text": "that"
+ },
+ {
+ "id": 22731,
+ "start": 10783.98,
+ "end": 10784.1,
+ "text": "in"
+ },
+ {
+ "id": 22732,
+ "start": 10784.1,
+ "end": 10784.48,
+ "text": "principle,"
+ },
+ {
+ "id": 22733,
+ "start": 10784.48,
+ "end": 10784.56,
+ "text": "I"
+ },
+ {
+ "id": 22734,
+ "start": 10784.56,
+ "end": 10784.7,
+ "text": "think"
+ },
+ {
+ "id": 22735,
+ "start": 10784.7,
+ "end": 10784.82,
+ "text": "that"
+ },
+ {
+ "id": 22736,
+ "start": 10784.82,
+ "end": 10784.96,
+ "text": "that"
+ },
+ {
+ "id": 22737,
+ "start": 10784.96,
+ "end": 10785.14,
+ "text": "makes"
+ },
+ {
+ "id": 22738,
+ "start": 10785.14,
+ "end": 10785.34,
+ "text": "sense"
+ },
+ {
+ "id": 22739,
+ "start": 10785.34,
+ "end": 10785.9,
+ "text": "the"
+ },
+ {
+ "id": 22740,
+ "start": 10785.9,
+ "end": 10786.34,
+ "text": "details"
+ },
+ {
+ "id": 22741,
+ "start": 10786.34,
+ "end": 10786.68,
+ "text": "matter."
+ },
+ {
+ "id": 22742,
+ "start": 10786.68,
+ "end": 10787.12,
+ "text": "And"
+ },
+ {
+ "id": 22743,
+ "start": 10787.12,
+ "end": 10787.44,
+ "text": "I"
+ },
+ {
+ "id": 22744,
+ "start": 10787.44,
+ "end": 10788.02,
+ "text": "look"
+ },
+ {
+ "id": 22745,
+ "start": 10788.02,
+ "end": 10788.28,
+ "text": "forward"
+ },
+ {
+ "id": 22746,
+ "start": 10788.28,
+ "end": 10788.4,
+ "text": "to"
+ },
+ {
+ "id": 22747,
+ "start": 10788.4,
+ "end": 10788.68,
+ "text": "having"
+ },
+ {
+ "id": 22748,
+ "start": 10788.68,
+ "end": 10788.9,
+ "text": "our"
+ },
+ {
+ "id": 22749,
+ "start": 10788.9,
+ "end": 10789.22,
+ "text": "team"
+ },
+ {
+ "id": 22750,
+ "start": 10789.22,
+ "end": 10789.44,
+ "text": "work"
+ },
+ {
+ "id": 22751,
+ "start": 10789.44,
+ "end": 10789.58,
+ "text": "with"
+ },
+ {
+ "id": 22752,
+ "start": 10789.58,
+ "end": 10789.76,
+ "text": "you"
+ },
+ {
+ "id": 22753,
+ "start": 10789.76,
+ "end": 10790.32,
+ "text": "on"
+ },
+ {
+ "id": 22754,
+ "start": 10790.32,
+ "end": 10790.64,
+ "text": "flashing"
+ },
+ {
+ "id": 22755,
+ "start": 10790.64,
+ "end": 10790.76,
+ "text": "that"
+ },
+ {
+ "id": 22756,
+ "start": 10790.76,
+ "end": 10792.2,
+ "text": "out."
+ },
+ {
+ "id": 22757,
+ "start": 10792.2,
+ "end": 10792.86,
+ "text": "The"
+ },
+ {
+ "id": 22758,
+ "start": 10792.86,
+ "end": 10793.06,
+ "text": "next"
+ },
+ {
+ "id": 22759,
+ "start": 10793.06,
+ "end": 10793.46,
+ "text": "subject"
+ },
+ {
+ "id": 22760,
+ "start": 10793.46,
+ "end": 10793.8,
+ "text": "because"
+ },
+ {
+ "id": 22761,
+ "start": 10793.8,
+ "end": 10793.84,
+ "text": "I"
+ },
+ {
+ "id": 22762,
+ "start": 10793.84,
+ "end": 10794.28,
+ "text": "want"
+ },
+ {
+ "id": 22763,
+ "start": 10794.28,
+ "end": 10794.84,
+ "text": "to"
+ },
+ {
+ "id": 22764,
+ "start": 10794.84,
+ "end": 10795.82,
+ "text": "again"
+ },
+ {
+ "id": 22765,
+ "start": 10795.82,
+ "end": 10795.92,
+ "text": "I"
+ },
+ {
+ "id": 22766,
+ "start": 10795.92,
+ "end": 10796.16,
+ "text": "want"
+ },
+ {
+ "id": 22767,
+ "start": 10796.16,
+ "end": 10796.3,
+ "text": "to"
+ },
+ {
+ "id": 22768,
+ "start": 10796.3,
+ "end": 10796.46,
+ "text": "make"
+ },
+ {
+ "id": 22769,
+ "start": 10796.46,
+ "end": 10796.68,
+ "text": "sure"
+ },
+ {
+ "id": 22770,
+ "start": 10796.68,
+ "end": 10796.92,
+ "text": "that"
+ },
+ {
+ "id": 22771,
+ "start": 10796.92,
+ "end": 10797.08,
+ "text": "we"
+ },
+ {
+ "id": 22772,
+ "start": 10797.08,
+ "end": 10797.76,
+ "text": "kind"
+ },
+ {
+ "id": 22773,
+ "start": 10797.76,
+ "end": 10797.86,
+ "text": "of"
+ },
+ {
+ "id": 22774,
+ "start": 10797.86,
+ "end": 10798.1,
+ "text": "drill"
+ },
+ {
+ "id": 22775,
+ "start": 10798.1,
+ "end": 10798.32,
+ "text": "down"
+ },
+ {
+ "id": 22776,
+ "start": 10798.32,
+ "end": 10798.5,
+ "text": "here."
+ },
+ {
+ "id": 22777,
+ "start": 10798.5,
+ "end": 10799.1,
+ "text": "You"
+ },
+ {
+ "id": 22778,
+ "start": 10799.1,
+ "end": 10799.68,
+ "text": "earlier"
+ },
+ {
+ "id": 22779,
+ "start": 10799.68,
+ "end": 10800.58,
+ "text": "made"
+ },
+ {
+ "id": 22780,
+ "start": 10800.58,
+ "end": 10800.98,
+ "text": "reference"
+ },
+ {
+ "id": 22781,
+ "start": 10800.98,
+ "end": 10801.1,
+ "text": "to"
+ },
+ {
+ "id": 22782,
+ "start": 10801.1,
+ "end": 10801.26,
+ "text": "the"
+ },
+ {
+ "id": 22783,
+ "start": 10801.26,
+ "end": 10801.6,
+ "text": "child"
+ },
+ {
+ "id": 22784,
+ "start": 10801.6,
+ "end": 10802.24,
+ "text": "online"
+ },
+ {
+ "id": 22785,
+ "start": 10802.24,
+ "end": 10802.74,
+ "text": "privacy"
+ },
+ {
+ "id": 22786,
+ "start": 10802.74,
+ "end": 10803.09,
+ "text": "protection,"
+ },
+ {
+ "id": 22787,
+ "start": 10803.09,
+ "end": 10803.25,
+ "text": "an"
+ },
+ {
+ "id": 22788,
+ "start": 10803.25,
+ "end": 10803.53,
+ "text": "act"
+ },
+ {
+ "id": 22789,
+ "start": 10803.53,
+ "end": 10804.29,
+ "text": "of"
+ },
+ {
+ "id": 22790,
+ "start": 10804.29,
+ "end": 10804.67,
+ "text": "19"
+ },
+ {
+ "id": 22791,
+ "start": 10804.67,
+ "end": 10805.21,
+ "text": "99"
+ },
+ {
+ "id": 22792,
+ "start": 10805.21,
+ "end": 10805.41,
+ "text": "which"
+ },
+ {
+ "id": 22793,
+ "start": 10805.41,
+ "end": 10805.53,
+ "text": "I"
+ },
+ {
+ "id": 22794,
+ "start": 10805.53,
+ "end": 10805.65,
+ "text": "am"
+ },
+ {
+ "id": 22795,
+ "start": 10805.65,
+ "end": 10805.79,
+ "text": "the"
+ },
+ {
+ "id": 22796,
+ "start": 10805.79,
+ "end": 10806.07,
+ "text": "author"
+ },
+ {
+ "id": 22797,
+ "start": 10806.07,
+ "end": 10806.19,
+ "text": "of"
+ },
+ {
+ "id": 22798,
+ "start": 10806.19,
+ "end": 10806.99,
+ "text": "so"
+ },
+ {
+ "id": 22799,
+ "start": 10806.99,
+ "end": 10807.17,
+ "text": "that"
+ },
+ {
+ "id": 22800,
+ "start": 10807.17,
+ "end": 10807.33,
+ "text": "is"
+ },
+ {
+ "id": 22801,
+ "start": 10807.33,
+ "end": 10807.47,
+ "text": "the"
+ },
+ {
+ "id": 22802,
+ "start": 10807.47,
+ "end": 10808.07,
+ "text": "Constitution"
+ },
+ {
+ "id": 22803,
+ "start": 10808.07,
+ "end": 10808.25,
+ "text": "for"
+ },
+ {
+ "id": 22804,
+ "start": 10808.25,
+ "end": 10808.67,
+ "text": "child's"
+ },
+ {
+ "id": 22805,
+ "start": 10808.67,
+ "end": 10809.73,
+ "text": "privacy"
+ },
+ {
+ "id": 22806,
+ "start": 10809.73,
+ "end": 10810.27,
+ "text": "protection"
+ },
+ {
+ "id": 22807,
+ "start": 10810.27,
+ "end": 10811.01,
+ "text": "online"
+ },
+ {
+ "id": 22808,
+ "start": 10811.01,
+ "end": 10811.13,
+ "text": "in"
+ },
+ {
+ "id": 22809,
+ "start": 10811.13,
+ "end": 10811.27,
+ "text": "the"
+ },
+ {
+ "id": 22810,
+ "start": 10811.27,
+ "end": 10811.55,
+ "text": "country"
+ },
+ {
+ "id": 22811,
+ "start": 10811.55,
+ "end": 10811.71,
+ "text": "and"
+ },
+ {
+ "id": 22812,
+ "start": 10811.71,
+ "end": 10811.87,
+ "text": "I'm"
+ },
+ {
+ "id": 22813,
+ "start": 10811.87,
+ "end": 10812.05,
+ "text": "very"
+ },
+ {
+ "id": 22814,
+ "start": 10812.05,
+ "end": 10812.29,
+ "text": "proud"
+ },
+ {
+ "id": 22815,
+ "start": 10812.29,
+ "end": 10812.39,
+ "text": "of"
+ },
+ {
+ "id": 22816,
+ "start": 10812.39,
+ "end": 10812.61,
+ "text": "that."
+ },
+ {
+ "id": 22817,
+ "start": 10812.61,
+ "end": 10813.98,
+ "text": "But"
+ },
+ {
+ "id": 22818,
+ "start": 10813.98,
+ "end": 10814.58,
+ "text": "there"
+ },
+ {
+ "id": 22819,
+ "start": 10814.58,
+ "end": 10814.74,
+ "text": "are"
+ },
+ {
+ "id": 22820,
+ "start": 10814.74,
+ "end": 10814.88,
+ "text": "no"
+ },
+ {
+ "id": 22821,
+ "start": 10814.88,
+ "end": 10815.56,
+ "text": "protections"
+ },
+ {
+ "id": 22822,
+ "start": 10815.56,
+ "end": 10816.28,
+ "text": "additionally"
+ },
+ {
+ "id": 22823,
+ "start": 10816.28,
+ "end": 10816.48,
+ "text": "for"
+ },
+ {
+ "id": 22824,
+ "start": 10816.48,
+ "end": 10816.96,
+ "text": "13"
+ },
+ {
+ "id": 22825,
+ "start": 10816.96,
+ "end": 10817.18,
+ "text": "or"
+ },
+ {
+ "id": 22826,
+ "start": 10817.18,
+ "end": 10817.62,
+ "text": "14"
+ },
+ {
+ "id": 22827,
+ "start": 10817.62,
+ "end": 10817.92,
+ "text": "or"
+ },
+ {
+ "id": 22828,
+ "start": 10817.92,
+ "end": 10818.38,
+ "text": "15"
+ },
+ {
+ "id": 22829,
+ "start": 10818.38,
+ "end": 10818.56,
+ "text": "year"
+ },
+ {
+ "id": 22830,
+ "start": 10818.56,
+ "end": 10818.74,
+ "text": "old,"
+ },
+ {
+ "id": 22831,
+ "start": 10818.74,
+ "end": 10819.24,
+ "text": "they"
+ },
+ {
+ "id": 22832,
+ "start": 10819.24,
+ "end": 10819.34,
+ "text": "get"
+ },
+ {
+ "id": 22833,
+ "start": 10819.34,
+ "end": 10819.46,
+ "text": "the"
+ },
+ {
+ "id": 22834,
+ "start": 10819.46,
+ "end": 10819.64,
+ "text": "same"
+ },
+ {
+ "id": 22835,
+ "start": 10819.64,
+ "end": 10820.18,
+ "text": "protections"
+ },
+ {
+ "id": 22836,
+ "start": 10820.18,
+ "end": 10821.1,
+ "text": "that"
+ },
+ {
+ "id": 22837,
+ "start": 10821.1,
+ "end": 10821.2,
+ "text": "a"
+ },
+ {
+ "id": 22838,
+ "start": 10821.2,
+ "end": 10821.42,
+ "text": "30"
+ },
+ {
+ "id": 22839,
+ "start": 10821.42,
+ "end": 10821.6,
+ "text": "year"
+ },
+ {
+ "id": 22840,
+ "start": 10821.6,
+ "end": 10821.72,
+ "text": "old"
+ },
+ {
+ "id": 22841,
+ "start": 10821.72,
+ "end": 10821.88,
+ "text": "or"
+ },
+ {
+ "id": 22842,
+ "start": 10821.88,
+ "end": 10822,
+ "text": "a"
+ },
+ {
+ "id": 22843,
+ "start": 10822,
+ "end": 10822.3,
+ "text": "50"
+ },
+ {
+ "id": 22844,
+ "start": 10822.3,
+ "end": 10822.42,
+ "text": "year"
+ },
+ {
+ "id": 22845,
+ "start": 10822.42,
+ "end": 10822.56,
+ "text": "old"
+ },
+ {
+ "id": 22846,
+ "start": 10822.56,
+ "end": 10823.82,
+ "text": "gap."
+ },
+ {
+ "id": 22847,
+ "start": 10823.82,
+ "end": 10824.32,
+ "text": "So"
+ },
+ {
+ "id": 22848,
+ "start": 10824.32,
+ "end": 10825.02,
+ "text": "I"
+ },
+ {
+ "id": 22849,
+ "start": 10825.02,
+ "end": 10825.28,
+ "text": "have"
+ },
+ {
+ "id": 22850,
+ "start": 10825.28,
+ "end": 10825.54,
+ "text": "a"
+ },
+ {
+ "id": 22851,
+ "start": 10825.54,
+ "end": 10825.96,
+ "text": "separate"
+ },
+ {
+ "id": 22852,
+ "start": 10825.96,
+ "end": 10826.16,
+ "text": "piece"
+ },
+ {
+ "id": 22853,
+ "start": 10826.16,
+ "end": 10826.26,
+ "text": "of"
+ },
+ {
+ "id": 22854,
+ "start": 10826.26,
+ "end": 10827.54,
+ "text": "legislation"
+ },
+ {
+ "id": 22855,
+ "start": 10827.54,
+ "end": 10828.3,
+ "text": "to"
+ },
+ {
+ "id": 22856,
+ "start": 10828.3,
+ "end": 10828.88,
+ "text": "ensure"
+ },
+ {
+ "id": 22857,
+ "start": 10828.88,
+ "end": 10829.36,
+ "text": "that"
+ },
+ {
+ "id": 22858,
+ "start": 10829.36,
+ "end": 10829.8,
+ "text": "kids"
+ },
+ {
+ "id": 22859,
+ "start": 10829.8,
+ "end": 10830.28,
+ "text": "who"
+ },
+ {
+ "id": 22860,
+ "start": 10830.28,
+ "end": 10830.48,
+ "text": "are"
+ },
+ {
+ "id": 22861,
+ "start": 10830.48,
+ "end": 10830.76,
+ "text": "under"
+ },
+ {
+ "id": 22862,
+ "start": 10830.76,
+ "end": 10832.28,
+ "text": "16"
+ },
+ {
+ "id": 22863,
+ "start": 10832.28,
+ "end": 10833.28,
+ "text": "absolutely"
+ },
+ {
+ "id": 22864,
+ "start": 10833.28,
+ "end": 10834,
+ "text": "have"
+ },
+ {
+ "id": 22865,
+ "start": 10834,
+ "end": 10834.88,
+ "text": "a"
+ },
+ {
+ "id": 22866,
+ "start": 10834.88,
+ "end": 10835.5,
+ "text": "privacy"
+ },
+ {
+ "id": 22867,
+ "start": 10835.5,
+ "end": 10835.76,
+ "text": "bill"
+ },
+ {
+ "id": 22868,
+ "start": 10835.76,
+ "end": 10835.84,
+ "text": "of"
+ },
+ {
+ "id": 22869,
+ "start": 10835.84,
+ "end": 10836.14,
+ "text": "rights"
+ },
+ {
+ "id": 22870,
+ "start": 10836.14,
+ "end": 10837.04,
+ "text": "and"
+ },
+ {
+ "id": 22871,
+ "start": 10837.04,
+ "end": 10838.5,
+ "text": "that"
+ },
+ {
+ "id": 22872,
+ "start": 10838.5,
+ "end": 10839.46,
+ "text": "permission"
+ },
+ {
+ "id": 22873,
+ "start": 10839.46,
+ "end": 10839.76,
+ "text": "has"
+ },
+ {
+ "id": 22874,
+ "start": 10839.76,
+ "end": 10839.94,
+ "text": "to"
+ },
+ {
+ "id": 22875,
+ "start": 10839.94,
+ "end": 10840.08,
+ "text": "be"
+ },
+ {
+ "id": 22876,
+ "start": 10840.08,
+ "end": 10840.58,
+ "text": "received"
+ },
+ {
+ "id": 22877,
+ "start": 10840.58,
+ "end": 10840.84,
+ "text": "from"
+ },
+ {
+ "id": 22878,
+ "start": 10840.84,
+ "end": 10841.08,
+ "text": "their"
+ },
+ {
+ "id": 22879,
+ "start": 10841.08,
+ "end": 10841.98,
+ "text": "parents"
+ },
+ {
+ "id": 22880,
+ "start": 10841.98,
+ "end": 10842.72,
+ "text": "or"
+ },
+ {
+ "id": 22881,
+ "start": 10842.72,
+ "end": 10843.24,
+ "text": "the"
+ },
+ {
+ "id": 22882,
+ "start": 10843.24,
+ "end": 10843.84,
+ "text": "children"
+ },
+ {
+ "id": 22883,
+ "start": 10843.84,
+ "end": 10844.92,
+ "text": "before"
+ },
+ {
+ "id": 22884,
+ "start": 10844.92,
+ "end": 10845.26,
+ "text": "any"
+ },
+ {
+ "id": 22885,
+ "start": 10845.26,
+ "end": 10845.36,
+ "text": "of"
+ },
+ {
+ "id": 22886,
+ "start": 10845.36,
+ "end": 10845.66,
+ "text": "their"
+ },
+ {
+ "id": 22887,
+ "start": 10845.66,
+ "end": 10846.36,
+ "text": "information"
+ },
+ {
+ "id": 22888,
+ "start": 10846.36,
+ "end": 10846.72,
+ "text": "is"
+ },
+ {
+ "id": 22889,
+ "start": 10846.72,
+ "end": 10847.26,
+ "text": "reused"
+ },
+ {
+ "id": 22890,
+ "start": 10847.26,
+ "end": 10847.68,
+ "text": "for"
+ },
+ {
+ "id": 22891,
+ "start": 10847.68,
+ "end": 10848,
+ "text": "any"
+ },
+ {
+ "id": 22892,
+ "start": 10848,
+ "end": 10848.32,
+ "text": "other"
+ },
+ {
+ "id": 22893,
+ "start": 10848.32,
+ "end": 10848.64,
+ "text": "purpose"
+ },
+ {
+ "id": 22894,
+ "start": 10848.64,
+ "end": 10848.98,
+ "text": "other"
+ },
+ {
+ "id": 22895,
+ "start": 10848.98,
+ "end": 10849.14,
+ "text": "than"
+ },
+ {
+ "id": 22896,
+ "start": 10849.14,
+ "end": 10849.4,
+ "text": "that."
+ },
+ {
+ "id": 22897,
+ "start": 10849.4,
+ "end": 10850,
+ "text": "Which"
+ },
+ {
+ "id": 22898,
+ "start": 10850,
+ "end": 10850.26,
+ "text": "was"
+ },
+ {
+ "id": 22899,
+ "start": 10850.26,
+ "end": 10850.82,
+ "text": "originally"
+ },
+ {
+ "id": 22900,
+ "start": 10850.82,
+ "end": 10851.3,
+ "text": "intended."
+ },
+ {
+ "id": 22901,
+ "start": 10851.3,
+ "end": 10851.98,
+ "text": "Would"
+ },
+ {
+ "id": 22902,
+ "start": 10851.98,
+ "end": 10852.14,
+ "text": "you"
+ },
+ {
+ "id": 22903,
+ "start": 10852.14,
+ "end": 10852.72,
+ "text": "support"
+ },
+ {
+ "id": 22904,
+ "start": 10852.72,
+ "end": 10852.96,
+ "text": "a"
+ },
+ {
+ "id": 22905,
+ "start": 10852.96,
+ "end": 10853.56,
+ "text": "child"
+ },
+ {
+ "id": 22906,
+ "start": 10853.56,
+ "end": 10855.4,
+ "text": "on"
+ },
+ {
+ "id": 22907,
+ "start": 10855.4,
+ "end": 10856.4,
+ "text": "privacy"
+ },
+ {
+ "id": 22908,
+ "start": 10856.4,
+ "end": 10856.86,
+ "text": "bill"
+ },
+ {
+ "id": 22909,
+ "start": 10856.86,
+ "end": 10856.98,
+ "text": "of"
+ },
+ {
+ "id": 22910,
+ "start": 10856.98,
+ "end": 10857.36,
+ "text": "rights"
+ },
+ {
+ "id": 22911,
+ "start": 10857.36,
+ "end": 10857.72,
+ "text": "for"
+ },
+ {
+ "id": 22912,
+ "start": 10857.72,
+ "end": 10858.02,
+ "text": "kids"
+ },
+ {
+ "id": 22913,
+ "start": 10858.02,
+ "end": 10858.34,
+ "text": "under"
+ },
+ {
+ "id": 22914,
+ "start": 10858.34,
+ "end": 10858.86,
+ "text": "16"
+ },
+ {
+ "id": 22915,
+ "start": 10858.86,
+ "end": 10859.04,
+ "text": "to"
+ },
+ {
+ "id": 22916,
+ "start": 10859.04,
+ "end": 10859.56,
+ "text": "guarantee"
+ },
+ {
+ "id": 22917,
+ "start": 10859.56,
+ "end": 10859.82,
+ "text": "that"
+ },
+ {
+ "id": 22918,
+ "start": 10859.82,
+ "end": 10860.1,
+ "text": "that"
+ },
+ {
+ "id": 22919,
+ "start": 10860.1,
+ "end": 10860.96,
+ "text": "information"
+ },
+ {
+ "id": 22920,
+ "start": 10860.96,
+ "end": 10861.84,
+ "text": "is"
+ },
+ {
+ "id": 22921,
+ "start": 10861.84,
+ "end": 10862.1,
+ "text": "not"
+ },
+ {
+ "id": 22922,
+ "start": 10862.1,
+ "end": 10862.6,
+ "text": "reused"
+ },
+ {
+ "id": 22923,
+ "start": 10862.6,
+ "end": 10862.8,
+ "text": "for"
+ },
+ {
+ "id": 22924,
+ "start": 10862.8,
+ "end": 10863.06,
+ "text": "any"
+ },
+ {
+ "id": 22925,
+ "start": 10863.06,
+ "end": 10863.28,
+ "text": "other"
+ },
+ {
+ "id": 22926,
+ "start": 10863.28,
+ "end": 10863.64,
+ "text": "purpose"
+ },
+ {
+ "id": 22927,
+ "start": 10863.64,
+ "end": 10864.16,
+ "text": "without"
+ },
+ {
+ "id": 22928,
+ "start": 10864.16,
+ "end": 10864.84,
+ "text": "explicit"
+ },
+ {
+ "id": 22929,
+ "start": 10864.84,
+ "end": 10865.26,
+ "text": "permission"
+ },
+ {
+ "id": 22930,
+ "start": 10865.26,
+ "end": 10865.44,
+ "text": "from"
+ },
+ {
+ "id": 22931,
+ "start": 10865.44,
+ "end": 10865.56,
+ "text": "the"
+ },
+ {
+ "id": 22932,
+ "start": 10865.56,
+ "end": 10865.9,
+ "text": "parents"
+ },
+ {
+ "id": 22933,
+ "start": 10865.9,
+ "end": 10866.04,
+ "text": "or"
+ },
+ {
+ "id": 22934,
+ "start": 10866.04,
+ "end": 10866.18,
+ "text": "the"
+ },
+ {
+ "id": 22935,
+ "start": 10866.18,
+ "end": 10867.9,
+ "text": "kids."
+ },
+ {
+ "id": 22936,
+ "start": 10867.9,
+ "end": 10868.9,
+ "text": "Senator,"
+ },
+ {
+ "id": 22937,
+ "start": 10868.9,
+ "end": 10869,
+ "text": "I"
+ },
+ {
+ "id": 22938,
+ "start": 10869,
+ "end": 10869.96,
+ "text": "think"
+ },
+ {
+ "id": 22939,
+ "start": 10869.96,
+ "end": 10870.94,
+ "text": "as"
+ },
+ {
+ "id": 22940,
+ "start": 10870.94,
+ "end": 10871.04,
+ "text": "a"
+ },
+ {
+ "id": 22941,
+ "start": 10871.04,
+ "end": 10871.42,
+ "text": "general"
+ },
+ {
+ "id": 22942,
+ "start": 10871.42,
+ "end": 10871.84,
+ "text": "principle,"
+ },
+ {
+ "id": 22943,
+ "start": 10871.84,
+ "end": 10871.9,
+ "text": "I"
+ },
+ {
+ "id": 22944,
+ "start": 10871.9,
+ "end": 10872.1,
+ "text": "think"
+ },
+ {
+ "id": 22945,
+ "start": 10872.1,
+ "end": 10873.12,
+ "text": "protecting"
+ },
+ {
+ "id": 22946,
+ "start": 10873.12,
+ "end": 10873.92,
+ "text": "protecting"
+ },
+ {
+ "id": 22947,
+ "start": 10873.92,
+ "end": 10874.34,
+ "text": "minors"
+ },
+ {
+ "id": 22948,
+ "start": 10874.34,
+ "end": 10874.48,
+ "text": "and"
+ },
+ {
+ "id": 22949,
+ "start": 10874.48,
+ "end": 10874.88,
+ "text": "protecting"
+ },
+ {
+ "id": 22950,
+ "start": 10874.88,
+ "end": 10875.06,
+ "text": "their"
+ },
+ {
+ "id": 22951,
+ "start": 10875.06,
+ "end": 10875.5,
+ "text": "privacy"
+ },
+ {
+ "id": 22952,
+ "start": 10875.5,
+ "end": 10875.6,
+ "text": "is"
+ },
+ {
+ "id": 22953,
+ "start": 10875.6,
+ "end": 10876.12,
+ "text": "extremely"
+ },
+ {
+ "id": 22954,
+ "start": 10876.12,
+ "end": 10876.54,
+ "text": "important."
+ },
+ {
+ "id": 22955,
+ "start": 10876.54,
+ "end": 10877.22,
+ "text": "And"
+ },
+ {
+ "id": 22956,
+ "start": 10877.22,
+ "end": 10877.4,
+ "text": "we"
+ },
+ {
+ "id": 22957,
+ "start": 10877.4,
+ "end": 10877.54,
+ "text": "do"
+ },
+ {
+ "id": 22958,
+ "start": 10877.54,
+ "end": 10877.6,
+ "text": "a"
+ },
+ {
+ "id": 22959,
+ "start": 10877.6,
+ "end": 10877.88,
+ "text": "number"
+ },
+ {
+ "id": 22960,
+ "start": 10877.88,
+ "end": 10877.98,
+ "text": "of"
+ },
+ {
+ "id": 22961,
+ "start": 10877.98,
+ "end": 10878.24,
+ "text": "things"
+ },
+ {
+ "id": 22962,
+ "start": 10878.24,
+ "end": 10878.44,
+ "text": "on"
+ },
+ {
+ "id": 22963,
+ "start": 10878.44,
+ "end": 10878.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 22964,
+ "start": 10878.9,
+ "end": 10879.06,
+ "text": "to"
+ },
+ {
+ "id": 22965,
+ "start": 10879.06,
+ "end": 10879.18,
+ "text": "do"
+ },
+ {
+ "id": 22966,
+ "start": 10879.18,
+ "end": 10879.32,
+ "text": "that"
+ },
+ {
+ "id": 22967,
+ "start": 10879.32,
+ "end": 10879.74,
+ "text": "already."
+ },
+ {
+ "id": 22968,
+ "start": 10879.74,
+ "end": 10879.92,
+ "text": "Which"
+ },
+ {
+ "id": 22969,
+ "start": 10879.92,
+ "end": 10880.06,
+ "text": "I'm"
+ },
+ {
+ "id": 22970,
+ "start": 10880.06,
+ "end": 10880.44,
+ "text": "happening"
+ },
+ {
+ "id": 22971,
+ "start": 10880.44,
+ "end": 10881.22,
+ "text": "I'm"
+ },
+ {
+ "id": 22972,
+ "start": 10881.22,
+ "end": 10881.46,
+ "text": "talking"
+ },
+ {
+ "id": 22973,
+ "start": 10881.46,
+ "end": 10881.64,
+ "text": "about"
+ },
+ {
+ "id": 22974,
+ "start": 10881.64,
+ "end": 10881.72,
+ "text": "a"
+ },
+ {
+ "id": 22975,
+ "start": 10881.72,
+ "end": 10882.58,
+ "text": "law"
+ },
+ {
+ "id": 22976,
+ "start": 10882.58,
+ "end": 10882.72,
+ "text": "I'm"
+ },
+ {
+ "id": 22977,
+ "start": 10882.72,
+ "end": 10882.92,
+ "text": "talking"
+ },
+ {
+ "id": 22978,
+ "start": 10882.92,
+ "end": 10883.06,
+ "text": "about"
+ },
+ {
+ "id": 22979,
+ "start": 10883.06,
+ "end": 10883.1,
+ "text": "a"
+ },
+ {
+ "id": 22980,
+ "start": 10883.1,
+ "end": 10883.36,
+ "text": "law."
+ },
+ {
+ "id": 22981,
+ "start": 10883.36,
+ "end": 10883.58,
+ "text": "Would"
+ },
+ {
+ "id": 22982,
+ "start": 10883.58,
+ "end": 10883.7,
+ "text": "you"
+ },
+ {
+ "id": 22983,
+ "start": 10883.7,
+ "end": 10884,
+ "text": "support"
+ },
+ {
+ "id": 22984,
+ "start": 10884,
+ "end": 10884.1,
+ "text": "a"
+ },
+ {
+ "id": 22985,
+ "start": 10884.1,
+ "end": 10884.74,
+ "text": "law"
+ },
+ {
+ "id": 22986,
+ "start": 10884.74,
+ "end": 10884.96,
+ "text": "to"
+ },
+ {
+ "id": 22987,
+ "start": 10884.96,
+ "end": 10885.38,
+ "text": "ensure"
+ },
+ {
+ "id": 22988,
+ "start": 10885.38,
+ "end": 10886.2,
+ "text": "that"
+ },
+ {
+ "id": 22989,
+ "start": 10886.2,
+ "end": 10886.6,
+ "text": "kids"
+ },
+ {
+ "id": 22990,
+ "start": 10886.6,
+ "end": 10886.94,
+ "text": "under"
+ },
+ {
+ "id": 22991,
+ "start": 10886.94,
+ "end": 10887.38,
+ "text": "16"
+ },
+ {
+ "id": 22992,
+ "start": 10887.38,
+ "end": 10887.94,
+ "text": "have"
+ },
+ {
+ "id": 22993,
+ "start": 10887.94,
+ "end": 10888.88,
+ "text": "this"
+ },
+ {
+ "id": 22994,
+ "start": 10888.88,
+ "end": 10889.88,
+ "text": "privacy"
+ },
+ {
+ "id": 22995,
+ "start": 10889.88,
+ "end": 10890.06,
+ "text": "bill"
+ },
+ {
+ "id": 22996,
+ "start": 10890.06,
+ "end": 10890.14,
+ "text": "of"
+ },
+ {
+ "id": 22997,
+ "start": 10890.14,
+ "end": 10890.36,
+ "text": "rights"
+ },
+ {
+ "id": 22998,
+ "start": 10890.36,
+ "end": 10890.82,
+ "text": "I"
+ },
+ {
+ "id": 22999,
+ "start": 10890.82,
+ "end": 10890.98,
+ "text": "had"
+ },
+ {
+ "id": 23000,
+ "start": 10890.98,
+ "end": 10891.18,
+ "text": "this"
+ },
+ {
+ "id": 23001,
+ "start": 10891.18,
+ "end": 10891.78,
+ "text": "conversation"
+ },
+ {
+ "id": 23002,
+ "start": 10891.78,
+ "end": 10891.98,
+ "text": "with"
+ },
+ {
+ "id": 23003,
+ "start": 10891.98,
+ "end": 10892.24,
+ "text": "you"
+ },
+ {
+ "id": 23004,
+ "start": 10892.24,
+ "end": 10892.84,
+ "text": "in"
+ },
+ {
+ "id": 23005,
+ "start": 10892.84,
+ "end": 10893.02,
+ "text": "your"
+ },
+ {
+ "id": 23006,
+ "start": 10893.02,
+ "end": 10893.32,
+ "text": "office"
+ },
+ {
+ "id": 23007,
+ "start": 10893.32,
+ "end": 10893.58,
+ "text": "seven"
+ },
+ {
+ "id": 23008,
+ "start": 10893.58,
+ "end": 10893.76,
+ "text": "years"
+ },
+ {
+ "id": 23009,
+ "start": 10893.76,
+ "end": 10894.04,
+ "text": "ago"
+ },
+ {
+ "id": 23010,
+ "start": 10894.04,
+ "end": 10894.4,
+ "text": "about"
+ },
+ {
+ "id": 23011,
+ "start": 10894.4,
+ "end": 10894.56,
+ "text": "this"
+ },
+ {
+ "id": 23012,
+ "start": 10894.56,
+ "end": 10895.12,
+ "text": "specific"
+ },
+ {
+ "id": 23013,
+ "start": 10895.12,
+ "end": 10895.92,
+ "text": "subject"
+ },
+ {
+ "id": 23014,
+ "start": 10895.92,
+ "end": 10896.08,
+ "text": "in"
+ },
+ {
+ "id": 23015,
+ "start": 10896.08,
+ "end": 10896.42,
+ "text": "Palo"
+ },
+ {
+ "id": 23016,
+ "start": 10896.42,
+ "end": 10897.7,
+ "text": "Alto"
+ },
+ {
+ "id": 23017,
+ "start": 10897.7,
+ "end": 10898.76,
+ "text": "and"
+ },
+ {
+ "id": 23018,
+ "start": 10898.76,
+ "end": 10898.86,
+ "text": "I"
+ },
+ {
+ "id": 23019,
+ "start": 10898.86,
+ "end": 10899.06,
+ "text": "think,"
+ },
+ {
+ "id": 23020,
+ "start": 10899.06,
+ "end": 10899.36,
+ "text": "that's"
+ },
+ {
+ "id": 23021,
+ "start": 10899.36,
+ "end": 10899.8,
+ "text": "really"
+ },
+ {
+ "id": 23022,
+ "start": 10899.8,
+ "end": 10899.94,
+ "text": "what"
+ },
+ {
+ "id": 23023,
+ "start": 10899.94,
+ "end": 10900.06,
+ "text": "the"
+ },
+ {
+ "id": 23024,
+ "start": 10900.06,
+ "end": 10900.42,
+ "text": "American"
+ },
+ {
+ "id": 23025,
+ "start": 10900.42,
+ "end": 10900.62,
+ "text": "people"
+ },
+ {
+ "id": 23026,
+ "start": 10900.62,
+ "end": 10900.82,
+ "text": "want"
+ },
+ {
+ "id": 23027,
+ "start": 10900.82,
+ "end": 10900.94,
+ "text": "to"
+ },
+ {
+ "id": 23028,
+ "start": 10900.94,
+ "end": 10901.1,
+ "text": "know"
+ },
+ {
+ "id": 23029,
+ "start": 10901.1,
+ "end": 10901.4,
+ "text": "right"
+ },
+ {
+ "id": 23030,
+ "start": 10901.4,
+ "end": 10901.54,
+ "text": "now?"
+ },
+ {
+ "id": 23031,
+ "start": 10901.54,
+ "end": 10901.92,
+ "text": "What"
+ },
+ {
+ "id": 23032,
+ "start": 10901.92,
+ "end": 10902.16,
+ "text": "is"
+ },
+ {
+ "id": 23033,
+ "start": 10902.16,
+ "end": 10902.32,
+ "text": "the"
+ },
+ {
+ "id": 23034,
+ "start": 10902.32,
+ "end": 10903.88,
+ "text": "protection?"
+ },
+ {
+ "id": 23035,
+ "start": 10903.88,
+ "end": 10904.84,
+ "text": "What"
+ },
+ {
+ "id": 23036,
+ "start": 10904.84,
+ "end": 10905.02,
+ "text": "are"
+ },
+ {
+ "id": 23037,
+ "start": 10905.02,
+ "end": 10905.14,
+ "text": "the"
+ },
+ {
+ "id": 23038,
+ "start": 10905.14,
+ "end": 10905.58,
+ "text": "protections"
+ },
+ {
+ "id": 23039,
+ "start": 10905.58,
+ "end": 10905.76,
+ "text": "that"
+ },
+ {
+ "id": 23040,
+ "start": 10905.76,
+ "end": 10905.88,
+ "text": "are"
+ },
+ {
+ "id": 23041,
+ "start": 10905.88,
+ "end": 10906.1,
+ "text": "going"
+ },
+ {
+ "id": 23042,
+ "start": 10906.1,
+ "end": 10906.2,
+ "text": "to"
+ },
+ {
+ "id": 23043,
+ "start": 10906.2,
+ "end": 10906.3,
+ "text": "be"
+ },
+ {
+ "id": 23044,
+ "start": 10906.3,
+ "end": 10906.5,
+ "text": "put"
+ },
+ {
+ "id": 23045,
+ "start": 10906.5,
+ "end": 10906.68,
+ "text": "on"
+ },
+ {
+ "id": 23046,
+ "start": 10906.68,
+ "end": 10906.8,
+ "text": "the"
+ },
+ {
+ "id": 23047,
+ "start": 10906.8,
+ "end": 10907.06,
+ "text": "books"
+ },
+ {
+ "id": 23048,
+ "start": 10907.06,
+ "end": 10907.64,
+ "text": "for"
+ },
+ {
+ "id": 23049,
+ "start": 10907.64,
+ "end": 10907.98,
+ "text": "their"
+ },
+ {
+ "id": 23050,
+ "start": 10907.98,
+ "end": 10908.32,
+ "text": "families?"
+ },
+ {
+ "id": 23051,
+ "start": 10908.32,
+ "end": 10908.48,
+ "text": "But"
+ },
+ {
+ "id": 23052,
+ "start": 10908.48,
+ "end": 10908.92,
+ "text": "especially"
+ },
+ {
+ "id": 23053,
+ "start": 10908.92,
+ "end": 10909.08,
+ "text": "for"
+ },
+ {
+ "id": 23054,
+ "start": 10909.08,
+ "end": 10909.26,
+ "text": "their"
+ },
+ {
+ "id": 23055,
+ "start": 10909.26,
+ "end": 10909.58,
+ "text": "children"
+ },
+ {
+ "id": 23056,
+ "start": 10909.58,
+ "end": 10909.94,
+ "text": "would"
+ },
+ {
+ "id": 23057,
+ "start": 10909.94,
+ "end": 10910.08,
+ "text": "you"
+ },
+ {
+ "id": 23058,
+ "start": 10910.08,
+ "end": 10910.46,
+ "text": "support"
+ },
+ {
+ "id": 23059,
+ "start": 10910.46,
+ "end": 10910.56,
+ "text": "a"
+ },
+ {
+ "id": 23060,
+ "start": 10910.56,
+ "end": 10910.98,
+ "text": "privacy"
+ },
+ {
+ "id": 23061,
+ "start": 10910.98,
+ "end": 10911.2,
+ "text": "bill"
+ },
+ {
+ "id": 23062,
+ "start": 10911.2,
+ "end": 10911.28,
+ "text": "of"
+ },
+ {
+ "id": 23063,
+ "start": 10911.28,
+ "end": 10911.52,
+ "text": "rights"
+ },
+ {
+ "id": 23064,
+ "start": 10911.52,
+ "end": 10911.7,
+ "text": "for"
+ },
+ {
+ "id": 23065,
+ "start": 10911.7,
+ "end": 10911.94,
+ "text": "kids"
+ },
+ {
+ "id": 23066,
+ "start": 10911.94,
+ "end": 10912.38,
+ "text": "were"
+ },
+ {
+ "id": 23067,
+ "start": 10912.38,
+ "end": 10912.84,
+ "text": "opt"
+ },
+ {
+ "id": 23068,
+ "start": 10912.84,
+ "end": 10913.1,
+ "text": "in"
+ },
+ {
+ "id": 23069,
+ "start": 10913.1,
+ "end": 10913.46,
+ "text": "is"
+ },
+ {
+ "id": 23070,
+ "start": 10913.46,
+ "end": 10913.64,
+ "text": "the"
+ },
+ {
+ "id": 23071,
+ "start": 10913.64,
+ "end": 10914.06,
+ "text": "standard"
+ },
+ {
+ "id": 23072,
+ "start": 10914.06,
+ "end": 10914.38,
+ "text": "here."
+ },
+ {
+ "id": 23073,
+ "start": 10914.38,
+ "end": 10914.54,
+ "text": "So,"
+ },
+ {
+ "id": 23074,
+ "start": 10914.54,
+ "end": 10915.22,
+ "text": "no,"
+ },
+ {
+ "id": 23075,
+ "start": 10915.22,
+ "end": 10916.02,
+ "text": "Senator."
+ },
+ {
+ "id": 23076,
+ "start": 10916.02,
+ "end": 10916.08,
+ "text": "I"
+ },
+ {
+ "id": 23077,
+ "start": 10916.08,
+ "end": 10916.26,
+ "text": "think"
+ },
+ {
+ "id": 23078,
+ "start": 10916.26,
+ "end": 10916.36,
+ "text": "that"
+ },
+ {
+ "id": 23079,
+ "start": 10916.36,
+ "end": 10916.58,
+ "text": "that's"
+ },
+ {
+ "id": 23080,
+ "start": 10916.58,
+ "end": 10916.74,
+ "text": "an"
+ },
+ {
+ "id": 23081,
+ "start": 10916.74,
+ "end": 10917.16,
+ "text": "important"
+ },
+ {
+ "id": 23082,
+ "start": 10917.16,
+ "end": 10917.66,
+ "text": "principle"
+ },
+ {
+ "id": 23083,
+ "start": 10917.66,
+ "end": 10918.48,
+ "text": "in"
+ },
+ {
+ "id": 23084,
+ "start": 10918.48,
+ "end": 10918.9,
+ "text": "and"
+ },
+ {
+ "id": 23085,
+ "start": 10918.9,
+ "end": 10919.02,
+ "text": "I"
+ },
+ {
+ "id": 23086,
+ "start": 10919.02,
+ "end": 10919.2,
+ "text": "think"
+ },
+ {
+ "id": 23087,
+ "start": 10919.2,
+ "end": 10919.38,
+ "text": "we"
+ },
+ {
+ "id": 23088,
+ "start": 10919.38,
+ "end": 10919.68,
+ "text": "should."
+ },
+ {
+ "id": 23089,
+ "start": 10919.68,
+ "end": 10919.76,
+ "text": "We"
+ },
+ {
+ "id": 23090,
+ "start": 10919.76,
+ "end": 10919.96,
+ "text": "need"
+ },
+ {
+ "id": 23091,
+ "start": 10919.96,
+ "end": 10920.02,
+ "text": "a"
+ },
+ {
+ "id": 23092,
+ "start": 10920.02,
+ "end": 10920.62,
+ "text": "law"
+ },
+ {
+ "id": 23093,
+ "start": 10920.62,
+ "end": 10920.84,
+ "text": "to"
+ },
+ {
+ "id": 23094,
+ "start": 10920.84,
+ "end": 10921.28,
+ "text": "protect"
+ },
+ {
+ "id": 23095,
+ "start": 10921.28,
+ "end": 10921.66,
+ "text": "those"
+ },
+ {
+ "id": 23096,
+ "start": 10921.66,
+ "end": 10922.22,
+ "text": "children"
+ },
+ {
+ "id": 23097,
+ "start": 10922.22,
+ "end": 10922.58,
+ "text": "that's"
+ },
+ {
+ "id": 23098,
+ "start": 10922.58,
+ "end": 10922.84,
+ "text": "my"
+ },
+ {
+ "id": 23099,
+ "start": 10922.84,
+ "end": 10923.2,
+ "text": "question."
+ },
+ {
+ "id": 23100,
+ "start": 10923.2,
+ "end": 10923.46,
+ "text": "Do"
+ },
+ {
+ "id": 23101,
+ "start": 10923.46,
+ "end": 10923.66,
+ "text": "you"
+ },
+ {
+ "id": 23102,
+ "start": 10923.66,
+ "end": 10924,
+ "text": "believe"
+ },
+ {
+ "id": 23103,
+ "start": 10924,
+ "end": 10924.14,
+ "text": "we"
+ },
+ {
+ "id": 23104,
+ "start": 10924.14,
+ "end": 10924.32,
+ "text": "need"
+ },
+ {
+ "id": 23105,
+ "start": 10924.32,
+ "end": 10924.38,
+ "text": "a"
+ },
+ {
+ "id": 23106,
+ "start": 10924.38,
+ "end": 10924.66,
+ "text": "law"
+ },
+ {
+ "id": 23107,
+ "start": 10924.66,
+ "end": 10924.82,
+ "text": "to"
+ },
+ {
+ "id": 23108,
+ "start": 10924.82,
+ "end": 10925,
+ "text": "do"
+ },
+ {
+ "id": 23109,
+ "start": 10925,
+ "end": 10925.26,
+ "text": "so,"
+ },
+ {
+ "id": 23110,
+ "start": 10925.26,
+ "end": 10926,
+ "text": "yes"
+ },
+ {
+ "id": 23111,
+ "start": 10926,
+ "end": 10926.12,
+ "text": "or"
+ },
+ {
+ "id": 23112,
+ "start": 10926.12,
+ "end": 10926.74,
+ "text": "no?"
+ },
+ {
+ "id": 23113,
+ "start": 10926.74,
+ "end": 10927.5,
+ "text": "Senator"
+ },
+ {
+ "id": 23114,
+ "start": 10927.5,
+ "end": 10927.62,
+ "text": "I'm"
+ },
+ {
+ "id": 23115,
+ "start": 10927.62,
+ "end": 10927.74,
+ "text": "not"
+ },
+ {
+ "id": 23116,
+ "start": 10927.74,
+ "end": 10927.94,
+ "text": "sure"
+ },
+ {
+ "id": 23117,
+ "start": 10927.94,
+ "end": 10928.04,
+ "text": "if"
+ },
+ {
+ "id": 23118,
+ "start": 10928.04,
+ "end": 10928.18,
+ "text": "we"
+ },
+ {
+ "id": 23119,
+ "start": 10928.18,
+ "end": 10928.36,
+ "text": "need"
+ },
+ {
+ "id": 23120,
+ "start": 10928.36,
+ "end": 10928.44,
+ "text": "a"
+ },
+ {
+ "id": 23121,
+ "start": 10928.44,
+ "end": 10928.68,
+ "text": "law,"
+ },
+ {
+ "id": 23122,
+ "start": 10928.68,
+ "end": 10928.84,
+ "text": "but"
+ },
+ {
+ "id": 23123,
+ "start": 10928.84,
+ "end": 10928.9,
+ "text": "I"
+ },
+ {
+ "id": 23124,
+ "start": 10928.9,
+ "end": 10929.1,
+ "text": "think"
+ },
+ {
+ "id": 23125,
+ "start": 10929.1,
+ "end": 10929.32,
+ "text": "that"
+ },
+ {
+ "id": 23126,
+ "start": 10929.32,
+ "end": 10929.54,
+ "text": "this"
+ },
+ {
+ "id": 23127,
+ "start": 10929.54,
+ "end": 10930.1,
+ "text": "is"
+ },
+ {
+ "id": 23128,
+ "start": 10930.1,
+ "end": 10930.46,
+ "text": "certainly"
+ },
+ {
+ "id": 23129,
+ "start": 10930.46,
+ "end": 10930.54,
+ "text": "a"
+ },
+ {
+ "id": 23130,
+ "start": 10930.54,
+ "end": 10930.74,
+ "text": "thing"
+ },
+ {
+ "id": 23131,
+ "start": 10930.74,
+ "end": 10931.6,
+ "text": "that"
+ },
+ {
+ "id": 23132,
+ "start": 10931.6,
+ "end": 10932.58,
+ "text": "deserves"
+ },
+ {
+ "id": 23133,
+ "start": 10932.58,
+ "end": 10932.66,
+ "text": "a"
+ },
+ {
+ "id": 23134,
+ "start": 10932.66,
+ "end": 10932.82,
+ "text": "lot"
+ },
+ {
+ "id": 23135,
+ "start": 10932.82,
+ "end": 10932.9,
+ "text": "of"
+ },
+ {
+ "id": 23136,
+ "start": 10932.9,
+ "end": 10934.02,
+ "text": "discussion."
+ },
+ {
+ "id": 23137,
+ "start": 10934.02,
+ "end": 10934.3,
+ "text": "I"
+ },
+ {
+ "id": 23138,
+ "start": 10934.3,
+ "end": 10934.98,
+ "text": "couldn't"
+ },
+ {
+ "id": 23139,
+ "start": 10934.98,
+ "end": 10935.34,
+ "text": "disagree"
+ },
+ {
+ "id": 23140,
+ "start": 10935.34,
+ "end": 10935.52,
+ "text": "with"
+ },
+ {
+ "id": 23141,
+ "start": 10935.52,
+ "end": 10935.64,
+ "text": "you"
+ },
+ {
+ "id": 23142,
+ "start": 10935.64,
+ "end": 10935.88,
+ "text": "more"
+ },
+ {
+ "id": 23143,
+ "start": 10935.88,
+ "end": 10936.76,
+ "text": "we're"
+ },
+ {
+ "id": 23144,
+ "start": 10936.76,
+ "end": 10937.28,
+ "text": "leaving"
+ },
+ {
+ "id": 23145,
+ "start": 10937.28,
+ "end": 10938.2,
+ "text": "these"
+ },
+ {
+ "id": 23146,
+ "start": 10938.2,
+ "end": 10938.72,
+ "text": "children"
+ },
+ {
+ "id": 23147,
+ "start": 10938.72,
+ "end": 10939.76,
+ "text": "to"
+ },
+ {
+ "id": 23148,
+ "start": 10939.76,
+ "end": 10940.14,
+ "text": "the"
+ },
+ {
+ "id": 23149,
+ "start": 10940.14,
+ "end": 10940.42,
+ "text": "most"
+ },
+ {
+ "id": 23150,
+ "start": 10940.42,
+ "end": 10942.14,
+ "text": "rapacious"
+ },
+ {
+ "id": 23151,
+ "start": 10942.14,
+ "end": 10943.18,
+ "text": "commercial"
+ },
+ {
+ "id": 23152,
+ "start": 10943.18,
+ "end": 10943.74,
+ "text": "predators"
+ },
+ {
+ "id": 23153,
+ "start": 10943.74,
+ "end": 10943.98,
+ "text": "in"
+ },
+ {
+ "id": 23154,
+ "start": 10943.98,
+ "end": 10944.1,
+ "text": "the"
+ },
+ {
+ "id": 23155,
+ "start": 10944.1,
+ "end": 10944.52,
+ "text": "country"
+ },
+ {
+ "id": 23156,
+ "start": 10944.52,
+ "end": 10944.96,
+ "text": "who"
+ },
+ {
+ "id": 23157,
+ "start": 10944.96,
+ "end": 10945.12,
+ "text": "will"
+ },
+ {
+ "id": 23158,
+ "start": 10945.12,
+ "end": 10945.52,
+ "text": "exploit"
+ },
+ {
+ "id": 23159,
+ "start": 10945.52,
+ "end": 10945.8,
+ "text": "these"
+ },
+ {
+ "id": 23160,
+ "start": 10945.8,
+ "end": 10946.14,
+ "text": "children"
+ },
+ {
+ "id": 23161,
+ "start": 10946.14,
+ "end": 10946.48,
+ "text": "unless"
+ },
+ {
+ "id": 23162,
+ "start": 10946.48,
+ "end": 10946.76,
+ "text": "we"
+ },
+ {
+ "id": 23163,
+ "start": 10946.76,
+ "end": 10947.5,
+ "text": "absolutely"
+ },
+ {
+ "id": 23164,
+ "start": 10947.5,
+ "end": 10947.68,
+ "text": "have"
+ },
+ {
+ "id": 23165,
+ "start": 10947.68,
+ "end": 10947.74,
+ "text": "a"
+ },
+ {
+ "id": 23166,
+ "start": 10947.74,
+ "end": 10948.08,
+ "text": "law"
+ },
+ {
+ "id": 23167,
+ "start": 10948.08,
+ "end": 10948.36,
+ "text": "on"
+ },
+ {
+ "id": 23168,
+ "start": 10948.36,
+ "end": 10948.48,
+ "text": "the"
+ },
+ {
+ "id": 23169,
+ "start": 10948.48,
+ "end": 10949.56,
+ "text": "books."
+ },
+ {
+ "id": 23170,
+ "start": 10949.56,
+ "end": 10950.68,
+ "text": "I"
+ },
+ {
+ "id": 23171,
+ "start": 10950.68,
+ "end": 10951.78,
+ "text": "absolutely"
+ },
+ {
+ "id": 23172,
+ "start": 10951.78,
+ "end": 10952.18,
+ "text": "get"
+ },
+ {
+ "id": 23173,
+ "start": 10952.18,
+ "end": 10952.66,
+ "text": "sure"
+ },
+ {
+ "id": 23174,
+ "start": 10952.66,
+ "end": 10952.92,
+ "text": "please"
+ },
+ {
+ "id": 23175,
+ "start": 10952.92,
+ "end": 10953.14,
+ "text": "go"
+ },
+ {
+ "id": 23176,
+ "start": 10953.14,
+ "end": 10953.4,
+ "text": "short"
+ },
+ {
+ "id": 23177,
+ "start": 10953.4,
+ "end": 10954.8,
+ "text": "answer"
+ },
+ {
+ "id": 23178,
+ "start": 10954.8,
+ "end": 10956.08,
+ "text": "and"
+ },
+ {
+ "id": 23179,
+ "start": 10956.08,
+ "end": 10956.18,
+ "text": "I"
+ },
+ {
+ "id": 23180,
+ "start": 10956.18,
+ "end": 10956.38,
+ "text": "look"
+ },
+ {
+ "id": 23181,
+ "start": 10956.38,
+ "end": 10956.6,
+ "text": "forward"
+ },
+ {
+ "id": 23182,
+ "start": 10956.6,
+ "end": 10956.68,
+ "text": "to"
+ },
+ {
+ "id": 23183,
+ "start": 10956.68,
+ "end": 10956.98,
+ "text": "having"
+ },
+ {
+ "id": 23184,
+ "start": 10956.98,
+ "end": 10957.16,
+ "text": "my"
+ },
+ {
+ "id": 23185,
+ "start": 10957.16,
+ "end": 10957.44,
+ "text": "team"
+ },
+ {
+ "id": 23186,
+ "start": 10957.44,
+ "end": 10957.72,
+ "text": "follow"
+ },
+ {
+ "id": 23187,
+ "start": 10957.72,
+ "end": 10957.88,
+ "text": "up"
+ },
+ {
+ "id": 23188,
+ "start": 10957.88,
+ "end": 10957.98,
+ "text": "to"
+ },
+ {
+ "id": 23189,
+ "start": 10957.98,
+ "end": 10958.22,
+ "text": "flesh"
+ },
+ {
+ "id": 23190,
+ "start": 10958.22,
+ "end": 10958.34,
+ "text": "out"
+ },
+ {
+ "id": 23191,
+ "start": 10958.34,
+ "end": 10958.46,
+ "text": "the"
+ },
+ {
+ "id": 23192,
+ "start": 10958.46,
+ "end": 10958.76,
+ "text": "details"
+ },
+ {
+ "id": 23193,
+ "start": 10958.76,
+ "end": 10958.88,
+ "text": "of"
+ },
+ {
+ "id": 23194,
+ "start": 10958.88,
+ "end": 10959,
+ "text": "it."
+ },
+ {
+ "id": 23195,
+ "start": 10959,
+ "end": 10959.18,
+ "text": "I"
+ },
+ {
+ "id": 23196,
+ "start": 10959.18,
+ "end": 10959.34,
+ "text": "don't"
+ },
+ {
+ "id": 23197,
+ "start": 10959.34,
+ "end": 10959.5,
+ "text": "think"
+ },
+ {
+ "id": 23198,
+ "start": 10959.5,
+ "end": 10959.64,
+ "text": "this"
+ },
+ {
+ "id": 23199,
+ "start": 10959.64,
+ "end": 10959.74,
+ "text": "is"
+ },
+ {
+ "id": 23200,
+ "start": 10959.74,
+ "end": 10960.88,
+ "text": "like"
+ },
+ {
+ "id": 23201,
+ "start": 10960.88,
+ "end": 10961.78,
+ "text": "to"
+ },
+ {
+ "id": 23202,
+ "start": 10961.78,
+ "end": 10961.92,
+ "text": "get"
+ },
+ {
+ "id": 23203,
+ "start": 10961.92,
+ "end": 10962,
+ "text": "a"
+ },
+ {
+ "id": 23204,
+ "start": 10962,
+ "end": 10962.86,
+ "text": "correcting."
+ },
+ {
+ "id": 23205,
+ "start": 10962.86,
+ "end": 10963.14,
+ "text": "So"
+ },
+ {
+ "id": 23206,
+ "start": 10963.14,
+ "end": 10963.3,
+ "text": "thank"
+ },
+ {
+ "id": 23207,
+ "start": 10963.3,
+ "end": 10963.4,
+ "text": "you,"
+ },
+ {
+ "id": 23208,
+ "start": 10963.4,
+ "end": 10963.64,
+ "text": "Mr"
+ },
+ {
+ "id": 23209,
+ "start": 10963.64,
+ "end": 10964.76,
+ "text": "Chairman."
+ },
+ {
+ "id": 23210,
+ "start": 10964.76,
+ "end": 10965.76,
+ "text": "Thank"
+ },
+ {
+ "id": 23211,
+ "start": 10965.76,
+ "end": 10965.86,
+ "text": "you,"
+ },
+ {
+ "id": 23212,
+ "start": 10965.86,
+ "end": 10966.08,
+ "text": "Mr"
+ },
+ {
+ "id": 23213,
+ "start": 10966.08,
+ "end": 10966.54,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 23214,
+ "start": 10966.54,
+ "end": 10966.76,
+ "text": "Thanks"
+ },
+ {
+ "id": 23215,
+ "start": 10966.76,
+ "end": 10966.94,
+ "text": "for"
+ },
+ {
+ "id": 23216,
+ "start": 10966.94,
+ "end": 10967.32,
+ "text": "enjoying"
+ },
+ {
+ "id": 23217,
+ "start": 10967.32,
+ "end": 10968.16,
+ "text": "so"
+ },
+ {
+ "id": 23218,
+ "start": 10968.16,
+ "end": 10968.4,
+ "text": "far."
+ },
+ {
+ "id": 23219,
+ "start": 10968.4,
+ "end": 10968.82,
+ "text": "And"
+ },
+ {
+ "id": 23220,
+ "start": 10968.82,
+ "end": 10969.22,
+ "text": "I'm"
+ },
+ {
+ "id": 23221,
+ "start": 10969.22,
+ "end": 10969.46,
+ "text": "sorry,"
+ },
+ {
+ "id": 23222,
+ "start": 10969.46,
+ "end": 10969.52,
+ "text": "if"
+ },
+ {
+ "id": 23223,
+ "start": 10969.52,
+ "end": 10969.72,
+ "text": "I"
+ },
+ {
+ "id": 23224,
+ "start": 10969.72,
+ "end": 10970.16,
+ "text": "plow"
+ },
+ {
+ "id": 23225,
+ "start": 10970.16,
+ "end": 10970.38,
+ "text": "old"
+ },
+ {
+ "id": 23226,
+ "start": 10970.38,
+ "end": 10970.7,
+ "text": "ground,"
+ },
+ {
+ "id": 23227,
+ "start": 10970.7,
+ "end": 10971.08,
+ "text": "I"
+ },
+ {
+ "id": 23228,
+ "start": 10971.08,
+ "end": 10971.26,
+ "text": "had"
+ },
+ {
+ "id": 23229,
+ "start": 10971.26,
+ "end": 10971.48,
+ "text": "to"
+ },
+ {
+ "id": 23230,
+ "start": 10971.48,
+ "end": 10971.64,
+ "text": "be"
+ },
+ {
+ "id": 23231,
+ "start": 10971.64,
+ "end": 10971.86,
+ "text": "away"
+ },
+ {
+ "id": 23232,
+ "start": 10971.86,
+ "end": 10972.02,
+ "text": "for"
+ },
+ {
+ "id": 23233,
+ "start": 10972.02,
+ "end": 10972.08,
+ "text": "a"
+ },
+ {
+ "id": 23234,
+ "start": 10972.08,
+ "end": 10973.82,
+ "text": "bit"
+ },
+ {
+ "id": 23235,
+ "start": 10973.82,
+ "end": 10974.8,
+ "text": "myself"
+ },
+ {
+ "id": 23236,
+ "start": 10974.8,
+ "end": 10975,
+ "text": "and"
+ },
+ {
+ "id": 23237,
+ "start": 10975,
+ "end": 10975.68,
+ "text": "center"
+ },
+ {
+ "id": 23238,
+ "start": 10975.68,
+ "end": 10976.02,
+ "text": "Coon"
+ },
+ {
+ "id": 23239,
+ "start": 10976.02,
+ "end": 10976.3,
+ "text": "center,"
+ },
+ {
+ "id": 23240,
+ "start": 10976.3,
+ "end": 10976.64,
+ "text": "Peters"
+ },
+ {
+ "id": 23241,
+ "start": 10976.64,
+ "end": 10976.76,
+ "text": "and"
+ },
+ {
+ "id": 23242,
+ "start": 10976.76,
+ "end": 10976.82,
+ "text": "a"
+ },
+ {
+ "id": 23243,
+ "start": 10976.82,
+ "end": 10976.96,
+ "text": "few"
+ },
+ {
+ "id": 23244,
+ "start": 10976.96,
+ "end": 10977.26,
+ "text": "others"
+ },
+ {
+ "id": 23245,
+ "start": 10977.26,
+ "end": 10977.46,
+ "text": "were"
+ },
+ {
+ "id": 23246,
+ "start": 10977.46,
+ "end": 10977.64,
+ "text": "in"
+ },
+ {
+ "id": 23247,
+ "start": 10977.64,
+ "end": 10978.48,
+ "text": "country"
+ },
+ {
+ "id": 23248,
+ "start": 10978.48,
+ "end": 10979.08,
+ "text": "Zimbabwe."
+ },
+ {
+ "id": 23249,
+ "start": 10979.08,
+ "end": 10979.54,
+ "text": "Just"
+ },
+ {
+ "id": 23250,
+ "start": 10979.54,
+ "end": 10979.64,
+ "text": "a"
+ },
+ {
+ "id": 23251,
+ "start": 10979.64,
+ "end": 10979.78,
+ "text": "few"
+ },
+ {
+ "id": 23252,
+ "start": 10979.78,
+ "end": 10979.96,
+ "text": "days"
+ },
+ {
+ "id": 23253,
+ "start": 10979.96,
+ "end": 10980.78,
+ "text": "ago"
+ },
+ {
+ "id": 23254,
+ "start": 10980.78,
+ "end": 10981.4,
+ "text": "we"
+ },
+ {
+ "id": 23255,
+ "start": 10981.4,
+ "end": 10981.68,
+ "text": "met"
+ },
+ {
+ "id": 23256,
+ "start": 10981.68,
+ "end": 10981.86,
+ "text": "with"
+ },
+ {
+ "id": 23257,
+ "start": 10981.86,
+ "end": 10982.44,
+ "text": "opposition"
+ },
+ {
+ "id": 23258,
+ "start": 10982.44,
+ "end": 10983.26,
+ "text": "figures"
+ },
+ {
+ "id": 23259,
+ "start": 10983.26,
+ "end": 10984.6,
+ "text": "who"
+ },
+ {
+ "id": 23260,
+ "start": 10984.6,
+ "end": 10985.58,
+ "text": "talked"
+ },
+ {
+ "id": 23261,
+ "start": 10985.58,
+ "end": 10985.82,
+ "text": "about,"
+ },
+ {
+ "id": 23262,
+ "start": 10985.82,
+ "end": 10985.98,
+ "text": "you"
+ },
+ {
+ "id": 23263,
+ "start": 10985.98,
+ "end": 10986.12,
+ "text": "know,"
+ },
+ {
+ "id": 23264,
+ "start": 10986.12,
+ "end": 10986.32,
+ "text": "their"
+ },
+ {
+ "id": 23265,
+ "start": 10986.32,
+ "end": 10986.54,
+ "text": "goal"
+ },
+ {
+ "id": 23266,
+ "start": 10986.54,
+ "end": 10986.78,
+ "text": "is"
+ },
+ {
+ "id": 23267,
+ "start": 10986.78,
+ "end": 10987.16,
+ "text": "to"
+ },
+ {
+ "id": 23268,
+ "start": 10987.16,
+ "end": 10987.32,
+ "text": "be"
+ },
+ {
+ "id": 23269,
+ "start": 10987.32,
+ "end": 10987.52,
+ "text": "able"
+ },
+ {
+ "id": 23270,
+ "start": 10987.52,
+ "end": 10987.62,
+ "text": "to"
+ },
+ {
+ "id": 23271,
+ "start": 10987.62,
+ "end": 10987.8,
+ "text": "have"
+ },
+ {
+ "id": 23272,
+ "start": 10987.8,
+ "end": 10988.26,
+ "text": "access"
+ },
+ {
+ "id": 23273,
+ "start": 10988.26,
+ "end": 10988.84,
+ "text": "to"
+ },
+ {
+ "id": 23274,
+ "start": 10988.84,
+ "end": 10989.12,
+ "text": "state"
+ },
+ {
+ "id": 23275,
+ "start": 10989.12,
+ "end": 10989.32,
+ "text": "run"
+ },
+ {
+ "id": 23276,
+ "start": 10989.32,
+ "end": 10989.66,
+ "text": "media"
+ },
+ {
+ "id": 23277,
+ "start": 10989.66,
+ "end": 10990.02,
+ "text": "in"
+ },
+ {
+ "id": 23278,
+ "start": 10990.02,
+ "end": 10990.26,
+ "text": "many"
+ },
+ {
+ "id": 23279,
+ "start": 10990.26,
+ "end": 10990.68,
+ "text": "African"
+ },
+ {
+ "id": 23280,
+ "start": 10990.68,
+ "end": 10991.06,
+ "text": "countries."
+ },
+ {
+ "id": 23281,
+ "start": 10991.06,
+ "end": 10991.76,
+ "text": "Many"
+ },
+ {
+ "id": 23282,
+ "start": 10991.76,
+ "end": 10992.08,
+ "text": "countries"
+ },
+ {
+ "id": 23283,
+ "start": 10992.08,
+ "end": 10992.32,
+ "text": "around"
+ },
+ {
+ "id": 23284,
+ "start": 10992.32,
+ "end": 10992.44,
+ "text": "the"
+ },
+ {
+ "id": 23285,
+ "start": 10992.44,
+ "end": 10992.7,
+ "text": "world."
+ },
+ {
+ "id": 23286,
+ "start": 10992.7,
+ "end": 10993,
+ "text": "The"
+ },
+ {
+ "id": 23287,
+ "start": 10993,
+ "end": 10993.24,
+ "text": "world"
+ },
+ {
+ "id": 23288,
+ "start": 10993.24,
+ "end": 10993.68,
+ "text": "countries"
+ },
+ {
+ "id": 23289,
+ "start": 10993.68,
+ "end": 10994.14,
+ "text": "small"
+ },
+ {
+ "id": 23290,
+ "start": 10994.14,
+ "end": 10994.6,
+ "text": "countries."
+ },
+ {
+ "id": 23291,
+ "start": 10994.6,
+ "end": 10995.3,
+ "text": "The"
+ },
+ {
+ "id": 23292,
+ "start": 10995.3,
+ "end": 10995.84,
+ "text": "only"
+ },
+ {
+ "id": 23293,
+ "start": 10995.84,
+ "end": 10996.84,
+ "text": "traditional"
+ },
+ {
+ "id": 23294,
+ "start": 10996.84,
+ "end": 10997.18,
+ "text": "media"
+ },
+ {
+ "id": 23295,
+ "start": 10997.18,
+ "end": 10997.36,
+ "text": "is"
+ },
+ {
+ "id": 23296,
+ "start": 10997.36,
+ "end": 10997.66,
+ "text": "state"
+ },
+ {
+ "id": 23297,
+ "start": 10997.66,
+ "end": 10997.96,
+ "text": "run"
+ },
+ {
+ "id": 23298,
+ "start": 10997.96,
+ "end": 10999.14,
+ "text": "and"
+ },
+ {
+ "id": 23299,
+ "start": 10999.14,
+ "end": 10999.73,
+ "text": "we"
+ },
+ {
+ "id": 23300,
+ "start": 10999.73,
+ "end": 10999.89,
+ "text": "ask"
+ },
+ {
+ "id": 23301,
+ "start": 10999.89,
+ "end": 11000.05,
+ "text": "them"
+ },
+ {
+ "id": 23302,
+ "start": 11000.05,
+ "end": 11000.19,
+ "text": "how"
+ },
+ {
+ "id": 23303,
+ "start": 11000.19,
+ "end": 11000.35,
+ "text": "they"
+ },
+ {
+ "id": 23304,
+ "start": 11000.35,
+ "end": 11000.47,
+ "text": "get"
+ },
+ {
+ "id": 23305,
+ "start": 11000.47,
+ "end": 11000.67,
+ "text": "their"
+ },
+ {
+ "id": 23306,
+ "start": 11000.67,
+ "end": 11001.01,
+ "text": "message"
+ },
+ {
+ "id": 23307,
+ "start": 11001.01,
+ "end": 11001.25,
+ "text": "out."
+ },
+ {
+ "id": 23308,
+ "start": 11001.25,
+ "end": 11001.45,
+ "text": "And"
+ },
+ {
+ "id": 23309,
+ "start": 11001.45,
+ "end": 11001.65,
+ "text": "it's"
+ },
+ {
+ "id": 23310,
+ "start": 11001.65,
+ "end": 11001.87,
+ "text": "through"
+ },
+ {
+ "id": 23311,
+ "start": 11001.87,
+ "end": 11002.23,
+ "text": "social"
+ },
+ {
+ "id": 23312,
+ "start": 11002.23,
+ "end": 11003.25,
+ "text": "media"
+ },
+ {
+ "id": 23313,
+ "start": 11003.25,
+ "end": 11004.23,
+ "text": "Facebook"
+ },
+ {
+ "id": 23314,
+ "start": 11004.23,
+ "end": 11004.93,
+ "text": "provides"
+ },
+ {
+ "id": 23315,
+ "start": 11004.93,
+ "end": 11005.59,
+ "text": "a"
+ },
+ {
+ "id": 23316,
+ "start": 11005.59,
+ "end": 11005.87,
+ "text": "very"
+ },
+ {
+ "id": 23317,
+ "start": 11005.87,
+ "end": 11006.49,
+ "text": "valuable"
+ },
+ {
+ "id": 23318,
+ "start": 11006.49,
+ "end": 11006.97,
+ "text": "service"
+ },
+ {
+ "id": 23319,
+ "start": 11006.97,
+ "end": 11008.11,
+ "text": "in"
+ },
+ {
+ "id": 23320,
+ "start": 11008.11,
+ "end": 11008.39,
+ "text": "many"
+ },
+ {
+ "id": 23321,
+ "start": 11008.39,
+ "end": 11008.93,
+ "text": "countries"
+ },
+ {
+ "id": 23322,
+ "start": 11008.93,
+ "end": 11009.81,
+ "text": "for"
+ },
+ {
+ "id": 23323,
+ "start": 11009.81,
+ "end": 11010.49,
+ "text": "opposition"
+ },
+ {
+ "id": 23324,
+ "start": 11010.49,
+ "end": 11010.89,
+ "text": "leaders"
+ },
+ {
+ "id": 23325,
+ "start": 11010.89,
+ "end": 11011.11,
+ "text": "or"
+ },
+ {
+ "id": 23326,
+ "start": 11011.11,
+ "end": 11011.51,
+ "text": "others"
+ },
+ {
+ "id": 23327,
+ "start": 11011.51,
+ "end": 11011.81,
+ "text": "who"
+ },
+ {
+ "id": 23328,
+ "start": 11011.81,
+ "end": 11012.29,
+ "text": "simply"
+ },
+ {
+ "id": 23329,
+ "start": 11012.29,
+ "end": 11012.57,
+ "text": "don't"
+ },
+ {
+ "id": 23330,
+ "start": 11012.57,
+ "end": 11012.79,
+ "text": "have"
+ },
+ {
+ "id": 23331,
+ "start": 11012.79,
+ "end": 11013.33,
+ "text": "access"
+ },
+ {
+ "id": 23332,
+ "start": 11013.33,
+ "end": 11014.17,
+ "text": "unless"
+ },
+ {
+ "id": 23333,
+ "start": 11014.17,
+ "end": 11014.59,
+ "text": "maybe"
+ },
+ {
+ "id": 23334,
+ "start": 11014.59,
+ "end": 11014.85,
+ "text": "just"
+ },
+ {
+ "id": 23335,
+ "start": 11014.85,
+ "end": 11015.19,
+ "text": "before"
+ },
+ {
+ "id": 23336,
+ "start": 11015.19,
+ "end": 11015.29,
+ "text": "an"
+ },
+ {
+ "id": 23337,
+ "start": 11015.29,
+ "end": 11015.75,
+ "text": "election"
+ },
+ {
+ "id": 23338,
+ "start": 11015.75,
+ "end": 11016.81,
+ "text": "to"
+ },
+ {
+ "id": 23339,
+ "start": 11016.81,
+ "end": 11017.49,
+ "text": "traditional"
+ },
+ {
+ "id": 23340,
+ "start": 11017.49,
+ "end": 11018.68,
+ "text": "media."
+ },
+ {
+ "id": 23341,
+ "start": 11018.68,
+ "end": 11019.54,
+ "text": "So"
+ },
+ {
+ "id": 23342,
+ "start": 11019.54,
+ "end": 11020.56,
+ "text": "that's"
+ },
+ {
+ "id": 23343,
+ "start": 11020.56,
+ "end": 11020.82,
+ "text": "very"
+ },
+ {
+ "id": 23344,
+ "start": 11020.82,
+ "end": 11021.26,
+ "text": "valuable"
+ },
+ {
+ "id": 23345,
+ "start": 11021.26,
+ "end": 11021.44,
+ "text": "and"
+ },
+ {
+ "id": 23346,
+ "start": 11021.44,
+ "end": 11021.5,
+ "text": "I"
+ },
+ {
+ "id": 23347,
+ "start": 11021.5,
+ "end": 11021.7,
+ "text": "think"
+ },
+ {
+ "id": 23348,
+ "start": 11021.7,
+ "end": 11021.94,
+ "text": "we"
+ },
+ {
+ "id": 23349,
+ "start": 11021.94,
+ "end": 11022.12,
+ "text": "all"
+ },
+ {
+ "id": 23350,
+ "start": 11022.12,
+ "end": 11022.64,
+ "text": "recognize"
+ },
+ {
+ "id": 23351,
+ "start": 11022.64,
+ "end": 11022.9,
+ "text": "that"
+ },
+ {
+ "id": 23352,
+ "start": 11022.9,
+ "end": 11023.76,
+ "text": "on"
+ },
+ {
+ "id": 23353,
+ "start": 11023.76,
+ "end": 11023.88,
+ "text": "the"
+ },
+ {
+ "id": 23354,
+ "start": 11023.88,
+ "end": 11024.04,
+ "text": "flip"
+ },
+ {
+ "id": 23355,
+ "start": 11024.04,
+ "end": 11024.4,
+ "text": "side"
+ },
+ {
+ "id": 23356,
+ "start": 11024.4,
+ "end": 11025.1,
+ "text": "we've"
+ },
+ {
+ "id": 23357,
+ "start": 11025.1,
+ "end": 11025.36,
+ "text": "seen"
+ },
+ {
+ "id": 23358,
+ "start": 11025.36,
+ "end": 11025.84,
+ "text": "with"
+ },
+ {
+ "id": 23359,
+ "start": 11025.84,
+ "end": 11027.14,
+ "text": "thing"
+ },
+ {
+ "id": 23360,
+ "start": 11027.14,
+ "end": 11027.34,
+ "text": "that"
+ },
+ {
+ "id": 23361,
+ "start": 11027.34,
+ "end": 11027.84,
+ "text": "example"
+ },
+ {
+ "id": 23362,
+ "start": 11027.84,
+ "end": 11028.46,
+ "text": "of"
+ },
+ {
+ "id": 23363,
+ "start": 11028.46,
+ "end": 11029.18,
+ "text": "where"
+ },
+ {
+ "id": 23364,
+ "start": 11029.18,
+ "end": 11029.62,
+ "text": "the"
+ },
+ {
+ "id": 23365,
+ "start": 11029.62,
+ "end": 11029.98,
+ "text": "state"
+ },
+ {
+ "id": 23366,
+ "start": 11029.98,
+ "end": 11030.2,
+ "text": "can"
+ },
+ {
+ "id": 23367,
+ "start": 11030.2,
+ "end": 11030.48,
+ "text": "use"
+ },
+ {
+ "id": 23368,
+ "start": 11030.48,
+ "end": 11031.1,
+ "text": "similar"
+ },
+ {
+ "id": 23369,
+ "start": 11031.1,
+ "end": 11031.46,
+ "text": "data"
+ },
+ {
+ "id": 23370,
+ "start": 11031.46,
+ "end": 11031.72,
+ "text": "or"
+ },
+ {
+ "id": 23371,
+ "start": 11031.72,
+ "end": 11032.02,
+ "text": "use"
+ },
+ {
+ "id": 23372,
+ "start": 11032.02,
+ "end": 11032.62,
+ "text": "this"
+ },
+ {
+ "id": 23373,
+ "start": 11032.62,
+ "end": 11033.34,
+ "text": "platform"
+ },
+ {
+ "id": 23374,
+ "start": 11033.34,
+ "end": 11034.02,
+ "text": "has"
+ },
+ {
+ "id": 23375,
+ "start": 11034.02,
+ "end": 11034.12,
+ "text": "to"
+ },
+ {
+ "id": 23376,
+ "start": 11034.12,
+ "end": 11034.26,
+ "text": "go"
+ },
+ {
+ "id": 23377,
+ "start": 11034.26,
+ "end": 11034.6,
+ "text": "after"
+ },
+ {
+ "id": 23378,
+ "start": 11034.6,
+ "end": 11034.88,
+ "text": "people."
+ },
+ {
+ "id": 23379,
+ "start": 11034.88,
+ "end": 11035.1,
+ "text": "You"
+ },
+ {
+ "id": 23380,
+ "start": 11035.1,
+ "end": 11035.4,
+ "text": "talked"
+ },
+ {
+ "id": 23381,
+ "start": 11035.4,
+ "end": 11035.76,
+ "text": "about"
+ },
+ {
+ "id": 23382,
+ "start": 11035.76,
+ "end": 11036.22,
+ "text": "what"
+ },
+ {
+ "id": 23383,
+ "start": 11036.22,
+ "end": 11036.44,
+ "text": "you're"
+ },
+ {
+ "id": 23384,
+ "start": 11036.44,
+ "end": 11036.64,
+ "text": "doing"
+ },
+ {
+ "id": 23385,
+ "start": 11036.64,
+ "end": 11036.76,
+ "text": "in"
+ },
+ {
+ "id": 23386,
+ "start": 11036.76,
+ "end": 11036.96,
+ "text": "that"
+ },
+ {
+ "id": 23387,
+ "start": 11036.96,
+ "end": 11037.34,
+ "text": "regard,"
+ },
+ {
+ "id": 23388,
+ "start": 11037.34,
+ "end": 11037.74,
+ "text": "hiring,"
+ },
+ {
+ "id": 23389,
+ "start": 11037.74,
+ "end": 11040,
+ "text": "more"
+ },
+ {
+ "id": 23390,
+ "start": 11040,
+ "end": 11040.98,
+ "text": "traditional"
+ },
+ {
+ "id": 23391,
+ "start": 11040.98,
+ "end": 11042.1,
+ "text": "local"
+ },
+ {
+ "id": 23392,
+ "start": 11042.1,
+ "end": 11042.48,
+ "text": "language"
+ },
+ {
+ "id": 23393,
+ "start": 11042.48,
+ "end": 11042.98,
+ "text": "speakers."
+ },
+ {
+ "id": 23394,
+ "start": 11042.98,
+ "end": 11043.26,
+ "text": "What"
+ },
+ {
+ "id": 23395,
+ "start": 11043.26,
+ "end": 11043.46,
+ "text": "else"
+ },
+ {
+ "id": 23396,
+ "start": 11043.46,
+ "end": 11043.64,
+ "text": "are"
+ },
+ {
+ "id": 23397,
+ "start": 11043.64,
+ "end": 11043.78,
+ "text": "you"
+ },
+ {
+ "id": 23398,
+ "start": 11043.78,
+ "end": 11044,
+ "text": "doing"
+ },
+ {
+ "id": 23399,
+ "start": 11044,
+ "end": 11044.1,
+ "text": "in"
+ },
+ {
+ "id": 23400,
+ "start": 11044.1,
+ "end": 11044.28,
+ "text": "that"
+ },
+ {
+ "id": 23401,
+ "start": 11044.28,
+ "end": 11044.74,
+ "text": "regard"
+ },
+ {
+ "id": 23402,
+ "start": 11044.74,
+ "end": 11044.92,
+ "text": "to"
+ },
+ {
+ "id": 23403,
+ "start": 11044.92,
+ "end": 11045.34,
+ "text": "ensure"
+ },
+ {
+ "id": 23404,
+ "start": 11045.34,
+ "end": 11046.26,
+ "text": "that"
+ },
+ {
+ "id": 23405,
+ "start": 11046.26,
+ "end": 11047.16,
+ "text": "these"
+ },
+ {
+ "id": 23406,
+ "start": 11047.16,
+ "end": 11047.56,
+ "text": "states"
+ },
+ {
+ "id": 23407,
+ "start": 11047.56,
+ "end": 11047.92,
+ "text": "don't"
+ },
+ {
+ "id": 23408,
+ "start": 11047.92,
+ "end": 11048.68,
+ "text": "these"
+ },
+ {
+ "id": 23409,
+ "start": 11048.68,
+ "end": 11049.42,
+ "text": "governments"
+ },
+ {
+ "id": 23410,
+ "start": 11049.42,
+ "end": 11049.9,
+ "text": "go"
+ },
+ {
+ "id": 23411,
+ "start": 11049.9,
+ "end": 11050.52,
+ "text": "after"
+ },
+ {
+ "id": 23412,
+ "start": 11050.52,
+ "end": 11051.52,
+ "text": "opposition"
+ },
+ {
+ "id": 23413,
+ "start": 11051.52,
+ "end": 11051.84,
+ "text": "figures"
+ },
+ {
+ "id": 23414,
+ "start": 11051.84,
+ "end": 11052,
+ "text": "or"
+ },
+ {
+ "id": 23415,
+ "start": 11052,
+ "end": 11052.66,
+ "text": "others."
+ },
+ {
+ "id": 23416,
+ "start": 11052.66,
+ "end": 11053.64,
+ "text": "Senator,"
+ },
+ {
+ "id": 23417,
+ "start": 11053.64,
+ "end": 11053.8,
+ "text": "there"
+ },
+ {
+ "id": 23418,
+ "start": 11053.8,
+ "end": 11053.9,
+ "text": "are"
+ },
+ {
+ "id": 23419,
+ "start": 11053.9,
+ "end": 11054.22,
+ "text": "three"
+ },
+ {
+ "id": 23420,
+ "start": 11054.22,
+ "end": 11054.5,
+ "text": "main"
+ },
+ {
+ "id": 23421,
+ "start": 11054.5,
+ "end": 11054.82,
+ "text": "things"
+ },
+ {
+ "id": 23422,
+ "start": 11054.82,
+ "end": 11055,
+ "text": "that"
+ },
+ {
+ "id": 23423,
+ "start": 11055,
+ "end": 11055.2,
+ "text": "we're"
+ },
+ {
+ "id": 23424,
+ "start": 11055.2,
+ "end": 11055.54,
+ "text": "doing"
+ },
+ {
+ "id": 23425,
+ "start": 11055.54,
+ "end": 11056.12,
+ "text": "in"
+ },
+ {
+ "id": 23426,
+ "start": 11056.12,
+ "end": 11056.66,
+ "text": "Myanmar"
+ },
+ {
+ "id": 23427,
+ "start": 11056.66,
+ "end": 11057.18,
+ "text": "specifically,"
+ },
+ {
+ "id": 23428,
+ "start": 11057.18,
+ "end": 11057.28,
+ "text": "and"
+ },
+ {
+ "id": 23429,
+ "start": 11057.28,
+ "end": 11057.38,
+ "text": "that"
+ },
+ {
+ "id": 23430,
+ "start": 11057.38,
+ "end": 11057.56,
+ "text": "will"
+ },
+ {
+ "id": 23431,
+ "start": 11057.56,
+ "end": 11057.88,
+ "text": "apply"
+ },
+ {
+ "id": 23432,
+ "start": 11057.88,
+ "end": 11058.32,
+ "text": "to"
+ },
+ {
+ "id": 23433,
+ "start": 11058.32,
+ "end": 11058.64,
+ "text": "other"
+ },
+ {
+ "id": 23434,
+ "start": 11058.64,
+ "end": 11059.28,
+ "text": "situations"
+ },
+ {
+ "id": 23435,
+ "start": 11059.28,
+ "end": 11059.48,
+ "text": "like"
+ },
+ {
+ "id": 23436,
+ "start": 11059.48,
+ "end": 11059.7,
+ "text": "that,"
+ },
+ {
+ "id": 23437,
+ "start": 11059.7,
+ "end": 11060.22,
+ "text": "the"
+ },
+ {
+ "id": 23438,
+ "start": 11060.22,
+ "end": 11060.54,
+ "text": "first"
+ },
+ {
+ "id": 23439,
+ "start": 11060.54,
+ "end": 11060.9,
+ "text": "is"
+ },
+ {
+ "id": 23440,
+ "start": 11060.9,
+ "end": 11062.5,
+ "text": "hiring"
+ },
+ {
+ "id": 23441,
+ "start": 11062.5,
+ "end": 11063.4,
+ "text": "enough"
+ },
+ {
+ "id": 23442,
+ "start": 11063.4,
+ "end": 11063.7,
+ "text": "people"
+ },
+ {
+ "id": 23443,
+ "start": 11063.7,
+ "end": 11063.86,
+ "text": "to"
+ },
+ {
+ "id": 23444,
+ "start": 11063.86,
+ "end": 11063.98,
+ "text": "do"
+ },
+ {
+ "id": 23445,
+ "start": 11063.98,
+ "end": 11064.3,
+ "text": "local"
+ },
+ {
+ "id": 23446,
+ "start": 11064.3,
+ "end": 11064.68,
+ "text": "language"
+ },
+ {
+ "id": 23447,
+ "start": 11064.68,
+ "end": 11065.08,
+ "text": "support"
+ },
+ {
+ "id": 23448,
+ "start": 11065.08,
+ "end": 11065.62,
+ "text": "because"
+ },
+ {
+ "id": 23449,
+ "start": 11065.62,
+ "end": 11066.12,
+ "text": "the"
+ },
+ {
+ "id": 23450,
+ "start": 11066.12,
+ "end": 11066.64,
+ "text": "definition"
+ },
+ {
+ "id": 23451,
+ "start": 11066.64,
+ "end": 11066.8,
+ "text": "of"
+ },
+ {
+ "id": 23452,
+ "start": 11066.8,
+ "end": 11067.02,
+ "text": "hate"
+ },
+ {
+ "id": 23453,
+ "start": 11067.02,
+ "end": 11067.4,
+ "text": "speech"
+ },
+ {
+ "id": 23454,
+ "start": 11067.4,
+ "end": 11067.6,
+ "text": "or"
+ },
+ {
+ "id": 23455,
+ "start": 11067.6,
+ "end": 11067.88,
+ "text": "things"
+ },
+ {
+ "id": 23456,
+ "start": 11067.88,
+ "end": 11068.14,
+ "text": "that"
+ },
+ {
+ "id": 23457,
+ "start": 11068.14,
+ "end": 11068.7,
+ "text": "can"
+ },
+ {
+ "id": 23458,
+ "start": 11068.7,
+ "end": 11068.82,
+ "text": "be"
+ },
+ {
+ "id": 23459,
+ "start": 11068.82,
+ "end": 11069.48,
+ "text": "racially"
+ },
+ {
+ "id": 23460,
+ "start": 11069.48,
+ "end": 11069.94,
+ "text": "coded"
+ },
+ {
+ "id": 23461,
+ "start": 11069.94,
+ "end": 11070.1,
+ "text": "to"
+ },
+ {
+ "id": 23462,
+ "start": 11070.1,
+ "end": 11071.16,
+ "text": "inside,"
+ },
+ {
+ "id": 23463,
+ "start": 11071.16,
+ "end": 11071.58,
+ "text": "violence"
+ },
+ {
+ "id": 23464,
+ "start": 11071.58,
+ "end": 11071.82,
+ "text": "are"
+ },
+ {
+ "id": 23465,
+ "start": 11071.82,
+ "end": 11072.22,
+ "text": "very"
+ },
+ {
+ "id": 23466,
+ "start": 11072.22,
+ "end": 11072.62,
+ "text": "language"
+ },
+ {
+ "id": 23467,
+ "start": 11072.62,
+ "end": 11073.12,
+ "text": "specific."
+ },
+ {
+ "id": 23468,
+ "start": 11073.12,
+ "end": 11073.28,
+ "text": "And"
+ },
+ {
+ "id": 23469,
+ "start": 11073.28,
+ "end": 11073.42,
+ "text": "we"
+ },
+ {
+ "id": 23470,
+ "start": 11073.42,
+ "end": 11073.64,
+ "text": "can't"
+ },
+ {
+ "id": 23471,
+ "start": 11073.64,
+ "end": 11073.78,
+ "text": "do"
+ },
+ {
+ "id": 23472,
+ "start": 11073.78,
+ "end": 11074.35,
+ "text": "that"
+ },
+ {
+ "id": 23473,
+ "start": 11074.35,
+ "end": 11074.51,
+ "text": "with"
+ },
+ {
+ "id": 23474,
+ "start": 11074.51,
+ "end": 11074.65,
+ "text": "just"
+ },
+ {
+ "id": 23475,
+ "start": 11074.65,
+ "end": 11074.93,
+ "text": "English"
+ },
+ {
+ "id": 23476,
+ "start": 11074.93,
+ "end": 11075.31,
+ "text": "speakers"
+ },
+ {
+ "id": 23477,
+ "start": 11075.31,
+ "end": 11075.51,
+ "text": "for"
+ },
+ {
+ "id": 23478,
+ "start": 11075.51,
+ "end": 11075.73,
+ "text": "people"
+ },
+ {
+ "id": 23479,
+ "start": 11075.73,
+ "end": 11075.97,
+ "text": "around"
+ },
+ {
+ "id": 23480,
+ "start": 11075.97,
+ "end": 11076.07,
+ "text": "the"
+ },
+ {
+ "id": 23481,
+ "start": 11076.07,
+ "end": 11076.25,
+ "text": "world."
+ },
+ {
+ "id": 23482,
+ "start": 11076.25,
+ "end": 11076.35,
+ "text": "So"
+ },
+ {
+ "id": 23483,
+ "start": 11076.35,
+ "end": 11076.47,
+ "text": "we"
+ },
+ {
+ "id": 23484,
+ "start": 11076.47,
+ "end": 11076.63,
+ "text": "need"
+ },
+ {
+ "id": 23485,
+ "start": 11076.63,
+ "end": 11076.71,
+ "text": "to"
+ },
+ {
+ "id": 23486,
+ "start": 11076.71,
+ "end": 11076.93,
+ "text": "grow"
+ },
+ {
+ "id": 23487,
+ "start": 11076.93,
+ "end": 11077.17,
+ "text": "that."
+ },
+ {
+ "id": 23488,
+ "start": 11077.17,
+ "end": 11077.81,
+ "text": "The"
+ },
+ {
+ "id": 23489,
+ "start": 11077.81,
+ "end": 11078.17,
+ "text": "second"
+ },
+ {
+ "id": 23490,
+ "start": 11078.17,
+ "end": 11078.43,
+ "text": "is"
+ },
+ {
+ "id": 23491,
+ "start": 11078.43,
+ "end": 11079.17,
+ "text": "in"
+ },
+ {
+ "id": 23492,
+ "start": 11079.17,
+ "end": 11079.49,
+ "text": "these"
+ },
+ {
+ "id": 23493,
+ "start": 11079.49,
+ "end": 11079.83,
+ "text": "countries."
+ },
+ {
+ "id": 23494,
+ "start": 11079.83,
+ "end": 11080.01,
+ "text": "They"
+ },
+ {
+ "id": 23495,
+ "start": 11080.01,
+ "end": 11080.55,
+ "text": "tend"
+ },
+ {
+ "id": 23496,
+ "start": 11080.55,
+ "end": 11080.67,
+ "text": "to"
+ },
+ {
+ "id": 23497,
+ "start": 11080.67,
+ "end": 11080.83,
+ "text": "be"
+ },
+ {
+ "id": 23498,
+ "start": 11080.83,
+ "end": 11081.79,
+ "text": "active"
+ },
+ {
+ "id": 23499,
+ "start": 11081.79,
+ "end": 11082.11,
+ "text": "civil"
+ },
+ {
+ "id": 23500,
+ "start": 11082.11,
+ "end": 11082.73,
+ "text": "society"
+ },
+ {
+ "id": 23501,
+ "start": 11082.73,
+ "end": 11083.15,
+ "text": "who"
+ },
+ {
+ "id": 23502,
+ "start": 11083.15,
+ "end": 11083.31,
+ "text": "can"
+ },
+ {
+ "id": 23503,
+ "start": 11083.31,
+ "end": 11083.51,
+ "text": "help"
+ },
+ {
+ "id": 23504,
+ "start": 11083.51,
+ "end": 11083.65,
+ "text": "us"
+ },
+ {
+ "id": 23505,
+ "start": 11083.65,
+ "end": 11084.27,
+ "text": "identify"
+ },
+ {
+ "id": 23506,
+ "start": 11084.27,
+ "end": 11085.19,
+ "text": "the"
+ },
+ {
+ "id": 23507,
+ "start": 11085.19,
+ "end": 11085.61,
+ "text": "figures"
+ },
+ {
+ "id": 23508,
+ "start": 11085.61,
+ "end": 11085.83,
+ "text": "who"
+ },
+ {
+ "id": 23509,
+ "start": 11085.83,
+ "end": 11086.2,
+ "text": "are"
+ },
+ {
+ "id": 23510,
+ "start": 11086.2,
+ "end": 11086.8,
+ "text": "who"
+ },
+ {
+ "id": 23511,
+ "start": 11086.8,
+ "end": 11086.92,
+ "text": "are"
+ },
+ {
+ "id": 23512,
+ "start": 11086.92,
+ "end": 11087.24,
+ "text": "spreading"
+ },
+ {
+ "id": 23513,
+ "start": 11087.24,
+ "end": 11087.48,
+ "text": "hate"
+ },
+ {
+ "id": 23514,
+ "start": 11087.48,
+ "end": 11088.06,
+ "text": "and"
+ },
+ {
+ "id": 23515,
+ "start": 11088.06,
+ "end": 11088.28,
+ "text": "we"
+ },
+ {
+ "id": 23516,
+ "start": 11088.28,
+ "end": 11088.42,
+ "text": "can"
+ },
+ {
+ "id": 23517,
+ "start": 11088.42,
+ "end": 11088.6,
+ "text": "work"
+ },
+ {
+ "id": 23518,
+ "start": 11088.6,
+ "end": 11088.76,
+ "text": "with"
+ },
+ {
+ "id": 23519,
+ "start": 11088.76,
+ "end": 11088.9,
+ "text": "them"
+ },
+ {
+ "id": 23520,
+ "start": 11088.9,
+ "end": 11089.02,
+ "text": "in"
+ },
+ {
+ "id": 23521,
+ "start": 11089.02,
+ "end": 11089.22,
+ "text": "order"
+ },
+ {
+ "id": 23522,
+ "start": 11089.22,
+ "end": 11089.32,
+ "text": "to"
+ },
+ {
+ "id": 23523,
+ "start": 11089.32,
+ "end": 11089.52,
+ "text": "make"
+ },
+ {
+ "id": 23524,
+ "start": 11089.52,
+ "end": 11089.68,
+ "text": "sure"
+ },
+ {
+ "id": 23525,
+ "start": 11089.68,
+ "end": 11089.82,
+ "text": "that"
+ },
+ {
+ "id": 23526,
+ "start": 11089.82,
+ "end": 11090.04,
+ "text": "those"
+ },
+ {
+ "id": 23527,
+ "start": 11090.04,
+ "end": 11090.48,
+ "text": "figures"
+ },
+ {
+ "id": 23528,
+ "start": 11090.48,
+ "end": 11090.72,
+ "text": "don't"
+ },
+ {
+ "id": 23529,
+ "start": 11090.72,
+ "end": 11090.86,
+ "text": "have"
+ },
+ {
+ "id": 23530,
+ "start": 11090.86,
+ "end": 11090.9,
+ "text": "a"
+ },
+ {
+ "id": 23531,
+ "start": 11090.9,
+ "end": 11091.14,
+ "text": "place"
+ },
+ {
+ "id": 23532,
+ "start": 11091.14,
+ "end": 11091.32,
+ "text": "on"
+ },
+ {
+ "id": 23533,
+ "start": 11091.32,
+ "end": 11091.5,
+ "text": "our"
+ },
+ {
+ "id": 23534,
+ "start": 11091.5,
+ "end": 11092.02,
+ "text": "platform."
+ },
+ {
+ "id": 23535,
+ "start": 11092.02,
+ "end": 11092.68,
+ "text": "The"
+ },
+ {
+ "id": 23536,
+ "start": 11092.68,
+ "end": 11093.02,
+ "text": "third"
+ },
+ {
+ "id": 23537,
+ "start": 11093.02,
+ "end": 11093.56,
+ "text": "is"
+ },
+ {
+ "id": 23538,
+ "start": 11093.56,
+ "end": 11093.72,
+ "text": "that"
+ },
+ {
+ "id": 23539,
+ "start": 11093.72,
+ "end": 11093.9,
+ "text": "there"
+ },
+ {
+ "id": 23540,
+ "start": 11093.9,
+ "end": 11094.02,
+ "text": "are"
+ },
+ {
+ "id": 23541,
+ "start": 11094.02,
+ "end": 11094.64,
+ "text": "specific"
+ },
+ {
+ "id": 23542,
+ "start": 11094.64,
+ "end": 11095.02,
+ "text": "product"
+ },
+ {
+ "id": 23543,
+ "start": 11095.02,
+ "end": 11095.52,
+ "text": "changes"
+ },
+ {
+ "id": 23544,
+ "start": 11095.52,
+ "end": 11096.3,
+ "text": "that"
+ },
+ {
+ "id": 23545,
+ "start": 11096.3,
+ "end": 11096.38,
+ "text": "we"
+ },
+ {
+ "id": 23546,
+ "start": 11096.38,
+ "end": 11096.6,
+ "text": "can"
+ },
+ {
+ "id": 23547,
+ "start": 11096.6,
+ "end": 11096.88,
+ "text": "make"
+ },
+ {
+ "id": 23548,
+ "start": 11096.88,
+ "end": 11097.42,
+ "text": "in"
+ },
+ {
+ "id": 23549,
+ "start": 11097.42,
+ "end": 11097.76,
+ "text": "order"
+ },
+ {
+ "id": 23550,
+ "start": 11097.76,
+ "end": 11098.64,
+ "text": "to"
+ },
+ {
+ "id": 23551,
+ "start": 11098.64,
+ "end": 11099.14,
+ "text": "that"
+ },
+ {
+ "id": 23552,
+ "start": 11099.14,
+ "end": 11099.36,
+ "text": "might"
+ },
+ {
+ "id": 23553,
+ "start": 11099.36,
+ "end": 11099.46,
+ "text": "be"
+ },
+ {
+ "id": 23554,
+ "start": 11099.46,
+ "end": 11099.96,
+ "text": "necessary"
+ },
+ {
+ "id": 23555,
+ "start": 11099.96,
+ "end": 11100.1,
+ "text": "in"
+ },
+ {
+ "id": 23556,
+ "start": 11100.1,
+ "end": 11100.38,
+ "text": "some"
+ },
+ {
+ "id": 23557,
+ "start": 11100.38,
+ "end": 11100.76,
+ "text": "countries."
+ },
+ {
+ "id": 23558,
+ "start": 11100.76,
+ "end": 11100.94,
+ "text": "But"
+ },
+ {
+ "id": 23559,
+ "start": 11100.94,
+ "end": 11101.1,
+ "text": "not"
+ },
+ {
+ "id": 23560,
+ "start": 11101.1,
+ "end": 11101.4,
+ "text": "others,"
+ },
+ {
+ "id": 23561,
+ "start": 11101.4,
+ "end": 11102.06,
+ "text": "including"
+ },
+ {
+ "id": 23562,
+ "start": 11102.06,
+ "end": 11102.28,
+ "text": "things"
+ },
+ {
+ "id": 23563,
+ "start": 11102.28,
+ "end": 11102.7,
+ "text": "around"
+ },
+ {
+ "id": 23564,
+ "start": 11102.7,
+ "end": 11103.74,
+ "text": "news,"
+ },
+ {
+ "id": 23565,
+ "start": 11103.74,
+ "end": 11104.28,
+ "text": "literacy"
+ },
+ {
+ "id": 23566,
+ "start": 11104.28,
+ "end": 11105.82,
+ "text": "and"
+ },
+ {
+ "id": 23567,
+ "start": 11105.82,
+ "end": 11106.8,
+ "text": "encouraging"
+ },
+ {
+ "id": 23568,
+ "start": 11106.8,
+ "end": 11107.72,
+ "text": "people"
+ },
+ {
+ "id": 23569,
+ "start": 11107.72,
+ "end": 11108.76,
+ "text": "in"
+ },
+ {
+ "id": 23570,
+ "start": 11108.76,
+ "end": 11109.12,
+ "text": "different"
+ },
+ {
+ "id": 23571,
+ "start": 11109.12,
+ "end": 11109.6,
+ "text": "countries"
+ },
+ {
+ "id": 23572,
+ "start": 11109.6,
+ "end": 11111.08,
+ "text": "about"
+ },
+ {
+ "id": 23573,
+ "start": 11111.08,
+ "end": 11112.14,
+ "text": "ramping"
+ },
+ {
+ "id": 23574,
+ "start": 11112.14,
+ "end": 11112.24,
+ "text": "up"
+ },
+ {
+ "id": 23575,
+ "start": 11112.24,
+ "end": 11112.36,
+ "text": "or"
+ },
+ {
+ "id": 23576,
+ "start": 11112.36,
+ "end": 11113.68,
+ "text": "down"
+ },
+ {
+ "id": 23577,
+ "start": 11113.68,
+ "end": 11114.66,
+ "text": "things"
+ },
+ {
+ "id": 23578,
+ "start": 11114.66,
+ "end": 11114.96,
+ "text": "that"
+ },
+ {
+ "id": 23579,
+ "start": 11114.96,
+ "end": 11115.06,
+ "text": "we"
+ },
+ {
+ "id": 23580,
+ "start": 11115.06,
+ "end": 11115.24,
+ "text": "might"
+ },
+ {
+ "id": 23581,
+ "start": 11115.24,
+ "end": 11115.34,
+ "text": "do"
+ },
+ {
+ "id": 23582,
+ "start": 11115.34,
+ "end": 11115.62,
+ "text": "around"
+ },
+ {
+ "id": 23583,
+ "start": 11115.62,
+ "end": 11115.9,
+ "text": "fact"
+ },
+ {
+ "id": 23584,
+ "start": 11115.9,
+ "end": 11116.24,
+ "text": "checking"
+ },
+ {
+ "id": 23585,
+ "start": 11116.24,
+ "end": 11117.24,
+ "text": "of"
+ },
+ {
+ "id": 23586,
+ "start": 11117.24,
+ "end": 11117.68,
+ "text": "content"
+ },
+ {
+ "id": 23587,
+ "start": 11117.68,
+ "end": 11118.5,
+ "text": "specific"
+ },
+ {
+ "id": 23588,
+ "start": 11118.5,
+ "end": 11118.88,
+ "text": "product"
+ },
+ {
+ "id": 23589,
+ "start": 11118.88,
+ "end": 11119.12,
+ "text": "type"
+ },
+ {
+ "id": 23590,
+ "start": 11119.12,
+ "end": 11119.5,
+ "text": "things"
+ },
+ {
+ "id": 23591,
+ "start": 11119.5,
+ "end": 11120.12,
+ "text": "that"
+ },
+ {
+ "id": 23592,
+ "start": 11120.12,
+ "end": 11120.2,
+ "text": "we"
+ },
+ {
+ "id": 23593,
+ "start": 11120.2,
+ "end": 11120.36,
+ "text": "would"
+ },
+ {
+ "id": 23594,
+ "start": 11120.36,
+ "end": 11120.48,
+ "text": "want"
+ },
+ {
+ "id": 23595,
+ "start": 11120.48,
+ "end": 11120.56,
+ "text": "to"
+ },
+ {
+ "id": 23596,
+ "start": 11120.56,
+ "end": 11121.15,
+ "text": "implement."
+ },
+ {
+ "id": 23597,
+ "start": 11121.15,
+ "end": 11121.71,
+ "text": "But"
+ },
+ {
+ "id": 23598,
+ "start": 11121.71,
+ "end": 11121.77,
+ "text": "I"
+ },
+ {
+ "id": 23599,
+ "start": 11121.77,
+ "end": 11121.91,
+ "text": "think"
+ },
+ {
+ "id": 23600,
+ "start": 11121.91,
+ "end": 11122.03,
+ "text": "that"
+ },
+ {
+ "id": 23601,
+ "start": 11122.03,
+ "end": 11122.19,
+ "text": "that's"
+ },
+ {
+ "id": 23602,
+ "start": 11122.19,
+ "end": 11122.39,
+ "text": "somthing"
+ },
+ {
+ "id": 23603,
+ "start": 11122.39,
+ "end": 11122.49,
+ "text": "that"
+ },
+ {
+ "id": 23604,
+ "start": 11122.49,
+ "end": 11122.61,
+ "text": "we're"
+ },
+ {
+ "id": 23605,
+ "start": 11122.61,
+ "end": 11122.73,
+ "text": "going"
+ },
+ {
+ "id": 23606,
+ "start": 11122.73,
+ "end": 11122.79,
+ "text": "to"
+ },
+ {
+ "id": 23607,
+ "start": 11122.79,
+ "end": 11122.89,
+ "text": "have"
+ },
+ {
+ "id": 23608,
+ "start": 11122.89,
+ "end": 11122.95,
+ "text": "to"
+ },
+ {
+ "id": 23609,
+ "start": 11122.95,
+ "end": 11123.01,
+ "text": "do"
+ },
+ {
+ "id": 23610,
+ "start": 11123.01,
+ "end": 11123.09,
+ "text": "in"
+ },
+ {
+ "id": 23611,
+ "start": 11123.09,
+ "end": 11123.15,
+ "text": "a"
+ },
+ {
+ "id": 23612,
+ "start": 11123.15,
+ "end": 11123.35,
+ "text": "number"
+ },
+ {
+ "id": 23613,
+ "start": 11123.35,
+ "end": 11123.47,
+ "text": "of"
+ },
+ {
+ "id": 23614,
+ "start": 11123.47,
+ "end": 11123.85,
+ "text": "countries,"
+ },
+ {
+ "id": 23615,
+ "start": 11123.85,
+ "end": 11124.57,
+ "text": "there"
+ },
+ {
+ "id": 23616,
+ "start": 11124.57,
+ "end": 11124.69,
+ "text": "are"
+ },
+ {
+ "id": 23617,
+ "start": 11124.69,
+ "end": 11125.11,
+ "text": "obviously"
+ },
+ {
+ "id": 23618,
+ "start": 11125.11,
+ "end": 11125.71,
+ "text": "limits"
+ },
+ {
+ "id": 23619,
+ "start": 11125.71,
+ "end": 11126.69,
+ "text": "native"
+ },
+ {
+ "id": 23620,
+ "start": 11126.69,
+ "end": 11127.07,
+ "text": "speakers"
+ },
+ {
+ "id": 23621,
+ "start": 11127.07,
+ "end": 11127.23,
+ "text": "that"
+ },
+ {
+ "id": 23622,
+ "start": 11127.23,
+ "end": 11127.35,
+ "text": "you"
+ },
+ {
+ "id": 23623,
+ "start": 11127.35,
+ "end": 11127.53,
+ "text": "can"
+ },
+ {
+ "id": 23624,
+ "start": 11127.53,
+ "end": 11127.93,
+ "text": "hire"
+ },
+ {
+ "id": 23625,
+ "start": 11127.93,
+ "end": 11128.29,
+ "text": "or"
+ },
+ {
+ "id": 23626,
+ "start": 11128.29,
+ "end": 11129.01,
+ "text": "people"
+ },
+ {
+ "id": 23627,
+ "start": 11129.01,
+ "end": 11129.51,
+ "text": "have"
+ },
+ {
+ "id": 23628,
+ "start": 11129.51,
+ "end": 11129.89,
+ "text": "eyes"
+ },
+ {
+ "id": 23629,
+ "start": 11129.89,
+ "end": 11130.07,
+ "text": "on"
+ },
+ {
+ "id": 23630,
+ "start": 11130.07,
+ "end": 11130.19,
+ "text": "the"
+ },
+ {
+ "id": 23631,
+ "start": 11130.19,
+ "end": 11131.22,
+ "text": "page."
+ },
+ {
+ "id": 23632,
+ "start": 11131.22,
+ "end": 11132.34,
+ "text": "Artificial"
+ },
+ {
+ "id": 23633,
+ "start": 11132.34,
+ "end": 11132.82,
+ "text": "intelligence"
+ },
+ {
+ "id": 23634,
+ "start": 11132.82,
+ "end": 11132.98,
+ "text": "is"
+ },
+ {
+ "id": 23635,
+ "start": 11132.98,
+ "end": 11133.34,
+ "text": "I"
+ },
+ {
+ "id": 23636,
+ "start": 11133.34,
+ "end": 11133.46,
+ "text": "have"
+ },
+ {
+ "id": 23637,
+ "start": 11133.46,
+ "end": 11133.56,
+ "text": "to"
+ },
+ {
+ "id": 23638,
+ "start": 11133.56,
+ "end": 11133.78,
+ "text": "take"
+ },
+ {
+ "id": 23639,
+ "start": 11133.78,
+ "end": 11134.04,
+ "text": "the"
+ },
+ {
+ "id": 23640,
+ "start": 11134.04,
+ "end": 11134.28,
+ "text": "bulk"
+ },
+ {
+ "id": 23641,
+ "start": 11134.28,
+ "end": 11134.4,
+ "text": "of"
+ },
+ {
+ "id": 23642,
+ "start": 11134.4,
+ "end": 11136.12,
+ "text": "this."
+ },
+ {
+ "id": 23643,
+ "start": 11136.12,
+ "end": 11137.1,
+ "text": "How"
+ },
+ {
+ "id": 23644,
+ "start": 11137.1,
+ "end": 11137.28,
+ "text": "much"
+ },
+ {
+ "id": 23645,
+ "start": 11137.28,
+ "end": 11137.42,
+ "text": "are"
+ },
+ {
+ "id": 23646,
+ "start": 11137.42,
+ "end": 11137.52,
+ "text": "you"
+ },
+ {
+ "id": 23647,
+ "start": 11137.52,
+ "end": 11138.02,
+ "text": "investing"
+ },
+ {
+ "id": 23648,
+ "start": 11138.02,
+ "end": 11138.18,
+ "text": "and"
+ },
+ {
+ "id": 23649,
+ "start": 11138.18,
+ "end": 11138.56,
+ "text": "working"
+ },
+ {
+ "id": 23650,
+ "start": 11138.56,
+ "end": 11139.34,
+ "text": "on"
+ },
+ {
+ "id": 23651,
+ "start": 11139.34,
+ "end": 11140.24,
+ "text": "that"
+ },
+ {
+ "id": 23652,
+ "start": 11140.24,
+ "end": 11140.68,
+ "text": "tool"
+ },
+ {
+ "id": 23653,
+ "start": 11140.68,
+ "end": 11141.96,
+ "text": "to"
+ },
+ {
+ "id": 23654,
+ "start": 11141.96,
+ "end": 11142.1,
+ "text": "do"
+ },
+ {
+ "id": 23655,
+ "start": 11142.1,
+ "end": 11142.34,
+ "text": "what"
+ },
+ {
+ "id": 23656,
+ "start": 11142.34,
+ "end": 11143.66,
+ "text": "really"
+ },
+ {
+ "id": 23657,
+ "start": 11143.66,
+ "end": 11144.6,
+ "text": "we"
+ },
+ {
+ "id": 23658,
+ "start": 11144.6,
+ "end": 11144.78,
+ "text": "don't"
+ },
+ {
+ "id": 23659,
+ "start": 11144.78,
+ "end": 11144.92,
+ "text": "have"
+ },
+ {
+ "id": 23660,
+ "start": 11144.92,
+ "end": 11145.16,
+ "text": "or"
+ },
+ {
+ "id": 23661,
+ "start": 11145.16,
+ "end": 11145.34,
+ "text": "can't"
+ },
+ {
+ "id": 23662,
+ "start": 11145.34,
+ "end": 11145.54,
+ "text": "hire"
+ },
+ {
+ "id": 23663,
+ "start": 11145.54,
+ "end": 11145.76,
+ "text": "enough"
+ },
+ {
+ "id": 23664,
+ "start": 11145.76,
+ "end": 11146.04,
+ "text": "people"
+ },
+ {
+ "id": 23665,
+ "start": 11146.04,
+ "end": 11146.16,
+ "text": "to"
+ },
+ {
+ "id": 23666,
+ "start": 11146.16,
+ "end": 11146.86,
+ "text": "do,"
+ },
+ {
+ "id": 23667,
+ "start": 11146.86,
+ "end": 11147.84,
+ "text": "Senator."
+ },
+ {
+ "id": 23668,
+ "start": 11147.84,
+ "end": 11148.16,
+ "text": "I"
+ },
+ {
+ "id": 23669,
+ "start": 11148.16,
+ "end": 11148.32,
+ "text": "think"
+ },
+ {
+ "id": 23670,
+ "start": 11148.32,
+ "end": 11148.56,
+ "text": "you're"
+ },
+ {
+ "id": 23671,
+ "start": 11148.56,
+ "end": 11149.56,
+ "text": "absolutely"
+ },
+ {
+ "id": 23672,
+ "start": 11149.56,
+ "end": 11149.86,
+ "text": "right."
+ },
+ {
+ "id": 23673,
+ "start": 11149.86,
+ "end": 11150.12,
+ "text": "But"
+ },
+ {
+ "id": 23674,
+ "start": 11150.12,
+ "end": 11150.3,
+ "text": "over"
+ },
+ {
+ "id": 23675,
+ "start": 11150.3,
+ "end": 11150.42,
+ "text": "the"
+ },
+ {
+ "id": 23676,
+ "start": 11150.42,
+ "end": 11150.68,
+ "text": "long"
+ },
+ {
+ "id": 23677,
+ "start": 11150.68,
+ "end": 11151.24,
+ "text": "term"
+ },
+ {
+ "id": 23678,
+ "start": 11151.24,
+ "end": 11152.26,
+ "text": "building,"
+ },
+ {
+ "id": 23679,
+ "start": 11152.26,
+ "end": 11152.78,
+ "text": "AI"
+ },
+ {
+ "id": 23680,
+ "start": 11152.78,
+ "end": 11153.18,
+ "text": "tools"
+ },
+ {
+ "id": 23681,
+ "start": 11153.18,
+ "end": 11153.92,
+ "text": "is"
+ },
+ {
+ "id": 23682,
+ "start": 11153.92,
+ "end": 11154.26,
+ "text": "going"
+ },
+ {
+ "id": 23683,
+ "start": 11154.26,
+ "end": 11154.42,
+ "text": "to"
+ },
+ {
+ "id": 23684,
+ "start": 11154.42,
+ "end": 11154.58,
+ "text": "be"
+ },
+ {
+ "id": 23685,
+ "start": 11154.58,
+ "end": 11154.7,
+ "text": "the"
+ },
+ {
+ "id": 23686,
+ "start": 11154.7,
+ "end": 11155.2,
+ "text": "scalable"
+ },
+ {
+ "id": 23687,
+ "start": 11155.2,
+ "end": 11156.24,
+ "text": "to"
+ },
+ {
+ "id": 23688,
+ "start": 11156.24,
+ "end": 11157.28,
+ "text": "identify"
+ },
+ {
+ "id": 23689,
+ "start": 11157.28,
+ "end": 11157.6,
+ "text": "and"
+ },
+ {
+ "id": 23690,
+ "start": 11157.6,
+ "end": 11157.92,
+ "text": "rode"
+ },
+ {
+ "id": 23691,
+ "start": 11157.92,
+ "end": 11158.1,
+ "text": "out."
+ },
+ {
+ "id": 23692,
+ "start": 11158.1,
+ "end": 11158.46,
+ "text": "Most"
+ },
+ {
+ "id": 23693,
+ "start": 11158.46,
+ "end": 11158.58,
+ "text": "of"
+ },
+ {
+ "id": 23694,
+ "start": 11158.58,
+ "end": 11158.8,
+ "text": "this"
+ },
+ {
+ "id": 23695,
+ "start": 11158.8,
+ "end": 11159.26,
+ "text": "harmful"
+ },
+ {
+ "id": 23696,
+ "start": 11159.26,
+ "end": 11159.72,
+ "text": "content"
+ },
+ {
+ "id": 23697,
+ "start": 11159.72,
+ "end": 11160.9,
+ "text": "we're"
+ },
+ {
+ "id": 23698,
+ "start": 11160.9,
+ "end": 11161.26,
+ "text": "investing"
+ },
+ {
+ "id": 23699,
+ "start": 11161.26,
+ "end": 11161.32,
+ "text": "a"
+ },
+ {
+ "id": 23700,
+ "start": 11161.32,
+ "end": 11161.52,
+ "text": "lot"
+ },
+ {
+ "id": 23701,
+ "start": 11161.52,
+ "end": 11161.66,
+ "text": "in"
+ },
+ {
+ "id": 23702,
+ "start": 11161.66,
+ "end": 11161.9,
+ "text": "doing"
+ },
+ {
+ "id": 23703,
+ "start": 11161.9,
+ "end": 11162.16,
+ "text": "that"
+ },
+ {
+ "id": 23704,
+ "start": 11162.16,
+ "end": 11162.76,
+ "text": "as"
+ },
+ {
+ "id": 23705,
+ "start": 11162.76,
+ "end": 11163.04,
+ "text": "well"
+ },
+ {
+ "id": 23706,
+ "start": 11163.04,
+ "end": 11163.2,
+ "text": "as"
+ },
+ {
+ "id": 23707,
+ "start": 11163.2,
+ "end": 11163.6,
+ "text": "scaling"
+ },
+ {
+ "id": 23708,
+ "start": 11163.6,
+ "end": 11163.76,
+ "text": "up."
+ },
+ {
+ "id": 23709,
+ "start": 11163.76,
+ "end": 11164.02,
+ "text": "The"
+ },
+ {
+ "id": 23710,
+ "start": 11164.02,
+ "end": 11164.3,
+ "text": "number"
+ },
+ {
+ "id": 23711,
+ "start": 11164.3,
+ "end": 11164.38,
+ "text": "of"
+ },
+ {
+ "id": 23712,
+ "start": 11164.38,
+ "end": 11164.7,
+ "text": "people"
+ },
+ {
+ "id": 23713,
+ "start": 11164.7,
+ "end": 11164.84,
+ "text": "who"
+ },
+ {
+ "id": 23714,
+ "start": 11164.84,
+ "end": 11165,
+ "text": "are"
+ },
+ {
+ "id": 23715,
+ "start": 11165,
+ "end": 11165.24,
+ "text": "doing"
+ },
+ {
+ "id": 23716,
+ "start": 11165.24,
+ "end": 11165.62,
+ "text": "content"
+ },
+ {
+ "id": 23717,
+ "start": 11165.62,
+ "end": 11166.74,
+ "text": "review."
+ },
+ {
+ "id": 23718,
+ "start": 11166.74,
+ "end": 11167.66,
+ "text": "One"
+ },
+ {
+ "id": 23719,
+ "start": 11167.66,
+ "end": 11167.74,
+ "text": "of"
+ },
+ {
+ "id": 23720,
+ "start": 11167.74,
+ "end": 11167.84,
+ "text": "the"
+ },
+ {
+ "id": 23721,
+ "start": 11167.84,
+ "end": 11168,
+ "text": "things"
+ },
+ {
+ "id": 23722,
+ "start": 11168,
+ "end": 11168.2,
+ "text": "I've"
+ },
+ {
+ "id": 23723,
+ "start": 11168.2,
+ "end": 11168.54,
+ "text": "mentioned"
+ },
+ {
+ "id": 23724,
+ "start": 11168.54,
+ "end": 11168.72,
+ "text": "is"
+ },
+ {
+ "id": 23725,
+ "start": 11168.72,
+ "end": 11169.38,
+ "text": "in"
+ },
+ {
+ "id": 23726,
+ "start": 11169.38,
+ "end": 11169.76,
+ "text": "this"
+ },
+ {
+ "id": 23727,
+ "start": 11169.76,
+ "end": 11170,
+ "text": "year"
+ },
+ {
+ "id": 23728,
+ "start": 11170,
+ "end": 11171,
+ "text": "or"
+ },
+ {
+ "id": 23729,
+ "start": 11171,
+ "end": 11171.12,
+ "text": "in"
+ },
+ {
+ "id": 23730,
+ "start": 11171.12,
+ "end": 11171.22,
+ "text": "the"
+ },
+ {
+ "id": 23731,
+ "start": 11171.22,
+ "end": 11171.4,
+ "text": "last"
+ },
+ {
+ "id": 23732,
+ "start": 11171.4,
+ "end": 11171.56,
+ "text": "year"
+ },
+ {
+ "id": 23733,
+ "start": 11171.56,
+ "end": 11171.76,
+ "text": "we've"
+ },
+ {
+ "id": 23734,
+ "start": 11171.76,
+ "end": 11172.14,
+ "text": "basically"
+ },
+ {
+ "id": 23735,
+ "start": 11172.14,
+ "end": 11172.48,
+ "text": "doubled"
+ },
+ {
+ "id": 23736,
+ "start": 11172.48,
+ "end": 11172.6,
+ "text": "the"
+ },
+ {
+ "id": 23737,
+ "start": 11172.6,
+ "end": 11172.84,
+ "text": "number"
+ },
+ {
+ "id": 23738,
+ "start": 11172.84,
+ "end": 11172.92,
+ "text": "of"
+ },
+ {
+ "id": 23739,
+ "start": 11172.92,
+ "end": 11173.28,
+ "text": "people"
+ },
+ {
+ "id": 23740,
+ "start": 11173.28,
+ "end": 11173.54,
+ "text": "doing"
+ },
+ {
+ "id": 23741,
+ "start": 11173.54,
+ "end": 11174.02,
+ "text": "security"
+ },
+ {
+ "id": 23742,
+ "start": 11174.02,
+ "end": 11174.14,
+ "text": "and"
+ },
+ {
+ "id": 23743,
+ "start": 11174.14,
+ "end": 11174.5,
+ "text": "content"
+ },
+ {
+ "id": 23744,
+ "start": 11174.5,
+ "end": 11174.74,
+ "text": "review"
+ },
+ {
+ "id": 23745,
+ "start": 11174.74,
+ "end": 11174.92,
+ "text": "we're"
+ },
+ {
+ "id": 23746,
+ "start": 11174.92,
+ "end": 11175.08,
+ "text": "going"
+ },
+ {
+ "id": 23747,
+ "start": 11175.08,
+ "end": 11175.14,
+ "text": "to"
+ },
+ {
+ "id": 23748,
+ "start": 11175.14,
+ "end": 11175.8,
+ "text": "have"
+ },
+ {
+ "id": 23749,
+ "start": 11175.8,
+ "end": 11175.96,
+ "text": "more"
+ },
+ {
+ "id": 23750,
+ "start": 11175.96,
+ "end": 11176.1,
+ "text": "than"
+ },
+ {
+ "id": 23751,
+ "start": 11176.1,
+ "end": 11176.76,
+ "text": "20,000"
+ },
+ {
+ "id": 23752,
+ "start": 11176.76,
+ "end": 11177.04,
+ "text": "people"
+ },
+ {
+ "id": 23753,
+ "start": 11177.04,
+ "end": 11177.32,
+ "text": "working"
+ },
+ {
+ "id": 23754,
+ "start": 11177.32,
+ "end": 11177.44,
+ "text": "on"
+ },
+ {
+ "id": 23755,
+ "start": 11177.44,
+ "end": 11177.92,
+ "text": "security"
+ },
+ {
+ "id": 23756,
+ "start": 11177.92,
+ "end": 11178.38,
+ "text": "content"
+ },
+ {
+ "id": 23757,
+ "start": 11178.38,
+ "end": 11178.64,
+ "text": "review"
+ },
+ {
+ "id": 23758,
+ "start": 11178.64,
+ "end": 11178.82,
+ "text": "by"
+ },
+ {
+ "id": 23759,
+ "start": 11178.82,
+ "end": 11178.96,
+ "text": "the"
+ },
+ {
+ "id": 23760,
+ "start": 11178.96,
+ "end": 11179.08,
+ "text": "end"
+ },
+ {
+ "id": 23761,
+ "start": 11179.08,
+ "end": 11179.16,
+ "text": "of"
+ },
+ {
+ "id": 23762,
+ "start": 11179.16,
+ "end": 11179.3,
+ "text": "this"
+ },
+ {
+ "id": 23763,
+ "start": 11179.3,
+ "end": 11179.5,
+ "text": "year."
+ },
+ {
+ "id": 23764,
+ "start": 11179.5,
+ "end": 11180.4,
+ "text": "So"
+ },
+ {
+ "id": 23765,
+ "start": 11180.4,
+ "end": 11180.58,
+ "text": "it's"
+ },
+ {
+ "id": 23766,
+ "start": 11180.58,
+ "end": 11181,
+ "text": "going"
+ },
+ {
+ "id": 23767,
+ "start": 11181,
+ "end": 11181.08,
+ "text": "to"
+ },
+ {
+ "id": 23768,
+ "start": 11181.08,
+ "end": 11181.18,
+ "text": "be"
+ },
+ {
+ "id": 23769,
+ "start": 11181.18,
+ "end": 11181.68,
+ "text": "coupling"
+ },
+ {
+ "id": 23770,
+ "start": 11181.68,
+ "end": 11182.56,
+ "text": "continuing"
+ },
+ {
+ "id": 23771,
+ "start": 11182.56,
+ "end": 11182.68,
+ "text": "to"
+ },
+ {
+ "id": 23772,
+ "start": 11182.68,
+ "end": 11182.92,
+ "text": "grow."
+ },
+ {
+ "id": 23773,
+ "start": 11182.92,
+ "end": 11183.22,
+ "text": "The"
+ },
+ {
+ "id": 23774,
+ "start": 11183.22,
+ "end": 11183.76,
+ "text": "people"
+ },
+ {
+ "id": 23775,
+ "start": 11183.76,
+ "end": 11183.9,
+ "text": "who"
+ },
+ {
+ "id": 23776,
+ "start": 11183.9,
+ "end": 11184.06,
+ "text": "are"
+ },
+ {
+ "id": 23777,
+ "start": 11184.06,
+ "end": 11184.26,
+ "text": "doing"
+ },
+ {
+ "id": 23778,
+ "start": 11184.26,
+ "end": 11184.6,
+ "text": "review"
+ },
+ {
+ "id": 23779,
+ "start": 11184.6,
+ "end": 11184.7,
+ "text": "in"
+ },
+ {
+ "id": 23780,
+ "start": 11184.7,
+ "end": 11184.88,
+ "text": "these"
+ },
+ {
+ "id": 23781,
+ "start": 11184.88,
+ "end": 11185.34,
+ "text": "places"
+ },
+ {
+ "id": 23782,
+ "start": 11185.34,
+ "end": 11185.72,
+ "text": "with"
+ },
+ {
+ "id": 23783,
+ "start": 11185.72,
+ "end": 11186.76,
+ "text": "building"
+ },
+ {
+ "id": 23784,
+ "start": 11186.76,
+ "end": 11187.14,
+ "text": "AI"
+ },
+ {
+ "id": 23785,
+ "start": 11187.14,
+ "end": 11187.52,
+ "text": "tools"
+ },
+ {
+ "id": 23786,
+ "start": 11187.52,
+ "end": 11189.54,
+ "text": "which"
+ },
+ {
+ "id": 23787,
+ "start": 11189.54,
+ "end": 11190.54,
+ "text": "we're"
+ },
+ {
+ "id": 23788,
+ "start": 11190.54,
+ "end": 11190.82,
+ "text": "working"
+ },
+ {
+ "id": 23789,
+ "start": 11190.82,
+ "end": 11190.96,
+ "text": "as"
+ },
+ {
+ "id": 23790,
+ "start": 11190.96,
+ "end": 11191.2,
+ "text": "quickly"
+ },
+ {
+ "id": 23791,
+ "start": 11191.2,
+ "end": 11191.32,
+ "text": "as"
+ },
+ {
+ "id": 23792,
+ "start": 11191.32,
+ "end": 11191.4,
+ "text": "we"
+ },
+ {
+ "id": 23793,
+ "start": 11191.4,
+ "end": 11191.56,
+ "text": "can"
+ },
+ {
+ "id": 23794,
+ "start": 11191.56,
+ "end": 11191.68,
+ "text": "on"
+ },
+ {
+ "id": 23795,
+ "start": 11191.68,
+ "end": 11191.86,
+ "text": "that."
+ },
+ {
+ "id": 23796,
+ "start": 11191.86,
+ "end": 11192,
+ "text": "But"
+ },
+ {
+ "id": 23797,
+ "start": 11192,
+ "end": 11192.14,
+ "text": "some"
+ },
+ {
+ "id": 23798,
+ "start": 11192.14,
+ "end": 11192.22,
+ "text": "of"
+ },
+ {
+ "id": 23799,
+ "start": 11192.22,
+ "end": 11192.32,
+ "text": "the"
+ },
+ {
+ "id": 23800,
+ "start": 11192.32,
+ "end": 11192.48,
+ "text": "stuff"
+ },
+ {
+ "id": 23801,
+ "start": 11192.48,
+ "end": 11192.64,
+ "text": "is"
+ },
+ {
+ "id": 23802,
+ "start": 11192.64,
+ "end": 11192.8,
+ "text": "just"
+ },
+ {
+ "id": 23803,
+ "start": 11192.8,
+ "end": 11193.6,
+ "text": "hard"
+ },
+ {
+ "id": 23804,
+ "start": 11193.6,
+ "end": 11194.58,
+ "text": "that"
+ },
+ {
+ "id": 23805,
+ "start": 11194.58,
+ "end": 11194.64,
+ "text": "I"
+ },
+ {
+ "id": 23806,
+ "start": 11194.64,
+ "end": 11194.8,
+ "text": "think"
+ },
+ {
+ "id": 23807,
+ "start": 11194.8,
+ "end": 11194.96,
+ "text": "is"
+ },
+ {
+ "id": 23808,
+ "start": 11194.96,
+ "end": 11195.1,
+ "text": "going"
+ },
+ {
+ "id": 23809,
+ "start": 11195.1,
+ "end": 11195.18,
+ "text": "to"
+ },
+ {
+ "id": 23810,
+ "start": 11195.18,
+ "end": 11195.3,
+ "text": "help"
+ },
+ {
+ "id": 23811,
+ "start": 11195.3,
+ "end": 11195.4,
+ "text": "us"
+ },
+ {
+ "id": 23812,
+ "start": 11195.4,
+ "end": 11195.54,
+ "text": "get"
+ },
+ {
+ "id": 23813,
+ "start": 11195.54,
+ "end": 11195.64,
+ "text": "to"
+ },
+ {
+ "id": 23814,
+ "start": 11195.64,
+ "end": 11195.74,
+ "text": "a"
+ },
+ {
+ "id": 23815,
+ "start": 11195.74,
+ "end": 11195.94,
+ "text": "better"
+ },
+ {
+ "id": 23816,
+ "start": 11195.94,
+ "end": 11196.16,
+ "text": "place"
+ },
+ {
+ "id": 23817,
+ "start": 11196.16,
+ "end": 11196.34,
+ "text": "on"
+ },
+ {
+ "id": 23818,
+ "start": 11196.34,
+ "end": 11196.8,
+ "text": "eliminating"
+ },
+ {
+ "id": 23819,
+ "start": 11196.8,
+ "end": 11196.96,
+ "text": "more"
+ },
+ {
+ "id": 23820,
+ "start": 11196.96,
+ "end": 11197.2,
+ "text": "this"
+ },
+ {
+ "id": 23821,
+ "start": 11197.2,
+ "end": 11197.52,
+ "text": "harmful"
+ },
+ {
+ "id": 23822,
+ "start": 11197.52,
+ "end": 11197.88,
+ "text": "content."
+ },
+ {
+ "id": 23823,
+ "start": 11197.88,
+ "end": 11198.58,
+ "text": "Thank"
+ },
+ {
+ "id": 23824,
+ "start": 11198.58,
+ "end": 11199.8,
+ "text": "you"
+ },
+ {
+ "id": 23825,
+ "start": 11199.8,
+ "end": 11200.76,
+ "text": "you've"
+ },
+ {
+ "id": 23826,
+ "start": 11200.76,
+ "end": 11201,
+ "text": "talked"
+ },
+ {
+ "id": 23827,
+ "start": 11201,
+ "end": 11201.22,
+ "text": "some"
+ },
+ {
+ "id": 23828,
+ "start": 11201.22,
+ "end": 11201.46,
+ "text": "about"
+ },
+ {
+ "id": 23829,
+ "start": 11201.46,
+ "end": 11201.68,
+ "text": "this."
+ },
+ {
+ "id": 23830,
+ "start": 11201.68,
+ "end": 11201.82,
+ "text": "I"
+ },
+ {
+ "id": 23831,
+ "start": 11201.82,
+ "end": 11202.12,
+ "text": "know"
+ },
+ {
+ "id": 23832,
+ "start": 11202.12,
+ "end": 11202.56,
+ "text": "you"
+ },
+ {
+ "id": 23833,
+ "start": 11202.56,
+ "end": 11203.04,
+ "text": "believe"
+ },
+ {
+ "id": 23834,
+ "start": 11203.04,
+ "end": 11203.26,
+ "text": "that"
+ },
+ {
+ "id": 23835,
+ "start": 11203.26,
+ "end": 11203.92,
+ "text": "Russian"
+ },
+ {
+ "id": 23836,
+ "start": 11203.92,
+ "end": 11204.08,
+ "text": "and"
+ },
+ {
+ "id": 23837,
+ "start": 11204.08,
+ "end": 11204.26,
+ "text": "or"
+ },
+ {
+ "id": 23838,
+ "start": 11204.26,
+ "end": 11204.72,
+ "text": "Chinese"
+ },
+ {
+ "id": 23839,
+ "start": 11204.72,
+ "end": 11205.34,
+ "text": "governments"
+ },
+ {
+ "id": 23840,
+ "start": 11205.34,
+ "end": 11205.92,
+ "text": "have"
+ },
+ {
+ "id": 23841,
+ "start": 11205.92,
+ "end": 11206.94,
+ "text": "harvested"
+ },
+ {
+ "id": 23842,
+ "start": 11206.94,
+ "end": 11207.36,
+ "text": "Facebook"
+ },
+ {
+ "id": 23843,
+ "start": 11207.36,
+ "end": 11208.58,
+ "text": "data"
+ },
+ {
+ "id": 23844,
+ "start": 11208.58,
+ "end": 11209.62,
+ "text": "and"
+ },
+ {
+ "id": 23845,
+ "start": 11209.62,
+ "end": 11209.82,
+ "text": "have"
+ },
+ {
+ "id": 23846,
+ "start": 11209.82,
+ "end": 11210.28,
+ "text": "detailed"
+ },
+ {
+ "id": 23847,
+ "start": 11210.28,
+ "end": 11210.78,
+ "text": "data"
+ },
+ {
+ "id": 23848,
+ "start": 11210.78,
+ "end": 11211.08,
+ "text": "sets"
+ },
+ {
+ "id": 23849,
+ "start": 11211.08,
+ "end": 11211.3,
+ "text": "on"
+ },
+ {
+ "id": 23850,
+ "start": 11211.3,
+ "end": 11211.72,
+ "text": "Facebook"
+ },
+ {
+ "id": 23851,
+ "start": 11211.72,
+ "end": 11212.14,
+ "text": "users"
+ },
+ {
+ "id": 23852,
+ "start": 11212.14,
+ "end": 11212.86,
+ "text": "as"
+ },
+ {
+ "id": 23853,
+ "start": 11212.86,
+ "end": 11213.06,
+ "text": "your"
+ },
+ {
+ "id": 23854,
+ "start": 11213.06,
+ "end": 11213.72,
+ "text": "forensic"
+ },
+ {
+ "id": 23855,
+ "start": 11213.72,
+ "end": 11214.24,
+ "text": "analysis"
+ },
+ {
+ "id": 23856,
+ "start": 11214.24,
+ "end": 11215.02,
+ "text": "showing"
+ },
+ {
+ "id": 23857,
+ "start": 11215.02,
+ "end": 11215.2,
+ "text": "you"
+ },
+ {
+ "id": 23858,
+ "start": 11215.2,
+ "end": 11215.94,
+ "text": "who"
+ },
+ {
+ "id": 23859,
+ "start": 11215.94,
+ "end": 11216.22,
+ "text": "else"
+ },
+ {
+ "id": 23860,
+ "start": 11216.22,
+ "end": 11216.56,
+ "text": "other"
+ },
+ {
+ "id": 23861,
+ "start": 11216.56,
+ "end": 11216.74,
+ "text": "than"
+ },
+ {
+ "id": 23862,
+ "start": 11216.74,
+ "end": 11217.16,
+ "text": "Cambridge"
+ },
+ {
+ "id": 23863,
+ "start": 11217.16,
+ "end": 11218.1,
+ "text": "Analytica"
+ },
+ {
+ "id": 23864,
+ "start": 11218.1,
+ "end": 11218.9,
+ "text": "downloaded."
+ },
+ {
+ "id": 23865,
+ "start": 11218.9,
+ "end": 11219.1,
+ "text": "This"
+ },
+ {
+ "id": 23866,
+ "start": 11219.1,
+ "end": 11219.26,
+ "text": "kind"
+ },
+ {
+ "id": 23867,
+ "start": 11219.26,
+ "end": 11219.34,
+ "text": "of"
+ },
+ {
+ "id": 23868,
+ "start": 11219.34,
+ "end": 11220.46,
+ "text": "a"
+ },
+ {
+ "id": 23869,
+ "start": 11220.46,
+ "end": 11221.34,
+ "text": "senator,"
+ },
+ {
+ "id": 23870,
+ "start": 11221.34,
+ "end": 11221.58,
+ "text": "we"
+ },
+ {
+ "id": 23871,
+ "start": 11221.58,
+ "end": 11222,
+ "text": "have"
+ },
+ {
+ "id": 23872,
+ "start": 11222,
+ "end": 11222.4,
+ "text": "kicked"
+ },
+ {
+ "id": 23873,
+ "start": 11222.4,
+ "end": 11222.58,
+ "text": "off"
+ },
+ {
+ "id": 23874,
+ "start": 11222.58,
+ "end": 11222.7,
+ "text": "an"
+ },
+ {
+ "id": 23875,
+ "start": 11222.7,
+ "end": 11223.46,
+ "text": "investigation"
+ },
+ {
+ "id": 23876,
+ "start": 11223.46,
+ "end": 11223.78,
+ "text": "of"
+ },
+ {
+ "id": 23877,
+ "start": 11223.78,
+ "end": 11224.16,
+ "text": "every"
+ },
+ {
+ "id": 23878,
+ "start": 11224.16,
+ "end": 11224.4,
+ "text": "app"
+ },
+ {
+ "id": 23879,
+ "start": 11224.4,
+ "end": 11224.7,
+ "text": "that"
+ },
+ {
+ "id": 23880,
+ "start": 11224.7,
+ "end": 11224.9,
+ "text": "had"
+ },
+ {
+ "id": 23881,
+ "start": 11224.9,
+ "end": 11225.28,
+ "text": "access"
+ },
+ {
+ "id": 23882,
+ "start": 11225.28,
+ "end": 11225.42,
+ "text": "to"
+ },
+ {
+ "id": 23883,
+ "start": 11225.42,
+ "end": 11225.5,
+ "text": "a"
+ },
+ {
+ "id": 23884,
+ "start": 11225.5,
+ "end": 11225.76,
+ "text": "large"
+ },
+ {
+ "id": 23885,
+ "start": 11225.76,
+ "end": 11225.98,
+ "text": "amount"
+ },
+ {
+ "id": 23886,
+ "start": 11225.98,
+ "end": 11226.06,
+ "text": "of"
+ },
+ {
+ "id": 23887,
+ "start": 11226.06,
+ "end": 11226.38,
+ "text": "people's"
+ },
+ {
+ "id": 23888,
+ "start": 11226.38,
+ "end": 11226.7,
+ "text": "data."
+ },
+ {
+ "id": 23889,
+ "start": 11226.7,
+ "end": 11227.34,
+ "text": "Before"
+ },
+ {
+ "id": 23890,
+ "start": 11227.34,
+ "end": 11227.42,
+ "text": "we"
+ },
+ {
+ "id": 23891,
+ "start": 11227.42,
+ "end": 11227.66,
+ "text": "lock"
+ },
+ {
+ "id": 23892,
+ "start": 11227.66,
+ "end": 11227.82,
+ "text": "down"
+ },
+ {
+ "id": 23893,
+ "start": 11227.82,
+ "end": 11227.98,
+ "text": "the"
+ },
+ {
+ "id": 23894,
+ "start": 11227.98,
+ "end": 11228.38,
+ "text": "platform"
+ },
+ {
+ "id": 23895,
+ "start": 11228.38,
+ "end": 11228.52,
+ "text": "and"
+ },
+ {
+ "id": 23896,
+ "start": 11228.52,
+ "end": 11228.8,
+ "text": "20"
+ },
+ {
+ "id": 23897,
+ "start": 11228.8,
+ "end": 11229.28,
+ "text": "14"
+ },
+ {
+ "id": 23898,
+ "start": 11229.28,
+ "end": 11229.94,
+ "text": "that's"
+ },
+ {
+ "id": 23899,
+ "start": 11229.94,
+ "end": 11230.5,
+ "text": "underway."
+ },
+ {
+ "id": 23900,
+ "start": 11230.5,
+ "end": 11230.96,
+ "text": "I"
+ },
+ {
+ "id": 23901,
+ "start": 11230.96,
+ "end": 11231.48,
+ "text": "imagine"
+ },
+ {
+ "id": 23902,
+ "start": 11231.48,
+ "end": 11231.7,
+ "text": "we'll"
+ },
+ {
+ "id": 23903,
+ "start": 11231.7,
+ "end": 11231.94,
+ "text": "find"
+ },
+ {
+ "id": 23904,
+ "start": 11231.94,
+ "end": 11232.14,
+ "text": "some"
+ },
+ {
+ "id": 23905,
+ "start": 11232.14,
+ "end": 11232.46,
+ "text": "things"
+ },
+ {
+ "id": 23906,
+ "start": 11232.46,
+ "end": 11233.32,
+ "text": "and"
+ },
+ {
+ "id": 23907,
+ "start": 11233.32,
+ "end": 11233.78,
+ "text": "we"
+ },
+ {
+ "id": 23908,
+ "start": 11233.78,
+ "end": 11234.06,
+ "text": "are"
+ },
+ {
+ "id": 23909,
+ "start": 11234.06,
+ "end": 11234.5,
+ "text": "committed"
+ },
+ {
+ "id": 23910,
+ "start": 11234.5,
+ "end": 11234.62,
+ "text": "to"
+ },
+ {
+ "id": 23911,
+ "start": 11234.62,
+ "end": 11235.06,
+ "text": "telling"
+ },
+ {
+ "id": 23912,
+ "start": 11235.06,
+ "end": 11235.18,
+ "text": "the"
+ },
+ {
+ "id": 23913,
+ "start": 11235.18,
+ "end": 11235.4,
+ "text": "people"
+ },
+ {
+ "id": 23914,
+ "start": 11235.4,
+ "end": 11235.52,
+ "text": "who"
+ },
+ {
+ "id": 23915,
+ "start": 11235.52,
+ "end": 11235.66,
+ "text": "are"
+ },
+ {
+ "id": 23916,
+ "start": 11235.66,
+ "end": 11236.06,
+ "text": "affected"
+ },
+ {
+ "id": 23917,
+ "start": 11236.06,
+ "end": 11236.26,
+ "text": "when"
+ },
+ {
+ "id": 23918,
+ "start": 11236.26,
+ "end": 11236.4,
+ "text": "we"
+ },
+ {
+ "id": 23919,
+ "start": 11236.4,
+ "end": 11236.64,
+ "text": "do."
+ },
+ {
+ "id": 23920,
+ "start": 11236.64,
+ "end": 11237.26,
+ "text": "I"
+ },
+ {
+ "id": 23921,
+ "start": 11237.26,
+ "end": 11237.48,
+ "text": "don't"
+ },
+ {
+ "id": 23922,
+ "start": 11237.48,
+ "end": 11237.68,
+ "text": "think"
+ },
+ {
+ "id": 23923,
+ "start": 11237.68,
+ "end": 11238.08,
+ "text": "sitting"
+ },
+ {
+ "id": 23924,
+ "start": 11238.08,
+ "end": 11238.22,
+ "text": "here"
+ },
+ {
+ "id": 23925,
+ "start": 11238.22,
+ "end": 11238.56,
+ "text": "today"
+ },
+ {
+ "id": 23926,
+ "start": 11238.56,
+ "end": 11239.22,
+ "text": "that"
+ },
+ {
+ "id": 23927,
+ "start": 11239.22,
+ "end": 11239.32,
+ "text": "we"
+ },
+ {
+ "id": 23928,
+ "start": 11239.32,
+ "end": 11239.56,
+ "text": "have"
+ },
+ {
+ "id": 23929,
+ "start": 11239.56,
+ "end": 11240.16,
+ "text": "specific"
+ },
+ {
+ "id": 23930,
+ "start": 11240.16,
+ "end": 11240.6,
+ "text": "knowledge"
+ },
+ {
+ "id": 23931,
+ "start": 11240.6,
+ "end": 11241.04,
+ "text": "of"
+ },
+ {
+ "id": 23932,
+ "start": 11241.04,
+ "end": 11242.04,
+ "text": "other"
+ },
+ {
+ "id": 23933,
+ "start": 11242.04,
+ "end": 11243.14,
+ "text": "efforts"
+ },
+ {
+ "id": 23934,
+ "start": 11243.14,
+ "end": 11243.7,
+ "text": "by"
+ },
+ {
+ "id": 23935,
+ "start": 11243.7,
+ "end": 11243.88,
+ "text": "those"
+ },
+ {
+ "id": 23936,
+ "start": 11243.88,
+ "end": 11244.22,
+ "text": "nation"
+ },
+ {
+ "id": 23937,
+ "start": 11244.22,
+ "end": 11244.52,
+ "text": "states."
+ },
+ {
+ "id": 23938,
+ "start": 11244.52,
+ "end": 11245.3,
+ "text": "But"
+ },
+ {
+ "id": 23939,
+ "start": 11245.3,
+ "end": 11245.94,
+ "text": "in"
+ },
+ {
+ "id": 23940,
+ "start": 11245.94,
+ "end": 11246.38,
+ "text": "general"
+ },
+ {
+ "id": 23941,
+ "start": 11246.38,
+ "end": 11246.62,
+ "text": "we"
+ },
+ {
+ "id": 23942,
+ "start": 11246.62,
+ "end": 11247.22,
+ "text": "assume"
+ },
+ {
+ "id": 23943,
+ "start": 11247.22,
+ "end": 11247.54,
+ "text": "that"
+ },
+ {
+ "id": 23944,
+ "start": 11247.54,
+ "end": 11248.18,
+ "text": "a"
+ },
+ {
+ "id": 23945,
+ "start": 11248.18,
+ "end": 11248.44,
+ "text": "number"
+ },
+ {
+ "id": 23946,
+ "start": 11248.44,
+ "end": 11248.54,
+ "text": "of"
+ },
+ {
+ "id": 23947,
+ "start": 11248.54,
+ "end": 11248.98,
+ "text": "countries"
+ },
+ {
+ "id": 23948,
+ "start": 11248.98,
+ "end": 11249.2,
+ "text": "are"
+ },
+ {
+ "id": 23949,
+ "start": 11249.2,
+ "end": 11249.52,
+ "text": "trying"
+ },
+ {
+ "id": 23950,
+ "start": 11249.52,
+ "end": 11249.92,
+ "text": "to"
+ },
+ {
+ "id": 23951,
+ "start": 11249.92,
+ "end": 11251,
+ "text": "abuse"
+ },
+ {
+ "id": 23952,
+ "start": 11251,
+ "end": 11251.16,
+ "text": "our"
+ },
+ {
+ "id": 23953,
+ "start": 11251.16,
+ "end": 11251.74,
+ "text": "systems"
+ },
+ {
+ "id": 23954,
+ "start": 11251.74,
+ "end": 11252.72,
+ "text": "Thank"
+ },
+ {
+ "id": 23955,
+ "start": 11252.72,
+ "end": 11252.86,
+ "text": "you,"
+ },
+ {
+ "id": 23956,
+ "start": 11252.86,
+ "end": 11253.06,
+ "text": "thank"
+ },
+ {
+ "id": 23957,
+ "start": 11253.06,
+ "end": 11255.52,
+ "text": "you,"
+ },
+ {
+ "id": 23958,
+ "start": 11255.52,
+ "end": 11256.5,
+ "text": "personal"
+ },
+ {
+ "id": 23959,
+ "start": 11256.5,
+ "end": 11257,
+ "text": "Senator"
+ },
+ {
+ "id": 23960,
+ "start": 11257,
+ "end": 11259.2,
+ "text": "Toronto."
+ },
+ {
+ "id": 23961,
+ "start": 11259.2,
+ "end": 11260.16,
+ "text": "Thank"
+ },
+ {
+ "id": 23962,
+ "start": 11260.16,
+ "end": 11260.28,
+ "text": "you,"
+ },
+ {
+ "id": 23963,
+ "start": 11260.28,
+ "end": 11260.5,
+ "text": "Mr"
+ },
+ {
+ "id": 23964,
+ "start": 11260.5,
+ "end": 11261.34,
+ "text": "Chairman,"
+ },
+ {
+ "id": 23965,
+ "start": 11261.34,
+ "end": 11262.12,
+ "text": "Mr"
+ },
+ {
+ "id": 23966,
+ "start": 11262.12,
+ "end": 11262.64,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 23967,
+ "start": 11262.64,
+ "end": 11262.98,
+ "text": "The"
+ },
+ {
+ "id": 23968,
+ "start": 11262.98,
+ "end": 11263.1,
+ "text": "U"
+ },
+ {
+ "id": 23969,
+ "start": 11263.1,
+ "end": 11263.28,
+ "text": "S"
+ },
+ {
+ "id": 23970,
+ "start": 11263.28,
+ "end": 11263.82,
+ "text": "immigration"
+ },
+ {
+ "id": 23971,
+ "start": 11263.82,
+ "end": 11264.04,
+ "text": "and"
+ },
+ {
+ "id": 23972,
+ "start": 11264.04,
+ "end": 11264.42,
+ "text": "custom"
+ },
+ {
+ "id": 23973,
+ "start": 11264.42,
+ "end": 11265.22,
+ "text": "enforcement"
+ },
+ {
+ "id": 23974,
+ "start": 11265.22,
+ "end": 11265.48,
+ "text": "has"
+ },
+ {
+ "id": 23975,
+ "start": 11265.48,
+ "end": 11266.08,
+ "text": "proposed"
+ },
+ {
+ "id": 23976,
+ "start": 11266.08,
+ "end": 11267.04,
+ "text": "a"
+ },
+ {
+ "id": 23977,
+ "start": 11267.04,
+ "end": 11267.36,
+ "text": "new"
+ },
+ {
+ "id": 23978,
+ "start": 11267.36,
+ "end": 11268.18,
+ "text": "extreme"
+ },
+ {
+ "id": 23979,
+ "start": 11268.18,
+ "end": 11268.48,
+ "text": "vetting"
+ },
+ {
+ "id": 23980,
+ "start": 11268.48,
+ "end": 11268.98,
+ "text": "initiative"
+ },
+ {
+ "id": 23981,
+ "start": 11268.98,
+ "end": 11269.2,
+ "text": "which"
+ },
+ {
+ "id": 23982,
+ "start": 11269.2,
+ "end": 11269.44,
+ "text": "they"
+ },
+ {
+ "id": 23983,
+ "start": 11269.44,
+ "end": 11269.66,
+ "text": "have"
+ },
+ {
+ "id": 23984,
+ "start": 11269.66,
+ "end": 11270.16,
+ "text": "renamed"
+ },
+ {
+ "id": 23985,
+ "start": 11270.16,
+ "end": 11270.48,
+ "text": "the"
+ },
+ {
+ "id": 23986,
+ "start": 11270.48,
+ "end": 11271.38,
+ "text": "Visa"
+ },
+ {
+ "id": 23987,
+ "start": 11271.38,
+ "end": 11272.24,
+ "text": "lifecycle"
+ },
+ {
+ "id": 23988,
+ "start": 11272.24,
+ "end": 11273.04,
+ "text": "vetting"
+ },
+ {
+ "id": 23989,
+ "start": 11273.04,
+ "end": 11273.26,
+ "text": "that"
+ },
+ {
+ "id": 23990,
+ "start": 11273.26,
+ "end": 11273.5,
+ "text": "sounds"
+ },
+ {
+ "id": 23991,
+ "start": 11273.5,
+ "end": 11273.78,
+ "text": "less"
+ },
+ {
+ "id": 23992,
+ "start": 11273.78,
+ "end": 11274.18,
+ "text": "scary."
+ },
+ {
+ "id": 23993,
+ "start": 11274.18,
+ "end": 11274.62,
+ "text": "They"
+ },
+ {
+ "id": 23994,
+ "start": 11274.62,
+ "end": 11274.74,
+ "text": "have"
+ },
+ {
+ "id": 23995,
+ "start": 11274.74,
+ "end": 11275.02,
+ "text": "already"
+ },
+ {
+ "id": 23996,
+ "start": 11275.02,
+ "end": 11275.2,
+ "text": "held"
+ },
+ {
+ "id": 23997,
+ "start": 11275.2,
+ "end": 11275.32,
+ "text": "an"
+ },
+ {
+ "id": 23998,
+ "start": 11275.32,
+ "end": 11275.88,
+ "text": "industry"
+ },
+ {
+ "id": 23999,
+ "start": 11275.88,
+ "end": 11276.22,
+ "text": "day"
+ },
+ {
+ "id": 24000,
+ "start": 11276.22,
+ "end": 11276.52,
+ "text": "that"
+ },
+ {
+ "id": 24001,
+ "start": 11276.52,
+ "end": 11276.78,
+ "text": "they"
+ },
+ {
+ "id": 24002,
+ "start": 11276.78,
+ "end": 11277.54,
+ "text": "advertise"
+ },
+ {
+ "id": 24003,
+ "start": 11277.54,
+ "end": 11278.08,
+ "text": "on"
+ },
+ {
+ "id": 24004,
+ "start": 11278.08,
+ "end": 11278.2,
+ "text": "the"
+ },
+ {
+ "id": 24005,
+ "start": 11278.2,
+ "end": 11278.48,
+ "text": "federal"
+ },
+ {
+ "id": 24006,
+ "start": 11278.48,
+ "end": 11279.04,
+ "text": "contracting"
+ },
+ {
+ "id": 24007,
+ "start": 11279.04,
+ "end": 11279.82,
+ "text": "website"
+ },
+ {
+ "id": 24008,
+ "start": 11279.82,
+ "end": 11279.92,
+ "text": "to"
+ },
+ {
+ "id": 24009,
+ "start": 11279.92,
+ "end": 11280.16,
+ "text": "get"
+ },
+ {
+ "id": 24010,
+ "start": 11280.16,
+ "end": 11280.7,
+ "text": "from"
+ },
+ {
+ "id": 24011,
+ "start": 11280.7,
+ "end": 11280.94,
+ "text": "tech"
+ },
+ {
+ "id": 24012,
+ "start": 11280.94,
+ "end": 11281.4,
+ "text": "companies"
+ },
+ {
+ "id": 24013,
+ "start": 11281.4,
+ "end": 11282.14,
+ "text": "on"
+ },
+ {
+ "id": 24014,
+ "start": 11282.14,
+ "end": 11282.26,
+ "text": "the"
+ },
+ {
+ "id": 24015,
+ "start": 11282.26,
+ "end": 11282.48,
+ "text": "best"
+ },
+ {
+ "id": 24016,
+ "start": 11282.48,
+ "end": 11282.74,
+ "text": "way"
+ },
+ {
+ "id": 24017,
+ "start": 11282.74,
+ "end": 11282.88,
+ "text": "to"
+ },
+ {
+ "id": 24018,
+ "start": 11282.88,
+ "end": 11283.22,
+ "text": "among"
+ },
+ {
+ "id": 24019,
+ "start": 11283.22,
+ "end": 11283.46,
+ "text": "other"
+ },
+ {
+ "id": 24020,
+ "start": 11283.46,
+ "end": 11283.72,
+ "text": "things"
+ },
+ {
+ "id": 24021,
+ "start": 11283.72,
+ "end": 11283.88,
+ "text": "and"
+ },
+ {
+ "id": 24022,
+ "start": 11283.88,
+ "end": 11284.56,
+ "text": "encoding"
+ },
+ {
+ "id": 24023,
+ "start": 11284.56,
+ "end": 11285.1,
+ "text": "ice"
+ },
+ {
+ "id": 24024,
+ "start": 11285.1,
+ "end": 11286.2,
+ "text": "exploit"
+ },
+ {
+ "id": 24025,
+ "start": 11286.2,
+ "end": 11286.72,
+ "text": "publicly"
+ },
+ {
+ "id": 24026,
+ "start": 11286.72,
+ "end": 11287.18,
+ "text": "available"
+ },
+ {
+ "id": 24027,
+ "start": 11287.18,
+ "end": 11287.8,
+ "text": "information,"
+ },
+ {
+ "id": 24028,
+ "start": 11287.8,
+ "end": 11288.1,
+ "text": "such"
+ },
+ {
+ "id": 24029,
+ "start": 11288.1,
+ "end": 11288.22,
+ "text": "as"
+ },
+ {
+ "id": 24030,
+ "start": 11288.22,
+ "end": 11288.72,
+ "text": "media"
+ },
+ {
+ "id": 24031,
+ "start": 11288.72,
+ "end": 11289.16,
+ "text": "blogs,"
+ },
+ {
+ "id": 24032,
+ "start": 11289.16,
+ "end": 11289.52,
+ "text": "public"
+ },
+ {
+ "id": 24033,
+ "start": 11289.52,
+ "end": 11289.9,
+ "text": "hearings,"
+ },
+ {
+ "id": 24034,
+ "start": 11289.9,
+ "end": 11290.58,
+ "text": "conferences,"
+ },
+ {
+ "id": 24035,
+ "start": 11290.58,
+ "end": 11291.18,
+ "text": "academic,"
+ },
+ {
+ "id": 24036,
+ "start": 11291.18,
+ "end": 11291.72,
+ "text": "websites,"
+ },
+ {
+ "id": 24037,
+ "start": 11291.72,
+ "end": 11292.54,
+ "text": "social"
+ },
+ {
+ "id": 24038,
+ "start": 11292.54,
+ "end": 11292.84,
+ "text": "media,"
+ },
+ {
+ "id": 24039,
+ "start": 11292.84,
+ "end": 11293.34,
+ "text": "websites"
+ },
+ {
+ "id": 24040,
+ "start": 11293.34,
+ "end": 11293.56,
+ "text": "such"
+ },
+ {
+ "id": 24041,
+ "start": 11293.56,
+ "end": 11293.7,
+ "text": "as"
+ },
+ {
+ "id": 24042,
+ "start": 11293.7,
+ "end": 11294.14,
+ "text": "Twitter"
+ },
+ {
+ "id": 24043,
+ "start": 11294.14,
+ "end": 11294.62,
+ "text": "Facebook"
+ },
+ {
+ "id": 24044,
+ "start": 11294.62,
+ "end": 11294.78,
+ "text": "and"
+ },
+ {
+ "id": 24045,
+ "start": 11294.78,
+ "end": 11295.3,
+ "text": "LinkedIn"
+ },
+ {
+ "id": 24046,
+ "start": 11295.3,
+ "end": 11295.8,
+ "text": "to"
+ },
+ {
+ "id": 24047,
+ "start": 11295.8,
+ "end": 11296.34,
+ "text": "extract"
+ },
+ {
+ "id": 24048,
+ "start": 11296.34,
+ "end": 11296.84,
+ "text": "pertinent"
+ },
+ {
+ "id": 24049,
+ "start": 11296.84,
+ "end": 11297.42,
+ "text": "information"
+ },
+ {
+ "id": 24050,
+ "start": 11297.42,
+ "end": 11297.9,
+ "text": "regarding"
+ },
+ {
+ "id": 24051,
+ "start": 11297.9,
+ "end": 11298.98,
+ "text": "targets"
+ },
+ {
+ "id": 24052,
+ "start": 11298.98,
+ "end": 11299.72,
+ "text": "and"
+ },
+ {
+ "id": 24053,
+ "start": 11299.72,
+ "end": 11300.46,
+ "text": "basically"
+ },
+ {
+ "id": 24054,
+ "start": 11300.46,
+ "end": 11300.92,
+ "text": "what"
+ },
+ {
+ "id": 24055,
+ "start": 11300.92,
+ "end": 11301.9,
+ "text": "they"
+ },
+ {
+ "id": 24056,
+ "start": 11301.9,
+ "end": 11302.3,
+ "text": "want"
+ },
+ {
+ "id": 24057,
+ "start": 11302.3,
+ "end": 11302.5,
+ "text": "to"
+ },
+ {
+ "id": 24058,
+ "start": 11302.5,
+ "end": 11302.88,
+ "text": "do"
+ },
+ {
+ "id": 24059,
+ "start": 11302.88,
+ "end": 11303.88,
+ "text": "with"
+ },
+ {
+ "id": 24060,
+ "start": 11303.88,
+ "end": 11304.1,
+ "text": "these"
+ },
+ {
+ "id": 24061,
+ "start": 11304.1,
+ "end": 11304.52,
+ "text": "targets"
+ },
+ {
+ "id": 24062,
+ "start": 11304.52,
+ "end": 11304.86,
+ "text": "to"
+ },
+ {
+ "id": 24063,
+ "start": 11304.86,
+ "end": 11305.62,
+ "text": "determine"
+ },
+ {
+ "id": 24064,
+ "start": 11305.62,
+ "end": 11306.1,
+ "text": "and"
+ },
+ {
+ "id": 24065,
+ "start": 11306.1,
+ "end": 11306.38,
+ "text": "again,"
+ },
+ {
+ "id": 24066,
+ "start": 11306.38,
+ "end": 11307.02,
+ "text": "including"
+ },
+ {
+ "id": 24067,
+ "start": 11307.02,
+ "end": 11307.32,
+ "text": "the"
+ },
+ {
+ "id": 24068,
+ "start": 11307.32,
+ "end": 11307.8,
+ "text": "ISIS"
+ },
+ {
+ "id": 24069,
+ "start": 11307.8,
+ "end": 11308.36,
+ "text": "own"
+ },
+ {
+ "id": 24070,
+ "start": 11308.36,
+ "end": 11309.22,
+ "text": "document"
+ },
+ {
+ "id": 24071,
+ "start": 11309.22,
+ "end": 11309.82,
+ "text": "they"
+ },
+ {
+ "id": 24072,
+ "start": 11309.82,
+ "end": 11310.7,
+ "text": "want"
+ },
+ {
+ "id": 24073,
+ "start": 11310.7,
+ "end": 11311.56,
+ "text": "ice"
+ },
+ {
+ "id": 24074,
+ "start": 11311.56,
+ "end": 11311.76,
+ "text": "has"
+ },
+ {
+ "id": 24075,
+ "start": 11311.76,
+ "end": 11311.96,
+ "text": "been"
+ },
+ {
+ "id": 24076,
+ "start": 11311.96,
+ "end": 11312.62,
+ "text": "directed"
+ },
+ {
+ "id": 24077,
+ "start": 11312.62,
+ "end": 11312.76,
+ "text": "to"
+ },
+ {
+ "id": 24078,
+ "start": 11312.76,
+ "end": 11313.2,
+ "text": "develop"
+ },
+ {
+ "id": 24079,
+ "start": 11313.2,
+ "end": 11313.98,
+ "text": "processes"
+ },
+ {
+ "id": 24080,
+ "start": 11313.98,
+ "end": 11314.28,
+ "text": "that"
+ },
+ {
+ "id": 24081,
+ "start": 11314.28,
+ "end": 11315.76,
+ "text": "determine"
+ },
+ {
+ "id": 24082,
+ "start": 11315.76,
+ "end": 11316.68,
+ "text": "and"
+ },
+ {
+ "id": 24083,
+ "start": 11316.68,
+ "end": 11317.36,
+ "text": "evaluate"
+ },
+ {
+ "id": 24084,
+ "start": 11317.36,
+ "end": 11317.54,
+ "text": "an"
+ },
+ {
+ "id": 24085,
+ "start": 11317.54,
+ "end": 11318.2,
+ "text": "applicant."
+ },
+ {
+ "id": 24086,
+ "start": 11318.2,
+ "end": 11318.94,
+ "text": "I"
+ },
+ {
+ "id": 24087,
+ "start": 11318.94,
+ "end": 11319.5,
+ "text": "targets"
+ },
+ {
+ "id": 24088,
+ "start": 11319.5,
+ "end": 11320.24,
+ "text": "probability"
+ },
+ {
+ "id": 24089,
+ "start": 11320.24,
+ "end": 11320.36,
+ "text": "of"
+ },
+ {
+ "id": 24090,
+ "start": 11320.36,
+ "end": 11320.9,
+ "text": "becoming"
+ },
+ {
+ "id": 24091,
+ "start": 11320.9,
+ "end": 11321.18,
+ "text": "a"
+ },
+ {
+ "id": 24092,
+ "start": 11321.18,
+ "end": 11321.86,
+ "text": "positively"
+ },
+ {
+ "id": 24093,
+ "start": 11321.86,
+ "end": 11322.46,
+ "text": "contributing"
+ },
+ {
+ "id": 24094,
+ "start": 11322.46,
+ "end": 11322.78,
+ "text": "member"
+ },
+ {
+ "id": 24095,
+ "start": 11322.78,
+ "end": 11322.9,
+ "text": "of"
+ },
+ {
+ "id": 24096,
+ "start": 11322.9,
+ "end": 11323.84,
+ "text": "society"
+ },
+ {
+ "id": 24097,
+ "start": 11323.84,
+ "end": 11324.28,
+ "text": "as"
+ },
+ {
+ "id": 24098,
+ "start": 11324.28,
+ "end": 11324.48,
+ "text": "well."
+ },
+ {
+ "id": 24099,
+ "start": 11324.48,
+ "end": 11324.6,
+ "text": "As"
+ },
+ {
+ "id": 24100,
+ "start": 11324.6,
+ "end": 11324.78,
+ "text": "their"
+ },
+ {
+ "id": 24101,
+ "start": 11324.78,
+ "end": 11325.22,
+ "text": "ability"
+ },
+ {
+ "id": 24102,
+ "start": 11325.22,
+ "end": 11325.42,
+ "text": "to"
+ },
+ {
+ "id": 24103,
+ "start": 11325.42,
+ "end": 11326,
+ "text": "contribute"
+ },
+ {
+ "id": 24104,
+ "start": 11326,
+ "end": 11326.16,
+ "text": "to"
+ },
+ {
+ "id": 24105,
+ "start": 11326.16,
+ "end": 11326.58,
+ "text": "national"
+ },
+ {
+ "id": 24106,
+ "start": 11326.58,
+ "end": 11326.92,
+ "text": "interest"
+ },
+ {
+ "id": 24107,
+ "start": 11326.92,
+ "end": 11327.06,
+ "text": "in"
+ },
+ {
+ "id": 24108,
+ "start": 11327.06,
+ "end": 11327.28,
+ "text": "order"
+ },
+ {
+ "id": 24109,
+ "start": 11327.28,
+ "end": 11327.4,
+ "text": "to"
+ },
+ {
+ "id": 24110,
+ "start": 11327.4,
+ "end": 11327.6,
+ "text": "meet"
+ },
+ {
+ "id": 24111,
+ "start": 11327.6,
+ "end": 11327.9,
+ "text": "the"
+ },
+ {
+ "id": 24112,
+ "start": 11327.9,
+ "end": 11328.48,
+ "text": "executive,"
+ },
+ {
+ "id": 24113,
+ "start": 11328.48,
+ "end": 11328.7,
+ "text": "order"
+ },
+ {
+ "id": 24114,
+ "start": 11328.7,
+ "end": 11329.08,
+ "text": "does"
+ },
+ {
+ "id": 24115,
+ "start": 11329.08,
+ "end": 11329.18,
+ "text": "the"
+ },
+ {
+ "id": 24116,
+ "start": 11329.18,
+ "end": 11329.62,
+ "text": "president"
+ },
+ {
+ "id": 24117,
+ "start": 11329.62,
+ "end": 11330.06,
+ "text": "executive"
+ },
+ {
+ "id": 24118,
+ "start": 11330.06,
+ "end": 11330.68,
+ "text": "order"
+ },
+ {
+ "id": 24119,
+ "start": 11330.68,
+ "end": 11331.14,
+ "text": "and"
+ },
+ {
+ "id": 24120,
+ "start": 11331.14,
+ "end": 11331.48,
+ "text": "then"
+ },
+ {
+ "id": 24121,
+ "start": 11331.48,
+ "end": 11331.86,
+ "text": "ice"
+ },
+ {
+ "id": 24122,
+ "start": 11331.86,
+ "end": 11332.14,
+ "text": "must"
+ },
+ {
+ "id": 24123,
+ "start": 11332.14,
+ "end": 11332.56,
+ "text": "also"
+ },
+ {
+ "id": 24124,
+ "start": 11332.56,
+ "end": 11333.04,
+ "text": "developed"
+ },
+ {
+ "id": 24125,
+ "start": 11333.04,
+ "end": 11333.22,
+ "text": "a"
+ },
+ {
+ "id": 24126,
+ "start": 11333.22,
+ "end": 11333.72,
+ "text": "mechanism"
+ },
+ {
+ "id": 24127,
+ "start": 11333.72,
+ "end": 11333.86,
+ "text": "or"
+ },
+ {
+ "id": 24128,
+ "start": 11333.86,
+ "end": 11334.58,
+ "text": "methodology"
+ },
+ {
+ "id": 24129,
+ "start": 11334.58,
+ "end": 11334.78,
+ "text": "that"
+ },
+ {
+ "id": 24130,
+ "start": 11334.78,
+ "end": 11335.14,
+ "text": "allows"
+ },
+ {
+ "id": 24131,
+ "start": 11335.14,
+ "end": 11335.32,
+ "text": "them"
+ },
+ {
+ "id": 24132,
+ "start": 11335.32,
+ "end": 11335.46,
+ "text": "to"
+ },
+ {
+ "id": 24133,
+ "start": 11335.46,
+ "end": 11335.98,
+ "text": "assess"
+ },
+ {
+ "id": 24134,
+ "start": 11335.98,
+ "end": 11336.38,
+ "text": "whether"
+ },
+ {
+ "id": 24135,
+ "start": 11336.38,
+ "end": 11336.66,
+ "text": "an"
+ },
+ {
+ "id": 24136,
+ "start": 11336.66,
+ "end": 11337.24,
+ "text": "applicant"
+ },
+ {
+ "id": 24137,
+ "start": 11337.24,
+ "end": 11338.16,
+ "text": "intense"
+ },
+ {
+ "id": 24138,
+ "start": 11338.16,
+ "end": 11338.58,
+ "text": "to"
+ },
+ {
+ "id": 24139,
+ "start": 11338.58,
+ "end": 11339.22,
+ "text": "commit"
+ },
+ {
+ "id": 24140,
+ "start": 11339.22,
+ "end": 11339.7,
+ "text": "criminal"
+ },
+ {
+ "id": 24141,
+ "start": 11339.7,
+ "end": 11339.9,
+ "text": "or"
+ },
+ {
+ "id": 24142,
+ "start": 11339.9,
+ "end": 11340.42,
+ "text": "terrorists"
+ },
+ {
+ "id": 24143,
+ "start": 11340.42,
+ "end": 11340.76,
+ "text": "acts"
+ },
+ {
+ "id": 24144,
+ "start": 11340.76,
+ "end": 11341.18,
+ "text": "after"
+ },
+ {
+ "id": 24145,
+ "start": 11341.18,
+ "end": 11341.62,
+ "text": "entering"
+ },
+ {
+ "id": 24146,
+ "start": 11341.62,
+ "end": 11341.78,
+ "text": "the"
+ },
+ {
+ "id": 24147,
+ "start": 11341.78,
+ "end": 11342.22,
+ "text": "United"
+ },
+ {
+ "id": 24148,
+ "start": 11342.22,
+ "end": 11342.7,
+ "text": "States."
+ },
+ {
+ "id": 24149,
+ "start": 11342.7,
+ "end": 11343.48,
+ "text": "A"
+ },
+ {
+ "id": 24150,
+ "start": 11343.48,
+ "end": 11343.84,
+ "text": "question"
+ },
+ {
+ "id": 24151,
+ "start": 11343.84,
+ "end": 11344.02,
+ "text": "to"
+ },
+ {
+ "id": 24152,
+ "start": 11344.02,
+ "end": 11344.2,
+ "text": "you"
+ },
+ {
+ "id": 24153,
+ "start": 11344.2,
+ "end": 11344.44,
+ "text": "is"
+ },
+ {
+ "id": 24154,
+ "start": 11344.44,
+ "end": 11344.72,
+ "text": "does"
+ },
+ {
+ "id": 24155,
+ "start": 11344.72,
+ "end": 11345.24,
+ "text": "Facebook"
+ },
+ {
+ "id": 24156,
+ "start": 11345.24,
+ "end": 11345.52,
+ "text": "plan"
+ },
+ {
+ "id": 24157,
+ "start": 11345.52,
+ "end": 11345.62,
+ "text": "to"
+ },
+ {
+ "id": 24158,
+ "start": 11345.62,
+ "end": 11346.32,
+ "text": "cooperate"
+ },
+ {
+ "id": 24159,
+ "start": 11346.32,
+ "end": 11346.54,
+ "text": "with"
+ },
+ {
+ "id": 24160,
+ "start": 11346.54,
+ "end": 11346.82,
+ "text": "this"
+ },
+ {
+ "id": 24161,
+ "start": 11346.82,
+ "end": 11347.34,
+ "text": "extreme"
+ },
+ {
+ "id": 24162,
+ "start": 11347.34,
+ "end": 11347.64,
+ "text": "vetting"
+ },
+ {
+ "id": 24163,
+ "start": 11347.64,
+ "end": 11348.2,
+ "text": "initiative"
+ },
+ {
+ "id": 24164,
+ "start": 11348.2,
+ "end": 11348.82,
+ "text": "and"
+ },
+ {
+ "id": 24165,
+ "start": 11348.82,
+ "end": 11349.12,
+ "text": "help"
+ },
+ {
+ "id": 24166,
+ "start": 11349.12,
+ "end": 11349.46,
+ "text": "the"
+ },
+ {
+ "id": 24167,
+ "start": 11349.46,
+ "end": 11349.86,
+ "text": "Trump"
+ },
+ {
+ "id": 24168,
+ "start": 11349.86,
+ "end": 11350.5,
+ "text": "Administration"
+ },
+ {
+ "id": 24169,
+ "start": 11350.5,
+ "end": 11350.96,
+ "text": "target"
+ },
+ {
+ "id": 24170,
+ "start": 11350.96,
+ "end": 11351.28,
+ "text": "people"
+ },
+ {
+ "id": 24171,
+ "start": 11351.28,
+ "end": 11351.5,
+ "text": "for"
+ },
+ {
+ "id": 24172,
+ "start": 11351.5,
+ "end": 11352.2,
+ "text": "deportation"
+ },
+ {
+ "id": 24173,
+ "start": 11352.2,
+ "end": 11352.36,
+ "text": "or"
+ },
+ {
+ "id": 24174,
+ "start": 11352.36,
+ "end": 11352.64,
+ "text": "other"
+ },
+ {
+ "id": 24175,
+ "start": 11352.64,
+ "end": 11352.9,
+ "text": "ice"
+ },
+ {
+ "id": 24176,
+ "start": 11352.9,
+ "end": 11355.72,
+ "text": "enforcement."
+ },
+ {
+ "id": 24177,
+ "start": 11355.72,
+ "end": 11356.68,
+ "text": "Senator,"
+ },
+ {
+ "id": 24178,
+ "start": 11356.68,
+ "end": 11356.76,
+ "text": "I"
+ },
+ {
+ "id": 24179,
+ "start": 11356.76,
+ "end": 11356.92,
+ "text": "don't"
+ },
+ {
+ "id": 24180,
+ "start": 11356.92,
+ "end": 11357.06,
+ "text": "know"
+ },
+ {
+ "id": 24181,
+ "start": 11357.06,
+ "end": 11357.2,
+ "text": "that"
+ },
+ {
+ "id": 24182,
+ "start": 11357.2,
+ "end": 11357.4,
+ "text": "we've"
+ },
+ {
+ "id": 24183,
+ "start": 11357.4,
+ "end": 11357.58,
+ "text": "had"
+ },
+ {
+ "id": 24184,
+ "start": 11357.58,
+ "end": 11358.12,
+ "text": "specific"
+ },
+ {
+ "id": 24185,
+ "start": 11358.12,
+ "end": 11358.82,
+ "text": "conversations"
+ },
+ {
+ "id": 24186,
+ "start": 11358.82,
+ "end": 11359.14,
+ "text": "around"
+ },
+ {
+ "id": 24187,
+ "start": 11359.14,
+ "end": 11359.36,
+ "text": "that"
+ },
+ {
+ "id": 24188,
+ "start": 11359.36,
+ "end": 11360.56,
+ "text": "in"
+ },
+ {
+ "id": 24189,
+ "start": 11360.56,
+ "end": 11360.88,
+ "text": "general,"
+ },
+ {
+ "id": 24190,
+ "start": 11360.88,
+ "end": 11361.1,
+ "text": "you"
+ },
+ {
+ "id": 24191,
+ "start": 11361.1,
+ "end": 11361.24,
+ "text": "are"
+ },
+ {
+ "id": 24192,
+ "start": 11361.24,
+ "end": 11361.56,
+ "text": "asked"
+ },
+ {
+ "id": 24193,
+ "start": 11361.56,
+ "end": 11363.02,
+ "text": "to"
+ },
+ {
+ "id": 24194,
+ "start": 11363.02,
+ "end": 11363.98,
+ "text": "provide"
+ },
+ {
+ "id": 24195,
+ "start": 11363.98,
+ "end": 11364.12,
+ "text": "or"
+ },
+ {
+ "id": 24196,
+ "start": 11364.12,
+ "end": 11364.82,
+ "text": "cooperate"
+ },
+ {
+ "id": 24197,
+ "start": 11364.82,
+ "end": 11365.1,
+ "text": "with"
+ },
+ {
+ "id": 24198,
+ "start": 11365.1,
+ "end": 11365.38,
+ "text": "ice"
+ },
+ {
+ "id": 24199,
+ "start": 11365.38,
+ "end": 11365.78,
+ "text": "so"
+ },
+ {
+ "id": 24200,
+ "start": 11365.78,
+ "end": 11365.94,
+ "text": "that"
+ },
+ {
+ "id": 24201,
+ "start": 11365.94,
+ "end": 11366.1,
+ "text": "they"
+ },
+ {
+ "id": 24202,
+ "start": 11366.1,
+ "end": 11366.3,
+ "text": "could"
+ },
+ {
+ "id": 24203,
+ "start": 11366.3,
+ "end": 11366.72,
+ "text": "determine"
+ },
+ {
+ "id": 24204,
+ "start": 11366.72,
+ "end": 11366.98,
+ "text": "whether"
+ },
+ {
+ "id": 24205,
+ "start": 11366.98,
+ "end": 11367.38,
+ "text": "somebody's"
+ },
+ {
+ "id": 24206,
+ "start": 11367.38,
+ "end": 11367.58,
+ "text": "going"
+ },
+ {
+ "id": 24207,
+ "start": 11367.58,
+ "end": 11367.68,
+ "text": "to"
+ },
+ {
+ "id": 24208,
+ "start": 11367.68,
+ "end": 11368.52,
+ "text": "commit"
+ },
+ {
+ "id": 24209,
+ "start": 11368.52,
+ "end": 11368.6,
+ "text": "a"
+ },
+ {
+ "id": 24210,
+ "start": 11368.6,
+ "end": 11369.04,
+ "text": "crime"
+ },
+ {
+ "id": 24211,
+ "start": 11369.04,
+ "end": 11369.36,
+ "text": "for"
+ },
+ {
+ "id": 24212,
+ "start": 11369.36,
+ "end": 11369.8,
+ "text": "example"
+ },
+ {
+ "id": 24213,
+ "start": 11369.8,
+ "end": 11370.02,
+ "text": "or"
+ },
+ {
+ "id": 24214,
+ "start": 11370.02,
+ "end": 11370.6,
+ "text": "become"
+ },
+ {
+ "id": 24215,
+ "start": 11370.6,
+ "end": 11371.04,
+ "text": "fruitful"
+ },
+ {
+ "id": 24216,
+ "start": 11371.04,
+ "end": 11371.36,
+ "text": "members"
+ },
+ {
+ "id": 24217,
+ "start": 11371.36,
+ "end": 11371.5,
+ "text": "of"
+ },
+ {
+ "id": 24218,
+ "start": 11371.5,
+ "end": 11371.72,
+ "text": "our"
+ },
+ {
+ "id": 24219,
+ "start": 11371.72,
+ "end": 11372.1,
+ "text": "society,"
+ },
+ {
+ "id": 24220,
+ "start": 11372.1,
+ "end": 11372.34,
+ "text": "would"
+ },
+ {
+ "id": 24221,
+ "start": 11372.34,
+ "end": 11372.9,
+ "text": "you?"
+ },
+ {
+ "id": 24222,
+ "start": 11372.9,
+ "end": 11373.88,
+ "text": "We"
+ },
+ {
+ "id": 24223,
+ "start": 11373.88,
+ "end": 11374.06,
+ "text": "would"
+ },
+ {
+ "id": 24224,
+ "start": 11374.06,
+ "end": 11374.3,
+ "text": "not"
+ },
+ {
+ "id": 24225,
+ "start": 11374.3,
+ "end": 11375.14,
+ "text": "proactively"
+ },
+ {
+ "id": 24226,
+ "start": 11375.14,
+ "end": 11375.32,
+ "text": "do"
+ },
+ {
+ "id": 24227,
+ "start": 11375.32,
+ "end": 11375.52,
+ "text": "that."
+ },
+ {
+ "id": 24228,
+ "start": 11375.52,
+ "end": 11376.3,
+ "text": "We"
+ },
+ {
+ "id": 24229,
+ "start": 11376.3,
+ "end": 11376.82,
+ "text": "cooperate"
+ },
+ {
+ "id": 24230,
+ "start": 11376.82,
+ "end": 11376.98,
+ "text": "with"
+ },
+ {
+ "id": 24231,
+ "start": 11376.98,
+ "end": 11377.14,
+ "text": "law"
+ },
+ {
+ "id": 24232,
+ "start": 11377.14,
+ "end": 11378.04,
+ "text": "enforcement"
+ },
+ {
+ "id": 24233,
+ "start": 11378.04,
+ "end": 11378.46,
+ "text": "in"
+ },
+ {
+ "id": 24234,
+ "start": 11378.46,
+ "end": 11378.72,
+ "text": "two"
+ },
+ {
+ "id": 24235,
+ "start": 11378.72,
+ "end": 11379.18,
+ "text": "cases."
+ },
+ {
+ "id": 24236,
+ "start": 11379.18,
+ "end": 11379.98,
+ "text": "1"
+ },
+ {
+ "id": 24237,
+ "start": 11379.98,
+ "end": 11380.2,
+ "text": "is"
+ },
+ {
+ "id": 24238,
+ "start": 11380.2,
+ "end": 11380.36,
+ "text": "if"
+ },
+ {
+ "id": 24239,
+ "start": 11380.36,
+ "end": 11380.48,
+ "text": "we"
+ },
+ {
+ "id": 24240,
+ "start": 11380.48,
+ "end": 11380.88,
+ "text": "become"
+ },
+ {
+ "id": 24241,
+ "start": 11380.88,
+ "end": 11381.2,
+ "text": "aware"
+ },
+ {
+ "id": 24242,
+ "start": 11381.2,
+ "end": 11381.94,
+ "text": "of"
+ },
+ {
+ "id": 24243,
+ "start": 11381.94,
+ "end": 11382.14,
+ "text": "an"
+ },
+ {
+ "id": 24244,
+ "start": 11382.14,
+ "end": 11382.52,
+ "text": "imminent"
+ },
+ {
+ "id": 24245,
+ "start": 11382.52,
+ "end": 11382.8,
+ "text": "threat"
+ },
+ {
+ "id": 24246,
+ "start": 11382.8,
+ "end": 11382.9,
+ "text": "of"
+ },
+ {
+ "id": 24247,
+ "start": 11382.9,
+ "end": 11383.26,
+ "text": "harm."
+ },
+ {
+ "id": 24248,
+ "start": 11383.26,
+ "end": 11383.8,
+ "text": "Then"
+ },
+ {
+ "id": 24249,
+ "start": 11383.8,
+ "end": 11383.94,
+ "text": "we"
+ },
+ {
+ "id": 24250,
+ "start": 11383.94,
+ "end": 11384.2,
+ "text": "will"
+ },
+ {
+ "id": 24251,
+ "start": 11384.2,
+ "end": 11384.84,
+ "text": "proactively"
+ },
+ {
+ "id": 24252,
+ "start": 11384.84,
+ "end": 11385.12,
+ "text": "reach"
+ },
+ {
+ "id": 24253,
+ "start": 11385.12,
+ "end": 11385.26,
+ "text": "out"
+ },
+ {
+ "id": 24254,
+ "start": 11385.26,
+ "end": 11385.4,
+ "text": "to"
+ },
+ {
+ "id": 24255,
+ "start": 11385.4,
+ "end": 11385.58,
+ "text": "law"
+ },
+ {
+ "id": 24256,
+ "start": 11385.58,
+ "end": 11386.16,
+ "text": "enforcement"
+ },
+ {
+ "id": 24257,
+ "start": 11386.16,
+ "end": 11386.52,
+ "text": "as"
+ },
+ {
+ "id": 24258,
+ "start": 11386.52,
+ "end": 11386.7,
+ "text": "we"
+ },
+ {
+ "id": 24259,
+ "start": 11386.7,
+ "end": 11387.04,
+ "text": "believe"
+ },
+ {
+ "id": 24260,
+ "start": 11387.04,
+ "end": 11387.22,
+ "text": "is"
+ },
+ {
+ "id": 24261,
+ "start": 11387.22,
+ "end": 11387.36,
+ "text": "our"
+ },
+ {
+ "id": 24262,
+ "start": 11387.36,
+ "end": 11388.1,
+ "text": "responsibility"
+ },
+ {
+ "id": 24263,
+ "start": 11388.1,
+ "end": 11388.22,
+ "text": "to"
+ },
+ {
+ "id": 24264,
+ "start": 11388.22,
+ "end": 11388.4,
+ "text": "do."
+ },
+ {
+ "id": 24265,
+ "start": 11388.4,
+ "end": 11389.1,
+ "text": "The"
+ },
+ {
+ "id": 24266,
+ "start": 11389.1,
+ "end": 11389.34,
+ "text": "other"
+ },
+ {
+ "id": 24267,
+ "start": 11389.34,
+ "end": 11389.52,
+ "text": "is"
+ },
+ {
+ "id": 24268,
+ "start": 11389.52,
+ "end": 11389.66,
+ "text": "when"
+ },
+ {
+ "id": 24269,
+ "start": 11389.66,
+ "end": 11389.84,
+ "text": "law"
+ },
+ {
+ "id": 24270,
+ "start": 11389.84,
+ "end": 11390.34,
+ "text": "enforcement"
+ },
+ {
+ "id": 24271,
+ "start": 11390.34,
+ "end": 11390.64,
+ "text": "reaches"
+ },
+ {
+ "id": 24272,
+ "start": 11390.64,
+ "end": 11390.76,
+ "text": "out"
+ },
+ {
+ "id": 24273,
+ "start": 11390.76,
+ "end": 11390.9,
+ "text": "to"
+ },
+ {
+ "id": 24274,
+ "start": 11390.9,
+ "end": 11391.14,
+ "text": "us"
+ },
+ {
+ "id": 24275,
+ "start": 11391.14,
+ "end": 11391.96,
+ "text": "with"
+ },
+ {
+ "id": 24276,
+ "start": 11391.96,
+ "end": 11392.34,
+ "text": "a"
+ },
+ {
+ "id": 24277,
+ "start": 11392.34,
+ "end": 11393.32,
+ "text": "valid"
+ },
+ {
+ "id": 24278,
+ "start": 11393.32,
+ "end": 11394.08,
+ "text": "legal"
+ },
+ {
+ "id": 24279,
+ "start": 11394.08,
+ "end": 11394.74,
+ "text": "subpoena"
+ },
+ {
+ "id": 24280,
+ "start": 11394.74,
+ "end": 11395.56,
+ "text": "or"
+ },
+ {
+ "id": 24281,
+ "start": 11395.56,
+ "end": 11396.32,
+ "text": "requests"
+ },
+ {
+ "id": 24282,
+ "start": 11396.32,
+ "end": 11396.48,
+ "text": "for"
+ },
+ {
+ "id": 24283,
+ "start": 11396.48,
+ "end": 11396.78,
+ "text": "data."
+ },
+ {
+ "id": 24284,
+ "start": 11396.78,
+ "end": 11397.34,
+ "text": "In"
+ },
+ {
+ "id": 24285,
+ "start": 11397.34,
+ "end": 11397.58,
+ "text": "those"
+ },
+ {
+ "id": 24286,
+ "start": 11397.58,
+ "end": 11398,
+ "text": "cases,"
+ },
+ {
+ "id": 24287,
+ "start": 11398,
+ "end": 11398.62,
+ "text": "if"
+ },
+ {
+ "id": 24288,
+ "start": 11398.62,
+ "end": 11398.96,
+ "text": "their"
+ },
+ {
+ "id": 24289,
+ "start": 11398.96,
+ "end": 11399.46,
+ "text": "request"
+ },
+ {
+ "id": 24290,
+ "start": 11399.46,
+ "end": 11399.68,
+ "text": "is"
+ },
+ {
+ "id": 24291,
+ "start": 11399.68,
+ "end": 11400.16,
+ "text": "overly"
+ },
+ {
+ "id": 24292,
+ "start": 11400.16,
+ "end": 11400.5,
+ "text": "broad"
+ },
+ {
+ "id": 24293,
+ "start": 11400.5,
+ "end": 11400.62,
+ "text": "or"
+ },
+ {
+ "id": 24294,
+ "start": 11400.62,
+ "end": 11400.78,
+ "text": "we"
+ },
+ {
+ "id": 24295,
+ "start": 11400.78,
+ "end": 11401.06,
+ "text": "believe,"
+ },
+ {
+ "id": 24296,
+ "start": 11401.06,
+ "end": 11401.28,
+ "text": "it's"
+ },
+ {
+ "id": 24297,
+ "start": 11401.28,
+ "end": 11401.46,
+ "text": "not"
+ },
+ {
+ "id": 24298,
+ "start": 11401.46,
+ "end": 11401.52,
+ "text": "a"
+ },
+ {
+ "id": 24299,
+ "start": 11401.52,
+ "end": 11401.9,
+ "text": "legal"
+ },
+ {
+ "id": 24300,
+ "start": 11401.9,
+ "end": 11402.44,
+ "text": "request,"
+ },
+ {
+ "id": 24301,
+ "start": 11402.44,
+ "end": 11402.86,
+ "text": "then"
+ },
+ {
+ "id": 24302,
+ "start": 11402.86,
+ "end": 11403,
+ "text": "we're"
+ },
+ {
+ "id": 24303,
+ "start": 11403,
+ "end": 11403.14,
+ "text": "going"
+ },
+ {
+ "id": 24304,
+ "start": 11403.14,
+ "end": 11403.2,
+ "text": "to"
+ },
+ {
+ "id": 24305,
+ "start": 11403.2,
+ "end": 11403.36,
+ "text": "push"
+ },
+ {
+ "id": 24306,
+ "start": 11403.36,
+ "end": 11403.54,
+ "text": "back"
+ },
+ {
+ "id": 24307,
+ "start": 11403.54,
+ "end": 11404.14,
+ "text": "aggressively."
+ },
+ {
+ "id": 24308,
+ "start": 11404.14,
+ "end": 11404.4,
+ "text": "Well,"
+ },
+ {
+ "id": 24309,
+ "start": 11404.4,
+ "end": 11404.56,
+ "text": "let's"
+ },
+ {
+ "id": 24310,
+ "start": 11404.56,
+ "end": 11404.92,
+ "text": "assume"
+ },
+ {
+ "id": 24311,
+ "start": 11404.92,
+ "end": 11405.09,
+ "text": "that"
+ },
+ {
+ "id": 24312,
+ "start": 11405.09,
+ "end": 11405.45,
+ "text": "I"
+ },
+ {
+ "id": 24313,
+ "start": 11405.45,
+ "end": 11405.79,
+ "text": "don't"
+ },
+ {
+ "id": 24314,
+ "start": 11405.79,
+ "end": 11406.73,
+ "text": "have"
+ },
+ {
+ "id": 24315,
+ "start": 11406.73,
+ "end": 11407.09,
+ "text": "there's"
+ },
+ {
+ "id": 24316,
+ "start": 11407.09,
+ "end": 11407.25,
+ "text": "no"
+ },
+ {
+ "id": 24317,
+ "start": 11407.25,
+ "end": 11407.73,
+ "text": "law"
+ },
+ {
+ "id": 24318,
+ "start": 11407.73,
+ "end": 11408.05,
+ "text": "or"
+ },
+ {
+ "id": 24319,
+ "start": 11408.05,
+ "end": 11408.51,
+ "text": "rule"
+ },
+ {
+ "id": 24320,
+ "start": 11408.51,
+ "end": 11408.71,
+ "text": "that"
+ },
+ {
+ "id": 24321,
+ "start": 11408.71,
+ "end": 11409.39,
+ "text": "requires"
+ },
+ {
+ "id": 24322,
+ "start": 11409.39,
+ "end": 11410.15,
+ "text": "that"
+ },
+ {
+ "id": 24323,
+ "start": 11410.15,
+ "end": 11410.61,
+ "text": "Facebook"
+ },
+ {
+ "id": 24324,
+ "start": 11410.61,
+ "end": 11411.21,
+ "text": "cooperate"
+ },
+ {
+ "id": 24325,
+ "start": 11411.21,
+ "end": 11411.35,
+ "text": "to"
+ },
+ {
+ "id": 24326,
+ "start": 11411.35,
+ "end": 11411.59,
+ "text": "put"
+ },
+ {
+ "id": 24327,
+ "start": 11411.59,
+ "end": 11411.87,
+ "text": "to"
+ },
+ {
+ "id": 24328,
+ "start": 11411.87,
+ "end": 11412.73,
+ "text": "allow"
+ },
+ {
+ "id": 24329,
+ "start": 11412.73,
+ "end": 11412.91,
+ "text": "them"
+ },
+ {
+ "id": 24330,
+ "start": 11412.91,
+ "end": 11413.03,
+ "text": "to"
+ },
+ {
+ "id": 24331,
+ "start": 11413.03,
+ "end": 11413.21,
+ "text": "get"
+ },
+ {
+ "id": 24332,
+ "start": 11413.21,
+ "end": 11413.39,
+ "text": "this"
+ },
+ {
+ "id": 24333,
+ "start": 11413.39,
+ "end": 11413.57,
+ "text": "kind"
+ },
+ {
+ "id": 24334,
+ "start": 11413.57,
+ "end": 11413.67,
+ "text": "of"
+ },
+ {
+ "id": 24335,
+ "start": 11413.67,
+ "end": 11414.13,
+ "text": "information"
+ },
+ {
+ "id": 24336,
+ "start": 11414.13,
+ "end": 11414.35,
+ "text": "so"
+ },
+ {
+ "id": 24337,
+ "start": 11414.35,
+ "end": 11414.51,
+ "text": "that"
+ },
+ {
+ "id": 24338,
+ "start": 11414.51,
+ "end": 11414.67,
+ "text": "they"
+ },
+ {
+ "id": 24339,
+ "start": 11414.67,
+ "end": 11414.83,
+ "text": "can"
+ },
+ {
+ "id": 24340,
+ "start": 11414.83,
+ "end": 11414.99,
+ "text": "make"
+ },
+ {
+ "id": 24341,
+ "start": 11414.99,
+ "end": 11415.19,
+ "text": "those"
+ },
+ {
+ "id": 24342,
+ "start": 11415.19,
+ "end": 11415.41,
+ "text": "kinds"
+ },
+ {
+ "id": 24343,
+ "start": 11415.41,
+ "end": 11415.53,
+ "text": "of"
+ },
+ {
+ "id": 24344,
+ "start": 11415.53,
+ "end": 11416.86,
+ "text": "assessments."
+ },
+ {
+ "id": 24345,
+ "start": 11416.86,
+ "end": 11417.74,
+ "text": "It"
+ },
+ {
+ "id": 24346,
+ "start": 11417.74,
+ "end": 11418,
+ "text": "sounds"
+ },
+ {
+ "id": 24347,
+ "start": 11418,
+ "end": 11418.14,
+ "text": "to"
+ },
+ {
+ "id": 24348,
+ "start": 11418.14,
+ "end": 11418.24,
+ "text": "me"
+ },
+ {
+ "id": 24349,
+ "start": 11418.24,
+ "end": 11418.42,
+ "text": "as"
+ },
+ {
+ "id": 24350,
+ "start": 11418.42,
+ "end": 11419.38,
+ "text": "you"
+ },
+ {
+ "id": 24351,
+ "start": 11419.38,
+ "end": 11419.7,
+ "text": "would"
+ },
+ {
+ "id": 24352,
+ "start": 11419.7,
+ "end": 11420.8,
+ "text": "decline."
+ },
+ {
+ "id": 24353,
+ "start": 11420.8,
+ "end": 11421.8,
+ "text": "Senator,"
+ },
+ {
+ "id": 24354,
+ "start": 11421.8,
+ "end": 11421.94,
+ "text": "that"
+ },
+ {
+ "id": 24355,
+ "start": 11421.94,
+ "end": 11422.1,
+ "text": "is"
+ },
+ {
+ "id": 24356,
+ "start": 11422.1,
+ "end": 11423.24,
+ "text": "correct."
+ },
+ {
+ "id": 24357,
+ "start": 11423.24,
+ "end": 11424.26,
+ "text": "Is"
+ },
+ {
+ "id": 24358,
+ "start": 11424.26,
+ "end": 11424.46,
+ "text": "there"
+ },
+ {
+ "id": 24359,
+ "start": 11424.46,
+ "end": 11424.74,
+ "text": "some"
+ },
+ {
+ "id": 24360,
+ "start": 11424.74,
+ "end": 11424.96,
+ "text": "way"
+ },
+ {
+ "id": 24361,
+ "start": 11424.96,
+ "end": 11428.64,
+ "text": "that,"
+ },
+ {
+ "id": 24362,
+ "start": 11428.64,
+ "end": 11429.62,
+ "text": "well,"
+ },
+ {
+ "id": 24363,
+ "start": 11429.62,
+ "end": 11429.72,
+ "text": "I"
+ },
+ {
+ "id": 24364,
+ "start": 11429.72,
+ "end": 11429.88,
+ "text": "know"
+ },
+ {
+ "id": 24365,
+ "start": 11429.88,
+ "end": 11430.12,
+ "text": "that"
+ },
+ {
+ "id": 24366,
+ "start": 11430.12,
+ "end": 11430.36,
+ "text": "you"
+ },
+ {
+ "id": 24367,
+ "start": 11430.36,
+ "end": 11431.16,
+ "text": "determine"
+ },
+ {
+ "id": 24368,
+ "start": 11431.16,
+ "end": 11431.4,
+ "text": "what"
+ },
+ {
+ "id": 24369,
+ "start": 11431.4,
+ "end": 11431.58,
+ "text": "kind"
+ },
+ {
+ "id": 24370,
+ "start": 11431.58,
+ "end": 11431.66,
+ "text": "of"
+ },
+ {
+ "id": 24371,
+ "start": 11431.66,
+ "end": 11432.2,
+ "text": "content"
+ },
+ {
+ "id": 24372,
+ "start": 11432.2,
+ "end": 11432.48,
+ "text": "would"
+ },
+ {
+ "id": 24373,
+ "start": 11432.48,
+ "end": 11432.64,
+ "text": "be"
+ },
+ {
+ "id": 24374,
+ "start": 11432.64,
+ "end": 11433.02,
+ "text": "deemed"
+ },
+ {
+ "id": 24375,
+ "start": 11433.02,
+ "end": 11433.52,
+ "text": "harmful."
+ },
+ {
+ "id": 24376,
+ "start": 11433.52,
+ "end": 11434.28,
+ "text": "So,"
+ },
+ {
+ "id": 24377,
+ "start": 11434.28,
+ "end": 11434.42,
+ "text": "do"
+ },
+ {
+ "id": 24378,
+ "start": 11434.42,
+ "end": 11434.54,
+ "text": "you"
+ },
+ {
+ "id": 24379,
+ "start": 11434.54,
+ "end": 11434.88,
+ "text": "believe"
+ },
+ {
+ "id": 24380,
+ "start": 11434.88,
+ "end": 11435.08,
+ "text": "that"
+ },
+ {
+ "id": 24381,
+ "start": 11435.08,
+ "end": 11435.22,
+ "text": "I"
+ },
+ {
+ "id": 24382,
+ "start": 11435.22,
+ "end": 11435.56,
+ "text": "can"
+ },
+ {
+ "id": 24383,
+ "start": 11435.56,
+ "end": 11435.92,
+ "text": "even"
+ },
+ {
+ "id": 24384,
+ "start": 11435.92,
+ "end": 11436.14,
+ "text": "do"
+ },
+ {
+ "id": 24385,
+ "start": 11436.14,
+ "end": 11436.32,
+ "text": "what"
+ },
+ {
+ "id": 24386,
+ "start": 11436.32,
+ "end": 11436.48,
+ "text": "they"
+ },
+ {
+ "id": 24387,
+ "start": 11436.48,
+ "end": 11436.68,
+ "text": "are"
+ },
+ {
+ "id": 24388,
+ "start": 11436.68,
+ "end": 11437.12,
+ "text": "talking"
+ },
+ {
+ "id": 24389,
+ "start": 11437.12,
+ "end": 11437.38,
+ "text": "about"
+ },
+ {
+ "id": 24390,
+ "start": 11437.38,
+ "end": 11438.18,
+ "text": "namely"
+ },
+ {
+ "id": 24391,
+ "start": 11438.18,
+ "end": 11439.16,
+ "text": "through"
+ },
+ {
+ "id": 24392,
+ "start": 11439.16,
+ "end": 11439.2,
+ "text": "a"
+ },
+ {
+ "id": 24393,
+ "start": 11439.2,
+ "end": 11439.82,
+ "text": "combination"
+ },
+ {
+ "id": 24394,
+ "start": 11439.82,
+ "end": 11440.06,
+ "text": "of"
+ },
+ {
+ "id": 24395,
+ "start": 11440.06,
+ "end": 11440.36,
+ "text": "various"
+ },
+ {
+ "id": 24396,
+ "start": 11440.36,
+ "end": 11440.58,
+ "text": "kinds"
+ },
+ {
+ "id": 24397,
+ "start": 11440.58,
+ "end": 11440.72,
+ "text": "of"
+ },
+ {
+ "id": 24398,
+ "start": 11440.72,
+ "end": 11442.4,
+ "text": "information,"
+ },
+ {
+ "id": 24399,
+ "start": 11442.4,
+ "end": 11443.38,
+ "text": "including"
+ },
+ {
+ "id": 24400,
+ "start": 11443.38,
+ "end": 11443.94,
+ "text": "information"
+ },
+ {
+ "id": 24401,
+ "start": 11443.94,
+ "end": 11444.14,
+ "text": "that"
+ },
+ {
+ "id": 24402,
+ "start": 11444.14,
+ "end": 11444.36,
+ "text": "they"
+ },
+ {
+ "id": 24403,
+ "start": 11444.36,
+ "end": 11444.68,
+ "text": "would"
+ },
+ {
+ "id": 24404,
+ "start": 11444.68,
+ "end": 11444.86,
+ "text": "hope"
+ },
+ {
+ "id": 24405,
+ "start": 11444.86,
+ "end": 11444.94,
+ "text": "to"
+ },
+ {
+ "id": 24406,
+ "start": 11444.94,
+ "end": 11445.32,
+ "text": "obtain"
+ },
+ {
+ "id": 24407,
+ "start": 11445.32,
+ "end": 11445.64,
+ "text": "from"
+ },
+ {
+ "id": 24408,
+ "start": 11445.64,
+ "end": 11446.12,
+ "text": "entities"
+ },
+ {
+ "id": 24409,
+ "start": 11446.12,
+ "end": 11446.32,
+ "text": "such"
+ },
+ {
+ "id": 24410,
+ "start": 11446.32,
+ "end": 11446.46,
+ "text": "as"
+ },
+ {
+ "id": 24411,
+ "start": 11446.46,
+ "end": 11446.82,
+ "text": "yours"
+ },
+ {
+ "id": 24412,
+ "start": 11446.82,
+ "end": 11447.56,
+ "text": "predict,"
+ },
+ {
+ "id": 24413,
+ "start": 11447.56,
+ "end": 11447.86,
+ "text": "who"
+ },
+ {
+ "id": 24414,
+ "start": 11447.86,
+ "end": 11448.06,
+ "text": "will"
+ },
+ {
+ "id": 24415,
+ "start": 11448.06,
+ "end": 11448.34,
+ "text": "commit"
+ },
+ {
+ "id": 24416,
+ "start": 11448.34,
+ "end": 11448.68,
+ "text": "crimes"
+ },
+ {
+ "id": 24417,
+ "start": 11448.68,
+ "end": 11448.86,
+ "text": "or"
+ },
+ {
+ "id": 24418,
+ "start": 11448.86,
+ "end": 11449.18,
+ "text": "present,"
+ },
+ {
+ "id": 24419,
+ "start": 11449.18,
+ "end": 11449.26,
+ "text": "a"
+ },
+ {
+ "id": 24420,
+ "start": 11449.26,
+ "end": 11449.66,
+ "text": "national"
+ },
+ {
+ "id": 24421,
+ "start": 11449.66,
+ "end": 11450.18,
+ "text": "security"
+ },
+ {
+ "id": 24422,
+ "start": 11450.18,
+ "end": 11450.6,
+ "text": "problem."
+ },
+ {
+ "id": 24423,
+ "start": 11450.6,
+ "end": 11451.28,
+ "text": "Do"
+ },
+ {
+ "id": 24424,
+ "start": 11451.28,
+ "end": 11451.38,
+ "text": "you"
+ },
+ {
+ "id": 24425,
+ "start": 11451.38,
+ "end": 11451.54,
+ "text": "think"
+ },
+ {
+ "id": 24426,
+ "start": 11451.54,
+ "end": 11452.12,
+ "text": "that"
+ },
+ {
+ "id": 24427,
+ "start": 11452.12,
+ "end": 11452.44,
+ "text": "that's"
+ },
+ {
+ "id": 24428,
+ "start": 11452.44,
+ "end": 11452.86,
+ "text": "even"
+ },
+ {
+ "id": 24429,
+ "start": 11452.86,
+ "end": 11453.66,
+ "text": "doable?"
+ },
+ {
+ "id": 24430,
+ "start": 11453.66,
+ "end": 11454.64,
+ "text": "Senator"
+ },
+ {
+ "id": 24431,
+ "start": 11454.64,
+ "end": 11454.78,
+ "text": "I'm"
+ },
+ {
+ "id": 24432,
+ "start": 11454.78,
+ "end": 11454.96,
+ "text": "not"
+ },
+ {
+ "id": 24433,
+ "start": 11454.96,
+ "end": 11455.29,
+ "text": "familiar"
+ },
+ {
+ "id": 24434,
+ "start": 11455.29,
+ "end": 11455.73,
+ "text": "enough"
+ },
+ {
+ "id": 24435,
+ "start": 11455.73,
+ "end": 11455.87,
+ "text": "with"
+ },
+ {
+ "id": 24436,
+ "start": 11455.87,
+ "end": 11455.99,
+ "text": "what"
+ },
+ {
+ "id": 24437,
+ "start": 11455.99,
+ "end": 11456.25,
+ "text": "they're"
+ },
+ {
+ "id": 24438,
+ "start": 11456.25,
+ "end": 11456.53,
+ "text": "doing"
+ },
+ {
+ "id": 24439,
+ "start": 11456.53,
+ "end": 11456.71,
+ "text": "to"
+ },
+ {
+ "id": 24440,
+ "start": 11456.71,
+ "end": 11457.67,
+ "text": "offer"
+ },
+ {
+ "id": 24441,
+ "start": 11457.67,
+ "end": 11457.77,
+ "text": "an"
+ },
+ {
+ "id": 24442,
+ "start": 11457.77,
+ "end": 11458.19,
+ "text": "informed"
+ },
+ {
+ "id": 24443,
+ "start": 11458.19,
+ "end": 11458.57,
+ "text": "opinion"
+ },
+ {
+ "id": 24444,
+ "start": 11458.57,
+ "end": 11458.71,
+ "text": "on"
+ },
+ {
+ "id": 24445,
+ "start": 11458.71,
+ "end": 11459.83,
+ "text": "that."
+ },
+ {
+ "id": 24446,
+ "start": 11459.83,
+ "end": 11460.85,
+ "text": "Well,"
+ },
+ {
+ "id": 24447,
+ "start": 11460.85,
+ "end": 11461.25,
+ "text": "you"
+ },
+ {
+ "id": 24448,
+ "start": 11461.25,
+ "end": 11461.41,
+ "text": "have"
+ },
+ {
+ "id": 24449,
+ "start": 11461.41,
+ "end": 11461.51,
+ "text": "to"
+ },
+ {
+ "id": 24450,
+ "start": 11461.51,
+ "end": 11461.67,
+ "text": "make"
+ },
+ {
+ "id": 24451,
+ "start": 11461.67,
+ "end": 11462.29,
+ "text": "assessments"
+ },
+ {
+ "id": 24452,
+ "start": 11462.29,
+ "end": 11462.63,
+ "text": "as"
+ },
+ {
+ "id": 24453,
+ "start": 11462.63,
+ "end": 11463.05,
+ "text": "to"
+ },
+ {
+ "id": 24454,
+ "start": 11463.05,
+ "end": 11463.31,
+ "text": "what"
+ },
+ {
+ "id": 24455,
+ "start": 11463.31,
+ "end": 11464.17,
+ "text": "constitutes"
+ },
+ {
+ "id": 24456,
+ "start": 11464.17,
+ "end": 11464.71,
+ "text": "hate"
+ },
+ {
+ "id": 24457,
+ "start": 11464.71,
+ "end": 11465.07,
+ "text": "speech"
+ },
+ {
+ "id": 24458,
+ "start": 11465.07,
+ "end": 11465.35,
+ "text": "that's"
+ },
+ {
+ "id": 24459,
+ "start": 11465.35,
+ "end": 11465.61,
+ "text": "pretty"
+ },
+ {
+ "id": 24460,
+ "start": 11465.61,
+ "end": 11465.81,
+ "text": "hard"
+ },
+ {
+ "id": 24461,
+ "start": 11465.81,
+ "end": 11465.93,
+ "text": "to"
+ },
+ {
+ "id": 24462,
+ "start": 11465.93,
+ "end": 11466.21,
+ "text": "do."
+ },
+ {
+ "id": 24463,
+ "start": 11466.21,
+ "end": 11466.69,
+ "text": "You"
+ },
+ {
+ "id": 24464,
+ "start": 11466.69,
+ "end": 11466.87,
+ "text": "have"
+ },
+ {
+ "id": 24465,
+ "start": 11466.87,
+ "end": 11467.11,
+ "text": "to"
+ },
+ {
+ "id": 24466,
+ "start": 11467.11,
+ "end": 11468.42,
+ "text": "assess"
+ },
+ {
+ "id": 24467,
+ "start": 11468.42,
+ "end": 11469.34,
+ "text": "what"
+ },
+ {
+ "id": 24468,
+ "start": 11469.34,
+ "end": 11470.4,
+ "text": "election"
+ },
+ {
+ "id": 24469,
+ "start": 11470.4,
+ "end": 11471.36,
+ "text": "interference."
+ },
+ {
+ "id": 24470,
+ "start": 11471.36,
+ "end": 11471.82,
+ "text": "So"
+ },
+ {
+ "id": 24471,
+ "start": 11471.82,
+ "end": 11472.16,
+ "text": "these"
+ },
+ {
+ "id": 24472,
+ "start": 11472.16,
+ "end": 11473.52,
+ "text": "are"
+ },
+ {
+ "id": 24473,
+ "start": 11473.52,
+ "end": 11474.66,
+ "text": "rather"
+ },
+ {
+ "id": 24474,
+ "start": 11474.66,
+ "end": 11475.04,
+ "text": "difficult"
+ },
+ {
+ "id": 24475,
+ "start": 11475.04,
+ "end": 11475.14,
+ "text": "to"
+ },
+ {
+ "id": 24476,
+ "start": 11475.14,
+ "end": 11475.66,
+ "text": "identify,"
+ },
+ {
+ "id": 24477,
+ "start": 11475.66,
+ "end": 11476,
+ "text": "but"
+ },
+ {
+ "id": 24478,
+ "start": 11476,
+ "end": 11476.96,
+ "text": "wouldn't"
+ },
+ {
+ "id": 24479,
+ "start": 11476.96,
+ "end": 11478.02,
+ "text": "trying"
+ },
+ {
+ "id": 24480,
+ "start": 11478.02,
+ "end": 11478.32,
+ "text": "to"
+ },
+ {
+ "id": 24481,
+ "start": 11478.32,
+ "end": 11478.8,
+ "text": "predict"
+ },
+ {
+ "id": 24482,
+ "start": 11478.8,
+ "end": 11479.08,
+ "text": "whether"
+ },
+ {
+ "id": 24483,
+ "start": 11479.08,
+ "end": 11479.48,
+ "text": "somebody's"
+ },
+ {
+ "id": 24484,
+ "start": 11479.48,
+ "end": 11479.62,
+ "text": "going"
+ },
+ {
+ "id": 24485,
+ "start": 11479.62,
+ "end": 11479.68,
+ "text": "to"
+ },
+ {
+ "id": 24486,
+ "start": 11479.68,
+ "end": 11479.92,
+ "text": "commit"
+ },
+ {
+ "id": 24487,
+ "start": 11479.92,
+ "end": 11479.98,
+ "text": "a"
+ },
+ {
+ "id": 24488,
+ "start": 11479.98,
+ "end": 11480.38,
+ "text": "crime"
+ },
+ {
+ "id": 24489,
+ "start": 11480.38,
+ "end": 11480.7,
+ "text": "to"
+ },
+ {
+ "id": 24490,
+ "start": 11480.7,
+ "end": 11480.88,
+ "text": "fit"
+ },
+ {
+ "id": 24491,
+ "start": 11480.88,
+ "end": 11481.18,
+ "text": "into"
+ },
+ {
+ "id": 24492,
+ "start": 11481.18,
+ "end": 11481.72,
+ "text": "the"
+ },
+ {
+ "id": 24493,
+ "start": 11481.72,
+ "end": 11482.22,
+ "text": "category"
+ },
+ {
+ "id": 24494,
+ "start": 11482.22,
+ "end": 11482.34,
+ "text": "of"
+ },
+ {
+ "id": 24495,
+ "start": 11482.34,
+ "end": 11482.54,
+ "text": "a"
+ },
+ {
+ "id": 24496,
+ "start": 11482.54,
+ "end": 11482.94,
+ "text": "pretty"
+ },
+ {
+ "id": 24497,
+ "start": 11482.94,
+ "end": 11484.56,
+ "text": "difficult"
+ },
+ {
+ "id": 24498,
+ "start": 11484.56,
+ "end": 11485.78,
+ "text": "to"
+ },
+ {
+ "id": 24499,
+ "start": 11485.78,
+ "end": 11486.1,
+ "text": "assess"
+ },
+ {
+ "id": 24500,
+ "start": 11486.1,
+ "end": 11486.54,
+ "text": "Senator."
+ },
+ {
+ "id": 24501,
+ "start": 11486.54,
+ "end": 11486.62,
+ "text": "It"
+ },
+ {
+ "id": 24502,
+ "start": 11486.62,
+ "end": 11487.02,
+ "text": "sounds"
+ },
+ {
+ "id": 24503,
+ "start": 11487.02,
+ "end": 11487.44,
+ "text": "difficult"
+ },
+ {
+ "id": 24504,
+ "start": 11487.44,
+ "end": 11487.58,
+ "text": "to"
+ },
+ {
+ "id": 24505,
+ "start": 11487.58,
+ "end": 11487.72,
+ "text": "me"
+ },
+ {
+ "id": 24506,
+ "start": 11487.72,
+ "end": 11488.58,
+ "text": "all"
+ },
+ {
+ "id": 24507,
+ "start": 11488.58,
+ "end": 11488.66,
+ "text": "of"
+ },
+ {
+ "id": 24508,
+ "start": 11488.66,
+ "end": 11488.88,
+ "text": "these"
+ },
+ {
+ "id": 24509,
+ "start": 11488.88,
+ "end": 11489.18,
+ "text": "things"
+ },
+ {
+ "id": 24510,
+ "start": 11489.18,
+ "end": 11489.38,
+ "text": "like"
+ },
+ {
+ "id": 24511,
+ "start": 11489.38,
+ "end": 11489.56,
+ "text": "you're"
+ },
+ {
+ "id": 24512,
+ "start": 11489.56,
+ "end": 11489.76,
+ "text": "saying"
+ },
+ {
+ "id": 24513,
+ "start": 11489.76,
+ "end": 11489.96,
+ "text": "are"
+ },
+ {
+ "id": 24514,
+ "start": 11489.96,
+ "end": 11490.42,
+ "text": "difficult."
+ },
+ {
+ "id": 24515,
+ "start": 11490.42,
+ "end": 11490.94,
+ "text": "I"
+ },
+ {
+ "id": 24516,
+ "start": 11490.94,
+ "end": 11491.14,
+ "text": "don't"
+ },
+ {
+ "id": 24517,
+ "start": 11491.14,
+ "end": 11491.26,
+ "text": "know"
+ },
+ {
+ "id": 24518,
+ "start": 11491.26,
+ "end": 11491.54,
+ "text": "without"
+ },
+ {
+ "id": 24519,
+ "start": 11491.54,
+ "end": 11491.78,
+ "text": "having"
+ },
+ {
+ "id": 24520,
+ "start": 11491.78,
+ "end": 11492.04,
+ "text": "worked"
+ },
+ {
+ "id": 24521,
+ "start": 11492.04,
+ "end": 11492.16,
+ "text": "on"
+ },
+ {
+ "id": 24522,
+ "start": 11492.16,
+ "end": 11492.28,
+ "text": "it"
+ },
+ {
+ "id": 24523,
+ "start": 11492.28,
+ "end": 11492.4,
+ "text": "or"
+ },
+ {
+ "id": 24524,
+ "start": 11492.4,
+ "end": 11492.7,
+ "text": "thinking"
+ },
+ {
+ "id": 24525,
+ "start": 11492.7,
+ "end": 11492.9,
+ "text": "about"
+ },
+ {
+ "id": 24526,
+ "start": 11492.9,
+ "end": 11493.02,
+ "text": "it"
+ },
+ {
+ "id": 24527,
+ "start": 11493.02,
+ "end": 11493.68,
+ "text": "in"
+ },
+ {
+ "id": 24528,
+ "start": 11493.68,
+ "end": 11494.18,
+ "text": "Congress."
+ },
+ {
+ "id": 24529,
+ "start": 11494.18,
+ "end": 11494.4,
+ "text": "One"
+ },
+ {
+ "id": 24530,
+ "start": 11494.4,
+ "end": 11494.6,
+ "text": "would"
+ },
+ {
+ "id": 24531,
+ "start": 11494.6,
+ "end": 11494.82,
+ "text": "tell"
+ },
+ {
+ "id": 24532,
+ "start": 11494.82,
+ "end": 11495.02,
+ "text": "us"
+ },
+ {
+ "id": 24533,
+ "start": 11495.02,
+ "end": 11495.66,
+ "text": "that"
+ },
+ {
+ "id": 24534,
+ "start": 11495.66,
+ "end": 11495.94,
+ "text": "that's"
+ },
+ {
+ "id": 24535,
+ "start": 11495.94,
+ "end": 11496.32,
+ "text": "pretty"
+ },
+ {
+ "id": 24536,
+ "start": 11496.32,
+ "end": 11496.84,
+ "text": "difficult."
+ },
+ {
+ "id": 24537,
+ "start": 11496.84,
+ "end": 11497.2,
+ "text": "And"
+ },
+ {
+ "id": 24538,
+ "start": 11497.2,
+ "end": 11497.5,
+ "text": "yet"
+ },
+ {
+ "id": 24539,
+ "start": 11497.5,
+ "end": 11497.78,
+ "text": "that's"
+ },
+ {
+ "id": 24540,
+ "start": 11497.78,
+ "end": 11497.98,
+ "text": "what"
+ },
+ {
+ "id": 24541,
+ "start": 11497.98,
+ "end": 11498.22,
+ "text": "is"
+ },
+ {
+ "id": 24542,
+ "start": 11498.22,
+ "end": 11498.38,
+ "text": "is"
+ },
+ {
+ "id": 24543,
+ "start": 11498.38,
+ "end": 11498.84,
+ "text": "proceeding"
+ },
+ {
+ "id": 24544,
+ "start": 11498.84,
+ "end": 11498.98,
+ "text": "to"
+ },
+ {
+ "id": 24545,
+ "start": 11498.98,
+ "end": 11499.22,
+ "text": "do?"
+ },
+ {
+ "id": 24546,
+ "start": 11499.22,
+ "end": 11499.98,
+ "text": "You"
+ },
+ {
+ "id": 24547,
+ "start": 11499.98,
+ "end": 11500.16,
+ "text": "were"
+ },
+ {
+ "id": 24548,
+ "start": 11500.16,
+ "end": 11500.52,
+ "text": "asked"
+ },
+ {
+ "id": 24549,
+ "start": 11500.52,
+ "end": 11500.94,
+ "text": "about"
+ },
+ {
+ "id": 24550,
+ "start": 11500.94,
+ "end": 11501.8,
+ "text": "discriminatory"
+ },
+ {
+ "id": 24551,
+ "start": 11501.8,
+ "end": 11502.68,
+ "text": "advertising"
+ },
+ {
+ "id": 24552,
+ "start": 11502.68,
+ "end": 11504.2,
+ "text": "and"
+ },
+ {
+ "id": 24553,
+ "start": 11504.2,
+ "end": 11504.9,
+ "text": "in"
+ },
+ {
+ "id": 24554,
+ "start": 11504.9,
+ "end": 11505.32,
+ "text": "February"
+ },
+ {
+ "id": 24555,
+ "start": 11505.32,
+ "end": 11506.68,
+ "text": "10"
+ },
+ {
+ "id": 24556,
+ "start": 11506.68,
+ "end": 11507.04,
+ "text": "Facebook"
+ },
+ {
+ "id": 24557,
+ "start": 11507.04,
+ "end": 11507.38,
+ "text": "announced"
+ },
+ {
+ "id": 24558,
+ "start": 11507.38,
+ "end": 11507.52,
+ "text": "that"
+ },
+ {
+ "id": 24559,
+ "start": 11507.52,
+ "end": 11507.62,
+ "text": "it"
+ },
+ {
+ "id": 24560,
+ "start": 11507.62,
+ "end": 11507.8,
+ "text": "would"
+ },
+ {
+ "id": 24561,
+ "start": 11507.8,
+ "end": 11507.94,
+ "text": "no"
+ },
+ {
+ "id": 24562,
+ "start": 11507.94,
+ "end": 11508.26,
+ "text": "longer"
+ },
+ {
+ "id": 24563,
+ "start": 11508.26,
+ "end": 11508.84,
+ "text": "allow"
+ },
+ {
+ "id": 24564,
+ "start": 11508.84,
+ "end": 11509.2,
+ "text": "certain"
+ },
+ {
+ "id": 24565,
+ "start": 11509.2,
+ "end": 11509.42,
+ "text": "kinds"
+ },
+ {
+ "id": 24566,
+ "start": 11509.42,
+ "end": 11509.58,
+ "text": "of"
+ },
+ {
+ "id": 24567,
+ "start": 11509.58,
+ "end": 11510.36,
+ "text": "ads"
+ },
+ {
+ "id": 24568,
+ "start": 11510.36,
+ "end": 11511.8,
+ "text": "that"
+ },
+ {
+ "id": 24569,
+ "start": 11511.8,
+ "end": 11512.92,
+ "text": "discriminate"
+ },
+ {
+ "id": 24570,
+ "start": 11512.92,
+ "end": 11513.02,
+ "text": "on"
+ },
+ {
+ "id": 24571,
+ "start": 11513.02,
+ "end": 11513.14,
+ "text": "the"
+ },
+ {
+ "id": 24572,
+ "start": 11513.14,
+ "end": 11513.46,
+ "text": "basis"
+ },
+ {
+ "id": 24573,
+ "start": 11513.46,
+ "end": 11513.6,
+ "text": "of"
+ },
+ {
+ "id": 24574,
+ "start": 11513.6,
+ "end": 11513.92,
+ "text": "race,"
+ },
+ {
+ "id": 24575,
+ "start": 11513.92,
+ "end": 11514.78,
+ "text": "gender"
+ },
+ {
+ "id": 24576,
+ "start": 11514.78,
+ "end": 11515.64,
+ "text": "status"
+ },
+ {
+ "id": 24577,
+ "start": 11515.64,
+ "end": 11516,
+ "text": "sexual"
+ },
+ {
+ "id": 24578,
+ "start": 11516,
+ "end": 11516.78,
+ "text": "orientation,"
+ },
+ {
+ "id": 24579,
+ "start": 11516.78,
+ "end": 11517.7,
+ "text": "disability"
+ },
+ {
+ "id": 24580,
+ "start": 11517.7,
+ "end": 11517.9,
+ "text": "or"
+ },
+ {
+ "id": 24581,
+ "start": 11517.9,
+ "end": 11518.56,
+ "text": "veteran"
+ },
+ {
+ "id": 24582,
+ "start": 11518.56,
+ "end": 11518.9,
+ "text": "status."
+ },
+ {
+ "id": 24583,
+ "start": 11518.9,
+ "end": 11519.1,
+ "text": "All"
+ },
+ {
+ "id": 24584,
+ "start": 11519.1,
+ "end": 11519.62,
+ "text": "categories"
+ },
+ {
+ "id": 24585,
+ "start": 11519.62,
+ "end": 11520.18,
+ "text": "prohibited"
+ },
+ {
+ "id": 24586,
+ "start": 11520.18,
+ "end": 11520.78,
+ "text": "by"
+ },
+ {
+ "id": 24587,
+ "start": 11520.78,
+ "end": 11521.12,
+ "text": "federal"
+ },
+ {
+ "id": 24588,
+ "start": 11521.12,
+ "end": 11521.32,
+ "text": "law"
+ },
+ {
+ "id": 24589,
+ "start": 11521.32,
+ "end": 11521.44,
+ "text": "and"
+ },
+ {
+ "id": 24590,
+ "start": 11521.44,
+ "end": 11521.8,
+ "text": "housing"
+ },
+ {
+ "id": 24591,
+ "start": 11521.8,
+ "end": 11521.96,
+ "text": "and"
+ },
+ {
+ "id": 24592,
+ "start": 11521.96,
+ "end": 11522.36,
+ "text": "yet"
+ },
+ {
+ "id": 24593,
+ "start": 11522.36,
+ "end": 11523.5,
+ "text": "after"
+ },
+ {
+ "id": 24594,
+ "start": 11523.5,
+ "end": 11523.8,
+ "text": "20"
+ },
+ {
+ "id": 24595,
+ "start": 11523.8,
+ "end": 11525.36,
+ "text": "17"
+ },
+ {
+ "id": 24596,
+ "start": 11525.36,
+ "end": 11526.24,
+ "text": "it"
+ },
+ {
+ "id": 24597,
+ "start": 11526.24,
+ "end": 11526.42,
+ "text": "was"
+ },
+ {
+ "id": 24598,
+ "start": 11526.42,
+ "end": 11526.96,
+ "text": "discovered"
+ },
+ {
+ "id": 24599,
+ "start": 11526.96,
+ "end": 11527.2,
+ "text": "that"
+ },
+ {
+ "id": 24600,
+ "start": 11527.2,
+ "end": 11527.82,
+ "text": "you"
+ },
+ {
+ "id": 24601,
+ "start": 11527.82,
+ "end": 11528.06,
+ "text": "could,"
+ },
+ {
+ "id": 24602,
+ "start": 11528.06,
+ "end": 11528.24,
+ "text": "in"
+ },
+ {
+ "id": 24603,
+ "start": 11528.24,
+ "end": 11528.88,
+ "text": "fact,"
+ },
+ {
+ "id": 24604,
+ "start": 11528.88,
+ "end": 11529.86,
+ "text": "face"
+ },
+ {
+ "id": 24605,
+ "start": 11529.86,
+ "end": 11530.08,
+ "text": "those"
+ },
+ {
+ "id": 24606,
+ "start": 11530.08,
+ "end": 11530.32,
+ "text": "kinds"
+ },
+ {
+ "id": 24607,
+ "start": 11530.32,
+ "end": 11530.44,
+ "text": "of"
+ },
+ {
+ "id": 24608,
+ "start": 11530.44,
+ "end": 11530.7,
+ "text": "ads."
+ },
+ {
+ "id": 24609,
+ "start": 11530.7,
+ "end": 11530.8,
+ "text": "So,"
+ },
+ {
+ "id": 24610,
+ "start": 11530.8,
+ "end": 11530.94,
+ "text": "what"
+ },
+ {
+ "id": 24611,
+ "start": 11530.94,
+ "end": 11531.08,
+ "text": "is"
+ },
+ {
+ "id": 24612,
+ "start": 11531.08,
+ "end": 11531.18,
+ "text": "the"
+ },
+ {
+ "id": 24613,
+ "start": 11531.18,
+ "end": 11531.54,
+ "text": "status"
+ },
+ {
+ "id": 24614,
+ "start": 11531.54,
+ "end": 11531.64,
+ "text": "of"
+ },
+ {
+ "id": 24615,
+ "start": 11531.64,
+ "end": 11531.88,
+ "text": "whether"
+ },
+ {
+ "id": 24616,
+ "start": 11531.88,
+ "end": 11532.02,
+ "text": "or"
+ },
+ {
+ "id": 24617,
+ "start": 11532.02,
+ "end": 11532.18,
+ "text": "not"
+ },
+ {
+ "id": 24618,
+ "start": 11532.18,
+ "end": 11532.4,
+ "text": "these"
+ },
+ {
+ "id": 24619,
+ "start": 11532.4,
+ "end": 11533.04,
+ "text": "ads"
+ },
+ {
+ "id": 24620,
+ "start": 11533.04,
+ "end": 11533.24,
+ "text": "can"
+ },
+ {
+ "id": 24621,
+ "start": 11533.24,
+ "end": 11533.68,
+ "text": "currently"
+ },
+ {
+ "id": 24622,
+ "start": 11533.68,
+ "end": 11533.88,
+ "text": "be"
+ },
+ {
+ "id": 24623,
+ "start": 11533.88,
+ "end": 11534.2,
+ "text": "placed"
+ },
+ {
+ "id": 24624,
+ "start": 11534.2,
+ "end": 11534.5,
+ "text": "on"
+ },
+ {
+ "id": 24625,
+ "start": 11534.5,
+ "end": 11535.14,
+ "text": "Facebook."
+ },
+ {
+ "id": 24626,
+ "start": 11535.14,
+ "end": 11535.66,
+ "text": "And"
+ },
+ {
+ "id": 24627,
+ "start": 11535.66,
+ "end": 11536.26,
+ "text": "have"
+ },
+ {
+ "id": 24628,
+ "start": 11536.26,
+ "end": 11536.38,
+ "text": "you"
+ },
+ {
+ "id": 24629,
+ "start": 11536.38,
+ "end": 11536.69,
+ "text": "follow"
+ },
+ {
+ "id": 24630,
+ "start": 11536.69,
+ "end": 11537.11,
+ "text": "on"
+ },
+ {
+ "id": 24631,
+ "start": 11537.11,
+ "end": 11537.25,
+ "text": "your"
+ },
+ {
+ "id": 24632,
+ "start": 11537.25,
+ "end": 11537.59,
+ "text": "February"
+ },
+ {
+ "id": 24633,
+ "start": 11537.59,
+ "end": 11537.83,
+ "text": "20"
+ },
+ {
+ "id": 24634,
+ "start": 11537.83,
+ "end": 11538.61,
+ "text": "17"
+ },
+ {
+ "id": 24635,
+ "start": 11538.61,
+ "end": 11538.99,
+ "text": "promise"
+ },
+ {
+ "id": 24636,
+ "start": 11538.99,
+ "end": 11539.09,
+ "text": "to"
+ },
+ {
+ "id": 24637,
+ "start": 11539.09,
+ "end": 11539.39,
+ "text": "address"
+ },
+ {
+ "id": 24638,
+ "start": 11539.39,
+ "end": 11539.59,
+ "text": "this"
+ },
+ {
+ "id": 24639,
+ "start": 11539.59,
+ "end": 11540.05,
+ "text": "problem."
+ },
+ {
+ "id": 24640,
+ "start": 11540.05,
+ "end": 11540.35,
+ "text": "And"
+ },
+ {
+ "id": 24641,
+ "start": 11540.35,
+ "end": 11540.49,
+ "text": "is"
+ },
+ {
+ "id": 24642,
+ "start": 11540.49,
+ "end": 11540.65,
+ "text": "there"
+ },
+ {
+ "id": 24643,
+ "start": 11540.65,
+ "end": 11540.71,
+ "text": "a"
+ },
+ {
+ "id": 24644,
+ "start": 11540.71,
+ "end": 11540.85,
+ "text": "way"
+ },
+ {
+ "id": 24645,
+ "start": 11540.85,
+ "end": 11540.97,
+ "text": "for"
+ },
+ {
+ "id": 24646,
+ "start": 11540.97,
+ "end": 11541.07,
+ "text": "the"
+ },
+ {
+ "id": 24647,
+ "start": 11541.07,
+ "end": 11541.37,
+ "text": "public"
+ },
+ {
+ "id": 24648,
+ "start": 11541.37,
+ "end": 11541.55,
+ "text": "to"
+ },
+ {
+ "id": 24649,
+ "start": 11541.55,
+ "end": 11542.15,
+ "text": "verify"
+ },
+ {
+ "id": 24650,
+ "start": 11542.15,
+ "end": 11542.63,
+ "text": "that"
+ },
+ {
+ "id": 24651,
+ "start": 11542.63,
+ "end": 11542.81,
+ "text": "you"
+ },
+ {
+ "id": 24652,
+ "start": 11542.81,
+ "end": 11543.15,
+ "text": "have"
+ },
+ {
+ "id": 24653,
+ "start": 11543.15,
+ "end": 11543.41,
+ "text": "or"
+ },
+ {
+ "id": 24654,
+ "start": 11543.41,
+ "end": 11543.89,
+ "text": "are"
+ },
+ {
+ "id": 24655,
+ "start": 11543.89,
+ "end": 11544.37,
+ "text": "we"
+ },
+ {
+ "id": 24656,
+ "start": 11544.37,
+ "end": 11544.53,
+ "text": "just"
+ },
+ {
+ "id": 24657,
+ "start": 11544.53,
+ "end": 11545.09,
+ "text": "expected"
+ },
+ {
+ "id": 24658,
+ "start": 11545.09,
+ "end": 11545.27,
+ "text": "to"
+ },
+ {
+ "id": 24659,
+ "start": 11545.27,
+ "end": 11545.67,
+ "text": "trust"
+ },
+ {
+ "id": 24660,
+ "start": 11545.67,
+ "end": 11546.05,
+ "text": "that"
+ },
+ {
+ "id": 24661,
+ "start": 11546.05,
+ "end": 11546.69,
+ "text": "you've"
+ },
+ {
+ "id": 24662,
+ "start": 11546.69,
+ "end": 11546.89,
+ "text": "done"
+ },
+ {
+ "id": 24663,
+ "start": 11546.89,
+ "end": 11548.32,
+ "text": "this?"
+ },
+ {
+ "id": 24664,
+ "start": 11548.32,
+ "end": 11549.3,
+ "text": "So"
+ },
+ {
+ "id": 24665,
+ "start": 11549.3,
+ "end": 11549.64,
+ "text": "those"
+ },
+ {
+ "id": 24666,
+ "start": 11549.64,
+ "end": 11549.8,
+ "text": "are"
+ },
+ {
+ "id": 24667,
+ "start": 11549.8,
+ "end": 11550.02,
+ "text": "all"
+ },
+ {
+ "id": 24668,
+ "start": 11550.02,
+ "end": 11550.54,
+ "text": "important"
+ },
+ {
+ "id": 24669,
+ "start": 11550.54,
+ "end": 11551.04,
+ "text": "questions."
+ },
+ {
+ "id": 24670,
+ "start": 11551.04,
+ "end": 11551.82,
+ "text": "And"
+ },
+ {
+ "id": 24671,
+ "start": 11551.82,
+ "end": 11552.84,
+ "text": "in"
+ },
+ {
+ "id": 24672,
+ "start": 11552.84,
+ "end": 11553.28,
+ "text": "general,"
+ },
+ {
+ "id": 24673,
+ "start": 11553.28,
+ "end": 11553.62,
+ "text": "it"
+ },
+ {
+ "id": 24674,
+ "start": 11553.62,
+ "end": 11553.8,
+ "text": "is"
+ },
+ {
+ "id": 24675,
+ "start": 11553.8,
+ "end": 11554.16,
+ "text": "against"
+ },
+ {
+ "id": 24676,
+ "start": 11554.16,
+ "end": 11554.36,
+ "text": "our"
+ },
+ {
+ "id": 24677,
+ "start": 11554.36,
+ "end": 11554.94,
+ "text": "policies"
+ },
+ {
+ "id": 24678,
+ "start": 11554.94,
+ "end": 11555.52,
+ "text": "to"
+ },
+ {
+ "id": 24679,
+ "start": 11555.52,
+ "end": 11555.76,
+ "text": "have"
+ },
+ {
+ "id": 24680,
+ "start": 11555.76,
+ "end": 11556,
+ "text": "any"
+ },
+ {
+ "id": 24681,
+ "start": 11556,
+ "end": 11556.26,
+ "text": "ads"
+ },
+ {
+ "id": 24682,
+ "start": 11556.26,
+ "end": 11556.42,
+ "text": "that"
+ },
+ {
+ "id": 24683,
+ "start": 11556.42,
+ "end": 11556.56,
+ "text": "are"
+ },
+ {
+ "id": 24684,
+ "start": 11556.56,
+ "end": 11557.66,
+ "text": "discriminatory"
+ },
+ {
+ "id": 24685,
+ "start": 11557.66,
+ "end": 11558.72,
+ "text": "so"
+ },
+ {
+ "id": 24686,
+ "start": 11558.72,
+ "end": 11558.94,
+ "text": "that"
+ },
+ {
+ "id": 24687,
+ "start": 11558.94,
+ "end": 11559.04,
+ "text": "you"
+ },
+ {
+ "id": 24688,
+ "start": 11559.04,
+ "end": 11559.3,
+ "text": "wouldn't"
+ },
+ {
+ "id": 24689,
+ "start": 11559.3,
+ "end": 11559.56,
+ "text": "allow"
+ },
+ {
+ "id": 24690,
+ "start": 11559.56,
+ "end": 11559.68,
+ "text": "it."
+ },
+ {
+ "id": 24691,
+ "start": 11559.68,
+ "end": 11559.9,
+ "text": "But"
+ },
+ {
+ "id": 24692,
+ "start": 11559.9,
+ "end": 11561.28,
+ "text": "then"
+ },
+ {
+ "id": 24693,
+ "start": 11561.28,
+ "end": 11562.24,
+ "text": "what"
+ },
+ {
+ "id": 24694,
+ "start": 11562.24,
+ "end": 11562.36,
+ "text": "is"
+ },
+ {
+ "id": 24695,
+ "start": 11562.36,
+ "end": 11562.5,
+ "text": "the"
+ },
+ {
+ "id": 24696,
+ "start": 11562.5,
+ "end": 11563.6,
+ "text": "ProPublica"
+ },
+ {
+ "id": 24697,
+ "start": 11563.6,
+ "end": 11564.58,
+ "text": "could"
+ },
+ {
+ "id": 24698,
+ "start": 11564.58,
+ "end": 11564.84,
+ "text": "place"
+ },
+ {
+ "id": 24699,
+ "start": 11564.84,
+ "end": 11565.04,
+ "text": "these"
+ },
+ {
+ "id": 24700,
+ "start": 11565.04,
+ "end": 11565.36,
+ "text": "ads?"
+ },
+ {
+ "id": 24701,
+ "start": 11565.36,
+ "end": 11565.62,
+ "text": "Even"
+ },
+ {
+ "id": 24702,
+ "start": 11565.62,
+ "end": 11565.88,
+ "text": "after"
+ },
+ {
+ "id": 24703,
+ "start": 11565.88,
+ "end": 11566.04,
+ "text": "you"
+ },
+ {
+ "id": 24704,
+ "start": 11566.04,
+ "end": 11566.2,
+ "text": "said"
+ },
+ {
+ "id": 24705,
+ "start": 11566.2,
+ "end": 11566.32,
+ "text": "you"
+ },
+ {
+ "id": 24706,
+ "start": 11566.32,
+ "end": 11566.44,
+ "text": "are"
+ },
+ {
+ "id": 24707,
+ "start": 11566.44,
+ "end": 11566.56,
+ "text": "no"
+ },
+ {
+ "id": 24708,
+ "start": 11566.56,
+ "end": 11567.04,
+ "text": "longer"
+ },
+ {
+ "id": 24709,
+ "start": 11567.04,
+ "end": 11568.02,
+ "text": "allow"
+ },
+ {
+ "id": 24710,
+ "start": 11568.02,
+ "end": 11568.26,
+ "text": "these"
+ },
+ {
+ "id": 24711,
+ "start": 11568.26,
+ "end": 11568.48,
+ "text": "kinds"
+ },
+ {
+ "id": 24712,
+ "start": 11568.48,
+ "end": 11568.58,
+ "text": "of"
+ },
+ {
+ "id": 24713,
+ "start": 11568.58,
+ "end": 11569.12,
+ "text": "ads."
+ },
+ {
+ "id": 24714,
+ "start": 11569.12,
+ "end": 11570.1,
+ "text": "So"
+ },
+ {
+ "id": 24715,
+ "start": 11570.1,
+ "end": 11570.26,
+ "text": "what"
+ },
+ {
+ "id": 24716,
+ "start": 11570.26,
+ "end": 11570.68,
+ "text": "assurance"
+ },
+ {
+ "id": 24717,
+ "start": 11570.68,
+ "end": 11570.84,
+ "text": "do"
+ },
+ {
+ "id": 24718,
+ "start": 11570.84,
+ "end": 11570.94,
+ "text": "we"
+ },
+ {
+ "id": 24719,
+ "start": 11570.94,
+ "end": 11571.14,
+ "text": "have"
+ },
+ {
+ "id": 24720,
+ "start": 11571.14,
+ "end": 11571.32,
+ "text": "from"
+ },
+ {
+ "id": 24721,
+ "start": 11571.32,
+ "end": 11571.52,
+ "text": "you"
+ },
+ {
+ "id": 24722,
+ "start": 11571.52,
+ "end": 11571.86,
+ "text": "that"
+ },
+ {
+ "id": 24723,
+ "start": 11571.86,
+ "end": 11572.32,
+ "text": "this"
+ },
+ {
+ "id": 24724,
+ "start": 11572.32,
+ "end": 11572.44,
+ "text": "is"
+ },
+ {
+ "id": 24725,
+ "start": 11572.44,
+ "end": 11572.76,
+ "text": "stuff"
+ },
+ {
+ "id": 24726,
+ "start": 11572.76,
+ "end": 11572.96,
+ "text": "going"
+ },
+ {
+ "id": 24727,
+ "start": 11572.96,
+ "end": 11573.06,
+ "text": "to"
+ },
+ {
+ "id": 24728,
+ "start": 11573.06,
+ "end": 11573.4,
+ "text": "stop?"
+ },
+ {
+ "id": 24729,
+ "start": 11573.4,
+ "end": 11574.48,
+ "text": "Well,"
+ },
+ {
+ "id": 24730,
+ "start": 11574.48,
+ "end": 11574.72,
+ "text": "two"
+ },
+ {
+ "id": 24731,
+ "start": 11574.72,
+ "end": 11575.24,
+ "text": "things"
+ },
+ {
+ "id": 24732,
+ "start": 11575.24,
+ "end": 11576.28,
+ "text": "1"
+ },
+ {
+ "id": 24733,
+ "start": 11576.28,
+ "end": 11576.56,
+ "text": "is"
+ },
+ {
+ "id": 24734,
+ "start": 11576.56,
+ "end": 11576.84,
+ "text": "that"
+ },
+ {
+ "id": 24735,
+ "start": 11576.84,
+ "end": 11577.52,
+ "text": "we've"
+ },
+ {
+ "id": 24736,
+ "start": 11577.52,
+ "end": 11577.92,
+ "text": "removed"
+ },
+ {
+ "id": 24737,
+ "start": 11577.92,
+ "end": 11578.12,
+ "text": "the"
+ },
+ {
+ "id": 24738,
+ "start": 11578.12,
+ "end": 11578.6,
+ "text": "ability"
+ },
+ {
+ "id": 24739,
+ "start": 11578.6,
+ "end": 11578.82,
+ "text": "to"
+ },
+ {
+ "id": 24740,
+ "start": 11578.82,
+ "end": 11580.58,
+ "text": "exclude"
+ },
+ {
+ "id": 24741,
+ "start": 11580.58,
+ "end": 11581.62,
+ "text": "ethnic"
+ },
+ {
+ "id": 24742,
+ "start": 11581.62,
+ "end": 11581.98,
+ "text": "groups"
+ },
+ {
+ "id": 24743,
+ "start": 11581.98,
+ "end": 11582.2,
+ "text": "and"
+ },
+ {
+ "id": 24744,
+ "start": 11582.2,
+ "end": 11582.42,
+ "text": "other"
+ },
+ {
+ "id": 24745,
+ "start": 11582.42,
+ "end": 11582.88,
+ "text": "sensitive"
+ },
+ {
+ "id": 24746,
+ "start": 11582.88,
+ "end": 11583.4,
+ "text": "categories"
+ },
+ {
+ "id": 24747,
+ "start": 11583.4,
+ "end": 11583.72,
+ "text": "from"
+ },
+ {
+ "id": 24748,
+ "start": 11583.72,
+ "end": 11583.96,
+ "text": "ad"
+ },
+ {
+ "id": 24749,
+ "start": 11583.96,
+ "end": 11584.38,
+ "text": "targeting."
+ },
+ {
+ "id": 24750,
+ "start": 11584.38,
+ "end": 11584.82,
+ "text": "So"
+ },
+ {
+ "id": 24751,
+ "start": 11584.82,
+ "end": 11585.26,
+ "text": "that"
+ },
+ {
+ "id": 24752,
+ "start": 11585.26,
+ "end": 11585.42,
+ "text": "just"
+ },
+ {
+ "id": 24753,
+ "start": 11585.42,
+ "end": 11585.68,
+ "text": "isn't"
+ },
+ {
+ "id": 24754,
+ "start": 11585.68,
+ "end": 11585.78,
+ "text": "a"
+ },
+ {
+ "id": 24755,
+ "start": 11585.78,
+ "end": 11586.14,
+ "text": "feature"
+ },
+ {
+ "id": 24756,
+ "start": 11586.14,
+ "end": 11586.4,
+ "text": "that's"
+ },
+ {
+ "id": 24757,
+ "start": 11586.4,
+ "end": 11586.62,
+ "text": "even"
+ },
+ {
+ "id": 24758,
+ "start": 11586.62,
+ "end": 11587.04,
+ "text": "available"
+ },
+ {
+ "id": 24759,
+ "start": 11587.04,
+ "end": 11587.44,
+ "text": "anymore"
+ },
+ {
+ "id": 24760,
+ "start": 11587.44,
+ "end": 11588.06,
+ "text": "for"
+ },
+ {
+ "id": 24761,
+ "start": 11588.06,
+ "end": 11588.22,
+ "text": "some"
+ },
+ {
+ "id": 24762,
+ "start": 11588.22,
+ "end": 11588.3,
+ "text": "of"
+ },
+ {
+ "id": 24763,
+ "start": 11588.3,
+ "end": 11588.48,
+ "text": "these"
+ },
+ {
+ "id": 24764,
+ "start": 11588.48,
+ "end": 11588.94,
+ "text": "cases"
+ },
+ {
+ "id": 24765,
+ "start": 11588.94,
+ "end": 11590.16,
+ "text": "where"
+ },
+ {
+ "id": 24766,
+ "start": 11590.16,
+ "end": 11590.38,
+ "text": "it"
+ },
+ {
+ "id": 24767,
+ "start": 11590.38,
+ "end": 11590.58,
+ "text": "may"
+ },
+ {
+ "id": 24768,
+ "start": 11590.58,
+ "end": 11590.74,
+ "text": "make"
+ },
+ {
+ "id": 24769,
+ "start": 11590.74,
+ "end": 11591.06,
+ "text": "sense"
+ },
+ {
+ "id": 24770,
+ "start": 11591.06,
+ "end": 11591.28,
+ "text": "to"
+ },
+ {
+ "id": 24771,
+ "start": 11591.28,
+ "end": 11592.02,
+ "text": "target"
+ },
+ {
+ "id": 24772,
+ "start": 11592.02,
+ "end": 11592.62,
+ "text": "proactively"
+ },
+ {
+ "id": 24773,
+ "start": 11592.62,
+ "end": 11592.72,
+ "text": "a"
+ },
+ {
+ "id": 24774,
+ "start": 11592.72,
+ "end": 11593.98,
+ "text": "group."
+ },
+ {
+ "id": 24775,
+ "start": 11593.98,
+ "end": 11595.08,
+ "text": "The"
+ },
+ {
+ "id": 24776,
+ "start": 11595.08,
+ "end": 11595.84,
+ "text": "enforcement"
+ },
+ {
+ "id": 24777,
+ "start": 11595.84,
+ "end": 11596.14,
+ "text": "today"
+ },
+ {
+ "id": 24778,
+ "start": 11596.14,
+ "end": 11597.36,
+ "text": "is"
+ },
+ {
+ "id": 24779,
+ "start": 11597.36,
+ "end": 11598.46,
+ "text": "still"
+ },
+ {
+ "id": 24780,
+ "start": 11598.46,
+ "end": 11599.12,
+ "text": "we"
+ },
+ {
+ "id": 24781,
+ "start": 11599.12,
+ "end": 11599.44,
+ "text": "review"
+ },
+ {
+ "id": 24782,
+ "start": 11599.44,
+ "end": 11599.7,
+ "text": "ads."
+ },
+ {
+ "id": 24783,
+ "start": 11599.7,
+ "end": 11599.9,
+ "text": "We"
+ },
+ {
+ "id": 24784,
+ "start": 11599.9,
+ "end": 11600.18,
+ "text": "screen"
+ },
+ {
+ "id": 24785,
+ "start": 11600.18,
+ "end": 11600.32,
+ "text": "them"
+ },
+ {
+ "id": 24786,
+ "start": 11600.32,
+ "end": 11600.48,
+ "text": "up"
+ },
+ {
+ "id": 24787,
+ "start": 11600.48,
+ "end": 11601.32,
+ "text": "front."
+ },
+ {
+ "id": 24788,
+ "start": 11601.32,
+ "end": 11602.1,
+ "text": "But"
+ },
+ {
+ "id": 24789,
+ "start": 11602.1,
+ "end": 11603,
+ "text": "most"
+ },
+ {
+ "id": 24790,
+ "start": 11603,
+ "end": 11603.14,
+ "text": "of"
+ },
+ {
+ "id": 24791,
+ "start": 11603.14,
+ "end": 11603.24,
+ "text": "the"
+ },
+ {
+ "id": 24792,
+ "start": 11603.24,
+ "end": 11603.72,
+ "text": "enforcement"
+ },
+ {
+ "id": 24793,
+ "start": 11603.72,
+ "end": 11603.96,
+ "text": "today"
+ },
+ {
+ "id": 24794,
+ "start": 11603.96,
+ "end": 11604.1,
+ "text": "is"
+ },
+ {
+ "id": 24795,
+ "start": 11604.1,
+ "end": 11604.56,
+ "text": "still"
+ },
+ {
+ "id": 24796,
+ "start": 11604.56,
+ "end": 11605.44,
+ "text": "that"
+ },
+ {
+ "id": 24797,
+ "start": 11605.44,
+ "end": 11605.6,
+ "text": "our"
+ },
+ {
+ "id": 24798,
+ "start": 11605.6,
+ "end": 11606.06,
+ "text": "community"
+ },
+ {
+ "id": 24799,
+ "start": 11606.06,
+ "end": 11606.44,
+ "text": "flags"
+ },
+ {
+ "id": 24800,
+ "start": 11606.44,
+ "end": 11606.84,
+ "text": "issues"
+ },
+ {
+ "id": 24801,
+ "start": 11606.84,
+ "end": 11607,
+ "text": "for"
+ },
+ {
+ "id": 24802,
+ "start": 11607,
+ "end": 11607.14,
+ "text": "us"
+ },
+ {
+ "id": 24803,
+ "start": 11607.14,
+ "end": 11607.36,
+ "text": "when"
+ },
+ {
+ "id": 24804,
+ "start": 11607.36,
+ "end": 11607.54,
+ "text": "they"
+ },
+ {
+ "id": 24805,
+ "start": 11607.54,
+ "end": 11607.68,
+ "text": "come"
+ },
+ {
+ "id": 24806,
+ "start": 11607.68,
+ "end": 11607.84,
+ "text": "up."
+ },
+ {
+ "id": 24807,
+ "start": 11607.84,
+ "end": 11608.44,
+ "text": "So"
+ },
+ {
+ "id": 24808,
+ "start": 11608.44,
+ "end": 11609,
+ "text": "if"
+ },
+ {
+ "id": 24809,
+ "start": 11609,
+ "end": 11609.14,
+ "text": "the"
+ },
+ {
+ "id": 24810,
+ "start": 11609.14,
+ "end": 11609.6,
+ "text": "community"
+ },
+ {
+ "id": 24811,
+ "start": 11609.6,
+ "end": 11609.98,
+ "text": "flags"
+ },
+ {
+ "id": 24812,
+ "start": 11609.98,
+ "end": 11610.36,
+ "text": "that"
+ },
+ {
+ "id": 24813,
+ "start": 11610.36,
+ "end": 11610.64,
+ "text": "issue"
+ },
+ {
+ "id": 24814,
+ "start": 11610.64,
+ "end": 11610.76,
+ "text": "for"
+ },
+ {
+ "id": 24815,
+ "start": 11610.76,
+ "end": 11610.96,
+ "text": "us,"
+ },
+ {
+ "id": 24816,
+ "start": 11610.96,
+ "end": 11611.24,
+ "text": "then"
+ },
+ {
+ "id": 24817,
+ "start": 11611.24,
+ "end": 11612.16,
+ "text": "our"
+ },
+ {
+ "id": 24818,
+ "start": 11612.16,
+ "end": 11612.48,
+ "text": "team,"
+ },
+ {
+ "id": 24819,
+ "start": 11612.48,
+ "end": 11613.04,
+ "text": "which"
+ },
+ {
+ "id": 24820,
+ "start": 11613.04,
+ "end": 11613.96,
+ "text": "has"
+ },
+ {
+ "id": 24821,
+ "start": 11613.96,
+ "end": 11615.02,
+ "text": "thousands"
+ },
+ {
+ "id": 24822,
+ "start": 11615.02,
+ "end": 11615.12,
+ "text": "of"
+ },
+ {
+ "id": 24823,
+ "start": 11615.12,
+ "end": 11615.36,
+ "text": "people"
+ },
+ {
+ "id": 24824,
+ "start": 11615.36,
+ "end": 11615.64,
+ "text": "working"
+ },
+ {
+ "id": 24825,
+ "start": 11615.64,
+ "end": 11615.76,
+ "text": "on"
+ },
+ {
+ "id": 24826,
+ "start": 11615.76,
+ "end": 11615.9,
+ "text": "it"
+ },
+ {
+ "id": 24827,
+ "start": 11615.9,
+ "end": 11616.84,
+ "text": "should"
+ },
+ {
+ "id": 24828,
+ "start": 11616.84,
+ "end": 11616.98,
+ "text": "take"
+ },
+ {
+ "id": 24829,
+ "start": 11616.98,
+ "end": 11617.06,
+ "text": "it"
+ },
+ {
+ "id": 24830,
+ "start": 11617.06,
+ "end": 11617.94,
+ "text": "down."
+ },
+ {
+ "id": 24831,
+ "start": 11617.94,
+ "end": 11618.76,
+ "text": "Will"
+ },
+ {
+ "id": 24832,
+ "start": 11618.76,
+ "end": 11618.88,
+ "text": "make"
+ },
+ {
+ "id": 24833,
+ "start": 11618.88,
+ "end": 11619.04,
+ "text": "some"
+ },
+ {
+ "id": 24834,
+ "start": 11619.04,
+ "end": 11619.42,
+ "text": "mistakes,"
+ },
+ {
+ "id": 24835,
+ "start": 11619.42,
+ "end": 11619.58,
+ "text": "but"
+ },
+ {
+ "id": 24836,
+ "start": 11619.58,
+ "end": 11619.66,
+ "text": "we"
+ },
+ {
+ "id": 24837,
+ "start": 11619.66,
+ "end": 11619.84,
+ "text": "try"
+ },
+ {
+ "id": 24838,
+ "start": 11619.84,
+ "end": 11619.94,
+ "text": "to"
+ },
+ {
+ "id": 24839,
+ "start": 11619.94,
+ "end": 11620.06,
+ "text": "make"
+ },
+ {
+ "id": 24840,
+ "start": 11620.06,
+ "end": 11620.18,
+ "text": "as"
+ },
+ {
+ "id": 24841,
+ "start": 11620.18,
+ "end": 11620.36,
+ "text": "few"
+ },
+ {
+ "id": 24842,
+ "start": 11620.36,
+ "end": 11620.48,
+ "text": "as"
+ },
+ {
+ "id": 24843,
+ "start": 11620.48,
+ "end": 11620.92,
+ "text": "possible"
+ },
+ {
+ "id": 24844,
+ "start": 11620.92,
+ "end": 11621.64,
+ "text": "over"
+ },
+ {
+ "id": 24845,
+ "start": 11621.64,
+ "end": 11622.04,
+ "text": "time."
+ },
+ {
+ "id": 24846,
+ "start": 11622.04,
+ "end": 11622.22,
+ "text": "I"
+ },
+ {
+ "id": 24847,
+ "start": 11622.22,
+ "end": 11622.42,
+ "text": "think"
+ },
+ {
+ "id": 24848,
+ "start": 11622.42,
+ "end": 11622.66,
+ "text": "the"
+ },
+ {
+ "id": 24849,
+ "start": 11622.66,
+ "end": 11623.28,
+ "text": "strategy"
+ },
+ {
+ "id": 24850,
+ "start": 11623.28,
+ "end": 11623.48,
+ "text": "would"
+ },
+ {
+ "id": 24851,
+ "start": 11623.48,
+ "end": 11623.68,
+ "text": "be"
+ },
+ {
+ "id": 24852,
+ "start": 11623.68,
+ "end": 11624.12,
+ "text": "to"
+ },
+ {
+ "id": 24853,
+ "start": 11624.12,
+ "end": 11624.5,
+ "text": "develop"
+ },
+ {
+ "id": 24854,
+ "start": 11624.5,
+ "end": 11624.9,
+ "text": "more"
+ },
+ {
+ "id": 24855,
+ "start": 11624.9,
+ "end": 11625.36,
+ "text": "AI"
+ },
+ {
+ "id": 24856,
+ "start": 11625.36,
+ "end": 11625.76,
+ "text": "tools"
+ },
+ {
+ "id": 24857,
+ "start": 11625.76,
+ "end": 11626.26,
+ "text": "that"
+ },
+ {
+ "id": 24858,
+ "start": 11626.26,
+ "end": 11626.42,
+ "text": "can"
+ },
+ {
+ "id": 24859,
+ "start": 11626.42,
+ "end": 11626.62,
+ "text": "more"
+ },
+ {
+ "id": 24860,
+ "start": 11626.62,
+ "end": 11627.24,
+ "text": "proactively"
+ },
+ {
+ "id": 24861,
+ "start": 11627.24,
+ "end": 11627.68,
+ "text": "identify"
+ },
+ {
+ "id": 24862,
+ "start": 11627.68,
+ "end": 11628.01,
+ "text": "those"
+ },
+ {
+ "id": 24863,
+ "start": 11628.01,
+ "end": 11628.23,
+ "text": "types"
+ },
+ {
+ "id": 24864,
+ "start": 11628.23,
+ "end": 11628.35,
+ "text": "of"
+ },
+ {
+ "id": 24865,
+ "start": 11628.35,
+ "end": 11628.73,
+ "text": "content"
+ },
+ {
+ "id": 24866,
+ "start": 11628.73,
+ "end": 11628.89,
+ "text": "and"
+ },
+ {
+ "id": 24867,
+ "start": 11628.89,
+ "end": 11629.05,
+ "text": "do"
+ },
+ {
+ "id": 24868,
+ "start": 11629.05,
+ "end": 11629.21,
+ "text": "that"
+ },
+ {
+ "id": 24869,
+ "start": 11629.21,
+ "end": 11629.71,
+ "text": "filtering"
+ },
+ {
+ "id": 24870,
+ "start": 11629.71,
+ "end": 11629.97,
+ "text": "up"
+ },
+ {
+ "id": 24871,
+ "start": 11629.97,
+ "end": 11631.05,
+ "text": "front"
+ },
+ {
+ "id": 24872,
+ "start": 11631.05,
+ "end": 11632.31,
+ "text": "working."
+ },
+ {
+ "id": 24873,
+ "start": 11632.31,
+ "end": 11632.45,
+ "text": "Thank"
+ },
+ {
+ "id": 24874,
+ "start": 11632.45,
+ "end": 11632.61,
+ "text": "you"
+ },
+ {
+ "id": 24875,
+ "start": 11632.61,
+ "end": 11633.41,
+ "text": "center"
+ },
+ {
+ "id": 24876,
+ "start": 11633.41,
+ "end": 11633.67,
+ "text": "center"
+ },
+ {
+ "id": 24877,
+ "start": 11633.67,
+ "end": 11634.05,
+ "text": "solvents"
+ },
+ {
+ "id": 24878,
+ "start": 11634.05,
+ "end": 11634.19,
+ "text": "up"
+ },
+ {
+ "id": 24879,
+ "start": 11634.19,
+ "end": 11634.43,
+ "text": "next."
+ },
+ {
+ "id": 24880,
+ "start": 11634.43,
+ "end": 11635.11,
+ "text": "Thank"
+ },
+ {
+ "id": 24881,
+ "start": 11635.11,
+ "end": 11635.23,
+ "text": "you"
+ },
+ {
+ "id": 24882,
+ "start": 11635.23,
+ "end": 11635.49,
+ "text": "Mr"
+ },
+ {
+ "id": 24883,
+ "start": 11635.49,
+ "end": 11635.89,
+ "text": "Chairman"
+ },
+ {
+ "id": 24884,
+ "start": 11635.89,
+ "end": 11636.11,
+ "text": "and"
+ },
+ {
+ "id": 24885,
+ "start": 11636.11,
+ "end": 11636.91,
+ "text": "Mr"
+ },
+ {
+ "id": 24886,
+ "start": 11636.91,
+ "end": 11638.08,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 24887,
+ "start": 11638.08,
+ "end": 11638.86,
+ "text": "Quite"
+ },
+ {
+ "id": 24888,
+ "start": 11638.86,
+ "end": 11638.9,
+ "text": "a"
+ },
+ {
+ "id": 24889,
+ "start": 11638.9,
+ "end": 11639.34,
+ "text": "story,"
+ },
+ {
+ "id": 24890,
+ "start": 11639.34,
+ "end": 11639.66,
+ "text": "right?"
+ },
+ {
+ "id": 24891,
+ "start": 11639.66,
+ "end": 11640.1,
+ "text": "Dorm"
+ },
+ {
+ "id": 24892,
+ "start": 11640.1,
+ "end": 11640.42,
+ "text": "room"
+ },
+ {
+ "id": 24893,
+ "start": 11640.42,
+ "end": 11641.42,
+ "text": "to"
+ },
+ {
+ "id": 24894,
+ "start": 11641.42,
+ "end": 11641.92,
+ "text": "the"
+ },
+ {
+ "id": 24895,
+ "start": 11641.92,
+ "end": 11643,
+ "text": "global"
+ },
+ {
+ "id": 24896,
+ "start": 11643,
+ "end": 11643.62,
+ "text": "behemoth"
+ },
+ {
+ "id": 24897,
+ "start": 11643.62,
+ "end": 11643.78,
+ "text": "that"
+ },
+ {
+ "id": 24898,
+ "start": 11643.78,
+ "end": 11643.94,
+ "text": "you"
+ },
+ {
+ "id": 24899,
+ "start": 11643.94,
+ "end": 11644.18,
+ "text": "guys"
+ },
+ {
+ "id": 24900,
+ "start": 11644.18,
+ "end": 11644.42,
+ "text": "are"
+ },
+ {
+ "id": 24901,
+ "start": 11644.42,
+ "end": 11645.06,
+ "text": "only"
+ },
+ {
+ "id": 24902,
+ "start": 11645.06,
+ "end": 11645.18,
+ "text": "in"
+ },
+ {
+ "id": 24903,
+ "start": 11645.18,
+ "end": 11645.6,
+ "text": "America."
+ },
+ {
+ "id": 24904,
+ "start": 11645.6,
+ "end": 11645.78,
+ "text": "Would"
+ },
+ {
+ "id": 24905,
+ "start": 11645.78,
+ "end": 11645.9,
+ "text": "you"
+ },
+ {
+ "id": 24906,
+ "start": 11645.9,
+ "end": 11646.1,
+ "text": "agree"
+ },
+ {
+ "id": 24907,
+ "start": 11646.1,
+ "end": 11646.24,
+ "text": "with"
+ },
+ {
+ "id": 24908,
+ "start": 11646.24,
+ "end": 11647.94,
+ "text": "that,"
+ },
+ {
+ "id": 24909,
+ "start": 11647.94,
+ "end": 11648.94,
+ "text": "Senator?"
+ },
+ {
+ "id": 24910,
+ "start": 11648.94,
+ "end": 11649.12,
+ "text": "Most"
+ },
+ {
+ "id": 24911,
+ "start": 11649.12,
+ "end": 11650.06,
+ "text": "you"
+ },
+ {
+ "id": 24912,
+ "start": 11650.06,
+ "end": 11650.32,
+ "text": "couldn't"
+ },
+ {
+ "id": 24913,
+ "start": 11650.32,
+ "end": 11650.4,
+ "text": "do"
+ },
+ {
+ "id": 24914,
+ "start": 11650.4,
+ "end": 11650.58,
+ "text": "this"
+ },
+ {
+ "id": 24915,
+ "start": 11650.58,
+ "end": 11650.68,
+ "text": "in"
+ },
+ {
+ "id": 24916,
+ "start": 11650.68,
+ "end": 11651.08,
+ "text": "China,"
+ },
+ {
+ "id": 24917,
+ "start": 11651.08,
+ "end": 11651.34,
+ "text": "right?"
+ },
+ {
+ "id": 24918,
+ "start": 11651.34,
+ "end": 11651.92,
+ "text": "Or"
+ },
+ {
+ "id": 24919,
+ "start": 11651.92,
+ "end": 11652.9,
+ "text": "what"
+ },
+ {
+ "id": 24920,
+ "start": 11652.9,
+ "end": 11653.04,
+ "text": "you"
+ },
+ {
+ "id": 24921,
+ "start": 11653.04,
+ "end": 11653.18,
+ "text": "do"
+ },
+ {
+ "id": 24922,
+ "start": 11653.18,
+ "end": 11653.64,
+ "text": "and"
+ },
+ {
+ "id": 24923,
+ "start": 11653.64,
+ "end": 11653.88,
+ "text": "years."
+ },
+ {
+ "id": 24924,
+ "start": 11653.88,
+ "end": 11654.4,
+ "text": "While"
+ },
+ {
+ "id": 24925,
+ "start": 11654.4,
+ "end": 11654.74,
+ "text": "Senator"
+ },
+ {
+ "id": 24926,
+ "start": 11654.74,
+ "end": 11655.72,
+ "text": "there,"
+ },
+ {
+ "id": 24927,
+ "start": 11655.72,
+ "end": 11655.88,
+ "text": "there"
+ },
+ {
+ "id": 24928,
+ "start": 11655.88,
+ "end": 11656.02,
+ "text": "are"
+ },
+ {
+ "id": 24929,
+ "start": 11656.02,
+ "end": 11656.2,
+ "text": "some"
+ },
+ {
+ "id": 24930,
+ "start": 11656.2,
+ "end": 11656.44,
+ "text": "very"
+ },
+ {
+ "id": 24931,
+ "start": 11656.44,
+ "end": 11656.74,
+ "text": "strong"
+ },
+ {
+ "id": 24932,
+ "start": 11656.74,
+ "end": 11657.1,
+ "text": "Chinese"
+ },
+ {
+ "id": 24933,
+ "start": 11657.1,
+ "end": 11657.44,
+ "text": "Internet"
+ },
+ {
+ "id": 24934,
+ "start": 11657.44,
+ "end": 11657.88,
+ "text": "companies,"
+ },
+ {
+ "id": 24935,
+ "start": 11657.88,
+ "end": 11658.58,
+ "text": "right?"
+ },
+ {
+ "id": 24936,
+ "start": 11658.58,
+ "end": 11659.32,
+ "text": "But"
+ },
+ {
+ "id": 24937,
+ "start": 11659.32,
+ "end": 11660.3,
+ "text": "you're"
+ },
+ {
+ "id": 24938,
+ "start": 11660.3,
+ "end": 11660.56,
+ "text": "supposed"
+ },
+ {
+ "id": 24939,
+ "start": 11660.56,
+ "end": 11660.64,
+ "text": "to"
+ },
+ {
+ "id": 24940,
+ "start": 11660.64,
+ "end": 11660.94,
+ "text": "answer,"
+ },
+ {
+ "id": 24941,
+ "start": 11660.94,
+ "end": 11661.18,
+ "text": "yes,"
+ },
+ {
+ "id": 24942,
+ "start": 11661.18,
+ "end": 11661.32,
+ "text": "to"
+ },
+ {
+ "id": 24943,
+ "start": 11661.32,
+ "end": 11661.5,
+ "text": "this"
+ },
+ {
+ "id": 24944,
+ "start": 11661.5,
+ "end": 11663.44,
+ "text": "question."
+ },
+ {
+ "id": 24945,
+ "start": 11663.44,
+ "end": 11664.46,
+ "text": "Okay,"
+ },
+ {
+ "id": 24946,
+ "start": 11664.46,
+ "end": 11664.74,
+ "text": "come"
+ },
+ {
+ "id": 24947,
+ "start": 11664.74,
+ "end": 11665.02,
+ "text": "is"
+ },
+ {
+ "id": 24948,
+ "start": 11665.02,
+ "end": 11665.18,
+ "text": "trying"
+ },
+ {
+ "id": 24949,
+ "start": 11665.18,
+ "end": 11665.26,
+ "text": "to"
+ },
+ {
+ "id": 24950,
+ "start": 11665.26,
+ "end": 11665.58,
+ "text": "tell"
+ },
+ {
+ "id": 24951,
+ "start": 11665.58,
+ "end": 11665.8,
+ "text": "you,"
+ },
+ {
+ "id": 24952,
+ "start": 11665.8,
+ "end": 11666.38,
+ "text": "right."
+ },
+ {
+ "id": 24953,
+ "start": 11666.38,
+ "end": 11666.5,
+ "text": "I"
+ },
+ {
+ "id": 24954,
+ "start": 11666.5,
+ "end": 11666.76,
+ "text": "mean,"
+ },
+ {
+ "id": 24955,
+ "start": 11666.76,
+ "end": 11666.92,
+ "text": "give"
+ },
+ {
+ "id": 24956,
+ "start": 11666.92,
+ "end": 11667.02,
+ "text": "me"
+ },
+ {
+ "id": 24957,
+ "start": 11667.02,
+ "end": 11667.1,
+ "text": "a"
+ },
+ {
+ "id": 24958,
+ "start": 11667.1,
+ "end": 11667.44,
+ "text": "break"
+ },
+ {
+ "id": 24959,
+ "start": 11667.44,
+ "end": 11667.68,
+ "text": "you're"
+ },
+ {
+ "id": 24960,
+ "start": 11667.68,
+ "end": 11667.76,
+ "text": "in"
+ },
+ {
+ "id": 24961,
+ "start": 11667.76,
+ "end": 11667.92,
+ "text": "front"
+ },
+ {
+ "id": 24962,
+ "start": 11667.92,
+ "end": 11668,
+ "text": "of"
+ },
+ {
+ "id": 24963,
+ "start": 11668,
+ "end": 11668.08,
+ "text": "a"
+ },
+ {
+ "id": 24964,
+ "start": 11668.08,
+ "end": 11668.26,
+ "text": "bunch."
+ },
+ {
+ "id": 24965,
+ "start": 11668.26,
+ "end": 11668.6,
+ "text": "The"
+ },
+ {
+ "id": 24966,
+ "start": 11668.6,
+ "end": 11668.92,
+ "text": "answers,"
+ },
+ {
+ "id": 24967,
+ "start": 11668.92,
+ "end": 11669.22,
+ "text": "yes."
+ },
+ {
+ "id": 24968,
+ "start": 11669.22,
+ "end": 11669.66,
+ "text": "Okay,"
+ },
+ {
+ "id": 24969,
+ "start": 11669.66,
+ "end": 11669.86,
+ "text": "so"
+ },
+ {
+ "id": 24970,
+ "start": 11669.86,
+ "end": 11670.08,
+ "text": "thank"
+ },
+ {
+ "id": 24971,
+ "start": 11670.08,
+ "end": 11671.2,
+ "text": "you."
+ },
+ {
+ "id": 24972,
+ "start": 11671.2,
+ "end": 11672.46,
+ "text": "Now"
+ },
+ {
+ "id": 24973,
+ "start": 11672.46,
+ "end": 11673.32,
+ "text": "your"
+ },
+ {
+ "id": 24974,
+ "start": 11673.32,
+ "end": 11674.12,
+ "text": "testimony,"
+ },
+ {
+ "id": 24975,
+ "start": 11674.12,
+ "end": 11675,
+ "text": "you"
+ },
+ {
+ "id": 24976,
+ "start": 11675,
+ "end": 11675.2,
+ "text": "have"
+ },
+ {
+ "id": 24977,
+ "start": 11675.2,
+ "end": 11675.5,
+ "text": "talked"
+ },
+ {
+ "id": 24978,
+ "start": 11675.5,
+ "end": 11675.74,
+ "text": "about"
+ },
+ {
+ "id": 24979,
+ "start": 11675.74,
+ "end": 11675.8,
+ "text": "a"
+ },
+ {
+ "id": 24980,
+ "start": 11675.8,
+ "end": 11676.06,
+ "text": "lot"
+ },
+ {
+ "id": 24981,
+ "start": 11676.06,
+ "end": 11676.22,
+ "text": "of"
+ },
+ {
+ "id": 24982,
+ "start": 11676.22,
+ "end": 11677.42,
+ "text": "power"
+ },
+ {
+ "id": 24983,
+ "start": 11677.42,
+ "end": 11678.2,
+ "text": "you've"
+ },
+ {
+ "id": 24984,
+ "start": 11678.2,
+ "end": 11678.36,
+ "text": "been"
+ },
+ {
+ "id": 24985,
+ "start": 11678.36,
+ "end": 11678.8,
+ "text": "involved"
+ },
+ {
+ "id": 24986,
+ "start": 11678.8,
+ "end": 11679.56,
+ "text": "in"
+ },
+ {
+ "id": 24987,
+ "start": 11679.56,
+ "end": 11680.54,
+ "text": "elections."
+ },
+ {
+ "id": 24988,
+ "start": 11680.54,
+ "end": 11680.96,
+ "text": "I"
+ },
+ {
+ "id": 24989,
+ "start": 11680.96,
+ "end": 11681.2,
+ "text": "thought"
+ },
+ {
+ "id": 24990,
+ "start": 11681.2,
+ "end": 11681.98,
+ "text": "your"
+ },
+ {
+ "id": 24991,
+ "start": 11681.98,
+ "end": 11682.3,
+ "text": "Testimo"
+ },
+ {
+ "id": 24992,
+ "start": 11682.3,
+ "end": 11682.42,
+ "text": "is"
+ },
+ {
+ "id": 24993,
+ "start": 11682.42,
+ "end": 11682.68,
+ "text": "very"
+ },
+ {
+ "id": 24994,
+ "start": 11682.68,
+ "end": 11683.2,
+ "text": "interesting,"
+ },
+ {
+ "id": 24995,
+ "start": 11683.2,
+ "end": 11683.78,
+ "text": "really."
+ },
+ {
+ "id": 24996,
+ "start": 11683.78,
+ "end": 11683.98,
+ "text": "All"
+ },
+ {
+ "id": 24997,
+ "start": 11683.98,
+ "end": 11684.22,
+ "text": "over"
+ },
+ {
+ "id": 24998,
+ "start": 11684.22,
+ "end": 11684.34,
+ "text": "the"
+ },
+ {
+ "id": 24999,
+ "start": 11684.34,
+ "end": 11685.3,
+ "text": "world,"
+ },
+ {
+ "id": 25000,
+ "start": 11685.3,
+ "end": 11686.08,
+ "text": "the"
+ },
+ {
+ "id": 25001,
+ "start": 11686.08,
+ "end": 11686.72,
+ "text": "Facebook"
+ },
+ {
+ "id": 25002,
+ "start": 11686.72,
+ "end": 11687.48,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 25003,
+ "start": 11687.48,
+ "end": 11688,
+ "text": "users"
+ },
+ {
+ "id": 25004,
+ "start": 11688,
+ "end": 11688.26,
+ "text": "over"
+ },
+ {
+ "id": 25005,
+ "start": 11688.26,
+ "end": 11689.5,
+ "text": "200,000,000"
+ },
+ {
+ "id": 25006,
+ "start": 11689.5,
+ "end": 11690.02,
+ "text": "Americans"
+ },
+ {
+ "id": 25007,
+ "start": 11690.02,
+ "end": 11690.84,
+ "text": "40,000,000,000"
+ },
+ {
+ "id": 25008,
+ "start": 11690.84,
+ "end": 11691.36,
+ "text": "in"
+ },
+ {
+ "id": 25009,
+ "start": 11691.36,
+ "end": 11691.78,
+ "text": "revenue,"
+ },
+ {
+ "id": 25010,
+ "start": 11691.78,
+ "end": 11691.84,
+ "text": "I"
+ },
+ {
+ "id": 25011,
+ "start": 11691.84,
+ "end": 11692.12,
+ "text": "believe"
+ },
+ {
+ "id": 25012,
+ "start": 11692.12,
+ "end": 11692.24,
+ "text": "you"
+ },
+ {
+ "id": 25013,
+ "start": 11692.24,
+ "end": 11692.44,
+ "text": "and"
+ },
+ {
+ "id": 25014,
+ "start": 11692.44,
+ "end": 11692.78,
+ "text": "Google"
+ },
+ {
+ "id": 25015,
+ "start": 11692.78,
+ "end": 11693.02,
+ "text": "have"
+ },
+ {
+ "id": 25016,
+ "start": 11693.02,
+ "end": 11693.32,
+ "text": "almost"
+ },
+ {
+ "id": 25017,
+ "start": 11693.32,
+ "end": 11694.36,
+ "text": "of"
+ },
+ {
+ "id": 25018,
+ "start": 11694.36,
+ "end": 11694.58,
+ "text": "the"
+ },
+ {
+ "id": 25019,
+ "start": 11694.58,
+ "end": 11695.77,
+ "text": "digital"
+ },
+ {
+ "id": 25020,
+ "start": 11695.77,
+ "end": 11696.43,
+ "text": "advertising"
+ },
+ {
+ "id": 25021,
+ "start": 11696.43,
+ "end": 11696.63,
+ "text": "in"
+ },
+ {
+ "id": 25022,
+ "start": 11696.63,
+ "end": 11696.77,
+ "text": "the"
+ },
+ {
+ "id": 25023,
+ "start": 11696.77,
+ "end": 11696.89,
+ "text": "U"
+ },
+ {
+ "id": 25024,
+ "start": 11696.89,
+ "end": 11697.11,
+ "text": "S"
+ },
+ {
+ "id": 25025,
+ "start": 11697.11,
+ "end": 11697.95,
+ "text": "is"
+ },
+ {
+ "id": 25026,
+ "start": 11697.95,
+ "end": 11698.67,
+ "text": "one"
+ },
+ {
+ "id": 25027,
+ "start": 11698.67,
+ "end": 11698.75,
+ "text": "of"
+ },
+ {
+ "id": 25028,
+ "start": 11698.75,
+ "end": 11698.87,
+ "text": "the"
+ },
+ {
+ "id": 25029,
+ "start": 11698.87,
+ "end": 11699.03,
+ "text": "key"
+ },
+ {
+ "id": 25030,
+ "start": 11699.03,
+ "end": 11699.33,
+ "text": "issues"
+ },
+ {
+ "id": 25031,
+ "start": 11699.33,
+ "end": 11699.53,
+ "text": "here"
+ },
+ {
+ "id": 25032,
+ "start": 11699.53,
+ "end": 11699.95,
+ "text": "is"
+ },
+ {
+ "id": 25033,
+ "start": 11699.95,
+ "end": 11700.49,
+ "text": "Facebook"
+ },
+ {
+ "id": 25034,
+ "start": 11700.49,
+ "end": 11701.21,
+ "text": "too"
+ },
+ {
+ "id": 25035,
+ "start": 11701.21,
+ "end": 11701.67,
+ "text": "powerful."
+ },
+ {
+ "id": 25036,
+ "start": 11701.67,
+ "end": 11702.45,
+ "text": "Are"
+ },
+ {
+ "id": 25037,
+ "start": 11702.45,
+ "end": 11702.59,
+ "text": "you"
+ },
+ {
+ "id": 25038,
+ "start": 11702.59,
+ "end": 11702.79,
+ "text": "too"
+ },
+ {
+ "id": 25039,
+ "start": 11702.79,
+ "end": 11703.21,
+ "text": "powerful?"
+ },
+ {
+ "id": 25040,
+ "start": 11703.21,
+ "end": 11704.15,
+ "text": "And"
+ },
+ {
+ "id": 25041,
+ "start": 11704.15,
+ "end": 11704.61,
+ "text": "do"
+ },
+ {
+ "id": 25042,
+ "start": 11704.61,
+ "end": 11704.73,
+ "text": "you"
+ },
+ {
+ "id": 25043,
+ "start": 11704.73,
+ "end": 11704.87,
+ "text": "think"
+ },
+ {
+ "id": 25044,
+ "start": 11704.87,
+ "end": 11705.07,
+ "text": "you're"
+ },
+ {
+ "id": 25045,
+ "start": 11705.07,
+ "end": 11705.21,
+ "text": "too"
+ },
+ {
+ "id": 25046,
+ "start": 11705.21,
+ "end": 11706.24,
+ "text": "powerful?"
+ },
+ {
+ "id": 25047,
+ "start": 11706.24,
+ "end": 11707.12,
+ "text": "Well,"
+ },
+ {
+ "id": 25048,
+ "start": 11707.12,
+ "end": 11708.84,
+ "text": "I"
+ },
+ {
+ "id": 25049,
+ "start": 11708.84,
+ "end": 11709.18,
+ "text": "think"
+ },
+ {
+ "id": 25050,
+ "start": 11709.18,
+ "end": 11709.36,
+ "text": "most"
+ },
+ {
+ "id": 25051,
+ "start": 11709.36,
+ "end": 11709.44,
+ "text": "of"
+ },
+ {
+ "id": 25052,
+ "start": 11709.44,
+ "end": 11709.54,
+ "text": "the"
+ },
+ {
+ "id": 25053,
+ "start": 11709.54,
+ "end": 11709.74,
+ "text": "time"
+ },
+ {
+ "id": 25054,
+ "start": 11709.74,
+ "end": 11709.94,
+ "text": "when"
+ },
+ {
+ "id": 25055,
+ "start": 11709.94,
+ "end": 11710.22,
+ "text": "people"
+ },
+ {
+ "id": 25056,
+ "start": 11710.22,
+ "end": 11710.54,
+ "text": "talk"
+ },
+ {
+ "id": 25057,
+ "start": 11710.54,
+ "end": 11710.92,
+ "text": "about"
+ },
+ {
+ "id": 25058,
+ "start": 11710.92,
+ "end": 11711.74,
+ "text": "our"
+ },
+ {
+ "id": 25059,
+ "start": 11711.74,
+ "end": 11712.94,
+ "text": "scale"
+ },
+ {
+ "id": 25060,
+ "start": 11712.94,
+ "end": 11713.9,
+ "text": "they're"
+ },
+ {
+ "id": 25061,
+ "start": 11713.9,
+ "end": 11714.4,
+ "text": "referencing"
+ },
+ {
+ "id": 25062,
+ "start": 11714.4,
+ "end": 11714.54,
+ "text": "that"
+ },
+ {
+ "id": 25063,
+ "start": 11714.54,
+ "end": 11714.66,
+ "text": "we"
+ },
+ {
+ "id": 25064,
+ "start": 11714.66,
+ "end": 11714.82,
+ "text": "have"
+ },
+ {
+ "id": 25065,
+ "start": 11714.82,
+ "end": 11716.1,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 25066,
+ "start": 11716.1,
+ "end": 11716.36,
+ "text": "people"
+ },
+ {
+ "id": 25067,
+ "start": 11716.36,
+ "end": 11716.46,
+ "text": "in"
+ },
+ {
+ "id": 25068,
+ "start": 11716.46,
+ "end": 11716.62,
+ "text": "our"
+ },
+ {
+ "id": 25069,
+ "start": 11716.62,
+ "end": 11717.02,
+ "text": "community."
+ },
+ {
+ "id": 25070,
+ "start": 11717.02,
+ "end": 11717.46,
+ "text": "And"
+ },
+ {
+ "id": 25071,
+ "start": 11717.46,
+ "end": 11717.52,
+ "text": "I"
+ },
+ {
+ "id": 25072,
+ "start": 11717.52,
+ "end": 11717.68,
+ "text": "think"
+ },
+ {
+ "id": 25073,
+ "start": 11717.68,
+ "end": 11717.88,
+ "text": "one"
+ },
+ {
+ "id": 25074,
+ "start": 11717.88,
+ "end": 11717.98,
+ "text": "of"
+ },
+ {
+ "id": 25075,
+ "start": 11717.98,
+ "end": 11718.08,
+ "text": "the"
+ },
+ {
+ "id": 25076,
+ "start": 11718.08,
+ "end": 11718.26,
+ "text": "big"
+ },
+ {
+ "id": 25077,
+ "start": 11718.26,
+ "end": 11718.72,
+ "text": "questions"
+ },
+ {
+ "id": 25078,
+ "start": 11718.72,
+ "end": 11718.92,
+ "text": "that"
+ },
+ {
+ "id": 25079,
+ "start": 11718.92,
+ "end": 11719.02,
+ "text": "we"
+ },
+ {
+ "id": 25080,
+ "start": 11719.02,
+ "end": 11719.22,
+ "text": "need"
+ },
+ {
+ "id": 25081,
+ "start": 11719.22,
+ "end": 11719.32,
+ "text": "to"
+ },
+ {
+ "id": 25082,
+ "start": 11719.32,
+ "end": 11719.54,
+ "text": "think"
+ },
+ {
+ "id": 25083,
+ "start": 11719.54,
+ "end": 11719.82,
+ "text": "through"
+ },
+ {
+ "id": 25084,
+ "start": 11719.82,
+ "end": 11720.14,
+ "text": "here"
+ },
+ {
+ "id": 25085,
+ "start": 11720.14,
+ "end": 11721.12,
+ "text": "is"
+ },
+ {
+ "id": 25086,
+ "start": 11721.12,
+ "end": 11721.8,
+ "text": "the"
+ },
+ {
+ "id": 25087,
+ "start": 11721.8,
+ "end": 11722.04,
+ "text": "vast"
+ },
+ {
+ "id": 25088,
+ "start": 11722.04,
+ "end": 11722.36,
+ "text": "majority"
+ },
+ {
+ "id": 25089,
+ "start": 11722.36,
+ "end": 11722.44,
+ "text": "of"
+ },
+ {
+ "id": 25090,
+ "start": 11722.44,
+ "end": 11722.6,
+ "text": "those"
+ },
+ {
+ "id": 25091,
+ "start": 11722.6,
+ "end": 11723.08,
+ "text": "2,000,000,000"
+ },
+ {
+ "id": 25092,
+ "start": 11723.08,
+ "end": 11723.28,
+ "text": "people"
+ },
+ {
+ "id": 25093,
+ "start": 11723.28,
+ "end": 11723.52,
+ "text": "are"
+ },
+ {
+ "id": 25094,
+ "start": 11723.52,
+ "end": 11723.8,
+ "text": "out"
+ },
+ {
+ "id": 25095,
+ "start": 11723.8,
+ "end": 11723.86,
+ "text": "of"
+ },
+ {
+ "id": 25096,
+ "start": 11723.86,
+ "end": 11723.96,
+ "text": "the"
+ },
+ {
+ "id": 25097,
+ "start": 11723.96,
+ "end": 11724.04,
+ "text": "U"
+ },
+ {
+ "id": 25098,
+ "start": 11724.04,
+ "end": 11724.24,
+ "text": "S."
+ },
+ {
+ "id": 25099,
+ "start": 11724.24,
+ "end": 11725.4,
+ "text": "And"
+ },
+ {
+ "id": 25100,
+ "start": 11725.4,
+ "end": 11726.5,
+ "text": "I"
+ },
+ {
+ "id": 25101,
+ "start": 11726.5,
+ "end": 11726.66,
+ "text": "think"
+ },
+ {
+ "id": 25102,
+ "start": 11726.66,
+ "end": 11726.78,
+ "text": "that"
+ },
+ {
+ "id": 25103,
+ "start": 11726.78,
+ "end": 11726.98,
+ "text": "that's"
+ },
+ {
+ "id": 25104,
+ "start": 11726.98,
+ "end": 11727.34,
+ "text": "something"
+ },
+ {
+ "id": 25105,
+ "start": 11727.34,
+ "end": 11727.58,
+ "text": "that"
+ },
+ {
+ "id": 25106,
+ "start": 11727.58,
+ "end": 11727.76,
+ "text": "to"
+ },
+ {
+ "id": 25107,
+ "start": 11727.76,
+ "end": 11727.92,
+ "text": "your"
+ },
+ {
+ "id": 25108,
+ "start": 11727.92,
+ "end": 11728.28,
+ "text": "point"
+ },
+ {
+ "id": 25109,
+ "start": 11728.28,
+ "end": 11728.5,
+ "text": "that"
+ },
+ {
+ "id": 25110,
+ "start": 11728.5,
+ "end": 11728.96,
+ "text": "Americans"
+ },
+ {
+ "id": 25111,
+ "start": 11728.96,
+ "end": 11729.18,
+ "text": "should"
+ },
+ {
+ "id": 25112,
+ "start": 11729.18,
+ "end": 11729.3,
+ "text": "be"
+ },
+ {
+ "id": 25113,
+ "start": 11729.3,
+ "end": 11729.56,
+ "text": "proud"
+ },
+ {
+ "id": 25114,
+ "start": 11729.56,
+ "end": 11729.72,
+ "text": "of"
+ },
+ {
+ "id": 25115,
+ "start": 11729.72,
+ "end": 11730.54,
+ "text": "and"
+ },
+ {
+ "id": 25116,
+ "start": 11730.54,
+ "end": 11730.66,
+ "text": "when"
+ },
+ {
+ "id": 25117,
+ "start": 11730.66,
+ "end": 11730.76,
+ "text": "I"
+ },
+ {
+ "id": 25118,
+ "start": 11730.76,
+ "end": 11730.96,
+ "text": "brought"
+ },
+ {
+ "id": 25119,
+ "start": 11730.96,
+ "end": 11731.06,
+ "text": "up"
+ },
+ {
+ "id": 25120,
+ "start": 11731.06,
+ "end": 11731.18,
+ "text": "the"
+ },
+ {
+ "id": 25121,
+ "start": 11731.18,
+ "end": 11731.5,
+ "text": "Chinese"
+ },
+ {
+ "id": 25122,
+ "start": 11731.5,
+ "end": 11731.84,
+ "text": "Internet"
+ },
+ {
+ "id": 25123,
+ "start": 11731.84,
+ "end": 11732.24,
+ "text": "companies,"
+ },
+ {
+ "id": 25124,
+ "start": 11732.24,
+ "end": 11732.34,
+ "text": "I"
+ },
+ {
+ "id": 25125,
+ "start": 11732.34,
+ "end": 11732.52,
+ "text": "think"
+ },
+ {
+ "id": 25126,
+ "start": 11732.52,
+ "end": 11732.64,
+ "text": "that"
+ },
+ {
+ "id": 25127,
+ "start": 11732.64,
+ "end": 11732.86,
+ "text": "that's"
+ },
+ {
+ "id": 25128,
+ "start": 11732.86,
+ "end": 11733,
+ "text": "a"
+ },
+ {
+ "id": 25129,
+ "start": 11733,
+ "end": 11734.1,
+ "text": "real"
+ },
+ {
+ "id": 25130,
+ "start": 11734.1,
+ "end": 11734.14,
+ "text": "a"
+ },
+ {
+ "id": 25131,
+ "start": 11734.14,
+ "end": 11735.18,
+ "text": "real"
+ },
+ {
+ "id": 25132,
+ "start": 11735.18,
+ "end": 11735.7,
+ "text": "strategic"
+ },
+ {
+ "id": 25133,
+ "start": 11735.7,
+ "end": 11735.84,
+ "text": "and"
+ },
+ {
+ "id": 25134,
+ "start": 11735.84,
+ "end": 11736.32,
+ "text": "competitive"
+ },
+ {
+ "id": 25135,
+ "start": 11736.32,
+ "end": 11736.62,
+ "text": "threat"
+ },
+ {
+ "id": 25136,
+ "start": 11736.62,
+ "end": 11736.9,
+ "text": "that"
+ },
+ {
+ "id": 25137,
+ "start": 11736.9,
+ "end": 11737.6,
+ "text": "an"
+ },
+ {
+ "id": 25138,
+ "start": 11737.6,
+ "end": 11738.2,
+ "text": "American"
+ },
+ {
+ "id": 25139,
+ "start": 11738.2,
+ "end": 11738.68,
+ "text": "technology"
+ },
+ {
+ "id": 25140,
+ "start": 11738.68,
+ "end": 11739.22,
+ "text": "to"
+ },
+ {
+ "id": 25141,
+ "start": 11739.22,
+ "end": 11739.5,
+ "text": "another"
+ },
+ {
+ "id": 25142,
+ "start": 11739.5,
+ "end": 11740.56,
+ "text": "thing"
+ },
+ {
+ "id": 25143,
+ "start": 11740.56,
+ "end": 11740.6,
+ "text": "I"
+ },
+ {
+ "id": 25144,
+ "start": 11740.6,
+ "end": 11741.42,
+ "text": "don't"
+ },
+ {
+ "id": 25145,
+ "start": 11741.42,
+ "end": 11741.54,
+ "text": "want"
+ },
+ {
+ "id": 25146,
+ "start": 11741.54,
+ "end": 11741.62,
+ "text": "to"
+ },
+ {
+ "id": 25147,
+ "start": 11741.62,
+ "end": 11742.02,
+ "text": "interrupt."
+ },
+ {
+ "id": 25148,
+ "start": 11742.02,
+ "end": 11743.74,
+ "text": "But"
+ },
+ {
+ "id": 25149,
+ "start": 11743.74,
+ "end": 11744.72,
+ "text": "when"
+ },
+ {
+ "id": 25150,
+ "start": 11744.72,
+ "end": 11744.82,
+ "text": "you"
+ },
+ {
+ "id": 25151,
+ "start": 11744.82,
+ "end": 11745.08,
+ "text": "look"
+ },
+ {
+ "id": 25152,
+ "start": 11745.08,
+ "end": 11745.2,
+ "text": "at"
+ },
+ {
+ "id": 25153,
+ "start": 11745.2,
+ "end": 11745.4,
+ "text": "kind"
+ },
+ {
+ "id": 25154,
+ "start": 11745.4,
+ "end": 11745.5,
+ "text": "of"
+ },
+ {
+ "id": 25155,
+ "start": 11745.5,
+ "end": 11745.58,
+ "text": "the"
+ },
+ {
+ "id": 25156,
+ "start": 11745.58,
+ "end": 11746.04,
+ "text": "history"
+ },
+ {
+ "id": 25157,
+ "start": 11746.04,
+ "end": 11746.2,
+ "text": "of"
+ },
+ {
+ "id": 25158,
+ "start": 11746.2,
+ "end": 11746.5,
+ "text": "this"
+ },
+ {
+ "id": 25159,
+ "start": 11746.5,
+ "end": 11746.94,
+ "text": "country"
+ },
+ {
+ "id": 25160,
+ "start": 11746.94,
+ "end": 11747.12,
+ "text": "and"
+ },
+ {
+ "id": 25161,
+ "start": 11747.12,
+ "end": 11747.24,
+ "text": "you"
+ },
+ {
+ "id": 25162,
+ "start": 11747.24,
+ "end": 11747.46,
+ "text": "look"
+ },
+ {
+ "id": 25163,
+ "start": 11747.46,
+ "end": 11747.58,
+ "text": "at"
+ },
+ {
+ "id": 25164,
+ "start": 11747.58,
+ "end": 11748.24,
+ "text": "the"
+ },
+ {
+ "id": 25165,
+ "start": 11748.24,
+ "end": 11748.64,
+ "text": "history"
+ },
+ {
+ "id": 25166,
+ "start": 11748.64,
+ "end": 11748.74,
+ "text": "of"
+ },
+ {
+ "id": 25167,
+ "start": 11748.74,
+ "end": 11748.98,
+ "text": "these"
+ },
+ {
+ "id": 25168,
+ "start": 11748.98,
+ "end": 11749.16,
+ "text": "kind"
+ },
+ {
+ "id": 25169,
+ "start": 11749.16,
+ "end": 11749.24,
+ "text": "of"
+ },
+ {
+ "id": 25170,
+ "start": 11749.24,
+ "end": 11749.8,
+ "text": "hearings"
+ },
+ {
+ "id": 25171,
+ "start": 11749.8,
+ "end": 11750.3,
+ "text": "right"
+ },
+ {
+ "id": 25172,
+ "start": 11750.3,
+ "end": 11750.86,
+ "text": "you're"
+ },
+ {
+ "id": 25173,
+ "start": 11750.86,
+ "end": 11750.92,
+ "text": "a"
+ },
+ {
+ "id": 25174,
+ "start": 11750.92,
+ "end": 11751.2,
+ "text": "smart"
+ },
+ {
+ "id": 25175,
+ "start": 11751.2,
+ "end": 11751.44,
+ "text": "guy."
+ },
+ {
+ "id": 25176,
+ "start": 11751.44,
+ "end": 11751.62,
+ "text": "You"
+ },
+ {
+ "id": 25177,
+ "start": 11751.62,
+ "end": 11751.78,
+ "text": "read"
+ },
+ {
+ "id": 25178,
+ "start": 11751.78,
+ "end": 11751.84,
+ "text": "a"
+ },
+ {
+ "id": 25179,
+ "start": 11751.84,
+ "end": 11752.02,
+ "text": "lot"
+ },
+ {
+ "id": 25180,
+ "start": 11752.02,
+ "end": 11752.14,
+ "text": "of"
+ },
+ {
+ "id": 25181,
+ "start": 11752.14,
+ "end": 11753.12,
+ "text": "history"
+ },
+ {
+ "id": 25182,
+ "start": 11753.12,
+ "end": 11753.8,
+ "text": "when"
+ },
+ {
+ "id": 25183,
+ "start": 11753.8,
+ "end": 11754.4,
+ "text": "companies"
+ },
+ {
+ "id": 25184,
+ "start": 11754.4,
+ "end": 11754.98,
+ "text": "become"
+ },
+ {
+ "id": 25185,
+ "start": 11754.98,
+ "end": 11756.3,
+ "text": "big"
+ },
+ {
+ "id": 25186,
+ "start": 11756.3,
+ "end": 11756.52,
+ "text": "and"
+ },
+ {
+ "id": 25187,
+ "start": 11756.52,
+ "end": 11757.08,
+ "text": "powerful"
+ },
+ {
+ "id": 25188,
+ "start": 11757.08,
+ "end": 11757.26,
+ "text": "and"
+ },
+ {
+ "id": 25189,
+ "start": 11757.26,
+ "end": 11757.88,
+ "text": "accumulate."
+ },
+ {
+ "id": 25190,
+ "start": 11757.88,
+ "end": 11757.96,
+ "text": "A"
+ },
+ {
+ "id": 25191,
+ "start": 11757.96,
+ "end": 11758.14,
+ "text": "lot"
+ },
+ {
+ "id": 25192,
+ "start": 11758.14,
+ "end": 11758.26,
+ "text": "of"
+ },
+ {
+ "id": 25193,
+ "start": 11758.26,
+ "end": 11758.58,
+ "text": "wealth"
+ },
+ {
+ "id": 25194,
+ "start": 11758.58,
+ "end": 11759.08,
+ "text": "and"
+ },
+ {
+ "id": 25195,
+ "start": 11759.08,
+ "end": 11759.6,
+ "text": "power."
+ },
+ {
+ "id": 25196,
+ "start": 11759.6,
+ "end": 11760.54,
+ "text": "What"
+ },
+ {
+ "id": 25197,
+ "start": 11760.54,
+ "end": 11761.08,
+ "text": "typically"
+ },
+ {
+ "id": 25198,
+ "start": 11761.08,
+ "end": 11761.64,
+ "text": "happens"
+ },
+ {
+ "id": 25199,
+ "start": 11761.64,
+ "end": 11761.98,
+ "text": "from"
+ },
+ {
+ "id": 25200,
+ "start": 11761.98,
+ "end": 11762.22,
+ "text": "this"
+ },
+ {
+ "id": 25201,
+ "start": 11762.22,
+ "end": 11762.66,
+ "text": "body"
+ },
+ {
+ "id": 25202,
+ "start": 11762.66,
+ "end": 11763.34,
+ "text": "is"
+ },
+ {
+ "id": 25203,
+ "start": 11763.34,
+ "end": 11764.44,
+ "text": "there's"
+ },
+ {
+ "id": 25204,
+ "start": 11764.44,
+ "end": 11764.68,
+ "text": "an"
+ },
+ {
+ "id": 25205,
+ "start": 11764.68,
+ "end": 11765.62,
+ "text": "instinct"
+ },
+ {
+ "id": 25206,
+ "start": 11765.62,
+ "end": 11765.84,
+ "text": "to"
+ },
+ {
+ "id": 25207,
+ "start": 11765.84,
+ "end": 11766.3,
+ "text": "either"
+ },
+ {
+ "id": 25208,
+ "start": 11766.3,
+ "end": 11766.86,
+ "text": "regulate"
+ },
+ {
+ "id": 25209,
+ "start": 11766.86,
+ "end": 11767.9,
+ "text": "or"
+ },
+ {
+ "id": 25210,
+ "start": 11767.9,
+ "end": 11768.22,
+ "text": "break"
+ },
+ {
+ "id": 25211,
+ "start": 11768.22,
+ "end": 11768.48,
+ "text": "up."
+ },
+ {
+ "id": 25212,
+ "start": 11768.48,
+ "end": 11769.86,
+ "text": "Right?"
+ },
+ {
+ "id": 25213,
+ "start": 11769.86,
+ "end": 11770.06,
+ "text": "Look"
+ },
+ {
+ "id": 25214,
+ "start": 11770.06,
+ "end": 11770.14,
+ "text": "at"
+ },
+ {
+ "id": 25215,
+ "start": 11770.14,
+ "end": 11770.26,
+ "text": "the"
+ },
+ {
+ "id": 25216,
+ "start": 11770.26,
+ "end": 11770.58,
+ "text": "history"
+ },
+ {
+ "id": 25217,
+ "start": 11770.58,
+ "end": 11770.64,
+ "text": "of"
+ },
+ {
+ "id": 25218,
+ "start": 11770.64,
+ "end": 11770.84,
+ "text": "this"
+ },
+ {
+ "id": 25219,
+ "start": 11770.84,
+ "end": 11772.04,
+ "text": "nation."
+ },
+ {
+ "id": 25220,
+ "start": 11772.04,
+ "end": 11772.8,
+ "text": "You"
+ },
+ {
+ "id": 25221,
+ "start": 11772.8,
+ "end": 11772.94,
+ "text": "have"
+ },
+ {
+ "id": 25222,
+ "start": 11772.94,
+ "end": 11773.06,
+ "text": "any"
+ },
+ {
+ "id": 25223,
+ "start": 11773.06,
+ "end": 11773.32,
+ "text": "thoughts"
+ },
+ {
+ "id": 25224,
+ "start": 11773.32,
+ "end": 11773.48,
+ "text": "on"
+ },
+ {
+ "id": 25225,
+ "start": 11773.48,
+ "end": 11773.78,
+ "text": "those"
+ },
+ {
+ "id": 25226,
+ "start": 11773.78,
+ "end": 11775.22,
+ "text": "two"
+ },
+ {
+ "id": 25227,
+ "start": 11775.22,
+ "end": 11776.5,
+ "text": "policy"
+ },
+ {
+ "id": 25228,
+ "start": 11776.5,
+ "end": 11778.9,
+ "text": "approaches."
+ },
+ {
+ "id": 25229,
+ "start": 11778.9,
+ "end": 11779.92,
+ "text": "Well,"
+ },
+ {
+ "id": 25230,
+ "start": 11779.92,
+ "end": 11780.7,
+ "text": "Senator"
+ },
+ {
+ "id": 25231,
+ "start": 11780.7,
+ "end": 11781.26,
+ "text": "I'm"
+ },
+ {
+ "id": 25232,
+ "start": 11781.26,
+ "end": 11781.5,
+ "text": "not"
+ },
+ {
+ "id": 25233,
+ "start": 11781.5,
+ "end": 11781.74,
+ "text": "the"
+ },
+ {
+ "id": 25234,
+ "start": 11781.74,
+ "end": 11781.94,
+ "text": "type"
+ },
+ {
+ "id": 25235,
+ "start": 11781.94,
+ "end": 11782.04,
+ "text": "of"
+ },
+ {
+ "id": 25236,
+ "start": 11782.04,
+ "end": 11782.34,
+ "text": "person"
+ },
+ {
+ "id": 25237,
+ "start": 11782.34,
+ "end": 11782.48,
+ "text": "who"
+ },
+ {
+ "id": 25238,
+ "start": 11782.48,
+ "end": 11782.72,
+ "text": "thinks"
+ },
+ {
+ "id": 25239,
+ "start": 11782.72,
+ "end": 11782.9,
+ "text": "that"
+ },
+ {
+ "id": 25240,
+ "start": 11782.9,
+ "end": 11783.08,
+ "text": "all"
+ },
+ {
+ "id": 25241,
+ "start": 11783.08,
+ "end": 11783.7,
+ "text": "regulation"
+ },
+ {
+ "id": 25242,
+ "start": 11783.7,
+ "end": 11783.9,
+ "text": "is"
+ },
+ {
+ "id": 25243,
+ "start": 11783.9,
+ "end": 11784.24,
+ "text": "bad."
+ },
+ {
+ "id": 25244,
+ "start": 11784.24,
+ "end": 11785,
+ "text": "So"
+ },
+ {
+ "id": 25245,
+ "start": 11785,
+ "end": 11785.08,
+ "text": "I"
+ },
+ {
+ "id": 25246,
+ "start": 11785.08,
+ "end": 11785.26,
+ "text": "think"
+ },
+ {
+ "id": 25247,
+ "start": 11785.26,
+ "end": 11785.4,
+ "text": "the"
+ },
+ {
+ "id": 25248,
+ "start": 11785.4,
+ "end": 11785.76,
+ "text": "Internet"
+ },
+ {
+ "id": 25249,
+ "start": 11785.76,
+ "end": 11785.9,
+ "text": "is"
+ },
+ {
+ "id": 25250,
+ "start": 11785.9,
+ "end": 11786.26,
+ "text": "becoming"
+ },
+ {
+ "id": 25251,
+ "start": 11786.26,
+ "end": 11786.78,
+ "text": "increasingly"
+ },
+ {
+ "id": 25252,
+ "start": 11786.78,
+ "end": 11787.16,
+ "text": "important"
+ },
+ {
+ "id": 25253,
+ "start": 11787.16,
+ "end": 11787.24,
+ "text": "in"
+ },
+ {
+ "id": 25254,
+ "start": 11787.24,
+ "end": 11787.6,
+ "text": "people's"
+ },
+ {
+ "id": 25255,
+ "start": 11787.6,
+ "end": 11787.96,
+ "text": "lives."
+ },
+ {
+ "id": 25256,
+ "start": 11787.96,
+ "end": 11788.52,
+ "text": "And"
+ },
+ {
+ "id": 25257,
+ "start": 11788.52,
+ "end": 11788.58,
+ "text": "I"
+ },
+ {
+ "id": 25258,
+ "start": 11788.58,
+ "end": 11788.76,
+ "text": "think"
+ },
+ {
+ "id": 25259,
+ "start": 11788.76,
+ "end": 11788.86,
+ "text": "we"
+ },
+ {
+ "id": 25260,
+ "start": 11788.86,
+ "end": 11789.06,
+ "text": "need"
+ },
+ {
+ "id": 25261,
+ "start": 11789.06,
+ "end": 11789.14,
+ "text": "to"
+ },
+ {
+ "id": 25262,
+ "start": 11789.14,
+ "end": 11789.44,
+ "text": "have"
+ },
+ {
+ "id": 25263,
+ "start": 11789.44,
+ "end": 11789.5,
+ "text": "a"
+ },
+ {
+ "id": 25264,
+ "start": 11789.5,
+ "end": 11789.82,
+ "text": "full"
+ },
+ {
+ "id": 25265,
+ "start": 11789.82,
+ "end": 11790.5,
+ "text": "conversation"
+ },
+ {
+ "id": 25266,
+ "start": 11790.5,
+ "end": 11791.22,
+ "text": "about"
+ },
+ {
+ "id": 25267,
+ "start": 11791.22,
+ "end": 11791.54,
+ "text": "what"
+ },
+ {
+ "id": 25268,
+ "start": 11791.54,
+ "end": 11791.66,
+ "text": "is"
+ },
+ {
+ "id": 25269,
+ "start": 11791.66,
+ "end": 11791.78,
+ "text": "the"
+ },
+ {
+ "id": 25270,
+ "start": 11791.78,
+ "end": 11791.98,
+ "text": "right"
+ },
+ {
+ "id": 25271,
+ "start": 11791.98,
+ "end": 11792.44,
+ "text": "regulation?"
+ },
+ {
+ "id": 25272,
+ "start": 11792.44,
+ "end": 11792.62,
+ "text": "Not"
+ },
+ {
+ "id": 25273,
+ "start": 11792.62,
+ "end": 11792.86,
+ "text": "whether"
+ },
+ {
+ "id": 25274,
+ "start": 11792.86,
+ "end": 11792.96,
+ "text": "it"
+ },
+ {
+ "id": 25275,
+ "start": 11792.96,
+ "end": 11793.2,
+ "text": "should"
+ },
+ {
+ "id": 25276,
+ "start": 11793.2,
+ "end": 11793.3,
+ "text": "be"
+ },
+ {
+ "id": 25277,
+ "start": 11793.3,
+ "end": 11793.4,
+ "text": "or"
+ },
+ {
+ "id": 25278,
+ "start": 11793.4,
+ "end": 11793.66,
+ "text": "shouldn't"
+ },
+ {
+ "id": 25279,
+ "start": 11793.66,
+ "end": 11793.76,
+ "text": "be."
+ },
+ {
+ "id": 25280,
+ "start": 11793.76,
+ "end": 11794.2,
+ "text": "Let"
+ },
+ {
+ "id": 25281,
+ "start": 11794.2,
+ "end": 11794.34,
+ "text": "me"
+ },
+ {
+ "id": 25282,
+ "start": 11794.34,
+ "end": 11794.58,
+ "text": "talk"
+ },
+ {
+ "id": 25283,
+ "start": 11794.58,
+ "end": 11794.78,
+ "text": "about"
+ },
+ {
+ "id": 25284,
+ "start": 11794.78,
+ "end": 11794.92,
+ "text": "the"
+ },
+ {
+ "id": 25285,
+ "start": 11794.92,
+ "end": 11795.3,
+ "text": "tension"
+ },
+ {
+ "id": 25286,
+ "start": 11795.3,
+ "end": 11795.48,
+ "text": "there."
+ },
+ {
+ "id": 25287,
+ "start": 11795.48,
+ "end": 11795.68,
+ "text": "Cause"
+ },
+ {
+ "id": 25288,
+ "start": 11795.68,
+ "end": 11795.84,
+ "text": "I"
+ },
+ {
+ "id": 25289,
+ "start": 11795.84,
+ "end": 11796,
+ "text": "think"
+ },
+ {
+ "id": 25290,
+ "start": 11796,
+ "end": 11796.18,
+ "text": "it's"
+ },
+ {
+ "id": 25291,
+ "start": 11796.18,
+ "end": 11796.24,
+ "text": "a"
+ },
+ {
+ "id": 25292,
+ "start": 11796.24,
+ "end": 11796.46,
+ "text": "good"
+ },
+ {
+ "id": 25293,
+ "start": 11796.46,
+ "end": 11796.74,
+ "text": "point."
+ },
+ {
+ "id": 25294,
+ "start": 11796.74,
+ "end": 11796.9,
+ "text": "And"
+ },
+ {
+ "id": 25295,
+ "start": 11796.9,
+ "end": 11797.08,
+ "text": "I"
+ },
+ {
+ "id": 25296,
+ "start": 11797.08,
+ "end": 11797.62,
+ "text": "appreciate"
+ },
+ {
+ "id": 25297,
+ "start": 11797.62,
+ "end": 11797.78,
+ "text": "you"
+ },
+ {
+ "id": 25298,
+ "start": 11797.78,
+ "end": 11798.2,
+ "text": "mentioning"
+ },
+ {
+ "id": 25299,
+ "start": 11798.2,
+ "end": 11798.78,
+ "text": "that."
+ },
+ {
+ "id": 25300,
+ "start": 11798.78,
+ "end": 11799.76,
+ "text": "One"
+ },
+ {
+ "id": 25301,
+ "start": 11799.76,
+ "end": 11799.84,
+ "text": "of"
+ },
+ {
+ "id": 25302,
+ "start": 11799.84,
+ "end": 11800.04,
+ "text": "my"
+ },
+ {
+ "id": 25303,
+ "start": 11800.04,
+ "end": 11800.36,
+ "text": "worries"
+ },
+ {
+ "id": 25304,
+ "start": 11800.36,
+ "end": 11800.52,
+ "text": "on"
+ },
+ {
+ "id": 25305,
+ "start": 11800.52,
+ "end": 11801.16,
+ "text": "regulation"
+ },
+ {
+ "id": 25306,
+ "start": 11801.16,
+ "end": 11801.74,
+ "text": "again"
+ },
+ {
+ "id": 25307,
+ "start": 11801.74,
+ "end": 11802.24,
+ "text": "with"
+ },
+ {
+ "id": 25308,
+ "start": 11802.24,
+ "end": 11802.36,
+ "text": "a"
+ },
+ {
+ "id": 25309,
+ "start": 11802.36,
+ "end": 11802.8,
+ "text": "company"
+ },
+ {
+ "id": 25310,
+ "start": 11802.8,
+ "end": 11802.94,
+ "text": "of"
+ },
+ {
+ "id": 25311,
+ "start": 11802.94,
+ "end": 11803.14,
+ "text": "your"
+ },
+ {
+ "id": 25312,
+ "start": 11803.14,
+ "end": 11803.54,
+ "text": "size"
+ },
+ {
+ "id": 25313,
+ "start": 11803.54,
+ "end": 11803.8,
+ "text": "you're"
+ },
+ {
+ "id": 25314,
+ "start": 11803.8,
+ "end": 11804.02,
+ "text": "saying,"
+ },
+ {
+ "id": 25315,
+ "start": 11804.02,
+ "end": 11804.36,
+ "text": "hey,"
+ },
+ {
+ "id": 25316,
+ "start": 11804.36,
+ "end": 11804.5,
+ "text": "we"
+ },
+ {
+ "id": 25317,
+ "start": 11804.5,
+ "end": 11804.72,
+ "text": "might"
+ },
+ {
+ "id": 25318,
+ "start": 11804.72,
+ "end": 11804.84,
+ "text": "be"
+ },
+ {
+ "id": 25319,
+ "start": 11804.84,
+ "end": 11805.28,
+ "text": "interested"
+ },
+ {
+ "id": 25320,
+ "start": 11805.28,
+ "end": 11805.42,
+ "text": "in"
+ },
+ {
+ "id": 25321,
+ "start": 11805.42,
+ "end": 11805.7,
+ "text": "being"
+ },
+ {
+ "id": 25322,
+ "start": 11805.7,
+ "end": 11806.36,
+ "text": "regulated."
+ },
+ {
+ "id": 25323,
+ "start": 11806.36,
+ "end": 11807.02,
+ "text": "But"
+ },
+ {
+ "id": 25324,
+ "start": 11807.02,
+ "end": 11807.2,
+ "text": "as"
+ },
+ {
+ "id": 25325,
+ "start": 11807.2,
+ "end": 11807.4,
+ "text": "you"
+ },
+ {
+ "id": 25326,
+ "start": 11807.4,
+ "end": 11807.58,
+ "text": "know,"
+ },
+ {
+ "id": 25327,
+ "start": 11807.58,
+ "end": 11808.5,
+ "text": "regulations"
+ },
+ {
+ "id": 25328,
+ "start": 11808.5,
+ "end": 11808.7,
+ "text": "can"
+ },
+ {
+ "id": 25329,
+ "start": 11808.7,
+ "end": 11809.12,
+ "text": "also"
+ },
+ {
+ "id": 25330,
+ "start": 11809.12,
+ "end": 11809.66,
+ "text": "cement"
+ },
+ {
+ "id": 25331,
+ "start": 11809.66,
+ "end": 11809.82,
+ "text": "the"
+ },
+ {
+ "id": 25332,
+ "start": 11809.82,
+ "end": 11810.3,
+ "text": "dominant"
+ },
+ {
+ "id": 25333,
+ "start": 11810.3,
+ "end": 11810.66,
+ "text": "power."
+ },
+ {
+ "id": 25334,
+ "start": 11810.66,
+ "end": 11811.04,
+ "text": "So,"
+ },
+ {
+ "id": 25335,
+ "start": 11811.04,
+ "end": 11811.18,
+ "text": "what"
+ },
+ {
+ "id": 25336,
+ "start": 11811.18,
+ "end": 11811.28,
+ "text": "do"
+ },
+ {
+ "id": 25337,
+ "start": 11811.28,
+ "end": 11811.4,
+ "text": "I"
+ },
+ {
+ "id": 25338,
+ "start": 11811.4,
+ "end": 11811.58,
+ "text": "mean"
+ },
+ {
+ "id": 25339,
+ "start": 11811.58,
+ "end": 11811.68,
+ "text": "by"
+ },
+ {
+ "id": 25340,
+ "start": 11811.68,
+ "end": 11811.86,
+ "text": "that?"
+ },
+ {
+ "id": 25341,
+ "start": 11811.86,
+ "end": 11812.54,
+ "text": "You"
+ },
+ {
+ "id": 25342,
+ "start": 11812.54,
+ "end": 11812.72,
+ "text": "know,"
+ },
+ {
+ "id": 25343,
+ "start": 11812.72,
+ "end": 11812.82,
+ "text": "you"
+ },
+ {
+ "id": 25344,
+ "start": 11812.82,
+ "end": 11812.96,
+ "text": "have"
+ },
+ {
+ "id": 25345,
+ "start": 11812.96,
+ "end": 11813.02,
+ "text": "a"
+ },
+ {
+ "id": 25346,
+ "start": 11813.02,
+ "end": 11813.14,
+ "text": "lot"
+ },
+ {
+ "id": 25347,
+ "start": 11813.14,
+ "end": 11813.22,
+ "text": "of"
+ },
+ {
+ "id": 25348,
+ "start": 11813.22,
+ "end": 11813.66,
+ "text": "lobbyists,"
+ },
+ {
+ "id": 25349,
+ "start": 11813.66,
+ "end": 11813.78,
+ "text": "I"
+ },
+ {
+ "id": 25350,
+ "start": 11813.78,
+ "end": 11814,
+ "text": "think"
+ },
+ {
+ "id": 25351,
+ "start": 11814,
+ "end": 11814.82,
+ "text": "every"
+ },
+ {
+ "id": 25352,
+ "start": 11814.82,
+ "end": 11815.18,
+ "text": "lobbyists"
+ },
+ {
+ "id": 25353,
+ "start": 11815.18,
+ "end": 11815.32,
+ "text": "in"
+ },
+ {
+ "id": 25354,
+ "start": 11815.32,
+ "end": 11815.6,
+ "text": "town"
+ },
+ {
+ "id": 25355,
+ "start": 11815.6,
+ "end": 11815.72,
+ "text": "is"
+ },
+ {
+ "id": 25356,
+ "start": 11815.72,
+ "end": 11816.06,
+ "text": "involved"
+ },
+ {
+ "id": 25357,
+ "start": 11816.06,
+ "end": 11816.16,
+ "text": "in"
+ },
+ {
+ "id": 25358,
+ "start": 11816.16,
+ "end": 11816.3,
+ "text": "this"
+ },
+ {
+ "id": 25359,
+ "start": 11816.3,
+ "end": 11816.6,
+ "text": "hearing"
+ },
+ {
+ "id": 25360,
+ "start": 11816.6,
+ "end": 11816.72,
+ "text": "in"
+ },
+ {
+ "id": 25361,
+ "start": 11816.72,
+ "end": 11816.94,
+ "text": "some"
+ },
+ {
+ "id": 25362,
+ "start": 11816.94,
+ "end": 11817.16,
+ "text": "way"
+ },
+ {
+ "id": 25363,
+ "start": 11817.16,
+ "end": 11817.38,
+ "text": "or"
+ },
+ {
+ "id": 25364,
+ "start": 11817.38,
+ "end": 11817.78,
+ "text": "another,"
+ },
+ {
+ "id": 25365,
+ "start": 11817.78,
+ "end": 11817.82,
+ "text": "a"
+ },
+ {
+ "id": 25366,
+ "start": 11817.82,
+ "end": 11818.02,
+ "text": "lot"
+ },
+ {
+ "id": 25367,
+ "start": 11818.02,
+ "end": 11818.12,
+ "text": "of"
+ },
+ {
+ "id": 25368,
+ "start": 11818.12,
+ "end": 11818.58,
+ "text": "powerful"
+ },
+ {
+ "id": 25369,
+ "start": 11818.58,
+ "end": 11819.1,
+ "text": "interests."
+ },
+ {
+ "id": 25370,
+ "start": 11819.1,
+ "end": 11820.06,
+ "text": "You"
+ },
+ {
+ "id": 25371,
+ "start": 11820.06,
+ "end": 11820.24,
+ "text": "look"
+ },
+ {
+ "id": 25372,
+ "start": 11820.24,
+ "end": 11820.34,
+ "text": "at"
+ },
+ {
+ "id": 25373,
+ "start": 11820.34,
+ "end": 11820.46,
+ "text": "what"
+ },
+ {
+ "id": 25374,
+ "start": 11820.46,
+ "end": 11820.68,
+ "text": "happened"
+ },
+ {
+ "id": 25375,
+ "start": 11820.68,
+ "end": 11820.8,
+ "text": "with"
+ },
+ {
+ "id": 25376,
+ "start": 11820.8,
+ "end": 11821.04,
+ "text": "Dodd"
+ },
+ {
+ "id": 25377,
+ "start": 11821.04,
+ "end": 11821.34,
+ "text": "Frank"
+ },
+ {
+ "id": 25378,
+ "start": 11821.34,
+ "end": 11821.86,
+ "text": "that"
+ },
+ {
+ "id": 25379,
+ "start": 11821.86,
+ "end": 11821.98,
+ "text": "was"
+ },
+ {
+ "id": 25380,
+ "start": 11821.98,
+ "end": 11822.32,
+ "text": "supposed"
+ },
+ {
+ "id": 25381,
+ "start": 11822.32,
+ "end": 11822.42,
+ "text": "to"
+ },
+ {
+ "id": 25382,
+ "start": 11822.42,
+ "end": 11822.5,
+ "text": "be"
+ },
+ {
+ "id": 25383,
+ "start": 11822.5,
+ "end": 11823.1,
+ "text": "aimed"
+ },
+ {
+ "id": 25384,
+ "start": 11823.1,
+ "end": 11823.46,
+ "text": "at"
+ },
+ {
+ "id": 25385,
+ "start": 11823.46,
+ "end": 11824.26,
+ "text": "the"
+ },
+ {
+ "id": 25386,
+ "start": 11824.26,
+ "end": 11824.5,
+ "text": "big"
+ },
+ {
+ "id": 25387,
+ "start": 11824.5,
+ "end": 11824.92,
+ "text": "banks."
+ },
+ {
+ "id": 25388,
+ "start": 11824.92,
+ "end": 11825.54,
+ "text": "The"
+ },
+ {
+ "id": 25389,
+ "start": 11825.54,
+ "end": 11826.18,
+ "text": "regulations"
+ },
+ {
+ "id": 25390,
+ "start": 11826.18,
+ "end": 11826.52,
+ "text": "ended"
+ },
+ {
+ "id": 25391,
+ "start": 11826.52,
+ "end": 11826.64,
+ "text": "up"
+ },
+ {
+ "id": 25392,
+ "start": 11826.64,
+ "end": 11827.52,
+ "text": "empowering"
+ },
+ {
+ "id": 25393,
+ "start": 11827.52,
+ "end": 11828.1,
+ "text": "the"
+ },
+ {
+ "id": 25394,
+ "start": 11828.1,
+ "end": 11828.32,
+ "text": "big"
+ },
+ {
+ "id": 25395,
+ "start": 11828.32,
+ "end": 11828.64,
+ "text": "banks"
+ },
+ {
+ "id": 25396,
+ "start": 11828.64,
+ "end": 11828.98,
+ "text": "in"
+ },
+ {
+ "id": 25397,
+ "start": 11828.98,
+ "end": 11829.52,
+ "text": "keeping"
+ },
+ {
+ "id": 25398,
+ "start": 11829.52,
+ "end": 11830,
+ "text": "the"
+ },
+ {
+ "id": 25399,
+ "start": 11830,
+ "end": 11830.4,
+ "text": "small"
+ },
+ {
+ "id": 25400,
+ "start": 11830.4,
+ "end": 11830.8,
+ "text": "banks"
+ },
+ {
+ "id": 25401,
+ "start": 11830.8,
+ "end": 11831.72,
+ "text": "down."
+ },
+ {
+ "id": 25402,
+ "start": 11831.72,
+ "end": 11831.98,
+ "text": "Do"
+ },
+ {
+ "id": 25403,
+ "start": 11831.98,
+ "end": 11832.12,
+ "text": "you"
+ },
+ {
+ "id": 25404,
+ "start": 11832.12,
+ "end": 11832.52,
+ "text": "think"
+ },
+ {
+ "id": 25405,
+ "start": 11832.52,
+ "end": 11832.68,
+ "text": "that"
+ },
+ {
+ "id": 25406,
+ "start": 11832.68,
+ "end": 11832.92,
+ "text": "that's"
+ },
+ {
+ "id": 25407,
+ "start": 11832.92,
+ "end": 11833.04,
+ "text": "a"
+ },
+ {
+ "id": 25408,
+ "start": 11833.04,
+ "end": 11833.82,
+ "text": "risk"
+ },
+ {
+ "id": 25409,
+ "start": 11833.82,
+ "end": 11834.5,
+ "text": "given"
+ },
+ {
+ "id": 25410,
+ "start": 11834.5,
+ "end": 11834.7,
+ "text": "your"
+ },
+ {
+ "id": 25411,
+ "start": 11834.7,
+ "end": 11835.34,
+ "text": "influence"
+ },
+ {
+ "id": 25412,
+ "start": 11835.34,
+ "end": 11835.58,
+ "text": "that"
+ },
+ {
+ "id": 25413,
+ "start": 11835.58,
+ "end": 11835.74,
+ "text": "if"
+ },
+ {
+ "id": 25414,
+ "start": 11835.74,
+ "end": 11835.88,
+ "text": "we"
+ },
+ {
+ "id": 25415,
+ "start": 11835.88,
+ "end": 11836.64,
+ "text": "regulate"
+ },
+ {
+ "id": 25416,
+ "start": 11836.64,
+ "end": 11837.38,
+ "text": "we're"
+ },
+ {
+ "id": 25417,
+ "start": 11837.38,
+ "end": 11837.72,
+ "text": "actually"
+ },
+ {
+ "id": 25418,
+ "start": 11837.72,
+ "end": 11837.9,
+ "text": "going"
+ },
+ {
+ "id": 25419,
+ "start": 11837.9,
+ "end": 11837.98,
+ "text": "to"
+ },
+ {
+ "id": 25420,
+ "start": 11837.98,
+ "end": 11838.54,
+ "text": "regulate"
+ },
+ {
+ "id": 25421,
+ "start": 11838.54,
+ "end": 11839.42,
+ "text": "it"
+ },
+ {
+ "id": 25422,
+ "start": 11839.42,
+ "end": 11840.46,
+ "text": "you"
+ },
+ {
+ "id": 25423,
+ "start": 11840.46,
+ "end": 11840.74,
+ "text": "into"
+ },
+ {
+ "id": 25424,
+ "start": 11840.74,
+ "end": 11840.82,
+ "text": "a"
+ },
+ {
+ "id": 25425,
+ "start": 11840.82,
+ "end": 11841.32,
+ "text": "position"
+ },
+ {
+ "id": 25426,
+ "start": 11841.32,
+ "end": 11841.5,
+ "text": "of"
+ },
+ {
+ "id": 25427,
+ "start": 11841.5,
+ "end": 11842.18,
+ "text": "cemented"
+ },
+ {
+ "id": 25428,
+ "start": 11842.18,
+ "end": 11842.82,
+ "text": "authority."
+ },
+ {
+ "id": 25429,
+ "start": 11842.82,
+ "end": 11843.8,
+ "text": "When"
+ },
+ {
+ "id": 25430,
+ "start": 11843.8,
+ "end": 11844,
+ "text": "one"
+ },
+ {
+ "id": 25431,
+ "start": 11844,
+ "end": 11844.1,
+ "text": "of"
+ },
+ {
+ "id": 25432,
+ "start": 11844.1,
+ "end": 11844.28,
+ "text": "my"
+ },
+ {
+ "id": 25433,
+ "start": 11844.28,
+ "end": 11844.7,
+ "text": "biggest"
+ },
+ {
+ "id": 25434,
+ "start": 11844.7,
+ "end": 11845.12,
+ "text": "is"
+ },
+ {
+ "id": 25435,
+ "start": 11845.12,
+ "end": 11845.38,
+ "text": "about"
+ },
+ {
+ "id": 25436,
+ "start": 11845.38,
+ "end": 11845.58,
+ "text": "what"
+ },
+ {
+ "id": 25437,
+ "start": 11845.58,
+ "end": 11845.74,
+ "text": "you"
+ },
+ {
+ "id": 25438,
+ "start": 11845.74,
+ "end": 11846,
+ "text": "guys"
+ },
+ {
+ "id": 25439,
+ "start": 11846,
+ "end": 11846.2,
+ "text": "are"
+ },
+ {
+ "id": 25440,
+ "start": 11846.2,
+ "end": 11846.5,
+ "text": "doing."
+ },
+ {
+ "id": 25441,
+ "start": 11846.5,
+ "end": 11847.16,
+ "text": "Is"
+ },
+ {
+ "id": 25442,
+ "start": 11847.16,
+ "end": 11847.38,
+ "text": "that"
+ },
+ {
+ "id": 25443,
+ "start": 11847.38,
+ "end": 11847.54,
+ "text": "the"
+ },
+ {
+ "id": 25444,
+ "start": 11847.54,
+ "end": 11847.78,
+ "text": "next"
+ },
+ {
+ "id": 25445,
+ "start": 11847.78,
+ "end": 11848.4,
+ "text": "Facebook"
+ },
+ {
+ "id": 25446,
+ "start": 11848.4,
+ "end": 11848.78,
+ "text": "which"
+ },
+ {
+ "id": 25447,
+ "start": 11848.78,
+ "end": 11848.94,
+ "text": "we"
+ },
+ {
+ "id": 25448,
+ "start": 11848.94,
+ "end": 11849.16,
+ "text": "all"
+ },
+ {
+ "id": 25449,
+ "start": 11849.16,
+ "end": 11849.44,
+ "text": "want"
+ },
+ {
+ "id": 25450,
+ "start": 11849.44,
+ "end": 11850.28,
+ "text": "the"
+ },
+ {
+ "id": 25451,
+ "start": 11850.28,
+ "end": 11850.42,
+ "text": "guy"
+ },
+ {
+ "id": 25452,
+ "start": 11850.42,
+ "end": 11850.52,
+ "text": "in"
+ },
+ {
+ "id": 25453,
+ "start": 11850.52,
+ "end": 11850.62,
+ "text": "the"
+ },
+ {
+ "id": 25454,
+ "start": 11850.62,
+ "end": 11850.9,
+ "text": "dorm"
+ },
+ {
+ "id": 25455,
+ "start": 11850.9,
+ "end": 11851.08,
+ "text": "room?"
+ },
+ {
+ "id": 25456,
+ "start": 11851.08,
+ "end": 11851.28,
+ "text": "We"
+ },
+ {
+ "id": 25457,
+ "start": 11851.28,
+ "end": 11851.46,
+ "text": "all"
+ },
+ {
+ "id": 25458,
+ "start": 11851.46,
+ "end": 11851.7,
+ "text": "want"
+ },
+ {
+ "id": 25459,
+ "start": 11851.7,
+ "end": 11852.02,
+ "text": "that"
+ },
+ {
+ "id": 25460,
+ "start": 11852.02,
+ "end": 11852.24,
+ "text": "to"
+ },
+ {
+ "id": 25461,
+ "start": 11852.24,
+ "end": 11852.52,
+ "text": "start"
+ },
+ {
+ "id": 25462,
+ "start": 11852.52,
+ "end": 11852.66,
+ "text": "it"
+ },
+ {
+ "id": 25463,
+ "start": 11852.66,
+ "end": 11853.36,
+ "text": "that"
+ },
+ {
+ "id": 25464,
+ "start": 11853.36,
+ "end": 11853.54,
+ "text": "you"
+ },
+ {
+ "id": 25465,
+ "start": 11853.54,
+ "end": 11853.66,
+ "text": "are"
+ },
+ {
+ "id": 25466,
+ "start": 11853.66,
+ "end": 11854.06,
+ "text": "becoming"
+ },
+ {
+ "id": 25467,
+ "start": 11854.06,
+ "end": 11854.26,
+ "text": "so"
+ },
+ {
+ "id": 25468,
+ "start": 11854.26,
+ "end": 11854.8,
+ "text": "dominant."
+ },
+ {
+ "id": 25469,
+ "start": 11854.8,
+ "end": 11855.58,
+ "text": "That"
+ },
+ {
+ "id": 25470,
+ "start": 11855.58,
+ "end": 11856.3,
+ "text": "we're"
+ },
+ {
+ "id": 25471,
+ "start": 11856.3,
+ "end": 11856.5,
+ "text": "not"
+ },
+ {
+ "id": 25472,
+ "start": 11856.5,
+ "end": 11856.84,
+ "text": "able"
+ },
+ {
+ "id": 25473,
+ "start": 11856.84,
+ "end": 11856.94,
+ "text": "to"
+ },
+ {
+ "id": 25474,
+ "start": 11856.94,
+ "end": 11857.12,
+ "text": "have"
+ },
+ {
+ "id": 25475,
+ "start": 11857.12,
+ "end": 11857.3,
+ "text": "that"
+ },
+ {
+ "id": 25476,
+ "start": 11857.3,
+ "end": 11857.58,
+ "text": "next"
+ },
+ {
+ "id": 25477,
+ "start": 11857.58,
+ "end": 11858,
+ "text": "Facebook."
+ },
+ {
+ "id": 25478,
+ "start": 11858,
+ "end": 11858.4,
+ "text": "What"
+ },
+ {
+ "id": 25479,
+ "start": 11858.4,
+ "end": 11858.8,
+ "text": "are"
+ },
+ {
+ "id": 25480,
+ "start": 11858.8,
+ "end": 11858.96,
+ "text": "your"
+ },
+ {
+ "id": 25481,
+ "start": 11858.96,
+ "end": 11859.24,
+ "text": "views"
+ },
+ {
+ "id": 25482,
+ "start": 11859.24,
+ "end": 11859.4,
+ "text": "on"
+ },
+ {
+ "id": 25483,
+ "start": 11859.4,
+ "end": 11859.9,
+ "text": "that?"
+ },
+ {
+ "id": 25484,
+ "start": 11859.9,
+ "end": 11860.86,
+ "text": "Well,"
+ },
+ {
+ "id": 25485,
+ "start": 11860.86,
+ "end": 11861.2,
+ "text": "Senator,"
+ },
+ {
+ "id": 25486,
+ "start": 11861.2,
+ "end": 11861.34,
+ "text": "I"
+ },
+ {
+ "id": 25487,
+ "start": 11861.34,
+ "end": 11861.72,
+ "text": "agree"
+ },
+ {
+ "id": 25488,
+ "start": 11861.72,
+ "end": 11861.9,
+ "text": "with"
+ },
+ {
+ "id": 25489,
+ "start": 11861.9,
+ "end": 11862.02,
+ "text": "the"
+ },
+ {
+ "id": 25490,
+ "start": 11862.02,
+ "end": 11862.36,
+ "text": "point."
+ },
+ {
+ "id": 25491,
+ "start": 11862.36,
+ "end": 11862.7,
+ "text": "That"
+ },
+ {
+ "id": 25492,
+ "start": 11862.7,
+ "end": 11862.88,
+ "text": "when"
+ },
+ {
+ "id": 25493,
+ "start": 11862.88,
+ "end": 11863.2,
+ "text": "you're"
+ },
+ {
+ "id": 25494,
+ "start": 11863.2,
+ "end": 11863.7,
+ "text": "thinking"
+ },
+ {
+ "id": 25495,
+ "start": 11863.7,
+ "end": 11864,
+ "text": "through"
+ },
+ {
+ "id": 25496,
+ "start": 11864,
+ "end": 11864.94,
+ "text": "regulation"
+ },
+ {
+ "id": 25497,
+ "start": 11864.94,
+ "end": 11865.92,
+ "text": "across"
+ },
+ {
+ "id": 25498,
+ "start": 11865.92,
+ "end": 11866.12,
+ "text": "all"
+ },
+ {
+ "id": 25499,
+ "start": 11866.12,
+ "end": 11866.58,
+ "text": "industries,"
+ },
+ {
+ "id": 25500,
+ "start": 11866.58,
+ "end": 11866.76,
+ "text": "you"
+ },
+ {
+ "id": 25501,
+ "start": 11866.76,
+ "end": 11866.92,
+ "text": "need"
+ },
+ {
+ "id": 25502,
+ "start": 11866.92,
+ "end": 11866.98,
+ "text": "to"
+ },
+ {
+ "id": 25503,
+ "start": 11866.98,
+ "end": 11867.08,
+ "text": "be"
+ },
+ {
+ "id": 25504,
+ "start": 11867.08,
+ "end": 11867.4,
+ "text": "careful"
+ },
+ {
+ "id": 25505,
+ "start": 11867.4,
+ "end": 11867.62,
+ "text": "that"
+ },
+ {
+ "id": 25506,
+ "start": 11867.62,
+ "end": 11867.7,
+ "text": "it"
+ },
+ {
+ "id": 25507,
+ "start": 11867.7,
+ "end": 11868.12,
+ "text": "doesn't"
+ },
+ {
+ "id": 25508,
+ "start": 11868.12,
+ "end": 11869.2,
+ "text": "cement"
+ },
+ {
+ "id": 25509,
+ "start": 11869.2,
+ "end": 11869.48,
+ "text": "in"
+ },
+ {
+ "id": 25510,
+ "start": 11869.48,
+ "end": 11869.66,
+ "text": "the"
+ },
+ {
+ "id": 25511,
+ "start": 11869.66,
+ "end": 11870.02,
+ "text": "current"
+ },
+ {
+ "id": 25512,
+ "start": 11870.02,
+ "end": 11870.74,
+ "text": "companies"
+ },
+ {
+ "id": 25513,
+ "start": 11870.74,
+ "end": 11870.92,
+ "text": "that"
+ },
+ {
+ "id": 25514,
+ "start": 11870.92,
+ "end": 11871.46,
+ "text": "are"
+ },
+ {
+ "id": 25515,
+ "start": 11871.46,
+ "end": 11871.74,
+ "text": "winning."
+ },
+ {
+ "id": 25516,
+ "start": 11871.74,
+ "end": 11872.06,
+ "text": "But"
+ },
+ {
+ "id": 25517,
+ "start": 11872.06,
+ "end": 11872.24,
+ "text": "would"
+ },
+ {
+ "id": 25518,
+ "start": 11872.24,
+ "end": 11872.34,
+ "text": "you"
+ },
+ {
+ "id": 25519,
+ "start": 11872.34,
+ "end": 11872.62,
+ "text": "try"
+ },
+ {
+ "id": 25520,
+ "start": 11872.62,
+ "end": 11872.72,
+ "text": "to"
+ },
+ {
+ "id": 25521,
+ "start": 11872.72,
+ "end": 11872.9,
+ "text": "do"
+ },
+ {
+ "id": 25522,
+ "start": 11872.9,
+ "end": 11873.7,
+ "text": "that"
+ },
+ {
+ "id": 25523,
+ "start": 11873.7,
+ "end": 11874.54,
+ "text": "isn't"
+ },
+ {
+ "id": 25524,
+ "start": 11874.54,
+ "end": 11874.68,
+ "text": "that"
+ },
+ {
+ "id": 25525,
+ "start": 11874.68,
+ "end": 11874.82,
+ "text": "the"
+ },
+ {
+ "id": 25526,
+ "start": 11874.82,
+ "end": 11875.24,
+ "text": "normal"
+ },
+ {
+ "id": 25527,
+ "start": 11875.24,
+ "end": 11876.02,
+ "text": "inclination"
+ },
+ {
+ "id": 25528,
+ "start": 11876.02,
+ "end": 11876.16,
+ "text": "of"
+ },
+ {
+ "id": 25529,
+ "start": 11876.16,
+ "end": 11876.22,
+ "text": "a"
+ },
+ {
+ "id": 25530,
+ "start": 11876.22,
+ "end": 11876.68,
+ "text": "company"
+ },
+ {
+ "id": 25531,
+ "start": 11876.68,
+ "end": 11876.84,
+ "text": "to"
+ },
+ {
+ "id": 25532,
+ "start": 11876.84,
+ "end": 11877.1,
+ "text": "say."
+ },
+ {
+ "id": 25533,
+ "start": 11877.1,
+ "end": 11877.22,
+ "text": "Hey"
+ },
+ {
+ "id": 25534,
+ "start": 11877.22,
+ "end": 11877.32,
+ "text": "I'm"
+ },
+ {
+ "id": 25535,
+ "start": 11877.32,
+ "end": 11877.44,
+ "text": "going"
+ },
+ {
+ "id": 25536,
+ "start": 11877.44,
+ "end": 11877.56,
+ "text": "to"
+ },
+ {
+ "id": 25537,
+ "start": 11877.56,
+ "end": 11878.16,
+ "text": "hire"
+ },
+ {
+ "id": 25538,
+ "start": 11878.16,
+ "end": 11878.28,
+ "text": "the"
+ },
+ {
+ "id": 25539,
+ "start": 11878.28,
+ "end": 11878.46,
+ "text": "best"
+ },
+ {
+ "id": 25540,
+ "start": 11878.46,
+ "end": 11878.72,
+ "text": "guys"
+ },
+ {
+ "id": 25541,
+ "start": 11878.72,
+ "end": 11878.86,
+ "text": "in"
+ },
+ {
+ "id": 25542,
+ "start": 11878.86,
+ "end": 11879.12,
+ "text": "town"
+ },
+ {
+ "id": 25543,
+ "start": 11879.12,
+ "end": 11879.26,
+ "text": "and"
+ },
+ {
+ "id": 25544,
+ "start": 11879.26,
+ "end": 11879.38,
+ "text": "I'm"
+ },
+ {
+ "id": 25545,
+ "start": 11879.38,
+ "end": 11879.52,
+ "text": "going"
+ },
+ {
+ "id": 25546,
+ "start": 11879.52,
+ "end": 11879.6,
+ "text": "to"
+ },
+ {
+ "id": 25547,
+ "start": 11879.6,
+ "end": 11880.34,
+ "text": "cement"
+ },
+ {
+ "id": 25548,
+ "start": 11880.34,
+ "end": 11880.54,
+ "text": "in"
+ },
+ {
+ "id": 25549,
+ "start": 11880.54,
+ "end": 11880.64,
+ "text": "in"
+ },
+ {
+ "id": 25550,
+ "start": 11880.64,
+ "end": 11881.08,
+ "text": "advantage,"
+ },
+ {
+ "id": 25551,
+ "start": 11881.08,
+ "end": 11881.2,
+ "text": "you"
+ },
+ {
+ "id": 25552,
+ "start": 11881.2,
+ "end": 11881.44,
+ "text": "wouldn't"
+ },
+ {
+ "id": 25553,
+ "start": 11881.44,
+ "end": 11881.56,
+ "text": "do"
+ },
+ {
+ "id": 25554,
+ "start": 11881.56,
+ "end": 11881.72,
+ "text": "that."
+ },
+ {
+ "id": 25555,
+ "start": 11881.72,
+ "end": 11881.86,
+ "text": "If"
+ },
+ {
+ "id": 25556,
+ "start": 11881.86,
+ "end": 11882.1,
+ "text": "we're"
+ },
+ {
+ "id": 25557,
+ "start": 11882.1,
+ "end": 11882.56,
+ "text": "regulating"
+ },
+ {
+ "id": 25558,
+ "start": 11882.56,
+ "end": 11883.2,
+ "text": "you,"
+ },
+ {
+ "id": 25559,
+ "start": 11883.2,
+ "end": 11884.06,
+ "text": "Senator"
+ },
+ {
+ "id": 25560,
+ "start": 11884.06,
+ "end": 11884.38,
+ "text": "that"
+ },
+ {
+ "id": 25561,
+ "start": 11884.38,
+ "end": 11884.7,
+ "text": "certainly"
+ },
+ {
+ "id": 25562,
+ "start": 11884.7,
+ "end": 11884.92,
+ "text": "wouldn't"
+ },
+ {
+ "id": 25563,
+ "start": 11884.92,
+ "end": 11885.02,
+ "text": "be"
+ },
+ {
+ "id": 25564,
+ "start": 11885.02,
+ "end": 11885.18,
+ "text": "our"
+ },
+ {
+ "id": 25565,
+ "start": 11885.18,
+ "end": 11885.66,
+ "text": "approach."
+ },
+ {
+ "id": 25566,
+ "start": 11885.66,
+ "end": 11886.32,
+ "text": "But"
+ },
+ {
+ "id": 25567,
+ "start": 11886.32,
+ "end": 11886.42,
+ "text": "I"
+ },
+ {
+ "id": 25568,
+ "start": 11886.42,
+ "end": 11887.04,
+ "text": "think"
+ },
+ {
+ "id": 25569,
+ "start": 11887.04,
+ "end": 11887.32,
+ "text": "part"
+ },
+ {
+ "id": 25570,
+ "start": 11887.32,
+ "end": 11887.42,
+ "text": "of"
+ },
+ {
+ "id": 25571,
+ "start": 11887.42,
+ "end": 11887.58,
+ "text": "the"
+ },
+ {
+ "id": 25572,
+ "start": 11887.58,
+ "end": 11887.96,
+ "text": "challenge"
+ },
+ {
+ "id": 25573,
+ "start": 11887.96,
+ "end": 11888.1,
+ "text": "with"
+ },
+ {
+ "id": 25574,
+ "start": 11888.1,
+ "end": 11888.68,
+ "text": "regulation"
+ },
+ {
+ "id": 25575,
+ "start": 11888.68,
+ "end": 11888.82,
+ "text": "in"
+ },
+ {
+ "id": 25576,
+ "start": 11888.82,
+ "end": 11889.26,
+ "text": "general"
+ },
+ {
+ "id": 25577,
+ "start": 11889.26,
+ "end": 11889.82,
+ "text": "is"
+ },
+ {
+ "id": 25578,
+ "start": 11889.82,
+ "end": 11890.08,
+ "text": "that"
+ },
+ {
+ "id": 25579,
+ "start": 11890.08,
+ "end": 11890.62,
+ "text": "when"
+ },
+ {
+ "id": 25580,
+ "start": 11890.62,
+ "end": 11890.78,
+ "text": "you"
+ },
+ {
+ "id": 25581,
+ "start": 11890.78,
+ "end": 11891.06,
+ "text": "add"
+ },
+ {
+ "id": 25582,
+ "start": 11891.06,
+ "end": 11891.32,
+ "text": "more"
+ },
+ {
+ "id": 25583,
+ "start": 11891.32,
+ "end": 11891.66,
+ "text": "rules"
+ },
+ {
+ "id": 25584,
+ "start": 11891.66,
+ "end": 11891.86,
+ "text": "that"
+ },
+ {
+ "id": 25585,
+ "start": 11891.86,
+ "end": 11892.34,
+ "text": "companies"
+ },
+ {
+ "id": 25586,
+ "start": 11892.34,
+ "end": 11892.92,
+ "text": "need"
+ },
+ {
+ "id": 25587,
+ "start": 11892.92,
+ "end": 11893.02,
+ "text": "to"
+ },
+ {
+ "id": 25588,
+ "start": 11893.02,
+ "end": 11893.46,
+ "text": "follow"
+ },
+ {
+ "id": 25589,
+ "start": 11893.46,
+ "end": 11894.2,
+ "text": "that's"
+ },
+ {
+ "id": 25590,
+ "start": 11894.2,
+ "end": 11894.56,
+ "text": "something"
+ },
+ {
+ "id": 25591,
+ "start": 11894.56,
+ "end": 11894.76,
+ "text": "that"
+ },
+ {
+ "id": 25592,
+ "start": 11894.76,
+ "end": 11894.82,
+ "text": "a"
+ },
+ {
+ "id": 25593,
+ "start": 11894.82,
+ "end": 11895.24,
+ "text": "larger"
+ },
+ {
+ "id": 25594,
+ "start": 11895.24,
+ "end": 11895.62,
+ "text": "company"
+ },
+ {
+ "id": 25595,
+ "start": 11895.62,
+ "end": 11895.78,
+ "text": "like"
+ },
+ {
+ "id": 25596,
+ "start": 11895.78,
+ "end": 11895.96,
+ "text": "ours"
+ },
+ {
+ "id": 25597,
+ "start": 11895.96,
+ "end": 11896.6,
+ "text": "inherently"
+ },
+ {
+ "id": 25598,
+ "start": 11896.6,
+ "end": 11896.89,
+ "text": "just"
+ },
+ {
+ "id": 25599,
+ "start": 11896.89,
+ "end": 11897.15,
+ "text": "the"
+ },
+ {
+ "id": 25600,
+ "start": 11897.15,
+ "end": 11897.67,
+ "text": "resources"
+ },
+ {
+ "id": 25601,
+ "start": 11897.67,
+ "end": 11897.79,
+ "text": "to"
+ },
+ {
+ "id": 25602,
+ "start": 11897.79,
+ "end": 11897.93,
+ "text": "go"
+ },
+ {
+ "id": 25603,
+ "start": 11897.93,
+ "end": 11898.25,
+ "text": "do."
+ },
+ {
+ "id": 25604,
+ "start": 11898.25,
+ "end": 11898.69,
+ "text": "And"
+ },
+ {
+ "id": 25605,
+ "start": 11898.69,
+ "end": 11898.85,
+ "text": "that"
+ },
+ {
+ "id": 25606,
+ "start": 11898.85,
+ "end": 11899.07,
+ "text": "might"
+ },
+ {
+ "id": 25607,
+ "start": 11899.07,
+ "end": 11899.25,
+ "text": "just"
+ },
+ {
+ "id": 25608,
+ "start": 11899.25,
+ "end": 11899.39,
+ "text": "be"
+ },
+ {
+ "id": 25609,
+ "start": 11899.39,
+ "end": 11899.75,
+ "text": "harder"
+ },
+ {
+ "id": 25610,
+ "start": 11899.75,
+ "end": 11900.05,
+ "text": "for"
+ },
+ {
+ "id": 25611,
+ "start": 11900.05,
+ "end": 11900.11,
+ "text": "a"
+ },
+ {
+ "id": 25612,
+ "start": 11900.11,
+ "end": 11900.57,
+ "text": "smaller"
+ },
+ {
+ "id": 25613,
+ "start": 11900.57,
+ "end": 11900.93,
+ "text": "company."
+ },
+ {
+ "id": 25614,
+ "start": 11900.93,
+ "end": 11901.19,
+ "text": "Getting"
+ },
+ {
+ "id": 25615,
+ "start": 11901.19,
+ "end": 11901.53,
+ "text": "started"
+ },
+ {
+ "id": 25616,
+ "start": 11901.53,
+ "end": 11901.63,
+ "text": "to"
+ },
+ {
+ "id": 25617,
+ "start": 11901.63,
+ "end": 11901.71,
+ "text": "be"
+ },
+ {
+ "id": 25618,
+ "start": 11901.71,
+ "end": 11901.85,
+ "text": "able"
+ },
+ {
+ "id": 25619,
+ "start": 11901.85,
+ "end": 11901.91,
+ "text": "to"
+ },
+ {
+ "id": 25620,
+ "start": 11901.91,
+ "end": 11902.27,
+ "text": "comply"
+ },
+ {
+ "id": 25621,
+ "start": 11902.27,
+ "end": 11902.49,
+ "text": "with."
+ },
+ {
+ "id": 25622,
+ "start": 11902.49,
+ "end": 11903.09,
+ "text": "So"
+ },
+ {
+ "id": 25623,
+ "start": 11903.09,
+ "end": 11903.23,
+ "text": "it's"
+ },
+ {
+ "id": 25624,
+ "start": 11903.23,
+ "end": 11903.43,
+ "text": "not"
+ },
+ {
+ "id": 25625,
+ "start": 11903.43,
+ "end": 11903.77,
+ "text": "something"
+ },
+ {
+ "id": 25626,
+ "start": 11903.77,
+ "end": 11903.97,
+ "text": "that"
+ },
+ {
+ "id": 25627,
+ "start": 11903.97,
+ "end": 11904.65,
+ "text": "going"
+ },
+ {
+ "id": 25628,
+ "start": 11904.65,
+ "end": 11904.83,
+ "text": "into"
+ },
+ {
+ "id": 25629,
+ "start": 11904.83,
+ "end": 11904.97,
+ "text": "this."
+ },
+ {
+ "id": 25630,
+ "start": 11904.97,
+ "end": 11905.11,
+ "text": "I"
+ },
+ {
+ "id": 25631,
+ "start": 11905.11,
+ "end": 11905.27,
+ "text": "would"
+ },
+ {
+ "id": 25632,
+ "start": 11905.27,
+ "end": 11905.47,
+ "text": "look"
+ },
+ {
+ "id": 25633,
+ "start": 11905.47,
+ "end": 11905.55,
+ "text": "at"
+ },
+ {
+ "id": 25634,
+ "start": 11905.55,
+ "end": 11905.67,
+ "text": "the"
+ },
+ {
+ "id": 25635,
+ "start": 11905.67,
+ "end": 11906.25,
+ "text": "conversation"
+ },
+ {
+ "id": 25636,
+ "start": 11906.25,
+ "end": 11906.41,
+ "text": "is"
+ },
+ {
+ "id": 25637,
+ "start": 11906.41,
+ "end": 11906.93,
+ "text": "what"
+ },
+ {
+ "id": 25638,
+ "start": 11906.93,
+ "end": 11907.07,
+ "text": "is"
+ },
+ {
+ "id": 25639,
+ "start": 11907.07,
+ "end": 11907.19,
+ "text": "the"
+ },
+ {
+ "id": 25640,
+ "start": 11907.19,
+ "end": 11907.39,
+ "text": "right"
+ },
+ {
+ "id": 25641,
+ "start": 11907.39,
+ "end": 11907.81,
+ "text": "outcome?"
+ },
+ {
+ "id": 25642,
+ "start": 11907.81,
+ "end": 11907.99,
+ "text": "I"
+ },
+ {
+ "id": 25643,
+ "start": 11907.99,
+ "end": 11908.13,
+ "text": "think"
+ },
+ {
+ "id": 25644,
+ "start": 11908.13,
+ "end": 11908.29,
+ "text": "there"
+ },
+ {
+ "id": 25645,
+ "start": 11908.29,
+ "end": 11908.41,
+ "text": "are"
+ },
+ {
+ "id": 25646,
+ "start": 11908.41,
+ "end": 11908.65,
+ "text": "real"
+ },
+ {
+ "id": 25647,
+ "start": 11908.65,
+ "end": 11909.09,
+ "text": "challenges"
+ },
+ {
+ "id": 25648,
+ "start": 11909.09,
+ "end": 11909.25,
+ "text": "that"
+ },
+ {
+ "id": 25649,
+ "start": 11909.25,
+ "end": 11909.39,
+ "text": "we"
+ },
+ {
+ "id": 25650,
+ "start": 11909.39,
+ "end": 11909.65,
+ "text": "face"
+ },
+ {
+ "id": 25651,
+ "start": 11909.65,
+ "end": 11910.58,
+ "text": "around"
+ },
+ {
+ "id": 25652,
+ "start": 11910.58,
+ "end": 11911.34,
+ "text": "content"
+ },
+ {
+ "id": 25653,
+ "start": 11911.34,
+ "end": 11912.06,
+ "text": "and"
+ },
+ {
+ "id": 25654,
+ "start": 11912.06,
+ "end": 11912.64,
+ "text": "privacy."
+ },
+ {
+ "id": 25655,
+ "start": 11912.64,
+ "end": 11913.5,
+ "text": "And"
+ },
+ {
+ "id": 25656,
+ "start": 11913.5,
+ "end": 11913.9,
+ "text": "in"
+ },
+ {
+ "id": 25657,
+ "start": 11913.9,
+ "end": 11913.98,
+ "text": "a"
+ },
+ {
+ "id": 25658,
+ "start": 11913.98,
+ "end": 11914.22,
+ "text": "number"
+ },
+ {
+ "id": 25659,
+ "start": 11914.22,
+ "end": 11914.3,
+ "text": "of"
+ },
+ {
+ "id": 25660,
+ "start": 11914.3,
+ "end": 11914.46,
+ "text": "other"
+ },
+ {
+ "id": 25661,
+ "start": 11914.46,
+ "end": 11914.72,
+ "text": "areas"
+ },
+ {
+ "id": 25662,
+ "start": 11914.72,
+ "end": 11915.06,
+ "text": "as"
+ },
+ {
+ "id": 25663,
+ "start": 11915.06,
+ "end": 11915.66,
+ "text": "transparency"
+ },
+ {
+ "id": 25664,
+ "start": 11915.66,
+ "end": 11916.76,
+ "text": "I'm"
+ },
+ {
+ "id": 25665,
+ "start": 11916.76,
+ "end": 11916.98,
+ "text": "sorry"
+ },
+ {
+ "id": 25666,
+ "start": 11916.98,
+ "end": 11917.06,
+ "text": "to"
+ },
+ {
+ "id": 25667,
+ "start": 11917.06,
+ "end": 11917.36,
+ "text": "interrupt,"
+ },
+ {
+ "id": 25668,
+ "start": 11917.36,
+ "end": 11917.46,
+ "text": "but"
+ },
+ {
+ "id": 25669,
+ "start": 11917.46,
+ "end": 11917.56,
+ "text": "let"
+ },
+ {
+ "id": 25670,
+ "start": 11917.56,
+ "end": 11917.66,
+ "text": "me"
+ },
+ {
+ "id": 25671,
+ "start": 11917.66,
+ "end": 11917.78,
+ "text": "get"
+ },
+ {
+ "id": 25672,
+ "start": 11917.78,
+ "end": 11917.86,
+ "text": "the"
+ },
+ {
+ "id": 25673,
+ "start": 11917.86,
+ "end": 11918.06,
+ "text": "one"
+ },
+ {
+ "id": 25674,
+ "start": 11918.06,
+ "end": 11918.4,
+ "text": "final"
+ },
+ {
+ "id": 25675,
+ "start": 11918.4,
+ "end": 11918.68,
+ "text": "question"
+ },
+ {
+ "id": 25676,
+ "start": 11918.68,
+ "end": 11918.88,
+ "text": "that"
+ },
+ {
+ "id": 25677,
+ "start": 11918.88,
+ "end": 11919.02,
+ "text": "kind"
+ },
+ {
+ "id": 25678,
+ "start": 11919.02,
+ "end": 11919.1,
+ "text": "of"
+ },
+ {
+ "id": 25679,
+ "start": 11919.1,
+ "end": 11919.38,
+ "text": "relates"
+ },
+ {
+ "id": 25680,
+ "start": 11919.38,
+ "end": 11919.48,
+ "text": "to"
+ },
+ {
+ "id": 25681,
+ "start": 11919.48,
+ "end": 11919.62,
+ "text": "what"
+ },
+ {
+ "id": 25682,
+ "start": 11919.62,
+ "end": 11919.84,
+ "text": "you're"
+ },
+ {
+ "id": 25683,
+ "start": 11919.84,
+ "end": 11920.14,
+ "text": "talking"
+ },
+ {
+ "id": 25684,
+ "start": 11920.14,
+ "end": 11920.32,
+ "text": "about"
+ },
+ {
+ "id": 25685,
+ "start": 11920.32,
+ "end": 11920.4,
+ "text": "in"
+ },
+ {
+ "id": 25686,
+ "start": 11920.4,
+ "end": 11920.58,
+ "text": "terms"
+ },
+ {
+ "id": 25687,
+ "start": 11920.58,
+ "end": 11920.68,
+ "text": "of"
+ },
+ {
+ "id": 25688,
+ "start": 11920.68,
+ "end": 11921.88,
+ "text": "content"
+ },
+ {
+ "id": 25689,
+ "start": 11921.88,
+ "end": 11922.88,
+ "text": "regulation."
+ },
+ {
+ "id": 25690,
+ "start": 11922.88,
+ "end": 11923.08,
+ "text": "And"
+ },
+ {
+ "id": 25691,
+ "start": 11923.08,
+ "end": 11923.28,
+ "text": "what"
+ },
+ {
+ "id": 25692,
+ "start": 11923.28,
+ "end": 11924.5,
+ "text": "exactly?"
+ },
+ {
+ "id": 25693,
+ "start": 11924.5,
+ "end": 11925.12,
+ "text": "What"
+ },
+ {
+ "id": 25694,
+ "start": 11925.12,
+ "end": 11925.58,
+ "text": "exactly,"
+ },
+ {
+ "id": 25695,
+ "start": 11925.58,
+ "end": 11926.18,
+ "text": "Facebook"
+ },
+ {
+ "id": 25696,
+ "start": 11926.18,
+ "end": 11926.64,
+ "text": "is,"
+ },
+ {
+ "id": 25697,
+ "start": 11926.64,
+ "end": 11927.12,
+ "text": "you"
+ },
+ {
+ "id": 25698,
+ "start": 11927.12,
+ "end": 11927.28,
+ "text": "know,"
+ },
+ {
+ "id": 25699,
+ "start": 11927.28,
+ "end": 11927.5,
+ "text": "you"
+ },
+ {
+ "id": 25700,
+ "start": 11927.5,
+ "end": 11927.98,
+ "text": "mentioned"
+ },
+ {
+ "id": 25701,
+ "start": 11927.98,
+ "end": 11928.14,
+ "text": "you're"
+ },
+ {
+ "id": 25702,
+ "start": 11928.14,
+ "end": 11928.2,
+ "text": "a"
+ },
+ {
+ "id": 25703,
+ "start": 11928.2,
+ "end": 11928.5,
+ "text": "tech"
+ },
+ {
+ "id": 25704,
+ "start": 11928.5,
+ "end": 11929.08,
+ "text": "company,"
+ },
+ {
+ "id": 25705,
+ "start": 11929.08,
+ "end": 11929.16,
+ "text": "a"
+ },
+ {
+ "id": 25706,
+ "start": 11929.16,
+ "end": 11929.96,
+ "text": "platform,"
+ },
+ {
+ "id": 25707,
+ "start": 11929.96,
+ "end": 11930.76,
+ "text": "but"
+ },
+ {
+ "id": 25708,
+ "start": 11930.76,
+ "end": 11931.02,
+ "text": "there's"
+ },
+ {
+ "id": 25709,
+ "start": 11931.02,
+ "end": 11931.3,
+ "text": "some"
+ },
+ {
+ "id": 25710,
+ "start": 11931.3,
+ "end": 11931.42,
+ "text": "who"
+ },
+ {
+ "id": 25711,
+ "start": 11931.42,
+ "end": 11931.54,
+ "text": "are"
+ },
+ {
+ "id": 25712,
+ "start": 11931.54,
+ "end": 11931.78,
+ "text": "saying"
+ },
+ {
+ "id": 25713,
+ "start": 11931.78,
+ "end": 11931.92,
+ "text": "that"
+ },
+ {
+ "id": 25714,
+ "start": 11931.92,
+ "end": 11932.14,
+ "text": "you're"
+ },
+ {
+ "id": 25715,
+ "start": 11932.14,
+ "end": 11932.28,
+ "text": "the"
+ },
+ {
+ "id": 25716,
+ "start": 11932.28,
+ "end": 11932.68,
+ "text": "world's"
+ },
+ {
+ "id": 25717,
+ "start": 11932.68,
+ "end": 11933.16,
+ "text": "biggest"
+ },
+ {
+ "id": 25718,
+ "start": 11933.16,
+ "end": 11933.74,
+ "text": "publisher"
+ },
+ {
+ "id": 25719,
+ "start": 11933.74,
+ "end": 11934.12,
+ "text": "to"
+ },
+ {
+ "id": 25720,
+ "start": 11934.12,
+ "end": 11934.3,
+ "text": "think"
+ },
+ {
+ "id": 25721,
+ "start": 11934.3,
+ "end": 11934.5,
+ "text": "about"
+ },
+ {
+ "id": 25722,
+ "start": 11934.5,
+ "end": 11935.66,
+ "text": "140,000,000"
+ },
+ {
+ "id": 25723,
+ "start": 11935.66,
+ "end": 11936.7,
+ "text": "Americans"
+ },
+ {
+ "id": 25724,
+ "start": 11936.7,
+ "end": 11936.9,
+ "text": "get"
+ },
+ {
+ "id": 25725,
+ "start": 11936.9,
+ "end": 11937.1,
+ "text": "their"
+ },
+ {
+ "id": 25726,
+ "start": 11937.1,
+ "end": 11937.3,
+ "text": "news"
+ },
+ {
+ "id": 25727,
+ "start": 11937.3,
+ "end": 11937.5,
+ "text": "from"
+ },
+ {
+ "id": 25728,
+ "start": 11937.5,
+ "end": 11938.04,
+ "text": "Facebook."
+ },
+ {
+ "id": 25729,
+ "start": 11938.04,
+ "end": 11938.24,
+ "text": "And"
+ },
+ {
+ "id": 25730,
+ "start": 11938.24,
+ "end": 11938.84,
+ "text": "when"
+ },
+ {
+ "id": 25731,
+ "start": 11938.84,
+ "end": 11939.02,
+ "text": "you"
+ },
+ {
+ "id": 25732,
+ "start": 11939.02,
+ "end": 11939.26,
+ "text": "talk"
+ },
+ {
+ "id": 25733,
+ "start": 11939.26,
+ "end": 11939.72,
+ "text": "to"
+ },
+ {
+ "id": 25734,
+ "start": 11939.72,
+ "end": 11939.84,
+ "text": "when"
+ },
+ {
+ "id": 25735,
+ "start": 11939.84,
+ "end": 11939.98,
+ "text": "you"
+ },
+ {
+ "id": 25736,
+ "start": 11939.98,
+ "end": 11940.26,
+ "text": "mentioned"
+ },
+ {
+ "id": 25737,
+ "start": 11940.26,
+ "end": 11940.36,
+ "text": "the"
+ },
+ {
+ "id": 25738,
+ "start": 11940.36,
+ "end": 11940.62,
+ "text": "center"
+ },
+ {
+ "id": 25739,
+ "start": 11940.62,
+ "end": 11942.36,
+ "text": "core,"
+ },
+ {
+ "id": 25740,
+ "start": 11942.36,
+ "end": 11943.3,
+ "text": "you"
+ },
+ {
+ "id": 25741,
+ "start": 11943.3,
+ "end": 11943.46,
+ "text": "said"
+ },
+ {
+ "id": 25742,
+ "start": 11943.46,
+ "end": 11943.6,
+ "text": "you"
+ },
+ {
+ "id": 25743,
+ "start": 11943.6,
+ "end": 11943.76,
+ "text": "are"
+ },
+ {
+ "id": 25744,
+ "start": 11943.76,
+ "end": 11944.36,
+ "text": "responsible"
+ },
+ {
+ "id": 25745,
+ "start": 11944.36,
+ "end": 11944.58,
+ "text": "for"
+ },
+ {
+ "id": 25746,
+ "start": 11944.58,
+ "end": 11945.26,
+ "text": "your"
+ },
+ {
+ "id": 25747,
+ "start": 11945.26,
+ "end": 11946.22,
+ "text": "content."
+ },
+ {
+ "id": 25748,
+ "start": 11946.22,
+ "end": 11946.5,
+ "text": "So,"
+ },
+ {
+ "id": 25749,
+ "start": 11946.5,
+ "end": 11947.5,
+ "text": "which"
+ },
+ {
+ "id": 25750,
+ "start": 11947.5,
+ "end": 11947.72,
+ "text": "are"
+ },
+ {
+ "id": 25751,
+ "start": 11947.72,
+ "end": 11947.9,
+ "text": "you"
+ },
+ {
+ "id": 25752,
+ "start": 11947.9,
+ "end": 11948.06,
+ "text": "are"
+ },
+ {
+ "id": 25753,
+ "start": 11948.06,
+ "end": 11948.2,
+ "text": "you"
+ },
+ {
+ "id": 25754,
+ "start": 11948.2,
+ "end": 11948.26,
+ "text": "a"
+ },
+ {
+ "id": 25755,
+ "start": 11948.26,
+ "end": 11948.58,
+ "text": "tech"
+ },
+ {
+ "id": 25756,
+ "start": 11948.58,
+ "end": 11949.06,
+ "text": "company?"
+ },
+ {
+ "id": 25757,
+ "start": 11949.06,
+ "end": 11949.32,
+ "text": "Are"
+ },
+ {
+ "id": 25758,
+ "start": 11949.32,
+ "end": 11949.48,
+ "text": "you"
+ },
+ {
+ "id": 25759,
+ "start": 11949.48,
+ "end": 11949.66,
+ "text": "the"
+ },
+ {
+ "id": 25760,
+ "start": 11949.66,
+ "end": 11949.96,
+ "text": "world's"
+ },
+ {
+ "id": 25761,
+ "start": 11949.96,
+ "end": 11950.94,
+ "text": "largest"
+ },
+ {
+ "id": 25762,
+ "start": 11950.94,
+ "end": 11952.02,
+ "text": "publisher?"
+ },
+ {
+ "id": 25763,
+ "start": 11952.02,
+ "end": 11952.84,
+ "text": "Because"
+ },
+ {
+ "id": 25764,
+ "start": 11952.84,
+ "end": 11952.98,
+ "text": "I"
+ },
+ {
+ "id": 25765,
+ "start": 11952.98,
+ "end": 11953.24,
+ "text": "think"
+ },
+ {
+ "id": 25766,
+ "start": 11953.24,
+ "end": 11953.52,
+ "text": "that"
+ },
+ {
+ "id": 25767,
+ "start": 11953.52,
+ "end": 11953.86,
+ "text": "goes"
+ },
+ {
+ "id": 25768,
+ "start": 11953.86,
+ "end": 11954.1,
+ "text": "to"
+ },
+ {
+ "id": 25769,
+ "start": 11954.1,
+ "end": 11954.18,
+ "text": "a"
+ },
+ {
+ "id": 25770,
+ "start": 11954.18,
+ "end": 11954.56,
+ "text": "really"
+ },
+ {
+ "id": 25771,
+ "start": 11954.56,
+ "end": 11954.96,
+ "text": "important"
+ },
+ {
+ "id": 25772,
+ "start": 11954.96,
+ "end": 11955.38,
+ "text": "question"
+ },
+ {
+ "id": 25773,
+ "start": 11955.38,
+ "end": 11955.66,
+ "text": "on"
+ },
+ {
+ "id": 25774,
+ "start": 11955.66,
+ "end": 11955.94,
+ "text": "what"
+ },
+ {
+ "id": 25775,
+ "start": 11955.94,
+ "end": 11956.28,
+ "text": "form"
+ },
+ {
+ "id": 25776,
+ "start": 11956.28,
+ "end": 11956.4,
+ "text": "of"
+ },
+ {
+ "id": 25777,
+ "start": 11956.4,
+ "end": 11957.26,
+ "text": "regulation"
+ },
+ {
+ "id": 25778,
+ "start": 11957.26,
+ "end": 11958,
+ "text": "or"
+ },
+ {
+ "id": 25779,
+ "start": 11958,
+ "end": 11958.52,
+ "text": "government"
+ },
+ {
+ "id": 25780,
+ "start": 11958.52,
+ "end": 11958.86,
+ "text": "action"
+ },
+ {
+ "id": 25781,
+ "start": 11958.86,
+ "end": 11959.02,
+ "text": "if"
+ },
+ {
+ "id": 25782,
+ "start": 11959.02,
+ "end": 11959.36,
+ "text": "any"
+ },
+ {
+ "id": 25783,
+ "start": 11959.36,
+ "end": 11960.28,
+ "text": "we"
+ },
+ {
+ "id": 25784,
+ "start": 11960.28,
+ "end": 11960.44,
+ "text": "would"
+ },
+ {
+ "id": 25785,
+ "start": 11960.44,
+ "end": 11961.38,
+ "text": "take"
+ },
+ {
+ "id": 25786,
+ "start": 11961.38,
+ "end": 11962.4,
+ "text": "Senator,"
+ },
+ {
+ "id": 25787,
+ "start": 11962.4,
+ "end": 11962.58,
+ "text": "this"
+ },
+ {
+ "id": 25788,
+ "start": 11962.58,
+ "end": 11962.72,
+ "text": "is"
+ },
+ {
+ "id": 25789,
+ "start": 11962.72,
+ "end": 11963.32,
+ "text": "a"
+ },
+ {
+ "id": 25790,
+ "start": 11963.32,
+ "end": 11964.3,
+ "text": "really"
+ },
+ {
+ "id": 25791,
+ "start": 11964.3,
+ "end": 11964.5,
+ "text": "big"
+ },
+ {
+ "id": 25792,
+ "start": 11964.5,
+ "end": 11964.84,
+ "text": "question."
+ },
+ {
+ "id": 25793,
+ "start": 11964.84,
+ "end": 11965.18,
+ "text": "I"
+ },
+ {
+ "id": 25794,
+ "start": 11965.18,
+ "end": 11965.86,
+ "text": "view"
+ },
+ {
+ "id": 25795,
+ "start": 11965.86,
+ "end": 11966.06,
+ "text": "us"
+ },
+ {
+ "id": 25796,
+ "start": 11966.06,
+ "end": 11966.3,
+ "text": "as"
+ },
+ {
+ "id": 25797,
+ "start": 11966.3,
+ "end": 11966.4,
+ "text": "a"
+ },
+ {
+ "id": 25798,
+ "start": 11966.4,
+ "end": 11966.62,
+ "text": "tech"
+ },
+ {
+ "id": 25799,
+ "start": 11966.62,
+ "end": 11967,
+ "text": "company"
+ },
+ {
+ "id": 25800,
+ "start": 11967,
+ "end": 11967.66,
+ "text": "because"
+ },
+ {
+ "id": 25801,
+ "start": 11967.66,
+ "end": 11967.78,
+ "text": "the"
+ },
+ {
+ "id": 25802,
+ "start": 11967.78,
+ "end": 11968.16,
+ "text": "primary"
+ },
+ {
+ "id": 25803,
+ "start": 11968.16,
+ "end": 11968.34,
+ "text": "thing"
+ },
+ {
+ "id": 25804,
+ "start": 11968.34,
+ "end": 11968.46,
+ "text": "that"
+ },
+ {
+ "id": 25805,
+ "start": 11968.46,
+ "end": 11968.54,
+ "text": "we"
+ },
+ {
+ "id": 25806,
+ "start": 11968.54,
+ "end": 11968.66,
+ "text": "do"
+ },
+ {
+ "id": 25807,
+ "start": 11968.66,
+ "end": 11968.9,
+ "text": "is"
+ },
+ {
+ "id": 25808,
+ "start": 11968.9,
+ "end": 11969.2,
+ "text": "build"
+ },
+ {
+ "id": 25809,
+ "start": 11969.2,
+ "end": 11969.82,
+ "text": "technology"
+ },
+ {
+ "id": 25810,
+ "start": 11969.82,
+ "end": 11969.92,
+ "text": "and"
+ },
+ {
+ "id": 25811,
+ "start": 11969.92,
+ "end": 11970.28,
+ "text": "product"
+ },
+ {
+ "id": 25812,
+ "start": 11970.28,
+ "end": 11970.48,
+ "text": "and"
+ },
+ {
+ "id": 25813,
+ "start": 11970.48,
+ "end": 11970.62,
+ "text": "you're"
+ },
+ {
+ "id": 25814,
+ "start": 11970.62,
+ "end": 11971,
+ "text": "responsible"
+ },
+ {
+ "id": 25815,
+ "start": 11971,
+ "end": 11971.12,
+ "text": "for"
+ },
+ {
+ "id": 25816,
+ "start": 11971.12,
+ "end": 11971.26,
+ "text": "your"
+ },
+ {
+ "id": 25817,
+ "start": 11971.26,
+ "end": 11971.72,
+ "text": "content,"
+ },
+ {
+ "id": 25818,
+ "start": 11971.72,
+ "end": 11972.02,
+ "text": "which"
+ },
+ {
+ "id": 25819,
+ "start": 11972.02,
+ "end": 11972.3,
+ "text": "makes"
+ },
+ {
+ "id": 25820,
+ "start": 11972.3,
+ "end": 11972.7,
+ "text": "exactly"
+ },
+ {
+ "id": 25821,
+ "start": 11972.7,
+ "end": 11972.88,
+ "text": "kind"
+ },
+ {
+ "id": 25822,
+ "start": 11972.88,
+ "end": 11972.98,
+ "text": "of"
+ },
+ {
+ "id": 25823,
+ "start": 11972.98,
+ "end": 11973.06,
+ "text": "a"
+ },
+ {
+ "id": 25824,
+ "start": 11973.06,
+ "end": 11973.58,
+ "text": "publisher,"
+ },
+ {
+ "id": 25825,
+ "start": 11973.58,
+ "end": 11974.24,
+ "text": "right?"
+ },
+ {
+ "id": 25826,
+ "start": 11974.24,
+ "end": 11975.62,
+ "text": "Well,"
+ },
+ {
+ "id": 25827,
+ "start": 11975.62,
+ "end": 11975.76,
+ "text": "I"
+ },
+ {
+ "id": 25828,
+ "start": 11975.76,
+ "end": 11976.06,
+ "text": "agree"
+ },
+ {
+ "id": 25829,
+ "start": 11976.06,
+ "end": 11976.2,
+ "text": "that"
+ },
+ {
+ "id": 25830,
+ "start": 11976.2,
+ "end": 11976.36,
+ "text": "we're"
+ },
+ {
+ "id": 25831,
+ "start": 11976.36,
+ "end": 11976.83,
+ "text": "responsible"
+ },
+ {
+ "id": 25832,
+ "start": 11976.83,
+ "end": 11977.07,
+ "text": "for"
+ },
+ {
+ "id": 25833,
+ "start": 11977.07,
+ "end": 11977.17,
+ "text": "the"
+ },
+ {
+ "id": 25834,
+ "start": 11977.17,
+ "end": 11977.57,
+ "text": "content,"
+ },
+ {
+ "id": 25835,
+ "start": 11977.57,
+ "end": 11978.15,
+ "text": "but"
+ },
+ {
+ "id": 25836,
+ "start": 11978.15,
+ "end": 11978.25,
+ "text": "we"
+ },
+ {
+ "id": 25837,
+ "start": 11978.25,
+ "end": 11978.43,
+ "text": "don't"
+ },
+ {
+ "id": 25838,
+ "start": 11978.43,
+ "end": 11978.73,
+ "text": "produce"
+ },
+ {
+ "id": 25839,
+ "start": 11978.73,
+ "end": 11978.91,
+ "text": "the"
+ },
+ {
+ "id": 25840,
+ "start": 11978.91,
+ "end": 11979.25,
+ "text": "content,"
+ },
+ {
+ "id": 25841,
+ "start": 11979.25,
+ "end": 11979.81,
+ "text": "I"
+ },
+ {
+ "id": 25842,
+ "start": 11979.81,
+ "end": 11979.99,
+ "text": "think"
+ },
+ {
+ "id": 25843,
+ "start": 11979.99,
+ "end": 11980.11,
+ "text": "that"
+ },
+ {
+ "id": 25844,
+ "start": 11980.11,
+ "end": 11980.25,
+ "text": "when"
+ },
+ {
+ "id": 25845,
+ "start": 11980.25,
+ "end": 11980.49,
+ "text": "people"
+ },
+ {
+ "id": 25846,
+ "start": 11980.49,
+ "end": 11980.71,
+ "text": "ask"
+ },
+ {
+ "id": 25847,
+ "start": 11980.71,
+ "end": 11980.85,
+ "text": "us"
+ },
+ {
+ "id": 25848,
+ "start": 11980.85,
+ "end": 11980.99,
+ "text": "if"
+ },
+ {
+ "id": 25849,
+ "start": 11980.99,
+ "end": 11981.19,
+ "text": "we're"
+ },
+ {
+ "id": 25850,
+ "start": 11981.19,
+ "end": 11981.23,
+ "text": "a"
+ },
+ {
+ "id": 25851,
+ "start": 11981.23,
+ "end": 11981.53,
+ "text": "media"
+ },
+ {
+ "id": 25852,
+ "start": 11981.53,
+ "end": 11981.87,
+ "text": "company"
+ },
+ {
+ "id": 25853,
+ "start": 11981.87,
+ "end": 11982.03,
+ "text": "or"
+ },
+ {
+ "id": 25854,
+ "start": 11982.03,
+ "end": 11982.11,
+ "text": "a"
+ },
+ {
+ "id": 25855,
+ "start": 11982.11,
+ "end": 11982.63,
+ "text": "publisher,"
+ },
+ {
+ "id": 25856,
+ "start": 11982.63,
+ "end": 11983.71,
+ "text": "my"
+ },
+ {
+ "id": 25857,
+ "start": 11983.71,
+ "end": 11984.41,
+ "text": "understanding"
+ },
+ {
+ "id": 25858,
+ "start": 11984.41,
+ "end": 11984.51,
+ "text": "of"
+ },
+ {
+ "id": 25859,
+ "start": 11984.51,
+ "end": 11984.75,
+ "text": "what"
+ },
+ {
+ "id": 25860,
+ "start": 11984.75,
+ "end": 11985.19,
+ "text": "the"
+ },
+ {
+ "id": 25861,
+ "start": 11985.19,
+ "end": 11985.43,
+ "text": "heart"
+ },
+ {
+ "id": 25862,
+ "start": 11985.43,
+ "end": 11985.53,
+ "text": "of"
+ },
+ {
+ "id": 25863,
+ "start": 11985.53,
+ "end": 11985.65,
+ "text": "what"
+ },
+ {
+ "id": 25864,
+ "start": 11985.65,
+ "end": 11985.85,
+ "text": "they're"
+ },
+ {
+ "id": 25865,
+ "start": 11985.85,
+ "end": 11986.05,
+ "text": "really"
+ },
+ {
+ "id": 25866,
+ "start": 11986.05,
+ "end": 11986.29,
+ "text": "getting"
+ },
+ {
+ "id": 25867,
+ "start": 11986.29,
+ "end": 11986.47,
+ "text": "at"
+ },
+ {
+ "id": 25868,
+ "start": 11986.47,
+ "end": 11986.95,
+ "text": "is"
+ },
+ {
+ "id": 25869,
+ "start": 11986.95,
+ "end": 11987.09,
+ "text": "do"
+ },
+ {
+ "id": 25870,
+ "start": 11987.09,
+ "end": 11987.23,
+ "text": "we"
+ },
+ {
+ "id": 25871,
+ "start": 11987.23,
+ "end": 11987.43,
+ "text": "feel"
+ },
+ {
+ "id": 25872,
+ "start": 11987.43,
+ "end": 11987.47,
+ "text": "a"
+ },
+ {
+ "id": 25873,
+ "start": 11987.47,
+ "end": 11988.35,
+ "text": "responsibility"
+ },
+ {
+ "id": 25874,
+ "start": 11988.35,
+ "end": 11988.51,
+ "text": "for"
+ },
+ {
+ "id": 25875,
+ "start": 11988.51,
+ "end": 11988.63,
+ "text": "the"
+ },
+ {
+ "id": 25876,
+ "start": 11988.63,
+ "end": 11988.97,
+ "text": "content"
+ },
+ {
+ "id": 25877,
+ "start": 11988.97,
+ "end": 11989.11,
+ "text": "on"
+ },
+ {
+ "id": 25878,
+ "start": 11989.11,
+ "end": 11989.27,
+ "text": "our"
+ },
+ {
+ "id": 25879,
+ "start": 11989.27,
+ "end": 11989.77,
+ "text": "platform?"
+ },
+ {
+ "id": 25880,
+ "start": 11989.77,
+ "end": 11990.27,
+ "text": "The"
+ },
+ {
+ "id": 25881,
+ "start": 11990.27,
+ "end": 11990.53,
+ "text": "answer"
+ },
+ {
+ "id": 25882,
+ "start": 11990.53,
+ "end": 11990.65,
+ "text": "to"
+ },
+ {
+ "id": 25883,
+ "start": 11990.65,
+ "end": 11990.83,
+ "text": "that"
+ },
+ {
+ "id": 25884,
+ "start": 11990.83,
+ "end": 11990.89,
+ "text": "I"
+ },
+ {
+ "id": 25885,
+ "start": 11990.89,
+ "end": 11991.07,
+ "text": "think"
+ },
+ {
+ "id": 25886,
+ "start": 11991.07,
+ "end": 11991.25,
+ "text": "is"
+ },
+ {
+ "id": 25887,
+ "start": 11991.25,
+ "end": 11991.63,
+ "text": "clearly"
+ },
+ {
+ "id": 25888,
+ "start": 11991.63,
+ "end": 11992.78,
+ "text": "yes,"
+ },
+ {
+ "id": 25889,
+ "start": 11992.78,
+ "end": 11993.74,
+ "text": "but"
+ },
+ {
+ "id": 25890,
+ "start": 11993.74,
+ "end": 11993.8,
+ "text": "I"
+ },
+ {
+ "id": 25891,
+ "start": 11993.8,
+ "end": 11993.94,
+ "text": "don't"
+ },
+ {
+ "id": 25892,
+ "start": 11993.94,
+ "end": 11994.08,
+ "text": "think"
+ },
+ {
+ "id": 25893,
+ "start": 11994.08,
+ "end": 11994.2,
+ "text": "that"
+ },
+ {
+ "id": 25894,
+ "start": 11994.2,
+ "end": 11994.38,
+ "text": "that's"
+ },
+ {
+ "id": 25895,
+ "start": 11994.38,
+ "end": 11995.04,
+ "text": "incompatible"
+ },
+ {
+ "id": 25896,
+ "start": 11995.04,
+ "end": 11995.24,
+ "text": "with"
+ },
+ {
+ "id": 25897,
+ "start": 11995.24,
+ "end": 11995.86,
+ "text": "fundamentally,"
+ },
+ {
+ "id": 25898,
+ "start": 11995.86,
+ "end": 11996.26,
+ "text": "at"
+ },
+ {
+ "id": 25899,
+ "start": 11996.26,
+ "end": 11996.44,
+ "text": "our"
+ },
+ {
+ "id": 25900,
+ "start": 11996.44,
+ "end": 11996.86,
+ "text": "core,"
+ },
+ {
+ "id": 25901,
+ "start": 11996.86,
+ "end": 11997.44,
+ "text": "being"
+ },
+ {
+ "id": 25902,
+ "start": 11997.44,
+ "end": 11997.48,
+ "text": "a"
+ },
+ {
+ "id": 25903,
+ "start": 11997.48,
+ "end": 11998.06,
+ "text": "technology"
+ },
+ {
+ "id": 25904,
+ "start": 11998.06,
+ "end": 11998.38,
+ "text": "company"
+ },
+ {
+ "id": 25905,
+ "start": 11998.38,
+ "end": 11998.56,
+ "text": "were"
+ },
+ {
+ "id": 25906,
+ "start": 11998.56,
+ "end": 11998.66,
+ "text": "the"
+ },
+ {
+ "id": 25907,
+ "start": 11998.66,
+ "end": 11998.82,
+ "text": "main"
+ },
+ {
+ "id": 25908,
+ "start": 11998.82,
+ "end": 11998.98,
+ "text": "thing"
+ },
+ {
+ "id": 25909,
+ "start": 11998.98,
+ "end": 11999.1,
+ "text": "that"
+ },
+ {
+ "id": 25910,
+ "start": 11999.1,
+ "end": 11999.22,
+ "text": "we"
+ },
+ {
+ "id": 25911,
+ "start": 11999.22,
+ "end": 11999.42,
+ "text": "do"
+ },
+ {
+ "id": 25912,
+ "start": 11999.42,
+ "end": 11999.62,
+ "text": "is"
+ },
+ {
+ "id": 25913,
+ "start": 11999.62,
+ "end": 11999.86,
+ "text": "have"
+ },
+ {
+ "id": 25914,
+ "start": 11999.86,
+ "end": 12000.44,
+ "text": "engineers"
+ },
+ {
+ "id": 25915,
+ "start": 12000.44,
+ "end": 12000.62,
+ "text": "and"
+ },
+ {
+ "id": 25916,
+ "start": 12000.62,
+ "end": 12000.86,
+ "text": "build"
+ },
+ {
+ "id": 25917,
+ "start": 12000.86,
+ "end": 12002.14,
+ "text": "products."
+ },
+ {
+ "id": 25918,
+ "start": 12002.14,
+ "end": 12003.26,
+ "text": "Thank"
+ },
+ {
+ "id": 25919,
+ "start": 12003.26,
+ "end": 12003.4,
+ "text": "you,"
+ },
+ {
+ "id": 25920,
+ "start": 12003.4,
+ "end": 12003.98,
+ "text": "Senator"
+ },
+ {
+ "id": 25921,
+ "start": 12003.98,
+ "end": 12004.4,
+ "text": "Sullivan"
+ },
+ {
+ "id": 25922,
+ "start": 12004.4,
+ "end": 12004.66,
+ "text": "center."
+ },
+ {
+ "id": 25923,
+ "start": 12004.66,
+ "end": 12004.76,
+ "text": "You"
+ },
+ {
+ "id": 25924,
+ "start": 12004.76,
+ "end": 12005.38,
+ "text": "do"
+ },
+ {
+ "id": 25925,
+ "start": 12005.38,
+ "end": 12006.38,
+ "text": "thank"
+ },
+ {
+ "id": 25926,
+ "start": 12006.38,
+ "end": 12006.52,
+ "text": "you,"
+ },
+ {
+ "id": 25927,
+ "start": 12006.52,
+ "end": 12006.86,
+ "text": "Mr"
+ },
+ {
+ "id": 25928,
+ "start": 12006.86,
+ "end": 12007.24,
+ "text": "Chairman."
+ },
+ {
+ "id": 25929,
+ "start": 12007.24,
+ "end": 12007.9,
+ "text": "And"
+ },
+ {
+ "id": 25930,
+ "start": 12007.9,
+ "end": 12008.82,
+ "text": "thank"
+ },
+ {
+ "id": 25931,
+ "start": 12008.82,
+ "end": 12008.96,
+ "text": "you"
+ },
+ {
+ "id": 25932,
+ "start": 12008.96,
+ "end": 12009.2,
+ "text": "very"
+ },
+ {
+ "id": 25933,
+ "start": 12009.2,
+ "end": 12009.4,
+ "text": "much,"
+ },
+ {
+ "id": 25934,
+ "start": 12009.4,
+ "end": 12009.78,
+ "text": "Mr"
+ },
+ {
+ "id": 25935,
+ "start": 12009.78,
+ "end": 12010.3,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 25936,
+ "start": 12010.3,
+ "end": 12010.56,
+ "text": "For"
+ },
+ {
+ "id": 25937,
+ "start": 12010.56,
+ "end": 12010.98,
+ "text": "being"
+ },
+ {
+ "id": 25938,
+ "start": 12010.98,
+ "end": 12011.82,
+ "text": "here"
+ },
+ {
+ "id": 25939,
+ "start": 12011.82,
+ "end": 12012.26,
+ "text": "today."
+ },
+ {
+ "id": 25940,
+ "start": 12012.26,
+ "end": 12013.26,
+ "text": "You"
+ },
+ {
+ "id": 25941,
+ "start": 12013.26,
+ "end": 12013.74,
+ "text": "spoke"
+ },
+ {
+ "id": 25942,
+ "start": 12013.74,
+ "end": 12014.68,
+ "text": "very"
+ },
+ {
+ "id": 25943,
+ "start": 12014.68,
+ "end": 12015.82,
+ "text": "idealistically"
+ },
+ {
+ "id": 25944,
+ "start": 12015.82,
+ "end": 12016.32,
+ "text": "about"
+ },
+ {
+ "id": 25945,
+ "start": 12016.32,
+ "end": 12016.54,
+ "text": "your"
+ },
+ {
+ "id": 25946,
+ "start": 12016.54,
+ "end": 12017.04,
+ "text": "company."
+ },
+ {
+ "id": 25947,
+ "start": 12017.04,
+ "end": 12017.2,
+ "text": "And"
+ },
+ {
+ "id": 25948,
+ "start": 12017.2,
+ "end": 12017.38,
+ "text": "you"
+ },
+ {
+ "id": 25949,
+ "start": 12017.38,
+ "end": 12017.64,
+ "text": "talked"
+ },
+ {
+ "id": 25950,
+ "start": 12017.64,
+ "end": 12017.9,
+ "text": "about"
+ },
+ {
+ "id": 25951,
+ "start": 12017.9,
+ "end": 12018.04,
+ "text": "the"
+ },
+ {
+ "id": 25952,
+ "start": 12018.04,
+ "end": 12018.34,
+ "text": "strong"
+ },
+ {
+ "id": 25953,
+ "start": 12018.34,
+ "end": 12019.08,
+ "text": "values"
+ },
+ {
+ "id": 25954,
+ "start": 12019.08,
+ "end": 12019.26,
+ "text": "and"
+ },
+ {
+ "id": 25955,
+ "start": 12019.26,
+ "end": 12019.4,
+ "text": "you"
+ },
+ {
+ "id": 25956,
+ "start": 12019.4,
+ "end": 12019.7,
+ "text": "said"
+ },
+ {
+ "id": 25957,
+ "start": 12019.7,
+ "end": 12020.3,
+ "text": "you"
+ },
+ {
+ "id": 25958,
+ "start": 12020.3,
+ "end": 12020.62,
+ "text": "wanted"
+ },
+ {
+ "id": 25959,
+ "start": 12020.62,
+ "end": 12020.74,
+ "text": "to"
+ },
+ {
+ "id": 25960,
+ "start": 12020.74,
+ "end": 12020.88,
+ "text": "be"
+ },
+ {
+ "id": 25961,
+ "start": 12020.88,
+ "end": 12020.96,
+ "text": "a"
+ },
+ {
+ "id": 25962,
+ "start": 12020.96,
+ "end": 12021.64,
+ "text": "positive"
+ },
+ {
+ "id": 25963,
+ "start": 12021.64,
+ "end": 12022.02,
+ "text": "force"
+ },
+ {
+ "id": 25964,
+ "start": 12022.02,
+ "end": 12022.18,
+ "text": "in"
+ },
+ {
+ "id": 25965,
+ "start": 12022.18,
+ "end": 12022.34,
+ "text": "the"
+ },
+ {
+ "id": 25966,
+ "start": 12022.34,
+ "end": 12022.86,
+ "text": "community"
+ },
+ {
+ "id": 25967,
+ "start": 12022.86,
+ "end": 12023,
+ "text": "in"
+ },
+ {
+ "id": 25968,
+ "start": 12023,
+ "end": 12023.12,
+ "text": "the"
+ },
+ {
+ "id": 25969,
+ "start": 12023.12,
+ "end": 12023.7,
+ "text": "world"
+ },
+ {
+ "id": 25970,
+ "start": 12023.7,
+ "end": 12024.66,
+ "text": "and"
+ },
+ {
+ "id": 25971,
+ "start": 12024.66,
+ "end": 12024.82,
+ "text": "you"
+ },
+ {
+ "id": 25972,
+ "start": 12024.82,
+ "end": 12025,
+ "text": "were"
+ },
+ {
+ "id": 25973,
+ "start": 12025,
+ "end": 12025.6,
+ "text": "hijacked"
+ },
+ {
+ "id": 25974,
+ "start": 12025.6,
+ "end": 12025.74,
+ "text": "by"
+ },
+ {
+ "id": 25975,
+ "start": 12025.74,
+ "end": 12026.38,
+ "text": "Cambridge"
+ },
+ {
+ "id": 25976,
+ "start": 12026.38,
+ "end": 12027.14,
+ "text": "Analytica"
+ },
+ {
+ "id": 25977,
+ "start": 12027.14,
+ "end": 12027.38,
+ "text": "for"
+ },
+ {
+ "id": 25978,
+ "start": 12027.38,
+ "end": 12027.96,
+ "text": "political"
+ },
+ {
+ "id": 25979,
+ "start": 12027.96,
+ "end": 12028.46,
+ "text": "purposes."
+ },
+ {
+ "id": 25980,
+ "start": 12028.46,
+ "end": 12028.7,
+ "text": "Are"
+ },
+ {
+ "id": 25981,
+ "start": 12028.7,
+ "end": 12028.82,
+ "text": "you"
+ },
+ {
+ "id": 25982,
+ "start": 12028.82,
+ "end": 12029.24,
+ "text": "angry"
+ },
+ {
+ "id": 25983,
+ "start": 12029.24,
+ "end": 12029.54,
+ "text": "about"
+ },
+ {
+ "id": 25984,
+ "start": 12029.54,
+ "end": 12030.26,
+ "text": "that"
+ },
+ {
+ "id": 25985,
+ "start": 12030.26,
+ "end": 12031.3,
+ "text": "absolutely"
+ },
+ {
+ "id": 25986,
+ "start": 12031.3,
+ "end": 12032.42,
+ "text": "and"
+ },
+ {
+ "id": 25987,
+ "start": 12032.42,
+ "end": 12033.02,
+ "text": "you're"
+ },
+ {
+ "id": 25988,
+ "start": 12033.02,
+ "end": 12034.54,
+ "text": "determined."
+ },
+ {
+ "id": 25989,
+ "start": 12034.54,
+ "end": 12035.42,
+ "text": "And"
+ },
+ {
+ "id": 25990,
+ "start": 12035.42,
+ "end": 12035.56,
+ "text": "I"
+ },
+ {
+ "id": 25991,
+ "start": 12035.56,
+ "end": 12035.88,
+ "text": "assume"
+ },
+ {
+ "id": 25992,
+ "start": 12035.88,
+ "end": 12036.02,
+ "text": "you"
+ },
+ {
+ "id": 25993,
+ "start": 12036.02,
+ "end": 12036.26,
+ "text": "want"
+ },
+ {
+ "id": 25994,
+ "start": 12036.26,
+ "end": 12036.78,
+ "text": "changes"
+ },
+ {
+ "id": 25995,
+ "start": 12036.78,
+ "end": 12037.02,
+ "text": "made"
+ },
+ {
+ "id": 25996,
+ "start": 12037.02,
+ "end": 12037.16,
+ "text": "in"
+ },
+ {
+ "id": 25997,
+ "start": 12037.16,
+ "end": 12037.26,
+ "text": "the"
+ },
+ {
+ "id": 25998,
+ "start": 12037.26,
+ "end": 12037.54,
+ "text": "law"
+ },
+ {
+ "id": 25999,
+ "start": 12037.54,
+ "end": 12037.78,
+ "text": "that's"
+ },
+ {
+ "id": 26000,
+ "start": 12037.78,
+ "end": 12037.92,
+ "text": "what"
+ },
+ {
+ "id": 26001,
+ "start": 12037.92,
+ "end": 12038.14,
+ "text": "you've"
+ },
+ {
+ "id": 26002,
+ "start": 12038.14,
+ "end": 12038.38,
+ "text": "talked"
+ },
+ {
+ "id": 26003,
+ "start": 12038.38,
+ "end": 12038.62,
+ "text": "about"
+ },
+ {
+ "id": 26004,
+ "start": 12038.62,
+ "end": 12040.04,
+ "text": "today,"
+ },
+ {
+ "id": 26005,
+ "start": 12040.04,
+ "end": 12041.06,
+ "text": "Senator,"
+ },
+ {
+ "id": 26006,
+ "start": 12041.06,
+ "end": 12041.18,
+ "text": "the"
+ },
+ {
+ "id": 26007,
+ "start": 12041.18,
+ "end": 12041.36,
+ "text": "most"
+ },
+ {
+ "id": 26008,
+ "start": 12041.36,
+ "end": 12041.78,
+ "text": "important"
+ },
+ {
+ "id": 26009,
+ "start": 12041.78,
+ "end": 12042.06,
+ "text": "thing"
+ },
+ {
+ "id": 26010,
+ "start": 12042.06,
+ "end": 12042.44,
+ "text": "that"
+ },
+ {
+ "id": 26011,
+ "start": 12042.44,
+ "end": 12042.56,
+ "text": "I"
+ },
+ {
+ "id": 26012,
+ "start": 12042.56,
+ "end": 12042.74,
+ "text": "care"
+ },
+ {
+ "id": 26013,
+ "start": 12042.74,
+ "end": 12042.94,
+ "text": "about"
+ },
+ {
+ "id": 26014,
+ "start": 12042.94,
+ "end": 12043.14,
+ "text": "right"
+ },
+ {
+ "id": 26015,
+ "start": 12043.14,
+ "end": 12043.44,
+ "text": "now"
+ },
+ {
+ "id": 26016,
+ "start": 12043.44,
+ "end": 12043.86,
+ "text": "is"
+ },
+ {
+ "id": 26017,
+ "start": 12043.86,
+ "end": 12044.16,
+ "text": "making"
+ },
+ {
+ "id": 26018,
+ "start": 12044.16,
+ "end": 12044.4,
+ "text": "sure"
+ },
+ {
+ "id": 26019,
+ "start": 12044.4,
+ "end": 12044.85,
+ "text": "that"
+ },
+ {
+ "id": 26020,
+ "start": 12044.85,
+ "end": 12045.43,
+ "text": "interferes"
+ },
+ {
+ "id": 26021,
+ "start": 12045.43,
+ "end": 12045.57,
+ "text": "in"
+ },
+ {
+ "id": 26022,
+ "start": 12045.57,
+ "end": 12045.67,
+ "text": "the"
+ },
+ {
+ "id": 26023,
+ "start": 12045.67,
+ "end": 12045.99,
+ "text": "various"
+ },
+ {
+ "id": 26024,
+ "start": 12045.99,
+ "end": 12046.33,
+ "text": "20"
+ },
+ {
+ "id": 26025,
+ "start": 12046.33,
+ "end": 12046.61,
+ "text": "18"
+ },
+ {
+ "id": 26026,
+ "start": 12046.61,
+ "end": 12047.03,
+ "text": "elections"
+ },
+ {
+ "id": 26027,
+ "start": 12047.03,
+ "end": 12047.27,
+ "text": "around"
+ },
+ {
+ "id": 26028,
+ "start": 12047.27,
+ "end": 12047.37,
+ "text": "the"
+ },
+ {
+ "id": 26029,
+ "start": 12047.37,
+ "end": 12047.65,
+ "text": "world."
+ },
+ {
+ "id": 26030,
+ "start": 12047.65,
+ "end": 12048.03,
+ "text": "We"
+ },
+ {
+ "id": 26031,
+ "start": 12048.03,
+ "end": 12048.17,
+ "text": "have"
+ },
+ {
+ "id": 26032,
+ "start": 12048.17,
+ "end": 12048.23,
+ "text": "an"
+ },
+ {
+ "id": 26033,
+ "start": 12048.23,
+ "end": 12048.75,
+ "text": "extremely"
+ },
+ {
+ "id": 26034,
+ "start": 12048.75,
+ "end": 12049.07,
+ "text": "important"
+ },
+ {
+ "id": 26035,
+ "start": 12049.07,
+ "end": 12049.35,
+ "text": "US"
+ },
+ {
+ "id": 26036,
+ "start": 12049.35,
+ "end": 12049.83,
+ "text": "Midterm."
+ },
+ {
+ "id": 26037,
+ "start": 12049.83,
+ "end": 12050.31,
+ "text": "We"
+ },
+ {
+ "id": 26038,
+ "start": 12050.31,
+ "end": 12050.49,
+ "text": "have"
+ },
+ {
+ "id": 26039,
+ "start": 12050.49,
+ "end": 12051.21,
+ "text": "major"
+ },
+ {
+ "id": 26040,
+ "start": 12051.21,
+ "end": 12051.63,
+ "text": "elections"
+ },
+ {
+ "id": 26041,
+ "start": 12051.63,
+ "end": 12051.77,
+ "text": "in"
+ },
+ {
+ "id": 26042,
+ "start": 12051.77,
+ "end": 12052.11,
+ "text": "India,"
+ },
+ {
+ "id": 26043,
+ "start": 12052.11,
+ "end": 12052.59,
+ "text": "Brazil,"
+ },
+ {
+ "id": 26044,
+ "start": 12052.59,
+ "end": 12053.15,
+ "text": "Mexico,"
+ },
+ {
+ "id": 26045,
+ "start": 12053.15,
+ "end": 12053.79,
+ "text": "Pakistan,"
+ },
+ {
+ "id": 26046,
+ "start": 12053.79,
+ "end": 12054.23,
+ "text": "Hungary"
+ },
+ {
+ "id": 26047,
+ "start": 12054.23,
+ "end": 12054.75,
+ "text": "coming"
+ },
+ {
+ "id": 26048,
+ "start": 12054.75,
+ "end": 12055.16,
+ "text": "up"
+ },
+ {
+ "id": 26049,
+ "start": 12055.16,
+ "end": 12055.58,
+ "text": "and"
+ },
+ {
+ "id": 26050,
+ "start": 12055.58,
+ "end": 12055.86,
+ "text": "we're"
+ },
+ {
+ "id": 26051,
+ "start": 12055.86,
+ "end": 12056.02,
+ "text": "going"
+ },
+ {
+ "id": 26052,
+ "start": 12056.02,
+ "end": 12056.08,
+ "text": "to"
+ },
+ {
+ "id": 26053,
+ "start": 12056.08,
+ "end": 12056.24,
+ "text": "take"
+ },
+ {
+ "id": 26054,
+ "start": 12056.24,
+ "end": 12056.3,
+ "text": "a"
+ },
+ {
+ "id": 26055,
+ "start": 12056.3,
+ "end": 12056.9,
+ "text": "number"
+ },
+ {
+ "id": 26056,
+ "start": 12056.9,
+ "end": 12056.98,
+ "text": "of"
+ },
+ {
+ "id": 26057,
+ "start": 12056.98,
+ "end": 12057.36,
+ "text": "measures"
+ },
+ {
+ "id": 26058,
+ "start": 12057.36,
+ "end": 12057.6,
+ "text": "from"
+ },
+ {
+ "id": 26059,
+ "start": 12057.6,
+ "end": 12057.9,
+ "text": "building"
+ },
+ {
+ "id": 26060,
+ "start": 12057.9,
+ "end": 12058.02,
+ "text": "and"
+ },
+ {
+ "id": 26061,
+ "start": 12058.02,
+ "end": 12058.36,
+ "text": "deploying"
+ },
+ {
+ "id": 26062,
+ "start": 12058.36,
+ "end": 12058.54,
+ "text": "new"
+ },
+ {
+ "id": 26063,
+ "start": 12058.54,
+ "end": 12058.84,
+ "text": "AI"
+ },
+ {
+ "id": 26064,
+ "start": 12058.84,
+ "end": 12059.12,
+ "text": "tools"
+ },
+ {
+ "id": 26065,
+ "start": 12059.12,
+ "end": 12059.28,
+ "text": "that"
+ },
+ {
+ "id": 26066,
+ "start": 12059.28,
+ "end": 12059.46,
+ "text": "take"
+ },
+ {
+ "id": 26067,
+ "start": 12059.46,
+ "end": 12059.66,
+ "text": "down"
+ },
+ {
+ "id": 26068,
+ "start": 12059.66,
+ "end": 12059.9,
+ "text": "Fake"
+ },
+ {
+ "id": 26069,
+ "start": 12059.9,
+ "end": 12060.2,
+ "text": "News"
+ },
+ {
+ "id": 26070,
+ "start": 12060.2,
+ "end": 12060.64,
+ "text": "to"
+ },
+ {
+ "id": 26071,
+ "start": 12060.64,
+ "end": 12060.9,
+ "text": "growing"
+ },
+ {
+ "id": 26072,
+ "start": 12060.9,
+ "end": 12061.04,
+ "text": "our"
+ },
+ {
+ "id": 26073,
+ "start": 12061.04,
+ "end": 12061.52,
+ "text": "security"
+ },
+ {
+ "id": 26074,
+ "start": 12061.52,
+ "end": 12061.7,
+ "text": "team"
+ },
+ {
+ "id": 26075,
+ "start": 12061.7,
+ "end": 12061.84,
+ "text": "to"
+ },
+ {
+ "id": 26076,
+ "start": 12061.84,
+ "end": 12062.04,
+ "text": "more"
+ },
+ {
+ "id": 26077,
+ "start": 12062.04,
+ "end": 12062.18,
+ "text": "than"
+ },
+ {
+ "id": 26078,
+ "start": 12062.18,
+ "end": 12062.9,
+ "text": "20,000"
+ },
+ {
+ "id": 26079,
+ "start": 12062.9,
+ "end": 12063.2,
+ "text": "people"
+ },
+ {
+ "id": 26080,
+ "start": 12063.2,
+ "end": 12063.92,
+ "text": "to"
+ },
+ {
+ "id": 26081,
+ "start": 12063.92,
+ "end": 12064.76,
+ "text": "making"
+ },
+ {
+ "id": 26082,
+ "start": 12064.76,
+ "end": 12064.84,
+ "text": "it"
+ },
+ {
+ "id": 26083,
+ "start": 12064.84,
+ "end": 12065.04,
+ "text": "that"
+ },
+ {
+ "id": 26084,
+ "start": 12065.04,
+ "end": 12065.14,
+ "text": "we"
+ },
+ {
+ "id": 26085,
+ "start": 12065.14,
+ "end": 12065.78,
+ "text": "verify"
+ },
+ {
+ "id": 26086,
+ "start": 12065.78,
+ "end": 12066.44,
+ "text": "every"
+ },
+ {
+ "id": 26087,
+ "start": 12066.44,
+ "end": 12067.12,
+ "text": "advertiser"
+ },
+ {
+ "id": 26088,
+ "start": 12067.12,
+ "end": 12067.36,
+ "text": "who's"
+ },
+ {
+ "id": 26089,
+ "start": 12067.36,
+ "end": 12067.56,
+ "text": "doing"
+ },
+ {
+ "id": 26090,
+ "start": 12067.56,
+ "end": 12067.94,
+ "text": "political"
+ },
+ {
+ "id": 26091,
+ "start": 12067.94,
+ "end": 12068.04,
+ "text": "and"
+ },
+ {
+ "id": 26092,
+ "start": 12068.04,
+ "end": 12068.28,
+ "text": "issue"
+ },
+ {
+ "id": 26093,
+ "start": 12068.28,
+ "end": 12068.9,
+ "text": "ads"
+ },
+ {
+ "id": 26094,
+ "start": 12068.9,
+ "end": 12069.32,
+ "text": "to"
+ },
+ {
+ "id": 26095,
+ "start": 12069.32,
+ "end": 12069.5,
+ "text": "make"
+ },
+ {
+ "id": 26096,
+ "start": 12069.5,
+ "end": 12069.72,
+ "text": "sure"
+ },
+ {
+ "id": 26097,
+ "start": 12069.72,
+ "end": 12070.02,
+ "text": "that"
+ },
+ {
+ "id": 26098,
+ "start": 12070.02,
+ "end": 12070.48,
+ "text": "that"
+ },
+ {
+ "id": 26099,
+ "start": 12070.48,
+ "end": 12070.74,
+ "text": "kind"
+ },
+ {
+ "id": 26100,
+ "start": 12070.74,
+ "end": 12070.82,
+ "text": "of"
+ },
+ {
+ "id": 26101,
+ "start": 12070.82,
+ "end": 12071.36,
+ "text": "interference"
+ },
+ {
+ "id": 26102,
+ "start": 12071.36,
+ "end": 12071.48,
+ "text": "that"
+ },
+ {
+ "id": 26103,
+ "start": 12071.48,
+ "end": 12071.6,
+ "text": "the"
+ },
+ {
+ "id": 26104,
+ "start": 12071.6,
+ "end": 12071.96,
+ "text": "Russians"
+ },
+ {
+ "id": 26105,
+ "start": 12071.96,
+ "end": 12072.16,
+ "text": "were"
+ },
+ {
+ "id": 26106,
+ "start": 12072.16,
+ "end": 12072.32,
+ "text": "able"
+ },
+ {
+ "id": 26107,
+ "start": 12072.32,
+ "end": 12072.44,
+ "text": "to"
+ },
+ {
+ "id": 26108,
+ "start": 12072.44,
+ "end": 12072.56,
+ "text": "do"
+ },
+ {
+ "id": 26109,
+ "start": 12072.56,
+ "end": 12072.7,
+ "text": "in"
+ },
+ {
+ "id": 26110,
+ "start": 12072.7,
+ "end": 12072.92,
+ "text": "20"
+ },
+ {
+ "id": 26111,
+ "start": 12072.92,
+ "end": 12073.42,
+ "text": "16"
+ },
+ {
+ "id": 26112,
+ "start": 12073.42,
+ "end": 12074.18,
+ "text": "is"
+ },
+ {
+ "id": 26113,
+ "start": 12074.18,
+ "end": 12074.36,
+ "text": "going"
+ },
+ {
+ "id": 26114,
+ "start": 12074.36,
+ "end": 12074.42,
+ "text": "to"
+ },
+ {
+ "id": 26115,
+ "start": 12074.42,
+ "end": 12074.52,
+ "text": "be"
+ },
+ {
+ "id": 26116,
+ "start": 12074.52,
+ "end": 12075.32,
+ "text": "much"
+ },
+ {
+ "id": 26117,
+ "start": 12075.32,
+ "end": 12075.62,
+ "text": "harder"
+ },
+ {
+ "id": 26118,
+ "start": 12075.62,
+ "end": 12075.86,
+ "text": "for"
+ },
+ {
+ "id": 26119,
+ "start": 12075.86,
+ "end": 12076.14,
+ "text": "anyone"
+ },
+ {
+ "id": 26120,
+ "start": 12076.14,
+ "end": 12076.24,
+ "text": "to"
+ },
+ {
+ "id": 26121,
+ "start": 12076.24,
+ "end": 12076.42,
+ "text": "pull"
+ },
+ {
+ "id": 26122,
+ "start": 12076.42,
+ "end": 12076.56,
+ "text": "off"
+ },
+ {
+ "id": 26123,
+ "start": 12076.56,
+ "end": 12076.66,
+ "text": "in"
+ },
+ {
+ "id": 26124,
+ "start": 12076.66,
+ "end": 12076.78,
+ "text": "the"
+ },
+ {
+ "id": 26125,
+ "start": 12076.78,
+ "end": 12077.08,
+ "text": "future."
+ },
+ {
+ "id": 26126,
+ "start": 12077.08,
+ "end": 12077.92,
+ "text": "And"
+ },
+ {
+ "id": 26127,
+ "start": 12077.92,
+ "end": 12078.5,
+ "text": "I"
+ },
+ {
+ "id": 26128,
+ "start": 12078.5,
+ "end": 12078.7,
+ "text": "think"
+ },
+ {
+ "id": 26129,
+ "start": 12078.7,
+ "end": 12078.86,
+ "text": "you"
+ },
+ {
+ "id": 26130,
+ "start": 12078.86,
+ "end": 12079.28,
+ "text": "said"
+ },
+ {
+ "id": 26131,
+ "start": 12079.28,
+ "end": 12079.72,
+ "text": "earlier"
+ },
+ {
+ "id": 26132,
+ "start": 12079.72,
+ "end": 12079.98,
+ "text": "that"
+ },
+ {
+ "id": 26133,
+ "start": 12079.98,
+ "end": 12080.16,
+ "text": "you"
+ },
+ {
+ "id": 26134,
+ "start": 12080.16,
+ "end": 12080.78,
+ "text": "support"
+ },
+ {
+ "id": 26135,
+ "start": 12080.78,
+ "end": 12080.98,
+ "text": "the"
+ },
+ {
+ "id": 26136,
+ "start": 12080.98,
+ "end": 12081.46,
+ "text": "honest"
+ },
+ {
+ "id": 26137,
+ "start": 12081.46,
+ "end": 12081.9,
+ "text": "ads"
+ },
+ {
+ "id": 26138,
+ "start": 12081.9,
+ "end": 12082.28,
+ "text": "act."
+ },
+ {
+ "id": 26139,
+ "start": 12082.28,
+ "end": 12082.54,
+ "text": "And"
+ },
+ {
+ "id": 26140,
+ "start": 12082.54,
+ "end": 12082.76,
+ "text": "so"
+ },
+ {
+ "id": 26141,
+ "start": 12082.76,
+ "end": 12082.88,
+ "text": "I"
+ },
+ {
+ "id": 26142,
+ "start": 12082.88,
+ "end": 12083.22,
+ "text": "assume"
+ },
+ {
+ "id": 26143,
+ "start": 12083.22,
+ "end": 12083.38,
+ "text": "that"
+ },
+ {
+ "id": 26144,
+ "start": 12083.38,
+ "end": 12083.71,
+ "text": "means"
+ },
+ {
+ "id": 26145,
+ "start": 12083.71,
+ "end": 12084.11,
+ "text": "want"
+ },
+ {
+ "id": 26146,
+ "start": 12084.11,
+ "end": 12084.57,
+ "text": "changes"
+ },
+ {
+ "id": 26147,
+ "start": 12084.57,
+ "end": 12084.75,
+ "text": "in"
+ },
+ {
+ "id": 26148,
+ "start": 12084.75,
+ "end": 12084.85,
+ "text": "the"
+ },
+ {
+ "id": 26149,
+ "start": 12084.85,
+ "end": 12085.15,
+ "text": "law"
+ },
+ {
+ "id": 26150,
+ "start": 12085.15,
+ "end": 12086.13,
+ "text": "in"
+ },
+ {
+ "id": 26151,
+ "start": 12086.13,
+ "end": 12086.43,
+ "text": "order"
+ },
+ {
+ "id": 26152,
+ "start": 12086.43,
+ "end": 12087.07,
+ "text": "to"
+ },
+ {
+ "id": 26153,
+ "start": 12087.07,
+ "end": 12087.79,
+ "text": "effectuate"
+ },
+ {
+ "id": 26154,
+ "start": 12087.79,
+ "end": 12088.31,
+ "text": "exactly"
+ },
+ {
+ "id": 26155,
+ "start": 12088.31,
+ "end": 12088.47,
+ "text": "what"
+ },
+ {
+ "id": 26156,
+ "start": 12088.47,
+ "end": 12088.69,
+ "text": "you"
+ },
+ {
+ "id": 26157,
+ "start": 12088.69,
+ "end": 12088.95,
+ "text": "talked"
+ },
+ {
+ "id": 26158,
+ "start": 12088.95,
+ "end": 12089.27,
+ "text": "about"
+ },
+ {
+ "id": 26159,
+ "start": 12089.27,
+ "end": 12090.47,
+ "text": "Senator,"
+ },
+ {
+ "id": 26160,
+ "start": 12090.47,
+ "end": 12090.75,
+ "text": "yes,"
+ },
+ {
+ "id": 26161,
+ "start": 12090.75,
+ "end": 12090.99,
+ "text": "we"
+ },
+ {
+ "id": 26162,
+ "start": 12090.99,
+ "end": 12091.35,
+ "text": "support"
+ },
+ {
+ "id": 26163,
+ "start": 12091.35,
+ "end": 12091.43,
+ "text": "the"
+ },
+ {
+ "id": 26164,
+ "start": 12091.43,
+ "end": 12091.65,
+ "text": "honest"
+ },
+ {
+ "id": 26165,
+ "start": 12091.65,
+ "end": 12091.87,
+ "text": "ads"
+ },
+ {
+ "id": 26166,
+ "start": 12091.87,
+ "end": 12092.25,
+ "text": "act"
+ },
+ {
+ "id": 26167,
+ "start": 12092.25,
+ "end": 12093.05,
+ "text": "on."
+ },
+ {
+ "id": 26168,
+ "start": 12093.05,
+ "end": 12093.17,
+ "text": "Are"
+ },
+ {
+ "id": 26169,
+ "start": 12093.17,
+ "end": 12093.33,
+ "text": "you"
+ },
+ {
+ "id": 26170,
+ "start": 12093.33,
+ "end": 12093.51,
+ "text": "going"
+ },
+ {
+ "id": 26171,
+ "start": 12093.51,
+ "end": 12093.59,
+ "text": "to"
+ },
+ {
+ "id": 26172,
+ "start": 12093.59,
+ "end": 12093.85,
+ "text": "come"
+ },
+ {
+ "id": 26173,
+ "start": 12093.85,
+ "end": 12094.13,
+ "text": "back"
+ },
+ {
+ "id": 26174,
+ "start": 12094.13,
+ "end": 12094.33,
+ "text": "up"
+ },
+ {
+ "id": 26175,
+ "start": 12094.33,
+ "end": 12094.53,
+ "text": "here"
+ },
+ {
+ "id": 26176,
+ "start": 12094.53,
+ "end": 12094.69,
+ "text": "and"
+ },
+ {
+ "id": 26177,
+ "start": 12094.69,
+ "end": 12094.85,
+ "text": "be"
+ },
+ {
+ "id": 26178,
+ "start": 12094.85,
+ "end": 12094.91,
+ "text": "a"
+ },
+ {
+ "id": 26179,
+ "start": 12094.91,
+ "end": 12095.47,
+ "text": "strong"
+ },
+ {
+ "id": 26180,
+ "start": 12095.47,
+ "end": 12096.13,
+ "text": "advocate"
+ },
+ {
+ "id": 26181,
+ "start": 12096.13,
+ "end": 12096.33,
+ "text": "to"
+ },
+ {
+ "id": 26182,
+ "start": 12096.33,
+ "end": 12096.61,
+ "text": "see"
+ },
+ {
+ "id": 26183,
+ "start": 12096.61,
+ "end": 12096.79,
+ "text": "that"
+ },
+ {
+ "id": 26184,
+ "start": 12096.79,
+ "end": 12097.05,
+ "text": "that"
+ },
+ {
+ "id": 26185,
+ "start": 12097.05,
+ "end": 12097.41,
+ "text": "laws"
+ },
+ {
+ "id": 26186,
+ "start": 12097.41,
+ "end": 12098.52,
+ "text": "passed"
+ },
+ {
+ "id": 26187,
+ "start": 12098.52,
+ "end": 12099.58,
+ "text": "Senator"
+ },
+ {
+ "id": 26188,
+ "start": 12099.58,
+ "end": 12100.3,
+ "text": "the"
+ },
+ {
+ "id": 26189,
+ "start": 12100.3,
+ "end": 12100.58,
+ "text": "biggest"
+ },
+ {
+ "id": 26190,
+ "start": 12100.58,
+ "end": 12100.8,
+ "text": "thing"
+ },
+ {
+ "id": 26191,
+ "start": 12100.8,
+ "end": 12100.94,
+ "text": "that"
+ },
+ {
+ "id": 26192,
+ "start": 12100.94,
+ "end": 12101,
+ "text": "I"
+ },
+ {
+ "id": 26193,
+ "start": 12101,
+ "end": 12101.2,
+ "text": "think"
+ },
+ {
+ "id": 26194,
+ "start": 12101.2,
+ "end": 12101.36,
+ "text": "we"
+ },
+ {
+ "id": 26195,
+ "start": 12101.36,
+ "end": 12101.56,
+ "text": "can"
+ },
+ {
+ "id": 26196,
+ "start": 12101.56,
+ "end": 12102.12,
+ "text": "do"
+ },
+ {
+ "id": 26197,
+ "start": 12102.12,
+ "end": 12102.6,
+ "text": "is"
+ },
+ {
+ "id": 26198,
+ "start": 12102.6,
+ "end": 12103.22,
+ "text": "implemented"
+ },
+ {
+ "id": 26199,
+ "start": 12103.22,
+ "end": 12103.82,
+ "text": "well"
+ },
+ {
+ "id": 26200,
+ "start": 12103.82,
+ "end": 12104,
+ "text": "that's"
+ },
+ {
+ "id": 26201,
+ "start": 12104,
+ "end": 12104.12,
+ "text": "the"
+ },
+ {
+ "id": 26202,
+ "start": 12104.12,
+ "end": 12104.3,
+ "text": "kind"
+ },
+ {
+ "id": 26203,
+ "start": 12104.3,
+ "end": 12104.38,
+ "text": "of"
+ },
+ {
+ "id": 26204,
+ "start": 12104.38,
+ "end": 12104.58,
+ "text": "we're"
+ },
+ {
+ "id": 26205,
+ "start": 12104.58,
+ "end": 12104.8,
+ "text": "doing"
+ },
+ {
+ "id": 26206,
+ "start": 12104.8,
+ "end": 12105.02,
+ "text": "yes"
+ },
+ {
+ "id": 26207,
+ "start": 12105.02,
+ "end": 12105.18,
+ "text": "or"
+ },
+ {
+ "id": 26208,
+ "start": 12105.18,
+ "end": 12105.38,
+ "text": "no"
+ },
+ {
+ "id": 26209,
+ "start": 12105.38,
+ "end": 12105.72,
+ "text": "question"
+ },
+ {
+ "id": 26210,
+ "start": 12105.72,
+ "end": 12105.94,
+ "text": "there."
+ },
+ {
+ "id": 26211,
+ "start": 12105.94,
+ "end": 12106,
+ "text": "I"
+ },
+ {
+ "id": 26212,
+ "start": 12106,
+ "end": 12106.16,
+ "text": "hate"
+ },
+ {
+ "id": 26213,
+ "start": 12106.16,
+ "end": 12106.24,
+ "text": "to"
+ },
+ {
+ "id": 26214,
+ "start": 12106.24,
+ "end": 12106.64,
+ "text": "interrupt"
+ },
+ {
+ "id": 26215,
+ "start": 12106.64,
+ "end": 12106.8,
+ "text": "you"
+ },
+ {
+ "id": 26216,
+ "start": 12106.8,
+ "end": 12106.98,
+ "text": "but"
+ },
+ {
+ "id": 26217,
+ "start": 12106.98,
+ "end": 12107.52,
+ "text": "are"
+ },
+ {
+ "id": 26218,
+ "start": 12107.52,
+ "end": 12107.66,
+ "text": "you"
+ },
+ {
+ "id": 26219,
+ "start": 12107.66,
+ "end": 12107.84,
+ "text": "going"
+ },
+ {
+ "id": 26220,
+ "start": 12107.84,
+ "end": 12107.9,
+ "text": "to"
+ },
+ {
+ "id": 26221,
+ "start": 12107.9,
+ "end": 12108.1,
+ "text": "come"
+ },
+ {
+ "id": 26222,
+ "start": 12108.1,
+ "end": 12108.3,
+ "text": "back"
+ },
+ {
+ "id": 26223,
+ "start": 12108.3,
+ "end": 12108.5,
+ "text": "and"
+ },
+ {
+ "id": 26224,
+ "start": 12108.5,
+ "end": 12108.66,
+ "text": "be"
+ },
+ {
+ "id": 26225,
+ "start": 12108.66,
+ "end": 12108.72,
+ "text": "a"
+ },
+ {
+ "id": 26226,
+ "start": 12108.72,
+ "end": 12109.1,
+ "text": "strong"
+ },
+ {
+ "id": 26227,
+ "start": 12109.1,
+ "end": 12109.56,
+ "text": "advocate"
+ },
+ {
+ "id": 26228,
+ "start": 12109.56,
+ "end": 12109.84,
+ "text": "you're"
+ },
+ {
+ "id": 26229,
+ "start": 12109.84,
+ "end": 12110.22,
+ "text": "angry"
+ },
+ {
+ "id": 26230,
+ "start": 12110.22,
+ "end": 12110.46,
+ "text": "about"
+ },
+ {
+ "id": 26231,
+ "start": 12110.46,
+ "end": 12110.72,
+ "text": "this?"
+ },
+ {
+ "id": 26232,
+ "start": 12110.72,
+ "end": 12110.92,
+ "text": "You"
+ },
+ {
+ "id": 26233,
+ "start": 12110.92,
+ "end": 12111.16,
+ "text": "think"
+ },
+ {
+ "id": 26234,
+ "start": 12111.16,
+ "end": 12111.68,
+ "text": "there"
+ },
+ {
+ "id": 26235,
+ "start": 12111.68,
+ "end": 12111.86,
+ "text": "ought"
+ },
+ {
+ "id": 26236,
+ "start": 12111.86,
+ "end": 12111.94,
+ "text": "to"
+ },
+ {
+ "id": 26237,
+ "start": 12111.94,
+ "end": 12112.1,
+ "text": "be"
+ },
+ {
+ "id": 26238,
+ "start": 12112.1,
+ "end": 12112.44,
+ "text": "changed"
+ },
+ {
+ "id": 26239,
+ "start": 12112.44,
+ "end": 12112.62,
+ "text": "there"
+ },
+ {
+ "id": 26240,
+ "start": 12112.62,
+ "end": 12112.78,
+ "text": "ought"
+ },
+ {
+ "id": 26241,
+ "start": 12112.78,
+ "end": 12112.86,
+ "text": "to"
+ },
+ {
+ "id": 26242,
+ "start": 12112.86,
+ "end": 12112.98,
+ "text": "be"
+ },
+ {
+ "id": 26243,
+ "start": 12112.98,
+ "end": 12113.04,
+ "text": "a"
+ },
+ {
+ "id": 26244,
+ "start": 12113.04,
+ "end": 12113.26,
+ "text": "law"
+ },
+ {
+ "id": 26245,
+ "start": 12113.26,
+ "end": 12113.48,
+ "text": "put"
+ },
+ {
+ "id": 26246,
+ "start": 12113.48,
+ "end": 12113.6,
+ "text": "in"
+ },
+ {
+ "id": 26247,
+ "start": 12113.6,
+ "end": 12113.86,
+ "text": "place,"
+ },
+ {
+ "id": 26248,
+ "start": 12113.86,
+ "end": 12114.04,
+ "text": "are"
+ },
+ {
+ "id": 26249,
+ "start": 12114.04,
+ "end": 12114.22,
+ "text": "you"
+ },
+ {
+ "id": 26250,
+ "start": 12114.22,
+ "end": 12114.4,
+ "text": "going"
+ },
+ {
+ "id": 26251,
+ "start": 12114.4,
+ "end": 12114.46,
+ "text": "to"
+ },
+ {
+ "id": 26252,
+ "start": 12114.46,
+ "end": 12114.62,
+ "text": "come"
+ },
+ {
+ "id": 26253,
+ "start": 12114.62,
+ "end": 12114.84,
+ "text": "back"
+ },
+ {
+ "id": 26254,
+ "start": 12114.84,
+ "end": 12115.02,
+ "text": "and"
+ },
+ {
+ "id": 26255,
+ "start": 12115.02,
+ "end": 12115.46,
+ "text": "be"
+ },
+ {
+ "id": 26256,
+ "start": 12115.46,
+ "end": 12115.58,
+ "text": "an"
+ },
+ {
+ "id": 26257,
+ "start": 12115.58,
+ "end": 12116.08,
+ "text": "advocate"
+ },
+ {
+ "id": 26258,
+ "start": 12116.08,
+ "end": 12116.22,
+ "text": "to"
+ },
+ {
+ "id": 26259,
+ "start": 12116.22,
+ "end": 12116.38,
+ "text": "get"
+ },
+ {
+ "id": 26260,
+ "start": 12116.38,
+ "end": 12116.46,
+ "text": "a"
+ },
+ {
+ "id": 26261,
+ "start": 12116.46,
+ "end": 12116.64,
+ "text": "law"
+ },
+ {
+ "id": 26262,
+ "start": 12116.64,
+ "end": 12116.76,
+ "text": "in"
+ },
+ {
+ "id": 26263,
+ "start": 12116.76,
+ "end": 12117,
+ "text": "place"
+ },
+ {
+ "id": 26264,
+ "start": 12117,
+ "end": 12117.32,
+ "text": "like"
+ },
+ {
+ "id": 26265,
+ "start": 12117.32,
+ "end": 12118.16,
+ "text": "Senator?"
+ },
+ {
+ "id": 26266,
+ "start": 12118.16,
+ "end": 12118.34,
+ "text": "Our"
+ },
+ {
+ "id": 26267,
+ "start": 12118.34,
+ "end": 12118.52,
+ "text": "team"
+ },
+ {
+ "id": 26268,
+ "start": 12118.52,
+ "end": 12118.68,
+ "text": "is"
+ },
+ {
+ "id": 26269,
+ "start": 12118.68,
+ "end": 12119.02,
+ "text": "certainly"
+ },
+ {
+ "id": 26270,
+ "start": 12119.02,
+ "end": 12119.18,
+ "text": "going"
+ },
+ {
+ "id": 26271,
+ "start": 12119.18,
+ "end": 12119.24,
+ "text": "to"
+ },
+ {
+ "id": 26272,
+ "start": 12119.24,
+ "end": 12119.38,
+ "text": "work"
+ },
+ {
+ "id": 26273,
+ "start": 12119.38,
+ "end": 12119.48,
+ "text": "on"
+ },
+ {
+ "id": 26274,
+ "start": 12119.48,
+ "end": 12119.68,
+ "text": "this"
+ },
+ {
+ "id": 26275,
+ "start": 12119.68,
+ "end": 12120.08,
+ "text": "what"
+ },
+ {
+ "id": 26276,
+ "start": 12120.08,
+ "end": 12120.14,
+ "text": "I"
+ },
+ {
+ "id": 26277,
+ "start": 12120.14,
+ "end": 12120.32,
+ "text": "can"
+ },
+ {
+ "id": 26278,
+ "start": 12120.32,
+ "end": 12120.52,
+ "text": "say"
+ },
+ {
+ "id": 26279,
+ "start": 12120.52,
+ "end": 12120.68,
+ "text": "is"
+ },
+ {
+ "id": 26280,
+ "start": 12120.68,
+ "end": 12121.32,
+ "text": "the"
+ },
+ {
+ "id": 26281,
+ "start": 12121.32,
+ "end": 12121.58,
+ "text": "biggest"
+ },
+ {
+ "id": 26282,
+ "start": 12121.58,
+ "end": 12121.9,
+ "text": "arguing"
+ },
+ {
+ "id": 26283,
+ "start": 12121.9,
+ "end": 12122.14,
+ "text": "about"
+ },
+ {
+ "id": 26284,
+ "start": 12122.14,
+ "end": 12122.36,
+ "text": "you."
+ },
+ {
+ "id": 26285,
+ "start": 12122.36,
+ "end": 12122.62,
+ "text": "Not"
+ },
+ {
+ "id": 26286,
+ "start": 12122.62,
+ "end": 12122.78,
+ "text": "your"
+ },
+ {
+ "id": 26287,
+ "start": 12122.78,
+ "end": 12123.4,
+ "text": "team"
+ },
+ {
+ "id": 26288,
+ "start": 12123.4,
+ "end": 12124.88,
+ "text": "sent"
+ },
+ {
+ "id": 26289,
+ "start": 12124.88,
+ "end": 12125.04,
+ "text": "back"
+ },
+ {
+ "id": 26290,
+ "start": 12125.04,
+ "end": 12125.14,
+ "text": "in"
+ },
+ {
+ "id": 26291,
+ "start": 12125.14,
+ "end": 12125.28,
+ "text": "here"
+ },
+ {
+ "id": 26292,
+ "start": 12125.28,
+ "end": 12125.4,
+ "text": "and"
+ },
+ {
+ "id": 26293,
+ "start": 12125.4,
+ "end": 12125.54,
+ "text": "be"
+ },
+ {
+ "id": 26294,
+ "start": 12125.54,
+ "end": 12125.7,
+ "text": "an"
+ },
+ {
+ "id": 26295,
+ "start": 12125.7,
+ "end": 12126.18,
+ "text": "advocate"
+ },
+ {
+ "id": 26296,
+ "start": 12126.18,
+ "end": 12126.32,
+ "text": "for"
+ },
+ {
+ "id": 26297,
+ "start": 12126.32,
+ "end": 12126.54,
+ "text": "that"
+ },
+ {
+ "id": 26298,
+ "start": 12126.54,
+ "end": 12126.88,
+ "text": "law"
+ },
+ {
+ "id": 26299,
+ "start": 12126.88,
+ "end": 12127.58,
+ "text": "that's"
+ },
+ {
+ "id": 26300,
+ "start": 12127.58,
+ "end": 12127.76,
+ "text": "what"
+ },
+ {
+ "id": 26301,
+ "start": 12127.76,
+ "end": 12127.9,
+ "text": "I"
+ },
+ {
+ "id": 26302,
+ "start": 12127.9,
+ "end": 12128.12,
+ "text": "want"
+ },
+ {
+ "id": 26303,
+ "start": 12128.12,
+ "end": 12128.22,
+ "text": "to"
+ },
+ {
+ "id": 26304,
+ "start": 12128.22,
+ "end": 12128.5,
+ "text": "see,"
+ },
+ {
+ "id": 26305,
+ "start": 12128.5,
+ "end": 12128.6,
+ "text": "I"
+ },
+ {
+ "id": 26306,
+ "start": 12128.6,
+ "end": 12128.82,
+ "text": "mean"
+ },
+ {
+ "id": 26307,
+ "start": 12128.82,
+ "end": 12129.08,
+ "text": "you're"
+ },
+ {
+ "id": 26308,
+ "start": 12129.08,
+ "end": 12129.9,
+ "text": "upset"
+ },
+ {
+ "id": 26309,
+ "start": 12129.9,
+ "end": 12130.16,
+ "text": "about"
+ },
+ {
+ "id": 26310,
+ "start": 12130.16,
+ "end": 12130.44,
+ "text": "this"
+ },
+ {
+ "id": 26311,
+ "start": 12130.44,
+ "end": 12130.78,
+ "text": "we're"
+ },
+ {
+ "id": 26312,
+ "start": 12130.78,
+ "end": 12131.18,
+ "text": "upset"
+ },
+ {
+ "id": 26313,
+ "start": 12131.18,
+ "end": 12131.44,
+ "text": "about"
+ },
+ {
+ "id": 26314,
+ "start": 12131.44,
+ "end": 12132.52,
+ "text": "this"
+ },
+ {
+ "id": 26315,
+ "start": 12132.52,
+ "end": 12133.5,
+ "text": "I'd"
+ },
+ {
+ "id": 26316,
+ "start": 12133.5,
+ "end": 12133.7,
+ "text": "like"
+ },
+ {
+ "id": 26317,
+ "start": 12133.7,
+ "end": 12133.82,
+ "text": "a"
+ },
+ {
+ "id": 26318,
+ "start": 12133.82,
+ "end": 12134.04,
+ "text": "yes"
+ },
+ {
+ "id": 26319,
+ "start": 12134.04,
+ "end": 12134.16,
+ "text": "or"
+ },
+ {
+ "id": 26320,
+ "start": 12134.16,
+ "end": 12134.26,
+ "text": "no"
+ },
+ {
+ "id": 26321,
+ "start": 12134.26,
+ "end": 12134.72,
+ "text": "answer"
+ },
+ {
+ "id": 26322,
+ "start": 12134.72,
+ "end": 12134.9,
+ "text": "on"
+ },
+ {
+ "id": 26323,
+ "start": 12134.9,
+ "end": 12135.1,
+ "text": "that"
+ },
+ {
+ "id": 26324,
+ "start": 12135.1,
+ "end": 12135.54,
+ "text": "one."
+ },
+ {
+ "id": 26325,
+ "start": 12135.54,
+ "end": 12136.54,
+ "text": "Senator"
+ },
+ {
+ "id": 26326,
+ "start": 12136.54,
+ "end": 12136.98,
+ "text": "I'm"
+ },
+ {
+ "id": 26327,
+ "start": 12136.98,
+ "end": 12137.44,
+ "text": "posting"
+ },
+ {
+ "id": 26328,
+ "start": 12137.44,
+ "end": 12137.6,
+ "text": "and"
+ },
+ {
+ "id": 26329,
+ "start": 12137.6,
+ "end": 12137.94,
+ "text": "speaking"
+ },
+ {
+ "id": 26330,
+ "start": 12137.94,
+ "end": 12138.1,
+ "text": "out"
+ },
+ {
+ "id": 26331,
+ "start": 12138.1,
+ "end": 12138.56,
+ "text": "publicly"
+ },
+ {
+ "id": 26332,
+ "start": 12138.56,
+ "end": 12138.78,
+ "text": "about"
+ },
+ {
+ "id": 26333,
+ "start": 12138.78,
+ "end": 12138.92,
+ "text": "how"
+ },
+ {
+ "id": 26334,
+ "start": 12138.92,
+ "end": 12139.3,
+ "text": "important"
+ },
+ {
+ "id": 26335,
+ "start": 12139.3,
+ "end": 12139.48,
+ "text": "this"
+ },
+ {
+ "id": 26336,
+ "start": 12139.48,
+ "end": 12139.76,
+ "text": "is."
+ },
+ {
+ "id": 26337,
+ "start": 12139.76,
+ "end": 12140.72,
+ "text": "I"
+ },
+ {
+ "id": 26338,
+ "start": 12140.72,
+ "end": 12140.94,
+ "text": "don't"
+ },
+ {
+ "id": 26339,
+ "start": 12140.94,
+ "end": 12141.12,
+ "text": "come"
+ },
+ {
+ "id": 26340,
+ "start": 12141.12,
+ "end": 12141.24,
+ "text": "to"
+ },
+ {
+ "id": 26341,
+ "start": 12141.24,
+ "end": 12141.68,
+ "text": "Washington"
+ },
+ {
+ "id": 26342,
+ "start": 12141.68,
+ "end": 12141.8,
+ "text": "D"
+ },
+ {
+ "id": 26343,
+ "start": 12141.8,
+ "end": 12142.06,
+ "text": "C"
+ },
+ {
+ "id": 26344,
+ "start": 12142.06,
+ "end": 12142.28,
+ "text": "too"
+ },
+ {
+ "id": 26345,
+ "start": 12142.28,
+ "end": 12143.44,
+ "text": "often"
+ },
+ {
+ "id": 26346,
+ "start": 12143.44,
+ "end": 12144.36,
+ "text": "I'm"
+ },
+ {
+ "id": 26347,
+ "start": 12144.36,
+ "end": 12144.54,
+ "text": "going"
+ },
+ {
+ "id": 26348,
+ "start": 12144.54,
+ "end": 12144.62,
+ "text": "to"
+ },
+ {
+ "id": 26349,
+ "start": 12144.62,
+ "end": 12144.96,
+ "text": "direct"
+ },
+ {
+ "id": 26350,
+ "start": 12144.96,
+ "end": 12145.12,
+ "text": "my"
+ },
+ {
+ "id": 26351,
+ "start": 12145.12,
+ "end": 12145.36,
+ "text": "team"
+ },
+ {
+ "id": 26352,
+ "start": 12145.36,
+ "end": 12145.52,
+ "text": "to"
+ },
+ {
+ "id": 26353,
+ "start": 12145.52,
+ "end": 12145.84,
+ "text": "focus"
+ },
+ {
+ "id": 26354,
+ "start": 12145.84,
+ "end": 12146.04,
+ "text": "on"
+ },
+ {
+ "id": 26355,
+ "start": 12146.04,
+ "end": 12146.24,
+ "text": "this."
+ },
+ {
+ "id": 26356,
+ "start": 12146.24,
+ "end": 12146.82,
+ "text": "And"
+ },
+ {
+ "id": 26357,
+ "start": 12146.82,
+ "end": 12146.94,
+ "text": "the"
+ },
+ {
+ "id": 26358,
+ "start": 12146.94,
+ "end": 12147.2,
+ "text": "biggest"
+ },
+ {
+ "id": 26359,
+ "start": 12147.2,
+ "end": 12147.38,
+ "text": "thing"
+ },
+ {
+ "id": 26360,
+ "start": 12147.38,
+ "end": 12147.52,
+ "text": "that"
+ },
+ {
+ "id": 26361,
+ "start": 12147.52,
+ "end": 12147.58,
+ "text": "I"
+ },
+ {
+ "id": 26362,
+ "start": 12147.58,
+ "end": 12147.8,
+ "text": "feel"
+ },
+ {
+ "id": 26363,
+ "start": 12147.8,
+ "end": 12147.96,
+ "text": "like"
+ },
+ {
+ "id": 26364,
+ "start": 12147.96,
+ "end": 12148.1,
+ "text": "we"
+ },
+ {
+ "id": 26365,
+ "start": 12148.1,
+ "end": 12148.22,
+ "text": "can"
+ },
+ {
+ "id": 26366,
+ "start": 12148.22,
+ "end": 12148.36,
+ "text": "do"
+ },
+ {
+ "id": 26367,
+ "start": 12148.36,
+ "end": 12149,
+ "text": "is"
+ },
+ {
+ "id": 26368,
+ "start": 12149,
+ "end": 12149.4,
+ "text": "implement"
+ },
+ {
+ "id": 26369,
+ "start": 12149.4,
+ "end": 12149.56,
+ "text": "it,"
+ },
+ {
+ "id": 26370,
+ "start": 12149.56,
+ "end": 12149.88,
+ "text": "which"
+ },
+ {
+ "id": 26371,
+ "start": 12149.88,
+ "end": 12150.16,
+ "text": "we're"
+ },
+ {
+ "id": 26372,
+ "start": 12150.16,
+ "end": 12150.38,
+ "text": "doing"
+ },
+ {
+ "id": 26373,
+ "start": 12150.38,
+ "end": 12150.82,
+ "text": "well."
+ },
+ {
+ "id": 26374,
+ "start": 12150.82,
+ "end": 12151.28,
+ "text": "The"
+ },
+ {
+ "id": 26375,
+ "start": 12151.28,
+ "end": 12151.68,
+ "text": "biggest"
+ },
+ {
+ "id": 26376,
+ "start": 12151.68,
+ "end": 12151.92,
+ "text": "thing"
+ },
+ {
+ "id": 26377,
+ "start": 12151.92,
+ "end": 12152.12,
+ "text": "you"
+ },
+ {
+ "id": 26378,
+ "start": 12152.12,
+ "end": 12152.28,
+ "text": "can"
+ },
+ {
+ "id": 26379,
+ "start": 12152.28,
+ "end": 12152.46,
+ "text": "do"
+ },
+ {
+ "id": 26380,
+ "start": 12152.46,
+ "end": 12152.72,
+ "text": "is"
+ },
+ {
+ "id": 26381,
+ "start": 12152.72,
+ "end": 12152.9,
+ "text": "to"
+ },
+ {
+ "id": 26382,
+ "start": 12152.9,
+ "end": 12153.06,
+ "text": "be"
+ },
+ {
+ "id": 26383,
+ "start": 12153.06,
+ "end": 12153.14,
+ "text": "a"
+ },
+ {
+ "id": 26384,
+ "start": 12153.14,
+ "end": 12153.54,
+ "text": "strong"
+ },
+ {
+ "id": 26385,
+ "start": 12153.54,
+ "end": 12154.1,
+ "text": "advocate"
+ },
+ {
+ "id": 26386,
+ "start": 12154.1,
+ "end": 12154.84,
+ "text": "yourself"
+ },
+ {
+ "id": 26387,
+ "start": 12154.84,
+ "end": 12155.66,
+ "text": "personally"
+ },
+ {
+ "id": 26388,
+ "start": 12155.66,
+ "end": 12156.5,
+ "text": "here"
+ },
+ {
+ "id": 26389,
+ "start": 12156.5,
+ "end": 12156.7,
+ "text": "in"
+ },
+ {
+ "id": 26390,
+ "start": 12156.7,
+ "end": 12157.42,
+ "text": "Washington,"
+ },
+ {
+ "id": 26391,
+ "start": 12157.42,
+ "end": 12157.9,
+ "text": "just"
+ },
+ {
+ "id": 26392,
+ "start": 12157.9,
+ "end": 12158.08,
+ "text": "let"
+ },
+ {
+ "id": 26393,
+ "start": 12158.08,
+ "end": 12158.18,
+ "text": "me"
+ },
+ {
+ "id": 26394,
+ "start": 12158.18,
+ "end": 12158.4,
+ "text": "make"
+ },
+ {
+ "id": 26395,
+ "start": 12158.4,
+ "end": 12158.62,
+ "text": "that"
+ },
+ {
+ "id": 26396,
+ "start": 12158.62,
+ "end": 12158.96,
+ "text": "clear."
+ },
+ {
+ "id": 26397,
+ "start": 12158.96,
+ "end": 12159.52,
+ "text": "But"
+ },
+ {
+ "id": 26398,
+ "start": 12159.52,
+ "end": 12160.16,
+ "text": "many"
+ },
+ {
+ "id": 26399,
+ "start": 12160.16,
+ "end": 12160.26,
+ "text": "of"
+ },
+ {
+ "id": 26400,
+ "start": 12160.26,
+ "end": 12160.4,
+ "text": "us"
+ },
+ {
+ "id": 26401,
+ "start": 12160.4,
+ "end": 12160.65,
+ "text": "have"
+ },
+ {
+ "id": 26402,
+ "start": 12160.65,
+ "end": 12160.97,
+ "text": "see"
+ },
+ {
+ "id": 26403,
+ "start": 12160.97,
+ "end": 12161.11,
+ "text": "the"
+ },
+ {
+ "id": 26404,
+ "start": 12161.11,
+ "end": 12161.47,
+ "text": "kinds"
+ },
+ {
+ "id": 26405,
+ "start": 12161.47,
+ "end": 12161.61,
+ "text": "of"
+ },
+ {
+ "id": 26406,
+ "start": 12161.61,
+ "end": 12162.07,
+ "text": "images"
+ },
+ {
+ "id": 26407,
+ "start": 12162.07,
+ "end": 12162.49,
+ "text": "shown"
+ },
+ {
+ "id": 26408,
+ "start": 12162.49,
+ "end": 12162.85,
+ "text": "earlier"
+ },
+ {
+ "id": 26409,
+ "start": 12162.85,
+ "end": 12163.17,
+ "text": "by"
+ },
+ {
+ "id": 26410,
+ "start": 12163.17,
+ "end": 12163.53,
+ "text": "Senator."
+ },
+ {
+ "id": 26411,
+ "start": 12163.53,
+ "end": 12164.01,
+ "text": "Lady."
+ },
+ {
+ "id": 26412,
+ "start": 12164.01,
+ "end": 12164.21,
+ "text": "You"
+ },
+ {
+ "id": 26413,
+ "start": 12164.21,
+ "end": 12164.45,
+ "text": "saw"
+ },
+ {
+ "id": 26414,
+ "start": 12164.45,
+ "end": 12164.69,
+ "text": "those"
+ },
+ {
+ "id": 26415,
+ "start": 12164.69,
+ "end": 12165.21,
+ "text": "images"
+ },
+ {
+ "id": 26416,
+ "start": 12165.21,
+ "end": 12165.45,
+ "text": "that"
+ },
+ {
+ "id": 26417,
+ "start": 12165.45,
+ "end": 12166.03,
+ "text": "he"
+ },
+ {
+ "id": 26418,
+ "start": 12166.03,
+ "end": 12166.33,
+ "text": "held"
+ },
+ {
+ "id": 26419,
+ "start": 12166.33,
+ "end": 12166.57,
+ "text": "up,"
+ },
+ {
+ "id": 26420,
+ "start": 12166.57,
+ "end": 12166.81,
+ "text": "can"
+ },
+ {
+ "id": 26421,
+ "start": 12166.81,
+ "end": 12166.97,
+ "text": "you"
+ },
+ {
+ "id": 26422,
+ "start": 12166.97,
+ "end": 12167.65,
+ "text": "guarantee"
+ },
+ {
+ "id": 26423,
+ "start": 12167.65,
+ "end": 12167.85,
+ "text": "that"
+ },
+ {
+ "id": 26424,
+ "start": 12167.85,
+ "end": 12168.15,
+ "text": "any"
+ },
+ {
+ "id": 26425,
+ "start": 12168.15,
+ "end": 12168.27,
+ "text": "of"
+ },
+ {
+ "id": 26426,
+ "start": 12168.27,
+ "end": 12168.51,
+ "text": "those"
+ },
+ {
+ "id": 26427,
+ "start": 12168.51,
+ "end": 12169.07,
+ "text": "images"
+ },
+ {
+ "id": 26428,
+ "start": 12169.07,
+ "end": 12169.67,
+ "text": "that"
+ },
+ {
+ "id": 26429,
+ "start": 12169.67,
+ "end": 12169.85,
+ "text": "can"
+ },
+ {
+ "id": 26430,
+ "start": 12169.85,
+ "end": 12169.99,
+ "text": "be"
+ },
+ {
+ "id": 26431,
+ "start": 12169.99,
+ "end": 12170.59,
+ "text": "attributed"
+ },
+ {
+ "id": 26432,
+ "start": 12170.59,
+ "end": 12170.75,
+ "text": "or"
+ },
+ {
+ "id": 26433,
+ "start": 12170.75,
+ "end": 12171.47,
+ "text": "associated"
+ },
+ {
+ "id": 26434,
+ "start": 12171.47,
+ "end": 12171.63,
+ "text": "with"
+ },
+ {
+ "id": 26435,
+ "start": 12171.63,
+ "end": 12171.75,
+ "text": "the"
+ },
+ {
+ "id": 26436,
+ "start": 12171.75,
+ "end": 12172.19,
+ "text": "Russian"
+ },
+ {
+ "id": 26437,
+ "start": 12172.19,
+ "end": 12172.71,
+ "text": "company?"
+ },
+ {
+ "id": 26438,
+ "start": 12172.71,
+ "end": 12173.83,
+ "text": "Internet"
+ },
+ {
+ "id": 26439,
+ "start": 12173.83,
+ "end": 12174.37,
+ "text": "Research"
+ },
+ {
+ "id": 26440,
+ "start": 12174.37,
+ "end": 12174.89,
+ "text": "agency"
+ },
+ {
+ "id": 26441,
+ "start": 12174.89,
+ "end": 12175.07,
+ "text": "have"
+ },
+ {
+ "id": 26442,
+ "start": 12175.07,
+ "end": 12175.27,
+ "text": "been"
+ },
+ {
+ "id": 26443,
+ "start": 12175.27,
+ "end": 12175.75,
+ "text": "purged"
+ },
+ {
+ "id": 26444,
+ "start": 12175.75,
+ "end": 12175.99,
+ "text": "from"
+ },
+ {
+ "id": 26445,
+ "start": 12175.99,
+ "end": 12176.21,
+ "text": "your"
+ },
+ {
+ "id": 26446,
+ "start": 12176.21,
+ "end": 12178.28,
+ "text": "platform."
+ },
+ {
+ "id": 26447,
+ "start": 12178.28,
+ "end": 12179.24,
+ "text": "Senator"
+ },
+ {
+ "id": 26448,
+ "start": 12179.24,
+ "end": 12179.4,
+ "text": "no,"
+ },
+ {
+ "id": 26449,
+ "start": 12179.4,
+ "end": 12179.6,
+ "text": "I"
+ },
+ {
+ "id": 26450,
+ "start": 12179.6,
+ "end": 12179.84,
+ "text": "can't"
+ },
+ {
+ "id": 26451,
+ "start": 12179.84,
+ "end": 12180.28,
+ "text": "guarantee"
+ },
+ {
+ "id": 26452,
+ "start": 12180.28,
+ "end": 12180.54,
+ "text": "that"
+ },
+ {
+ "id": 26453,
+ "start": 12180.54,
+ "end": 12180.96,
+ "text": "because"
+ },
+ {
+ "id": 26454,
+ "start": 12180.96,
+ "end": 12181.28,
+ "text": "this"
+ },
+ {
+ "id": 26455,
+ "start": 12181.28,
+ "end": 12181.52,
+ "text": "is"
+ },
+ {
+ "id": 26456,
+ "start": 12181.52,
+ "end": 12181.78,
+ "text": "an"
+ },
+ {
+ "id": 26457,
+ "start": 12181.78,
+ "end": 12182.4,
+ "text": "ongoing"
+ },
+ {
+ "id": 26458,
+ "start": 12182.4,
+ "end": 12182.9,
+ "text": "arms"
+ },
+ {
+ "id": 26459,
+ "start": 12182.9,
+ "end": 12183.18,
+ "text": "race."
+ },
+ {
+ "id": 26460,
+ "start": 12183.18,
+ "end": 12184.02,
+ "text": "As"
+ },
+ {
+ "id": 26461,
+ "start": 12184.02,
+ "end": 12184.22,
+ "text": "long"
+ },
+ {
+ "id": 26462,
+ "start": 12184.22,
+ "end": 12184.34,
+ "text": "as"
+ },
+ {
+ "id": 26463,
+ "start": 12184.34,
+ "end": 12184.52,
+ "text": "there"
+ },
+ {
+ "id": 26464,
+ "start": 12184.52,
+ "end": 12184.64,
+ "text": "are"
+ },
+ {
+ "id": 26465,
+ "start": 12184.64,
+ "end": 12184.92,
+ "text": "people"
+ },
+ {
+ "id": 26466,
+ "start": 12184.92,
+ "end": 12185.34,
+ "text": "sitting"
+ },
+ {
+ "id": 26467,
+ "start": 12185.34,
+ "end": 12185.46,
+ "text": "in"
+ },
+ {
+ "id": 26468,
+ "start": 12185.46,
+ "end": 12185.88,
+ "text": "Russia,"
+ },
+ {
+ "id": 26469,
+ "start": 12185.88,
+ "end": 12186.56,
+ "text": "whose"
+ },
+ {
+ "id": 26470,
+ "start": 12186.56,
+ "end": 12186.9,
+ "text": "job"
+ },
+ {
+ "id": 26471,
+ "start": 12186.9,
+ "end": 12187,
+ "text": "it"
+ },
+ {
+ "id": 26472,
+ "start": 12187,
+ "end": 12187.16,
+ "text": "is"
+ },
+ {
+ "id": 26473,
+ "start": 12187.16,
+ "end": 12187.36,
+ "text": "is"
+ },
+ {
+ "id": 26474,
+ "start": 12187.36,
+ "end": 12187.48,
+ "text": "to"
+ },
+ {
+ "id": 26475,
+ "start": 12187.48,
+ "end": 12187.7,
+ "text": "try"
+ },
+ {
+ "id": 26476,
+ "start": 12187.7,
+ "end": 12187.78,
+ "text": "to"
+ },
+ {
+ "id": 26477,
+ "start": 12187.78,
+ "end": 12188.34,
+ "text": "interfere"
+ },
+ {
+ "id": 26478,
+ "start": 12188.34,
+ "end": 12188.54,
+ "text": "with"
+ },
+ {
+ "id": 26479,
+ "start": 12188.54,
+ "end": 12188.98,
+ "text": "elections"
+ },
+ {
+ "id": 26480,
+ "start": 12188.98,
+ "end": 12189.26,
+ "text": "around"
+ },
+ {
+ "id": 26481,
+ "start": 12189.26,
+ "end": 12189.36,
+ "text": "the"
+ },
+ {
+ "id": 26482,
+ "start": 12189.36,
+ "end": 12190.14,
+ "text": "world."
+ },
+ {
+ "id": 26483,
+ "start": 12190.14,
+ "end": 12190.74,
+ "text": "This"
+ },
+ {
+ "id": 26484,
+ "start": 12190.74,
+ "end": 12190.88,
+ "text": "is"
+ },
+ {
+ "id": 26485,
+ "start": 12190.88,
+ "end": 12191.12,
+ "text": "going"
+ },
+ {
+ "id": 26486,
+ "start": 12191.12,
+ "end": 12191.22,
+ "text": "to"
+ },
+ {
+ "id": 26487,
+ "start": 12191.22,
+ "end": 12191.34,
+ "text": "be"
+ },
+ {
+ "id": 26488,
+ "start": 12191.34,
+ "end": 12191.42,
+ "text": "an"
+ },
+ {
+ "id": 26489,
+ "start": 12191.42,
+ "end": 12191.84,
+ "text": "ongoing"
+ },
+ {
+ "id": 26490,
+ "start": 12191.84,
+ "end": 12192.3,
+ "text": "conflict."
+ },
+ {
+ "id": 26491,
+ "start": 12192.3,
+ "end": 12192.78,
+ "text": "What"
+ },
+ {
+ "id": 26492,
+ "start": 12192.78,
+ "end": 12192.88,
+ "text": "I"
+ },
+ {
+ "id": 26493,
+ "start": 12192.88,
+ "end": 12193.08,
+ "text": "can"
+ },
+ {
+ "id": 26494,
+ "start": 12193.08,
+ "end": 12193.38,
+ "text": "commit"
+ },
+ {
+ "id": 26495,
+ "start": 12193.38,
+ "end": 12193.6,
+ "text": "is"
+ },
+ {
+ "id": 26496,
+ "start": 12193.6,
+ "end": 12193.86,
+ "text": "that"
+ },
+ {
+ "id": 26497,
+ "start": 12193.86,
+ "end": 12194.4,
+ "text": "we're"
+ },
+ {
+ "id": 26498,
+ "start": 12194.4,
+ "end": 12194.62,
+ "text": "going"
+ },
+ {
+ "id": 26499,
+ "start": 12194.62,
+ "end": 12194.74,
+ "text": "to"
+ },
+ {
+ "id": 26500,
+ "start": 12194.74,
+ "end": 12195.1,
+ "text": "invest"
+ },
+ {
+ "id": 26501,
+ "start": 12195.1,
+ "end": 12195.78,
+ "text": "significantly."
+ },
+ {
+ "id": 26502,
+ "start": 12195.78,
+ "end": 12196.12,
+ "text": "Because"
+ },
+ {
+ "id": 26503,
+ "start": 12196.12,
+ "end": 12196.3,
+ "text": "this"
+ },
+ {
+ "id": 26504,
+ "start": 12196.3,
+ "end": 12196.42,
+ "text": "is"
+ },
+ {
+ "id": 26505,
+ "start": 12196.42,
+ "end": 12196.48,
+ "text": "a"
+ },
+ {
+ "id": 26506,
+ "start": 12196.48,
+ "end": 12196.72,
+ "text": "top"
+ },
+ {
+ "id": 26507,
+ "start": 12196.72,
+ "end": 12197.18,
+ "text": "priority"
+ },
+ {
+ "id": 26508,
+ "start": 12197.18,
+ "end": 12197.32,
+ "text": "to"
+ },
+ {
+ "id": 26509,
+ "start": 12197.32,
+ "end": 12197.48,
+ "text": "make"
+ },
+ {
+ "id": 26510,
+ "start": 12197.48,
+ "end": 12197.62,
+ "text": "sure"
+ },
+ {
+ "id": 26511,
+ "start": 12197.62,
+ "end": 12197.76,
+ "text": "that"
+ },
+ {
+ "id": 26512,
+ "start": 12197.76,
+ "end": 12197.96,
+ "text": "people"
+ },
+ {
+ "id": 26513,
+ "start": 12197.96,
+ "end": 12198.2,
+ "text": "aren't"
+ },
+ {
+ "id": 26514,
+ "start": 12198.2,
+ "end": 12198.54,
+ "text": "spreading"
+ },
+ {
+ "id": 26515,
+ "start": 12198.54,
+ "end": 12199.28,
+ "text": "misinformation"
+ },
+ {
+ "id": 26516,
+ "start": 12199.28,
+ "end": 12199.94,
+ "text": "or"
+ },
+ {
+ "id": 26517,
+ "start": 12199.94,
+ "end": 12200.18,
+ "text": "trying"
+ },
+ {
+ "id": 26518,
+ "start": 12200.18,
+ "end": 12200.24,
+ "text": "to"
+ },
+ {
+ "id": 26519,
+ "start": 12200.24,
+ "end": 12200.66,
+ "text": "interfere"
+ },
+ {
+ "id": 26520,
+ "start": 12200.66,
+ "end": 12200.74,
+ "text": "in"
+ },
+ {
+ "id": 26521,
+ "start": 12200.74,
+ "end": 12201.22,
+ "text": "elections"
+ },
+ {
+ "id": 26522,
+ "start": 12201.22,
+ "end": 12201.48,
+ "text": "on"
+ },
+ {
+ "id": 26523,
+ "start": 12201.48,
+ "end": 12202.43,
+ "text": "Facebook."
+ },
+ {
+ "id": 26524,
+ "start": 12202.43,
+ "end": 12202.47,
+ "text": "I"
+ },
+ {
+ "id": 26525,
+ "start": 12202.47,
+ "end": 12202.77,
+ "text": "don't"
+ },
+ {
+ "id": 26526,
+ "start": 12202.77,
+ "end": 12202.97,
+ "text": "think"
+ },
+ {
+ "id": 26527,
+ "start": 12202.97,
+ "end": 12203.07,
+ "text": "it"
+ },
+ {
+ "id": 26528,
+ "start": 12203.07,
+ "end": 12203.25,
+ "text": "would"
+ },
+ {
+ "id": 26529,
+ "start": 12203.25,
+ "end": 12203.33,
+ "text": "be"
+ },
+ {
+ "id": 26530,
+ "start": 12203.33,
+ "end": 12203.39,
+ "text": "a"
+ },
+ {
+ "id": 26531,
+ "start": 12203.39,
+ "end": 12203.85,
+ "text": "realistic"
+ },
+ {
+ "id": 26532,
+ "start": 12203.85,
+ "end": 12204.55,
+ "text": "expectation"
+ },
+ {
+ "id": 26533,
+ "start": 12204.55,
+ "end": 12205.03,
+ "text": "to"
+ },
+ {
+ "id": 26534,
+ "start": 12205.03,
+ "end": 12205.41,
+ "text": "assume"
+ },
+ {
+ "id": 26535,
+ "start": 12205.41,
+ "end": 12205.57,
+ "text": "that"
+ },
+ {
+ "id": 26536,
+ "start": 12205.57,
+ "end": 12205.73,
+ "text": "as"
+ },
+ {
+ "id": 26537,
+ "start": 12205.73,
+ "end": 12205.95,
+ "text": "long"
+ },
+ {
+ "id": 26538,
+ "start": 12205.95,
+ "end": 12206.11,
+ "text": "as"
+ },
+ {
+ "id": 26539,
+ "start": 12206.11,
+ "end": 12206.29,
+ "text": "there"
+ },
+ {
+ "id": 26540,
+ "start": 12206.29,
+ "end": 12206.39,
+ "text": "are"
+ },
+ {
+ "id": 26541,
+ "start": 12206.39,
+ "end": 12206.65,
+ "text": "people"
+ },
+ {
+ "id": 26542,
+ "start": 12206.65,
+ "end": 12206.81,
+ "text": "who"
+ },
+ {
+ "id": 26543,
+ "start": 12206.81,
+ "end": 12206.95,
+ "text": "are"
+ },
+ {
+ "id": 26544,
+ "start": 12206.95,
+ "end": 12207.25,
+ "text": "employed"
+ },
+ {
+ "id": 26545,
+ "start": 12207.25,
+ "end": 12207.35,
+ "text": "in"
+ },
+ {
+ "id": 26546,
+ "start": 12207.35,
+ "end": 12207.67,
+ "text": "Russia"
+ },
+ {
+ "id": 26547,
+ "start": 12207.67,
+ "end": 12207.81,
+ "text": "for"
+ },
+ {
+ "id": 26548,
+ "start": 12207.81,
+ "end": 12207.99,
+ "text": "whom,"
+ },
+ {
+ "id": 26549,
+ "start": 12207.99,
+ "end": 12208.13,
+ "text": "this"
+ },
+ {
+ "id": 26550,
+ "start": 12208.13,
+ "end": 12208.27,
+ "text": "is"
+ },
+ {
+ "id": 26551,
+ "start": 12208.27,
+ "end": 12208.47,
+ "text": "their"
+ },
+ {
+ "id": 26552,
+ "start": 12208.47,
+ "end": 12208.81,
+ "text": "job."
+ },
+ {
+ "id": 26553,
+ "start": 12208.81,
+ "end": 12209.45,
+ "text": "That"
+ },
+ {
+ "id": 26554,
+ "start": 12209.45,
+ "end": 12209.69,
+ "text": "we're"
+ },
+ {
+ "id": 26555,
+ "start": 12209.69,
+ "end": 12209.89,
+ "text": "going"
+ },
+ {
+ "id": 26556,
+ "start": 12209.89,
+ "end": 12209.99,
+ "text": "to"
+ },
+ {
+ "id": 26557,
+ "start": 12209.99,
+ "end": 12210.15,
+ "text": "have"
+ },
+ {
+ "id": 26558,
+ "start": 12210.15,
+ "end": 12210.53,
+ "text": "zero"
+ },
+ {
+ "id": 26559,
+ "start": 12210.53,
+ "end": 12210.85,
+ "text": "amount"
+ },
+ {
+ "id": 26560,
+ "start": 12210.85,
+ "end": 12210.97,
+ "text": "of"
+ },
+ {
+ "id": 26561,
+ "start": 12210.97,
+ "end": 12211.15,
+ "text": "that."
+ },
+ {
+ "id": 26562,
+ "start": 12211.15,
+ "end": 12211.31,
+ "text": "Or"
+ },
+ {
+ "id": 26563,
+ "start": 12211.31,
+ "end": 12211.45,
+ "text": "that"
+ },
+ {
+ "id": 26564,
+ "start": 12211.45,
+ "end": 12211.63,
+ "text": "we're"
+ },
+ {
+ "id": 26565,
+ "start": 12211.63,
+ "end": 12211.81,
+ "text": "going"
+ },
+ {
+ "id": 26566,
+ "start": 12211.81,
+ "end": 12211.91,
+ "text": "to"
+ },
+ {
+ "id": 26567,
+ "start": 12211.91,
+ "end": 12212.63,
+ "text": "be"
+ },
+ {
+ "id": 26568,
+ "start": 12212.63,
+ "end": 12213.61,
+ "text": "successful"
+ },
+ {
+ "id": 26569,
+ "start": 12213.61,
+ "end": 12213.83,
+ "text": "at"
+ },
+ {
+ "id": 26570,
+ "start": 12213.83,
+ "end": 12214.23,
+ "text": "preventing"
+ },
+ {
+ "id": 26571,
+ "start": 12214.23,
+ "end": 12214.72,
+ "text": "that"
+ },
+ {
+ "id": 26572,
+ "start": 12214.72,
+ "end": 12215.28,
+ "text": "now"
+ },
+ {
+ "id": 26573,
+ "start": 12215.28,
+ "end": 12215.98,
+ "text": "beyond"
+ },
+ {
+ "id": 26574,
+ "start": 12215.98,
+ "end": 12216.78,
+ "text": "disclosure"
+ },
+ {
+ "id": 26575,
+ "start": 12216.78,
+ "end": 12216.92,
+ "text": "of"
+ },
+ {
+ "id": 26576,
+ "start": 12216.92,
+ "end": 12217.68,
+ "text": "online"
+ },
+ {
+ "id": 26577,
+ "start": 12217.68,
+ "end": 12218.14,
+ "text": "ads."
+ },
+ {
+ "id": 26578,
+ "start": 12218.14,
+ "end": 12218.92,
+ "text": "What"
+ },
+ {
+ "id": 26579,
+ "start": 12218.92,
+ "end": 12219.68,
+ "text": "specific"
+ },
+ {
+ "id": 26580,
+ "start": 12219.68,
+ "end": 12220.1,
+ "text": "steps"
+ },
+ {
+ "id": 26581,
+ "start": 12220.1,
+ "end": 12220.3,
+ "text": "are"
+ },
+ {
+ "id": 26582,
+ "start": 12220.3,
+ "end": 12220.42,
+ "text": "you"
+ },
+ {
+ "id": 26583,
+ "start": 12220.42,
+ "end": 12220.86,
+ "text": "taking"
+ },
+ {
+ "id": 26584,
+ "start": 12220.86,
+ "end": 12221,
+ "text": "to"
+ },
+ {
+ "id": 26585,
+ "start": 12221,
+ "end": 12221.42,
+ "text": "ensure"
+ },
+ {
+ "id": 26586,
+ "start": 12221.42,
+ "end": 12221.7,
+ "text": "that"
+ },
+ {
+ "id": 26587,
+ "start": 12221.7,
+ "end": 12222.28,
+ "text": "foreign"
+ },
+ {
+ "id": 26588,
+ "start": 12222.28,
+ "end": 12222.9,
+ "text": "money"
+ },
+ {
+ "id": 26589,
+ "start": 12222.9,
+ "end": 12223.32,
+ "text": "is"
+ },
+ {
+ "id": 26590,
+ "start": 12223.32,
+ "end": 12223.62,
+ "text": "not"
+ },
+ {
+ "id": 26591,
+ "start": 12223.62,
+ "end": 12224.4,
+ "text": "financing"
+ },
+ {
+ "id": 26592,
+ "start": 12224.4,
+ "end": 12225.1,
+ "text": "political"
+ },
+ {
+ "id": 26593,
+ "start": 12225.1,
+ "end": 12225.28,
+ "text": "or"
+ },
+ {
+ "id": 26594,
+ "start": 12225.28,
+ "end": 12225.7,
+ "text": "issue"
+ },
+ {
+ "id": 26595,
+ "start": 12225.7,
+ "end": 12226.08,
+ "text": "ads"
+ },
+ {
+ "id": 26596,
+ "start": 12226.08,
+ "end": 12226.7,
+ "text": "on"
+ },
+ {
+ "id": 26597,
+ "start": 12226.7,
+ "end": 12227.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 26598,
+ "start": 12227.34,
+ "end": 12227.54,
+ "text": "and"
+ },
+ {
+ "id": 26599,
+ "start": 12227.54,
+ "end": 12228.36,
+ "text": "violation"
+ },
+ {
+ "id": 26600,
+ "start": 12228.36,
+ "end": 12228.48,
+ "text": "of"
+ },
+ {
+ "id": 26601,
+ "start": 12228.48,
+ "end": 12228.66,
+ "text": "U"
+ },
+ {
+ "id": 26602,
+ "start": 12228.66,
+ "end": 12228.92,
+ "text": "S"
+ },
+ {
+ "id": 26603,
+ "start": 12228.92,
+ "end": 12229.5,
+ "text": "law."
+ },
+ {
+ "id": 26604,
+ "start": 12229.5,
+ "end": 12229.92,
+ "text": "Just"
+ },
+ {
+ "id": 26605,
+ "start": 12229.92,
+ "end": 12230.28,
+ "text": "because"
+ },
+ {
+ "id": 26606,
+ "start": 12230.28,
+ "end": 12230.72,
+ "text": "someone"
+ },
+ {
+ "id": 26607,
+ "start": 12230.72,
+ "end": 12231.16,
+ "text": "submits"
+ },
+ {
+ "id": 26608,
+ "start": 12231.16,
+ "end": 12231.32,
+ "text": "it"
+ },
+ {
+ "id": 26609,
+ "start": 12231.32,
+ "end": 12231.66,
+ "text": "a"
+ },
+ {
+ "id": 26610,
+ "start": 12231.66,
+ "end": 12232.48,
+ "text": "disclosure"
+ },
+ {
+ "id": 26611,
+ "start": 12232.48,
+ "end": 12233.06,
+ "text": "that"
+ },
+ {
+ "id": 26612,
+ "start": 12233.06,
+ "end": 12233.44,
+ "text": "says"
+ },
+ {
+ "id": 26613,
+ "start": 12233.44,
+ "end": 12233.84,
+ "text": "paid"
+ },
+ {
+ "id": 26614,
+ "start": 12233.84,
+ "end": 12234.12,
+ "text": "for"
+ },
+ {
+ "id": 26615,
+ "start": 12234.12,
+ "end": 12234.38,
+ "text": "by"
+ },
+ {
+ "id": 26616,
+ "start": 12234.38,
+ "end": 12234.72,
+ "text": "some"
+ },
+ {
+ "id": 26617,
+ "start": 12234.72,
+ "end": 12235.34,
+ "text": "five."
+ },
+ {
+ "id": 26618,
+ "start": 12235.34,
+ "end": 12235.56,
+ "text": "Oh"
+ },
+ {
+ "id": 26619,
+ "start": 12235.56,
+ "end": 12235.8,
+ "text": "1"
+ },
+ {
+ "id": 26620,
+ "start": 12235.8,
+ "end": 12236.02,
+ "text": "C,"
+ },
+ {
+ "id": 26621,
+ "start": 12236.02,
+ "end": 12236.26,
+ "text": "three"
+ },
+ {
+ "id": 26622,
+ "start": 12236.26,
+ "end": 12236.4,
+ "text": "or"
+ },
+ {
+ "id": 26623,
+ "start": 12236.4,
+ "end": 12236.86,
+ "text": "pack,"
+ },
+ {
+ "id": 26624,
+ "start": 12236.86,
+ "end": 12237.42,
+ "text": "if"
+ },
+ {
+ "id": 26625,
+ "start": 12237.42,
+ "end": 12237.7,
+ "text": "that"
+ },
+ {
+ "id": 26626,
+ "start": 12237.7,
+ "end": 12237.98,
+ "text": "group"
+ },
+ {
+ "id": 26627,
+ "start": 12237.98,
+ "end": 12238.22,
+ "text": "has"
+ },
+ {
+ "id": 26628,
+ "start": 12238.22,
+ "end": 12238.62,
+ "text": "no"
+ },
+ {
+ "id": 26629,
+ "start": 12238.62,
+ "end": 12238.94,
+ "text": "real"
+ },
+ {
+ "id": 26630,
+ "start": 12238.94,
+ "end": 12239.38,
+ "text": "person"
+ },
+ {
+ "id": 26631,
+ "start": 12239.38,
+ "end": 12239.52,
+ "text": "in"
+ },
+ {
+ "id": 26632,
+ "start": 12239.52,
+ "end": 12239.66,
+ "text": "the"
+ },
+ {
+ "id": 26633,
+ "start": 12239.66,
+ "end": 12239.84,
+ "text": "U"
+ },
+ {
+ "id": 26634,
+ "start": 12239.84,
+ "end": 12240.18,
+ "text": "S,"
+ },
+ {
+ "id": 26635,
+ "start": 12240.18,
+ "end": 12240.88,
+ "text": "how"
+ },
+ {
+ "id": 26636,
+ "start": 12240.88,
+ "end": 12241.12,
+ "text": "can"
+ },
+ {
+ "id": 26637,
+ "start": 12241.12,
+ "end": 12241.3,
+ "text": "we"
+ },
+ {
+ "id": 26638,
+ "start": 12241.3,
+ "end": 12241.86,
+ "text": "ensure"
+ },
+ {
+ "id": 26639,
+ "start": 12241.86,
+ "end": 12242.02,
+ "text": "it"
+ },
+ {
+ "id": 26640,
+ "start": 12242.02,
+ "end": 12242.22,
+ "text": "is"
+ },
+ {
+ "id": 26641,
+ "start": 12242.22,
+ "end": 12242.56,
+ "text": "not"
+ },
+ {
+ "id": 26642,
+ "start": 12242.56,
+ "end": 12243.42,
+ "text": "foreign"
+ },
+ {
+ "id": 26643,
+ "start": 12243.42,
+ "end": 12244.4,
+ "text": "foreign"
+ },
+ {
+ "id": 26644,
+ "start": 12244.4,
+ "end": 12246.04,
+ "text": "interference?"
+ },
+ {
+ "id": 26645,
+ "start": 12246.04,
+ "end": 12247.04,
+ "text": "Senator,"
+ },
+ {
+ "id": 26646,
+ "start": 12247.04,
+ "end": 12247.28,
+ "text": "our"
+ },
+ {
+ "id": 26647,
+ "start": 12247.28,
+ "end": 12248,
+ "text": "verification"
+ },
+ {
+ "id": 26648,
+ "start": 12248,
+ "end": 12248.48,
+ "text": "program"
+ },
+ {
+ "id": 26649,
+ "start": 12248.48,
+ "end": 12249.4,
+ "text": "involves"
+ },
+ {
+ "id": 26650,
+ "start": 12249.4,
+ "end": 12250.2,
+ "text": "two"
+ },
+ {
+ "id": 26651,
+ "start": 12250.2,
+ "end": 12250.58,
+ "text": "pieces"
+ },
+ {
+ "id": 26652,
+ "start": 12250.58,
+ "end": 12251.18,
+ "text": "1"
+ },
+ {
+ "id": 26653,
+ "start": 12251.18,
+ "end": 12251.32,
+ "text": "is"
+ },
+ {
+ "id": 26654,
+ "start": 12251.32,
+ "end": 12251.9,
+ "text": "verifying"
+ },
+ {
+ "id": 26655,
+ "start": 12251.9,
+ "end": 12252.14,
+ "text": "the"
+ },
+ {
+ "id": 26656,
+ "start": 12252.14,
+ "end": 12252.78,
+ "text": "identity"
+ },
+ {
+ "id": 26657,
+ "start": 12252.78,
+ "end": 12252.98,
+ "text": "of"
+ },
+ {
+ "id": 26658,
+ "start": 12252.98,
+ "end": 12253.1,
+ "text": "the"
+ },
+ {
+ "id": 26659,
+ "start": 12253.1,
+ "end": 12253.4,
+ "text": "person"
+ },
+ {
+ "id": 26660,
+ "start": 12253.4,
+ "end": 12253.56,
+ "text": "who"
+ },
+ {
+ "id": 26661,
+ "start": 12253.56,
+ "end": 12253.68,
+ "text": "is"
+ },
+ {
+ "id": 26662,
+ "start": 12253.68,
+ "end": 12253.96,
+ "text": "buying"
+ },
+ {
+ "id": 26663,
+ "start": 12253.96,
+ "end": 12254.08,
+ "text": "the"
+ },
+ {
+ "id": 26664,
+ "start": 12254.08,
+ "end": 12254.42,
+ "text": "ads"
+ },
+ {
+ "id": 26665,
+ "start": 12254.42,
+ "end": 12254.86,
+ "text": "that"
+ },
+ {
+ "id": 26666,
+ "start": 12254.86,
+ "end": 12255.02,
+ "text": "they"
+ },
+ {
+ "id": 26667,
+ "start": 12255.02,
+ "end": 12255.16,
+ "text": "have"
+ },
+ {
+ "id": 26668,
+ "start": 12255.16,
+ "end": 12255.22,
+ "text": "a"
+ },
+ {
+ "id": 26669,
+ "start": 12255.22,
+ "end": 12255.6,
+ "text": "valid"
+ },
+ {
+ "id": 26670,
+ "start": 12255.6,
+ "end": 12256.02,
+ "text": "government"
+ },
+ {
+ "id": 26671,
+ "start": 12256.02,
+ "end": 12256.87,
+ "text": "identity."
+ },
+ {
+ "id": 26672,
+ "start": 12256.87,
+ "end": 12257.49,
+ "text": "The"
+ },
+ {
+ "id": 26673,
+ "start": 12257.49,
+ "end": 12257.91,
+ "text": "second"
+ },
+ {
+ "id": 26674,
+ "start": 12257.91,
+ "end": 12258.27,
+ "text": "is"
+ },
+ {
+ "id": 26675,
+ "start": 12258.27,
+ "end": 12258.79,
+ "text": "verifying"
+ },
+ {
+ "id": 26676,
+ "start": 12258.79,
+ "end": 12258.99,
+ "text": "their"
+ },
+ {
+ "id": 26677,
+ "start": 12258.99,
+ "end": 12259.45,
+ "text": "location."
+ },
+ {
+ "id": 26678,
+ "start": 12259.45,
+ "end": 12260.25,
+ "text": "So"
+ },
+ {
+ "id": 26679,
+ "start": 12260.25,
+ "end": 12260.71,
+ "text": "if"
+ },
+ {
+ "id": 26680,
+ "start": 12260.71,
+ "end": 12260.97,
+ "text": "you're"
+ },
+ {
+ "id": 26681,
+ "start": 12260.97,
+ "end": 12261.43,
+ "text": "sitting"
+ },
+ {
+ "id": 26682,
+ "start": 12261.43,
+ "end": 12261.51,
+ "text": "in"
+ },
+ {
+ "id": 26683,
+ "start": 12261.51,
+ "end": 12261.81,
+ "text": "Russia,"
+ },
+ {
+ "id": 26684,
+ "start": 12261.81,
+ "end": 12261.99,
+ "text": "for"
+ },
+ {
+ "id": 26685,
+ "start": 12261.99,
+ "end": 12262.45,
+ "text": "example."
+ },
+ {
+ "id": 26686,
+ "start": 12262.45,
+ "end": 12262.75,
+ "text": "And"
+ },
+ {
+ "id": 26687,
+ "start": 12262.75,
+ "end": 12263.47,
+ "text": "you"
+ },
+ {
+ "id": 26688,
+ "start": 12263.47,
+ "end": 12263.71,
+ "text": "say"
+ },
+ {
+ "id": 26689,
+ "start": 12263.71,
+ "end": 12263.85,
+ "text": "that"
+ },
+ {
+ "id": 26690,
+ "start": 12263.85,
+ "end": 12264.03,
+ "text": "you're"
+ },
+ {
+ "id": 26691,
+ "start": 12264.03,
+ "end": 12264.11,
+ "text": "in"
+ },
+ {
+ "id": 26692,
+ "start": 12264.11,
+ "end": 12264.23,
+ "text": "the"
+ },
+ {
+ "id": 26693,
+ "start": 12264.23,
+ "end": 12264.55,
+ "text": "US"
+ },
+ {
+ "id": 26694,
+ "start": 12264.55,
+ "end": 12265.53,
+ "text": "then"
+ },
+ {
+ "id": 26695,
+ "start": 12265.53,
+ "end": 12266.15,
+ "text": "we'll"
+ },
+ {
+ "id": 26696,
+ "start": 12266.15,
+ "end": 12266.31,
+ "text": "be"
+ },
+ {
+ "id": 26697,
+ "start": 12266.31,
+ "end": 12266.57,
+ "text": "able"
+ },
+ {
+ "id": 26698,
+ "start": 12266.57,
+ "end": 12267.7,
+ "text": "to"
+ },
+ {
+ "id": 26699,
+ "start": 12267.7,
+ "end": 12268.6,
+ "text": "to"
+ },
+ {
+ "id": 26700,
+ "start": 12268.6,
+ "end": 12268.76,
+ "text": "make"
+ },
+ {
+ "id": 26701,
+ "start": 12268.76,
+ "end": 12268.86,
+ "text": "it"
+ },
+ {
+ "id": 26702,
+ "start": 12268.86,
+ "end": 12268.9,
+ "text": "a"
+ },
+ {
+ "id": 26703,
+ "start": 12268.9,
+ "end": 12269.06,
+ "text": "lot"
+ },
+ {
+ "id": 26704,
+ "start": 12269.06,
+ "end": 12269.34,
+ "text": "harder"
+ },
+ {
+ "id": 26705,
+ "start": 12269.34,
+ "end": 12269.46,
+ "text": "to"
+ },
+ {
+ "id": 26706,
+ "start": 12269.46,
+ "end": 12269.58,
+ "text": "do"
+ },
+ {
+ "id": 26707,
+ "start": 12269.58,
+ "end": 12269.74,
+ "text": "that"
+ },
+ {
+ "id": 26708,
+ "start": 12269.74,
+ "end": 12269.98,
+ "text": "because"
+ },
+ {
+ "id": 26709,
+ "start": 12269.98,
+ "end": 12270.1,
+ "text": "what"
+ },
+ {
+ "id": 26710,
+ "start": 12270.1,
+ "end": 12270.26,
+ "text": "we're"
+ },
+ {
+ "id": 26711,
+ "start": 12270.26,
+ "end": 12270.5,
+ "text": "actually"
+ },
+ {
+ "id": 26712,
+ "start": 12270.5,
+ "end": 12270.64,
+ "text": "going"
+ },
+ {
+ "id": 26713,
+ "start": 12270.64,
+ "end": 12270.7,
+ "text": "to"
+ },
+ {
+ "id": 26714,
+ "start": 12270.7,
+ "end": 12270.76,
+ "text": "do"
+ },
+ {
+ "id": 26715,
+ "start": 12270.76,
+ "end": 12270.9,
+ "text": "is"
+ },
+ {
+ "id": 26716,
+ "start": 12270.9,
+ "end": 12271.22,
+ "text": "mail"
+ },
+ {
+ "id": 26717,
+ "start": 12271.22,
+ "end": 12271.3,
+ "text": "a"
+ },
+ {
+ "id": 26718,
+ "start": 12271.3,
+ "end": 12271.66,
+ "text": "code"
+ },
+ {
+ "id": 26719,
+ "start": 12271.66,
+ "end": 12271.78,
+ "text": "to"
+ },
+ {
+ "id": 26720,
+ "start": 12271.78,
+ "end": 12271.92,
+ "text": "the"
+ },
+ {
+ "id": 26721,
+ "start": 12271.92,
+ "end": 12272.22,
+ "text": "address"
+ },
+ {
+ "id": 26722,
+ "start": 12272.22,
+ "end": 12272.4,
+ "text": "that"
+ },
+ {
+ "id": 26723,
+ "start": 12272.4,
+ "end": 12272.5,
+ "text": "you"
+ },
+ {
+ "id": 26724,
+ "start": 12272.5,
+ "end": 12272.68,
+ "text": "say"
+ },
+ {
+ "id": 26725,
+ "start": 12272.68,
+ "end": 12272.88,
+ "text": "you're"
+ },
+ {
+ "id": 26726,
+ "start": 12272.88,
+ "end": 12273.08,
+ "text": "at?"
+ },
+ {
+ "id": 26727,
+ "start": 12273.08,
+ "end": 12273.6,
+ "text": "And"
+ },
+ {
+ "id": 26728,
+ "start": 12273.6,
+ "end": 12273.7,
+ "text": "if"
+ },
+ {
+ "id": 26729,
+ "start": 12273.7,
+ "end": 12273.86,
+ "text": "you"
+ },
+ {
+ "id": 26730,
+ "start": 12273.86,
+ "end": 12274.06,
+ "text": "can't"
+ },
+ {
+ "id": 26731,
+ "start": 12274.06,
+ "end": 12274.18,
+ "text": "get"
+ },
+ {
+ "id": 26732,
+ "start": 12274.18,
+ "end": 12274.52,
+ "text": "access"
+ },
+ {
+ "id": 26733,
+ "start": 12274.52,
+ "end": 12274.62,
+ "text": "to"
+ },
+ {
+ "id": 26734,
+ "start": 12274.62,
+ "end": 12274.76,
+ "text": "that"
+ },
+ {
+ "id": 26735,
+ "start": 12274.76,
+ "end": 12274.96,
+ "text": "code,"
+ },
+ {
+ "id": 26736,
+ "start": 12274.96,
+ "end": 12275.08,
+ "text": "then"
+ },
+ {
+ "id": 26737,
+ "start": 12275.08,
+ "end": 12275.24,
+ "text": "you're"
+ },
+ {
+ "id": 26738,
+ "start": 12275.24,
+ "end": 12275.32,
+ "text": "not"
+ },
+ {
+ "id": 26739,
+ "start": 12275.32,
+ "end": 12275.48,
+ "text": "gonna"
+ },
+ {
+ "id": 26740,
+ "start": 12275.48,
+ "end": 12275.56,
+ "text": "be"
+ },
+ {
+ "id": 26741,
+ "start": 12275.56,
+ "end": 12275.68,
+ "text": "able"
+ },
+ {
+ "id": 26742,
+ "start": 12275.68,
+ "end": 12275.74,
+ "text": "to"
+ },
+ {
+ "id": 26743,
+ "start": 12275.74,
+ "end": 12275.84,
+ "text": "run"
+ },
+ {
+ "id": 26744,
+ "start": 12275.84,
+ "end": 12276.16,
+ "text": "ads."
+ },
+ {
+ "id": 26745,
+ "start": 12276.16,
+ "end": 12277.62,
+ "text": "Now."
+ },
+ {
+ "id": 26746,
+ "start": 12277.62,
+ "end": 12278.32,
+ "text": "Facebook"
+ },
+ {
+ "id": 26747,
+ "start": 12278.32,
+ "end": 12278.5,
+ "text": "is"
+ },
+ {
+ "id": 26748,
+ "start": 12278.5,
+ "end": 12279.02,
+ "text": "creating"
+ },
+ {
+ "id": 26749,
+ "start": 12279.02,
+ "end": 12279.14,
+ "text": "an"
+ },
+ {
+ "id": 26750,
+ "start": 12279.14,
+ "end": 12279.82,
+ "text": "independent"
+ },
+ {
+ "id": 26751,
+ "start": 12279.82,
+ "end": 12280.31,
+ "text": "group"
+ },
+ {
+ "id": 26752,
+ "start": 12280.31,
+ "end": 12280.71,
+ "text": "study,"
+ },
+ {
+ "id": 26753,
+ "start": 12280.71,
+ "end": 12280.85,
+ "text": "the"
+ },
+ {
+ "id": 26754,
+ "start": 12280.85,
+ "end": 12281.37,
+ "text": "abuse"
+ },
+ {
+ "id": 26755,
+ "start": 12281.37,
+ "end": 12281.51,
+ "text": "of"
+ },
+ {
+ "id": 26756,
+ "start": 12281.51,
+ "end": 12281.99,
+ "text": "social"
+ },
+ {
+ "id": 26757,
+ "start": 12281.99,
+ "end": 12282.29,
+ "text": "media"
+ },
+ {
+ "id": 26758,
+ "start": 12282.29,
+ "end": 12282.43,
+ "text": "and"
+ },
+ {
+ "id": 26759,
+ "start": 12282.43,
+ "end": 12282.97,
+ "text": "elections"
+ },
+ {
+ "id": 26760,
+ "start": 12282.97,
+ "end": 12283.23,
+ "text": "you've"
+ },
+ {
+ "id": 26761,
+ "start": 12283.23,
+ "end": 12283.49,
+ "text": "talked"
+ },
+ {
+ "id": 26762,
+ "start": 12283.49,
+ "end": 12283.75,
+ "text": "about"
+ },
+ {
+ "id": 26763,
+ "start": 12283.75,
+ "end": 12284.07,
+ "text": "that."
+ },
+ {
+ "id": 26764,
+ "start": 12284.07,
+ "end": 12284.73,
+ "text": "Will"
+ },
+ {
+ "id": 26765,
+ "start": 12284.73,
+ "end": 12284.93,
+ "text": "you"
+ },
+ {
+ "id": 26766,
+ "start": 12284.93,
+ "end": 12285.31,
+ "text": "commit"
+ },
+ {
+ "id": 26767,
+ "start": 12285.31,
+ "end": 12285.67,
+ "text": "that"
+ },
+ {
+ "id": 26768,
+ "start": 12285.67,
+ "end": 12286.47,
+ "text": "all"
+ },
+ {
+ "id": 26769,
+ "start": 12286.47,
+ "end": 12287.11,
+ "text": "findings"
+ },
+ {
+ "id": 26770,
+ "start": 12287.11,
+ "end": 12287.27,
+ "text": "of"
+ },
+ {
+ "id": 26771,
+ "start": 12287.27,
+ "end": 12287.49,
+ "text": "this"
+ },
+ {
+ "id": 26772,
+ "start": 12287.49,
+ "end": 12287.87,
+ "text": "group"
+ },
+ {
+ "id": 26773,
+ "start": 12287.87,
+ "end": 12288.19,
+ "text": "are"
+ },
+ {
+ "id": 26774,
+ "start": 12288.19,
+ "end": 12288.45,
+ "text": "made"
+ },
+ {
+ "id": 26775,
+ "start": 12288.45,
+ "end": 12288.93,
+ "text": "public"
+ },
+ {
+ "id": 26776,
+ "start": 12288.93,
+ "end": 12289.15,
+ "text": "no"
+ },
+ {
+ "id": 26777,
+ "start": 12289.15,
+ "end": 12289.43,
+ "text": "matter"
+ },
+ {
+ "id": 26778,
+ "start": 12289.43,
+ "end": 12289.61,
+ "text": "what"
+ },
+ {
+ "id": 26779,
+ "start": 12289.61,
+ "end": 12289.89,
+ "text": "they"
+ },
+ {
+ "id": 26780,
+ "start": 12289.89,
+ "end": 12290.11,
+ "text": "say"
+ },
+ {
+ "id": 26781,
+ "start": 12290.11,
+ "end": 12290.41,
+ "text": "about"
+ },
+ {
+ "id": 26782,
+ "start": 12290.41,
+ "end": 12291.03,
+ "text": "Facebook"
+ },
+ {
+ "id": 26783,
+ "start": 12291.03,
+ "end": 12291.45,
+ "text": "or"
+ },
+ {
+ "id": 26784,
+ "start": 12291.45,
+ "end": 12291.61,
+ "text": "its"
+ },
+ {
+ "id": 26785,
+ "start": 12291.61,
+ "end": 12292.11,
+ "text": "business"
+ },
+ {
+ "id": 26786,
+ "start": 12292.11,
+ "end": 12292.92,
+ "text": "model."
+ },
+ {
+ "id": 26787,
+ "start": 12292.92,
+ "end": 12293.58,
+ "text": "Yes"
+ },
+ {
+ "id": 26788,
+ "start": 12293.58,
+ "end": 12293.76,
+ "text": "or"
+ },
+ {
+ "id": 26789,
+ "start": 12293.76,
+ "end": 12293.88,
+ "text": "no"
+ },
+ {
+ "id": 26790,
+ "start": 12293.88,
+ "end": 12294.26,
+ "text": "answer,"
+ },
+ {
+ "id": 26791,
+ "start": 12294.26,
+ "end": 12295.24,
+ "text": "Senator"
+ },
+ {
+ "id": 26792,
+ "start": 12295.24,
+ "end": 12296.22,
+ "text": "that's"
+ },
+ {
+ "id": 26793,
+ "start": 12296.22,
+ "end": 12296.36,
+ "text": "the"
+ },
+ {
+ "id": 26794,
+ "start": 12296.36,
+ "end": 12296.72,
+ "text": "purpose"
+ },
+ {
+ "id": 26795,
+ "start": 12296.72,
+ "end": 12296.86,
+ "text": "of"
+ },
+ {
+ "id": 26796,
+ "start": 12296.86,
+ "end": 12297.1,
+ "text": "this"
+ },
+ {
+ "id": 26797,
+ "start": 12297.1,
+ "end": 12297.4,
+ "text": "group"
+ },
+ {
+ "id": 26798,
+ "start": 12297.4,
+ "end": 12298.02,
+ "text": "is"
+ },
+ {
+ "id": 26799,
+ "start": 12298.02,
+ "end": 12298.22,
+ "text": "that"
+ },
+ {
+ "id": 26800,
+ "start": 12298.22,
+ "end": 12299.08,
+ "text": "Facebook"
+ },
+ {
+ "id": 26801,
+ "start": 12299.08,
+ "end": 12299.28,
+ "text": "does"
+ },
+ {
+ "id": 26802,
+ "start": 12299.28,
+ "end": 12299.54,
+ "text": "not"
+ },
+ {
+ "id": 26803,
+ "start": 12299.54,
+ "end": 12299.7,
+ "text": "get"
+ },
+ {
+ "id": 26804,
+ "start": 12299.7,
+ "end": 12299.86,
+ "text": "to"
+ },
+ {
+ "id": 26805,
+ "start": 12299.86,
+ "end": 12300.46,
+ "text": "control"
+ },
+ {
+ "id": 26806,
+ "start": 12300.46,
+ "end": 12301.38,
+ "text": "what"
+ },
+ {
+ "id": 26807,
+ "start": 12301.38,
+ "end": 12301.64,
+ "text": "these"
+ },
+ {
+ "id": 26808,
+ "start": 12301.64,
+ "end": 12301.94,
+ "text": "folks"
+ },
+ {
+ "id": 26809,
+ "start": 12301.94,
+ "end": 12302.34,
+ "text": "published."
+ },
+ {
+ "id": 26810,
+ "start": 12302.34,
+ "end": 12302.56,
+ "text": "These"
+ },
+ {
+ "id": 26811,
+ "start": 12302.56,
+ "end": 12302.68,
+ "text": "are"
+ },
+ {
+ "id": 26812,
+ "start": 12302.68,
+ "end": 12302.84,
+ "text": "going"
+ },
+ {
+ "id": 26813,
+ "start": 12302.84,
+ "end": 12302.9,
+ "text": "to"
+ },
+ {
+ "id": 26814,
+ "start": 12302.9,
+ "end": 12302.96,
+ "text": "be"
+ },
+ {
+ "id": 26815,
+ "start": 12302.96,
+ "end": 12303.34,
+ "text": "independent"
+ },
+ {
+ "id": 26816,
+ "start": 12303.34,
+ "end": 12303.88,
+ "text": "academics"
+ },
+ {
+ "id": 26817,
+ "start": 12303.88,
+ "end": 12304.44,
+ "text": "and"
+ },
+ {
+ "id": 26818,
+ "start": 12304.44,
+ "end": 12304.84,
+ "text": "Facebook"
+ },
+ {
+ "id": 26819,
+ "start": 12304.84,
+ "end": 12305,
+ "text": "has"
+ },
+ {
+ "id": 26820,
+ "start": 12305,
+ "end": 12305.26,
+ "text": "no"
+ },
+ {
+ "id": 26821,
+ "start": 12305.26,
+ "end": 12305.8,
+ "text": "prior"
+ },
+ {
+ "id": 26822,
+ "start": 12305.8,
+ "end": 12307.14,
+ "text": "publishing"
+ },
+ {
+ "id": 26823,
+ "start": 12307.14,
+ "end": 12308.28,
+ "text": "control"
+ },
+ {
+ "id": 26824,
+ "start": 12308.28,
+ "end": 12308.88,
+ "text": "they'll"
+ },
+ {
+ "id": 26825,
+ "start": 12308.88,
+ "end": 12308.94,
+ "text": "be"
+ },
+ {
+ "id": 26826,
+ "start": 12308.94,
+ "end": 12309.08,
+ "text": "able"
+ },
+ {
+ "id": 26827,
+ "start": 12309.08,
+ "end": 12309.2,
+ "text": "to"
+ },
+ {
+ "id": 26828,
+ "start": 12309.2,
+ "end": 12309.74,
+ "text": "do"
+ },
+ {
+ "id": 26829,
+ "start": 12309.74,
+ "end": 12309.9,
+ "text": "the"
+ },
+ {
+ "id": 26830,
+ "start": 12309.9,
+ "end": 12310.3,
+ "text": "studies"
+ },
+ {
+ "id": 26831,
+ "start": 12310.3,
+ "end": 12311.36,
+ "text": "that"
+ },
+ {
+ "id": 26832,
+ "start": 12311.36,
+ "end": 12312.32,
+ "text": "they're"
+ },
+ {
+ "id": 26833,
+ "start": 12312.32,
+ "end": 12312.54,
+ "text": "doing"
+ },
+ {
+ "id": 26834,
+ "start": 12312.54,
+ "end": 12312.98,
+ "text": "and"
+ },
+ {
+ "id": 26835,
+ "start": 12312.98,
+ "end": 12313.3,
+ "text": "publish"
+ },
+ {
+ "id": 26836,
+ "start": 12313.3,
+ "end": 12313.42,
+ "text": "the"
+ },
+ {
+ "id": 26837,
+ "start": 12313.42,
+ "end": 12313.74,
+ "text": "results"
+ },
+ {
+ "id": 26838,
+ "start": 12313.74,
+ "end": 12314.42,
+ "text": "and"
+ },
+ {
+ "id": 26839,
+ "start": 12314.42,
+ "end": 12314.68,
+ "text": "you're"
+ },
+ {
+ "id": 26840,
+ "start": 12314.68,
+ "end": 12315.04,
+ "text": "fine"
+ },
+ {
+ "id": 26841,
+ "start": 12315.04,
+ "end": 12315.2,
+ "text": "with"
+ },
+ {
+ "id": 26842,
+ "start": 12315.2,
+ "end": 12315.34,
+ "text": "them"
+ },
+ {
+ "id": 26843,
+ "start": 12315.34,
+ "end": 12315.56,
+ "text": "being"
+ },
+ {
+ "id": 26844,
+ "start": 12315.56,
+ "end": 12315.94,
+ "text": "public"
+ },
+ {
+ "id": 26845,
+ "start": 12315.94,
+ "end": 12316.54,
+ "text": "and"
+ },
+ {
+ "id": 26846,
+ "start": 12316.54,
+ "end": 12316.8,
+ "text": "what's"
+ },
+ {
+ "id": 26847,
+ "start": 12316.8,
+ "end": 12316.94,
+ "text": "the"
+ },
+ {
+ "id": 26848,
+ "start": 12316.94,
+ "end": 12317.16,
+ "text": "time"
+ },
+ {
+ "id": 26849,
+ "start": 12317.16,
+ "end": 12317.72,
+ "text": "getting"
+ },
+ {
+ "id": 26850,
+ "start": 12317.72,
+ "end": 12317.94,
+ "text": "those"
+ },
+ {
+ "id": 26851,
+ "start": 12317.94,
+ "end": 12318.92,
+ "text": "out."
+ },
+ {
+ "id": 26852,
+ "start": 12318.92,
+ "end": 12320.02,
+ "text": "Senator"
+ },
+ {
+ "id": 26853,
+ "start": 12320.02,
+ "end": 12320.36,
+ "text": "we're"
+ },
+ {
+ "id": 26854,
+ "start": 12320.36,
+ "end": 12320.62,
+ "text": "kicking"
+ },
+ {
+ "id": 26855,
+ "start": 12320.62,
+ "end": 12320.86,
+ "text": "off"
+ },
+ {
+ "id": 26856,
+ "start": 12320.86,
+ "end": 12321.24,
+ "text": "the"
+ },
+ {
+ "id": 26857,
+ "start": 12321.24,
+ "end": 12321.68,
+ "text": "research."
+ },
+ {
+ "id": 26858,
+ "start": 12321.68,
+ "end": 12322.02,
+ "text": "Now,"
+ },
+ {
+ "id": 26859,
+ "start": 12322.02,
+ "end": 12322.62,
+ "text": "our"
+ },
+ {
+ "id": 26860,
+ "start": 12322.62,
+ "end": 12322.98,
+ "text": "goal"
+ },
+ {
+ "id": 26861,
+ "start": 12322.98,
+ "end": 12323.2,
+ "text": "is"
+ },
+ {
+ "id": 26862,
+ "start": 12323.2,
+ "end": 12323.34,
+ "text": "to"
+ },
+ {
+ "id": 26863,
+ "start": 12323.34,
+ "end": 12323.76,
+ "text": "focus"
+ },
+ {
+ "id": 26864,
+ "start": 12323.76,
+ "end": 12324.18,
+ "text": "on"
+ },
+ {
+ "id": 26865,
+ "start": 12324.18,
+ "end": 12325.08,
+ "text": "both"
+ },
+ {
+ "id": 26866,
+ "start": 12325.08,
+ "end": 12325.68,
+ "text": "providing"
+ },
+ {
+ "id": 26867,
+ "start": 12325.68,
+ "end": 12326.18,
+ "text": "ideas"
+ },
+ {
+ "id": 26868,
+ "start": 12326.18,
+ "end": 12326.42,
+ "text": "for"
+ },
+ {
+ "id": 26869,
+ "start": 12326.42,
+ "end": 12326.8,
+ "text": "preventing"
+ },
+ {
+ "id": 26870,
+ "start": 12326.8,
+ "end": 12327.36,
+ "text": "interference"
+ },
+ {
+ "id": 26871,
+ "start": 12327.36,
+ "end": 12327.5,
+ "text": "and"
+ },
+ {
+ "id": 26872,
+ "start": 12327.5,
+ "end": 12327.76,
+ "text": "20"
+ },
+ {
+ "id": 26873,
+ "start": 12327.76,
+ "end": 12328.04,
+ "text": "18"
+ },
+ {
+ "id": 26874,
+ "start": 12328.04,
+ "end": 12328.16,
+ "text": "and"
+ },
+ {
+ "id": 26875,
+ "start": 12328.16,
+ "end": 12328.54,
+ "text": "beyond"
+ },
+ {
+ "id": 26876,
+ "start": 12328.54,
+ "end": 12329.26,
+ "text": "and"
+ },
+ {
+ "id": 26877,
+ "start": 12329.26,
+ "end": 12329.64,
+ "text": "also"
+ },
+ {
+ "id": 26878,
+ "start": 12329.64,
+ "end": 12329.82,
+ "text": "for"
+ },
+ {
+ "id": 26879,
+ "start": 12329.82,
+ "end": 12330.06,
+ "text": "holding"
+ },
+ {
+ "id": 26880,
+ "start": 12330.06,
+ "end": 12330.16,
+ "text": "us"
+ },
+ {
+ "id": 26881,
+ "start": 12330.16,
+ "end": 12330.7,
+ "text": "accountable"
+ },
+ {
+ "id": 26882,
+ "start": 12330.7,
+ "end": 12330.82,
+ "text": "to"
+ },
+ {
+ "id": 26883,
+ "start": 12330.82,
+ "end": 12331.08,
+ "text": "making"
+ },
+ {
+ "id": 26884,
+ "start": 12331.08,
+ "end": 12331.28,
+ "text": "sure"
+ },
+ {
+ "id": 26885,
+ "start": 12331.28,
+ "end": 12331.42,
+ "text": "that"
+ },
+ {
+ "id": 26886,
+ "start": 12331.42,
+ "end": 12331.54,
+ "text": "the"
+ },
+ {
+ "id": 26887,
+ "start": 12331.54,
+ "end": 12331.84,
+ "text": "measures"
+ },
+ {
+ "id": 26888,
+ "start": 12331.84,
+ "end": 12331.96,
+ "text": "that"
+ },
+ {
+ "id": 26889,
+ "start": 12331.96,
+ "end": 12332.08,
+ "text": "we"
+ },
+ {
+ "id": 26890,
+ "start": 12332.08,
+ "end": 12332.22,
+ "text": "put"
+ },
+ {
+ "id": 26891,
+ "start": 12332.22,
+ "end": 12332.36,
+ "text": "in"
+ },
+ {
+ "id": 26892,
+ "start": 12332.36,
+ "end": 12333.3,
+ "text": "place"
+ },
+ {
+ "id": 26893,
+ "start": 12333.3,
+ "end": 12334.3,
+ "text": "are"
+ },
+ {
+ "id": 26894,
+ "start": 12334.3,
+ "end": 12334.78,
+ "text": "successful"
+ },
+ {
+ "id": 26895,
+ "start": 12334.78,
+ "end": 12334.88,
+ "text": "in"
+ },
+ {
+ "id": 26896,
+ "start": 12334.88,
+ "end": 12335.06,
+ "text": "doing"
+ },
+ {
+ "id": 26897,
+ "start": 12335.06,
+ "end": 12335.18,
+ "text": "that."
+ },
+ {
+ "id": 26898,
+ "start": 12335.18,
+ "end": 12335.34,
+ "text": "So"
+ },
+ {
+ "id": 26899,
+ "start": 12335.34,
+ "end": 12335.42,
+ "text": "I"
+ },
+ {
+ "id": 26900,
+ "start": 12335.42,
+ "end": 12335.6,
+ "text": "would"
+ },
+ {
+ "id": 26901,
+ "start": 12335.6,
+ "end": 12335.82,
+ "text": "hope"
+ },
+ {
+ "id": 26902,
+ "start": 12335.82,
+ "end": 12336.26,
+ "text": "that"
+ },
+ {
+ "id": 26903,
+ "start": 12336.26,
+ "end": 12336.36,
+ "text": "we"
+ },
+ {
+ "id": 26904,
+ "start": 12336.36,
+ "end": 12336.56,
+ "text": "will"
+ },
+ {
+ "id": 26905,
+ "start": 12336.56,
+ "end": 12336.78,
+ "text": "start"
+ },
+ {
+ "id": 26906,
+ "start": 12336.78,
+ "end": 12336.9,
+ "text": "to"
+ },
+ {
+ "id": 26907,
+ "start": 12336.9,
+ "end": 12337.06,
+ "text": "see"
+ },
+ {
+ "id": 26908,
+ "start": 12337.06,
+ "end": 12337.26,
+ "text": "the"
+ },
+ {
+ "id": 26909,
+ "start": 12337.26,
+ "end": 12337.52,
+ "text": "first"
+ },
+ {
+ "id": 26910,
+ "start": 12337.52,
+ "end": 12337.98,
+ "text": "results"
+ },
+ {
+ "id": 26911,
+ "start": 12337.98,
+ "end": 12339,
+ "text": "later"
+ },
+ {
+ "id": 26912,
+ "start": 12339,
+ "end": 12339.16,
+ "text": "this"
+ },
+ {
+ "id": 26913,
+ "start": 12339.16,
+ "end": 12339.38,
+ "text": "year,"
+ },
+ {
+ "id": 26914,
+ "start": 12339.38,
+ "end": 12340.26,
+ "text": "thank"
+ },
+ {
+ "id": 26915,
+ "start": 12340.26,
+ "end": 12340.44,
+ "text": "you,"
+ },
+ {
+ "id": 26916,
+ "start": 12340.44,
+ "end": 12340.76,
+ "text": "Mr"
+ },
+ {
+ "id": 26917,
+ "start": 12340.76,
+ "end": 12341.1,
+ "text": "Chairman."
+ },
+ {
+ "id": 26918,
+ "start": 12341.1,
+ "end": 12341.44,
+ "text": "Thank"
+ },
+ {
+ "id": 26919,
+ "start": 12341.44,
+ "end": 12341.7,
+ "text": "you,"
+ },
+ {
+ "id": 26920,
+ "start": 12341.7,
+ "end": 12342.18,
+ "text": "can"
+ },
+ {
+ "id": 26921,
+ "start": 12342.18,
+ "end": 12342.26,
+ "text": "you"
+ },
+ {
+ "id": 26922,
+ "start": 12342.26,
+ "end": 12342.82,
+ "text": "all?"
+ },
+ {
+ "id": 26923,
+ "start": 12342.82,
+ "end": 12343.4,
+ "text": "Senator"
+ },
+ {
+ "id": 26924,
+ "start": 12343.4,
+ "end": 12343.78,
+ "text": "Moran"
+ },
+ {
+ "id": 26925,
+ "start": 12343.78,
+ "end": 12343.94,
+ "text": "is"
+ },
+ {
+ "id": 26926,
+ "start": 12343.94,
+ "end": 12344.16,
+ "text": "up"
+ },
+ {
+ "id": 26927,
+ "start": 12344.16,
+ "end": 12344.48,
+ "text": "next"
+ },
+ {
+ "id": 26928,
+ "start": 12344.48,
+ "end": 12344.6,
+ "text": "and"
+ },
+ {
+ "id": 26929,
+ "start": 12344.6,
+ "end": 12344.66,
+ "text": "I"
+ },
+ {
+ "id": 26930,
+ "start": 12344.66,
+ "end": 12344.86,
+ "text": "would"
+ },
+ {
+ "id": 26931,
+ "start": 12344.86,
+ "end": 12345,
+ "text": "just"
+ },
+ {
+ "id": 26932,
+ "start": 12345,
+ "end": 12345.16,
+ "text": "say"
+ },
+ {
+ "id": 26933,
+ "start": 12345.16,
+ "end": 12345.62,
+ "text": "again"
+ },
+ {
+ "id": 26934,
+ "start": 12345.62,
+ "end": 12346.1,
+ "text": "for"
+ },
+ {
+ "id": 26935,
+ "start": 12346.1,
+ "end": 12346.34,
+ "text": "the"
+ },
+ {
+ "id": 26936,
+ "start": 12346.34,
+ "end": 12347.14,
+ "text": "benefit"
+ },
+ {
+ "id": 26937,
+ "start": 12347.14,
+ "end": 12347.24,
+ "text": "of"
+ },
+ {
+ "id": 26938,
+ "start": 12347.24,
+ "end": 12347.4,
+ "text": "those"
+ },
+ {
+ "id": 26939,
+ "start": 12347.4,
+ "end": 12347.5,
+ "text": "who"
+ },
+ {
+ "id": 26940,
+ "start": 12347.5,
+ "end": 12347.62,
+ "text": "are"
+ },
+ {
+ "id": 26941,
+ "start": 12347.62,
+ "end": 12347.82,
+ "text": "here"
+ },
+ {
+ "id": 26942,
+ "start": 12347.82,
+ "end": 12348.04,
+ "text": "that"
+ },
+ {
+ "id": 26943,
+ "start": 12348.04,
+ "end": 12348.36,
+ "text": "after"
+ },
+ {
+ "id": 26944,
+ "start": 12348.36,
+ "end": 12348.42,
+ "text": "a"
+ },
+ {
+ "id": 26945,
+ "start": 12348.42,
+ "end": 12348.68,
+ "text": "couple"
+ },
+ {
+ "id": 26946,
+ "start": 12348.68,
+ "end": 12348.78,
+ "text": "of"
+ },
+ {
+ "id": 26947,
+ "start": 12348.78,
+ "end": 12349,
+ "text": "more"
+ },
+ {
+ "id": 26948,
+ "start": 12349,
+ "end": 12349.4,
+ "text": "questions"
+ },
+ {
+ "id": 26949,
+ "start": 12349.4,
+ "end": 12349.6,
+ "text": "will"
+ },
+ {
+ "id": 26950,
+ "start": 12349.6,
+ "end": 12349.84,
+ "text": "probably"
+ },
+ {
+ "id": 26951,
+ "start": 12349.84,
+ "end": 12350,
+ "text": "give"
+ },
+ {
+ "id": 26952,
+ "start": 12350,
+ "end": 12350.12,
+ "text": "the"
+ },
+ {
+ "id": 26953,
+ "start": 12350.12,
+ "end": 12350.46,
+ "text": "witness"
+ },
+ {
+ "id": 26954,
+ "start": 12350.46,
+ "end": 12350.88,
+ "text": "another"
+ },
+ {
+ "id": 26955,
+ "start": 12350.88,
+ "end": 12351.3,
+ "text": "short"
+ },
+ {
+ "id": 26956,
+ "start": 12351.3,
+ "end": 12351.62,
+ "text": "break."
+ },
+ {
+ "id": 26957,
+ "start": 12351.62,
+ "end": 12352.12,
+ "text": "Thank"
+ },
+ {
+ "id": 26958,
+ "start": 12352.12,
+ "end": 12352.24,
+ "text": "you,"
+ },
+ {
+ "id": 26959,
+ "start": 12352.24,
+ "end": 12352.84,
+ "text": "we're."
+ },
+ {
+ "id": 26960,
+ "start": 12352.84,
+ "end": 12353.33,
+ "text": "Getting"
+ },
+ {
+ "id": 26961,
+ "start": 12353.33,
+ "end": 12353.75,
+ "text": "almost"
+ },
+ {
+ "id": 26962,
+ "start": 12353.75,
+ "end": 12353.87,
+ "text": "two"
+ },
+ {
+ "id": 26963,
+ "start": 12353.87,
+ "end": 12354.17,
+ "text": "thirds"
+ },
+ {
+ "id": 26964,
+ "start": 12354.17,
+ "end": 12354.39,
+ "text": "through"
+ },
+ {
+ "id": 26965,
+ "start": 12354.39,
+ "end": 12354.83,
+ "text": "the"
+ },
+ {
+ "id": 26966,
+ "start": 12354.83,
+ "end": 12355.05,
+ "text": "list"
+ },
+ {
+ "id": 26967,
+ "start": 12355.05,
+ "end": 12355.23,
+ "text": "of"
+ },
+ {
+ "id": 26968,
+ "start": 12355.23,
+ "end": 12355.79,
+ "text": "members"
+ },
+ {
+ "id": 26969,
+ "start": 12355.79,
+ "end": 12355.95,
+ "text": "who"
+ },
+ {
+ "id": 26970,
+ "start": 12355.95,
+ "end": 12356.65,
+ "text": "are"
+ },
+ {
+ "id": 26971,
+ "start": 12356.65,
+ "end": 12356.79,
+ "text": "here"
+ },
+ {
+ "id": 26972,
+ "start": 12356.79,
+ "end": 12356.87,
+ "text": "to"
+ },
+ {
+ "id": 26973,
+ "start": 12356.87,
+ "end": 12357.01,
+ "text": "ask"
+ },
+ {
+ "id": 26974,
+ "start": 12357.01,
+ "end": 12357.27,
+ "text": "questions?"
+ },
+ {
+ "id": 26975,
+ "start": 12357.27,
+ "end": 12357.51,
+ "text": "Center"
+ },
+ {
+ "id": 26976,
+ "start": 12357.51,
+ "end": 12357.73,
+ "text": "ran,"
+ },
+ {
+ "id": 26977,
+ "start": 12357.73,
+ "end": 12358.27,
+ "text": "Mr"
+ },
+ {
+ "id": 26978,
+ "start": 12358.27,
+ "end": 12358.55,
+ "text": "Sherman."
+ },
+ {
+ "id": 26979,
+ "start": 12358.55,
+ "end": 12358.71,
+ "text": "Thank"
+ },
+ {
+ "id": 26980,
+ "start": 12358.71,
+ "end": 12358.83,
+ "text": "you,"
+ },
+ {
+ "id": 26981,
+ "start": 12358.83,
+ "end": 12359.13,
+ "text": "Mr"
+ },
+ {
+ "id": 26982,
+ "start": 12359.13,
+ "end": 12359.51,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 26983,
+ "start": 12359.51,
+ "end": 12359.71,
+ "text": "Thank"
+ },
+ {
+ "id": 26984,
+ "start": 12359.71,
+ "end": 12359.81,
+ "text": "you"
+ },
+ {
+ "id": 26985,
+ "start": 12359.81,
+ "end": 12360.21,
+ "text": "for"
+ },
+ {
+ "id": 26986,
+ "start": 12360.21,
+ "end": 12360.33,
+ "text": "I'm"
+ },
+ {
+ "id": 26987,
+ "start": 12360.33,
+ "end": 12360.51,
+ "text": "over"
+ },
+ {
+ "id": 26988,
+ "start": 12360.51,
+ "end": 12360.65,
+ "text": "here."
+ },
+ {
+ "id": 26989,
+ "start": 12360.65,
+ "end": 12360.83,
+ "text": "Thank"
+ },
+ {
+ "id": 26990,
+ "start": 12360.83,
+ "end": 12360.91,
+ "text": "you"
+ },
+ {
+ "id": 26991,
+ "start": 12360.91,
+ "end": 12361.03,
+ "text": "for"
+ },
+ {
+ "id": 26992,
+ "start": 12361.03,
+ "end": 12361.19,
+ "text": "your"
+ },
+ {
+ "id": 26993,
+ "start": 12361.19,
+ "end": 12361.69,
+ "text": "testimony."
+ },
+ {
+ "id": 26994,
+ "start": 12361.69,
+ "end": 12361.87,
+ "text": "And"
+ },
+ {
+ "id": 26995,
+ "start": 12361.87,
+ "end": 12362.05,
+ "text": "thank"
+ },
+ {
+ "id": 26996,
+ "start": 12362.05,
+ "end": 12362.15,
+ "text": "you"
+ },
+ {
+ "id": 26997,
+ "start": 12362.15,
+ "end": 12362.25,
+ "text": "for"
+ },
+ {
+ "id": 26998,
+ "start": 12362.25,
+ "end": 12362.39,
+ "text": "your"
+ },
+ {
+ "id": 26999,
+ "start": 12362.39,
+ "end": 12362.69,
+ "text": "presence"
+ },
+ {
+ "id": 27000,
+ "start": 12362.69,
+ "end": 12362.85,
+ "text": "here"
+ },
+ {
+ "id": 27001,
+ "start": 12362.85,
+ "end": 12363.84,
+ "text": "today"
+ },
+ {
+ "id": 27002,
+ "start": 12363.84,
+ "end": 12364.68,
+ "text": "on"
+ },
+ {
+ "id": 27003,
+ "start": 12364.68,
+ "end": 12364.9,
+ "text": "March"
+ },
+ {
+ "id": 27004,
+ "start": 12364.9,
+ "end": 12365.02,
+ "text": "the"
+ },
+ {
+ "id": 27005,
+ "start": 12365.02,
+ "end": 12365.26,
+ "text": "20"
+ },
+ {
+ "id": 27006,
+ "start": 12365.26,
+ "end": 12366.16,
+ "text": "sixth"
+ },
+ {
+ "id": 27007,
+ "start": 12366.16,
+ "end": 12366.52,
+ "text": "of"
+ },
+ {
+ "id": 27008,
+ "start": 12366.52,
+ "end": 12366.7,
+ "text": "this"
+ },
+ {
+ "id": 27009,
+ "start": 12366.7,
+ "end": 12366.88,
+ "text": "year."
+ },
+ {
+ "id": 27010,
+ "start": 12366.88,
+ "end": 12367.12,
+ "text": "The"
+ },
+ {
+ "id": 27011,
+ "start": 12367.12,
+ "end": 12367.68,
+ "text": "FTC"
+ },
+ {
+ "id": 27012,
+ "start": 12367.68,
+ "end": 12368.14,
+ "text": "confirmed"
+ },
+ {
+ "id": 27013,
+ "start": 12368.14,
+ "end": 12368.28,
+ "text": "that"
+ },
+ {
+ "id": 27014,
+ "start": 12368.28,
+ "end": 12368.58,
+ "text": "it"
+ },
+ {
+ "id": 27015,
+ "start": 12368.58,
+ "end": 12368.84,
+ "text": "was"
+ },
+ {
+ "id": 27016,
+ "start": 12368.84,
+ "end": 12369.64,
+ "text": "investigating"
+ },
+ {
+ "id": 27017,
+ "start": 12369.64,
+ "end": 12370.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 27018,
+ "start": 12370.16,
+ "end": 12370.28,
+ "text": "to"
+ },
+ {
+ "id": 27019,
+ "start": 12370.28,
+ "end": 12370.74,
+ "text": "determine"
+ },
+ {
+ "id": 27020,
+ "start": 12370.74,
+ "end": 12371.38,
+ "text": "whether"
+ },
+ {
+ "id": 27021,
+ "start": 12371.38,
+ "end": 12371.54,
+ "text": "it's"
+ },
+ {
+ "id": 27022,
+ "start": 12371.54,
+ "end": 12372.04,
+ "text": "privacy"
+ },
+ {
+ "id": 27023,
+ "start": 12372.04,
+ "end": 12372.56,
+ "text": "practices"
+ },
+ {
+ "id": 27024,
+ "start": 12372.56,
+ "end": 12373,
+ "text": "violated"
+ },
+ {
+ "id": 27025,
+ "start": 12373,
+ "end": 12373.2,
+ "text": "the"
+ },
+ {
+ "id": 27026,
+ "start": 12373.2,
+ "end": 12373.74,
+ "text": "FTC"
+ },
+ {
+ "id": 27027,
+ "start": 12373.74,
+ "end": 12374.02,
+ "text": "act"
+ },
+ {
+ "id": 27028,
+ "start": 12374.02,
+ "end": 12374.22,
+ "text": "or"
+ },
+ {
+ "id": 27029,
+ "start": 12374.22,
+ "end": 12374.38,
+ "text": "the"
+ },
+ {
+ "id": 27030,
+ "start": 12374.38,
+ "end": 12374.74,
+ "text": "consent"
+ },
+ {
+ "id": 27031,
+ "start": 12374.74,
+ "end": 12374.98,
+ "text": "order"
+ },
+ {
+ "id": 27032,
+ "start": 12374.98,
+ "end": 12375.14,
+ "text": "that"
+ },
+ {
+ "id": 27033,
+ "start": 12375.14,
+ "end": 12375.62,
+ "text": "Facebook"
+ },
+ {
+ "id": 27034,
+ "start": 12375.62,
+ "end": 12375.88,
+ "text": "entered"
+ },
+ {
+ "id": 27035,
+ "start": 12375.88,
+ "end": 12376.14,
+ "text": "into"
+ },
+ {
+ "id": 27036,
+ "start": 12376.14,
+ "end": 12376.28,
+ "text": "with"
+ },
+ {
+ "id": 27037,
+ "start": 12376.28,
+ "end": 12376.38,
+ "text": "the"
+ },
+ {
+ "id": 27038,
+ "start": 12376.38,
+ "end": 12377.09,
+ "text": "agency."
+ },
+ {
+ "id": 27039,
+ "start": 12377.09,
+ "end": 12377.69,
+ "text": "In"
+ },
+ {
+ "id": 27040,
+ "start": 12377.69,
+ "end": 12378.63,
+ "text": "2,011"
+ },
+ {
+ "id": 27041,
+ "start": 12378.63,
+ "end": 12379.45,
+ "text": "I"
+ },
+ {
+ "id": 27042,
+ "start": 12379.45,
+ "end": 12379.69,
+ "text": "chair"
+ },
+ {
+ "id": 27043,
+ "start": 12379.69,
+ "end": 12379.89,
+ "text": "the"
+ },
+ {
+ "id": 27044,
+ "start": 12379.89,
+ "end": 12380.59,
+ "text": "Commerce"
+ },
+ {
+ "id": 27045,
+ "start": 12380.59,
+ "end": 12380.95,
+ "text": "Committee"
+ },
+ {
+ "id": 27046,
+ "start": 12380.95,
+ "end": 12381.67,
+ "text": "subcommittee"
+ },
+ {
+ "id": 27047,
+ "start": 12381.67,
+ "end": 12381.89,
+ "text": "that"
+ },
+ {
+ "id": 27048,
+ "start": 12381.89,
+ "end": 12382.07,
+ "text": "has"
+ },
+ {
+ "id": 27049,
+ "start": 12382.07,
+ "end": 12382.67,
+ "text": "jurisdiction"
+ },
+ {
+ "id": 27050,
+ "start": 12382.67,
+ "end": 12382.83,
+ "text": "over"
+ },
+ {
+ "id": 27051,
+ "start": 12382.83,
+ "end": 12382.93,
+ "text": "the"
+ },
+ {
+ "id": 27052,
+ "start": 12382.93,
+ "end": 12383.15,
+ "text": "Federal"
+ },
+ {
+ "id": 27053,
+ "start": 12383.15,
+ "end": 12383.37,
+ "text": "Trade"
+ },
+ {
+ "id": 27054,
+ "start": 12383.37,
+ "end": 12383.73,
+ "text": "Commission."
+ },
+ {
+ "id": 27055,
+ "start": 12383.73,
+ "end": 12384.71,
+ "text": "I"
+ },
+ {
+ "id": 27056,
+ "start": 12384.71,
+ "end": 12385.03,
+ "text": "remain"
+ },
+ {
+ "id": 27057,
+ "start": 12385.03,
+ "end": 12385.47,
+ "text": "interested"
+ },
+ {
+ "id": 27058,
+ "start": 12385.47,
+ "end": 12385.75,
+ "text": "in"
+ },
+ {
+ "id": 27059,
+ "start": 12385.75,
+ "end": 12386.37,
+ "text": "Facebook's"
+ },
+ {
+ "id": 27060,
+ "start": 12386.37,
+ "end": 12386.85,
+ "text": "assertion"
+ },
+ {
+ "id": 27061,
+ "start": 12386.85,
+ "end": 12386.99,
+ "text": "that"
+ },
+ {
+ "id": 27062,
+ "start": 12386.99,
+ "end": 12387.09,
+ "text": "it"
+ },
+ {
+ "id": 27063,
+ "start": 12387.09,
+ "end": 12387.47,
+ "text": "rejects"
+ },
+ {
+ "id": 27064,
+ "start": 12387.47,
+ "end": 12387.71,
+ "text": "any"
+ },
+ {
+ "id": 27065,
+ "start": 12387.71,
+ "end": 12388.19,
+ "text": "suggestion"
+ },
+ {
+ "id": 27066,
+ "start": 12388.19,
+ "end": 12388.31,
+ "text": "of"
+ },
+ {
+ "id": 27067,
+ "start": 12388.31,
+ "end": 12388.79,
+ "text": "violating"
+ },
+ {
+ "id": 27068,
+ "start": 12388.79,
+ "end": 12389.01,
+ "text": "that"
+ },
+ {
+ "id": 27069,
+ "start": 12389.01,
+ "end": 12389.49,
+ "text": "consent"
+ },
+ {
+ "id": 27070,
+ "start": 12389.49,
+ "end": 12390.34,
+ "text": "order."
+ },
+ {
+ "id": 27071,
+ "start": 12390.34,
+ "end": 12391.12,
+ "text": "Part"
+ },
+ {
+ "id": 27072,
+ "start": 12391.12,
+ "end": 12391.28,
+ "text": "two"
+ },
+ {
+ "id": 27073,
+ "start": 12391.28,
+ "end": 12391.4,
+ "text": "of"
+ },
+ {
+ "id": 27074,
+ "start": 12391.4,
+ "end": 12391.56,
+ "text": "that"
+ },
+ {
+ "id": 27075,
+ "start": 12391.56,
+ "end": 12391.94,
+ "text": "consent"
+ },
+ {
+ "id": 27076,
+ "start": 12391.94,
+ "end": 12392.2,
+ "text": "order"
+ },
+ {
+ "id": 27077,
+ "start": 12392.2,
+ "end": 12392.78,
+ "text": "requires"
+ },
+ {
+ "id": 27078,
+ "start": 12392.78,
+ "end": 12393.02,
+ "text": "that"
+ },
+ {
+ "id": 27079,
+ "start": 12393.02,
+ "end": 12393.6,
+ "text": "Facebook"
+ },
+ {
+ "id": 27080,
+ "start": 12393.6,
+ "end": 12394.06,
+ "text": "quote"
+ },
+ {
+ "id": 27081,
+ "start": 12394.06,
+ "end": 12394.42,
+ "text": "clearly"
+ },
+ {
+ "id": 27082,
+ "start": 12394.42,
+ "end": 12394.64,
+ "text": "and"
+ },
+ {
+ "id": 27083,
+ "start": 12394.64,
+ "end": 12395.54,
+ "text": "prominently"
+ },
+ {
+ "id": 27084,
+ "start": 12395.54,
+ "end": 12396.56,
+ "text": "display"
+ },
+ {
+ "id": 27085,
+ "start": 12396.56,
+ "end": 12396.94,
+ "text": "notice"
+ },
+ {
+ "id": 27086,
+ "start": 12396.94,
+ "end": 12397.06,
+ "text": "and"
+ },
+ {
+ "id": 27087,
+ "start": 12397.06,
+ "end": 12397.46,
+ "text": "obtain"
+ },
+ {
+ "id": 27088,
+ "start": 12397.46,
+ "end": 12397.88,
+ "text": "users"
+ },
+ {
+ "id": 27089,
+ "start": 12397.88,
+ "end": 12398.48,
+ "text": "affirmative"
+ },
+ {
+ "id": 27090,
+ "start": 12398.48,
+ "end": 12399.02,
+ "text": "consent"
+ },
+ {
+ "id": 27091,
+ "start": 12399.02,
+ "end": 12400.02,
+ "text": "before"
+ },
+ {
+ "id": 27092,
+ "start": 12400.02,
+ "end": 12400.4,
+ "text": "sharing"
+ },
+ {
+ "id": 27093,
+ "start": 12400.4,
+ "end": 12400.6,
+ "text": "their"
+ },
+ {
+ "id": 27094,
+ "start": 12400.6,
+ "end": 12401.24,
+ "text": "information"
+ },
+ {
+ "id": 27095,
+ "start": 12401.24,
+ "end": 12401.5,
+ "text": "with"
+ },
+ {
+ "id": 27096,
+ "start": 12401.5,
+ "end": 12401.86,
+ "text": "quote"
+ },
+ {
+ "id": 27097,
+ "start": 12401.86,
+ "end": 12402.12,
+ "text": "any"
+ },
+ {
+ "id": 27098,
+ "start": 12402.12,
+ "end": 12402.42,
+ "text": "third"
+ },
+ {
+ "id": 27099,
+ "start": 12402.42,
+ "end": 12402.84,
+ "text": "party."
+ },
+ {
+ "id": 27100,
+ "start": 12402.84,
+ "end": 12404.06,
+ "text": "My"
+ },
+ {
+ "id": 27101,
+ "start": 12404.06,
+ "end": 12404.34,
+ "text": "question"
+ },
+ {
+ "id": 27102,
+ "start": 12404.34,
+ "end": 12404.52,
+ "text": "is"
+ },
+ {
+ "id": 27103,
+ "start": 12404.52,
+ "end": 12404.78,
+ "text": "how"
+ },
+ {
+ "id": 27104,
+ "start": 12404.78,
+ "end": 12405.02,
+ "text": "does"
+ },
+ {
+ "id": 27105,
+ "start": 12405.02,
+ "end": 12405.24,
+ "text": "the"
+ },
+ {
+ "id": 27106,
+ "start": 12405.24,
+ "end": 12405.64,
+ "text": "case"
+ },
+ {
+ "id": 27107,
+ "start": 12405.64,
+ "end": 12405.84,
+ "text": "of"
+ },
+ {
+ "id": 27108,
+ "start": 12405.84,
+ "end": 12406.4,
+ "text": "approximately"
+ },
+ {
+ "id": 27109,
+ "start": 12406.4,
+ "end": 12407.62,
+ "text": "87,000,000"
+ },
+ {
+ "id": 27110,
+ "start": 12407.62,
+ "end": 12408.28,
+ "text": "Facebook"
+ },
+ {
+ "id": 27111,
+ "start": 12408.28,
+ "end": 12408.76,
+ "text": "friends"
+ },
+ {
+ "id": 27112,
+ "start": 12408.76,
+ "end": 12409.66,
+ "text": "having"
+ },
+ {
+ "id": 27113,
+ "start": 12409.66,
+ "end": 12409.9,
+ "text": "their"
+ },
+ {
+ "id": 27114,
+ "start": 12409.9,
+ "end": 12410.26,
+ "text": "data"
+ },
+ {
+ "id": 27115,
+ "start": 12410.26,
+ "end": 12410.66,
+ "text": "shared"
+ },
+ {
+ "id": 27116,
+ "start": 12410.66,
+ "end": 12411.04,
+ "text": "with"
+ },
+ {
+ "id": 27117,
+ "start": 12411.04,
+ "end": 12411.08,
+ "text": "a"
+ },
+ {
+ "id": 27118,
+ "start": 12411.08,
+ "end": 12411.42,
+ "text": "third"
+ },
+ {
+ "id": 27119,
+ "start": 12411.42,
+ "end": 12411.8,
+ "text": "party"
+ },
+ {
+ "id": 27120,
+ "start": 12411.8,
+ "end": 12412.16,
+ "text": "due"
+ },
+ {
+ "id": 27121,
+ "start": 12412.16,
+ "end": 12412.34,
+ "text": "to"
+ },
+ {
+ "id": 27122,
+ "start": 12412.34,
+ "end": 12412.5,
+ "text": "the"
+ },
+ {
+ "id": 27123,
+ "start": 12412.5,
+ "end": 12413.18,
+ "text": "consent"
+ },
+ {
+ "id": 27124,
+ "start": 12413.18,
+ "end": 12413.28,
+ "text": "of"
+ },
+ {
+ "id": 27125,
+ "start": 12413.28,
+ "end": 12413.54,
+ "text": "only"
+ },
+ {
+ "id": 27126,
+ "start": 12413.54,
+ "end": 12414.7,
+ "text": "300,000"
+ },
+ {
+ "id": 27127,
+ "start": 12414.7,
+ "end": 12415.68,
+ "text": "consenting,"
+ },
+ {
+ "id": 27128,
+ "start": 12415.68,
+ "end": 12416.12,
+ "text": "users"
+ },
+ {
+ "id": 27129,
+ "start": 12416.12,
+ "end": 12416.76,
+ "text": "not"
+ },
+ {
+ "id": 27130,
+ "start": 12416.76,
+ "end": 12417.24,
+ "text": "violate"
+ },
+ {
+ "id": 27131,
+ "start": 12417.24,
+ "end": 12417.42,
+ "text": "that"
+ },
+ {
+ "id": 27132,
+ "start": 12417.42,
+ "end": 12418.7,
+ "text": "agreement."
+ },
+ {
+ "id": 27133,
+ "start": 12418.7,
+ "end": 12419.82,
+ "text": "Well,"
+ },
+ {
+ "id": 27134,
+ "start": 12419.82,
+ "end": 12420.64,
+ "text": "Senator,"
+ },
+ {
+ "id": 27135,
+ "start": 12420.64,
+ "end": 12421.22,
+ "text": "like"
+ },
+ {
+ "id": 27136,
+ "start": 12421.22,
+ "end": 12421.26,
+ "text": "I"
+ },
+ {
+ "id": 27137,
+ "start": 12421.26,
+ "end": 12421.46,
+ "text": "said"
+ },
+ {
+ "id": 27138,
+ "start": 12421.46,
+ "end": 12421.76,
+ "text": "earlier,"
+ },
+ {
+ "id": 27139,
+ "start": 12421.76,
+ "end": 12422.58,
+ "text": "our"
+ },
+ {
+ "id": 27140,
+ "start": 12422.58,
+ "end": 12422.82,
+ "text": "view"
+ },
+ {
+ "id": 27141,
+ "start": 12422.82,
+ "end": 12423.02,
+ "text": "is"
+ },
+ {
+ "id": 27142,
+ "start": 12423.02,
+ "end": 12424.4,
+ "text": "that"
+ },
+ {
+ "id": 27143,
+ "start": 12424.4,
+ "end": 12424.5,
+ "text": "we"
+ },
+ {
+ "id": 27144,
+ "start": 12424.5,
+ "end": 12424.76,
+ "text": "believe"
+ },
+ {
+ "id": 27145,
+ "start": 12424.76,
+ "end": 12424.94,
+ "text": "that"
+ },
+ {
+ "id": 27146,
+ "start": 12424.94,
+ "end": 12425.66,
+ "text": "we"
+ },
+ {
+ "id": 27147,
+ "start": 12425.66,
+ "end": 12426.2,
+ "text": "are"
+ },
+ {
+ "id": 27148,
+ "start": 12426.2,
+ "end": 12426.32,
+ "text": "in"
+ },
+ {
+ "id": 27149,
+ "start": 12426.32,
+ "end": 12426.78,
+ "text": "compliance"
+ },
+ {
+ "id": 27150,
+ "start": 12426.78,
+ "end": 12426.96,
+ "text": "with"
+ },
+ {
+ "id": 27151,
+ "start": 12426.96,
+ "end": 12427.04,
+ "text": "the"
+ },
+ {
+ "id": 27152,
+ "start": 12427.04,
+ "end": 12427.4,
+ "text": "consent"
+ },
+ {
+ "id": 27153,
+ "start": 12427.4,
+ "end": 12427.72,
+ "text": "order."
+ },
+ {
+ "id": 27154,
+ "start": 12427.72,
+ "end": 12427.94,
+ "text": "But"
+ },
+ {
+ "id": 27155,
+ "start": 12427.94,
+ "end": 12428.26,
+ "text": "I"
+ },
+ {
+ "id": 27156,
+ "start": 12428.26,
+ "end": 12428.44,
+ "text": "think"
+ },
+ {
+ "id": 27157,
+ "start": 12428.44,
+ "end": 12428.56,
+ "text": "that"
+ },
+ {
+ "id": 27158,
+ "start": 12428.56,
+ "end": 12428.64,
+ "text": "we"
+ },
+ {
+ "id": 27159,
+ "start": 12428.64,
+ "end": 12428.78,
+ "text": "have"
+ },
+ {
+ "id": 27160,
+ "start": 12428.78,
+ "end": 12428.84,
+ "text": "a"
+ },
+ {
+ "id": 27161,
+ "start": 12428.84,
+ "end": 12429.2,
+ "text": "broader"
+ },
+ {
+ "id": 27162,
+ "start": 12429.2,
+ "end": 12429.98,
+ "text": "responsibility"
+ },
+ {
+ "id": 27163,
+ "start": 12429.98,
+ "end": 12430.1,
+ "text": "to"
+ },
+ {
+ "id": 27164,
+ "start": 12430.1,
+ "end": 12430.4,
+ "text": "protect"
+ },
+ {
+ "id": 27165,
+ "start": 12430.4,
+ "end": 12430.76,
+ "text": "people's"
+ },
+ {
+ "id": 27166,
+ "start": 12430.76,
+ "end": 12431.58,
+ "text": "privacy"
+ },
+ {
+ "id": 27167,
+ "start": 12431.58,
+ "end": 12431.8,
+ "text": "even"
+ },
+ {
+ "id": 27168,
+ "start": 12431.8,
+ "end": 12432.14,
+ "text": "beyond"
+ },
+ {
+ "id": 27169,
+ "start": 12432.14,
+ "end": 12432.36,
+ "text": "that."
+ },
+ {
+ "id": 27170,
+ "start": 12432.36,
+ "end": 12433.12,
+ "text": "And"
+ },
+ {
+ "id": 27171,
+ "start": 12433.12,
+ "end": 12434.02,
+ "text": "in"
+ },
+ {
+ "id": 27172,
+ "start": 12434.02,
+ "end": 12434.2,
+ "text": "this"
+ },
+ {
+ "id": 27173,
+ "start": 12434.2,
+ "end": 12434.64,
+ "text": "specific"
+ },
+ {
+ "id": 27174,
+ "start": 12434.64,
+ "end": 12434.9,
+ "text": "case,"
+ },
+ {
+ "id": 27175,
+ "start": 12434.9,
+ "end": 12435.62,
+ "text": "the"
+ },
+ {
+ "id": 27176,
+ "start": 12435.62,
+ "end": 12435.82,
+ "text": "way"
+ },
+ {
+ "id": 27177,
+ "start": 12435.82,
+ "end": 12435.96,
+ "text": "that"
+ },
+ {
+ "id": 27178,
+ "start": 12435.96,
+ "end": 12436.32,
+ "text": "the"
+ },
+ {
+ "id": 27179,
+ "start": 12436.32,
+ "end": 12436.88,
+ "text": "work"
+ },
+ {
+ "id": 27180,
+ "start": 12436.88,
+ "end": 12437.4,
+ "text": "or"
+ },
+ {
+ "id": 27181,
+ "start": 12437.4,
+ "end": 12437.6,
+ "text": "that"
+ },
+ {
+ "id": 27182,
+ "start": 12437.6,
+ "end": 12437.74,
+ "text": "you"
+ },
+ {
+ "id": 27183,
+ "start": 12437.74,
+ "end": 12437.92,
+ "text": "could"
+ },
+ {
+ "id": 27184,
+ "start": 12437.92,
+ "end": 12438.18,
+ "text": "sign"
+ },
+ {
+ "id": 27185,
+ "start": 12438.18,
+ "end": 12438.4,
+ "text": "into"
+ },
+ {
+ "id": 27186,
+ "start": 12438.4,
+ "end": 12438.5,
+ "text": "an"
+ },
+ {
+ "id": 27187,
+ "start": 12438.5,
+ "end": 12438.74,
+ "text": "app"
+ },
+ {
+ "id": 27188,
+ "start": 12438.74,
+ "end": 12439,
+ "text": "and"
+ },
+ {
+ "id": 27189,
+ "start": 12439,
+ "end": 12439.36,
+ "text": "bring"
+ },
+ {
+ "id": 27190,
+ "start": 12439.36,
+ "end": 12439.54,
+ "text": "some"
+ },
+ {
+ "id": 27191,
+ "start": 12439.54,
+ "end": 12439.64,
+ "text": "of"
+ },
+ {
+ "id": 27192,
+ "start": 12439.64,
+ "end": 12439.82,
+ "text": "your"
+ },
+ {
+ "id": 27193,
+ "start": 12439.82,
+ "end": 12440.36,
+ "text": "information."
+ },
+ {
+ "id": 27194,
+ "start": 12440.36,
+ "end": 12440.54,
+ "text": "And"
+ },
+ {
+ "id": 27195,
+ "start": 12440.54,
+ "end": 12440.72,
+ "text": "some"
+ },
+ {
+ "id": 27196,
+ "start": 12440.72,
+ "end": 12440.8,
+ "text": "of"
+ },
+ {
+ "id": 27197,
+ "start": 12440.8,
+ "end": 12440.96,
+ "text": "your"
+ },
+ {
+ "id": 27198,
+ "start": 12440.96,
+ "end": 12441.2,
+ "text": "friends"
+ },
+ {
+ "id": 27199,
+ "start": 12441.2,
+ "end": 12441.78,
+ "text": "information"
+ },
+ {
+ "id": 27200,
+ "start": 12441.78,
+ "end": 12442.6,
+ "text": "is"
+ },
+ {
+ "id": 27201,
+ "start": 12442.6,
+ "end": 12442.88,
+ "text": "how"
+ },
+ {
+ "id": 27202,
+ "start": 12442.88,
+ "end": 12443.02,
+ "text": "we"
+ },
+ {
+ "id": 27203,
+ "start": 12443.02,
+ "end": 12443.42,
+ "text": "explained"
+ },
+ {
+ "id": 27204,
+ "start": 12443.42,
+ "end": 12443.52,
+ "text": "it"
+ },
+ {
+ "id": 27205,
+ "start": 12443.52,
+ "end": 12443.66,
+ "text": "would"
+ },
+ {
+ "id": 27206,
+ "start": 12443.66,
+ "end": 12443.84,
+ "text": "work."
+ },
+ {
+ "id": 27207,
+ "start": 12443.84,
+ "end": 12444.28,
+ "text": "People"
+ },
+ {
+ "id": 27208,
+ "start": 12444.28,
+ "end": 12444.48,
+ "text": "had"
+ },
+ {
+ "id": 27209,
+ "start": 12444.48,
+ "end": 12444.86,
+ "text": "settings"
+ },
+ {
+ "id": 27210,
+ "start": 12444.86,
+ "end": 12445,
+ "text": "to"
+ },
+ {
+ "id": 27211,
+ "start": 12445,
+ "end": 12445.16,
+ "text": "that"
+ },
+ {
+ "id": 27212,
+ "start": 12445.16,
+ "end": 12445.5,
+ "text": "effect."
+ },
+ {
+ "id": 27213,
+ "start": 12445.5,
+ "end": 12446.98,
+ "text": "The"
+ },
+ {
+ "id": 27214,
+ "start": 12446.98,
+ "end": 12447.72,
+ "text": "we"
+ },
+ {
+ "id": 27215,
+ "start": 12447.72,
+ "end": 12448.2,
+ "text": "explained"
+ },
+ {
+ "id": 27216,
+ "start": 12448.2,
+ "end": 12448.54,
+ "text": "and"
+ },
+ {
+ "id": 27217,
+ "start": 12448.54,
+ "end": 12448.68,
+ "text": "they"
+ },
+ {
+ "id": 27218,
+ "start": 12448.68,
+ "end": 12449.16,
+ "text": "consented"
+ },
+ {
+ "id": 27219,
+ "start": 12449.16,
+ "end": 12449.56,
+ "text": "to"
+ },
+ {
+ "id": 27220,
+ "start": 12449.56,
+ "end": 12449.66,
+ "text": "it"
+ },
+ {
+ "id": 27221,
+ "start": 12449.66,
+ "end": 12449.94,
+ "text": "working"
+ },
+ {
+ "id": 27222,
+ "start": 12449.94,
+ "end": 12450.1,
+ "text": "that"
+ },
+ {
+ "id": 27223,
+ "start": 12450.1,
+ "end": 12450.3,
+ "text": "way"
+ },
+ {
+ "id": 27224,
+ "start": 12450.3,
+ "end": 12451.1,
+ "text": "and"
+ },
+ {
+ "id": 27225,
+ "start": 12451.1,
+ "end": 12452.2,
+ "text": "the"
+ },
+ {
+ "id": 27226,
+ "start": 12452.2,
+ "end": 12452.52,
+ "text": "system"
+ },
+ {
+ "id": 27227,
+ "start": 12452.52,
+ "end": 12453,
+ "text": "basically"
+ },
+ {
+ "id": 27228,
+ "start": 12453,
+ "end": 12453.28,
+ "text": "worked"
+ },
+ {
+ "id": 27229,
+ "start": 12453.28,
+ "end": 12453.4,
+ "text": "as"
+ },
+ {
+ "id": 27230,
+ "start": 12453.4,
+ "end": 12453.52,
+ "text": "it"
+ },
+ {
+ "id": 27231,
+ "start": 12453.52,
+ "end": 12453.68,
+ "text": "was"
+ },
+ {
+ "id": 27232,
+ "start": 12453.68,
+ "end": 12454.16,
+ "text": "designed"
+ },
+ {
+ "id": 27233,
+ "start": 12454.16,
+ "end": 12454.6,
+ "text": "the"
+ },
+ {
+ "id": 27234,
+ "start": 12454.6,
+ "end": 12454.9,
+ "text": "issue"
+ },
+ {
+ "id": 27235,
+ "start": 12454.9,
+ "end": 12455.04,
+ "text": "is"
+ },
+ {
+ "id": 27236,
+ "start": 12455.04,
+ "end": 12455.2,
+ "text": "that"
+ },
+ {
+ "id": 27237,
+ "start": 12455.2,
+ "end": 12455.38,
+ "text": "we"
+ },
+ {
+ "id": 27238,
+ "start": 12455.38,
+ "end": 12455.76,
+ "text": "designed"
+ },
+ {
+ "id": 27239,
+ "start": 12455.76,
+ "end": 12455.9,
+ "text": "the"
+ },
+ {
+ "id": 27240,
+ "start": 12455.9,
+ "end": 12456.22,
+ "text": "system"
+ },
+ {
+ "id": 27241,
+ "start": 12456.22,
+ "end": 12456.34,
+ "text": "in"
+ },
+ {
+ "id": 27242,
+ "start": 12456.34,
+ "end": 12456.42,
+ "text": "a"
+ },
+ {
+ "id": 27243,
+ "start": 12456.42,
+ "end": 12456.58,
+ "text": "way"
+ },
+ {
+ "id": 27244,
+ "start": 12456.58,
+ "end": 12456.72,
+ "text": "that"
+ },
+ {
+ "id": 27245,
+ "start": 12456.72,
+ "end": 12457.1,
+ "text": "wasn't"
+ },
+ {
+ "id": 27246,
+ "start": 12457.1,
+ "end": 12457.79,
+ "text": "good."
+ },
+ {
+ "id": 27247,
+ "start": 12457.79,
+ "end": 12458.05,
+ "text": "And"
+ },
+ {
+ "id": 27248,
+ "start": 12458.05,
+ "end": 12458.53,
+ "text": "now"
+ },
+ {
+ "id": 27249,
+ "start": 12458.53,
+ "end": 12458.77,
+ "text": "we"
+ },
+ {
+ "id": 27250,
+ "start": 12458.77,
+ "end": 12459.39,
+ "text": "starting"
+ },
+ {
+ "id": 27251,
+ "start": 12459.39,
+ "end": 12459.47,
+ "text": "in"
+ },
+ {
+ "id": 27252,
+ "start": 12459.47,
+ "end": 12459.95,
+ "text": "20"
+ },
+ {
+ "id": 27253,
+ "start": 12459.95,
+ "end": 12460.63,
+ "text": "and"
+ },
+ {
+ "id": 27254,
+ "start": 12460.63,
+ "end": 12460.81,
+ "text": "have"
+ },
+ {
+ "id": 27255,
+ "start": 12460.81,
+ "end": 12461.15,
+ "text": "changed"
+ },
+ {
+ "id": 27256,
+ "start": 12461.15,
+ "end": 12461.29,
+ "text": "the"
+ },
+ {
+ "id": 27257,
+ "start": 12461.29,
+ "end": 12461.61,
+ "text": "design"
+ },
+ {
+ "id": 27258,
+ "start": 12461.61,
+ "end": 12461.69,
+ "text": "of"
+ },
+ {
+ "id": 27259,
+ "start": 12461.69,
+ "end": 12461.81,
+ "text": "the"
+ },
+ {
+ "id": 27260,
+ "start": 12461.81,
+ "end": 12462.23,
+ "text": "system"
+ },
+ {
+ "id": 27261,
+ "start": 12462.23,
+ "end": 12462.65,
+ "text": "so"
+ },
+ {
+ "id": 27262,
+ "start": 12462.65,
+ "end": 12462.89,
+ "text": "that"
+ },
+ {
+ "id": 27263,
+ "start": 12462.89,
+ "end": 12463.13,
+ "text": "way,"
+ },
+ {
+ "id": 27264,
+ "start": 12463.13,
+ "end": 12463.35,
+ "text": "it"
+ },
+ {
+ "id": 27265,
+ "start": 12463.35,
+ "end": 12463.71,
+ "text": "just"
+ },
+ {
+ "id": 27266,
+ "start": 12463.71,
+ "end": 12464.41,
+ "text": "massively"
+ },
+ {
+ "id": 27267,
+ "start": 12464.41,
+ "end": 12464.75,
+ "text": "restrict"
+ },
+ {
+ "id": 27268,
+ "start": 12464.75,
+ "end": 12464.97,
+ "text": "the"
+ },
+ {
+ "id": 27269,
+ "start": 12464.97,
+ "end": 12465.25,
+ "text": "amount"
+ },
+ {
+ "id": 27270,
+ "start": 12465.25,
+ "end": 12465.73,
+ "text": "of"
+ },
+ {
+ "id": 27271,
+ "start": 12465.73,
+ "end": 12466.69,
+ "text": "data"
+ },
+ {
+ "id": 27272,
+ "start": 12466.69,
+ "end": 12467.07,
+ "text": "access"
+ },
+ {
+ "id": 27273,
+ "start": 12467.07,
+ "end": 12467.23,
+ "text": "that"
+ },
+ {
+ "id": 27274,
+ "start": 12467.23,
+ "end": 12467.31,
+ "text": "a"
+ },
+ {
+ "id": 27275,
+ "start": 12467.31,
+ "end": 12467.73,
+ "text": "developer"
+ },
+ {
+ "id": 27276,
+ "start": 12467.73,
+ "end": 12467.91,
+ "text": "can"
+ },
+ {
+ "id": 27277,
+ "start": 12467.91,
+ "end": 12468.6,
+ "text": "get"
+ },
+ {
+ "id": 27278,
+ "start": 12468.6,
+ "end": 12469.18,
+ "text": "the"
+ },
+ {
+ "id": 27279,
+ "start": 12469.18,
+ "end": 12469.64,
+ "text": "the"
+ },
+ {
+ "id": 27280,
+ "start": 12469.64,
+ "end": 12470.14,
+ "text": "Lord"
+ },
+ {
+ "id": 27281,
+ "start": 12470.14,
+ "end": 12470.26,
+ "text": "I'm"
+ },
+ {
+ "id": 27282,
+ "start": 12470.26,
+ "end": 12470.46,
+ "text": "sorry,"
+ },
+ {
+ "id": 27283,
+ "start": 12470.46,
+ "end": 12470.58,
+ "text": "the"
+ },
+ {
+ "id": 27284,
+ "start": 12470.58,
+ "end": 12471.52,
+ "text": "300,000"
+ },
+ {
+ "id": 27285,
+ "start": 12471.52,
+ "end": 12471.96,
+ "text": "people,"
+ },
+ {
+ "id": 27286,
+ "start": 12471.96,
+ "end": 12473,
+ "text": "they"
+ },
+ {
+ "id": 27287,
+ "start": 12473,
+ "end": 12473.3,
+ "text": "were"
+ },
+ {
+ "id": 27288,
+ "start": 12473.3,
+ "end": 12473.94,
+ "text": "treated"
+ },
+ {
+ "id": 27289,
+ "start": 12473.94,
+ "end": 12474.12,
+ "text": "in"
+ },
+ {
+ "id": 27290,
+ "start": 12474.12,
+ "end": 12474.2,
+ "text": "a"
+ },
+ {
+ "id": 27291,
+ "start": 12474.2,
+ "end": 12474.38,
+ "text": "way"
+ },
+ {
+ "id": 27292,
+ "start": 12474.38,
+ "end": 12474.6,
+ "text": "that"
+ },
+ {
+ "id": 27293,
+ "start": 12474.6,
+ "end": 12475.36,
+ "text": "it"
+ },
+ {
+ "id": 27294,
+ "start": 12475.36,
+ "end": 12475.48,
+ "text": "was"
+ },
+ {
+ "id": 27295,
+ "start": 12475.48,
+ "end": 12475.96,
+ "text": "appropriate,"
+ },
+ {
+ "id": 27296,
+ "start": 12475.96,
+ "end": 12476.12,
+ "text": "they"
+ },
+ {
+ "id": 27297,
+ "start": 12476.12,
+ "end": 12476.62,
+ "text": "consented."
+ },
+ {
+ "id": 27298,
+ "start": 12476.62,
+ "end": 12476.92,
+ "text": "But"
+ },
+ {
+ "id": 27299,
+ "start": 12476.92,
+ "end": 12477.12,
+ "text": "you're"
+ },
+ {
+ "id": 27300,
+ "start": 12477.12,
+ "end": 12477.24,
+ "text": "not"
+ },
+ {
+ "id": 27301,
+ "start": 12477.24,
+ "end": 12477.72,
+ "text": "suggesting"
+ },
+ {
+ "id": 27302,
+ "start": 12477.72,
+ "end": 12477.88,
+ "text": "that"
+ },
+ {
+ "id": 27303,
+ "start": 12477.88,
+ "end": 12478.04,
+ "text": "the"
+ },
+ {
+ "id": 27304,
+ "start": 12478.04,
+ "end": 12478.42,
+ "text": "friends"
+ },
+ {
+ "id": 27305,
+ "start": 12478.42,
+ "end": 12479.8,
+ "text": "consented"
+ },
+ {
+ "id": 27306,
+ "start": 12479.8,
+ "end": 12481.43,
+ "text": "Senator"
+ },
+ {
+ "id": 27307,
+ "start": 12481.43,
+ "end": 12481.83,
+ "text": "believe"
+ },
+ {
+ "id": 27308,
+ "start": 12481.83,
+ "end": 12482.43,
+ "text": "that"
+ },
+ {
+ "id": 27309,
+ "start": 12482.43,
+ "end": 12482.79,
+ "text": "we"
+ },
+ {
+ "id": 27310,
+ "start": 12482.79,
+ "end": 12483.75,
+ "text": "rolled"
+ },
+ {
+ "id": 27311,
+ "start": 12483.75,
+ "end": 12483.95,
+ "text": "out"
+ },
+ {
+ "id": 27312,
+ "start": 12483.95,
+ "end": 12484.29,
+ "text": "this"
+ },
+ {
+ "id": 27313,
+ "start": 12484.29,
+ "end": 12484.77,
+ "text": "developer"
+ },
+ {
+ "id": 27314,
+ "start": 12484.77,
+ "end": 12485.29,
+ "text": "platform"
+ },
+ {
+ "id": 27315,
+ "start": 12485.29,
+ "end": 12485.59,
+ "text": "and"
+ },
+ {
+ "id": 27316,
+ "start": 12485.59,
+ "end": 12485.77,
+ "text": "that"
+ },
+ {
+ "id": 27317,
+ "start": 12485.77,
+ "end": 12485.91,
+ "text": "we"
+ },
+ {
+ "id": 27318,
+ "start": 12485.91,
+ "end": 12486.33,
+ "text": "explain"
+ },
+ {
+ "id": 27319,
+ "start": 12486.33,
+ "end": 12486.43,
+ "text": "to"
+ },
+ {
+ "id": 27320,
+ "start": 12486.43,
+ "end": 12486.77,
+ "text": "people"
+ },
+ {
+ "id": 27321,
+ "start": 12486.77,
+ "end": 12487.35,
+ "text": "how"
+ },
+ {
+ "id": 27322,
+ "start": 12487.35,
+ "end": 12487.47,
+ "text": "it"
+ },
+ {
+ "id": 27323,
+ "start": 12487.47,
+ "end": 12487.71,
+ "text": "worked"
+ },
+ {
+ "id": 27324,
+ "start": 12487.71,
+ "end": 12487.81,
+ "text": "and"
+ },
+ {
+ "id": 27325,
+ "start": 12487.81,
+ "end": 12487.95,
+ "text": "that"
+ },
+ {
+ "id": 27326,
+ "start": 12487.95,
+ "end": 12488.09,
+ "text": "they"
+ },
+ {
+ "id": 27327,
+ "start": 12488.09,
+ "end": 12488.27,
+ "text": "did"
+ },
+ {
+ "id": 27328,
+ "start": 12488.27,
+ "end": 12488.63,
+ "text": "consent"
+ },
+ {
+ "id": 27329,
+ "start": 12488.63,
+ "end": 12488.75,
+ "text": "to"
+ },
+ {
+ "id": 27330,
+ "start": 12488.75,
+ "end": 12488.87,
+ "text": "it."
+ },
+ {
+ "id": 27331,
+ "start": 12488.87,
+ "end": 12489.67,
+ "text": "It"
+ },
+ {
+ "id": 27332,
+ "start": 12489.67,
+ "end": 12489.87,
+ "text": "makes"
+ },
+ {
+ "id": 27333,
+ "start": 12489.87,
+ "end": 12490.09,
+ "text": "sense,"
+ },
+ {
+ "id": 27334,
+ "start": 12490.09,
+ "end": 12490.25,
+ "text": "I"
+ },
+ {
+ "id": 27335,
+ "start": 12490.25,
+ "end": 12490.43,
+ "text": "think"
+ },
+ {
+ "id": 27336,
+ "start": 12490.43,
+ "end": 12490.83,
+ "text": "to"
+ },
+ {
+ "id": 27337,
+ "start": 12490.83,
+ "end": 12490.97,
+ "text": "go"
+ },
+ {
+ "id": 27338,
+ "start": 12490.97,
+ "end": 12491.29,
+ "text": "through"
+ },
+ {
+ "id": 27339,
+ "start": 12491.29,
+ "end": 12492.35,
+ "text": "the"
+ },
+ {
+ "id": 27340,
+ "start": 12492.35,
+ "end": 12492.53,
+ "text": "way."
+ },
+ {
+ "id": 27341,
+ "start": 12492.53,
+ "end": 12492.63,
+ "text": "The"
+ },
+ {
+ "id": 27342,
+ "start": 12492.63,
+ "end": 12493.09,
+ "text": "platform"
+ },
+ {
+ "id": 27343,
+ "start": 12493.09,
+ "end": 12493.35,
+ "text": "works"
+ },
+ {
+ "id": 27344,
+ "start": 12493.35,
+ "end": 12494.26,
+ "text": "minutes"
+ },
+ {
+ "id": 27345,
+ "start": 12494.26,
+ "end": 12494.9,
+ "text": "in"
+ },
+ {
+ "id": 27346,
+ "start": 12494.9,
+ "end": 12495.14,
+ "text": "two"
+ },
+ {
+ "id": 27347,
+ "start": 12495.14,
+ "end": 12495.52,
+ "text": "and"
+ },
+ {
+ "id": 27348,
+ "start": 12495.52,
+ "end": 12496.42,
+ "text": "7"
+ },
+ {
+ "id": 27349,
+ "start": 12496.42,
+ "end": 12497.42,
+ "text": "we"
+ },
+ {
+ "id": 27350,
+ "start": 12497.42,
+ "end": 12497.92,
+ "text": "announced"
+ },
+ {
+ "id": 27351,
+ "start": 12497.92,
+ "end": 12498.08,
+ "text": "the"
+ },
+ {
+ "id": 27352,
+ "start": 12498.08,
+ "end": 12498.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 27353,
+ "start": 12498.46,
+ "end": 12498.88,
+ "text": "developer"
+ },
+ {
+ "id": 27354,
+ "start": 12498.88,
+ "end": 12499.26,
+ "text": "platform."
+ },
+ {
+ "id": 27355,
+ "start": 12499.26,
+ "end": 12499.36,
+ "text": "And"
+ },
+ {
+ "id": 27356,
+ "start": 12499.36,
+ "end": 12499.44,
+ "text": "the"
+ },
+ {
+ "id": 27357,
+ "start": 12499.44,
+ "end": 12499.7,
+ "text": "idea"
+ },
+ {
+ "id": 27358,
+ "start": 12499.7,
+ "end": 12499.9,
+ "text": "was"
+ },
+ {
+ "id": 27359,
+ "start": 12499.9,
+ "end": 12500.14,
+ "text": "that"
+ },
+ {
+ "id": 27360,
+ "start": 12500.14,
+ "end": 12500.66,
+ "text": "you"
+ },
+ {
+ "id": 27361,
+ "start": 12500.66,
+ "end": 12500.96,
+ "text": "wanted"
+ },
+ {
+ "id": 27362,
+ "start": 12500.96,
+ "end": 12501.12,
+ "text": "to"
+ },
+ {
+ "id": 27363,
+ "start": 12501.12,
+ "end": 12501.84,
+ "text": "make"
+ },
+ {
+ "id": 27364,
+ "start": 12501.84,
+ "end": 12502.5,
+ "text": "more"
+ },
+ {
+ "id": 27365,
+ "start": 12502.5,
+ "end": 12503.04,
+ "text": "experiences"
+ },
+ {
+ "id": 27366,
+ "start": 12503.04,
+ "end": 12503.54,
+ "text": "social"
+ },
+ {
+ "id": 27367,
+ "start": 12503.54,
+ "end": 12504.1,
+ "text": "right?"
+ },
+ {
+ "id": 27368,
+ "start": 12504.1,
+ "end": 12504.32,
+ "text": "So,"
+ },
+ {
+ "id": 27369,
+ "start": 12504.32,
+ "end": 12505.22,
+ "text": "for"
+ },
+ {
+ "id": 27370,
+ "start": 12505.22,
+ "end": 12505.74,
+ "text": "example,"
+ },
+ {
+ "id": 27371,
+ "start": 12505.74,
+ "end": 12506.78,
+ "text": "if"
+ },
+ {
+ "id": 27372,
+ "start": 12506.78,
+ "end": 12507.04,
+ "text": "you"
+ },
+ {
+ "id": 27373,
+ "start": 12507.04,
+ "end": 12507.9,
+ "text": "might"
+ },
+ {
+ "id": 27374,
+ "start": 12507.9,
+ "end": 12508.02,
+ "text": "want"
+ },
+ {
+ "id": 27375,
+ "start": 12508.02,
+ "end": 12508.08,
+ "text": "to"
+ },
+ {
+ "id": 27376,
+ "start": 12508.08,
+ "end": 12508.2,
+ "text": "have"
+ },
+ {
+ "id": 27377,
+ "start": 12508.2,
+ "end": 12508.24,
+ "text": "a"
+ },
+ {
+ "id": 27378,
+ "start": 12508.24,
+ "end": 12508.7,
+ "text": "calendar"
+ },
+ {
+ "id": 27379,
+ "start": 12508.7,
+ "end": 12508.98,
+ "text": "that"
+ },
+ {
+ "id": 27380,
+ "start": 12508.98,
+ "end": 12509.18,
+ "text": "can"
+ },
+ {
+ "id": 27381,
+ "start": 12509.18,
+ "end": 12509.34,
+ "text": "have"
+ },
+ {
+ "id": 27382,
+ "start": 12509.34,
+ "end": 12509.48,
+ "text": "your"
+ },
+ {
+ "id": 27383,
+ "start": 12509.48,
+ "end": 12509.76,
+ "text": "friend's"
+ },
+ {
+ "id": 27384,
+ "start": 12509.76,
+ "end": 12510.22,
+ "text": "birthdays"
+ },
+ {
+ "id": 27385,
+ "start": 12510.22,
+ "end": 12510.4,
+ "text": "on"
+ },
+ {
+ "id": 27386,
+ "start": 12510.4,
+ "end": 12510.56,
+ "text": "it."
+ },
+ {
+ "id": 27387,
+ "start": 12510.56,
+ "end": 12510.82,
+ "text": "Or"
+ },
+ {
+ "id": 27388,
+ "start": 12510.82,
+ "end": 12511.26,
+ "text": "you"
+ },
+ {
+ "id": 27389,
+ "start": 12511.26,
+ "end": 12511.44,
+ "text": "might"
+ },
+ {
+ "id": 27390,
+ "start": 12511.44,
+ "end": 12511.58,
+ "text": "want"
+ },
+ {
+ "id": 27391,
+ "start": 12511.58,
+ "end": 12511.76,
+ "text": "your"
+ },
+ {
+ "id": 27392,
+ "start": 12511.76,
+ "end": 12512.18,
+ "text": "address"
+ },
+ {
+ "id": 27393,
+ "start": 12512.18,
+ "end": 12512.46,
+ "text": "book"
+ },
+ {
+ "id": 27394,
+ "start": 12512.46,
+ "end": 12512.84,
+ "text": "to"
+ },
+ {
+ "id": 27395,
+ "start": 12512.84,
+ "end": 12513.02,
+ "text": "have"
+ },
+ {
+ "id": 27396,
+ "start": 12513.02,
+ "end": 12513.18,
+ "text": "your"
+ },
+ {
+ "id": 27397,
+ "start": 12513.18,
+ "end": 12513.48,
+ "text": "friend's"
+ },
+ {
+ "id": 27398,
+ "start": 12513.48,
+ "end": 12513.9,
+ "text": "pictures"
+ },
+ {
+ "id": 27399,
+ "start": 12513.9,
+ "end": 12514.04,
+ "text": "in"
+ },
+ {
+ "id": 27400,
+ "start": 12514.04,
+ "end": 12514.2,
+ "text": "it."
+ },
+ {
+ "id": 27401,
+ "start": 12514.2,
+ "end": 12514.68,
+ "text": "Or"
+ },
+ {
+ "id": 27402,
+ "start": 12514.68,
+ "end": 12514.82,
+ "text": "you"
+ },
+ {
+ "id": 27403,
+ "start": 12514.82,
+ "end": 12514.98,
+ "text": "might"
+ },
+ {
+ "id": 27404,
+ "start": 12514.98,
+ "end": 12515.1,
+ "text": "want"
+ },
+ {
+ "id": 27405,
+ "start": 12515.1,
+ "end": 12515.18,
+ "text": "to"
+ },
+ {
+ "id": 27406,
+ "start": 12515.18,
+ "end": 12515.5,
+ "text": "map"
+ },
+ {
+ "id": 27407,
+ "start": 12515.5,
+ "end": 12515.76,
+ "text": "that"
+ },
+ {
+ "id": 27408,
+ "start": 12515.76,
+ "end": 12516.22,
+ "text": "can"
+ },
+ {
+ "id": 27409,
+ "start": 12516.22,
+ "end": 12516.36,
+ "text": "show"
+ },
+ {
+ "id": 27410,
+ "start": 12516.36,
+ "end": 12516.53,
+ "text": "you"
+ },
+ {
+ "id": 27411,
+ "start": 12516.53,
+ "end": 12516.87,
+ "text": "friends"
+ },
+ {
+ "id": 27412,
+ "start": 12516.87,
+ "end": 12517.39,
+ "text": "addresses"
+ },
+ {
+ "id": 27413,
+ "start": 12517.39,
+ "end": 12517.55,
+ "text": "on"
+ },
+ {
+ "id": 27414,
+ "start": 12517.55,
+ "end": 12517.69,
+ "text": "it."
+ },
+ {
+ "id": 27415,
+ "start": 12517.69,
+ "end": 12518.39,
+ "text": "In"
+ },
+ {
+ "id": 27416,
+ "start": 12518.39,
+ "end": 12518.63,
+ "text": "order"
+ },
+ {
+ "id": 27417,
+ "start": 12518.63,
+ "end": 12518.75,
+ "text": "to"
+ },
+ {
+ "id": 27418,
+ "start": 12518.75,
+ "end": 12518.85,
+ "text": "do"
+ },
+ {
+ "id": 27419,
+ "start": 12518.85,
+ "end": 12519.07,
+ "text": "that,"
+ },
+ {
+ "id": 27420,
+ "start": 12519.07,
+ "end": 12519.63,
+ "text": "we"
+ },
+ {
+ "id": 27421,
+ "start": 12519.63,
+ "end": 12519.87,
+ "text": "needed"
+ },
+ {
+ "id": 27422,
+ "start": 12519.87,
+ "end": 12519.97,
+ "text": "to"
+ },
+ {
+ "id": 27423,
+ "start": 12519.97,
+ "end": 12520.15,
+ "text": "build"
+ },
+ {
+ "id": 27424,
+ "start": 12520.15,
+ "end": 12520.23,
+ "text": "a"
+ },
+ {
+ "id": 27425,
+ "start": 12520.23,
+ "end": 12520.51,
+ "text": "tool"
+ },
+ {
+ "id": 27426,
+ "start": 12520.51,
+ "end": 12520.89,
+ "text": "that"
+ },
+ {
+ "id": 27427,
+ "start": 12520.89,
+ "end": 12521.27,
+ "text": "allowed"
+ },
+ {
+ "id": 27428,
+ "start": 12521.27,
+ "end": 12521.67,
+ "text": "people"
+ },
+ {
+ "id": 27429,
+ "start": 12521.67,
+ "end": 12521.95,
+ "text": "to"
+ },
+ {
+ "id": 27430,
+ "start": 12521.95,
+ "end": 12522.55,
+ "text": "sign"
+ },
+ {
+ "id": 27431,
+ "start": 12522.55,
+ "end": 12522.77,
+ "text": "into"
+ },
+ {
+ "id": 27432,
+ "start": 12522.77,
+ "end": 12522.85,
+ "text": "an"
+ },
+ {
+ "id": 27433,
+ "start": 12522.85,
+ "end": 12523.07,
+ "text": "app"
+ },
+ {
+ "id": 27434,
+ "start": 12523.07,
+ "end": 12523.39,
+ "text": "and"
+ },
+ {
+ "id": 27435,
+ "start": 12523.39,
+ "end": 12523.61,
+ "text": "bring"
+ },
+ {
+ "id": 27436,
+ "start": 12523.61,
+ "end": 12523.83,
+ "text": "some"
+ },
+ {
+ "id": 27437,
+ "start": 12523.83,
+ "end": 12523.91,
+ "text": "of"
+ },
+ {
+ "id": 27438,
+ "start": 12523.91,
+ "end": 12524.13,
+ "text": "their"
+ },
+ {
+ "id": 27439,
+ "start": 12524.13,
+ "end": 12524.75,
+ "text": "information"
+ },
+ {
+ "id": 27440,
+ "start": 12524.75,
+ "end": 12525.65,
+ "text": "and"
+ },
+ {
+ "id": 27441,
+ "start": 12525.65,
+ "end": 12526.01,
+ "text": "some"
+ },
+ {
+ "id": 27442,
+ "start": 12526.01,
+ "end": 12526.39,
+ "text": "of"
+ },
+ {
+ "id": 27443,
+ "start": 12526.39,
+ "end": 12526.57,
+ "text": "their"
+ },
+ {
+ "id": 27444,
+ "start": 12526.57,
+ "end": 12526.81,
+ "text": "friends"
+ },
+ {
+ "id": 27445,
+ "start": 12526.81,
+ "end": 12527.41,
+ "text": "information"
+ },
+ {
+ "id": 27446,
+ "start": 12527.41,
+ "end": 12527.61,
+ "text": "to"
+ },
+ {
+ "id": 27447,
+ "start": 12527.61,
+ "end": 12527.81,
+ "text": "those"
+ },
+ {
+ "id": 27448,
+ "start": 12527.81,
+ "end": 12528.11,
+ "text": "apps."
+ },
+ {
+ "id": 27449,
+ "start": 12528.11,
+ "end": 12529.13,
+ "text": "We"
+ },
+ {
+ "id": 27450,
+ "start": 12529.13,
+ "end": 12529.31,
+ "text": "made"
+ },
+ {
+ "id": 27451,
+ "start": 12529.31,
+ "end": 12529.43,
+ "text": "it"
+ },
+ {
+ "id": 27452,
+ "start": 12529.43,
+ "end": 12529.65,
+ "text": "very"
+ },
+ {
+ "id": 27453,
+ "start": 12529.65,
+ "end": 12529.87,
+ "text": "clear"
+ },
+ {
+ "id": 27454,
+ "start": 12529.87,
+ "end": 12530.01,
+ "text": "that"
+ },
+ {
+ "id": 27455,
+ "start": 12530.01,
+ "end": 12530.15,
+ "text": "this"
+ },
+ {
+ "id": 27456,
+ "start": 12530.15,
+ "end": 12530.27,
+ "text": "is"
+ },
+ {
+ "id": 27457,
+ "start": 12530.27,
+ "end": 12530.39,
+ "text": "how"
+ },
+ {
+ "id": 27458,
+ "start": 12530.39,
+ "end": 12530.53,
+ "text": "it"
+ },
+ {
+ "id": 27459,
+ "start": 12530.53,
+ "end": 12531.22,
+ "text": "worked."
+ },
+ {
+ "id": 27460,
+ "start": 12531.22,
+ "end": 12531.84,
+ "text": "And"
+ },
+ {
+ "id": 27461,
+ "start": 12531.84,
+ "end": 12532.02,
+ "text": "when"
+ },
+ {
+ "id": 27462,
+ "start": 12532.02,
+ "end": 12532.22,
+ "text": "people"
+ },
+ {
+ "id": 27463,
+ "start": 12532.22,
+ "end": 12532.48,
+ "text": "signed"
+ },
+ {
+ "id": 27464,
+ "start": 12532.48,
+ "end": 12532.58,
+ "text": "up"
+ },
+ {
+ "id": 27465,
+ "start": 12532.58,
+ "end": 12532.74,
+ "text": "for"
+ },
+ {
+ "id": 27466,
+ "start": 12532.74,
+ "end": 12533.16,
+ "text": "Facebook."
+ },
+ {
+ "id": 27467,
+ "start": 12533.16,
+ "end": 12533.32,
+ "text": "They"
+ },
+ {
+ "id": 27468,
+ "start": 12533.32,
+ "end": 12533.6,
+ "text": "signed"
+ },
+ {
+ "id": 27469,
+ "start": 12533.6,
+ "end": 12533.72,
+ "text": "up"
+ },
+ {
+ "id": 27470,
+ "start": 12533.72,
+ "end": 12533.9,
+ "text": "for"
+ },
+ {
+ "id": 27471,
+ "start": 12533.9,
+ "end": 12534.06,
+ "text": "that"
+ },
+ {
+ "id": 27472,
+ "start": 12534.06,
+ "end": 12534.2,
+ "text": "as"
+ },
+ {
+ "id": 27473,
+ "start": 12534.2,
+ "end": 12534.42,
+ "text": "well."
+ },
+ {
+ "id": 27474,
+ "start": 12534.42,
+ "end": 12535.58,
+ "text": "Now,"
+ },
+ {
+ "id": 27475,
+ "start": 12535.58,
+ "end": 12535.94,
+ "text": "a"
+ },
+ {
+ "id": 27476,
+ "start": 12535.94,
+ "end": 12536.12,
+ "text": "lot"
+ },
+ {
+ "id": 27477,
+ "start": 12536.12,
+ "end": 12536.22,
+ "text": "of"
+ },
+ {
+ "id": 27478,
+ "start": 12536.22,
+ "end": 12536.5,
+ "text": "good"
+ },
+ {
+ "id": 27479,
+ "start": 12536.5,
+ "end": 12536.74,
+ "text": "use"
+ },
+ {
+ "id": 27480,
+ "start": 12536.74,
+ "end": 12537.12,
+ "text": "cases"
+ },
+ {
+ "id": 27481,
+ "start": 12537.12,
+ "end": 12537.36,
+ "text": "came"
+ },
+ {
+ "id": 27482,
+ "start": 12537.36,
+ "end": 12537.52,
+ "text": "from"
+ },
+ {
+ "id": 27483,
+ "start": 12537.52,
+ "end": 12537.72,
+ "text": "that."
+ },
+ {
+ "id": 27484,
+ "start": 12537.72,
+ "end": 12538.02,
+ "text": "I"
+ },
+ {
+ "id": 27485,
+ "start": 12538.02,
+ "end": 12538.16,
+ "text": "mean,"
+ },
+ {
+ "id": 27486,
+ "start": 12538.16,
+ "end": 12538.3,
+ "text": "there"
+ },
+ {
+ "id": 27487,
+ "start": 12538.3,
+ "end": 12538.48,
+ "text": "were"
+ },
+ {
+ "id": 27488,
+ "start": 12538.48,
+ "end": 12539.2,
+ "text": "games"
+ },
+ {
+ "id": 27489,
+ "start": 12539.2,
+ "end": 12539.34,
+ "text": "that"
+ },
+ {
+ "id": 27490,
+ "start": 12539.34,
+ "end": 12539.5,
+ "text": "were"
+ },
+ {
+ "id": 27491,
+ "start": 12539.5,
+ "end": 12539.76,
+ "text": "built"
+ },
+ {
+ "id": 27492,
+ "start": 12539.76,
+ "end": 12540.36,
+ "text": "there"
+ },
+ {
+ "id": 27493,
+ "start": 12540.36,
+ "end": 12540.56,
+ "text": "were"
+ },
+ {
+ "id": 27494,
+ "start": 12540.56,
+ "end": 12541.32,
+ "text": "integrations"
+ },
+ {
+ "id": 27495,
+ "start": 12541.32,
+ "end": 12541.48,
+ "text": "with"
+ },
+ {
+ "id": 27496,
+ "start": 12541.48,
+ "end": 12541.96,
+ "text": "companies"
+ },
+ {
+ "id": 27497,
+ "start": 12541.96,
+ "end": 12542.24,
+ "text": "that"
+ },
+ {
+ "id": 27498,
+ "start": 12542.24,
+ "end": 12542.34,
+ "text": "I"
+ },
+ {
+ "id": 27499,
+ "start": 12542.34,
+ "end": 12542.5,
+ "text": "think"
+ },
+ {
+ "id": 27500,
+ "start": 12542.5,
+ "end": 12542.68,
+ "text": "were"
+ },
+ {
+ "id": 27501,
+ "start": 12542.68,
+ "end": 12543.02,
+ "text": "familiar"
+ },
+ {
+ "id": 27502,
+ "start": 12543.02,
+ "end": 12543.2,
+ "text": "with,"
+ },
+ {
+ "id": 27503,
+ "start": 12543.2,
+ "end": 12543.36,
+ "text": "like"
+ },
+ {
+ "id": 27504,
+ "start": 12543.36,
+ "end": 12543.8,
+ "text": "Netflix"
+ },
+ {
+ "id": 27505,
+ "start": 12543.8,
+ "end": 12543.98,
+ "text": "and"
+ },
+ {
+ "id": 27506,
+ "start": 12543.98,
+ "end": 12544.78,
+ "text": "Spotify."
+ },
+ {
+ "id": 27507,
+ "start": 12544.78,
+ "end": 12545.18,
+ "text": "But"
+ },
+ {
+ "id": 27508,
+ "start": 12545.18,
+ "end": 12545.38,
+ "text": "over"
+ },
+ {
+ "id": 27509,
+ "start": 12545.38,
+ "end": 12545.68,
+ "text": "time,"
+ },
+ {
+ "id": 27510,
+ "start": 12545.68,
+ "end": 12545.86,
+ "text": "what"
+ },
+ {
+ "id": 27511,
+ "start": 12545.86,
+ "end": 12546.2,
+ "text": "became"
+ },
+ {
+ "id": 27512,
+ "start": 12546.2,
+ "end": 12546.54,
+ "text": "clear"
+ },
+ {
+ "id": 27513,
+ "start": 12546.54,
+ "end": 12546.74,
+ "text": "was"
+ },
+ {
+ "id": 27514,
+ "start": 12546.74,
+ "end": 12546.88,
+ "text": "that"
+ },
+ {
+ "id": 27515,
+ "start": 12546.88,
+ "end": 12547.18,
+ "text": "that"
+ },
+ {
+ "id": 27516,
+ "start": 12547.18,
+ "end": 12547.52,
+ "text": "also"
+ },
+ {
+ "id": 27517,
+ "start": 12547.52,
+ "end": 12547.94,
+ "text": "enabled"
+ },
+ {
+ "id": 27518,
+ "start": 12547.94,
+ "end": 12548.12,
+ "text": "some"
+ },
+ {
+ "id": 27519,
+ "start": 12548.12,
+ "end": 12548.48,
+ "text": "abuse"
+ },
+ {
+ "id": 27520,
+ "start": 12548.48,
+ "end": 12548.98,
+ "text": "and"
+ },
+ {
+ "id": 27521,
+ "start": 12548.98,
+ "end": 12549.16,
+ "text": "that's"
+ },
+ {
+ "id": 27522,
+ "start": 12549.16,
+ "end": 12549.3,
+ "text": "why"
+ },
+ {
+ "id": 27523,
+ "start": 12549.3,
+ "end": 12549.48,
+ "text": "I'm"
+ },
+ {
+ "id": 27524,
+ "start": 12549.48,
+ "end": 12549.76,
+ "text": "20"
+ },
+ {
+ "id": 27525,
+ "start": 12549.76,
+ "end": 12550.32,
+ "text": "14"
+ },
+ {
+ "id": 27526,
+ "start": 12550.32,
+ "end": 12550.94,
+ "text": "we"
+ },
+ {
+ "id": 27527,
+ "start": 12550.94,
+ "end": 12551.14,
+ "text": "took"
+ },
+ {
+ "id": 27528,
+ "start": 12551.14,
+ "end": 12551.24,
+ "text": "the"
+ },
+ {
+ "id": 27529,
+ "start": 12551.24,
+ "end": 12551.56,
+ "text": "step"
+ },
+ {
+ "id": 27530,
+ "start": 12551.56,
+ "end": 12552.24,
+ "text": "of"
+ },
+ {
+ "id": 27531,
+ "start": 12552.24,
+ "end": 12552.68,
+ "text": "changing"
+ },
+ {
+ "id": 27532,
+ "start": 12552.68,
+ "end": 12552.8,
+ "text": "the"
+ },
+ {
+ "id": 27533,
+ "start": 12552.8,
+ "end": 12553.24,
+ "text": "platform."
+ },
+ {
+ "id": 27534,
+ "start": 12553.24,
+ "end": 12553.48,
+ "text": "So"
+ },
+ {
+ "id": 27535,
+ "start": 12553.48,
+ "end": 12553.76,
+ "text": "now"
+ },
+ {
+ "id": 27536,
+ "start": 12553.76,
+ "end": 12554.16,
+ "text": "when"
+ },
+ {
+ "id": 27537,
+ "start": 12554.16,
+ "end": 12554.38,
+ "text": "people"
+ },
+ {
+ "id": 27538,
+ "start": 12554.38,
+ "end": 12554.64,
+ "text": "sign"
+ },
+ {
+ "id": 27539,
+ "start": 12554.64,
+ "end": 12554.88,
+ "text": "into"
+ },
+ {
+ "id": 27540,
+ "start": 12554.88,
+ "end": 12554.98,
+ "text": "an"
+ },
+ {
+ "id": 27541,
+ "start": 12554.98,
+ "end": 12555.22,
+ "text": "app,"
+ },
+ {
+ "id": 27542,
+ "start": 12555.22,
+ "end": 12555.88,
+ "text": "you"
+ },
+ {
+ "id": 27543,
+ "start": 12555.88,
+ "end": 12556.04,
+ "text": "do"
+ },
+ {
+ "id": 27544,
+ "start": 12556.04,
+ "end": 12556.22,
+ "text": "not"
+ },
+ {
+ "id": 27545,
+ "start": 12556.22,
+ "end": 12556.44,
+ "text": "bring"
+ },
+ {
+ "id": 27546,
+ "start": 12556.44,
+ "end": 12556.64,
+ "text": "some"
+ },
+ {
+ "id": 27547,
+ "start": 12556.64,
+ "end": 12556.72,
+ "text": "of"
+ },
+ {
+ "id": 27548,
+ "start": 12556.72,
+ "end": 12556.86,
+ "text": "your"
+ },
+ {
+ "id": 27549,
+ "start": 12556.86,
+ "end": 12557.12,
+ "text": "friends"
+ },
+ {
+ "id": 27550,
+ "start": 12557.12,
+ "end": 12557.66,
+ "text": "information"
+ },
+ {
+ "id": 27551,
+ "start": 12557.66,
+ "end": 12557.82,
+ "text": "with"
+ },
+ {
+ "id": 27552,
+ "start": 12557.82,
+ "end": 12558,
+ "text": "you"
+ },
+ {
+ "id": 27553,
+ "start": 12558,
+ "end": 12558.24,
+ "text": "you're"
+ },
+ {
+ "id": 27554,
+ "start": 12558.24,
+ "end": 12558.42,
+ "text": "only"
+ },
+ {
+ "id": 27555,
+ "start": 12558.42,
+ "end": 12558.7,
+ "text": "bringing"
+ },
+ {
+ "id": 27556,
+ "start": 12558.7,
+ "end": 12558.88,
+ "text": "your"
+ },
+ {
+ "id": 27557,
+ "start": 12558.88,
+ "end": 12559.02,
+ "text": "own"
+ },
+ {
+ "id": 27558,
+ "start": 12559.02,
+ "end": 12559.54,
+ "text": "information"
+ },
+ {
+ "id": 27559,
+ "start": 12559.54,
+ "end": 12559.66,
+ "text": "and"
+ },
+ {
+ "id": 27560,
+ "start": 12559.66,
+ "end": 12559.86,
+ "text": "you're"
+ },
+ {
+ "id": 27561,
+ "start": 12559.86,
+ "end": 12560.02,
+ "text": "able"
+ },
+ {
+ "id": 27562,
+ "start": 12560.02,
+ "end": 12560.12,
+ "text": "to"
+ },
+ {
+ "id": 27563,
+ "start": 12560.12,
+ "end": 12560.4,
+ "text": "connect"
+ },
+ {
+ "id": 27564,
+ "start": 12560.4,
+ "end": 12560.56,
+ "text": "with"
+ },
+ {
+ "id": 27565,
+ "start": 12560.56,
+ "end": 12560.82,
+ "text": "friends"
+ },
+ {
+ "id": 27566,
+ "start": 12560.82,
+ "end": 12560.94,
+ "text": "who"
+ },
+ {
+ "id": 27567,
+ "start": 12560.94,
+ "end": 12561.08,
+ "text": "have"
+ },
+ {
+ "id": 27568,
+ "start": 12561.08,
+ "end": 12561.36,
+ "text": "also"
+ },
+ {
+ "id": 27569,
+ "start": 12561.36,
+ "end": 12561.82,
+ "text": "authorized"
+ },
+ {
+ "id": 27570,
+ "start": 12561.82,
+ "end": 12561.96,
+ "text": "that"
+ },
+ {
+ "id": 27571,
+ "start": 12561.96,
+ "end": 12562.14,
+ "text": "app"
+ },
+ {
+ "id": 27572,
+ "start": 12562.14,
+ "end": 12563.04,
+ "text": "directly."
+ },
+ {
+ "id": 27573,
+ "start": 12563.04,
+ "end": 12563.66,
+ "text": "Let"
+ },
+ {
+ "id": 27574,
+ "start": 12563.66,
+ "end": 12563.78,
+ "text": "me"
+ },
+ {
+ "id": 27575,
+ "start": 12563.78,
+ "end": 12564.86,
+ "text": "turn"
+ },
+ {
+ "id": 27576,
+ "start": 12564.86,
+ "end": 12565,
+ "text": "to"
+ },
+ {
+ "id": 27577,
+ "start": 12565,
+ "end": 12565.12,
+ "text": "the"
+ },
+ {
+ "id": 27578,
+ "start": 12565.12,
+ "end": 12565.56,
+ "text": "your"
+ },
+ {
+ "id": 27579,
+ "start": 12565.56,
+ "end": 12565.78,
+ "text": "bug"
+ },
+ {
+ "id": 27580,
+ "start": 12565.78,
+ "end": 12566.04,
+ "text": "bounty"
+ },
+ {
+ "id": 27581,
+ "start": 12566.04,
+ "end": 12566.48,
+ "text": "program,"
+ },
+ {
+ "id": 27582,
+ "start": 12566.48,
+ "end": 12567.66,
+ "text": "our"
+ },
+ {
+ "id": 27583,
+ "start": 12567.66,
+ "end": 12567.9,
+ "text": "sub"
+ },
+ {
+ "id": 27584,
+ "start": 12567.9,
+ "end": 12568.18,
+ "text": "Commitee"
+ },
+ {
+ "id": 27585,
+ "start": 12568.18,
+ "end": 12568.28,
+ "text": "had"
+ },
+ {
+ "id": 27586,
+ "start": 12568.28,
+ "end": 12569.16,
+ "text": "hearings"
+ },
+ {
+ "id": 27587,
+ "start": 12569.16,
+ "end": 12569.4,
+ "text": "in"
+ },
+ {
+ "id": 27588,
+ "start": 12569.4,
+ "end": 12569.8,
+ "text": "hearing"
+ },
+ {
+ "id": 27589,
+ "start": 12569.8,
+ "end": 12569.9,
+ "text": "in"
+ },
+ {
+ "id": 27590,
+ "start": 12569.9,
+ "end": 12570.24,
+ "text": "regard"
+ },
+ {
+ "id": 27591,
+ "start": 12570.24,
+ "end": 12570.34,
+ "text": "to"
+ },
+ {
+ "id": 27592,
+ "start": 12570.34,
+ "end": 12570.62,
+ "text": "bug"
+ },
+ {
+ "id": 27593,
+ "start": 12570.62,
+ "end": 12570.96,
+ "text": "bounty."
+ },
+ {
+ "id": 27594,
+ "start": 12570.96,
+ "end": 12571.26,
+ "text": "Your"
+ },
+ {
+ "id": 27595,
+ "start": 12571.26,
+ "end": 12571.54,
+ "text": "press"
+ },
+ {
+ "id": 27596,
+ "start": 12571.54,
+ "end": 12572.36,
+ "text": "release"
+ },
+ {
+ "id": 27597,
+ "start": 12572.36,
+ "end": 12573.26,
+ "text": "indicated"
+ },
+ {
+ "id": 27598,
+ "start": 12573.26,
+ "end": 12573.4,
+ "text": "that"
+ },
+ {
+ "id": 27599,
+ "start": 12573.4,
+ "end": 12573.54,
+ "text": "was"
+ },
+ {
+ "id": 27600,
+ "start": 12573.54,
+ "end": 12573.7,
+ "text": "one"
+ },
+ {
+ "id": 27601,
+ "start": 12573.7,
+ "end": 12573.78,
+ "text": "of"
+ },
+ {
+ "id": 27602,
+ "start": 12573.78,
+ "end": 12573.88,
+ "text": "the"
+ },
+ {
+ "id": 27603,
+ "start": 12573.88,
+ "end": 12574.12,
+ "text": "six"
+ },
+ {
+ "id": 27604,
+ "start": 12574.12,
+ "end": 12574.48,
+ "text": "changes"
+ },
+ {
+ "id": 27605,
+ "start": 12574.48,
+ "end": 12574.64,
+ "text": "that"
+ },
+ {
+ "id": 27606,
+ "start": 12574.64,
+ "end": 12575.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 27607,
+ "start": 12575.26,
+ "end": 12575.66,
+ "text": "initially"
+ },
+ {
+ "id": 27608,
+ "start": 12575.66,
+ "end": 12576,
+ "text": "offered"
+ },
+ {
+ "id": 27609,
+ "start": 12576,
+ "end": 12576.1,
+ "text": "to"
+ },
+ {
+ "id": 27610,
+ "start": 12576.1,
+ "end": 12576.34,
+ "text": "crack"
+ },
+ {
+ "id": 27611,
+ "start": 12576.34,
+ "end": 12576.54,
+ "text": "down"
+ },
+ {
+ "id": 27612,
+ "start": 12576.54,
+ "end": 12576.66,
+ "text": "on"
+ },
+ {
+ "id": 27613,
+ "start": 12576.66,
+ "end": 12577.18,
+ "text": "platform"
+ },
+ {
+ "id": 27614,
+ "start": 12577.18,
+ "end": 12578.06,
+ "text": "abuses"
+ },
+ {
+ "id": 27615,
+ "start": 12578.06,
+ "end": 12578.24,
+ "text": "was"
+ },
+ {
+ "id": 27616,
+ "start": 12578.24,
+ "end": 12578.36,
+ "text": "to"
+ },
+ {
+ "id": 27617,
+ "start": 12578.36,
+ "end": 12578.68,
+ "text": "reward"
+ },
+ {
+ "id": 27618,
+ "start": 12578.68,
+ "end": 12579.14,
+ "text": "outside"
+ },
+ {
+ "id": 27619,
+ "start": 12579.14,
+ "end": 12579.5,
+ "text": "parties"
+ },
+ {
+ "id": 27620,
+ "start": 12579.5,
+ "end": 12579.66,
+ "text": "who"
+ },
+ {
+ "id": 27621,
+ "start": 12579.66,
+ "end": 12579.88,
+ "text": "find"
+ },
+ {
+ "id": 27622,
+ "start": 12579.88,
+ "end": 12582.94,
+ "text": "vulnerabilities"
+ },
+ {
+ "id": 27623,
+ "start": 12582.94,
+ "end": 12583.92,
+ "text": "one"
+ },
+ {
+ "id": 27624,
+ "start": 12583.92,
+ "end": 12584.24,
+ "text": "concern."
+ },
+ {
+ "id": 27625,
+ "start": 12584.24,
+ "end": 12584.3,
+ "text": "I"
+ },
+ {
+ "id": 27626,
+ "start": 12584.3,
+ "end": 12584.52,
+ "text": "have"
+ },
+ {
+ "id": 27627,
+ "start": 12584.52,
+ "end": 12584.92,
+ "text": "regarding"
+ },
+ {
+ "id": 27628,
+ "start": 12584.92,
+ "end": 12585.02,
+ "text": "the"
+ },
+ {
+ "id": 27629,
+ "start": 12585.02,
+ "end": 12585.4,
+ "text": "utility"
+ },
+ {
+ "id": 27630,
+ "start": 12585.4,
+ "end": 12585.48,
+ "text": "of"
+ },
+ {
+ "id": 27631,
+ "start": 12585.48,
+ "end": 12585.62,
+ "text": "this"
+ },
+ {
+ "id": 27632,
+ "start": 12585.62,
+ "end": 12585.98,
+ "text": "approach."
+ },
+ {
+ "id": 27633,
+ "start": 12585.98,
+ "end": 12586.28,
+ "text": "Is"
+ },
+ {
+ "id": 27634,
+ "start": 12586.28,
+ "end": 12586.46,
+ "text": "that"
+ },
+ {
+ "id": 27635,
+ "start": 12586.46,
+ "end": 12586.62,
+ "text": "the"
+ },
+ {
+ "id": 27636,
+ "start": 12586.62,
+ "end": 12587.72,
+ "text": "vulnerability"
+ },
+ {
+ "id": 27637,
+ "start": 12587.72,
+ "end": 12588.44,
+ "text": "disclosure"
+ },
+ {
+ "id": 27638,
+ "start": 12588.44,
+ "end": 12589.24,
+ "text": "program"
+ },
+ {
+ "id": 27639,
+ "start": 12589.24,
+ "end": 12589.52,
+ "text": "or"
+ },
+ {
+ "id": 27640,
+ "start": 12589.52,
+ "end": 12589.92,
+ "text": "normally"
+ },
+ {
+ "id": 27641,
+ "start": 12589.92,
+ "end": 12590.2,
+ "text": "geared"
+ },
+ {
+ "id": 27642,
+ "start": 12590.2,
+ "end": 12590.52,
+ "text": "toward"
+ },
+ {
+ "id": 27643,
+ "start": 12590.52,
+ "end": 12591.58,
+ "text": "identifying"
+ },
+ {
+ "id": 27644,
+ "start": 12591.58,
+ "end": 12592.56,
+ "text": "unauthorized"
+ },
+ {
+ "id": 27645,
+ "start": 12592.56,
+ "end": 12593.04,
+ "text": "access"
+ },
+ {
+ "id": 27646,
+ "start": 12593.04,
+ "end": 12593.18,
+ "text": "to"
+ },
+ {
+ "id": 27647,
+ "start": 12593.18,
+ "end": 12593.98,
+ "text": "data."
+ },
+ {
+ "id": 27648,
+ "start": 12593.98,
+ "end": 12594.98,
+ "text": "Not"
+ },
+ {
+ "id": 27649,
+ "start": 12594.98,
+ "end": 12595.3,
+ "text": "pointing"
+ },
+ {
+ "id": 27650,
+ "start": 12595.3,
+ "end": 12595.52,
+ "text": "out"
+ },
+ {
+ "id": 27651,
+ "start": 12595.52,
+ "end": 12596,
+ "text": "data"
+ },
+ {
+ "id": 27652,
+ "start": 12596,
+ "end": 12596.24,
+ "text": "an"
+ },
+ {
+ "id": 27653,
+ "start": 12596.24,
+ "end": 12596.64,
+ "text": "arrangement"
+ },
+ {
+ "id": 27654,
+ "start": 12596.64,
+ "end": 12596.84,
+ "text": "that"
+ },
+ {
+ "id": 27655,
+ "start": 12596.84,
+ "end": 12597.4,
+ "text": "likely"
+ },
+ {
+ "id": 27656,
+ "start": 12597.4,
+ "end": 12597.64,
+ "text": "could"
+ },
+ {
+ "id": 27657,
+ "start": 12597.64,
+ "end": 12598.06,
+ "text": "harm"
+ },
+ {
+ "id": 27658,
+ "start": 12598.06,
+ "end": 12598.9,
+ "text": "someone"
+ },
+ {
+ "id": 27659,
+ "start": 12598.9,
+ "end": 12600.04,
+ "text": "but"
+ },
+ {
+ "id": 27660,
+ "start": 12600.04,
+ "end": 12600.46,
+ "text": "technically"
+ },
+ {
+ "id": 27661,
+ "start": 12600.46,
+ "end": 12600.84,
+ "text": "abide"
+ },
+ {
+ "id": 27662,
+ "start": 12600.84,
+ "end": 12601,
+ "text": "by"
+ },
+ {
+ "id": 27663,
+ "start": 12601,
+ "end": 12601.5,
+ "text": "complex"
+ },
+ {
+ "id": 27664,
+ "start": 12601.5,
+ "end": 12601.86,
+ "text": "consent"
+ },
+ {
+ "id": 27665,
+ "start": 12601.86,
+ "end": 12602.28,
+ "text": "agreements"
+ },
+ {
+ "id": 27666,
+ "start": 12602.28,
+ "end": 12603.08,
+ "text": "how"
+ },
+ {
+ "id": 27667,
+ "start": 12603.08,
+ "end": 12603.18,
+ "text": "do"
+ },
+ {
+ "id": 27668,
+ "start": 12603.18,
+ "end": 12603.34,
+ "text": "you"
+ },
+ {
+ "id": 27669,
+ "start": 12603.34,
+ "end": 12603.7,
+ "text": "see"
+ },
+ {
+ "id": 27670,
+ "start": 12603.7,
+ "end": 12603.88,
+ "text": "the"
+ },
+ {
+ "id": 27671,
+ "start": 12603.88,
+ "end": 12604.42,
+ "text": "bug"
+ },
+ {
+ "id": 27672,
+ "start": 12604.42,
+ "end": 12604.74,
+ "text": "bounty"
+ },
+ {
+ "id": 27673,
+ "start": 12604.74,
+ "end": 12605.24,
+ "text": "program"
+ },
+ {
+ "id": 27674,
+ "start": 12605.24,
+ "end": 12605.4,
+ "text": "that"
+ },
+ {
+ "id": 27675,
+ "start": 12605.4,
+ "end": 12605.72,
+ "text": "you've"
+ },
+ {
+ "id": 27676,
+ "start": 12605.72,
+ "end": 12606.82,
+ "text": "announced"
+ },
+ {
+ "id": 27677,
+ "start": 12606.82,
+ "end": 12607.8,
+ "text": "addressing"
+ },
+ {
+ "id": 27678,
+ "start": 12607.8,
+ "end": 12607.96,
+ "text": "the"
+ },
+ {
+ "id": 27679,
+ "start": 12607.96,
+ "end": 12608.38,
+ "text": "issue"
+ },
+ {
+ "id": 27680,
+ "start": 12608.38,
+ "end": 12608.62,
+ "text": "of"
+ },
+ {
+ "id": 27681,
+ "start": 12608.62,
+ "end": 12609.84,
+ "text": "that?"
+ },
+ {
+ "id": 27682,
+ "start": 12609.84,
+ "end": 12610.96,
+ "text": "Sorry,"
+ },
+ {
+ "id": 27683,
+ "start": 12610.96,
+ "end": 12611.4,
+ "text": "can"
+ },
+ {
+ "id": 27684,
+ "start": 12611.4,
+ "end": 12611.48,
+ "text": "you"
+ },
+ {
+ "id": 27685,
+ "start": 12611.48,
+ "end": 12611.8,
+ "text": "clarify"
+ },
+ {
+ "id": 27686,
+ "start": 12611.8,
+ "end": 12612.08,
+ "text": "what"
+ },
+ {
+ "id": 27687,
+ "start": 12612.08,
+ "end": 12612.92,
+ "text": "I?"
+ },
+ {
+ "id": 27688,
+ "start": 12612.92,
+ "end": 12613.44,
+ "text": "How"
+ },
+ {
+ "id": 27689,
+ "start": 12613.44,
+ "end": 12613.58,
+ "text": "do"
+ },
+ {
+ "id": 27690,
+ "start": 12613.58,
+ "end": 12613.72,
+ "text": "you"
+ },
+ {
+ "id": 27691,
+ "start": 12613.72,
+ "end": 12614.18,
+ "text": "see"
+ },
+ {
+ "id": 27692,
+ "start": 12614.18,
+ "end": 12614.36,
+ "text": "that"
+ },
+ {
+ "id": 27693,
+ "start": 12614.36,
+ "end": 12614.52,
+ "text": "the"
+ },
+ {
+ "id": 27694,
+ "start": 12614.52,
+ "end": 12614.76,
+ "text": "bug"
+ },
+ {
+ "id": 27695,
+ "start": 12614.76,
+ "end": 12615.06,
+ "text": "bounty"
+ },
+ {
+ "id": 27696,
+ "start": 12615.06,
+ "end": 12615.54,
+ "text": "program"
+ },
+ {
+ "id": 27697,
+ "start": 12615.54,
+ "end": 12615.86,
+ "text": "that"
+ },
+ {
+ "id": 27698,
+ "start": 12615.86,
+ "end": 12616.22,
+ "text": "you"
+ },
+ {
+ "id": 27699,
+ "start": 12616.22,
+ "end": 12616.7,
+ "text": "are"
+ },
+ {
+ "id": 27700,
+ "start": 12616.7,
+ "end": 12616.96,
+ "text": "and"
+ },
+ {
+ "id": 27701,
+ "start": 12616.96,
+ "end": 12617.14,
+ "text": "have"
+ },
+ {
+ "id": 27702,
+ "start": 12617.14,
+ "end": 12617.56,
+ "text": "announced"
+ },
+ {
+ "id": 27703,
+ "start": 12617.56,
+ "end": 12618.46,
+ "text": "will"
+ },
+ {
+ "id": 27704,
+ "start": 12618.46,
+ "end": 12618.78,
+ "text": "deal"
+ },
+ {
+ "id": 27705,
+ "start": 12618.78,
+ "end": 12619.06,
+ "text": "with"
+ },
+ {
+ "id": 27706,
+ "start": 12619.06,
+ "end": 12619.26,
+ "text": "the"
+ },
+ {
+ "id": 27707,
+ "start": 12619.26,
+ "end": 12619.72,
+ "text": "sharing"
+ },
+ {
+ "id": 27708,
+ "start": 12619.72,
+ "end": 12619.84,
+ "text": "of"
+ },
+ {
+ "id": 27709,
+ "start": 12619.84,
+ "end": 12620.6,
+ "text": "information"
+ },
+ {
+ "id": 27710,
+ "start": 12620.6,
+ "end": 12621.22,
+ "text": "not"
+ },
+ {
+ "id": 27711,
+ "start": 12621.22,
+ "end": 12622.34,
+ "text": "permissible"
+ },
+ {
+ "id": 27712,
+ "start": 12622.34,
+ "end": 12623.1,
+ "text": "as"
+ },
+ {
+ "id": 27713,
+ "start": 12623.1,
+ "end": 12623.48,
+ "text": "compared"
+ },
+ {
+ "id": 27714,
+ "start": 12623.48,
+ "end": 12623.6,
+ "text": "to"
+ },
+ {
+ "id": 27715,
+ "start": 12623.6,
+ "end": 12623.82,
+ "text": "just"
+ },
+ {
+ "id": 27716,
+ "start": 12623.82,
+ "end": 12624.76,
+ "text": "unauthorized"
+ },
+ {
+ "id": 27717,
+ "start": 12624.76,
+ "end": 12625.22,
+ "text": "access"
+ },
+ {
+ "id": 27718,
+ "start": 12625.22,
+ "end": 12625.36,
+ "text": "to"
+ },
+ {
+ "id": 27719,
+ "start": 12625.36,
+ "end": 12628.52,
+ "text": "data."
+ },
+ {
+ "id": 27720,
+ "start": 12628.52,
+ "end": 12629.5,
+ "text": "Senator"
+ },
+ {
+ "id": 27721,
+ "start": 12629.5,
+ "end": 12629.64,
+ "text": "I'm"
+ },
+ {
+ "id": 27722,
+ "start": 12629.64,
+ "end": 12630.18,
+ "text": "not"
+ },
+ {
+ "id": 27723,
+ "start": 12630.18,
+ "end": 12631.16,
+ "text": "I'm"
+ },
+ {
+ "id": 27724,
+ "start": 12631.16,
+ "end": 12631.28,
+ "text": "not"
+ },
+ {
+ "id": 27725,
+ "start": 12631.28,
+ "end": 12631.56,
+ "text": "actually"
+ },
+ {
+ "id": 27726,
+ "start": 12631.56,
+ "end": 12631.76,
+ "text": "sure"
+ },
+ {
+ "id": 27727,
+ "start": 12631.76,
+ "end": 12632.2,
+ "text": "I"
+ },
+ {
+ "id": 27728,
+ "start": 12632.2,
+ "end": 12632.64,
+ "text": "understand"
+ },
+ {
+ "id": 27729,
+ "start": 12632.64,
+ "end": 12632.8,
+ "text": "this"
+ },
+ {
+ "id": 27730,
+ "start": 12632.8,
+ "end": 12633.12,
+ "text": "enough"
+ },
+ {
+ "id": 27731,
+ "start": 12633.12,
+ "end": 12633.54,
+ "text": "to"
+ },
+ {
+ "id": 27732,
+ "start": 12633.54,
+ "end": 12633.84,
+ "text": "speak"
+ },
+ {
+ "id": 27733,
+ "start": 12633.84,
+ "end": 12634.14,
+ "text": "to"
+ },
+ {
+ "id": 27734,
+ "start": 12634.14,
+ "end": 12634.46,
+ "text": "that"
+ },
+ {
+ "id": 27735,
+ "start": 12634.46,
+ "end": 12634.94,
+ "text": "specific"
+ },
+ {
+ "id": 27736,
+ "start": 12634.94,
+ "end": 12635.24,
+ "text": "point."
+ },
+ {
+ "id": 27737,
+ "start": 12635.24,
+ "end": 12635.86,
+ "text": "And"
+ },
+ {
+ "id": 27738,
+ "start": 12635.86,
+ "end": 12635.98,
+ "text": "I"
+ },
+ {
+ "id": 27739,
+ "start": 12635.98,
+ "end": 12636.12,
+ "text": "can"
+ },
+ {
+ "id": 27740,
+ "start": 12636.12,
+ "end": 12636.26,
+ "text": "have"
+ },
+ {
+ "id": 27741,
+ "start": 12636.26,
+ "end": 12636.36,
+ "text": "my"
+ },
+ {
+ "id": 27742,
+ "start": 12636.36,
+ "end": 12636.56,
+ "text": "team"
+ },
+ {
+ "id": 27743,
+ "start": 12636.56,
+ "end": 12636.86,
+ "text": "follow"
+ },
+ {
+ "id": 27744,
+ "start": 12636.86,
+ "end": 12636.94,
+ "text": "up"
+ },
+ {
+ "id": 27745,
+ "start": 12636.94,
+ "end": 12637.08,
+ "text": "with"
+ },
+ {
+ "id": 27746,
+ "start": 12637.08,
+ "end": 12637.18,
+ "text": "you"
+ },
+ {
+ "id": 27747,
+ "start": 12637.18,
+ "end": 12637.28,
+ "text": "on"
+ },
+ {
+ "id": 27748,
+ "start": 12637.28,
+ "end": 12637.38,
+ "text": "the"
+ },
+ {
+ "id": 27749,
+ "start": 12637.38,
+ "end": 12637.7,
+ "text": "details"
+ },
+ {
+ "id": 27750,
+ "start": 12637.7,
+ "end": 12637.84,
+ "text": "of"
+ },
+ {
+ "id": 27751,
+ "start": 12637.84,
+ "end": 12638.04,
+ "text": "that"
+ },
+ {
+ "id": 27752,
+ "start": 12638.04,
+ "end": 12638.98,
+ "text": "in"
+ },
+ {
+ "id": 27753,
+ "start": 12638.98,
+ "end": 12639.42,
+ "text": "general"
+ },
+ {
+ "id": 27754,
+ "start": 12639.42,
+ "end": 12640.46,
+ "text": "bounty"
+ },
+ {
+ "id": 27755,
+ "start": 12640.46,
+ "end": 12641.04,
+ "text": "programs"
+ },
+ {
+ "id": 27756,
+ "start": 12641.04,
+ "end": 12641.58,
+ "text": "are"
+ },
+ {
+ "id": 27757,
+ "start": 12641.58,
+ "end": 12642.28,
+ "text": "an"
+ },
+ {
+ "id": 27758,
+ "start": 12642.28,
+ "end": 12642.76,
+ "text": "important"
+ },
+ {
+ "id": 27759,
+ "start": 12642.76,
+ "end": 12643.08,
+ "text": "part"
+ },
+ {
+ "id": 27760,
+ "start": 12643.08,
+ "end": 12643.38,
+ "text": "of"
+ },
+ {
+ "id": 27761,
+ "start": 12643.38,
+ "end": 12643.84,
+ "text": "the"
+ },
+ {
+ "id": 27762,
+ "start": 12643.84,
+ "end": 12644.34,
+ "text": "security"
+ },
+ {
+ "id": 27763,
+ "start": 12644.34,
+ "end": 12644.84,
+ "text": "Arsenal"
+ },
+ {
+ "id": 27764,
+ "start": 12644.84,
+ "end": 12645.2,
+ "text": "for"
+ },
+ {
+ "id": 27765,
+ "start": 12645.2,
+ "end": 12645.68,
+ "text": "hardening."
+ },
+ {
+ "id": 27766,
+ "start": 12645.68,
+ "end": 12645.74,
+ "text": "A"
+ },
+ {
+ "id": 27767,
+ "start": 12645.74,
+ "end": 12645.9,
+ "text": "lot"
+ },
+ {
+ "id": 27768,
+ "start": 12645.9,
+ "end": 12646,
+ "text": "of"
+ },
+ {
+ "id": 27769,
+ "start": 12646,
+ "end": 12647.24,
+ "text": "systems."
+ },
+ {
+ "id": 27770,
+ "start": 12647.24,
+ "end": 12647.28,
+ "text": "I"
+ },
+ {
+ "id": 27771,
+ "start": 12647.28,
+ "end": 12648.32,
+ "text": "think"
+ },
+ {
+ "id": 27772,
+ "start": 12648.32,
+ "end": 12648.44,
+ "text": "we"
+ },
+ {
+ "id": 27773,
+ "start": 12648.44,
+ "end": 12648.64,
+ "text": "should"
+ },
+ {
+ "id": 27774,
+ "start": 12648.64,
+ "end": 12648.94,
+ "text": "expect"
+ },
+ {
+ "id": 27775,
+ "start": 12648.94,
+ "end": 12649.08,
+ "text": "that"
+ },
+ {
+ "id": 27776,
+ "start": 12649.08,
+ "end": 12649.24,
+ "text": "we're"
+ },
+ {
+ "id": 27777,
+ "start": 12649.24,
+ "end": 12649.42,
+ "text": "going"
+ },
+ {
+ "id": 27778,
+ "start": 12649.42,
+ "end": 12649.52,
+ "text": "to"
+ },
+ {
+ "id": 27779,
+ "start": 12649.52,
+ "end": 12649.82,
+ "text": "invest"
+ },
+ {
+ "id": 27780,
+ "start": 12649.82,
+ "end": 12649.9,
+ "text": "a"
+ },
+ {
+ "id": 27781,
+ "start": 12649.9,
+ "end": 12650.18,
+ "text": "lot"
+ },
+ {
+ "id": 27782,
+ "start": 12650.18,
+ "end": 12650.38,
+ "text": "and"
+ },
+ {
+ "id": 27783,
+ "start": 12650.38,
+ "end": 12650.72,
+ "text": "hardening"
+ },
+ {
+ "id": 27784,
+ "start": 12650.72,
+ "end": 12650.86,
+ "text": "our"
+ },
+ {
+ "id": 27785,
+ "start": 12650.86,
+ "end": 12651.22,
+ "text": "systems"
+ },
+ {
+ "id": 27786,
+ "start": 12651.22,
+ "end": 12651.74,
+ "text": "ourselves."
+ },
+ {
+ "id": 27787,
+ "start": 12651.74,
+ "end": 12651.92,
+ "text": "And"
+ },
+ {
+ "id": 27788,
+ "start": 12651.92,
+ "end": 12652.1,
+ "text": "that"
+ },
+ {
+ "id": 27789,
+ "start": 12652.1,
+ "end": 12652.64,
+ "text": "we're"
+ },
+ {
+ "id": 27790,
+ "start": 12652.64,
+ "end": 12652.82,
+ "text": "going"
+ },
+ {
+ "id": 27791,
+ "start": 12652.82,
+ "end": 12652.92,
+ "text": "to"
+ },
+ {
+ "id": 27792,
+ "start": 12652.92,
+ "end": 12653.24,
+ "text": "audit"
+ },
+ {
+ "id": 27793,
+ "start": 12653.24,
+ "end": 12653.62,
+ "text": "and"
+ },
+ {
+ "id": 27794,
+ "start": 12653.62,
+ "end": 12654.18,
+ "text": "investigate"
+ },
+ {
+ "id": 27795,
+ "start": 12654.18,
+ "end": 12654.24,
+ "text": "a"
+ },
+ {
+ "id": 27796,
+ "start": 12654.24,
+ "end": 12654.36,
+ "text": "lot"
+ },
+ {
+ "id": 27797,
+ "start": 12654.36,
+ "end": 12654.44,
+ "text": "of"
+ },
+ {
+ "id": 27798,
+ "start": 12654.44,
+ "end": 12654.54,
+ "text": "the"
+ },
+ {
+ "id": 27799,
+ "start": 12654.54,
+ "end": 12654.76,
+ "text": "folks"
+ },
+ {
+ "id": 27800,
+ "start": 12654.76,
+ "end": 12654.88,
+ "text": "in"
+ },
+ {
+ "id": 27801,
+ "start": 12654.88,
+ "end": 12655.02,
+ "text": "our"
+ },
+ {
+ "id": 27802,
+ "start": 12655.02,
+ "end": 12655.66,
+ "text": "ecosystem."
+ },
+ {
+ "id": 27803,
+ "start": 12655.66,
+ "end": 12656.38,
+ "text": "But"
+ },
+ {
+ "id": 27804,
+ "start": 12656.38,
+ "end": 12657.02,
+ "text": "even"
+ },
+ {
+ "id": 27805,
+ "start": 12657.02,
+ "end": 12657.22,
+ "text": "with"
+ },
+ {
+ "id": 27806,
+ "start": 12657.22,
+ "end": 12657.48,
+ "text": "that,"
+ },
+ {
+ "id": 27807,
+ "start": 12657.48,
+ "end": 12658.28,
+ "text": "having"
+ },
+ {
+ "id": 27808,
+ "start": 12658.28,
+ "end": 12658.74,
+ "text": "the"
+ },
+ {
+ "id": 27809,
+ "start": 12658.74,
+ "end": 12659.04,
+ "text": "ability"
+ },
+ {
+ "id": 27810,
+ "start": 12659.04,
+ "end": 12659.18,
+ "text": "to"
+ },
+ {
+ "id": 27811,
+ "start": 12659.18,
+ "end": 12659.56,
+ "text": "enlist"
+ },
+ {
+ "id": 27812,
+ "start": 12659.56,
+ "end": 12659.92,
+ "text": "other"
+ },
+ {
+ "id": 27813,
+ "start": 12659.92,
+ "end": 12660.2,
+ "text": "third"
+ },
+ {
+ "id": 27814,
+ "start": 12660.2,
+ "end": 12660.58,
+ "text": "parties"
+ },
+ {
+ "id": 27815,
+ "start": 12660.58,
+ "end": 12661,
+ "text": "outside"
+ },
+ {
+ "id": 27816,
+ "start": 12661,
+ "end": 12661.08,
+ "text": "of"
+ },
+ {
+ "id": 27817,
+ "start": 12661.08,
+ "end": 12661.2,
+ "text": "the"
+ },
+ {
+ "id": 27818,
+ "start": 12661.2,
+ "end": 12661.65,
+ "text": "company"
+ },
+ {
+ "id": 27819,
+ "start": 12661.65,
+ "end": 12661.99,
+ "text": "to"
+ },
+ {
+ "id": 27820,
+ "start": 12661.99,
+ "end": 12662.09,
+ "text": "be"
+ },
+ {
+ "id": 27821,
+ "start": 12662.09,
+ "end": 12662.23,
+ "text": "able"
+ },
+ {
+ "id": 27822,
+ "start": 12662.23,
+ "end": 12662.31,
+ "text": "to"
+ },
+ {
+ "id": 27823,
+ "start": 12662.31,
+ "end": 12662.45,
+ "text": "help"
+ },
+ {
+ "id": 27824,
+ "start": 12662.45,
+ "end": 12662.59,
+ "text": "us"
+ },
+ {
+ "id": 27825,
+ "start": 12662.59,
+ "end": 12662.85,
+ "text": "out"
+ },
+ {
+ "id": 27826,
+ "start": 12662.85,
+ "end": 12663.01,
+ "text": "by"
+ },
+ {
+ "id": 27827,
+ "start": 12663.01,
+ "end": 12663.63,
+ "text": "giving"
+ },
+ {
+ "id": 27828,
+ "start": 12663.63,
+ "end": 12663.75,
+ "text": "them"
+ },
+ {
+ "id": 27829,
+ "start": 12663.75,
+ "end": 12663.85,
+ "text": "an"
+ },
+ {
+ "id": 27830,
+ "start": 12663.85,
+ "end": 12664.33,
+ "text": "incentive"
+ },
+ {
+ "id": 27831,
+ "start": 12664.33,
+ "end": 12664.45,
+ "text": "to"
+ },
+ {
+ "id": 27832,
+ "start": 12664.45,
+ "end": 12664.69,
+ "text": "point"
+ },
+ {
+ "id": 27833,
+ "start": 12664.69,
+ "end": 12664.85,
+ "text": "out"
+ },
+ {
+ "id": 27834,
+ "start": 12664.85,
+ "end": 12664.99,
+ "text": "when"
+ },
+ {
+ "id": 27835,
+ "start": 12664.99,
+ "end": 12665.13,
+ "text": "they"
+ },
+ {
+ "id": 27836,
+ "start": 12665.13,
+ "end": 12665.33,
+ "text": "see"
+ },
+ {
+ "id": 27837,
+ "start": 12665.33,
+ "end": 12665.73,
+ "text": "issues."
+ },
+ {
+ "id": 27838,
+ "start": 12665.73,
+ "end": 12666.09,
+ "text": "I"
+ },
+ {
+ "id": 27839,
+ "start": 12666.09,
+ "end": 12666.33,
+ "text": "think"
+ },
+ {
+ "id": 27840,
+ "start": 12666.33,
+ "end": 12666.51,
+ "text": "it's"
+ },
+ {
+ "id": 27841,
+ "start": 12666.51,
+ "end": 12666.85,
+ "text": "likely"
+ },
+ {
+ "id": 27842,
+ "start": 12666.85,
+ "end": 12667.13,
+ "text": "going"
+ },
+ {
+ "id": 27843,
+ "start": 12667.13,
+ "end": 12667.29,
+ "text": "to"
+ },
+ {
+ "id": 27844,
+ "start": 12667.29,
+ "end": 12667.81,
+ "text": "help"
+ },
+ {
+ "id": 27845,
+ "start": 12667.81,
+ "end": 12667.99,
+ "text": "us"
+ },
+ {
+ "id": 27846,
+ "start": 12667.99,
+ "end": 12668.57,
+ "text": "improve"
+ },
+ {
+ "id": 27847,
+ "start": 12668.57,
+ "end": 12668.69,
+ "text": "the"
+ },
+ {
+ "id": 27848,
+ "start": 12668.69,
+ "end": 12669.09,
+ "text": "security"
+ },
+ {
+ "id": 27849,
+ "start": 12669.09,
+ "end": 12669.19,
+ "text": "of"
+ },
+ {
+ "id": 27850,
+ "start": 12669.19,
+ "end": 12669.29,
+ "text": "the"
+ },
+ {
+ "id": 27851,
+ "start": 12669.29,
+ "end": 12669.67,
+ "text": "platform"
+ },
+ {
+ "id": 27852,
+ "start": 12669.67,
+ "end": 12670.09,
+ "text": "overall,"
+ },
+ {
+ "id": 27853,
+ "start": 12670.09,
+ "end": 12670.25,
+ "text": "which"
+ },
+ {
+ "id": 27854,
+ "start": 12670.25,
+ "end": 12670.35,
+ "text": "is"
+ },
+ {
+ "id": 27855,
+ "start": 12670.35,
+ "end": 12670.51,
+ "text": "why"
+ },
+ {
+ "id": 27856,
+ "start": 12670.51,
+ "end": 12670.61,
+ "text": "we"
+ },
+ {
+ "id": 27857,
+ "start": 12670.61,
+ "end": 12670.75,
+ "text": "did"
+ },
+ {
+ "id": 27858,
+ "start": 12670.75,
+ "end": 12670.93,
+ "text": "this."
+ },
+ {
+ "id": 27859,
+ "start": 12670.93,
+ "end": 12671.63,
+ "text": "Thank"
+ },
+ {
+ "id": 27860,
+ "start": 12671.63,
+ "end": 12671.73,
+ "text": "you,"
+ },
+ {
+ "id": 27861,
+ "start": 12671.73,
+ "end": 12671.93,
+ "text": "Mr."
+ },
+ {
+ "id": 27862,
+ "start": 12671.93,
+ "end": 12673.49,
+ "text": "Word."
+ },
+ {
+ "id": 27863,
+ "start": 12673.49,
+ "end": 12673.67,
+ "text": "Thank"
+ },
+ {
+ "id": 27864,
+ "start": 12673.67,
+ "end": 12673.77,
+ "text": "you,"
+ },
+ {
+ "id": 27865,
+ "start": 12673.77,
+ "end": 12674.05,
+ "text": "Santa."
+ },
+ {
+ "id": 27866,
+ "start": 12674.05,
+ "end": 12674.59,
+ "text": "Moran"
+ },
+ {
+ "id": 27867,
+ "start": 12674.59,
+ "end": 12674.79,
+ "text": "next"
+ },
+ {
+ "id": 27868,
+ "start": 12674.79,
+ "end": 12674.97,
+ "text": "up"
+ },
+ {
+ "id": 27869,
+ "start": 12674.97,
+ "end": 12675.21,
+ "text": "center"
+ },
+ {
+ "id": 27870,
+ "start": 12675.21,
+ "end": 12676.06,
+ "text": "Booker,"
+ },
+ {
+ "id": 27871,
+ "start": 12676.06,
+ "end": 12676.84,
+ "text": "thank"
+ },
+ {
+ "id": 27872,
+ "start": 12676.84,
+ "end": 12676.94,
+ "text": "you,"
+ },
+ {
+ "id": 27873,
+ "start": 12676.94,
+ "end": 12677.02,
+ "text": "Mr"
+ },
+ {
+ "id": 27874,
+ "start": 12677.02,
+ "end": 12677.38,
+ "text": "Chairman."
+ },
+ {
+ "id": 27875,
+ "start": 12677.38,
+ "end": 12678.56,
+ "text": "Mr,"
+ },
+ {
+ "id": 27876,
+ "start": 12678.56,
+ "end": 12679.16,
+ "text": "as"
+ },
+ {
+ "id": 27877,
+ "start": 12679.16,
+ "end": 12679.28,
+ "text": "you"
+ },
+ {
+ "id": 27878,
+ "start": 12679.28,
+ "end": 12679.48,
+ "text": "know,"
+ },
+ {
+ "id": 27879,
+ "start": 12679.48,
+ "end": 12680.02,
+ "text": "much"
+ },
+ {
+ "id": 27880,
+ "start": 12680.02,
+ "end": 12680.16,
+ "text": "of"
+ },
+ {
+ "id": 27881,
+ "start": 12680.16,
+ "end": 12680.3,
+ "text": "my"
+ },
+ {
+ "id": 27882,
+ "start": 12680.3,
+ "end": 12680.46,
+ "text": "life"
+ },
+ {
+ "id": 27883,
+ "start": 12680.46,
+ "end": 12680.6,
+ "text": "has"
+ },
+ {
+ "id": 27884,
+ "start": 12680.6,
+ "end": 12680.76,
+ "text": "been"
+ },
+ {
+ "id": 27885,
+ "start": 12680.76,
+ "end": 12681.02,
+ "text": "focused"
+ },
+ {
+ "id": 27886,
+ "start": 12681.02,
+ "end": 12681.14,
+ "text": "on"
+ },
+ {
+ "id": 27887,
+ "start": 12681.14,
+ "end": 12681.36,
+ "text": "low"
+ },
+ {
+ "id": 27888,
+ "start": 12681.36,
+ "end": 12681.68,
+ "text": "income"
+ },
+ {
+ "id": 27889,
+ "start": 12681.68,
+ "end": 12682.2,
+ "text": "communities"
+ },
+ {
+ "id": 27890,
+ "start": 12682.2,
+ "end": 12682.58,
+ "text": "for"
+ },
+ {
+ "id": 27891,
+ "start": 12682.58,
+ "end": 12683.1,
+ "text": "communities"
+ },
+ {
+ "id": 27892,
+ "start": 12683.1,
+ "end": 12683.44,
+ "text": "working"
+ },
+ {
+ "id": 27893,
+ "start": 12683.44,
+ "end": 12683.76,
+ "text": "class"
+ },
+ {
+ "id": 27894,
+ "start": 12683.76,
+ "end": 12684.52,
+ "text": "communities"
+ },
+ {
+ "id": 27895,
+ "start": 12684.52,
+ "end": 12684.9,
+ "text": "and"
+ },
+ {
+ "id": 27896,
+ "start": 12684.9,
+ "end": 12685.02,
+ "text": "try"
+ },
+ {
+ "id": 27897,
+ "start": 12685.02,
+ "end": 12685.16,
+ "text": "to"
+ },
+ {
+ "id": 27898,
+ "start": 12685.16,
+ "end": 12685.3,
+ "text": "make"
+ },
+ {
+ "id": 27899,
+ "start": 12685.3,
+ "end": 12685.42,
+ "text": "sure"
+ },
+ {
+ "id": 27900,
+ "start": 12685.42,
+ "end": 12685.54,
+ "text": "they"
+ },
+ {
+ "id": 27901,
+ "start": 12685.54,
+ "end": 12685.66,
+ "text": "have"
+ },
+ {
+ "id": 27902,
+ "start": 12685.66,
+ "end": 12685.72,
+ "text": "a"
+ },
+ {
+ "id": 27903,
+ "start": 12685.72,
+ "end": 12685.88,
+ "text": "fair"
+ },
+ {
+ "id": 27904,
+ "start": 12685.88,
+ "end": 12686.28,
+ "text": "shake."
+ },
+ {
+ "id": 27905,
+ "start": 12686.28,
+ "end": 12686.56,
+ "text": "This"
+ },
+ {
+ "id": 27906,
+ "start": 12686.56,
+ "end": 12686.82,
+ "text": "country"
+ },
+ {
+ "id": 27907,
+ "start": 12686.82,
+ "end": 12686.98,
+ "text": "has"
+ },
+ {
+ "id": 27908,
+ "start": 12686.98,
+ "end": 12687.06,
+ "text": "a"
+ },
+ {
+ "id": 27909,
+ "start": 12687.06,
+ "end": 12687.38,
+ "text": "very"
+ },
+ {
+ "id": 27910,
+ "start": 12687.38,
+ "end": 12687.64,
+ "text": "bad"
+ },
+ {
+ "id": 27911,
+ "start": 12687.64,
+ "end": 12688.12,
+ "text": "history"
+ },
+ {
+ "id": 27912,
+ "start": 12688.12,
+ "end": 12688.74,
+ "text": "of"
+ },
+ {
+ "id": 27913,
+ "start": 12688.74,
+ "end": 12689.52,
+ "text": "discriminatory"
+ },
+ {
+ "id": 27914,
+ "start": 12689.52,
+ "end": 12690.08,
+ "text": "practices"
+ },
+ {
+ "id": 27915,
+ "start": 12690.08,
+ "end": 12690.38,
+ "text": "towards"
+ },
+ {
+ "id": 27916,
+ "start": 12690.38,
+ "end": 12690.62,
+ "text": "low"
+ },
+ {
+ "id": 27917,
+ "start": 12690.62,
+ "end": 12690.9,
+ "text": "income."
+ },
+ {
+ "id": 27918,
+ "start": 12690.9,
+ "end": 12691.4,
+ "text": "Americans"
+ },
+ {
+ "id": 27919,
+ "start": 12691.4,
+ "end": 12691.74,
+ "text": "and"
+ },
+ {
+ "id": 27920,
+ "start": 12691.74,
+ "end": 12692.48,
+ "text": "Americans"
+ },
+ {
+ "id": 27921,
+ "start": 12692.48,
+ "end": 12692.6,
+ "text": "of"
+ },
+ {
+ "id": 27922,
+ "start": 12692.6,
+ "end": 12693.02,
+ "text": "color"
+ },
+ {
+ "id": 27923,
+ "start": 12693.02,
+ "end": 12693.26,
+ "text": "from"
+ },
+ {
+ "id": 27924,
+ "start": 12693.26,
+ "end": 12693.54,
+ "text": "the"
+ },
+ {
+ "id": 27925,
+ "start": 12693.54,
+ "end": 12694.1,
+ "text": "red"
+ },
+ {
+ "id": 27926,
+ "start": 12694.1,
+ "end": 12694.5,
+ "text": "lining"
+ },
+ {
+ "id": 27927,
+ "start": 12694.5,
+ "end": 12695.16,
+ "text": "FHA"
+ },
+ {
+ "id": 27928,
+ "start": 12695.16,
+ "end": 12695.66,
+ "text": "practices"
+ },
+ {
+ "id": 27929,
+ "start": 12695.66,
+ "end": 12695.86,
+ "text": "even"
+ },
+ {
+ "id": 27930,
+ "start": 12695.86,
+ "end": 12696.2,
+ "text": "more"
+ },
+ {
+ "id": 27931,
+ "start": 12696.2,
+ "end": 12696.68,
+ "text": "recently"
+ },
+ {
+ "id": 27932,
+ "start": 12696.68,
+ "end": 12696.98,
+ "text": "really"
+ },
+ {
+ "id": 27933,
+ "start": 12696.98,
+ "end": 12698.08,
+ "text": "discriminatory"
+ },
+ {
+ "id": 27934,
+ "start": 12698.08,
+ "end": 12698.58,
+ "text": "practices"
+ },
+ {
+ "id": 27935,
+ "start": 12698.58,
+ "end": 12698.7,
+ "text": "in"
+ },
+ {
+ "id": 27936,
+ "start": 12698.7,
+ "end": 12698.8,
+ "text": "the"
+ },
+ {
+ "id": 27937,
+ "start": 12698.8,
+ "end": 12699.2,
+ "text": "mortgage"
+ },
+ {
+ "id": 27938,
+ "start": 12699.2,
+ "end": 12699.68,
+ "text": "business"
+ },
+ {
+ "id": 27939,
+ "start": 12699.68,
+ "end": 12700.54,
+ "text": "I've"
+ },
+ {
+ "id": 27940,
+ "start": 12700.54,
+ "end": 12700.76,
+ "text": "always"
+ },
+ {
+ "id": 27941,
+ "start": 12700.76,
+ "end": 12701.02,
+ "text": "seen."
+ },
+ {
+ "id": 27942,
+ "start": 12701.02,
+ "end": 12701.7,
+ "text": "Technology"
+ },
+ {
+ "id": 27943,
+ "start": 12701.7,
+ "end": 12701.86,
+ "text": "is"
+ },
+ {
+ "id": 27944,
+ "start": 12701.86,
+ "end": 12701.92,
+ "text": "a"
+ },
+ {
+ "id": 27945,
+ "start": 12701.92,
+ "end": 12702.48,
+ "text": "promise"
+ },
+ {
+ "id": 27946,
+ "start": 12702.48,
+ "end": 12703.26,
+ "text": "to"
+ },
+ {
+ "id": 27947,
+ "start": 12703.26,
+ "end": 12704.26,
+ "text": "democratize"
+ },
+ {
+ "id": 27948,
+ "start": 12704.26,
+ "end": 12704.44,
+ "text": "our"
+ },
+ {
+ "id": 27949,
+ "start": 12704.44,
+ "end": 12704.88,
+ "text": "nation"
+ },
+ {
+ "id": 27950,
+ "start": 12704.88,
+ "end": 12705.52,
+ "text": "expand"
+ },
+ {
+ "id": 27951,
+ "start": 12705.52,
+ "end": 12706.12,
+ "text": "access"
+ },
+ {
+ "id": 27952,
+ "start": 12706.12,
+ "end": 12706.7,
+ "text": "expand"
+ },
+ {
+ "id": 27953,
+ "start": 12706.7,
+ "end": 12707.88,
+ "text": "opportunities."
+ },
+ {
+ "id": 27954,
+ "start": 12707.88,
+ "end": 12708.46,
+ "text": "But"
+ },
+ {
+ "id": 27955,
+ "start": 12708.46,
+ "end": 12709.04,
+ "text": "unfortunately"
+ },
+ {
+ "id": 27956,
+ "start": 12709.04,
+ "end": 12709.28,
+ "text": "we've"
+ },
+ {
+ "id": 27957,
+ "start": 12709.28,
+ "end": 12709.52,
+ "text": "also"
+ },
+ {
+ "id": 27958,
+ "start": 12709.52,
+ "end": 12709.86,
+ "text": "seen"
+ },
+ {
+ "id": 27959,
+ "start": 12709.86,
+ "end": 12710.04,
+ "text": "how"
+ },
+ {
+ "id": 27960,
+ "start": 12710.04,
+ "end": 12710.78,
+ "text": "platforms"
+ },
+ {
+ "id": 27961,
+ "start": 12710.78,
+ "end": 12711.38,
+ "text": "technology"
+ },
+ {
+ "id": 27962,
+ "start": 12711.38,
+ "end": 12711.9,
+ "text": "platforms"
+ },
+ {
+ "id": 27963,
+ "start": 12711.9,
+ "end": 12712.14,
+ "text": "like"
+ },
+ {
+ "id": 27964,
+ "start": 12712.14,
+ "end": 12712.68,
+ "text": "Facebook"
+ },
+ {
+ "id": 27965,
+ "start": 12712.68,
+ "end": 12713.48,
+ "text": "can"
+ },
+ {
+ "id": 27966,
+ "start": 12713.48,
+ "end": 12713.76,
+ "text": "actually"
+ },
+ {
+ "id": 27967,
+ "start": 12713.76,
+ "end": 12713.86,
+ "text": "be"
+ },
+ {
+ "id": 27968,
+ "start": 12713.86,
+ "end": 12714.44,
+ "text": "used"
+ },
+ {
+ "id": 27969,
+ "start": 12714.44,
+ "end": 12714.74,
+ "text": "to"
+ },
+ {
+ "id": 27970,
+ "start": 12714.74,
+ "end": 12715.72,
+ "text": "double"
+ },
+ {
+ "id": 27971,
+ "start": 12715.72,
+ "end": 12716,
+ "text": "down"
+ },
+ {
+ "id": 27972,
+ "start": 12716,
+ "end": 12716.12,
+ "text": "on"
+ },
+ {
+ "id": 27973,
+ "start": 12716.12,
+ "end": 12716.92,
+ "text": "discrimination"
+ },
+ {
+ "id": 27974,
+ "start": 12716.92,
+ "end": 12717.4,
+ "text": "and"
+ },
+ {
+ "id": 27975,
+ "start": 12717.4,
+ "end": 12717.58,
+ "text": "give"
+ },
+ {
+ "id": 27976,
+ "start": 12717.58,
+ "end": 12717.84,
+ "text": "people"
+ },
+ {
+ "id": 27977,
+ "start": 12717.84,
+ "end": 12718.06,
+ "text": "more"
+ },
+ {
+ "id": 27978,
+ "start": 12718.06,
+ "end": 12719.05,
+ "text": "sophisticated"
+ },
+ {
+ "id": 27979,
+ "start": 12719.05,
+ "end": 12719.35,
+ "text": "tools"
+ },
+ {
+ "id": 27980,
+ "start": 12719.35,
+ "end": 12719.51,
+ "text": "with"
+ },
+ {
+ "id": 27981,
+ "start": 12719.51,
+ "end": 12720.39,
+ "text": "discriminate."
+ },
+ {
+ "id": 27982,
+ "start": 12720.39,
+ "end": 12722.87,
+ "text": "Now"
+ },
+ {
+ "id": 27983,
+ "start": 12722.87,
+ "end": 12724.03,
+ "text": "16"
+ },
+ {
+ "id": 27984,
+ "start": 12724.03,
+ "end": 12724.61,
+ "text": "ProPublica"
+ },
+ {
+ "id": 27985,
+ "start": 12724.61,
+ "end": 12725.17,
+ "text": "revealed"
+ },
+ {
+ "id": 27986,
+ "start": 12725.17,
+ "end": 12725.85,
+ "text": "that"
+ },
+ {
+ "id": 27987,
+ "start": 12725.85,
+ "end": 12726.55,
+ "text": "advertisers"
+ },
+ {
+ "id": 27988,
+ "start": 12726.55,
+ "end": 12726.77,
+ "text": "could"
+ },
+ {
+ "id": 27989,
+ "start": 12726.77,
+ "end": 12727.05,
+ "text": "use"
+ },
+ {
+ "id": 27990,
+ "start": 12727.05,
+ "end": 12727.57,
+ "text": "ethnic"
+ },
+ {
+ "id": 27991,
+ "start": 12727.57,
+ "end": 12728.09,
+ "text": "affinity,"
+ },
+ {
+ "id": 27992,
+ "start": 12728.09,
+ "end": 12728.67,
+ "text": "a"
+ },
+ {
+ "id": 27993,
+ "start": 12728.67,
+ "end": 12729.07,
+ "text": "user's"
+ },
+ {
+ "id": 27994,
+ "start": 12729.07,
+ "end": 12730.22,
+ "text": "race"
+ },
+ {
+ "id": 27995,
+ "start": 12730.22,
+ "end": 12731.12,
+ "text": "to"
+ },
+ {
+ "id": 27996,
+ "start": 12731.12,
+ "end": 12731.54,
+ "text": "market"
+ },
+ {
+ "id": 27997,
+ "start": 12731.54,
+ "end": 12732.16,
+ "text": "categories"
+ },
+ {
+ "id": 27998,
+ "start": 12732.16,
+ "end": 12732.3,
+ "text": "to"
+ },
+ {
+ "id": 27999,
+ "start": 12732.3,
+ "end": 12732.88,
+ "text": "potentially"
+ },
+ {
+ "id": 28000,
+ "start": 12732.88,
+ "end": 12733.82,
+ "text": "discriminate"
+ },
+ {
+ "id": 28001,
+ "start": 12733.82,
+ "end": 12734.4,
+ "text": "overall"
+ },
+ {
+ "id": 28002,
+ "start": 12734.4,
+ "end": 12734.9,
+ "text": "against"
+ },
+ {
+ "id": 28003,
+ "start": 12734.9,
+ "end": 12735.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 28004,
+ "start": 12735.34,
+ "end": 12735.82,
+ "text": "users"
+ },
+ {
+ "id": 28005,
+ "start": 12735.82,
+ "end": 12736.58,
+ "text": "in"
+ },
+ {
+ "id": 28006,
+ "start": 12736.58,
+ "end": 12736.7,
+ "text": "the"
+ },
+ {
+ "id": 28007,
+ "start": 12736.7,
+ "end": 12737,
+ "text": "areas"
+ },
+ {
+ "id": 28008,
+ "start": 12737,
+ "end": 12737.14,
+ "text": "of"
+ },
+ {
+ "id": 28009,
+ "start": 12737.14,
+ "end": 12737.72,
+ "text": "housing"
+ },
+ {
+ "id": 28010,
+ "start": 12737.72,
+ "end": 12738.46,
+ "text": "employment"
+ },
+ {
+ "id": 28011,
+ "start": 12738.46,
+ "end": 12738.76,
+ "text": "and"
+ },
+ {
+ "id": 28012,
+ "start": 12738.76,
+ "end": 12739.24,
+ "text": "credit."
+ },
+ {
+ "id": 28013,
+ "start": 12739.24,
+ "end": 12739.92,
+ "text": "Echoing"
+ },
+ {
+ "id": 28014,
+ "start": 12739.92,
+ "end": 12740,
+ "text": "a"
+ },
+ {
+ "id": 28015,
+ "start": 12740,
+ "end": 12740.36,
+ "text": "dark"
+ },
+ {
+ "id": 28016,
+ "start": 12740.36,
+ "end": 12740.8,
+ "text": "history"
+ },
+ {
+ "id": 28017,
+ "start": 12740.8,
+ "end": 12740.9,
+ "text": "in"
+ },
+ {
+ "id": 28018,
+ "start": 12740.9,
+ "end": 12741.06,
+ "text": "this"
+ },
+ {
+ "id": 28019,
+ "start": 12741.06,
+ "end": 12741.98,
+ "text": "country"
+ },
+ {
+ "id": 28020,
+ "start": 12741.98,
+ "end": 12742.48,
+ "text": "and"
+ },
+ {
+ "id": 28021,
+ "start": 12742.48,
+ "end": 12742.84,
+ "text": "also"
+ },
+ {
+ "id": 28022,
+ "start": 12742.84,
+ "end": 12742.98,
+ "text": "in"
+ },
+ {
+ "id": 28023,
+ "start": 12742.98,
+ "end": 12743.4,
+ "text": "violation"
+ },
+ {
+ "id": 28024,
+ "start": 12743.4,
+ "end": 12743.5,
+ "text": "of"
+ },
+ {
+ "id": 28025,
+ "start": 12743.5,
+ "end": 12743.84,
+ "text": "federal"
+ },
+ {
+ "id": 28026,
+ "start": 12743.84,
+ "end": 12744.2,
+ "text": "law."
+ },
+ {
+ "id": 28027,
+ "start": 12744.2,
+ "end": 12745.06,
+ "text": "In"
+ },
+ {
+ "id": 28028,
+ "start": 12745.06,
+ "end": 12746,
+ "text": "2,016"
+ },
+ {
+ "id": 28029,
+ "start": 12746,
+ "end": 12746.42,
+ "text": "Facebook"
+ },
+ {
+ "id": 28030,
+ "start": 12746.42,
+ "end": 12746.82,
+ "text": "committed"
+ },
+ {
+ "id": 28031,
+ "start": 12746.82,
+ "end": 12746.94,
+ "text": "to"
+ },
+ {
+ "id": 28032,
+ "start": 12746.94,
+ "end": 12747.62,
+ "text": "fixing"
+ },
+ {
+ "id": 28033,
+ "start": 12747.62,
+ "end": 12747.82,
+ "text": "this"
+ },
+ {
+ "id": 28034,
+ "start": 12747.82,
+ "end": 12748.08,
+ "text": "that"
+ },
+ {
+ "id": 28035,
+ "start": 12748.08,
+ "end": 12748.22,
+ "text": "the"
+ },
+ {
+ "id": 28036,
+ "start": 12748.22,
+ "end": 12749,
+ "text": "advertisers"
+ },
+ {
+ "id": 28037,
+ "start": 12749,
+ "end": 12749.56,
+ "text": "who"
+ },
+ {
+ "id": 28038,
+ "start": 12749.56,
+ "end": 12749.76,
+ "text": "have"
+ },
+ {
+ "id": 28039,
+ "start": 12749.76,
+ "end": 12750.12,
+ "text": "access"
+ },
+ {
+ "id": 28040,
+ "start": 12750.12,
+ "end": 12750.24,
+ "text": "to"
+ },
+ {
+ "id": 28041,
+ "start": 12750.24,
+ "end": 12750.38,
+ "text": "this"
+ },
+ {
+ "id": 28042,
+ "start": 12750.38,
+ "end": 12750.64,
+ "text": "data"
+ },
+ {
+ "id": 28043,
+ "start": 12750.64,
+ "end": 12750.8,
+ "text": "to"
+ },
+ {
+ "id": 28044,
+ "start": 12750.8,
+ "end": 12751.18,
+ "text": "fixing"
+ },
+ {
+ "id": 28045,
+ "start": 12751.18,
+ "end": 12751.34,
+ "text": "it,"
+ },
+ {
+ "id": 28046,
+ "start": 12751.34,
+ "end": 12752.16,
+ "text": "but"
+ },
+ {
+ "id": 28047,
+ "start": 12752.16,
+ "end": 12752.68,
+ "text": "unfortunately,"
+ },
+ {
+ "id": 28048,
+ "start": 12752.68,
+ "end": 12752.76,
+ "text": "a"
+ },
+ {
+ "id": 28049,
+ "start": 12752.76,
+ "end": 12752.96,
+ "text": "year"
+ },
+ {
+ "id": 28050,
+ "start": 12752.96,
+ "end": 12753.8,
+ "text": "later"
+ },
+ {
+ "id": 28051,
+ "start": 12753.8,
+ "end": 12754.46,
+ "text": "as"
+ },
+ {
+ "id": 28052,
+ "start": 12754.46,
+ "end": 12754.98,
+ "text": "ProPublica"
+ },
+ {
+ "id": 28053,
+ "start": 12754.98,
+ "end": 12755.42,
+ "text": "article"
+ },
+ {
+ "id": 28054,
+ "start": 12755.42,
+ "end": 12755.84,
+ "text": "showed"
+ },
+ {
+ "id": 28055,
+ "start": 12755.84,
+ "end": 12756.36,
+ "text": "they"
+ },
+ {
+ "id": 28056,
+ "start": 12756.36,
+ "end": 12756.6,
+ "text": "found"
+ },
+ {
+ "id": 28057,
+ "start": 12756.6,
+ "end": 12756.74,
+ "text": "that"
+ },
+ {
+ "id": 28058,
+ "start": 12756.74,
+ "end": 12756.9,
+ "text": "the"
+ },
+ {
+ "id": 28059,
+ "start": 12756.9,
+ "end": 12757.36,
+ "text": "system."
+ },
+ {
+ "id": 28060,
+ "start": 12757.36,
+ "end": 12757.78,
+ "text": "Facebook"
+ },
+ {
+ "id": 28061,
+ "start": 12757.78,
+ "end": 12758.08,
+ "text": "built"
+ },
+ {
+ "id": 28062,
+ "start": 12758.08,
+ "end": 12758.28,
+ "text": "was"
+ },
+ {
+ "id": 28063,
+ "start": 12758.28,
+ "end": 12758.8,
+ "text": "still"
+ },
+ {
+ "id": 28064,
+ "start": 12758.8,
+ "end": 12759.64,
+ "text": "allowing"
+ },
+ {
+ "id": 28065,
+ "start": 12759.64,
+ "end": 12760.08,
+ "text": "housing"
+ },
+ {
+ "id": 28066,
+ "start": 12760.08,
+ "end": 12761.46,
+ "text": "ads"
+ },
+ {
+ "id": 28067,
+ "start": 12761.46,
+ "end": 12763.04,
+ "text": "without"
+ },
+ {
+ "id": 28068,
+ "start": 12763.04,
+ "end": 12764,
+ "text": "applying"
+ },
+ {
+ "id": 28069,
+ "start": 12764,
+ "end": 12764.14,
+ "text": "to"
+ },
+ {
+ "id": 28070,
+ "start": 12764.14,
+ "end": 12764.3,
+ "text": "go"
+ },
+ {
+ "id": 28071,
+ "start": 12764.3,
+ "end": 12764.54,
+ "text": "for"
+ },
+ {
+ "id": 28072,
+ "start": 12764.54,
+ "end": 12764.82,
+ "text": "without"
+ },
+ {
+ "id": 28073,
+ "start": 12764.82,
+ "end": 12765.16,
+ "text": "applying"
+ },
+ {
+ "id": 28074,
+ "start": 12765.16,
+ "end": 12765.34,
+ "text": "these"
+ },
+ {
+ "id": 28075,
+ "start": 12765.34,
+ "end": 12765.5,
+ "text": "new"
+ },
+ {
+ "id": 28076,
+ "start": 12765.5,
+ "end": 12765.98,
+ "text": "restrictions"
+ },
+ {
+ "id": 28077,
+ "start": 12765.98,
+ "end": 12766.1,
+ "text": "that"
+ },
+ {
+ "id": 28078,
+ "start": 12766.1,
+ "end": 12766.28,
+ "text": "were"
+ },
+ {
+ "id": 28079,
+ "start": 12766.28,
+ "end": 12766.46,
+ "text": "put"
+ },
+ {
+ "id": 28080,
+ "start": 12766.46,
+ "end": 12766.74,
+ "text": "on"
+ },
+ {
+ "id": 28081,
+ "start": 12766.74,
+ "end": 12767.86,
+ "text": "Facebook"
+ },
+ {
+ "id": 28082,
+ "start": 12767.86,
+ "end": 12768.8,
+ "text": "on"
+ },
+ {
+ "id": 28083,
+ "start": 12768.8,
+ "end": 12768.9,
+ "text": "a"
+ },
+ {
+ "id": 28084,
+ "start": 12768.9,
+ "end": 12769.18,
+ "text": "system"
+ },
+ {
+ "id": 28085,
+ "start": 12769.18,
+ "end": 12769.42,
+ "text": "that's"
+ },
+ {
+ "id": 28086,
+ "start": 12769.42,
+ "end": 12769.64,
+ "text": "very"
+ },
+ {
+ "id": 28087,
+ "start": 12769.64,
+ "end": 12770.08,
+ "text": "similar"
+ },
+ {
+ "id": 28088,
+ "start": 12770.08,
+ "end": 12770.28,
+ "text": "to"
+ },
+ {
+ "id": 28089,
+ "start": 12770.28,
+ "end": 12770.42,
+ "text": "what"
+ },
+ {
+ "id": 28090,
+ "start": 12770.42,
+ "end": 12770.6,
+ "text": "we've"
+ },
+ {
+ "id": 28091,
+ "start": 12770.6,
+ "end": 12770.74,
+ "text": "been"
+ },
+ {
+ "id": 28092,
+ "start": 12770.74,
+ "end": 12771.1,
+ "text": "talking"
+ },
+ {
+ "id": 28093,
+ "start": 12771.1,
+ "end": 12771.46,
+ "text": "about"
+ },
+ {
+ "id": 28094,
+ "start": 12771.46,
+ "end": 12772.08,
+ "text": "with"
+ },
+ {
+ "id": 28095,
+ "start": 12772.08,
+ "end": 12772.82,
+ "text": "Cambridge"
+ },
+ {
+ "id": 28096,
+ "start": 12772.82,
+ "end": 12773.28,
+ "text": "Analytica"
+ },
+ {
+ "id": 28097,
+ "start": 12773.28,
+ "end": 12773.46,
+ "text": "that"
+ },
+ {
+ "id": 28098,
+ "start": 12773.46,
+ "end": 12773.6,
+ "text": "they"
+ },
+ {
+ "id": 28099,
+ "start": 12773.6,
+ "end": 12773.78,
+ "text": "could"
+ },
+ {
+ "id": 28100,
+ "start": 12773.78,
+ "end": 12774.2,
+ "text": "self"
+ },
+ {
+ "id": 28101,
+ "start": 12774.2,
+ "end": 12774.88,
+ "text": "certify"
+ },
+ {
+ "id": 28102,
+ "start": 12774.88,
+ "end": 12775.26,
+ "text": "that"
+ },
+ {
+ "id": 28103,
+ "start": 12775.26,
+ "end": 12775.42,
+ "text": "they"
+ },
+ {
+ "id": 28104,
+ "start": 12775.42,
+ "end": 12775.58,
+ "text": "were"
+ },
+ {
+ "id": 28105,
+ "start": 12775.58,
+ "end": 12775.78,
+ "text": "not"
+ },
+ {
+ "id": 28106,
+ "start": 12775.78,
+ "end": 12776.38,
+ "text": "engaging"
+ },
+ {
+ "id": 28107,
+ "start": 12776.38,
+ "end": 12776.5,
+ "text": "in"
+ },
+ {
+ "id": 28108,
+ "start": 12776.5,
+ "end": 12776.7,
+ "text": "these"
+ },
+ {
+ "id": 28109,
+ "start": 12776.7,
+ "end": 12778.04,
+ "text": "practices"
+ },
+ {
+ "id": 28110,
+ "start": 12778.04,
+ "end": 12778.82,
+ "text": "and"
+ },
+ {
+ "id": 28111,
+ "start": 12778.82,
+ "end": 12779.32,
+ "text": "complying"
+ },
+ {
+ "id": 28112,
+ "start": 12779.32,
+ "end": 12779.48,
+ "text": "with"
+ },
+ {
+ "id": 28113,
+ "start": 12779.48,
+ "end": 12779.8,
+ "text": "federal"
+ },
+ {
+ "id": 28114,
+ "start": 12779.8,
+ "end": 12780.08,
+ "text": "law"
+ },
+ {
+ "id": 28115,
+ "start": 12780.08,
+ "end": 12780.52,
+ "text": "using"
+ },
+ {
+ "id": 28116,
+ "start": 12780.52,
+ "end": 12780.7,
+ "text": "this"
+ },
+ {
+ "id": 28117,
+ "start": 12780.7,
+ "end": 12780.92,
+ "text": "self"
+ },
+ {
+ "id": 28118,
+ "start": 12780.92,
+ "end": 12781.66,
+ "text": "certification"
+ },
+ {
+ "id": 28119,
+ "start": 12781.66,
+ "end": 12783.72,
+ "text": "away"
+ },
+ {
+ "id": 28120,
+ "start": 12783.72,
+ "end": 12784.5,
+ "text": "to"
+ },
+ {
+ "id": 28121,
+ "start": 12784.5,
+ "end": 12785.16,
+ "text": "overcome"
+ },
+ {
+ "id": 28122,
+ "start": 12785.16,
+ "end": 12785.28,
+ "text": "and"
+ },
+ {
+ "id": 28123,
+ "start": 12785.28,
+ "end": 12785.42,
+ "text": "to"
+ },
+ {
+ "id": 28124,
+ "start": 12785.42,
+ "end": 12785.82,
+ "text": "comply"
+ },
+ {
+ "id": 28125,
+ "start": 12785.82,
+ "end": 12786.02,
+ "text": "with"
+ },
+ {
+ "id": 28126,
+ "start": 12786.02,
+ "end": 12786.42,
+ "text": "rather"
+ },
+ {
+ "id": 28127,
+ "start": 12786.42,
+ "end": 12787.26,
+ "text": "Facebook's"
+ },
+ {
+ "id": 28128,
+ "start": 12787.26,
+ "end": 12787.9,
+ "text": "Anti"
+ },
+ {
+ "id": 28129,
+ "start": 12787.9,
+ "end": 12788.48,
+ "text": "discrimination"
+ },
+ {
+ "id": 28130,
+ "start": 12788.48,
+ "end": 12789.68,
+ "text": "policy,"
+ },
+ {
+ "id": 28131,
+ "start": 12789.68,
+ "end": 12790.7,
+ "text": "unfortunately,"
+ },
+ {
+ "id": 28132,
+ "start": 12790.7,
+ "end": 12791.32,
+ "text": "in"
+ },
+ {
+ "id": 28133,
+ "start": 12791.32,
+ "end": 12791.38,
+ "text": "a"
+ },
+ {
+ "id": 28134,
+ "start": 12791.38,
+ "end": 12791.76,
+ "text": "recent"
+ },
+ {
+ "id": 28135,
+ "start": 12791.76,
+ "end": 12792.56,
+ "text": "lawsuit"
+ },
+ {
+ "id": 28136,
+ "start": 12792.56,
+ "end": 12793.54,
+ "text": "as"
+ },
+ {
+ "id": 28137,
+ "start": 12793.54,
+ "end": 12793.73,
+ "text": "a"
+ },
+ {
+ "id": 28138,
+ "start": 12793.73,
+ "end": 12794.07,
+ "text": "February"
+ },
+ {
+ "id": 28139,
+ "start": 12794.07,
+ "end": 12795.03,
+ "text": "2,018"
+ },
+ {
+ "id": 28140,
+ "start": 12795.03,
+ "end": 12796.19,
+ "text": "alleges"
+ },
+ {
+ "id": 28141,
+ "start": 12796.19,
+ "end": 12796.33,
+ "text": "that"
+ },
+ {
+ "id": 28142,
+ "start": 12796.33,
+ "end": 12797.01,
+ "text": "discriminatory"
+ },
+ {
+ "id": 28143,
+ "start": 12797.01,
+ "end": 12797.37,
+ "text": "ads"
+ },
+ {
+ "id": 28144,
+ "start": 12797.37,
+ "end": 12797.61,
+ "text": "were"
+ },
+ {
+ "id": 28145,
+ "start": 12797.61,
+ "end": 12797.99,
+ "text": "still"
+ },
+ {
+ "id": 28146,
+ "start": 12797.99,
+ "end": 12798.25,
+ "text": "being"
+ },
+ {
+ "id": 28147,
+ "start": 12798.25,
+ "end": 12798.73,
+ "text": "created"
+ },
+ {
+ "id": 28148,
+ "start": 12798.73,
+ "end": 12798.91,
+ "text": "on"
+ },
+ {
+ "id": 28149,
+ "start": 12798.91,
+ "end": 12799.41,
+ "text": "Facebook."
+ },
+ {
+ "id": 28150,
+ "start": 12799.41,
+ "end": 12799.69,
+ "text": "Still"
+ },
+ {
+ "id": 28151,
+ "start": 12799.69,
+ "end": 12800.39,
+ "text": "disproportionately"
+ },
+ {
+ "id": 28152,
+ "start": 12800.39,
+ "end": 12800.91,
+ "text": "impacting"
+ },
+ {
+ "id": 28153,
+ "start": 12800.91,
+ "end": 12801.51,
+ "text": "low"
+ },
+ {
+ "id": 28154,
+ "start": 12801.51,
+ "end": 12801.83,
+ "text": "income"
+ },
+ {
+ "id": 28155,
+ "start": 12801.83,
+ "end": 12802.31,
+ "text": "communities"
+ },
+ {
+ "id": 28156,
+ "start": 12802.31,
+ "end": 12802.41,
+ "text": "and"
+ },
+ {
+ "id": 28157,
+ "start": 12802.41,
+ "end": 12802.77,
+ "text": "communities"
+ },
+ {
+ "id": 28158,
+ "start": 12802.77,
+ "end": 12802.85,
+ "text": "of"
+ },
+ {
+ "id": 28159,
+ "start": 12802.85,
+ "end": 12803.74,
+ "text": "color"
+ },
+ {
+ "id": 28160,
+ "start": 12803.74,
+ "end": 12804.48,
+ "text": "given"
+ },
+ {
+ "id": 28161,
+ "start": 12804.48,
+ "end": 12804.6,
+ "text": "the"
+ },
+ {
+ "id": 28162,
+ "start": 12804.6,
+ "end": 12804.84,
+ "text": "fact"
+ },
+ {
+ "id": 28163,
+ "start": 12804.84,
+ "end": 12805.04,
+ "text": "that"
+ },
+ {
+ "id": 28164,
+ "start": 12805.04,
+ "end": 12805.32,
+ "text": "you"
+ },
+ {
+ "id": 28165,
+ "start": 12805.32,
+ "end": 12805.6,
+ "text": "allow"
+ },
+ {
+ "id": 28166,
+ "start": 12805.6,
+ "end": 12805.88,
+ "text": "team"
+ },
+ {
+ "id": 28167,
+ "start": 12805.88,
+ "end": 12806.12,
+ "text": "verge"
+ },
+ {
+ "id": 28168,
+ "start": 12806.12,
+ "end": 12806.72,
+ "text": "analytical"
+ },
+ {
+ "id": 28169,
+ "start": 12806.72,
+ "end": 12806.84,
+ "text": "to"
+ },
+ {
+ "id": 28170,
+ "start": 12806.84,
+ "end": 12807.06,
+ "text": "self"
+ },
+ {
+ "id": 28171,
+ "start": 12807.06,
+ "end": 12807.56,
+ "text": "certify"
+ },
+ {
+ "id": 28172,
+ "start": 12807.56,
+ "end": 12807.68,
+ "text": "in"
+ },
+ {
+ "id": 28173,
+ "start": 12807.68,
+ "end": 12807.76,
+ "text": "a"
+ },
+ {
+ "id": 28174,
+ "start": 12807.76,
+ "end": 12807.92,
+ "text": "way"
+ },
+ {
+ "id": 28175,
+ "start": 12807.92,
+ "end": 12808.06,
+ "text": "that"
+ },
+ {
+ "id": 28176,
+ "start": 12808.06,
+ "end": 12808.16,
+ "text": "I"
+ },
+ {
+ "id": 28177,
+ "start": 12808.16,
+ "end": 12808.36,
+ "text": "think,"
+ },
+ {
+ "id": 28178,
+ "start": 12808.36,
+ "end": 12808.96,
+ "text": "at"
+ },
+ {
+ "id": 28179,
+ "start": 12808.96,
+ "end": 12809.14,
+ "text": "least"
+ },
+ {
+ "id": 28180,
+ "start": 12809.14,
+ "end": 12809.26,
+ "text": "I"
+ },
+ {
+ "id": 28181,
+ "start": 12809.26,
+ "end": 12809.44,
+ "text": "think"
+ },
+ {
+ "id": 28182,
+ "start": 12809.44,
+ "end": 12809.62,
+ "text": "you"
+ },
+ {
+ "id": 28183,
+ "start": 12809.62,
+ "end": 12810.08,
+ "text": "expressed"
+ },
+ {
+ "id": 28184,
+ "start": 12810.08,
+ "end": 12810.52,
+ "text": "regret"
+ },
+ {
+ "id": 28185,
+ "start": 12810.52,
+ "end": 12810.88,
+ "text": "over"
+ },
+ {
+ "id": 28186,
+ "start": 12810.88,
+ "end": 12811.58,
+ "text": "is"
+ },
+ {
+ "id": 28187,
+ "start": 12811.58,
+ "end": 12811.84,
+ "text": "self"
+ },
+ {
+ "id": 28188,
+ "start": 12811.84,
+ "end": 12812.54,
+ "text": "certification"
+ },
+ {
+ "id": 28189,
+ "start": 12812.54,
+ "end": 12813.08,
+ "text": "the"
+ },
+ {
+ "id": 28190,
+ "start": 12813.08,
+ "end": 12813.54,
+ "text": "best"
+ },
+ {
+ "id": 28191,
+ "start": 12813.54,
+ "end": 12813.78,
+ "text": "song,"
+ },
+ {
+ "id": 28192,
+ "start": 12813.78,
+ "end": 12813.94,
+ "text": "a"
+ },
+ {
+ "id": 28193,
+ "start": 12813.94,
+ "end": 12814.54,
+ "text": "safe"
+ },
+ {
+ "id": 28194,
+ "start": 12814.54,
+ "end": 12814.84,
+ "text": "word"
+ },
+ {
+ "id": 28195,
+ "start": 12814.84,
+ "end": 12815.34,
+ "text": "guard"
+ },
+ {
+ "id": 28196,
+ "start": 12815.34,
+ "end": 12815.58,
+ "text": "against"
+ },
+ {
+ "id": 28197,
+ "start": 12815.58,
+ "end": 12815.72,
+ "text": "the"
+ },
+ {
+ "id": 28198,
+ "start": 12815.72,
+ "end": 12816.16,
+ "text": "misuse"
+ },
+ {
+ "id": 28199,
+ "start": 12816.16,
+ "end": 12816.26,
+ "text": "of"
+ },
+ {
+ "id": 28200,
+ "start": 12816.26,
+ "end": 12816.44,
+ "text": "your"
+ },
+ {
+ "id": 28201,
+ "start": 12816.44,
+ "end": 12817.1,
+ "text": "platform"
+ },
+ {
+ "id": 28202,
+ "start": 12817.1,
+ "end": 12817.6,
+ "text": "and"
+ },
+ {
+ "id": 28203,
+ "start": 12817.6,
+ "end": 12818.08,
+ "text": "protect."
+ },
+ {
+ "id": 28204,
+ "start": 12818.08,
+ "end": 12818.24,
+ "text": "The"
+ },
+ {
+ "id": 28205,
+ "start": 12818.24,
+ "end": 12818.7,
+ "text": "data"
+ },
+ {
+ "id": 28206,
+ "start": 12818.7,
+ "end": 12818.86,
+ "text": "of"
+ },
+ {
+ "id": 28207,
+ "start": 12818.86,
+ "end": 12819.44,
+ "text": "users"
+ },
+ {
+ "id": 28208,
+ "start": 12819.44,
+ "end": 12820.1,
+ "text": "not"
+ },
+ {
+ "id": 28209,
+ "start": 12820.1,
+ "end": 12820.26,
+ "text": "let"
+ },
+ {
+ "id": 28210,
+ "start": 12820.26,
+ "end": 12820.36,
+ "text": "it"
+ },
+ {
+ "id": 28211,
+ "start": 12820.36,
+ "end": 12820.44,
+ "text": "to"
+ },
+ {
+ "id": 28212,
+ "start": 12820.44,
+ "end": 12820.6,
+ "text": "be"
+ },
+ {
+ "id": 28213,
+ "start": 12820.6,
+ "end": 12821.32,
+ "text": "manipulated"
+ },
+ {
+ "id": 28214,
+ "start": 12821.32,
+ "end": 12821.48,
+ "text": "in"
+ },
+ {
+ "id": 28215,
+ "start": 12821.48,
+ "end": 12821.68,
+ "text": "such"
+ },
+ {
+ "id": 28216,
+ "start": 12821.68,
+ "end": 12821.76,
+ "text": "a"
+ },
+ {
+ "id": 28217,
+ "start": 12821.76,
+ "end": 12822.52,
+ "text": "discriminatory"
+ },
+ {
+ "id": 28218,
+ "start": 12822.52,
+ "end": 12824.08,
+ "text": "fashion,"
+ },
+ {
+ "id": 28219,
+ "start": 12824.08,
+ "end": 12825.06,
+ "text": "Senator."
+ },
+ {
+ "id": 28220,
+ "start": 12825.06,
+ "end": 12825.22,
+ "text": "This"
+ },
+ {
+ "id": 28221,
+ "start": 12825.22,
+ "end": 12825.36,
+ "text": "is"
+ },
+ {
+ "id": 28222,
+ "start": 12825.36,
+ "end": 12825.6,
+ "text": "a"
+ },
+ {
+ "id": 28223,
+ "start": 12825.6,
+ "end": 12826.42,
+ "text": "very"
+ },
+ {
+ "id": 28224,
+ "start": 12826.42,
+ "end": 12827.34,
+ "text": "important"
+ },
+ {
+ "id": 28225,
+ "start": 12827.34,
+ "end": 12827.76,
+ "text": "question."
+ },
+ {
+ "id": 28226,
+ "start": 12827.76,
+ "end": 12828.6,
+ "text": "And,"
+ },
+ {
+ "id": 28227,
+ "start": 12828.6,
+ "end": 12829.58,
+ "text": "you"
+ },
+ {
+ "id": 28228,
+ "start": 12829.58,
+ "end": 12829.72,
+ "text": "know,"
+ },
+ {
+ "id": 28229,
+ "start": 12829.72,
+ "end": 12830.12,
+ "text": "in"
+ },
+ {
+ "id": 28230,
+ "start": 12830.12,
+ "end": 12830.58,
+ "text": "general,"
+ },
+ {
+ "id": 28231,
+ "start": 12830.58,
+ "end": 12831.22,
+ "text": "I"
+ },
+ {
+ "id": 28232,
+ "start": 12831.22,
+ "end": 12831.4,
+ "text": "think"
+ },
+ {
+ "id": 28233,
+ "start": 12831.4,
+ "end": 12831.66,
+ "text": "over"
+ },
+ {
+ "id": 28234,
+ "start": 12831.66,
+ "end": 12831.94,
+ "text": "time"
+ },
+ {
+ "id": 28235,
+ "start": 12831.94,
+ "end": 12832.24,
+ "text": "we're"
+ },
+ {
+ "id": 28236,
+ "start": 12832.24,
+ "end": 12832.42,
+ "text": "going"
+ },
+ {
+ "id": 28237,
+ "start": 12832.42,
+ "end": 12832.56,
+ "text": "to"
+ },
+ {
+ "id": 28238,
+ "start": 12832.56,
+ "end": 12832.84,
+ "text": "move"
+ },
+ {
+ "id": 28239,
+ "start": 12832.84,
+ "end": 12833.16,
+ "text": "towards"
+ },
+ {
+ "id": 28240,
+ "start": 12833.16,
+ "end": 12833.48,
+ "text": "more"
+ },
+ {
+ "id": 28241,
+ "start": 12833.48,
+ "end": 12834.02,
+ "text": "proactive"
+ },
+ {
+ "id": 28242,
+ "start": 12834.02,
+ "end": 12834.48,
+ "text": "review"
+ },
+ {
+ "id": 28243,
+ "start": 12834.48,
+ "end": 12835.18,
+ "text": "with"
+ },
+ {
+ "id": 28244,
+ "start": 12835.18,
+ "end": 12835.46,
+ "text": "more"
+ },
+ {
+ "id": 28245,
+ "start": 12835.46,
+ "end": 12835.86,
+ "text": "AI"
+ },
+ {
+ "id": 28246,
+ "start": 12835.86,
+ "end": 12836.2,
+ "text": "tools"
+ },
+ {
+ "id": 28247,
+ "start": 12836.2,
+ "end": 12836.42,
+ "text": "to"
+ },
+ {
+ "id": 28248,
+ "start": 12836.42,
+ "end": 12837.14,
+ "text": "flag"
+ },
+ {
+ "id": 28249,
+ "start": 12837.14,
+ "end": 12837.82,
+ "text": "problematic"
+ },
+ {
+ "id": 28250,
+ "start": 12837.82,
+ "end": 12838.56,
+ "text": "content"
+ },
+ {
+ "id": 28251,
+ "start": 12838.56,
+ "end": 12839.56,
+ "text": "in"
+ },
+ {
+ "id": 28252,
+ "start": 12839.56,
+ "end": 12839.66,
+ "text": "the"
+ },
+ {
+ "id": 28253,
+ "start": 12839.66,
+ "end": 12839.86,
+ "text": "near"
+ },
+ {
+ "id": 28254,
+ "start": 12839.86,
+ "end": 12840.1,
+ "text": "term."
+ },
+ {
+ "id": 28255,
+ "start": 12840.1,
+ "end": 12840.72,
+ "text": "We"
+ },
+ {
+ "id": 28256,
+ "start": 12840.72,
+ "end": 12841,
+ "text": "have"
+ },
+ {
+ "id": 28257,
+ "start": 12841,
+ "end": 12841.38,
+ "text": "a"
+ },
+ {
+ "id": 28258,
+ "start": 12841.38,
+ "end": 12841.56,
+ "text": "lot"
+ },
+ {
+ "id": 28259,
+ "start": 12841.56,
+ "end": 12841.66,
+ "text": "of"
+ },
+ {
+ "id": 28260,
+ "start": 12841.66,
+ "end": 12842.04,
+ "text": "content"
+ },
+ {
+ "id": 28261,
+ "start": 12842.04,
+ "end": 12842.16,
+ "text": "on"
+ },
+ {
+ "id": 28262,
+ "start": 12842.16,
+ "end": 12842.28,
+ "text": "the"
+ },
+ {
+ "id": 28263,
+ "start": 12842.28,
+ "end": 12842.78,
+ "text": "platform"
+ },
+ {
+ "id": 28264,
+ "start": 12842.78,
+ "end": 12844.26,
+ "text": "and"
+ },
+ {
+ "id": 28265,
+ "start": 12844.26,
+ "end": 12845.24,
+ "text": "it's"
+ },
+ {
+ "id": 28266,
+ "start": 12845.24,
+ "end": 12845.46,
+ "text": "hard"
+ },
+ {
+ "id": 28267,
+ "start": 12845.46,
+ "end": 12845.72,
+ "text": "to"
+ },
+ {
+ "id": 28268,
+ "start": 12845.72,
+ "end": 12846.14,
+ "text": "review"
+ },
+ {
+ "id": 28269,
+ "start": 12846.14,
+ "end": 12846.4,
+ "text": "every"
+ },
+ {
+ "id": 28270,
+ "start": 12846.4,
+ "end": 12846.66,
+ "text": "single"
+ },
+ {
+ "id": 28271,
+ "start": 12846.66,
+ "end": 12846.82,
+ "text": "thing"
+ },
+ {
+ "id": 28272,
+ "start": 12846.82,
+ "end": 12846.94,
+ "text": "up"
+ },
+ {
+ "id": 28273,
+ "start": 12846.94,
+ "end": 12847.16,
+ "text": "front."
+ },
+ {
+ "id": 28274,
+ "start": 12847.16,
+ "end": 12847.32,
+ "text": "We"
+ },
+ {
+ "id": 28275,
+ "start": 12847.32,
+ "end": 12847.44,
+ "text": "do"
+ },
+ {
+ "id": 28276,
+ "start": 12847.44,
+ "end": 12847.52,
+ "text": "a"
+ },
+ {
+ "id": 28277,
+ "start": 12847.52,
+ "end": 12847.76,
+ "text": "quick"
+ },
+ {
+ "id": 28278,
+ "start": 12847.76,
+ "end": 12849.02,
+ "text": "screen,"
+ },
+ {
+ "id": 28279,
+ "start": 12849.02,
+ "end": 12850.06,
+ "text": "but"
+ },
+ {
+ "id": 28280,
+ "start": 12850.06,
+ "end": 12850.56,
+ "text": "I"
+ },
+ {
+ "id": 28281,
+ "start": 12850.56,
+ "end": 12850.96,
+ "text": "agree"
+ },
+ {
+ "id": 28282,
+ "start": 12850.96,
+ "end": 12851.12,
+ "text": "with"
+ },
+ {
+ "id": 28283,
+ "start": 12851.12,
+ "end": 12851.26,
+ "text": "you"
+ },
+ {
+ "id": 28284,
+ "start": 12851.26,
+ "end": 12851.62,
+ "text": "that"
+ },
+ {
+ "id": 28285,
+ "start": 12851.62,
+ "end": 12851.68,
+ "text": "I"
+ },
+ {
+ "id": 28286,
+ "start": 12851.68,
+ "end": 12851.96,
+ "text": "think"
+ },
+ {
+ "id": 28287,
+ "start": 12851.96,
+ "end": 12852.24,
+ "text": "in"
+ },
+ {
+ "id": 28288,
+ "start": 12852.24,
+ "end": 12852.6,
+ "text": "this"
+ },
+ {
+ "id": 28289,
+ "start": 12852.6,
+ "end": 12853.12,
+ "text": "specific"
+ },
+ {
+ "id": 28290,
+ "start": 12853.12,
+ "end": 12854.08,
+ "text": "case"
+ },
+ {
+ "id": 28291,
+ "start": 12854.08,
+ "end": 12854.9,
+ "text": "I'm"
+ },
+ {
+ "id": 28292,
+ "start": 12854.9,
+ "end": 12855.06,
+ "text": "not"
+ },
+ {
+ "id": 28293,
+ "start": 12855.06,
+ "end": 12855.32,
+ "text": "happy"
+ },
+ {
+ "id": 28294,
+ "start": 12855.32,
+ "end": 12855.5,
+ "text": "with"
+ },
+ {
+ "id": 28295,
+ "start": 12855.5,
+ "end": 12855.68,
+ "text": "where"
+ },
+ {
+ "id": 28296,
+ "start": 12855.68,
+ "end": 12855.78,
+ "text": "we"
+ },
+ {
+ "id": 28297,
+ "start": 12855.78,
+ "end": 12855.94,
+ "text": "are."
+ },
+ {
+ "id": 28298,
+ "start": 12855.94,
+ "end": 12856.76,
+ "text": "And"
+ },
+ {
+ "id": 28299,
+ "start": 12856.76,
+ "end": 12857.02,
+ "text": "I"
+ },
+ {
+ "id": 28300,
+ "start": 12857.02,
+ "end": 12857.3,
+ "text": "think"
+ },
+ {
+ "id": 28301,
+ "start": 12857.3,
+ "end": 12857.58,
+ "text": "it"
+ },
+ {
+ "id": 28302,
+ "start": 12857.58,
+ "end": 12857.78,
+ "text": "makes"
+ },
+ {
+ "id": 28303,
+ "start": 12857.78,
+ "end": 12858.06,
+ "text": "sense"
+ },
+ {
+ "id": 28304,
+ "start": 12858.06,
+ "end": 12859.16,
+ "text": "to"
+ },
+ {
+ "id": 28305,
+ "start": 12859.16,
+ "end": 12860.14,
+ "text": "really"
+ },
+ {
+ "id": 28306,
+ "start": 12860.14,
+ "end": 12860.48,
+ "text": "focus"
+ },
+ {
+ "id": 28307,
+ "start": 12860.48,
+ "end": 12860.78,
+ "text": "on"
+ },
+ {
+ "id": 28308,
+ "start": 12860.78,
+ "end": 12861.08,
+ "text": "making"
+ },
+ {
+ "id": 28309,
+ "start": 12861.08,
+ "end": 12861.26,
+ "text": "sure"
+ },
+ {
+ "id": 28310,
+ "start": 12861.26,
+ "end": 12861.4,
+ "text": "that"
+ },
+ {
+ "id": 28311,
+ "start": 12861.4,
+ "end": 12861.62,
+ "text": "these"
+ },
+ {
+ "id": 28312,
+ "start": 12861.62,
+ "end": 12862.04,
+ "text": "areas"
+ },
+ {
+ "id": 28313,
+ "start": 12862.04,
+ "end": 12862.32,
+ "text": "get"
+ },
+ {
+ "id": 28314,
+ "start": 12862.32,
+ "end": 12862.52,
+ "text": "more"
+ },
+ {
+ "id": 28315,
+ "start": 12862.52,
+ "end": 12862.84,
+ "text": "review"
+ },
+ {
+ "id": 28316,
+ "start": 12862.84,
+ "end": 12863.18,
+ "text": "center"
+ },
+ {
+ "id": 28317,
+ "start": 12863.18,
+ "end": 12863.7,
+ "text": "and"
+ },
+ {
+ "id": 28318,
+ "start": 12863.7,
+ "end": 12863.76,
+ "text": "I"
+ },
+ {
+ "id": 28319,
+ "start": 12863.76,
+ "end": 12863.9,
+ "text": "know"
+ },
+ {
+ "id": 28320,
+ "start": 12863.9,
+ "end": 12864.04,
+ "text": "you"
+ },
+ {
+ "id": 28321,
+ "start": 12864.04,
+ "end": 12864.37,
+ "text": "understand"
+ },
+ {
+ "id": 28322,
+ "start": 12864.37,
+ "end": 12864.73,
+ "text": "that"
+ },
+ {
+ "id": 28323,
+ "start": 12864.73,
+ "end": 12864.93,
+ "text": "there"
+ },
+ {
+ "id": 28324,
+ "start": 12864.93,
+ "end": 12865.07,
+ "text": "is"
+ },
+ {
+ "id": 28325,
+ "start": 12865.07,
+ "end": 12865.55,
+ "text": "a"
+ },
+ {
+ "id": 28326,
+ "start": 12865.55,
+ "end": 12866.59,
+ "text": "growing"
+ },
+ {
+ "id": 28327,
+ "start": 12866.59,
+ "end": 12867.57,
+ "text": "distrust."
+ },
+ {
+ "id": 28328,
+ "start": 12867.57,
+ "end": 12867.71,
+ "text": "I"
+ },
+ {
+ "id": 28329,
+ "start": 12867.71,
+ "end": 12867.87,
+ "text": "know"
+ },
+ {
+ "id": 28330,
+ "start": 12867.87,
+ "end": 12867.93,
+ "text": "a"
+ },
+ {
+ "id": 28331,
+ "start": 12867.93,
+ "end": 12868.05,
+ "text": "lot"
+ },
+ {
+ "id": 28332,
+ "start": 12868.05,
+ "end": 12868.13,
+ "text": "of"
+ },
+ {
+ "id": 28333,
+ "start": 12868.13,
+ "end": 12868.37,
+ "text": "civil"
+ },
+ {
+ "id": 28334,
+ "start": 12868.37,
+ "end": 12868.55,
+ "text": "rights"
+ },
+ {
+ "id": 28335,
+ "start": 12868.55,
+ "end": 12869.07,
+ "text": "organizations"
+ },
+ {
+ "id": 28336,
+ "start": 12869.07,
+ "end": 12869.23,
+ "text": "have"
+ },
+ {
+ "id": 28337,
+ "start": 12869.23,
+ "end": 12869.43,
+ "text": "met"
+ },
+ {
+ "id": 28338,
+ "start": 12869.43,
+ "end": 12869.59,
+ "text": "with"
+ },
+ {
+ "id": 28339,
+ "start": 12869.59,
+ "end": 12870.31,
+ "text": "you"
+ },
+ {
+ "id": 28340,
+ "start": 12870.31,
+ "end": 12871.33,
+ "text": "about"
+ },
+ {
+ "id": 28341,
+ "start": 12871.33,
+ "end": 12871.77,
+ "text": "Facebook"
+ },
+ {
+ "id": 28342,
+ "start": 12871.77,
+ "end": 12871.99,
+ "text": "sense"
+ },
+ {
+ "id": 28343,
+ "start": 12871.99,
+ "end": 12872.09,
+ "text": "of"
+ },
+ {
+ "id": 28344,
+ "start": 12872.09,
+ "end": 12872.63,
+ "text": "urgency"
+ },
+ {
+ "id": 28345,
+ "start": 12872.63,
+ "end": 12872.75,
+ "text": "to"
+ },
+ {
+ "id": 28346,
+ "start": 12872.75,
+ "end": 12873.11,
+ "text": "address"
+ },
+ {
+ "id": 28347,
+ "start": 12873.11,
+ "end": 12873.33,
+ "text": "these"
+ },
+ {
+ "id": 28348,
+ "start": 12873.33,
+ "end": 12874.88,
+ "text": "issues"
+ },
+ {
+ "id": 28349,
+ "start": 12874.88,
+ "end": 12875.84,
+ "text": "there's"
+ },
+ {
+ "id": 28350,
+ "start": 12875.84,
+ "end": 12875.98,
+ "text": "a"
+ },
+ {
+ "id": 28351,
+ "start": 12875.98,
+ "end": 12876.56,
+ "text": "distrusted"
+ },
+ {
+ "id": 28352,
+ "start": 12876.56,
+ "end": 12876.84,
+ "text": "stems"
+ },
+ {
+ "id": 28353,
+ "start": 12876.84,
+ "end": 12876.98,
+ "text": "from"
+ },
+ {
+ "id": 28354,
+ "start": 12876.98,
+ "end": 12877.1,
+ "text": "the"
+ },
+ {
+ "id": 28355,
+ "start": 12877.1,
+ "end": 12877.26,
+ "text": "fact."
+ },
+ {
+ "id": 28356,
+ "start": 12877.26,
+ "end": 12877.4,
+ "text": "And"
+ },
+ {
+ "id": 28357,
+ "start": 12877.4,
+ "end": 12877.46,
+ "text": "I"
+ },
+ {
+ "id": 28358,
+ "start": 12877.46,
+ "end": 12877.62,
+ "text": "know"
+ },
+ {
+ "id": 28359,
+ "start": 12877.62,
+ "end": 12878.24,
+ "text": "I've"
+ },
+ {
+ "id": 28360,
+ "start": 12878.24,
+ "end": 12878.38,
+ "text": "had"
+ },
+ {
+ "id": 28361,
+ "start": 12878.38,
+ "end": 12878.94,
+ "text": "conversations"
+ },
+ {
+ "id": 28362,
+ "start": 12878.94,
+ "end": 12879.1,
+ "text": "with"
+ },
+ {
+ "id": 28363,
+ "start": 12879.1,
+ "end": 12879.36,
+ "text": "leaders"
+ },
+ {
+ "id": 28364,
+ "start": 12879.36,
+ "end": 12879.48,
+ "text": "in"
+ },
+ {
+ "id": 28365,
+ "start": 12879.48,
+ "end": 12879.9,
+ "text": "Facebook"
+ },
+ {
+ "id": 28366,
+ "start": 12879.9,
+ "end": 12880.2,
+ "text": "about"
+ },
+ {
+ "id": 28367,
+ "start": 12880.2,
+ "end": 12880.58,
+ "text": "the"
+ },
+ {
+ "id": 28368,
+ "start": 12880.58,
+ "end": 12880.76,
+ "text": "lack"
+ },
+ {
+ "id": 28369,
+ "start": 12880.76,
+ "end": 12880.86,
+ "text": "of"
+ },
+ {
+ "id": 28370,
+ "start": 12880.86,
+ "end": 12881.3,
+ "text": "diversity"
+ },
+ {
+ "id": 28371,
+ "start": 12881.3,
+ "end": 12881.4,
+ "text": "in"
+ },
+ {
+ "id": 28372,
+ "start": 12881.4,
+ "end": 12881.5,
+ "text": "the"
+ },
+ {
+ "id": 28373,
+ "start": 12881.5,
+ "end": 12881.72,
+ "text": "tech"
+ },
+ {
+ "id": 28374,
+ "start": 12881.72,
+ "end": 12882.16,
+ "text": "sector"
+ },
+ {
+ "id": 28375,
+ "start": 12882.16,
+ "end": 12882.64,
+ "text": "as"
+ },
+ {
+ "id": 28376,
+ "start": 12882.64,
+ "end": 12882.84,
+ "text": "well."
+ },
+ {
+ "id": 28377,
+ "start": 12882.84,
+ "end": 12883.12,
+ "text": "People"
+ },
+ {
+ "id": 28378,
+ "start": 12883.12,
+ "end": 12883.24,
+ "text": "who"
+ },
+ {
+ "id": 28379,
+ "start": 12883.24,
+ "end": 12883.38,
+ "text": "are"
+ },
+ {
+ "id": 28380,
+ "start": 12883.38,
+ "end": 12883.74,
+ "text": "writing"
+ },
+ {
+ "id": 28381,
+ "start": 12883.74,
+ "end": 12883.92,
+ "text": "these"
+ },
+ {
+ "id": 28382,
+ "start": 12883.92,
+ "end": 12884.56,
+ "text": "algorithms."
+ },
+ {
+ "id": 28383,
+ "start": 12884.56,
+ "end": 12884.88,
+ "text": "People"
+ },
+ {
+ "id": 28384,
+ "start": 12884.88,
+ "end": 12885.04,
+ "text": "who"
+ },
+ {
+ "id": 28385,
+ "start": 12885.04,
+ "end": 12885.26,
+ "text": "are"
+ },
+ {
+ "id": 28386,
+ "start": 12885.26,
+ "end": 12886.26,
+ "text": "actually"
+ },
+ {
+ "id": 28387,
+ "start": 12886.26,
+ "end": 12886.8,
+ "text": "Policing"
+ },
+ {
+ "id": 28388,
+ "start": 12886.8,
+ "end": 12886.98,
+ "text": "for"
+ },
+ {
+ "id": 28389,
+ "start": 12886.98,
+ "end": 12887.18,
+ "text": "this"
+ },
+ {
+ "id": 28390,
+ "start": 12887.18,
+ "end": 12887.58,
+ "text": "data."
+ },
+ {
+ "id": 28391,
+ "start": 12887.58,
+ "end": 12887.94,
+ "text": "Of"
+ },
+ {
+ "id": 28392,
+ "start": 12887.94,
+ "end": 12888.38,
+ "text": "policing"
+ },
+ {
+ "id": 28393,
+ "start": 12888.38,
+ "end": 12888.5,
+ "text": "for"
+ },
+ {
+ "id": 28394,
+ "start": 12888.5,
+ "end": 12888.68,
+ "text": "these"
+ },
+ {
+ "id": 28395,
+ "start": 12888.68,
+ "end": 12889.96,
+ "text": "problems."
+ },
+ {
+ "id": 28396,
+ "start": 12889.96,
+ "end": 12890.9,
+ "text": "Are"
+ },
+ {
+ "id": 28397,
+ "start": 12890.9,
+ "end": 12891.04,
+ "text": "they"
+ },
+ {
+ "id": 28398,
+ "start": 12891.04,
+ "end": 12891.36,
+ "text": "going"
+ },
+ {
+ "id": 28399,
+ "start": 12891.36,
+ "end": 12891.48,
+ "text": "to"
+ },
+ {
+ "id": 28400,
+ "start": 12891.48,
+ "end": 12891.74,
+ "text": "be"
+ },
+ {
+ "id": 28401,
+ "start": 12891.74,
+ "end": 12892.2,
+ "text": "a"
+ },
+ {
+ "id": 28402,
+ "start": 12892.2,
+ "end": 12892.56,
+ "text": "part"
+ },
+ {
+ "id": 28403,
+ "start": 12892.56,
+ "end": 12892.84,
+ "text": "of"
+ },
+ {
+ "id": 28404,
+ "start": 12892.84,
+ "end": 12893.16,
+ "text": "a"
+ },
+ {
+ "id": 28405,
+ "start": 12893.16,
+ "end": 12893.38,
+ "text": "more"
+ },
+ {
+ "id": 28406,
+ "start": 12893.38,
+ "end": 12893.82,
+ "text": "diverse"
+ },
+ {
+ "id": 28407,
+ "start": 12893.82,
+ "end": 12894.54,
+ "text": "group"
+ },
+ {
+ "id": 28408,
+ "start": 12894.54,
+ "end": 12894.78,
+ "text": "that's"
+ },
+ {
+ "id": 28409,
+ "start": 12894.78,
+ "end": 12895.1,
+ "text": "looking"
+ },
+ {
+ "id": 28410,
+ "start": 12895.1,
+ "end": 12895.24,
+ "text": "at"
+ },
+ {
+ "id": 28411,
+ "start": 12895.24,
+ "end": 12895.42,
+ "text": "this"
+ },
+ {
+ "id": 28412,
+ "start": 12895.42,
+ "end": 12895.7,
+ "text": "you're"
+ },
+ {
+ "id": 28413,
+ "start": 12895.7,
+ "end": 12895.98,
+ "text": "looking"
+ },
+ {
+ "id": 28414,
+ "start": 12895.98,
+ "end": 12896.08,
+ "text": "to"
+ },
+ {
+ "id": 28415,
+ "start": 12896.08,
+ "end": 12896.32,
+ "text": "hire."
+ },
+ {
+ "id": 28416,
+ "start": 12896.32,
+ "end": 12896.82,
+ "text": "As"
+ },
+ {
+ "id": 28417,
+ "start": 12896.82,
+ "end": 12896.94,
+ "text": "you"
+ },
+ {
+ "id": 28418,
+ "start": 12896.94,
+ "end": 12897.18,
+ "text": "said,"
+ },
+ {
+ "id": 28419,
+ "start": 12897.18,
+ "end": 12897.94,
+ "text": "5,000"
+ },
+ {
+ "id": 28420,
+ "start": 12897.94,
+ "end": 12898.08,
+ "text": "new"
+ },
+ {
+ "id": 28421,
+ "start": 12898.08,
+ "end": 12898.62,
+ "text": "positions"
+ },
+ {
+ "id": 28422,
+ "start": 12898.62,
+ "end": 12898.78,
+ "text": "for"
+ },
+ {
+ "id": 28423,
+ "start": 12898.78,
+ "end": 12899.02,
+ "text": "among"
+ },
+ {
+ "id": 28424,
+ "start": 12899.02,
+ "end": 12899.28,
+ "text": "other"
+ },
+ {
+ "id": 28425,
+ "start": 12899.28,
+ "end": 12899.6,
+ "text": "things."
+ },
+ {
+ "id": 28426,
+ "start": 12899.6,
+ "end": 12900.42,
+ "text": "Reviewing"
+ },
+ {
+ "id": 28427,
+ "start": 12900.42,
+ "end": 12900.9,
+ "text": "content"
+ },
+ {
+ "id": 28428,
+ "start": 12900.9,
+ "end": 12901.08,
+ "text": "that"
+ },
+ {
+ "id": 28429,
+ "start": 12901.08,
+ "end": 12901.24,
+ "text": "we"
+ },
+ {
+ "id": 28430,
+ "start": 12901.24,
+ "end": 12901.4,
+ "text": "know"
+ },
+ {
+ "id": 28431,
+ "start": 12901.4,
+ "end": 12901.58,
+ "text": "in"
+ },
+ {
+ "id": 28432,
+ "start": 12901.58,
+ "end": 12901.78,
+ "text": "your"
+ },
+ {
+ "id": 28433,
+ "start": 12901.78,
+ "end": 12902.46,
+ "text": "industry."
+ },
+ {
+ "id": 28434,
+ "start": 12902.46,
+ "end": 12903.28,
+ "text": "The"
+ },
+ {
+ "id": 28435,
+ "start": 12903.28,
+ "end": 12903.64,
+ "text": "inclusive"
+ },
+ {
+ "id": 28436,
+ "start": 12903.64,
+ "end": 12904.48,
+ "text": "it's"
+ },
+ {
+ "id": 28437,
+ "start": 12904.48,
+ "end": 12904.6,
+ "text": "a"
+ },
+ {
+ "id": 28438,
+ "start": 12904.6,
+ "end": 12905.12,
+ "text": "real"
+ },
+ {
+ "id": 28439,
+ "start": 12905.12,
+ "end": 12905.6,
+ "text": "serious"
+ },
+ {
+ "id": 28440,
+ "start": 12905.6,
+ "end": 12906.04,
+ "text": "problem"
+ },
+ {
+ "id": 28441,
+ "start": 12906.04,
+ "end": 12906.22,
+ "text": "that"
+ },
+ {
+ "id": 28442,
+ "start": 12906.22,
+ "end": 12906.32,
+ "text": "you"
+ },
+ {
+ "id": 28443,
+ "start": 12906.32,
+ "end": 12906.48,
+ "text": "are"
+ },
+ {
+ "id": 28444,
+ "start": 12906.48,
+ "end": 12906.56,
+ "text": "an"
+ },
+ {
+ "id": 28445,
+ "start": 12906.56,
+ "end": 12906.92,
+ "text": "industry"
+ },
+ {
+ "id": 28446,
+ "start": 12906.92,
+ "end": 12907.06,
+ "text": "that"
+ },
+ {
+ "id": 28447,
+ "start": 12907.06,
+ "end": 12907.58,
+ "text": "lacks"
+ },
+ {
+ "id": 28448,
+ "start": 12907.58,
+ "end": 12908.18,
+ "text": "diversity"
+ },
+ {
+ "id": 28449,
+ "start": 12908.18,
+ "end": 12908.28,
+ "text": "in"
+ },
+ {
+ "id": 28450,
+ "start": 12908.28,
+ "end": 12908.36,
+ "text": "a"
+ },
+ {
+ "id": 28451,
+ "start": 12908.36,
+ "end": 12908.62,
+ "text": "very"
+ },
+ {
+ "id": 28452,
+ "start": 12908.62,
+ "end": 12909.04,
+ "text": "dramatic"
+ },
+ {
+ "id": 28453,
+ "start": 12909.04,
+ "end": 12909.42,
+ "text": "fashion"
+ },
+ {
+ "id": 28454,
+ "start": 12909.42,
+ "end": 12909.84,
+ "text": "it's"
+ },
+ {
+ "id": 28455,
+ "start": 12909.84,
+ "end": 12910.06,
+ "text": "not"
+ },
+ {
+ "id": 28456,
+ "start": 12910.06,
+ "end": 12910.24,
+ "text": "just"
+ },
+ {
+ "id": 28457,
+ "start": 12910.24,
+ "end": 12910.44,
+ "text": "true"
+ },
+ {
+ "id": 28458,
+ "start": 12910.44,
+ "end": 12910.54,
+ "text": "with"
+ },
+ {
+ "id": 28459,
+ "start": 12910.54,
+ "end": 12911,
+ "text": "Facebook"
+ },
+ {
+ "id": 28460,
+ "start": 12911,
+ "end": 12911.44,
+ "text": "it's"
+ },
+ {
+ "id": 28461,
+ "start": 12911.44,
+ "end": 12911.72,
+ "text": "true"
+ },
+ {
+ "id": 28462,
+ "start": 12911.72,
+ "end": 12911.92,
+ "text": "with"
+ },
+ {
+ "id": 28463,
+ "start": 12911.92,
+ "end": 12912.44,
+ "text": "the"
+ },
+ {
+ "id": 28464,
+ "start": 12912.44,
+ "end": 12912.7,
+ "text": "tech"
+ },
+ {
+ "id": 28465,
+ "start": 12912.7,
+ "end": 12913.14,
+ "text": "area"
+ },
+ {
+ "id": 28466,
+ "start": 12913.14,
+ "end": 12913.36,
+ "text": "as"
+ },
+ {
+ "id": 28467,
+ "start": 12913.36,
+ "end": 12913.72,
+ "text": "well."
+ },
+ {
+ "id": 28468,
+ "start": 12913.72,
+ "end": 12914.5,
+ "text": "And"
+ },
+ {
+ "id": 28469,
+ "start": 12914.5,
+ "end": 12914.72,
+ "text": "so"
+ },
+ {
+ "id": 28470,
+ "start": 12914.72,
+ "end": 12914.92,
+ "text": "it's"
+ },
+ {
+ "id": 28471,
+ "start": 12914.92,
+ "end": 12915.14,
+ "text": "very"
+ },
+ {
+ "id": 28472,
+ "start": 12915.14,
+ "end": 12915.52,
+ "text": "important"
+ },
+ {
+ "id": 28473,
+ "start": 12915.52,
+ "end": 12915.72,
+ "text": "for"
+ },
+ {
+ "id": 28474,
+ "start": 12915.72,
+ "end": 12915.9,
+ "text": "me"
+ },
+ {
+ "id": 28475,
+ "start": 12915.9,
+ "end": 12916.24,
+ "text": "to"
+ },
+ {
+ "id": 28476,
+ "start": 12916.24,
+ "end": 12917.32,
+ "text": "communicate"
+ },
+ {
+ "id": 28477,
+ "start": 12917.32,
+ "end": 12918,
+ "text": "that"
+ },
+ {
+ "id": 28478,
+ "start": 12918,
+ "end": 12918.42,
+ "text": "larger"
+ },
+ {
+ "id": 28479,
+ "start": 12918.42,
+ "end": 12918.66,
+ "text": "sense"
+ },
+ {
+ "id": 28480,
+ "start": 12918.66,
+ "end": 12918.76,
+ "text": "of"
+ },
+ {
+ "id": 28481,
+ "start": 12918.76,
+ "end": 12919.26,
+ "text": "urgency"
+ },
+ {
+ "id": 28482,
+ "start": 12919.26,
+ "end": 12920.28,
+ "text": "and"
+ },
+ {
+ "id": 28483,
+ "start": 12920.28,
+ "end": 12920.46,
+ "text": "what"
+ },
+ {
+ "id": 28484,
+ "start": 12920.46,
+ "end": 12920.52,
+ "text": "a"
+ },
+ {
+ "id": 28485,
+ "start": 12920.52,
+ "end": 12920.68,
+ "text": "lot"
+ },
+ {
+ "id": 28486,
+ "start": 12920.68,
+ "end": 12920.76,
+ "text": "of"
+ },
+ {
+ "id": 28487,
+ "start": 12920.76,
+ "end": 12921,
+ "text": "civil"
+ },
+ {
+ "id": 28488,
+ "start": 12921,
+ "end": 12921.18,
+ "text": "rights"
+ },
+ {
+ "id": 28489,
+ "start": 12921.18,
+ "end": 12921.86,
+ "text": "organizations"
+ },
+ {
+ "id": 28490,
+ "start": 12921.86,
+ "end": 12922.14,
+ "text": "are"
+ },
+ {
+ "id": 28491,
+ "start": 12922.14,
+ "end": 12922.62,
+ "text": "concerned"
+ },
+ {
+ "id": 28492,
+ "start": 12922.62,
+ "end": 12922.82,
+ "text": "with."
+ },
+ {
+ "id": 28493,
+ "start": 12922.82,
+ "end": 12923.7,
+ "text": "And"
+ },
+ {
+ "id": 28494,
+ "start": 12923.7,
+ "end": 12923.88,
+ "text": "we"
+ },
+ {
+ "id": 28495,
+ "start": 12923.88,
+ "end": 12924.12,
+ "text": "should"
+ },
+ {
+ "id": 28496,
+ "start": 12924.12,
+ "end": 12924.26,
+ "text": "be"
+ },
+ {
+ "id": 28497,
+ "start": 12924.26,
+ "end": 12924.6,
+ "text": "working"
+ },
+ {
+ "id": 28498,
+ "start": 12924.6,
+ "end": 12924.86,
+ "text": "towards"
+ },
+ {
+ "id": 28499,
+ "start": 12924.86,
+ "end": 12926.32,
+ "text": "more."
+ },
+ {
+ "id": 28500,
+ "start": 12926.32,
+ "end": 12926.74,
+ "text": "A"
+ },
+ {
+ "id": 28501,
+ "start": 12926.74,
+ "end": 12927.64,
+ "text": "more"
+ },
+ {
+ "id": 28502,
+ "start": 12927.64,
+ "end": 12928.18,
+ "text": "collaborative"
+ },
+ {
+ "id": 28503,
+ "start": 12928.18,
+ "end": 12928.56,
+ "text": "approach"
+ },
+ {
+ "id": 28504,
+ "start": 12928.56,
+ "end": 12928.68,
+ "text": "and"
+ },
+ {
+ "id": 28505,
+ "start": 12928.68,
+ "end": 12928.82,
+ "text": "I'm"
+ },
+ {
+ "id": 28506,
+ "start": 12928.82,
+ "end": 12929.16,
+ "text": "wondering"
+ },
+ {
+ "id": 28507,
+ "start": 12929.16,
+ "end": 12929.24,
+ "text": "if"
+ },
+ {
+ "id": 28508,
+ "start": 12929.24,
+ "end": 12929.44,
+ "text": "you'd"
+ },
+ {
+ "id": 28509,
+ "start": 12929.44,
+ "end": 12929.58,
+ "text": "be"
+ },
+ {
+ "id": 28510,
+ "start": 12929.58,
+ "end": 12929.94,
+ "text": "open"
+ },
+ {
+ "id": 28511,
+ "start": 12929.94,
+ "end": 12930.06,
+ "text": "to"
+ },
+ {
+ "id": 28512,
+ "start": 12930.06,
+ "end": 12930.48,
+ "text": "opening"
+ },
+ {
+ "id": 28513,
+ "start": 12930.48,
+ "end": 12930.64,
+ "text": "your"
+ },
+ {
+ "id": 28514,
+ "start": 12930.64,
+ "end": 12931.26,
+ "text": "platform"
+ },
+ {
+ "id": 28515,
+ "start": 12931.26,
+ "end": 12931.76,
+ "text": "for"
+ },
+ {
+ "id": 28516,
+ "start": 12931.76,
+ "end": 12932.08,
+ "text": "civil"
+ },
+ {
+ "id": 28517,
+ "start": 12932.08,
+ "end": 12932.26,
+ "text": "rights"
+ },
+ {
+ "id": 28518,
+ "start": 12932.26,
+ "end": 12932.78,
+ "text": "organizations"
+ },
+ {
+ "id": 28519,
+ "start": 12932.78,
+ "end": 12932.94,
+ "text": "to"
+ },
+ {
+ "id": 28520,
+ "start": 12932.94,
+ "end": 12933.16,
+ "text": "really"
+ },
+ {
+ "id": 28521,
+ "start": 12933.16,
+ "end": 12933.62,
+ "text": "audit"
+ },
+ {
+ "id": 28522,
+ "start": 12933.62,
+ "end": 12934.32,
+ "text": "a"
+ },
+ {
+ "id": 28523,
+ "start": 12934.32,
+ "end": 12934.52,
+ "text": "lot"
+ },
+ {
+ "id": 28524,
+ "start": 12934.52,
+ "end": 12934.6,
+ "text": "of"
+ },
+ {
+ "id": 28525,
+ "start": 12934.6,
+ "end": 12934.8,
+ "text": "these"
+ },
+ {
+ "id": 28526,
+ "start": 12934.8,
+ "end": 12935.12,
+ "text": "companies"
+ },
+ {
+ "id": 28527,
+ "start": 12935.12,
+ "end": 12935.38,
+ "text": "dealing"
+ },
+ {
+ "id": 28528,
+ "start": 12935.38,
+ "end": 12935.46,
+ "text": "in"
+ },
+ {
+ "id": 28529,
+ "start": 12935.46,
+ "end": 12935.7,
+ "text": "areas"
+ },
+ {
+ "id": 28530,
+ "start": 12935.7,
+ "end": 12935.84,
+ "text": "of"
+ },
+ {
+ "id": 28531,
+ "start": 12935.84,
+ "end": 12936.22,
+ "text": "credit"
+ },
+ {
+ "id": 28532,
+ "start": 12936.22,
+ "end": 12936.56,
+ "text": "and"
+ },
+ {
+ "id": 28533,
+ "start": 12936.56,
+ "end": 12936.92,
+ "text": "using"
+ },
+ {
+ "id": 28534,
+ "start": 12936.92,
+ "end": 12937.36,
+ "text": "to"
+ },
+ {
+ "id": 28535,
+ "start": 12937.36,
+ "end": 12937.58,
+ "text": "really"
+ },
+ {
+ "id": 28536,
+ "start": 12937.58,
+ "end": 12937.98,
+ "text": "audit,"
+ },
+ {
+ "id": 28537,
+ "start": 12937.98,
+ "end": 12938.14,
+ "text": "what"
+ },
+ {
+ "id": 28538,
+ "start": 12938.14,
+ "end": 12938.3,
+ "text": "is"
+ },
+ {
+ "id": 28539,
+ "start": 12938.3,
+ "end": 12938.74,
+ "text": "actually"
+ },
+ {
+ "id": 28540,
+ "start": 12938.74,
+ "end": 12939.1,
+ "text": "happening?"
+ },
+ {
+ "id": 28541,
+ "start": 12939.1,
+ "end": 12939.24,
+ "text": "And"
+ },
+ {
+ "id": 28542,
+ "start": 12939.24,
+ "end": 12939.5,
+ "text": "better"
+ },
+ {
+ "id": 28543,
+ "start": 12939.5,
+ "end": 12939.68,
+ "text": "have"
+ },
+ {
+ "id": 28544,
+ "start": 12939.68,
+ "end": 12939.86,
+ "text": "more"
+ },
+ {
+ "id": 28545,
+ "start": 12939.86,
+ "end": 12940.56,
+ "text": "transparency"
+ },
+ {
+ "id": 28546,
+ "start": 12940.56,
+ "end": 12940.68,
+ "text": "and"
+ },
+ {
+ "id": 28547,
+ "start": 12940.68,
+ "end": 12940.92,
+ "text": "working"
+ },
+ {
+ "id": 28548,
+ "start": 12940.92,
+ "end": 12941.04,
+ "text": "with"
+ },
+ {
+ "id": 28549,
+ "start": 12941.04,
+ "end": 12941.18,
+ "text": "your"
+ },
+ {
+ "id": 28550,
+ "start": 12941.18,
+ "end": 12941.58,
+ "text": "platform."
+ },
+ {
+ "id": 28551,
+ "start": 12941.58,
+ "end": 12942.74,
+ "text": "Senator."
+ },
+ {
+ "id": 28552,
+ "start": 12942.74,
+ "end": 12942.8,
+ "text": "I"
+ },
+ {
+ "id": 28553,
+ "start": 12942.8,
+ "end": 12942.98,
+ "text": "think"
+ },
+ {
+ "id": 28554,
+ "start": 12942.98,
+ "end": 12943.18,
+ "text": "that's"
+ },
+ {
+ "id": 28555,
+ "start": 12943.18,
+ "end": 12943.24,
+ "text": "a"
+ },
+ {
+ "id": 28556,
+ "start": 12943.24,
+ "end": 12943.5,
+ "text": "very"
+ },
+ {
+ "id": 28557,
+ "start": 12943.5,
+ "end": 12943.7,
+ "text": "good"
+ },
+ {
+ "id": 28558,
+ "start": 12943.7,
+ "end": 12944.04,
+ "text": "idea."
+ },
+ {
+ "id": 28559,
+ "start": 12944.04,
+ "end": 12944.2,
+ "text": "And"
+ },
+ {
+ "id": 28560,
+ "start": 12944.2,
+ "end": 12944.28,
+ "text": "I"
+ },
+ {
+ "id": 28561,
+ "start": 12944.28,
+ "end": 12944.46,
+ "text": "think"
+ },
+ {
+ "id": 28562,
+ "start": 12944.46,
+ "end": 12944.56,
+ "text": "we"
+ },
+ {
+ "id": 28563,
+ "start": 12944.56,
+ "end": 12944.78,
+ "text": "should"
+ },
+ {
+ "id": 28564,
+ "start": 12944.78,
+ "end": 12945.04,
+ "text": "follow"
+ },
+ {
+ "id": 28565,
+ "start": 12945.04,
+ "end": 12945.16,
+ "text": "up"
+ },
+ {
+ "id": 28566,
+ "start": 12945.16,
+ "end": 12945.26,
+ "text": "on"
+ },
+ {
+ "id": 28567,
+ "start": 12945.26,
+ "end": 12945.38,
+ "text": "the"
+ },
+ {
+ "id": 28568,
+ "start": 12945.38,
+ "end": 12945.74,
+ "text": "details"
+ },
+ {
+ "id": 28569,
+ "start": 12945.74,
+ "end": 12945.88,
+ "text": "of"
+ },
+ {
+ "id": 28570,
+ "start": 12945.88,
+ "end": 12946.8,
+ "text": "that,"
+ },
+ {
+ "id": 28571,
+ "start": 12946.8,
+ "end": 12946.84,
+ "text": "I"
+ },
+ {
+ "id": 28572,
+ "start": 12946.84,
+ "end": 12947.9,
+ "text": "also"
+ },
+ {
+ "id": 28573,
+ "start": 12947.9,
+ "end": 12948.08,
+ "text": "want"
+ },
+ {
+ "id": 28574,
+ "start": 12948.08,
+ "end": 12948.16,
+ "text": "to"
+ },
+ {
+ "id": 28575,
+ "start": 12948.16,
+ "end": 12948.36,
+ "text": "say"
+ },
+ {
+ "id": 28576,
+ "start": 12948.36,
+ "end": 12948.68,
+ "text": "that"
+ },
+ {
+ "id": 28577,
+ "start": 12948.68,
+ "end": 12949.36,
+ "text": "there"
+ },
+ {
+ "id": 28578,
+ "start": 12949.36,
+ "end": 12949.5,
+ "text": "was"
+ },
+ {
+ "id": 28579,
+ "start": 12949.5,
+ "end": 12949.6,
+ "text": "an"
+ },
+ {
+ "id": 28580,
+ "start": 12949.6,
+ "end": 12951.32,
+ "text": "investigation."
+ },
+ {
+ "id": 28581,
+ "start": 12951.32,
+ "end": 12952.28,
+ "text": "Something"
+ },
+ {
+ "id": 28582,
+ "start": 12952.28,
+ "end": 12952.56,
+ "text": "very"
+ },
+ {
+ "id": 28583,
+ "start": 12952.56,
+ "end": 12953.08,
+ "text": "disturbing"
+ },
+ {
+ "id": 28584,
+ "start": 12953.08,
+ "end": 12953.24,
+ "text": "to"
+ },
+ {
+ "id": 28585,
+ "start": 12953.24,
+ "end": 12953.6,
+ "text": "me"
+ },
+ {
+ "id": 28586,
+ "start": 12953.6,
+ "end": 12954.52,
+ "text": "is"
+ },
+ {
+ "id": 28587,
+ "start": 12954.52,
+ "end": 12954.84,
+ "text": "the"
+ },
+ {
+ "id": 28588,
+ "start": 12954.84,
+ "end": 12955.1,
+ "text": "fact"
+ },
+ {
+ "id": 28589,
+ "start": 12955.1,
+ "end": 12955.48,
+ "text": "that"
+ },
+ {
+ "id": 28590,
+ "start": 12955.48,
+ "end": 12955.74,
+ "text": "there"
+ },
+ {
+ "id": 28591,
+ "start": 12955.74,
+ "end": 12956.08,
+ "text": "have"
+ },
+ {
+ "id": 28592,
+ "start": 12956.08,
+ "end": 12956.4,
+ "text": "been"
+ },
+ {
+ "id": 28593,
+ "start": 12956.4,
+ "end": 12957.44,
+ "text": "law"
+ },
+ {
+ "id": 28594,
+ "start": 12957.44,
+ "end": 12957.92,
+ "text": "enforcement"
+ },
+ {
+ "id": 28595,
+ "start": 12957.92,
+ "end": 12958.74,
+ "text": "organizations"
+ },
+ {
+ "id": 28596,
+ "start": 12958.74,
+ "end": 12958.92,
+ "text": "that"
+ },
+ {
+ "id": 28597,
+ "start": 12958.92,
+ "end": 12959.26,
+ "text": "use"
+ },
+ {
+ "id": 28598,
+ "start": 12959.26,
+ "end": 12959.76,
+ "text": "Facebook's"
+ },
+ {
+ "id": 28599,
+ "start": 12959.76,
+ "end": 12960.64,
+ "text": "platform"
+ },
+ {
+ "id": 28600,
+ "start": 12960.64,
+ "end": 12961.86,
+ "text": "to"
+ },
+ {
+ "id": 28601,
+ "start": 12961.86,
+ "end": 12963.44,
+ "text": "to"
+ },
+ {
+ "id": 28602,
+ "start": 12963.44,
+ "end": 12964.6,
+ "text": "surveil"
+ },
+ {
+ "id": 28603,
+ "start": 12964.6,
+ "end": 12965.32,
+ "text": "African"
+ },
+ {
+ "id": 28604,
+ "start": 12965.32,
+ "end": 12965.66,
+ "text": "American"
+ },
+ {
+ "id": 28605,
+ "start": 12965.66,
+ "end": 12966.2,
+ "text": "organizations"
+ },
+ {
+ "id": 28606,
+ "start": 12966.2,
+ "end": 12966.34,
+ "text": "like"
+ },
+ {
+ "id": 28607,
+ "start": 12966.34,
+ "end": 12966.54,
+ "text": "black"
+ },
+ {
+ "id": 28608,
+ "start": 12966.54,
+ "end": 12966.82,
+ "text": "lives"
+ },
+ {
+ "id": 28609,
+ "start": 12966.82,
+ "end": 12967.12,
+ "text": "matter."
+ },
+ {
+ "id": 28610,
+ "start": 12967.12,
+ "end": 12967.22,
+ "text": "I"
+ },
+ {
+ "id": 28611,
+ "start": 12967.22,
+ "end": 12967.4,
+ "text": "know"
+ },
+ {
+ "id": 28612,
+ "start": 12967.4,
+ "end": 12967.64,
+ "text": "you've"
+ },
+ {
+ "id": 28613,
+ "start": 12967.64,
+ "end": 12969.64,
+ "text": "expressed"
+ },
+ {
+ "id": 28614,
+ "start": 12969.64,
+ "end": 12970.64,
+ "text": "support"
+ },
+ {
+ "id": 28615,
+ "start": 12970.64,
+ "end": 12970.8,
+ "text": "for"
+ },
+ {
+ "id": 28616,
+ "start": 12970.8,
+ "end": 12970.94,
+ "text": "the"
+ },
+ {
+ "id": 28617,
+ "start": 12970.94,
+ "end": 12971.2,
+ "text": "group"
+ },
+ {
+ "id": 28618,
+ "start": 12971.2,
+ "end": 12971.76,
+ "text": "and"
+ },
+ {
+ "id": 28619,
+ "start": 12971.76,
+ "end": 12972.42,
+ "text": "Philando"
+ },
+ {
+ "id": 28620,
+ "start": 12972.42,
+ "end": 12973.06,
+ "text": "castles."
+ },
+ {
+ "id": 28621,
+ "start": 12973.06,
+ "end": 12974.24,
+ "text": "Killing"
+ },
+ {
+ "id": 28622,
+ "start": 12974.24,
+ "end": 12975.06,
+ "text": "was"
+ },
+ {
+ "id": 28623,
+ "start": 12975.06,
+ "end": 12975.6,
+ "text": "broadcast"
+ },
+ {
+ "id": 28624,
+ "start": 12975.6,
+ "end": 12976.12,
+ "text": "live"
+ },
+ {
+ "id": 28625,
+ "start": 12976.12,
+ "end": 12976.74,
+ "text": "on"
+ },
+ {
+ "id": 28626,
+ "start": 12976.74,
+ "end": 12977.66,
+ "text": "Facebook."
+ },
+ {
+ "id": 28627,
+ "start": 12977.66,
+ "end": 12978.38,
+ "text": "But"
+ },
+ {
+ "id": 28628,
+ "start": 12978.38,
+ "end": 12978.54,
+ "text": "there"
+ },
+ {
+ "id": 28629,
+ "start": 12978.54,
+ "end": 12978.66,
+ "text": "are"
+ },
+ {
+ "id": 28630,
+ "start": 12978.66,
+ "end": 12978.72,
+ "text": "a"
+ },
+ {
+ "id": 28631,
+ "start": 12978.72,
+ "end": 12978.84,
+ "text": "lot"
+ },
+ {
+ "id": 28632,
+ "start": 12978.84,
+ "end": 12978.92,
+ "text": "of"
+ },
+ {
+ "id": 28633,
+ "start": 12978.92,
+ "end": 12979.26,
+ "text": "communities"
+ },
+ {
+ "id": 28634,
+ "start": 12979.26,
+ "end": 12979.36,
+ "text": "of"
+ },
+ {
+ "id": 28635,
+ "start": 12979.36,
+ "end": 12979.72,
+ "text": "color"
+ },
+ {
+ "id": 28636,
+ "start": 12979.72,
+ "end": 12980.12,
+ "text": "worry"
+ },
+ {
+ "id": 28637,
+ "start": 12980.12,
+ "end": 12980.28,
+ "text": "that"
+ },
+ {
+ "id": 28638,
+ "start": 12980.28,
+ "end": 12980.5,
+ "text": "that"
+ },
+ {
+ "id": 28639,
+ "start": 12980.5,
+ "end": 12980.98,
+ "text": "data"
+ },
+ {
+ "id": 28640,
+ "start": 12980.98,
+ "end": 12982.02,
+ "text": "can"
+ },
+ {
+ "id": 28641,
+ "start": 12982.02,
+ "end": 12982.16,
+ "text": "be"
+ },
+ {
+ "id": 28642,
+ "start": 12982.16,
+ "end": 12982.7,
+ "text": "used"
+ },
+ {
+ "id": 28643,
+ "start": 12982.7,
+ "end": 12983.72,
+ "text": "to"
+ },
+ {
+ "id": 28644,
+ "start": 12983.72,
+ "end": 12985.18,
+ "text": "surveil"
+ },
+ {
+ "id": 28645,
+ "start": 12985.18,
+ "end": 12986.26,
+ "text": "groups"
+ },
+ {
+ "id": 28646,
+ "start": 12986.26,
+ "end": 12986.48,
+ "text": "like"
+ },
+ {
+ "id": 28647,
+ "start": 12986.48,
+ "end": 12986.72,
+ "text": "black"
+ },
+ {
+ "id": 28648,
+ "start": 12986.72,
+ "end": 12986.98,
+ "text": "lives."
+ },
+ {
+ "id": 28649,
+ "start": 12986.98,
+ "end": 12987.34,
+ "text": "Matter"
+ },
+ {
+ "id": 28650,
+ "start": 12987.34,
+ "end": 12987.62,
+ "text": "like"
+ },
+ {
+ "id": 28651,
+ "start": 12987.62,
+ "end": 12987.88,
+ "text": "folks"
+ },
+ {
+ "id": 28652,
+ "start": 12987.88,
+ "end": 12987.98,
+ "text": "who"
+ },
+ {
+ "id": 28653,
+ "start": 12987.98,
+ "end": 12988.16,
+ "text": "are"
+ },
+ {
+ "id": 28654,
+ "start": 12988.16,
+ "end": 12988.52,
+ "text": "trying"
+ },
+ {
+ "id": 28655,
+ "start": 12988.52,
+ "end": 12989.2,
+ "text": "to"
+ },
+ {
+ "id": 28656,
+ "start": 12989.2,
+ "end": 12990.16,
+ "text": "organize"
+ },
+ {
+ "id": 28657,
+ "start": 12990.16,
+ "end": 12990.6,
+ "text": "against"
+ },
+ {
+ "id": 28658,
+ "start": 12990.6,
+ "end": 12991.44,
+ "text": "substance"
+ },
+ {
+ "id": 28659,
+ "start": 12991.44,
+ "end": 12991.54,
+ "text": "of"
+ },
+ {
+ "id": 28660,
+ "start": 12991.54,
+ "end": 12991.78,
+ "text": "issues"
+ },
+ {
+ "id": 28661,
+ "start": 12991.78,
+ "end": 12991.92,
+ "text": "and"
+ },
+ {
+ "id": 28662,
+ "start": 12991.92,
+ "end": 12992.4,
+ "text": "discrimination"
+ },
+ {
+ "id": 28663,
+ "start": 12992.4,
+ "end": 12992.5,
+ "text": "in"
+ },
+ {
+ "id": 28664,
+ "start": 12992.5,
+ "end": 12992.68,
+ "text": "this"
+ },
+ {
+ "id": 28665,
+ "start": 12992.68,
+ "end": 12993.1,
+ "text": "country?"
+ },
+ {
+ "id": 28666,
+ "start": 12993.1,
+ "end": 12993.56,
+ "text": "Is"
+ },
+ {
+ "id": 28667,
+ "start": 12993.56,
+ "end": 12993.72,
+ "text": "this"
+ },
+ {
+ "id": 28668,
+ "start": 12993.72,
+ "end": 12994.02,
+ "text": "something"
+ },
+ {
+ "id": 28669,
+ "start": 12994.02,
+ "end": 12994.14,
+ "text": "that"
+ },
+ {
+ "id": 28670,
+ "start": 12994.14,
+ "end": 12994.32,
+ "text": "you're"
+ },
+ {
+ "id": 28671,
+ "start": 12994.32,
+ "end": 12994.74,
+ "text": "committed"
+ },
+ {
+ "id": 28672,
+ "start": 12994.74,
+ "end": 12994.9,
+ "text": "to"
+ },
+ {
+ "id": 28673,
+ "start": 12994.9,
+ "end": 12995.46,
+ "text": "addressing"
+ },
+ {
+ "id": 28674,
+ "start": 12995.46,
+ "end": 12995.6,
+ "text": "and"
+ },
+ {
+ "id": 28675,
+ "start": 12995.6,
+ "end": 12995.8,
+ "text": "to"
+ },
+ {
+ "id": 28676,
+ "start": 12995.8,
+ "end": 12997.02,
+ "text": "ensuring"
+ },
+ {
+ "id": 28677,
+ "start": 12997.02,
+ "end": 12997.82,
+ "text": "that"
+ },
+ {
+ "id": 28678,
+ "start": 12997.82,
+ "end": 12998.02,
+ "text": "the"
+ },
+ {
+ "id": 28679,
+ "start": 12998.02,
+ "end": 12998.48,
+ "text": "freedoms"
+ },
+ {
+ "id": 28680,
+ "start": 12998.48,
+ "end": 12999.18,
+ "text": "that"
+ },
+ {
+ "id": 28681,
+ "start": 12999.18,
+ "end": 12999.54,
+ "text": "civil"
+ },
+ {
+ "id": 28682,
+ "start": 12999.54,
+ "end": 12999.72,
+ "text": "rights"
+ },
+ {
+ "id": 28683,
+ "start": 12999.72,
+ "end": 13000.16,
+ "text": "activists"
+ },
+ {
+ "id": 28684,
+ "start": 13000.16,
+ "end": 13000.26,
+ "text": "and"
+ },
+ {
+ "id": 28685,
+ "start": 13000.26,
+ "end": 13000.56,
+ "text": "others"
+ },
+ {
+ "id": 28686,
+ "start": 13000.56,
+ "end": 13001.36,
+ "text": "are"
+ },
+ {
+ "id": 28687,
+ "start": 13001.36,
+ "end": 13001.62,
+ "text": "not"
+ },
+ {
+ "id": 28688,
+ "start": 13001.62,
+ "end": 13002.26,
+ "text": "targeted"
+ },
+ {
+ "id": 28689,
+ "start": 13002.26,
+ "end": 13003.12,
+ "text": "or"
+ },
+ {
+ "id": 28690,
+ "start": 13003.12,
+ "end": 13003.42,
+ "text": "their"
+ },
+ {
+ "id": 28691,
+ "start": 13003.42,
+ "end": 13003.68,
+ "text": "work"
+ },
+ {
+ "id": 28692,
+ "start": 13003.68,
+ "end": 13003.88,
+ "text": "not"
+ },
+ {
+ "id": 28693,
+ "start": 13003.88,
+ "end": 13004.08,
+ "text": "being"
+ },
+ {
+ "id": 28694,
+ "start": 13004.08,
+ "end": 13004.62,
+ "text": "undermined"
+ },
+ {
+ "id": 28695,
+ "start": 13004.62,
+ "end": 13004.72,
+ "text": "or"
+ },
+ {
+ "id": 28696,
+ "start": 13004.72,
+ "end": 13004.96,
+ "text": "people."
+ },
+ {
+ "id": 28697,
+ "start": 13004.96,
+ "end": 13005.12,
+ "text": "Not"
+ },
+ {
+ "id": 28698,
+ "start": 13005.12,
+ "end": 13005.36,
+ "text": "using"
+ },
+ {
+ "id": 28699,
+ "start": 13005.36,
+ "end": 13005.52,
+ "text": "your"
+ },
+ {
+ "id": 28700,
+ "start": 13005.52,
+ "end": 13006.14,
+ "text": "platform"
+ },
+ {
+ "id": 28701,
+ "start": 13006.14,
+ "end": 13006.56,
+ "text": "to"
+ },
+ {
+ "id": 28702,
+ "start": 13006.56,
+ "end": 13007.48,
+ "text": "unfairly"
+ },
+ {
+ "id": 28703,
+ "start": 13007.48,
+ "end": 13008,
+ "text": "surveil"
+ },
+ {
+ "id": 28704,
+ "start": 13008,
+ "end": 13008.78,
+ "text": "and"
+ },
+ {
+ "id": 28705,
+ "start": 13008.78,
+ "end": 13009.06,
+ "text": "try"
+ },
+ {
+ "id": 28706,
+ "start": 13009.06,
+ "end": 13010.26,
+ "text": "to"
+ },
+ {
+ "id": 28707,
+ "start": 13010.26,
+ "end": 13011.24,
+ "text": "undermine"
+ },
+ {
+ "id": 28708,
+ "start": 13011.24,
+ "end": 13011.36,
+ "text": "the"
+ },
+ {
+ "id": 28709,
+ "start": 13011.36,
+ "end": 13011.84,
+ "text": "activities"
+ },
+ {
+ "id": 28710,
+ "start": 13011.84,
+ "end": 13011.96,
+ "text": "that"
+ },
+ {
+ "id": 28711,
+ "start": 13011.96,
+ "end": 13012.12,
+ "text": "those"
+ },
+ {
+ "id": 28712,
+ "start": 13012.12,
+ "end": 13012.34,
+ "text": "groups"
+ },
+ {
+ "id": 28713,
+ "start": 13012.34,
+ "end": 13012.48,
+ "text": "are"
+ },
+ {
+ "id": 28714,
+ "start": 13012.48,
+ "end": 13012.72,
+ "text": "doing."
+ },
+ {
+ "id": 28715,
+ "start": 13012.72,
+ "end": 13013.66,
+ "text": "Yes,"
+ },
+ {
+ "id": 28716,
+ "start": 13013.66,
+ "end": 13014.04,
+ "text": "Senator,"
+ },
+ {
+ "id": 28717,
+ "start": 13014.04,
+ "end": 13014.6,
+ "text": "I"
+ },
+ {
+ "id": 28718,
+ "start": 13014.6,
+ "end": 13014.76,
+ "text": "think"
+ },
+ {
+ "id": 28719,
+ "start": 13014.76,
+ "end": 13014.88,
+ "text": "that"
+ },
+ {
+ "id": 28720,
+ "start": 13014.88,
+ "end": 13015.08,
+ "text": "that's"
+ },
+ {
+ "id": 28721,
+ "start": 13015.08,
+ "end": 13015.36,
+ "text": "very"
+ },
+ {
+ "id": 28722,
+ "start": 13015.36,
+ "end": 13015.78,
+ "text": "important"
+ },
+ {
+ "id": 28723,
+ "start": 13015.78,
+ "end": 13016.66,
+ "text": "we're"
+ },
+ {
+ "id": 28724,
+ "start": 13016.66,
+ "end": 13016.96,
+ "text": "committed"
+ },
+ {
+ "id": 28725,
+ "start": 13016.96,
+ "end": 13017.06,
+ "text": "to"
+ },
+ {
+ "id": 28726,
+ "start": 13017.06,
+ "end": 13017.3,
+ "text": "that."
+ },
+ {
+ "id": 28727,
+ "start": 13017.3,
+ "end": 13018.46,
+ "text": "And"
+ },
+ {
+ "id": 28728,
+ "start": 13018.46,
+ "end": 13019.42,
+ "text": "in"
+ },
+ {
+ "id": 28729,
+ "start": 13019.42,
+ "end": 13019.8,
+ "text": "general,"
+ },
+ {
+ "id": 28730,
+ "start": 13019.8,
+ "end": 13020.18,
+ "text": "unless"
+ },
+ {
+ "id": 28731,
+ "start": 13020.18,
+ "end": 13020.76,
+ "text": "law"
+ },
+ {
+ "id": 28732,
+ "start": 13020.76,
+ "end": 13021.36,
+ "text": "enforcement"
+ },
+ {
+ "id": 28733,
+ "start": 13021.36,
+ "end": 13021.74,
+ "text": "has"
+ },
+ {
+ "id": 28734,
+ "start": 13021.74,
+ "end": 13022.5,
+ "text": "a"
+ },
+ {
+ "id": 28735,
+ "start": 13022.5,
+ "end": 13022.86,
+ "text": "very"
+ },
+ {
+ "id": 28736,
+ "start": 13022.86,
+ "end": 13023.74,
+ "text": "clear"
+ },
+ {
+ "id": 28737,
+ "start": 13023.74,
+ "end": 13024.56,
+ "text": "subpoena"
+ },
+ {
+ "id": 28738,
+ "start": 13024.56,
+ "end": 13024.84,
+ "text": "or"
+ },
+ {
+ "id": 28739,
+ "start": 13024.84,
+ "end": 13025.28,
+ "text": "ability"
+ },
+ {
+ "id": 28740,
+ "start": 13025.28,
+ "end": 13025.58,
+ "text": "or"
+ },
+ {
+ "id": 28741,
+ "start": 13025.58,
+ "end": 13025.74,
+ "text": "a"
+ },
+ {
+ "id": 28742,
+ "start": 13025.74,
+ "end": 13026.12,
+ "text": "reason"
+ },
+ {
+ "id": 28743,
+ "start": 13026.12,
+ "end": 13026.22,
+ "text": "to"
+ },
+ {
+ "id": 28744,
+ "start": 13026.22,
+ "end": 13026.36,
+ "text": "get"
+ },
+ {
+ "id": 28745,
+ "start": 13026.36,
+ "end": 13026.68,
+ "text": "access"
+ },
+ {
+ "id": 28746,
+ "start": 13026.68,
+ "end": 13026.76,
+ "text": "to"
+ },
+ {
+ "id": 28747,
+ "start": 13026.76,
+ "end": 13027.3,
+ "text": "information"
+ },
+ {
+ "id": 28748,
+ "start": 13027.3,
+ "end": 13027.78,
+ "text": "we're"
+ },
+ {
+ "id": 28749,
+ "start": 13027.78,
+ "end": 13027.92,
+ "text": "going"
+ },
+ {
+ "id": 28750,
+ "start": 13027.92,
+ "end": 13027.98,
+ "text": "to"
+ },
+ {
+ "id": 28751,
+ "start": 13027.98,
+ "end": 13028.14,
+ "text": "push"
+ },
+ {
+ "id": 28752,
+ "start": 13028.14,
+ "end": 13028.32,
+ "text": "back"
+ },
+ {
+ "id": 28753,
+ "start": 13028.32,
+ "end": 13028.42,
+ "text": "on"
+ },
+ {
+ "id": 28754,
+ "start": 13028.42,
+ "end": 13028.56,
+ "text": "that"
+ },
+ {
+ "id": 28755,
+ "start": 13028.56,
+ "end": 13028.9,
+ "text": "across"
+ },
+ {
+ "id": 28756,
+ "start": 13028.9,
+ "end": 13029.02,
+ "text": "the"
+ },
+ {
+ "id": 28757,
+ "start": 13029.02,
+ "end": 13029.26,
+ "text": "board."
+ },
+ {
+ "id": 28758,
+ "start": 13029.26,
+ "end": 13029.5,
+ "text": "And"
+ },
+ {
+ "id": 28759,
+ "start": 13029.5,
+ "end": 13029.62,
+ "text": "then"
+ },
+ {
+ "id": 28760,
+ "start": 13029.62,
+ "end": 13029.66,
+ "text": "I"
+ },
+ {
+ "id": 28761,
+ "start": 13029.66,
+ "end": 13029.78,
+ "text": "was"
+ },
+ {
+ "id": 28762,
+ "start": 13029.78,
+ "end": 13029.9,
+ "text": "just"
+ },
+ {
+ "id": 28763,
+ "start": 13029.9,
+ "end": 13030.04,
+ "text": "like"
+ },
+ {
+ "id": 28764,
+ "start": 13030.04,
+ "end": 13030.14,
+ "text": "for"
+ },
+ {
+ "id": 28765,
+ "start": 13030.14,
+ "end": 13030.24,
+ "text": "the"
+ },
+ {
+ "id": 28766,
+ "start": 13030.24,
+ "end": 13030.56,
+ "text": "record,"
+ },
+ {
+ "id": 28767,
+ "start": 13030.56,
+ "end": 13030.86,
+ "text": "my"
+ },
+ {
+ "id": 28768,
+ "start": 13030.86,
+ "end": 13031.04,
+ "text": "time"
+ },
+ {
+ "id": 28769,
+ "start": 13031.04,
+ "end": 13031.16,
+ "text": "is"
+ },
+ {
+ "id": 28770,
+ "start": 13031.16,
+ "end": 13031.7,
+ "text": "expired,"
+ },
+ {
+ "id": 28771,
+ "start": 13031.7,
+ "end": 13032.42,
+ "text": "but"
+ },
+ {
+ "id": 28772,
+ "start": 13032.42,
+ "end": 13032.64,
+ "text": "there's"
+ },
+ {
+ "id": 28773,
+ "start": 13032.64,
+ "end": 13032.7,
+ "text": "a"
+ },
+ {
+ "id": 28774,
+ "start": 13032.7,
+ "end": 13033.02,
+ "text": "lawsuit"
+ },
+ {
+ "id": 28775,
+ "start": 13033.02,
+ "end": 13033.22,
+ "text": "against"
+ },
+ {
+ "id": 28776,
+ "start": 13033.22,
+ "end": 13033.7,
+ "text": "Facebook"
+ },
+ {
+ "id": 28777,
+ "start": 13033.7,
+ "end": 13033.92,
+ "text": "about"
+ },
+ {
+ "id": 28778,
+ "start": 13033.92,
+ "end": 13034.74,
+ "text": "discrimination."
+ },
+ {
+ "id": 28779,
+ "start": 13034.74,
+ "end": 13035.36,
+ "text": "And"
+ },
+ {
+ "id": 28780,
+ "start": 13035.36,
+ "end": 13035.66,
+ "text": "you"
+ },
+ {
+ "id": 28781,
+ "start": 13035.66,
+ "end": 13036.28,
+ "text": "move"
+ },
+ {
+ "id": 28782,
+ "start": 13036.28,
+ "end": 13036.42,
+ "text": "for"
+ },
+ {
+ "id": 28783,
+ "start": 13036.42,
+ "end": 13036.54,
+ "text": "the"
+ },
+ {
+ "id": 28784,
+ "start": 13036.54,
+ "end": 13036.94,
+ "text": "lawsuit"
+ },
+ {
+ "id": 28785,
+ "start": 13036.94,
+ "end": 13037.08,
+ "text": "to"
+ },
+ {
+ "id": 28786,
+ "start": 13037.08,
+ "end": 13037.2,
+ "text": "be"
+ },
+ {
+ "id": 28787,
+ "start": 13037.2,
+ "end": 13037.64,
+ "text": "dismissed"
+ },
+ {
+ "id": 28788,
+ "start": 13037.64,
+ "end": 13038,
+ "text": "because"
+ },
+ {
+ "id": 28789,
+ "start": 13038,
+ "end": 13038.22,
+ "text": "no"
+ },
+ {
+ "id": 28790,
+ "start": 13038.22,
+ "end": 13038.5,
+ "text": "harm"
+ },
+ {
+ "id": 28791,
+ "start": 13038.5,
+ "end": 13038.7,
+ "text": "was"
+ },
+ {
+ "id": 28792,
+ "start": 13038.7,
+ "end": 13039.14,
+ "text": "shown"
+ },
+ {
+ "id": 28793,
+ "start": 13039.14,
+ "end": 13039.6,
+ "text": "to"
+ },
+ {
+ "id": 28794,
+ "start": 13039.6,
+ "end": 13039.76,
+ "text": "do"
+ },
+ {
+ "id": 28795,
+ "start": 13039.76,
+ "end": 13039.98,
+ "text": "please"
+ },
+ {
+ "id": 28796,
+ "start": 13039.98,
+ "end": 13040.18,
+ "text": "submit"
+ },
+ {
+ "id": 28797,
+ "start": 13040.18,
+ "end": 13040.33,
+ "text": "to"
+ },
+ {
+ "id": 28798,
+ "start": 13040.33,
+ "end": 13040.41,
+ "text": "the"
+ },
+ {
+ "id": 28799,
+ "start": 13040.41,
+ "end": 13041.57,
+ "text": "record,"
+ },
+ {
+ "id": 28800,
+ "start": 13041.57,
+ "end": 13041.73,
+ "text": "could"
+ },
+ {
+ "id": 28801,
+ "start": 13041.73,
+ "end": 13041.87,
+ "text": "you"
+ },
+ {
+ "id": 28802,
+ "start": 13041.87,
+ "end": 13042.29,
+ "text": "believe"
+ },
+ {
+ "id": 28803,
+ "start": 13042.29,
+ "end": 13042.49,
+ "text": "that"
+ },
+ {
+ "id": 28804,
+ "start": 13042.49,
+ "end": 13042.75,
+ "text": "people"
+ },
+ {
+ "id": 28805,
+ "start": 13042.75,
+ "end": 13042.87,
+ "text": "of"
+ },
+ {
+ "id": 28806,
+ "start": 13042.87,
+ "end": 13043.21,
+ "text": "color"
+ },
+ {
+ "id": 28807,
+ "start": 13043.21,
+ "end": 13043.45,
+ "text": "were"
+ },
+ {
+ "id": 28808,
+ "start": 13043.45,
+ "end": 13043.67,
+ "text": "not"
+ },
+ {
+ "id": 28809,
+ "start": 13043.67,
+ "end": 13043.89,
+ "text": "more"
+ },
+ {
+ "id": 28810,
+ "start": 13043.89,
+ "end": 13045.01,
+ "text": "recruited"
+ },
+ {
+ "id": 28811,
+ "start": 13045.01,
+ "end": 13045.27,
+ "text": "for"
+ },
+ {
+ "id": 28812,
+ "start": 13045.27,
+ "end": 13045.95,
+ "text": "various"
+ },
+ {
+ "id": 28813,
+ "start": 13045.95,
+ "end": 13046.93,
+ "text": "economic?"
+ },
+ {
+ "id": 28814,
+ "start": 13046.93,
+ "end": 13047.45,
+ "text": "Opportunities"
+ },
+ {
+ "id": 28815,
+ "start": 13047.45,
+ "end": 13047.61,
+ "text": "are"
+ },
+ {
+ "id": 28816,
+ "start": 13047.61,
+ "end": 13047.79,
+ "text": "being"
+ },
+ {
+ "id": 28817,
+ "start": 13047.79,
+ "end": 13048.19,
+ "text": "harmed."
+ },
+ {
+ "id": 28818,
+ "start": 13048.19,
+ "end": 13048.69,
+ "text": "You"
+ },
+ {
+ "id": 28819,
+ "start": 13048.69,
+ "end": 13049.21,
+ "text": "please"
+ },
+ {
+ "id": 28820,
+ "start": 13049.21,
+ "end": 13050.37,
+ "text": "clarify"
+ },
+ {
+ "id": 28821,
+ "start": 13050.37,
+ "end": 13050.87,
+ "text": "why"
+ },
+ {
+ "id": 28822,
+ "start": 13050.87,
+ "end": 13051.01,
+ "text": "you"
+ },
+ {
+ "id": 28823,
+ "start": 13051.01,
+ "end": 13051.23,
+ "text": "move"
+ },
+ {
+ "id": 28824,
+ "start": 13051.23,
+ "end": 13051.39,
+ "text": "or"
+ },
+ {
+ "id": 28825,
+ "start": 13051.39,
+ "end": 13051.89,
+ "text": "dismiss"
+ },
+ {
+ "id": 28826,
+ "start": 13051.89,
+ "end": 13051.99,
+ "text": "a"
+ },
+ {
+ "id": 28827,
+ "start": 13051.99,
+ "end": 13052.35,
+ "text": "lawsuit"
+ },
+ {
+ "id": 28828,
+ "start": 13052.35,
+ "end": 13052.47,
+ "text": "for"
+ },
+ {
+ "id": 28829,
+ "start": 13052.47,
+ "end": 13052.57,
+ "text": "the"
+ },
+ {
+ "id": 28830,
+ "start": 13052.57,
+ "end": 13052.83,
+ "text": "record"
+ },
+ {
+ "id": 28831,
+ "start": 13052.83,
+ "end": 13053.27,
+ "text": "for"
+ },
+ {
+ "id": 28832,
+ "start": 13053.27,
+ "end": 13053.39,
+ "text": "the"
+ },
+ {
+ "id": 28833,
+ "start": 13053.39,
+ "end": 13054.13,
+ "text": "record"
+ },
+ {
+ "id": 28834,
+ "start": 13054.13,
+ "end": 13054.37,
+ "text": "center."
+ },
+ {
+ "id": 28835,
+ "start": 13054.37,
+ "end": 13054.63,
+ "text": "Heller"
+ },
+ {
+ "id": 28836,
+ "start": 13054.63,
+ "end": 13054.71,
+ "text": "is"
+ },
+ {
+ "id": 28837,
+ "start": 13054.71,
+ "end": 13054.87,
+ "text": "up"
+ },
+ {
+ "id": 28838,
+ "start": 13054.87,
+ "end": 13057.96,
+ "text": "next."
+ },
+ {
+ "id": 28839,
+ "start": 13057.96,
+ "end": 13059.02,
+ "text": "Do"
+ },
+ {
+ "id": 28840,
+ "start": 13059.02,
+ "end": 13059.38,
+ "text": "you"
+ },
+ {
+ "id": 28841,
+ "start": 13059.38,
+ "end": 13060.38,
+ "text": "are"
+ },
+ {
+ "id": 28842,
+ "start": 13060.38,
+ "end": 13060.68,
+ "text": "German."
+ },
+ {
+ "id": 28843,
+ "start": 13060.68,
+ "end": 13060.88,
+ "text": "Thank"
+ },
+ {
+ "id": 28844,
+ "start": 13060.88,
+ "end": 13061.04,
+ "text": "you,"
+ },
+ {
+ "id": 28845,
+ "start": 13061.04,
+ "end": 13062.02,
+ "text": "appreciate"
+ },
+ {
+ "id": 28846,
+ "start": 13062.02,
+ "end": 13062.2,
+ "text": "the"
+ },
+ {
+ "id": 28847,
+ "start": 13062.2,
+ "end": 13062.42,
+ "text": "time"
+ },
+ {
+ "id": 28848,
+ "start": 13062.42,
+ "end": 13062.56,
+ "text": "and"
+ },
+ {
+ "id": 28849,
+ "start": 13062.56,
+ "end": 13062.76,
+ "text": "thank"
+ },
+ {
+ "id": 28850,
+ "start": 13062.76,
+ "end": 13062.92,
+ "text": "you"
+ },
+ {
+ "id": 28851,
+ "start": 13062.92,
+ "end": 13063.08,
+ "text": "for"
+ },
+ {
+ "id": 28852,
+ "start": 13063.08,
+ "end": 13063.3,
+ "text": "being"
+ },
+ {
+ "id": 28853,
+ "start": 13063.3,
+ "end": 13063.42,
+ "text": "here."
+ },
+ {
+ "id": 28854,
+ "start": 13063.42,
+ "end": 13063.54,
+ "text": "I'm"
+ },
+ {
+ "id": 28855,
+ "start": 13063.54,
+ "end": 13063.74,
+ "text": "over"
+ },
+ {
+ "id": 28856,
+ "start": 13063.74,
+ "end": 13063.9,
+ "text": "here,"
+ },
+ {
+ "id": 28857,
+ "start": 13063.9,
+ "end": 13064.8,
+ "text": "thanks"
+ },
+ {
+ "id": 28858,
+ "start": 13064.8,
+ "end": 13065.5,
+ "text": "and"
+ },
+ {
+ "id": 28859,
+ "start": 13065.5,
+ "end": 13065.74,
+ "text": "thank"
+ },
+ {
+ "id": 28860,
+ "start": 13065.74,
+ "end": 13065.9,
+ "text": "you"
+ },
+ {
+ "id": 28861,
+ "start": 13065.9,
+ "end": 13066.1,
+ "text": "for"
+ },
+ {
+ "id": 28862,
+ "start": 13066.1,
+ "end": 13066.54,
+ "text": "taking"
+ },
+ {
+ "id": 28863,
+ "start": 13066.54,
+ "end": 13066.74,
+ "text": "time."
+ },
+ {
+ "id": 28864,
+ "start": 13066.74,
+ "end": 13066.84,
+ "text": "I"
+ },
+ {
+ "id": 28865,
+ "start": 13066.84,
+ "end": 13066.98,
+ "text": "know"
+ },
+ {
+ "id": 28866,
+ "start": 13066.98,
+ "end": 13067.14,
+ "text": "it's"
+ },
+ {
+ "id": 28867,
+ "start": 13067.14,
+ "end": 13067.28,
+ "text": "been"
+ },
+ {
+ "id": 28868,
+ "start": 13067.28,
+ "end": 13067.34,
+ "text": "a"
+ },
+ {
+ "id": 28869,
+ "start": 13067.34,
+ "end": 13067.6,
+ "text": "long"
+ },
+ {
+ "id": 28870,
+ "start": 13067.6,
+ "end": 13067.78,
+ "text": "day"
+ },
+ {
+ "id": 28871,
+ "start": 13067.78,
+ "end": 13068.04,
+ "text": "and"
+ },
+ {
+ "id": 28872,
+ "start": 13068.04,
+ "end": 13068.76,
+ "text": "I"
+ },
+ {
+ "id": 28873,
+ "start": 13068.76,
+ "end": 13068.94,
+ "text": "think"
+ },
+ {
+ "id": 28874,
+ "start": 13068.94,
+ "end": 13069.1,
+ "text": "you're"
+ },
+ {
+ "id": 28875,
+ "start": 13069.1,
+ "end": 13069.18,
+ "text": "at"
+ },
+ {
+ "id": 28876,
+ "start": 13069.18,
+ "end": 13070.12,
+ "text": "the"
+ },
+ {
+ "id": 28877,
+ "start": 13070.12,
+ "end": 13070.4,
+ "text": "final"
+ },
+ {
+ "id": 28878,
+ "start": 13070.4,
+ "end": 13070.78,
+ "text": "stretch"
+ },
+ {
+ "id": 28879,
+ "start": 13070.78,
+ "end": 13071.06,
+ "text": "here."
+ },
+ {
+ "id": 28880,
+ "start": 13071.06,
+ "end": 13071.24,
+ "text": "But"
+ },
+ {
+ "id": 28881,
+ "start": 13071.24,
+ "end": 13071.42,
+ "text": "I'm"
+ },
+ {
+ "id": 28882,
+ "start": 13071.42,
+ "end": 13071.66,
+ "text": "glad"
+ },
+ {
+ "id": 28883,
+ "start": 13071.66,
+ "end": 13071.84,
+ "text": "that"
+ },
+ {
+ "id": 28884,
+ "start": 13071.84,
+ "end": 13072,
+ "text": "you"
+ },
+ {
+ "id": 28885,
+ "start": 13072,
+ "end": 13072.2,
+ "text": "are"
+ },
+ {
+ "id": 28886,
+ "start": 13072.2,
+ "end": 13072.46,
+ "text": "here"
+ },
+ {
+ "id": 28887,
+ "start": 13072.46,
+ "end": 13073.46,
+ "text": "yesterday."
+ },
+ {
+ "id": 28888,
+ "start": 13073.46,
+ "end": 13074.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 28889,
+ "start": 13074.1,
+ "end": 13074.28,
+ "text": "and"
+ },
+ {
+ "id": 28890,
+ "start": 13074.28,
+ "end": 13074.42,
+ "text": "on"
+ },
+ {
+ "id": 28891,
+ "start": 13074.42,
+ "end": 13074.46,
+ "text": "a"
+ },
+ {
+ "id": 28892,
+ "start": 13074.46,
+ "end": 13075.1,
+ "text": "notification"
+ },
+ {
+ "id": 28893,
+ "start": 13075.1,
+ "end": 13076.02,
+ "text": "to"
+ },
+ {
+ "id": 28894,
+ "start": 13076.02,
+ "end": 13077.24,
+ "text": "use"
+ },
+ {
+ "id": 28895,
+ "start": 13077.24,
+ "end": 13077.4,
+ "text": "that"
+ },
+ {
+ "id": 28896,
+ "start": 13077.4,
+ "end": 13077.88,
+ "text": "information"
+ },
+ {
+ "id": 28897,
+ "start": 13077.88,
+ "end": 13078.06,
+ "text": "was"
+ },
+ {
+ "id": 28898,
+ "start": 13078.06,
+ "end": 13078.3,
+ "text": "given"
+ },
+ {
+ "id": 28899,
+ "start": 13078.3,
+ "end": 13078.4,
+ "text": "to"
+ },
+ {
+ "id": 28900,
+ "start": 13078.4,
+ "end": 13078.78,
+ "text": "Cambridge"
+ },
+ {
+ "id": 28901,
+ "start": 13078.78,
+ "end": 13079.42,
+ "text": "Analytica"
+ },
+ {
+ "id": 28902,
+ "start": 13079.42,
+ "end": 13079.82,
+ "text": "without"
+ },
+ {
+ "id": 28903,
+ "start": 13079.82,
+ "end": 13080.04,
+ "text": "their"
+ },
+ {
+ "id": 28904,
+ "start": 13080.04,
+ "end": 13080.82,
+ "text": "consent."
+ },
+ {
+ "id": 28905,
+ "start": 13080.82,
+ "end": 13081.88,
+ "text": "My"
+ },
+ {
+ "id": 28906,
+ "start": 13081.88,
+ "end": 13082.2,
+ "text": "daughter"
+ },
+ {
+ "id": 28907,
+ "start": 13082.2,
+ "end": 13082.36,
+ "text": "was"
+ },
+ {
+ "id": 28908,
+ "start": 13082.36,
+ "end": 13082.52,
+ "text": "one"
+ },
+ {
+ "id": 28909,
+ "start": 13082.52,
+ "end": 13082.62,
+ "text": "of"
+ },
+ {
+ "id": 28910,
+ "start": 13082.62,
+ "end": 13082.72,
+ "text": "the"
+ },
+ {
+ "id": 28911,
+ "start": 13082.72,
+ "end": 13084.42,
+ "text": "87,000,006"
+ },
+ {
+ "id": 28912,
+ "start": 13084.42,
+ "end": 13084.54,
+ "text": "of"
+ },
+ {
+ "id": 28913,
+ "start": 13084.54,
+ "end": 13085.36,
+ "text": "my"
+ },
+ {
+ "id": 28914,
+ "start": 13085.36,
+ "end": 13087.24,
+ "text": "staff"
+ },
+ {
+ "id": 28915,
+ "start": 13087.24,
+ "end": 13088.22,
+ "text": "all"
+ },
+ {
+ "id": 28916,
+ "start": 13088.22,
+ "end": 13088.4,
+ "text": "from"
+ },
+ {
+ "id": 28917,
+ "start": 13088.4,
+ "end": 13088.86,
+ "text": "Nevada,"
+ },
+ {
+ "id": 28918,
+ "start": 13088.86,
+ "end": 13089.42,
+ "text": "received"
+ },
+ {
+ "id": 28919,
+ "start": 13089.42,
+ "end": 13089.66,
+ "text": "this"
+ },
+ {
+ "id": 28920,
+ "start": 13089.66,
+ "end": 13090.52,
+ "text": "notification."
+ },
+ {
+ "id": 28921,
+ "start": 13090.52,
+ "end": 13090.72,
+ "text": "Can"
+ },
+ {
+ "id": 28922,
+ "start": 13090.72,
+ "end": 13090.88,
+ "text": "you"
+ },
+ {
+ "id": 28923,
+ "start": 13090.88,
+ "end": 13091.16,
+ "text": "tell"
+ },
+ {
+ "id": 28924,
+ "start": 13091.16,
+ "end": 13091.34,
+ "text": "me"
+ },
+ {
+ "id": 28925,
+ "start": 13091.34,
+ "end": 13092.38,
+ "text": "how"
+ },
+ {
+ "id": 28926,
+ "start": 13092.38,
+ "end": 13092.54,
+ "text": "many"
+ },
+ {
+ "id": 28927,
+ "start": 13092.54,
+ "end": 13092.98,
+ "text": "Evans"
+ },
+ {
+ "id": 28928,
+ "start": 13092.98,
+ "end": 13093.16,
+ "text": "were"
+ },
+ {
+ "id": 28929,
+ "start": 13093.16,
+ "end": 13093.44,
+ "text": "among"
+ },
+ {
+ "id": 28930,
+ "start": 13093.44,
+ "end": 13093.54,
+ "text": "the"
+ },
+ {
+ "id": 28931,
+ "start": 13093.54,
+ "end": 13094.54,
+ "text": "87,000,000"
+ },
+ {
+ "id": 28932,
+ "start": 13094.54,
+ "end": 13095.52,
+ "text": "that"
+ },
+ {
+ "id": 28933,
+ "start": 13095.52,
+ "end": 13096.04,
+ "text": "received"
+ },
+ {
+ "id": 28934,
+ "start": 13096.04,
+ "end": 13096.2,
+ "text": "this"
+ },
+ {
+ "id": 28935,
+ "start": 13096.2,
+ "end": 13097.34,
+ "text": "notification?"
+ },
+ {
+ "id": 28936,
+ "start": 13097.34,
+ "end": 13098.34,
+ "text": "Senator?"
+ },
+ {
+ "id": 28937,
+ "start": 13098.34,
+ "end": 13098.42,
+ "text": "I"
+ },
+ {
+ "id": 28938,
+ "start": 13098.42,
+ "end": 13098.64,
+ "text": "don't"
+ },
+ {
+ "id": 28939,
+ "start": 13098.64,
+ "end": 13098.78,
+ "text": "have"
+ },
+ {
+ "id": 28940,
+ "start": 13098.78,
+ "end": 13098.96,
+ "text": "this"
+ },
+ {
+ "id": 28941,
+ "start": 13098.96,
+ "end": 13099.32,
+ "text": "broken"
+ },
+ {
+ "id": 28942,
+ "start": 13099.32,
+ "end": 13099.48,
+ "text": "out"
+ },
+ {
+ "id": 28943,
+ "start": 13099.48,
+ "end": 13099.7,
+ "text": "by"
+ },
+ {
+ "id": 28944,
+ "start": 13099.7,
+ "end": 13100.46,
+ "text": "state"
+ },
+ {
+ "id": 28945,
+ "start": 13100.46,
+ "end": 13101.02,
+ "text": "right"
+ },
+ {
+ "id": 28946,
+ "start": 13101.02,
+ "end": 13101.18,
+ "text": "now."
+ },
+ {
+ "id": 28947,
+ "start": 13101.18,
+ "end": 13102.08,
+ "text": "But"
+ },
+ {
+ "id": 28948,
+ "start": 13102.08,
+ "end": 13102.28,
+ "text": "I"
+ },
+ {
+ "id": 28949,
+ "start": 13102.28,
+ "end": 13102.44,
+ "text": "can"
+ },
+ {
+ "id": 28950,
+ "start": 13102.44,
+ "end": 13102.6,
+ "text": "have"
+ },
+ {
+ "id": 28951,
+ "start": 13102.6,
+ "end": 13102.72,
+ "text": "my"
+ },
+ {
+ "id": 28952,
+ "start": 13102.72,
+ "end": 13102.9,
+ "text": "team"
+ },
+ {
+ "id": 28953,
+ "start": 13102.9,
+ "end": 13103.18,
+ "text": "follow"
+ },
+ {
+ "id": 28954,
+ "start": 13103.18,
+ "end": 13103.3,
+ "text": "up"
+ },
+ {
+ "id": 28955,
+ "start": 13103.3,
+ "end": 13103.46,
+ "text": "with"
+ },
+ {
+ "id": 28956,
+ "start": 13103.46,
+ "end": 13103.56,
+ "text": "you"
+ },
+ {
+ "id": 28957,
+ "start": 13103.56,
+ "end": 13103.68,
+ "text": "to"
+ },
+ {
+ "id": 28958,
+ "start": 13103.68,
+ "end": 13103.8,
+ "text": "get"
+ },
+ {
+ "id": 28959,
+ "start": 13103.8,
+ "end": 13103.92,
+ "text": "you"
+ },
+ {
+ "id": 28960,
+ "start": 13103.92,
+ "end": 13104.2,
+ "text": "the"
+ },
+ {
+ "id": 28961,
+ "start": 13104.2,
+ "end": 13104.64,
+ "text": "information."
+ },
+ {
+ "id": 28962,
+ "start": 13104.64,
+ "end": 13105.32,
+ "text": "Okay,"
+ },
+ {
+ "id": 28963,
+ "start": 13105.32,
+ "end": 13105.7,
+ "text": "okay,"
+ },
+ {
+ "id": 28964,
+ "start": 13105.7,
+ "end": 13105.82,
+ "text": "I"
+ },
+ {
+ "id": 28965,
+ "start": 13105.82,
+ "end": 13106.04,
+ "text": "figure"
+ },
+ {
+ "id": 28966,
+ "start": 13106.04,
+ "end": 13106.18,
+ "text": "that"
+ },
+ {
+ "id": 28967,
+ "start": 13106.18,
+ "end": 13106.32,
+ "text": "would"
+ },
+ {
+ "id": 28968,
+ "start": 13106.32,
+ "end": 13106.38,
+ "text": "be"
+ },
+ {
+ "id": 28969,
+ "start": 13106.38,
+ "end": 13106.5,
+ "text": "the"
+ },
+ {
+ "id": 28970,
+ "start": 13106.5,
+ "end": 13107.56,
+ "text": "answer"
+ },
+ {
+ "id": 28971,
+ "start": 13107.56,
+ "end": 13108.58,
+ "text": "after"
+ },
+ {
+ "id": 28972,
+ "start": 13108.58,
+ "end": 13108.82,
+ "text": "her"
+ },
+ {
+ "id": 28973,
+ "start": 13108.82,
+ "end": 13109.86,
+ "text": "going"
+ },
+ {
+ "id": 28974,
+ "start": 13109.86,
+ "end": 13110.06,
+ "text": "through"
+ },
+ {
+ "id": 28975,
+ "start": 13110.06,
+ "end": 13110.18,
+ "text": "this"
+ },
+ {
+ "id": 28976,
+ "start": 13110.18,
+ "end": 13110.56,
+ "text": "hearing"
+ },
+ {
+ "id": 28977,
+ "start": 13110.56,
+ "end": 13110.92,
+ "text": "and"
+ },
+ {
+ "id": 28978,
+ "start": 13110.92,
+ "end": 13111.18,
+ "text": "the"
+ },
+ {
+ "id": 28979,
+ "start": 13111.18,
+ "end": 13111.36,
+ "text": "van,"
+ },
+ {
+ "id": 28980,
+ "start": 13111.36,
+ "end": 13111.52,
+ "text": "I"
+ },
+ {
+ "id": 28981,
+ "start": 13111.52,
+ "end": 13111.66,
+ "text": "no"
+ },
+ {
+ "id": 28982,
+ "start": 13111.66,
+ "end": 13111.88,
+ "text": "longer"
+ },
+ {
+ "id": 28983,
+ "start": 13111.88,
+ "end": 13112.06,
+ "text": "want"
+ },
+ {
+ "id": 28984,
+ "start": 13112.06,
+ "end": 13112.14,
+ "text": "to"
+ },
+ {
+ "id": 28985,
+ "start": 13112.14,
+ "end": 13112.26,
+ "text": "have"
+ },
+ {
+ "id": 28986,
+ "start": 13112.26,
+ "end": 13112.34,
+ "text": "a"
+ },
+ {
+ "id": 28987,
+ "start": 13112.34,
+ "end": 13112.78,
+ "text": "Facebook"
+ },
+ {
+ "id": 28988,
+ "start": 13112.78,
+ "end": 13113.38,
+ "text": "account."
+ },
+ {
+ "id": 28989,
+ "start": 13113.38,
+ "end": 13113.9,
+ "text": "If"
+ },
+ {
+ "id": 28990,
+ "start": 13113.9,
+ "end": 13114.2,
+ "text": "that's"
+ },
+ {
+ "id": 28991,
+ "start": 13114.2,
+ "end": 13114.4,
+ "text": "the"
+ },
+ {
+ "id": 28992,
+ "start": 13114.4,
+ "end": 13114.8,
+ "text": "case."
+ },
+ {
+ "id": 28993,
+ "start": 13114.8,
+ "end": 13115.62,
+ "text": "If"
+ },
+ {
+ "id": 28994,
+ "start": 13115.62,
+ "end": 13115.7,
+ "text": "a"
+ },
+ {
+ "id": 28995,
+ "start": 13115.7,
+ "end": 13116.24,
+ "text": "Facebook"
+ },
+ {
+ "id": 28996,
+ "start": 13116.24,
+ "end": 13116.52,
+ "text": "user"
+ },
+ {
+ "id": 28997,
+ "start": 13116.52,
+ "end": 13116.86,
+ "text": "delete"
+ },
+ {
+ "id": 28998,
+ "start": 13116.86,
+ "end": 13117.02,
+ "text": "their"
+ },
+ {
+ "id": 28999,
+ "start": 13117.02,
+ "end": 13117.42,
+ "text": "account"
+ },
+ {
+ "id": 29000,
+ "start": 13117.42,
+ "end": 13118,
+ "text": "do"
+ },
+ {
+ "id": 29001,
+ "start": 13118,
+ "end": 13118.14,
+ "text": "you"
+ },
+ {
+ "id": 29002,
+ "start": 13118.14,
+ "end": 13118.52,
+ "text": "delete"
+ },
+ {
+ "id": 29003,
+ "start": 13118.52,
+ "end": 13118.74,
+ "text": "their"
+ },
+ {
+ "id": 29004,
+ "start": 13118.74,
+ "end": 13119.1,
+ "text": "data?"
+ },
+ {
+ "id": 29005,
+ "start": 13119.1,
+ "end": 13121.9,
+ "text": "Yes,"
+ },
+ {
+ "id": 29006,
+ "start": 13121.9,
+ "end": 13122.94,
+ "text": "my"
+ },
+ {
+ "id": 29007,
+ "start": 13122.94,
+ "end": 13123.14,
+ "text": "kids"
+ },
+ {
+ "id": 29008,
+ "start": 13123.14,
+ "end": 13123.3,
+ "text": "have"
+ },
+ {
+ "id": 29009,
+ "start": 13123.3,
+ "end": 13123.44,
+ "text": "been"
+ },
+ {
+ "id": 29010,
+ "start": 13123.44,
+ "end": 13123.56,
+ "text": "on"
+ },
+ {
+ "id": 29011,
+ "start": 13123.56,
+ "end": 13124.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 29012,
+ "start": 13124.02,
+ "end": 13124.5,
+ "text": "Instagram"
+ },
+ {
+ "id": 29013,
+ "start": 13124.5,
+ "end": 13124.68,
+ "text": "for"
+ },
+ {
+ "id": 29014,
+ "start": 13124.68,
+ "end": 13125.04,
+ "text": "years."
+ },
+ {
+ "id": 29015,
+ "start": 13125.04,
+ "end": 13125.24,
+ "text": "How"
+ },
+ {
+ "id": 29016,
+ "start": 13125.24,
+ "end": 13125.56,
+ "text": "long"
+ },
+ {
+ "id": 29017,
+ "start": 13125.56,
+ "end": 13126.14,
+ "text": "do"
+ },
+ {
+ "id": 29018,
+ "start": 13126.14,
+ "end": 13126.4,
+ "text": "you"
+ },
+ {
+ "id": 29019,
+ "start": 13126.4,
+ "end": 13126.76,
+ "text": "keep"
+ },
+ {
+ "id": 29020,
+ "start": 13126.76,
+ "end": 13126.96,
+ "text": "a"
+ },
+ {
+ "id": 29021,
+ "start": 13126.96,
+ "end": 13127.42,
+ "text": "user's"
+ },
+ {
+ "id": 29022,
+ "start": 13127.42,
+ "end": 13128.82,
+ "text": "data?"
+ },
+ {
+ "id": 29023,
+ "start": 13128.82,
+ "end": 13129.98,
+ "text": "Sorry,"
+ },
+ {
+ "id": 29024,
+ "start": 13129.98,
+ "end": 13130.26,
+ "text": "how"
+ },
+ {
+ "id": 29025,
+ "start": 13130.26,
+ "end": 13130.44,
+ "text": "long"
+ },
+ {
+ "id": 29026,
+ "start": 13130.44,
+ "end": 13130.5,
+ "text": "do"
+ },
+ {
+ "id": 29027,
+ "start": 13130.5,
+ "end": 13130.6,
+ "text": "you"
+ },
+ {
+ "id": 29028,
+ "start": 13130.6,
+ "end": 13130.78,
+ "text": "keep"
+ },
+ {
+ "id": 29029,
+ "start": 13130.78,
+ "end": 13130.88,
+ "text": "a"
+ },
+ {
+ "id": 29030,
+ "start": 13130.88,
+ "end": 13131.2,
+ "text": "user's"
+ },
+ {
+ "id": 29031,
+ "start": 13131.2,
+ "end": 13131.6,
+ "text": "data"
+ },
+ {
+ "id": 29032,
+ "start": 13131.6,
+ "end": 13134.9,
+ "text": "on"
+ },
+ {
+ "id": 29033,
+ "start": 13134.9,
+ "end": 13136,
+ "text": "after"
+ },
+ {
+ "id": 29034,
+ "start": 13136,
+ "end": 13136.34,
+ "text": "they've"
+ },
+ {
+ "id": 29035,
+ "start": 13136.34,
+ "end": 13137.24,
+ "text": "left"
+ },
+ {
+ "id": 29036,
+ "start": 13137.24,
+ "end": 13138.22,
+ "text": "if"
+ },
+ {
+ "id": 29037,
+ "start": 13138.22,
+ "end": 13138.86,
+ "text": "they"
+ },
+ {
+ "id": 29038,
+ "start": 13138.86,
+ "end": 13139.36,
+ "text": "choose"
+ },
+ {
+ "id": 29039,
+ "start": 13139.36,
+ "end": 13140,
+ "text": "to"
+ },
+ {
+ "id": 29040,
+ "start": 13140,
+ "end": 13140.32,
+ "text": "delete"
+ },
+ {
+ "id": 29041,
+ "start": 13140.32,
+ "end": 13140.5,
+ "text": "their"
+ },
+ {
+ "id": 29042,
+ "start": 13140.5,
+ "end": 13140.78,
+ "text": "account."
+ },
+ {
+ "id": 29043,
+ "start": 13140.78,
+ "end": 13140.98,
+ "text": "How"
+ },
+ {
+ "id": 29044,
+ "start": 13140.98,
+ "end": 13141.16,
+ "text": "long"
+ },
+ {
+ "id": 29045,
+ "start": 13141.16,
+ "end": 13141.24,
+ "text": "do"
+ },
+ {
+ "id": 29046,
+ "start": 13141.24,
+ "end": 13141.36,
+ "text": "you"
+ },
+ {
+ "id": 29047,
+ "start": 13141.36,
+ "end": 13141.54,
+ "text": "keep"
+ },
+ {
+ "id": 29048,
+ "start": 13141.54,
+ "end": 13141.7,
+ "text": "their"
+ },
+ {
+ "id": 29049,
+ "start": 13141.7,
+ "end": 13142.52,
+ "text": "data?"
+ },
+ {
+ "id": 29050,
+ "start": 13142.52,
+ "end": 13143.06,
+ "text": "I"
+ },
+ {
+ "id": 29051,
+ "start": 13143.06,
+ "end": 13143.42,
+ "text": "don't"
+ },
+ {
+ "id": 29052,
+ "start": 13143.42,
+ "end": 13143.64,
+ "text": "know"
+ },
+ {
+ "id": 29053,
+ "start": 13143.64,
+ "end": 13143.82,
+ "text": "the"
+ },
+ {
+ "id": 29054,
+ "start": 13143.82,
+ "end": 13144.08,
+ "text": "answer"
+ },
+ {
+ "id": 29055,
+ "start": 13144.08,
+ "end": 13144.16,
+ "text": "to"
+ },
+ {
+ "id": 29056,
+ "start": 13144.16,
+ "end": 13144.32,
+ "text": "that"
+ },
+ {
+ "id": 29057,
+ "start": 13144.32,
+ "end": 13144.5,
+ "text": "off."
+ },
+ {
+ "id": 29058,
+ "start": 13144.5,
+ "end": 13144.64,
+ "text": "The"
+ },
+ {
+ "id": 29059,
+ "start": 13144.64,
+ "end": 13144.82,
+ "text": "top"
+ },
+ {
+ "id": 29060,
+ "start": 13144.82,
+ "end": 13144.9,
+ "text": "of"
+ },
+ {
+ "id": 29061,
+ "start": 13144.9,
+ "end": 13145.02,
+ "text": "my"
+ },
+ {
+ "id": 29062,
+ "start": 13145.02,
+ "end": 13145.24,
+ "text": "head."
+ },
+ {
+ "id": 29063,
+ "start": 13145.24,
+ "end": 13145.94,
+ "text": "I"
+ },
+ {
+ "id": 29064,
+ "start": 13145.94,
+ "end": 13146.1,
+ "text": "know"
+ },
+ {
+ "id": 29065,
+ "start": 13146.1,
+ "end": 13146.24,
+ "text": "we"
+ },
+ {
+ "id": 29066,
+ "start": 13146.24,
+ "end": 13146.52,
+ "text": "try"
+ },
+ {
+ "id": 29067,
+ "start": 13146.52,
+ "end": 13146.64,
+ "text": "to"
+ },
+ {
+ "id": 29068,
+ "start": 13146.64,
+ "end": 13147.22,
+ "text": "delete"
+ },
+ {
+ "id": 29069,
+ "start": 13147.22,
+ "end": 13147.3,
+ "text": "it"
+ },
+ {
+ "id": 29070,
+ "start": 13147.3,
+ "end": 13147.48,
+ "text": "as"
+ },
+ {
+ "id": 29071,
+ "start": 13147.48,
+ "end": 13147.8,
+ "text": "quickly"
+ },
+ {
+ "id": 29072,
+ "start": 13147.8,
+ "end": 13148.06,
+ "text": "as"
+ },
+ {
+ "id": 29073,
+ "start": 13148.06,
+ "end": 13148.74,
+ "text": "reasonable."
+ },
+ {
+ "id": 29074,
+ "start": 13148.74,
+ "end": 13148.92,
+ "text": "We"
+ },
+ {
+ "id": 29075,
+ "start": 13148.92,
+ "end": 13149.06,
+ "text": "have"
+ },
+ {
+ "id": 29076,
+ "start": 13149.06,
+ "end": 13149.1,
+ "text": "a"
+ },
+ {
+ "id": 29077,
+ "start": 13149.1,
+ "end": 13149.26,
+ "text": "lot"
+ },
+ {
+ "id": 29078,
+ "start": 13149.26,
+ "end": 13149.38,
+ "text": "of"
+ },
+ {
+ "id": 29079,
+ "start": 13149.38,
+ "end": 13150.02,
+ "text": "complex"
+ },
+ {
+ "id": 29080,
+ "start": 13150.02,
+ "end": 13150.42,
+ "text": "systems"
+ },
+ {
+ "id": 29081,
+ "start": 13150.42,
+ "end": 13150.58,
+ "text": "and"
+ },
+ {
+ "id": 29082,
+ "start": 13150.58,
+ "end": 13150.7,
+ "text": "it"
+ },
+ {
+ "id": 29083,
+ "start": 13150.7,
+ "end": 13150.92,
+ "text": "work"
+ },
+ {
+ "id": 29084,
+ "start": 13150.92,
+ "end": 13151.16,
+ "text": "takes"
+ },
+ {
+ "id": 29085,
+ "start": 13151.16,
+ "end": 13151.24,
+ "text": "a"
+ },
+ {
+ "id": 29086,
+ "start": 13151.24,
+ "end": 13151.46,
+ "text": "while"
+ },
+ {
+ "id": 29087,
+ "start": 13151.46,
+ "end": 13151.58,
+ "text": "to"
+ },
+ {
+ "id": 29088,
+ "start": 13151.58,
+ "end": 13151.76,
+ "text": "work"
+ },
+ {
+ "id": 29089,
+ "start": 13151.76,
+ "end": 13151.98,
+ "text": "through"
+ },
+ {
+ "id": 29090,
+ "start": 13151.98,
+ "end": 13152.1,
+ "text": "all"
+ },
+ {
+ "id": 29091,
+ "start": 13152.1,
+ "end": 13152.56,
+ "text": "that."
+ },
+ {
+ "id": 29092,
+ "start": 13152.56,
+ "end": 13153.56,
+ "text": "But"
+ },
+ {
+ "id": 29093,
+ "start": 13153.56,
+ "end": 13153.7,
+ "text": "I"
+ },
+ {
+ "id": 29094,
+ "start": 13153.7,
+ "end": 13153.88,
+ "text": "think"
+ },
+ {
+ "id": 29095,
+ "start": 13153.88,
+ "end": 13153.98,
+ "text": "we"
+ },
+ {
+ "id": 29096,
+ "start": 13153.98,
+ "end": 13154.14,
+ "text": "try"
+ },
+ {
+ "id": 29097,
+ "start": 13154.14,
+ "end": 13154.22,
+ "text": "to"
+ },
+ {
+ "id": 29098,
+ "start": 13154.22,
+ "end": 13154.34,
+ "text": "move"
+ },
+ {
+ "id": 29099,
+ "start": 13154.34,
+ "end": 13154.46,
+ "text": "as"
+ },
+ {
+ "id": 29100,
+ "start": 13154.46,
+ "end": 13154.7,
+ "text": "quickly"
+ },
+ {
+ "id": 29101,
+ "start": 13154.7,
+ "end": 13154.84,
+ "text": "as"
+ },
+ {
+ "id": 29102,
+ "start": 13154.84,
+ "end": 13155.24,
+ "text": "possible."
+ },
+ {
+ "id": 29103,
+ "start": 13155.24,
+ "end": 13155.42,
+ "text": "And"
+ },
+ {
+ "id": 29104,
+ "start": 13155.42,
+ "end": 13155.76,
+ "text": "I"
+ },
+ {
+ "id": 29105,
+ "start": 13155.76,
+ "end": 13155.9,
+ "text": "can"
+ },
+ {
+ "id": 29106,
+ "start": 13155.9,
+ "end": 13156.16,
+ "text": "follow"
+ },
+ {
+ "id": 29107,
+ "start": 13156.16,
+ "end": 13156.32,
+ "text": "up"
+ },
+ {
+ "id": 29108,
+ "start": 13156.32,
+ "end": 13156.46,
+ "text": "or"
+ },
+ {
+ "id": 29109,
+ "start": 13156.46,
+ "end": 13156.66,
+ "text": "have"
+ },
+ {
+ "id": 29110,
+ "start": 13156.66,
+ "end": 13156.76,
+ "text": "my"
+ },
+ {
+ "id": 29111,
+ "start": 13156.76,
+ "end": 13156.96,
+ "text": "team"
+ },
+ {
+ "id": 29112,
+ "start": 13156.96,
+ "end": 13157.26,
+ "text": "follow"
+ },
+ {
+ "id": 29113,
+ "start": 13157.26,
+ "end": 13157.45,
+ "text": "up"
+ },
+ {
+ "id": 29114,
+ "start": 13157.45,
+ "end": 13157.57,
+ "text": "to"
+ },
+ {
+ "id": 29115,
+ "start": 13157.57,
+ "end": 13157.71,
+ "text": "get"
+ },
+ {
+ "id": 29116,
+ "start": 13157.71,
+ "end": 13158.23,
+ "text": "the"
+ },
+ {
+ "id": 29117,
+ "start": 13158.23,
+ "end": 13158.43,
+ "text": "data"
+ },
+ {
+ "id": 29118,
+ "start": 13158.43,
+ "end": 13158.53,
+ "text": "on"
+ },
+ {
+ "id": 29119,
+ "start": 13158.53,
+ "end": 13158.69,
+ "text": "that."
+ },
+ {
+ "id": 29120,
+ "start": 13158.69,
+ "end": 13159.03,
+ "text": "Okay?"
+ },
+ {
+ "id": 29121,
+ "start": 13159.03,
+ "end": 13159.77,
+ "text": "Have"
+ },
+ {
+ "id": 29122,
+ "start": 13159.77,
+ "end": 13159.89,
+ "text": "you"
+ },
+ {
+ "id": 29123,
+ "start": 13159.89,
+ "end": 13160.11,
+ "text": "ever"
+ },
+ {
+ "id": 29124,
+ "start": 13160.11,
+ "end": 13160.35,
+ "text": "said"
+ },
+ {
+ "id": 29125,
+ "start": 13160.35,
+ "end": 13160.51,
+ "text": "that"
+ },
+ {
+ "id": 29126,
+ "start": 13160.51,
+ "end": 13160.69,
+ "text": "you"
+ },
+ {
+ "id": 29127,
+ "start": 13160.69,
+ "end": 13160.99,
+ "text": "won't"
+ },
+ {
+ "id": 29128,
+ "start": 13160.99,
+ "end": 13161.63,
+ "text": "sell"
+ },
+ {
+ "id": 29129,
+ "start": 13161.63,
+ "end": 13162.17,
+ "text": "and"
+ },
+ {
+ "id": 29130,
+ "start": 13162.17,
+ "end": 13162.51,
+ "text": "add"
+ },
+ {
+ "id": 29131,
+ "start": 13162.51,
+ "end": 13162.87,
+ "text": "based"
+ },
+ {
+ "id": 29132,
+ "start": 13162.87,
+ "end": 13163.59,
+ "text": "on"
+ },
+ {
+ "id": 29133,
+ "start": 13163.59,
+ "end": 13164.59,
+ "text": "personal"
+ },
+ {
+ "id": 29134,
+ "start": 13164.59,
+ "end": 13165.25,
+ "text": "information,"
+ },
+ {
+ "id": 29135,
+ "start": 13165.25,
+ "end": 13165.79,
+ "text": "simply"
+ },
+ {
+ "id": 29136,
+ "start": 13165.79,
+ "end": 13165.99,
+ "text": "that"
+ },
+ {
+ "id": 29137,
+ "start": 13165.99,
+ "end": 13166.25,
+ "text": "that"
+ },
+ {
+ "id": 29138,
+ "start": 13166.25,
+ "end": 13166.41,
+ "text": "you"
+ },
+ {
+ "id": 29139,
+ "start": 13166.41,
+ "end": 13166.69,
+ "text": "wouldn't"
+ },
+ {
+ "id": 29140,
+ "start": 13166.69,
+ "end": 13166.89,
+ "text": "sell"
+ },
+ {
+ "id": 29141,
+ "start": 13166.89,
+ "end": 13167.05,
+ "text": "this"
+ },
+ {
+ "id": 29142,
+ "start": 13167.05,
+ "end": 13167.31,
+ "text": "data"
+ },
+ {
+ "id": 29143,
+ "start": 13167.31,
+ "end": 13167.57,
+ "text": "because"
+ },
+ {
+ "id": 29144,
+ "start": 13167.57,
+ "end": 13167.75,
+ "text": "of"
+ },
+ {
+ "id": 29145,
+ "start": 13167.75,
+ "end": 13168.09,
+ "text": "the"
+ },
+ {
+ "id": 29146,
+ "start": 13168.09,
+ "end": 13169.13,
+ "text": "usage"
+ },
+ {
+ "id": 29147,
+ "start": 13169.13,
+ "end": 13169.37,
+ "text": "ever"
+ },
+ {
+ "id": 29148,
+ "start": 13169.37,
+ "end": 13169.59,
+ "text": "goes"
+ },
+ {
+ "id": 29149,
+ "start": 13169.59,
+ "end": 13169.77,
+ "text": "too"
+ },
+ {
+ "id": 29150,
+ "start": 13169.77,
+ "end": 13174.08,
+ "text": "far."
+ },
+ {
+ "id": 29151,
+ "start": 13174.08,
+ "end": 13175.06,
+ "text": "Senator,"
+ },
+ {
+ "id": 29152,
+ "start": 13175.06,
+ "end": 13175.2,
+ "text": "can"
+ },
+ {
+ "id": 29153,
+ "start": 13175.2,
+ "end": 13175.32,
+ "text": "you"
+ },
+ {
+ "id": 29154,
+ "start": 13175.32,
+ "end": 13175.9,
+ "text": "clarify"
+ },
+ {
+ "id": 29155,
+ "start": 13175.9,
+ "end": 13176.46,
+ "text": "that?"
+ },
+ {
+ "id": 29156,
+ "start": 13176.46,
+ "end": 13177.42,
+ "text": "Have"
+ },
+ {
+ "id": 29157,
+ "start": 13177.42,
+ "end": 13177.52,
+ "text": "you"
+ },
+ {
+ "id": 29158,
+ "start": 13177.52,
+ "end": 13177.7,
+ "text": "ever"
+ },
+ {
+ "id": 29159,
+ "start": 13177.7,
+ "end": 13177.9,
+ "text": "drawn"
+ },
+ {
+ "id": 29160,
+ "start": 13177.9,
+ "end": 13178.06,
+ "text": "the"
+ },
+ {
+ "id": 29161,
+ "start": 13178.06,
+ "end": 13178.4,
+ "text": "line"
+ },
+ {
+ "id": 29162,
+ "start": 13178.4,
+ "end": 13178.84,
+ "text": "on"
+ },
+ {
+ "id": 29163,
+ "start": 13178.84,
+ "end": 13179.28,
+ "text": "selling"
+ },
+ {
+ "id": 29164,
+ "start": 13179.28,
+ "end": 13179.72,
+ "text": "data"
+ },
+ {
+ "id": 29165,
+ "start": 13179.72,
+ "end": 13180.24,
+ "text": "to"
+ },
+ {
+ "id": 29166,
+ "start": 13180.24,
+ "end": 13180.34,
+ "text": "an"
+ },
+ {
+ "id": 29167,
+ "start": 13180.34,
+ "end": 13181,
+ "text": "advertiser?"
+ },
+ {
+ "id": 29168,
+ "start": 13181,
+ "end": 13182.14,
+ "text": "Yes,"
+ },
+ {
+ "id": 29169,
+ "start": 13182.14,
+ "end": 13182.5,
+ "text": "Senator,"
+ },
+ {
+ "id": 29170,
+ "start": 13182.5,
+ "end": 13182.6,
+ "text": "we"
+ },
+ {
+ "id": 29171,
+ "start": 13182.6,
+ "end": 13182.78,
+ "text": "don't"
+ },
+ {
+ "id": 29172,
+ "start": 13182.78,
+ "end": 13183.06,
+ "text": "sell"
+ },
+ {
+ "id": 29173,
+ "start": 13183.06,
+ "end": 13183.22,
+ "text": "at"
+ },
+ {
+ "id": 29174,
+ "start": 13183.22,
+ "end": 13183.74,
+ "text": "all"
+ },
+ {
+ "id": 29175,
+ "start": 13183.74,
+ "end": 13184.8,
+ "text": "so"
+ },
+ {
+ "id": 29176,
+ "start": 13184.8,
+ "end": 13185.08,
+ "text": "the"
+ },
+ {
+ "id": 29177,
+ "start": 13185.08,
+ "end": 13185.22,
+ "text": "way"
+ },
+ {
+ "id": 29178,
+ "start": 13185.22,
+ "end": 13185.36,
+ "text": "the"
+ },
+ {
+ "id": 29179,
+ "start": 13185.36,
+ "end": 13185.54,
+ "text": "ad"
+ },
+ {
+ "id": 29180,
+ "start": 13185.54,
+ "end": 13185.86,
+ "text": "system"
+ },
+ {
+ "id": 29181,
+ "start": 13185.86,
+ "end": 13186.12,
+ "text": "works"
+ },
+ {
+ "id": 29182,
+ "start": 13186.12,
+ "end": 13186.52,
+ "text": "is"
+ },
+ {
+ "id": 29183,
+ "start": 13186.52,
+ "end": 13187.2,
+ "text": "advertisers"
+ },
+ {
+ "id": 29184,
+ "start": 13187.2,
+ "end": 13187.4,
+ "text": "can"
+ },
+ {
+ "id": 29185,
+ "start": 13187.4,
+ "end": 13187.6,
+ "text": "come"
+ },
+ {
+ "id": 29186,
+ "start": 13187.6,
+ "end": 13187.72,
+ "text": "to"
+ },
+ {
+ "id": 29187,
+ "start": 13187.72,
+ "end": 13187.9,
+ "text": "us"
+ },
+ {
+ "id": 29188,
+ "start": 13187.9,
+ "end": 13188.78,
+ "text": "and"
+ },
+ {
+ "id": 29189,
+ "start": 13188.78,
+ "end": 13189.64,
+ "text": "say"
+ },
+ {
+ "id": 29190,
+ "start": 13189.64,
+ "end": 13190.66,
+ "text": "I"
+ },
+ {
+ "id": 29191,
+ "start": 13190.66,
+ "end": 13190.8,
+ "text": "have"
+ },
+ {
+ "id": 29192,
+ "start": 13190.8,
+ "end": 13190.86,
+ "text": "a"
+ },
+ {
+ "id": 29193,
+ "start": 13190.86,
+ "end": 13191.2,
+ "text": "message"
+ },
+ {
+ "id": 29194,
+ "start": 13191.2,
+ "end": 13191.36,
+ "text": "that"
+ },
+ {
+ "id": 29195,
+ "start": 13191.36,
+ "end": 13191.46,
+ "text": "I'm"
+ },
+ {
+ "id": 29196,
+ "start": 13191.46,
+ "end": 13191.68,
+ "text": "trying"
+ },
+ {
+ "id": 29197,
+ "start": 13191.68,
+ "end": 13191.78,
+ "text": "to"
+ },
+ {
+ "id": 29198,
+ "start": 13191.78,
+ "end": 13191.98,
+ "text": "reach"
+ },
+ {
+ "id": 29199,
+ "start": 13191.98,
+ "end": 13192.04,
+ "text": "a"
+ },
+ {
+ "id": 29200,
+ "start": 13192.04,
+ "end": 13192.34,
+ "text": "certain"
+ },
+ {
+ "id": 29201,
+ "start": 13192.34,
+ "end": 13192.54,
+ "text": "type"
+ },
+ {
+ "id": 29202,
+ "start": 13192.54,
+ "end": 13192.68,
+ "text": "of"
+ },
+ {
+ "id": 29203,
+ "start": 13192.68,
+ "end": 13193.74,
+ "text": "people"
+ },
+ {
+ "id": 29204,
+ "start": 13193.74,
+ "end": 13194.6,
+ "text": "they"
+ },
+ {
+ "id": 29205,
+ "start": 13194.6,
+ "end": 13194.78,
+ "text": "might"
+ },
+ {
+ "id": 29206,
+ "start": 13194.78,
+ "end": 13194.86,
+ "text": "be"
+ },
+ {
+ "id": 29207,
+ "start": 13194.86,
+ "end": 13195.2,
+ "text": "interested"
+ },
+ {
+ "id": 29208,
+ "start": 13195.2,
+ "end": 13195.28,
+ "text": "in"
+ },
+ {
+ "id": 29209,
+ "start": 13195.28,
+ "end": 13195.58,
+ "text": "something"
+ },
+ {
+ "id": 29210,
+ "start": 13195.58,
+ "end": 13195.72,
+ "text": "they"
+ },
+ {
+ "id": 29211,
+ "start": 13195.72,
+ "end": 13195.9,
+ "text": "might"
+ },
+ {
+ "id": 29212,
+ "start": 13195.9,
+ "end": 13196.06,
+ "text": "live"
+ },
+ {
+ "id": 29213,
+ "start": 13196.06,
+ "end": 13196.14,
+ "text": "in"
+ },
+ {
+ "id": 29214,
+ "start": 13196.14,
+ "end": 13196.22,
+ "text": "a"
+ },
+ {
+ "id": 29215,
+ "start": 13196.22,
+ "end": 13197.14,
+ "text": "place"
+ },
+ {
+ "id": 29216,
+ "start": 13197.14,
+ "end": 13198.1,
+ "text": "and"
+ },
+ {
+ "id": 29217,
+ "start": 13198.1,
+ "end": 13198.26,
+ "text": "then"
+ },
+ {
+ "id": 29218,
+ "start": 13198.26,
+ "end": 13198.4,
+ "text": "we"
+ },
+ {
+ "id": 29219,
+ "start": 13198.4,
+ "end": 13198.64,
+ "text": "help"
+ },
+ {
+ "id": 29220,
+ "start": 13198.64,
+ "end": 13198.86,
+ "text": "them"
+ },
+ {
+ "id": 29221,
+ "start": 13198.86,
+ "end": 13199.06,
+ "text": "get"
+ },
+ {
+ "id": 29222,
+ "start": 13199.06,
+ "end": 13199.22,
+ "text": "that"
+ },
+ {
+ "id": 29223,
+ "start": 13199.22,
+ "end": 13199.56,
+ "text": "message"
+ },
+ {
+ "id": 29224,
+ "start": 13199.56,
+ "end": 13199.66,
+ "text": "in"
+ },
+ {
+ "id": 29225,
+ "start": 13199.66,
+ "end": 13199.9,
+ "text": "front"
+ },
+ {
+ "id": 29226,
+ "start": 13199.9,
+ "end": 13200,
+ "text": "of"
+ },
+ {
+ "id": 29227,
+ "start": 13200,
+ "end": 13200.3,
+ "text": "people."
+ },
+ {
+ "id": 29228,
+ "start": 13200.3,
+ "end": 13200.82,
+ "text": "But"
+ },
+ {
+ "id": 29229,
+ "start": 13200.82,
+ "end": 13200.96,
+ "text": "this"
+ },
+ {
+ "id": 29230,
+ "start": 13200.96,
+ "end": 13201.12,
+ "text": "is"
+ },
+ {
+ "id": 29231,
+ "start": 13201.12,
+ "end": 13201.4,
+ "text": "one"
+ },
+ {
+ "id": 29232,
+ "start": 13201.4,
+ "end": 13201.5,
+ "text": "of"
+ },
+ {
+ "id": 29233,
+ "start": 13201.5,
+ "end": 13203.14,
+ "text": "the"
+ },
+ {
+ "id": 29234,
+ "start": 13203.14,
+ "end": 13204.35,
+ "text": "widely"
+ },
+ {
+ "id": 29235,
+ "start": 13204.35,
+ "end": 13205.11,
+ "text": "characterized"
+ },
+ {
+ "id": 29236,
+ "start": 13205.11,
+ "end": 13205.39,
+ "text": "about"
+ },
+ {
+ "id": 29237,
+ "start": 13205.39,
+ "end": 13205.55,
+ "text": "our"
+ },
+ {
+ "id": 29238,
+ "start": 13205.55,
+ "end": 13205.97,
+ "text": "system"
+ },
+ {
+ "id": 29239,
+ "start": 13205.97,
+ "end": 13206.69,
+ "text": "that"
+ },
+ {
+ "id": 29240,
+ "start": 13206.69,
+ "end": 13207.01,
+ "text": "we"
+ },
+ {
+ "id": 29241,
+ "start": 13207.01,
+ "end": 13207.31,
+ "text": "sell"
+ },
+ {
+ "id": 29242,
+ "start": 13207.31,
+ "end": 13207.65,
+ "text": "data"
+ },
+ {
+ "id": 29243,
+ "start": 13207.65,
+ "end": 13208.19,
+ "text": "and"
+ },
+ {
+ "id": 29244,
+ "start": 13208.19,
+ "end": 13208.37,
+ "text": "it's"
+ },
+ {
+ "id": 29245,
+ "start": 13208.37,
+ "end": 13208.63,
+ "text": "actually."
+ },
+ {
+ "id": 29246,
+ "start": 13208.63,
+ "end": 13208.75,
+ "text": "One"
+ },
+ {
+ "id": 29247,
+ "start": 13208.75,
+ "end": 13208.81,
+ "text": "of"
+ },
+ {
+ "id": 29248,
+ "start": 13208.81,
+ "end": 13208.91,
+ "text": "the"
+ },
+ {
+ "id": 29249,
+ "start": 13208.91,
+ "end": 13209.05,
+ "text": "most"
+ },
+ {
+ "id": 29250,
+ "start": 13209.05,
+ "end": 13209.51,
+ "text": "important"
+ },
+ {
+ "id": 29251,
+ "start": 13209.51,
+ "end": 13209.79,
+ "text": "parts"
+ },
+ {
+ "id": 29252,
+ "start": 13209.79,
+ "end": 13209.91,
+ "text": "of"
+ },
+ {
+ "id": 29253,
+ "start": 13209.91,
+ "end": 13210.07,
+ "text": "how"
+ },
+ {
+ "id": 29254,
+ "start": 13210.07,
+ "end": 13210.41,
+ "text": "Facebook"
+ },
+ {
+ "id": 29255,
+ "start": 13210.41,
+ "end": 13210.61,
+ "text": "works"
+ },
+ {
+ "id": 29256,
+ "start": 13210.61,
+ "end": 13210.77,
+ "text": "is"
+ },
+ {
+ "id": 29257,
+ "start": 13210.77,
+ "end": 13210.89,
+ "text": "we"
+ },
+ {
+ "id": 29258,
+ "start": 13210.89,
+ "end": 13211.03,
+ "text": "do"
+ },
+ {
+ "id": 29259,
+ "start": 13211.03,
+ "end": 13211.23,
+ "text": "not"
+ },
+ {
+ "id": 29260,
+ "start": 13211.23,
+ "end": 13211.43,
+ "text": "sell"
+ },
+ {
+ "id": 29261,
+ "start": 13211.43,
+ "end": 13211.61,
+ "text": "data"
+ },
+ {
+ "id": 29262,
+ "start": 13211.61,
+ "end": 13212.23,
+ "text": "advertisers"
+ },
+ {
+ "id": 29263,
+ "start": 13212.23,
+ "end": 13212.41,
+ "text": "do"
+ },
+ {
+ "id": 29264,
+ "start": 13212.41,
+ "end": 13212.55,
+ "text": "not"
+ },
+ {
+ "id": 29265,
+ "start": 13212.55,
+ "end": 13212.69,
+ "text": "get"
+ },
+ {
+ "id": 29266,
+ "start": 13212.69,
+ "end": 13213.05,
+ "text": "access"
+ },
+ {
+ "id": 29267,
+ "start": 13213.05,
+ "end": 13213.17,
+ "text": "to"
+ },
+ {
+ "id": 29268,
+ "start": 13213.17,
+ "end": 13213.45,
+ "text": "people's"
+ },
+ {
+ "id": 29269,
+ "start": 13213.45,
+ "end": 13213.97,
+ "text": "individual"
+ },
+ {
+ "id": 29270,
+ "start": 13213.97,
+ "end": 13214.96,
+ "text": "data."
+ },
+ {
+ "id": 29271,
+ "start": 13214.96,
+ "end": 13215.86,
+ "text": "Have"
+ },
+ {
+ "id": 29272,
+ "start": 13215.86,
+ "end": 13215.96,
+ "text": "you"
+ },
+ {
+ "id": 29273,
+ "start": 13215.96,
+ "end": 13216.14,
+ "text": "ever"
+ },
+ {
+ "id": 29274,
+ "start": 13216.14,
+ "end": 13216.48,
+ "text": "collected"
+ },
+ {
+ "id": 29275,
+ "start": 13216.48,
+ "end": 13216.64,
+ "text": "the"
+ },
+ {
+ "id": 29276,
+ "start": 13216.64,
+ "end": 13217.08,
+ "text": "content"
+ },
+ {
+ "id": 29277,
+ "start": 13217.08,
+ "end": 13217.2,
+ "text": "of"
+ },
+ {
+ "id": 29278,
+ "start": 13217.2,
+ "end": 13217.48,
+ "text": "phone"
+ },
+ {
+ "id": 29279,
+ "start": 13217.48,
+ "end": 13217.76,
+ "text": "calls"
+ },
+ {
+ "id": 29280,
+ "start": 13217.76,
+ "end": 13218.12,
+ "text": "or"
+ },
+ {
+ "id": 29281,
+ "start": 13218.12,
+ "end": 13218.72,
+ "text": "messages"
+ },
+ {
+ "id": 29282,
+ "start": 13218.72,
+ "end": 13219.32,
+ "text": "through"
+ },
+ {
+ "id": 29283,
+ "start": 13219.32,
+ "end": 13219.52,
+ "text": "any"
+ },
+ {
+ "id": 29284,
+ "start": 13219.52,
+ "end": 13219.92,
+ "text": "Facebook"
+ },
+ {
+ "id": 29285,
+ "start": 13219.92,
+ "end": 13220.64,
+ "text": "application"
+ },
+ {
+ "id": 29286,
+ "start": 13220.64,
+ "end": 13221.1,
+ "text": "or"
+ },
+ {
+ "id": 29287,
+ "start": 13221.1,
+ "end": 13222.76,
+ "text": "service?"
+ },
+ {
+ "id": 29288,
+ "start": 13222.76,
+ "end": 13223.76,
+ "text": "Senator,"
+ },
+ {
+ "id": 29289,
+ "start": 13223.76,
+ "end": 13225,
+ "text": "I"
+ },
+ {
+ "id": 29290,
+ "start": 13225,
+ "end": 13225.16,
+ "text": "don't"
+ },
+ {
+ "id": 29291,
+ "start": 13225.16,
+ "end": 13225.36,
+ "text": "believe"
+ },
+ {
+ "id": 29292,
+ "start": 13225.36,
+ "end": 13225.6,
+ "text": "we've"
+ },
+ {
+ "id": 29293,
+ "start": 13225.6,
+ "end": 13225.78,
+ "text": "ever"
+ },
+ {
+ "id": 29294,
+ "start": 13225.78,
+ "end": 13226.1,
+ "text": "collected"
+ },
+ {
+ "id": 29295,
+ "start": 13226.1,
+ "end": 13226.22,
+ "text": "the"
+ },
+ {
+ "id": 29296,
+ "start": 13226.22,
+ "end": 13226.54,
+ "text": "content"
+ },
+ {
+ "id": 29297,
+ "start": 13226.54,
+ "end": 13226.72,
+ "text": "of"
+ },
+ {
+ "id": 29298,
+ "start": 13226.72,
+ "end": 13227.3,
+ "text": "phone"
+ },
+ {
+ "id": 29299,
+ "start": 13227.3,
+ "end": 13227.62,
+ "text": "calls."
+ },
+ {
+ "id": 29300,
+ "start": 13227.62,
+ "end": 13228.82,
+ "text": "We"
+ },
+ {
+ "id": 29301,
+ "start": 13228.82,
+ "end": 13229.08,
+ "text": "have"
+ },
+ {
+ "id": 29302,
+ "start": 13229.08,
+ "end": 13229.46,
+ "text": "an"
+ },
+ {
+ "id": 29303,
+ "start": 13229.46,
+ "end": 13229.78,
+ "text": "app"
+ },
+ {
+ "id": 29304,
+ "start": 13229.78,
+ "end": 13230.08,
+ "text": "called"
+ },
+ {
+ "id": 29305,
+ "start": 13230.08,
+ "end": 13230.58,
+ "text": "Messenger"
+ },
+ {
+ "id": 29306,
+ "start": 13230.58,
+ "end": 13230.8,
+ "text": "that"
+ },
+ {
+ "id": 29307,
+ "start": 13230.8,
+ "end": 13231.08,
+ "text": "allows"
+ },
+ {
+ "id": 29308,
+ "start": 13231.08,
+ "end": 13231.34,
+ "text": "people"
+ },
+ {
+ "id": 29309,
+ "start": 13231.34,
+ "end": 13231.5,
+ "text": "to"
+ },
+ {
+ "id": 29310,
+ "start": 13231.5,
+ "end": 13231.94,
+ "text": "message"
+ },
+ {
+ "id": 29311,
+ "start": 13231.94,
+ "end": 13232.26,
+ "text": "her"
+ },
+ {
+ "id": 29312,
+ "start": 13232.26,
+ "end": 13233.22,
+ "text": "mostly"
+ },
+ {
+ "id": 29313,
+ "start": 13233.22,
+ "end": 13233.4,
+ "text": "their"
+ },
+ {
+ "id": 29314,
+ "start": 13233.4,
+ "end": 13233.76,
+ "text": "Facebook"
+ },
+ {
+ "id": 29315,
+ "start": 13233.76,
+ "end": 13234.1,
+ "text": "friends"
+ },
+ {
+ "id": 29316,
+ "start": 13234.1,
+ "end": 13234.9,
+ "text": "and"
+ },
+ {
+ "id": 29317,
+ "start": 13234.9,
+ "end": 13235.22,
+ "text": "we"
+ },
+ {
+ "id": 29318,
+ "start": 13235.22,
+ "end": 13235.6,
+ "text": "do"
+ },
+ {
+ "id": 29319,
+ "start": 13235.6,
+ "end": 13236.49,
+ "text": "on"
+ },
+ {
+ "id": 29320,
+ "start": 13236.49,
+ "end": 13236.85,
+ "text": "the"
+ },
+ {
+ "id": 29321,
+ "start": 13236.85,
+ "end": 13237.25,
+ "text": "Android"
+ },
+ {
+ "id": 29322,
+ "start": 13237.25,
+ "end": 13237.69,
+ "text": "operating"
+ },
+ {
+ "id": 29323,
+ "start": 13237.69,
+ "end": 13238.07,
+ "text": "system"
+ },
+ {
+ "id": 29324,
+ "start": 13238.07,
+ "end": 13239.13,
+ "text": "allow"
+ },
+ {
+ "id": 29325,
+ "start": 13239.13,
+ "end": 13239.45,
+ "text": "people"
+ },
+ {
+ "id": 29326,
+ "start": 13239.45,
+ "end": 13239.71,
+ "text": "to"
+ },
+ {
+ "id": 29327,
+ "start": 13239.71,
+ "end": 13240.27,
+ "text": "use"
+ },
+ {
+ "id": 29328,
+ "start": 13240.27,
+ "end": 13240.43,
+ "text": "that"
+ },
+ {
+ "id": 29329,
+ "start": 13240.43,
+ "end": 13240.65,
+ "text": "app"
+ },
+ {
+ "id": 29330,
+ "start": 13240.65,
+ "end": 13240.79,
+ "text": "as"
+ },
+ {
+ "id": 29331,
+ "start": 13240.79,
+ "end": 13241.03,
+ "text": "their"
+ },
+ {
+ "id": 29332,
+ "start": 13241.03,
+ "end": 13241.49,
+ "text": "client"
+ },
+ {
+ "id": 29333,
+ "start": 13241.49,
+ "end": 13241.99,
+ "text": "for"
+ },
+ {
+ "id": 29334,
+ "start": 13241.99,
+ "end": 13242.19,
+ "text": "both"
+ },
+ {
+ "id": 29335,
+ "start": 13242.19,
+ "end": 13242.63,
+ "text": "Facebook"
+ },
+ {
+ "id": 29336,
+ "start": 13242.63,
+ "end": 13243.07,
+ "text": "messages"
+ },
+ {
+ "id": 29337,
+ "start": 13243.07,
+ "end": 13243.31,
+ "text": "and"
+ },
+ {
+ "id": 29338,
+ "start": 13243.31,
+ "end": 13243.59,
+ "text": "text."
+ },
+ {
+ "id": 29339,
+ "start": 13243.59,
+ "end": 13244.79,
+ "text": "So"
+ },
+ {
+ "id": 29340,
+ "start": 13244.79,
+ "end": 13244.91,
+ "text": "we"
+ },
+ {
+ "id": 29341,
+ "start": 13244.91,
+ "end": 13245.07,
+ "text": "do"
+ },
+ {
+ "id": 29342,
+ "start": 13245.07,
+ "end": 13245.35,
+ "text": "allow"
+ },
+ {
+ "id": 29343,
+ "start": 13245.35,
+ "end": 13245.67,
+ "text": "people"
+ },
+ {
+ "id": 29344,
+ "start": 13245.67,
+ "end": 13245.97,
+ "text": "to"
+ },
+ {
+ "id": 29345,
+ "start": 13245.97,
+ "end": 13246.63,
+ "text": "import"
+ },
+ {
+ "id": 29346,
+ "start": 13246.63,
+ "end": 13246.83,
+ "text": "their"
+ },
+ {
+ "id": 29347,
+ "start": 13246.83,
+ "end": 13247.11,
+ "text": "texts"
+ },
+ {
+ "id": 29348,
+ "start": 13247.11,
+ "end": 13247.43,
+ "text": "into"
+ },
+ {
+ "id": 29349,
+ "start": 13247.43,
+ "end": 13247.69,
+ "text": "that,"
+ },
+ {
+ "id": 29350,
+ "start": 13247.69,
+ "end": 13248.15,
+ "text": "okay."
+ },
+ {
+ "id": 29351,
+ "start": 13248.15,
+ "end": 13248.27,
+ "text": "Let"
+ },
+ {
+ "id": 29352,
+ "start": 13248.27,
+ "end": 13248.35,
+ "text": "me"
+ },
+ {
+ "id": 29353,
+ "start": 13248.35,
+ "end": 13248.53,
+ "text": "ask"
+ },
+ {
+ "id": 29354,
+ "start": 13248.53,
+ "end": 13248.65,
+ "text": "you"
+ },
+ {
+ "id": 29355,
+ "start": 13248.65,
+ "end": 13248.83,
+ "text": "about"
+ },
+ {
+ "id": 29356,
+ "start": 13248.83,
+ "end": 13249.17,
+ "text": "government"
+ },
+ {
+ "id": 29357,
+ "start": 13249.17,
+ "end": 13250.52,
+ "text": "surveillance"
+ },
+ {
+ "id": 29358,
+ "start": 13250.52,
+ "end": 13251.5,
+ "text": "for"
+ },
+ {
+ "id": 29359,
+ "start": 13251.5,
+ "end": 13251.8,
+ "text": "years."
+ },
+ {
+ "id": 29360,
+ "start": 13251.8,
+ "end": 13252.28,
+ "text": "Facebook"
+ },
+ {
+ "id": 29361,
+ "start": 13252.28,
+ "end": 13252.48,
+ "text": "said"
+ },
+ {
+ "id": 29362,
+ "start": 13252.48,
+ "end": 13252.62,
+ "text": "that"
+ },
+ {
+ "id": 29363,
+ "start": 13252.62,
+ "end": 13253.38,
+ "text": "there"
+ },
+ {
+ "id": 29364,
+ "start": 13253.38,
+ "end": 13253.6,
+ "text": "should"
+ },
+ {
+ "id": 29365,
+ "start": 13253.6,
+ "end": 13253.7,
+ "text": "be"
+ },
+ {
+ "id": 29366,
+ "start": 13253.7,
+ "end": 13253.98,
+ "text": "strict"
+ },
+ {
+ "id": 29367,
+ "start": 13253.98,
+ "end": 13254.28,
+ "text": "limits"
+ },
+ {
+ "id": 29368,
+ "start": 13254.28,
+ "end": 13254.44,
+ "text": "on"
+ },
+ {
+ "id": 29369,
+ "start": 13254.44,
+ "end": 13254.56,
+ "text": "the"
+ },
+ {
+ "id": 29370,
+ "start": 13254.56,
+ "end": 13255.1,
+ "text": "information."
+ },
+ {
+ "id": 29371,
+ "start": 13255.1,
+ "end": 13255.3,
+ "text": "The"
+ },
+ {
+ "id": 29372,
+ "start": 13255.3,
+ "end": 13255.76,
+ "text": "government"
+ },
+ {
+ "id": 29373,
+ "start": 13255.76,
+ "end": 13256.34,
+ "text": "can"
+ },
+ {
+ "id": 29374,
+ "start": 13256.34,
+ "end": 13257.64,
+ "text": "access"
+ },
+ {
+ "id": 29375,
+ "start": 13257.64,
+ "end": 13258.48,
+ "text": "on"
+ },
+ {
+ "id": 29376,
+ "start": 13258.48,
+ "end": 13259.1,
+ "text": "Americans"
+ },
+ {
+ "id": 29377,
+ "start": 13259.1,
+ "end": 13259.7,
+ "text": "and"
+ },
+ {
+ "id": 29378,
+ "start": 13259.7,
+ "end": 13259.86,
+ "text": "by"
+ },
+ {
+ "id": 29379,
+ "start": 13259.86,
+ "end": 13260,
+ "text": "the"
+ },
+ {
+ "id": 29380,
+ "start": 13260,
+ "end": 13260.12,
+ "text": "way,"
+ },
+ {
+ "id": 29381,
+ "start": 13260.12,
+ "end": 13260.16,
+ "text": "I"
+ },
+ {
+ "id": 29382,
+ "start": 13260.16,
+ "end": 13260.46,
+ "text": "agreed"
+ },
+ {
+ "id": 29383,
+ "start": 13260.46,
+ "end": 13260.64,
+ "text": "with"
+ },
+ {
+ "id": 29384,
+ "start": 13260.64,
+ "end": 13260.9,
+ "text": "you"
+ },
+ {
+ "id": 29385,
+ "start": 13260.9,
+ "end": 13261.96,
+ "text": "that"
+ },
+ {
+ "id": 29386,
+ "start": 13261.96,
+ "end": 13262.94,
+ "text": "privacy"
+ },
+ {
+ "id": 29387,
+ "start": 13262.94,
+ "end": 13263.34,
+ "text": "because"
+ },
+ {
+ "id": 29388,
+ "start": 13263.34,
+ "end": 13263.74,
+ "text": "privacy"
+ },
+ {
+ "id": 29389,
+ "start": 13263.74,
+ "end": 13263.82,
+ "text": "is"
+ },
+ {
+ "id": 29390,
+ "start": 13263.82,
+ "end": 13264.16,
+ "text": "important"
+ },
+ {
+ "id": 29391,
+ "start": 13264.16,
+ "end": 13264.24,
+ "text": "to"
+ },
+ {
+ "id": 29392,
+ "start": 13264.24,
+ "end": 13264.76,
+ "text": "Nevadans."
+ },
+ {
+ "id": 29393,
+ "start": 13264.76,
+ "end": 13265.4,
+ "text": "You"
+ },
+ {
+ "id": 29394,
+ "start": 13265.4,
+ "end": 13265.68,
+ "text": "argued"
+ },
+ {
+ "id": 29395,
+ "start": 13265.68,
+ "end": 13265.82,
+ "text": "that"
+ },
+ {
+ "id": 29396,
+ "start": 13265.82,
+ "end": 13266.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 29397,
+ "start": 13266.34,
+ "end": 13266.72,
+ "text": "users"
+ },
+ {
+ "id": 29398,
+ "start": 13266.72,
+ "end": 13267.06,
+ "text": "wouldn't"
+ },
+ {
+ "id": 29399,
+ "start": 13267.06,
+ "end": 13267.38,
+ "text": "trust"
+ },
+ {
+ "id": 29400,
+ "start": 13267.38,
+ "end": 13267.6,
+ "text": "you."
+ },
+ {
+ "id": 29401,
+ "start": 13267.6,
+ "end": 13267.96,
+ "text": "If"
+ },
+ {
+ "id": 29402,
+ "start": 13267.96,
+ "end": 13268.14,
+ "text": "they"
+ },
+ {
+ "id": 29403,
+ "start": 13268.14,
+ "end": 13268.42,
+ "text": "thought"
+ },
+ {
+ "id": 29404,
+ "start": 13268.42,
+ "end": 13269,
+ "text": "you"
+ },
+ {
+ "id": 29405,
+ "start": 13269,
+ "end": 13269.14,
+ "text": "were"
+ },
+ {
+ "id": 29406,
+ "start": 13269.14,
+ "end": 13269.42,
+ "text": "giving"
+ },
+ {
+ "id": 29407,
+ "start": 13269.42,
+ "end": 13269.64,
+ "text": "their"
+ },
+ {
+ "id": 29408,
+ "start": 13269.64,
+ "end": 13270,
+ "text": "private"
+ },
+ {
+ "id": 29409,
+ "start": 13270,
+ "end": 13270.64,
+ "text": "information"
+ },
+ {
+ "id": 29410,
+ "start": 13270.64,
+ "end": 13271.18,
+ "text": "to"
+ },
+ {
+ "id": 29411,
+ "start": 13271.18,
+ "end": 13271.32,
+ "text": "the"
+ },
+ {
+ "id": 29412,
+ "start": 13271.32,
+ "end": 13272.02,
+ "text": "intelligence"
+ },
+ {
+ "id": 29413,
+ "start": 13272.02,
+ "end": 13272.74,
+ "text": "community"
+ },
+ {
+ "id": 29414,
+ "start": 13272.74,
+ "end": 13273.52,
+ "text": "yet"
+ },
+ {
+ "id": 29415,
+ "start": 13273.52,
+ "end": 13273.66,
+ "text": "to"
+ },
+ {
+ "id": 29416,
+ "start": 13273.66,
+ "end": 13273.84,
+ "text": "use"
+ },
+ {
+ "id": 29417,
+ "start": 13273.84,
+ "end": 13274,
+ "text": "and"
+ },
+ {
+ "id": 29418,
+ "start": 13274,
+ "end": 13274.22,
+ "text": "sell"
+ },
+ {
+ "id": 29419,
+ "start": 13274.22,
+ "end": 13274.34,
+ "text": "the"
+ },
+ {
+ "id": 29420,
+ "start": 13274.34,
+ "end": 13274.64,
+ "text": "same"
+ },
+ {
+ "id": 29421,
+ "start": 13274.64,
+ "end": 13274.98,
+ "text": "data"
+ },
+ {
+ "id": 29422,
+ "start": 13274.98,
+ "end": 13275.12,
+ "text": "to"
+ },
+ {
+ "id": 29423,
+ "start": 13275.12,
+ "end": 13275.3,
+ "text": "make"
+ },
+ {
+ "id": 29424,
+ "start": 13275.3,
+ "end": 13276.08,
+ "text": "money."
+ },
+ {
+ "id": 29425,
+ "start": 13276.08,
+ "end": 13276.62,
+ "text": "And"
+ },
+ {
+ "id": 29426,
+ "start": 13276.62,
+ "end": 13276.74,
+ "text": "in"
+ },
+ {
+ "id": 29427,
+ "start": 13276.74,
+ "end": 13276.86,
+ "text": "the"
+ },
+ {
+ "id": 29428,
+ "start": 13276.86,
+ "end": 13277.06,
+ "text": "case"
+ },
+ {
+ "id": 29429,
+ "start": 13277.06,
+ "end": 13277.22,
+ "text": "of"
+ },
+ {
+ "id": 29430,
+ "start": 13277.22,
+ "end": 13277.66,
+ "text": "Cambridge"
+ },
+ {
+ "id": 29431,
+ "start": 13277.66,
+ "end": 13278.6,
+ "text": "Analytica,"
+ },
+ {
+ "id": 29432,
+ "start": 13278.6,
+ "end": 13279.26,
+ "text": "you"
+ },
+ {
+ "id": 29433,
+ "start": 13279.26,
+ "end": 13279.46,
+ "text": "don't"
+ },
+ {
+ "id": 29434,
+ "start": 13279.46,
+ "end": 13279.66,
+ "text": "even"
+ },
+ {
+ "id": 29435,
+ "start": 13279.66,
+ "end": 13279.82,
+ "text": "know"
+ },
+ {
+ "id": 29436,
+ "start": 13279.82,
+ "end": 13280.06,
+ "text": "how"
+ },
+ {
+ "id": 29437,
+ "start": 13280.06,
+ "end": 13280.32,
+ "text": "it's"
+ },
+ {
+ "id": 29438,
+ "start": 13280.32,
+ "end": 13280.66,
+ "text": "used"
+ },
+ {
+ "id": 29439,
+ "start": 13280.66,
+ "end": 13281.1,
+ "text": "after"
+ },
+ {
+ "id": 29440,
+ "start": 13281.1,
+ "end": 13281.28,
+ "text": "you"
+ },
+ {
+ "id": 29441,
+ "start": 13281.28,
+ "end": 13281.54,
+ "text": "sell"
+ },
+ {
+ "id": 29442,
+ "start": 13281.54,
+ "end": 13281.72,
+ "text": "it?"
+ },
+ {
+ "id": 29443,
+ "start": 13281.72,
+ "end": 13282.54,
+ "text": "Can"
+ },
+ {
+ "id": 29444,
+ "start": 13282.54,
+ "end": 13282.84,
+ "text": "you"
+ },
+ {
+ "id": 29445,
+ "start": 13282.84,
+ "end": 13283.42,
+ "text": "tell"
+ },
+ {
+ "id": 29446,
+ "start": 13283.42,
+ "end": 13283.58,
+ "text": "us"
+ },
+ {
+ "id": 29447,
+ "start": 13283.58,
+ "end": 13283.78,
+ "text": "why"
+ },
+ {
+ "id": 29448,
+ "start": 13283.78,
+ "end": 13283.94,
+ "text": "this"
+ },
+ {
+ "id": 29449,
+ "start": 13283.94,
+ "end": 13284.22,
+ "text": "isn't"
+ },
+ {
+ "id": 29450,
+ "start": 13284.22,
+ "end": 13285.28,
+ "text": "hypocritical?"
+ },
+ {
+ "id": 29451,
+ "start": 13285.28,
+ "end": 13285.9,
+ "text": "Well,"
+ },
+ {
+ "id": 29452,
+ "start": 13285.9,
+ "end": 13286.28,
+ "text": "Senator,"
+ },
+ {
+ "id": 29453,
+ "start": 13286.28,
+ "end": 13286.78,
+ "text": "once"
+ },
+ {
+ "id": 29454,
+ "start": 13286.78,
+ "end": 13287.02,
+ "text": "again,"
+ },
+ {
+ "id": 29455,
+ "start": 13287.02,
+ "end": 13287.36,
+ "text": "we"
+ },
+ {
+ "id": 29456,
+ "start": 13287.36,
+ "end": 13287.56,
+ "text": "don't"
+ },
+ {
+ "id": 29457,
+ "start": 13287.56,
+ "end": 13287.82,
+ "text": "sell"
+ },
+ {
+ "id": 29458,
+ "start": 13287.82,
+ "end": 13288,
+ "text": "any"
+ },
+ {
+ "id": 29459,
+ "start": 13288,
+ "end": 13288.28,
+ "text": "data"
+ },
+ {
+ "id": 29460,
+ "start": 13288.28,
+ "end": 13288.4,
+ "text": "to"
+ },
+ {
+ "id": 29461,
+ "start": 13288.4,
+ "end": 13288.8,
+ "text": "anyone"
+ },
+ {
+ "id": 29462,
+ "start": 13288.8,
+ "end": 13289.12,
+ "text": "we"
+ },
+ {
+ "id": 29463,
+ "start": 13289.12,
+ "end": 13289.32,
+ "text": "don't"
+ },
+ {
+ "id": 29464,
+ "start": 13289.32,
+ "end": 13289.5,
+ "text": "sell"
+ },
+ {
+ "id": 29465,
+ "start": 13289.5,
+ "end": 13289.58,
+ "text": "it"
+ },
+ {
+ "id": 29466,
+ "start": 13289.58,
+ "end": 13289.66,
+ "text": "to"
+ },
+ {
+ "id": 29467,
+ "start": 13289.66,
+ "end": 13290.34,
+ "text": "advertisers"
+ },
+ {
+ "id": 29468,
+ "start": 13290.34,
+ "end": 13290.86,
+ "text": "and"
+ },
+ {
+ "id": 29469,
+ "start": 13290.86,
+ "end": 13290.94,
+ "text": "we"
+ },
+ {
+ "id": 29470,
+ "start": 13290.94,
+ "end": 13291.12,
+ "text": "don't"
+ },
+ {
+ "id": 29471,
+ "start": 13291.12,
+ "end": 13291.28,
+ "text": "sell"
+ },
+ {
+ "id": 29472,
+ "start": 13291.28,
+ "end": 13291.34,
+ "text": "it"
+ },
+ {
+ "id": 29473,
+ "start": 13291.34,
+ "end": 13291.42,
+ "text": "to"
+ },
+ {
+ "id": 29474,
+ "start": 13291.42,
+ "end": 13291.96,
+ "text": "developers."
+ },
+ {
+ "id": 29475,
+ "start": 13291.96,
+ "end": 13292.48,
+ "text": "What"
+ },
+ {
+ "id": 29476,
+ "start": 13292.48,
+ "end": 13292.58,
+ "text": "we"
+ },
+ {
+ "id": 29477,
+ "start": 13292.58,
+ "end": 13292.78,
+ "text": "do"
+ },
+ {
+ "id": 29478,
+ "start": 13292.78,
+ "end": 13293.18,
+ "text": "allow"
+ },
+ {
+ "id": 29479,
+ "start": 13293.18,
+ "end": 13293.66,
+ "text": "is"
+ },
+ {
+ "id": 29480,
+ "start": 13293.66,
+ "end": 13293.86,
+ "text": "for"
+ },
+ {
+ "id": 29481,
+ "start": 13293.86,
+ "end": 13294.14,
+ "text": "people"
+ },
+ {
+ "id": 29482,
+ "start": 13294.14,
+ "end": 13294.26,
+ "text": "to"
+ },
+ {
+ "id": 29483,
+ "start": 13294.26,
+ "end": 13294.54,
+ "text": "sign"
+ },
+ {
+ "id": 29484,
+ "start": 13294.54,
+ "end": 13294.76,
+ "text": "into"
+ },
+ {
+ "id": 29485,
+ "start": 13294.76,
+ "end": 13295.08,
+ "text": "apps"
+ },
+ {
+ "id": 29486,
+ "start": 13295.08,
+ "end": 13295.42,
+ "text": "and"
+ },
+ {
+ "id": 29487,
+ "start": 13295.42,
+ "end": 13295.72,
+ "text": "bring"
+ },
+ {
+ "id": 29488,
+ "start": 13295.72,
+ "end": 13295.96,
+ "text": "their"
+ },
+ {
+ "id": 29489,
+ "start": 13295.96,
+ "end": 13296.26,
+ "text": "data"
+ },
+ {
+ "id": 29490,
+ "start": 13296.26,
+ "end": 13297.18,
+ "text": "and"
+ },
+ {
+ "id": 29491,
+ "start": 13297.18,
+ "end": 13297.76,
+ "text": "it"
+ },
+ {
+ "id": 29492,
+ "start": 13297.76,
+ "end": 13297.98,
+ "text": "used"
+ },
+ {
+ "id": 29493,
+ "start": 13297.98,
+ "end": 13298.1,
+ "text": "to"
+ },
+ {
+ "id": 29494,
+ "start": 13298.1,
+ "end": 13298.22,
+ "text": "be"
+ },
+ {
+ "id": 29495,
+ "start": 13298.22,
+ "end": 13298.34,
+ "text": "the"
+ },
+ {
+ "id": 29496,
+ "start": 13298.34,
+ "end": 13298.52,
+ "text": "data"
+ },
+ {
+ "id": 29497,
+ "start": 13298.52,
+ "end": 13298.6,
+ "text": "of"
+ },
+ {
+ "id": 29498,
+ "start": 13298.6,
+ "end": 13298.76,
+ "text": "some"
+ },
+ {
+ "id": 29499,
+ "start": 13298.76,
+ "end": 13298.86,
+ "text": "of"
+ },
+ {
+ "id": 29500,
+ "start": 13298.86,
+ "end": 13299.04,
+ "text": "their"
+ },
+ {
+ "id": 29501,
+ "start": 13299.04,
+ "end": 13299.36,
+ "text": "friends."
+ },
+ {
+ "id": 29502,
+ "start": 13299.36,
+ "end": 13299.56,
+ "text": "But"
+ },
+ {
+ "id": 29503,
+ "start": 13299.56,
+ "end": 13299.72,
+ "text": "now"
+ },
+ {
+ "id": 29504,
+ "start": 13299.72,
+ "end": 13299.82,
+ "text": "it"
+ },
+ {
+ "id": 29505,
+ "start": 13299.82,
+ "end": 13300.34,
+ "text": "isn't"
+ },
+ {
+ "id": 29506,
+ "start": 13300.34,
+ "end": 13301.1,
+ "text": "with"
+ },
+ {
+ "id": 29507,
+ "start": 13301.1,
+ "end": 13301.26,
+ "text": "them"
+ },
+ {
+ "id": 29508,
+ "start": 13301.26,
+ "end": 13301.6,
+ "text": "and"
+ },
+ {
+ "id": 29509,
+ "start": 13301.6,
+ "end": 13301.82,
+ "text": "that"
+ },
+ {
+ "id": 29510,
+ "start": 13301.82,
+ "end": 13301.88,
+ "text": "I"
+ },
+ {
+ "id": 29511,
+ "start": 13301.88,
+ "end": 13302.08,
+ "text": "think"
+ },
+ {
+ "id": 29512,
+ "start": 13302.08,
+ "end": 13302.3,
+ "text": "makes"
+ },
+ {
+ "id": 29513,
+ "start": 13302.3,
+ "end": 13302.54,
+ "text": "sense."
+ },
+ {
+ "id": 29514,
+ "start": 13302.54,
+ "end": 13302.7,
+ "text": "I"
+ },
+ {
+ "id": 29515,
+ "start": 13302.7,
+ "end": 13302.86,
+ "text": "mean"
+ },
+ {
+ "id": 29516,
+ "start": 13302.86,
+ "end": 13303.06,
+ "text": "that's"
+ },
+ {
+ "id": 29517,
+ "start": 13303.06,
+ "end": 13303.46,
+ "text": "basic"
+ },
+ {
+ "id": 29518,
+ "start": 13303.46,
+ "end": 13303.72,
+ "text": "data"
+ },
+ {
+ "id": 29519,
+ "start": 13303.72,
+ "end": 13304.26,
+ "text": "portability."
+ },
+ {
+ "id": 29520,
+ "start": 13304.26,
+ "end": 13304.46,
+ "text": "The"
+ },
+ {
+ "id": 29521,
+ "start": 13304.46,
+ "end": 13304.76,
+ "text": "ability"
+ },
+ {
+ "id": 29522,
+ "start": 13304.76,
+ "end": 13304.94,
+ "text": "that"
+ },
+ {
+ "id": 29523,
+ "start": 13304.94,
+ "end": 13305.28,
+ "text": "you"
+ },
+ {
+ "id": 29524,
+ "start": 13305.28,
+ "end": 13305.44,
+ "text": "own"
+ },
+ {
+ "id": 29525,
+ "start": 13305.44,
+ "end": 13305.58,
+ "text": "the"
+ },
+ {
+ "id": 29526,
+ "start": 13305.58,
+ "end": 13305.86,
+ "text": "data"
+ },
+ {
+ "id": 29527,
+ "start": 13305.86,
+ "end": 13306.08,
+ "text": "you"
+ },
+ {
+ "id": 29528,
+ "start": 13306.08,
+ "end": 13306.28,
+ "text": "should"
+ },
+ {
+ "id": 29529,
+ "start": 13306.28,
+ "end": 13306.36,
+ "text": "be"
+ },
+ {
+ "id": 29530,
+ "start": 13306.36,
+ "end": 13306.5,
+ "text": "able"
+ },
+ {
+ "id": 29531,
+ "start": 13306.5,
+ "end": 13306.58,
+ "text": "to"
+ },
+ {
+ "id": 29532,
+ "start": 13306.58,
+ "end": 13306.78,
+ "text": "take"
+ },
+ {
+ "id": 29533,
+ "start": 13306.78,
+ "end": 13306.94,
+ "text": "it"
+ },
+ {
+ "id": 29534,
+ "start": 13306.94,
+ "end": 13307.7,
+ "text": "from"
+ },
+ {
+ "id": 29535,
+ "start": 13307.7,
+ "end": 13307.88,
+ "text": "one"
+ },
+ {
+ "id": 29536,
+ "start": 13307.88,
+ "end": 13308.08,
+ "text": "app"
+ },
+ {
+ "id": 29537,
+ "start": 13308.08,
+ "end": 13308.22,
+ "text": "to"
+ },
+ {
+ "id": 29538,
+ "start": 13308.22,
+ "end": 13308.5,
+ "text": "another."
+ },
+ {
+ "id": 29539,
+ "start": 13308.5,
+ "end": 13308.6,
+ "text": "If"
+ },
+ {
+ "id": 29540,
+ "start": 13308.6,
+ "end": 13308.84,
+ "text": "you'd"
+ },
+ {
+ "id": 29541,
+ "start": 13308.84,
+ "end": 13309,
+ "text": "like,"
+ },
+ {
+ "id": 29542,
+ "start": 13309,
+ "end": 13309.2,
+ "text": "do"
+ },
+ {
+ "id": 29543,
+ "start": 13309.2,
+ "end": 13309.3,
+ "text": "you"
+ },
+ {
+ "id": 29544,
+ "start": 13309.3,
+ "end": 13309.52,
+ "text": "believe"
+ },
+ {
+ "id": 29545,
+ "start": 13309.52,
+ "end": 13309.72,
+ "text": "you're"
+ },
+ {
+ "id": 29546,
+ "start": 13309.72,
+ "end": 13309.84,
+ "text": "more"
+ },
+ {
+ "id": 29547,
+ "start": 13309.84,
+ "end": 13310.46,
+ "text": "responsible"
+ },
+ {
+ "id": 29548,
+ "start": 13310.46,
+ "end": 13310.6,
+ "text": "with"
+ },
+ {
+ "id": 29549,
+ "start": 13310.6,
+ "end": 13310.94,
+ "text": "millions"
+ },
+ {
+ "id": 29550,
+ "start": 13310.94,
+ "end": 13311.06,
+ "text": "of"
+ },
+ {
+ "id": 29551,
+ "start": 13311.06,
+ "end": 13311.54,
+ "text": "Americans"
+ },
+ {
+ "id": 29552,
+ "start": 13311.54,
+ "end": 13311.94,
+ "text": "personal"
+ },
+ {
+ "id": 29553,
+ "start": 13311.94,
+ "end": 13312.26,
+ "text": "data"
+ },
+ {
+ "id": 29554,
+ "start": 13312.26,
+ "end": 13312.4,
+ "text": "than"
+ },
+ {
+ "id": 29555,
+ "start": 13312.4,
+ "end": 13312.52,
+ "text": "the"
+ },
+ {
+ "id": 29556,
+ "start": 13312.52,
+ "end": 13312.8,
+ "text": "federal"
+ },
+ {
+ "id": 29557,
+ "start": 13312.8,
+ "end": 13313.16,
+ "text": "government"
+ },
+ {
+ "id": 29558,
+ "start": 13313.16,
+ "end": 13313.34,
+ "text": "would"
+ },
+ {
+ "id": 29559,
+ "start": 13313.34,
+ "end": 13316.48,
+ "text": "be."
+ },
+ {
+ "id": 29560,
+ "start": 13316.48,
+ "end": 13318.34,
+ "text": "Yes,"
+ },
+ {
+ "id": 29561,
+ "start": 13318.34,
+ "end": 13319.38,
+ "text": "but"
+ },
+ {
+ "id": 29562,
+ "start": 13319.38,
+ "end": 13319.82,
+ "text": "under"
+ },
+ {
+ "id": 29563,
+ "start": 13319.82,
+ "end": 13321.7,
+ "text": "the"
+ },
+ {
+ "id": 29564,
+ "start": 13321.7,
+ "end": 13322.68,
+ "text": "your"
+ },
+ {
+ "id": 29565,
+ "start": 13322.68,
+ "end": 13322.92,
+ "text": "point"
+ },
+ {
+ "id": 29566,
+ "start": 13322.92,
+ "end": 13323.14,
+ "text": "about"
+ },
+ {
+ "id": 29567,
+ "start": 13323.14,
+ "end": 13323.78,
+ "text": "surveillance,"
+ },
+ {
+ "id": 29568,
+ "start": 13323.78,
+ "end": 13324.06,
+ "text": "I"
+ },
+ {
+ "id": 29569,
+ "start": 13324.06,
+ "end": 13324.26,
+ "text": "think"
+ },
+ {
+ "id": 29570,
+ "start": 13324.26,
+ "end": 13324.38,
+ "text": "that"
+ },
+ {
+ "id": 29571,
+ "start": 13324.38,
+ "end": 13324.6,
+ "text": "there's"
+ },
+ {
+ "id": 29572,
+ "start": 13324.6,
+ "end": 13324.66,
+ "text": "a"
+ },
+ {
+ "id": 29573,
+ "start": 13324.66,
+ "end": 13325.02,
+ "text": "very"
+ },
+ {
+ "id": 29574,
+ "start": 13325.02,
+ "end": 13325.5,
+ "text": "important"
+ },
+ {
+ "id": 29575,
+ "start": 13325.5,
+ "end": 13325.98,
+ "text": "distinction"
+ },
+ {
+ "id": 29576,
+ "start": 13325.98,
+ "end": 13326.14,
+ "text": "to"
+ },
+ {
+ "id": 29577,
+ "start": 13326.14,
+ "end": 13326.36,
+ "text": "draw"
+ },
+ {
+ "id": 29578,
+ "start": 13326.36,
+ "end": 13326.62,
+ "text": "here,"
+ },
+ {
+ "id": 29579,
+ "start": 13326.62,
+ "end": 13327.18,
+ "text": "which"
+ },
+ {
+ "id": 29580,
+ "start": 13327.18,
+ "end": 13327.32,
+ "text": "is"
+ },
+ {
+ "id": 29581,
+ "start": 13327.32,
+ "end": 13327.54,
+ "text": "that"
+ },
+ {
+ "id": 29582,
+ "start": 13327.54,
+ "end": 13328.74,
+ "text": "when"
+ },
+ {
+ "id": 29583,
+ "start": 13328.74,
+ "end": 13329.76,
+ "text": "organizations"
+ },
+ {
+ "id": 29584,
+ "start": 13329.76,
+ "end": 13329.96,
+ "text": "do"
+ },
+ {
+ "id": 29585,
+ "start": 13329.96,
+ "end": 13330.52,
+ "text": "surveillance"
+ },
+ {
+ "id": 29586,
+ "start": 13330.52,
+ "end": 13331.28,
+ "text": "people"
+ },
+ {
+ "id": 29587,
+ "start": 13331.28,
+ "end": 13331.5,
+ "text": "don't"
+ },
+ {
+ "id": 29588,
+ "start": 13331.5,
+ "end": 13331.68,
+ "text": "have"
+ },
+ {
+ "id": 29589,
+ "start": 13331.68,
+ "end": 13332.08,
+ "text": "control"
+ },
+ {
+ "id": 29590,
+ "start": 13332.08,
+ "end": 13332.26,
+ "text": "over"
+ },
+ {
+ "id": 29591,
+ "start": 13332.26,
+ "end": 13332.48,
+ "text": "that?"
+ },
+ {
+ "id": 29592,
+ "start": 13332.48,
+ "end": 13333,
+ "text": "But"
+ },
+ {
+ "id": 29593,
+ "start": 13333,
+ "end": 13333.16,
+ "text": "on"
+ },
+ {
+ "id": 29594,
+ "start": 13333.16,
+ "end": 13333.6,
+ "text": "Facebook,"
+ },
+ {
+ "id": 29595,
+ "start": 13333.6,
+ "end": 13334.38,
+ "text": "everything"
+ },
+ {
+ "id": 29596,
+ "start": 13334.38,
+ "end": 13334.5,
+ "text": "that"
+ },
+ {
+ "id": 29597,
+ "start": 13334.5,
+ "end": 13334.62,
+ "text": "you"
+ },
+ {
+ "id": 29598,
+ "start": 13334.62,
+ "end": 13334.88,
+ "text": "share"
+ },
+ {
+ "id": 29599,
+ "start": 13334.88,
+ "end": 13335.08,
+ "text": "there,"
+ },
+ {
+ "id": 29600,
+ "start": 13335.08,
+ "end": 13335.24,
+ "text": "you"
+ },
+ {
+ "id": 29601,
+ "start": 13335.24,
+ "end": 13335.38,
+ "text": "have"
+ },
+ {
+ "id": 29602,
+ "start": 13335.38,
+ "end": 13335.76,
+ "text": "control"
+ },
+ {
+ "id": 29603,
+ "start": 13335.76,
+ "end": 13336.02,
+ "text": "over."
+ },
+ {
+ "id": 29604,
+ "start": 13336.02,
+ "end": 13336.58,
+ "text": "You"
+ },
+ {
+ "id": 29605,
+ "start": 13336.58,
+ "end": 13338.02,
+ "text": "can"
+ },
+ {
+ "id": 29606,
+ "start": 13338.02,
+ "end": 13338.18,
+ "text": "say"
+ },
+ {
+ "id": 29607,
+ "start": 13338.18,
+ "end": 13338.26,
+ "text": "I"
+ },
+ {
+ "id": 29608,
+ "start": 13338.26,
+ "end": 13338.42,
+ "text": "don't"
+ },
+ {
+ "id": 29609,
+ "start": 13338.42,
+ "end": 13338.54,
+ "text": "want"
+ },
+ {
+ "id": 29610,
+ "start": 13338.54,
+ "end": 13338.68,
+ "text": "this"
+ },
+ {
+ "id": 29611,
+ "start": 13338.68,
+ "end": 13338.92,
+ "text": "in"
+ },
+ {
+ "id": 29612,
+ "start": 13338.92,
+ "end": 13339.28,
+ "text": "to"
+ },
+ {
+ "id": 29613,
+ "start": 13339.28,
+ "end": 13339.38,
+ "text": "be"
+ },
+ {
+ "id": 29614,
+ "start": 13339.38,
+ "end": 13339.58,
+ "text": "there."
+ },
+ {
+ "id": 29615,
+ "start": 13339.58,
+ "end": 13340.12,
+ "text": "You"
+ },
+ {
+ "id": 29616,
+ "start": 13340.12,
+ "end": 13340.26,
+ "text": "have"
+ },
+ {
+ "id": 29617,
+ "start": 13340.26,
+ "end": 13340.52,
+ "text": "full"
+ },
+ {
+ "id": 29618,
+ "start": 13340.52,
+ "end": 13340.92,
+ "text": "access"
+ },
+ {
+ "id": 29619,
+ "start": 13340.92,
+ "end": 13341.12,
+ "text": "to"
+ },
+ {
+ "id": 29620,
+ "start": 13341.12,
+ "end": 13341.8,
+ "text": "understand"
+ },
+ {
+ "id": 29621,
+ "start": 13341.8,
+ "end": 13342.34,
+ "text": "all"
+ },
+ {
+ "id": 29622,
+ "start": 13342.34,
+ "end": 13342.64,
+ "text": "every"
+ },
+ {
+ "id": 29623,
+ "start": 13342.64,
+ "end": 13342.84,
+ "text": "piece"
+ },
+ {
+ "id": 29624,
+ "start": 13342.84,
+ "end": 13342.94,
+ "text": "of"
+ },
+ {
+ "id": 29625,
+ "start": 13342.94,
+ "end": 13343.46,
+ "text": "information"
+ },
+ {
+ "id": 29626,
+ "start": 13343.46,
+ "end": 13343.66,
+ "text": "that"
+ },
+ {
+ "id": 29627,
+ "start": 13343.66,
+ "end": 13344.06,
+ "text": "Facebook"
+ },
+ {
+ "id": 29628,
+ "start": 13344.06,
+ "end": 13344.26,
+ "text": "might"
+ },
+ {
+ "id": 29629,
+ "start": 13344.26,
+ "end": 13344.38,
+ "text": "know"
+ },
+ {
+ "id": 29630,
+ "start": 13344.38,
+ "end": 13344.58,
+ "text": "about"
+ },
+ {
+ "id": 29631,
+ "start": 13344.58,
+ "end": 13344.76,
+ "text": "you."
+ },
+ {
+ "id": 29632,
+ "start": 13344.76,
+ "end": 13345.14,
+ "text": "And"
+ },
+ {
+ "id": 29633,
+ "start": 13345.14,
+ "end": 13345.24,
+ "text": "you"
+ },
+ {
+ "id": 29634,
+ "start": 13345.24,
+ "end": 13345.38,
+ "text": "can"
+ },
+ {
+ "id": 29635,
+ "start": 13345.38,
+ "end": 13345.48,
+ "text": "get"
+ },
+ {
+ "id": 29636,
+ "start": 13345.48,
+ "end": 13345.64,
+ "text": "rid"
+ },
+ {
+ "id": 29637,
+ "start": 13345.64,
+ "end": 13345.72,
+ "text": "of"
+ },
+ {
+ "id": 29638,
+ "start": 13345.72,
+ "end": 13345.84,
+ "text": "all"
+ },
+ {
+ "id": 29639,
+ "start": 13345.84,
+ "end": 13345.92,
+ "text": "of"
+ },
+ {
+ "id": 29640,
+ "start": 13345.92,
+ "end": 13346.02,
+ "text": "it,"
+ },
+ {
+ "id": 29641,
+ "start": 13346.02,
+ "end": 13346.8,
+ "text": "and"
+ },
+ {
+ "id": 29642,
+ "start": 13346.8,
+ "end": 13347.22,
+ "text": "I"
+ },
+ {
+ "id": 29643,
+ "start": 13347.22,
+ "end": 13347.38,
+ "text": "don't"
+ },
+ {
+ "id": 29644,
+ "start": 13347.38,
+ "end": 13347.48,
+ "text": "know"
+ },
+ {
+ "id": 29645,
+ "start": 13347.48,
+ "end": 13347.58,
+ "text": "of"
+ },
+ {
+ "id": 29646,
+ "start": 13347.58,
+ "end": 13348.3,
+ "text": "any"
+ },
+ {
+ "id": 29647,
+ "start": 13348.3,
+ "end": 13349.26,
+ "text": "surveillance"
+ },
+ {
+ "id": 29648,
+ "start": 13349.26,
+ "end": 13349.86,
+ "text": "organization"
+ },
+ {
+ "id": 29649,
+ "start": 13349.86,
+ "end": 13349.94,
+ "text": "in"
+ },
+ {
+ "id": 29650,
+ "start": 13349.94,
+ "end": 13350.06,
+ "text": "the"
+ },
+ {
+ "id": 29651,
+ "start": 13350.06,
+ "end": 13350.24,
+ "text": "world"
+ },
+ {
+ "id": 29652,
+ "start": 13350.24,
+ "end": 13350.38,
+ "text": "that"
+ },
+ {
+ "id": 29653,
+ "start": 13350.38,
+ "end": 13350.74,
+ "text": "operates"
+ },
+ {
+ "id": 29654,
+ "start": 13350.74,
+ "end": 13350.92,
+ "text": "that"
+ },
+ {
+ "id": 29655,
+ "start": 13350.92,
+ "end": 13351.1,
+ "text": "way,"
+ },
+ {
+ "id": 29656,
+ "start": 13351.1,
+ "end": 13351.26,
+ "text": "which"
+ },
+ {
+ "id": 29657,
+ "start": 13351.26,
+ "end": 13351.36,
+ "text": "is"
+ },
+ {
+ "id": 29658,
+ "start": 13351.36,
+ "end": 13351.48,
+ "text": "why"
+ },
+ {
+ "id": 29659,
+ "start": 13351.48,
+ "end": 13351.56,
+ "text": "I"
+ },
+ {
+ "id": 29660,
+ "start": 13351.56,
+ "end": 13351.72,
+ "text": "think"
+ },
+ {
+ "id": 29661,
+ "start": 13351.72,
+ "end": 13351.84,
+ "text": "that"
+ },
+ {
+ "id": 29662,
+ "start": 13351.84,
+ "end": 13352.02,
+ "text": "that"
+ },
+ {
+ "id": 29663,
+ "start": 13352.02,
+ "end": 13352.62,
+ "text": "comparison"
+ },
+ {
+ "id": 29664,
+ "start": 13352.62,
+ "end": 13353.16,
+ "text": "just"
+ },
+ {
+ "id": 29665,
+ "start": 13353.16,
+ "end": 13353.46,
+ "text": "isn't"
+ },
+ {
+ "id": 29666,
+ "start": 13353.46,
+ "end": 13353.72,
+ "text": "really"
+ },
+ {
+ "id": 29667,
+ "start": 13353.72,
+ "end": 13353.96,
+ "text": "apt"
+ },
+ {
+ "id": 29668,
+ "start": 13353.96,
+ "end": 13354.14,
+ "text": "here"
+ },
+ {
+ "id": 29669,
+ "start": 13354.14,
+ "end": 13354.36,
+ "text": "with"
+ },
+ {
+ "id": 29670,
+ "start": 13354.36,
+ "end": 13354.52,
+ "text": "you"
+ },
+ {
+ "id": 29671,
+ "start": 13354.52,
+ "end": 13354.72,
+ "text": "here"
+ },
+ {
+ "id": 29672,
+ "start": 13354.72,
+ "end": 13355,
+ "text": "today."
+ },
+ {
+ "id": 29673,
+ "start": 13355,
+ "end": 13355.08,
+ "text": "Do"
+ },
+ {
+ "id": 29674,
+ "start": 13355.08,
+ "end": 13355.2,
+ "text": "you"
+ },
+ {
+ "id": 29675,
+ "start": 13355.2,
+ "end": 13355.38,
+ "text": "think"
+ },
+ {
+ "id": 29676,
+ "start": 13355.38,
+ "end": 13355.58,
+ "text": "you're"
+ },
+ {
+ "id": 29677,
+ "start": 13355.58,
+ "end": 13355.64,
+ "text": "a"
+ },
+ {
+ "id": 29678,
+ "start": 13355.64,
+ "end": 13356.4,
+ "text": "victim?"
+ },
+ {
+ "id": 29679,
+ "start": 13356.4,
+ "end": 13356.92,
+ "text": "No,"
+ },
+ {
+ "id": 29680,
+ "start": 13356.92,
+ "end": 13357.88,
+ "text": "do"
+ },
+ {
+ "id": 29681,
+ "start": 13357.88,
+ "end": 13358,
+ "text": "you"
+ },
+ {
+ "id": 29682,
+ "start": 13358,
+ "end": 13358.22,
+ "text": "think"
+ },
+ {
+ "id": 29683,
+ "start": 13358.22,
+ "end": 13359.04,
+ "text": "Facebook"
+ },
+ {
+ "id": 29684,
+ "start": 13359.04,
+ "end": 13359.26,
+ "text": "is"
+ },
+ {
+ "id": 29685,
+ "start": 13359.26,
+ "end": 13359.48,
+ "text": "a"
+ },
+ {
+ "id": 29686,
+ "start": 13359.48,
+ "end": 13359.84,
+ "text": "company"
+ },
+ {
+ "id": 29687,
+ "start": 13359.84,
+ "end": 13359.92,
+ "text": "is"
+ },
+ {
+ "id": 29688,
+ "start": 13359.92,
+ "end": 13360.02,
+ "text": "a"
+ },
+ {
+ "id": 29689,
+ "start": 13360.02,
+ "end": 13360.9,
+ "text": "victim,"
+ },
+ {
+ "id": 29690,
+ "start": 13360.9,
+ "end": 13361.98,
+ "text": "Senator?"
+ },
+ {
+ "id": 29691,
+ "start": 13361.98,
+ "end": 13362.26,
+ "text": "No,"
+ },
+ {
+ "id": 29692,
+ "start": 13362.26,
+ "end": 13362.38,
+ "text": "I"
+ },
+ {
+ "id": 29693,
+ "start": 13362.38,
+ "end": 13362.6,
+ "text": "think"
+ },
+ {
+ "id": 29694,
+ "start": 13362.6,
+ "end": 13362.74,
+ "text": "we"
+ },
+ {
+ "id": 29695,
+ "start": 13362.74,
+ "end": 13362.94,
+ "text": "have"
+ },
+ {
+ "id": 29696,
+ "start": 13362.94,
+ "end": 13362.98,
+ "text": "a"
+ },
+ {
+ "id": 29697,
+ "start": 13362.98,
+ "end": 13363.72,
+ "text": "responsibility"
+ },
+ {
+ "id": 29698,
+ "start": 13363.72,
+ "end": 13363.86,
+ "text": "to"
+ },
+ {
+ "id": 29699,
+ "start": 13363.86,
+ "end": 13364.24,
+ "text": "protect"
+ },
+ {
+ "id": 29700,
+ "start": 13364.24,
+ "end": 13364.72,
+ "text": "everyone"
+ },
+ {
+ "id": 29701,
+ "start": 13364.72,
+ "end": 13364.82,
+ "text": "in"
+ },
+ {
+ "id": 29702,
+ "start": 13364.82,
+ "end": 13364.98,
+ "text": "our"
+ },
+ {
+ "id": 29703,
+ "start": 13364.98,
+ "end": 13365.4,
+ "text": "community"
+ },
+ {
+ "id": 29704,
+ "start": 13365.4,
+ "end": 13366.04,
+ "text": "from"
+ },
+ {
+ "id": 29705,
+ "start": 13366.04,
+ "end": 13366.94,
+ "text": "anyone"
+ },
+ {
+ "id": 29706,
+ "start": 13366.94,
+ "end": 13367.28,
+ "text": "in"
+ },
+ {
+ "id": 29707,
+ "start": 13367.28,
+ "end": 13367.64,
+ "text": "our"
+ },
+ {
+ "id": 29708,
+ "start": 13367.64,
+ "end": 13368.22,
+ "text": "ecosystem."
+ },
+ {
+ "id": 29709,
+ "start": 13368.22,
+ "end": 13368.48,
+ "text": "Who"
+ },
+ {
+ "id": 29710,
+ "start": 13368.48,
+ "end": 13368.74,
+ "text": "is"
+ },
+ {
+ "id": 29711,
+ "start": 13368.74,
+ "end": 13369.68,
+ "text": "going"
+ },
+ {
+ "id": 29712,
+ "start": 13369.68,
+ "end": 13369.78,
+ "text": "to"
+ },
+ {
+ "id": 29713,
+ "start": 13369.78,
+ "end": 13370.22,
+ "text": "potentially"
+ },
+ {
+ "id": 29714,
+ "start": 13370.22,
+ "end": 13370.4,
+ "text": "harm"
+ },
+ {
+ "id": 29715,
+ "start": 13370.4,
+ "end": 13370.58,
+ "text": "them?"
+ },
+ {
+ "id": 29716,
+ "start": 13370.58,
+ "end": 13370.76,
+ "text": "And"
+ },
+ {
+ "id": 29717,
+ "start": 13370.76,
+ "end": 13370.82,
+ "text": "I"
+ },
+ {
+ "id": 29718,
+ "start": 13370.82,
+ "end": 13371,
+ "text": "think"
+ },
+ {
+ "id": 29719,
+ "start": 13371,
+ "end": 13371.16,
+ "text": "that"
+ },
+ {
+ "id": 29720,
+ "start": 13371.16,
+ "end": 13371.26,
+ "text": "we"
+ },
+ {
+ "id": 29721,
+ "start": 13371.26,
+ "end": 13371.6,
+ "text": "haven't"
+ },
+ {
+ "id": 29722,
+ "start": 13371.6,
+ "end": 13371.74,
+ "text": "done"
+ },
+ {
+ "id": 29723,
+ "start": 13371.74,
+ "end": 13371.96,
+ "text": "enough"
+ },
+ {
+ "id": 29724,
+ "start": 13371.96,
+ "end": 13372.56,
+ "text": "historically"
+ },
+ {
+ "id": 29725,
+ "start": 13372.56,
+ "end": 13372.78,
+ "text": "you"
+ },
+ {
+ "id": 29726,
+ "start": 13372.78,
+ "end": 13373.14,
+ "text": "consider"
+ },
+ {
+ "id": 29727,
+ "start": 13373.14,
+ "end": 13373.26,
+ "text": "we"
+ },
+ {
+ "id": 29728,
+ "start": 13373.26,
+ "end": 13373.44,
+ "text": "need"
+ },
+ {
+ "id": 29729,
+ "start": 13373.44,
+ "end": 13373.52,
+ "text": "to"
+ },
+ {
+ "id": 29730,
+ "start": 13373.52,
+ "end": 13373.74,
+ "text": "step"
+ },
+ {
+ "id": 29731,
+ "start": 13373.74,
+ "end": 13373.88,
+ "text": "up"
+ },
+ {
+ "id": 29732,
+ "start": 13373.88,
+ "end": 13374.02,
+ "text": "and"
+ },
+ {
+ "id": 29733,
+ "start": 13374.02,
+ "end": 13374.16,
+ "text": "do"
+ },
+ {
+ "id": 29734,
+ "start": 13374.16,
+ "end": 13374.32,
+ "text": "more"
+ },
+ {
+ "id": 29735,
+ "start": 13374.32,
+ "end": 13374.72,
+ "text": "consider"
+ },
+ {
+ "id": 29736,
+ "start": 13374.72,
+ "end": 13375.06,
+ "text": "a"
+ },
+ {
+ "id": 29737,
+ "start": 13375.06,
+ "end": 13375.82,
+ "text": "7,000,000"
+ },
+ {
+ "id": 29738,
+ "start": 13375.82,
+ "end": 13376.22,
+ "text": "users"
+ },
+ {
+ "id": 29739,
+ "start": 13376.22,
+ "end": 13376.52,
+ "text": "to"
+ },
+ {
+ "id": 29740,
+ "start": 13376.52,
+ "end": 13376.94,
+ "text": "consider"
+ },
+ {
+ "id": 29741,
+ "start": 13376.94,
+ "end": 13377.1,
+ "text": "them"
+ },
+ {
+ "id": 29742,
+ "start": 13377.1,
+ "end": 13379.04,
+ "text": "victims."
+ },
+ {
+ "id": 29743,
+ "start": 13379.04,
+ "end": 13380,
+ "text": "Senator,"
+ },
+ {
+ "id": 29744,
+ "start": 13380,
+ "end": 13380.06,
+ "text": "I"
+ },
+ {
+ "id": 29745,
+ "start": 13380.06,
+ "end": 13382,
+ "text": "think,"
+ },
+ {
+ "id": 29746,
+ "start": 13382,
+ "end": 13382.96,
+ "text": "yes."
+ },
+ {
+ "id": 29747,
+ "start": 13382.96,
+ "end": 13383.18,
+ "text": "I"
+ },
+ {
+ "id": 29748,
+ "start": 13383.18,
+ "end": 13383.36,
+ "text": "mean,"
+ },
+ {
+ "id": 29749,
+ "start": 13383.36,
+ "end": 13384.3,
+ "text": "they"
+ },
+ {
+ "id": 29750,
+ "start": 13384.3,
+ "end": 13384.46,
+ "text": "did"
+ },
+ {
+ "id": 29751,
+ "start": 13384.46,
+ "end": 13384.64,
+ "text": "not"
+ },
+ {
+ "id": 29752,
+ "start": 13384.64,
+ "end": 13384.86,
+ "text": "want"
+ },
+ {
+ "id": 29753,
+ "start": 13384.86,
+ "end": 13385.1,
+ "text": "their"
+ },
+ {
+ "id": 29754,
+ "start": 13385.1,
+ "end": 13385.66,
+ "text": "information"
+ },
+ {
+ "id": 29755,
+ "start": 13385.66,
+ "end": 13385.8,
+ "text": "to"
+ },
+ {
+ "id": 29756,
+ "start": 13385.8,
+ "end": 13386,
+ "text": "be"
+ },
+ {
+ "id": 29757,
+ "start": 13386,
+ "end": 13387.1,
+ "text": "sold"
+ },
+ {
+ "id": 29758,
+ "start": 13387.1,
+ "end": 13387.22,
+ "text": "to"
+ },
+ {
+ "id": 29759,
+ "start": 13387.22,
+ "end": 13387.58,
+ "text": "Cambridge"
+ },
+ {
+ "id": 29760,
+ "start": 13387.58,
+ "end": 13387.98,
+ "text": "Analytica"
+ },
+ {
+ "id": 29761,
+ "start": 13387.98,
+ "end": 13388.18,
+ "text": "by"
+ },
+ {
+ "id": 29762,
+ "start": 13388.18,
+ "end": 13388.28,
+ "text": "the"
+ },
+ {
+ "id": 29763,
+ "start": 13388.28,
+ "end": 13388.74,
+ "text": "developer"
+ },
+ {
+ "id": 29764,
+ "start": 13388.74,
+ "end": 13390.98,
+ "text": "and"
+ },
+ {
+ "id": 29765,
+ "start": 13390.98,
+ "end": 13391.2,
+ "text": "that"
+ },
+ {
+ "id": 29766,
+ "start": 13391.2,
+ "end": 13391.58,
+ "text": "happened"
+ },
+ {
+ "id": 29767,
+ "start": 13391.58,
+ "end": 13392.3,
+ "text": "and"
+ },
+ {
+ "id": 29768,
+ "start": 13392.3,
+ "end": 13392.42,
+ "text": "it"
+ },
+ {
+ "id": 29769,
+ "start": 13392.42,
+ "end": 13392.72,
+ "text": "happened"
+ },
+ {
+ "id": 29770,
+ "start": 13392.72,
+ "end": 13392.82,
+ "text": "on"
+ },
+ {
+ "id": 29771,
+ "start": 13392.82,
+ "end": 13393,
+ "text": "our"
+ },
+ {
+ "id": 29772,
+ "start": 13393,
+ "end": 13394.05,
+ "text": "watch."
+ },
+ {
+ "id": 29773,
+ "start": 13394.05,
+ "end": 13394.21,
+ "text": "Even"
+ },
+ {
+ "id": 29774,
+ "start": 13394.21,
+ "end": 13394.37,
+ "text": "though"
+ },
+ {
+ "id": 29775,
+ "start": 13394.37,
+ "end": 13394.47,
+ "text": "we"
+ },
+ {
+ "id": 29776,
+ "start": 13394.47,
+ "end": 13394.67,
+ "text": "didn't"
+ },
+ {
+ "id": 29777,
+ "start": 13394.67,
+ "end": 13394.79,
+ "text": "do"
+ },
+ {
+ "id": 29778,
+ "start": 13394.79,
+ "end": 13394.93,
+ "text": "it."
+ },
+ {
+ "id": 29779,
+ "start": 13394.93,
+ "end": 13395.45,
+ "text": "I"
+ },
+ {
+ "id": 29780,
+ "start": 13395.45,
+ "end": 13395.65,
+ "text": "think"
+ },
+ {
+ "id": 29781,
+ "start": 13395.65,
+ "end": 13395.79,
+ "text": "we"
+ },
+ {
+ "id": 29782,
+ "start": 13395.79,
+ "end": 13395.97,
+ "text": "have"
+ },
+ {
+ "id": 29783,
+ "start": 13395.97,
+ "end": 13396.01,
+ "text": "a"
+ },
+ {
+ "id": 29784,
+ "start": 13396.01,
+ "end": 13396.81,
+ "text": "responsibility"
+ },
+ {
+ "id": 29785,
+ "start": 13396.81,
+ "end": 13396.97,
+ "text": "to"
+ },
+ {
+ "id": 29786,
+ "start": 13396.97,
+ "end": 13397.09,
+ "text": "be"
+ },
+ {
+ "id": 29787,
+ "start": 13397.09,
+ "end": 13397.25,
+ "text": "able"
+ },
+ {
+ "id": 29788,
+ "start": 13397.25,
+ "end": 13397.35,
+ "text": "to"
+ },
+ {
+ "id": 29789,
+ "start": 13397.35,
+ "end": 13397.67,
+ "text": "prevent"
+ },
+ {
+ "id": 29790,
+ "start": 13397.67,
+ "end": 13397.89,
+ "text": "that"
+ },
+ {
+ "id": 29791,
+ "start": 13397.89,
+ "end": 13398.09,
+ "text": "and"
+ },
+ {
+ "id": 29792,
+ "start": 13398.09,
+ "end": 13398.21,
+ "text": "be"
+ },
+ {
+ "id": 29793,
+ "start": 13398.21,
+ "end": 13398.35,
+ "text": "able"
+ },
+ {
+ "id": 29794,
+ "start": 13398.35,
+ "end": 13398.43,
+ "text": "to"
+ },
+ {
+ "id": 29795,
+ "start": 13398.43,
+ "end": 13398.59,
+ "text": "take"
+ },
+ {
+ "id": 29796,
+ "start": 13398.59,
+ "end": 13398.89,
+ "text": "action"
+ },
+ {
+ "id": 29797,
+ "start": 13398.89,
+ "end": 13399.27,
+ "text": "sooner."
+ },
+ {
+ "id": 29798,
+ "start": 13399.27,
+ "end": 13400.09,
+ "text": "And"
+ },
+ {
+ "id": 29799,
+ "start": 13400.09,
+ "end": 13400.33,
+ "text": "we're"
+ },
+ {
+ "id": 29800,
+ "start": 13400.33,
+ "end": 13400.67,
+ "text": "committing"
+ },
+ {
+ "id": 29801,
+ "start": 13400.67,
+ "end": 13400.83,
+ "text": "to"
+ },
+ {
+ "id": 29802,
+ "start": 13400.83,
+ "end": 13401.11,
+ "text": "make"
+ },
+ {
+ "id": 29803,
+ "start": 13401.11,
+ "end": 13401.27,
+ "text": "sure"
+ },
+ {
+ "id": 29804,
+ "start": 13401.27,
+ "end": 13401.41,
+ "text": "that"
+ },
+ {
+ "id": 29805,
+ "start": 13401.41,
+ "end": 13401.49,
+ "text": "we"
+ },
+ {
+ "id": 29806,
+ "start": 13401.49,
+ "end": 13401.61,
+ "text": "do"
+ },
+ {
+ "id": 29807,
+ "start": 13401.61,
+ "end": 13401.75,
+ "text": "that"
+ },
+ {
+ "id": 29808,
+ "start": 13401.75,
+ "end": 13401.95,
+ "text": "going"
+ },
+ {
+ "id": 29809,
+ "start": 13401.95,
+ "end": 13402.21,
+ "text": "forward."
+ },
+ {
+ "id": 29810,
+ "start": 13402.21,
+ "end": 13402.37,
+ "text": "Which"
+ },
+ {
+ "id": 29811,
+ "start": 13402.37,
+ "end": 13402.49,
+ "text": "is"
+ },
+ {
+ "id": 29812,
+ "start": 13402.49,
+ "end": 13402.63,
+ "text": "why"
+ },
+ {
+ "id": 29813,
+ "start": 13402.63,
+ "end": 13403.33,
+ "text": "the"
+ },
+ {
+ "id": 29814,
+ "start": 13403.33,
+ "end": 13403.67,
+ "text": "steps"
+ },
+ {
+ "id": 29815,
+ "start": 13403.67,
+ "end": 13404.07,
+ "text": "that"
+ },
+ {
+ "id": 29816,
+ "start": 13404.07,
+ "end": 13404.17,
+ "text": "I"
+ },
+ {
+ "id": 29817,
+ "start": 13404.17,
+ "end": 13404.51,
+ "text": "announced"
+ },
+ {
+ "id": 29818,
+ "start": 13404.51,
+ "end": 13404.89,
+ "text": "before"
+ },
+ {
+ "id": 29819,
+ "start": 13404.89,
+ "end": 13405.87,
+ "text": "are"
+ },
+ {
+ "id": 29820,
+ "start": 13405.87,
+ "end": 13406.58,
+ "text": "now."
+ },
+ {
+ "id": 29821,
+ "start": 13406.58,
+ "end": 13407.14,
+ "text": "They"
+ },
+ {
+ "id": 29822,
+ "start": 13407.14,
+ "end": 13407.26,
+ "text": "are"
+ },
+ {
+ "id": 29823,
+ "start": 13407.26,
+ "end": 13407.56,
+ "text": "the"
+ },
+ {
+ "id": 29824,
+ "start": 13407.56,
+ "end": 13407.74,
+ "text": "two"
+ },
+ {
+ "id": 29825,
+ "start": 13407.74,
+ "end": 13407.94,
+ "text": "most"
+ },
+ {
+ "id": 29826,
+ "start": 13407.94,
+ "end": 13408.3,
+ "text": "important"
+ },
+ {
+ "id": 29827,
+ "start": 13408.3,
+ "end": 13408.46,
+ "text": "things"
+ },
+ {
+ "id": 29828,
+ "start": 13408.46,
+ "end": 13408.6,
+ "text": "that"
+ },
+ {
+ "id": 29829,
+ "start": 13408.6,
+ "end": 13408.74,
+ "text": "we're"
+ },
+ {
+ "id": 29830,
+ "start": 13408.74,
+ "end": 13408.92,
+ "text": "doing"
+ },
+ {
+ "id": 29831,
+ "start": 13408.92,
+ "end": 13409.1,
+ "text": "are"
+ },
+ {
+ "id": 29832,
+ "start": 13409.1,
+ "end": 13409.74,
+ "text": "locking"
+ },
+ {
+ "id": 29833,
+ "start": 13409.74,
+ "end": 13409.88,
+ "text": "down"
+ },
+ {
+ "id": 29834,
+ "start": 13409.88,
+ "end": 13410.02,
+ "text": "the"
+ },
+ {
+ "id": 29835,
+ "start": 13410.02,
+ "end": 13410.44,
+ "text": "platform"
+ },
+ {
+ "id": 29836,
+ "start": 13410.44,
+ "end": 13410.54,
+ "text": "to"
+ },
+ {
+ "id": 29837,
+ "start": 13410.54,
+ "end": 13410.68,
+ "text": "make"
+ },
+ {
+ "id": 29838,
+ "start": 13410.68,
+ "end": 13410.82,
+ "text": "sure"
+ },
+ {
+ "id": 29839,
+ "start": 13410.82,
+ "end": 13410.94,
+ "text": "that"
+ },
+ {
+ "id": 29840,
+ "start": 13410.94,
+ "end": 13411.36,
+ "text": "developers"
+ },
+ {
+ "id": 29841,
+ "start": 13411.36,
+ "end": 13411.54,
+ "text": "can't"
+ },
+ {
+ "id": 29842,
+ "start": 13411.54,
+ "end": 13411.66,
+ "text": "get"
+ },
+ {
+ "id": 29843,
+ "start": 13411.66,
+ "end": 13412.08,
+ "text": "access"
+ },
+ {
+ "id": 29844,
+ "start": 13412.08,
+ "end": 13412.2,
+ "text": "to"
+ },
+ {
+ "id": 29845,
+ "start": 13412.2,
+ "end": 13412.72,
+ "text": "that"
+ },
+ {
+ "id": 29846,
+ "start": 13412.72,
+ "end": 13412.9,
+ "text": "much"
+ },
+ {
+ "id": 29847,
+ "start": 13412.9,
+ "end": 13413.1,
+ "text": "data."
+ },
+ {
+ "id": 29848,
+ "start": 13413.1,
+ "end": 13413.2,
+ "text": "So"
+ },
+ {
+ "id": 29849,
+ "start": 13413.2,
+ "end": 13413.38,
+ "text": "this"
+ },
+ {
+ "id": 29850,
+ "start": 13413.38,
+ "end": 13413.6,
+ "text": "can't"
+ },
+ {
+ "id": 29851,
+ "start": 13413.6,
+ "end": 13413.86,
+ "text": "happen"
+ },
+ {
+ "id": 29852,
+ "start": 13413.86,
+ "end": 13414.08,
+ "text": "again"
+ },
+ {
+ "id": 29853,
+ "start": 13414.08,
+ "end": 13414.34,
+ "text": "going"
+ },
+ {
+ "id": 29854,
+ "start": 13414.34,
+ "end": 13414.7,
+ "text": "forward,"
+ },
+ {
+ "id": 29855,
+ "start": 13414.7,
+ "end": 13415.1,
+ "text": "which"
+ },
+ {
+ "id": 29856,
+ "start": 13415.1,
+ "end": 13415.16,
+ "text": "I"
+ },
+ {
+ "id": 29857,
+ "start": 13415.16,
+ "end": 13415.34,
+ "text": "think"
+ },
+ {
+ "id": 29858,
+ "start": 13415.34,
+ "end": 13415.54,
+ "text": "is"
+ },
+ {
+ "id": 29859,
+ "start": 13415.54,
+ "end": 13416.2,
+ "text": "largely"
+ },
+ {
+ "id": 29860,
+ "start": 13416.2,
+ "end": 13416.36,
+ "text": "the"
+ },
+ {
+ "id": 29861,
+ "start": 13416.36,
+ "end": 13416.56,
+ "text": "case"
+ },
+ {
+ "id": 29862,
+ "start": 13416.56,
+ "end": 13416.84,
+ "text": "since"
+ },
+ {
+ "id": 29863,
+ "start": 13416.84,
+ "end": 13417.18,
+ "text": "20"
+ },
+ {
+ "id": 29864,
+ "start": 13417.18,
+ "end": 13417.7,
+ "text": "14"
+ },
+ {
+ "id": 29865,
+ "start": 13417.7,
+ "end": 13418.52,
+ "text": "and"
+ },
+ {
+ "id": 29866,
+ "start": 13418.52,
+ "end": 13418.98,
+ "text": "going"
+ },
+ {
+ "id": 29867,
+ "start": 13418.98,
+ "end": 13419.52,
+ "text": "backwards."
+ },
+ {
+ "id": 29868,
+ "start": 13419.52,
+ "end": 13419.84,
+ "text": "We"
+ },
+ {
+ "id": 29869,
+ "start": 13419.84,
+ "end": 13420,
+ "text": "need"
+ },
+ {
+ "id": 29870,
+ "start": 13420,
+ "end": 13420.13,
+ "text": "to"
+ },
+ {
+ "id": 29871,
+ "start": 13420.13,
+ "end": 13420.69,
+ "text": "investigate"
+ },
+ {
+ "id": 29872,
+ "start": 13420.69,
+ "end": 13421.31,
+ "text": "every"
+ },
+ {
+ "id": 29873,
+ "start": 13421.31,
+ "end": 13421.65,
+ "text": "single"
+ },
+ {
+ "id": 29874,
+ "start": 13421.65,
+ "end": 13421.85,
+ "text": "app"
+ },
+ {
+ "id": 29875,
+ "start": 13421.85,
+ "end": 13422.01,
+ "text": "that"
+ },
+ {
+ "id": 29876,
+ "start": 13422.01,
+ "end": 13422.19,
+ "text": "might"
+ },
+ {
+ "id": 29877,
+ "start": 13422.19,
+ "end": 13422.29,
+ "text": "have"
+ },
+ {
+ "id": 29878,
+ "start": 13422.29,
+ "end": 13422.41,
+ "text": "had"
+ },
+ {
+ "id": 29879,
+ "start": 13422.41,
+ "end": 13422.75,
+ "text": "access"
+ },
+ {
+ "id": 29880,
+ "start": 13422.75,
+ "end": 13422.89,
+ "text": "to"
+ },
+ {
+ "id": 29881,
+ "start": 13422.89,
+ "end": 13422.95,
+ "text": "a"
+ },
+ {
+ "id": 29882,
+ "start": 13422.95,
+ "end": 13423.23,
+ "text": "large"
+ },
+ {
+ "id": 29883,
+ "start": 13423.23,
+ "end": 13423.43,
+ "text": "amount"
+ },
+ {
+ "id": 29884,
+ "start": 13423.43,
+ "end": 13423.51,
+ "text": "of"
+ },
+ {
+ "id": 29885,
+ "start": 13423.51,
+ "end": 13423.81,
+ "text": "people's"
+ },
+ {
+ "id": 29886,
+ "start": 13423.81,
+ "end": 13424.15,
+ "text": "data"
+ },
+ {
+ "id": 29887,
+ "start": 13424.15,
+ "end": 13424.69,
+ "text": "to"
+ },
+ {
+ "id": 29888,
+ "start": 13424.69,
+ "end": 13424.85,
+ "text": "make"
+ },
+ {
+ "id": 29889,
+ "start": 13424.85,
+ "end": 13425.05,
+ "text": "sure"
+ },
+ {
+ "id": 29890,
+ "start": 13425.05,
+ "end": 13425.29,
+ "text": "that"
+ },
+ {
+ "id": 29891,
+ "start": 13425.29,
+ "end": 13425.49,
+ "text": "no"
+ },
+ {
+ "id": 29892,
+ "start": 13425.49,
+ "end": 13425.61,
+ "text": "one"
+ },
+ {
+ "id": 29893,
+ "start": 13425.61,
+ "end": 13425.77,
+ "text": "else"
+ },
+ {
+ "id": 29894,
+ "start": 13425.77,
+ "end": 13425.95,
+ "text": "was"
+ },
+ {
+ "id": 29895,
+ "start": 13425.95,
+ "end": 13426.41,
+ "text": "misusing"
+ },
+ {
+ "id": 29896,
+ "start": 13426.41,
+ "end": 13426.49,
+ "text": "it."
+ },
+ {
+ "id": 29897,
+ "start": 13426.49,
+ "end": 13426.57,
+ "text": "And"
+ },
+ {
+ "id": 29898,
+ "start": 13426.57,
+ "end": 13426.65,
+ "text": "if"
+ },
+ {
+ "id": 29899,
+ "start": 13426.65,
+ "end": 13426.79,
+ "text": "we"
+ },
+ {
+ "id": 29900,
+ "start": 13426.79,
+ "end": 13426.95,
+ "text": "find"
+ },
+ {
+ "id": 29901,
+ "start": 13426.95,
+ "end": 13427.07,
+ "text": "that"
+ },
+ {
+ "id": 29902,
+ "start": 13427.07,
+ "end": 13427.19,
+ "text": "they"
+ },
+ {
+ "id": 29903,
+ "start": 13427.19,
+ "end": 13427.39,
+ "text": "are"
+ },
+ {
+ "id": 29904,
+ "start": 13427.39,
+ "end": 13428.03,
+ "text": "we're"
+ },
+ {
+ "id": 29905,
+ "start": 13428.03,
+ "end": 13428.27,
+ "text": "going"
+ },
+ {
+ "id": 29906,
+ "start": 13428.27,
+ "end": 13428.53,
+ "text": "to"
+ },
+ {
+ "id": 29907,
+ "start": 13428.53,
+ "end": 13429.03,
+ "text": "get"
+ },
+ {
+ "id": 29908,
+ "start": 13429.03,
+ "end": 13429.21,
+ "text": "into"
+ },
+ {
+ "id": 29909,
+ "start": 13429.21,
+ "end": 13429.39,
+ "text": "their"
+ },
+ {
+ "id": 29910,
+ "start": 13429.39,
+ "end": 13429.77,
+ "text": "systems."
+ },
+ {
+ "id": 29911,
+ "start": 13429.77,
+ "end": 13429.95,
+ "text": "Do"
+ },
+ {
+ "id": 29912,
+ "start": 13429.95,
+ "end": 13430.01,
+ "text": "a"
+ },
+ {
+ "id": 29913,
+ "start": 13430.01,
+ "end": 13430.23,
+ "text": "full"
+ },
+ {
+ "id": 29914,
+ "start": 13430.23,
+ "end": 13430.47,
+ "text": "audit."
+ },
+ {
+ "id": 29915,
+ "start": 13430.47,
+ "end": 13430.69,
+ "text": "Make"
+ },
+ {
+ "id": 29916,
+ "start": 13430.69,
+ "end": 13430.83,
+ "text": "sure"
+ },
+ {
+ "id": 29917,
+ "start": 13430.83,
+ "end": 13430.99,
+ "text": "they"
+ },
+ {
+ "id": 29918,
+ "start": 13430.99,
+ "end": 13431.25,
+ "text": "delete"
+ },
+ {
+ "id": 29919,
+ "start": 13431.25,
+ "end": 13431.35,
+ "text": "it"
+ },
+ {
+ "id": 29920,
+ "start": 13431.35,
+ "end": 13431.93,
+ "text": "and"
+ },
+ {
+ "id": 29921,
+ "start": 13431.93,
+ "end": 13432.09,
+ "text": "we're"
+ },
+ {
+ "id": 29922,
+ "start": 13432.09,
+ "end": 13432.23,
+ "text": "going"
+ },
+ {
+ "id": 29923,
+ "start": 13432.23,
+ "end": 13432.29,
+ "text": "to"
+ },
+ {
+ "id": 29924,
+ "start": 13432.29,
+ "end": 13432.43,
+ "text": "tell"
+ },
+ {
+ "id": 29925,
+ "start": 13432.43,
+ "end": 13432.65,
+ "text": "everyone"
+ },
+ {
+ "id": 29926,
+ "start": 13432.65,
+ "end": 13432.75,
+ "text": "who"
+ },
+ {
+ "id": 29927,
+ "start": 13432.75,
+ "end": 13432.81,
+ "text": "is"
+ },
+ {
+ "id": 29928,
+ "start": 13432.81,
+ "end": 13433.68,
+ "text": "affected."
+ },
+ {
+ "id": 29929,
+ "start": 13433.68,
+ "end": 13434.66,
+ "text": "Thank"
+ },
+ {
+ "id": 29930,
+ "start": 13434.66,
+ "end": 13434.74,
+ "text": "you,"
+ },
+ {
+ "id": 29931,
+ "start": 13434.74,
+ "end": 13434.98,
+ "text": "Senator."
+ },
+ {
+ "id": 29932,
+ "start": 13434.98,
+ "end": 13435.38,
+ "text": "Hello,"
+ },
+ {
+ "id": 29933,
+ "start": 13435.38,
+ "end": 13436.02,
+ "text": "center"
+ },
+ {
+ "id": 29934,
+ "start": 13436.02,
+ "end": 13436.4,
+ "text": "Peters."
+ },
+ {
+ "id": 29935,
+ "start": 13436.4,
+ "end": 13436.56,
+ "text": "And"
+ },
+ {
+ "id": 29936,
+ "start": 13436.56,
+ "end": 13436.8,
+ "text": "then"
+ },
+ {
+ "id": 29937,
+ "start": 13436.8,
+ "end": 13437.1,
+ "text": "into"
+ },
+ {
+ "id": 29938,
+ "start": 13437.1,
+ "end": 13437.2,
+ "text": "the"
+ },
+ {
+ "id": 29939,
+ "start": 13437.2,
+ "end": 13437.5,
+ "text": "break"
+ },
+ {
+ "id": 29940,
+ "start": 13437.5,
+ "end": 13437.84,
+ "text": "and"
+ },
+ {
+ "id": 29941,
+ "start": 13437.84,
+ "end": 13438.08,
+ "text": "then"
+ },
+ {
+ "id": 29942,
+ "start": 13438.08,
+ "end": 13438.4,
+ "text": "center"
+ },
+ {
+ "id": 29943,
+ "start": 13438.4,
+ "end": 13438.6,
+ "text": "till"
+ },
+ {
+ "id": 29944,
+ "start": 13438.6,
+ "end": 13438.72,
+ "text": "is"
+ },
+ {
+ "id": 29945,
+ "start": 13438.72,
+ "end": 13438.94,
+ "text": "coming"
+ },
+ {
+ "id": 29946,
+ "start": 13438.94,
+ "end": 13439.04,
+ "text": "out"
+ },
+ {
+ "id": 29947,
+ "start": 13439.04,
+ "end": 13439.14,
+ "text": "of"
+ },
+ {
+ "id": 29948,
+ "start": 13439.14,
+ "end": 13439.22,
+ "text": "the"
+ },
+ {
+ "id": 29949,
+ "start": 13439.22,
+ "end": 13439.52,
+ "text": "break."
+ },
+ {
+ "id": 29950,
+ "start": 13439.52,
+ "end": 13440.04,
+ "text": "So,"
+ },
+ {
+ "id": 29951,
+ "start": 13440.04,
+ "end": 13440.44,
+ "text": "center,"
+ },
+ {
+ "id": 29952,
+ "start": 13440.44,
+ "end": 13441.22,
+ "text": "Peters."
+ },
+ {
+ "id": 29953,
+ "start": 13441.22,
+ "end": 13441.86,
+ "text": "Thank"
+ },
+ {
+ "id": 29954,
+ "start": 13441.86,
+ "end": 13441.94,
+ "text": "you,"
+ },
+ {
+ "id": 29955,
+ "start": 13441.94,
+ "end": 13442.14,
+ "text": "Mr"
+ },
+ {
+ "id": 29956,
+ "start": 13442.14,
+ "end": 13442.5,
+ "text": "Chairman."
+ },
+ {
+ "id": 29957,
+ "start": 13442.5,
+ "end": 13443.06,
+ "text": "Mr"
+ },
+ {
+ "id": 29958,
+ "start": 13443.06,
+ "end": 13443.56,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 29959,
+ "start": 13443.56,
+ "end": 13443.74,
+ "text": "thank"
+ },
+ {
+ "id": 29960,
+ "start": 13443.74,
+ "end": 13443.84,
+ "text": "you"
+ },
+ {
+ "id": 29961,
+ "start": 13443.84,
+ "end": 13444,
+ "text": "for"
+ },
+ {
+ "id": 29962,
+ "start": 13444,
+ "end": 13444.26,
+ "text": "being"
+ },
+ {
+ "id": 29963,
+ "start": 13444.26,
+ "end": 13444.74,
+ "text": "here"
+ },
+ {
+ "id": 29964,
+ "start": 13444.74,
+ "end": 13445.1,
+ "text": "today"
+ },
+ {
+ "id": 29965,
+ "start": 13445.1,
+ "end": 13446.12,
+ "text": "you've"
+ },
+ {
+ "id": 29966,
+ "start": 13446.12,
+ "end": 13446.68,
+ "text": "talked"
+ },
+ {
+ "id": 29967,
+ "start": 13446.68,
+ "end": 13446.98,
+ "text": "about"
+ },
+ {
+ "id": 29968,
+ "start": 13446.98,
+ "end": 13447.48,
+ "text": "very"
+ },
+ {
+ "id": 29969,
+ "start": 13447.48,
+ "end": 13447.78,
+ "text": "humble"
+ },
+ {
+ "id": 29970,
+ "start": 13447.78,
+ "end": 13448.28,
+ "text": "beginnings"
+ },
+ {
+ "id": 29971,
+ "start": 13448.28,
+ "end": 13448.76,
+ "text": "and"
+ },
+ {
+ "id": 29972,
+ "start": 13448.76,
+ "end": 13449.16,
+ "text": "starting"
+ },
+ {
+ "id": 29973,
+ "start": 13449.16,
+ "end": 13449.82,
+ "text": "Facebook"
+ },
+ {
+ "id": 29974,
+ "start": 13449.82,
+ "end": 13450.18,
+ "text": "in"
+ },
+ {
+ "id": 29975,
+ "start": 13450.18,
+ "end": 13450.36,
+ "text": "your"
+ },
+ {
+ "id": 29976,
+ "start": 13450.36,
+ "end": 13450.62,
+ "text": "dorm"
+ },
+ {
+ "id": 29977,
+ "start": 13450.62,
+ "end": 13450.78,
+ "text": "room,"
+ },
+ {
+ "id": 29978,
+ "start": 13450.78,
+ "end": 13450.96,
+ "text": "which"
+ },
+ {
+ "id": 29979,
+ "start": 13450.96,
+ "end": 13451.1,
+ "text": "I"
+ },
+ {
+ "id": 29980,
+ "start": 13451.1,
+ "end": 13451.7,
+ "text": "appreciated"
+ },
+ {
+ "id": 29981,
+ "start": 13451.7,
+ "end": 13452.14,
+ "text": "that"
+ },
+ {
+ "id": 29982,
+ "start": 13452.14,
+ "end": 13452.5,
+ "text": "story."
+ },
+ {
+ "id": 29983,
+ "start": 13452.5,
+ "end": 13452.62,
+ "text": "But"
+ },
+ {
+ "id": 29984,
+ "start": 13452.62,
+ "end": 13452.94,
+ "text": "certainly"
+ },
+ {
+ "id": 29985,
+ "start": 13452.94,
+ "end": 13453.3,
+ "text": "Facebook"
+ },
+ {
+ "id": 29986,
+ "start": 13453.3,
+ "end": 13453.44,
+ "text": "has"
+ },
+ {
+ "id": 29987,
+ "start": 13453.44,
+ "end": 13453.68,
+ "text": "changed"
+ },
+ {
+ "id": 29988,
+ "start": 13453.68,
+ "end": 13453.78,
+ "text": "an"
+ },
+ {
+ "id": 29989,
+ "start": 13453.78,
+ "end": 13454.02,
+ "text": "awful"
+ },
+ {
+ "id": 29990,
+ "start": 13454.02,
+ "end": 13454.24,
+ "text": "lot"
+ },
+ {
+ "id": 29991,
+ "start": 13454.24,
+ "end": 13454.94,
+ "text": "over"
+ },
+ {
+ "id": 29992,
+ "start": 13454.94,
+ "end": 13455,
+ "text": "a"
+ },
+ {
+ "id": 29993,
+ "start": 13455,
+ "end": 13455.68,
+ "text": "relatively"
+ },
+ {
+ "id": 29994,
+ "start": 13455.68,
+ "end": 13456.06,
+ "text": "short"
+ },
+ {
+ "id": 29995,
+ "start": 13456.06,
+ "end": 13456.4,
+ "text": "period"
+ },
+ {
+ "id": 29996,
+ "start": 13456.4,
+ "end": 13456.5,
+ "text": "of"
+ },
+ {
+ "id": 29997,
+ "start": 13456.5,
+ "end": 13456.88,
+ "text": "time."
+ },
+ {
+ "id": 29998,
+ "start": 13456.88,
+ "end": 13457.58,
+ "text": "When"
+ },
+ {
+ "id": 29999,
+ "start": 13457.58,
+ "end": 13458.04,
+ "text": "Facebook"
+ },
+ {
+ "id": 30000,
+ "start": 13458.04,
+ "end": 13458.42,
+ "text": "launched"
+ },
+ {
+ "id": 30001,
+ "start": 13458.42,
+ "end": 13458.64,
+ "text": "its"
+ },
+ {
+ "id": 30002,
+ "start": 13458.64,
+ "end": 13459.68,
+ "text": "timeline"
+ },
+ {
+ "id": 30003,
+ "start": 13459.68,
+ "end": 13460.19,
+ "text": "feature"
+ },
+ {
+ "id": 30004,
+ "start": 13460.19,
+ "end": 13460.75,
+ "text": "consumers"
+ },
+ {
+ "id": 30005,
+ "start": 13460.75,
+ "end": 13461.03,
+ "text": "saw"
+ },
+ {
+ "id": 30006,
+ "start": 13461.03,
+ "end": 13461.43,
+ "text": "their"
+ },
+ {
+ "id": 30007,
+ "start": 13461.43,
+ "end": 13461.91,
+ "text": "friends"
+ },
+ {
+ "id": 30008,
+ "start": 13461.91,
+ "end": 13462.35,
+ "text": "post"
+ },
+ {
+ "id": 30009,
+ "start": 13462.35,
+ "end": 13463.45,
+ "text": "chronologically"
+ },
+ {
+ "id": 30010,
+ "start": 13463.45,
+ "end": 13463.85,
+ "text": "as"
+ },
+ {
+ "id": 30011,
+ "start": 13463.85,
+ "end": 13463.99,
+ "text": "the"
+ },
+ {
+ "id": 30012,
+ "start": 13463.99,
+ "end": 13464.41,
+ "text": "process."
+ },
+ {
+ "id": 30013,
+ "start": 13464.41,
+ "end": 13465.11,
+ "text": "The"
+ },
+ {
+ "id": 30014,
+ "start": 13465.11,
+ "end": 13465.57,
+ "text": "Facebook"
+ },
+ {
+ "id": 30015,
+ "start": 13465.57,
+ "end": 13465.93,
+ "text": "is"
+ },
+ {
+ "id": 30016,
+ "start": 13465.93,
+ "end": 13466.23,
+ "text": "since"
+ },
+ {
+ "id": 30017,
+ "start": 13466.23,
+ "end": 13466.53,
+ "text": "then"
+ },
+ {
+ "id": 30018,
+ "start": 13466.53,
+ "end": 13467.09,
+ "text": "changed"
+ },
+ {
+ "id": 30019,
+ "start": 13467.09,
+ "end": 13467.27,
+ "text": "to"
+ },
+ {
+ "id": 30020,
+ "start": 13467.27,
+ "end": 13467.47,
+ "text": "a"
+ },
+ {
+ "id": 30021,
+ "start": 13467.47,
+ "end": 13468.05,
+ "text": "timeline"
+ },
+ {
+ "id": 30022,
+ "start": 13468.05,
+ "end": 13468.49,
+ "text": "driven"
+ },
+ {
+ "id": 30023,
+ "start": 13468.49,
+ "end": 13468.73,
+ "text": "by"
+ },
+ {
+ "id": 30024,
+ "start": 13468.73,
+ "end": 13468.97,
+ "text": "some"
+ },
+ {
+ "id": 30025,
+ "start": 13468.97,
+ "end": 13469.33,
+ "text": "very"
+ },
+ {
+ "id": 30026,
+ "start": 13469.33,
+ "end": 13470.17,
+ "text": "sophisticated"
+ },
+ {
+ "id": 30027,
+ "start": 13470.17,
+ "end": 13471.11,
+ "text": "algorithms."
+ },
+ {
+ "id": 30028,
+ "start": 13471.11,
+ "end": 13471.99,
+ "text": "And"
+ },
+ {
+ "id": 30029,
+ "start": 13471.99,
+ "end": 13472.05,
+ "text": "I"
+ },
+ {
+ "id": 30030,
+ "start": 13472.05,
+ "end": 13472.23,
+ "text": "think"
+ },
+ {
+ "id": 30031,
+ "start": 13472.23,
+ "end": 13472.35,
+ "text": "it"
+ },
+ {
+ "id": 30032,
+ "start": 13472.35,
+ "end": 13472.51,
+ "text": "has"
+ },
+ {
+ "id": 30033,
+ "start": 13472.51,
+ "end": 13473.17,
+ "text": "left"
+ },
+ {
+ "id": 30034,
+ "start": 13473.17,
+ "end": 13473.63,
+ "text": "many"
+ },
+ {
+ "id": 30035,
+ "start": 13473.63,
+ "end": 13473.93,
+ "text": "people"
+ },
+ {
+ "id": 30036,
+ "start": 13473.93,
+ "end": 13474.09,
+ "text": "as"
+ },
+ {
+ "id": 30037,
+ "start": 13474.09,
+ "end": 13474.15,
+ "text": "a"
+ },
+ {
+ "id": 30038,
+ "start": 13474.15,
+ "end": 13474.45,
+ "text": "result"
+ },
+ {
+ "id": 30039,
+ "start": 13474.45,
+ "end": 13474.57,
+ "text": "of"
+ },
+ {
+ "id": 30040,
+ "start": 13474.57,
+ "end": 13474.83,
+ "text": "that"
+ },
+ {
+ "id": 30041,
+ "start": 13474.83,
+ "end": 13475.93,
+ "text": "asking."
+ },
+ {
+ "id": 30042,
+ "start": 13475.93,
+ "end": 13476.03,
+ "text": "You"
+ },
+ {
+ "id": 30043,
+ "start": 13476.03,
+ "end": 13476.17,
+ "text": "know,"
+ },
+ {
+ "id": 30044,
+ "start": 13476.17,
+ "end": 13476.63,
+ "text": "why"
+ },
+ {
+ "id": 30045,
+ "start": 13476.63,
+ "end": 13476.77,
+ "text": "am"
+ },
+ {
+ "id": 30046,
+ "start": 13476.77,
+ "end": 13476.91,
+ "text": "I"
+ },
+ {
+ "id": 30047,
+ "start": 13476.91,
+ "end": 13477.25,
+ "text": "seeing"
+ },
+ {
+ "id": 30048,
+ "start": 13477.25,
+ "end": 13478.47,
+ "text": "this"
+ },
+ {
+ "id": 30049,
+ "start": 13478.47,
+ "end": 13479.16,
+ "text": "feed?"
+ },
+ {
+ "id": 30050,
+ "start": 13479.16,
+ "end": 13479.68,
+ "text": "And"
+ },
+ {
+ "id": 30051,
+ "start": 13479.68,
+ "end": 13479.88,
+ "text": "why"
+ },
+ {
+ "id": 30052,
+ "start": 13479.88,
+ "end": 13479.98,
+ "text": "am"
+ },
+ {
+ "id": 30053,
+ "start": 13479.98,
+ "end": 13480.1,
+ "text": "I"
+ },
+ {
+ "id": 30054,
+ "start": 13480.1,
+ "end": 13480.44,
+ "text": "seeing"
+ },
+ {
+ "id": 30055,
+ "start": 13480.44,
+ "end": 13480.7,
+ "text": "this"
+ },
+ {
+ "id": 30056,
+ "start": 13480.7,
+ "end": 13481.38,
+ "text": "right"
+ },
+ {
+ "id": 30057,
+ "start": 13481.38,
+ "end": 13481.74,
+ "text": "now?"
+ },
+ {
+ "id": 30058,
+ "start": 13481.74,
+ "end": 13482.42,
+ "text": "And"
+ },
+ {
+ "id": 30059,
+ "start": 13482.42,
+ "end": 13482.56,
+ "text": "now"
+ },
+ {
+ "id": 30060,
+ "start": 13482.56,
+ "end": 13482.72,
+ "text": "in"
+ },
+ {
+ "id": 30061,
+ "start": 13482.72,
+ "end": 13482.92,
+ "text": "light"
+ },
+ {
+ "id": 30062,
+ "start": 13482.92,
+ "end": 13483.5,
+ "text": "of"
+ },
+ {
+ "id": 30063,
+ "start": 13483.5,
+ "end": 13484.14,
+ "text": "the"
+ },
+ {
+ "id": 30064,
+ "start": 13484.14,
+ "end": 13484.64,
+ "text": "Cambridge"
+ },
+ {
+ "id": 30065,
+ "start": 13484.64,
+ "end": 13485.16,
+ "text": "Analytica"
+ },
+ {
+ "id": 30066,
+ "start": 13485.16,
+ "end": 13485.8,
+ "text": "issue,"
+ },
+ {
+ "id": 30067,
+ "start": 13485.8,
+ "end": 13486.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 30068,
+ "start": 13486.34,
+ "end": 13486.68,
+ "text": "users"
+ },
+ {
+ "id": 30069,
+ "start": 13486.68,
+ "end": 13486.84,
+ "text": "are"
+ },
+ {
+ "id": 30070,
+ "start": 13486.84,
+ "end": 13487.12,
+ "text": "asking."
+ },
+ {
+ "id": 30071,
+ "start": 13487.12,
+ "end": 13487.16,
+ "text": "I"
+ },
+ {
+ "id": 30072,
+ "start": 13487.16,
+ "end": 13487.38,
+ "text": "think"
+ },
+ {
+ "id": 30073,
+ "start": 13487.38,
+ "end": 13487.54,
+ "text": "some"
+ },
+ {
+ "id": 30074,
+ "start": 13487.54,
+ "end": 13487.72,
+ "text": "new"
+ },
+ {
+ "id": 30075,
+ "start": 13487.72,
+ "end": 13488.14,
+ "text": "questions"
+ },
+ {
+ "id": 30076,
+ "start": 13488.14,
+ "end": 13488.36,
+ "text": "right"
+ },
+ {
+ "id": 30077,
+ "start": 13488.36,
+ "end": 13488.58,
+ "text": "now."
+ },
+ {
+ "id": 30078,
+ "start": 13488.58,
+ "end": 13489.24,
+ "text": "Can"
+ },
+ {
+ "id": 30079,
+ "start": 13489.24,
+ "end": 13489.4,
+ "text": "I"
+ },
+ {
+ "id": 30080,
+ "start": 13489.4,
+ "end": 13489.92,
+ "text": "believe"
+ },
+ {
+ "id": 30081,
+ "start": 13489.92,
+ "end": 13490.34,
+ "text": "what"
+ },
+ {
+ "id": 30082,
+ "start": 13490.34,
+ "end": 13490.56,
+ "text": "I'm"
+ },
+ {
+ "id": 30083,
+ "start": 13490.56,
+ "end": 13490.92,
+ "text": "seeing"
+ },
+ {
+ "id": 30084,
+ "start": 13490.92,
+ "end": 13491.78,
+ "text": "and"
+ },
+ {
+ "id": 30085,
+ "start": 13491.78,
+ "end": 13491.96,
+ "text": "who"
+ },
+ {
+ "id": 30086,
+ "start": 13491.96,
+ "end": 13492.18,
+ "text": "has"
+ },
+ {
+ "id": 30087,
+ "start": 13492.18,
+ "end": 13492.72,
+ "text": "access"
+ },
+ {
+ "id": 30088,
+ "start": 13492.72,
+ "end": 13493.24,
+ "text": "to"
+ },
+ {
+ "id": 30089,
+ "start": 13493.24,
+ "end": 13493.44,
+ "text": "this"
+ },
+ {
+ "id": 30090,
+ "start": 13493.44,
+ "end": 13494.2,
+ "text": "information"
+ },
+ {
+ "id": 30091,
+ "start": 13494.2,
+ "end": 13494.84,
+ "text": "about"
+ },
+ {
+ "id": 30092,
+ "start": 13494.84,
+ "end": 13495.04,
+ "text": "me?"
+ },
+ {
+ "id": 30093,
+ "start": 13495.04,
+ "end": 13495.52,
+ "text": "So"
+ },
+ {
+ "id": 30094,
+ "start": 13495.52,
+ "end": 13495.56,
+ "text": "I"
+ },
+ {
+ "id": 30095,
+ "start": 13495.56,
+ "end": 13495.7,
+ "text": "think"
+ },
+ {
+ "id": 30096,
+ "start": 13495.7,
+ "end": 13495.84,
+ "text": "it's"
+ },
+ {
+ "id": 30097,
+ "start": 13495.84,
+ "end": 13496.04,
+ "text": "safe"
+ },
+ {
+ "id": 30098,
+ "start": 13496.04,
+ "end": 13496.16,
+ "text": "to"
+ },
+ {
+ "id": 30099,
+ "start": 13496.16,
+ "end": 13496.44,
+ "text": "say"
+ },
+ {
+ "id": 30100,
+ "start": 13496.44,
+ "end": 13496.92,
+ "text": "very"
+ },
+ {
+ "id": 30101,
+ "start": 13496.92,
+ "end": 13497.3,
+ "text": "simply"
+ },
+ {
+ "id": 30102,
+ "start": 13497.3,
+ "end": 13497.89,
+ "text": "that"
+ },
+ {
+ "id": 30103,
+ "start": 13497.89,
+ "end": 13498.73,
+ "text": "Facebook"
+ },
+ {
+ "id": 30104,
+ "start": 13498.73,
+ "end": 13498.87,
+ "text": "is"
+ },
+ {
+ "id": 30105,
+ "start": 13498.87,
+ "end": 13499.19,
+ "text": "losing"
+ },
+ {
+ "id": 30106,
+ "start": 13499.19,
+ "end": 13499.31,
+ "text": "the"
+ },
+ {
+ "id": 30107,
+ "start": 13499.31,
+ "end": 13499.63,
+ "text": "trust"
+ },
+ {
+ "id": 30108,
+ "start": 13499.63,
+ "end": 13500.09,
+ "text": "of"
+ },
+ {
+ "id": 30109,
+ "start": 13500.09,
+ "end": 13500.21,
+ "text": "an"
+ },
+ {
+ "id": 30110,
+ "start": 13500.21,
+ "end": 13500.47,
+ "text": "awful"
+ },
+ {
+ "id": 30111,
+ "start": 13500.47,
+ "end": 13500.63,
+ "text": "lot"
+ },
+ {
+ "id": 30112,
+ "start": 13500.63,
+ "end": 13500.77,
+ "text": "of"
+ },
+ {
+ "id": 30113,
+ "start": 13500.77,
+ "end": 13501.57,
+ "text": "Americans"
+ },
+ {
+ "id": 30114,
+ "start": 13501.57,
+ "end": 13502.39,
+ "text": "as"
+ },
+ {
+ "id": 30115,
+ "start": 13502.39,
+ "end": 13502.47,
+ "text": "a"
+ },
+ {
+ "id": 30116,
+ "start": 13502.47,
+ "end": 13502.79,
+ "text": "result"
+ },
+ {
+ "id": 30117,
+ "start": 13502.79,
+ "end": 13502.93,
+ "text": "of"
+ },
+ {
+ "id": 30118,
+ "start": 13502.93,
+ "end": 13503.19,
+ "text": "this"
+ },
+ {
+ "id": 30119,
+ "start": 13503.19,
+ "end": 13503.89,
+ "text": "incident."
+ },
+ {
+ "id": 30120,
+ "start": 13503.89,
+ "end": 13504.95,
+ "text": "And"
+ },
+ {
+ "id": 30121,
+ "start": 13504.95,
+ "end": 13505.13,
+ "text": "I"
+ },
+ {
+ "id": 30122,
+ "start": 13505.13,
+ "end": 13505.57,
+ "text": "think"
+ },
+ {
+ "id": 30123,
+ "start": 13505.57,
+ "end": 13505.67,
+ "text": "an"
+ },
+ {
+ "id": 30124,
+ "start": 13505.67,
+ "end": 13506.15,
+ "text": "example"
+ },
+ {
+ "id": 30125,
+ "start": 13506.15,
+ "end": 13506.33,
+ "text": "of"
+ },
+ {
+ "id": 30126,
+ "start": 13506.33,
+ "end": 13506.49,
+ "text": "this"
+ },
+ {
+ "id": 30127,
+ "start": 13506.49,
+ "end": 13506.61,
+ "text": "is"
+ },
+ {
+ "id": 30128,
+ "start": 13506.61,
+ "end": 13506.89,
+ "text": "something"
+ },
+ {
+ "id": 30129,
+ "start": 13506.89,
+ "end": 13507.03,
+ "text": "that"
+ },
+ {
+ "id": 30130,
+ "start": 13507.03,
+ "end": 13507.19,
+ "text": "I've"
+ },
+ {
+ "id": 30131,
+ "start": 13507.19,
+ "end": 13507.35,
+ "text": "been"
+ },
+ {
+ "id": 30132,
+ "start": 13507.35,
+ "end": 13507.71,
+ "text": "hearing"
+ },
+ {
+ "id": 30133,
+ "start": 13507.71,
+ "end": 13507.95,
+ "text": "a"
+ },
+ {
+ "id": 30134,
+ "start": 13507.95,
+ "end": 13508.43,
+ "text": "lot"
+ },
+ {
+ "id": 30135,
+ "start": 13508.43,
+ "end": 13508.65,
+ "text": "from"
+ },
+ {
+ "id": 30136,
+ "start": 13508.65,
+ "end": 13508.91,
+ "text": "folks"
+ },
+ {
+ "id": 30137,
+ "start": 13508.91,
+ "end": 13509.03,
+ "text": "that"
+ },
+ {
+ "id": 30138,
+ "start": 13509.03,
+ "end": 13509.17,
+ "text": "have"
+ },
+ {
+ "id": 30139,
+ "start": 13509.17,
+ "end": 13509.33,
+ "text": "been"
+ },
+ {
+ "id": 30140,
+ "start": 13509.33,
+ "end": 13509.57,
+ "text": "coming"
+ },
+ {
+ "id": 30141,
+ "start": 13509.57,
+ "end": 13509.71,
+ "text": "up"
+ },
+ {
+ "id": 30142,
+ "start": 13509.71,
+ "end": 13509.81,
+ "text": "to"
+ },
+ {
+ "id": 30143,
+ "start": 13509.81,
+ "end": 13509.93,
+ "text": "me"
+ },
+ {
+ "id": 30144,
+ "start": 13509.93,
+ "end": 13510.21,
+ "text": "and"
+ },
+ {
+ "id": 30145,
+ "start": 13510.21,
+ "end": 13510.65,
+ "text": "talking"
+ },
+ {
+ "id": 30146,
+ "start": 13510.65,
+ "end": 13512.28,
+ "text": "about"
+ },
+ {
+ "id": 30147,
+ "start": 13512.28,
+ "end": 13513.36,
+ "text": "really"
+ },
+ {
+ "id": 30148,
+ "start": 13513.36,
+ "end": 13513.52,
+ "text": "kind"
+ },
+ {
+ "id": 30149,
+ "start": 13513.52,
+ "end": 13513.62,
+ "text": "of"
+ },
+ {
+ "id": 30150,
+ "start": 13513.62,
+ "end": 13514.44,
+ "text": "experience."
+ },
+ {
+ "id": 30151,
+ "start": 13514.44,
+ "end": 13514.74,
+ "text": "They've"
+ },
+ {
+ "id": 30152,
+ "start": 13514.74,
+ "end": 13515.02,
+ "text": "had"
+ },
+ {
+ "id": 30153,
+ "start": 13515.02,
+ "end": 13515.36,
+ "text": "where"
+ },
+ {
+ "id": 30154,
+ "start": 13515.36,
+ "end": 13515.58,
+ "text": "they're"
+ },
+ {
+ "id": 30155,
+ "start": 13515.58,
+ "end": 13515.82,
+ "text": "having"
+ },
+ {
+ "id": 30156,
+ "start": 13515.82,
+ "end": 13515.92,
+ "text": "a"
+ },
+ {
+ "id": 30157,
+ "start": 13515.92,
+ "end": 13516.7,
+ "text": "conversation"
+ },
+ {
+ "id": 30158,
+ "start": 13516.7,
+ "end": 13517.2,
+ "text": "with"
+ },
+ {
+ "id": 30159,
+ "start": 13517.2,
+ "end": 13517.58,
+ "text": "friends"
+ },
+ {
+ "id": 30160,
+ "start": 13517.58,
+ "end": 13518.26,
+ "text": "not"
+ },
+ {
+ "id": 30161,
+ "start": 13518.26,
+ "end": 13518.4,
+ "text": "on"
+ },
+ {
+ "id": 30162,
+ "start": 13518.4,
+ "end": 13518.52,
+ "text": "the"
+ },
+ {
+ "id": 30163,
+ "start": 13518.52,
+ "end": 13518.78,
+ "text": "phone,"
+ },
+ {
+ "id": 30164,
+ "start": 13518.78,
+ "end": 13518.98,
+ "text": "just"
+ },
+ {
+ "id": 30165,
+ "start": 13518.98,
+ "end": 13519.36,
+ "text": "talking,"
+ },
+ {
+ "id": 30166,
+ "start": 13519.36,
+ "end": 13520.22,
+ "text": "and"
+ },
+ {
+ "id": 30167,
+ "start": 13520.22,
+ "end": 13520.38,
+ "text": "then"
+ },
+ {
+ "id": 30168,
+ "start": 13520.38,
+ "end": 13520.56,
+ "text": "they"
+ },
+ {
+ "id": 30169,
+ "start": 13520.56,
+ "end": 13520.74,
+ "text": "see"
+ },
+ {
+ "id": 30170,
+ "start": 13520.74,
+ "end": 13521,
+ "text": "ads"
+ },
+ {
+ "id": 30171,
+ "start": 13521,
+ "end": 13521.38,
+ "text": "popping"
+ },
+ {
+ "id": 30172,
+ "start": 13521.38,
+ "end": 13521.56,
+ "text": "up"
+ },
+ {
+ "id": 30173,
+ "start": 13521.56,
+ "end": 13521.9,
+ "text": "fairly"
+ },
+ {
+ "id": 30174,
+ "start": 13521.9,
+ "end": 13522.7,
+ "text": "quickly"
+ },
+ {
+ "id": 30175,
+ "start": 13522.7,
+ "end": 13523.22,
+ "text": "on"
+ },
+ {
+ "id": 30176,
+ "start": 13523.22,
+ "end": 13523.42,
+ "text": "their"
+ },
+ {
+ "id": 30177,
+ "start": 13523.42,
+ "end": 13523.86,
+ "text": "Facebook."
+ },
+ {
+ "id": 30178,
+ "start": 13523.86,
+ "end": 13524.04,
+ "text": "So"
+ },
+ {
+ "id": 30179,
+ "start": 13524.04,
+ "end": 13524.22,
+ "text": "I've"
+ },
+ {
+ "id": 30180,
+ "start": 13524.22,
+ "end": 13524.36,
+ "text": "heard"
+ },
+ {
+ "id": 30181,
+ "start": 13524.36,
+ "end": 13524.96,
+ "text": "constituents"
+ },
+ {
+ "id": 30182,
+ "start": 13524.96,
+ "end": 13525.24,
+ "text": "here"
+ },
+ {
+ "id": 30183,
+ "start": 13525.24,
+ "end": 13525.46,
+ "text": "that"
+ },
+ {
+ "id": 30184,
+ "start": 13525.46,
+ "end": 13526.22,
+ "text": "Facebook"
+ },
+ {
+ "id": 30185,
+ "start": 13526.22,
+ "end": 13526.38,
+ "text": "is"
+ },
+ {
+ "id": 30186,
+ "start": 13526.38,
+ "end": 13526.8,
+ "text": "binding"
+ },
+ {
+ "id": 30187,
+ "start": 13526.8,
+ "end": 13527.34,
+ "text": "audio"
+ },
+ {
+ "id": 30188,
+ "start": 13527.34,
+ "end": 13527.78,
+ "text": "from"
+ },
+ {
+ "id": 30189,
+ "start": 13527.78,
+ "end": 13528.26,
+ "text": "their"
+ },
+ {
+ "id": 30190,
+ "start": 13528.26,
+ "end": 13528.62,
+ "text": "mobile"
+ },
+ {
+ "id": 30191,
+ "start": 13528.62,
+ "end": 13529.16,
+ "text": "devices"
+ },
+ {
+ "id": 30192,
+ "start": 13529.16,
+ "end": 13529.52,
+ "text": "for"
+ },
+ {
+ "id": 30193,
+ "start": 13529.52,
+ "end": 13529.64,
+ "text": "the"
+ },
+ {
+ "id": 30194,
+ "start": 13529.64,
+ "end": 13530,
+ "text": "purpose"
+ },
+ {
+ "id": 30195,
+ "start": 13530,
+ "end": 13530.42,
+ "text": "of"
+ },
+ {
+ "id": 30196,
+ "start": 13530.42,
+ "end": 13530.7,
+ "text": "ad"
+ },
+ {
+ "id": 30197,
+ "start": 13530.7,
+ "end": 13531.12,
+ "text": "targeting,"
+ },
+ {
+ "id": 30198,
+ "start": 13531.12,
+ "end": 13531.66,
+ "text": "which"
+ },
+ {
+ "id": 30199,
+ "start": 13531.66,
+ "end": 13531.74,
+ "text": "I"
+ },
+ {
+ "id": 30200,
+ "start": 13531.74,
+ "end": 13531.9,
+ "text": "think"
+ },
+ {
+ "id": 30201,
+ "start": 13531.9,
+ "end": 13532.2,
+ "text": "speaks"
+ },
+ {
+ "id": 30202,
+ "start": 13532.2,
+ "end": 13532.32,
+ "text": "to"
+ },
+ {
+ "id": 30203,
+ "start": 13532.32,
+ "end": 13532.48,
+ "text": "this"
+ },
+ {
+ "id": 30204,
+ "start": 13532.48,
+ "end": 13532.72,
+ "text": "lack"
+ },
+ {
+ "id": 30205,
+ "start": 13532.72,
+ "end": 13532.82,
+ "text": "of"
+ },
+ {
+ "id": 30206,
+ "start": 13532.82,
+ "end": 13533.08,
+ "text": "trust"
+ },
+ {
+ "id": 30207,
+ "start": 13533.08,
+ "end": 13533.22,
+ "text": "that"
+ },
+ {
+ "id": 30208,
+ "start": 13533.22,
+ "end": 13533.42,
+ "text": "we're"
+ },
+ {
+ "id": 30209,
+ "start": 13533.42,
+ "end": 13533.68,
+ "text": "saying"
+ },
+ {
+ "id": 30210,
+ "start": 13533.68,
+ "end": 13533.9,
+ "text": "here."
+ },
+ {
+ "id": 30211,
+ "start": 13533.9,
+ "end": 13534.76,
+ "text": "And"
+ },
+ {
+ "id": 30212,
+ "start": 13534.76,
+ "end": 13534.82,
+ "text": "I"
+ },
+ {
+ "id": 30213,
+ "start": 13534.82,
+ "end": 13535.12,
+ "text": "understand"
+ },
+ {
+ "id": 30214,
+ "start": 13535.12,
+ "end": 13535.34,
+ "text": "there's"
+ },
+ {
+ "id": 30215,
+ "start": 13535.34,
+ "end": 13535.48,
+ "text": "some"
+ },
+ {
+ "id": 30216,
+ "start": 13535.48,
+ "end": 13535.9,
+ "text": "technical"
+ },
+ {
+ "id": 30217,
+ "start": 13535.9,
+ "end": 13536.22,
+ "text": "issues"
+ },
+ {
+ "id": 30218,
+ "start": 13536.22,
+ "end": 13536.34,
+ "text": "and"
+ },
+ {
+ "id": 30219,
+ "start": 13536.34,
+ "end": 13536.92,
+ "text": "logistical"
+ },
+ {
+ "id": 30220,
+ "start": 13536.92,
+ "end": 13537.68,
+ "text": "issues"
+ },
+ {
+ "id": 30221,
+ "start": 13537.68,
+ "end": 13537.94,
+ "text": "that"
+ },
+ {
+ "id": 30222,
+ "start": 13537.94,
+ "end": 13538.06,
+ "text": "to"
+ },
+ {
+ "id": 30223,
+ "start": 13538.06,
+ "end": 13538.5,
+ "text": "happen."
+ },
+ {
+ "id": 30224,
+ "start": 13538.5,
+ "end": 13538.66,
+ "text": "But"
+ },
+ {
+ "id": 30225,
+ "start": 13538.66,
+ "end": 13538.82,
+ "text": "for"
+ },
+ {
+ "id": 30226,
+ "start": 13538.82,
+ "end": 13538.96,
+ "text": "the"
+ },
+ {
+ "id": 30227,
+ "start": 13538.96,
+ "end": 13539.18,
+ "text": "record,"
+ },
+ {
+ "id": 30228,
+ "start": 13539.18,
+ "end": 13539.24,
+ "text": "I"
+ },
+ {
+ "id": 30229,
+ "start": 13539.24,
+ "end": 13539.4,
+ "text": "think"
+ },
+ {
+ "id": 30230,
+ "start": 13539.4,
+ "end": 13539.54,
+ "text": "it's"
+ },
+ {
+ "id": 30231,
+ "start": 13539.54,
+ "end": 13539.78,
+ "text": "clear"
+ },
+ {
+ "id": 30232,
+ "start": 13539.78,
+ "end": 13540.02,
+ "text": "saying"
+ },
+ {
+ "id": 30233,
+ "start": 13540.02,
+ "end": 13540.16,
+ "text": "I"
+ },
+ {
+ "id": 30234,
+ "start": 13540.16,
+ "end": 13540.36,
+ "text": "hear"
+ },
+ {
+ "id": 30235,
+ "start": 13540.36,
+ "end": 13540.44,
+ "text": "it"
+ },
+ {
+ "id": 30236,
+ "start": 13540.44,
+ "end": 13540.64,
+ "text": "all"
+ },
+ {
+ "id": 30237,
+ "start": 13540.64,
+ "end": 13540.78,
+ "text": "the"
+ },
+ {
+ "id": 30238,
+ "start": 13540.78,
+ "end": 13540.96,
+ "text": "time,"
+ },
+ {
+ "id": 30239,
+ "start": 13540.96,
+ "end": 13541.34,
+ "text": "including"
+ },
+ {
+ "id": 30240,
+ "start": 13541.34,
+ "end": 13541.46,
+ "text": "from"
+ },
+ {
+ "id": 30241,
+ "start": 13541.46,
+ "end": 13541.58,
+ "text": "my"
+ },
+ {
+ "id": 30242,
+ "start": 13541.58,
+ "end": 13541.78,
+ "text": "own"
+ },
+ {
+ "id": 30243,
+ "start": 13541.78,
+ "end": 13542.22,
+ "text": "staff,"
+ },
+ {
+ "id": 30244,
+ "start": 13542.22,
+ "end": 13543.2,
+ "text": "yes"
+ },
+ {
+ "id": 30245,
+ "start": 13543.2,
+ "end": 13543.36,
+ "text": "or"
+ },
+ {
+ "id": 30246,
+ "start": 13543.36,
+ "end": 13543.6,
+ "text": "no."
+ },
+ {
+ "id": 30247,
+ "start": 13543.6,
+ "end": 13543.86,
+ "text": "Does"
+ },
+ {
+ "id": 30248,
+ "start": 13543.86,
+ "end": 13544.46,
+ "text": "Facebook"
+ },
+ {
+ "id": 30249,
+ "start": 13544.46,
+ "end": 13545.12,
+ "text": "use"
+ },
+ {
+ "id": 30250,
+ "start": 13545.12,
+ "end": 13545.94,
+ "text": "audio"
+ },
+ {
+ "id": 30251,
+ "start": 13545.94,
+ "end": 13546.9,
+ "text": "obtained"
+ },
+ {
+ "id": 30252,
+ "start": 13546.9,
+ "end": 13547.16,
+ "text": "from"
+ },
+ {
+ "id": 30253,
+ "start": 13547.16,
+ "end": 13547.48,
+ "text": "mobile"
+ },
+ {
+ "id": 30254,
+ "start": 13547.48,
+ "end": 13548,
+ "text": "devices"
+ },
+ {
+ "id": 30255,
+ "start": 13548,
+ "end": 13548.16,
+ "text": "to"
+ },
+ {
+ "id": 30256,
+ "start": 13548.16,
+ "end": 13548.52,
+ "text": "enrich"
+ },
+ {
+ "id": 30257,
+ "start": 13548.52,
+ "end": 13548.94,
+ "text": "personal"
+ },
+ {
+ "id": 30258,
+ "start": 13548.94,
+ "end": 13549.5,
+ "text": "information"
+ },
+ {
+ "id": 30259,
+ "start": 13549.5,
+ "end": 13549.74,
+ "text": "about"
+ },
+ {
+ "id": 30260,
+ "start": 13549.74,
+ "end": 13549.9,
+ "text": "its"
+ },
+ {
+ "id": 30261,
+ "start": 13549.9,
+ "end": 13553.52,
+ "text": "users?"
+ },
+ {
+ "id": 30262,
+ "start": 13553.52,
+ "end": 13554.52,
+ "text": "Senator,"
+ },
+ {
+ "id": 30263,
+ "start": 13554.52,
+ "end": 13554.82,
+ "text": "let"
+ },
+ {
+ "id": 30264,
+ "start": 13554.82,
+ "end": 13555.46,
+ "text": "me"
+ },
+ {
+ "id": 30265,
+ "start": 13555.46,
+ "end": 13555.72,
+ "text": "clear"
+ },
+ {
+ "id": 30266,
+ "start": 13555.72,
+ "end": 13555.8,
+ "text": "on"
+ },
+ {
+ "id": 30267,
+ "start": 13555.8,
+ "end": 13555.98,
+ "text": "this."
+ },
+ {
+ "id": 30268,
+ "start": 13555.98,
+ "end": 13556.74,
+ "text": "So"
+ },
+ {
+ "id": 30269,
+ "start": 13556.74,
+ "end": 13557.14,
+ "text": "you're"
+ },
+ {
+ "id": 30270,
+ "start": 13557.14,
+ "end": 13557.42,
+ "text": "talking"
+ },
+ {
+ "id": 30271,
+ "start": 13557.42,
+ "end": 13557.72,
+ "text": "about"
+ },
+ {
+ "id": 30272,
+ "start": 13557.72,
+ "end": 13558.76,
+ "text": "this"
+ },
+ {
+ "id": 30273,
+ "start": 13558.76,
+ "end": 13559.76,
+ "text": "conspiracy"
+ },
+ {
+ "id": 30274,
+ "start": 13559.76,
+ "end": 13560.04,
+ "text": "theory"
+ },
+ {
+ "id": 30275,
+ "start": 13560.04,
+ "end": 13560.2,
+ "text": "that"
+ },
+ {
+ "id": 30276,
+ "start": 13560.2,
+ "end": 13560.4,
+ "text": "gets"
+ },
+ {
+ "id": 30277,
+ "start": 13560.4,
+ "end": 13560.7,
+ "text": "passed"
+ },
+ {
+ "id": 30278,
+ "start": 13560.7,
+ "end": 13561.08,
+ "text": "around"
+ },
+ {
+ "id": 30279,
+ "start": 13561.08,
+ "end": 13561.36,
+ "text": "that."
+ },
+ {
+ "id": 30280,
+ "start": 13561.36,
+ "end": 13561.88,
+ "text": "We"
+ },
+ {
+ "id": 30281,
+ "start": 13561.88,
+ "end": 13562.3,
+ "text": "listen"
+ },
+ {
+ "id": 30282,
+ "start": 13562.3,
+ "end": 13562.44,
+ "text": "to"
+ },
+ {
+ "id": 30283,
+ "start": 13562.44,
+ "end": 13562.66,
+ "text": "what's"
+ },
+ {
+ "id": 30284,
+ "start": 13562.66,
+ "end": 13562.86,
+ "text": "going"
+ },
+ {
+ "id": 30285,
+ "start": 13562.86,
+ "end": 13562.98,
+ "text": "on"
+ },
+ {
+ "id": 30286,
+ "start": 13562.98,
+ "end": 13563.1,
+ "text": "on"
+ },
+ {
+ "id": 30287,
+ "start": 13563.1,
+ "end": 13563.26,
+ "text": "your"
+ },
+ {
+ "id": 30288,
+ "start": 13563.26,
+ "end": 13563.7,
+ "text": "microphone"
+ },
+ {
+ "id": 30289,
+ "start": 13563.7,
+ "end": 13563.8,
+ "text": "and"
+ },
+ {
+ "id": 30290,
+ "start": 13563.8,
+ "end": 13563.96,
+ "text": "use"
+ },
+ {
+ "id": 30291,
+ "start": 13563.96,
+ "end": 13564.15,
+ "text": "that"
+ },
+ {
+ "id": 30292,
+ "start": 13564.15,
+ "end": 13565.33,
+ "text": "we"
+ },
+ {
+ "id": 30293,
+ "start": 13565.33,
+ "end": 13565.51,
+ "text": "don't"
+ },
+ {
+ "id": 30294,
+ "start": 13565.51,
+ "end": 13565.63,
+ "text": "do"
+ },
+ {
+ "id": 30295,
+ "start": 13565.63,
+ "end": 13565.81,
+ "text": "that"
+ },
+ {
+ "id": 30296,
+ "start": 13565.81,
+ "end": 13566.65,
+ "text": "to"
+ },
+ {
+ "id": 30297,
+ "start": 13566.65,
+ "end": 13566.77,
+ "text": "be"
+ },
+ {
+ "id": 30298,
+ "start": 13566.77,
+ "end": 13567.09,
+ "text": "clear."
+ },
+ {
+ "id": 30299,
+ "start": 13567.09,
+ "end": 13568.27,
+ "text": "We"
+ },
+ {
+ "id": 30300,
+ "start": 13568.27,
+ "end": 13568.61,
+ "text": "do"
+ },
+ {
+ "id": 30301,
+ "start": 13568.61,
+ "end": 13568.99,
+ "text": "allow"
+ },
+ {
+ "id": 30302,
+ "start": 13568.99,
+ "end": 13569.29,
+ "text": "people"
+ },
+ {
+ "id": 30303,
+ "start": 13569.29,
+ "end": 13569.53,
+ "text": "to"
+ },
+ {
+ "id": 30304,
+ "start": 13569.53,
+ "end": 13569.79,
+ "text": "take"
+ },
+ {
+ "id": 30305,
+ "start": 13569.79,
+ "end": 13570.29,
+ "text": "videos"
+ },
+ {
+ "id": 30306,
+ "start": 13570.29,
+ "end": 13570.49,
+ "text": "on"
+ },
+ {
+ "id": 30307,
+ "start": 13570.49,
+ "end": 13571.13,
+ "text": "their"
+ },
+ {
+ "id": 30308,
+ "start": 13571.13,
+ "end": 13571.69,
+ "text": "devices"
+ },
+ {
+ "id": 30309,
+ "start": 13571.69,
+ "end": 13572.65,
+ "text": "and"
+ },
+ {
+ "id": 30310,
+ "start": 13572.65,
+ "end": 13572.85,
+ "text": "share"
+ },
+ {
+ "id": 30311,
+ "start": 13572.85,
+ "end": 13573.17,
+ "text": "those"
+ },
+ {
+ "id": 30312,
+ "start": 13573.17,
+ "end": 13573.41,
+ "text": "and"
+ },
+ {
+ "id": 30313,
+ "start": 13573.41,
+ "end": 13573.67,
+ "text": "of"
+ },
+ {
+ "id": 30314,
+ "start": 13573.67,
+ "end": 13573.87,
+ "text": "course,"
+ },
+ {
+ "id": 30315,
+ "start": 13573.87,
+ "end": 13574.29,
+ "text": "videos"
+ },
+ {
+ "id": 30316,
+ "start": 13574.29,
+ "end": 13574.53,
+ "text": "also"
+ },
+ {
+ "id": 30317,
+ "start": 13574.53,
+ "end": 13574.69,
+ "text": "have"
+ },
+ {
+ "id": 30318,
+ "start": 13574.69,
+ "end": 13575.64,
+ "text": "audio."
+ },
+ {
+ "id": 30319,
+ "start": 13575.64,
+ "end": 13576.34,
+ "text": "So"
+ },
+ {
+ "id": 30320,
+ "start": 13576.34,
+ "end": 13576.46,
+ "text": "we"
+ },
+ {
+ "id": 30321,
+ "start": 13576.46,
+ "end": 13576.58,
+ "text": "do"
+ },
+ {
+ "id": 30322,
+ "start": 13576.58,
+ "end": 13576.86,
+ "text": "while"
+ },
+ {
+ "id": 30323,
+ "start": 13576.86,
+ "end": 13577.06,
+ "text": "you're"
+ },
+ {
+ "id": 30324,
+ "start": 13577.06,
+ "end": 13577.28,
+ "text": "taking"
+ },
+ {
+ "id": 30325,
+ "start": 13577.28,
+ "end": 13577.36,
+ "text": "a"
+ },
+ {
+ "id": 30326,
+ "start": 13577.36,
+ "end": 13577.98,
+ "text": "video"
+ },
+ {
+ "id": 30327,
+ "start": 13577.98,
+ "end": 13578.94,
+ "text": "record"
+ },
+ {
+ "id": 30328,
+ "start": 13578.94,
+ "end": 13579.32,
+ "text": "that"
+ },
+ {
+ "id": 30329,
+ "start": 13579.32,
+ "end": 13579.48,
+ "text": "and"
+ },
+ {
+ "id": 30330,
+ "start": 13579.48,
+ "end": 13579.68,
+ "text": "use"
+ },
+ {
+ "id": 30331,
+ "start": 13579.68,
+ "end": 13579.84,
+ "text": "that"
+ },
+ {
+ "id": 30332,
+ "start": 13579.84,
+ "end": 13579.94,
+ "text": "to"
+ },
+ {
+ "id": 30333,
+ "start": 13579.94,
+ "end": 13580.08,
+ "text": "make"
+ },
+ {
+ "id": 30334,
+ "start": 13580.08,
+ "end": 13580.2,
+ "text": "the"
+ },
+ {
+ "id": 30335,
+ "start": 13580.2,
+ "end": 13580.5,
+ "text": "service"
+ },
+ {
+ "id": 30336,
+ "start": 13580.5,
+ "end": 13580.76,
+ "text": "better"
+ },
+ {
+ "id": 30337,
+ "start": 13580.76,
+ "end": 13580.96,
+ "text": "by"
+ },
+ {
+ "id": 30338,
+ "start": 13580.96,
+ "end": 13581.24,
+ "text": "making"
+ },
+ {
+ "id": 30339,
+ "start": 13581.24,
+ "end": 13581.38,
+ "text": "sure"
+ },
+ {
+ "id": 30340,
+ "start": 13581.38,
+ "end": 13581.52,
+ "text": "that"
+ },
+ {
+ "id": 30341,
+ "start": 13581.52,
+ "end": 13581.7,
+ "text": "your"
+ },
+ {
+ "id": 30342,
+ "start": 13581.7,
+ "end": 13582.04,
+ "text": "videos"
+ },
+ {
+ "id": 30343,
+ "start": 13582.04,
+ "end": 13582.2,
+ "text": "have"
+ },
+ {
+ "id": 30344,
+ "start": 13582.2,
+ "end": 13582.54,
+ "text": "audio"
+ },
+ {
+ "id": 30345,
+ "start": 13582.54,
+ "end": 13582.68,
+ "text": "but"
+ },
+ {
+ "id": 30346,
+ "start": 13582.68,
+ "end": 13583.38,
+ "text": "that"
+ },
+ {
+ "id": 30347,
+ "start": 13583.38,
+ "end": 13583.46,
+ "text": "I"
+ },
+ {
+ "id": 30348,
+ "start": 13583.46,
+ "end": 13583.62,
+ "text": "think"
+ },
+ {
+ "id": 30349,
+ "start": 13583.62,
+ "end": 13584.18,
+ "text": "is"
+ },
+ {
+ "id": 30350,
+ "start": 13584.18,
+ "end": 13584.38,
+ "text": "pretty"
+ },
+ {
+ "id": 30351,
+ "start": 13584.38,
+ "end": 13584.58,
+ "text": "clear."
+ },
+ {
+ "id": 30352,
+ "start": 13584.58,
+ "end": 13584.7,
+ "text": "But"
+ },
+ {
+ "id": 30353,
+ "start": 13584.7,
+ "end": 13584.74,
+ "text": "I"
+ },
+ {
+ "id": 30354,
+ "start": 13584.74,
+ "end": 13584.9,
+ "text": "just"
+ },
+ {
+ "id": 30355,
+ "start": 13584.9,
+ "end": 13585.08,
+ "text": "wanted"
+ },
+ {
+ "id": 30356,
+ "start": 13585.08,
+ "end": 13585.14,
+ "text": "to"
+ },
+ {
+ "id": 30357,
+ "start": 13585.14,
+ "end": 13585.26,
+ "text": "make"
+ },
+ {
+ "id": 30358,
+ "start": 13585.26,
+ "end": 13585.4,
+ "text": "sure"
+ },
+ {
+ "id": 30359,
+ "start": 13585.4,
+ "end": 13585.5,
+ "text": "I"
+ },
+ {
+ "id": 30360,
+ "start": 13585.5,
+ "end": 13586.06,
+ "text": "was"
+ },
+ {
+ "id": 30361,
+ "start": 13586.06,
+ "end": 13587.02,
+ "text": "exhaustive."
+ },
+ {
+ "id": 30362,
+ "start": 13587.02,
+ "end": 13587.24,
+ "text": "There"
+ },
+ {
+ "id": 30363,
+ "start": 13587.24,
+ "end": 13587.68,
+ "text": "well,"
+ },
+ {
+ "id": 30364,
+ "start": 13587.68,
+ "end": 13587.76,
+ "text": "I"
+ },
+ {
+ "id": 30365,
+ "start": 13587.76,
+ "end": 13588.16,
+ "text": "appreciate"
+ },
+ {
+ "id": 30366,
+ "start": 13588.16,
+ "end": 13588.34,
+ "text": "that."
+ },
+ {
+ "id": 30367,
+ "start": 13588.34,
+ "end": 13588.72,
+ "text": "And"
+ },
+ {
+ "id": 30368,
+ "start": 13588.72,
+ "end": 13589.4,
+ "text": "hopefully"
+ },
+ {
+ "id": 30369,
+ "start": 13589.4,
+ "end": 13589.54,
+ "text": "that"
+ },
+ {
+ "id": 30370,
+ "start": 13589.54,
+ "end": 13589.7,
+ "text": "will"
+ },
+ {
+ "id": 30371,
+ "start": 13589.7,
+ "end": 13590.02,
+ "text": "dispel"
+ },
+ {
+ "id": 30372,
+ "start": 13590.02,
+ "end": 13590.08,
+ "text": "a"
+ },
+ {
+ "id": 30373,
+ "start": 13590.08,
+ "end": 13590.26,
+ "text": "lot"
+ },
+ {
+ "id": 30374,
+ "start": 13590.26,
+ "end": 13590.34,
+ "text": "of"
+ },
+ {
+ "id": 30375,
+ "start": 13590.34,
+ "end": 13590.44,
+ "text": "what"
+ },
+ {
+ "id": 30376,
+ "start": 13590.44,
+ "end": 13590.58,
+ "text": "I've"
+ },
+ {
+ "id": 30377,
+ "start": 13590.58,
+ "end": 13590.7,
+ "text": "been"
+ },
+ {
+ "id": 30378,
+ "start": 13590.7,
+ "end": 13590.9,
+ "text": "hearing."
+ },
+ {
+ "id": 30379,
+ "start": 13590.9,
+ "end": 13591.06,
+ "text": "So"
+ },
+ {
+ "id": 30380,
+ "start": 13591.06,
+ "end": 13591.24,
+ "text": "thank"
+ },
+ {
+ "id": 30381,
+ "start": 13591.24,
+ "end": 13591.36,
+ "text": "you"
+ },
+ {
+ "id": 30382,
+ "start": 13591.36,
+ "end": 13591.48,
+ "text": "for"
+ },
+ {
+ "id": 30383,
+ "start": 13591.48,
+ "end": 13591.7,
+ "text": "saying"
+ },
+ {
+ "id": 30384,
+ "start": 13591.7,
+ "end": 13591.86,
+ "text": "that."
+ },
+ {
+ "id": 30385,
+ "start": 13591.86,
+ "end": 13592.94,
+ "text": "Certainly"
+ },
+ {
+ "id": 30386,
+ "start": 13592.94,
+ "end": 13594.26,
+ "text": "today,"
+ },
+ {
+ "id": 30387,
+ "start": 13594.26,
+ "end": 13595.3,
+ "text": "the"
+ },
+ {
+ "id": 30388,
+ "start": 13595.3,
+ "end": 13595.52,
+ "text": "era"
+ },
+ {
+ "id": 30389,
+ "start": 13595.52,
+ "end": 13595.76,
+ "text": "of"
+ },
+ {
+ "id": 30390,
+ "start": 13595.76,
+ "end": 13596.4,
+ "text": "Mega"
+ },
+ {
+ "id": 30391,
+ "start": 13596.4,
+ "end": 13596.78,
+ "text": "data"
+ },
+ {
+ "id": 30392,
+ "start": 13596.78,
+ "end": 13597.32,
+ "text": "we"
+ },
+ {
+ "id": 30393,
+ "start": 13597.32,
+ "end": 13597.5,
+ "text": "are"
+ },
+ {
+ "id": 30394,
+ "start": 13597.5,
+ "end": 13597.86,
+ "text": "finding"
+ },
+ {
+ "id": 30395,
+ "start": 13597.86,
+ "end": 13598.04,
+ "text": "that"
+ },
+ {
+ "id": 30396,
+ "start": 13598.04,
+ "end": 13598.4,
+ "text": "data"
+ },
+ {
+ "id": 30397,
+ "start": 13598.4,
+ "end": 13598.82,
+ "text": "drives"
+ },
+ {
+ "id": 30398,
+ "start": 13598.82,
+ "end": 13599.44,
+ "text": "everything,"
+ },
+ {
+ "id": 30399,
+ "start": 13599.44,
+ "end": 13600.46,
+ "text": "including"
+ },
+ {
+ "id": 30400,
+ "start": 13600.46,
+ "end": 13601.44,
+ "text": "consumer"
+ },
+ {
+ "id": 30401,
+ "start": 13601.44,
+ "end": 13601.96,
+ "text": "behavior."
+ },
+ {
+ "id": 30402,
+ "start": 13601.96,
+ "end": 13602.18,
+ "text": "So"
+ },
+ {
+ "id": 30403,
+ "start": 13602.18,
+ "end": 13602.72,
+ "text": "consumer"
+ },
+ {
+ "id": 30404,
+ "start": 13602.72,
+ "end": 13603.24,
+ "text": "information"
+ },
+ {
+ "id": 30405,
+ "start": 13603.24,
+ "end": 13603.36,
+ "text": "is"
+ },
+ {
+ "id": 30406,
+ "start": 13603.36,
+ "end": 13603.82,
+ "text": "probably"
+ },
+ {
+ "id": 30407,
+ "start": 13603.82,
+ "end": 13603.96,
+ "text": "the"
+ },
+ {
+ "id": 30408,
+ "start": 13603.96,
+ "end": 13604.16,
+ "text": "most"
+ },
+ {
+ "id": 30409,
+ "start": 13604.16,
+ "end": 13604.7,
+ "text": "valuable"
+ },
+ {
+ "id": 30410,
+ "start": 13604.7,
+ "end": 13605.7,
+ "text": "information"
+ },
+ {
+ "id": 30411,
+ "start": 13605.7,
+ "end": 13605.84,
+ "text": "you"
+ },
+ {
+ "id": 30412,
+ "start": 13605.84,
+ "end": 13606,
+ "text": "can"
+ },
+ {
+ "id": 30413,
+ "start": 13606,
+ "end": 13606.16,
+ "text": "get"
+ },
+ {
+ "id": 30414,
+ "start": 13606.16,
+ "end": 13606.28,
+ "text": "in"
+ },
+ {
+ "id": 30415,
+ "start": 13606.28,
+ "end": 13606.4,
+ "text": "the"
+ },
+ {
+ "id": 30416,
+ "start": 13606.4,
+ "end": 13606.66,
+ "text": "data"
+ },
+ {
+ "id": 30417,
+ "start": 13606.66,
+ "end": 13607.34,
+ "text": "ecosystem"
+ },
+ {
+ "id": 30418,
+ "start": 13607.34,
+ "end": 13608.16,
+ "text": "and"
+ },
+ {
+ "id": 30419,
+ "start": 13608.16,
+ "end": 13608.54,
+ "text": "curly"
+ },
+ {
+ "id": 30420,
+ "start": 13608.54,
+ "end": 13608.78,
+ "text": "folks"
+ },
+ {
+ "id": 30421,
+ "start": 13608.78,
+ "end": 13608.92,
+ "text": "as"
+ },
+ {
+ "id": 30422,
+ "start": 13608.92,
+ "end": 13609.12,
+ "text": "you"
+ },
+ {
+ "id": 30423,
+ "start": 13609.12,
+ "end": 13609.42,
+ "text": "mentioned"
+ },
+ {
+ "id": 30424,
+ "start": 13609.42,
+ "end": 13609.56,
+ "text": "in"
+ },
+ {
+ "id": 30425,
+ "start": 13609.56,
+ "end": 13609.72,
+ "text": "your"
+ },
+ {
+ "id": 30426,
+ "start": 13609.72,
+ "end": 13610.22,
+ "text": "testimony"
+ },
+ {
+ "id": 30427,
+ "start": 13610.22,
+ "end": 13610.42,
+ "text": "here,"
+ },
+ {
+ "id": 30428,
+ "start": 13610.42,
+ "end": 13610.66,
+ "text": "people"
+ },
+ {
+ "id": 30429,
+ "start": 13610.66,
+ "end": 13610.99,
+ "text": "like"
+ },
+ {
+ "id": 30430,
+ "start": 13610.99,
+ "end": 13611.27,
+ "text": "that"
+ },
+ {
+ "id": 30431,
+ "start": 13611.27,
+ "end": 13611.53,
+ "text": "they"
+ },
+ {
+ "id": 30432,
+ "start": 13611.53,
+ "end": 13611.69,
+ "text": "can"
+ },
+ {
+ "id": 30433,
+ "start": 13611.69,
+ "end": 13611.85,
+ "text": "have"
+ },
+ {
+ "id": 30434,
+ "start": 13611.85,
+ "end": 13612.27,
+ "text": "targeted"
+ },
+ {
+ "id": 30435,
+ "start": 13612.27,
+ "end": 13612.57,
+ "text": "ads"
+ },
+ {
+ "id": 30436,
+ "start": 13612.57,
+ "end": 13612.81,
+ "text": "that"
+ },
+ {
+ "id": 30437,
+ "start": 13612.81,
+ "end": 13613.05,
+ "text": "they're"
+ },
+ {
+ "id": 30438,
+ "start": 13613.05,
+ "end": 13613.19,
+ "text": "going"
+ },
+ {
+ "id": 30439,
+ "start": 13613.19,
+ "end": 13613.27,
+ "text": "to"
+ },
+ {
+ "id": 30440,
+ "start": 13613.27,
+ "end": 13613.33,
+ "text": "be"
+ },
+ {
+ "id": 30441,
+ "start": 13613.33,
+ "end": 13613.65,
+ "text": "interested"
+ },
+ {
+ "id": 30442,
+ "start": 13613.65,
+ "end": 13613.79,
+ "text": "in"
+ },
+ {
+ "id": 30443,
+ "start": 13613.79,
+ "end": 13613.97,
+ "text": "as"
+ },
+ {
+ "id": 30444,
+ "start": 13613.97,
+ "end": 13614.27,
+ "text": "opposed"
+ },
+ {
+ "id": 30445,
+ "start": 13614.27,
+ "end": 13614.37,
+ "text": "to"
+ },
+ {
+ "id": 30446,
+ "start": 13614.37,
+ "end": 13614.55,
+ "text": "being"
+ },
+ {
+ "id": 30447,
+ "start": 13614.55,
+ "end": 13615.05,
+ "text": "bombarded"
+ },
+ {
+ "id": 30448,
+ "start": 13615.05,
+ "end": 13615.19,
+ "text": "by"
+ },
+ {
+ "id": 30449,
+ "start": 13615.19,
+ "end": 13615.25,
+ "text": "a"
+ },
+ {
+ "id": 30450,
+ "start": 13615.25,
+ "end": 13615.41,
+ "text": "lot"
+ },
+ {
+ "id": 30451,
+ "start": 13615.41,
+ "end": 13615.49,
+ "text": "of"
+ },
+ {
+ "id": 30452,
+ "start": 13615.49,
+ "end": 13615.73,
+ "text": "ads"
+ },
+ {
+ "id": 30453,
+ "start": 13615.73,
+ "end": 13615.97,
+ "text": "that"
+ },
+ {
+ "id": 30454,
+ "start": 13615.97,
+ "end": 13616.29,
+ "text": "they"
+ },
+ {
+ "id": 30455,
+ "start": 13616.29,
+ "end": 13616.45,
+ "text": "don't"
+ },
+ {
+ "id": 30456,
+ "start": 13616.45,
+ "end": 13616.59,
+ "text": "have"
+ },
+ {
+ "id": 30457,
+ "start": 13616.59,
+ "end": 13616.77,
+ "text": "any"
+ },
+ {
+ "id": 30458,
+ "start": 13616.77,
+ "end": 13617.11,
+ "text": "interest"
+ },
+ {
+ "id": 30459,
+ "start": 13617.11,
+ "end": 13617.29,
+ "text": "in"
+ },
+ {
+ "id": 30460,
+ "start": 13617.29,
+ "end": 13617.97,
+ "text": "and"
+ },
+ {
+ "id": 30461,
+ "start": 13617.97,
+ "end": 13618.11,
+ "text": "that"
+ },
+ {
+ "id": 30462,
+ "start": 13618.11,
+ "end": 13618.51,
+ "text": "consumer"
+ },
+ {
+ "id": 30463,
+ "start": 13618.51,
+ "end": 13619.07,
+ "text": "information"
+ },
+ {
+ "id": 30464,
+ "start": 13619.07,
+ "end": 13619.27,
+ "text": "is"
+ },
+ {
+ "id": 30465,
+ "start": 13619.27,
+ "end": 13619.69,
+ "text": "important"
+ },
+ {
+ "id": 30466,
+ "start": 13619.69,
+ "end": 13619.81,
+ "text": "in"
+ },
+ {
+ "id": 30467,
+ "start": 13619.81,
+ "end": 13620.05,
+ "text": "order"
+ },
+ {
+ "id": 30468,
+ "start": 13620.05,
+ "end": 13620.21,
+ "text": "for"
+ },
+ {
+ "id": 30469,
+ "start": 13620.21,
+ "end": 13620.35,
+ "text": "you"
+ },
+ {
+ "id": 30470,
+ "start": 13620.35,
+ "end": 13620.47,
+ "text": "to"
+ },
+ {
+ "id": 30471,
+ "start": 13620.47,
+ "end": 13620.87,
+ "text": "tailor"
+ },
+ {
+ "id": 30472,
+ "start": 13620.87,
+ "end": 13621.52,
+ "text": "that."
+ },
+ {
+ "id": 30473,
+ "start": 13621.52,
+ "end": 13622.04,
+ "text": "But"
+ },
+ {
+ "id": 30474,
+ "start": 13622.04,
+ "end": 13622.28,
+ "text": "also"
+ },
+ {
+ "id": 30475,
+ "start": 13622.28,
+ "end": 13622.62,
+ "text": "people"
+ },
+ {
+ "id": 30476,
+ "start": 13622.62,
+ "end": 13622.78,
+ "text": "are"
+ },
+ {
+ "id": 30477,
+ "start": 13622.78,
+ "end": 13622.92,
+ "text": "now"
+ },
+ {
+ "id": 30478,
+ "start": 13622.92,
+ "end": 13623.42,
+ "text": "beginning"
+ },
+ {
+ "id": 30479,
+ "start": 13623.42,
+ "end": 13623.52,
+ "text": "to"
+ },
+ {
+ "id": 30480,
+ "start": 13623.52,
+ "end": 13623.78,
+ "text": "wonder,"
+ },
+ {
+ "id": 30481,
+ "start": 13623.78,
+ "end": 13624.32,
+ "text": "is"
+ },
+ {
+ "id": 30482,
+ "start": 13624.32,
+ "end": 13624.56,
+ "text": "there"
+ },
+ {
+ "id": 30483,
+ "start": 13624.56,
+ "end": 13624.7,
+ "text": "an"
+ },
+ {
+ "id": 30484,
+ "start": 13624.7,
+ "end": 13625.18,
+ "text": "expense"
+ },
+ {
+ "id": 30485,
+ "start": 13625.18,
+ "end": 13625.42,
+ "text": "to"
+ },
+ {
+ "id": 30486,
+ "start": 13625.42,
+ "end": 13625.76,
+ "text": "that"
+ },
+ {
+ "id": 30487,
+ "start": 13625.76,
+ "end": 13626.26,
+ "text": "when"
+ },
+ {
+ "id": 30488,
+ "start": 13626.26,
+ "end": 13626.38,
+ "text": "it"
+ },
+ {
+ "id": 30489,
+ "start": 13626.38,
+ "end": 13626.66,
+ "text": "comes"
+ },
+ {
+ "id": 30490,
+ "start": 13626.66,
+ "end": 13626.92,
+ "text": "to"
+ },
+ {
+ "id": 30491,
+ "start": 13626.92,
+ "end": 13627.56,
+ "text": "perhaps"
+ },
+ {
+ "id": 30492,
+ "start": 13627.56,
+ "end": 13628.16,
+ "text": "exposing"
+ },
+ {
+ "id": 30493,
+ "start": 13628.16,
+ "end": 13628.48,
+ "text": "them"
+ },
+ {
+ "id": 30494,
+ "start": 13628.48,
+ "end": 13628.66,
+ "text": "to"
+ },
+ {
+ "id": 30495,
+ "start": 13628.66,
+ "end": 13629.36,
+ "text": "being"
+ },
+ {
+ "id": 30496,
+ "start": 13629.36,
+ "end": 13630.16,
+ "text": "manipulated"
+ },
+ {
+ "id": 30497,
+ "start": 13630.16,
+ "end": 13630.48,
+ "text": "or"
+ },
+ {
+ "id": 30498,
+ "start": 13630.48,
+ "end": 13630.96,
+ "text": "through"
+ },
+ {
+ "id": 30499,
+ "start": 13630.96,
+ "end": 13631.86,
+ "text": "deception"
+ },
+ {
+ "id": 30500,
+ "start": 13631.86,
+ "end": 13632.56,
+ "text": "you've"
+ },
+ {
+ "id": 30501,
+ "start": 13632.56,
+ "end": 13632.74,
+ "text": "talked"
+ },
+ {
+ "id": 30502,
+ "start": 13632.74,
+ "end": 13632.92,
+ "text": "about"
+ },
+ {
+ "id": 30503,
+ "start": 13632.92,
+ "end": 13633.34,
+ "text": "artificial"
+ },
+ {
+ "id": 30504,
+ "start": 13633.34,
+ "end": 13633.86,
+ "text": "intelligence."
+ },
+ {
+ "id": 30505,
+ "start": 13633.86,
+ "end": 13633.96,
+ "text": "You"
+ },
+ {
+ "id": 30506,
+ "start": 13633.96,
+ "end": 13634.22,
+ "text": "brought"
+ },
+ {
+ "id": 30507,
+ "start": 13634.22,
+ "end": 13634.38,
+ "text": "that"
+ },
+ {
+ "id": 30508,
+ "start": 13634.38,
+ "end": 13634.58,
+ "text": "up"
+ },
+ {
+ "id": 30509,
+ "start": 13634.58,
+ "end": 13635.02,
+ "text": "many"
+ },
+ {
+ "id": 30510,
+ "start": 13635.02,
+ "end": 13635.34,
+ "text": "times"
+ },
+ {
+ "id": 30511,
+ "start": 13635.34,
+ "end": 13635.62,
+ "text": "during"
+ },
+ {
+ "id": 30512,
+ "start": 13635.62,
+ "end": 13635.8,
+ "text": "your"
+ },
+ {
+ "id": 30513,
+ "start": 13635.8,
+ "end": 13636.38,
+ "text": "testimony"
+ },
+ {
+ "id": 30514,
+ "start": 13636.38,
+ "end": 13637.26,
+ "text": "and"
+ },
+ {
+ "id": 30515,
+ "start": 13637.26,
+ "end": 13637.4,
+ "text": "I"
+ },
+ {
+ "id": 30516,
+ "start": 13637.4,
+ "end": 13637.6,
+ "text": "know"
+ },
+ {
+ "id": 30517,
+ "start": 13637.6,
+ "end": 13637.94,
+ "text": "you"
+ },
+ {
+ "id": 30518,
+ "start": 13637.94,
+ "end": 13638.18,
+ "text": "have"
+ },
+ {
+ "id": 30519,
+ "start": 13638.18,
+ "end": 13638.52,
+ "text": "employed"
+ },
+ {
+ "id": 30520,
+ "start": 13638.52,
+ "end": 13638.66,
+ "text": "some"
+ },
+ {
+ "id": 30521,
+ "start": 13638.66,
+ "end": 13638.95,
+ "text": "new"
+ },
+ {
+ "id": 30522,
+ "start": 13638.95,
+ "end": 13639.51,
+ "text": "or"
+ },
+ {
+ "id": 30523,
+ "start": 13639.51,
+ "end": 13639.65,
+ "text": "to"
+ },
+ {
+ "id": 30524,
+ "start": 13639.65,
+ "end": 13640.03,
+ "text": "target"
+ },
+ {
+ "id": 30525,
+ "start": 13640.03,
+ "end": 13640.43,
+ "text": "bots."
+ },
+ {
+ "id": 30526,
+ "start": 13640.43,
+ "end": 13640.79,
+ "text": "Bring"
+ },
+ {
+ "id": 30527,
+ "start": 13640.79,
+ "end": 13641.01,
+ "text": "down"
+ },
+ {
+ "id": 30528,
+ "start": 13641.01,
+ "end": 13641.27,
+ "text": "fake"
+ },
+ {
+ "id": 30529,
+ "start": 13641.27,
+ "end": 13641.79,
+ "text": "accounts"
+ },
+ {
+ "id": 30530,
+ "start": 13641.79,
+ "end": 13642.09,
+ "text": "deal"
+ },
+ {
+ "id": 30531,
+ "start": 13642.09,
+ "end": 13642.23,
+ "text": "with"
+ },
+ {
+ "id": 30532,
+ "start": 13642.23,
+ "end": 13642.61,
+ "text": "terrorism."
+ },
+ {
+ "id": 30533,
+ "start": 13642.61,
+ "end": 13642.81,
+ "text": "Things"
+ },
+ {
+ "id": 30534,
+ "start": 13642.81,
+ "end": 13642.93,
+ "text": "that"
+ },
+ {
+ "id": 30535,
+ "start": 13642.93,
+ "end": 13643.11,
+ "text": "you've"
+ },
+ {
+ "id": 30536,
+ "start": 13643.11,
+ "end": 13643.31,
+ "text": "talked"
+ },
+ {
+ "id": 30537,
+ "start": 13643.31,
+ "end": 13643.51,
+ "text": "about"
+ },
+ {
+ "id": 30538,
+ "start": 13643.51,
+ "end": 13643.65,
+ "text": "in"
+ },
+ {
+ "id": 30539,
+ "start": 13643.65,
+ "end": 13643.83,
+ "text": "this"
+ },
+ {
+ "id": 30540,
+ "start": 13643.83,
+ "end": 13644.19,
+ "text": "hearing."
+ },
+ {
+ "id": 30541,
+ "start": 13644.19,
+ "end": 13644.81,
+ "text": "But"
+ },
+ {
+ "id": 30542,
+ "start": 13644.81,
+ "end": 13645.01,
+ "text": "you"
+ },
+ {
+ "id": 30543,
+ "start": 13645.01,
+ "end": 13645.23,
+ "text": "also"
+ },
+ {
+ "id": 30544,
+ "start": 13645.23,
+ "end": 13645.35,
+ "text": "know"
+ },
+ {
+ "id": 30545,
+ "start": 13645.35,
+ "end": 13645.47,
+ "text": "that"
+ },
+ {
+ "id": 30546,
+ "start": 13645.47,
+ "end": 13645.87,
+ "text": "artificial"
+ },
+ {
+ "id": 30547,
+ "start": 13645.87,
+ "end": 13646.31,
+ "text": "intelligence"
+ },
+ {
+ "id": 30548,
+ "start": 13646.31,
+ "end": 13646.45,
+ "text": "is"
+ },
+ {
+ "id": 30549,
+ "start": 13646.45,
+ "end": 13646.63,
+ "text": "not"
+ },
+ {
+ "id": 30550,
+ "start": 13646.63,
+ "end": 13646.95,
+ "text": "without"
+ },
+ {
+ "id": 30551,
+ "start": 13646.95,
+ "end": 13647.13,
+ "text": "its"
+ },
+ {
+ "id": 30552,
+ "start": 13647.13,
+ "end": 13647.47,
+ "text": "risk"
+ },
+ {
+ "id": 30553,
+ "start": 13647.47,
+ "end": 13648.09,
+ "text": "and"
+ },
+ {
+ "id": 30554,
+ "start": 13648.09,
+ "end": 13648.23,
+ "text": "that"
+ },
+ {
+ "id": 30555,
+ "start": 13648.23,
+ "end": 13648.35,
+ "text": "you"
+ },
+ {
+ "id": 30556,
+ "start": 13648.35,
+ "end": 13648.47,
+ "text": "have"
+ },
+ {
+ "id": 30557,
+ "start": 13648.47,
+ "end": 13648.55,
+ "text": "to"
+ },
+ {
+ "id": 30558,
+ "start": 13648.55,
+ "end": 13648.63,
+ "text": "be"
+ },
+ {
+ "id": 30559,
+ "start": 13648.63,
+ "end": 13648.87,
+ "text": "very"
+ },
+ {
+ "id": 30560,
+ "start": 13648.87,
+ "end": 13649.59,
+ "text": "transparent"
+ },
+ {
+ "id": 30561,
+ "start": 13649.59,
+ "end": 13649.95,
+ "text": "about"
+ },
+ {
+ "id": 30562,
+ "start": 13649.95,
+ "end": 13650.15,
+ "text": "how"
+ },
+ {
+ "id": 30563,
+ "start": 13650.15,
+ "end": 13650.45,
+ "text": "those"
+ },
+ {
+ "id": 30564,
+ "start": 13650.45,
+ "end": 13651.49,
+ "text": "algorithms"
+ },
+ {
+ "id": 30565,
+ "start": 13651.49,
+ "end": 13652.03,
+ "text": "are"
+ },
+ {
+ "id": 30566,
+ "start": 13652.03,
+ "end": 13652.71,
+ "text": "constructed,"
+ },
+ {
+ "id": 30567,
+ "start": 13652.71,
+ "end": 13653.55,
+ "text": "how"
+ },
+ {
+ "id": 30568,
+ "start": 13653.55,
+ "end": 13653.63,
+ "text": "do"
+ },
+ {
+ "id": 30569,
+ "start": 13653.63,
+ "end": 13653.73,
+ "text": "you"
+ },
+ {
+ "id": 30570,
+ "start": 13653.73,
+ "end": 13653.97,
+ "text": "see"
+ },
+ {
+ "id": 30571,
+ "start": 13653.97,
+ "end": 13654.65,
+ "text": "artificial"
+ },
+ {
+ "id": 30572,
+ "start": 13654.65,
+ "end": 13655.11,
+ "text": "intelligence"
+ },
+ {
+ "id": 30573,
+ "start": 13655.11,
+ "end": 13655.29,
+ "text": "more"
+ },
+ {
+ "id": 30574,
+ "start": 13655.29,
+ "end": 13656.38,
+ "text": "specifically"
+ },
+ {
+ "id": 30575,
+ "start": 13656.38,
+ "end": 13657.08,
+ "text": "dealing"
+ },
+ {
+ "id": 30576,
+ "start": 13657.08,
+ "end": 13657.22,
+ "text": "with"
+ },
+ {
+ "id": 30577,
+ "start": 13657.22,
+ "end": 13657.3,
+ "text": "the"
+ },
+ {
+ "id": 30578,
+ "start": 13657.3,
+ "end": 13657.88,
+ "text": "ecosystem"
+ },
+ {
+ "id": 30579,
+ "start": 13657.88,
+ "end": 13658,
+ "text": "by"
+ },
+ {
+ "id": 30580,
+ "start": 13658,
+ "end": 13658.32,
+ "text": "helping"
+ },
+ {
+ "id": 30581,
+ "start": 13658.32,
+ "end": 13658.52,
+ "text": "to"
+ },
+ {
+ "id": 30582,
+ "start": 13658.52,
+ "end": 13658.66,
+ "text": "get"
+ },
+ {
+ "id": 30583,
+ "start": 13658.66,
+ "end": 13659.14,
+ "text": "consumer"
+ },
+ {
+ "id": 30584,
+ "start": 13659.14,
+ "end": 13659.7,
+ "text": "insights"
+ },
+ {
+ "id": 30585,
+ "start": 13659.7,
+ "end": 13660.38,
+ "text": "but"
+ },
+ {
+ "id": 30586,
+ "start": 13660.38,
+ "end": 13660.72,
+ "text": "also"
+ },
+ {
+ "id": 30587,
+ "start": 13660.72,
+ "end": 13661.22,
+ "text": "keeping"
+ },
+ {
+ "id": 30588,
+ "start": 13661.22,
+ "end": 13661.96,
+ "text": "consumer"
+ },
+ {
+ "id": 30589,
+ "start": 13661.96,
+ "end": 13662.74,
+ "text": "privacy"
+ },
+ {
+ "id": 30590,
+ "start": 13662.74,
+ "end": 13664.34,
+ "text": "safe,"
+ },
+ {
+ "id": 30591,
+ "start": 13664.34,
+ "end": 13665.32,
+ "text": "Senator."
+ },
+ {
+ "id": 30592,
+ "start": 13665.32,
+ "end": 13665.38,
+ "text": "I"
+ },
+ {
+ "id": 30593,
+ "start": 13665.38,
+ "end": 13665.62,
+ "text": "think"
+ },
+ {
+ "id": 30594,
+ "start": 13665.62,
+ "end": 13666.54,
+ "text": "the"
+ },
+ {
+ "id": 30595,
+ "start": 13666.54,
+ "end": 13666.9,
+ "text": "core"
+ },
+ {
+ "id": 30596,
+ "start": 13666.9,
+ "end": 13667.3,
+ "text": "question"
+ },
+ {
+ "id": 30597,
+ "start": 13667.3,
+ "end": 13667.54,
+ "text": "you're"
+ },
+ {
+ "id": 30598,
+ "start": 13667.54,
+ "end": 13667.78,
+ "text": "asking"
+ },
+ {
+ "id": 30599,
+ "start": 13667.78,
+ "end": 13668.04,
+ "text": "about"
+ },
+ {
+ "id": 30600,
+ "start": 13668.04,
+ "end": 13668.56,
+ "text": "AI,"
+ },
+ {
+ "id": 30601,
+ "start": 13668.56,
+ "end": 13669.46,
+ "text": "transparency"
+ },
+ {
+ "id": 30602,
+ "start": 13669.46,
+ "end": 13670.2,
+ "text": "is"
+ },
+ {
+ "id": 30603,
+ "start": 13670.2,
+ "end": 13670.28,
+ "text": "a"
+ },
+ {
+ "id": 30604,
+ "start": 13670.28,
+ "end": 13670.66,
+ "text": "really"
+ },
+ {
+ "id": 30605,
+ "start": 13670.66,
+ "end": 13671.08,
+ "text": "important"
+ },
+ {
+ "id": 30606,
+ "start": 13671.08,
+ "end": 13671.34,
+ "text": "one"
+ },
+ {
+ "id": 30607,
+ "start": 13671.34,
+ "end": 13671.98,
+ "text": "that"
+ },
+ {
+ "id": 30608,
+ "start": 13671.98,
+ "end": 13672.42,
+ "text": "people"
+ },
+ {
+ "id": 30609,
+ "start": 13672.42,
+ "end": 13672.58,
+ "text": "are"
+ },
+ {
+ "id": 30610,
+ "start": 13672.58,
+ "end": 13672.8,
+ "text": "just"
+ },
+ {
+ "id": 30611,
+ "start": 13672.8,
+ "end": 13673.24,
+ "text": "starting"
+ },
+ {
+ "id": 30612,
+ "start": 13673.24,
+ "end": 13673.4,
+ "text": "to"
+ },
+ {
+ "id": 30613,
+ "start": 13673.4,
+ "end": 13673.94,
+ "text": "very"
+ },
+ {
+ "id": 30614,
+ "start": 13673.94,
+ "end": 13674.35,
+ "text": "seriously"
+ },
+ {
+ "id": 30615,
+ "start": 13674.35,
+ "end": 13674.87,
+ "text": "study"
+ },
+ {
+ "id": 30616,
+ "start": 13674.87,
+ "end": 13674.97,
+ "text": "and"
+ },
+ {
+ "id": 30617,
+ "start": 13674.97,
+ "end": 13675.15,
+ "text": "that's"
+ },
+ {
+ "id": 30618,
+ "start": 13675.15,
+ "end": 13675.51,
+ "text": "ramping"
+ },
+ {
+ "id": 30619,
+ "start": 13675.51,
+ "end": 13675.69,
+ "text": "up"
+ },
+ {
+ "id": 30620,
+ "start": 13675.69,
+ "end": 13675.89,
+ "text": "a"
+ },
+ {
+ "id": 30621,
+ "start": 13675.89,
+ "end": 13676.17,
+ "text": "lot"
+ },
+ {
+ "id": 30622,
+ "start": 13676.17,
+ "end": 13676.53,
+ "text": "and"
+ },
+ {
+ "id": 30623,
+ "start": 13676.53,
+ "end": 13676.59,
+ "text": "I"
+ },
+ {
+ "id": 30624,
+ "start": 13676.59,
+ "end": 13676.77,
+ "text": "think"
+ },
+ {
+ "id": 30625,
+ "start": 13676.77,
+ "end": 13676.91,
+ "text": "this"
+ },
+ {
+ "id": 30626,
+ "start": 13676.91,
+ "end": 13676.99,
+ "text": "is"
+ },
+ {
+ "id": 30627,
+ "start": 13676.99,
+ "end": 13677.15,
+ "text": "going"
+ },
+ {
+ "id": 30628,
+ "start": 13677.15,
+ "end": 13677.21,
+ "text": "to"
+ },
+ {
+ "id": 30629,
+ "start": 13677.21,
+ "end": 13677.27,
+ "text": "be"
+ },
+ {
+ "id": 30630,
+ "start": 13677.27,
+ "end": 13677.33,
+ "text": "a"
+ },
+ {
+ "id": 30631,
+ "start": 13677.33,
+ "end": 13677.63,
+ "text": "very"
+ },
+ {
+ "id": 30632,
+ "start": 13677.63,
+ "end": 13678.03,
+ "text": "central"
+ },
+ {
+ "id": 30633,
+ "start": 13678.03,
+ "end": 13678.41,
+ "text": "question"
+ },
+ {
+ "id": 30634,
+ "start": 13678.41,
+ "end": 13678.75,
+ "text": "for"
+ },
+ {
+ "id": 30635,
+ "start": 13678.75,
+ "end": 13679.15,
+ "text": "how"
+ },
+ {
+ "id": 30636,
+ "start": 13679.15,
+ "end": 13679.29,
+ "text": "we"
+ },
+ {
+ "id": 30637,
+ "start": 13679.29,
+ "end": 13679.47,
+ "text": "think"
+ },
+ {
+ "id": 30638,
+ "start": 13679.47,
+ "end": 13679.65,
+ "text": "about"
+ },
+ {
+ "id": 30639,
+ "start": 13679.65,
+ "end": 13679.91,
+ "text": "AI"
+ },
+ {
+ "id": 30640,
+ "start": 13679.91,
+ "end": 13680.37,
+ "text": "systems"
+ },
+ {
+ "id": 30641,
+ "start": 13680.37,
+ "end": 13680.59,
+ "text": "over"
+ },
+ {
+ "id": 30642,
+ "start": 13680.59,
+ "end": 13680.71,
+ "text": "the"
+ },
+ {
+ "id": 30643,
+ "start": 13680.71,
+ "end": 13680.89,
+ "text": "next"
+ },
+ {
+ "id": 30644,
+ "start": 13680.89,
+ "end": 13681.29,
+ "text": "decade"
+ },
+ {
+ "id": 30645,
+ "start": 13681.29,
+ "end": 13681.43,
+ "text": "and"
+ },
+ {
+ "id": 30646,
+ "start": 13681.43,
+ "end": 13681.83,
+ "text": "beyond"
+ },
+ {
+ "id": 30647,
+ "start": 13681.83,
+ "end": 13682.59,
+ "text": "right"
+ },
+ {
+ "id": 30648,
+ "start": 13682.59,
+ "end": 13682.73,
+ "text": "now."
+ },
+ {
+ "id": 30649,
+ "start": 13682.73,
+ "end": 13682.81,
+ "text": "A"
+ },
+ {
+ "id": 30650,
+ "start": 13682.81,
+ "end": 13682.97,
+ "text": "lot"
+ },
+ {
+ "id": 30651,
+ "start": 13682.97,
+ "end": 13683.07,
+ "text": "of"
+ },
+ {
+ "id": 30652,
+ "start": 13683.07,
+ "end": 13683.21,
+ "text": "our"
+ },
+ {
+ "id": 30653,
+ "start": 13683.21,
+ "end": 13683.55,
+ "text": "AI"
+ },
+ {
+ "id": 30654,
+ "start": 13683.55,
+ "end": 13684.62,
+ "text": "systems"
+ },
+ {
+ "id": 30655,
+ "start": 13684.62,
+ "end": 13685.44,
+ "text": "make"
+ },
+ {
+ "id": 30656,
+ "start": 13685.44,
+ "end": 13685.94,
+ "text": "decisions"
+ },
+ {
+ "id": 30657,
+ "start": 13685.94,
+ "end": 13686.06,
+ "text": "in"
+ },
+ {
+ "id": 30658,
+ "start": 13686.06,
+ "end": 13686.42,
+ "text": "ways"
+ },
+ {
+ "id": 30659,
+ "start": 13686.42,
+ "end": 13686.8,
+ "text": "that"
+ },
+ {
+ "id": 30660,
+ "start": 13686.8,
+ "end": 13687.94,
+ "text": "people"
+ },
+ {
+ "id": 30661,
+ "start": 13687.94,
+ "end": 13688.24,
+ "text": "don't"
+ },
+ {
+ "id": 30662,
+ "start": 13688.24,
+ "end": 13688.48,
+ "text": "really"
+ },
+ {
+ "id": 30663,
+ "start": 13688.48,
+ "end": 13689.04,
+ "text": "understand"
+ },
+ {
+ "id": 30664,
+ "start": 13689.04,
+ "end": 13689.42,
+ "text": "it."
+ },
+ {
+ "id": 30665,
+ "start": 13689.42,
+ "end": 13689.64,
+ "text": "And"
+ },
+ {
+ "id": 30666,
+ "start": 13689.64,
+ "end": 13690.52,
+ "text": "I"
+ },
+ {
+ "id": 30667,
+ "start": 13690.52,
+ "end": 13690.72,
+ "text": "don't"
+ },
+ {
+ "id": 30668,
+ "start": 13690.72,
+ "end": 13691.06,
+ "text": "think"
+ },
+ {
+ "id": 30669,
+ "start": 13691.06,
+ "end": 13691.46,
+ "text": "that"
+ },
+ {
+ "id": 30670,
+ "start": 13691.46,
+ "end": 13692.18,
+ "text": "in"
+ },
+ {
+ "id": 30671,
+ "start": 13692.18,
+ "end": 13692.4,
+ "text": "10"
+ },
+ {
+ "id": 30672,
+ "start": 13692.4,
+ "end": 13692.54,
+ "text": "or"
+ },
+ {
+ "id": 30673,
+ "start": 13692.54,
+ "end": 13692.76,
+ "text": "20"
+ },
+ {
+ "id": 30674,
+ "start": 13692.76,
+ "end": 13693.04,
+ "text": "years"
+ },
+ {
+ "id": 30675,
+ "start": 13693.04,
+ "end": 13693.16,
+ "text": "in"
+ },
+ {
+ "id": 30676,
+ "start": 13693.16,
+ "end": 13693.28,
+ "text": "the"
+ },
+ {
+ "id": 30677,
+ "start": 13693.28,
+ "end": 13693.56,
+ "text": "future"
+ },
+ {
+ "id": 30678,
+ "start": 13693.56,
+ "end": 13693.7,
+ "text": "that"
+ },
+ {
+ "id": 30679,
+ "start": 13693.7,
+ "end": 13693.76,
+ "text": "we"
+ },
+ {
+ "id": 30680,
+ "start": 13693.76,
+ "end": 13693.96,
+ "text": "all"
+ },
+ {
+ "id": 30681,
+ "start": 13693.96,
+ "end": 13694.1,
+ "text": "want"
+ },
+ {
+ "id": 30682,
+ "start": 13694.1,
+ "end": 13694.18,
+ "text": "to"
+ },
+ {
+ "id": 30683,
+ "start": 13694.18,
+ "end": 13694.5,
+ "text": "build,"
+ },
+ {
+ "id": 30684,
+ "start": 13694.5,
+ "end": 13695.42,
+ "text": "we"
+ },
+ {
+ "id": 30685,
+ "start": 13695.42,
+ "end": 13695.58,
+ "text": "want"
+ },
+ {
+ "id": 30686,
+ "start": 13695.58,
+ "end": 13695.66,
+ "text": "to"
+ },
+ {
+ "id": 30687,
+ "start": 13695.66,
+ "end": 13695.78,
+ "text": "end"
+ },
+ {
+ "id": 30688,
+ "start": 13695.78,
+ "end": 13695.9,
+ "text": "up"
+ },
+ {
+ "id": 30689,
+ "start": 13695.9,
+ "end": 13696.08,
+ "text": "with"
+ },
+ {
+ "id": 30690,
+ "start": 13696.08,
+ "end": 13696.54,
+ "text": "systems"
+ },
+ {
+ "id": 30691,
+ "start": 13696.54,
+ "end": 13696.76,
+ "text": "that"
+ },
+ {
+ "id": 30692,
+ "start": 13696.76,
+ "end": 13697.04,
+ "text": "people"
+ },
+ {
+ "id": 30693,
+ "start": 13697.04,
+ "end": 13697.26,
+ "text": "don't"
+ },
+ {
+ "id": 30694,
+ "start": 13697.26,
+ "end": 13697.74,
+ "text": "understand"
+ },
+ {
+ "id": 30695,
+ "start": 13697.74,
+ "end": 13697.88,
+ "text": "how"
+ },
+ {
+ "id": 30696,
+ "start": 13697.88,
+ "end": 13698.12,
+ "text": "they're"
+ },
+ {
+ "id": 30697,
+ "start": 13698.12,
+ "end": 13698.36,
+ "text": "making"
+ },
+ {
+ "id": 30698,
+ "start": 13698.36,
+ "end": 13698.8,
+ "text": "decisions."
+ },
+ {
+ "id": 30699,
+ "start": 13698.8,
+ "end": 13699.92,
+ "text": "So"
+ },
+ {
+ "id": 30700,
+ "start": 13699.92,
+ "end": 13701.34,
+ "text": "having"
+ },
+ {
+ "id": 30701,
+ "start": 13701.34,
+ "end": 13701.9,
+ "text": "doing"
+ },
+ {
+ "id": 30702,
+ "start": 13701.9,
+ "end": 13702.02,
+ "text": "the"
+ },
+ {
+ "id": 30703,
+ "start": 13702.02,
+ "end": 13702.44,
+ "text": "research"
+ },
+ {
+ "id": 30704,
+ "start": 13702.44,
+ "end": 13702.86,
+ "text": "now"
+ },
+ {
+ "id": 30705,
+ "start": 13702.86,
+ "end": 13703.84,
+ "text": "to"
+ },
+ {
+ "id": 30706,
+ "start": 13703.84,
+ "end": 13704.02,
+ "text": "make"
+ },
+ {
+ "id": 30707,
+ "start": 13704.02,
+ "end": 13704.18,
+ "text": "sure"
+ },
+ {
+ "id": 30708,
+ "start": 13704.18,
+ "end": 13704.38,
+ "text": "that"
+ },
+ {
+ "id": 30709,
+ "start": 13704.38,
+ "end": 13705.26,
+ "text": "these"
+ },
+ {
+ "id": 30710,
+ "start": 13705.26,
+ "end": 13705.72,
+ "text": "systems"
+ },
+ {
+ "id": 30711,
+ "start": 13705.72,
+ "end": 13706.44,
+ "text": "can"
+ },
+ {
+ "id": 30712,
+ "start": 13706.44,
+ "end": 13706.62,
+ "text": "have"
+ },
+ {
+ "id": 30713,
+ "start": 13706.62,
+ "end": 13706.8,
+ "text": "those"
+ },
+ {
+ "id": 30714,
+ "start": 13706.8,
+ "end": 13707.36,
+ "text": "principles"
+ },
+ {
+ "id": 30715,
+ "start": 13707.36,
+ "end": 13707.52,
+ "text": "as"
+ },
+ {
+ "id": 30716,
+ "start": 13707.52,
+ "end": 13707.74,
+ "text": "we're"
+ },
+ {
+ "id": 30717,
+ "start": 13707.74,
+ "end": 13708.12,
+ "text": "developing"
+ },
+ {
+ "id": 30718,
+ "start": 13708.12,
+ "end": 13708.32,
+ "text": "them."
+ },
+ {
+ "id": 30719,
+ "start": 13708.32,
+ "end": 13708.64,
+ "text": "I"
+ },
+ {
+ "id": 30720,
+ "start": 13708.64,
+ "end": 13708.82,
+ "text": "think"
+ },
+ {
+ "id": 30721,
+ "start": 13708.82,
+ "end": 13708.96,
+ "text": "it's"
+ },
+ {
+ "id": 30722,
+ "start": 13708.96,
+ "end": 13709.3,
+ "text": "certainly"
+ },
+ {
+ "id": 30723,
+ "start": 13709.3,
+ "end": 13709.76,
+ "text": "an"
+ },
+ {
+ "id": 30724,
+ "start": 13709.76,
+ "end": 13710.2,
+ "text": "extremely"
+ },
+ {
+ "id": 30725,
+ "start": 13710.2,
+ "end": 13710.54,
+ "text": "important"
+ },
+ {
+ "id": 30726,
+ "start": 13710.54,
+ "end": 13710.74,
+ "text": "thing."
+ },
+ {
+ "id": 30727,
+ "start": 13710.74,
+ "end": 13711.42,
+ "text": "Well,"
+ },
+ {
+ "id": 30728,
+ "start": 13711.42,
+ "end": 13711.5,
+ "text": "you"
+ },
+ {
+ "id": 30729,
+ "start": 13711.5,
+ "end": 13711.72,
+ "text": "bring"
+ },
+ {
+ "id": 30730,
+ "start": 13711.72,
+ "end": 13711.8,
+ "text": "up"
+ },
+ {
+ "id": 30731,
+ "start": 13711.8,
+ "end": 13712.16,
+ "text": "the"
+ },
+ {
+ "id": 30732,
+ "start": 13712.16,
+ "end": 13712.64,
+ "text": "principles"
+ },
+ {
+ "id": 30733,
+ "start": 13712.64,
+ "end": 13713.08,
+ "text": "because"
+ },
+ {
+ "id": 30734,
+ "start": 13713.08,
+ "end": 13713.48,
+ "text": "as"
+ },
+ {
+ "id": 30735,
+ "start": 13713.48,
+ "end": 13714.02,
+ "text": "you're"
+ },
+ {
+ "id": 30736,
+ "start": 13714.02,
+ "end": 13714.22,
+ "text": "well"
+ },
+ {
+ "id": 30737,
+ "start": 13714.22,
+ "end": 13714.5,
+ "text": "aware"
+ },
+ {
+ "id": 30738,
+ "start": 13714.5,
+ "end": 13715.36,
+ "text": "AI"
+ },
+ {
+ "id": 30739,
+ "start": 13715.36,
+ "end": 13715.76,
+ "text": "systems"
+ },
+ {
+ "id": 30740,
+ "start": 13715.76,
+ "end": 13716.16,
+ "text": "especially"
+ },
+ {
+ "id": 30741,
+ "start": 13716.16,
+ "end": 13716.32,
+ "text": "in"
+ },
+ {
+ "id": 30742,
+ "start": 13716.32,
+ "end": 13716.54,
+ "text": "very"
+ },
+ {
+ "id": 30743,
+ "start": 13716.54,
+ "end": 13717.4,
+ "text": "complex"
+ },
+ {
+ "id": 30744,
+ "start": 13717.4,
+ "end": 13717.78,
+ "text": "environments."
+ },
+ {
+ "id": 30745,
+ "start": 13717.78,
+ "end": 13717.94,
+ "text": "When"
+ },
+ {
+ "id": 30746,
+ "start": 13717.94,
+ "end": 13718.04,
+ "text": "you"
+ },
+ {
+ "id": 30747,
+ "start": 13718.04,
+ "end": 13718.18,
+ "text": "have"
+ },
+ {
+ "id": 30748,
+ "start": 13718.18,
+ "end": 13718.5,
+ "text": "machine"
+ },
+ {
+ "id": 30749,
+ "start": 13718.5,
+ "end": 13718.86,
+ "text": "learning"
+ },
+ {
+ "id": 30750,
+ "start": 13718.86,
+ "end": 13719.62,
+ "text": "it's"
+ },
+ {
+ "id": 30751,
+ "start": 13719.62,
+ "end": 13719.96,
+ "text": "sometimes"
+ },
+ {
+ "id": 30752,
+ "start": 13719.96,
+ "end": 13720.16,
+ "text": "very"
+ },
+ {
+ "id": 30753,
+ "start": 13720.16,
+ "end": 13720.54,
+ "text": "difficult"
+ },
+ {
+ "id": 30754,
+ "start": 13720.54,
+ "end": 13720.68,
+ "text": "to"
+ },
+ {
+ "id": 30755,
+ "start": 13720.68,
+ "end": 13721.18,
+ "text": "understand."
+ },
+ {
+ "id": 30756,
+ "start": 13721.18,
+ "end": 13721.32,
+ "text": "As"
+ },
+ {
+ "id": 30757,
+ "start": 13721.32,
+ "end": 13721.46,
+ "text": "you"
+ },
+ {
+ "id": 30758,
+ "start": 13721.46,
+ "end": 13721.78,
+ "text": "mentioned"
+ },
+ {
+ "id": 30759,
+ "start": 13721.78,
+ "end": 13722.3,
+ "text": "exactly"
+ },
+ {
+ "id": 30760,
+ "start": 13722.3,
+ "end": 13722.48,
+ "text": "how"
+ },
+ {
+ "id": 30761,
+ "start": 13722.48,
+ "end": 13722.68,
+ "text": "those"
+ },
+ {
+ "id": 30762,
+ "start": 13722.68,
+ "end": 13723.12,
+ "text": "decisions"
+ },
+ {
+ "id": 30763,
+ "start": 13723.12,
+ "end": 13723.32,
+ "text": "were"
+ },
+ {
+ "id": 30764,
+ "start": 13723.32,
+ "end": 13723.72,
+ "text": "arrived"
+ },
+ {
+ "id": 30765,
+ "start": 13723.72,
+ "end": 13723.84,
+ "text": "at"
+ },
+ {
+ "id": 30766,
+ "start": 13723.84,
+ "end": 13724.52,
+ "text": "there's."
+ },
+ {
+ "id": 30767,
+ "start": 13724.52,
+ "end": 13725.08,
+ "text": "Examples"
+ },
+ {
+ "id": 30768,
+ "start": 13725.08,
+ "end": 13725.22,
+ "text": "of"
+ },
+ {
+ "id": 30769,
+ "start": 13725.22,
+ "end": 13725.4,
+ "text": "how"
+ },
+ {
+ "id": 30770,
+ "start": 13725.4,
+ "end": 13725.9,
+ "text": "decisions"
+ },
+ {
+ "id": 30771,
+ "start": 13725.9,
+ "end": 13726.14,
+ "text": "are"
+ },
+ {
+ "id": 30772,
+ "start": 13726.14,
+ "end": 13726.32,
+ "text": "made"
+ },
+ {
+ "id": 30773,
+ "start": 13726.32,
+ "end": 13726.44,
+ "text": "in"
+ },
+ {
+ "id": 30774,
+ "start": 13726.44,
+ "end": 13726.54,
+ "text": "a"
+ },
+ {
+ "id": 30775,
+ "start": 13726.54,
+ "end": 13727.18,
+ "text": "discriminatory"
+ },
+ {
+ "id": 30776,
+ "start": 13727.18,
+ "end": 13727.56,
+ "text": "basis?"
+ },
+ {
+ "id": 30777,
+ "start": 13727.56,
+ "end": 13727.7,
+ "text": "And"
+ },
+ {
+ "id": 30778,
+ "start": 13727.7,
+ "end": 13728.06,
+ "text": "it"
+ },
+ {
+ "id": 30779,
+ "start": 13728.06,
+ "end": 13728.24,
+ "text": "can"
+ },
+ {
+ "id": 30780,
+ "start": 13728.24,
+ "end": 13728.5,
+ "text": "can"
+ },
+ {
+ "id": 30781,
+ "start": 13728.5,
+ "end": 13728.78,
+ "text": "pound"
+ },
+ {
+ "id": 30782,
+ "start": 13728.78,
+ "end": 13729.08,
+ "text": "pound"
+ },
+ {
+ "id": 30783,
+ "start": 13729.08,
+ "end": 13729.34,
+ "text": "if"
+ },
+ {
+ "id": 30784,
+ "start": 13729.34,
+ "end": 13729.64,
+ "text": "you're"
+ },
+ {
+ "id": 30785,
+ "start": 13729.64,
+ "end": 13729.82,
+ "text": "not"
+ },
+ {
+ "id": 30786,
+ "start": 13729.82,
+ "end": 13730.08,
+ "text": "very"
+ },
+ {
+ "id": 30787,
+ "start": 13730.08,
+ "end": 13730.46,
+ "text": "careful"
+ },
+ {
+ "id": 30788,
+ "start": 13730.46,
+ "end": 13730.74,
+ "text": "about"
+ },
+ {
+ "id": 30789,
+ "start": 13730.74,
+ "end": 13731.28,
+ "text": "how"
+ },
+ {
+ "id": 30790,
+ "start": 13731.28,
+ "end": 13731.48,
+ "text": "that"
+ },
+ {
+ "id": 30791,
+ "start": 13731.48,
+ "end": 13733.46,
+ "text": "occurs"
+ },
+ {
+ "id": 30792,
+ "start": 13733.46,
+ "end": 13734.04,
+ "text": "is"
+ },
+ {
+ "id": 30793,
+ "start": 13734.04,
+ "end": 13734.2,
+ "text": "your"
+ },
+ {
+ "id": 30794,
+ "start": 13734.2,
+ "end": 13734.5,
+ "text": "company."
+ },
+ {
+ "id": 30795,
+ "start": 13734.5,
+ "end": 13734.66,
+ "text": "You"
+ },
+ {
+ "id": 30796,
+ "start": 13734.66,
+ "end": 13734.9,
+ "text": "mentioned"
+ },
+ {
+ "id": 30797,
+ "start": 13734.9,
+ "end": 13735.22,
+ "text": "principles"
+ },
+ {
+ "id": 30798,
+ "start": 13735.22,
+ "end": 13735.36,
+ "text": "is"
+ },
+ {
+ "id": 30799,
+ "start": 13735.36,
+ "end": 13735.5,
+ "text": "your"
+ },
+ {
+ "id": 30800,
+ "start": 13735.5,
+ "end": 13735.86,
+ "text": "company"
+ },
+ {
+ "id": 30801,
+ "start": 13735.86,
+ "end": 13736.32,
+ "text": "developing"
+ },
+ {
+ "id": 30802,
+ "start": 13736.32,
+ "end": 13736.38,
+ "text": "a"
+ },
+ {
+ "id": 30803,
+ "start": 13736.38,
+ "end": 13736.58,
+ "text": "set"
+ },
+ {
+ "id": 30804,
+ "start": 13736.58,
+ "end": 13736.66,
+ "text": "of"
+ },
+ {
+ "id": 30805,
+ "start": 13736.66,
+ "end": 13737.14,
+ "text": "principles"
+ },
+ {
+ "id": 30806,
+ "start": 13737.14,
+ "end": 13737.36,
+ "text": "that"
+ },
+ {
+ "id": 30807,
+ "start": 13737.36,
+ "end": 13737.5,
+ "text": "are"
+ },
+ {
+ "id": 30808,
+ "start": 13737.5,
+ "end": 13737.66,
+ "text": "going"
+ },
+ {
+ "id": 30809,
+ "start": 13737.66,
+ "end": 13737.74,
+ "text": "to"
+ },
+ {
+ "id": 30810,
+ "start": 13737.74,
+ "end": 13738.08,
+ "text": "guide"
+ },
+ {
+ "id": 30811,
+ "start": 13738.08,
+ "end": 13738.34,
+ "text": "that"
+ },
+ {
+ "id": 30812,
+ "start": 13738.34,
+ "end": 13739.02,
+ "text": "development?"
+ },
+ {
+ "id": 30813,
+ "start": 13739.02,
+ "end": 13739.68,
+ "text": "And"
+ },
+ {
+ "id": 30814,
+ "start": 13739.68,
+ "end": 13739.86,
+ "text": "would"
+ },
+ {
+ "id": 30815,
+ "start": 13739.86,
+ "end": 13740,
+ "text": "you"
+ },
+ {
+ "id": 30816,
+ "start": 13740,
+ "end": 13740.38,
+ "text": "provide"
+ },
+ {
+ "id": 30817,
+ "start": 13740.38,
+ "end": 13740.94,
+ "text": "details"
+ },
+ {
+ "id": 30818,
+ "start": 13740.94,
+ "end": 13741.1,
+ "text": "to"
+ },
+ {
+ "id": 30819,
+ "start": 13741.1,
+ "end": 13741.28,
+ "text": "us"
+ },
+ {
+ "id": 30820,
+ "start": 13741.28,
+ "end": 13741.52,
+ "text": "as"
+ },
+ {
+ "id": 30821,
+ "start": 13741.52,
+ "end": 13741.68,
+ "text": "to"
+ },
+ {
+ "id": 30822,
+ "start": 13741.68,
+ "end": 13742.1,
+ "text": "what"
+ },
+ {
+ "id": 30823,
+ "start": 13742.1,
+ "end": 13742.34,
+ "text": "those"
+ },
+ {
+ "id": 30824,
+ "start": 13742.34,
+ "end": 13742.84,
+ "text": "principles"
+ },
+ {
+ "id": 30825,
+ "start": 13742.84,
+ "end": 13743.02,
+ "text": "are?"
+ },
+ {
+ "id": 30826,
+ "start": 13743.02,
+ "end": 13743.14,
+ "text": "And"
+ },
+ {
+ "id": 30827,
+ "start": 13743.14,
+ "end": 13743.28,
+ "text": "how"
+ },
+ {
+ "id": 30828,
+ "start": 13743.28,
+ "end": 13743.44,
+ "text": "they"
+ },
+ {
+ "id": 30829,
+ "start": 13743.44,
+ "end": 13743.62,
+ "text": "will"
+ },
+ {
+ "id": 30830,
+ "start": 13743.62,
+ "end": 13743.76,
+ "text": "help"
+ },
+ {
+ "id": 30831,
+ "start": 13743.76,
+ "end": 13744.12,
+ "text": "deal"
+ },
+ {
+ "id": 30832,
+ "start": 13744.12,
+ "end": 13744.24,
+ "text": "with"
+ },
+ {
+ "id": 30833,
+ "start": 13744.24,
+ "end": 13744.36,
+ "text": "this"
+ },
+ {
+ "id": 30834,
+ "start": 13744.36,
+ "end": 13744.62,
+ "text": "issue?"
+ },
+ {
+ "id": 30835,
+ "start": 13744.62,
+ "end": 13745.38,
+ "text": "Yes,"
+ },
+ {
+ "id": 30836,
+ "start": 13745.38,
+ "end": 13745.74,
+ "text": "Senator,"
+ },
+ {
+ "id": 30837,
+ "start": 13745.74,
+ "end": 13745.9,
+ "text": "I"
+ },
+ {
+ "id": 30838,
+ "start": 13745.9,
+ "end": 13746.04,
+ "text": "can"
+ },
+ {
+ "id": 30839,
+ "start": 13746.04,
+ "end": 13746.16,
+ "text": "make"
+ },
+ {
+ "id": 30840,
+ "start": 13746.16,
+ "end": 13746.3,
+ "text": "sure"
+ },
+ {
+ "id": 30841,
+ "start": 13746.3,
+ "end": 13746.44,
+ "text": "that"
+ },
+ {
+ "id": 30842,
+ "start": 13746.44,
+ "end": 13746.54,
+ "text": "our"
+ },
+ {
+ "id": 30843,
+ "start": 13746.54,
+ "end": 13746.78,
+ "text": "team"
+ },
+ {
+ "id": 30844,
+ "start": 13746.78,
+ "end": 13747.1,
+ "text": "follows"
+ },
+ {
+ "id": 30845,
+ "start": 13747.1,
+ "end": 13747.28,
+ "text": "up"
+ },
+ {
+ "id": 30846,
+ "start": 13747.28,
+ "end": 13747.4,
+ "text": "and"
+ },
+ {
+ "id": 30847,
+ "start": 13747.4,
+ "end": 13747.54,
+ "text": "get"
+ },
+ {
+ "id": 30848,
+ "start": 13747.54,
+ "end": 13747.72,
+ "text": "you"
+ },
+ {
+ "id": 30849,
+ "start": 13747.72,
+ "end": 13747.82,
+ "text": "the"
+ },
+ {
+ "id": 30850,
+ "start": 13747.82,
+ "end": 13748.28,
+ "text": "information"
+ },
+ {
+ "id": 30851,
+ "start": 13748.28,
+ "end": 13748.4,
+ "text": "on"
+ },
+ {
+ "id": 30852,
+ "start": 13748.4,
+ "end": 13748.58,
+ "text": "that."
+ },
+ {
+ "id": 30853,
+ "start": 13748.58,
+ "end": 13749,
+ "text": "And"
+ },
+ {
+ "id": 30854,
+ "start": 13749,
+ "end": 13749.12,
+ "text": "we"
+ },
+ {
+ "id": 30855,
+ "start": 13749.12,
+ "end": 13749.26,
+ "text": "have"
+ },
+ {
+ "id": 30856,
+ "start": 13749.26,
+ "end": 13749.36,
+ "text": "a"
+ },
+ {
+ "id": 30857,
+ "start": 13749.36,
+ "end": 13749.68,
+ "text": "whole"
+ },
+ {
+ "id": 30858,
+ "start": 13749.68,
+ "end": 13750.12,
+ "text": "AI"
+ },
+ {
+ "id": 30859,
+ "start": 13750.12,
+ "end": 13750.5,
+ "text": "ethics"
+ },
+ {
+ "id": 30860,
+ "start": 13750.5,
+ "end": 13750.82,
+ "text": "team"
+ },
+ {
+ "id": 30861,
+ "start": 13750.82,
+ "end": 13751.22,
+ "text": "that"
+ },
+ {
+ "id": 30862,
+ "start": 13751.22,
+ "end": 13751.38,
+ "text": "is"
+ },
+ {
+ "id": 30863,
+ "start": 13751.38,
+ "end": 13751.72,
+ "text": "working"
+ },
+ {
+ "id": 30864,
+ "start": 13751.72,
+ "end": 13751.88,
+ "text": "on"
+ },
+ {
+ "id": 30865,
+ "start": 13751.88,
+ "end": 13753.32,
+ "text": "developing."
+ },
+ {
+ "id": 30866,
+ "start": 13753.32,
+ "end": 13754.4,
+ "text": "Basically"
+ },
+ {
+ "id": 30867,
+ "start": 13754.4,
+ "end": 13754.52,
+ "text": "the"
+ },
+ {
+ "id": 30868,
+ "start": 13754.52,
+ "end": 13755,
+ "text": "technology"
+ },
+ {
+ "id": 30869,
+ "start": 13755,
+ "end": 13755.2,
+ "text": "it's"
+ },
+ {
+ "id": 30870,
+ "start": 13755.2,
+ "end": 13755.36,
+ "text": "not"
+ },
+ {
+ "id": 30871,
+ "start": 13755.36,
+ "end": 13755.52,
+ "text": "just"
+ },
+ {
+ "id": 30872,
+ "start": 13755.52,
+ "end": 13755.84,
+ "text": "about"
+ },
+ {
+ "id": 30873,
+ "start": 13755.84,
+ "end": 13756.62,
+ "text": "philosophical"
+ },
+ {
+ "id": 30874,
+ "start": 13756.62,
+ "end": 13757.08,
+ "text": "principles"
+ },
+ {
+ "id": 30875,
+ "start": 13757.08,
+ "end": 13757.28,
+ "text": "it's"
+ },
+ {
+ "id": 30876,
+ "start": 13757.28,
+ "end": 13757.64,
+ "text": "also"
+ },
+ {
+ "id": 30877,
+ "start": 13757.64,
+ "end": 13758.04,
+ "text": "a"
+ },
+ {
+ "id": 30878,
+ "start": 13758.04,
+ "end": 13758.72,
+ "text": "technological"
+ },
+ {
+ "id": 30879,
+ "start": 13758.72,
+ "end": 13759.32,
+ "text": "foundation"
+ },
+ {
+ "id": 30880,
+ "start": 13759.32,
+ "end": 13759.52,
+ "text": "for"
+ },
+ {
+ "id": 30881,
+ "start": 13759.52,
+ "end": 13759.76,
+ "text": "making"
+ },
+ {
+ "id": 30882,
+ "start": 13759.76,
+ "end": 13759.92,
+ "text": "sure"
+ },
+ {
+ "id": 30883,
+ "start": 13759.92,
+ "end": 13760.06,
+ "text": "that"
+ },
+ {
+ "id": 30884,
+ "start": 13760.06,
+ "end": 13760.22,
+ "text": "this"
+ },
+ {
+ "id": 30885,
+ "start": 13760.22,
+ "end": 13760.4,
+ "text": "goes"
+ },
+ {
+ "id": 30886,
+ "start": 13760.4,
+ "end": 13760.52,
+ "text": "in"
+ },
+ {
+ "id": 30887,
+ "start": 13760.52,
+ "end": 13760.64,
+ "text": "the"
+ },
+ {
+ "id": 30888,
+ "start": 13760.64,
+ "end": 13760.92,
+ "text": "direction"
+ },
+ {
+ "id": 30889,
+ "start": 13760.92,
+ "end": 13761.06,
+ "text": "that"
+ },
+ {
+ "id": 30890,
+ "start": 13761.06,
+ "end": 13761.14,
+ "text": "we"
+ },
+ {
+ "id": 30891,
+ "start": 13761.14,
+ "end": 13761.34,
+ "text": "want."
+ },
+ {
+ "id": 30892,
+ "start": 13761.34,
+ "end": 13762,
+ "text": "Thank"
+ },
+ {
+ "id": 30893,
+ "start": 13762,
+ "end": 13762.54,
+ "text": "you,"
+ },
+ {
+ "id": 30894,
+ "start": 13762.54,
+ "end": 13763.12,
+ "text": "thank"
+ },
+ {
+ "id": 30895,
+ "start": 13763.12,
+ "end": 13763.24,
+ "text": "you."
+ },
+ {
+ "id": 30896,
+ "start": 13763.24,
+ "end": 13763.54,
+ "text": "Center"
+ },
+ {
+ "id": 30897,
+ "start": 13763.54,
+ "end": 13763.88,
+ "text": "Peters"
+ },
+ {
+ "id": 30898,
+ "start": 13763.88,
+ "end": 13764.48,
+ "text": "we'll"
+ },
+ {
+ "id": 30899,
+ "start": 13764.48,
+ "end": 13764.9,
+ "text": "recess"
+ },
+ {
+ "id": 30900,
+ "start": 13764.9,
+ "end": 13765.04,
+ "text": "for"
+ },
+ {
+ "id": 30901,
+ "start": 13765.04,
+ "end": 13765.4,
+ "text": "five"
+ },
+ {
+ "id": 30902,
+ "start": 13765.4,
+ "end": 13765.86,
+ "text": "and"
+ },
+ {
+ "id": 30903,
+ "start": 13765.86,
+ "end": 13766.66,
+ "text": "come"
+ },
+ {
+ "id": 30904,
+ "start": 13766.66,
+ "end": 13766.84,
+ "text": "back"
+ },
+ {
+ "id": 30905,
+ "start": 13766.84,
+ "end": 13767.08,
+ "text": "in."
+ },
+ {
+ "id": 30906,
+ "start": 13767.08,
+ "end": 13767.42,
+ "text": "So"
+ },
+ {
+ "id": 30907,
+ "start": 13767.42,
+ "end": 13767.6,
+ "text": "give"
+ },
+ {
+ "id": 30908,
+ "start": 13767.6,
+ "end": 13768.22,
+ "text": "Mr"
+ },
+ {
+ "id": 30909,
+ "start": 13768.22,
+ "end": 13768.66,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 30910,
+ "start": 13768.66,
+ "end": 13769.04,
+ "text": "a"
+ },
+ {
+ "id": 30911,
+ "start": 13769.04,
+ "end": 13769.22,
+ "text": "quick"
+ },
+ {
+ "id": 30912,
+ "start": 13769.22,
+ "end": 13769.44,
+ "text": "break"
+ },
+ {
+ "id": 30913,
+ "start": 13769.44,
+ "end": 13769.62,
+ "text": "here."
+ },
+ {
+ "id": 30914,
+ "start": 13769.62,
+ "end": 13803.36,
+ "text": "Thanks"
+ },
+ {
+ "id": 30915,
+ "start": 13803.36,
+ "end": 13804.66,
+ "text": "in"
+ },
+ {
+ "id": 30916,
+ "start": 13804.66,
+ "end": 13804.9,
+ "text": "there"
+ },
+ {
+ "id": 30917,
+ "start": 13804.9,
+ "end": 13805.04,
+ "text": "for"
+ },
+ {
+ "id": 30918,
+ "start": 13805.04,
+ "end": 13805.14,
+ "text": "the"
+ },
+ {
+ "id": 30919,
+ "start": 13805.14,
+ "end": 13805.82,
+ "text": "record."
+ },
+ {
+ "id": 30920,
+ "start": 13805.82,
+ "end": 13811.4,
+ "text": "So"
+ },
+ {
+ "id": 30921,
+ "start": 13811.4,
+ "end": 13812.42,
+ "text": "meters"
+ },
+ {
+ "id": 30922,
+ "start": 13812.42,
+ "end": 13814,
+ "text": "per"
+ },
+ {
+ "id": 30923,
+ "start": 13814,
+ "end": 13814.78,
+ "text": "say."
+ },
+ {
+ "id": 30924,
+ "start": 13814.78,
+ "end": 13815.16,
+ "text": "I"
+ },
+ {
+ "id": 30925,
+ "start": 13815.16,
+ "end": 13820.42,
+ "text": "said"
+ },
+ {
+ "id": 30926,
+ "start": 13820.42,
+ "end": 13821.38,
+ "text": "everybody"
+ },
+ {
+ "id": 30927,
+ "start": 13821.38,
+ "end": 13821.7,
+ "text": "has"
+ },
+ {
+ "id": 30928,
+ "start": 13821.7,
+ "end": 13823.2,
+ "text": "an"
+ },
+ {
+ "id": 30929,
+ "start": 13823.2,
+ "end": 13824.48,
+ "text": "is"
+ },
+ {
+ "id": 30930,
+ "start": 13824.48,
+ "end": 13824.62,
+ "text": "my"
+ },
+ {
+ "id": 30931,
+ "start": 13824.62,
+ "end": 13929.1,
+ "text": "daughter."
+ },
+ {
+ "id": 30932,
+ "start": 13929.1,
+ "end": 13938.8,
+ "text": "I"
+ },
+ {
+ "id": 30933,
+ "start": 13938.8,
+ "end": 13939.1,
+ "text": "just"
+ },
+ {
+ "id": 30934,
+ "start": 13939.1,
+ "end": 13983.3,
+ "text": "as"
+ },
+ {
+ "id": 30935,
+ "start": 13983.3,
+ "end": 14024.76,
+ "text": "really"
+ },
+ {
+ "id": 30936,
+ "start": 14024.76,
+ "end": 14025.74,
+ "text": "trying"
+ },
+ {
+ "id": 30937,
+ "start": 14025.74,
+ "end": 14083.3,
+ "text": "to"
+ },
+ {
+ "id": 30938,
+ "start": 14083.3,
+ "end": 14173.14,
+ "text": "the"
+ },
+ {
+ "id": 30939,
+ "start": 14173.14,
+ "end": 14177.06,
+ "text": "Oh,"
+ },
+ {
+ "id": 30940,
+ "start": 14177.06,
+ "end": 14184.62,
+ "text": "yes,"
+ },
+ {
+ "id": 30941,
+ "start": 14184.62,
+ "end": 14185.6,
+ "text": "but"
+ },
+ {
+ "id": 30942,
+ "start": 14185.6,
+ "end": 14185.7,
+ "text": "I"
+ },
+ {
+ "id": 30943,
+ "start": 14185.7,
+ "end": 14188.86,
+ "text": "think,"
+ },
+ {
+ "id": 30944,
+ "start": 14188.86,
+ "end": 14189.62,
+ "text": "are"
+ },
+ {
+ "id": 30945,
+ "start": 14189.62,
+ "end": 14193.86,
+ "text": "you?"
+ },
+ {
+ "id": 30946,
+ "start": 14193.86,
+ "end": 14194.84,
+ "text": "I"
+ },
+ {
+ "id": 30947,
+ "start": 14194.84,
+ "end": 14226.56,
+ "text": "know"
+ },
+ {
+ "id": 30948,
+ "start": 14226.56,
+ "end": 14231.12,
+ "text": "I"
+ },
+ {
+ "id": 30949,
+ "start": 14231.12,
+ "end": 14240.7,
+ "text": "see"
+ },
+ {
+ "id": 30950,
+ "start": 14240.7,
+ "end": 14342.5,
+ "text": "so"
+ },
+ {
+ "id": 30951,
+ "start": 14342.5,
+ "end": 14395.8,
+ "text": "cool."
+ },
+ {
+ "id": 30952,
+ "start": 14395.8,
+ "end": 14557.54,
+ "text": "That"
+ },
+ {
+ "id": 30953,
+ "start": 14557.54,
+ "end": 14558.52,
+ "text": "all"
+ },
+ {
+ "id": 30954,
+ "start": 14558.52,
+ "end": 14559.76,
+ "text": "right,"
+ },
+ {
+ "id": 30955,
+ "start": 14559.76,
+ "end": 14560.82,
+ "text": "that"
+ },
+ {
+ "id": 30956,
+ "start": 14560.82,
+ "end": 14561.35,
+ "text": "is."
+ },
+ {
+ "id": 30957,
+ "start": 14561.35,
+ "end": 14562.23,
+ "text": "And"
+ },
+ {
+ "id": 30958,
+ "start": 14562.23,
+ "end": 14562.69,
+ "text": "Senator"
+ },
+ {
+ "id": 30959,
+ "start": 14562.69,
+ "end": 14563.03,
+ "text": "tiles"
+ },
+ {
+ "id": 30960,
+ "start": 14563.03,
+ "end": 14563.15,
+ "text": "is"
+ },
+ {
+ "id": 30961,
+ "start": 14563.15,
+ "end": 14563.67,
+ "text": "recognized."
+ },
+ {
+ "id": 30962,
+ "start": 14563.67,
+ "end": 14564.39,
+ "text": "Thank"
+ },
+ {
+ "id": 30963,
+ "start": 14564.39,
+ "end": 14564.51,
+ "text": "you,"
+ },
+ {
+ "id": 30964,
+ "start": 14564.51,
+ "end": 14564.83,
+ "text": "Mr"
+ },
+ {
+ "id": 30965,
+ "start": 14564.83,
+ "end": 14565.39,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 30966,
+ "start": 14565.39,
+ "end": 14565.57,
+ "text": "for"
+ },
+ {
+ "id": 30967,
+ "start": 14565.57,
+ "end": 14565.87,
+ "text": "being"
+ },
+ {
+ "id": 30968,
+ "start": 14565.87,
+ "end": 14566.07,
+ "text": "here."
+ },
+ {
+ "id": 30969,
+ "start": 14566.07,
+ "end": 14566.15,
+ "text": "I"
+ },
+ {
+ "id": 30970,
+ "start": 14566.15,
+ "end": 14566.35,
+ "text": "think"
+ },
+ {
+ "id": 30971,
+ "start": 14566.35,
+ "end": 14566.55,
+ "text": "you've"
+ },
+ {
+ "id": 30972,
+ "start": 14566.55,
+ "end": 14566.69,
+ "text": "done"
+ },
+ {
+ "id": 30973,
+ "start": 14566.69,
+ "end": 14566.75,
+ "text": "a"
+ },
+ {
+ "id": 30974,
+ "start": 14566.75,
+ "end": 14567.01,
+ "text": "good"
+ },
+ {
+ "id": 30975,
+ "start": 14567.01,
+ "end": 14567.29,
+ "text": "job"
+ },
+ {
+ "id": 30976,
+ "start": 14567.29,
+ "end": 14567.47,
+ "text": "I've"
+ },
+ {
+ "id": 30977,
+ "start": 14567.47,
+ "end": 14567.69,
+ "text": "been"
+ },
+ {
+ "id": 30978,
+ "start": 14567.69,
+ "end": 14567.95,
+ "text": "here"
+ },
+ {
+ "id": 30979,
+ "start": 14567.95,
+ "end": 14568.21,
+ "text": "for"
+ },
+ {
+ "id": 30980,
+ "start": 14568.21,
+ "end": 14568.49,
+ "text": "most"
+ },
+ {
+ "id": 30981,
+ "start": 14568.49,
+ "end": 14568.65,
+ "text": "of"
+ },
+ {
+ "id": 30982,
+ "start": 14568.65,
+ "end": 14569.09,
+ "text": "it"
+ },
+ {
+ "id": 30983,
+ "start": 14569.09,
+ "end": 14569.59,
+ "text": "session."
+ },
+ {
+ "id": 30984,
+ "start": 14569.59,
+ "end": 14569.91,
+ "text": "Except"
+ },
+ {
+ "id": 30985,
+ "start": 14569.91,
+ "end": 14570.03,
+ "text": "for"
+ },
+ {
+ "id": 30986,
+ "start": 14570.03,
+ "end": 14570.21,
+ "text": "about"
+ },
+ {
+ "id": 30987,
+ "start": 14570.21,
+ "end": 14570.51,
+ "text": "20"
+ },
+ {
+ "id": 30988,
+ "start": 14570.51,
+ "end": 14570.79,
+ "text": "minutes."
+ },
+ {
+ "id": 30989,
+ "start": 14570.79,
+ "end": 14570.97,
+ "text": "I"
+ },
+ {
+ "id": 30990,
+ "start": 14570.97,
+ "end": 14571.21,
+ "text": "watched"
+ },
+ {
+ "id": 30991,
+ "start": 14571.21,
+ "end": 14571.57,
+ "text": "on"
+ },
+ {
+ "id": 30992,
+ "start": 14571.57,
+ "end": 14572.27,
+ "text": "television"
+ },
+ {
+ "id": 30993,
+ "start": 14572.27,
+ "end": 14572.45,
+ "text": "back"
+ },
+ {
+ "id": 30994,
+ "start": 14572.45,
+ "end": 14572.57,
+ "text": "in"
+ },
+ {
+ "id": 30995,
+ "start": 14572.57,
+ "end": 14572.71,
+ "text": "my"
+ },
+ {
+ "id": 30996,
+ "start": 14572.71,
+ "end": 14573.56,
+ "text": "office."
+ },
+ {
+ "id": 30997,
+ "start": 14573.56,
+ "end": 14573.82,
+ "text": "I"
+ },
+ {
+ "id": 30998,
+ "start": 14573.82,
+ "end": 14574.84,
+ "text": "was"
+ },
+ {
+ "id": 30999,
+ "start": 14574.84,
+ "end": 14575.36,
+ "text": "Googling"
+ },
+ {
+ "id": 31000,
+ "start": 14575.36,
+ "end": 14575.74,
+ "text": "earlier"
+ },
+ {
+ "id": 31001,
+ "start": 14575.74,
+ "end": 14576.12,
+ "text": "actually,"
+ },
+ {
+ "id": 31002,
+ "start": 14576.12,
+ "end": 14576.22,
+ "text": "go"
+ },
+ {
+ "id": 31003,
+ "start": 14576.22,
+ "end": 14576.4,
+ "text": "on"
+ },
+ {
+ "id": 31004,
+ "start": 14576.4,
+ "end": 14576.52,
+ "text": "my"
+ },
+ {
+ "id": 31005,
+ "start": 14576.52,
+ "end": 14576.98,
+ "text": "Facebook"
+ },
+ {
+ "id": 31006,
+ "start": 14576.98,
+ "end": 14577.26,
+ "text": "app"
+ },
+ {
+ "id": 31007,
+ "start": 14577.26,
+ "end": 14577.42,
+ "text": "on"
+ },
+ {
+ "id": 31008,
+ "start": 14577.42,
+ "end": 14577.58,
+ "text": "my"
+ },
+ {
+ "id": 31009,
+ "start": 14577.58,
+ "end": 14577.84,
+ "text": "phone"
+ },
+ {
+ "id": 31010,
+ "start": 14577.84,
+ "end": 14578.28,
+ "text": "earlier"
+ },
+ {
+ "id": 31011,
+ "start": 14578.28,
+ "end": 14578.4,
+ "text": "and"
+ },
+ {
+ "id": 31012,
+ "start": 14578.4,
+ "end": 14578.54,
+ "text": "I"
+ },
+ {
+ "id": 31013,
+ "start": 14578.54,
+ "end": 14578.9,
+ "text": "found"
+ },
+ {
+ "id": 31014,
+ "start": 14578.9,
+ "end": 14579.18,
+ "text": "one"
+ },
+ {
+ "id": 31015,
+ "start": 14579.18,
+ "end": 14579.28,
+ "text": "of"
+ },
+ {
+ "id": 31016,
+ "start": 14579.28,
+ "end": 14580.88,
+ "text": "your"
+ },
+ {
+ "id": 31017,
+ "start": 14580.88,
+ "end": 14581.86,
+ "text": "one"
+ },
+ {
+ "id": 31018,
+ "start": 14581.86,
+ "end": 14581.94,
+ "text": "of"
+ },
+ {
+ "id": 31019,
+ "start": 14581.94,
+ "end": 14582.1,
+ "text": "your"
+ },
+ {
+ "id": 31020,
+ "start": 14582.1,
+ "end": 14582.52,
+ "text": "Facebook"
+ },
+ {
+ "id": 31021,
+ "start": 14582.52,
+ "end": 14582.96,
+ "text": "presence."
+ },
+ {
+ "id": 31022,
+ "start": 14582.96,
+ "end": 14583.18,
+ "text": "It"
+ },
+ {
+ "id": 31023,
+ "start": 14583.18,
+ "end": 14583.3,
+ "text": "was"
+ },
+ {
+ "id": 31024,
+ "start": 14583.3,
+ "end": 14583.4,
+ "text": "the"
+ },
+ {
+ "id": 31025,
+ "start": 14583.4,
+ "end": 14583.62,
+ "text": "same"
+ },
+ {
+ "id": 31026,
+ "start": 14583.62,
+ "end": 14583.8,
+ "text": "one"
+ },
+ {
+ "id": 31027,
+ "start": 14583.8,
+ "end": 14583.94,
+ "text": "on"
+ },
+ {
+ "id": 31028,
+ "start": 14583.94,
+ "end": 14584.16,
+ "text": "March"
+ },
+ {
+ "id": 31029,
+ "start": 14584.16,
+ "end": 14584.44,
+ "text": "30"
+ },
+ {
+ "id": 31030,
+ "start": 14584.44,
+ "end": 14584.6,
+ "text": "I"
+ },
+ {
+ "id": 31031,
+ "start": 14584.6,
+ "end": 14584.92,
+ "text": "think"
+ },
+ {
+ "id": 31032,
+ "start": 14584.92,
+ "end": 14585.1,
+ "text": "you"
+ },
+ {
+ "id": 31033,
+ "start": 14585.1,
+ "end": 14585.46,
+ "text": "posted"
+ },
+ {
+ "id": 31034,
+ "start": 14585.46,
+ "end": 14585.54,
+ "text": "a"
+ },
+ {
+ "id": 31035,
+ "start": 14585.54,
+ "end": 14585.84,
+ "text": "pic"
+ },
+ {
+ "id": 31036,
+ "start": 14585.84,
+ "end": 14586.02,
+ "text": "of"
+ },
+ {
+ "id": 31037,
+ "start": 14586.02,
+ "end": 14586.54,
+ "text": "first"
+ },
+ {
+ "id": 31038,
+ "start": 14586.54,
+ "end": 14587.26,
+ "text": "later"
+ },
+ {
+ "id": 31039,
+ "start": 14587.26,
+ "end": 14587.88,
+ "text": "but"
+ },
+ {
+ "id": 31040,
+ "start": 14587.88,
+ "end": 14588.66,
+ "text": "further"
+ },
+ {
+ "id": 31041,
+ "start": 14588.66,
+ "end": 14589.04,
+ "text": "down."
+ },
+ {
+ "id": 31042,
+ "start": 14589.04,
+ "end": 14589.34,
+ "text": "You"
+ },
+ {
+ "id": 31043,
+ "start": 14589.34,
+ "end": 14589.94,
+ "text": "listed"
+ },
+ {
+ "id": 31044,
+ "start": 14589.94,
+ "end": 14590.06,
+ "text": "out"
+ },
+ {
+ "id": 31045,
+ "start": 14590.06,
+ "end": 14590.26,
+ "text": "the"
+ },
+ {
+ "id": 31046,
+ "start": 14590.26,
+ "end": 14590.76,
+ "text": "facts"
+ },
+ {
+ "id": 31047,
+ "start": 14590.76,
+ "end": 14591.72,
+ "text": "since"
+ },
+ {
+ "id": 31048,
+ "start": 14591.72,
+ "end": 14591.92,
+ "text": "the"
+ },
+ {
+ "id": 31049,
+ "start": 14591.92,
+ "end": 14592.12,
+ "text": "new"
+ },
+ {
+ "id": 31050,
+ "start": 14592.12,
+ "end": 14592.8,
+ "text": "platform"
+ },
+ {
+ "id": 31051,
+ "start": 14592.8,
+ "end": 14593.24,
+ "text": "was"
+ },
+ {
+ "id": 31052,
+ "start": 14593.24,
+ "end": 14594.08,
+ "text": "released"
+ },
+ {
+ "id": 31053,
+ "start": 14594.08,
+ "end": 14594.22,
+ "text": "in"
+ },
+ {
+ "id": 31054,
+ "start": 14594.22,
+ "end": 14595.3,
+ "text": "2,007"
+ },
+ {
+ "id": 31055,
+ "start": 14595.3,
+ "end": 14595.6,
+ "text": "sort"
+ },
+ {
+ "id": 31056,
+ "start": 14595.6,
+ "end": 14595.68,
+ "text": "of"
+ },
+ {
+ "id": 31057,
+ "start": 14595.68,
+ "end": 14595.74,
+ "text": "a"
+ },
+ {
+ "id": 31058,
+ "start": 14595.74,
+ "end": 14596.42,
+ "text": "timeline"
+ },
+ {
+ "id": 31059,
+ "start": 14596.42,
+ "end": 14597.12,
+ "text": "you"
+ },
+ {
+ "id": 31060,
+ "start": 14597.12,
+ "end": 14597.32,
+ "text": "start"
+ },
+ {
+ "id": 31061,
+ "start": 14597.32,
+ "end": 14597.46,
+ "text": "with"
+ },
+ {
+ "id": 31062,
+ "start": 14597.46,
+ "end": 14598.42,
+ "text": "2,007"
+ },
+ {
+ "id": 31063,
+ "start": 14598.42,
+ "end": 14598.58,
+ "text": "then"
+ },
+ {
+ "id": 31064,
+ "start": 14598.58,
+ "end": 14598.76,
+ "text": "you"
+ },
+ {
+ "id": 31065,
+ "start": 14598.76,
+ "end": 14599.04,
+ "text": "jump"
+ },
+ {
+ "id": 31066,
+ "start": 14599.04,
+ "end": 14599.2,
+ "text": "to"
+ },
+ {
+ "id": 31067,
+ "start": 14599.2,
+ "end": 14599.32,
+ "text": "the"
+ },
+ {
+ "id": 31068,
+ "start": 14599.32,
+ "end": 14599.64,
+ "text": "camera"
+ },
+ {
+ "id": 31069,
+ "start": 14599.64,
+ "end": 14601.12,
+ "text": "analytic"
+ },
+ {
+ "id": 31070,
+ "start": 14601.12,
+ "end": 14602.1,
+ "text": "issue."
+ },
+ {
+ "id": 31071,
+ "start": 14602.1,
+ "end": 14602.3,
+ "text": "I"
+ },
+ {
+ "id": 31072,
+ "start": 14602.3,
+ "end": 14602.64,
+ "text": "actually"
+ },
+ {
+ "id": 31073,
+ "start": 14602.64,
+ "end": 14602.9,
+ "text": "think"
+ },
+ {
+ "id": 31074,
+ "start": 14602.9,
+ "end": 14603.06,
+ "text": "that"
+ },
+ {
+ "id": 31075,
+ "start": 14603.06,
+ "end": 14603.14,
+ "text": "we"
+ },
+ {
+ "id": 31076,
+ "start": 14603.14,
+ "end": 14603.34,
+ "text": "need"
+ },
+ {
+ "id": 31077,
+ "start": 14603.34,
+ "end": 14603.42,
+ "text": "to"
+ },
+ {
+ "id": 31078,
+ "start": 14603.42,
+ "end": 14603.88,
+ "text": "fully"
+ },
+ {
+ "id": 31079,
+ "start": 14603.88,
+ "end": 14604.4,
+ "text": "examine"
+ },
+ {
+ "id": 31080,
+ "start": 14604.4,
+ "end": 14604.58,
+ "text": "what"
+ },
+ {
+ "id": 31081,
+ "start": 14604.58,
+ "end": 14604.86,
+ "text": "camera"
+ },
+ {
+ "id": 31082,
+ "start": 14604.86,
+ "end": 14605.48,
+ "text": "analytical"
+ },
+ {
+ "id": 31083,
+ "start": 14605.48,
+ "end": 14605.8,
+ "text": "did."
+ },
+ {
+ "id": 31084,
+ "start": 14605.8,
+ "end": 14606,
+ "text": "They"
+ },
+ {
+ "id": 31085,
+ "start": 14606,
+ "end": 14606.4,
+ "text": "either"
+ },
+ {
+ "id": 31086,
+ "start": 14606.4,
+ "end": 14606.76,
+ "text": "broke"
+ },
+ {
+ "id": 31087,
+ "start": 14606.76,
+ "end": 14606.92,
+ "text": "a"
+ },
+ {
+ "id": 31088,
+ "start": 14606.92,
+ "end": 14607.14,
+ "text": "kind"
+ },
+ {
+ "id": 31089,
+ "start": 14607.14,
+ "end": 14607.24,
+ "text": "of"
+ },
+ {
+ "id": 31090,
+ "start": 14607.24,
+ "end": 14607.5,
+ "text": "code"
+ },
+ {
+ "id": 31091,
+ "start": 14607.5,
+ "end": 14607.6,
+ "text": "of"
+ },
+ {
+ "id": 31092,
+ "start": 14607.6,
+ "end": 14608.08,
+ "text": "conduct."
+ },
+ {
+ "id": 31093,
+ "start": 14608.08,
+ "end": 14608.22,
+ "text": "If"
+ },
+ {
+ "id": 31094,
+ "start": 14608.22,
+ "end": 14608.38,
+ "text": "they"
+ },
+ {
+ "id": 31095,
+ "start": 14608.38,
+ "end": 14608.6,
+ "text": "broke"
+ },
+ {
+ "id": 31096,
+ "start": 14608.6,
+ "end": 14608.8,
+ "text": "any"
+ },
+ {
+ "id": 31097,
+ "start": 14608.8,
+ "end": 14609.1,
+ "text": "other"
+ },
+ {
+ "id": 31098,
+ "start": 14609.1,
+ "end": 14609.86,
+ "text": "rules"
+ },
+ {
+ "id": 31099,
+ "start": 14609.86,
+ "end": 14610.02,
+ "text": "or"
+ },
+ {
+ "id": 31100,
+ "start": 14610.02,
+ "end": 14610.48,
+ "text": "agreements"
+ },
+ {
+ "id": 31101,
+ "start": 14610.48,
+ "end": 14610.64,
+ "text": "with"
+ },
+ {
+ "id": 31102,
+ "start": 14610.64,
+ "end": 14610.82,
+ "text": "you"
+ },
+ {
+ "id": 31103,
+ "start": 14610.82,
+ "end": 14611.06,
+ "text": "all."
+ },
+ {
+ "id": 31104,
+ "start": 14611.06,
+ "end": 14611.16,
+ "text": "I"
+ },
+ {
+ "id": 31105,
+ "start": 14611.16,
+ "end": 14611.38,
+ "text": "hope"
+ },
+ {
+ "id": 31106,
+ "start": 14611.38,
+ "end": 14611.5,
+ "text": "that"
+ },
+ {
+ "id": 31107,
+ "start": 14611.5,
+ "end": 14611.68,
+ "text": "they"
+ },
+ {
+ "id": 31108,
+ "start": 14611.68,
+ "end": 14611.98,
+ "text": "suffer"
+ },
+ {
+ "id": 31109,
+ "start": 14611.98,
+ "end": 14612.1,
+ "text": "the"
+ },
+ {
+ "id": 31110,
+ "start": 14612.1,
+ "end": 14612.88,
+ "text": "consequences."
+ },
+ {
+ "id": 31111,
+ "start": 14612.88,
+ "end": 14613.02,
+ "text": "But"
+ },
+ {
+ "id": 31112,
+ "start": 14613.02,
+ "end": 14613.1,
+ "text": "I"
+ },
+ {
+ "id": 31113,
+ "start": 14613.1,
+ "end": 14613.28,
+ "text": "think"
+ },
+ {
+ "id": 31114,
+ "start": 14613.28,
+ "end": 14613.46,
+ "text": "that"
+ },
+ {
+ "id": 31115,
+ "start": 14613.46,
+ "end": 14613.96,
+ "text": "timeline"
+ },
+ {
+ "id": 31116,
+ "start": 14613.96,
+ "end": 14614.18,
+ "text": "needs"
+ },
+ {
+ "id": 31117,
+ "start": 14614.18,
+ "end": 14614.26,
+ "text": "to"
+ },
+ {
+ "id": 31118,
+ "start": 14614.26,
+ "end": 14614.38,
+ "text": "be"
+ },
+ {
+ "id": 31119,
+ "start": 14614.38,
+ "end": 14614.86,
+ "text": "updated"
+ },
+ {
+ "id": 31120,
+ "start": 14614.86,
+ "end": 14615.78,
+ "text": "and"
+ },
+ {
+ "id": 31121,
+ "start": 14615.78,
+ "end": 14615.9,
+ "text": "it"
+ },
+ {
+ "id": 31122,
+ "start": 14615.9,
+ "end": 14616.2,
+ "text": "really"
+ },
+ {
+ "id": 31123,
+ "start": 14616.2,
+ "end": 14616.48,
+ "text": "needs"
+ },
+ {
+ "id": 31124,
+ "start": 14616.48,
+ "end": 14616.64,
+ "text": "to"
+ },
+ {
+ "id": 31125,
+ "start": 14616.64,
+ "end": 14616.84,
+ "text": "go"
+ },
+ {
+ "id": 31126,
+ "start": 14616.84,
+ "end": 14617.2,
+ "text": "back"
+ },
+ {
+ "id": 31127,
+ "start": 14617.2,
+ "end": 14617.9,
+ "text": "I've"
+ },
+ {
+ "id": 31128,
+ "start": 14617.9,
+ "end": 14618.24,
+ "text": "read"
+ },
+ {
+ "id": 31129,
+ "start": 14618.24,
+ "end": 14618.38,
+ "text": "a"
+ },
+ {
+ "id": 31130,
+ "start": 14618.38,
+ "end": 14618.7,
+ "text": "series"
+ },
+ {
+ "id": 31131,
+ "start": 14618.7,
+ "end": 14618.96,
+ "text": "of"
+ },
+ {
+ "id": 31132,
+ "start": 14618.96,
+ "end": 14619.08,
+ "text": "E"
+ },
+ {
+ "id": 31133,
+ "start": 14619.08,
+ "end": 14619.52,
+ "text": "articles"
+ },
+ {
+ "id": 31134,
+ "start": 14619.52,
+ "end": 14619.68,
+ "text": "that"
+ },
+ {
+ "id": 31135,
+ "start": 14619.68,
+ "end": 14619.84,
+ "text": "were"
+ },
+ {
+ "id": 31136,
+ "start": 14619.84,
+ "end": 14620.2,
+ "text": "published"
+ },
+ {
+ "id": 31137,
+ "start": 14620.2,
+ "end": 14620.3,
+ "text": "in"
+ },
+ {
+ "id": 31138,
+ "start": 14620.3,
+ "end": 14620.44,
+ "text": "the"
+ },
+ {
+ "id": 31139,
+ "start": 14620.44,
+ "end": 14621.02,
+ "text": "MIT"
+ },
+ {
+ "id": 31140,
+ "start": 14621.02,
+ "end": 14621.58,
+ "text": "Technology"
+ },
+ {
+ "id": 31141,
+ "start": 14621.58,
+ "end": 14621.94,
+ "text": "Review"
+ },
+ {
+ "id": 31142,
+ "start": 14621.94,
+ "end": 14622.14,
+ "text": "back"
+ },
+ {
+ "id": 31143,
+ "start": 14622.14,
+ "end": 14622.28,
+ "text": "in"
+ },
+ {
+ "id": 31144,
+ "start": 14622.28,
+ "end": 14623.42,
+ "text": "2,012"
+ },
+ {
+ "id": 31145,
+ "start": 14623.42,
+ "end": 14624,
+ "text": "and"
+ },
+ {
+ "id": 31146,
+ "start": 14624,
+ "end": 14624.14,
+ "text": "it"
+ },
+ {
+ "id": 31147,
+ "start": 14624.14,
+ "end": 14624.48,
+ "text": "talks"
+ },
+ {
+ "id": 31148,
+ "start": 14624.48,
+ "end": 14624.96,
+ "text": "about"
+ },
+ {
+ "id": 31149,
+ "start": 14624.96,
+ "end": 14625.36,
+ "text": "how"
+ },
+ {
+ "id": 31150,
+ "start": 14625.36,
+ "end": 14625.94,
+ "text": "proud"
+ },
+ {
+ "id": 31151,
+ "start": 14625.94,
+ "end": 14626.14,
+ "text": "the"
+ },
+ {
+ "id": 31152,
+ "start": 14626.14,
+ "end": 14626.62,
+ "text": "Obama"
+ },
+ {
+ "id": 31153,
+ "start": 14626.62,
+ "end": 14627.28,
+ "text": "campaign"
+ },
+ {
+ "id": 31154,
+ "start": 14627.28,
+ "end": 14627.58,
+ "text": "was"
+ },
+ {
+ "id": 31155,
+ "start": 14627.58,
+ "end": 14627.74,
+ "text": "of"
+ },
+ {
+ "id": 31156,
+ "start": 14627.74,
+ "end": 14628.28,
+ "text": "exploiting"
+ },
+ {
+ "id": 31157,
+ "start": 14628.28,
+ "end": 14628.6,
+ "text": "data"
+ },
+ {
+ "id": 31158,
+ "start": 14628.6,
+ "end": 14628.74,
+ "text": "on"
+ },
+ {
+ "id": 31159,
+ "start": 14628.74,
+ "end": 14629.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 31160,
+ "start": 14629.34,
+ "end": 14629.5,
+ "text": "and"
+ },
+ {
+ "id": 31161,
+ "start": 14629.5,
+ "end": 14629.6,
+ "text": "the"
+ },
+ {
+ "id": 31162,
+ "start": 14629.6,
+ "end": 14630.52,
+ "text": "2,012"
+ },
+ {
+ "id": 31163,
+ "start": 14630.52,
+ "end": 14631,
+ "text": "campaign."
+ },
+ {
+ "id": 31164,
+ "start": 14631,
+ "end": 14631.12,
+ "text": "In"
+ },
+ {
+ "id": 31165,
+ "start": 14631.12,
+ "end": 14631.42,
+ "text": "fact,"
+ },
+ {
+ "id": 31166,
+ "start": 14631.42,
+ "end": 14632.08,
+ "text": "somebody"
+ },
+ {
+ "id": 31167,
+ "start": 14632.08,
+ "end": 14632.34,
+ "text": "asked"
+ },
+ {
+ "id": 31168,
+ "start": 14632.34,
+ "end": 14632.46,
+ "text": "you"
+ },
+ {
+ "id": 31169,
+ "start": 14632.46,
+ "end": 14632.76,
+ "text": "earlier"
+ },
+ {
+ "id": 31170,
+ "start": 14632.76,
+ "end": 14632.86,
+ "text": "if"
+ },
+ {
+ "id": 31171,
+ "start": 14632.86,
+ "end": 14632.96,
+ "text": "it"
+ },
+ {
+ "id": 31172,
+ "start": 14632.96,
+ "end": 14633.14,
+ "text": "made"
+ },
+ {
+ "id": 31173,
+ "start": 14633.14,
+ "end": 14633.24,
+ "text": "you"
+ },
+ {
+ "id": 31174,
+ "start": 14633.24,
+ "end": 14633.48,
+ "text": "mad"
+ },
+ {
+ "id": 31175,
+ "start": 14633.48,
+ "end": 14633.64,
+ "text": "about"
+ },
+ {
+ "id": 31176,
+ "start": 14633.64,
+ "end": 14633.8,
+ "text": "what"
+ },
+ {
+ "id": 31177,
+ "start": 14633.8,
+ "end": 14634.08,
+ "text": "camera"
+ },
+ {
+ "id": 31178,
+ "start": 14634.08,
+ "end": 14634.64,
+ "text": "analytic"
+ },
+ {
+ "id": 31179,
+ "start": 14634.64,
+ "end": 14635,
+ "text": "did"
+ },
+ {
+ "id": 31180,
+ "start": 14635,
+ "end": 14635.14,
+ "text": "and"
+ },
+ {
+ "id": 31181,
+ "start": 14635.14,
+ "end": 14635.3,
+ "text": "you"
+ },
+ {
+ "id": 31182,
+ "start": 14635.3,
+ "end": 14635.68,
+ "text": "rightfully"
+ },
+ {
+ "id": 31183,
+ "start": 14635.68,
+ "end": 14636.02,
+ "text": "answered."
+ },
+ {
+ "id": 31184,
+ "start": 14636.02,
+ "end": 14636.36,
+ "text": "Yes,"
+ },
+ {
+ "id": 31185,
+ "start": 14636.36,
+ "end": 14636.8,
+ "text": "but"
+ },
+ {
+ "id": 31186,
+ "start": 14636.8,
+ "end": 14637.06,
+ "text": "I"
+ },
+ {
+ "id": 31187,
+ "start": 14637.06,
+ "end": 14637.34,
+ "text": "think"
+ },
+ {
+ "id": 31188,
+ "start": 14637.34,
+ "end": 14637.5,
+ "text": "you"
+ },
+ {
+ "id": 31189,
+ "start": 14637.5,
+ "end": 14637.72,
+ "text": "should"
+ },
+ {
+ "id": 31190,
+ "start": 14637.72,
+ "end": 14638.16,
+ "text": "probably"
+ },
+ {
+ "id": 31191,
+ "start": 14638.16,
+ "end": 14638.3,
+ "text": "be"
+ },
+ {
+ "id": 31192,
+ "start": 14638.3,
+ "end": 14638.72,
+ "text": "equally"
+ },
+ {
+ "id": 31193,
+ "start": 14638.72,
+ "end": 14639.06,
+ "text": "mad"
+ },
+ {
+ "id": 31194,
+ "start": 14639.06,
+ "end": 14639.24,
+ "text": "when"
+ },
+ {
+ "id": 31195,
+ "start": 14639.24,
+ "end": 14639.32,
+ "text": "a"
+ },
+ {
+ "id": 31196,
+ "start": 14639.32,
+ "end": 14639.78,
+ "text": "former"
+ },
+ {
+ "id": 31197,
+ "start": 14639.78,
+ "end": 14640.28,
+ "text": "campaign"
+ },
+ {
+ "id": 31198,
+ "start": 14640.28,
+ "end": 14640.84,
+ "text": "director"
+ },
+ {
+ "id": 31199,
+ "start": 14640.84,
+ "end": 14641.72,
+ "text": "of"
+ },
+ {
+ "id": 31200,
+ "start": 14641.72,
+ "end": 14641.84,
+ "text": "the"
+ },
+ {
+ "id": 31201,
+ "start": 14641.84,
+ "end": 14642.26,
+ "text": "Obama"
+ },
+ {
+ "id": 31202,
+ "start": 14642.26,
+ "end": 14642.94,
+ "text": "campaign"
+ },
+ {
+ "id": 31203,
+ "start": 14642.94,
+ "end": 14643.46,
+ "text": "proudly"
+ },
+ {
+ "id": 31204,
+ "start": 14643.46,
+ "end": 14644.02,
+ "text": "tweeted"
+ },
+ {
+ "id": 31205,
+ "start": 14644.02,
+ "end": 14644.6,
+ "text": "Facebook"
+ },
+ {
+ "id": 31206,
+ "start": 14644.6,
+ "end": 14644.78,
+ "text": "was"
+ },
+ {
+ "id": 31207,
+ "start": 14644.78,
+ "end": 14645.44,
+ "text": "surprised"
+ },
+ {
+ "id": 31208,
+ "start": 14645.44,
+ "end": 14645.64,
+ "text": "we"
+ },
+ {
+ "id": 31209,
+ "start": 14645.64,
+ "end": 14645.82,
+ "text": "were"
+ },
+ {
+ "id": 31210,
+ "start": 14645.82,
+ "end": 14646.12,
+ "text": "able"
+ },
+ {
+ "id": 31211,
+ "start": 14646.12,
+ "end": 14646.3,
+ "text": "to"
+ },
+ {
+ "id": 31212,
+ "start": 14646.3,
+ "end": 14646.68,
+ "text": "suck"
+ },
+ {
+ "id": 31213,
+ "start": 14646.68,
+ "end": 14647.34,
+ "text": "out"
+ },
+ {
+ "id": 31214,
+ "start": 14647.34,
+ "end": 14647.82,
+ "text": "the"
+ },
+ {
+ "id": 31215,
+ "start": 14647.82,
+ "end": 14648.18,
+ "text": "whole"
+ },
+ {
+ "id": 31216,
+ "start": 14648.18,
+ "end": 14648.64,
+ "text": "social"
+ },
+ {
+ "id": 31217,
+ "start": 14648.64,
+ "end": 14649.12,
+ "text": "graph."
+ },
+ {
+ "id": 31218,
+ "start": 14649.12,
+ "end": 14649.92,
+ "text": "But"
+ },
+ {
+ "id": 31219,
+ "start": 14649.92,
+ "end": 14650.06,
+ "text": "they"
+ },
+ {
+ "id": 31220,
+ "start": 14650.06,
+ "end": 14650.3,
+ "text": "didn't"
+ },
+ {
+ "id": 31221,
+ "start": 14650.3,
+ "end": 14650.58,
+ "text": "stop"
+ },
+ {
+ "id": 31222,
+ "start": 14650.58,
+ "end": 14650.76,
+ "text": "us"
+ },
+ {
+ "id": 31223,
+ "start": 14650.76,
+ "end": 14651.02,
+ "text": "once"
+ },
+ {
+ "id": 31224,
+ "start": 14651.02,
+ "end": 14651.16,
+ "text": "they"
+ },
+ {
+ "id": 31225,
+ "start": 14651.16,
+ "end": 14651.7,
+ "text": "realized"
+ },
+ {
+ "id": 31226,
+ "start": 14651.7,
+ "end": 14652.32,
+ "text": "that"
+ },
+ {
+ "id": 31227,
+ "start": 14652.32,
+ "end": 14652.48,
+ "text": "was"
+ },
+ {
+ "id": 31228,
+ "start": 14652.48,
+ "end": 14652.64,
+ "text": "what"
+ },
+ {
+ "id": 31229,
+ "start": 14652.64,
+ "end": 14652.76,
+ "text": "we"
+ },
+ {
+ "id": 31230,
+ "start": 14652.76,
+ "end": 14652.96,
+ "text": "were"
+ },
+ {
+ "id": 31231,
+ "start": 14652.96,
+ "end": 14653.26,
+ "text": "doing."
+ },
+ {
+ "id": 31232,
+ "start": 14653.26,
+ "end": 14653.96,
+ "text": "So"
+ },
+ {
+ "id": 31233,
+ "start": 14653.96,
+ "end": 14654.08,
+ "text": "you"
+ },
+ {
+ "id": 31234,
+ "start": 14654.08,
+ "end": 14654.54,
+ "text": "clearly"
+ },
+ {
+ "id": 31235,
+ "start": 14654.54,
+ "end": 14654.8,
+ "text": "had"
+ },
+ {
+ "id": 31236,
+ "start": 14654.8,
+ "end": 14655,
+ "text": "some"
+ },
+ {
+ "id": 31237,
+ "start": 14655,
+ "end": 14655.32,
+ "text": "people"
+ },
+ {
+ "id": 31238,
+ "start": 14655.32,
+ "end": 14655.52,
+ "text": "and"
+ },
+ {
+ "id": 31239,
+ "start": 14655.52,
+ "end": 14655.68,
+ "text": "your"
+ },
+ {
+ "id": 31240,
+ "start": 14655.68,
+ "end": 14656.38,
+ "text": "employee."
+ },
+ {
+ "id": 31241,
+ "start": 14656.38,
+ "end": 14657.32,
+ "text": "That"
+ },
+ {
+ "id": 31242,
+ "start": 14657.32,
+ "end": 14657.88,
+ "text": "apparently"
+ },
+ {
+ "id": 31243,
+ "start": 14657.88,
+ "end": 14658.06,
+ "text": "knew"
+ },
+ {
+ "id": 31244,
+ "start": 14658.06,
+ "end": 14658.22,
+ "text": "it"
+ },
+ {
+ "id": 31245,
+ "start": 14658.22,
+ "end": 14658.34,
+ "text": "at"
+ },
+ {
+ "id": 31246,
+ "start": 14658.34,
+ "end": 14658.52,
+ "text": "least"
+ },
+ {
+ "id": 31247,
+ "start": 14658.52,
+ "end": 14658.72,
+ "text": "that's"
+ },
+ {
+ "id": 31248,
+ "start": 14658.72,
+ "end": 14658.88,
+ "text": "what"
+ },
+ {
+ "id": 31249,
+ "start": 14658.88,
+ "end": 14659.08,
+ "text": "this"
+ },
+ {
+ "id": 31250,
+ "start": 14659.08,
+ "end": 14659.4,
+ "text": "person"
+ },
+ {
+ "id": 31251,
+ "start": 14659.4,
+ "end": 14659.66,
+ "text": "said"
+ },
+ {
+ "id": 31252,
+ "start": 14659.66,
+ "end": 14659.82,
+ "text": "on"
+ },
+ {
+ "id": 31253,
+ "start": 14659.82,
+ "end": 14660.16,
+ "text": "Twitter."
+ },
+ {
+ "id": 31254,
+ "start": 14660.16,
+ "end": 14660.3,
+ "text": "And"
+ },
+ {
+ "id": 31255,
+ "start": 14660.3,
+ "end": 14660.5,
+ "text": "thank"
+ },
+ {
+ "id": 31256,
+ "start": 14660.5,
+ "end": 14660.84,
+ "text": "goodness"
+ },
+ {
+ "id": 31257,
+ "start": 14660.84,
+ "end": 14661,
+ "text": "for"
+ },
+ {
+ "id": 31258,
+ "start": 14661,
+ "end": 14661.22,
+ "text": "way"
+ },
+ {
+ "id": 31259,
+ "start": 14661.22,
+ "end": 14661.46,
+ "text": "back."
+ },
+ {
+ "id": 31260,
+ "start": 14661.46,
+ "end": 14661.64,
+ "text": "And"
+ },
+ {
+ "id": 31261,
+ "start": 14661.64,
+ "end": 14661.8,
+ "text": "some"
+ },
+ {
+ "id": 31262,
+ "start": 14661.8,
+ "end": 14661.88,
+ "text": "of"
+ },
+ {
+ "id": 31263,
+ "start": 14661.88,
+ "end": 14662,
+ "text": "the"
+ },
+ {
+ "id": 31264,
+ "start": 14662,
+ "end": 14662.2,
+ "text": "other"
+ },
+ {
+ "id": 31265,
+ "start": 14662.2,
+ "end": 14662.56,
+ "text": "history,"
+ },
+ {
+ "id": 31266,
+ "start": 14662.56,
+ "end": 14662.94,
+ "text": "Grabber"
+ },
+ {
+ "id": 31267,
+ "start": 14662.94,
+ "end": 14663.32,
+ "text": "machines"
+ },
+ {
+ "id": 31268,
+ "start": 14663.32,
+ "end": 14663.48,
+ "text": "I'm"
+ },
+ {
+ "id": 31269,
+ "start": 14663.48,
+ "end": 14663.66,
+ "text": "sure"
+ },
+ {
+ "id": 31270,
+ "start": 14663.66,
+ "end": 14663.78,
+ "text": "we"
+ },
+ {
+ "id": 31271,
+ "start": 14663.78,
+ "end": 14663.88,
+ "text": "can"
+ },
+ {
+ "id": 31272,
+ "start": 14663.88,
+ "end": 14664,
+ "text": "get"
+ },
+ {
+ "id": 31273,
+ "start": 14664,
+ "end": 14664.16,
+ "text": "this"
+ },
+ {
+ "id": 31274,
+ "start": 14664.16,
+ "end": 14664.44,
+ "text": "Tweet"
+ },
+ {
+ "id": 31275,
+ "start": 14664.44,
+ "end": 14664.66,
+ "text": "back"
+ },
+ {
+ "id": 31276,
+ "start": 14664.66,
+ "end": 14664.84,
+ "text": "and"
+ },
+ {
+ "id": 31277,
+ "start": 14664.84,
+ "end": 14664.96,
+ "text": "get"
+ },
+ {
+ "id": 31278,
+ "start": 14664.96,
+ "end": 14665.1,
+ "text": "in"
+ },
+ {
+ "id": 31279,
+ "start": 14665.1,
+ "end": 14665.2,
+ "text": "the"
+ },
+ {
+ "id": 31280,
+ "start": 14665.2,
+ "end": 14665.42,
+ "text": "right"
+ },
+ {
+ "id": 31281,
+ "start": 14665.42,
+ "end": 14666.82,
+ "text": "context."
+ },
+ {
+ "id": 31282,
+ "start": 14666.82,
+ "end": 14667.58,
+ "text": "I"
+ },
+ {
+ "id": 31283,
+ "start": 14667.58,
+ "end": 14667.94,
+ "text": "think"
+ },
+ {
+ "id": 31284,
+ "start": 14667.94,
+ "end": 14668.32,
+ "text": "when"
+ },
+ {
+ "id": 31285,
+ "start": 14668.32,
+ "end": 14668.46,
+ "text": "you"
+ },
+ {
+ "id": 31286,
+ "start": 14668.46,
+ "end": 14668.7,
+ "text": "do"
+ },
+ {
+ "id": 31287,
+ "start": 14668.7,
+ "end": 14669,
+ "text": "your"
+ },
+ {
+ "id": 31288,
+ "start": 14669,
+ "end": 14669.58,
+ "text": "research"
+ },
+ {
+ "id": 31289,
+ "start": 14669.58,
+ "end": 14669.78,
+ "text": "it's"
+ },
+ {
+ "id": 31290,
+ "start": 14669.78,
+ "end": 14670.3,
+ "text": "important"
+ },
+ {
+ "id": 31291,
+ "start": 14670.3,
+ "end": 14670.46,
+ "text": "to"
+ },
+ {
+ "id": 31292,
+ "start": 14670.46,
+ "end": 14670.6,
+ "text": "get"
+ },
+ {
+ "id": 31293,
+ "start": 14670.6,
+ "end": 14670.8,
+ "text": "the"
+ },
+ {
+ "id": 31294,
+ "start": 14670.8,
+ "end": 14671.08,
+ "text": "whole"
+ },
+ {
+ "id": 31295,
+ "start": 14671.08,
+ "end": 14671.36,
+ "text": "view,"
+ },
+ {
+ "id": 31296,
+ "start": 14671.36,
+ "end": 14671.62,
+ "text": "I've"
+ },
+ {
+ "id": 31297,
+ "start": 14671.62,
+ "end": 14671.82,
+ "text": "worked"
+ },
+ {
+ "id": 31298,
+ "start": 14671.82,
+ "end": 14671.94,
+ "text": "in"
+ },
+ {
+ "id": 31299,
+ "start": 14671.94,
+ "end": 14672.2,
+ "text": "data"
+ },
+ {
+ "id": 31300,
+ "start": 14672.2,
+ "end": 14672.66,
+ "text": "analytics"
+ },
+ {
+ "id": 31301,
+ "start": 14672.66,
+ "end": 14673.14,
+ "text": "practice"
+ },
+ {
+ "id": 31302,
+ "start": 14673.14,
+ "end": 14673.3,
+ "text": "for"
+ },
+ {
+ "id": 31303,
+ "start": 14673.3,
+ "end": 14673.36,
+ "text": "a"
+ },
+ {
+ "id": 31304,
+ "start": 14673.36,
+ "end": 14673.54,
+ "text": "good"
+ },
+ {
+ "id": 31305,
+ "start": 14673.54,
+ "end": 14673.74,
+ "text": "part"
+ },
+ {
+ "id": 31306,
+ "start": 14673.74,
+ "end": 14673.82,
+ "text": "of"
+ },
+ {
+ "id": 31307,
+ "start": 14673.82,
+ "end": 14673.98,
+ "text": "my"
+ },
+ {
+ "id": 31308,
+ "start": 14673.98,
+ "end": 14674.36,
+ "text": "career."
+ },
+ {
+ "id": 31309,
+ "start": 14674.36,
+ "end": 14675.04,
+ "text": "And"
+ },
+ {
+ "id": 31310,
+ "start": 14675.04,
+ "end": 14675.2,
+ "text": "for"
+ },
+ {
+ "id": 31311,
+ "start": 14675.2,
+ "end": 14675.62,
+ "text": "anybody"
+ },
+ {
+ "id": 31312,
+ "start": 14675.62,
+ "end": 14675.76,
+ "text": "to"
+ },
+ {
+ "id": 31313,
+ "start": 14675.76,
+ "end": 14676.08,
+ "text": "pretend"
+ },
+ {
+ "id": 31314,
+ "start": 14676.08,
+ "end": 14676.24,
+ "text": "that"
+ },
+ {
+ "id": 31315,
+ "start": 14676.24,
+ "end": 14676.5,
+ "text": "camera"
+ },
+ {
+ "id": 31316,
+ "start": 14676.5,
+ "end": 14677.1,
+ "text": "analytical"
+ },
+ {
+ "id": 31317,
+ "start": 14677.1,
+ "end": 14677.28,
+ "text": "is"
+ },
+ {
+ "id": 31318,
+ "start": 14677.28,
+ "end": 14677.4,
+ "text": "the"
+ },
+ {
+ "id": 31319,
+ "start": 14677.4,
+ "end": 14677.66,
+ "text": "first"
+ },
+ {
+ "id": 31320,
+ "start": 14677.66,
+ "end": 14678,
+ "text": "person"
+ },
+ {
+ "id": 31321,
+ "start": 14678,
+ "end": 14678.08,
+ "text": "to"
+ },
+ {
+ "id": 31322,
+ "start": 14678.08,
+ "end": 14678.48,
+ "text": "exploit"
+ },
+ {
+ "id": 31323,
+ "start": 14678.48,
+ "end": 14678.9,
+ "text": "data,"
+ },
+ {
+ "id": 31324,
+ "start": 14678.9,
+ "end": 14679.54,
+ "text": "clearly"
+ },
+ {
+ "id": 31325,
+ "start": 14679.54,
+ "end": 14679.82,
+ "text": "doesn't"
+ },
+ {
+ "id": 31326,
+ "start": 14679.82,
+ "end": 14680.06,
+ "text": "work"
+ },
+ {
+ "id": 31327,
+ "start": 14680.06,
+ "end": 14680.22,
+ "text": "or"
+ },
+ {
+ "id": 31328,
+ "start": 14680.22,
+ "end": 14680.54,
+ "text": "hasn't"
+ },
+ {
+ "id": 31329,
+ "start": 14680.54,
+ "end": 14680.76,
+ "text": "worked"
+ },
+ {
+ "id": 31330,
+ "start": 14680.76,
+ "end": 14680.9,
+ "text": "in"
+ },
+ {
+ "id": 31331,
+ "start": 14680.9,
+ "end": 14681,
+ "text": "the"
+ },
+ {
+ "id": 31332,
+ "start": 14681,
+ "end": 14681.2,
+ "text": "data"
+ },
+ {
+ "id": 31333,
+ "start": 14681.2,
+ "end": 14681.66,
+ "text": "analytics"
+ },
+ {
+ "id": 31334,
+ "start": 14681.66,
+ "end": 14682.02,
+ "text": "field."
+ },
+ {
+ "id": 31335,
+ "start": 14682.02,
+ "end": 14682.22,
+ "text": "So"
+ },
+ {
+ "id": 31336,
+ "start": 14682.22,
+ "end": 14682.46,
+ "text": "when"
+ },
+ {
+ "id": 31337,
+ "start": 14682.46,
+ "end": 14682.62,
+ "text": "you"
+ },
+ {
+ "id": 31338,
+ "start": 14682.62,
+ "end": 14682.76,
+ "text": "go"
+ },
+ {
+ "id": 31339,
+ "start": 14682.76,
+ "end": 14682.98,
+ "text": "back"
+ },
+ {
+ "id": 31340,
+ "start": 14682.98,
+ "end": 14683.16,
+ "text": "and"
+ },
+ {
+ "id": 31341,
+ "start": 14683.16,
+ "end": 14683.34,
+ "text": "do"
+ },
+ {
+ "id": 31342,
+ "start": 14683.34,
+ "end": 14684.04,
+ "text": "your"
+ },
+ {
+ "id": 31343,
+ "start": 14684.04,
+ "end": 14684.98,
+ "text": "research"
+ },
+ {
+ "id": 31344,
+ "start": 14684.98,
+ "end": 14685.42,
+ "text": "on"
+ },
+ {
+ "id": 31345,
+ "start": 14685.42,
+ "end": 14685.76,
+ "text": "camera"
+ },
+ {
+ "id": 31346,
+ "start": 14685.76,
+ "end": 14686.34,
+ "text": "analytic,"
+ },
+ {
+ "id": 31347,
+ "start": 14686.34,
+ "end": 14686.52,
+ "text": "I"
+ },
+ {
+ "id": 31348,
+ "start": 14686.52,
+ "end": 14686.76,
+ "text": "would"
+ },
+ {
+ "id": 31349,
+ "start": 14686.76,
+ "end": 14687.24,
+ "text": "personally"
+ },
+ {
+ "id": 31350,
+ "start": 14687.24,
+ "end": 14687.8,
+ "text": "appreciate"
+ },
+ {
+ "id": 31351,
+ "start": 14687.8,
+ "end": 14687.9,
+ "text": "it"
+ },
+ {
+ "id": 31352,
+ "start": 14687.9,
+ "end": 14688,
+ "text": "if"
+ },
+ {
+ "id": 31353,
+ "start": 14688,
+ "end": 14688.22,
+ "text": "you'd"
+ },
+ {
+ "id": 31354,
+ "start": 14688.22,
+ "end": 14688.48,
+ "text": "start"
+ },
+ {
+ "id": 31355,
+ "start": 14688.48,
+ "end": 14688.74,
+ "text": "back"
+ },
+ {
+ "id": 31356,
+ "start": 14688.74,
+ "end": 14688.9,
+ "text": "from"
+ },
+ {
+ "id": 31357,
+ "start": 14688.9,
+ "end": 14689.02,
+ "text": "the"
+ },
+ {
+ "id": 31358,
+ "start": 14689.02,
+ "end": 14689.34,
+ "text": "first"
+ },
+ {
+ "id": 31359,
+ "start": 14689.34,
+ "end": 14689.8,
+ "text": "known"
+ },
+ {
+ "id": 31360,
+ "start": 14689.8,
+ "end": 14690.1,
+ "text": "high"
+ },
+ {
+ "id": 31361,
+ "start": 14690.1,
+ "end": 14690.62,
+ "text": "profile"
+ },
+ {
+ "id": 31362,
+ "start": 14690.62,
+ "end": 14691.12,
+ "text": "national"
+ },
+ {
+ "id": 31363,
+ "start": 14691.12,
+ "end": 14691.64,
+ "text": "campaign,"
+ },
+ {
+ "id": 31364,
+ "start": 14691.64,
+ "end": 14691.78,
+ "text": "that"
+ },
+ {
+ "id": 31365,
+ "start": 14691.78,
+ "end": 14692.18,
+ "text": "exploit"
+ },
+ {
+ "id": 31366,
+ "start": 14692.18,
+ "end": 14692.28,
+ "text": "a"
+ },
+ {
+ "id": 31367,
+ "start": 14692.28,
+ "end": 14692.74,
+ "text": "Facebook"
+ },
+ {
+ "id": 31368,
+ "start": 14692.74,
+ "end": 14693.08,
+ "text": "data."
+ },
+ {
+ "id": 31369,
+ "start": 14693.08,
+ "end": 14693.62,
+ "text": "In"
+ },
+ {
+ "id": 31370,
+ "start": 14693.62,
+ "end": 14693.92,
+ "text": "fact,"
+ },
+ {
+ "id": 31371,
+ "start": 14693.92,
+ "end": 14694.14,
+ "text": "they"
+ },
+ {
+ "id": 31372,
+ "start": 14694.14,
+ "end": 14694.52,
+ "text": "published"
+ },
+ {
+ "id": 31373,
+ "start": 14694.52,
+ "end": 14694.66,
+ "text": "an"
+ },
+ {
+ "id": 31374,
+ "start": 14694.66,
+ "end": 14695.4,
+ "text": "app"
+ },
+ {
+ "id": 31375,
+ "start": 14695.4,
+ "end": 14695.52,
+ "text": "that"
+ },
+ {
+ "id": 31376,
+ "start": 14695.52,
+ "end": 14695.72,
+ "text": "said"
+ },
+ {
+ "id": 31377,
+ "start": 14695.72,
+ "end": 14695.8,
+ "text": "it"
+ },
+ {
+ "id": 31378,
+ "start": 14695.8,
+ "end": 14696,
+ "text": "would"
+ },
+ {
+ "id": 31379,
+ "start": 14696,
+ "end": 14696.36,
+ "text": "grab"
+ },
+ {
+ "id": 31380,
+ "start": 14696.36,
+ "end": 14697,
+ "text": "information"
+ },
+ {
+ "id": 31381,
+ "start": 14697,
+ "end": 14697.36,
+ "text": "about"
+ },
+ {
+ "id": 31382,
+ "start": 14697.36,
+ "end": 14698.18,
+ "text": "my"
+ },
+ {
+ "id": 31383,
+ "start": 14698.18,
+ "end": 14698.64,
+ "text": "friends,"
+ },
+ {
+ "id": 31384,
+ "start": 14698.64,
+ "end": 14698.96,
+ "text": "their"
+ },
+ {
+ "id": 31385,
+ "start": 14698.96,
+ "end": 14699.22,
+ "text": "birth,"
+ },
+ {
+ "id": 31386,
+ "start": 14699.22,
+ "end": 14699.5,
+ "text": "dates,"
+ },
+ {
+ "id": 31387,
+ "start": 14699.5,
+ "end": 14700.14,
+ "text": "locations"
+ },
+ {
+ "id": 31388,
+ "start": 14700.14,
+ "end": 14700.32,
+ "text": "and"
+ },
+ {
+ "id": 31389,
+ "start": 14700.32,
+ "end": 14700.62,
+ "text": "like"
+ },
+ {
+ "id": 31390,
+ "start": 14700.62,
+ "end": 14701.1,
+ "text": "so,"
+ },
+ {
+ "id": 31391,
+ "start": 14701.1,
+ "end": 14701.7,
+ "text": "presumably,"
+ },
+ {
+ "id": 31392,
+ "start": 14701.7,
+ "end": 14701.8,
+ "text": "if"
+ },
+ {
+ "id": 31393,
+ "start": 14701.8,
+ "end": 14701.94,
+ "text": "I"
+ },
+ {
+ "id": 31394,
+ "start": 14701.94,
+ "end": 14702.44,
+ "text": "downloaded"
+ },
+ {
+ "id": 31395,
+ "start": 14702.44,
+ "end": 14702.6,
+ "text": "that"
+ },
+ {
+ "id": 31396,
+ "start": 14702.6,
+ "end": 14702.94,
+ "text": "out,"
+ },
+ {
+ "id": 31397,
+ "start": 14702.94,
+ "end": 14703.1,
+ "text": "that"
+ },
+ {
+ "id": 31398,
+ "start": 14703.1,
+ "end": 14703.26,
+ "text": "was"
+ },
+ {
+ "id": 31399,
+ "start": 14703.26,
+ "end": 14703.62,
+ "text": "published"
+ },
+ {
+ "id": 31400,
+ "start": 14703.62,
+ "end": 14703.74,
+ "text": "by"
+ },
+ {
+ "id": 31401,
+ "start": 14703.74,
+ "end": 14703.86,
+ "text": "the"
+ },
+ {
+ "id": 31402,
+ "start": 14703.86,
+ "end": 14704.26,
+ "text": "Obama"
+ },
+ {
+ "id": 31403,
+ "start": 14704.26,
+ "end": 14704.76,
+ "text": "campaign"
+ },
+ {
+ "id": 31404,
+ "start": 14704.76,
+ "end": 14704.94,
+ "text": "I've"
+ },
+ {
+ "id": 31405,
+ "start": 14704.94,
+ "end": 14705.12,
+ "text": "got"
+ },
+ {
+ "id": 31406,
+ "start": 14705.12,
+ "end": 14706.76,
+ "text": "4,900"
+ },
+ {
+ "id": 31407,
+ "start": 14706.76,
+ "end": 14707.6,
+ "text": "friends"
+ },
+ {
+ "id": 31408,
+ "start": 14707.6,
+ "end": 14707.78,
+ "text": "on"
+ },
+ {
+ "id": 31409,
+ "start": 14707.78,
+ "end": 14707.94,
+ "text": "my"
+ },
+ {
+ "id": 31410,
+ "start": 14707.94,
+ "end": 14708.42,
+ "text": "Facebook"
+ },
+ {
+ "id": 31411,
+ "start": 14708.42,
+ "end": 14708.74,
+ "text": "page."
+ },
+ {
+ "id": 31412,
+ "start": 14708.74,
+ "end": 14708.98,
+ "text": "I"
+ },
+ {
+ "id": 31413,
+ "start": 14708.98,
+ "end": 14709.44,
+ "text": "delete"
+ },
+ {
+ "id": 31414,
+ "start": 14709.44,
+ "end": 14710.02,
+ "text": "the"
+ },
+ {
+ "id": 31415,
+ "start": 14710.02,
+ "end": 14710.42,
+ "text": "haters"
+ },
+ {
+ "id": 31416,
+ "start": 14710.42,
+ "end": 14710.74,
+ "text": "and"
+ },
+ {
+ "id": 31417,
+ "start": 14710.74,
+ "end": 14711.18,
+ "text": "save"
+ },
+ {
+ "id": 31418,
+ "start": 14711.18,
+ "end": 14711.42,
+ "text": "room"
+ },
+ {
+ "id": 31419,
+ "start": 14711.42,
+ "end": 14711.54,
+ "text": "for"
+ },
+ {
+ "id": 31420,
+ "start": 14711.54,
+ "end": 14711.88,
+ "text": "family"
+ },
+ {
+ "id": 31421,
+ "start": 14711.88,
+ "end": 14712.18,
+ "text": "members"
+ },
+ {
+ "id": 31422,
+ "start": 14712.18,
+ "end": 14712.34,
+ "text": "and"
+ },
+ {
+ "id": 31423,
+ "start": 14712.34,
+ "end": 14712.56,
+ "text": "true"
+ },
+ {
+ "id": 31424,
+ "start": 14712.56,
+ "end": 14712.84,
+ "text": "friends"
+ },
+ {
+ "id": 31425,
+ "start": 14712.84,
+ "end": 14712.98,
+ "text": "on"
+ },
+ {
+ "id": 31426,
+ "start": 14712.98,
+ "end": 14713.12,
+ "text": "my"
+ },
+ {
+ "id": 31427,
+ "start": 14713.12,
+ "end": 14713.54,
+ "text": "personal"
+ },
+ {
+ "id": 31428,
+ "start": 14713.54,
+ "end": 14713.82,
+ "text": "page"
+ },
+ {
+ "id": 31429,
+ "start": 14713.82,
+ "end": 14714.1,
+ "text": "I'm"
+ },
+ {
+ "id": 31430,
+ "start": 14714.1,
+ "end": 14714.26,
+ "text": "sure"
+ },
+ {
+ "id": 31431,
+ "start": 14714.26,
+ "end": 14714.66,
+ "text": "everybody"
+ },
+ {
+ "id": 31432,
+ "start": 14714.66,
+ "end": 14714.98,
+ "text": "does."
+ },
+ {
+ "id": 31433,
+ "start": 14714.98,
+ "end": 14715.7,
+ "text": "And"
+ },
+ {
+ "id": 31434,
+ "start": 14715.7,
+ "end": 14715.82,
+ "text": "that"
+ },
+ {
+ "id": 31435,
+ "start": 14715.82,
+ "end": 14716.06,
+ "text": "means"
+ },
+ {
+ "id": 31436,
+ "start": 14716.06,
+ "end": 14716.22,
+ "text": "if"
+ },
+ {
+ "id": 31437,
+ "start": 14716.22,
+ "end": 14716.36,
+ "text": "I"
+ },
+ {
+ "id": 31438,
+ "start": 14716.36,
+ "end": 14716.62,
+ "text": "click"
+ },
+ {
+ "id": 31439,
+ "start": 14716.62,
+ "end": 14716.86,
+ "text": "just"
+ },
+ {
+ "id": 31440,
+ "start": 14716.86,
+ "end": 14717.02,
+ "text": "on"
+ },
+ {
+ "id": 31441,
+ "start": 14717.02,
+ "end": 14717.22,
+ "text": "that"
+ },
+ {
+ "id": 31442,
+ "start": 14717.22,
+ "end": 14717.54,
+ "text": "app,"
+ },
+ {
+ "id": 31443,
+ "start": 14717.54,
+ "end": 14717.74,
+ "text": "I"
+ },
+ {
+ "id": 31444,
+ "start": 14717.74,
+ "end": 14718,
+ "text": "would"
+ },
+ {
+ "id": 31445,
+ "start": 14718,
+ "end": 14718.86,
+ "text": "have"
+ },
+ {
+ "id": 31446,
+ "start": 14718.86,
+ "end": 14719.86,
+ "text": "approved"
+ },
+ {
+ "id": 31447,
+ "start": 14719.86,
+ "end": 14720.28,
+ "text": "the"
+ },
+ {
+ "id": 31448,
+ "start": 14720.28,
+ "end": 14721.05,
+ "text": "access"
+ },
+ {
+ "id": 31449,
+ "start": 14721.05,
+ "end": 14721.89,
+ "text": "of"
+ },
+ {
+ "id": 31450,
+ "start": 14721.89,
+ "end": 14722.89,
+ "text": "birth,"
+ },
+ {
+ "id": 31451,
+ "start": 14722.89,
+ "end": 14723.29,
+ "text": "dates"
+ },
+ {
+ "id": 31452,
+ "start": 14723.29,
+ "end": 14724.13,
+ "text": "locations"
+ },
+ {
+ "id": 31453,
+ "start": 14724.13,
+ "end": 14724.33,
+ "text": "and"
+ },
+ {
+ "id": 31454,
+ "start": 14724.33,
+ "end": 14724.79,
+ "text": "likes"
+ },
+ {
+ "id": 31455,
+ "start": 14724.79,
+ "end": 14725.01,
+ "text": "of"
+ },
+ {
+ "id": 31456,
+ "start": 14725.01,
+ "end": 14725.21,
+ "text": "some"
+ },
+ {
+ "id": 31457,
+ "start": 14725.21,
+ "end": 14725.95,
+ "text": "4,900"
+ },
+ {
+ "id": 31458,
+ "start": 14725.95,
+ "end": 14726.23,
+ "text": "people"
+ },
+ {
+ "id": 31459,
+ "start": 14726.23,
+ "end": 14726.53,
+ "text": "without"
+ },
+ {
+ "id": 31460,
+ "start": 14726.53,
+ "end": 14726.75,
+ "text": "their"
+ },
+ {
+ "id": 31461,
+ "start": 14726.75,
+ "end": 14727.67,
+ "text": "concern."
+ },
+ {
+ "id": 31462,
+ "start": 14727.67,
+ "end": 14727.85,
+ "text": "So"
+ },
+ {
+ "id": 31463,
+ "start": 14727.85,
+ "end": 14727.99,
+ "text": "as"
+ },
+ {
+ "id": 31464,
+ "start": 14727.99,
+ "end": 14728.15,
+ "text": "you"
+ },
+ {
+ "id": 31465,
+ "start": 14728.15,
+ "end": 14728.27,
+ "text": "do"
+ },
+ {
+ "id": 31466,
+ "start": 14728.27,
+ "end": 14728.39,
+ "text": "the"
+ },
+ {
+ "id": 31467,
+ "start": 14728.39,
+ "end": 14728.99,
+ "text": "chronology,"
+ },
+ {
+ "id": 31468,
+ "start": 14728.99,
+ "end": 14729.07,
+ "text": "I"
+ },
+ {
+ "id": 31469,
+ "start": 14729.07,
+ "end": 14729.25,
+ "text": "think"
+ },
+ {
+ "id": 31470,
+ "start": 14729.25,
+ "end": 14729.43,
+ "text": "can"
+ },
+ {
+ "id": 31471,
+ "start": 14729.43,
+ "end": 14729.53,
+ "text": "be"
+ },
+ {
+ "id": 31472,
+ "start": 14729.53,
+ "end": 14729.77,
+ "text": "very"
+ },
+ {
+ "id": 31473,
+ "start": 14729.77,
+ "end": 14730.19,
+ "text": "helpful"
+ },
+ {
+ "id": 31474,
+ "start": 14730.19,
+ "end": 14730.45,
+ "text": "so"
+ },
+ {
+ "id": 31475,
+ "start": 14730.45,
+ "end": 14730.57,
+ "text": "that"
+ },
+ {
+ "id": 31476,
+ "start": 14730.57,
+ "end": 14730.69,
+ "text": "we"
+ },
+ {
+ "id": 31477,
+ "start": 14730.69,
+ "end": 14730.83,
+ "text": "can"
+ },
+ {
+ "id": 31478,
+ "start": 14730.83,
+ "end": 14731.05,
+ "text": "take"
+ },
+ {
+ "id": 31479,
+ "start": 14731.05,
+ "end": 14731.31,
+ "text": "away"
+ },
+ {
+ "id": 31480,
+ "start": 14731.31,
+ "end": 14731.47,
+ "text": "the"
+ },
+ {
+ "id": 31481,
+ "start": 14731.47,
+ "end": 14731.97,
+ "text": "partisan"
+ },
+ {
+ "id": 31482,
+ "start": 14731.97,
+ "end": 14732.31,
+ "text": "rhetoric"
+ },
+ {
+ "id": 31483,
+ "start": 14732.31,
+ "end": 14732.57,
+ "text": "that's"
+ },
+ {
+ "id": 31484,
+ "start": 14732.57,
+ "end": 14732.77,
+ "text": "going"
+ },
+ {
+ "id": 31485,
+ "start": 14732.77,
+ "end": 14732.89,
+ "text": "on."
+ },
+ {
+ "id": 31486,
+ "start": 14732.89,
+ "end": 14733.05,
+ "text": "Like,"
+ },
+ {
+ "id": 31487,
+ "start": 14733.05,
+ "end": 14733.19,
+ "text": "this"
+ },
+ {
+ "id": 31488,
+ "start": 14733.19,
+ "end": 14733.33,
+ "text": "is"
+ },
+ {
+ "id": 31489,
+ "start": 14733.33,
+ "end": 14733.41,
+ "text": "a"
+ },
+ {
+ "id": 31490,
+ "start": 14733.41,
+ "end": 14734.01,
+ "text": "Republican."
+ },
+ {
+ "id": 31491,
+ "start": 14734.01,
+ "end": 14734.29,
+ "text": "Only"
+ },
+ {
+ "id": 31492,
+ "start": 14734.29,
+ "end": 14735.34,
+ "text": "issue"
+ },
+ {
+ "id": 31493,
+ "start": 14735.34,
+ "end": 14736.12,
+ "text": "it's"
+ },
+ {
+ "id": 31494,
+ "start": 14736.12,
+ "end": 14736.3,
+ "text": "a"
+ },
+ {
+ "id": 31495,
+ "start": 14736.3,
+ "end": 14736.74,
+ "text": "broad"
+ },
+ {
+ "id": 31496,
+ "start": 14736.74,
+ "end": 14737.02,
+ "text": "based"
+ },
+ {
+ "id": 31497,
+ "start": 14737.02,
+ "end": 14737.36,
+ "text": "issue"
+ },
+ {
+ "id": 31498,
+ "start": 14737.36,
+ "end": 14737.54,
+ "text": "that"
+ },
+ {
+ "id": 31499,
+ "start": 14737.54,
+ "end": 14737.78,
+ "text": "needs"
+ },
+ {
+ "id": 31500,
+ "start": 14737.78,
+ "end": 14737.92,
+ "text": "to"
+ },
+ {
+ "id": 31501,
+ "start": 14737.92,
+ "end": 14738.04,
+ "text": "be"
+ },
+ {
+ "id": 31502,
+ "start": 14738.04,
+ "end": 14738.44,
+ "text": "fixed"
+ },
+ {
+ "id": 31503,
+ "start": 14738.44,
+ "end": 14738.68,
+ "text": "and"
+ },
+ {
+ "id": 31504,
+ "start": 14738.68,
+ "end": 14738.98,
+ "text": "bad"
+ },
+ {
+ "id": 31505,
+ "start": 14738.98,
+ "end": 14739.34,
+ "text": "actors"
+ },
+ {
+ "id": 31506,
+ "start": 14739.34,
+ "end": 14739.6,
+ "text": "that"
+ },
+ {
+ "id": 31507,
+ "start": 14739.6,
+ "end": 14739.84,
+ "text": "either"
+ },
+ {
+ "id": 31508,
+ "start": 14739.84,
+ "end": 14740.06,
+ "text": "into"
+ },
+ {
+ "id": 31509,
+ "start": 14740.06,
+ "end": 14740.16,
+ "text": "the"
+ },
+ {
+ "id": 31510,
+ "start": 14740.16,
+ "end": 14740.52,
+ "text": "political"
+ },
+ {
+ "id": 31511,
+ "start": 14740.52,
+ "end": 14740.98,
+ "text": "spectrum"
+ },
+ {
+ "id": 31512,
+ "start": 14740.98,
+ "end": 14741.18,
+ "text": "need"
+ },
+ {
+ "id": 31513,
+ "start": 14741.18,
+ "end": 14741.26,
+ "text": "to"
+ },
+ {
+ "id": 31514,
+ "start": 14741.26,
+ "end": 14741.34,
+ "text": "be"
+ },
+ {
+ "id": 31515,
+ "start": 14741.34,
+ "end": 14741.52,
+ "text": "held"
+ },
+ {
+ "id": 31516,
+ "start": 14741.52,
+ "end": 14742.02,
+ "text": "accountable."
+ },
+ {
+ "id": 31517,
+ "start": 14742.02,
+ "end": 14742.46,
+ "text": "And"
+ },
+ {
+ "id": 31518,
+ "start": 14742.46,
+ "end": 14742.58,
+ "text": "I"
+ },
+ {
+ "id": 31519,
+ "start": 14742.58,
+ "end": 14742.9,
+ "text": "trust"
+ },
+ {
+ "id": 31520,
+ "start": 14742.9,
+ "end": 14743.1,
+ "text": "that"
+ },
+ {
+ "id": 31521,
+ "start": 14743.1,
+ "end": 14743.86,
+ "text": "you"
+ },
+ {
+ "id": 31522,
+ "start": 14743.86,
+ "end": 14744,
+ "text": "all"
+ },
+ {
+ "id": 31523,
+ "start": 14744,
+ "end": 14744.14,
+ "text": "are"
+ },
+ {
+ "id": 31524,
+ "start": 14744.14,
+ "end": 14744.28,
+ "text": "going"
+ },
+ {
+ "id": 31525,
+ "start": 14744.28,
+ "end": 14744.36,
+ "text": "to"
+ },
+ {
+ "id": 31526,
+ "start": 14744.36,
+ "end": 14744.54,
+ "text": "work"
+ },
+ {
+ "id": 31527,
+ "start": 14744.54,
+ "end": 14744.72,
+ "text": "on"
+ },
+ {
+ "id": 31528,
+ "start": 14744.72,
+ "end": 14745.9,
+ "text": "that?"
+ },
+ {
+ "id": 31529,
+ "start": 14745.9,
+ "end": 14746.04,
+ "text": "I"
+ },
+ {
+ "id": 31530,
+ "start": 14746.04,
+ "end": 14747.14,
+ "text": "think"
+ },
+ {
+ "id": 31531,
+ "start": 14747.14,
+ "end": 14747.3,
+ "text": "the"
+ },
+ {
+ "id": 31532,
+ "start": 14747.3,
+ "end": 14747.48,
+ "text": "one"
+ },
+ {
+ "id": 31533,
+ "start": 14747.48,
+ "end": 14747.84,
+ "text": "thing"
+ },
+ {
+ "id": 31534,
+ "start": 14747.84,
+ "end": 14748.7,
+ "text": "that"
+ },
+ {
+ "id": 31535,
+ "start": 14748.7,
+ "end": 14749.12,
+ "text": "so"
+ },
+ {
+ "id": 31536,
+ "start": 14749.12,
+ "end": 14749.28,
+ "text": "for"
+ },
+ {
+ "id": 31537,
+ "start": 14749.28,
+ "end": 14749.64,
+ "text": "that,"
+ },
+ {
+ "id": 31538,
+ "start": 14749.64,
+ "end": 14749.82,
+ "text": "I"
+ },
+ {
+ "id": 31539,
+ "start": 14749.82,
+ "end": 14749.98,
+ "text": "just"
+ },
+ {
+ "id": 31540,
+ "start": 14749.98,
+ "end": 14750.12,
+ "text": "want"
+ },
+ {
+ "id": 31541,
+ "start": 14750.12,
+ "end": 14750.2,
+ "text": "to"
+ },
+ {
+ "id": 31542,
+ "start": 14750.2,
+ "end": 14750.32,
+ "text": "get"
+ },
+ {
+ "id": 31543,
+ "start": 14750.32,
+ "end": 14750.46,
+ "text": "to"
+ },
+ {
+ "id": 31544,
+ "start": 14750.46,
+ "end": 14750.58,
+ "text": "the"
+ },
+ {
+ "id": 31545,
+ "start": 14750.58,
+ "end": 14750.86,
+ "text": "facts"
+ },
+ {
+ "id": 31546,
+ "start": 14750.86,
+ "end": 14751,
+ "text": "and"
+ },
+ {
+ "id": 31547,
+ "start": 14751,
+ "end": 14751.2,
+ "text": "there's"
+ },
+ {
+ "id": 31548,
+ "start": 14751.2,
+ "end": 14751.32,
+ "text": "no"
+ },
+ {
+ "id": 31549,
+ "start": 14751.32,
+ "end": 14751.46,
+ "text": "way"
+ },
+ {
+ "id": 31550,
+ "start": 14751.46,
+ "end": 14751.58,
+ "text": "you"
+ },
+ {
+ "id": 31551,
+ "start": 14751.58,
+ "end": 14751.74,
+ "text": "can"
+ },
+ {
+ "id": 31552,
+ "start": 14751.74,
+ "end": 14751.98,
+ "text": "answer"
+ },
+ {
+ "id": 31553,
+ "start": 14751.98,
+ "end": 14752.14,
+ "text": "any"
+ },
+ {
+ "id": 31554,
+ "start": 14752.14,
+ "end": 14752.2,
+ "text": "of"
+ },
+ {
+ "id": 31555,
+ "start": 14752.2,
+ "end": 14752.3,
+ "text": "the"
+ },
+ {
+ "id": 31556,
+ "start": 14752.3,
+ "end": 14752.7,
+ "text": "questions"
+ },
+ {
+ "id": 31557,
+ "start": 14752.7,
+ "end": 14752.88,
+ "text": "I'm"
+ },
+ {
+ "id": 31558,
+ "start": 14752.88,
+ "end": 14753.02,
+ "text": "not"
+ },
+ {
+ "id": 31559,
+ "start": 14753.02,
+ "end": 14753.18,
+ "text": "going"
+ },
+ {
+ "id": 31560,
+ "start": 14753.18,
+ "end": 14753.24,
+ "text": "to"
+ },
+ {
+ "id": 31561,
+ "start": 14753.24,
+ "end": 14753.46,
+ "text": "burden"
+ },
+ {
+ "id": 31562,
+ "start": 14753.46,
+ "end": 14753.58,
+ "text": "you"
+ },
+ {
+ "id": 31563,
+ "start": 14753.58,
+ "end": 14753.72,
+ "text": "with"
+ },
+ {
+ "id": 31564,
+ "start": 14753.72,
+ "end": 14753.94,
+ "text": "that."
+ },
+ {
+ "id": 31565,
+ "start": 14753.94,
+ "end": 14754.12,
+ "text": "But"
+ },
+ {
+ "id": 31566,
+ "start": 14754.12,
+ "end": 14754.18,
+ "text": "I"
+ },
+ {
+ "id": 31567,
+ "start": 14754.18,
+ "end": 14754.42,
+ "text": "think"
+ },
+ {
+ "id": 31568,
+ "start": 14754.42,
+ "end": 14754.68,
+ "text": "getting"
+ },
+ {
+ "id": 31569,
+ "start": 14754.68,
+ "end": 14754.8,
+ "text": "that"
+ },
+ {
+ "id": 31570,
+ "start": 14754.8,
+ "end": 14755.32,
+ "text": "chronology"
+ },
+ {
+ "id": 31571,
+ "start": 14755.32,
+ "end": 14755.58,
+ "text": "would"
+ },
+ {
+ "id": 31572,
+ "start": 14755.58,
+ "end": 14755.68,
+ "text": "be"
+ },
+ {
+ "id": 31573,
+ "start": 14755.68,
+ "end": 14755.9,
+ "text": "very"
+ },
+ {
+ "id": 31574,
+ "start": 14755.9,
+ "end": 14756.36,
+ "text": "helpful."
+ },
+ {
+ "id": 31575,
+ "start": 14756.36,
+ "end": 14757.02,
+ "text": "The"
+ },
+ {
+ "id": 31576,
+ "start": 14757.02,
+ "end": 14757.18,
+ "text": "one"
+ },
+ {
+ "id": 31577,
+ "start": 14757.18,
+ "end": 14757.36,
+ "text": "thing"
+ },
+ {
+ "id": 31578,
+ "start": 14757.36,
+ "end": 14757.46,
+ "text": "I"
+ },
+ {
+ "id": 31579,
+ "start": 14757.46,
+ "end": 14757.64,
+ "text": "would"
+ },
+ {
+ "id": 31580,
+ "start": 14757.64,
+ "end": 14758.06,
+ "text": "encourage"
+ },
+ {
+ "id": 31581,
+ "start": 14758.06,
+ "end": 14758.38,
+ "text": "people"
+ },
+ {
+ "id": 31582,
+ "start": 14758.38,
+ "end": 14758.48,
+ "text": "to"
+ },
+ {
+ "id": 31583,
+ "start": 14758.48,
+ "end": 14758.62,
+ "text": "do"
+ },
+ {
+ "id": 31584,
+ "start": 14758.62,
+ "end": 14758.78,
+ "text": "is"
+ },
+ {
+ "id": 31585,
+ "start": 14758.78,
+ "end": 14758.96,
+ "text": "go"
+ },
+ {
+ "id": 31586,
+ "start": 14758.96,
+ "end": 14759.08,
+ "text": "to"
+ },
+ {
+ "id": 31587,
+ "start": 14759.08,
+ "end": 14759.66,
+ "text": "Facebook"
+ },
+ {
+ "id": 31588,
+ "start": 14759.66,
+ "end": 14760.18,
+ "text": "I'm."
+ },
+ {
+ "id": 31589,
+ "start": 14760.18,
+ "end": 14760.28,
+ "text": "A"
+ },
+ {
+ "id": 31590,
+ "start": 14760.28,
+ "end": 14760.66,
+ "text": "proud"
+ },
+ {
+ "id": 31591,
+ "start": 14760.66,
+ "end": 14760.9,
+ "text": "member"
+ },
+ {
+ "id": 31592,
+ "start": 14760.9,
+ "end": 14760.98,
+ "text": "of"
+ },
+ {
+ "id": 31593,
+ "start": 14760.98,
+ "end": 14761.5,
+ "text": "Facebook"
+ },
+ {
+ "id": 31594,
+ "start": 14761.5,
+ "end": 14761.78,
+ "text": "just"
+ },
+ {
+ "id": 31595,
+ "start": 14761.78,
+ "end": 14761.9,
+ "text": "got"
+ },
+ {
+ "id": 31596,
+ "start": 14761.9,
+ "end": 14761.98,
+ "text": "to"
+ },
+ {
+ "id": 31597,
+ "start": 14761.98,
+ "end": 14762.24,
+ "text": "post"
+ },
+ {
+ "id": 31598,
+ "start": 14762.24,
+ "end": 14762.4,
+ "text": "from"
+ },
+ {
+ "id": 31599,
+ "start": 14762.4,
+ "end": 14762.52,
+ "text": "my"
+ },
+ {
+ "id": 31600,
+ "start": 14762.52,
+ "end": 14762.98,
+ "text": "sister"
+ },
+ {
+ "id": 31601,
+ "start": 14762.98,
+ "end": 14763.26,
+ "text": "on"
+ },
+ {
+ "id": 31602,
+ "start": 14763.26,
+ "end": 14763.8,
+ "text": "this"
+ },
+ {
+ "id": 31603,
+ "start": 14763.8,
+ "end": 14764.02,
+ "text": "being"
+ },
+ {
+ "id": 31604,
+ "start": 14764.02,
+ "end": 14764.48,
+ "text": "national"
+ },
+ {
+ "id": 31605,
+ "start": 14764.48,
+ "end": 14764.88,
+ "text": "sibling"
+ },
+ {
+ "id": 31606,
+ "start": 14764.88,
+ "end": 14765.08,
+ "text": "day,"
+ },
+ {
+ "id": 31607,
+ "start": 14765.08,
+ "end": 14765.28,
+ "text": "so"
+ },
+ {
+ "id": 31608,
+ "start": 14765.28,
+ "end": 14765.44,
+ "text": "I've"
+ },
+ {
+ "id": 31609,
+ "start": 14765.44,
+ "end": 14765.8,
+ "text": "connected"
+ },
+ {
+ "id": 31610,
+ "start": 14765.8,
+ "end": 14765.94,
+ "text": "with"
+ },
+ {
+ "id": 31611,
+ "start": 14765.94,
+ "end": 14766.1,
+ "text": "four"
+ },
+ {
+ "id": 31612,
+ "start": 14766.1,
+ "end": 14766.2,
+ "text": "or"
+ },
+ {
+ "id": 31613,
+ "start": 14766.2,
+ "end": 14766.4,
+ "text": "5"
+ },
+ {
+ "id": 31614,
+ "start": 14766.4,
+ "end": 14766.52,
+ "text": "of"
+ },
+ {
+ "id": 31615,
+ "start": 14766.52,
+ "end": 14766.7,
+ "text": "my"
+ },
+ {
+ "id": 31616,
+ "start": 14766.7,
+ "end": 14766.98,
+ "text": "staff."
+ },
+ {
+ "id": 31617,
+ "start": 14766.98,
+ "end": 14767.14,
+ "text": "While"
+ },
+ {
+ "id": 31618,
+ "start": 14767.14,
+ "end": 14767.18,
+ "text": "I"
+ },
+ {
+ "id": 31619,
+ "start": 14767.18,
+ "end": 14767.3,
+ "text": "was"
+ },
+ {
+ "id": 31620,
+ "start": 14767.3,
+ "end": 14767.54,
+ "text": "giving"
+ },
+ {
+ "id": 31621,
+ "start": 14767.54,
+ "end": 14767.64,
+ "text": "you"
+ },
+ {
+ "id": 31622,
+ "start": 14767.64,
+ "end": 14768.8,
+ "text": "divided,"
+ },
+ {
+ "id": 31623,
+ "start": 14768.8,
+ "end": 14769.26,
+ "text": "our"
+ },
+ {
+ "id": 31624,
+ "start": 14769.26,
+ "end": 14769.66,
+ "text": "family"
+ },
+ {
+ "id": 31625,
+ "start": 14769.66,
+ "end": 14770.14,
+ "text": "undivided"
+ },
+ {
+ "id": 31626,
+ "start": 14770.14,
+ "end": 14770.64,
+ "text": "attention."
+ },
+ {
+ "id": 31627,
+ "start": 14770.64,
+ "end": 14771.3,
+ "text": "But"
+ },
+ {
+ "id": 31628,
+ "start": 14771.3,
+ "end": 14771.46,
+ "text": "go"
+ },
+ {
+ "id": 31629,
+ "start": 14771.46,
+ "end": 14771.56,
+ "text": "to"
+ },
+ {
+ "id": 31630,
+ "start": 14771.56,
+ "end": 14771.68,
+ "text": "the"
+ },
+ {
+ "id": 31631,
+ "start": 14771.68,
+ "end": 14772.24,
+ "text": "privacy"
+ },
+ {
+ "id": 31632,
+ "start": 14772.24,
+ "end": 14772.6,
+ "text": "tab."
+ },
+ {
+ "id": 31633,
+ "start": 14772.6,
+ "end": 14773.44,
+ "text": "If"
+ },
+ {
+ "id": 31634,
+ "start": 14773.44,
+ "end": 14773.56,
+ "text": "you"
+ },
+ {
+ "id": 31635,
+ "start": 14773.56,
+ "end": 14773.76,
+ "text": "don't"
+ },
+ {
+ "id": 31636,
+ "start": 14773.76,
+ "end": 14773.92,
+ "text": "want"
+ },
+ {
+ "id": 31637,
+ "start": 14773.92,
+ "end": 14773.98,
+ "text": "to"
+ },
+ {
+ "id": 31638,
+ "start": 14773.98,
+ "end": 14774.2,
+ "text": "share"
+ },
+ {
+ "id": 31639,
+ "start": 14774.2,
+ "end": 14774.66,
+ "text": "something"
+ },
+ {
+ "id": 31640,
+ "start": 14774.66,
+ "end": 14774.92,
+ "text": "don't"
+ },
+ {
+ "id": 31641,
+ "start": 14774.92,
+ "end": 14775.24,
+ "text": "share"
+ },
+ {
+ "id": 31642,
+ "start": 14775.24,
+ "end": 14775.4,
+ "text": "it."
+ },
+ {
+ "id": 31643,
+ "start": 14775.4,
+ "end": 14775.68,
+ "text": "This"
+ },
+ {
+ "id": 31644,
+ "start": 14775.68,
+ "end": 14775.8,
+ "text": "is"
+ },
+ {
+ "id": 31645,
+ "start": 14775.8,
+ "end": 14775.88,
+ "text": "a"
+ },
+ {
+ "id": 31646,
+ "start": 14775.88,
+ "end": 14776.26,
+ "text": "free"
+ },
+ {
+ "id": 31647,
+ "start": 14776.26,
+ "end": 14777.1,
+ "text": "service."
+ },
+ {
+ "id": 31648,
+ "start": 14777.1,
+ "end": 14777.54,
+ "text": "Go"
+ },
+ {
+ "id": 31649,
+ "start": 14777.54,
+ "end": 14777.8,
+ "text": "on"
+ },
+ {
+ "id": 31650,
+ "start": 14777.8,
+ "end": 14778.02,
+ "text": "there"
+ },
+ {
+ "id": 31651,
+ "start": 14778.02,
+ "end": 14778.18,
+ "text": "and"
+ },
+ {
+ "id": 31652,
+ "start": 14778.18,
+ "end": 14778.38,
+ "text": "say"
+ },
+ {
+ "id": 31653,
+ "start": 14778.38,
+ "end": 14778.54,
+ "text": "I"
+ },
+ {
+ "id": 31654,
+ "start": 14778.54,
+ "end": 14778.78,
+ "text": "don't"
+ },
+ {
+ "id": 31655,
+ "start": 14778.78,
+ "end": 14778.94,
+ "text": "want"
+ },
+ {
+ "id": 31656,
+ "start": 14778.94,
+ "end": 14779.06,
+ "text": "to"
+ },
+ {
+ "id": 31657,
+ "start": 14779.06,
+ "end": 14779.38,
+ "text": "allow"
+ },
+ {
+ "id": 31658,
+ "start": 14779.38,
+ "end": 14779.86,
+ "text": "third"
+ },
+ {
+ "id": 31659,
+ "start": 14779.86,
+ "end": 14780.16,
+ "text": "party."
+ },
+ {
+ "id": 31660,
+ "start": 14780.16,
+ "end": 14780.46,
+ "text": "Search"
+ },
+ {
+ "id": 31661,
+ "start": 14780.46,
+ "end": 14780.84,
+ "text": "engines"
+ },
+ {
+ "id": 31662,
+ "start": 14780.84,
+ "end": 14780.98,
+ "text": "to"
+ },
+ {
+ "id": 31663,
+ "start": 14780.98,
+ "end": 14781.1,
+ "text": "get"
+ },
+ {
+ "id": 31664,
+ "start": 14781.1,
+ "end": 14781.24,
+ "text": "to"
+ },
+ {
+ "id": 31665,
+ "start": 14781.24,
+ "end": 14781.42,
+ "text": "my"
+ },
+ {
+ "id": 31666,
+ "start": 14781.42,
+ "end": 14781.94,
+ "text": "Facebook"
+ },
+ {
+ "id": 31667,
+ "start": 14781.94,
+ "end": 14782.22,
+ "text": "page"
+ },
+ {
+ "id": 31668,
+ "start": 14782.22,
+ "end": 14782.42,
+ "text": "go"
+ },
+ {
+ "id": 31669,
+ "start": 14782.42,
+ "end": 14782.56,
+ "text": "on"
+ },
+ {
+ "id": 31670,
+ "start": 14782.56,
+ "end": 14782.72,
+ "text": "there"
+ },
+ {
+ "id": 31671,
+ "start": 14782.72,
+ "end": 14782.86,
+ "text": "and"
+ },
+ {
+ "id": 31672,
+ "start": 14782.86,
+ "end": 14783.02,
+ "text": "say"
+ },
+ {
+ "id": 31673,
+ "start": 14783.02,
+ "end": 14783.26,
+ "text": "only"
+ },
+ {
+ "id": 31674,
+ "start": 14783.26,
+ "end": 14783.44,
+ "text": "my"
+ },
+ {
+ "id": 31675,
+ "start": 14783.44,
+ "end": 14783.8,
+ "text": "friends"
+ },
+ {
+ "id": 31676,
+ "start": 14783.8,
+ "end": 14784.02,
+ "text": "can"
+ },
+ {
+ "id": 31677,
+ "start": 14784.02,
+ "end": 14784.26,
+ "text": "look"
+ },
+ {
+ "id": 31678,
+ "start": 14784.26,
+ "end": 14784.42,
+ "text": "at"
+ },
+ {
+ "id": 31679,
+ "start": 14784.42,
+ "end": 14784.54,
+ "text": "it."
+ },
+ {
+ "id": 31680,
+ "start": 14784.54,
+ "end": 14784.7,
+ "text": "Go"
+ },
+ {
+ "id": 31681,
+ "start": 14784.7,
+ "end": 14784.8,
+ "text": "in"
+ },
+ {
+ "id": 31682,
+ "start": 14784.8,
+ "end": 14784.98,
+ "text": "there"
+ },
+ {
+ "id": 31683,
+ "start": 14784.98,
+ "end": 14785.08,
+ "text": "and"
+ },
+ {
+ "id": 31684,
+ "start": 14785.08,
+ "end": 14785.48,
+ "text": "understand"
+ },
+ {
+ "id": 31685,
+ "start": 14785.48,
+ "end": 14785.64,
+ "text": "what"
+ },
+ {
+ "id": 31686,
+ "start": 14785.64,
+ "end": 14785.84,
+ "text": "you're"
+ },
+ {
+ "id": 31687,
+ "start": 14785.84,
+ "end": 14786.14,
+ "text": "signing"
+ },
+ {
+ "id": 31688,
+ "start": 14786.14,
+ "end": 14786.28,
+ "text": "up"
+ },
+ {
+ "id": 31689,
+ "start": 14786.28,
+ "end": 14786.48,
+ "text": "for"
+ },
+ {
+ "id": 31690,
+ "start": 14786.48,
+ "end": 14786.72,
+ "text": "it's"
+ },
+ {
+ "id": 31691,
+ "start": 14786.72,
+ "end": 14786.78,
+ "text": "a"
+ },
+ {
+ "id": 31692,
+ "start": 14786.78,
+ "end": 14787.08,
+ "text": "free"
+ },
+ {
+ "id": 31693,
+ "start": 14787.08,
+ "end": 14787.78,
+ "text": "app."
+ },
+ {
+ "id": 31694,
+ "start": 14787.78,
+ "end": 14788.32,
+ "text": "Now,"
+ },
+ {
+ "id": 31695,
+ "start": 14788.32,
+ "end": 14788.46,
+ "text": "you"
+ },
+ {
+ "id": 31696,
+ "start": 14788.46,
+ "end": 14788.66,
+ "text": "need"
+ },
+ {
+ "id": 31697,
+ "start": 14788.66,
+ "end": 14788.74,
+ "text": "to"
+ },
+ {
+ "id": 31698,
+ "start": 14788.74,
+ "end": 14788.86,
+ "text": "do"
+ },
+ {
+ "id": 31699,
+ "start": 14788.86,
+ "end": 14789.14,
+ "text": "more"
+ },
+ {
+ "id": 31700,
+ "start": 14789.14,
+ "end": 14789.98,
+ "text": "and"
+ },
+ {
+ "id": 31701,
+ "start": 14789.98,
+ "end": 14790.04,
+ "text": "I"
+ },
+ {
+ "id": 31702,
+ "start": 14790.04,
+ "end": 14790.26,
+ "text": "think"
+ },
+ {
+ "id": 31703,
+ "start": 14790.26,
+ "end": 14790.38,
+ "text": "it"
+ },
+ {
+ "id": 31704,
+ "start": 14790.38,
+ "end": 14790.58,
+ "text": "would"
+ },
+ {
+ "id": 31705,
+ "start": 14790.58,
+ "end": 14790.7,
+ "text": "be"
+ },
+ {
+ "id": 31706,
+ "start": 14790.7,
+ "end": 14791.1,
+ "text": "helpful."
+ },
+ {
+ "id": 31707,
+ "start": 14791.1,
+ "end": 14791.2,
+ "text": "I"
+ },
+ {
+ "id": 31708,
+ "start": 14791.2,
+ "end": 14791.52,
+ "text": "didn't"
+ },
+ {
+ "id": 31709,
+ "start": 14791.52,
+ "end": 14791.84,
+ "text": "read"
+ },
+ {
+ "id": 31710,
+ "start": 14791.84,
+ "end": 14792.2,
+ "text": "your"
+ },
+ {
+ "id": 31711,
+ "start": 14792.2,
+ "end": 14792.78,
+ "text": "disclaimer"
+ },
+ {
+ "id": 31712,
+ "start": 14792.78,
+ "end": 14793.16,
+ "text": "page"
+ },
+ {
+ "id": 31713,
+ "start": 14793.16,
+ "end": 14793.38,
+ "text": "or"
+ },
+ {
+ "id": 31714,
+ "start": 14793.38,
+ "end": 14793.5,
+ "text": "the"
+ },
+ {
+ "id": 31715,
+ "start": 14793.5,
+ "end": 14793.98,
+ "text": "terms"
+ },
+ {
+ "id": 31716,
+ "start": 14793.98,
+ "end": 14794.14,
+ "text": "of"
+ },
+ {
+ "id": 31717,
+ "start": 14794.14,
+ "end": 14794.4,
+ "text": "use"
+ },
+ {
+ "id": 31718,
+ "start": 14794.4,
+ "end": 14794.7,
+ "text": "because"
+ },
+ {
+ "id": 31719,
+ "start": 14794.7,
+ "end": 14794.74,
+ "text": "I"
+ },
+ {
+ "id": 31720,
+ "start": 14794.74,
+ "end": 14795.02,
+ "text": "didn't"
+ },
+ {
+ "id": 31721,
+ "start": 14795.02,
+ "end": 14795.14,
+ "text": "see"
+ },
+ {
+ "id": 31722,
+ "start": 14795.14,
+ "end": 14795.48,
+ "text": "anywhere"
+ },
+ {
+ "id": 31723,
+ "start": 14795.48,
+ "end": 14795.76,
+ "text": "in"
+ },
+ {
+ "id": 31724,
+ "start": 14795.76,
+ "end": 14795.96,
+ "text": "there."
+ },
+ {
+ "id": 31725,
+ "start": 14795.96,
+ "end": 14796.12,
+ "text": "That"
+ },
+ {
+ "id": 31726,
+ "start": 14796.12,
+ "end": 14796.2,
+ "text": "I"
+ },
+ {
+ "id": 31727,
+ "start": 14796.2,
+ "end": 14796.4,
+ "text": "could"
+ },
+ {
+ "id": 31728,
+ "start": 14796.4,
+ "end": 14796.52,
+ "text": "get"
+ },
+ {
+ "id": 31729,
+ "start": 14796.52,
+ "end": 14796.68,
+ "text": "in"
+ },
+ {
+ "id": 31730,
+ "start": 14796.68,
+ "end": 14796.78,
+ "text": "a"
+ },
+ {
+ "id": 31731,
+ "start": 14796.78,
+ "end": 14797.16,
+ "text": "turning"
+ },
+ {
+ "id": 31732,
+ "start": 14797.16,
+ "end": 14797.32,
+ "text": "and"
+ },
+ {
+ "id": 31733,
+ "start": 14797.32,
+ "end": 14798.32,
+ "text": "negotiate"
+ },
+ {
+ "id": 31734,
+ "start": 14798.32,
+ "end": 14798.46,
+ "text": "the"
+ },
+ {
+ "id": 31735,
+ "start": 14798.46,
+ "end": 14798.8,
+ "text": "terms."
+ },
+ {
+ "id": 31736,
+ "start": 14798.8,
+ "end": 14798.92,
+ "text": "So"
+ },
+ {
+ "id": 31737,
+ "start": 14798.92,
+ "end": 14799.04,
+ "text": "it"
+ },
+ {
+ "id": 31738,
+ "start": 14799.04,
+ "end": 14799.14,
+ "text": "was"
+ },
+ {
+ "id": 31739,
+ "start": 14799.14,
+ "end": 14799.22,
+ "text": "a"
+ },
+ {
+ "id": 31740,
+ "start": 14799.22,
+ "end": 14799.52,
+ "text": "terms"
+ },
+ {
+ "id": 31741,
+ "start": 14799.52,
+ "end": 14799.66,
+ "text": "of"
+ },
+ {
+ "id": 31742,
+ "start": 14799.66,
+ "end": 14799.86,
+ "text": "use."
+ },
+ {
+ "id": 31743,
+ "start": 14799.86,
+ "end": 14800.02,
+ "text": "I"
+ },
+ {
+ "id": 31744,
+ "start": 14800.02,
+ "end": 14800.2,
+ "text": "went"
+ },
+ {
+ "id": 31745,
+ "start": 14800.2,
+ "end": 14800.32,
+ "text": "on"
+ },
+ {
+ "id": 31746,
+ "start": 14800.32,
+ "end": 14800.5,
+ "text": "there"
+ },
+ {
+ "id": 31747,
+ "start": 14800.5,
+ "end": 14800.68,
+ "text": "that"
+ },
+ {
+ "id": 31748,
+ "start": 14800.68,
+ "end": 14800.76,
+ "text": "I"
+ },
+ {
+ "id": 31749,
+ "start": 14800.76,
+ "end": 14800.94,
+ "text": "used"
+ },
+ {
+ "id": 31750,
+ "start": 14800.94,
+ "end": 14801.06,
+ "text": "the"
+ },
+ {
+ "id": 31751,
+ "start": 14801.06,
+ "end": 14801.54,
+ "text": "privacy"
+ },
+ {
+ "id": 31752,
+ "start": 14801.54,
+ "end": 14801.92,
+ "text": "settings"
+ },
+ {
+ "id": 31753,
+ "start": 14801.92,
+ "end": 14802.18,
+ "text": "to"
+ },
+ {
+ "id": 31754,
+ "start": 14802.18,
+ "end": 14802.56,
+ "text": "be"
+ },
+ {
+ "id": 31755,
+ "start": 14802.56,
+ "end": 14803.26,
+ "text": "safest"
+ },
+ {
+ "id": 31756,
+ "start": 14803.26,
+ "end": 14803.4,
+ "text": "that"
+ },
+ {
+ "id": 31757,
+ "start": 14803.4,
+ "end": 14803.58,
+ "text": "could"
+ },
+ {
+ "id": 31758,
+ "start": 14803.58,
+ "end": 14803.66,
+ "text": "be"
+ },
+ {
+ "id": 31759,
+ "start": 14803.66,
+ "end": 14803.82,
+ "text": "with"
+ },
+ {
+ "id": 31760,
+ "start": 14803.82,
+ "end": 14803.92,
+ "text": "a"
+ },
+ {
+ "id": 31761,
+ "start": 14803.92,
+ "end": 14804.28,
+ "text": "presence"
+ },
+ {
+ "id": 31762,
+ "start": 14804.28,
+ "end": 14804.44,
+ "text": "on"
+ },
+ {
+ "id": 31763,
+ "start": 14804.44,
+ "end": 14804.92,
+ "text": "Facebook."
+ },
+ {
+ "id": 31764,
+ "start": 14804.92,
+ "end": 14805.98,
+ "text": "Last"
+ },
+ {
+ "id": 31765,
+ "start": 14805.98,
+ "end": 14806.24,
+ "text": "thing"
+ },
+ {
+ "id": 31766,
+ "start": 14806.24,
+ "end": 14806.44,
+ "text": "we"
+ },
+ {
+ "id": 31767,
+ "start": 14806.44,
+ "end": 14806.68,
+ "text": "talked"
+ },
+ {
+ "id": 31768,
+ "start": 14806.68,
+ "end": 14806.9,
+ "text": "about"
+ },
+ {
+ "id": 31769,
+ "start": 14806.9,
+ "end": 14807.06,
+ "text": "all"
+ },
+ {
+ "id": 31770,
+ "start": 14807.06,
+ "end": 14807.3,
+ "text": "these"
+ },
+ {
+ "id": 31771,
+ "start": 14807.3,
+ "end": 14807.76,
+ "text": "proposed"
+ },
+ {
+ "id": 31772,
+ "start": 14807.76,
+ "end": 14808.54,
+ "text": "legislation,"
+ },
+ {
+ "id": 31773,
+ "start": 14808.54,
+ "end": 14809.5,
+ "text": "good"
+ },
+ {
+ "id": 31774,
+ "start": 14809.5,
+ "end": 14810.02,
+ "text": "ideas,"
+ },
+ {
+ "id": 31775,
+ "start": 14810.02,
+ "end": 14810.24,
+ "text": "but"
+ },
+ {
+ "id": 31776,
+ "start": 14810.24,
+ "end": 14810.34,
+ "text": "I"
+ },
+ {
+ "id": 31777,
+ "start": 14810.34,
+ "end": 14810.48,
+ "text": "have"
+ },
+ {
+ "id": 31778,
+ "start": 14810.48,
+ "end": 14810.7,
+ "text": "one"
+ },
+ {
+ "id": 31779,
+ "start": 14810.7,
+ "end": 14811.08,
+ "text": "question"
+ },
+ {
+ "id": 31780,
+ "start": 14811.08,
+ "end": 14811.22,
+ "text": "for"
+ },
+ {
+ "id": 31781,
+ "start": 14811.22,
+ "end": 14811.34,
+ "text": "you"
+ },
+ {
+ "id": 31782,
+ "start": 14811.34,
+ "end": 14811.48,
+ "text": "when"
+ },
+ {
+ "id": 31783,
+ "start": 14811.48,
+ "end": 14811.58,
+ "text": "you"
+ },
+ {
+ "id": 31784,
+ "start": 14811.58,
+ "end": 14811.72,
+ "text": "were"
+ },
+ {
+ "id": 31785,
+ "start": 14811.72,
+ "end": 14812.24,
+ "text": "developing"
+ },
+ {
+ "id": 31786,
+ "start": 14812.24,
+ "end": 14812.4,
+ "text": "this"
+ },
+ {
+ "id": 31787,
+ "start": 14812.4,
+ "end": 14812.64,
+ "text": "app"
+ },
+ {
+ "id": 31788,
+ "start": 14812.64,
+ "end": 14812.78,
+ "text": "in"
+ },
+ {
+ "id": 31789,
+ "start": 14812.78,
+ "end": 14812.94,
+ "text": "your"
+ },
+ {
+ "id": 31790,
+ "start": 14812.94,
+ "end": 14813.34,
+ "text": "dorm."
+ },
+ {
+ "id": 31791,
+ "start": 14813.34,
+ "end": 14813.84,
+ "text": "How"
+ },
+ {
+ "id": 31792,
+ "start": 14813.84,
+ "end": 14814.04,
+ "text": "many"
+ },
+ {
+ "id": 31793,
+ "start": 14814.04,
+ "end": 14814.32,
+ "text": "people"
+ },
+ {
+ "id": 31794,
+ "start": 14814.32,
+ "end": 14814.48,
+ "text": "did"
+ },
+ {
+ "id": 31795,
+ "start": 14814.48,
+ "end": 14814.62,
+ "text": "you"
+ },
+ {
+ "id": 31796,
+ "start": 14814.62,
+ "end": 14814.8,
+ "text": "have"
+ },
+ {
+ "id": 31797,
+ "start": 14814.8,
+ "end": 14814.92,
+ "text": "in"
+ },
+ {
+ "id": 31798,
+ "start": 14814.92,
+ "end": 14815.08,
+ "text": "your"
+ },
+ {
+ "id": 31799,
+ "start": 14815.08,
+ "end": 14815.66,
+ "text": "regulatory"
+ },
+ {
+ "id": 31800,
+ "start": 14815.66,
+ "end": 14816.08,
+ "text": "affairs"
+ },
+ {
+ "id": 31801,
+ "start": 14816.08,
+ "end": 14817.8,
+ "text": "division,"
+ },
+ {
+ "id": 31802,
+ "start": 14817.8,
+ "end": 14818.78,
+ "text": "exactly?"
+ },
+ {
+ "id": 31803,
+ "start": 14818.78,
+ "end": 14819.62,
+ "text": "So"
+ },
+ {
+ "id": 31804,
+ "start": 14819.62,
+ "end": 14819.84,
+ "text": "if"
+ },
+ {
+ "id": 31805,
+ "start": 14819.84,
+ "end": 14820.3,
+ "text": "government"
+ },
+ {
+ "id": 31806,
+ "start": 14820.3,
+ "end": 14820.56,
+ "text": "takes"
+ },
+ {
+ "id": 31807,
+ "start": 14820.56,
+ "end": 14820.62,
+ "text": "a"
+ },
+ {
+ "id": 31808,
+ "start": 14820.62,
+ "end": 14821.08,
+ "text": "handy"
+ },
+ {
+ "id": 31809,
+ "start": 14821.08,
+ "end": 14821.34,
+ "text": "heavy"
+ },
+ {
+ "id": 31810,
+ "start": 14821.34,
+ "end": 14821.6,
+ "text": "handed"
+ },
+ {
+ "id": 31811,
+ "start": 14821.6,
+ "end": 14821.94,
+ "text": "approach"
+ },
+ {
+ "id": 31812,
+ "start": 14821.94,
+ "end": 14822.14,
+ "text": "to"
+ },
+ {
+ "id": 31813,
+ "start": 14822.14,
+ "end": 14822.4,
+ "text": "fix"
+ },
+ {
+ "id": 31814,
+ "start": 14822.4,
+ "end": 14822.64,
+ "text": "this"
+ },
+ {
+ "id": 31815,
+ "start": 14822.64,
+ "end": 14823.5,
+ "text": "problem,"
+ },
+ {
+ "id": 31816,
+ "start": 14823.5,
+ "end": 14823.92,
+ "text": "then."
+ },
+ {
+ "id": 31817,
+ "start": 14823.92,
+ "end": 14824.06,
+ "text": "We"
+ },
+ {
+ "id": 31818,
+ "start": 14824.06,
+ "end": 14824.28,
+ "text": "know"
+ },
+ {
+ "id": 31819,
+ "start": 14824.28,
+ "end": 14824.72,
+ "text": "very"
+ },
+ {
+ "id": 31820,
+ "start": 14824.72,
+ "end": 14825.02,
+ "text": "well"
+ },
+ {
+ "id": 31821,
+ "start": 14825.02,
+ "end": 14825.44,
+ "text": "that"
+ },
+ {
+ "id": 31822,
+ "start": 14825.44,
+ "end": 14825.56,
+ "text": "the"
+ },
+ {
+ "id": 31823,
+ "start": 14825.56,
+ "end": 14825.82,
+ "text": "next"
+ },
+ {
+ "id": 31824,
+ "start": 14825.82,
+ "end": 14826.16,
+ "text": "face."
+ },
+ {
+ "id": 31825,
+ "start": 14826.16,
+ "end": 14826.34,
+ "text": "But"
+ },
+ {
+ "id": 31826,
+ "start": 14826.34,
+ "end": 14826.5,
+ "text": "the"
+ },
+ {
+ "id": 31827,
+ "start": 14826.5,
+ "end": 14826.7,
+ "text": "next"
+ },
+ {
+ "id": 31828,
+ "start": 14826.7,
+ "end": 14826.9,
+ "text": "thing"
+ },
+ {
+ "id": 31829,
+ "start": 14826.9,
+ "end": 14827.06,
+ "text": "that"
+ },
+ {
+ "id": 31830,
+ "start": 14827.06,
+ "end": 14827.24,
+ "text": "you're"
+ },
+ {
+ "id": 31831,
+ "start": 14827.24,
+ "end": 14827.4,
+ "text": "going"
+ },
+ {
+ "id": 31832,
+ "start": 14827.4,
+ "end": 14827.46,
+ "text": "to"
+ },
+ {
+ "id": 31833,
+ "start": 14827.46,
+ "end": 14827.66,
+ "text": "wake"
+ },
+ {
+ "id": 31834,
+ "start": 14827.66,
+ "end": 14827.8,
+ "text": "up"
+ },
+ {
+ "id": 31835,
+ "start": 14827.8,
+ "end": 14827.98,
+ "text": "and"
+ },
+ {
+ "id": 31836,
+ "start": 14827.98,
+ "end": 14828.26,
+ "text": "worry"
+ },
+ {
+ "id": 31837,
+ "start": 14828.26,
+ "end": 14828.48,
+ "text": "about"
+ },
+ {
+ "id": 31838,
+ "start": 14828.48,
+ "end": 14828.66,
+ "text": "how"
+ },
+ {
+ "id": 31839,
+ "start": 14828.66,
+ "end": 14828.8,
+ "text": "you"
+ },
+ {
+ "id": 31840,
+ "start": 14828.8,
+ "end": 14829.3,
+ "text": "continue"
+ },
+ {
+ "id": 31841,
+ "start": 14829.3,
+ "end": 14829.42,
+ "text": "to"
+ },
+ {
+ "id": 31842,
+ "start": 14829.42,
+ "end": 14829.58,
+ "text": "be"
+ },
+ {
+ "id": 31843,
+ "start": 14829.58,
+ "end": 14830.06,
+ "text": "relevant"
+ },
+ {
+ "id": 31844,
+ "start": 14830.06,
+ "end": 14830.38,
+ "text": "as"
+ },
+ {
+ "id": 31845,
+ "start": 14830.38,
+ "end": 14830.5,
+ "text": "the"
+ },
+ {
+ "id": 31846,
+ "start": 14830.5,
+ "end": 14830.92,
+ "text": "behemoth"
+ },
+ {
+ "id": 31847,
+ "start": 14830.92,
+ "end": 14831.06,
+ "text": "that"
+ },
+ {
+ "id": 31848,
+ "start": 14831.06,
+ "end": 14831.22,
+ "text": "you"
+ },
+ {
+ "id": 31849,
+ "start": 14831.22,
+ "end": 14831.4,
+ "text": "are"
+ },
+ {
+ "id": 31850,
+ "start": 14831.4,
+ "end": 14831.8,
+ "text": "today"
+ },
+ {
+ "id": 31851,
+ "start": 14831.8,
+ "end": 14832.42,
+ "text": "is"
+ },
+ {
+ "id": 31852,
+ "start": 14832.42,
+ "end": 14832.94,
+ "text": "probably"
+ },
+ {
+ "id": 31853,
+ "start": 14832.94,
+ "end": 14833.14,
+ "text": "not"
+ },
+ {
+ "id": 31854,
+ "start": 14833.14,
+ "end": 14833.32,
+ "text": "going"
+ },
+ {
+ "id": 31855,
+ "start": 14833.32,
+ "end": 14833.4,
+ "text": "to"
+ },
+ {
+ "id": 31856,
+ "start": 14833.4,
+ "end": 14834.02,
+ "text": "happen."
+ },
+ {
+ "id": 31857,
+ "start": 14834.02,
+ "end": 14834.38,
+ "text": "So"
+ },
+ {
+ "id": 31858,
+ "start": 14834.38,
+ "end": 14834.9,
+ "text": "I"
+ },
+ {
+ "id": 31859,
+ "start": 14834.9,
+ "end": 14835.1,
+ "text": "think"
+ },
+ {
+ "id": 31860,
+ "start": 14835.1,
+ "end": 14835.24,
+ "text": "that"
+ },
+ {
+ "id": 31861,
+ "start": 14835.24,
+ "end": 14835.5,
+ "text": "there's"
+ },
+ {
+ "id": 31862,
+ "start": 14835.5,
+ "end": 14836,
+ "text": "probably"
+ },
+ {
+ "id": 31863,
+ "start": 14836,
+ "end": 14836.08,
+ "text": "a"
+ },
+ {
+ "id": 31864,
+ "start": 14836.08,
+ "end": 14836.4,
+ "text": "place"
+ },
+ {
+ "id": 31865,
+ "start": 14836.4,
+ "end": 14836.54,
+ "text": "for"
+ },
+ {
+ "id": 31866,
+ "start": 14836.54,
+ "end": 14836.74,
+ "text": "some"
+ },
+ {
+ "id": 31867,
+ "start": 14836.74,
+ "end": 14837.38,
+ "text": "regulatory"
+ },
+ {
+ "id": 31868,
+ "start": 14837.38,
+ "end": 14837.8,
+ "text": "guidance"
+ },
+ {
+ "id": 31869,
+ "start": 14837.8,
+ "end": 14837.96,
+ "text": "here."
+ },
+ {
+ "id": 31870,
+ "start": 14837.96,
+ "end": 14838.1,
+ "text": "But"
+ },
+ {
+ "id": 31871,
+ "start": 14838.1,
+ "end": 14838.34,
+ "text": "there's"
+ },
+ {
+ "id": 31872,
+ "start": 14838.34,
+ "end": 14838.38,
+ "text": "a"
+ },
+ {
+ "id": 31873,
+ "start": 14838.38,
+ "end": 14839,
+ "text": "huge"
+ },
+ {
+ "id": 31874,
+ "start": 14839,
+ "end": 14839.42,
+ "text": "place"
+ },
+ {
+ "id": 31875,
+ "start": 14839.42,
+ "end": 14839.74,
+ "text": "for"
+ },
+ {
+ "id": 31876,
+ "start": 14839.74,
+ "end": 14840.16,
+ "text": "Google"
+ },
+ {
+ "id": 31877,
+ "start": 14840.16,
+ "end": 14840.88,
+ "text": "Snapchat,"
+ },
+ {
+ "id": 31878,
+ "start": 14840.88,
+ "end": 14841.78,
+ "text": "Twitter,"
+ },
+ {
+ "id": 31879,
+ "start": 14841.78,
+ "end": 14842.22,
+ "text": "all"
+ },
+ {
+ "id": 31880,
+ "start": 14842.22,
+ "end": 14842.4,
+ "text": "the"
+ },
+ {
+ "id": 31881,
+ "start": 14842.4,
+ "end": 14842.62,
+ "text": "other"
+ },
+ {
+ "id": 31882,
+ "start": 14842.62,
+ "end": 14842.96,
+ "text": "social"
+ },
+ {
+ "id": 31883,
+ "start": 14842.96,
+ "end": 14843.32,
+ "text": "media"
+ },
+ {
+ "id": 31884,
+ "start": 14843.32,
+ "end": 14843.96,
+ "text": "platforms"
+ },
+ {
+ "id": 31885,
+ "start": 14843.96,
+ "end": 14844.12,
+ "text": "to"
+ },
+ {
+ "id": 31886,
+ "start": 14844.12,
+ "end": 14844.24,
+ "text": "get"
+ },
+ {
+ "id": 31887,
+ "start": 14844.24,
+ "end": 14844.68,
+ "text": "together"
+ },
+ {
+ "id": 31888,
+ "start": 14844.68,
+ "end": 14844.88,
+ "text": "and"
+ },
+ {
+ "id": 31889,
+ "start": 14844.88,
+ "end": 14845.32,
+ "text": "create"
+ },
+ {
+ "id": 31890,
+ "start": 14845.32,
+ "end": 14846.06,
+ "text": "standards"
+ },
+ {
+ "id": 31891,
+ "start": 14846.06,
+ "end": 14846.72,
+ "text": "and"
+ },
+ {
+ "id": 31892,
+ "start": 14846.72,
+ "end": 14847.14,
+ "text": "also"
+ },
+ {
+ "id": 31893,
+ "start": 14847.14,
+ "end": 14847.56,
+ "text": "believe"
+ },
+ {
+ "id": 31894,
+ "start": 14847.56,
+ "end": 14847.78,
+ "text": "that"
+ },
+ {
+ "id": 31895,
+ "start": 14847.78,
+ "end": 14848.02,
+ "text": "that"
+ },
+ {
+ "id": 31896,
+ "start": 14848.02,
+ "end": 14848.64,
+ "text": "person"
+ },
+ {
+ "id": 31897,
+ "start": 14848.64,
+ "end": 14849.3,
+ "text": "who"
+ },
+ {
+ "id": 31898,
+ "start": 14849.3,
+ "end": 14849.54,
+ "text": "may"
+ },
+ {
+ "id": 31899,
+ "start": 14849.54,
+ "end": 14849.68,
+ "text": "have"
+ },
+ {
+ "id": 31900,
+ "start": 14849.68,
+ "end": 14849.94,
+ "text": "looked"
+ },
+ {
+ "id": 31901,
+ "start": 14849.94,
+ "end": 14850.06,
+ "text": "the"
+ },
+ {
+ "id": 31902,
+ "start": 14850.06,
+ "end": 14850.32,
+ "text": "other"
+ },
+ {
+ "id": 31903,
+ "start": 14850.32,
+ "end": 14850.56,
+ "text": "way"
+ },
+ {
+ "id": 31904,
+ "start": 14850.56,
+ "end": 14851,
+ "text": "when"
+ },
+ {
+ "id": 31905,
+ "start": 14851,
+ "end": 14851.12,
+ "text": "the"
+ },
+ {
+ "id": 31906,
+ "start": 14851.12,
+ "end": 14851.38,
+ "text": "whole"
+ },
+ {
+ "id": 31907,
+ "start": 14851.38,
+ "end": 14851.82,
+ "text": "social"
+ },
+ {
+ "id": 31908,
+ "start": 14851.82,
+ "end": 14852.2,
+ "text": "graph"
+ },
+ {
+ "id": 31909,
+ "start": 14852.2,
+ "end": 14852.38,
+ "text": "was"
+ },
+ {
+ "id": 31910,
+ "start": 14852.38,
+ "end": 14853.1,
+ "text": "extracted"
+ },
+ {
+ "id": 31911,
+ "start": 14853.1,
+ "end": 14853.28,
+ "text": "for"
+ },
+ {
+ "id": 31912,
+ "start": 14853.28,
+ "end": 14853.4,
+ "text": "the"
+ },
+ {
+ "id": 31913,
+ "start": 14853.4,
+ "end": 14853.76,
+ "text": "Obama"
+ },
+ {
+ "id": 31914,
+ "start": 14853.76,
+ "end": 14854.56,
+ "text": "campaign,"
+ },
+ {
+ "id": 31915,
+ "start": 14854.56,
+ "end": 14854.88,
+ "text": "still"
+ },
+ {
+ "id": 31916,
+ "start": 14854.88,
+ "end": 14855.2,
+ "text": "working"
+ },
+ {
+ "id": 31917,
+ "start": 14855.2,
+ "end": 14855.42,
+ "text": "for"
+ },
+ {
+ "id": 31918,
+ "start": 14855.42,
+ "end": 14855.54,
+ "text": "you."
+ },
+ {
+ "id": 31919,
+ "start": 14855.54,
+ "end": 14856.12,
+ "text": "They"
+ },
+ {
+ "id": 31920,
+ "start": 14856.12,
+ "end": 14856.56,
+ "text": "probably"
+ },
+ {
+ "id": 31921,
+ "start": 14856.56,
+ "end": 14856.98,
+ "text": "shouldn't"
+ },
+ {
+ "id": 31922,
+ "start": 14856.98,
+ "end": 14857.56,
+ "text": "or"
+ },
+ {
+ "id": 31923,
+ "start": 14857.56,
+ "end": 14857.72,
+ "text": "at"
+ },
+ {
+ "id": 31924,
+ "start": 14857.72,
+ "end": 14858.14,
+ "text": "least"
+ },
+ {
+ "id": 31925,
+ "start": 14858.14,
+ "end": 14858.38,
+ "text": "there"
+ },
+ {
+ "id": 31926,
+ "start": 14858.38,
+ "end": 14858.62,
+ "text": "should"
+ },
+ {
+ "id": 31927,
+ "start": 14858.62,
+ "end": 14858.72,
+ "text": "be"
+ },
+ {
+ "id": 31928,
+ "start": 14858.72,
+ "end": 14858.8,
+ "text": "a"
+ },
+ {
+ "id": 31929,
+ "start": 14858.8,
+ "end": 14859.2,
+ "text": "business"
+ },
+ {
+ "id": 31930,
+ "start": 14859.2,
+ "end": 14859.42,
+ "text": "code"
+ },
+ {
+ "id": 31931,
+ "start": 14859.42,
+ "end": 14859.52,
+ "text": "of"
+ },
+ {
+ "id": 31932,
+ "start": 14859.52,
+ "end": 14860.02,
+ "text": "conduct."
+ },
+ {
+ "id": 31933,
+ "start": 14860.02,
+ "end": 14860.22,
+ "text": "That"
+ },
+ {
+ "id": 31934,
+ "start": 14860.22,
+ "end": 14860.52,
+ "text": "says"
+ },
+ {
+ "id": 31935,
+ "start": 14860.52,
+ "end": 14860.7,
+ "text": "you"
+ },
+ {
+ "id": 31936,
+ "start": 14860.7,
+ "end": 14860.9,
+ "text": "don't"
+ },
+ {
+ "id": 31937,
+ "start": 14860.9,
+ "end": 14861.18,
+ "text": "play"
+ },
+ {
+ "id": 31938,
+ "start": 14861.18,
+ "end": 14861.66,
+ "text": "favorites"
+ },
+ {
+ "id": 31939,
+ "start": 14861.66,
+ "end": 14861.9,
+ "text": "you're"
+ },
+ {
+ "id": 31940,
+ "start": 14861.9,
+ "end": 14862.14,
+ "text": "trying"
+ },
+ {
+ "id": 31941,
+ "start": 14862.14,
+ "end": 14862.24,
+ "text": "to"
+ },
+ {
+ "id": 31942,
+ "start": 14862.24,
+ "end": 14862.56,
+ "text": "create"
+ },
+ {
+ "id": 31943,
+ "start": 14862.56,
+ "end": 14862.76,
+ "text": "a"
+ },
+ {
+ "id": 31944,
+ "start": 14862.76,
+ "end": 14863.08,
+ "text": "fair"
+ },
+ {
+ "id": 31945,
+ "start": 14863.08,
+ "end": 14863.4,
+ "text": "place"
+ },
+ {
+ "id": 31946,
+ "start": 14863.4,
+ "end": 14863.56,
+ "text": "for"
+ },
+ {
+ "id": 31947,
+ "start": 14863.56,
+ "end": 14864.3,
+ "text": "them"
+ },
+ {
+ "id": 31948,
+ "start": 14864.3,
+ "end": 14864.48,
+ "text": "for"
+ },
+ {
+ "id": 31949,
+ "start": 14864.48,
+ "end": 14864.74,
+ "text": "people"
+ },
+ {
+ "id": 31950,
+ "start": 14864.74,
+ "end": 14864.86,
+ "text": "to"
+ },
+ {
+ "id": 31951,
+ "start": 14864.86,
+ "end": 14865.04,
+ "text": "share"
+ },
+ {
+ "id": 31952,
+ "start": 14865.04,
+ "end": 14865.26,
+ "text": "their"
+ },
+ {
+ "id": 31953,
+ "start": 14865.26,
+ "end": 14865.62,
+ "text": "ideas."
+ },
+ {
+ "id": 31954,
+ "start": 14865.62,
+ "end": 14865.92,
+ "text": "Thank"
+ },
+ {
+ "id": 31955,
+ "start": 14865.92,
+ "end": 14866.04,
+ "text": "you"
+ },
+ {
+ "id": 31956,
+ "start": 14866.04,
+ "end": 14866.2,
+ "text": "for"
+ },
+ {
+ "id": 31957,
+ "start": 14866.2,
+ "end": 14866.44,
+ "text": "being"
+ },
+ {
+ "id": 31958,
+ "start": 14866.44,
+ "end": 14867.34,
+ "text": "here,"
+ },
+ {
+ "id": 31959,
+ "start": 14867.34,
+ "end": 14868.26,
+ "text": "thank"
+ },
+ {
+ "id": 31960,
+ "start": 14868.26,
+ "end": 14868.42,
+ "text": "you."
+ },
+ {
+ "id": 31961,
+ "start": 14868.42,
+ "end": 14868.78,
+ "text": "Senator"
+ },
+ {
+ "id": 31962,
+ "start": 14868.78,
+ "end": 14869.18,
+ "text": "Tillis."
+ },
+ {
+ "id": 31963,
+ "start": 14869.18,
+ "end": 14869.62,
+ "text": "Senator"
+ },
+ {
+ "id": 31964,
+ "start": 14869.62,
+ "end": 14869.88,
+ "text": "Harris,"
+ },
+ {
+ "id": 31965,
+ "start": 14869.88,
+ "end": 14870.86,
+ "text": "thank"
+ },
+ {
+ "id": 31966,
+ "start": 14870.86,
+ "end": 14871.02,
+ "text": "you."
+ },
+ {
+ "id": 31967,
+ "start": 14871.02,
+ "end": 14871.22,
+ "text": "Thank"
+ },
+ {
+ "id": 31968,
+ "start": 14871.22,
+ "end": 14871.34,
+ "text": "you"
+ },
+ {
+ "id": 31969,
+ "start": 14871.34,
+ "end": 14871.52,
+ "text": "for"
+ },
+ {
+ "id": 31970,
+ "start": 14871.52,
+ "end": 14871.76,
+ "text": "being"
+ },
+ {
+ "id": 31971,
+ "start": 14871.76,
+ "end": 14872.02,
+ "text": "here."
+ },
+ {
+ "id": 31972,
+ "start": 14872.02,
+ "end": 14872.8,
+ "text": "I've"
+ },
+ {
+ "id": 31973,
+ "start": 14872.8,
+ "end": 14872.96,
+ "text": "been"
+ },
+ {
+ "id": 31974,
+ "start": 14872.96,
+ "end": 14873.14,
+ "text": "here"
+ },
+ {
+ "id": 31975,
+ "start": 14873.14,
+ "end": 14873.68,
+ "text": "for"
+ },
+ {
+ "id": 31976,
+ "start": 14873.68,
+ "end": 14874.1,
+ "text": "on"
+ },
+ {
+ "id": 31977,
+ "start": 14874.1,
+ "end": 14874.2,
+ "text": "and"
+ },
+ {
+ "id": 31978,
+ "start": 14874.2,
+ "end": 14874.34,
+ "text": "off"
+ },
+ {
+ "id": 31979,
+ "start": 14874.34,
+ "end": 14874.48,
+ "text": "for"
+ },
+ {
+ "id": 31980,
+ "start": 14874.48,
+ "end": 14874.6,
+ "text": "the"
+ },
+ {
+ "id": 31981,
+ "start": 14874.6,
+ "end": 14874.82,
+ "text": "last"
+ },
+ {
+ "id": 31982,
+ "start": 14874.82,
+ "end": 14875.08,
+ "text": "four"
+ },
+ {
+ "id": 31983,
+ "start": 14875.08,
+ "end": 14875.42,
+ "text": "hours"
+ },
+ {
+ "id": 31984,
+ "start": 14875.42,
+ "end": 14875.8,
+ "text": "that"
+ },
+ {
+ "id": 31985,
+ "start": 14875.8,
+ "end": 14876.02,
+ "text": "you've"
+ },
+ {
+ "id": 31986,
+ "start": 14876.02,
+ "end": 14876.16,
+ "text": "been"
+ },
+ {
+ "id": 31987,
+ "start": 14876.16,
+ "end": 14876.68,
+ "text": "testifying"
+ },
+ {
+ "id": 31988,
+ "start": 14876.68,
+ "end": 14876.8,
+ "text": "and"
+ },
+ {
+ "id": 31989,
+ "start": 14876.8,
+ "end": 14876.86,
+ "text": "I"
+ },
+ {
+ "id": 31990,
+ "start": 14876.86,
+ "end": 14877,
+ "text": "have"
+ },
+ {
+ "id": 31991,
+ "start": 14877,
+ "end": 14877.08,
+ "text": "to"
+ },
+ {
+ "id": 31992,
+ "start": 14877.08,
+ "end": 14877.32,
+ "text": "tell"
+ },
+ {
+ "id": 31993,
+ "start": 14877.32,
+ "end": 14877.7,
+ "text": "you"
+ },
+ {
+ "id": 31994,
+ "start": 14877.7,
+ "end": 14878.7,
+ "text": "I'm"
+ },
+ {
+ "id": 31995,
+ "start": 14878.7,
+ "end": 14879.74,
+ "text": "concerned"
+ },
+ {
+ "id": 31996,
+ "start": 14879.74,
+ "end": 14880.86,
+ "text": "about"
+ },
+ {
+ "id": 31997,
+ "start": 14880.86,
+ "end": 14881.36,
+ "text": "how"
+ },
+ {
+ "id": 31998,
+ "start": 14881.36,
+ "end": 14881.58,
+ "text": "much"
+ },
+ {
+ "id": 31999,
+ "start": 14881.58,
+ "end": 14882.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 32000,
+ "start": 14882.26,
+ "end": 14883.4,
+ "text": "values"
+ },
+ {
+ "id": 32001,
+ "start": 14883.4,
+ "end": 14884.44,
+ "text": "trust"
+ },
+ {
+ "id": 32002,
+ "start": 14884.44,
+ "end": 14884.7,
+ "text": "and"
+ },
+ {
+ "id": 32003,
+ "start": 14884.7,
+ "end": 14885.72,
+ "text": "transparency."
+ },
+ {
+ "id": 32004,
+ "start": 14885.72,
+ "end": 14886.62,
+ "text": "If"
+ },
+ {
+ "id": 32005,
+ "start": 14886.62,
+ "end": 14886.76,
+ "text": "we"
+ },
+ {
+ "id": 32006,
+ "start": 14886.76,
+ "end": 14887.3,
+ "text": "agree"
+ },
+ {
+ "id": 32007,
+ "start": 14887.3,
+ "end": 14887.64,
+ "text": "that"
+ },
+ {
+ "id": 32008,
+ "start": 14887.64,
+ "end": 14888,
+ "text": "a"
+ },
+ {
+ "id": 32009,
+ "start": 14888,
+ "end": 14888.48,
+ "text": "critical"
+ },
+ {
+ "id": 32010,
+ "start": 14888.48,
+ "end": 14889.1,
+ "text": "component"
+ },
+ {
+ "id": 32011,
+ "start": 14889.1,
+ "end": 14889.3,
+ "text": "of"
+ },
+ {
+ "id": 32012,
+ "start": 14889.3,
+ "end": 14889.7,
+ "text": "a"
+ },
+ {
+ "id": 32013,
+ "start": 14889.7,
+ "end": 14890.28,
+ "text": "relationship"
+ },
+ {
+ "id": 32014,
+ "start": 14890.28,
+ "end": 14890.42,
+ "text": "of"
+ },
+ {
+ "id": 32015,
+ "start": 14890.42,
+ "end": 14890.7,
+ "text": "trust"
+ },
+ {
+ "id": 32016,
+ "start": 14890.7,
+ "end": 14890.82,
+ "text": "and"
+ },
+ {
+ "id": 32017,
+ "start": 14890.82,
+ "end": 14891.54,
+ "text": "transparency"
+ },
+ {
+ "id": 32018,
+ "start": 14891.54,
+ "end": 14891.66,
+ "text": "as"
+ },
+ {
+ "id": 32019,
+ "start": 14891.66,
+ "end": 14891.84,
+ "text": "we"
+ },
+ {
+ "id": 32020,
+ "start": 14891.84,
+ "end": 14892.08,
+ "text": "speak"
+ },
+ {
+ "id": 32021,
+ "start": 14892.08,
+ "end": 14892.5,
+ "text": "truth"
+ },
+ {
+ "id": 32022,
+ "start": 14892.5,
+ "end": 14892.96,
+ "text": "and"
+ },
+ {
+ "id": 32023,
+ "start": 14892.96,
+ "end": 14893.1,
+ "text": "we"
+ },
+ {
+ "id": 32024,
+ "start": 14893.1,
+ "end": 14893.22,
+ "text": "get"
+ },
+ {
+ "id": 32025,
+ "start": 14893.22,
+ "end": 14893.4,
+ "text": "to"
+ },
+ {
+ "id": 32026,
+ "start": 14893.4,
+ "end": 14893.52,
+ "text": "the"
+ },
+ {
+ "id": 32027,
+ "start": 14893.52,
+ "end": 14894.38,
+ "text": "truth"
+ },
+ {
+ "id": 32028,
+ "start": 14894.38,
+ "end": 14895.18,
+ "text": "during"
+ },
+ {
+ "id": 32029,
+ "start": 14895.18,
+ "end": 14895.34,
+ "text": "the"
+ },
+ {
+ "id": 32030,
+ "start": 14895.34,
+ "end": 14895.64,
+ "text": "course"
+ },
+ {
+ "id": 32031,
+ "start": 14895.64,
+ "end": 14895.86,
+ "text": "of"
+ },
+ {
+ "id": 32032,
+ "start": 14895.86,
+ "end": 14896.12,
+ "text": "this"
+ },
+ {
+ "id": 32033,
+ "start": 14896.12,
+ "end": 14896.62,
+ "text": "hearing"
+ },
+ {
+ "id": 32034,
+ "start": 14896.62,
+ "end": 14896.94,
+ "text": "these"
+ },
+ {
+ "id": 32035,
+ "start": 14896.94,
+ "end": 14897.44,
+ "text": "last"
+ },
+ {
+ "id": 32036,
+ "start": 14897.44,
+ "end": 14897.76,
+ "text": "four"
+ },
+ {
+ "id": 32037,
+ "start": 14897.76,
+ "end": 14898.12,
+ "text": "hours"
+ },
+ {
+ "id": 32038,
+ "start": 14898.12,
+ "end": 14898.88,
+ "text": "you've"
+ },
+ {
+ "id": 32039,
+ "start": 14898.88,
+ "end": 14899.04,
+ "text": "been"
+ },
+ {
+ "id": 32040,
+ "start": 14899.04,
+ "end": 14899.28,
+ "text": "asked"
+ },
+ {
+ "id": 32041,
+ "start": 14899.28,
+ "end": 14899.8,
+ "text": "several"
+ },
+ {
+ "id": 32042,
+ "start": 14899.8,
+ "end": 14900.42,
+ "text": "critical"
+ },
+ {
+ "id": 32043,
+ "start": 14900.42,
+ "end": 14901.32,
+ "text": "questions"
+ },
+ {
+ "id": 32044,
+ "start": 14901.32,
+ "end": 14902.1,
+ "text": "for"
+ },
+ {
+ "id": 32045,
+ "start": 14902.1,
+ "end": 14902.26,
+ "text": "which"
+ },
+ {
+ "id": 32046,
+ "start": 14902.26,
+ "end": 14902.38,
+ "text": "you"
+ },
+ {
+ "id": 32047,
+ "start": 14902.38,
+ "end": 14902.58,
+ "text": "don't"
+ },
+ {
+ "id": 32048,
+ "start": 14902.58,
+ "end": 14902.76,
+ "text": "have"
+ },
+ {
+ "id": 32049,
+ "start": 14902.76,
+ "end": 14903.96,
+ "text": "answers."
+ },
+ {
+ "id": 32050,
+ "start": 14903.96,
+ "end": 14905,
+ "text": "And"
+ },
+ {
+ "id": 32051,
+ "start": 14905,
+ "end": 14905.76,
+ "text": "those"
+ },
+ {
+ "id": 32052,
+ "start": 14905.76,
+ "end": 14906.18,
+ "text": "questions"
+ },
+ {
+ "id": 32053,
+ "start": 14906.18,
+ "end": 14906.4,
+ "text": "have"
+ },
+ {
+ "id": 32054,
+ "start": 14906.4,
+ "end": 14906.9,
+ "text": "included"
+ },
+ {
+ "id": 32055,
+ "start": 14906.9,
+ "end": 14907.2,
+ "text": "whether"
+ },
+ {
+ "id": 32056,
+ "start": 14907.2,
+ "end": 14907.72,
+ "text": "Facebook"
+ },
+ {
+ "id": 32057,
+ "start": 14907.72,
+ "end": 14907.9,
+ "text": "can"
+ },
+ {
+ "id": 32058,
+ "start": 14907.9,
+ "end": 14908.24,
+ "text": "tract"
+ },
+ {
+ "id": 32059,
+ "start": 14908.24,
+ "end": 14908.64,
+ "text": "users"
+ },
+ {
+ "id": 32060,
+ "start": 14908.64,
+ "end": 14909.12,
+ "text": "browsing"
+ },
+ {
+ "id": 32061,
+ "start": 14909.12,
+ "end": 14909.66,
+ "text": "activity."
+ },
+ {
+ "id": 32062,
+ "start": 14909.66,
+ "end": 14909.92,
+ "text": "Even"
+ },
+ {
+ "id": 32063,
+ "start": 14909.92,
+ "end": 14910.22,
+ "text": "after"
+ },
+ {
+ "id": 32064,
+ "start": 14910.22,
+ "end": 14910.34,
+ "text": "the"
+ },
+ {
+ "id": 32065,
+ "start": 14910.34,
+ "end": 14910.62,
+ "text": "user"
+ },
+ {
+ "id": 32066,
+ "start": 14910.62,
+ "end": 14910.8,
+ "text": "has"
+ },
+ {
+ "id": 32067,
+ "start": 14910.8,
+ "end": 14911.1,
+ "text": "logged"
+ },
+ {
+ "id": 32068,
+ "start": 14911.1,
+ "end": 14911.32,
+ "text": "off"
+ },
+ {
+ "id": 32069,
+ "start": 14911.32,
+ "end": 14911.46,
+ "text": "of"
+ },
+ {
+ "id": 32070,
+ "start": 14911.46,
+ "end": 14912.02,
+ "text": "Facebook."
+ },
+ {
+ "id": 32071,
+ "start": 14912.02,
+ "end": 14912.86,
+ "text": "Whether"
+ },
+ {
+ "id": 32072,
+ "start": 14912.86,
+ "end": 14913.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 32073,
+ "start": 14913.34,
+ "end": 14913.52,
+ "text": "can"
+ },
+ {
+ "id": 32074,
+ "start": 14913.52,
+ "end": 14913.86,
+ "text": "track"
+ },
+ {
+ "id": 32075,
+ "start": 14913.86,
+ "end": 14914.02,
+ "text": "your"
+ },
+ {
+ "id": 32076,
+ "start": 14914.02,
+ "end": 14914.5,
+ "text": "activity"
+ },
+ {
+ "id": 32077,
+ "start": 14914.5,
+ "end": 14914.88,
+ "text": "across"
+ },
+ {
+ "id": 32078,
+ "start": 14914.88,
+ "end": 14915.56,
+ "text": "devices,"
+ },
+ {
+ "id": 32079,
+ "start": 14915.56,
+ "end": 14916.22,
+ "text": "even"
+ },
+ {
+ "id": 32080,
+ "start": 14916.22,
+ "end": 14916.4,
+ "text": "when"
+ },
+ {
+ "id": 32081,
+ "start": 14916.4,
+ "end": 14916.54,
+ "text": "you"
+ },
+ {
+ "id": 32082,
+ "start": 14916.54,
+ "end": 14916.92,
+ "text": "aren't"
+ },
+ {
+ "id": 32083,
+ "start": 14916.92,
+ "end": 14917.28,
+ "text": "logged"
+ },
+ {
+ "id": 32084,
+ "start": 14917.28,
+ "end": 14917.76,
+ "text": "into"
+ },
+ {
+ "id": 32085,
+ "start": 14917.76,
+ "end": 14918.83,
+ "text": "Facebook"
+ },
+ {
+ "id": 32086,
+ "start": 14918.83,
+ "end": 14919.03,
+ "text": "who"
+ },
+ {
+ "id": 32087,
+ "start": 14919.03,
+ "end": 14919.41,
+ "text": "is"
+ },
+ {
+ "id": 32088,
+ "start": 14919.41,
+ "end": 14920.25,
+ "text": "Facebook's"
+ },
+ {
+ "id": 32089,
+ "start": 14920.25,
+ "end": 14921.39,
+ "text": "biggest"
+ },
+ {
+ "id": 32090,
+ "start": 14921.39,
+ "end": 14922.67,
+ "text": "competition?"
+ },
+ {
+ "id": 32091,
+ "start": 14922.67,
+ "end": 14923.69,
+ "text": "Whether"
+ },
+ {
+ "id": 32092,
+ "start": 14923.69,
+ "end": 14924.27,
+ "text": "Facebook"
+ },
+ {
+ "id": 32093,
+ "start": 14924.27,
+ "end": 14924.49,
+ "text": "may"
+ },
+ {
+ "id": 32094,
+ "start": 14924.49,
+ "end": 14924.99,
+ "text": "store"
+ },
+ {
+ "id": 32095,
+ "start": 14924.99,
+ "end": 14925.17,
+ "text": "up"
+ },
+ {
+ "id": 32096,
+ "start": 14925.17,
+ "end": 14925.29,
+ "text": "to"
+ },
+ {
+ "id": 32097,
+ "start": 14925.29,
+ "end": 14925.93,
+ "text": "96"
+ },
+ {
+ "id": 32098,
+ "start": 14925.93,
+ "end": 14926.73,
+ "text": "categories"
+ },
+ {
+ "id": 32099,
+ "start": 14926.73,
+ "end": 14927.45,
+ "text": "of"
+ },
+ {
+ "id": 32100,
+ "start": 14927.45,
+ "end": 14927.99,
+ "text": "users"
+ },
+ {
+ "id": 32101,
+ "start": 14927.99,
+ "end": 14929.13,
+ "text": "information"
+ },
+ {
+ "id": 32102,
+ "start": 14929.13,
+ "end": 14930.25,
+ "text": "whether"
+ },
+ {
+ "id": 32103,
+ "start": 14930.25,
+ "end": 14930.59,
+ "text": "you"
+ },
+ {
+ "id": 32104,
+ "start": 14930.59,
+ "end": 14930.85,
+ "text": "knew"
+ },
+ {
+ "id": 32105,
+ "start": 14930.85,
+ "end": 14931.43,
+ "text": "whether"
+ },
+ {
+ "id": 32106,
+ "start": 14931.43,
+ "end": 14931.85,
+ "text": "Cogan"
+ },
+ {
+ "id": 32107,
+ "start": 14931.85,
+ "end": 14931.93,
+ "text": "s"
+ },
+ {
+ "id": 32108,
+ "start": 14931.93,
+ "end": 14932.31,
+ "text": "terms"
+ },
+ {
+ "id": 32109,
+ "start": 14932.31,
+ "end": 14932.47,
+ "text": "of"
+ },
+ {
+ "id": 32110,
+ "start": 14932.47,
+ "end": 14933.7,
+ "text": "service"
+ },
+ {
+ "id": 32111,
+ "start": 14933.7,
+ "end": 14934.66,
+ "text": "and"
+ },
+ {
+ "id": 32112,
+ "start": 14934.66,
+ "end": 14935.22,
+ "text": "whether"
+ },
+ {
+ "id": 32113,
+ "start": 14935.22,
+ "end": 14935.42,
+ "text": "you"
+ },
+ {
+ "id": 32114,
+ "start": 14935.42,
+ "end": 14935.64,
+ "text": "knew"
+ },
+ {
+ "id": 32115,
+ "start": 14935.64,
+ "end": 14936.48,
+ "text": "that"
+ },
+ {
+ "id": 32116,
+ "start": 14936.48,
+ "end": 14936.92,
+ "text": "Cogan"
+ },
+ {
+ "id": 32117,
+ "start": 14936.92,
+ "end": 14937.14,
+ "text": "could"
+ },
+ {
+ "id": 32118,
+ "start": 14937.14,
+ "end": 14937.48,
+ "text": "sell"
+ },
+ {
+ "id": 32119,
+ "start": 14937.48,
+ "end": 14937.68,
+ "text": "or"
+ },
+ {
+ "id": 32120,
+ "start": 14937.68,
+ "end": 14938.34,
+ "text": "transfer"
+ },
+ {
+ "id": 32121,
+ "start": 14938.34,
+ "end": 14939.34,
+ "text": "data"
+ },
+ {
+ "id": 32122,
+ "start": 14939.34,
+ "end": 14939.72,
+ "text": "and"
+ },
+ {
+ "id": 32123,
+ "start": 14939.72,
+ "end": 14940,
+ "text": "then"
+ },
+ {
+ "id": 32124,
+ "start": 14940,
+ "end": 14940.42,
+ "text": "another"
+ },
+ {
+ "id": 32125,
+ "start": 14940.42,
+ "end": 14940.7,
+ "text": "case"
+ },
+ {
+ "id": 32126,
+ "start": 14940.7,
+ "end": 14940.88,
+ "text": "in"
+ },
+ {
+ "id": 32127,
+ "start": 14940.88,
+ "end": 14941.16,
+ "text": "point"
+ },
+ {
+ "id": 32128,
+ "start": 14941.16,
+ "end": 14941.96,
+ "text": "specifically"
+ },
+ {
+ "id": 32129,
+ "start": 14941.96,
+ "end": 14942.1,
+ "text": "as"
+ },
+ {
+ "id": 32130,
+ "start": 14942.1,
+ "end": 14942.22,
+ "text": "it"
+ },
+ {
+ "id": 32131,
+ "start": 14942.22,
+ "end": 14942.56,
+ "text": "relates"
+ },
+ {
+ "id": 32132,
+ "start": 14942.56,
+ "end": 14942.72,
+ "text": "to"
+ },
+ {
+ "id": 32133,
+ "start": 14942.72,
+ "end": 14943.18,
+ "text": "Cambridge"
+ },
+ {
+ "id": 32134,
+ "start": 14943.18,
+ "end": 14944.34,
+ "text": "Analytica"
+ },
+ {
+ "id": 32135,
+ "start": 14944.34,
+ "end": 14944.74,
+ "text": "is"
+ },
+ {
+ "id": 32136,
+ "start": 14944.74,
+ "end": 14945.24,
+ "text": "in"
+ },
+ {
+ "id": 32137,
+ "start": 14945.24,
+ "end": 14945.32,
+ "text": "a"
+ },
+ {
+ "id": 32138,
+ "start": 14945.32,
+ "end": 14945.8,
+ "text": "concern"
+ },
+ {
+ "id": 32139,
+ "start": 14945.8,
+ "end": 14945.88,
+ "text": "of"
+ },
+ {
+ "id": 32140,
+ "start": 14945.88,
+ "end": 14946.16,
+ "text": "mine"
+ },
+ {
+ "id": 32141,
+ "start": 14946.16,
+ "end": 14946.34,
+ "text": "is"
+ },
+ {
+ "id": 32142,
+ "start": 14946.34,
+ "end": 14946.68,
+ "text": "that"
+ },
+ {
+ "id": 32143,
+ "start": 14946.68,
+ "end": 14947.38,
+ "text": "you"
+ },
+ {
+ "id": 32144,
+ "start": 14947.38,
+ "end": 14948.3,
+ "text": "meaning"
+ },
+ {
+ "id": 32145,
+ "start": 14948.3,
+ "end": 14948.94,
+ "text": "Facebook"
+ },
+ {
+ "id": 32146,
+ "start": 14948.94,
+ "end": 14949.32,
+ "text": "and"
+ },
+ {
+ "id": 32147,
+ "start": 14949.32,
+ "end": 14949.48,
+ "text": "I'm"
+ },
+ {
+ "id": 32148,
+ "start": 14949.48,
+ "end": 14949.64,
+ "text": "going"
+ },
+ {
+ "id": 32149,
+ "start": 14949.64,
+ "end": 14949.7,
+ "text": "to"
+ },
+ {
+ "id": 32150,
+ "start": 14949.7,
+ "end": 14950,
+ "text": "assume"
+ },
+ {
+ "id": 32151,
+ "start": 14950,
+ "end": 14950.16,
+ "text": "you"
+ },
+ {
+ "id": 32152,
+ "start": 14950.16,
+ "end": 14950.66,
+ "text": "personally"
+ },
+ {
+ "id": 32153,
+ "start": 14950.66,
+ "end": 14951.2,
+ "text": "at"
+ },
+ {
+ "id": 32154,
+ "start": 14951.2,
+ "end": 14951.8,
+ "text": "CEO"
+ },
+ {
+ "id": 32155,
+ "start": 14951.8,
+ "end": 14952.6,
+ "text": "became"
+ },
+ {
+ "id": 32156,
+ "start": 14952.6,
+ "end": 14952.9,
+ "text": "aware"
+ },
+ {
+ "id": 32157,
+ "start": 14952.9,
+ "end": 14953,
+ "text": "in"
+ },
+ {
+ "id": 32158,
+ "start": 14953,
+ "end": 14953.4,
+ "text": "December"
+ },
+ {
+ "id": 32159,
+ "start": 14953.4,
+ "end": 14953.48,
+ "text": "of"
+ },
+ {
+ "id": 32160,
+ "start": 14953.48,
+ "end": 14953.92,
+ "text": "20"
+ },
+ {
+ "id": 32161,
+ "start": 14953.92,
+ "end": 14954.86,
+ "text": "15"
+ },
+ {
+ "id": 32162,
+ "start": 14954.86,
+ "end": 14955.74,
+ "text": "that"
+ },
+ {
+ "id": 32163,
+ "start": 14955.74,
+ "end": 14956.12,
+ "text": "door"
+ },
+ {
+ "id": 32164,
+ "start": 14956.12,
+ "end": 14956.56,
+ "text": "Cogan"
+ },
+ {
+ "id": 32165,
+ "start": 14956.56,
+ "end": 14956.74,
+ "text": "and"
+ },
+ {
+ "id": 32166,
+ "start": 14956.74,
+ "end": 14957.26,
+ "text": "Cambridge"
+ },
+ {
+ "id": 32167,
+ "start": 14957.26,
+ "end": 14957.98,
+ "text": "Analytica"
+ },
+ {
+ "id": 32168,
+ "start": 14957.98,
+ "end": 14959.22,
+ "text": "misappropriated"
+ },
+ {
+ "id": 32169,
+ "start": 14959.22,
+ "end": 14959.56,
+ "text": "data"
+ },
+ {
+ "id": 32170,
+ "start": 14959.56,
+ "end": 14959.8,
+ "text": "from"
+ },
+ {
+ "id": 32171,
+ "start": 14959.8,
+ "end": 14960.86,
+ "text": "87,000,000"
+ },
+ {
+ "id": 32172,
+ "start": 14960.86,
+ "end": 14961.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 32173,
+ "start": 14961.26,
+ "end": 14962.24,
+ "text": "users"
+ },
+ {
+ "id": 32174,
+ "start": 14962.24,
+ "end": 14963.04,
+ "text": "that's"
+ },
+ {
+ "id": 32175,
+ "start": 14963.04,
+ "end": 14963.66,
+ "text": "27"
+ },
+ {
+ "id": 32176,
+ "start": 14963.66,
+ "end": 14963.9,
+ "text": "months"
+ },
+ {
+ "id": 32177,
+ "start": 14963.9,
+ "end": 14964.6,
+ "text": "ago"
+ },
+ {
+ "id": 32178,
+ "start": 14964.6,
+ "end": 14965.86,
+ "text": "that"
+ },
+ {
+ "id": 32179,
+ "start": 14965.86,
+ "end": 14966.24,
+ "text": "you"
+ },
+ {
+ "id": 32180,
+ "start": 14966.24,
+ "end": 14966.62,
+ "text": "became"
+ },
+ {
+ "id": 32181,
+ "start": 14966.62,
+ "end": 14966.92,
+ "text": "as"
+ },
+ {
+ "id": 32182,
+ "start": 14966.92,
+ "end": 14967.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 32183,
+ "start": 14967.44,
+ "end": 14967.72,
+ "text": "and"
+ },
+ {
+ "id": 32184,
+ "start": 14967.72,
+ "end": 14968.08,
+ "text": "perhaps"
+ },
+ {
+ "id": 32185,
+ "start": 14968.08,
+ "end": 14968.22,
+ "text": "you"
+ },
+ {
+ "id": 32186,
+ "start": 14968.22,
+ "end": 14968.78,
+ "text": "personally"
+ },
+ {
+ "id": 32187,
+ "start": 14968.78,
+ "end": 14969.08,
+ "text": "became"
+ },
+ {
+ "id": 32188,
+ "start": 14969.08,
+ "end": 14969.86,
+ "text": "aware."
+ },
+ {
+ "id": 32189,
+ "start": 14969.86,
+ "end": 14970.88,
+ "text": "However,"
+ },
+ {
+ "id": 32190,
+ "start": 14970.88,
+ "end": 14971.12,
+ "text": "a"
+ },
+ {
+ "id": 32191,
+ "start": 14971.12,
+ "end": 14971.56,
+ "text": "decision"
+ },
+ {
+ "id": 32192,
+ "start": 14971.56,
+ "end": 14971.74,
+ "text": "was"
+ },
+ {
+ "id": 32193,
+ "start": 14971.74,
+ "end": 14972,
+ "text": "made"
+ },
+ {
+ "id": 32194,
+ "start": 14972,
+ "end": 14972.3,
+ "text": "not"
+ },
+ {
+ "id": 32195,
+ "start": 14972.3,
+ "end": 14972.44,
+ "text": "to"
+ },
+ {
+ "id": 32196,
+ "start": 14972.44,
+ "end": 14973.1,
+ "text": "notify"
+ },
+ {
+ "id": 32197,
+ "start": 14973.1,
+ "end": 14973.78,
+ "text": "the"
+ },
+ {
+ "id": 32198,
+ "start": 14973.78,
+ "end": 14974.28,
+ "text": "users."
+ },
+ {
+ "id": 32199,
+ "start": 14974.28,
+ "end": 14975.3,
+ "text": "So"
+ },
+ {
+ "id": 32200,
+ "start": 14975.3,
+ "end": 14975.56,
+ "text": "my"
+ },
+ {
+ "id": 32201,
+ "start": 14975.56,
+ "end": 14976.06,
+ "text": "question"
+ },
+ {
+ "id": 32202,
+ "start": 14976.06,
+ "end": 14976.32,
+ "text": "is"
+ },
+ {
+ "id": 32203,
+ "start": 14976.32,
+ "end": 14977.2,
+ "text": "did"
+ },
+ {
+ "id": 32204,
+ "start": 14977.2,
+ "end": 14978,
+ "text": "any"
+ },
+ {
+ "id": 32205,
+ "start": 14978,
+ "end": 14978.44,
+ "text": "at"
+ },
+ {
+ "id": 32206,
+ "start": 14978.44,
+ "end": 14979.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 32207,
+ "start": 14979.02,
+ "end": 14979.46,
+ "text": "have"
+ },
+ {
+ "id": 32208,
+ "start": 14979.46,
+ "end": 14979.58,
+ "text": "a"
+ },
+ {
+ "id": 32209,
+ "start": 14979.58,
+ "end": 14980.52,
+ "text": "conversation"
+ },
+ {
+ "id": 32210,
+ "start": 14980.52,
+ "end": 14981.36,
+ "text": "at"
+ },
+ {
+ "id": 32211,
+ "start": 14981.36,
+ "end": 14981.48,
+ "text": "the"
+ },
+ {
+ "id": 32212,
+ "start": 14981.48,
+ "end": 14982,
+ "text": "time"
+ },
+ {
+ "id": 32213,
+ "start": 14982,
+ "end": 14982.54,
+ "text": "that"
+ },
+ {
+ "id": 32214,
+ "start": 14982.54,
+ "end": 14983.72,
+ "text": "you"
+ },
+ {
+ "id": 32215,
+ "start": 14983.72,
+ "end": 14984.08,
+ "text": "became"
+ },
+ {
+ "id": 32216,
+ "start": 14984.08,
+ "end": 14984.46,
+ "text": "aware"
+ },
+ {
+ "id": 32217,
+ "start": 14984.46,
+ "end": 14985.28,
+ "text": "of"
+ },
+ {
+ "id": 32218,
+ "start": 14985.28,
+ "end": 14985.52,
+ "text": "this"
+ },
+ {
+ "id": 32219,
+ "start": 14985.52,
+ "end": 14985.98,
+ "text": "breach"
+ },
+ {
+ "id": 32220,
+ "start": 14985.98,
+ "end": 14986.78,
+ "text": "and"
+ },
+ {
+ "id": 32221,
+ "start": 14986.78,
+ "end": 14987.52,
+ "text": "have"
+ },
+ {
+ "id": 32222,
+ "start": 14987.52,
+ "end": 14987.6,
+ "text": "a"
+ },
+ {
+ "id": 32223,
+ "start": 14987.6,
+ "end": 14988.36,
+ "text": "conversation"
+ },
+ {
+ "id": 32224,
+ "start": 14988.36,
+ "end": 14988.7,
+ "text": "where"
+ },
+ {
+ "id": 32225,
+ "start": 14988.7,
+ "end": 14988.84,
+ "text": "in"
+ },
+ {
+ "id": 32226,
+ "start": 14988.84,
+ "end": 14988.96,
+ "text": "the"
+ },
+ {
+ "id": 32227,
+ "start": 14988.96,
+ "end": 14989.46,
+ "text": "decision"
+ },
+ {
+ "id": 32228,
+ "start": 14989.46,
+ "end": 14989.66,
+ "text": "was"
+ },
+ {
+ "id": 32229,
+ "start": 14989.66,
+ "end": 14990.1,
+ "text": "made"
+ },
+ {
+ "id": 32230,
+ "start": 14990.1,
+ "end": 14990.7,
+ "text": "not"
+ },
+ {
+ "id": 32231,
+ "start": 14990.7,
+ "end": 14990.88,
+ "text": "to"
+ },
+ {
+ "id": 32232,
+ "start": 14990.88,
+ "end": 14991.5,
+ "text": "contact"
+ },
+ {
+ "id": 32233,
+ "start": 14991.5,
+ "end": 14991.82,
+ "text": "the"
+ },
+ {
+ "id": 32234,
+ "start": 14991.82,
+ "end": 14994.64,
+ "text": "users."
+ },
+ {
+ "id": 32235,
+ "start": 14994.64,
+ "end": 14995.64,
+ "text": "Senator,"
+ },
+ {
+ "id": 32236,
+ "start": 14995.64,
+ "end": 14997.52,
+ "text": "I"
+ },
+ {
+ "id": 32237,
+ "start": 14997.52,
+ "end": 14997.68,
+ "text": "don't"
+ },
+ {
+ "id": 32238,
+ "start": 14997.68,
+ "end": 14997.8,
+ "text": "know"
+ },
+ {
+ "id": 32239,
+ "start": 14997.8,
+ "end": 14997.88,
+ "text": "if"
+ },
+ {
+ "id": 32240,
+ "start": 14997.88,
+ "end": 14998.04,
+ "text": "there"
+ },
+ {
+ "id": 32241,
+ "start": 14998.04,
+ "end": 14998.16,
+ "text": "were"
+ },
+ {
+ "id": 32242,
+ "start": 14998.16,
+ "end": 14998.34,
+ "text": "any"
+ },
+ {
+ "id": 32243,
+ "start": 14998.34,
+ "end": 14999.02,
+ "text": "conversations"
+ },
+ {
+ "id": 32244,
+ "start": 14999.02,
+ "end": 14999.28,
+ "text": "at"
+ },
+ {
+ "id": 32245,
+ "start": 14999.28,
+ "end": 14999.76,
+ "text": "Facebook"
+ },
+ {
+ "id": 32246,
+ "start": 14999.76,
+ "end": 15000.34,
+ "text": "overall"
+ },
+ {
+ "id": 32247,
+ "start": 15000.34,
+ "end": 15000.58,
+ "text": "because"
+ },
+ {
+ "id": 32248,
+ "start": 15000.58,
+ "end": 15000.64,
+ "text": "I"
+ },
+ {
+ "id": 32249,
+ "start": 15000.64,
+ "end": 15000.78,
+ "text": "was"
+ },
+ {
+ "id": 32250,
+ "start": 15000.78,
+ "end": 15000.92,
+ "text": "in"
+ },
+ {
+ "id": 32251,
+ "start": 15000.92,
+ "end": 15001.08,
+ "text": "a"
+ },
+ {
+ "id": 32252,
+ "start": 15001.08,
+ "end": 15001.26,
+ "text": "lot"
+ },
+ {
+ "id": 32253,
+ "start": 15001.26,
+ "end": 15001.36,
+ "text": "of"
+ },
+ {
+ "id": 32254,
+ "start": 15001.36,
+ "end": 15001.64,
+ "text": "them."
+ },
+ {
+ "id": 32255,
+ "start": 15001.64,
+ "end": 15002.04,
+ "text": "But"
+ },
+ {
+ "id": 32256,
+ "start": 15002.04,
+ "end": 15003.04,
+ "text": "on"
+ },
+ {
+ "id": 32257,
+ "start": 15003.04,
+ "end": 15003.24,
+ "text": "that"
+ },
+ {
+ "id": 32258,
+ "start": 15003.24,
+ "end": 15003.7,
+ "text": "subject,"
+ },
+ {
+ "id": 32259,
+ "start": 15003.7,
+ "end": 15004.68,
+ "text": "yeah"
+ },
+ {
+ "id": 32260,
+ "start": 15004.68,
+ "end": 15005.64,
+ "text": "I'm"
+ },
+ {
+ "id": 32261,
+ "start": 15005.64,
+ "end": 15005.76,
+ "text": "not"
+ },
+ {
+ "id": 32262,
+ "start": 15005.76,
+ "end": 15005.9,
+ "text": "sure"
+ },
+ {
+ "id": 32263,
+ "start": 15005.9,
+ "end": 15006.04,
+ "text": "what"
+ },
+ {
+ "id": 32264,
+ "start": 15006.04,
+ "end": 15006.2,
+ "text": "other"
+ },
+ {
+ "id": 32265,
+ "start": 15006.2,
+ "end": 15006.38,
+ "text": "people"
+ },
+ {
+ "id": 32266,
+ "start": 15006.38,
+ "end": 15007.78,
+ "text": "discussed"
+ },
+ {
+ "id": 32267,
+ "start": 15007.78,
+ "end": 15009.08,
+ "text": "are"
+ },
+ {
+ "id": 32268,
+ "start": 15009.08,
+ "end": 15009.22,
+ "text": "at"
+ },
+ {
+ "id": 32269,
+ "start": 15009.22,
+ "end": 15009.36,
+ "text": "the"
+ },
+ {
+ "id": 32270,
+ "start": 15009.36,
+ "end": 15009.78,
+ "text": "time"
+ },
+ {
+ "id": 32271,
+ "start": 15009.78,
+ "end": 15010.64,
+ "text": "in"
+ },
+ {
+ "id": 32272,
+ "start": 15010.64,
+ "end": 15010.94,
+ "text": "20"
+ },
+ {
+ "id": 32273,
+ "start": 15010.94,
+ "end": 15011.34,
+ "text": "15"
+ },
+ {
+ "id": 32274,
+ "start": 15011.34,
+ "end": 15011.52,
+ "text": "we"
+ },
+ {
+ "id": 32275,
+ "start": 15011.52,
+ "end": 15011.8,
+ "text": "heard"
+ },
+ {
+ "id": 32276,
+ "start": 15011.8,
+ "end": 15011.92,
+ "text": "the"
+ },
+ {
+ "id": 32277,
+ "start": 15011.92,
+ "end": 15012.34,
+ "text": "report"
+ },
+ {
+ "id": 32278,
+ "start": 15012.34,
+ "end": 15013.18,
+ "text": "that"
+ },
+ {
+ "id": 32279,
+ "start": 15013.18,
+ "end": 15013.78,
+ "text": "this"
+ },
+ {
+ "id": 32280,
+ "start": 15013.78,
+ "end": 15014.24,
+ "text": "developer"
+ },
+ {
+ "id": 32281,
+ "start": 15014.24,
+ "end": 15014.78,
+ "text": "Alexander"
+ },
+ {
+ "id": 32282,
+ "start": 15014.78,
+ "end": 15015.2,
+ "text": "Cogan"
+ },
+ {
+ "id": 32283,
+ "start": 15015.2,
+ "end": 15015.5,
+ "text": "had"
+ },
+ {
+ "id": 32284,
+ "start": 15015.5,
+ "end": 15015.86,
+ "text": "sold"
+ },
+ {
+ "id": 32285,
+ "start": 15015.86,
+ "end": 15016.22,
+ "text": "data"
+ },
+ {
+ "id": 32286,
+ "start": 15016.22,
+ "end": 15016.72,
+ "text": "to"
+ },
+ {
+ "id": 32287,
+ "start": 15016.72,
+ "end": 15017.06,
+ "text": "Cambridge"
+ },
+ {
+ "id": 32288,
+ "start": 15017.06,
+ "end": 15017.56,
+ "text": "Analytica"
+ },
+ {
+ "id": 32289,
+ "start": 15017.56,
+ "end": 15017.94,
+ "text": "that's"
+ },
+ {
+ "id": 32290,
+ "start": 15017.94,
+ "end": 15018.1,
+ "text": "a"
+ },
+ {
+ "id": 32291,
+ "start": 15018.1,
+ "end": 15018.52,
+ "text": "violation"
+ },
+ {
+ "id": 32292,
+ "start": 15018.52,
+ "end": 15018.62,
+ "text": "of"
+ },
+ {
+ "id": 32293,
+ "start": 15018.62,
+ "end": 15018.76,
+ "text": "our"
+ },
+ {
+ "id": 32294,
+ "start": 15018.76,
+ "end": 15019.02,
+ "text": "terms."
+ },
+ {
+ "id": 32295,
+ "start": 15019.02,
+ "end": 15019.48,
+ "text": "And"
+ },
+ {
+ "id": 32296,
+ "start": 15019.48,
+ "end": 15019.64,
+ "text": "were"
+ },
+ {
+ "id": 32297,
+ "start": 15019.64,
+ "end": 15019.76,
+ "text": "you"
+ },
+ {
+ "id": 32298,
+ "start": 15019.76,
+ "end": 15019.86,
+ "text": "a"
+ },
+ {
+ "id": 32299,
+ "start": 15019.86,
+ "end": 15020.1,
+ "text": "part"
+ },
+ {
+ "id": 32300,
+ "start": 15020.1,
+ "end": 15020.2,
+ "text": "of"
+ },
+ {
+ "id": 32301,
+ "start": 15020.2,
+ "end": 15020.32,
+ "text": "a"
+ },
+ {
+ "id": 32302,
+ "start": 15020.32,
+ "end": 15020.92,
+ "text": "decision?"
+ },
+ {
+ "id": 32303,
+ "start": 15020.92,
+ "end": 15021.48,
+ "text": "Were"
+ },
+ {
+ "id": 32304,
+ "start": 15021.48,
+ "end": 15021.64,
+ "text": "you"
+ },
+ {
+ "id": 32305,
+ "start": 15021.64,
+ "end": 15021.84,
+ "text": "part"
+ },
+ {
+ "id": 32306,
+ "start": 15021.84,
+ "end": 15021.9,
+ "text": "of"
+ },
+ {
+ "id": 32307,
+ "start": 15021.9,
+ "end": 15022,
+ "text": "a"
+ },
+ {
+ "id": 32308,
+ "start": 15022,
+ "end": 15022.56,
+ "text": "discussion"
+ },
+ {
+ "id": 32309,
+ "start": 15022.56,
+ "end": 15022.72,
+ "text": "that"
+ },
+ {
+ "id": 32310,
+ "start": 15022.72,
+ "end": 15023.22,
+ "text": "resulted"
+ },
+ {
+ "id": 32311,
+ "start": 15023.22,
+ "end": 15023.36,
+ "text": "in"
+ },
+ {
+ "id": 32312,
+ "start": 15023.36,
+ "end": 15023.46,
+ "text": "a"
+ },
+ {
+ "id": 32313,
+ "start": 15023.46,
+ "end": 15024.12,
+ "text": "decision"
+ },
+ {
+ "id": 32314,
+ "start": 15024.12,
+ "end": 15024.92,
+ "text": "not"
+ },
+ {
+ "id": 32315,
+ "start": 15024.92,
+ "end": 15025.26,
+ "text": "to"
+ },
+ {
+ "id": 32316,
+ "start": 15025.26,
+ "end": 15025.82,
+ "text": "inform"
+ },
+ {
+ "id": 32317,
+ "start": 15025.82,
+ "end": 15026,
+ "text": "your"
+ },
+ {
+ "id": 32318,
+ "start": 15026,
+ "end": 15027.04,
+ "text": "users."
+ },
+ {
+ "id": 32319,
+ "start": 15027.04,
+ "end": 15027.54,
+ "text": "I"
+ },
+ {
+ "id": 32320,
+ "start": 15027.54,
+ "end": 15027.92,
+ "text": "don't"
+ },
+ {
+ "id": 32321,
+ "start": 15027.92,
+ "end": 15028.36,
+ "text": "remember"
+ },
+ {
+ "id": 32322,
+ "start": 15028.36,
+ "end": 15028.48,
+ "text": "a"
+ },
+ {
+ "id": 32323,
+ "start": 15028.48,
+ "end": 15029.4,
+ "text": "conversation"
+ },
+ {
+ "id": 32324,
+ "start": 15029.4,
+ "end": 15029.62,
+ "text": "like"
+ },
+ {
+ "id": 32325,
+ "start": 15029.62,
+ "end": 15029.82,
+ "text": "that"
+ },
+ {
+ "id": 32326,
+ "start": 15029.82,
+ "end": 15030.52,
+ "text": "for"
+ },
+ {
+ "id": 32327,
+ "start": 15030.52,
+ "end": 15030.64,
+ "text": "the"
+ },
+ {
+ "id": 32328,
+ "start": 15030.64,
+ "end": 15030.96,
+ "text": "reason."
+ },
+ {
+ "id": 32329,
+ "start": 15030.96,
+ "end": 15031.18,
+ "text": "Why"
+ },
+ {
+ "id": 32330,
+ "start": 15031.18,
+ "end": 15031.62,
+ "text": "are"
+ },
+ {
+ "id": 32331,
+ "start": 15031.62,
+ "end": 15031.74,
+ "text": "you"
+ },
+ {
+ "id": 32332,
+ "start": 15031.74,
+ "end": 15032.08,
+ "text": "aware"
+ },
+ {
+ "id": 32333,
+ "start": 15032.08,
+ "end": 15032.32,
+ "text": "of"
+ },
+ {
+ "id": 32334,
+ "start": 15032.32,
+ "end": 15032.56,
+ "text": "any"
+ },
+ {
+ "id": 32335,
+ "start": 15032.56,
+ "end": 15032.84,
+ "text": "one"
+ },
+ {
+ "id": 32336,
+ "start": 15032.84,
+ "end": 15033.86,
+ "text": "in"
+ },
+ {
+ "id": 32337,
+ "start": 15033.86,
+ "end": 15034.46,
+ "text": "leadership"
+ },
+ {
+ "id": 32338,
+ "start": 15034.46,
+ "end": 15034.64,
+ "text": "at"
+ },
+ {
+ "id": 32339,
+ "start": 15034.64,
+ "end": 15035.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 32340,
+ "start": 15035.16,
+ "end": 15035.34,
+ "text": "who"
+ },
+ {
+ "id": 32341,
+ "start": 15035.34,
+ "end": 15035.56,
+ "text": "was"
+ },
+ {
+ "id": 32342,
+ "start": 15035.56,
+ "end": 15036.12,
+ "text": "in"
+ },
+ {
+ "id": 32343,
+ "start": 15036.12,
+ "end": 15036.22,
+ "text": "a"
+ },
+ {
+ "id": 32344,
+ "start": 15036.22,
+ "end": 15037.04,
+ "text": "conversation"
+ },
+ {
+ "id": 32345,
+ "start": 15037.04,
+ "end": 15037.36,
+ "text": "where"
+ },
+ {
+ "id": 32346,
+ "start": 15037.36,
+ "end": 15037.44,
+ "text": "a"
+ },
+ {
+ "id": 32347,
+ "start": 15037.44,
+ "end": 15037.86,
+ "text": "decision"
+ },
+ {
+ "id": 32348,
+ "start": 15037.86,
+ "end": 15038.06,
+ "text": "was"
+ },
+ {
+ "id": 32349,
+ "start": 15038.06,
+ "end": 15038.44,
+ "text": "made"
+ },
+ {
+ "id": 32350,
+ "start": 15038.44,
+ "end": 15039.1,
+ "text": "not"
+ },
+ {
+ "id": 32351,
+ "start": 15039.1,
+ "end": 15039.3,
+ "text": "to"
+ },
+ {
+ "id": 32352,
+ "start": 15039.3,
+ "end": 15039.76,
+ "text": "inform"
+ },
+ {
+ "id": 32353,
+ "start": 15039.76,
+ "end": 15039.98,
+ "text": "your"
+ },
+ {
+ "id": 32354,
+ "start": 15039.98,
+ "end": 15040.4,
+ "text": "users."
+ },
+ {
+ "id": 32355,
+ "start": 15040.4,
+ "end": 15040.56,
+ "text": "Or"
+ },
+ {
+ "id": 32356,
+ "start": 15040.56,
+ "end": 15040.72,
+ "text": "do"
+ },
+ {
+ "id": 32357,
+ "start": 15040.72,
+ "end": 15040.84,
+ "text": "you"
+ },
+ {
+ "id": 32358,
+ "start": 15040.84,
+ "end": 15041.12,
+ "text": "believe"
+ },
+ {
+ "id": 32359,
+ "start": 15041.12,
+ "end": 15041.34,
+ "text": "no"
+ },
+ {
+ "id": 32360,
+ "start": 15041.34,
+ "end": 15041.52,
+ "text": "such"
+ },
+ {
+ "id": 32361,
+ "start": 15041.52,
+ "end": 15042.14,
+ "text": "conversation"
+ },
+ {
+ "id": 32362,
+ "start": 15042.14,
+ "end": 15042.34,
+ "text": "ever"
+ },
+ {
+ "id": 32363,
+ "start": 15042.34,
+ "end": 15042.56,
+ "text": "took"
+ },
+ {
+ "id": 32364,
+ "start": 15042.56,
+ "end": 15043.56,
+ "text": "place"
+ },
+ {
+ "id": 32365,
+ "start": 15043.56,
+ "end": 15044.36,
+ "text": "I'm"
+ },
+ {
+ "id": 32366,
+ "start": 15044.36,
+ "end": 15044.52,
+ "text": "not"
+ },
+ {
+ "id": 32367,
+ "start": 15044.52,
+ "end": 15044.8,
+ "text": "sure"
+ },
+ {
+ "id": 32368,
+ "start": 15044.8,
+ "end": 15045.14,
+ "text": "whether"
+ },
+ {
+ "id": 32369,
+ "start": 15045.14,
+ "end": 15045.32,
+ "text": "there"
+ },
+ {
+ "id": 32370,
+ "start": 15045.32,
+ "end": 15045.42,
+ "text": "is"
+ },
+ {
+ "id": 32371,
+ "start": 15045.42,
+ "end": 15045.48,
+ "text": "a"
+ },
+ {
+ "id": 32372,
+ "start": 15045.48,
+ "end": 15046.04,
+ "text": "conversation"
+ },
+ {
+ "id": 32373,
+ "start": 15046.04,
+ "end": 15046.22,
+ "text": "about"
+ },
+ {
+ "id": 32374,
+ "start": 15046.22,
+ "end": 15046.38,
+ "text": "that."
+ },
+ {
+ "id": 32375,
+ "start": 15046.38,
+ "end": 15046.52,
+ "text": "But"
+ },
+ {
+ "id": 32376,
+ "start": 15046.52,
+ "end": 15046.58,
+ "text": "I"
+ },
+ {
+ "id": 32377,
+ "start": 15046.58,
+ "end": 15046.72,
+ "text": "can"
+ },
+ {
+ "id": 32378,
+ "start": 15046.72,
+ "end": 15046.94,
+ "text": "tell"
+ },
+ {
+ "id": 32379,
+ "start": 15046.94,
+ "end": 15047.04,
+ "text": "you"
+ },
+ {
+ "id": 32380,
+ "start": 15047.04,
+ "end": 15047.22,
+ "text": "the"
+ },
+ {
+ "id": 32381,
+ "start": 15047.22,
+ "end": 15047.46,
+ "text": "thought"
+ },
+ {
+ "id": 32382,
+ "start": 15047.46,
+ "end": 15047.88,
+ "text": "process"
+ },
+ {
+ "id": 32383,
+ "start": 15047.88,
+ "end": 15048,
+ "text": "at"
+ },
+ {
+ "id": 32384,
+ "start": 15048,
+ "end": 15048.14,
+ "text": "the"
+ },
+ {
+ "id": 32385,
+ "start": 15048.14,
+ "end": 15048.48,
+ "text": "time"
+ },
+ {
+ "id": 32386,
+ "start": 15048.48,
+ "end": 15048.84,
+ "text": "of"
+ },
+ {
+ "id": 32387,
+ "start": 15048.84,
+ "end": 15048.96,
+ "text": "the"
+ },
+ {
+ "id": 32388,
+ "start": 15048.96,
+ "end": 15049.32,
+ "text": "company,"
+ },
+ {
+ "id": 32389,
+ "start": 15049.32,
+ "end": 15049.48,
+ "text": "which"
+ },
+ {
+ "id": 32390,
+ "start": 15049.48,
+ "end": 15049.68,
+ "text": "was"
+ },
+ {
+ "id": 32391,
+ "start": 15049.68,
+ "end": 15049.88,
+ "text": "that"
+ },
+ {
+ "id": 32392,
+ "start": 15049.88,
+ "end": 15050.3,
+ "text": "in"
+ },
+ {
+ "id": 32393,
+ "start": 15050.3,
+ "end": 15050.64,
+ "text": "20"
+ },
+ {
+ "id": 32394,
+ "start": 15050.64,
+ "end": 15051.06,
+ "text": "15"
+ },
+ {
+ "id": 32395,
+ "start": 15051.06,
+ "end": 15051.28,
+ "text": "when"
+ },
+ {
+ "id": 32396,
+ "start": 15051.28,
+ "end": 15051.4,
+ "text": "we"
+ },
+ {
+ "id": 32397,
+ "start": 15051.4,
+ "end": 15051.58,
+ "text": "heard"
+ },
+ {
+ "id": 32398,
+ "start": 15051.58,
+ "end": 15051.76,
+ "text": "about"
+ },
+ {
+ "id": 32399,
+ "start": 15051.76,
+ "end": 15051.98,
+ "text": "this,"
+ },
+ {
+ "id": 32400,
+ "start": 15051.98,
+ "end": 15052.72,
+ "text": "we"
+ },
+ {
+ "id": 32401,
+ "start": 15052.72,
+ "end": 15053.36,
+ "text": "banned"
+ },
+ {
+ "id": 32402,
+ "start": 15053.36,
+ "end": 15053.5,
+ "text": "the"
+ },
+ {
+ "id": 32403,
+ "start": 15053.5,
+ "end": 15054.33,
+ "text": "developer"
+ },
+ {
+ "id": 32404,
+ "start": 15054.33,
+ "end": 15054.81,
+ "text": "and"
+ },
+ {
+ "id": 32405,
+ "start": 15054.81,
+ "end": 15055.01,
+ "text": "we"
+ },
+ {
+ "id": 32406,
+ "start": 15055.01,
+ "end": 15055.91,
+ "text": "demanded"
+ },
+ {
+ "id": 32407,
+ "start": 15055.91,
+ "end": 15056.11,
+ "text": "that"
+ },
+ {
+ "id": 32408,
+ "start": 15056.11,
+ "end": 15056.97,
+ "text": "they"
+ },
+ {
+ "id": 32409,
+ "start": 15056.97,
+ "end": 15057.95,
+ "text": "delete"
+ },
+ {
+ "id": 32410,
+ "start": 15057.95,
+ "end": 15058.05,
+ "text": "all"
+ },
+ {
+ "id": 32411,
+ "start": 15058.05,
+ "end": 15058.17,
+ "text": "the"
+ },
+ {
+ "id": 32412,
+ "start": 15058.17,
+ "end": 15058.35,
+ "text": "data"
+ },
+ {
+ "id": 32413,
+ "start": 15058.35,
+ "end": 15058.49,
+ "text": "and"
+ },
+ {
+ "id": 32414,
+ "start": 15058.49,
+ "end": 15058.77,
+ "text": "stop"
+ },
+ {
+ "id": 32415,
+ "start": 15058.77,
+ "end": 15059.03,
+ "text": "using"
+ },
+ {
+ "id": 32416,
+ "start": 15059.03,
+ "end": 15059.15,
+ "text": "it."
+ },
+ {
+ "id": 32417,
+ "start": 15059.15,
+ "end": 15059.31,
+ "text": "And"
+ },
+ {
+ "id": 32418,
+ "start": 15059.31,
+ "end": 15059.55,
+ "text": "same"
+ },
+ {
+ "id": 32419,
+ "start": 15059.55,
+ "end": 15059.69,
+ "text": "with"
+ },
+ {
+ "id": 32420,
+ "start": 15059.69,
+ "end": 15059.99,
+ "text": "Cambridge"
+ },
+ {
+ "id": 32421,
+ "start": 15059.99,
+ "end": 15060.33,
+ "text": "analytic"
+ },
+ {
+ "id": 32422,
+ "start": 15060.33,
+ "end": 15060.57,
+ "text": "and"
+ },
+ {
+ "id": 32423,
+ "start": 15060.57,
+ "end": 15061.07,
+ "text": "told"
+ },
+ {
+ "id": 32424,
+ "start": 15061.07,
+ "end": 15061.19,
+ "text": "us"
+ },
+ {
+ "id": 32425,
+ "start": 15061.19,
+ "end": 15061.37,
+ "text": "to"
+ },
+ {
+ "id": 32426,
+ "start": 15061.37,
+ "end": 15061.69,
+ "text": "have"
+ },
+ {
+ "id": 32427,
+ "start": 15061.69,
+ "end": 15061.85,
+ "text": "money"
+ },
+ {
+ "id": 32428,
+ "start": 15061.85,
+ "end": 15061.91,
+ "text": "in"
+ },
+ {
+ "id": 32429,
+ "start": 15061.91,
+ "end": 15062.05,
+ "text": "that"
+ },
+ {
+ "id": 32430,
+ "start": 15062.05,
+ "end": 15062.39,
+ "text": "regard."
+ },
+ {
+ "id": 32431,
+ "start": 15062.39,
+ "end": 15062.51,
+ "text": "But"
+ },
+ {
+ "id": 32432,
+ "start": 15062.51,
+ "end": 15062.67,
+ "text": "I'm"
+ },
+ {
+ "id": 32433,
+ "start": 15062.67,
+ "end": 15062.99,
+ "text": "talking"
+ },
+ {
+ "id": 32434,
+ "start": 15062.99,
+ "end": 15063.17,
+ "text": "about"
+ },
+ {
+ "id": 32435,
+ "start": 15063.17,
+ "end": 15063.83,
+ "text": "notification"
+ },
+ {
+ "id": 32436,
+ "start": 15063.83,
+ "end": 15063.91,
+ "text": "of"
+ },
+ {
+ "id": 32437,
+ "start": 15063.91,
+ "end": 15064.03,
+ "text": "the"
+ },
+ {
+ "id": 32438,
+ "start": 15064.03,
+ "end": 15065.1,
+ "text": "users"
+ },
+ {
+ "id": 32439,
+ "start": 15065.1,
+ "end": 15065.54,
+ "text": "and"
+ },
+ {
+ "id": 32440,
+ "start": 15065.54,
+ "end": 15066.3,
+ "text": "this"
+ },
+ {
+ "id": 32441,
+ "start": 15066.3,
+ "end": 15066.88,
+ "text": "relates"
+ },
+ {
+ "id": 32442,
+ "start": 15066.88,
+ "end": 15067.32,
+ "text": "to"
+ },
+ {
+ "id": 32443,
+ "start": 15067.32,
+ "end": 15067.48,
+ "text": "the"
+ },
+ {
+ "id": 32444,
+ "start": 15067.48,
+ "end": 15067.66,
+ "text": "issue"
+ },
+ {
+ "id": 32445,
+ "start": 15067.66,
+ "end": 15067.74,
+ "text": "of"
+ },
+ {
+ "id": 32446,
+ "start": 15067.74,
+ "end": 15068.58,
+ "text": "transparency"
+ },
+ {
+ "id": 32447,
+ "start": 15068.58,
+ "end": 15069.52,
+ "text": "and"
+ },
+ {
+ "id": 32448,
+ "start": 15069.52,
+ "end": 15069.64,
+ "text": "the"
+ },
+ {
+ "id": 32449,
+ "start": 15069.64,
+ "end": 15070.22,
+ "text": "relationship"
+ },
+ {
+ "id": 32450,
+ "start": 15070.22,
+ "end": 15070.36,
+ "text": "of"
+ },
+ {
+ "id": 32451,
+ "start": 15070.36,
+ "end": 15070.86,
+ "text": "trust"
+ },
+ {
+ "id": 32452,
+ "start": 15070.86,
+ "end": 15071.14,
+ "text": "in"
+ },
+ {
+ "id": 32453,
+ "start": 15071.14,
+ "end": 15071.64,
+ "text": "forming"
+ },
+ {
+ "id": 32454,
+ "start": 15071.64,
+ "end": 15071.82,
+ "text": "the"
+ },
+ {
+ "id": 32455,
+ "start": 15071.82,
+ "end": 15072.32,
+ "text": "user"
+ },
+ {
+ "id": 32456,
+ "start": 15072.32,
+ "end": 15073.04,
+ "text": "about"
+ },
+ {
+ "id": 32457,
+ "start": 15073.04,
+ "end": 15073.3,
+ "text": "what"
+ },
+ {
+ "id": 32458,
+ "start": 15073.3,
+ "end": 15073.56,
+ "text": "you"
+ },
+ {
+ "id": 32459,
+ "start": 15073.56,
+ "end": 15073.94,
+ "text": "know"
+ },
+ {
+ "id": 32460,
+ "start": 15073.94,
+ "end": 15074.82,
+ "text": "in"
+ },
+ {
+ "id": 32461,
+ "start": 15074.82,
+ "end": 15075.06,
+ "text": "terms"
+ },
+ {
+ "id": 32462,
+ "start": 15075.06,
+ "end": 15075.2,
+ "text": "of"
+ },
+ {
+ "id": 32463,
+ "start": 15075.2,
+ "end": 15075.56,
+ "text": "how"
+ },
+ {
+ "id": 32464,
+ "start": 15075.56,
+ "end": 15076.2,
+ "text": "their"
+ },
+ {
+ "id": 32465,
+ "start": 15076.2,
+ "end": 15077.18,
+ "text": "information"
+ },
+ {
+ "id": 32466,
+ "start": 15077.18,
+ "end": 15077.76,
+ "text": "has"
+ },
+ {
+ "id": 32467,
+ "start": 15077.76,
+ "end": 15077.96,
+ "text": "been"
+ },
+ {
+ "id": 32468,
+ "start": 15077.96,
+ "end": 15078.68,
+ "text": "misused"
+ },
+ {
+ "id": 32469,
+ "start": 15078.68,
+ "end": 15079.42,
+ "text": "and"
+ },
+ {
+ "id": 32470,
+ "start": 15079.42,
+ "end": 15079.64,
+ "text": "I'm."
+ },
+ {
+ "id": 32471,
+ "start": 15079.64,
+ "end": 15080,
+ "text": "Also"
+ },
+ {
+ "id": 32472,
+ "start": 15080,
+ "end": 15080.72,
+ "text": "concerned"
+ },
+ {
+ "id": 32473,
+ "start": 15080.72,
+ "end": 15081.7,
+ "text": "that"
+ },
+ {
+ "id": 32474,
+ "start": 15081.7,
+ "end": 15082.12,
+ "text": "when"
+ },
+ {
+ "id": 32475,
+ "start": 15082.12,
+ "end": 15082.38,
+ "text": "you"
+ },
+ {
+ "id": 32476,
+ "start": 15082.38,
+ "end": 15082.9,
+ "text": "personally"
+ },
+ {
+ "id": 32477,
+ "start": 15082.9,
+ "end": 15083.3,
+ "text": "became"
+ },
+ {
+ "id": 32478,
+ "start": 15083.3,
+ "end": 15083.76,
+ "text": "aware"
+ },
+ {
+ "id": 32479,
+ "start": 15083.76,
+ "end": 15083.92,
+ "text": "of"
+ },
+ {
+ "id": 32480,
+ "start": 15083.92,
+ "end": 15084.3,
+ "text": "this"
+ },
+ {
+ "id": 32481,
+ "start": 15084.3,
+ "end": 15085.28,
+ "text": "did"
+ },
+ {
+ "id": 32482,
+ "start": 15085.28,
+ "end": 15085.5,
+ "text": "you"
+ },
+ {
+ "id": 32483,
+ "start": 15085.5,
+ "end": 15085.7,
+ "text": "or"
+ },
+ {
+ "id": 32484,
+ "start": 15085.7,
+ "end": 15086.18,
+ "text": "senior"
+ },
+ {
+ "id": 32485,
+ "start": 15086.18,
+ "end": 15087.3,
+ "text": "leadership"
+ },
+ {
+ "id": 32486,
+ "start": 15087.3,
+ "end": 15087.82,
+ "text": "do"
+ },
+ {
+ "id": 32487,
+ "start": 15087.82,
+ "end": 15087.98,
+ "text": "an"
+ },
+ {
+ "id": 32488,
+ "start": 15087.98,
+ "end": 15088.58,
+ "text": "inquiry"
+ },
+ {
+ "id": 32489,
+ "start": 15088.58,
+ "end": 15088.68,
+ "text": "to"
+ },
+ {
+ "id": 32490,
+ "start": 15088.68,
+ "end": 15088.92,
+ "text": "find"
+ },
+ {
+ "id": 32491,
+ "start": 15088.92,
+ "end": 15089.08,
+ "text": "out"
+ },
+ {
+ "id": 32492,
+ "start": 15089.08,
+ "end": 15089.34,
+ "text": "who"
+ },
+ {
+ "id": 32493,
+ "start": 15089.34,
+ "end": 15089.78,
+ "text": "at"
+ },
+ {
+ "id": 32494,
+ "start": 15089.78,
+ "end": 15090.48,
+ "text": "Facebook"
+ },
+ {
+ "id": 32495,
+ "start": 15090.48,
+ "end": 15091.28,
+ "text": "had"
+ },
+ {
+ "id": 32496,
+ "start": 15091.28,
+ "end": 15091.48,
+ "text": "this"
+ },
+ {
+ "id": 32497,
+ "start": 15091.48,
+ "end": 15092.02,
+ "text": "information."
+ },
+ {
+ "id": 32498,
+ "start": 15092.02,
+ "end": 15092.24,
+ "text": "And"
+ },
+ {
+ "id": 32499,
+ "start": 15092.24,
+ "end": 15092.44,
+ "text": "did"
+ },
+ {
+ "id": 32500,
+ "start": 15092.44,
+ "end": 15092.62,
+ "text": "they"
+ },
+ {
+ "id": 32501,
+ "start": 15092.62,
+ "end": 15093.2,
+ "text": "not"
+ },
+ {
+ "id": 32502,
+ "start": 15093.2,
+ "end": 15093.86,
+ "text": "have"
+ },
+ {
+ "id": 32503,
+ "start": 15093.86,
+ "end": 15093.94,
+ "text": "a"
+ },
+ {
+ "id": 32504,
+ "start": 15093.94,
+ "end": 15094.78,
+ "text": "discussion"
+ },
+ {
+ "id": 32505,
+ "start": 15094.78,
+ "end": 15095.84,
+ "text": "about"
+ },
+ {
+ "id": 32506,
+ "start": 15095.84,
+ "end": 15096.22,
+ "text": "whether"
+ },
+ {
+ "id": 32507,
+ "start": 15096.22,
+ "end": 15096.36,
+ "text": "or"
+ },
+ {
+ "id": 32508,
+ "start": 15096.36,
+ "end": 15096.52,
+ "text": "not"
+ },
+ {
+ "id": 32509,
+ "start": 15096.52,
+ "end": 15096.74,
+ "text": "the"
+ },
+ {
+ "id": 32510,
+ "start": 15096.74,
+ "end": 15097.14,
+ "text": "users"
+ },
+ {
+ "id": 32511,
+ "start": 15097.14,
+ "end": 15097.56,
+ "text": "should"
+ },
+ {
+ "id": 32512,
+ "start": 15097.56,
+ "end": 15097.68,
+ "text": "be"
+ },
+ {
+ "id": 32513,
+ "start": 15097.68,
+ "end": 15098.74,
+ "text": "informed"
+ },
+ {
+ "id": 32514,
+ "start": 15098.74,
+ "end": 15099.14,
+ "text": "back"
+ },
+ {
+ "id": 32515,
+ "start": 15099.14,
+ "end": 15099.24,
+ "text": "in"
+ },
+ {
+ "id": 32516,
+ "start": 15099.24,
+ "end": 15099.7,
+ "text": "December"
+ },
+ {
+ "id": 32517,
+ "start": 15099.7,
+ "end": 15099.78,
+ "text": "of"
+ },
+ {
+ "id": 32518,
+ "start": 15099.78,
+ "end": 15100.06,
+ "text": "20"
+ },
+ {
+ "id": 32519,
+ "start": 15100.06,
+ "end": 15101.64,
+ "text": "15"
+ },
+ {
+ "id": 32520,
+ "start": 15101.64,
+ "end": 15102.62,
+ "text": "Senator,"
+ },
+ {
+ "id": 32521,
+ "start": 15102.62,
+ "end": 15102.78,
+ "text": "in"
+ },
+ {
+ "id": 32522,
+ "start": 15102.78,
+ "end": 15103.36,
+ "text": "retrospect,"
+ },
+ {
+ "id": 32523,
+ "start": 15103.36,
+ "end": 15103.44,
+ "text": "I"
+ },
+ {
+ "id": 32524,
+ "start": 15103.44,
+ "end": 15104.4,
+ "text": "think"
+ },
+ {
+ "id": 32525,
+ "start": 15104.4,
+ "end": 15104.52,
+ "text": "we"
+ },
+ {
+ "id": 32526,
+ "start": 15104.52,
+ "end": 15104.96,
+ "text": "clearly"
+ },
+ {
+ "id": 32527,
+ "start": 15104.96,
+ "end": 15105.18,
+ "text": "view"
+ },
+ {
+ "id": 32528,
+ "start": 15105.18,
+ "end": 15105.26,
+ "text": "it"
+ },
+ {
+ "id": 32529,
+ "start": 15105.26,
+ "end": 15105.38,
+ "text": "as"
+ },
+ {
+ "id": 32530,
+ "start": 15105.38,
+ "end": 15105.44,
+ "text": "a"
+ },
+ {
+ "id": 32531,
+ "start": 15105.44,
+ "end": 15105.9,
+ "text": "mistake"
+ },
+ {
+ "id": 32532,
+ "start": 15105.9,
+ "end": 15106.1,
+ "text": "that"
+ },
+ {
+ "id": 32533,
+ "start": 15106.1,
+ "end": 15106.2,
+ "text": "we"
+ },
+ {
+ "id": 32534,
+ "start": 15106.2,
+ "end": 15106.44,
+ "text": "didn't"
+ },
+ {
+ "id": 32535,
+ "start": 15106.44,
+ "end": 15106.92,
+ "text": "inform"
+ },
+ {
+ "id": 32536,
+ "start": 15106.92,
+ "end": 15107.2,
+ "text": "people"
+ },
+ {
+ "id": 32537,
+ "start": 15107.2,
+ "end": 15107.82,
+ "text": "and"
+ },
+ {
+ "id": 32538,
+ "start": 15107.82,
+ "end": 15107.94,
+ "text": "we"
+ },
+ {
+ "id": 32539,
+ "start": 15107.94,
+ "end": 15108.1,
+ "text": "did"
+ },
+ {
+ "id": 32540,
+ "start": 15108.1,
+ "end": 15108.3,
+ "text": "that"
+ },
+ {
+ "id": 32541,
+ "start": 15108.3,
+ "end": 15108.62,
+ "text": "based"
+ },
+ {
+ "id": 32542,
+ "start": 15108.62,
+ "end": 15108.82,
+ "text": "on"
+ },
+ {
+ "id": 32543,
+ "start": 15108.82,
+ "end": 15109.64,
+ "text": "false"
+ },
+ {
+ "id": 32544,
+ "start": 15109.64,
+ "end": 15110.3,
+ "text": "information"
+ },
+ {
+ "id": 32545,
+ "start": 15110.3,
+ "end": 15110.66,
+ "text": "that"
+ },
+ {
+ "id": 32546,
+ "start": 15110.66,
+ "end": 15110.74,
+ "text": "we"
+ },
+ {
+ "id": 32547,
+ "start": 15110.74,
+ "end": 15110.96,
+ "text": "thought"
+ },
+ {
+ "id": 32548,
+ "start": 15110.96,
+ "end": 15111.1,
+ "text": "that"
+ },
+ {
+ "id": 32549,
+ "start": 15111.1,
+ "end": 15111.2,
+ "text": "the"
+ },
+ {
+ "id": 32550,
+ "start": 15111.2,
+ "end": 15111.42,
+ "text": "case"
+ },
+ {
+ "id": 32551,
+ "start": 15111.42,
+ "end": 15111.6,
+ "text": "was"
+ },
+ {
+ "id": 32552,
+ "start": 15111.6,
+ "end": 15112.02,
+ "text": "closed"
+ },
+ {
+ "id": 32553,
+ "start": 15112.02,
+ "end": 15112.32,
+ "text": "and"
+ },
+ {
+ "id": 32554,
+ "start": 15112.32,
+ "end": 15112.44,
+ "text": "that"
+ },
+ {
+ "id": 32555,
+ "start": 15112.44,
+ "end": 15112.58,
+ "text": "the"
+ },
+ {
+ "id": 32556,
+ "start": 15112.58,
+ "end": 15112.78,
+ "text": "data"
+ },
+ {
+ "id": 32557,
+ "start": 15112.78,
+ "end": 15112.94,
+ "text": "had"
+ },
+ {
+ "id": 32558,
+ "start": 15112.94,
+ "end": 15113.12,
+ "text": "been"
+ },
+ {
+ "id": 32559,
+ "start": 15113.12,
+ "end": 15113.48,
+ "text": "deleted."
+ },
+ {
+ "id": 32560,
+ "start": 15113.48,
+ "end": 15113.66,
+ "text": "So"
+ },
+ {
+ "id": 32561,
+ "start": 15113.66,
+ "end": 15113.92,
+ "text": "there"
+ },
+ {
+ "id": 32562,
+ "start": 15113.92,
+ "end": 15114.1,
+ "text": "was"
+ },
+ {
+ "id": 32563,
+ "start": 15114.1,
+ "end": 15114.2,
+ "text": "a"
+ },
+ {
+ "id": 32564,
+ "start": 15114.2,
+ "end": 15114.78,
+ "text": "decision"
+ },
+ {
+ "id": 32565,
+ "start": 15114.78,
+ "end": 15115.12,
+ "text": "made"
+ },
+ {
+ "id": 32566,
+ "start": 15115.12,
+ "end": 15115.86,
+ "text": "on"
+ },
+ {
+ "id": 32567,
+ "start": 15115.86,
+ "end": 15116.1,
+ "text": "that"
+ },
+ {
+ "id": 32568,
+ "start": 15116.1,
+ "end": 15116.5,
+ "text": "basis"
+ },
+ {
+ "id": 32569,
+ "start": 15116.5,
+ "end": 15116.78,
+ "text": "not"
+ },
+ {
+ "id": 32570,
+ "start": 15116.78,
+ "end": 15116.9,
+ "text": "to"
+ },
+ {
+ "id": 32571,
+ "start": 15116.9,
+ "end": 15117.2,
+ "text": "inform"
+ },
+ {
+ "id": 32572,
+ "start": 15117.2,
+ "end": 15117.36,
+ "text": "the"
+ },
+ {
+ "id": 32573,
+ "start": 15117.36,
+ "end": 15117.7,
+ "text": "user."
+ },
+ {
+ "id": 32574,
+ "start": 15117.7,
+ "end": 15117.86,
+ "text": "Is"
+ },
+ {
+ "id": 32575,
+ "start": 15117.86,
+ "end": 15118.02,
+ "text": "that"
+ },
+ {
+ "id": 32576,
+ "start": 15118.02,
+ "end": 15118.36,
+ "text": "correct"
+ },
+ {
+ "id": 32577,
+ "start": 15118.36,
+ "end": 15119.44,
+ "text": "that's"
+ },
+ {
+ "id": 32578,
+ "start": 15119.44,
+ "end": 15119.56,
+ "text": "my"
+ },
+ {
+ "id": 32579,
+ "start": 15119.56,
+ "end": 15120.06,
+ "text": "understanding,"
+ },
+ {
+ "id": 32580,
+ "start": 15120.06,
+ "end": 15120.3,
+ "text": "yes,"
+ },
+ {
+ "id": 32581,
+ "start": 15120.3,
+ "end": 15121.02,
+ "text": "okay,"
+ },
+ {
+ "id": 32582,
+ "start": 15121.02,
+ "end": 15121.98,
+ "text": "but"
+ },
+ {
+ "id": 32583,
+ "start": 15121.98,
+ "end": 15122.66,
+ "text": "in"
+ },
+ {
+ "id": 32584,
+ "start": 15122.66,
+ "end": 15123.16,
+ "text": "retrospect,"
+ },
+ {
+ "id": 32585,
+ "start": 15123.16,
+ "end": 15123.24,
+ "text": "I"
+ },
+ {
+ "id": 32586,
+ "start": 15123.24,
+ "end": 15123.56,
+ "text": "think"
+ },
+ {
+ "id": 32587,
+ "start": 15123.56,
+ "end": 15124.32,
+ "text": "that"
+ },
+ {
+ "id": 32588,
+ "start": 15124.32,
+ "end": 15124.46,
+ "text": "was"
+ },
+ {
+ "id": 32589,
+ "start": 15124.46,
+ "end": 15124.54,
+ "text": "a"
+ },
+ {
+ "id": 32590,
+ "start": 15124.54,
+ "end": 15124.9,
+ "text": "mistake"
+ },
+ {
+ "id": 32591,
+ "start": 15124.9,
+ "end": 15125.22,
+ "text": "and"
+ },
+ {
+ "id": 32592,
+ "start": 15125.22,
+ "end": 15125.46,
+ "text": "knowing"
+ },
+ {
+ "id": 32593,
+ "start": 15125.46,
+ "end": 15125.58,
+ "text": "what"
+ },
+ {
+ "id": 32594,
+ "start": 15125.58,
+ "end": 15125.68,
+ "text": "we"
+ },
+ {
+ "id": 32595,
+ "start": 15125.68,
+ "end": 15125.82,
+ "text": "know"
+ },
+ {
+ "id": 32596,
+ "start": 15125.82,
+ "end": 15126.16,
+ "text": "now,"
+ },
+ {
+ "id": 32597,
+ "start": 15126.16,
+ "end": 15126.3,
+ "text": "we"
+ },
+ {
+ "id": 32598,
+ "start": 15126.3,
+ "end": 15126.5,
+ "text": "should"
+ },
+ {
+ "id": 32599,
+ "start": 15126.5,
+ "end": 15126.64,
+ "text": "have"
+ },
+ {
+ "id": 32600,
+ "start": 15126.64,
+ "end": 15126.9,
+ "text": "handled"
+ },
+ {
+ "id": 32601,
+ "start": 15126.9,
+ "end": 15126.96,
+ "text": "a"
+ },
+ {
+ "id": 32602,
+ "start": 15126.96,
+ "end": 15127.1,
+ "text": "lot"
+ },
+ {
+ "id": 32603,
+ "start": 15127.1,
+ "end": 15127.2,
+ "text": "of"
+ },
+ {
+ "id": 32604,
+ "start": 15127.2,
+ "end": 15127.38,
+ "text": "things"
+ },
+ {
+ "id": 32605,
+ "start": 15127.38,
+ "end": 15127.6,
+ "text": "here"
+ },
+ {
+ "id": 32606,
+ "start": 15127.6,
+ "end": 15128.02,
+ "text": "differently."
+ },
+ {
+ "id": 32607,
+ "start": 15128.02,
+ "end": 15128.42,
+ "text": "I"
+ },
+ {
+ "id": 32608,
+ "start": 15128.42,
+ "end": 15128.88,
+ "text": "appreciate"
+ },
+ {
+ "id": 32609,
+ "start": 15128.88,
+ "end": 15129.08,
+ "text": "that"
+ },
+ {
+ "id": 32610,
+ "start": 15129.08,
+ "end": 15129.4,
+ "text": "point."
+ },
+ {
+ "id": 32611,
+ "start": 15129.4,
+ "end": 15129.84,
+ "text": "Do"
+ },
+ {
+ "id": 32612,
+ "start": 15129.84,
+ "end": 15129.96,
+ "text": "you"
+ },
+ {
+ "id": 32613,
+ "start": 15129.96,
+ "end": 15130.12,
+ "text": "know"
+ },
+ {
+ "id": 32614,
+ "start": 15130.12,
+ "end": 15130.38,
+ "text": "when"
+ },
+ {
+ "id": 32615,
+ "start": 15130.38,
+ "end": 15131.48,
+ "text": "that"
+ },
+ {
+ "id": 32616,
+ "start": 15131.48,
+ "end": 15131.84,
+ "text": "decision"
+ },
+ {
+ "id": 32617,
+ "start": 15131.84,
+ "end": 15132.04,
+ "text": "was"
+ },
+ {
+ "id": 32618,
+ "start": 15132.04,
+ "end": 15132.24,
+ "text": "made"
+ },
+ {
+ "id": 32619,
+ "start": 15132.24,
+ "end": 15132.46,
+ "text": "not"
+ },
+ {
+ "id": 32620,
+ "start": 15132.46,
+ "end": 15132.54,
+ "text": "to"
+ },
+ {
+ "id": 32621,
+ "start": 15132.54,
+ "end": 15132.9,
+ "text": "inform"
+ },
+ {
+ "id": 32622,
+ "start": 15132.9,
+ "end": 15133.02,
+ "text": "the"
+ },
+ {
+ "id": 32623,
+ "start": 15133.02,
+ "end": 15134.06,
+ "text": "users?"
+ },
+ {
+ "id": 32624,
+ "start": 15134.06,
+ "end": 15134.86,
+ "text": "I"
+ },
+ {
+ "id": 32625,
+ "start": 15134.86,
+ "end": 15135.14,
+ "text": "don't"
+ },
+ {
+ "id": 32626,
+ "start": 15135.14,
+ "end": 15136.06,
+ "text": "okay,"
+ },
+ {
+ "id": 32627,
+ "start": 15136.06,
+ "end": 15137.2,
+ "text": "last"
+ },
+ {
+ "id": 32628,
+ "start": 15137.2,
+ "end": 15137.7,
+ "text": "November,"
+ },
+ {
+ "id": 32629,
+ "start": 15137.7,
+ "end": 15137.9,
+ "text": "the"
+ },
+ {
+ "id": 32630,
+ "start": 15137.9,
+ "end": 15138.22,
+ "text": "Senate"
+ },
+ {
+ "id": 32631,
+ "start": 15138.22,
+ "end": 15138.78,
+ "text": "Intelligence"
+ },
+ {
+ "id": 32632,
+ "start": 15138.78,
+ "end": 15139.16,
+ "text": "Committee"
+ },
+ {
+ "id": 32633,
+ "start": 15139.16,
+ "end": 15139.36,
+ "text": "held"
+ },
+ {
+ "id": 32634,
+ "start": 15139.36,
+ "end": 15139.48,
+ "text": "a"
+ },
+ {
+ "id": 32635,
+ "start": 15139.48,
+ "end": 15139.84,
+ "text": "hearing"
+ },
+ {
+ "id": 32636,
+ "start": 15139.84,
+ "end": 15139.94,
+ "text": "on"
+ },
+ {
+ "id": 32637,
+ "start": 15139.94,
+ "end": 15140.3,
+ "text": "social"
+ },
+ {
+ "id": 32638,
+ "start": 15140.3,
+ "end": 15140.6,
+ "text": "media"
+ },
+ {
+ "id": 32639,
+ "start": 15140.6,
+ "end": 15141.12,
+ "text": "influence."
+ },
+ {
+ "id": 32640,
+ "start": 15141.12,
+ "end": 15141.42,
+ "text": "I"
+ },
+ {
+ "id": 32641,
+ "start": 15141.42,
+ "end": 15141.58,
+ "text": "was"
+ },
+ {
+ "id": 32642,
+ "start": 15141.58,
+ "end": 15141.66,
+ "text": "a"
+ },
+ {
+ "id": 32643,
+ "start": 15141.66,
+ "end": 15141.92,
+ "text": "part"
+ },
+ {
+ "id": 32644,
+ "start": 15141.92,
+ "end": 15142,
+ "text": "of"
+ },
+ {
+ "id": 32645,
+ "start": 15142,
+ "end": 15142.2,
+ "text": "that"
+ },
+ {
+ "id": 32646,
+ "start": 15142.2,
+ "end": 15142.62,
+ "text": "hearing"
+ },
+ {
+ "id": 32647,
+ "start": 15142.62,
+ "end": 15143.18,
+ "text": "I"
+ },
+ {
+ "id": 32648,
+ "start": 15143.18,
+ "end": 15143.7,
+ "text": "submitted"
+ },
+ {
+ "id": 32649,
+ "start": 15143.7,
+ "end": 15144.38,
+ "text": "50"
+ },
+ {
+ "id": 32650,
+ "start": 15144.38,
+ "end": 15144.72,
+ "text": "written"
+ },
+ {
+ "id": 32651,
+ "start": 15144.72,
+ "end": 15145.15,
+ "text": "questions"
+ },
+ {
+ "id": 32652,
+ "start": 15145.15,
+ "end": 15145.39,
+ "text": "to"
+ },
+ {
+ "id": 32653,
+ "start": 15145.39,
+ "end": 15145.97,
+ "text": "Facebook"
+ },
+ {
+ "id": 32654,
+ "start": 15145.97,
+ "end": 15146.59,
+ "text": "and"
+ },
+ {
+ "id": 32655,
+ "start": 15146.59,
+ "end": 15146.93,
+ "text": "other"
+ },
+ {
+ "id": 32656,
+ "start": 15146.93,
+ "end": 15147.41,
+ "text": "companies"
+ },
+ {
+ "id": 32657,
+ "start": 15147.41,
+ "end": 15147.89,
+ "text": "and"
+ },
+ {
+ "id": 32658,
+ "start": 15147.89,
+ "end": 15148.29,
+ "text": "the"
+ },
+ {
+ "id": 32659,
+ "start": 15148.29,
+ "end": 15148.95,
+ "text": "responses"
+ },
+ {
+ "id": 32660,
+ "start": 15148.95,
+ "end": 15149.13,
+ "text": "that"
+ },
+ {
+ "id": 32661,
+ "start": 15149.13,
+ "end": 15149.23,
+ "text": "we"
+ },
+ {
+ "id": 32662,
+ "start": 15149.23,
+ "end": 15149.65,
+ "text": "received"
+ },
+ {
+ "id": 32663,
+ "start": 15149.65,
+ "end": 15149.85,
+ "text": "were"
+ },
+ {
+ "id": 32664,
+ "start": 15149.85,
+ "end": 15150.55,
+ "text": "unfortunately"
+ },
+ {
+ "id": 32665,
+ "start": 15150.55,
+ "end": 15151.07,
+ "text": "evasive"
+ },
+ {
+ "id": 32666,
+ "start": 15151.07,
+ "end": 15151.21,
+ "text": "and"
+ },
+ {
+ "id": 32667,
+ "start": 15151.21,
+ "end": 15151.43,
+ "text": "some"
+ },
+ {
+ "id": 32668,
+ "start": 15151.43,
+ "end": 15151.63,
+ "text": "were"
+ },
+ {
+ "id": 32669,
+ "start": 15151.63,
+ "end": 15152.13,
+ "text": "frankly"
+ },
+ {
+ "id": 32670,
+ "start": 15152.13,
+ "end": 15152.37,
+ "text": "non"
+ },
+ {
+ "id": 32671,
+ "start": 15152.37,
+ "end": 15153.09,
+ "text": "responsive."
+ },
+ {
+ "id": 32672,
+ "start": 15153.09,
+ "end": 15153.49,
+ "text": "So"
+ },
+ {
+ "id": 32673,
+ "start": 15153.49,
+ "end": 15153.63,
+ "text": "I'm"
+ },
+ {
+ "id": 32674,
+ "start": 15153.63,
+ "end": 15153.77,
+ "text": "going"
+ },
+ {
+ "id": 32675,
+ "start": 15153.77,
+ "end": 15153.85,
+ "text": "to"
+ },
+ {
+ "id": 32676,
+ "start": 15153.85,
+ "end": 15154.09,
+ "text": "ask"
+ },
+ {
+ "id": 32677,
+ "start": 15154.09,
+ "end": 15154.81,
+ "text": "the"
+ },
+ {
+ "id": 32678,
+ "start": 15154.81,
+ "end": 15155.15,
+ "text": "question"
+ },
+ {
+ "id": 32679,
+ "start": 15155.15,
+ "end": 15155.63,
+ "text": "again"
+ },
+ {
+ "id": 32680,
+ "start": 15155.63,
+ "end": 15156.24,
+ "text": "here."
+ },
+ {
+ "id": 32681,
+ "start": 15156.24,
+ "end": 15156.72,
+ "text": "How"
+ },
+ {
+ "id": 32682,
+ "start": 15156.72,
+ "end": 15156.94,
+ "text": "much"
+ },
+ {
+ "id": 32683,
+ "start": 15156.94,
+ "end": 15157.48,
+ "text": "revenue"
+ },
+ {
+ "id": 32684,
+ "start": 15157.48,
+ "end": 15157.72,
+ "text": "did"
+ },
+ {
+ "id": 32685,
+ "start": 15157.72,
+ "end": 15158.24,
+ "text": "Facebook"
+ },
+ {
+ "id": 32686,
+ "start": 15158.24,
+ "end": 15158.6,
+ "text": "earned"
+ },
+ {
+ "id": 32687,
+ "start": 15158.6,
+ "end": 15158.78,
+ "text": "from"
+ },
+ {
+ "id": 32688,
+ "start": 15158.78,
+ "end": 15158.96,
+ "text": "the"
+ },
+ {
+ "id": 32689,
+ "start": 15158.96,
+ "end": 15159.28,
+ "text": "user"
+ },
+ {
+ "id": 32690,
+ "start": 15159.28,
+ "end": 15159.88,
+ "text": "engagement"
+ },
+ {
+ "id": 32691,
+ "start": 15159.88,
+ "end": 15160.06,
+ "text": "that"
+ },
+ {
+ "id": 32692,
+ "start": 15160.06,
+ "end": 15160.6,
+ "text": "resulted"
+ },
+ {
+ "id": 32693,
+ "start": 15160.6,
+ "end": 15160.76,
+ "text": "from"
+ },
+ {
+ "id": 32694,
+ "start": 15160.76,
+ "end": 15161.08,
+ "text": "foreign"
+ },
+ {
+ "id": 32695,
+ "start": 15161.08,
+ "end": 15163.08,
+ "text": "propaganda?"
+ },
+ {
+ "id": 32696,
+ "start": 15163.08,
+ "end": 15164.08,
+ "text": "Well,"
+ },
+ {
+ "id": 32697,
+ "start": 15164.08,
+ "end": 15164.58,
+ "text": "Senator,"
+ },
+ {
+ "id": 32698,
+ "start": 15164.58,
+ "end": 15164.88,
+ "text": "what"
+ },
+ {
+ "id": 32699,
+ "start": 15164.88,
+ "end": 15165,
+ "text": "we"
+ },
+ {
+ "id": 32700,
+ "start": 15165,
+ "end": 15165.22,
+ "text": "do"
+ },
+ {
+ "id": 32701,
+ "start": 15165.22,
+ "end": 15165.44,
+ "text": "know"
+ },
+ {
+ "id": 32702,
+ "start": 15165.44,
+ "end": 15165.98,
+ "text": "is"
+ },
+ {
+ "id": 32703,
+ "start": 15165.98,
+ "end": 15166.14,
+ "text": "that"
+ },
+ {
+ "id": 32704,
+ "start": 15166.14,
+ "end": 15166.42,
+ "text": "the"
+ },
+ {
+ "id": 32705,
+ "start": 15166.42,
+ "end": 15167.14,
+ "text": "IRA,"
+ },
+ {
+ "id": 32706,
+ "start": 15167.14,
+ "end": 15167.28,
+ "text": "the"
+ },
+ {
+ "id": 32707,
+ "start": 15167.28,
+ "end": 15167.62,
+ "text": "Internet"
+ },
+ {
+ "id": 32708,
+ "start": 15167.62,
+ "end": 15167.98,
+ "text": "Research"
+ },
+ {
+ "id": 32709,
+ "start": 15167.98,
+ "end": 15168.58,
+ "text": "Agency,"
+ },
+ {
+ "id": 32710,
+ "start": 15168.58,
+ "end": 15169.08,
+ "text": "the"
+ },
+ {
+ "id": 32711,
+ "start": 15169.08,
+ "end": 15169.44,
+ "text": "Russian"
+ },
+ {
+ "id": 32712,
+ "start": 15169.44,
+ "end": 15169.8,
+ "text": "firm"
+ },
+ {
+ "id": 32713,
+ "start": 15169.8,
+ "end": 15170.7,
+ "text": "ran"
+ },
+ {
+ "id": 32714,
+ "start": 15170.7,
+ "end": 15171,
+ "text": "about"
+ },
+ {
+ "id": 32715,
+ "start": 15171,
+ "end": 15171.1,
+ "text": "a"
+ },
+ {
+ "id": 32716,
+ "start": 15171.1,
+ "end": 15171.42,
+ "text": "hundred"
+ },
+ {
+ "id": 32717,
+ "start": 15171.42,
+ "end": 15171.78,
+ "text": "thousand"
+ },
+ {
+ "id": 32718,
+ "start": 15171.78,
+ "end": 15172.12,
+ "text": "dollars"
+ },
+ {
+ "id": 32719,
+ "start": 15172.12,
+ "end": 15172.38,
+ "text": "worth"
+ },
+ {
+ "id": 32720,
+ "start": 15172.38,
+ "end": 15172.48,
+ "text": "of"
+ },
+ {
+ "id": 32721,
+ "start": 15172.48,
+ "end": 15173.48,
+ "text": "ads."
+ },
+ {
+ "id": 32722,
+ "start": 15173.48,
+ "end": 15174.32,
+ "text": "I"
+ },
+ {
+ "id": 32723,
+ "start": 15174.32,
+ "end": 15174.68,
+ "text": "can't"
+ },
+ {
+ "id": 32724,
+ "start": 15174.68,
+ "end": 15174.96,
+ "text": "say"
+ },
+ {
+ "id": 32725,
+ "start": 15174.96,
+ "end": 15175.46,
+ "text": "that"
+ },
+ {
+ "id": 32726,
+ "start": 15175.46,
+ "end": 15175.68,
+ "text": "we've"
+ },
+ {
+ "id": 32727,
+ "start": 15175.68,
+ "end": 15176.26,
+ "text": "identified"
+ },
+ {
+ "id": 32728,
+ "start": 15176.26,
+ "end": 15176.6,
+ "text": "all"
+ },
+ {
+ "id": 32729,
+ "start": 15176.6,
+ "end": 15176.72,
+ "text": "of"
+ },
+ {
+ "id": 32730,
+ "start": 15176.72,
+ "end": 15176.9,
+ "text": "the"
+ },
+ {
+ "id": 32731,
+ "start": 15176.9,
+ "end": 15177.32,
+ "text": "foreign"
+ },
+ {
+ "id": 32732,
+ "start": 15177.32,
+ "end": 15177.66,
+ "text": "actors"
+ },
+ {
+ "id": 32733,
+ "start": 15177.66,
+ "end": 15177.8,
+ "text": "who"
+ },
+ {
+ "id": 32734,
+ "start": 15177.8,
+ "end": 15177.94,
+ "text": "are"
+ },
+ {
+ "id": 32735,
+ "start": 15177.94,
+ "end": 15178.3,
+ "text": "involved"
+ },
+ {
+ "id": 32736,
+ "start": 15178.3,
+ "end": 15178.5,
+ "text": "here."
+ },
+ {
+ "id": 32737,
+ "start": 15178.5,
+ "end": 15179.28,
+ "text": "So"
+ },
+ {
+ "id": 32738,
+ "start": 15179.28,
+ "end": 15180.24,
+ "text": "I"
+ },
+ {
+ "id": 32739,
+ "start": 15180.24,
+ "end": 15180.9,
+ "text": "can't"
+ },
+ {
+ "id": 32740,
+ "start": 15180.9,
+ "end": 15181.04,
+ "text": "say"
+ },
+ {
+ "id": 32741,
+ "start": 15181.04,
+ "end": 15181.18,
+ "text": "that"
+ },
+ {
+ "id": 32742,
+ "start": 15181.18,
+ "end": 15181.36,
+ "text": "that's"
+ },
+ {
+ "id": 32743,
+ "start": 15181.36,
+ "end": 15181.64,
+ "text": "all"
+ },
+ {
+ "id": 32744,
+ "start": 15181.64,
+ "end": 15181.74,
+ "text": "of"
+ },
+ {
+ "id": 32745,
+ "start": 15181.74,
+ "end": 15181.9,
+ "text": "the"
+ },
+ {
+ "id": 32746,
+ "start": 15181.9,
+ "end": 15182.18,
+ "text": "money."
+ },
+ {
+ "id": 32747,
+ "start": 15182.18,
+ "end": 15182.46,
+ "text": "But"
+ },
+ {
+ "id": 32748,
+ "start": 15182.46,
+ "end": 15182.62,
+ "text": "that"
+ },
+ {
+ "id": 32749,
+ "start": 15182.62,
+ "end": 15182.78,
+ "text": "is"
+ },
+ {
+ "id": 32750,
+ "start": 15182.78,
+ "end": 15182.94,
+ "text": "what"
+ },
+ {
+ "id": 32751,
+ "start": 15182.94,
+ "end": 15183.06,
+ "text": "we"
+ },
+ {
+ "id": 32752,
+ "start": 15183.06,
+ "end": 15183.32,
+ "text": "have"
+ },
+ {
+ "id": 32753,
+ "start": 15183.32,
+ "end": 15183.98,
+ "text": "identified."
+ },
+ {
+ "id": 32754,
+ "start": 15183.98,
+ "end": 15184.72,
+ "text": "Okay,"
+ },
+ {
+ "id": 32755,
+ "start": 15184.72,
+ "end": 15184.9,
+ "text": "my"
+ },
+ {
+ "id": 32756,
+ "start": 15184.9,
+ "end": 15185.1,
+ "text": "time"
+ },
+ {
+ "id": 32757,
+ "start": 15185.1,
+ "end": 15185.22,
+ "text": "is"
+ },
+ {
+ "id": 32758,
+ "start": 15185.22,
+ "end": 15185.38,
+ "text": "up"
+ },
+ {
+ "id": 32759,
+ "start": 15185.38,
+ "end": 15185.6,
+ "text": "I'll"
+ },
+ {
+ "id": 32760,
+ "start": 15185.6,
+ "end": 15185.9,
+ "text": "submit"
+ },
+ {
+ "id": 32761,
+ "start": 15185.9,
+ "end": 15186.06,
+ "text": "more"
+ },
+ {
+ "id": 32762,
+ "start": 15186.06,
+ "end": 15186.34,
+ "text": "questions"
+ },
+ {
+ "id": 32763,
+ "start": 15186.34,
+ "end": 15186.48,
+ "text": "for"
+ },
+ {
+ "id": 32764,
+ "start": 15186.48,
+ "end": 15186.58,
+ "text": "the"
+ },
+ {
+ "id": 32765,
+ "start": 15186.58,
+ "end": 15186.86,
+ "text": "record."
+ },
+ {
+ "id": 32766,
+ "start": 15186.86,
+ "end": 15187.04,
+ "text": "Thank"
+ },
+ {
+ "id": 32767,
+ "start": 15187.04,
+ "end": 15187.5,
+ "text": "you,"
+ },
+ {
+ "id": 32768,
+ "start": 15187.5,
+ "end": 15187.98,
+ "text": "thank"
+ },
+ {
+ "id": 32769,
+ "start": 15187.98,
+ "end": 15188.1,
+ "text": "you."
+ },
+ {
+ "id": 32770,
+ "start": 15188.1,
+ "end": 15188.36,
+ "text": "Senator"
+ },
+ {
+ "id": 32771,
+ "start": 15188.36,
+ "end": 15188.66,
+ "text": "Harris,"
+ },
+ {
+ "id": 32772,
+ "start": 15188.66,
+ "end": 15189.1,
+ "text": "next"
+ },
+ {
+ "id": 32773,
+ "start": 15189.1,
+ "end": 15189.22,
+ "text": "up,"
+ },
+ {
+ "id": 32774,
+ "start": 15189.22,
+ "end": 15189.32,
+ "text": "a"
+ },
+ {
+ "id": 32775,
+ "start": 15189.32,
+ "end": 15189.54,
+ "text": "center"
+ },
+ {
+ "id": 32776,
+ "start": 15189.54,
+ "end": 15199.34,
+ "text": "Kennedy,"
+ },
+ {
+ "id": 32777,
+ "start": 15199.34,
+ "end": 15200.36,
+ "text": "Mr"
+ },
+ {
+ "id": 32778,
+ "start": 15200.36,
+ "end": 15200.8,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 32779,
+ "start": 15200.8,
+ "end": 15201.02,
+ "text": "I"
+ },
+ {
+ "id": 32780,
+ "start": 15201.02,
+ "end": 15201.2,
+ "text": "come"
+ },
+ {
+ "id": 32781,
+ "start": 15201.2,
+ "end": 15201.36,
+ "text": "in"
+ },
+ {
+ "id": 32782,
+ "start": 15201.36,
+ "end": 15204.86,
+ "text": "peace."
+ },
+ {
+ "id": 32783,
+ "start": 15204.86,
+ "end": 15208,
+ "text": "I"
+ },
+ {
+ "id": 32784,
+ "start": 15208,
+ "end": 15208.32,
+ "text": "don't"
+ },
+ {
+ "id": 32785,
+ "start": 15208.32,
+ "end": 15208.46,
+ "text": "want"
+ },
+ {
+ "id": 32786,
+ "start": 15208.46,
+ "end": 15208.54,
+ "text": "to"
+ },
+ {
+ "id": 32787,
+ "start": 15208.54,
+ "end": 15208.76,
+ "text": "vote"
+ },
+ {
+ "id": 32788,
+ "start": 15208.76,
+ "end": 15209.02,
+ "text": "have"
+ },
+ {
+ "id": 32789,
+ "start": 15209.02,
+ "end": 15209.12,
+ "text": "to"
+ },
+ {
+ "id": 32790,
+ "start": 15209.12,
+ "end": 15209.66,
+ "text": "regulate"
+ },
+ {
+ "id": 32791,
+ "start": 15209.66,
+ "end": 15210.98,
+ "text": "Facebook."
+ },
+ {
+ "id": 32792,
+ "start": 15210.98,
+ "end": 15211.9,
+ "text": "But"
+ },
+ {
+ "id": 32793,
+ "start": 15211.9,
+ "end": 15212.46,
+ "text": "my"
+ },
+ {
+ "id": 32794,
+ "start": 15212.46,
+ "end": 15212.68,
+ "text": "God,"
+ },
+ {
+ "id": 32795,
+ "start": 15212.68,
+ "end": 15212.8,
+ "text": "I"
+ },
+ {
+ "id": 32796,
+ "start": 15212.8,
+ "end": 15213.16,
+ "text": "will."
+ },
+ {
+ "id": 32797,
+ "start": 15213.16,
+ "end": 15213.8,
+ "text": "But"
+ },
+ {
+ "id": 32798,
+ "start": 15213.8,
+ "end": 15214,
+ "text": "that's"
+ },
+ {
+ "id": 32799,
+ "start": 15214,
+ "end": 15214.06,
+ "text": "a"
+ },
+ {
+ "id": 32800,
+ "start": 15214.06,
+ "end": 15214.2,
+ "text": "lot"
+ },
+ {
+ "id": 32801,
+ "start": 15214.2,
+ "end": 15214.28,
+ "text": "of"
+ },
+ {
+ "id": 32802,
+ "start": 15214.28,
+ "end": 15214.46,
+ "text": "that"
+ },
+ {
+ "id": 32803,
+ "start": 15214.46,
+ "end": 15214.94,
+ "text": "depends"
+ },
+ {
+ "id": 32804,
+ "start": 15214.94,
+ "end": 15215.16,
+ "text": "on"
+ },
+ {
+ "id": 32805,
+ "start": 15215.16,
+ "end": 15216.56,
+ "text": "you"
+ },
+ {
+ "id": 32806,
+ "start": 15216.56,
+ "end": 15217.52,
+ "text": "I'm"
+ },
+ {
+ "id": 32807,
+ "start": 15217.52,
+ "end": 15217.58,
+ "text": "a"
+ },
+ {
+ "id": 32808,
+ "start": 15217.58,
+ "end": 15217.84,
+ "text": "little"
+ },
+ {
+ "id": 32809,
+ "start": 15217.84,
+ "end": 15218.42,
+ "text": "disappointed"
+ },
+ {
+ "id": 32810,
+ "start": 15218.42,
+ "end": 15218.54,
+ "text": "in"
+ },
+ {
+ "id": 32811,
+ "start": 15218.54,
+ "end": 15218.68,
+ "text": "this"
+ },
+ {
+ "id": 32812,
+ "start": 15218.68,
+ "end": 15218.96,
+ "text": "hearing"
+ },
+ {
+ "id": 32813,
+ "start": 15218.96,
+ "end": 15219.22,
+ "text": "today."
+ },
+ {
+ "id": 32814,
+ "start": 15219.22,
+ "end": 15220.52,
+ "text": "I"
+ },
+ {
+ "id": 32815,
+ "start": 15220.52,
+ "end": 15220.72,
+ "text": "just"
+ },
+ {
+ "id": 32816,
+ "start": 15220.72,
+ "end": 15221.04,
+ "text": "don't"
+ },
+ {
+ "id": 32817,
+ "start": 15221.04,
+ "end": 15221.34,
+ "text": "feel"
+ },
+ {
+ "id": 32818,
+ "start": 15221.34,
+ "end": 15221.66,
+ "text": "like"
+ },
+ {
+ "id": 32819,
+ "start": 15221.66,
+ "end": 15221.86,
+ "text": "that"
+ },
+ {
+ "id": 32820,
+ "start": 15221.86,
+ "end": 15222.1,
+ "text": "we're"
+ },
+ {
+ "id": 32821,
+ "start": 15222.1,
+ "end": 15223.88,
+ "text": "connecting."
+ },
+ {
+ "id": 32822,
+ "start": 15223.88,
+ "end": 15225.16,
+ "text": "So"
+ },
+ {
+ "id": 32823,
+ "start": 15225.16,
+ "end": 15225.9,
+ "text": "try"
+ },
+ {
+ "id": 32824,
+ "start": 15225.9,
+ "end": 15226,
+ "text": "to"
+ },
+ {
+ "id": 32825,
+ "start": 15226,
+ "end": 15226.22,
+ "text": "lay"
+ },
+ {
+ "id": 32826,
+ "start": 15226.22,
+ "end": 15226.34,
+ "text": "it"
+ },
+ {
+ "id": 32827,
+ "start": 15226.34,
+ "end": 15226.56,
+ "text": "out."
+ },
+ {
+ "id": 32828,
+ "start": 15226.56,
+ "end": 15226.82,
+ "text": "For"
+ },
+ {
+ "id": 32829,
+ "start": 15226.82,
+ "end": 15227,
+ "text": "you,"
+ },
+ {
+ "id": 32830,
+ "start": 15227,
+ "end": 15227.2,
+ "text": "from"
+ },
+ {
+ "id": 32831,
+ "start": 15227.2,
+ "end": 15227.44,
+ "text": "my"
+ },
+ {
+ "id": 32832,
+ "start": 15227.44,
+ "end": 15227.72,
+ "text": "point"
+ },
+ {
+ "id": 32833,
+ "start": 15227.72,
+ "end": 15227.82,
+ "text": "of"
+ },
+ {
+ "id": 32834,
+ "start": 15227.82,
+ "end": 15228.92,
+ "text": "view,"
+ },
+ {
+ "id": 32835,
+ "start": 15228.92,
+ "end": 15228.96,
+ "text": "I"
+ },
+ {
+ "id": 32836,
+ "start": 15228.96,
+ "end": 15230.08,
+ "text": "think"
+ },
+ {
+ "id": 32837,
+ "start": 15230.08,
+ "end": 15230.32,
+ "text": "you're"
+ },
+ {
+ "id": 32838,
+ "start": 15230.32,
+ "end": 15230.38,
+ "text": "a"
+ },
+ {
+ "id": 32839,
+ "start": 15230.38,
+ "end": 15230.92,
+ "text": "really"
+ },
+ {
+ "id": 32840,
+ "start": 15230.92,
+ "end": 15231.42,
+ "text": "smart"
+ },
+ {
+ "id": 32841,
+ "start": 15231.42,
+ "end": 15232.34,
+ "text": "guy."
+ },
+ {
+ "id": 32842,
+ "start": 15232.34,
+ "end": 15233.3,
+ "text": "And"
+ },
+ {
+ "id": 32843,
+ "start": 15233.3,
+ "end": 15233.4,
+ "text": "I"
+ },
+ {
+ "id": 32844,
+ "start": 15233.4,
+ "end": 15233.6,
+ "text": "think"
+ },
+ {
+ "id": 32845,
+ "start": 15233.6,
+ "end": 15233.76,
+ "text": "you"
+ },
+ {
+ "id": 32846,
+ "start": 15233.76,
+ "end": 15234.02,
+ "text": "have"
+ },
+ {
+ "id": 32847,
+ "start": 15234.02,
+ "end": 15234.38,
+ "text": "built"
+ },
+ {
+ "id": 32848,
+ "start": 15234.38,
+ "end": 15235.04,
+ "text": "an"
+ },
+ {
+ "id": 32849,
+ "start": 15235.04,
+ "end": 15236.06,
+ "text": "extraordinary"
+ },
+ {
+ "id": 32850,
+ "start": 15236.06,
+ "end": 15236.78,
+ "text": "American"
+ },
+ {
+ "id": 32851,
+ "start": 15236.78,
+ "end": 15238,
+ "text": "company"
+ },
+ {
+ "id": 32852,
+ "start": 15238,
+ "end": 15238.94,
+ "text": "and"
+ },
+ {
+ "id": 32853,
+ "start": 15238.94,
+ "end": 15239.16,
+ "text": "you've"
+ },
+ {
+ "id": 32854,
+ "start": 15239.16,
+ "end": 15239.36,
+ "text": "done"
+ },
+ {
+ "id": 32855,
+ "start": 15239.36,
+ "end": 15239.4,
+ "text": "a"
+ },
+ {
+ "id": 32856,
+ "start": 15239.4,
+ "end": 15239.76,
+ "text": "lot"
+ },
+ {
+ "id": 32857,
+ "start": 15239.76,
+ "end": 15239.88,
+ "text": "of"
+ },
+ {
+ "id": 32858,
+ "start": 15239.88,
+ "end": 15240.2,
+ "text": "good,"
+ },
+ {
+ "id": 32859,
+ "start": 15240.2,
+ "end": 15240.98,
+ "text": "some"
+ },
+ {
+ "id": 32860,
+ "start": 15240.98,
+ "end": 15241.08,
+ "text": "of"
+ },
+ {
+ "id": 32861,
+ "start": 15241.08,
+ "end": 15241.22,
+ "text": "the"
+ },
+ {
+ "id": 32862,
+ "start": 15241.22,
+ "end": 15241.56,
+ "text": "things"
+ },
+ {
+ "id": 32863,
+ "start": 15241.56,
+ "end": 15241.82,
+ "text": "that"
+ },
+ {
+ "id": 32864,
+ "start": 15241.82,
+ "end": 15242.82,
+ "text": "you've"
+ },
+ {
+ "id": 32865,
+ "start": 15242.82,
+ "end": 15243,
+ "text": "been"
+ },
+ {
+ "id": 32866,
+ "start": 15243,
+ "end": 15243.24,
+ "text": "able"
+ },
+ {
+ "id": 32867,
+ "start": 15243.24,
+ "end": 15243.34,
+ "text": "to"
+ },
+ {
+ "id": 32868,
+ "start": 15243.34,
+ "end": 15243.48,
+ "text": "do"
+ },
+ {
+ "id": 32869,
+ "start": 15243.48,
+ "end": 15243.66,
+ "text": "or"
+ },
+ {
+ "id": 32870,
+ "start": 15243.66,
+ "end": 15245.74,
+ "text": "magical."
+ },
+ {
+ "id": 32871,
+ "start": 15245.74,
+ "end": 15246.74,
+ "text": "But"
+ },
+ {
+ "id": 32872,
+ "start": 15246.74,
+ "end": 15247.24,
+ "text": "our"
+ },
+ {
+ "id": 32873,
+ "start": 15247.24,
+ "end": 15247.84,
+ "text": "promised"
+ },
+ {
+ "id": 32874,
+ "start": 15247.84,
+ "end": 15248.82,
+ "text": "digital"
+ },
+ {
+ "id": 32875,
+ "start": 15248.82,
+ "end": 15249.54,
+ "text": "Utopia."
+ },
+ {
+ "id": 32876,
+ "start": 15249.54,
+ "end": 15250.72,
+ "text": "We"
+ },
+ {
+ "id": 32877,
+ "start": 15250.72,
+ "end": 15250.88,
+ "text": "have"
+ },
+ {
+ "id": 32878,
+ "start": 15250.88,
+ "end": 15251.46,
+ "text": "discovered"
+ },
+ {
+ "id": 32879,
+ "start": 15251.46,
+ "end": 15251.76,
+ "text": "has"
+ },
+ {
+ "id": 32880,
+ "start": 15251.76,
+ "end": 15252.1,
+ "text": "mind"
+ },
+ {
+ "id": 32881,
+ "start": 15252.1,
+ "end": 15254.7,
+ "text": "feels"
+ },
+ {
+ "id": 32882,
+ "start": 15254.7,
+ "end": 15255.68,
+ "text": "there's"
+ },
+ {
+ "id": 32883,
+ "start": 15255.68,
+ "end": 15255.9,
+ "text": "some"
+ },
+ {
+ "id": 32884,
+ "start": 15255.9,
+ "end": 15256.64,
+ "text": "impurities"
+ },
+ {
+ "id": 32885,
+ "start": 15256.64,
+ "end": 15256.84,
+ "text": "in"
+ },
+ {
+ "id": 32886,
+ "start": 15256.84,
+ "end": 15256.96,
+ "text": "the"
+ },
+ {
+ "id": 32887,
+ "start": 15256.96,
+ "end": 15257.66,
+ "text": "Facebook"
+ },
+ {
+ "id": 32888,
+ "start": 15257.66,
+ "end": 15258.2,
+ "text": "punch"
+ },
+ {
+ "id": 32889,
+ "start": 15258.2,
+ "end": 15260.76,
+ "text": "bold"
+ },
+ {
+ "id": 32890,
+ "start": 15260.76,
+ "end": 15261.74,
+ "text": "and"
+ },
+ {
+ "id": 32891,
+ "start": 15261.74,
+ "end": 15261.86,
+ "text": "they"
+ },
+ {
+ "id": 32892,
+ "start": 15261.86,
+ "end": 15262.04,
+ "text": "got"
+ },
+ {
+ "id": 32893,
+ "start": 15262.04,
+ "end": 15262.16,
+ "text": "to"
+ },
+ {
+ "id": 32894,
+ "start": 15262.16,
+ "end": 15262.28,
+ "text": "be"
+ },
+ {
+ "id": 32895,
+ "start": 15262.28,
+ "end": 15263.78,
+ "text": "fixed"
+ },
+ {
+ "id": 32896,
+ "start": 15263.78,
+ "end": 15264.74,
+ "text": "and"
+ },
+ {
+ "id": 32897,
+ "start": 15264.74,
+ "end": 15264.88,
+ "text": "I"
+ },
+ {
+ "id": 32898,
+ "start": 15264.88,
+ "end": 15265.1,
+ "text": "think"
+ },
+ {
+ "id": 32899,
+ "start": 15265.1,
+ "end": 15265.28,
+ "text": "you"
+ },
+ {
+ "id": 32900,
+ "start": 15265.28,
+ "end": 15265.52,
+ "text": "can"
+ },
+ {
+ "id": 32901,
+ "start": 15265.52,
+ "end": 15265.7,
+ "text": "fix"
+ },
+ {
+ "id": 32902,
+ "start": 15265.7,
+ "end": 15267.54,
+ "text": "them"
+ },
+ {
+ "id": 32903,
+ "start": 15267.54,
+ "end": 15268.56,
+ "text": "now"
+ },
+ {
+ "id": 32904,
+ "start": 15268.56,
+ "end": 15269.12,
+ "text": "here's"
+ },
+ {
+ "id": 32905,
+ "start": 15269.12,
+ "end": 15269.42,
+ "text": "what's"
+ },
+ {
+ "id": 32906,
+ "start": 15269.42,
+ "end": 15269.62,
+ "text": "going"
+ },
+ {
+ "id": 32907,
+ "start": 15269.62,
+ "end": 15269.7,
+ "text": "to"
+ },
+ {
+ "id": 32908,
+ "start": 15269.7,
+ "end": 15269.98,
+ "text": "happen"
+ },
+ {
+ "id": 32909,
+ "start": 15269.98,
+ "end": 15271.02,
+ "text": "they're"
+ },
+ {
+ "id": 32910,
+ "start": 15271.02,
+ "end": 15271.16,
+ "text": "going"
+ },
+ {
+ "id": 32911,
+ "start": 15271.16,
+ "end": 15271.22,
+ "text": "to"
+ },
+ {
+ "id": 32912,
+ "start": 15271.22,
+ "end": 15271.3,
+ "text": "be"
+ },
+ {
+ "id": 32913,
+ "start": 15271.3,
+ "end": 15271.36,
+ "text": "a"
+ },
+ {
+ "id": 32914,
+ "start": 15271.36,
+ "end": 15271.6,
+ "text": "whole"
+ },
+ {
+ "id": 32915,
+ "start": 15271.6,
+ "end": 15271.84,
+ "text": "bunch"
+ },
+ {
+ "id": 32916,
+ "start": 15271.84,
+ "end": 15271.94,
+ "text": "of"
+ },
+ {
+ "id": 32917,
+ "start": 15271.94,
+ "end": 15272.24,
+ "text": "bills"
+ },
+ {
+ "id": 32918,
+ "start": 15272.24,
+ "end": 15272.84,
+ "text": "introduced"
+ },
+ {
+ "id": 32919,
+ "start": 15272.84,
+ "end": 15274,
+ "text": "to"
+ },
+ {
+ "id": 32920,
+ "start": 15274,
+ "end": 15274.46,
+ "text": "regulate"
+ },
+ {
+ "id": 32921,
+ "start": 15274.46,
+ "end": 15275.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 32922,
+ "start": 15275.26,
+ "end": 15276.24,
+ "text": "it's"
+ },
+ {
+ "id": 32923,
+ "start": 15276.24,
+ "end": 15276.44,
+ "text": "up"
+ },
+ {
+ "id": 32924,
+ "start": 15276.44,
+ "end": 15276.52,
+ "text": "to"
+ },
+ {
+ "id": 32925,
+ "start": 15276.52,
+ "end": 15276.7,
+ "text": "you."
+ },
+ {
+ "id": 32926,
+ "start": 15276.7,
+ "end": 15277.02,
+ "text": "Whether"
+ },
+ {
+ "id": 32927,
+ "start": 15277.02,
+ "end": 15277.22,
+ "text": "they"
+ },
+ {
+ "id": 32928,
+ "start": 15277.22,
+ "end": 15277.46,
+ "text": "pass"
+ },
+ {
+ "id": 32929,
+ "start": 15277.46,
+ "end": 15277.62,
+ "text": "or"
+ },
+ {
+ "id": 32930,
+ "start": 15277.62,
+ "end": 15277.84,
+ "text": "not."
+ },
+ {
+ "id": 32931,
+ "start": 15277.84,
+ "end": 15278.14,
+ "text": "You"
+ },
+ {
+ "id": 32932,
+ "start": 15278.14,
+ "end": 15278.34,
+ "text": "can"
+ },
+ {
+ "id": 32933,
+ "start": 15278.34,
+ "end": 15278.52,
+ "text": "go"
+ },
+ {
+ "id": 32934,
+ "start": 15278.52,
+ "end": 15278.76,
+ "text": "back"
+ },
+ {
+ "id": 32935,
+ "start": 15278.76,
+ "end": 15280.7,
+ "text": "home"
+ },
+ {
+ "id": 32936,
+ "start": 15280.7,
+ "end": 15281.7,
+ "text": "spend"
+ },
+ {
+ "id": 32937,
+ "start": 15281.7,
+ "end": 15282.22,
+ "text": "10,000,000"
+ },
+ {
+ "id": 32938,
+ "start": 15282.22,
+ "end": 15282.54,
+ "text": "dollars"
+ },
+ {
+ "id": 32939,
+ "start": 15282.54,
+ "end": 15282.74,
+ "text": "on"
+ },
+ {
+ "id": 32940,
+ "start": 15282.74,
+ "end": 15283.26,
+ "text": "lobbyists"
+ },
+ {
+ "id": 32941,
+ "start": 15283.26,
+ "end": 15283.46,
+ "text": "and"
+ },
+ {
+ "id": 32942,
+ "start": 15283.46,
+ "end": 15283.74,
+ "text": "fit"
+ },
+ {
+ "id": 32943,
+ "start": 15283.74,
+ "end": 15284.46,
+ "text": "us"
+ },
+ {
+ "id": 32944,
+ "start": 15284.46,
+ "end": 15285.5,
+ "text": "or"
+ },
+ {
+ "id": 32945,
+ "start": 15285.5,
+ "end": 15285.64,
+ "text": "you"
+ },
+ {
+ "id": 32946,
+ "start": 15285.64,
+ "end": 15285.82,
+ "text": "can"
+ },
+ {
+ "id": 32947,
+ "start": 15285.82,
+ "end": 15285.98,
+ "text": "go"
+ },
+ {
+ "id": 32948,
+ "start": 15285.98,
+ "end": 15286.2,
+ "text": "back"
+ },
+ {
+ "id": 32949,
+ "start": 15286.2,
+ "end": 15287.24,
+ "text": "home"
+ },
+ {
+ "id": 32950,
+ "start": 15287.24,
+ "end": 15288.3,
+ "text": "and"
+ },
+ {
+ "id": 32951,
+ "start": 15288.3,
+ "end": 15288.74,
+ "text": "help"
+ },
+ {
+ "id": 32952,
+ "start": 15288.74,
+ "end": 15288.86,
+ "text": "us"
+ },
+ {
+ "id": 32953,
+ "start": 15288.86,
+ "end": 15289.28,
+ "text": "solve"
+ },
+ {
+ "id": 32954,
+ "start": 15289.28,
+ "end": 15289.5,
+ "text": "this"
+ },
+ {
+ "id": 32955,
+ "start": 15289.5,
+ "end": 15289.88,
+ "text": "problem"
+ },
+ {
+ "id": 32956,
+ "start": 15289.88,
+ "end": 15290.18,
+ "text": "and"
+ },
+ {
+ "id": 32957,
+ "start": 15290.18,
+ "end": 15290.42,
+ "text": "there"
+ },
+ {
+ "id": 32958,
+ "start": 15290.42,
+ "end": 15290.54,
+ "text": "2"
+ },
+ {
+ "id": 32959,
+ "start": 15290.54,
+ "end": 15291.32,
+ "text": "1"
+ },
+ {
+ "id": 32960,
+ "start": 15291.32,
+ "end": 15291.38,
+ "text": "is"
+ },
+ {
+ "id": 32961,
+ "start": 15291.38,
+ "end": 15291.48,
+ "text": "a"
+ },
+ {
+ "id": 32962,
+ "start": 15291.48,
+ "end": 15292.06,
+ "text": "privacy"
+ },
+ {
+ "id": 32963,
+ "start": 15292.06,
+ "end": 15292.38,
+ "text": "problem."
+ },
+ {
+ "id": 32964,
+ "start": 15292.38,
+ "end": 15292.54,
+ "text": "The"
+ },
+ {
+ "id": 32965,
+ "start": 15292.54,
+ "end": 15292.7,
+ "text": "other"
+ },
+ {
+ "id": 32966,
+ "start": 15292.7,
+ "end": 15292.82,
+ "text": "one"
+ },
+ {
+ "id": 32967,
+ "start": 15292.82,
+ "end": 15292.96,
+ "text": "is"
+ },
+ {
+ "id": 32968,
+ "start": 15292.96,
+ "end": 15293.14,
+ "text": "what"
+ },
+ {
+ "id": 32969,
+ "start": 15293.14,
+ "end": 15293.24,
+ "text": "I"
+ },
+ {
+ "id": 32970,
+ "start": 15293.24,
+ "end": 15293.44,
+ "text": "call"
+ },
+ {
+ "id": 32971,
+ "start": 15293.44,
+ "end": 15293.54,
+ "text": "a"
+ },
+ {
+ "id": 32972,
+ "start": 15293.54,
+ "end": 15293.8,
+ "text": "prop"
+ },
+ {
+ "id": 32973,
+ "start": 15293.8,
+ "end": 15294.12,
+ "text": "again,"
+ },
+ {
+ "id": 32974,
+ "start": 15294.12,
+ "end": 15294.48,
+ "text": "problem"
+ },
+ {
+ "id": 32975,
+ "start": 15294.48,
+ "end": 15295.1,
+ "text": "let's"
+ },
+ {
+ "id": 32976,
+ "start": 15295.1,
+ "end": 15295.4,
+ "text": "start"
+ },
+ {
+ "id": 32977,
+ "start": 15295.4,
+ "end": 15295.58,
+ "text": "with"
+ },
+ {
+ "id": 32978,
+ "start": 15295.58,
+ "end": 15295.7,
+ "text": "the"
+ },
+ {
+ "id": 32979,
+ "start": 15295.7,
+ "end": 15296.24,
+ "text": "privacy"
+ },
+ {
+ "id": 32980,
+ "start": 15296.24,
+ "end": 15296.72,
+ "text": "problem."
+ },
+ {
+ "id": 32981,
+ "start": 15296.72,
+ "end": 15297.04,
+ "text": "First"
+ },
+ {
+ "id": 32982,
+ "start": 15297.04,
+ "end": 15297.6,
+ "text": "let's"
+ },
+ {
+ "id": 32983,
+ "start": 15297.6,
+ "end": 15297.78,
+ "text": "start"
+ },
+ {
+ "id": 32984,
+ "start": 15297.78,
+ "end": 15297.92,
+ "text": "with"
+ },
+ {
+ "id": 32985,
+ "start": 15297.92,
+ "end": 15298.08,
+ "text": "your"
+ },
+ {
+ "id": 32986,
+ "start": 15298.08,
+ "end": 15298.42,
+ "text": "user"
+ },
+ {
+ "id": 32987,
+ "start": 15298.42,
+ "end": 15299.48,
+ "text": "agreement"
+ },
+ {
+ "id": 32988,
+ "start": 15299.48,
+ "end": 15300.48,
+ "text": "here's"
+ },
+ {
+ "id": 32989,
+ "start": 15300.48,
+ "end": 15300.64,
+ "text": "what"
+ },
+ {
+ "id": 32990,
+ "start": 15300.64,
+ "end": 15301.2,
+ "text": "everybody's"
+ },
+ {
+ "id": 32991,
+ "start": 15301.2,
+ "end": 15301.4,
+ "text": "been"
+ },
+ {
+ "id": 32992,
+ "start": 15301.4,
+ "end": 15301.68,
+ "text": "trying"
+ },
+ {
+ "id": 32993,
+ "start": 15301.68,
+ "end": 15301.82,
+ "text": "to"
+ },
+ {
+ "id": 32994,
+ "start": 15301.82,
+ "end": 15302.04,
+ "text": "tell"
+ },
+ {
+ "id": 32995,
+ "start": 15302.04,
+ "end": 15302.2,
+ "text": "you"
+ },
+ {
+ "id": 32996,
+ "start": 15302.2,
+ "end": 15302.56,
+ "text": "today?"
+ },
+ {
+ "id": 32997,
+ "start": 15302.56,
+ "end": 15302.72,
+ "text": "And"
+ },
+ {
+ "id": 32998,
+ "start": 15302.72,
+ "end": 15303.34,
+ "text": "I"
+ },
+ {
+ "id": 32999,
+ "start": 15303.34,
+ "end": 15303.58,
+ "text": "say"
+ },
+ {
+ "id": 33000,
+ "start": 15303.58,
+ "end": 15303.82,
+ "text": "this"
+ },
+ {
+ "id": 33001,
+ "start": 15303.82,
+ "end": 15305.5,
+ "text": "gently"
+ },
+ {
+ "id": 33002,
+ "start": 15305.5,
+ "end": 15306.56,
+ "text": "your"
+ },
+ {
+ "id": 33003,
+ "start": 15306.56,
+ "end": 15306.94,
+ "text": "user"
+ },
+ {
+ "id": 33004,
+ "start": 15306.94,
+ "end": 15307.68,
+ "text": "agreement"
+ },
+ {
+ "id": 33005,
+ "start": 15307.68,
+ "end": 15311.02,
+ "text": "sucks."
+ },
+ {
+ "id": 33006,
+ "start": 15311.02,
+ "end": 15312.94,
+ "text": "You"
+ },
+ {
+ "id": 33007,
+ "start": 15312.94,
+ "end": 15313.16,
+ "text": "can"
+ },
+ {
+ "id": 33008,
+ "start": 15313.16,
+ "end": 15313.5,
+ "text": "spot"
+ },
+ {
+ "id": 33009,
+ "start": 15313.5,
+ "end": 15313.74,
+ "text": "me"
+ },
+ {
+ "id": 33010,
+ "start": 15313.74,
+ "end": 15314.6,
+ "text": "75"
+ },
+ {
+ "id": 33011,
+ "start": 15314.6,
+ "end": 15315.08,
+ "text": "IQ"
+ },
+ {
+ "id": 33012,
+ "start": 15315.08,
+ "end": 15315.44,
+ "text": "points."
+ },
+ {
+ "id": 33013,
+ "start": 15315.44,
+ "end": 15315.8,
+ "text": "If"
+ },
+ {
+ "id": 33014,
+ "start": 15315.8,
+ "end": 15315.96,
+ "text": "I"
+ },
+ {
+ "id": 33015,
+ "start": 15315.96,
+ "end": 15316.14,
+ "text": "can"
+ },
+ {
+ "id": 33016,
+ "start": 15316.14,
+ "end": 15316.38,
+ "text": "figure"
+ },
+ {
+ "id": 33017,
+ "start": 15316.38,
+ "end": 15316.46,
+ "text": "it"
+ },
+ {
+ "id": 33018,
+ "start": 15316.46,
+ "end": 15316.58,
+ "text": "out,"
+ },
+ {
+ "id": 33019,
+ "start": 15316.58,
+ "end": 15316.76,
+ "text": "you"
+ },
+ {
+ "id": 33020,
+ "start": 15316.76,
+ "end": 15316.92,
+ "text": "can"
+ },
+ {
+ "id": 33021,
+ "start": 15316.92,
+ "end": 15317.18,
+ "text": "figure"
+ },
+ {
+ "id": 33022,
+ "start": 15317.18,
+ "end": 15317.26,
+ "text": "it"
+ },
+ {
+ "id": 33023,
+ "start": 15317.26,
+ "end": 15317.44,
+ "text": "out."
+ },
+ {
+ "id": 33024,
+ "start": 15317.44,
+ "end": 15317.88,
+ "text": "The"
+ },
+ {
+ "id": 33025,
+ "start": 15317.88,
+ "end": 15318.18,
+ "text": "purpose"
+ },
+ {
+ "id": 33026,
+ "start": 15318.18,
+ "end": 15318.38,
+ "text": "that"
+ },
+ {
+ "id": 33027,
+ "start": 15318.38,
+ "end": 15318.76,
+ "text": "user"
+ },
+ {
+ "id": 33028,
+ "start": 15318.76,
+ "end": 15319.24,
+ "text": "agreement"
+ },
+ {
+ "id": 33029,
+ "start": 15319.24,
+ "end": 15319.38,
+ "text": "is"
+ },
+ {
+ "id": 33030,
+ "start": 15319.38,
+ "end": 15319.46,
+ "text": "to"
+ },
+ {
+ "id": 33031,
+ "start": 15319.46,
+ "end": 15319.9,
+ "text": "cover"
+ },
+ {
+ "id": 33032,
+ "start": 15319.9,
+ "end": 15320.64,
+ "text": "Facebook's"
+ },
+ {
+ "id": 33033,
+ "start": 15320.64,
+ "end": 15320.96,
+ "text": "rear"
+ },
+ {
+ "id": 33034,
+ "start": 15320.96,
+ "end": 15321.52,
+ "text": "end"
+ },
+ {
+ "id": 33035,
+ "start": 15321.52,
+ "end": 15322.52,
+ "text": "it's"
+ },
+ {
+ "id": 33036,
+ "start": 15322.52,
+ "end": 15322.74,
+ "text": "not"
+ },
+ {
+ "id": 33037,
+ "start": 15322.74,
+ "end": 15322.9,
+ "text": "to"
+ },
+ {
+ "id": 33038,
+ "start": 15322.9,
+ "end": 15323.34,
+ "text": "inform"
+ },
+ {
+ "id": 33039,
+ "start": 15323.34,
+ "end": 15323.56,
+ "text": "your"
+ },
+ {
+ "id": 33040,
+ "start": 15323.56,
+ "end": 15324.08,
+ "text": "users"
+ },
+ {
+ "id": 33041,
+ "start": 15324.08,
+ "end": 15324.46,
+ "text": "about"
+ },
+ {
+ "id": 33042,
+ "start": 15324.46,
+ "end": 15324.72,
+ "text": "their"
+ },
+ {
+ "id": 33043,
+ "start": 15324.72,
+ "end": 15325.32,
+ "text": "rights."
+ },
+ {
+ "id": 33044,
+ "start": 15325.32,
+ "end": 15326.32,
+ "text": "Now,"
+ },
+ {
+ "id": 33045,
+ "start": 15326.32,
+ "end": 15326.48,
+ "text": "you"
+ },
+ {
+ "id": 33046,
+ "start": 15326.48,
+ "end": 15326.68,
+ "text": "know"
+ },
+ {
+ "id": 33047,
+ "start": 15326.68,
+ "end": 15327.04,
+ "text": "that?"
+ },
+ {
+ "id": 33048,
+ "start": 15327.04,
+ "end": 15327.92,
+ "text": "And"
+ },
+ {
+ "id": 33049,
+ "start": 15327.92,
+ "end": 15328.1,
+ "text": "I"
+ },
+ {
+ "id": 33050,
+ "start": 15328.1,
+ "end": 15328.32,
+ "text": "know"
+ },
+ {
+ "id": 33051,
+ "start": 15328.32,
+ "end": 15329.38,
+ "text": "that"
+ },
+ {
+ "id": 33052,
+ "start": 15329.38,
+ "end": 15330.26,
+ "text": "I'm"
+ },
+ {
+ "id": 33053,
+ "start": 15330.26,
+ "end": 15330.46,
+ "text": "going"
+ },
+ {
+ "id": 33054,
+ "start": 15330.46,
+ "end": 15330.52,
+ "text": "to"
+ },
+ {
+ "id": 33055,
+ "start": 15330.52,
+ "end": 15330.88,
+ "text": "suggest"
+ },
+ {
+ "id": 33056,
+ "start": 15330.88,
+ "end": 15331.08,
+ "text": "to"
+ },
+ {
+ "id": 33057,
+ "start": 15331.08,
+ "end": 15331.28,
+ "text": "you"
+ },
+ {
+ "id": 33058,
+ "start": 15331.28,
+ "end": 15331.46,
+ "text": "that"
+ },
+ {
+ "id": 33059,
+ "start": 15331.46,
+ "end": 15331.62,
+ "text": "you"
+ },
+ {
+ "id": 33060,
+ "start": 15331.62,
+ "end": 15331.8,
+ "text": "go"
+ },
+ {
+ "id": 33061,
+ "start": 15331.8,
+ "end": 15332.12,
+ "text": "back"
+ },
+ {
+ "id": 33062,
+ "start": 15332.12,
+ "end": 15332.52,
+ "text": "home"
+ },
+ {
+ "id": 33063,
+ "start": 15332.52,
+ "end": 15332.86,
+ "text": "and"
+ },
+ {
+ "id": 33064,
+ "start": 15332.86,
+ "end": 15333.6,
+ "text": "rewrite"
+ },
+ {
+ "id": 33065,
+ "start": 15333.6,
+ "end": 15334.12,
+ "text": "it"
+ },
+ {
+ "id": 33066,
+ "start": 15334.12,
+ "end": 15335.08,
+ "text": "and"
+ },
+ {
+ "id": 33067,
+ "start": 15335.08,
+ "end": 15335.38,
+ "text": "tell"
+ },
+ {
+ "id": 33068,
+ "start": 15335.38,
+ "end": 15335.58,
+ "text": "your"
+ },
+ {
+ "id": 33069,
+ "start": 15335.58,
+ "end": 15336.08,
+ "text": "1,200"
+ },
+ {
+ "id": 33070,
+ "start": 15336.08,
+ "end": 15336.36,
+ "text": "dollar"
+ },
+ {
+ "id": 33071,
+ "start": 15336.36,
+ "end": 15336.46,
+ "text": "an"
+ },
+ {
+ "id": 33072,
+ "start": 15336.46,
+ "end": 15336.68,
+ "text": "hour."
+ },
+ {
+ "id": 33073,
+ "start": 15336.68,
+ "end": 15336.98,
+ "text": "Law"
+ },
+ {
+ "id": 33074,
+ "start": 15336.98,
+ "end": 15337.22,
+ "text": "there's"
+ },
+ {
+ "id": 33075,
+ "start": 15337.22,
+ "end": 15337.4,
+ "text": "no"
+ },
+ {
+ "id": 33076,
+ "start": 15337.4,
+ "end": 15338.2,
+ "text": "disrespect"
+ },
+ {
+ "id": 33077,
+ "start": 15338.2,
+ "end": 15338.58,
+ "text": "they're"
+ },
+ {
+ "id": 33078,
+ "start": 15338.58,
+ "end": 15338.9,
+ "text": "good."
+ },
+ {
+ "id": 33079,
+ "start": 15338.9,
+ "end": 15340.1,
+ "text": "But"
+ },
+ {
+ "id": 33080,
+ "start": 15340.1,
+ "end": 15340.26,
+ "text": "but"
+ },
+ {
+ "id": 33081,
+ "start": 15340.26,
+ "end": 15340.54,
+ "text": "tell"
+ },
+ {
+ "id": 33082,
+ "start": 15340.54,
+ "end": 15340.78,
+ "text": "them"
+ },
+ {
+ "id": 33083,
+ "start": 15340.78,
+ "end": 15341.1,
+ "text": "you"
+ },
+ {
+ "id": 33084,
+ "start": 15341.1,
+ "end": 15341.34,
+ "text": "want"
+ },
+ {
+ "id": 33085,
+ "start": 15341.34,
+ "end": 15341.48,
+ "text": "it"
+ },
+ {
+ "id": 33086,
+ "start": 15341.48,
+ "end": 15341.8,
+ "text": "written"
+ },
+ {
+ "id": 33087,
+ "start": 15341.8,
+ "end": 15341.94,
+ "text": "in"
+ },
+ {
+ "id": 33088,
+ "start": 15341.94,
+ "end": 15342.4,
+ "text": "English"
+ },
+ {
+ "id": 33089,
+ "start": 15342.4,
+ "end": 15342.78,
+ "text": "and"
+ },
+ {
+ "id": 33090,
+ "start": 15342.78,
+ "end": 15343.22,
+ "text": "non"
+ },
+ {
+ "id": 33091,
+ "start": 15343.22,
+ "end": 15344.72,
+ "text": "Swahili,"
+ },
+ {
+ "id": 33092,
+ "start": 15344.72,
+ "end": 15345.56,
+ "text": "so"
+ },
+ {
+ "id": 33093,
+ "start": 15345.56,
+ "end": 15345.78,
+ "text": "the"
+ },
+ {
+ "id": 33094,
+ "start": 15345.78,
+ "end": 15346.18,
+ "text": "average"
+ },
+ {
+ "id": 33095,
+ "start": 15346.18,
+ "end": 15346.8,
+ "text": "American"
+ },
+ {
+ "id": 33096,
+ "start": 15346.8,
+ "end": 15347.04,
+ "text": "can"
+ },
+ {
+ "id": 33097,
+ "start": 15347.04,
+ "end": 15347.68,
+ "text": "understand"
+ },
+ {
+ "id": 33098,
+ "start": 15347.68,
+ "end": 15348.28,
+ "text": "that"
+ },
+ {
+ "id": 33099,
+ "start": 15348.28,
+ "end": 15348.48,
+ "text": "would"
+ },
+ {
+ "id": 33100,
+ "start": 15348.48,
+ "end": 15348.6,
+ "text": "be"
+ },
+ {
+ "id": 33101,
+ "start": 15348.6,
+ "end": 15348.68,
+ "text": "a"
+ },
+ {
+ "id": 33102,
+ "start": 15348.68,
+ "end": 15350.46,
+ "text": "start."
+ },
+ {
+ "id": 33103,
+ "start": 15350.46,
+ "end": 15351.44,
+ "text": "Are"
+ },
+ {
+ "id": 33104,
+ "start": 15351.44,
+ "end": 15351.62,
+ "text": "you"
+ },
+ {
+ "id": 33105,
+ "start": 15351.62,
+ "end": 15352.04,
+ "text": "willing"
+ },
+ {
+ "id": 33106,
+ "start": 15352.04,
+ "end": 15352.5,
+ "text": "as"
+ },
+ {
+ "id": 33107,
+ "start": 15352.5,
+ "end": 15352.6,
+ "text": "a"
+ },
+ {
+ "id": 33108,
+ "start": 15352.6,
+ "end": 15353,
+ "text": "Facebook"
+ },
+ {
+ "id": 33109,
+ "start": 15353,
+ "end": 15353.4,
+ "text": "or"
+ },
+ {
+ "id": 33110,
+ "start": 15353.4,
+ "end": 15353.86,
+ "text": "are"
+ },
+ {
+ "id": 33111,
+ "start": 15353.86,
+ "end": 15354.08,
+ "text": "you"
+ },
+ {
+ "id": 33112,
+ "start": 15354.08,
+ "end": 15354.44,
+ "text": "willing"
+ },
+ {
+ "id": 33113,
+ "start": 15354.44,
+ "end": 15354.56,
+ "text": "to"
+ },
+ {
+ "id": 33114,
+ "start": 15354.56,
+ "end": 15354.78,
+ "text": "give"
+ },
+ {
+ "id": 33115,
+ "start": 15354.78,
+ "end": 15354.94,
+ "text": "me"
+ },
+ {
+ "id": 33116,
+ "start": 15354.94,
+ "end": 15355.18,
+ "text": "more"
+ },
+ {
+ "id": 33117,
+ "start": 15355.18,
+ "end": 15355.68,
+ "text": "control?"
+ },
+ {
+ "id": 33118,
+ "start": 15355.68,
+ "end": 15356.76,
+ "text": "Over"
+ },
+ {
+ "id": 33119,
+ "start": 15356.76,
+ "end": 15356.94,
+ "text": "my"
+ },
+ {
+ "id": 33120,
+ "start": 15356.94,
+ "end": 15358.82,
+ "text": "data,"
+ },
+ {
+ "id": 33121,
+ "start": 15358.82,
+ "end": 15359.8,
+ "text": "Senator"
+ },
+ {
+ "id": 33122,
+ "start": 15359.8,
+ "end": 15360.54,
+ "text": "has"
+ },
+ {
+ "id": 33123,
+ "start": 15360.54,
+ "end": 15360.78,
+ "text": "someone"
+ },
+ {
+ "id": 33124,
+ "start": 15360.78,
+ "end": 15360.86,
+ "text": "who"
+ },
+ {
+ "id": 33125,
+ "start": 15360.86,
+ "end": 15361.22,
+ "text": "uses"
+ },
+ {
+ "id": 33126,
+ "start": 15361.22,
+ "end": 15361.68,
+ "text": "Facebook."
+ },
+ {
+ "id": 33127,
+ "start": 15361.68,
+ "end": 15362.02,
+ "text": "I"
+ },
+ {
+ "id": 33128,
+ "start": 15362.02,
+ "end": 15362.3,
+ "text": "believe"
+ },
+ {
+ "id": 33129,
+ "start": 15362.3,
+ "end": 15362.42,
+ "text": "that"
+ },
+ {
+ "id": 33130,
+ "start": 15362.42,
+ "end": 15362.52,
+ "text": "you"
+ },
+ {
+ "id": 33131,
+ "start": 15362.52,
+ "end": 15362.68,
+ "text": "should"
+ },
+ {
+ "id": 33132,
+ "start": 15362.68,
+ "end": 15362.82,
+ "text": "have"
+ },
+ {
+ "id": 33133,
+ "start": 15362.82,
+ "end": 15363.2,
+ "text": "complete"
+ },
+ {
+ "id": 33134,
+ "start": 15363.2,
+ "end": 15363.6,
+ "text": "control"
+ },
+ {
+ "id": 33135,
+ "start": 15363.6,
+ "end": 15363.8,
+ "text": "over"
+ },
+ {
+ "id": 33136,
+ "start": 15363.8,
+ "end": 15363.98,
+ "text": "your"
+ },
+ {
+ "id": 33137,
+ "start": 15363.98,
+ "end": 15364.28,
+ "text": "data."
+ },
+ {
+ "id": 33138,
+ "start": 15364.28,
+ "end": 15364.82,
+ "text": "Okay,"
+ },
+ {
+ "id": 33139,
+ "start": 15364.82,
+ "end": 15365.5,
+ "text": "are"
+ },
+ {
+ "id": 33140,
+ "start": 15365.5,
+ "end": 15365.68,
+ "text": "you"
+ },
+ {
+ "id": 33141,
+ "start": 15365.68,
+ "end": 15366.14,
+ "text": "willing"
+ },
+ {
+ "id": 33142,
+ "start": 15366.14,
+ "end": 15366.5,
+ "text": "to"
+ },
+ {
+ "id": 33143,
+ "start": 15366.5,
+ "end": 15366.94,
+ "text": "go"
+ },
+ {
+ "id": 33144,
+ "start": 15366.94,
+ "end": 15367.2,
+ "text": "back"
+ },
+ {
+ "id": 33145,
+ "start": 15367.2,
+ "end": 15368.08,
+ "text": "and"
+ },
+ {
+ "id": 33146,
+ "start": 15368.08,
+ "end": 15368.46,
+ "text": "work"
+ },
+ {
+ "id": 33147,
+ "start": 15368.46,
+ "end": 15369.24,
+ "text": "on"
+ },
+ {
+ "id": 33148,
+ "start": 15369.24,
+ "end": 15369.6,
+ "text": "giving"
+ },
+ {
+ "id": 33149,
+ "start": 15369.6,
+ "end": 15369.82,
+ "text": "me"
+ },
+ {
+ "id": 33150,
+ "start": 15369.82,
+ "end": 15369.94,
+ "text": "a"
+ },
+ {
+ "id": 33151,
+ "start": 15369.94,
+ "end": 15370.38,
+ "text": "greater"
+ },
+ {
+ "id": 33152,
+ "start": 15370.38,
+ "end": 15370.66,
+ "text": "right"
+ },
+ {
+ "id": 33153,
+ "start": 15370.66,
+ "end": 15370.82,
+ "text": "to"
+ },
+ {
+ "id": 33154,
+ "start": 15370.82,
+ "end": 15371.26,
+ "text": "erase"
+ },
+ {
+ "id": 33155,
+ "start": 15371.26,
+ "end": 15371.48,
+ "text": "my"
+ },
+ {
+ "id": 33156,
+ "start": 15371.48,
+ "end": 15372.74,
+ "text": "data."
+ },
+ {
+ "id": 33157,
+ "start": 15372.74,
+ "end": 15373.9,
+ "text": "Senator,"
+ },
+ {
+ "id": 33158,
+ "start": 15373.9,
+ "end": 15374.04,
+ "text": "you"
+ },
+ {
+ "id": 33159,
+ "start": 15374.04,
+ "end": 15374.18,
+ "text": "can"
+ },
+ {
+ "id": 33160,
+ "start": 15374.18,
+ "end": 15374.6,
+ "text": "already"
+ },
+ {
+ "id": 33161,
+ "start": 15374.6,
+ "end": 15375.74,
+ "text": "delete"
+ },
+ {
+ "id": 33162,
+ "start": 15375.74,
+ "end": 15375.96,
+ "text": "any"
+ },
+ {
+ "id": 33163,
+ "start": 15375.96,
+ "end": 15376.06,
+ "text": "of"
+ },
+ {
+ "id": 33164,
+ "start": 15376.06,
+ "end": 15376.18,
+ "text": "the"
+ },
+ {
+ "id": 33165,
+ "start": 15376.18,
+ "end": 15376.38,
+ "text": "data"
+ },
+ {
+ "id": 33166,
+ "start": 15376.38,
+ "end": 15376.62,
+ "text": "that's"
+ },
+ {
+ "id": 33167,
+ "start": 15376.62,
+ "end": 15376.88,
+ "text": "there"
+ },
+ {
+ "id": 33168,
+ "start": 15376.88,
+ "end": 15377.04,
+ "text": "or"
+ },
+ {
+ "id": 33169,
+ "start": 15377.04,
+ "end": 15377.88,
+ "text": "to"
+ },
+ {
+ "id": 33170,
+ "start": 15377.88,
+ "end": 15378.48,
+ "text": "expand"
+ },
+ {
+ "id": 33171,
+ "start": 15378.48,
+ "end": 15378.66,
+ "text": "work"
+ },
+ {
+ "id": 33172,
+ "start": 15378.66,
+ "end": 15378.78,
+ "text": "on"
+ },
+ {
+ "id": 33173,
+ "start": 15378.78,
+ "end": 15379.38,
+ "text": "expanding."
+ },
+ {
+ "id": 33174,
+ "start": 15379.38,
+ "end": 15381.92,
+ "text": "That"
+ },
+ {
+ "id": 33175,
+ "start": 15381.92,
+ "end": 15382.88,
+ "text": "Senator"
+ },
+ {
+ "id": 33176,
+ "start": 15382.88,
+ "end": 15382.94,
+ "text": "I"
+ },
+ {
+ "id": 33177,
+ "start": 15382.94,
+ "end": 15383.1,
+ "text": "think"
+ },
+ {
+ "id": 33178,
+ "start": 15383.1,
+ "end": 15383.2,
+ "text": "we"
+ },
+ {
+ "id": 33179,
+ "start": 15383.2,
+ "end": 15383.56,
+ "text": "already"
+ },
+ {
+ "id": 33180,
+ "start": 15383.56,
+ "end": 15383.7,
+ "text": "do"
+ },
+ {
+ "id": 33181,
+ "start": 15383.7,
+ "end": 15383.9,
+ "text": "what"
+ },
+ {
+ "id": 33182,
+ "start": 15383.9,
+ "end": 15384.14,
+ "text": "you're"
+ },
+ {
+ "id": 33183,
+ "start": 15384.14,
+ "end": 15384.52,
+ "text": "referring"
+ },
+ {
+ "id": 33184,
+ "start": 15384.52,
+ "end": 15384.66,
+ "text": "to,"
+ },
+ {
+ "id": 33185,
+ "start": 15384.66,
+ "end": 15385.14,
+ "text": "but"
+ },
+ {
+ "id": 33186,
+ "start": 15385.14,
+ "end": 15385.72,
+ "text": "certainly"
+ },
+ {
+ "id": 33187,
+ "start": 15385.72,
+ "end": 15386.06,
+ "text": "we're"
+ },
+ {
+ "id": 33188,
+ "start": 15386.06,
+ "end": 15386.48,
+ "text": "always"
+ },
+ {
+ "id": 33189,
+ "start": 15386.48,
+ "end": 15386.78,
+ "text": "working"
+ },
+ {
+ "id": 33190,
+ "start": 15386.78,
+ "end": 15386.92,
+ "text": "on"
+ },
+ {
+ "id": 33191,
+ "start": 15386.92,
+ "end": 15387.16,
+ "text": "trying"
+ },
+ {
+ "id": 33192,
+ "start": 15387.16,
+ "end": 15387.24,
+ "text": "to"
+ },
+ {
+ "id": 33193,
+ "start": 15387.24,
+ "end": 15387.4,
+ "text": "make"
+ },
+ {
+ "id": 33194,
+ "start": 15387.4,
+ "end": 15387.62,
+ "text": "these"
+ },
+ {
+ "id": 33195,
+ "start": 15387.62,
+ "end": 15388.08,
+ "text": "controls"
+ },
+ {
+ "id": 33196,
+ "start": 15388.08,
+ "end": 15388.42,
+ "text": "easier."
+ },
+ {
+ "id": 33197,
+ "start": 15388.42,
+ "end": 15389.24,
+ "text": "Are"
+ },
+ {
+ "id": 33198,
+ "start": 15389.24,
+ "end": 15389.4,
+ "text": "you"
+ },
+ {
+ "id": 33199,
+ "start": 15389.4,
+ "end": 15389.7,
+ "text": "willing"
+ },
+ {
+ "id": 33200,
+ "start": 15389.7,
+ "end": 15389.82,
+ "text": "to"
+ },
+ {
+ "id": 33201,
+ "start": 15389.82,
+ "end": 15390.28,
+ "text": "expand"
+ },
+ {
+ "id": 33202,
+ "start": 15390.28,
+ "end": 15390.5,
+ "text": "my"
+ },
+ {
+ "id": 33203,
+ "start": 15390.5,
+ "end": 15390.9,
+ "text": "right"
+ },
+ {
+ "id": 33204,
+ "start": 15390.9,
+ "end": 15391.62,
+ "text": "to"
+ },
+ {
+ "id": 33205,
+ "start": 15391.62,
+ "end": 15391.76,
+ "text": "know"
+ },
+ {
+ "id": 33206,
+ "start": 15391.76,
+ "end": 15391.94,
+ "text": "who"
+ },
+ {
+ "id": 33207,
+ "start": 15391.94,
+ "end": 15392.18,
+ "text": "you're"
+ },
+ {
+ "id": 33208,
+ "start": 15392.18,
+ "end": 15392.48,
+ "text": "sharing"
+ },
+ {
+ "id": 33209,
+ "start": 15392.48,
+ "end": 15392.66,
+ "text": "my"
+ },
+ {
+ "id": 33210,
+ "start": 15392.66,
+ "end": 15393,
+ "text": "data"
+ },
+ {
+ "id": 33211,
+ "start": 15393,
+ "end": 15395.48,
+ "text": "with"
+ },
+ {
+ "id": 33212,
+ "start": 15395.48,
+ "end": 15397.32,
+ "text": "Senator."
+ },
+ {
+ "id": 33213,
+ "start": 15397.32,
+ "end": 15398.3,
+ "text": "We"
+ },
+ {
+ "id": 33214,
+ "start": 15398.3,
+ "end": 15398.76,
+ "text": "already"
+ },
+ {
+ "id": 33215,
+ "start": 15398.76,
+ "end": 15399.92,
+ "text": "give"
+ },
+ {
+ "id": 33216,
+ "start": 15399.92,
+ "end": 15400.04,
+ "text": "you"
+ },
+ {
+ "id": 33217,
+ "start": 15400.04,
+ "end": 15400.1,
+ "text": "a"
+ },
+ {
+ "id": 33218,
+ "start": 15400.1,
+ "end": 15400.42,
+ "text": "list"
+ },
+ {
+ "id": 33219,
+ "start": 15400.42,
+ "end": 15401.08,
+ "text": "of"
+ },
+ {
+ "id": 33220,
+ "start": 15401.08,
+ "end": 15401.38,
+ "text": "apps"
+ },
+ {
+ "id": 33221,
+ "start": 15401.38,
+ "end": 15401.94,
+ "text": "that"
+ },
+ {
+ "id": 33222,
+ "start": 15401.94,
+ "end": 15402.16,
+ "text": "you're"
+ },
+ {
+ "id": 33223,
+ "start": 15402.16,
+ "end": 15402.48,
+ "text": "using"
+ },
+ {
+ "id": 33224,
+ "start": 15402.48,
+ "end": 15403.16,
+ "text": "and"
+ },
+ {
+ "id": 33225,
+ "start": 15403.16,
+ "end": 15403.3,
+ "text": "you"
+ },
+ {
+ "id": 33226,
+ "start": 15403.3,
+ "end": 15403.58,
+ "text": "signed"
+ },
+ {
+ "id": 33227,
+ "start": 15403.58,
+ "end": 15403.78,
+ "text": "into"
+ },
+ {
+ "id": 33228,
+ "start": 15403.78,
+ "end": 15403.98,
+ "text": "those"
+ },
+ {
+ "id": 33229,
+ "start": 15403.98,
+ "end": 15404.42,
+ "text": "yourself"
+ },
+ {
+ "id": 33230,
+ "start": 15404.42,
+ "end": 15404.64,
+ "text": "and"
+ },
+ {
+ "id": 33231,
+ "start": 15404.64,
+ "end": 15405.14,
+ "text": "provided"
+ },
+ {
+ "id": 33232,
+ "start": 15405.14,
+ "end": 15405.62,
+ "text": "affirmative"
+ },
+ {
+ "id": 33233,
+ "start": 15405.62,
+ "end": 15406.54,
+ "text": "consent."
+ },
+ {
+ "id": 33234,
+ "start": 15406.54,
+ "end": 15407.54,
+ "text": "Before"
+ },
+ {
+ "id": 33235,
+ "start": 15407.54,
+ "end": 15407.66,
+ "text": "we"
+ },
+ {
+ "id": 33236,
+ "start": 15407.66,
+ "end": 15407.84,
+ "text": "don't"
+ },
+ {
+ "id": 33237,
+ "start": 15407.84,
+ "end": 15408.06,
+ "text": "share"
+ },
+ {
+ "id": 33238,
+ "start": 15408.06,
+ "end": 15408.18,
+ "text": "any"
+ },
+ {
+ "id": 33239,
+ "start": 15408.18,
+ "end": 15408.44,
+ "text": "data"
+ },
+ {
+ "id": 33240,
+ "start": 15408.44,
+ "end": 15408.72,
+ "text": "that"
+ },
+ {
+ "id": 33241,
+ "start": 15408.72,
+ "end": 15409.06,
+ "text": "user"
+ },
+ {
+ "id": 33242,
+ "start": 15409.06,
+ "end": 15409.48,
+ "text": "agreement,"
+ },
+ {
+ "id": 33243,
+ "start": 15409.48,
+ "end": 15410.54,
+ "text": "are"
+ },
+ {
+ "id": 33244,
+ "start": 15410.54,
+ "end": 15410.74,
+ "text": "you"
+ },
+ {
+ "id": 33245,
+ "start": 15410.74,
+ "end": 15411.22,
+ "text": "willing"
+ },
+ {
+ "id": 33246,
+ "start": 15411.22,
+ "end": 15411.9,
+ "text": "to"
+ },
+ {
+ "id": 33247,
+ "start": 15411.9,
+ "end": 15412.88,
+ "text": "expand"
+ },
+ {
+ "id": 33248,
+ "start": 15412.88,
+ "end": 15413.12,
+ "text": "my"
+ },
+ {
+ "id": 33249,
+ "start": 15413.12,
+ "end": 15413.46,
+ "text": "right"
+ },
+ {
+ "id": 33250,
+ "start": 15413.46,
+ "end": 15413.68,
+ "text": "to"
+ },
+ {
+ "id": 33251,
+ "start": 15413.68,
+ "end": 15414.24,
+ "text": "prohibit"
+ },
+ {
+ "id": 33252,
+ "start": 15414.24,
+ "end": 15414.7,
+ "text": "you"
+ },
+ {
+ "id": 33253,
+ "start": 15414.7,
+ "end": 15414.9,
+ "text": "from"
+ },
+ {
+ "id": 33254,
+ "start": 15414.9,
+ "end": 15415.3,
+ "text": "sharing"
+ },
+ {
+ "id": 33255,
+ "start": 15415.3,
+ "end": 15415.48,
+ "text": "my"
+ },
+ {
+ "id": 33256,
+ "start": 15415.48,
+ "end": 15418.26,
+ "text": "data?"
+ },
+ {
+ "id": 33257,
+ "start": 15418.26,
+ "end": 15419.24,
+ "text": "Senator"
+ },
+ {
+ "id": 33258,
+ "start": 15419.24,
+ "end": 15419.68,
+ "text": "again,"
+ },
+ {
+ "id": 33259,
+ "start": 15419.68,
+ "end": 15420.46,
+ "text": "I"
+ },
+ {
+ "id": 33260,
+ "start": 15420.46,
+ "end": 15420.74,
+ "text": "believe"
+ },
+ {
+ "id": 33261,
+ "start": 15420.74,
+ "end": 15420.9,
+ "text": "that"
+ },
+ {
+ "id": 33262,
+ "start": 15420.9,
+ "end": 15421,
+ "text": "you"
+ },
+ {
+ "id": 33263,
+ "start": 15421,
+ "end": 15421.36,
+ "text": "already"
+ },
+ {
+ "id": 33264,
+ "start": 15421.36,
+ "end": 15421.62,
+ "text": "have"
+ },
+ {
+ "id": 33265,
+ "start": 15421.62,
+ "end": 15421.86,
+ "text": "that"
+ },
+ {
+ "id": 33266,
+ "start": 15421.86,
+ "end": 15422.4,
+ "text": "control."
+ },
+ {
+ "id": 33267,
+ "start": 15422.4,
+ "end": 15423.24,
+ "text": "So"
+ },
+ {
+ "id": 33268,
+ "start": 15423.24,
+ "end": 15423.48,
+ "text": "I"
+ },
+ {
+ "id": 33269,
+ "start": 15423.48,
+ "end": 15423.86,
+ "text": "think"
+ },
+ {
+ "id": 33270,
+ "start": 15423.86,
+ "end": 15424.1,
+ "text": "people"
+ },
+ {
+ "id": 33271,
+ "start": 15424.1,
+ "end": 15424.3,
+ "text": "have"
+ },
+ {
+ "id": 33272,
+ "start": 15424.3,
+ "end": 15424.78,
+ "text": "that"
+ },
+ {
+ "id": 33273,
+ "start": 15424.78,
+ "end": 15425.02,
+ "text": "full"
+ },
+ {
+ "id": 33274,
+ "start": 15425.02,
+ "end": 15425.4,
+ "text": "control"
+ },
+ {
+ "id": 33275,
+ "start": 15425.4,
+ "end": 15425.56,
+ "text": "in"
+ },
+ {
+ "id": 33276,
+ "start": 15425.56,
+ "end": 15425.66,
+ "text": "the"
+ },
+ {
+ "id": 33277,
+ "start": 15425.66,
+ "end": 15425.96,
+ "text": "system"
+ },
+ {
+ "id": 33278,
+ "start": 15425.96,
+ "end": 15426.3,
+ "text": "already"
+ },
+ {
+ "id": 33279,
+ "start": 15426.3,
+ "end": 15426.9,
+ "text": "today."
+ },
+ {
+ "id": 33280,
+ "start": 15426.9,
+ "end": 15427.3,
+ "text": "If"
+ },
+ {
+ "id": 33281,
+ "start": 15427.3,
+ "end": 15427.52,
+ "text": "we're"
+ },
+ {
+ "id": 33282,
+ "start": 15427.52,
+ "end": 15427.68,
+ "text": "not"
+ },
+ {
+ "id": 33283,
+ "start": 15427.68,
+ "end": 15428.26,
+ "text": "communicating"
+ },
+ {
+ "id": 33284,
+ "start": 15428.26,
+ "end": 15428.42,
+ "text": "this"
+ },
+ {
+ "id": 33285,
+ "start": 15428.42,
+ "end": 15428.84,
+ "text": "clearly,"
+ },
+ {
+ "id": 33286,
+ "start": 15428.84,
+ "end": 15429.2,
+ "text": "then"
+ },
+ {
+ "id": 33287,
+ "start": 15429.2,
+ "end": 15429.92,
+ "text": "that's"
+ },
+ {
+ "id": 33288,
+ "start": 15429.92,
+ "end": 15430.02,
+ "text": "a"
+ },
+ {
+ "id": 33289,
+ "start": 15430.02,
+ "end": 15430.26,
+ "text": "big"
+ },
+ {
+ "id": 33290,
+ "start": 15430.26,
+ "end": 15430.44,
+ "text": "thing"
+ },
+ {
+ "id": 33291,
+ "start": 15430.44,
+ "end": 15430.58,
+ "text": "that"
+ },
+ {
+ "id": 33292,
+ "start": 15430.58,
+ "end": 15430.66,
+ "text": "we"
+ },
+ {
+ "id": 33293,
+ "start": 15430.66,
+ "end": 15430.86,
+ "text": "should"
+ },
+ {
+ "id": 33294,
+ "start": 15430.86,
+ "end": 15431.06,
+ "text": "work"
+ },
+ {
+ "id": 33295,
+ "start": 15431.06,
+ "end": 15431.22,
+ "text": "on"
+ },
+ {
+ "id": 33296,
+ "start": 15431.22,
+ "end": 15431.84,
+ "text": "because"
+ },
+ {
+ "id": 33297,
+ "start": 15431.84,
+ "end": 15431.88,
+ "text": "I"
+ },
+ {
+ "id": 33298,
+ "start": 15431.88,
+ "end": 15432.06,
+ "text": "think"
+ },
+ {
+ "id": 33299,
+ "start": 15432.06,
+ "end": 15432.2,
+ "text": "the"
+ },
+ {
+ "id": 33300,
+ "start": 15432.2,
+ "end": 15432.66,
+ "text": "principles"
+ },
+ {
+ "id": 33301,
+ "start": 15432.66,
+ "end": 15432.78,
+ "text": "that"
+ },
+ {
+ "id": 33302,
+ "start": 15432.78,
+ "end": 15432.98,
+ "text": "you're"
+ },
+ {
+ "id": 33303,
+ "start": 15432.98,
+ "end": 15433.66,
+ "text": "articulating"
+ },
+ {
+ "id": 33304,
+ "start": 15433.66,
+ "end": 15434.26,
+ "text": "are"
+ },
+ {
+ "id": 33305,
+ "start": 15434.26,
+ "end": 15434.38,
+ "text": "the"
+ },
+ {
+ "id": 33306,
+ "start": 15434.38,
+ "end": 15434.62,
+ "text": "ones"
+ },
+ {
+ "id": 33307,
+ "start": 15434.62,
+ "end": 15434.78,
+ "text": "that"
+ },
+ {
+ "id": 33308,
+ "start": 15434.78,
+ "end": 15434.96,
+ "text": "we"
+ },
+ {
+ "id": 33309,
+ "start": 15434.96,
+ "end": 15435.3,
+ "text": "believe"
+ },
+ {
+ "id": 33310,
+ "start": 15435.3,
+ "end": 15435.46,
+ "text": "in"
+ },
+ {
+ "id": 33311,
+ "start": 15435.46,
+ "end": 15435.64,
+ "text": "and"
+ },
+ {
+ "id": 33312,
+ "start": 15435.64,
+ "end": 15435.94,
+ "text": "try"
+ },
+ {
+ "id": 33313,
+ "start": 15435.94,
+ "end": 15436.06,
+ "text": "to"
+ },
+ {
+ "id": 33314,
+ "start": 15436.06,
+ "end": 15436.54,
+ "text": "codify"
+ },
+ {
+ "id": 33315,
+ "start": 15436.54,
+ "end": 15436.64,
+ "text": "on"
+ },
+ {
+ "id": 33316,
+ "start": 15436.64,
+ "end": 15436.74,
+ "text": "the"
+ },
+ {
+ "id": 33317,
+ "start": 15436.74,
+ "end": 15437.02,
+ "text": "product"
+ },
+ {
+ "id": 33318,
+ "start": 15437.02,
+ "end": 15437.14,
+ "text": "that"
+ },
+ {
+ "id": 33319,
+ "start": 15437.14,
+ "end": 15437.28,
+ "text": "we"
+ },
+ {
+ "id": 33320,
+ "start": 15437.28,
+ "end": 15437.52,
+ "text": "build"
+ },
+ {
+ "id": 33321,
+ "start": 15437.52,
+ "end": 15438.16,
+ "text": "are"
+ },
+ {
+ "id": 33322,
+ "start": 15438.16,
+ "end": 15438.34,
+ "text": "you"
+ },
+ {
+ "id": 33323,
+ "start": 15438.34,
+ "end": 15438.76,
+ "text": "willing"
+ },
+ {
+ "id": 33324,
+ "start": 15438.76,
+ "end": 15438.92,
+ "text": "to"
+ },
+ {
+ "id": 33325,
+ "start": 15438.92,
+ "end": 15439.18,
+ "text": "give"
+ },
+ {
+ "id": 33326,
+ "start": 15439.18,
+ "end": 15439.36,
+ "text": "me"
+ },
+ {
+ "id": 33327,
+ "start": 15439.36,
+ "end": 15439.5,
+ "text": "the"
+ },
+ {
+ "id": 33328,
+ "start": 15439.5,
+ "end": 15439.82,
+ "text": "right"
+ },
+ {
+ "id": 33329,
+ "start": 15439.82,
+ "end": 15439.98,
+ "text": "to"
+ },
+ {
+ "id": 33330,
+ "start": 15439.98,
+ "end": 15440.24,
+ "text": "take"
+ },
+ {
+ "id": 33331,
+ "start": 15440.24,
+ "end": 15440.44,
+ "text": "my"
+ },
+ {
+ "id": 33332,
+ "start": 15440.44,
+ "end": 15440.86,
+ "text": "data"
+ },
+ {
+ "id": 33333,
+ "start": 15440.86,
+ "end": 15441.02,
+ "text": "on"
+ },
+ {
+ "id": 33334,
+ "start": 15441.02,
+ "end": 15441.68,
+ "text": "Facebook"
+ },
+ {
+ "id": 33335,
+ "start": 15441.68,
+ "end": 15442.5,
+ "text": "and"
+ },
+ {
+ "id": 33336,
+ "start": 15442.5,
+ "end": 15442.78,
+ "text": "move"
+ },
+ {
+ "id": 33337,
+ "start": 15442.78,
+ "end": 15442.94,
+ "text": "it"
+ },
+ {
+ "id": 33338,
+ "start": 15442.94,
+ "end": 15443.14,
+ "text": "to"
+ },
+ {
+ "id": 33339,
+ "start": 15443.14,
+ "end": 15443.5,
+ "text": "another"
+ },
+ {
+ "id": 33340,
+ "start": 15443.5,
+ "end": 15443.92,
+ "text": "social"
+ },
+ {
+ "id": 33341,
+ "start": 15443.92,
+ "end": 15444.28,
+ "text": "media"
+ },
+ {
+ "id": 33342,
+ "start": 15444.28,
+ "end": 15445.44,
+ "text": "platform?"
+ },
+ {
+ "id": 33343,
+ "start": 15445.44,
+ "end": 15446.36,
+ "text": "Senator,"
+ },
+ {
+ "id": 33344,
+ "start": 15446.36,
+ "end": 15446.5,
+ "text": "you"
+ },
+ {
+ "id": 33345,
+ "start": 15446.5,
+ "end": 15446.62,
+ "text": "can"
+ },
+ {
+ "id": 33346,
+ "start": 15446.62,
+ "end": 15446.98,
+ "text": "already"
+ },
+ {
+ "id": 33347,
+ "start": 15446.98,
+ "end": 15447.1,
+ "text": "do"
+ },
+ {
+ "id": 33348,
+ "start": 15447.1,
+ "end": 15447.28,
+ "text": "that."
+ },
+ {
+ "id": 33349,
+ "start": 15447.28,
+ "end": 15447.6,
+ "text": "We"
+ },
+ {
+ "id": 33350,
+ "start": 15447.6,
+ "end": 15447.94,
+ "text": "have"
+ },
+ {
+ "id": 33351,
+ "start": 15447.94,
+ "end": 15448.62,
+ "text": "download"
+ },
+ {
+ "id": 33352,
+ "start": 15448.62,
+ "end": 15448.78,
+ "text": "your"
+ },
+ {
+ "id": 33353,
+ "start": 15448.78,
+ "end": 15449.26,
+ "text": "information"
+ },
+ {
+ "id": 33354,
+ "start": 15449.26,
+ "end": 15449.54,
+ "text": "tool"
+ },
+ {
+ "id": 33355,
+ "start": 15449.54,
+ "end": 15449.7,
+ "text": "where"
+ },
+ {
+ "id": 33356,
+ "start": 15449.7,
+ "end": 15449.8,
+ "text": "you"
+ },
+ {
+ "id": 33357,
+ "start": 15449.8,
+ "end": 15449.96,
+ "text": "can"
+ },
+ {
+ "id": 33358,
+ "start": 15449.96,
+ "end": 15450.2,
+ "text": "go"
+ },
+ {
+ "id": 33359,
+ "start": 15450.2,
+ "end": 15450.92,
+ "text": "get"
+ },
+ {
+ "id": 33360,
+ "start": 15450.92,
+ "end": 15450.98,
+ "text": "a"
+ },
+ {
+ "id": 33361,
+ "start": 15450.98,
+ "end": 15451.28,
+ "text": "file"
+ },
+ {
+ "id": 33362,
+ "start": 15451.28,
+ "end": 15451.4,
+ "text": "of"
+ },
+ {
+ "id": 33363,
+ "start": 15451.4,
+ "end": 15451.56,
+ "text": "all"
+ },
+ {
+ "id": 33364,
+ "start": 15451.56,
+ "end": 15451.74,
+ "text": "the"
+ },
+ {
+ "id": 33365,
+ "start": 15451.74,
+ "end": 15452.08,
+ "text": "content"
+ },
+ {
+ "id": 33366,
+ "start": 15452.08,
+ "end": 15452.36,
+ "text": "there"
+ },
+ {
+ "id": 33367,
+ "start": 15452.36,
+ "end": 15452.7,
+ "text": "and"
+ },
+ {
+ "id": 33368,
+ "start": 15452.7,
+ "end": 15452.88,
+ "text": "then"
+ },
+ {
+ "id": 33369,
+ "start": 15452.88,
+ "end": 15453.04,
+ "text": "do"
+ },
+ {
+ "id": 33370,
+ "start": 15453.04,
+ "end": 15453.32,
+ "text": "whatever"
+ },
+ {
+ "id": 33371,
+ "start": 15453.32,
+ "end": 15453.44,
+ "text": "you"
+ },
+ {
+ "id": 33372,
+ "start": 15453.44,
+ "end": 15453.58,
+ "text": "want"
+ },
+ {
+ "id": 33373,
+ "start": 15453.58,
+ "end": 15453.72,
+ "text": "with"
+ },
+ {
+ "id": 33374,
+ "start": 15453.72,
+ "end": 15453.86,
+ "text": "it?"
+ },
+ {
+ "id": 33375,
+ "start": 15453.86,
+ "end": 15454.1,
+ "text": "And"
+ },
+ {
+ "id": 33376,
+ "start": 15454.1,
+ "end": 15455.22,
+ "text": "the"
+ },
+ {
+ "id": 33377,
+ "start": 15455.22,
+ "end": 15455.64,
+ "text": "same"
+ },
+ {
+ "id": 33378,
+ "start": 15455.64,
+ "end": 15455.82,
+ "text": "you're"
+ },
+ {
+ "id": 33379,
+ "start": 15455.82,
+ "end": 15456.05,
+ "text": "willing"
+ },
+ {
+ "id": 33380,
+ "start": 15456.05,
+ "end": 15456.49,
+ "text": "to"
+ },
+ {
+ "id": 33381,
+ "start": 15456.49,
+ "end": 15456.73,
+ "text": "give"
+ },
+ {
+ "id": 33382,
+ "start": 15456.73,
+ "end": 15456.85,
+ "text": "me"
+ },
+ {
+ "id": 33383,
+ "start": 15456.85,
+ "end": 15457.03,
+ "text": "the"
+ },
+ {
+ "id": 33384,
+ "start": 15457.03,
+ "end": 15457.31,
+ "text": "right"
+ },
+ {
+ "id": 33385,
+ "start": 15457.31,
+ "end": 15457.47,
+ "text": "to"
+ },
+ {
+ "id": 33386,
+ "start": 15457.47,
+ "end": 15457.75,
+ "text": "say,"
+ },
+ {
+ "id": 33387,
+ "start": 15457.75,
+ "end": 15458.63,
+ "text": "I'm"
+ },
+ {
+ "id": 33388,
+ "start": 15458.63,
+ "end": 15458.81,
+ "text": "going"
+ },
+ {
+ "id": 33389,
+ "start": 15458.81,
+ "end": 15458.87,
+ "text": "to"
+ },
+ {
+ "id": 33390,
+ "start": 15458.87,
+ "end": 15458.97,
+ "text": "go"
+ },
+ {
+ "id": 33391,
+ "start": 15458.97,
+ "end": 15459.13,
+ "text": "on"
+ },
+ {
+ "id": 33392,
+ "start": 15459.13,
+ "end": 15459.31,
+ "text": "your"
+ },
+ {
+ "id": 33393,
+ "start": 15459.31,
+ "end": 15460.07,
+ "text": "platform"
+ },
+ {
+ "id": 33394,
+ "start": 15460.07,
+ "end": 15461.15,
+ "text": "and"
+ },
+ {
+ "id": 33395,
+ "start": 15461.15,
+ "end": 15461.39,
+ "text": "you're"
+ },
+ {
+ "id": 33396,
+ "start": 15461.39,
+ "end": 15461.73,
+ "text": "going"
+ },
+ {
+ "id": 33397,
+ "start": 15461.73,
+ "end": 15462.01,
+ "text": "to"
+ },
+ {
+ "id": 33398,
+ "start": 15462.01,
+ "end": 15462.13,
+ "text": "be"
+ },
+ {
+ "id": 33399,
+ "start": 15462.13,
+ "end": 15462.31,
+ "text": "able"
+ },
+ {
+ "id": 33400,
+ "start": 15462.31,
+ "end": 15462.39,
+ "text": "to"
+ },
+ {
+ "id": 33401,
+ "start": 15462.39,
+ "end": 15462.61,
+ "text": "tell"
+ },
+ {
+ "id": 33402,
+ "start": 15462.61,
+ "end": 15462.67,
+ "text": "a"
+ },
+ {
+ "id": 33403,
+ "start": 15462.67,
+ "end": 15462.95,
+ "text": "lot"
+ },
+ {
+ "id": 33404,
+ "start": 15462.95,
+ "end": 15463.25,
+ "text": "about"
+ },
+ {
+ "id": 33405,
+ "start": 15463.25,
+ "end": 15463.37,
+ "text": "me"
+ },
+ {
+ "id": 33406,
+ "start": 15463.37,
+ "end": 15463.53,
+ "text": "as"
+ },
+ {
+ "id": 33407,
+ "start": 15463.53,
+ "end": 15463.59,
+ "text": "a"
+ },
+ {
+ "id": 33408,
+ "start": 15463.59,
+ "end": 15464.11,
+ "text": "result,"
+ },
+ {
+ "id": 33409,
+ "start": 15464.11,
+ "end": 15464.27,
+ "text": "but"
+ },
+ {
+ "id": 33410,
+ "start": 15464.27,
+ "end": 15464.31,
+ "text": "I"
+ },
+ {
+ "id": 33411,
+ "start": 15464.31,
+ "end": 15464.51,
+ "text": "don't"
+ },
+ {
+ "id": 33412,
+ "start": 15464.51,
+ "end": 15464.69,
+ "text": "want"
+ },
+ {
+ "id": 33413,
+ "start": 15464.69,
+ "end": 15464.85,
+ "text": "you"
+ },
+ {
+ "id": 33414,
+ "start": 15464.85,
+ "end": 15464.95,
+ "text": "to"
+ },
+ {
+ "id": 33415,
+ "start": 15464.95,
+ "end": 15465.17,
+ "text": "share"
+ },
+ {
+ "id": 33416,
+ "start": 15465.17,
+ "end": 15465.39,
+ "text": "with"
+ },
+ {
+ "id": 33417,
+ "start": 15465.39,
+ "end": 15466.66,
+ "text": "anybody."
+ },
+ {
+ "id": 33418,
+ "start": 15466.66,
+ "end": 15467.64,
+ "text": "Yes,"
+ },
+ {
+ "id": 33419,
+ "start": 15467.64,
+ "end": 15468.1,
+ "text": "Senator,"
+ },
+ {
+ "id": 33420,
+ "start": 15468.1,
+ "end": 15468.34,
+ "text": "and"
+ },
+ {
+ "id": 33421,
+ "start": 15468.34,
+ "end": 15468.68,
+ "text": "I"
+ },
+ {
+ "id": 33422,
+ "start": 15468.68,
+ "end": 15468.96,
+ "text": "believe"
+ },
+ {
+ "id": 33423,
+ "start": 15468.96,
+ "end": 15469.3,
+ "text": "you"
+ },
+ {
+ "id": 33424,
+ "start": 15469.3,
+ "end": 15469.74,
+ "text": "already"
+ },
+ {
+ "id": 33425,
+ "start": 15469.74,
+ "end": 15469.88,
+ "text": "have"
+ },
+ {
+ "id": 33426,
+ "start": 15469.88,
+ "end": 15470.04,
+ "text": "that"
+ },
+ {
+ "id": 33427,
+ "start": 15470.04,
+ "end": 15470.34,
+ "text": "ability"
+ },
+ {
+ "id": 33428,
+ "start": 15470.34,
+ "end": 15470.74,
+ "text": "today."
+ },
+ {
+ "id": 33429,
+ "start": 15470.74,
+ "end": 15471.5,
+ "text": "People"
+ },
+ {
+ "id": 33430,
+ "start": 15471.5,
+ "end": 15471.94,
+ "text": "can"
+ },
+ {
+ "id": 33431,
+ "start": 15471.94,
+ "end": 15472.34,
+ "text": "sign"
+ },
+ {
+ "id": 33432,
+ "start": 15472.34,
+ "end": 15472.56,
+ "text": "on"
+ },
+ {
+ "id": 33433,
+ "start": 15472.56,
+ "end": 15472.76,
+ "text": "and"
+ },
+ {
+ "id": 33434,
+ "start": 15472.76,
+ "end": 15473.5,
+ "text": "choose"
+ },
+ {
+ "id": 33435,
+ "start": 15473.5,
+ "end": 15473.62,
+ "text": "to"
+ },
+ {
+ "id": 33436,
+ "start": 15473.62,
+ "end": 15473.8,
+ "text": "not"
+ },
+ {
+ "id": 33437,
+ "start": 15473.8,
+ "end": 15474.04,
+ "text": "share"
+ },
+ {
+ "id": 33438,
+ "start": 15474.04,
+ "end": 15474.32,
+ "text": "things"
+ },
+ {
+ "id": 33439,
+ "start": 15474.32,
+ "end": 15474.5,
+ "text": "and"
+ },
+ {
+ "id": 33440,
+ "start": 15474.5,
+ "end": 15474.68,
+ "text": "just"
+ },
+ {
+ "id": 33441,
+ "start": 15474.68,
+ "end": 15475.38,
+ "text": "follow"
+ },
+ {
+ "id": 33442,
+ "start": 15475.38,
+ "end": 15475.6,
+ "text": "some"
+ },
+ {
+ "id": 33443,
+ "start": 15475.6,
+ "end": 15475.94,
+ "text": "friends"
+ },
+ {
+ "id": 33444,
+ "start": 15475.94,
+ "end": 15476.1,
+ "text": "or"
+ },
+ {
+ "id": 33445,
+ "start": 15476.1,
+ "end": 15476.28,
+ "text": "some"
+ },
+ {
+ "id": 33446,
+ "start": 15476.28,
+ "end": 15476.66,
+ "text": "pages"
+ },
+ {
+ "id": 33447,
+ "start": 15476.66,
+ "end": 15476.9,
+ "text": "and"
+ },
+ {
+ "id": 33448,
+ "start": 15476.9,
+ "end": 15477.92,
+ "text": "read"
+ },
+ {
+ "id": 33449,
+ "start": 15477.92,
+ "end": 15478.28,
+ "text": "content"
+ },
+ {
+ "id": 33450,
+ "start": 15478.28,
+ "end": 15478.4,
+ "text": "if"
+ },
+ {
+ "id": 33451,
+ "start": 15478.4,
+ "end": 15478.58,
+ "text": "that's"
+ },
+ {
+ "id": 33452,
+ "start": 15478.58,
+ "end": 15478.7,
+ "text": "what"
+ },
+ {
+ "id": 33453,
+ "start": 15478.7,
+ "end": 15478.84,
+ "text": "they"
+ },
+ {
+ "id": 33454,
+ "start": 15478.84,
+ "end": 15478.96,
+ "text": "want"
+ },
+ {
+ "id": 33455,
+ "start": 15478.96,
+ "end": 15479.04,
+ "text": "to"
+ },
+ {
+ "id": 33456,
+ "start": 15479.04,
+ "end": 15479.14,
+ "text": "do,"
+ },
+ {
+ "id": 33457,
+ "start": 15479.14,
+ "end": 15480.74,
+ "text": "okay?"
+ },
+ {
+ "id": 33458,
+ "start": 15480.74,
+ "end": 15481.74,
+ "text": "Want"
+ },
+ {
+ "id": 33459,
+ "start": 15481.74,
+ "end": 15481.9,
+ "text": "to"
+ },
+ {
+ "id": 33460,
+ "start": 15481.9,
+ "end": 15482,
+ "text": "be"
+ },
+ {
+ "id": 33461,
+ "start": 15482,
+ "end": 15482.18,
+ "text": "sure?"
+ },
+ {
+ "id": 33462,
+ "start": 15482.18,
+ "end": 15482.24,
+ "text": "I"
+ },
+ {
+ "id": 33463,
+ "start": 15482.24,
+ "end": 15483.48,
+ "text": "understand"
+ },
+ {
+ "id": 33464,
+ "start": 15483.48,
+ "end": 15483.62,
+ "text": "I'm"
+ },
+ {
+ "id": 33465,
+ "start": 15483.62,
+ "end": 15483.8,
+ "text": "about"
+ },
+ {
+ "id": 33466,
+ "start": 15483.8,
+ "end": 15483.96,
+ "text": "out"
+ },
+ {
+ "id": 33467,
+ "start": 15483.96,
+ "end": 15484.04,
+ "text": "of"
+ },
+ {
+ "id": 33468,
+ "start": 15484.04,
+ "end": 15484.44,
+ "text": "time"
+ },
+ {
+ "id": 33469,
+ "start": 15484.44,
+ "end": 15484.86,
+ "text": "or"
+ },
+ {
+ "id": 33470,
+ "start": 15484.86,
+ "end": 15484.96,
+ "text": "it"
+ },
+ {
+ "id": 33471,
+ "start": 15484.96,
+ "end": 15485.18,
+ "text": "goes"
+ },
+ {
+ "id": 33472,
+ "start": 15485.18,
+ "end": 15485.52,
+ "text": "fast."
+ },
+ {
+ "id": 33473,
+ "start": 15485.52,
+ "end": 15486.76,
+ "text": "It"
+ },
+ {
+ "id": 33474,
+ "start": 15486.76,
+ "end": 15487.76,
+ "text": "let"
+ },
+ {
+ "id": 33475,
+ "start": 15487.76,
+ "end": 15487.86,
+ "text": "me"
+ },
+ {
+ "id": 33476,
+ "start": 15487.86,
+ "end": 15487.98,
+ "text": "ask"
+ },
+ {
+ "id": 33477,
+ "start": 15487.98,
+ "end": 15488.12,
+ "text": "you."
+ },
+ {
+ "id": 33478,
+ "start": 15488.12,
+ "end": 15488.32,
+ "text": "One"
+ },
+ {
+ "id": 33479,
+ "start": 15488.32,
+ "end": 15488.8,
+ "text": "final"
+ },
+ {
+ "id": 33480,
+ "start": 15488.8,
+ "end": 15489.44,
+ "text": "question"
+ },
+ {
+ "id": 33481,
+ "start": 15489.44,
+ "end": 15489.62,
+ "text": "in"
+ },
+ {
+ "id": 33482,
+ "start": 15489.62,
+ "end": 15489.76,
+ "text": "my"
+ },
+ {
+ "id": 33483,
+ "start": 15489.76,
+ "end": 15490.18,
+ "text": "12"
+ },
+ {
+ "id": 33484,
+ "start": 15490.18,
+ "end": 15491.94,
+ "text": "seconds."
+ },
+ {
+ "id": 33485,
+ "start": 15491.94,
+ "end": 15492.9,
+ "text": "Could"
+ },
+ {
+ "id": 33486,
+ "start": 15492.9,
+ "end": 15493.22,
+ "text": "somebody"
+ },
+ {
+ "id": 33487,
+ "start": 15493.22,
+ "end": 15493.5,
+ "text": "call"
+ },
+ {
+ "id": 33488,
+ "start": 15493.5,
+ "end": 15493.72,
+ "text": "you"
+ },
+ {
+ "id": 33489,
+ "start": 15493.72,
+ "end": 15493.94,
+ "text": "up"
+ },
+ {
+ "id": 33490,
+ "start": 15493.94,
+ "end": 15494.14,
+ "text": "and"
+ },
+ {
+ "id": 33491,
+ "start": 15494.14,
+ "end": 15494.42,
+ "text": "say"
+ },
+ {
+ "id": 33492,
+ "start": 15494.42,
+ "end": 15495.8,
+ "text": "I"
+ },
+ {
+ "id": 33493,
+ "start": 15495.8,
+ "end": 15496,
+ "text": "want"
+ },
+ {
+ "id": 33494,
+ "start": 15496,
+ "end": 15496.1,
+ "text": "to"
+ },
+ {
+ "id": 33495,
+ "start": 15496.1,
+ "end": 15496.38,
+ "text": "see,"
+ },
+ {
+ "id": 33496,
+ "start": 15496.38,
+ "end": 15496.82,
+ "text": "John"
+ },
+ {
+ "id": 33497,
+ "start": 15496.82,
+ "end": 15497.4,
+ "text": "Kennedy's"
+ },
+ {
+ "id": 33498,
+ "start": 15497.4,
+ "end": 15498.48,
+ "text": "filed"
+ },
+ {
+ "id": 33499,
+ "start": 15498.48,
+ "end": 15499.48,
+ "text": "absolutely"
+ },
+ {
+ "id": 33500,
+ "start": 15499.48,
+ "end": 15502.16,
+ "text": "not."
+ },
+ {
+ "id": 33501,
+ "start": 15502.16,
+ "end": 15503.4,
+ "text": "No,"
+ },
+ {
+ "id": 33502,
+ "start": 15503.4,
+ "end": 15503.6,
+ "text": "not"
+ },
+ {
+ "id": 33503,
+ "start": 15503.6,
+ "end": 15503.86,
+ "text": "would"
+ },
+ {
+ "id": 33504,
+ "start": 15503.86,
+ "end": 15504.02,
+ "text": "you"
+ },
+ {
+ "id": 33505,
+ "start": 15504.02,
+ "end": 15504.18,
+ "text": "do"
+ },
+ {
+ "id": 33506,
+ "start": 15504.18,
+ "end": 15504.32,
+ "text": "it."
+ },
+ {
+ "id": 33507,
+ "start": 15504.32,
+ "end": 15504.62,
+ "text": "Could"
+ },
+ {
+ "id": 33508,
+ "start": 15504.62,
+ "end": 15504.76,
+ "text": "you"
+ },
+ {
+ "id": 33509,
+ "start": 15504.76,
+ "end": 15504.9,
+ "text": "do"
+ },
+ {
+ "id": 33510,
+ "start": 15504.9,
+ "end": 15506.42,
+ "text": "it"
+ },
+ {
+ "id": 33511,
+ "start": 15506.42,
+ "end": 15508,
+ "text": "in"
+ },
+ {
+ "id": 33512,
+ "start": 15508,
+ "end": 15508.54,
+ "text": "theory?"
+ },
+ {
+ "id": 33513,
+ "start": 15508.54,
+ "end": 15508.78,
+ "text": "You"
+ },
+ {
+ "id": 33514,
+ "start": 15508.78,
+ "end": 15509.08,
+ "text": "have"
+ },
+ {
+ "id": 33515,
+ "start": 15509.08,
+ "end": 15509.22,
+ "text": "the"
+ },
+ {
+ "id": 33516,
+ "start": 15509.22,
+ "end": 15509.56,
+ "text": "right"
+ },
+ {
+ "id": 33517,
+ "start": 15509.56,
+ "end": 15510.54,
+ "text": "to"
+ },
+ {
+ "id": 33518,
+ "start": 15510.54,
+ "end": 15510.86,
+ "text": "put"
+ },
+ {
+ "id": 33519,
+ "start": 15510.86,
+ "end": 15511.32,
+ "text": "my"
+ },
+ {
+ "id": 33520,
+ "start": 15511.32,
+ "end": 15511.68,
+ "text": "data"
+ },
+ {
+ "id": 33521,
+ "start": 15511.68,
+ "end": 15511.94,
+ "text": "a"
+ },
+ {
+ "id": 33522,
+ "start": 15511.94,
+ "end": 15512.26,
+ "text": "name"
+ },
+ {
+ "id": 33523,
+ "start": 15512.26,
+ "end": 15512.42,
+ "text": "on"
+ },
+ {
+ "id": 33524,
+ "start": 15512.42,
+ "end": 15512.62,
+ "text": "my"
+ },
+ {
+ "id": 33525,
+ "start": 15512.62,
+ "end": 15512.96,
+ "text": "data"
+ },
+ {
+ "id": 33526,
+ "start": 15512.96,
+ "end": 15513.1,
+ "text": "and"
+ },
+ {
+ "id": 33527,
+ "start": 15513.1,
+ "end": 15513.4,
+ "text": "share"
+ },
+ {
+ "id": 33528,
+ "start": 15513.4,
+ "end": 15513.64,
+ "text": "with"
+ },
+ {
+ "id": 33529,
+ "start": 15513.64,
+ "end": 15514.02,
+ "text": "somebody."
+ },
+ {
+ "id": 33530,
+ "start": 15514.02,
+ "end": 15515,
+ "text": "I"
+ },
+ {
+ "id": 33531,
+ "start": 15515,
+ "end": 15515.16,
+ "text": "do"
+ },
+ {
+ "id": 33532,
+ "start": 15515.16,
+ "end": 15515.28,
+ "text": "not"
+ },
+ {
+ "id": 33533,
+ "start": 15515.28,
+ "end": 15515.54,
+ "text": "believe"
+ },
+ {
+ "id": 33534,
+ "start": 15515.54,
+ "end": 15515.64,
+ "text": "we"
+ },
+ {
+ "id": 33535,
+ "start": 15515.64,
+ "end": 15515.78,
+ "text": "have"
+ },
+ {
+ "id": 33536,
+ "start": 15515.78,
+ "end": 15515.86,
+ "text": "the"
+ },
+ {
+ "id": 33537,
+ "start": 15515.86,
+ "end": 15516.04,
+ "text": "right"
+ },
+ {
+ "id": 33538,
+ "start": 15516.04,
+ "end": 15516.14,
+ "text": "to"
+ },
+ {
+ "id": 33539,
+ "start": 15516.14,
+ "end": 15516.26,
+ "text": "do"
+ },
+ {
+ "id": 33540,
+ "start": 15516.26,
+ "end": 15516.46,
+ "text": "that."
+ },
+ {
+ "id": 33541,
+ "start": 15516.46,
+ "end": 15516.7,
+ "text": "Do"
+ },
+ {
+ "id": 33542,
+ "start": 15516.7,
+ "end": 15516.82,
+ "text": "you"
+ },
+ {
+ "id": 33543,
+ "start": 15516.82,
+ "end": 15516.96,
+ "text": "have"
+ },
+ {
+ "id": 33544,
+ "start": 15516.96,
+ "end": 15517.12,
+ "text": "the"
+ },
+ {
+ "id": 33545,
+ "start": 15517.12,
+ "end": 15519,
+ "text": "ability,"
+ },
+ {
+ "id": 33546,
+ "start": 15519,
+ "end": 15519.98,
+ "text": "Senator?"
+ },
+ {
+ "id": 33547,
+ "start": 15519.98,
+ "end": 15520.14,
+ "text": "The"
+ },
+ {
+ "id": 33548,
+ "start": 15520.14,
+ "end": 15520.36,
+ "text": "data"
+ },
+ {
+ "id": 33549,
+ "start": 15520.36,
+ "end": 15520.5,
+ "text": "is"
+ },
+ {
+ "id": 33550,
+ "start": 15520.5,
+ "end": 15520.7,
+ "text": "in"
+ },
+ {
+ "id": 33551,
+ "start": 15520.7,
+ "end": 15520.82,
+ "text": "the"
+ },
+ {
+ "id": 33552,
+ "start": 15520.82,
+ "end": 15521.26,
+ "text": "system."
+ },
+ {
+ "id": 33553,
+ "start": 15521.26,
+ "end": 15521.68,
+ "text": "You"
+ },
+ {
+ "id": 33554,
+ "start": 15521.68,
+ "end": 15521.82,
+ "text": "have"
+ },
+ {
+ "id": 33555,
+ "start": 15521.82,
+ "end": 15521.92,
+ "text": "the"
+ },
+ {
+ "id": 33556,
+ "start": 15521.92,
+ "end": 15522.3,
+ "text": "ability"
+ },
+ {
+ "id": 33557,
+ "start": 15522.3,
+ "end": 15523.38,
+ "text": "technically."
+ },
+ {
+ "id": 33558,
+ "start": 15523.38,
+ "end": 15523.5,
+ "text": "I"
+ },
+ {
+ "id": 33559,
+ "start": 15523.5,
+ "end": 15523.72,
+ "text": "think"
+ },
+ {
+ "id": 33560,
+ "start": 15523.72,
+ "end": 15524.12,
+ "text": "someone"
+ },
+ {
+ "id": 33561,
+ "start": 15524.12,
+ "end": 15524.3,
+ "text": "could"
+ },
+ {
+ "id": 33562,
+ "start": 15524.3,
+ "end": 15524.42,
+ "text": "do"
+ },
+ {
+ "id": 33563,
+ "start": 15524.42,
+ "end": 15524.58,
+ "text": "that."
+ },
+ {
+ "id": 33564,
+ "start": 15524.58,
+ "end": 15524.76,
+ "text": "But"
+ },
+ {
+ "id": 33565,
+ "start": 15524.76,
+ "end": 15524.92,
+ "text": "that"
+ },
+ {
+ "id": 33566,
+ "start": 15524.92,
+ "end": 15525.12,
+ "text": "would"
+ },
+ {
+ "id": 33567,
+ "start": 15525.12,
+ "end": 15525.24,
+ "text": "be"
+ },
+ {
+ "id": 33568,
+ "start": 15525.24,
+ "end": 15525.32,
+ "text": "a"
+ },
+ {
+ "id": 33569,
+ "start": 15525.32,
+ "end": 15525.86,
+ "text": "massive"
+ },
+ {
+ "id": 33570,
+ "start": 15525.86,
+ "end": 15526.24,
+ "text": "breach."
+ },
+ {
+ "id": 33571,
+ "start": 15526.24,
+ "end": 15527.12,
+ "text": "So"
+ },
+ {
+ "id": 33572,
+ "start": 15527.12,
+ "end": 15527.22,
+ "text": "we"
+ },
+ {
+ "id": 33573,
+ "start": 15527.22,
+ "end": 15527.38,
+ "text": "would"
+ },
+ {
+ "id": 33574,
+ "start": 15527.38,
+ "end": 15527.62,
+ "text": "never"
+ },
+ {
+ "id": 33575,
+ "start": 15527.62,
+ "end": 15527.76,
+ "text": "do"
+ },
+ {
+ "id": 33576,
+ "start": 15527.76,
+ "end": 15528.2,
+ "text": "that."
+ },
+ {
+ "id": 33577,
+ "start": 15528.2,
+ "end": 15529.18,
+ "text": "It"
+ },
+ {
+ "id": 33578,
+ "start": 15529.18,
+ "end": 15529.38,
+ "text": "would"
+ },
+ {
+ "id": 33579,
+ "start": 15529.38,
+ "end": 15529.48,
+ "text": "be"
+ },
+ {
+ "id": 33580,
+ "start": 15529.48,
+ "end": 15529.52,
+ "text": "a"
+ },
+ {
+ "id": 33581,
+ "start": 15529.52,
+ "end": 15531.16,
+ "text": "breach"
+ },
+ {
+ "id": 33582,
+ "start": 15531.16,
+ "end": 15532.12,
+ "text": "Thank"
+ },
+ {
+ "id": 33583,
+ "start": 15532.12,
+ "end": 15532.22,
+ "text": "you,"
+ },
+ {
+ "id": 33584,
+ "start": 15532.22,
+ "end": 15532.32,
+ "text": "Mr."
+ },
+ {
+ "id": 33585,
+ "start": 15532.32,
+ "end": 15533.34,
+ "text": "Thank"
+ },
+ {
+ "id": 33586,
+ "start": 15533.34,
+ "end": 15533.5,
+ "text": "you,"
+ },
+ {
+ "id": 33587,
+ "start": 15533.5,
+ "end": 15534.1,
+ "text": "Senator."
+ },
+ {
+ "id": 33588,
+ "start": 15534.1,
+ "end": 15534.44,
+ "text": "Candy"
+ },
+ {
+ "id": 33589,
+ "start": 15534.44,
+ "end": 15534.68,
+ "text": "center"
+ },
+ {
+ "id": 33590,
+ "start": 15534.68,
+ "end": 15534.9,
+ "text": "balls"
+ },
+ {
+ "id": 33591,
+ "start": 15534.9,
+ "end": 15535.04,
+ "text": "and"
+ },
+ {
+ "id": 33592,
+ "start": 15535.04,
+ "end": 15535.18,
+ "text": "up"
+ },
+ {
+ "id": 33593,
+ "start": 15535.18,
+ "end": 15536.2,
+ "text": "next."
+ },
+ {
+ "id": 33594,
+ "start": 15536.2,
+ "end": 15537.36,
+ "text": "Thank"
+ },
+ {
+ "id": 33595,
+ "start": 15537.36,
+ "end": 15537.6,
+ "text": "you,"
+ },
+ {
+ "id": 33596,
+ "start": 15537.6,
+ "end": 15538.72,
+ "text": "Mr"
+ },
+ {
+ "id": 33597,
+ "start": 15538.72,
+ "end": 15539.06,
+ "text": "Chairman."
+ },
+ {
+ "id": 33598,
+ "start": 15539.06,
+ "end": 15540.06,
+ "text": "Thank"
+ },
+ {
+ "id": 33599,
+ "start": 15540.06,
+ "end": 15540.24,
+ "text": "you"
+ },
+ {
+ "id": 33600,
+ "start": 15540.24,
+ "end": 15540.68,
+ "text": "for"
+ },
+ {
+ "id": 33601,
+ "start": 15540.68,
+ "end": 15541.84,
+ "text": "being"
+ },
+ {
+ "id": 33602,
+ "start": 15541.84,
+ "end": 15542.26,
+ "text": "here"
+ },
+ {
+ "id": 33603,
+ "start": 15542.26,
+ "end": 15542.84,
+ "text": "and"
+ },
+ {
+ "id": 33604,
+ "start": 15542.84,
+ "end": 15543.86,
+ "text": "enduring"
+ },
+ {
+ "id": 33605,
+ "start": 15543.86,
+ "end": 15543.92,
+ "text": "a"
+ },
+ {
+ "id": 33606,
+ "start": 15543.92,
+ "end": 15544.52,
+ "text": "long"
+ },
+ {
+ "id": 33607,
+ "start": 15544.52,
+ "end": 15544.86,
+ "text": "day."
+ },
+ {
+ "id": 33608,
+ "start": 15544.86,
+ "end": 15545.3,
+ "text": "Mr"
+ },
+ {
+ "id": 33609,
+ "start": 15545.3,
+ "end": 15546.4,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 33610,
+ "start": 15546.4,
+ "end": 15547.16,
+ "text": "I"
+ },
+ {
+ "id": 33611,
+ "start": 15547.16,
+ "end": 15547.36,
+ "text": "want"
+ },
+ {
+ "id": 33612,
+ "start": 15547.36,
+ "end": 15547.48,
+ "text": "to"
+ },
+ {
+ "id": 33613,
+ "start": 15547.48,
+ "end": 15548.56,
+ "text": "start"
+ },
+ {
+ "id": 33614,
+ "start": 15548.56,
+ "end": 15549,
+ "text": "with"
+ },
+ {
+ "id": 33615,
+ "start": 15549,
+ "end": 15549.22,
+ "text": "what"
+ },
+ {
+ "id": 33616,
+ "start": 15549.22,
+ "end": 15549.28,
+ "text": "I"
+ },
+ {
+ "id": 33617,
+ "start": 15549.28,
+ "end": 15549.5,
+ "text": "hope"
+ },
+ {
+ "id": 33618,
+ "start": 15549.5,
+ "end": 15549.72,
+ "text": "can"
+ },
+ {
+ "id": 33619,
+ "start": 15549.72,
+ "end": 15549.84,
+ "text": "be"
+ },
+ {
+ "id": 33620,
+ "start": 15549.84,
+ "end": 15550.42,
+ "text": "a"
+ },
+ {
+ "id": 33621,
+ "start": 15550.42,
+ "end": 15550.68,
+ "text": "quick"
+ },
+ {
+ "id": 33622,
+ "start": 15550.68,
+ "end": 15551,
+ "text": "round"
+ },
+ {
+ "id": 33623,
+ "start": 15551,
+ "end": 15551.24,
+ "text": "of"
+ },
+ {
+ "id": 33624,
+ "start": 15551.24,
+ "end": 15552.02,
+ "text": "questions."
+ },
+ {
+ "id": 33625,
+ "start": 15552.02,
+ "end": 15552.22,
+ "text": "Just"
+ },
+ {
+ "id": 33626,
+ "start": 15552.22,
+ "end": 15552.38,
+ "text": "so"
+ },
+ {
+ "id": 33627,
+ "start": 15552.38,
+ "end": 15552.6,
+ "text": "I"
+ },
+ {
+ "id": 33628,
+ "start": 15552.6,
+ "end": 15553.4,
+ "text": "make"
+ },
+ {
+ "id": 33629,
+ "start": 15553.4,
+ "end": 15553.58,
+ "text": "sure"
+ },
+ {
+ "id": 33630,
+ "start": 15553.58,
+ "end": 15553.66,
+ "text": "I"
+ },
+ {
+ "id": 33631,
+ "start": 15553.66,
+ "end": 15554.14,
+ "text": "understand"
+ },
+ {
+ "id": 33632,
+ "start": 15554.14,
+ "end": 15554.36,
+ "text": "your"
+ },
+ {
+ "id": 33633,
+ "start": 15554.36,
+ "end": 15554.9,
+ "text": "previous"
+ },
+ {
+ "id": 33634,
+ "start": 15554.9,
+ "end": 15559.62,
+ "text": "testimony"
+ },
+ {
+ "id": 33635,
+ "start": 15559.62,
+ "end": 15560.6,
+ "text": "specifically"
+ },
+ {
+ "id": 33636,
+ "start": 15560.6,
+ "end": 15560.82,
+ "text": "with"
+ },
+ {
+ "id": 33637,
+ "start": 15560.82,
+ "end": 15561.36,
+ "text": "regard"
+ },
+ {
+ "id": 33638,
+ "start": 15561.36,
+ "end": 15562.25,
+ "text": "to"
+ },
+ {
+ "id": 33639,
+ "start": 15562.25,
+ "end": 15563.33,
+ "text": "the"
+ },
+ {
+ "id": 33640,
+ "start": 15563.33,
+ "end": 15563.89,
+ "text": "process"
+ },
+ {
+ "id": 33641,
+ "start": 15563.89,
+ "end": 15564.07,
+ "text": "by"
+ },
+ {
+ "id": 33642,
+ "start": 15564.07,
+ "end": 15564.39,
+ "text": "which"
+ },
+ {
+ "id": 33643,
+ "start": 15564.39,
+ "end": 15565.01,
+ "text": "Cambridge"
+ },
+ {
+ "id": 33644,
+ "start": 15565.01,
+ "end": 15565.89,
+ "text": "Analytica"
+ },
+ {
+ "id": 33645,
+ "start": 15565.89,
+ "end": 15566.87,
+ "text": "was"
+ },
+ {
+ "id": 33646,
+ "start": 15566.87,
+ "end": 15567.11,
+ "text": "able"
+ },
+ {
+ "id": 33647,
+ "start": 15567.11,
+ "end": 15567.21,
+ "text": "to"
+ },
+ {
+ "id": 33648,
+ "start": 15567.21,
+ "end": 15567.67,
+ "text": "purchase"
+ },
+ {
+ "id": 33649,
+ "start": 15567.67,
+ "end": 15568.69,
+ "text": "Facebook"
+ },
+ {
+ "id": 33650,
+ "start": 15568.69,
+ "end": 15569.17,
+ "text": "users"
+ },
+ {
+ "id": 33651,
+ "start": 15569.17,
+ "end": 15569.71,
+ "text": "data?"
+ },
+ {
+ "id": 33652,
+ "start": 15569.71,
+ "end": 15570.35,
+ "text": "So"
+ },
+ {
+ "id": 33653,
+ "start": 15570.35,
+ "end": 15570.47,
+ "text": "it"
+ },
+ {
+ "id": 33654,
+ "start": 15570.47,
+ "end": 15570.59,
+ "text": "was"
+ },
+ {
+ "id": 33655,
+ "start": 15570.59,
+ "end": 15570.69,
+ "text": "an"
+ },
+ {
+ "id": 33656,
+ "start": 15570.69,
+ "end": 15570.93,
+ "text": "app"
+ },
+ {
+ "id": 33657,
+ "start": 15570.93,
+ "end": 15571.49,
+ "text": "developer,"
+ },
+ {
+ "id": 33658,
+ "start": 15571.49,
+ "end": 15572.47,
+ "text": "Alexander"
+ },
+ {
+ "id": 33659,
+ "start": 15572.47,
+ "end": 15573.35,
+ "text": "Cogan."
+ },
+ {
+ "id": 33660,
+ "start": 15573.35,
+ "end": 15573.59,
+ "text": "He"
+ },
+ {
+ "id": 33661,
+ "start": 15573.59,
+ "end": 15574.23,
+ "text": "collected"
+ },
+ {
+ "id": 33662,
+ "start": 15574.23,
+ "end": 15574.77,
+ "text": "data"
+ },
+ {
+ "id": 33663,
+ "start": 15574.77,
+ "end": 15575.17,
+ "text": "via"
+ },
+ {
+ "id": 33664,
+ "start": 15575.17,
+ "end": 15575.39,
+ "text": "a"
+ },
+ {
+ "id": 33665,
+ "start": 15575.39,
+ "end": 15576.21,
+ "text": "personality"
+ },
+ {
+ "id": 33666,
+ "start": 15576.21,
+ "end": 15578.1,
+ "text": "quiz."
+ },
+ {
+ "id": 33667,
+ "start": 15578.1,
+ "end": 15579.62,
+ "text": "Is"
+ },
+ {
+ "id": 33668,
+ "start": 15579.62,
+ "end": 15579.86,
+ "text": "that"
+ },
+ {
+ "id": 33669,
+ "start": 15579.86,
+ "end": 15580.3,
+ "text": "correct,"
+ },
+ {
+ "id": 33670,
+ "start": 15580.3,
+ "end": 15581.1,
+ "text": "yes,"
+ },
+ {
+ "id": 33671,
+ "start": 15581.1,
+ "end": 15582.06,
+ "text": "okay."
+ },
+ {
+ "id": 33672,
+ "start": 15582.06,
+ "end": 15583.04,
+ "text": "And"
+ },
+ {
+ "id": 33673,
+ "start": 15583.04,
+ "end": 15584.28,
+ "text": "thereby"
+ },
+ {
+ "id": 33674,
+ "start": 15584.28,
+ "end": 15584.42,
+ "text": "is"
+ },
+ {
+ "id": 33675,
+ "start": 15584.42,
+ "end": 15584.66,
+ "text": "able"
+ },
+ {
+ "id": 33676,
+ "start": 15584.66,
+ "end": 15584.76,
+ "text": "to"
+ },
+ {
+ "id": 33677,
+ "start": 15584.76,
+ "end": 15585.08,
+ "text": "gain"
+ },
+ {
+ "id": 33678,
+ "start": 15585.08,
+ "end": 15585.68,
+ "text": "access"
+ },
+ {
+ "id": 33679,
+ "start": 15585.68,
+ "end": 15586.1,
+ "text": "of"
+ },
+ {
+ "id": 33680,
+ "start": 15586.1,
+ "end": 15586.74,
+ "text": "not"
+ },
+ {
+ "id": 33681,
+ "start": 15586.74,
+ "end": 15586.96,
+ "text": "only"
+ },
+ {
+ "id": 33682,
+ "start": 15586.96,
+ "end": 15587.2,
+ "text": "the"
+ },
+ {
+ "id": 33683,
+ "start": 15587.2,
+ "end": 15587.48,
+ "text": "people"
+ },
+ {
+ "id": 33684,
+ "start": 15587.48,
+ "end": 15587.68,
+ "text": "who"
+ },
+ {
+ "id": 33685,
+ "start": 15587.68,
+ "end": 15588.16,
+ "text": "took"
+ },
+ {
+ "id": 33686,
+ "start": 15588.16,
+ "end": 15588.56,
+ "text": "the"
+ },
+ {
+ "id": 33687,
+ "start": 15588.56,
+ "end": 15589.16,
+ "text": "quiz."
+ },
+ {
+ "id": 33688,
+ "start": 15589.16,
+ "end": 15589.4,
+ "text": "But"
+ },
+ {
+ "id": 33689,
+ "start": 15589.4,
+ "end": 15589.78,
+ "text": "their"
+ },
+ {
+ "id": 33690,
+ "start": 15589.78,
+ "end": 15590.64,
+ "text": "network"
+ },
+ {
+ "id": 33691,
+ "start": 15590.64,
+ "end": 15591.64,
+ "text": "that"
+ },
+ {
+ "id": 33692,
+ "start": 15591.64,
+ "end": 15591.94,
+ "text": "correct"
+ },
+ {
+ "id": 33693,
+ "start": 15591.94,
+ "end": 15592.94,
+ "text": "to"
+ },
+ {
+ "id": 33694,
+ "start": 15592.94,
+ "end": 15594.06,
+ "text": "Senator."
+ },
+ {
+ "id": 33695,
+ "start": 15594.06,
+ "end": 15594.34,
+ "text": "Yes,"
+ },
+ {
+ "id": 33696,
+ "start": 15594.34,
+ "end": 15594.74,
+ "text": "the"
+ },
+ {
+ "id": 33697,
+ "start": 15594.74,
+ "end": 15595.08,
+ "text": "terms"
+ },
+ {
+ "id": 33698,
+ "start": 15595.08,
+ "end": 15595.2,
+ "text": "of"
+ },
+ {
+ "id": 33699,
+ "start": 15595.2,
+ "end": 15595.3,
+ "text": "the"
+ },
+ {
+ "id": 33700,
+ "start": 15595.3,
+ "end": 15595.74,
+ "text": "platform"
+ },
+ {
+ "id": 33701,
+ "start": 15595.74,
+ "end": 15595.84,
+ "text": "at"
+ },
+ {
+ "id": 33702,
+ "start": 15595.84,
+ "end": 15595.98,
+ "text": "the"
+ },
+ {
+ "id": 33703,
+ "start": 15595.98,
+ "end": 15596.28,
+ "text": "time,"
+ },
+ {
+ "id": 33704,
+ "start": 15596.28,
+ "end": 15596.98,
+ "text": "allowed"
+ },
+ {
+ "id": 33705,
+ "start": 15596.98,
+ "end": 15597.46,
+ "text": "for"
+ },
+ {
+ "id": 33706,
+ "start": 15597.46,
+ "end": 15598.44,
+ "text": "people"
+ },
+ {
+ "id": 33707,
+ "start": 15598.44,
+ "end": 15598.54,
+ "text": "to"
+ },
+ {
+ "id": 33708,
+ "start": 15598.54,
+ "end": 15598.8,
+ "text": "share"
+ },
+ {
+ "id": 33709,
+ "start": 15598.8,
+ "end": 15599.22,
+ "text": "their"
+ },
+ {
+ "id": 33710,
+ "start": 15599.22,
+ "end": 15599.74,
+ "text": "information"
+ },
+ {
+ "id": 33711,
+ "start": 15599.74,
+ "end": 15600.42,
+ "text": "and"
+ },
+ {
+ "id": 33712,
+ "start": 15600.42,
+ "end": 15600.84,
+ "text": "some"
+ },
+ {
+ "id": 33713,
+ "start": 15600.84,
+ "end": 15601.24,
+ "text": "basic"
+ },
+ {
+ "id": 33714,
+ "start": 15601.24,
+ "end": 15601.8,
+ "text": "information"
+ },
+ {
+ "id": 33715,
+ "start": 15601.8,
+ "end": 15602.06,
+ "text": "about"
+ },
+ {
+ "id": 33716,
+ "start": 15602.06,
+ "end": 15602.28,
+ "text": "their"
+ },
+ {
+ "id": 33717,
+ "start": 15602.28,
+ "end": 15602.58,
+ "text": "friends"
+ },
+ {
+ "id": 33718,
+ "start": 15602.58,
+ "end": 15602.74,
+ "text": "as"
+ },
+ {
+ "id": 33719,
+ "start": 15602.74,
+ "end": 15602.94,
+ "text": "well."
+ },
+ {
+ "id": 33720,
+ "start": 15602.94,
+ "end": 15603.44,
+ "text": "And"
+ },
+ {
+ "id": 33721,
+ "start": 15603.44,
+ "end": 15603.64,
+ "text": "we've"
+ },
+ {
+ "id": 33722,
+ "start": 15603.64,
+ "end": 15603.84,
+ "text": "since"
+ },
+ {
+ "id": 33723,
+ "start": 15603.84,
+ "end": 15604.14,
+ "text": "changed"
+ },
+ {
+ "id": 33724,
+ "start": 15604.14,
+ "end": 15604.3,
+ "text": "that"
+ },
+ {
+ "id": 33725,
+ "start": 15604.3,
+ "end": 15604.54,
+ "text": "as"
+ },
+ {
+ "id": 33726,
+ "start": 15604.54,
+ "end": 15605.1,
+ "text": "24"
+ },
+ {
+ "id": 33727,
+ "start": 15605.1,
+ "end": 15605.92,
+ "text": "now"
+ },
+ {
+ "id": 33728,
+ "start": 15605.92,
+ "end": 15606.12,
+ "text": "that's"
+ },
+ {
+ "id": 33729,
+ "start": 15606.12,
+ "end": 15606.28,
+ "text": "not"
+ },
+ {
+ "id": 33730,
+ "start": 15606.28,
+ "end": 15607.48,
+ "text": "possible."
+ },
+ {
+ "id": 33731,
+ "start": 15607.48,
+ "end": 15608.02,
+ "text": "In"
+ },
+ {
+ "id": 33732,
+ "start": 15608.02,
+ "end": 15608.42,
+ "text": "total"
+ },
+ {
+ "id": 33733,
+ "start": 15608.42,
+ "end": 15608.64,
+ "text": "about"
+ },
+ {
+ "id": 33734,
+ "start": 15608.64,
+ "end": 15609.8,
+ "text": "87,000,000"
+ },
+ {
+ "id": 33735,
+ "start": 15609.8,
+ "end": 15610.64,
+ "text": "Facebook"
+ },
+ {
+ "id": 33736,
+ "start": 15610.64,
+ "end": 15611.12,
+ "text": "users,"
+ },
+ {
+ "id": 33737,
+ "start": 15611.12,
+ "end": 15611.74,
+ "text": "you"
+ },
+ {
+ "id": 33738,
+ "start": 15611.74,
+ "end": 15612.16,
+ "text": "earlier"
+ },
+ {
+ "id": 33739,
+ "start": 15612.16,
+ "end": 15612.98,
+ "text": "testified"
+ },
+ {
+ "id": 33740,
+ "start": 15612.98,
+ "end": 15613.26,
+ "text": "about"
+ },
+ {
+ "id": 33741,
+ "start": 15613.26,
+ "end": 15613.48,
+ "text": "the"
+ },
+ {
+ "id": 33742,
+ "start": 15613.48,
+ "end": 15613.76,
+ "text": "two"
+ },
+ {
+ "id": 33743,
+ "start": 15613.76,
+ "end": 15614.44,
+ "text": "types"
+ },
+ {
+ "id": 33744,
+ "start": 15614.44,
+ "end": 15614.68,
+ "text": "of"
+ },
+ {
+ "id": 33745,
+ "start": 15614.68,
+ "end": 15615.18,
+ "text": "ways"
+ },
+ {
+ "id": 33746,
+ "start": 15615.18,
+ "end": 15615.4,
+ "text": "you"
+ },
+ {
+ "id": 33747,
+ "start": 15615.4,
+ "end": 15615.64,
+ "text": "gain"
+ },
+ {
+ "id": 33748,
+ "start": 15615.64,
+ "end": 15616.02,
+ "text": "data."
+ },
+ {
+ "id": 33749,
+ "start": 15616.02,
+ "end": 15616.28,
+ "text": "One"
+ },
+ {
+ "id": 33750,
+ "start": 15616.28,
+ "end": 15616.5,
+ "text": "is"
+ },
+ {
+ "id": 33751,
+ "start": 15616.5,
+ "end": 15617.08,
+ "text": "what"
+ },
+ {
+ "id": 33752,
+ "start": 15617.08,
+ "end": 15617.36,
+ "text": "is"
+ },
+ {
+ "id": 33753,
+ "start": 15617.36,
+ "end": 15618.2,
+ "text": "voluntarily"
+ },
+ {
+ "id": 33754,
+ "start": 15618.2,
+ "end": 15618.62,
+ "text": "shared"
+ },
+ {
+ "id": 33755,
+ "start": 15618.62,
+ "end": 15618.86,
+ "text": "by"
+ },
+ {
+ "id": 33756,
+ "start": 15618.86,
+ "end": 15619.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 33757,
+ "start": 15619.34,
+ "end": 15619.8,
+ "text": "members"
+ },
+ {
+ "id": 33758,
+ "start": 15619.8,
+ "end": 15620.04,
+ "text": "and"
+ },
+ {
+ "id": 33759,
+ "start": 15620.04,
+ "end": 15620.5,
+ "text": "users"
+ },
+ {
+ "id": 33760,
+ "start": 15620.5,
+ "end": 15621.1,
+ "text": "and"
+ },
+ {
+ "id": 33761,
+ "start": 15621.1,
+ "end": 15621.24,
+ "text": "the"
+ },
+ {
+ "id": 33762,
+ "start": 15621.24,
+ "end": 15621.62,
+ "text": "other"
+ },
+ {
+ "id": 33763,
+ "start": 15621.62,
+ "end": 15622.11,
+ "text": "is"
+ },
+ {
+ "id": 33764,
+ "start": 15622.11,
+ "end": 15622.91,
+ "text": "in"
+ },
+ {
+ "id": 33765,
+ "start": 15622.91,
+ "end": 15623.19,
+ "text": "order"
+ },
+ {
+ "id": 33766,
+ "start": 15623.19,
+ "end": 15623.61,
+ "text": "to."
+ },
+ {
+ "id": 33767,
+ "start": 15623.61,
+ "end": 15624.17,
+ "text": "I"
+ },
+ {
+ "id": 33768,
+ "start": 15624.17,
+ "end": 15624.71,
+ "text": "think"
+ },
+ {
+ "id": 33769,
+ "start": 15624.71,
+ "end": 15625.37,
+ "text": "you"
+ },
+ {
+ "id": 33770,
+ "start": 15625.37,
+ "end": 15625.67,
+ "text": "said"
+ },
+ {
+ "id": 33771,
+ "start": 15625.67,
+ "end": 15626.23,
+ "text": "improve"
+ },
+ {
+ "id": 33772,
+ "start": 15626.23,
+ "end": 15626.41,
+ "text": "your"
+ },
+ {
+ "id": 33773,
+ "start": 15626.41,
+ "end": 15627.13,
+ "text": "advertising"
+ },
+ {
+ "id": 33774,
+ "start": 15627.13,
+ "end": 15627.83,
+ "text": "experience."
+ },
+ {
+ "id": 33775,
+ "start": 15627.83,
+ "end": 15628.61,
+ "text": "Whatever"
+ },
+ {
+ "id": 33776,
+ "start": 15628.61,
+ "end": 15629.35,
+ "text": "that"
+ },
+ {
+ "id": 33777,
+ "start": 15629.35,
+ "end": 15629.75,
+ "text": "exactly"
+ },
+ {
+ "id": 33778,
+ "start": 15629.75,
+ "end": 15630.01,
+ "text": "means"
+ },
+ {
+ "id": 33779,
+ "start": 15630.01,
+ "end": 15630.53,
+ "text": "the"
+ },
+ {
+ "id": 33780,
+ "start": 15630.53,
+ "end": 15630.83,
+ "text": "data."
+ },
+ {
+ "id": 33781,
+ "start": 15630.83,
+ "end": 15631.75,
+ "text": "Facebook"
+ },
+ {
+ "id": 33782,
+ "start": 15631.75,
+ "end": 15632.17,
+ "text": "collects"
+ },
+ {
+ "id": 33783,
+ "start": 15632.17,
+ "end": 15632.33,
+ "text": "in"
+ },
+ {
+ "id": 33784,
+ "start": 15632.33,
+ "end": 15632.61,
+ "text": "order"
+ },
+ {
+ "id": 33785,
+ "start": 15632.61,
+ "end": 15632.93,
+ "text": "to"
+ },
+ {
+ "id": 33786,
+ "start": 15632.93,
+ "end": 15633.83,
+ "text": "customize"
+ },
+ {
+ "id": 33787,
+ "start": 15633.83,
+ "end": 15634.29,
+ "text": "or"
+ },
+ {
+ "id": 33788,
+ "start": 15634.29,
+ "end": 15634.77,
+ "text": "focus"
+ },
+ {
+ "id": 33789,
+ "start": 15634.77,
+ "end": 15634.93,
+ "text": "on"
+ },
+ {
+ "id": 33790,
+ "start": 15634.93,
+ "end": 15636.74,
+ "text": "that"
+ },
+ {
+ "id": 33791,
+ "start": 15636.74,
+ "end": 15637.9,
+ "text": "Alexander"
+ },
+ {
+ "id": 33792,
+ "start": 15637.9,
+ "end": 15638.48,
+ "text": "Cogan"
+ },
+ {
+ "id": 33793,
+ "start": 15638.48,
+ "end": 15638.84,
+ "text": "able"
+ },
+ {
+ "id": 33794,
+ "start": 15638.84,
+ "end": 15638.98,
+ "text": "to"
+ },
+ {
+ "id": 33795,
+ "start": 15638.98,
+ "end": 15639.18,
+ "text": "get"
+ },
+ {
+ "id": 33796,
+ "start": 15639.18,
+ "end": 15639.54,
+ "text": "both"
+ },
+ {
+ "id": 33797,
+ "start": 15639.54,
+ "end": 15639.8,
+ "text": "of"
+ },
+ {
+ "id": 33798,
+ "start": 15639.8,
+ "end": 15640.04,
+ "text": "those"
+ },
+ {
+ "id": 33799,
+ "start": 15640.04,
+ "end": 15640.32,
+ "text": "sets"
+ },
+ {
+ "id": 33800,
+ "start": 15640.32,
+ "end": 15640.44,
+ "text": "of"
+ },
+ {
+ "id": 33801,
+ "start": 15640.44,
+ "end": 15640.78,
+ "text": "data"
+ },
+ {
+ "id": 33802,
+ "start": 15640.78,
+ "end": 15640.98,
+ "text": "or"
+ },
+ {
+ "id": 33803,
+ "start": 15640.98,
+ "end": 15641.46,
+ "text": "just"
+ },
+ {
+ "id": 33804,
+ "start": 15641.46,
+ "end": 15641.8,
+ "text": "what"
+ },
+ {
+ "id": 33805,
+ "start": 15641.8,
+ "end": 15641.98,
+ "text": "was"
+ },
+ {
+ "id": 33806,
+ "start": 15641.98,
+ "end": 15642.72,
+ "text": "voluntarily"
+ },
+ {
+ "id": 33807,
+ "start": 15642.72,
+ "end": 15643.56,
+ "text": "entered"
+ },
+ {
+ "id": 33808,
+ "start": 15643.56,
+ "end": 15643.74,
+ "text": "by"
+ },
+ {
+ "id": 33809,
+ "start": 15643.74,
+ "end": 15643.88,
+ "text": "the"
+ },
+ {
+ "id": 33810,
+ "start": 15643.88,
+ "end": 15644.92,
+ "text": "user."
+ },
+ {
+ "id": 33811,
+ "start": 15644.92,
+ "end": 15645.74,
+ "text": "Yes"
+ },
+ {
+ "id": 33812,
+ "start": 15645.74,
+ "end": 15646,
+ "text": "that's"
+ },
+ {
+ "id": 33813,
+ "start": 15646,
+ "end": 15646.06,
+ "text": "a"
+ },
+ {
+ "id": 33814,
+ "start": 15646.06,
+ "end": 15646.24,
+ "text": "good"
+ },
+ {
+ "id": 33815,
+ "start": 15646.24,
+ "end": 15646.54,
+ "text": "question,"
+ },
+ {
+ "id": 33816,
+ "start": 15646.54,
+ "end": 15646.84,
+ "text": "it"
+ },
+ {
+ "id": 33817,
+ "start": 15646.84,
+ "end": 15647.02,
+ "text": "was"
+ },
+ {
+ "id": 33818,
+ "start": 15647.02,
+ "end": 15647.26,
+ "text": "just"
+ },
+ {
+ "id": 33819,
+ "start": 15647.26,
+ "end": 15647.38,
+ "text": "a"
+ },
+ {
+ "id": 33820,
+ "start": 15647.38,
+ "end": 15647.92,
+ "text": "subset"
+ },
+ {
+ "id": 33821,
+ "start": 15647.92,
+ "end": 15648.24,
+ "text": "of"
+ },
+ {
+ "id": 33822,
+ "start": 15648.24,
+ "end": 15648.46,
+ "text": "what"
+ },
+ {
+ "id": 33823,
+ "start": 15648.46,
+ "end": 15648.68,
+ "text": "was"
+ },
+ {
+ "id": 33824,
+ "start": 15648.68,
+ "end": 15649.1,
+ "text": "entered"
+ },
+ {
+ "id": 33825,
+ "start": 15649.1,
+ "end": 15649.22,
+ "text": "by"
+ },
+ {
+ "id": 33826,
+ "start": 15649.22,
+ "end": 15649.38,
+ "text": "the"
+ },
+ {
+ "id": 33827,
+ "start": 15649.38,
+ "end": 15649.72,
+ "text": "person"
+ },
+ {
+ "id": 33828,
+ "start": 15649.72,
+ "end": 15651.6,
+ "text": "as"
+ },
+ {
+ "id": 33829,
+ "start": 15651.6,
+ "end": 15651.64,
+ "text": "a"
+ },
+ {
+ "id": 33830,
+ "start": 15651.64,
+ "end": 15652.06,
+ "text": "subset"
+ },
+ {
+ "id": 33831,
+ "start": 15652.06,
+ "end": 15652.18,
+ "text": "of"
+ },
+ {
+ "id": 33832,
+ "start": 15652.18,
+ "end": 15652.3,
+ "text": "the"
+ },
+ {
+ "id": 33833,
+ "start": 15652.3,
+ "end": 15654.84,
+ "text": "95"
+ },
+ {
+ "id": 33834,
+ "start": 15654.84,
+ "end": 15655.86,
+ "text": "categories"
+ },
+ {
+ "id": 33835,
+ "start": 15655.86,
+ "end": 15656.04,
+ "text": "of"
+ },
+ {
+ "id": 33836,
+ "start": 15656.04,
+ "end": 15656.36,
+ "text": "data"
+ },
+ {
+ "id": 33837,
+ "start": 15656.36,
+ "end": 15656.6,
+ "text": "that"
+ },
+ {
+ "id": 33838,
+ "start": 15656.6,
+ "end": 15656.76,
+ "text": "you"
+ },
+ {
+ "id": 33839,
+ "start": 15656.76,
+ "end": 15657.62,
+ "text": "keep."
+ },
+ {
+ "id": 33840,
+ "start": 15657.62,
+ "end": 15658.64,
+ "text": "Yes,"
+ },
+ {
+ "id": 33841,
+ "start": 15658.64,
+ "end": 15659.18,
+ "text": "when"
+ },
+ {
+ "id": 33842,
+ "start": 15659.18,
+ "end": 15659.28,
+ "text": "you"
+ },
+ {
+ "id": 33843,
+ "start": 15659.28,
+ "end": 15659.52,
+ "text": "send"
+ },
+ {
+ "id": 33844,
+ "start": 15659.52,
+ "end": 15659.6,
+ "text": "in"
+ },
+ {
+ "id": 33845,
+ "start": 15659.6,
+ "end": 15659.76,
+ "text": "an"
+ },
+ {
+ "id": 33846,
+ "start": 15659.76,
+ "end": 15661.06,
+ "text": "app."
+ },
+ {
+ "id": 33847,
+ "start": 15661.06,
+ "end": 15661.18,
+ "text": "The"
+ },
+ {
+ "id": 33848,
+ "start": 15661.18,
+ "end": 15661.34,
+ "text": "app"
+ },
+ {
+ "id": 33849,
+ "start": 15661.34,
+ "end": 15661.76,
+ "text": "developer"
+ },
+ {
+ "id": 33850,
+ "start": 15661.76,
+ "end": 15661.98,
+ "text": "has"
+ },
+ {
+ "id": 33851,
+ "start": 15661.98,
+ "end": 15662.1,
+ "text": "to"
+ },
+ {
+ "id": 33852,
+ "start": 15662.1,
+ "end": 15662.32,
+ "text": "say"
+ },
+ {
+ "id": 33853,
+ "start": 15662.32,
+ "end": 15662.6,
+ "text": "here"
+ },
+ {
+ "id": 33854,
+ "start": 15662.6,
+ "end": 15662.74,
+ "text": "the"
+ },
+ {
+ "id": 33855,
+ "start": 15662.74,
+ "end": 15663.02,
+ "text": "types"
+ },
+ {
+ "id": 33856,
+ "start": 15663.02,
+ "end": 15663.2,
+ "text": "of"
+ },
+ {
+ "id": 33857,
+ "start": 15663.2,
+ "end": 15663.58,
+ "text": "data"
+ },
+ {
+ "id": 33858,
+ "start": 15663.58,
+ "end": 15664.36,
+ "text": "that"
+ },
+ {
+ "id": 33859,
+ "start": 15664.36,
+ "end": 15664.54,
+ "text": "from"
+ },
+ {
+ "id": 33860,
+ "start": 15664.54,
+ "end": 15664.72,
+ "text": "you"
+ },
+ {
+ "id": 33861,
+ "start": 15664.72,
+ "end": 15664.86,
+ "text": "that"
+ },
+ {
+ "id": 33862,
+ "start": 15664.86,
+ "end": 15665,
+ "text": "I'm"
+ },
+ {
+ "id": 33863,
+ "start": 15665,
+ "end": 15665.34,
+ "text": "asking"
+ },
+ {
+ "id": 33864,
+ "start": 15665.34,
+ "end": 15666.01,
+ "text": "for"
+ },
+ {
+ "id": 33865,
+ "start": 15666.01,
+ "end": 15666.63,
+ "text": "including"
+ },
+ {
+ "id": 33866,
+ "start": 15666.63,
+ "end": 15667.31,
+ "text": "public"
+ },
+ {
+ "id": 33867,
+ "start": 15667.31,
+ "end": 15667.83,
+ "text": "information"
+ },
+ {
+ "id": 33868,
+ "start": 15667.83,
+ "end": 15668.03,
+ "text": "like"
+ },
+ {
+ "id": 33869,
+ "start": 15668.03,
+ "end": 15668.17,
+ "text": "your"
+ },
+ {
+ "id": 33870,
+ "start": 15668.17,
+ "end": 15668.35,
+ "text": "name"
+ },
+ {
+ "id": 33871,
+ "start": 15668.35,
+ "end": 15668.47,
+ "text": "and"
+ },
+ {
+ "id": 33872,
+ "start": 15668.47,
+ "end": 15668.97,
+ "text": "profile"
+ },
+ {
+ "id": 33873,
+ "start": 15668.97,
+ "end": 15669.71,
+ "text": "the"
+ },
+ {
+ "id": 33874,
+ "start": 15669.71,
+ "end": 15670.05,
+ "text": "pages,"
+ },
+ {
+ "id": 33875,
+ "start": 15670.05,
+ "end": 15670.25,
+ "text": "you"
+ },
+ {
+ "id": 33876,
+ "start": 15670.25,
+ "end": 15670.59,
+ "text": "follow"
+ },
+ {
+ "id": 33877,
+ "start": 15670.59,
+ "end": 15671.65,
+ "text": "other"
+ },
+ {
+ "id": 33878,
+ "start": 15671.65,
+ "end": 15672.05,
+ "text": "interests"
+ },
+ {
+ "id": 33879,
+ "start": 15672.05,
+ "end": 15672.21,
+ "text": "on"
+ },
+ {
+ "id": 33880,
+ "start": 15672.21,
+ "end": 15672.35,
+ "text": "your"
+ },
+ {
+ "id": 33881,
+ "start": 15672.35,
+ "end": 15672.73,
+ "text": "profile,"
+ },
+ {
+ "id": 33882,
+ "start": 15672.73,
+ "end": 15672.95,
+ "text": "that"
+ },
+ {
+ "id": 33883,
+ "start": 15672.95,
+ "end": 15673.09,
+ "text": "kind"
+ },
+ {
+ "id": 33884,
+ "start": 15673.09,
+ "end": 15673.17,
+ "text": "of"
+ },
+ {
+ "id": 33885,
+ "start": 15673.17,
+ "end": 15673.51,
+ "text": "content"
+ },
+ {
+ "id": 33886,
+ "start": 15673.51,
+ "end": 15674.09,
+ "text": "the"
+ },
+ {
+ "id": 33887,
+ "start": 15674.09,
+ "end": 15674.25,
+ "text": "app"
+ },
+ {
+ "id": 33888,
+ "start": 15674.25,
+ "end": 15674.73,
+ "text": "developers"
+ },
+ {
+ "id": 33889,
+ "start": 15674.73,
+ "end": 15674.83,
+ "text": "to"
+ },
+ {
+ "id": 33890,
+ "start": 15674.83,
+ "end": 15675.19,
+ "text": "disclose"
+ },
+ {
+ "id": 33891,
+ "start": 15675.19,
+ "end": 15675.33,
+ "text": "that"
+ },
+ {
+ "id": 33892,
+ "start": 15675.33,
+ "end": 15675.45,
+ "text": "up"
+ },
+ {
+ "id": 33893,
+ "start": 15675.45,
+ "end": 15675.69,
+ "text": "front"
+ },
+ {
+ "id": 33894,
+ "start": 15675.69,
+ "end": 15675.95,
+ "text": "and"
+ },
+ {
+ "id": 33895,
+ "start": 15675.95,
+ "end": 15676.09,
+ "text": "you"
+ },
+ {
+ "id": 33896,
+ "start": 15676.09,
+ "end": 15676.33,
+ "text": "agree"
+ },
+ {
+ "id": 33897,
+ "start": 15676.33,
+ "end": 15676.41,
+ "text": "to"
+ },
+ {
+ "id": 33898,
+ "start": 15676.41,
+ "end": 15676.53,
+ "text": "it."
+ },
+ {
+ "id": 33899,
+ "start": 15676.53,
+ "end": 15677.82,
+ "text": "Okay,"
+ },
+ {
+ "id": 33900,
+ "start": 15677.82,
+ "end": 15678.84,
+ "text": "so"
+ },
+ {
+ "id": 33901,
+ "start": 15678.84,
+ "end": 15679.68,
+ "text": "in"
+ },
+ {
+ "id": 33902,
+ "start": 15679.68,
+ "end": 15680.08,
+ "text": "answer"
+ },
+ {
+ "id": 33903,
+ "start": 15680.08,
+ "end": 15680.32,
+ "text": "to"
+ },
+ {
+ "id": 33904,
+ "start": 15680.32,
+ "end": 15680.64,
+ "text": "a"
+ },
+ {
+ "id": 33905,
+ "start": 15680.64,
+ "end": 15681,
+ "text": "couple"
+ },
+ {
+ "id": 33906,
+ "start": 15681,
+ "end": 15681.1,
+ "text": "of"
+ },
+ {
+ "id": 33907,
+ "start": 15681.1,
+ "end": 15681.34,
+ "text": "other"
+ },
+ {
+ "id": 33908,
+ "start": 15681.34,
+ "end": 15682,
+ "text": "senators"
+ },
+ {
+ "id": 33909,
+ "start": 15682,
+ "end": 15682.7,
+ "text": "questions"
+ },
+ {
+ "id": 33910,
+ "start": 15682.7,
+ "end": 15683.72,
+ "text": "specifically"
+ },
+ {
+ "id": 33911,
+ "start": 15683.72,
+ "end": 15684.18,
+ "text": "Senator"
+ },
+ {
+ "id": 33912,
+ "start": 15684.18,
+ "end": 15684.6,
+ "text": "Fisher,"
+ },
+ {
+ "id": 33913,
+ "start": 15684.6,
+ "end": 15684.82,
+ "text": "you"
+ },
+ {
+ "id": 33914,
+ "start": 15684.82,
+ "end": 15685.82,
+ "text": "talked"
+ },
+ {
+ "id": 33915,
+ "start": 15685.82,
+ "end": 15686.1,
+ "text": "about"
+ },
+ {
+ "id": 33916,
+ "start": 15686.1,
+ "end": 15686.62,
+ "text": "Facebook"
+ },
+ {
+ "id": 33917,
+ "start": 15686.62,
+ "end": 15687.16,
+ "text": "storing"
+ },
+ {
+ "id": 33918,
+ "start": 15687.16,
+ "end": 15687.36,
+ "text": "this"
+ },
+ {
+ "id": 33919,
+ "start": 15687.36,
+ "end": 15687.74,
+ "text": "data"
+ },
+ {
+ "id": 33920,
+ "start": 15687.74,
+ "end": 15688.12,
+ "text": "and"
+ },
+ {
+ "id": 33921,
+ "start": 15688.12,
+ "end": 15688.18,
+ "text": "I"
+ },
+ {
+ "id": 33922,
+ "start": 15688.18,
+ "end": 15688.36,
+ "text": "think"
+ },
+ {
+ "id": 33923,
+ "start": 15688.36,
+ "end": 15688.5,
+ "text": "you"
+ },
+ {
+ "id": 33924,
+ "start": 15688.5,
+ "end": 15688.64,
+ "text": "just"
+ },
+ {
+ "id": 33925,
+ "start": 15688.64,
+ "end": 15688.84,
+ "text": "talked"
+ },
+ {
+ "id": 33926,
+ "start": 15688.84,
+ "end": 15689.02,
+ "text": "about"
+ },
+ {
+ "id": 33927,
+ "start": 15689.02,
+ "end": 15689.14,
+ "text": "the"
+ },
+ {
+ "id": 33928,
+ "start": 15689.14,
+ "end": 15689.44,
+ "text": "data"
+ },
+ {
+ "id": 33929,
+ "start": 15689.44,
+ "end": 15689.64,
+ "text": "being"
+ },
+ {
+ "id": 33930,
+ "start": 15689.64,
+ "end": 15689.88,
+ "text": "in"
+ },
+ {
+ "id": 33931,
+ "start": 15689.88,
+ "end": 15690,
+ "text": "the"
+ },
+ {
+ "id": 33932,
+ "start": 15690,
+ "end": 15690.56,
+ "text": "system,"
+ },
+ {
+ "id": 33933,
+ "start": 15690.56,
+ "end": 15691.64,
+ "text": "I"
+ },
+ {
+ "id": 33934,
+ "start": 15691.64,
+ "end": 15692.06,
+ "text": "wonder"
+ },
+ {
+ "id": 33935,
+ "start": 15692.06,
+ "end": 15693.92,
+ "text": "if"
+ },
+ {
+ "id": 33936,
+ "start": 15693.92,
+ "end": 15694.88,
+ "text": "outside"
+ },
+ {
+ "id": 33937,
+ "start": 15694.88,
+ "end": 15695.06,
+ "text": "of"
+ },
+ {
+ "id": 33938,
+ "start": 15695.06,
+ "end": 15695.24,
+ "text": "the"
+ },
+ {
+ "id": 33939,
+ "start": 15695.24,
+ "end": 15695.48,
+ "text": "way"
+ },
+ {
+ "id": 33940,
+ "start": 15695.48,
+ "end": 15695.72,
+ "text": "in"
+ },
+ {
+ "id": 33941,
+ "start": 15695.72,
+ "end": 15696.82,
+ "text": "which"
+ },
+ {
+ "id": 33942,
+ "start": 15696.82,
+ "end": 15697.82,
+ "text": "Alexander"
+ },
+ {
+ "id": 33943,
+ "start": 15697.82,
+ "end": 15698.5,
+ "text": "Cogan"
+ },
+ {
+ "id": 33944,
+ "start": 15698.5,
+ "end": 15698.74,
+ "text": "was"
+ },
+ {
+ "id": 33945,
+ "start": 15698.74,
+ "end": 15699,
+ "text": "able"
+ },
+ {
+ "id": 33946,
+ "start": 15699,
+ "end": 15699.2,
+ "text": "to"
+ },
+ {
+ "id": 33947,
+ "start": 15699.2,
+ "end": 15699.74,
+ "text": "access"
+ },
+ {
+ "id": 33948,
+ "start": 15699.74,
+ "end": 15700.04,
+ "text": "this"
+ },
+ {
+ "id": 33949,
+ "start": 15700.04,
+ "end": 15700.38,
+ "text": "data,"
+ },
+ {
+ "id": 33950,
+ "start": 15700.38,
+ "end": 15700.7,
+ "text": "whether"
+ },
+ {
+ "id": 33951,
+ "start": 15700.7,
+ "end": 15701.12,
+ "text": "you"
+ },
+ {
+ "id": 33952,
+ "start": 15701.12,
+ "end": 15702.14,
+ "text": "could"
+ },
+ {
+ "id": 33953,
+ "start": 15702.14,
+ "end": 15702.74,
+ "text": "Facebook"
+ },
+ {
+ "id": 33954,
+ "start": 15702.74,
+ "end": 15703.32,
+ "text": "be"
+ },
+ {
+ "id": 33955,
+ "start": 15703.32,
+ "end": 15704.16,
+ "text": "vulnerable"
+ },
+ {
+ "id": 33956,
+ "start": 15704.16,
+ "end": 15704.42,
+ "text": "to"
+ },
+ {
+ "id": 33957,
+ "start": 15704.42,
+ "end": 15704.6,
+ "text": "a"
+ },
+ {
+ "id": 33958,
+ "start": 15704.6,
+ "end": 15704.92,
+ "text": "data"
+ },
+ {
+ "id": 33959,
+ "start": 15704.92,
+ "end": 15705.28,
+ "text": "breach"
+ },
+ {
+ "id": 33960,
+ "start": 15705.28,
+ "end": 15705.58,
+ "text": "or"
+ },
+ {
+ "id": 33961,
+ "start": 15705.58,
+ "end": 15706.16,
+ "text": "hack,"
+ },
+ {
+ "id": 33962,
+ "start": 15706.16,
+ "end": 15706.92,
+ "text": "why"
+ },
+ {
+ "id": 33963,
+ "start": 15706.92,
+ "end": 15707.06,
+ "text": "or"
+ },
+ {
+ "id": 33964,
+ "start": 15707.06,
+ "end": 15707.28,
+ "text": "why"
+ },
+ {
+ "id": 33965,
+ "start": 15707.28,
+ "end": 15708.46,
+ "text": "not?"
+ },
+ {
+ "id": 33966,
+ "start": 15708.46,
+ "end": 15709.5,
+ "text": "Well,"
+ },
+ {
+ "id": 33967,
+ "start": 15709.5,
+ "end": 15709.64,
+ "text": "there"
+ },
+ {
+ "id": 33968,
+ "start": 15709.64,
+ "end": 15709.76,
+ "text": "are"
+ },
+ {
+ "id": 33969,
+ "start": 15709.76,
+ "end": 15710,
+ "text": "many"
+ },
+ {
+ "id": 33970,
+ "start": 15710,
+ "end": 15710.28,
+ "text": "kinds"
+ },
+ {
+ "id": 33971,
+ "start": 15710.28,
+ "end": 15710.42,
+ "text": "of"
+ },
+ {
+ "id": 33972,
+ "start": 15710.42,
+ "end": 15710.94,
+ "text": "security"
+ },
+ {
+ "id": 33973,
+ "start": 15710.94,
+ "end": 15711.32,
+ "text": "threats"
+ },
+ {
+ "id": 33974,
+ "start": 15711.32,
+ "end": 15711.86,
+ "text": "that"
+ },
+ {
+ "id": 33975,
+ "start": 15711.86,
+ "end": 15712,
+ "text": "a"
+ },
+ {
+ "id": 33976,
+ "start": 15712,
+ "end": 15712.5,
+ "text": "company"
+ },
+ {
+ "id": 33977,
+ "start": 15712.5,
+ "end": 15712.76,
+ "text": "like"
+ },
+ {
+ "id": 33978,
+ "start": 15712.76,
+ "end": 15712.98,
+ "text": "our"
+ },
+ {
+ "id": 33979,
+ "start": 15712.98,
+ "end": 15713.58,
+ "text": "faces,"
+ },
+ {
+ "id": 33980,
+ "start": 15713.58,
+ "end": 15714.76,
+ "text": "including"
+ },
+ {
+ "id": 33981,
+ "start": 15714.76,
+ "end": 15715.2,
+ "text": "people"
+ },
+ {
+ "id": 33982,
+ "start": 15715.2,
+ "end": 15715.52,
+ "text": "trying"
+ },
+ {
+ "id": 33983,
+ "start": 15715.52,
+ "end": 15715.66,
+ "text": "to"
+ },
+ {
+ "id": 33984,
+ "start": 15715.66,
+ "end": 15716.64,
+ "text": "break"
+ },
+ {
+ "id": 33985,
+ "start": 15716.64,
+ "end": 15716.86,
+ "text": "into"
+ },
+ {
+ "id": 33986,
+ "start": 15716.86,
+ "end": 15717.06,
+ "text": "our"
+ },
+ {
+ "id": 33987,
+ "start": 15717.06,
+ "end": 15717.54,
+ "text": "security"
+ },
+ {
+ "id": 33988,
+ "start": 15717.54,
+ "end": 15718.12,
+ "text": "systems,"
+ },
+ {
+ "id": 33989,
+ "start": 15718.12,
+ "end": 15718.54,
+ "text": "and"
+ },
+ {
+ "id": 33990,
+ "start": 15718.54,
+ "end": 15719.2,
+ "text": "if"
+ },
+ {
+ "id": 33991,
+ "start": 15719.2,
+ "end": 15719.56,
+ "text": "you"
+ },
+ {
+ "id": 33992,
+ "start": 15719.56,
+ "end": 15720.16,
+ "text": "believe"
+ },
+ {
+ "id": 33993,
+ "start": 15720.16,
+ "end": 15720.38,
+ "text": "that"
+ },
+ {
+ "id": 33994,
+ "start": 15720.38,
+ "end": 15720.52,
+ "text": "you"
+ },
+ {
+ "id": 33995,
+ "start": 15720.52,
+ "end": 15720.86,
+ "text": "had"
+ },
+ {
+ "id": 33996,
+ "start": 15720.86,
+ "end": 15721.16,
+ "text": "been"
+ },
+ {
+ "id": 33997,
+ "start": 15721.16,
+ "end": 15721.82,
+ "text": "hacked,"
+ },
+ {
+ "id": 33998,
+ "start": 15721.82,
+ "end": 15722.12,
+ "text": "do"
+ },
+ {
+ "id": 33999,
+ "start": 15722.12,
+ "end": 15722.28,
+ "text": "you"
+ },
+ {
+ "id": 34000,
+ "start": 15722.28,
+ "end": 15722.6,
+ "text": "believe"
+ },
+ {
+ "id": 34001,
+ "start": 15722.6,
+ "end": 15722.74,
+ "text": "you"
+ },
+ {
+ "id": 34002,
+ "start": 15722.74,
+ "end": 15722.92,
+ "text": "would"
+ },
+ {
+ "id": 34003,
+ "start": 15722.92,
+ "end": 15723.16,
+ "text": "have"
+ },
+ {
+ "id": 34004,
+ "start": 15723.16,
+ "end": 15723.36,
+ "text": "the"
+ },
+ {
+ "id": 34005,
+ "start": 15723.36,
+ "end": 15723.76,
+ "text": "duty"
+ },
+ {
+ "id": 34006,
+ "start": 15723.76,
+ "end": 15723.92,
+ "text": "to"
+ },
+ {
+ "id": 34007,
+ "start": 15723.92,
+ "end": 15724.54,
+ "text": "inform"
+ },
+ {
+ "id": 34008,
+ "start": 15724.54,
+ "end": 15724.9,
+ "text": "those"
+ },
+ {
+ "id": 34009,
+ "start": 15724.9,
+ "end": 15725.14,
+ "text": "who"
+ },
+ {
+ "id": 34010,
+ "start": 15725.14,
+ "end": 15725.32,
+ "text": "were"
+ },
+ {
+ "id": 34011,
+ "start": 15725.32,
+ "end": 15726.24,
+ "text": "impacted?"
+ },
+ {
+ "id": 34012,
+ "start": 15726.24,
+ "end": 15727.66,
+ "text": "Yes,"
+ },
+ {
+ "id": 34013,
+ "start": 15727.66,
+ "end": 15730.18,
+ "text": "okay,"
+ },
+ {
+ "id": 34014,
+ "start": 15730.18,
+ "end": 15731.28,
+ "text": "do"
+ },
+ {
+ "id": 34015,
+ "start": 15731.28,
+ "end": 15731.6,
+ "text": "you"
+ },
+ {
+ "id": 34016,
+ "start": 15731.6,
+ "end": 15732.28,
+ "text": "know"
+ },
+ {
+ "id": 34017,
+ "start": 15732.28,
+ "end": 15734.6,
+ "text": "whether"
+ },
+ {
+ "id": 34018,
+ "start": 15734.6,
+ "end": 15735.6,
+ "text": "Alexander"
+ },
+ {
+ "id": 34019,
+ "start": 15735.6,
+ "end": 15736.36,
+ "text": "Cogan"
+ },
+ {
+ "id": 34020,
+ "start": 15736.36,
+ "end": 15736.94,
+ "text": "sold"
+ },
+ {
+ "id": 34021,
+ "start": 15736.94,
+ "end": 15737.34,
+ "text": "any"
+ },
+ {
+ "id": 34022,
+ "start": 15737.34,
+ "end": 15737.48,
+ "text": "of"
+ },
+ {
+ "id": 34023,
+ "start": 15737.48,
+ "end": 15737.66,
+ "text": "the"
+ },
+ {
+ "id": 34024,
+ "start": 15737.66,
+ "end": 15737.98,
+ "text": "data."
+ },
+ {
+ "id": 34025,
+ "start": 15737.98,
+ "end": 15738.16,
+ "text": "He"
+ },
+ {
+ "id": 34026,
+ "start": 15738.16,
+ "end": 15738.62,
+ "text": "collected"
+ },
+ {
+ "id": 34027,
+ "start": 15738.62,
+ "end": 15738.86,
+ "text": "with"
+ },
+ {
+ "id": 34028,
+ "start": 15738.86,
+ "end": 15739.28,
+ "text": "anyone"
+ },
+ {
+ "id": 34029,
+ "start": 15739.28,
+ "end": 15739.78,
+ "text": "other"
+ },
+ {
+ "id": 34030,
+ "start": 15739.78,
+ "end": 15740.26,
+ "text": "than"
+ },
+ {
+ "id": 34031,
+ "start": 15740.26,
+ "end": 15741.24,
+ "text": "Cambridge"
+ },
+ {
+ "id": 34032,
+ "start": 15741.24,
+ "end": 15741.92,
+ "text": "Analytica."
+ },
+ {
+ "id": 34033,
+ "start": 15741.92,
+ "end": 15742.88,
+ "text": "Senator."
+ },
+ {
+ "id": 34034,
+ "start": 15742.88,
+ "end": 15743.1,
+ "text": "Yes,"
+ },
+ {
+ "id": 34035,
+ "start": 15743.1,
+ "end": 15743.24,
+ "text": "we"
+ },
+ {
+ "id": 34036,
+ "start": 15743.24,
+ "end": 15743.48,
+ "text": "do."
+ },
+ {
+ "id": 34037,
+ "start": 15743.48,
+ "end": 15744.14,
+ "text": "He"
+ },
+ {
+ "id": 34038,
+ "start": 15744.14,
+ "end": 15744.38,
+ "text": "sold"
+ },
+ {
+ "id": 34039,
+ "start": 15744.38,
+ "end": 15744.52,
+ "text": "it"
+ },
+ {
+ "id": 34040,
+ "start": 15744.52,
+ "end": 15744.96,
+ "text": "to"
+ },
+ {
+ "id": 34041,
+ "start": 15744.96,
+ "end": 15745.56,
+ "text": "a"
+ },
+ {
+ "id": 34042,
+ "start": 15745.56,
+ "end": 15745.88,
+ "text": "couple"
+ },
+ {
+ "id": 34043,
+ "start": 15745.88,
+ "end": 15746.04,
+ "text": "of"
+ },
+ {
+ "id": 34044,
+ "start": 15746.04,
+ "end": 15746.44,
+ "text": "other"
+ },
+ {
+ "id": 34045,
+ "start": 15746.44,
+ "end": 15747.78,
+ "text": "firms."
+ },
+ {
+ "id": 34046,
+ "start": 15747.78,
+ "end": 15748.7,
+ "text": "Can"
+ },
+ {
+ "id": 34047,
+ "start": 15748.7,
+ "end": 15748.82,
+ "text": "you"
+ },
+ {
+ "id": 34048,
+ "start": 15748.82,
+ "end": 15749.24,
+ "text": "identify"
+ },
+ {
+ "id": 34049,
+ "start": 15749.24,
+ "end": 15749.44,
+ "text": "them?"
+ },
+ {
+ "id": 34050,
+ "start": 15749.44,
+ "end": 15750.56,
+ "text": "Yes"
+ },
+ {
+ "id": 34051,
+ "start": 15750.56,
+ "end": 15750.84,
+ "text": "there's"
+ },
+ {
+ "id": 34052,
+ "start": 15750.84,
+ "end": 15751.24,
+ "text": "one"
+ },
+ {
+ "id": 34053,
+ "start": 15751.24,
+ "end": 15751.66,
+ "text": "called"
+ },
+ {
+ "id": 34054,
+ "start": 15751.66,
+ "end": 15752.78,
+ "text": "una."
+ },
+ {
+ "id": 34055,
+ "start": 15752.78,
+ "end": 15753.66,
+ "text": "And"
+ },
+ {
+ "id": 34056,
+ "start": 15753.66,
+ "end": 15754.68,
+ "text": "there"
+ },
+ {
+ "id": 34057,
+ "start": 15754.68,
+ "end": 15754.8,
+ "text": "may"
+ },
+ {
+ "id": 34058,
+ "start": 15754.8,
+ "end": 15754.94,
+ "text": "have"
+ },
+ {
+ "id": 34059,
+ "start": 15754.94,
+ "end": 15755.1,
+ "text": "been"
+ },
+ {
+ "id": 34060,
+ "start": 15755.1,
+ "end": 15755.16,
+ "text": "a"
+ },
+ {
+ "id": 34061,
+ "start": 15755.16,
+ "end": 15755.38,
+ "text": "couple"
+ },
+ {
+ "id": 34062,
+ "start": 15755.38,
+ "end": 15755.48,
+ "text": "of"
+ },
+ {
+ "id": 34063,
+ "start": 15755.48,
+ "end": 15755.78,
+ "text": "others"
+ },
+ {
+ "id": 34064,
+ "start": 15755.78,
+ "end": 15755.96,
+ "text": "as"
+ },
+ {
+ "id": 34065,
+ "start": 15755.96,
+ "end": 15756.24,
+ "text": "well."
+ },
+ {
+ "id": 34066,
+ "start": 15756.24,
+ "end": 15756.64,
+ "text": "And"
+ },
+ {
+ "id": 34067,
+ "start": 15756.64,
+ "end": 15756.86,
+ "text": "thank"
+ },
+ {
+ "id": 34068,
+ "start": 15756.86,
+ "end": 15756.96,
+ "text": "you"
+ },
+ {
+ "id": 34069,
+ "start": 15756.96,
+ "end": 15757.04,
+ "text": "for"
+ },
+ {
+ "id": 34070,
+ "start": 15757.04,
+ "end": 15757.36,
+ "text": "all"
+ },
+ {
+ "id": 34071,
+ "start": 15757.36,
+ "end": 15757.48,
+ "text": "up"
+ },
+ {
+ "id": 34072,
+ "start": 15757.48,
+ "end": 15757.6,
+ "text": "with"
+ },
+ {
+ "id": 34073,
+ "start": 15757.6,
+ "end": 15757.74,
+ "text": "me."
+ },
+ {
+ "id": 34074,
+ "start": 15757.74,
+ "end": 15758.02,
+ "text": "After"
+ },
+ {
+ "id": 34075,
+ "start": 15758.02,
+ "end": 15758.26,
+ "text": "Thank"
+ },
+ {
+ "id": 34076,
+ "start": 15758.26,
+ "end": 15758.6,
+ "text": "you,"
+ },
+ {
+ "id": 34077,
+ "start": 15758.6,
+ "end": 15758.68,
+ "text": "I"
+ },
+ {
+ "id": 34078,
+ "start": 15758.68,
+ "end": 15759.2,
+ "text": "appreciate"
+ },
+ {
+ "id": 34079,
+ "start": 15759.2,
+ "end": 15759.42,
+ "text": "that."
+ },
+ {
+ "id": 34080,
+ "start": 15759.42,
+ "end": 15760.18,
+ "text": "And"
+ },
+ {
+ "id": 34081,
+ "start": 15760.18,
+ "end": 15760.86,
+ "text": "then"
+ },
+ {
+ "id": 34082,
+ "start": 15760.86,
+ "end": 15761.86,
+ "text": "how"
+ },
+ {
+ "id": 34083,
+ "start": 15761.86,
+ "end": 15762.14,
+ "text": "much"
+ },
+ {
+ "id": 34084,
+ "start": 15762.14,
+ "end": 15762.36,
+ "text": "do"
+ },
+ {
+ "id": 34085,
+ "start": 15762.36,
+ "end": 15762.6,
+ "text": "you"
+ },
+ {
+ "id": 34086,
+ "start": 15762.6,
+ "end": 15763.12,
+ "text": "know"
+ },
+ {
+ "id": 34087,
+ "start": 15763.12,
+ "end": 15763.4,
+ "text": "or"
+ },
+ {
+ "id": 34088,
+ "start": 15763.4,
+ "end": 15763.6,
+ "text": "have"
+ },
+ {
+ "id": 34089,
+ "start": 15763.6,
+ "end": 15763.72,
+ "text": "you"
+ },
+ {
+ "id": 34090,
+ "start": 15763.72,
+ "end": 15764,
+ "text": "tried"
+ },
+ {
+ "id": 34091,
+ "start": 15764,
+ "end": 15764.14,
+ "text": "to"
+ },
+ {
+ "id": 34092,
+ "start": 15764.14,
+ "end": 15764.38,
+ "text": "find"
+ },
+ {
+ "id": 34093,
+ "start": 15764.38,
+ "end": 15765.3,
+ "text": "out"
+ },
+ {
+ "id": 34094,
+ "start": 15765.3,
+ "end": 15766.34,
+ "text": "how"
+ },
+ {
+ "id": 34095,
+ "start": 15766.34,
+ "end": 15766.84,
+ "text": "Cambridge"
+ },
+ {
+ "id": 34096,
+ "start": 15766.84,
+ "end": 15767.46,
+ "text": "analytical"
+ },
+ {
+ "id": 34097,
+ "start": 15767.46,
+ "end": 15767.86,
+ "text": "used"
+ },
+ {
+ "id": 34098,
+ "start": 15767.86,
+ "end": 15768.04,
+ "text": "the"
+ },
+ {
+ "id": 34099,
+ "start": 15768.04,
+ "end": 15768.44,
+ "text": "data"
+ },
+ {
+ "id": 34100,
+ "start": 15768.44,
+ "end": 15768.8,
+ "text": "while"
+ },
+ {
+ "id": 34101,
+ "start": 15768.8,
+ "end": 15769,
+ "text": "they"
+ },
+ {
+ "id": 34102,
+ "start": 15769,
+ "end": 15769.18,
+ "text": "had"
+ },
+ {
+ "id": 34103,
+ "start": 15769.18,
+ "end": 15769.36,
+ "text": "it"
+ },
+ {
+ "id": 34104,
+ "start": 15769.36,
+ "end": 15770.78,
+ "text": "before"
+ },
+ {
+ "id": 34105,
+ "start": 15770.78,
+ "end": 15771.76,
+ "text": "you"
+ },
+ {
+ "id": 34106,
+ "start": 15771.76,
+ "end": 15772.22,
+ "text": "believe"
+ },
+ {
+ "id": 34107,
+ "start": 15772.22,
+ "end": 15772.48,
+ "text": "they"
+ },
+ {
+ "id": 34108,
+ "start": 15772.48,
+ "end": 15773.58,
+ "text": "deleted"
+ },
+ {
+ "id": 34109,
+ "start": 15773.58,
+ "end": 15775.84,
+ "text": "it"
+ },
+ {
+ "id": 34110,
+ "start": 15775.84,
+ "end": 15776.84,
+ "text": "since"
+ },
+ {
+ "id": 34111,
+ "start": 15776.84,
+ "end": 15777.04,
+ "text": "we"
+ },
+ {
+ "id": 34112,
+ "start": 15777.04,
+ "end": 15777.42,
+ "text": "just"
+ },
+ {
+ "id": 34113,
+ "start": 15777.42,
+ "end": 15777.76,
+ "text": "heard"
+ },
+ {
+ "id": 34114,
+ "start": 15777.76,
+ "end": 15778.06,
+ "text": "that"
+ },
+ {
+ "id": 34115,
+ "start": 15778.06,
+ "end": 15778.2,
+ "text": "they"
+ },
+ {
+ "id": 34116,
+ "start": 15778.2,
+ "end": 15778.44,
+ "text": "didn't"
+ },
+ {
+ "id": 34117,
+ "start": 15778.44,
+ "end": 15778.74,
+ "text": "delete"
+ },
+ {
+ "id": 34118,
+ "start": 15778.74,
+ "end": 15778.84,
+ "text": "it"
+ },
+ {
+ "id": 34119,
+ "start": 15778.84,
+ "end": 15779.12,
+ "text": "about"
+ },
+ {
+ "id": 34120,
+ "start": 15779.12,
+ "end": 15779.2,
+ "text": "a"
+ },
+ {
+ "id": 34121,
+ "start": 15779.2,
+ "end": 15779.38,
+ "text": "month"
+ },
+ {
+ "id": 34122,
+ "start": 15779.38,
+ "end": 15779.58,
+ "text": "ago."
+ },
+ {
+ "id": 34123,
+ "start": 15779.58,
+ "end": 15780.36,
+ "text": "We've"
+ },
+ {
+ "id": 34124,
+ "start": 15780.36,
+ "end": 15780.6,
+ "text": "kicked"
+ },
+ {
+ "id": 34125,
+ "start": 15780.6,
+ "end": 15780.78,
+ "text": "off"
+ },
+ {
+ "id": 34126,
+ "start": 15780.78,
+ "end": 15780.9,
+ "text": "an"
+ },
+ {
+ "id": 34127,
+ "start": 15780.9,
+ "end": 15781.32,
+ "text": "internal"
+ },
+ {
+ "id": 34128,
+ "start": 15781.32,
+ "end": 15782.06,
+ "text": "investigation"
+ },
+ {
+ "id": 34129,
+ "start": 15782.06,
+ "end": 15782.66,
+ "text": "to"
+ },
+ {
+ "id": 34130,
+ "start": 15782.66,
+ "end": 15782.88,
+ "text": "see"
+ },
+ {
+ "id": 34131,
+ "start": 15782.88,
+ "end": 15783.16,
+ "text": "if"
+ },
+ {
+ "id": 34132,
+ "start": 15783.16,
+ "end": 15783.38,
+ "text": "they"
+ },
+ {
+ "id": 34133,
+ "start": 15783.38,
+ "end": 15783.62,
+ "text": "use"
+ },
+ {
+ "id": 34134,
+ "start": 15783.62,
+ "end": 15783.82,
+ "text": "that"
+ },
+ {
+ "id": 34135,
+ "start": 15783.82,
+ "end": 15784.12,
+ "text": "data"
+ },
+ {
+ "id": 34136,
+ "start": 15784.12,
+ "end": 15784.2,
+ "text": "in"
+ },
+ {
+ "id": 34137,
+ "start": 15784.2,
+ "end": 15784.4,
+ "text": "any"
+ },
+ {
+ "id": 34138,
+ "start": 15784.4,
+ "end": 15784.5,
+ "text": "of"
+ },
+ {
+ "id": 34139,
+ "start": 15784.5,
+ "end": 15784.68,
+ "text": "their"
+ },
+ {
+ "id": 34140,
+ "start": 15784.68,
+ "end": 15784.98,
+ "text": "ads."
+ },
+ {
+ "id": 34141,
+ "start": 15784.98,
+ "end": 15785.22,
+ "text": "For"
+ },
+ {
+ "id": 34142,
+ "start": 15785.22,
+ "end": 15785.68,
+ "text": "example,"
+ },
+ {
+ "id": 34143,
+ "start": 15785.68,
+ "end": 15786.2,
+ "text": "that"
+ },
+ {
+ "id": 34144,
+ "start": 15786.2,
+ "end": 15786.94,
+ "text": "investigation"
+ },
+ {
+ "id": 34145,
+ "start": 15786.94,
+ "end": 15787.16,
+ "text": "is"
+ },
+ {
+ "id": 34146,
+ "start": 15787.16,
+ "end": 15787.48,
+ "text": "still"
+ },
+ {
+ "id": 34147,
+ "start": 15787.48,
+ "end": 15788.08,
+ "text": "underway"
+ },
+ {
+ "id": 34148,
+ "start": 15788.08,
+ "end": 15789.12,
+ "text": "and"
+ },
+ {
+ "id": 34149,
+ "start": 15789.12,
+ "end": 15789.54,
+ "text": "we"
+ },
+ {
+ "id": 34150,
+ "start": 15789.54,
+ "end": 15790.58,
+ "text": "will."
+ },
+ {
+ "id": 34151,
+ "start": 15790.58,
+ "end": 15791.64,
+ "text": "We"
+ },
+ {
+ "id": 34152,
+ "start": 15791.64,
+ "end": 15791.8,
+ "text": "can"
+ },
+ {
+ "id": 34153,
+ "start": 15791.8,
+ "end": 15791.96,
+ "text": "come"
+ },
+ {
+ "id": 34154,
+ "start": 15791.96,
+ "end": 15792.08,
+ "text": "back"
+ },
+ {
+ "id": 34155,
+ "start": 15792.08,
+ "end": 15792.18,
+ "text": "to"
+ },
+ {
+ "id": 34156,
+ "start": 15792.18,
+ "end": 15792.4,
+ "text": "the"
+ },
+ {
+ "id": 34157,
+ "start": 15792.4,
+ "end": 15792.7,
+ "text": "results"
+ },
+ {
+ "id": 34158,
+ "start": 15792.7,
+ "end": 15792.82,
+ "text": "of"
+ },
+ {
+ "id": 34159,
+ "start": 15792.82,
+ "end": 15792.98,
+ "text": "that."
+ },
+ {
+ "id": 34160,
+ "start": 15792.98,
+ "end": 15793.16,
+ "text": "Once"
+ },
+ {
+ "id": 34161,
+ "start": 15793.16,
+ "end": 15793.28,
+ "text": "we"
+ },
+ {
+ "id": 34162,
+ "start": 15793.28,
+ "end": 15793.46,
+ "text": "have"
+ },
+ {
+ "id": 34163,
+ "start": 15793.46,
+ "end": 15793.64,
+ "text": "that"
+ },
+ {
+ "id": 34164,
+ "start": 15793.64,
+ "end": 15794.14,
+ "text": "okay,"
+ },
+ {
+ "id": 34165,
+ "start": 15794.14,
+ "end": 15794.54,
+ "text": "I"
+ },
+ {
+ "id": 34166,
+ "start": 15794.54,
+ "end": 15794.7,
+ "text": "want"
+ },
+ {
+ "id": 34167,
+ "start": 15794.7,
+ "end": 15794.8,
+ "text": "to"
+ },
+ {
+ "id": 34168,
+ "start": 15794.8,
+ "end": 15795.16,
+ "text": "switch"
+ },
+ {
+ "id": 34169,
+ "start": 15795.16,
+ "end": 15795.38,
+ "text": "to"
+ },
+ {
+ "id": 34170,
+ "start": 15795.38,
+ "end": 15795.74,
+ "text": "my"
+ },
+ {
+ "id": 34171,
+ "start": 15795.74,
+ "end": 15795.92,
+ "text": "home"
+ },
+ {
+ "id": 34172,
+ "start": 15795.92,
+ "end": 15796.16,
+ "text": "state"
+ },
+ {
+ "id": 34173,
+ "start": 15796.16,
+ "end": 15796.24,
+ "text": "of"
+ },
+ {
+ "id": 34174,
+ "start": 15796.24,
+ "end": 15797.04,
+ "text": "Wisconsin."
+ },
+ {
+ "id": 34175,
+ "start": 15797.04,
+ "end": 15797.5,
+ "text": "According"
+ },
+ {
+ "id": 34176,
+ "start": 15797.5,
+ "end": 15797.64,
+ "text": "to"
+ },
+ {
+ "id": 34177,
+ "start": 15797.64,
+ "end": 15797.96,
+ "text": "press"
+ },
+ {
+ "id": 34178,
+ "start": 15797.96,
+ "end": 15798.4,
+ "text": "reports,"
+ },
+ {
+ "id": 34179,
+ "start": 15798.4,
+ "end": 15798.64,
+ "text": "my"
+ },
+ {
+ "id": 34180,
+ "start": 15798.64,
+ "end": 15798.8,
+ "text": "home"
+ },
+ {
+ "id": 34181,
+ "start": 15798.8,
+ "end": 15799.04,
+ "text": "state"
+ },
+ {
+ "id": 34182,
+ "start": 15799.04,
+ "end": 15799.14,
+ "text": "of"
+ },
+ {
+ "id": 34183,
+ "start": 15799.14,
+ "end": 15799.62,
+ "text": "Wisconsin"
+ },
+ {
+ "id": 34184,
+ "start": 15799.62,
+ "end": 15799.82,
+ "text": "was"
+ },
+ {
+ "id": 34185,
+ "start": 15799.82,
+ "end": 15799.88,
+ "text": "a"
+ },
+ {
+ "id": 34186,
+ "start": 15799.88,
+ "end": 15800.26,
+ "text": "major"
+ },
+ {
+ "id": 34187,
+ "start": 15800.26,
+ "end": 15800.68,
+ "text": "target"
+ },
+ {
+ "id": 34188,
+ "start": 15800.68,
+ "end": 15800.84,
+ "text": "of"
+ },
+ {
+ "id": 34189,
+ "start": 15800.84,
+ "end": 15801.24,
+ "text": "Russian"
+ },
+ {
+ "id": 34190,
+ "start": 15801.24,
+ "end": 15801.54,
+ "text": "bought"
+ },
+ {
+ "id": 34191,
+ "start": 15801.54,
+ "end": 15802.18,
+ "text": "ads"
+ },
+ {
+ "id": 34192,
+ "start": 15802.18,
+ "end": 15802.4,
+ "text": "on"
+ },
+ {
+ "id": 34193,
+ "start": 15802.4,
+ "end": 15802.96,
+ "text": "Facebook"
+ },
+ {
+ "id": 34194,
+ "start": 15802.96,
+ "end": 15803.16,
+ "text": "in"
+ },
+ {
+ "id": 34195,
+ "start": 15803.16,
+ "end": 15803.3,
+ "text": "the"
+ },
+ {
+ "id": 34196,
+ "start": 15803.3,
+ "end": 15803.58,
+ "text": "20"
+ },
+ {
+ "id": 34197,
+ "start": 15803.58,
+ "end": 15804.16,
+ "text": "16"
+ },
+ {
+ "id": 34198,
+ "start": 15804.16,
+ "end": 15805.04,
+ "text": "election."
+ },
+ {
+ "id": 34199,
+ "start": 15805.04,
+ "end": 15806.06,
+ "text": "These"
+ },
+ {
+ "id": 34200,
+ "start": 15806.06,
+ "end": 15806.7,
+ "text": "divisive"
+ },
+ {
+ "id": 34201,
+ "start": 15806.7,
+ "end": 15807.58,
+ "text": "ads"
+ },
+ {
+ "id": 34202,
+ "start": 15807.58,
+ "end": 15808.42,
+ "text": "touching"
+ },
+ {
+ "id": 34203,
+ "start": 15808.42,
+ "end": 15808.54,
+ "text": "on"
+ },
+ {
+ "id": 34204,
+ "start": 15808.54,
+ "end": 15808.6,
+ "text": "a"
+ },
+ {
+ "id": 34205,
+ "start": 15808.6,
+ "end": 15808.92,
+ "text": "number"
+ },
+ {
+ "id": 34206,
+ "start": 15808.92,
+ "end": 15809.02,
+ "text": "of"
+ },
+ {
+ "id": 34207,
+ "start": 15809.02,
+ "end": 15809.38,
+ "text": "very"
+ },
+ {
+ "id": 34208,
+ "start": 15809.38,
+ "end": 15810.08,
+ "text": "polarizing"
+ },
+ {
+ "id": 34209,
+ "start": 15810.08,
+ "end": 15810.7,
+ "text": "issues"
+ },
+ {
+ "id": 34210,
+ "start": 15810.7,
+ "end": 15811.46,
+ "text": "were"
+ },
+ {
+ "id": 34211,
+ "start": 15811.46,
+ "end": 15811.94,
+ "text": "designed"
+ },
+ {
+ "id": 34212,
+ "start": 15811.94,
+ "end": 15812.1,
+ "text": "to"
+ },
+ {
+ "id": 34213,
+ "start": 15812.1,
+ "end": 15812.68,
+ "text": "interfere"
+ },
+ {
+ "id": 34214,
+ "start": 15812.68,
+ "end": 15812.98,
+ "text": "with"
+ },
+ {
+ "id": 34215,
+ "start": 15812.98,
+ "end": 15813.34,
+ "text": "our"
+ },
+ {
+ "id": 34216,
+ "start": 15813.34,
+ "end": 15814.3,
+ "text": "election."
+ },
+ {
+ "id": 34217,
+ "start": 15814.3,
+ "end": 15814.92,
+ "text": "We've"
+ },
+ {
+ "id": 34218,
+ "start": 15814.92,
+ "end": 15815.2,
+ "text": "also"
+ },
+ {
+ "id": 34219,
+ "start": 15815.2,
+ "end": 15815.66,
+ "text": "learned"
+ },
+ {
+ "id": 34220,
+ "start": 15815.66,
+ "end": 15816,
+ "text": "that"
+ },
+ {
+ "id": 34221,
+ "start": 15816,
+ "end": 15816.82,
+ "text": "Russian"
+ },
+ {
+ "id": 34222,
+ "start": 15816.82,
+ "end": 15817.32,
+ "text": "actors"
+ },
+ {
+ "id": 34223,
+ "start": 15817.32,
+ "end": 15817.74,
+ "text": "using"
+ },
+ {
+ "id": 34224,
+ "start": 15817.74,
+ "end": 15818.18,
+ "text": "another"
+ },
+ {
+ "id": 34225,
+ "start": 15818.18,
+ "end": 15818.76,
+ "text": "platform"
+ },
+ {
+ "id": 34226,
+ "start": 15818.76,
+ "end": 15820.92,
+ "text": "Twitter"
+ },
+ {
+ "id": 34227,
+ "start": 15820.92,
+ "end": 15821.88,
+ "text": "similarly"
+ },
+ {
+ "id": 34228,
+ "start": 15821.88,
+ "end": 15822.46,
+ "text": "targeted"
+ },
+ {
+ "id": 34229,
+ "start": 15822.46,
+ "end": 15823.16,
+ "text": "Wisconsin"
+ },
+ {
+ "id": 34230,
+ "start": 15823.16,
+ "end": 15823.56,
+ "text": "with"
+ },
+ {
+ "id": 34231,
+ "start": 15823.56,
+ "end": 15824.16,
+ "text": "divisive"
+ },
+ {
+ "id": 34232,
+ "start": 15824.16,
+ "end": 15824.76,
+ "text": "content"
+ },
+ {
+ "id": 34233,
+ "start": 15824.76,
+ "end": 15825.78,
+ "text": "aimed"
+ },
+ {
+ "id": 34234,
+ "start": 15825.78,
+ "end": 15825.98,
+ "text": "at"
+ },
+ {
+ "id": 34235,
+ "start": 15825.98,
+ "end": 15826.66,
+ "text": "sewing"
+ },
+ {
+ "id": 34236,
+ "start": 15826.66,
+ "end": 15827.68,
+ "text": "division"
+ },
+ {
+ "id": 34237,
+ "start": 15827.68,
+ "end": 15827.86,
+ "text": "and"
+ },
+ {
+ "id": 34238,
+ "start": 15827.86,
+ "end": 15828.4,
+ "text": "dissent,"
+ },
+ {
+ "id": 34239,
+ "start": 15828.4,
+ "end": 15829.36,
+ "text": "including"
+ },
+ {
+ "id": 34240,
+ "start": 15829.36,
+ "end": 15829.48,
+ "text": "in"
+ },
+ {
+ "id": 34241,
+ "start": 15829.48,
+ "end": 15829.6,
+ "text": "the"
+ },
+ {
+ "id": 34242,
+ "start": 15829.6,
+ "end": 15829.9,
+ "text": "wake"
+ },
+ {
+ "id": 34243,
+ "start": 15829.9,
+ "end": 15830.06,
+ "text": "of"
+ },
+ {
+ "id": 34244,
+ "start": 15830.06,
+ "end": 15830.2,
+ "text": "a"
+ },
+ {
+ "id": 34245,
+ "start": 15830.2,
+ "end": 15830.58,
+ "text": "police"
+ },
+ {
+ "id": 34246,
+ "start": 15830.58,
+ "end": 15831,
+ "text": "involved"
+ },
+ {
+ "id": 34247,
+ "start": 15831,
+ "end": 15831.46,
+ "text": "shooting"
+ },
+ {
+ "id": 34248,
+ "start": 15831.46,
+ "end": 15831.78,
+ "text": "in"
+ },
+ {
+ "id": 34249,
+ "start": 15831.78,
+ "end": 15832.34,
+ "text": "Milwaukee"
+ },
+ {
+ "id": 34250,
+ "start": 15832.34,
+ "end": 15832.9,
+ "text": "Sherman"
+ },
+ {
+ "id": 34251,
+ "start": 15832.9,
+ "end": 15833.2,
+ "text": "Park"
+ },
+ {
+ "id": 34252,
+ "start": 15833.2,
+ "end": 15833.64,
+ "text": "neighborhood"
+ },
+ {
+ "id": 34253,
+ "start": 15833.64,
+ "end": 15833.76,
+ "text": "in"
+ },
+ {
+ "id": 34254,
+ "start": 15833.76,
+ "end": 15834.2,
+ "text": "August"
+ },
+ {
+ "id": 34255,
+ "start": 15834.2,
+ "end": 15834.32,
+ "text": "of"
+ },
+ {
+ "id": 34256,
+ "start": 15834.32,
+ "end": 15834.62,
+ "text": "20"
+ },
+ {
+ "id": 34257,
+ "start": 15834.62,
+ "end": 15835.26,
+ "text": "16"
+ },
+ {
+ "id": 34258,
+ "start": 15835.26,
+ "end": 15836.44,
+ "text": "now"
+ },
+ {
+ "id": 34259,
+ "start": 15836.44,
+ "end": 15837.02,
+ "text": "I"
+ },
+ {
+ "id": 34260,
+ "start": 15837.02,
+ "end": 15837.36,
+ "text": "find"
+ },
+ {
+ "id": 34261,
+ "start": 15837.36,
+ "end": 15837.74,
+ "text": "some"
+ },
+ {
+ "id": 34262,
+ "start": 15837.74,
+ "end": 15838.78,
+ "text": "encourage"
+ },
+ {
+ "id": 34263,
+ "start": 15838.78,
+ "end": 15839.32,
+ "text": "in"
+ },
+ {
+ "id": 34264,
+ "start": 15839.32,
+ "end": 15839.44,
+ "text": "the"
+ },
+ {
+ "id": 34265,
+ "start": 15839.44,
+ "end": 15839.82,
+ "text": "steps"
+ },
+ {
+ "id": 34266,
+ "start": 15839.82,
+ "end": 15840.1,
+ "text": "you've"
+ },
+ {
+ "id": 34267,
+ "start": 15840.1,
+ "end": 15840.64,
+ "text": "outlined"
+ },
+ {
+ "id": 34268,
+ "start": 15840.64,
+ "end": 15841.18,
+ "text": "today"
+ },
+ {
+ "id": 34269,
+ "start": 15841.18,
+ "end": 15841.9,
+ "text": "to"
+ },
+ {
+ "id": 34270,
+ "start": 15841.9,
+ "end": 15842.26,
+ "text": "provide"
+ },
+ {
+ "id": 34271,
+ "start": 15842.26,
+ "end": 15842.6,
+ "text": "greater"
+ },
+ {
+ "id": 34272,
+ "start": 15842.6,
+ "end": 15843.46,
+ "text": "transparency"
+ },
+ {
+ "id": 34273,
+ "start": 15843.46,
+ "end": 15843.96,
+ "text": "regarding"
+ },
+ {
+ "id": 34274,
+ "start": 15843.96,
+ "end": 15844.58,
+ "text": "political"
+ },
+ {
+ "id": 34275,
+ "start": 15844.58,
+ "end": 15845,
+ "text": "ads."
+ },
+ {
+ "id": 34276,
+ "start": 15845,
+ "end": 15846,
+ "text": "I"
+ },
+ {
+ "id": 34277,
+ "start": 15846,
+ "end": 15846.38,
+ "text": "do"
+ },
+ {
+ "id": 34278,
+ "start": 15846.38,
+ "end": 15846.8,
+ "text": "want"
+ },
+ {
+ "id": 34279,
+ "start": 15846.8,
+ "end": 15847.06,
+ "text": "to"
+ },
+ {
+ "id": 34280,
+ "start": 15847.06,
+ "end": 15847.34,
+ "text": "get"
+ },
+ {
+ "id": 34281,
+ "start": 15847.34,
+ "end": 15847.74,
+ "text": "further"
+ },
+ {
+ "id": 34282,
+ "start": 15847.74,
+ "end": 15848.52,
+ "text": "information"
+ },
+ {
+ "id": 34283,
+ "start": 15848.52,
+ "end": 15848.86,
+ "text": "on"
+ },
+ {
+ "id": 34284,
+ "start": 15848.86,
+ "end": 15849.16,
+ "text": "how"
+ },
+ {
+ "id": 34285,
+ "start": 15849.16,
+ "end": 15849.38,
+ "text": "you"
+ },
+ {
+ "id": 34286,
+ "start": 15849.38,
+ "end": 15849.56,
+ "text": "can"
+ },
+ {
+ "id": 34287,
+ "start": 15849.56,
+ "end": 15849.72,
+ "text": "be"
+ },
+ {
+ "id": 34288,
+ "start": 15849.72,
+ "end": 15850.46,
+ "text": "confident"
+ },
+ {
+ "id": 34289,
+ "start": 15850.46,
+ "end": 15851.48,
+ "text": "that"
+ },
+ {
+ "id": 34290,
+ "start": 15851.48,
+ "end": 15851.64,
+ "text": "you"
+ },
+ {
+ "id": 34291,
+ "start": 15851.64,
+ "end": 15852.98,
+ "text": "have"
+ },
+ {
+ "id": 34292,
+ "start": 15852.98,
+ "end": 15853.94,
+ "text": "excluded"
+ },
+ {
+ "id": 34293,
+ "start": 15853.94,
+ "end": 15854.54,
+ "text": "entities"
+ },
+ {
+ "id": 34294,
+ "start": 15854.54,
+ "end": 15854.88,
+ "text": "based"
+ },
+ {
+ "id": 34295,
+ "start": 15854.88,
+ "end": 15855.32,
+ "text": "outside"
+ },
+ {
+ "id": 34296,
+ "start": 15855.32,
+ "end": 15855.42,
+ "text": "of"
+ },
+ {
+ "id": 34297,
+ "start": 15855.42,
+ "end": 15855.54,
+ "text": "the"
+ },
+ {
+ "id": 34298,
+ "start": 15855.54,
+ "end": 15855.9,
+ "text": "United"
+ },
+ {
+ "id": 34299,
+ "start": 15855.9,
+ "end": 15856.92,
+ "text": "States"
+ },
+ {
+ "id": 34300,
+ "start": 15856.92,
+ "end": 15857.74,
+ "text": "and"
+ },
+ {
+ "id": 34301,
+ "start": 15857.74,
+ "end": 15857.98,
+ "text": "we'll"
+ },
+ {
+ "id": 34302,
+ "start": 15857.98,
+ "end": 15858.16,
+ "text": "follow"
+ },
+ {
+ "id": 34303,
+ "start": 15858.16,
+ "end": 15858.24,
+ "text": "up"
+ },
+ {
+ "id": 34304,
+ "start": 15858.24,
+ "end": 15858.36,
+ "text": "on"
+ },
+ {
+ "id": 34305,
+ "start": 15858.36,
+ "end": 15858.56,
+ "text": "that"
+ },
+ {
+ "id": 34306,
+ "start": 15858.56,
+ "end": 15859.16,
+ "text": "and"
+ },
+ {
+ "id": 34307,
+ "start": 15859.16,
+ "end": 15859.48,
+ "text": "then"
+ },
+ {
+ "id": 34308,
+ "start": 15859.48,
+ "end": 15860.62,
+ "text": "I"
+ },
+ {
+ "id": 34309,
+ "start": 15860.62,
+ "end": 15860.88,
+ "text": "think"
+ },
+ {
+ "id": 34310,
+ "start": 15860.88,
+ "end": 15861.64,
+ "text": "on"
+ },
+ {
+ "id": 34311,
+ "start": 15861.64,
+ "end": 15861.92,
+ "text": "that"
+ },
+ {
+ "id": 34312,
+ "start": 15861.92,
+ "end": 15863.76,
+ "text": "topic,"
+ },
+ {
+ "id": 34313,
+ "start": 15863.76,
+ "end": 15864.78,
+ "text": "if"
+ },
+ {
+ "id": 34314,
+ "start": 15864.78,
+ "end": 15864.96,
+ "text": "you"
+ },
+ {
+ "id": 34315,
+ "start": 15864.96,
+ "end": 15867.04,
+ "text": "require"
+ },
+ {
+ "id": 34316,
+ "start": 15867.04,
+ "end": 15868,
+ "text": "disclosure"
+ },
+ {
+ "id": 34317,
+ "start": 15868,
+ "end": 15868.44,
+ "text": "of"
+ },
+ {
+ "id": 34318,
+ "start": 15868.44,
+ "end": 15869.14,
+ "text": "political"
+ },
+ {
+ "id": 34319,
+ "start": 15869.14,
+ "end": 15869.58,
+ "text": "ads"
+ },
+ {
+ "id": 34320,
+ "start": 15869.58,
+ "end": 15871.4,
+ "text": "sponsor,"
+ },
+ {
+ "id": 34321,
+ "start": 15871.4,
+ "end": 15872.2,
+ "text": "what"
+ },
+ {
+ "id": 34322,
+ "start": 15872.2,
+ "end": 15872.44,
+ "text": "sort"
+ },
+ {
+ "id": 34323,
+ "start": 15872.44,
+ "end": 15872.54,
+ "text": "of"
+ },
+ {
+ "id": 34324,
+ "start": 15872.54,
+ "end": 15874.44,
+ "text": "transparency"
+ },
+ {
+ "id": 34325,
+ "start": 15874.44,
+ "end": 15875.4,
+ "text": "will"
+ },
+ {
+ "id": 34326,
+ "start": 15875.4,
+ "end": 15875.6,
+ "text": "you"
+ },
+ {
+ "id": 34327,
+ "start": 15875.6,
+ "end": 15875.74,
+ "text": "be"
+ },
+ {
+ "id": 34328,
+ "start": 15875.74,
+ "end": 15876.04,
+ "text": "able"
+ },
+ {
+ "id": 34329,
+ "start": 15876.04,
+ "end": 15876.24,
+ "text": "to"
+ },
+ {
+ "id": 34330,
+ "start": 15876.24,
+ "end": 15876.88,
+ "text": "provide"
+ },
+ {
+ "id": 34331,
+ "start": 15876.88,
+ "end": 15877.14,
+ "text": "with"
+ },
+ {
+ "id": 34332,
+ "start": 15877.14,
+ "end": 15877.6,
+ "text": "regard"
+ },
+ {
+ "id": 34333,
+ "start": 15877.6,
+ "end": 15877.88,
+ "text": "to"
+ },
+ {
+ "id": 34334,
+ "start": 15877.88,
+ "end": 15878.3,
+ "text": "people"
+ },
+ {
+ "id": 34335,
+ "start": 15878.3,
+ "end": 15878.44,
+ "text": "who"
+ },
+ {
+ "id": 34336,
+ "start": 15878.44,
+ "end": 15878.7,
+ "text": "weren't"
+ },
+ {
+ "id": 34337,
+ "start": 15878.7,
+ "end": 15878.82,
+ "text": "the"
+ },
+ {
+ "id": 34338,
+ "start": 15878.82,
+ "end": 15879.28,
+ "text": "subject"
+ },
+ {
+ "id": 34339,
+ "start": 15879.28,
+ "end": 15879.42,
+ "text": "of"
+ },
+ {
+ "id": 34340,
+ "start": 15879.42,
+ "end": 15879.62,
+ "text": "that"
+ },
+ {
+ "id": 34341,
+ "start": 15879.62,
+ "end": 15879.98,
+ "text": "ad"
+ },
+ {
+ "id": 34342,
+ "start": 15879.98,
+ "end": 15880.78,
+ "text": "seeing"
+ },
+ {
+ "id": 34343,
+ "start": 15880.78,
+ "end": 15881,
+ "text": "its"
+ },
+ {
+ "id": 34344,
+ "start": 15881,
+ "end": 15884,
+ "text": "content."
+ },
+ {
+ "id": 34345,
+ "start": 15884,
+ "end": 15885,
+ "text": "Senator"
+ },
+ {
+ "id": 34346,
+ "start": 15885,
+ "end": 15885.34,
+ "text": "you'll"
+ },
+ {
+ "id": 34347,
+ "start": 15885.34,
+ "end": 15885.46,
+ "text": "be"
+ },
+ {
+ "id": 34348,
+ "start": 15885.46,
+ "end": 15885.64,
+ "text": "able"
+ },
+ {
+ "id": 34349,
+ "start": 15885.64,
+ "end": 15885.78,
+ "text": "to"
+ },
+ {
+ "id": 34350,
+ "start": 15885.78,
+ "end": 15885.9,
+ "text": "go"
+ },
+ {
+ "id": 34351,
+ "start": 15885.9,
+ "end": 15886,
+ "text": "to"
+ },
+ {
+ "id": 34352,
+ "start": 15886,
+ "end": 15886.22,
+ "text": "any"
+ },
+ {
+ "id": 34353,
+ "start": 15886.22,
+ "end": 15886.56,
+ "text": "page"
+ },
+ {
+ "id": 34354,
+ "start": 15886.56,
+ "end": 15887.24,
+ "text": "and"
+ },
+ {
+ "id": 34355,
+ "start": 15887.24,
+ "end": 15887.44,
+ "text": "see"
+ },
+ {
+ "id": 34356,
+ "start": 15887.44,
+ "end": 15887.68,
+ "text": "all"
+ },
+ {
+ "id": 34357,
+ "start": 15887.68,
+ "end": 15887.78,
+ "text": "of"
+ },
+ {
+ "id": 34358,
+ "start": 15887.78,
+ "end": 15887.94,
+ "text": "the"
+ },
+ {
+ "id": 34359,
+ "start": 15887.94,
+ "end": 15888.3,
+ "text": "ads"
+ },
+ {
+ "id": 34360,
+ "start": 15888.3,
+ "end": 15888.92,
+ "text": "that"
+ },
+ {
+ "id": 34361,
+ "start": 15888.92,
+ "end": 15889.18,
+ "text": "that"
+ },
+ {
+ "id": 34362,
+ "start": 15889.18,
+ "end": 15889.48,
+ "text": "page"
+ },
+ {
+ "id": 34363,
+ "start": 15889.48,
+ "end": 15889.66,
+ "text": "has"
+ },
+ {
+ "id": 34364,
+ "start": 15889.66,
+ "end": 15889.98,
+ "text": "run"
+ },
+ {
+ "id": 34365,
+ "start": 15889.98,
+ "end": 15890.78,
+ "text": "so"
+ },
+ {
+ "id": 34366,
+ "start": 15890.78,
+ "end": 15891.38,
+ "text": "if"
+ },
+ {
+ "id": 34367,
+ "start": 15891.38,
+ "end": 15891.66,
+ "text": "someone"
+ },
+ {
+ "id": 34368,
+ "start": 15891.66,
+ "end": 15891.8,
+ "text": "is"
+ },
+ {
+ "id": 34369,
+ "start": 15891.8,
+ "end": 15892.2,
+ "text": "running"
+ },
+ {
+ "id": 34370,
+ "start": 15892.2,
+ "end": 15892.5,
+ "text": "a"
+ },
+ {
+ "id": 34371,
+ "start": 15892.5,
+ "end": 15892.9,
+ "text": "political"
+ },
+ {
+ "id": 34372,
+ "start": 15892.9,
+ "end": 15893.28,
+ "text": "campaign,"
+ },
+ {
+ "id": 34373,
+ "start": 15893.28,
+ "end": 15893.5,
+ "text": "for"
+ },
+ {
+ "id": 34374,
+ "start": 15893.5,
+ "end": 15893.92,
+ "text": "example,"
+ },
+ {
+ "id": 34375,
+ "start": 15893.92,
+ "end": 15894.24,
+ "text": "and"
+ },
+ {
+ "id": 34376,
+ "start": 15894.24,
+ "end": 15894.88,
+ "text": "they're"
+ },
+ {
+ "id": 34377,
+ "start": 15894.88,
+ "end": 15895.24,
+ "text": "targeting"
+ },
+ {
+ "id": 34378,
+ "start": 15895.24,
+ "end": 15895.48,
+ "text": "one"
+ },
+ {
+ "id": 34379,
+ "start": 15895.48,
+ "end": 15895.92,
+ "text": "district"
+ },
+ {
+ "id": 34380,
+ "start": 15895.92,
+ "end": 15896.12,
+ "text": "with"
+ },
+ {
+ "id": 34381,
+ "start": 15896.12,
+ "end": 15896.47,
+ "text": "one"
+ },
+ {
+ "id": 34382,
+ "start": 15896.47,
+ "end": 15896.61,
+ "text": "and"
+ },
+ {
+ "id": 34383,
+ "start": 15896.61,
+ "end": 15897.27,
+ "text": "another"
+ },
+ {
+ "id": 34384,
+ "start": 15897.27,
+ "end": 15897.57,
+ "text": "district"
+ },
+ {
+ "id": 34385,
+ "start": 15897.57,
+ "end": 15897.75,
+ "text": "with"
+ },
+ {
+ "id": 34386,
+ "start": 15897.75,
+ "end": 15898.07,
+ "text": "another"
+ },
+ {
+ "id": 34387,
+ "start": 15898.07,
+ "end": 15899.33,
+ "text": "historically"
+ },
+ {
+ "id": 34388,
+ "start": 15899.33,
+ "end": 15899.97,
+ "text": "it's"
+ },
+ {
+ "id": 34389,
+ "start": 15899.97,
+ "end": 15900.15,
+ "text": "been"
+ },
+ {
+ "id": 34390,
+ "start": 15900.15,
+ "end": 15900.37,
+ "text": "hard"
+ },
+ {
+ "id": 34391,
+ "start": 15900.37,
+ "end": 15900.45,
+ "text": "to"
+ },
+ {
+ "id": 34392,
+ "start": 15900.45,
+ "end": 15900.69,
+ "text": "track"
+ },
+ {
+ "id": 34393,
+ "start": 15900.69,
+ "end": 15900.85,
+ "text": "that"
+ },
+ {
+ "id": 34394,
+ "start": 15900.85,
+ "end": 15901.11,
+ "text": "down,"
+ },
+ {
+ "id": 34395,
+ "start": 15901.11,
+ "end": 15901.27,
+ "text": "but"
+ },
+ {
+ "id": 34396,
+ "start": 15901.27,
+ "end": 15901.41,
+ "text": "now"
+ },
+ {
+ "id": 34397,
+ "start": 15901.41,
+ "end": 15901.53,
+ "text": "it"
+ },
+ {
+ "id": 34398,
+ "start": 15901.53,
+ "end": 15901.69,
+ "text": "will"
+ },
+ {
+ "id": 34399,
+ "start": 15901.69,
+ "end": 15901.77,
+ "text": "be"
+ },
+ {
+ "id": 34400,
+ "start": 15901.77,
+ "end": 15901.95,
+ "text": "very"
+ },
+ {
+ "id": 34401,
+ "start": 15901.95,
+ "end": 15902.13,
+ "text": "easy"
+ },
+ {
+ "id": 34402,
+ "start": 15902.13,
+ "end": 15902.45,
+ "text": "you'll"
+ },
+ {
+ "id": 34403,
+ "start": 15902.45,
+ "end": 15902.57,
+ "text": "just"
+ },
+ {
+ "id": 34404,
+ "start": 15902.57,
+ "end": 15902.67,
+ "text": "be"
+ },
+ {
+ "id": 34405,
+ "start": 15902.67,
+ "end": 15902.81,
+ "text": "able"
+ },
+ {
+ "id": 34406,
+ "start": 15902.81,
+ "end": 15902.89,
+ "text": "to"
+ },
+ {
+ "id": 34407,
+ "start": 15902.89,
+ "end": 15903.11,
+ "text": "look"
+ },
+ {
+ "id": 34408,
+ "start": 15903.11,
+ "end": 15903.37,
+ "text": "at"
+ },
+ {
+ "id": 34409,
+ "start": 15903.37,
+ "end": 15903.91,
+ "text": "all"
+ },
+ {
+ "id": 34410,
+ "start": 15903.91,
+ "end": 15904.09,
+ "text": "the"
+ },
+ {
+ "id": 34411,
+ "start": 15904.09,
+ "end": 15904.33,
+ "text": "ads"
+ },
+ {
+ "id": 34412,
+ "start": 15904.33,
+ "end": 15904.45,
+ "text": "that"
+ },
+ {
+ "id": 34413,
+ "start": 15904.45,
+ "end": 15904.69,
+ "text": "they've"
+ },
+ {
+ "id": 34414,
+ "start": 15904.69,
+ "end": 15904.95,
+ "text": "run"
+ },
+ {
+ "id": 34415,
+ "start": 15904.95,
+ "end": 15905.57,
+ "text": "the"
+ },
+ {
+ "id": 34416,
+ "start": 15905.57,
+ "end": 15905.97,
+ "text": "targeting"
+ },
+ {
+ "id": 34417,
+ "start": 15905.97,
+ "end": 15906.49,
+ "text": "associated"
+ },
+ {
+ "id": 34418,
+ "start": 15906.49,
+ "end": 15906.65,
+ "text": "with"
+ },
+ {
+ "id": 34419,
+ "start": 15906.65,
+ "end": 15906.87,
+ "text": "each"
+ },
+ {
+ "id": 34420,
+ "start": 15906.87,
+ "end": 15907.05,
+ "text": "to"
+ },
+ {
+ "id": 34421,
+ "start": 15907.05,
+ "end": 15907.21,
+ "text": "see"
+ },
+ {
+ "id": 34422,
+ "start": 15907.21,
+ "end": 15907.35,
+ "text": "what"
+ },
+ {
+ "id": 34423,
+ "start": 15907.35,
+ "end": 15907.57,
+ "text": "they're"
+ },
+ {
+ "id": 34424,
+ "start": 15907.57,
+ "end": 15907.79,
+ "text": "saying"
+ },
+ {
+ "id": 34425,
+ "start": 15907.79,
+ "end": 15907.89,
+ "text": "to"
+ },
+ {
+ "id": 34426,
+ "start": 15907.89,
+ "end": 15908.77,
+ "text": "DIF"
+ },
+ {
+ "id": 34427,
+ "start": 15908.77,
+ "end": 15909.03,
+ "text": "different"
+ },
+ {
+ "id": 34428,
+ "start": 15909.03,
+ "end": 15909.8,
+ "text": "folks."
+ },
+ {
+ "id": 34429,
+ "start": 15909.8,
+ "end": 15910.66,
+ "text": "And"
+ },
+ {
+ "id": 34430,
+ "start": 15910.66,
+ "end": 15911.76,
+ "text": "in"
+ },
+ {
+ "id": 34431,
+ "start": 15911.76,
+ "end": 15911.94,
+ "text": "some"
+ },
+ {
+ "id": 34432,
+ "start": 15911.94,
+ "end": 15912.28,
+ "text": "cases,"
+ },
+ {
+ "id": 34433,
+ "start": 15912.28,
+ "end": 15912.42,
+ "text": "how"
+ },
+ {
+ "id": 34434,
+ "start": 15912.42,
+ "end": 15912.56,
+ "text": "much"
+ },
+ {
+ "id": 34435,
+ "start": 15912.56,
+ "end": 15912.8,
+ "text": "they're"
+ },
+ {
+ "id": 34436,
+ "start": 15912.8,
+ "end": 15913.1,
+ "text": "spending"
+ },
+ {
+ "id": 34437,
+ "start": 15913.1,
+ "end": 15913.22,
+ "text": "on"
+ },
+ {
+ "id": 34438,
+ "start": 15913.22,
+ "end": 15913.56,
+ "text": "the"
+ },
+ {
+ "id": 34439,
+ "start": 15913.56,
+ "end": 15913.88,
+ "text": "ads"
+ },
+ {
+ "id": 34440,
+ "start": 15913.88,
+ "end": 15914.8,
+ "text": "and"
+ },
+ {
+ "id": 34441,
+ "start": 15914.8,
+ "end": 15915.24,
+ "text": "all"
+ },
+ {
+ "id": 34442,
+ "start": 15915.24,
+ "end": 15915.3,
+ "text": "of"
+ },
+ {
+ "id": 34443,
+ "start": 15915.3,
+ "end": 15915.42,
+ "text": "the"
+ },
+ {
+ "id": 34444,
+ "start": 15915.42,
+ "end": 15915.78,
+ "text": "relevant"
+ },
+ {
+ "id": 34445,
+ "start": 15915.78,
+ "end": 15916.32,
+ "text": "information?"
+ },
+ {
+ "id": 34446,
+ "start": 15916.32,
+ "end": 15916.58,
+ "text": "This"
+ },
+ {
+ "id": 34447,
+ "start": 15916.58,
+ "end": 15916.68,
+ "text": "is"
+ },
+ {
+ "id": 34448,
+ "start": 15916.68,
+ "end": 15916.78,
+ "text": "an"
+ },
+ {
+ "id": 34449,
+ "start": 15916.78,
+ "end": 15917.02,
+ "text": "area"
+ },
+ {
+ "id": 34450,
+ "start": 15917.02,
+ "end": 15917.22,
+ "text": "where"
+ },
+ {
+ "id": 34451,
+ "start": 15917.22,
+ "end": 15917.28,
+ "text": "I"
+ },
+ {
+ "id": 34452,
+ "start": 15917.28,
+ "end": 15917.5,
+ "text": "think"
+ },
+ {
+ "id": 34453,
+ "start": 15917.5,
+ "end": 15918.1,
+ "text": "more"
+ },
+ {
+ "id": 34454,
+ "start": 15918.1,
+ "end": 15918.92,
+ "text": "transparency"
+ },
+ {
+ "id": 34455,
+ "start": 15918.92,
+ "end": 15919.9,
+ "text": "will"
+ },
+ {
+ "id": 34456,
+ "start": 15919.9,
+ "end": 15920.22,
+ "text": "really"
+ },
+ {
+ "id": 34457,
+ "start": 15920.22,
+ "end": 15920.44,
+ "text": "help"
+ },
+ {
+ "id": 34458,
+ "start": 15920.44,
+ "end": 15920.98,
+ "text": "discourse"
+ },
+ {
+ "id": 34459,
+ "start": 15920.98,
+ "end": 15921.5,
+ "text": "overall"
+ },
+ {
+ "id": 34460,
+ "start": 15921.5,
+ "end": 15922.02,
+ "text": "and"
+ },
+ {
+ "id": 34461,
+ "start": 15922.02,
+ "end": 15922.32,
+ "text": "root"
+ },
+ {
+ "id": 34462,
+ "start": 15922.32,
+ "end": 15922.5,
+ "text": "out"
+ },
+ {
+ "id": 34463,
+ "start": 15922.5,
+ "end": 15922.82,
+ "text": "foreign"
+ },
+ {
+ "id": 34464,
+ "start": 15922.82,
+ "end": 15923.32,
+ "text": "interference"
+ },
+ {
+ "id": 34465,
+ "start": 15923.32,
+ "end": 15923.44,
+ "text": "in"
+ },
+ {
+ "id": 34466,
+ "start": 15923.44,
+ "end": 15923.86,
+ "text": "elections."
+ },
+ {
+ "id": 34467,
+ "start": 15923.86,
+ "end": 15924.14,
+ "text": "Thank"
+ },
+ {
+ "id": 34468,
+ "start": 15924.14,
+ "end": 15924.28,
+ "text": "you,"
+ },
+ {
+ "id": 34469,
+ "start": 15924.28,
+ "end": 15924.6,
+ "text": "Mr"
+ },
+ {
+ "id": 34470,
+ "start": 15924.6,
+ "end": 15925.04,
+ "text": "Baldwin."
+ },
+ {
+ "id": 34471,
+ "start": 15925.04,
+ "end": 15925.34,
+ "text": "Senator"
+ },
+ {
+ "id": 34472,
+ "start": 15925.34,
+ "end": 15925.7,
+ "text": "Johnson,"
+ },
+ {
+ "id": 34473,
+ "start": 15925.7,
+ "end": 15926.18,
+ "text": "thank"
+ },
+ {
+ "id": 34474,
+ "start": 15926.18,
+ "end": 15926.3,
+ "text": "you,"
+ },
+ {
+ "id": 34475,
+ "start": 15926.3,
+ "end": 15926.5,
+ "text": "Mr"
+ },
+ {
+ "id": 34476,
+ "start": 15926.5,
+ "end": 15926.82,
+ "text": "Chairman."
+ },
+ {
+ "id": 34477,
+ "start": 15926.82,
+ "end": 15927.48,
+ "text": "Thank"
+ },
+ {
+ "id": 34478,
+ "start": 15927.48,
+ "end": 15927.6,
+ "text": "you,"
+ },
+ {
+ "id": 34479,
+ "start": 15927.6,
+ "end": 15927.86,
+ "text": "Mr"
+ },
+ {
+ "id": 34480,
+ "start": 15927.86,
+ "end": 15928.28,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 34481,
+ "start": 15928.28,
+ "end": 15928.52,
+ "text": "For"
+ },
+ {
+ "id": 34482,
+ "start": 15928.52,
+ "end": 15929.22,
+ "text": "testifying"
+ },
+ {
+ "id": 34483,
+ "start": 15929.22,
+ "end": 15929.38,
+ "text": "here"
+ },
+ {
+ "id": 34484,
+ "start": 15929.38,
+ "end": 15930,
+ "text": "today,"
+ },
+ {
+ "id": 34485,
+ "start": 15930,
+ "end": 15930.48,
+ "text": "do"
+ },
+ {
+ "id": 34486,
+ "start": 15930.48,
+ "end": 15930.58,
+ "text": "you"
+ },
+ {
+ "id": 34487,
+ "start": 15930.58,
+ "end": 15930.72,
+ "text": "have"
+ },
+ {
+ "id": 34488,
+ "start": 15930.72,
+ "end": 15930.86,
+ "text": "any"
+ },
+ {
+ "id": 34489,
+ "start": 15930.86,
+ "end": 15931.2,
+ "text": "idea"
+ },
+ {
+ "id": 34490,
+ "start": 15931.2,
+ "end": 15931.66,
+ "text": "how"
+ },
+ {
+ "id": 34491,
+ "start": 15931.66,
+ "end": 15931.9,
+ "text": "many"
+ },
+ {
+ "id": 34492,
+ "start": 15931.9,
+ "end": 15932.04,
+ "text": "of"
+ },
+ {
+ "id": 34493,
+ "start": 15932.04,
+ "end": 15932.34,
+ "text": "your"
+ },
+ {
+ "id": 34494,
+ "start": 15932.34,
+ "end": 15933.18,
+ "text": "users"
+ },
+ {
+ "id": 34495,
+ "start": 15933.18,
+ "end": 15933.82,
+ "text": "actually"
+ },
+ {
+ "id": 34496,
+ "start": 15933.82,
+ "end": 15934.32,
+ "text": "read"
+ },
+ {
+ "id": 34497,
+ "start": 15934.32,
+ "end": 15935.02,
+ "text": "the"
+ },
+ {
+ "id": 34498,
+ "start": 15935.02,
+ "end": 15935.36,
+ "text": "terms"
+ },
+ {
+ "id": 34499,
+ "start": 15935.36,
+ "end": 15935.5,
+ "text": "of"
+ },
+ {
+ "id": 34500,
+ "start": 15935.5,
+ "end": 15935.94,
+ "text": "service,"
+ },
+ {
+ "id": 34501,
+ "start": 15935.94,
+ "end": 15936.08,
+ "text": "the"
+ },
+ {
+ "id": 34502,
+ "start": 15936.08,
+ "end": 15936.48,
+ "text": "privacy"
+ },
+ {
+ "id": 34503,
+ "start": 15936.48,
+ "end": 15936.94,
+ "text": "policy,"
+ },
+ {
+ "id": 34504,
+ "start": 15936.94,
+ "end": 15937.16,
+ "text": "the"
+ },
+ {
+ "id": 34505,
+ "start": 15937.16,
+ "end": 15937.48,
+ "text": "statement"
+ },
+ {
+ "id": 34506,
+ "start": 15937.48,
+ "end": 15937.74,
+ "text": "rights"
+ },
+ {
+ "id": 34507,
+ "start": 15937.74,
+ "end": 15937.88,
+ "text": "and"
+ },
+ {
+ "id": 34508,
+ "start": 15937.88,
+ "end": 15938.68,
+ "text": "responsibilities."
+ },
+ {
+ "id": 34509,
+ "start": 15938.68,
+ "end": 15938.8,
+ "text": "I"
+ },
+ {
+ "id": 34510,
+ "start": 15938.8,
+ "end": 15939.28,
+ "text": "actually"
+ },
+ {
+ "id": 34511,
+ "start": 15939.28,
+ "end": 15939.54,
+ "text": "read"
+ },
+ {
+ "id": 34512,
+ "start": 15939.54,
+ "end": 15940.32,
+ "text": "it,"
+ },
+ {
+ "id": 34513,
+ "start": 15940.32,
+ "end": 15941.3,
+ "text": "Senator,"
+ },
+ {
+ "id": 34514,
+ "start": 15941.3,
+ "end": 15941.36,
+ "text": "I"
+ },
+ {
+ "id": 34515,
+ "start": 15941.36,
+ "end": 15941.54,
+ "text": "do"
+ },
+ {
+ "id": 34516,
+ "start": 15941.54,
+ "end": 15941.96,
+ "text": "not,"
+ },
+ {
+ "id": 34517,
+ "start": 15941.96,
+ "end": 15942.94,
+ "text": "would"
+ },
+ {
+ "id": 34518,
+ "start": 15942.94,
+ "end": 15943.06,
+ "text": "you"
+ },
+ {
+ "id": 34519,
+ "start": 15943.06,
+ "end": 15943.4,
+ "text": "imagine"
+ },
+ {
+ "id": 34520,
+ "start": 15943.4,
+ "end": 15943.56,
+ "text": "a"
+ },
+ {
+ "id": 34521,
+ "start": 15943.56,
+ "end": 15943.82,
+ "text": "very"
+ },
+ {
+ "id": 34522,
+ "start": 15943.82,
+ "end": 15944.12,
+ "text": "small"
+ },
+ {
+ "id": 34523,
+ "start": 15944.12,
+ "end": 15945.2,
+ "text": "percentage"
+ },
+ {
+ "id": 34524,
+ "start": 15945.2,
+ "end": 15946.14,
+ "text": "Senator?"
+ },
+ {
+ "id": 34525,
+ "start": 15946.14,
+ "end": 15946.26,
+ "text": "Who"
+ },
+ {
+ "id": 34526,
+ "start": 15946.26,
+ "end": 15946.52,
+ "text": "read"
+ },
+ {
+ "id": 34527,
+ "start": 15946.52,
+ "end": 15946.62,
+ "text": "the"
+ },
+ {
+ "id": 34528,
+ "start": 15946.62,
+ "end": 15946.8,
+ "text": "whole"
+ },
+ {
+ "id": 34529,
+ "start": 15946.8,
+ "end": 15947,
+ "text": "thing?"
+ },
+ {
+ "id": 34530,
+ "start": 15947,
+ "end": 15948.22,
+ "text": "I"
+ },
+ {
+ "id": 34531,
+ "start": 15948.22,
+ "end": 15948.4,
+ "text": "would"
+ },
+ {
+ "id": 34532,
+ "start": 15948.4,
+ "end": 15948.82,
+ "text": "imagine"
+ },
+ {
+ "id": 34533,
+ "start": 15948.82,
+ "end": 15949.1,
+ "text": "that"
+ },
+ {
+ "id": 34534,
+ "start": 15949.1,
+ "end": 15949.64,
+ "text": "probably"
+ },
+ {
+ "id": 34535,
+ "start": 15949.64,
+ "end": 15949.92,
+ "text": "most"
+ },
+ {
+ "id": 34536,
+ "start": 15949.92,
+ "end": 15950.2,
+ "text": "people"
+ },
+ {
+ "id": 34537,
+ "start": 15950.2,
+ "end": 15950.4,
+ "text": "do"
+ },
+ {
+ "id": 34538,
+ "start": 15950.4,
+ "end": 15950.66,
+ "text": "not"
+ },
+ {
+ "id": 34539,
+ "start": 15950.66,
+ "end": 15950.88,
+ "text": "read"
+ },
+ {
+ "id": 34540,
+ "start": 15950.88,
+ "end": 15951,
+ "text": "the"
+ },
+ {
+ "id": 34541,
+ "start": 15951,
+ "end": 15951.18,
+ "text": "whole"
+ },
+ {
+ "id": 34542,
+ "start": 15951.18,
+ "end": 15951.4,
+ "text": "thing,"
+ },
+ {
+ "id": 34543,
+ "start": 15951.4,
+ "end": 15951.68,
+ "text": "but"
+ },
+ {
+ "id": 34544,
+ "start": 15951.68,
+ "end": 15952.18,
+ "text": "everyone"
+ },
+ {
+ "id": 34545,
+ "start": 15952.18,
+ "end": 15952.72,
+ "text": "has"
+ },
+ {
+ "id": 34546,
+ "start": 15952.72,
+ "end": 15952.86,
+ "text": "the"
+ },
+ {
+ "id": 34547,
+ "start": 15952.86,
+ "end": 15953.46,
+ "text": "opportunity"
+ },
+ {
+ "id": 34548,
+ "start": 15953.46,
+ "end": 15953.62,
+ "text": "to"
+ },
+ {
+ "id": 34549,
+ "start": 15953.62,
+ "end": 15953.84,
+ "text": "and"
+ },
+ {
+ "id": 34550,
+ "start": 15953.84,
+ "end": 15954.24,
+ "text": "consent"
+ },
+ {
+ "id": 34551,
+ "start": 15954.24,
+ "end": 15954.44,
+ "text": "to"
+ },
+ {
+ "id": 34552,
+ "start": 15954.44,
+ "end": 15954.54,
+ "text": "it."
+ },
+ {
+ "id": 34553,
+ "start": 15954.54,
+ "end": 15955.04,
+ "text": "I"
+ },
+ {
+ "id": 34554,
+ "start": 15955.04,
+ "end": 15955.36,
+ "text": "agree,"
+ },
+ {
+ "id": 34555,
+ "start": 15955.36,
+ "end": 15955.58,
+ "text": "but"
+ },
+ {
+ "id": 34556,
+ "start": 15955.58,
+ "end": 15955.86,
+ "text": "it's"
+ },
+ {
+ "id": 34557,
+ "start": 15955.86,
+ "end": 15956.08,
+ "text": "kind"
+ },
+ {
+ "id": 34558,
+ "start": 15956.08,
+ "end": 15956.16,
+ "text": "of"
+ },
+ {
+ "id": 34559,
+ "start": 15956.16,
+ "end": 15956.34,
+ "text": "true"
+ },
+ {
+ "id": 34560,
+ "start": 15956.34,
+ "end": 15956.4,
+ "text": "of"
+ },
+ {
+ "id": 34561,
+ "start": 15956.4,
+ "end": 15956.62,
+ "text": "every"
+ },
+ {
+ "id": 34562,
+ "start": 15956.62,
+ "end": 15957.2,
+ "text": "application"
+ },
+ {
+ "id": 34563,
+ "start": 15957.2,
+ "end": 15957.48,
+ "text": "where"
+ },
+ {
+ "id": 34564,
+ "start": 15957.48,
+ "end": 15957.72,
+ "text": "you"
+ },
+ {
+ "id": 34565,
+ "start": 15957.72,
+ "end": 15958.04,
+ "text": "want"
+ },
+ {
+ "id": 34566,
+ "start": 15958.04,
+ "end": 15958.12,
+ "text": "to"
+ },
+ {
+ "id": 34567,
+ "start": 15958.12,
+ "end": 15958.28,
+ "text": "get"
+ },
+ {
+ "id": 34568,
+ "start": 15958.28,
+ "end": 15958.44,
+ "text": "to"
+ },
+ {
+ "id": 34569,
+ "start": 15958.44,
+ "end": 15958.56,
+ "text": "it,"
+ },
+ {
+ "id": 34570,
+ "start": 15958.56,
+ "end": 15958.72,
+ "text": "and"
+ },
+ {
+ "id": 34571,
+ "start": 15958.72,
+ "end": 15959.2,
+ "text": "you"
+ },
+ {
+ "id": 34572,
+ "start": 15959.2,
+ "end": 15959.36,
+ "text": "have"
+ },
+ {
+ "id": 34573,
+ "start": 15959.36,
+ "end": 15959.44,
+ "text": "to"
+ },
+ {
+ "id": 34574,
+ "start": 15959.44,
+ "end": 15959.66,
+ "text": "agree"
+ },
+ {
+ "id": 34575,
+ "start": 15959.66,
+ "end": 15959.76,
+ "text": "to"
+ },
+ {
+ "id": 34576,
+ "start": 15959.76,
+ "end": 15959.86,
+ "text": "it"
+ },
+ {
+ "id": 34577,
+ "start": 15959.86,
+ "end": 15959.96,
+ "text": "and"
+ },
+ {
+ "id": 34578,
+ "start": 15959.96,
+ "end": 15960.18,
+ "text": "people"
+ },
+ {
+ "id": 34579,
+ "start": 15960.18,
+ "end": 15960.34,
+ "text": "just"
+ },
+ {
+ "id": 34580,
+ "start": 15960.34,
+ "end": 15960.56,
+ "text": "press"
+ },
+ {
+ "id": 34581,
+ "start": 15960.56,
+ "end": 15960.72,
+ "text": "that"
+ },
+ {
+ "id": 34582,
+ "start": 15960.72,
+ "end": 15961.08,
+ "text": "agree"
+ },
+ {
+ "id": 34583,
+ "start": 15961.08,
+ "end": 15961.76,
+ "text": "the"
+ },
+ {
+ "id": 34584,
+ "start": 15961.76,
+ "end": 15962,
+ "text": "vast"
+ },
+ {
+ "id": 34585,
+ "start": 15962,
+ "end": 15962.4,
+ "text": "majority"
+ },
+ {
+ "id": 34586,
+ "start": 15962.4,
+ "end": 15963.5,
+ "text": "correct."
+ },
+ {
+ "id": 34587,
+ "start": 15963.5,
+ "end": 15964.54,
+ "text": "Senator"
+ },
+ {
+ "id": 34588,
+ "start": 15964.54,
+ "end": 15964.7,
+ "text": "it's"
+ },
+ {
+ "id": 34589,
+ "start": 15964.7,
+ "end": 15964.96,
+ "text": "really"
+ },
+ {
+ "id": 34590,
+ "start": 15964.96,
+ "end": 15965.16,
+ "text": "hard"
+ },
+ {
+ "id": 34591,
+ "start": 15965.16,
+ "end": 15965.3,
+ "text": "for"
+ },
+ {
+ "id": 34592,
+ "start": 15965.3,
+ "end": 15965.38,
+ "text": "me"
+ },
+ {
+ "id": 34593,
+ "start": 15965.38,
+ "end": 15965.5,
+ "text": "to"
+ },
+ {
+ "id": 34594,
+ "start": 15965.5,
+ "end": 15965.66,
+ "text": "make"
+ },
+ {
+ "id": 34595,
+ "start": 15965.66,
+ "end": 15965.7,
+ "text": "a"
+ },
+ {
+ "id": 34596,
+ "start": 15965.7,
+ "end": 15965.92,
+ "text": "full"
+ },
+ {
+ "id": 34597,
+ "start": 15965.92,
+ "end": 15966.42,
+ "text": "assessment"
+ },
+ {
+ "id": 34598,
+ "start": 15966.42,
+ "end": 15966.7,
+ "text": "but"
+ },
+ {
+ "id": 34599,
+ "start": 15966.7,
+ "end": 15967.38,
+ "text": "common"
+ },
+ {
+ "id": 34600,
+ "start": 15967.38,
+ "end": 15967.62,
+ "text": "sense"
+ },
+ {
+ "id": 34601,
+ "start": 15967.62,
+ "end": 15967.74,
+ "text": "or"
+ },
+ {
+ "id": 34602,
+ "start": 15967.74,
+ "end": 15967.86,
+ "text": "to"
+ },
+ {
+ "id": 34603,
+ "start": 15967.86,
+ "end": 15967.94,
+ "text": "you."
+ },
+ {
+ "id": 34604,
+ "start": 15967.94,
+ "end": 15968.04,
+ "text": "That"
+ },
+ {
+ "id": 34605,
+ "start": 15968.04,
+ "end": 15968.18,
+ "text": "would"
+ },
+ {
+ "id": 34606,
+ "start": 15968.18,
+ "end": 15968.26,
+ "text": "be"
+ },
+ {
+ "id": 34607,
+ "start": 15968.26,
+ "end": 15968.5,
+ "text": "probably"
+ },
+ {
+ "id": 34608,
+ "start": 15968.5,
+ "end": 15968.58,
+ "text": "the"
+ },
+ {
+ "id": 34609,
+ "start": 15968.58,
+ "end": 15969.6,
+ "text": "case"
+ },
+ {
+ "id": 34610,
+ "start": 15969.6,
+ "end": 15970.6,
+ "text": "with"
+ },
+ {
+ "id": 34611,
+ "start": 15970.6,
+ "end": 15970.76,
+ "text": "all"
+ },
+ {
+ "id": 34612,
+ "start": 15970.76,
+ "end": 15970.94,
+ "text": "this"
+ },
+ {
+ "id": 34613,
+ "start": 15970.94,
+ "end": 15971.54,
+ "text": "publicity."
+ },
+ {
+ "id": 34614,
+ "start": 15971.54,
+ "end": 15972.46,
+ "text": "Have"
+ },
+ {
+ "id": 34615,
+ "start": 15972.46,
+ "end": 15972.64,
+ "text": "you"
+ },
+ {
+ "id": 34616,
+ "start": 15972.64,
+ "end": 15973.24,
+ "text": "documented"
+ },
+ {
+ "id": 34617,
+ "start": 15973.24,
+ "end": 15973.48,
+ "text": "any"
+ },
+ {
+ "id": 34618,
+ "start": 15973.48,
+ "end": 15973.62,
+ "text": "kind"
+ },
+ {
+ "id": 34619,
+ "start": 15973.62,
+ "end": 15973.72,
+ "text": "of"
+ },
+ {
+ "id": 34620,
+ "start": 15973.72,
+ "end": 15974.6,
+ "text": "backlash"
+ },
+ {
+ "id": 34621,
+ "start": 15974.6,
+ "end": 15974.88,
+ "text": "from"
+ },
+ {
+ "id": 34622,
+ "start": 15974.88,
+ "end": 15975.42,
+ "text": "Facebook"
+ },
+ {
+ "id": 34623,
+ "start": 15975.42,
+ "end": 15975.76,
+ "text": "users?"
+ },
+ {
+ "id": 34624,
+ "start": 15975.76,
+ "end": 15975.86,
+ "text": "I"
+ },
+ {
+ "id": 34625,
+ "start": 15975.86,
+ "end": 15976,
+ "text": "mean,"
+ },
+ {
+ "id": 34626,
+ "start": 15976,
+ "end": 15976.24,
+ "text": "there"
+ },
+ {
+ "id": 34627,
+ "start": 15976.24,
+ "end": 15976.46,
+ "text": "been"
+ },
+ {
+ "id": 34628,
+ "start": 15976.46,
+ "end": 15976.52,
+ "text": "a"
+ },
+ {
+ "id": 34629,
+ "start": 15976.52,
+ "end": 15977.6,
+ "text": "dramatic"
+ },
+ {
+ "id": 34630,
+ "start": 15977.6,
+ "end": 15977.98,
+ "text": "fall"
+ },
+ {
+ "id": 34631,
+ "start": 15977.98,
+ "end": 15978.2,
+ "text": "off."
+ },
+ {
+ "id": 34632,
+ "start": 15978.2,
+ "end": 15978.38,
+ "text": "A"
+ },
+ {
+ "id": 34633,
+ "start": 15978.38,
+ "end": 15978.66,
+ "text": "number"
+ },
+ {
+ "id": 34634,
+ "start": 15978.66,
+ "end": 15978.74,
+ "text": "of"
+ },
+ {
+ "id": 34635,
+ "start": 15978.74,
+ "end": 15978.94,
+ "text": "people"
+ },
+ {
+ "id": 34636,
+ "start": 15978.94,
+ "end": 15979.46,
+ "text": "utilize"
+ },
+ {
+ "id": 34637,
+ "start": 15979.46,
+ "end": 15979.96,
+ "text": "Facebook"
+ },
+ {
+ "id": 34638,
+ "start": 15979.96,
+ "end": 15980.32,
+ "text": "because"
+ },
+ {
+ "id": 34639,
+ "start": 15980.32,
+ "end": 15980.6,
+ "text": "these"
+ },
+ {
+ "id": 34640,
+ "start": 15980.6,
+ "end": 15981.36,
+ "text": "concerns"
+ },
+ {
+ "id": 34641,
+ "start": 15981.36,
+ "end": 15982.36,
+ "text": "Senator"
+ },
+ {
+ "id": 34642,
+ "start": 15982.36,
+ "end": 15982.54,
+ "text": "there"
+ },
+ {
+ "id": 34643,
+ "start": 15982.54,
+ "end": 15982.72,
+ "text": "has"
+ },
+ {
+ "id": 34644,
+ "start": 15982.72,
+ "end": 15983.84,
+ "text": "not."
+ },
+ {
+ "id": 34645,
+ "start": 15983.84,
+ "end": 15984.8,
+ "text": "Do"
+ },
+ {
+ "id": 34646,
+ "start": 15984.8,
+ "end": 15984.92,
+ "text": "you"
+ },
+ {
+ "id": 34647,
+ "start": 15984.92,
+ "end": 15985.04,
+ "text": "have"
+ },
+ {
+ "id": 34648,
+ "start": 15985.04,
+ "end": 15985.12,
+ "text": "an"
+ },
+ {
+ "id": 34649,
+ "start": 15985.12,
+ "end": 15985.26,
+ "text": "even"
+ },
+ {
+ "id": 34650,
+ "start": 15985.26,
+ "end": 15985.56,
+ "text": "witness?"
+ },
+ {
+ "id": 34651,
+ "start": 15985.56,
+ "end": 15988.14,
+ "text": "Any"
+ },
+ {
+ "id": 34652,
+ "start": 15988.14,
+ "end": 15988.64,
+ "text": "senator?"
+ },
+ {
+ "id": 34653,
+ "start": 15988.64,
+ "end": 15989.02,
+ "text": "There"
+ },
+ {
+ "id": 34654,
+ "start": 15989.02,
+ "end": 15989.22,
+ "text": "was"
+ },
+ {
+ "id": 34655,
+ "start": 15989.22,
+ "end": 15989.82,
+ "text": "a"
+ },
+ {
+ "id": 34656,
+ "start": 15989.82,
+ "end": 15990.16,
+ "text": "movement"
+ },
+ {
+ "id": 34657,
+ "start": 15990.16,
+ "end": 15990.36,
+ "text": "where"
+ },
+ {
+ "id": 34658,
+ "start": 15990.36,
+ "end": 15990.56,
+ "text": "some"
+ },
+ {
+ "id": 34659,
+ "start": 15990.56,
+ "end": 15990.8,
+ "text": "people"
+ },
+ {
+ "id": 34660,
+ "start": 15990.8,
+ "end": 15991.04,
+ "text": "were"
+ },
+ {
+ "id": 34661,
+ "start": 15991.04,
+ "end": 15991.58,
+ "text": "encouraging"
+ },
+ {
+ "id": 34662,
+ "start": 15991.58,
+ "end": 15991.8,
+ "text": "their"
+ },
+ {
+ "id": 34663,
+ "start": 15991.8,
+ "end": 15992.18,
+ "text": "friends"
+ },
+ {
+ "id": 34664,
+ "start": 15992.18,
+ "end": 15992.5,
+ "text": "to"
+ },
+ {
+ "id": 34665,
+ "start": 15992.5,
+ "end": 15993.48,
+ "text": "delete"
+ },
+ {
+ "id": 34666,
+ "start": 15993.48,
+ "end": 15993.64,
+ "text": "their"
+ },
+ {
+ "id": 34667,
+ "start": 15993.64,
+ "end": 15994.04,
+ "text": "account."
+ },
+ {
+ "id": 34668,
+ "start": 15994.04,
+ "end": 15995.18,
+ "text": "And"
+ },
+ {
+ "id": 34669,
+ "start": 15995.18,
+ "end": 15995.42,
+ "text": "I"
+ },
+ {
+ "id": 34670,
+ "start": 15995.42,
+ "end": 15996.32,
+ "text": "think"
+ },
+ {
+ "id": 34671,
+ "start": 15996.32,
+ "end": 15996.48,
+ "text": "that"
+ },
+ {
+ "id": 34672,
+ "start": 15996.48,
+ "end": 15996.7,
+ "text": "that"
+ },
+ {
+ "id": 34673,
+ "start": 15996.7,
+ "end": 15996.88,
+ "text": "got"
+ },
+ {
+ "id": 34674,
+ "start": 15996.88,
+ "end": 15997.14,
+ "text": "shared"
+ },
+ {
+ "id": 34675,
+ "start": 15997.14,
+ "end": 15997.22,
+ "text": "a"
+ },
+ {
+ "id": 34676,
+ "start": 15997.22,
+ "end": 15997.46,
+ "text": "bunch."
+ },
+ {
+ "id": 34677,
+ "start": 15997.46,
+ "end": 15997.86,
+ "text": "So"
+ },
+ {
+ "id": 34678,
+ "start": 15997.86,
+ "end": 15998.02,
+ "text": "it's"
+ },
+ {
+ "id": 34679,
+ "start": 15998.02,
+ "end": 15998.18,
+ "text": "kind"
+ },
+ {
+ "id": 34680,
+ "start": 15998.18,
+ "end": 15998.26,
+ "text": "of"
+ },
+ {
+ "id": 34681,
+ "start": 15998.26,
+ "end": 15998.46,
+ "text": "safe"
+ },
+ {
+ "id": 34682,
+ "start": 15998.46,
+ "end": 15998.56,
+ "text": "to"
+ },
+ {
+ "id": 34683,
+ "start": 15998.56,
+ "end": 15998.74,
+ "text": "say"
+ },
+ {
+ "id": 34684,
+ "start": 15998.74,
+ "end": 15998.94,
+ "text": "that"
+ },
+ {
+ "id": 34685,
+ "start": 15998.94,
+ "end": 15999.52,
+ "text": "Facebook"
+ },
+ {
+ "id": 34686,
+ "start": 15999.52,
+ "end": 15999.86,
+ "text": "users"
+ },
+ {
+ "id": 34687,
+ "start": 15999.86,
+ "end": 16000.06,
+ "text": "don't"
+ },
+ {
+ "id": 34688,
+ "start": 16000.06,
+ "end": 16000.3,
+ "text": "seem"
+ },
+ {
+ "id": 34689,
+ "start": 16000.3,
+ "end": 16000.38,
+ "text": "to"
+ },
+ {
+ "id": 34690,
+ "start": 16000.38,
+ "end": 16000.48,
+ "text": "be"
+ },
+ {
+ "id": 34691,
+ "start": 16000.48,
+ "end": 16001.38,
+ "text": "overly"
+ },
+ {
+ "id": 34692,
+ "start": 16001.38,
+ "end": 16002.34,
+ "text": "concerned"
+ },
+ {
+ "id": 34693,
+ "start": 16002.34,
+ "end": 16002.66,
+ "text": "about"
+ },
+ {
+ "id": 34694,
+ "start": 16002.66,
+ "end": 16003.12,
+ "text": "all"
+ },
+ {
+ "id": 34695,
+ "start": 16003.12,
+ "end": 16003.34,
+ "text": "these"
+ },
+ {
+ "id": 34696,
+ "start": 16003.34,
+ "end": 16003.98,
+ "text": "revelations."
+ },
+ {
+ "id": 34697,
+ "start": 16003.98,
+ "end": 16004.62,
+ "text": "Although"
+ },
+ {
+ "id": 34698,
+ "start": 16004.62,
+ "end": 16004.96,
+ "text": "obviously"
+ },
+ {
+ "id": 34699,
+ "start": 16004.96,
+ "end": 16005.38,
+ "text": "Congress"
+ },
+ {
+ "id": 34700,
+ "start": 16005.38,
+ "end": 16005.96,
+ "text": "apparently"
+ },
+ {
+ "id": 34701,
+ "start": 16005.96,
+ "end": 16008.14,
+ "text": "is"
+ },
+ {
+ "id": 34702,
+ "start": 16008.14,
+ "end": 16009.12,
+ "text": "well,"
+ },
+ {
+ "id": 34703,
+ "start": 16009.12,
+ "end": 16009.58,
+ "text": "Senator,"
+ },
+ {
+ "id": 34704,
+ "start": 16009.58,
+ "end": 16012.2,
+ "text": "I"
+ },
+ {
+ "id": 34705,
+ "start": 16012.2,
+ "end": 16012.4,
+ "text": "think"
+ },
+ {
+ "id": 34706,
+ "start": 16012.4,
+ "end": 16012.64,
+ "text": "people"
+ },
+ {
+ "id": 34707,
+ "start": 16012.64,
+ "end": 16012.8,
+ "text": "are"
+ },
+ {
+ "id": 34708,
+ "start": 16012.8,
+ "end": 16013.2,
+ "text": "concerned"
+ },
+ {
+ "id": 34709,
+ "start": 16013.2,
+ "end": 16013.4,
+ "text": "about"
+ },
+ {
+ "id": 34710,
+ "start": 16013.4,
+ "end": 16013.52,
+ "text": "it"
+ },
+ {
+ "id": 34711,
+ "start": 16013.52,
+ "end": 16013.62,
+ "text": "and"
+ },
+ {
+ "id": 34712,
+ "start": 16013.62,
+ "end": 16013.68,
+ "text": "I"
+ },
+ {
+ "id": 34713,
+ "start": 16013.68,
+ "end": 16013.86,
+ "text": "think"
+ },
+ {
+ "id": 34714,
+ "start": 16013.86,
+ "end": 16014.06,
+ "text": "these"
+ },
+ {
+ "id": 34715,
+ "start": 16014.06,
+ "end": 16014.22,
+ "text": "are"
+ },
+ {
+ "id": 34716,
+ "start": 16014.22,
+ "end": 16014.78,
+ "text": "incredibly"
+ },
+ {
+ "id": 34717,
+ "start": 16014.78,
+ "end": 16015.12,
+ "text": "important"
+ },
+ {
+ "id": 34718,
+ "start": 16015.12,
+ "end": 16015.42,
+ "text": "issues"
+ },
+ {
+ "id": 34719,
+ "start": 16015.42,
+ "end": 16015.62,
+ "text": "that"
+ },
+ {
+ "id": 34720,
+ "start": 16015.62,
+ "end": 16015.84,
+ "text": "people"
+ },
+ {
+ "id": 34721,
+ "start": 16015.84,
+ "end": 16016.06,
+ "text": "want"
+ },
+ {
+ "id": 34722,
+ "start": 16016.06,
+ "end": 16016.18,
+ "text": "us"
+ },
+ {
+ "id": 34723,
+ "start": 16016.18,
+ "end": 16016.32,
+ "text": "to"
+ },
+ {
+ "id": 34724,
+ "start": 16016.32,
+ "end": 16017,
+ "text": "address."
+ },
+ {
+ "id": 34725,
+ "start": 16017,
+ "end": 16017.98,
+ "text": "And"
+ },
+ {
+ "id": 34726,
+ "start": 16017.98,
+ "end": 16018.06,
+ "text": "I"
+ },
+ {
+ "id": 34727,
+ "start": 16018.06,
+ "end": 16018.24,
+ "text": "think"
+ },
+ {
+ "id": 34728,
+ "start": 16018.24,
+ "end": 16018.44,
+ "text": "people"
+ },
+ {
+ "id": 34729,
+ "start": 16018.44,
+ "end": 16018.58,
+ "text": "have"
+ },
+ {
+ "id": 34730,
+ "start": 16018.58,
+ "end": 16018.74,
+ "text": "told"
+ },
+ {
+ "id": 34731,
+ "start": 16018.74,
+ "end": 16018.86,
+ "text": "us"
+ },
+ {
+ "id": 34732,
+ "start": 16018.86,
+ "end": 16019.08,
+ "text": "that"
+ },
+ {
+ "id": 34733,
+ "start": 16019.08,
+ "end": 16019.34,
+ "text": "very"
+ },
+ {
+ "id": 34734,
+ "start": 16019.34,
+ "end": 16019.66,
+ "text": "clearly"
+ },
+ {
+ "id": 34735,
+ "start": 16019.66,
+ "end": 16019.88,
+ "text": "it"
+ },
+ {
+ "id": 34736,
+ "start": 16019.88,
+ "end": 16020.06,
+ "text": "seems"
+ },
+ {
+ "id": 34737,
+ "start": 16020.06,
+ "end": 16020.2,
+ "text": "like"
+ },
+ {
+ "id": 34738,
+ "start": 16020.2,
+ "end": 16020.6,
+ "text": "Facebook"
+ },
+ {
+ "id": 34739,
+ "start": 16020.6,
+ "end": 16020.94,
+ "text": "users"
+ },
+ {
+ "id": 34740,
+ "start": 16020.94,
+ "end": 16021.46,
+ "text": "still"
+ },
+ {
+ "id": 34741,
+ "start": 16021.46,
+ "end": 16021.58,
+ "text": "want"
+ },
+ {
+ "id": 34742,
+ "start": 16021.58,
+ "end": 16021.66,
+ "text": "to"
+ },
+ {
+ "id": 34743,
+ "start": 16021.66,
+ "end": 16021.78,
+ "text": "use"
+ },
+ {
+ "id": 34744,
+ "start": 16021.78,
+ "end": 16021.9,
+ "text": "the"
+ },
+ {
+ "id": 34745,
+ "start": 16021.9,
+ "end": 16022.4,
+ "text": "platform"
+ },
+ {
+ "id": 34746,
+ "start": 16022.4,
+ "end": 16022.62,
+ "text": "because"
+ },
+ {
+ "id": 34747,
+ "start": 16022.62,
+ "end": 16022.78,
+ "text": "they"
+ },
+ {
+ "id": 34748,
+ "start": 16022.78,
+ "end": 16023.04,
+ "text": "enjoy"
+ },
+ {
+ "id": 34749,
+ "start": 16023.04,
+ "end": 16023.36,
+ "text": "sharing"
+ },
+ {
+ "id": 34750,
+ "start": 16023.36,
+ "end": 16023.8,
+ "text": "photos."
+ },
+ {
+ "id": 34751,
+ "start": 16023.8,
+ "end": 16023.9,
+ "text": "And"
+ },
+ {
+ "id": 34752,
+ "start": 16023.9,
+ "end": 16024.38,
+ "text": "they"
+ },
+ {
+ "id": 34753,
+ "start": 16024.38,
+ "end": 16024.98,
+ "text": "share"
+ },
+ {
+ "id": 34754,
+ "start": 16024.98,
+ "end": 16025.12,
+ "text": "the"
+ },
+ {
+ "id": 34755,
+ "start": 16025.12,
+ "end": 16025.96,
+ "text": "connectivity"
+ },
+ {
+ "id": 34756,
+ "start": 16025.96,
+ "end": 16026.14,
+ "text": "with"
+ },
+ {
+ "id": 34757,
+ "start": 16026.14,
+ "end": 16026.24,
+ "text": "the"
+ },
+ {
+ "id": 34758,
+ "start": 16026.24,
+ "end": 16026.5,
+ "text": "family"
+ },
+ {
+ "id": 34759,
+ "start": 16026.5,
+ "end": 16026.8,
+ "text": "members."
+ },
+ {
+ "id": 34760,
+ "start": 16026.8,
+ "end": 16026.98,
+ "text": "That"
+ },
+ {
+ "id": 34761,
+ "start": 16026.98,
+ "end": 16027.16,
+ "text": "type"
+ },
+ {
+ "id": 34762,
+ "start": 16027.16,
+ "end": 16027.26,
+ "text": "of"
+ },
+ {
+ "id": 34763,
+ "start": 16027.26,
+ "end": 16027.42,
+ "text": "thing."
+ },
+ {
+ "id": 34764,
+ "start": 16027.42,
+ "end": 16027.5,
+ "text": "And"
+ },
+ {
+ "id": 34765,
+ "start": 16027.5,
+ "end": 16027.92,
+ "text": "that"
+ },
+ {
+ "id": 34766,
+ "start": 16027.92,
+ "end": 16028.92,
+ "text": "override"
+ },
+ {
+ "id": 34767,
+ "start": 16028.92,
+ "end": 16029.08,
+ "text": "their"
+ },
+ {
+ "id": 34768,
+ "start": 16029.08,
+ "end": 16029.42,
+ "text": "concerns"
+ },
+ {
+ "id": 34769,
+ "start": 16029.42,
+ "end": 16029.52,
+ "text": "of"
+ },
+ {
+ "id": 34770,
+ "start": 16029.52,
+ "end": 16029.66,
+ "text": "our"
+ },
+ {
+ "id": 34771,
+ "start": 16029.66,
+ "end": 16030.14,
+ "text": "privacy"
+ },
+ {
+ "id": 34772,
+ "start": 16030.14,
+ "end": 16031,
+ "text": "you"
+ },
+ {
+ "id": 34773,
+ "start": 16031,
+ "end": 16031.22,
+ "text": "talk"
+ },
+ {
+ "id": 34774,
+ "start": 16031.22,
+ "end": 16031.4,
+ "text": "about."
+ },
+ {
+ "id": 34775,
+ "start": 16031.4,
+ "end": 16031.54,
+ "text": "The"
+ },
+ {
+ "id": 34776,
+ "start": 16031.54,
+ "end": 16031.88,
+ "text": "user"
+ },
+ {
+ "id": 34777,
+ "start": 16031.88,
+ "end": 16032.14,
+ "text": "owns"
+ },
+ {
+ "id": 34778,
+ "start": 16032.14,
+ "end": 16032.3,
+ "text": "the"
+ },
+ {
+ "id": 34779,
+ "start": 16032.3,
+ "end": 16032.68,
+ "text": "data."
+ },
+ {
+ "id": 34780,
+ "start": 16032.68,
+ "end": 16033.34,
+ "text": "The"
+ },
+ {
+ "id": 34781,
+ "start": 16033.34,
+ "end": 16034.3,
+ "text": "number"
+ },
+ {
+ "id": 34782,
+ "start": 16034.3,
+ "end": 16034.36,
+ "text": "of"
+ },
+ {
+ "id": 34783,
+ "start": 16034.36,
+ "end": 16034.82,
+ "text": "proposals"
+ },
+ {
+ "id": 34784,
+ "start": 16034.82,
+ "end": 16034.96,
+ "text": "of"
+ },
+ {
+ "id": 34785,
+ "start": 16034.96,
+ "end": 16035.2,
+ "text": "having"
+ },
+ {
+ "id": 34786,
+ "start": 16035.2,
+ "end": 16035.32,
+ "text": "that"
+ },
+ {
+ "id": 34787,
+ "start": 16035.32,
+ "end": 16035.6,
+ "text": "data"
+ },
+ {
+ "id": 34788,
+ "start": 16035.6,
+ "end": 16035.78,
+ "text": "stay"
+ },
+ {
+ "id": 34789,
+ "start": 16035.78,
+ "end": 16035.9,
+ "text": "at"
+ },
+ {
+ "id": 34790,
+ "start": 16035.9,
+ "end": 16036,
+ "text": "the"
+ },
+ {
+ "id": 34791,
+ "start": 16036,
+ "end": 16036.3,
+ "text": "user"
+ },
+ {
+ "id": 34792,
+ "start": 16036.3,
+ "end": 16036.42,
+ "text": "and"
+ },
+ {
+ "id": 34793,
+ "start": 16036.42,
+ "end": 16036.68,
+ "text": "allow"
+ },
+ {
+ "id": 34794,
+ "start": 16036.68,
+ "end": 16036.82,
+ "text": "the"
+ },
+ {
+ "id": 34795,
+ "start": 16036.82,
+ "end": 16037.34,
+ "text": "user"
+ },
+ {
+ "id": 34796,
+ "start": 16037.34,
+ "end": 16037.62,
+ "text": "to"
+ },
+ {
+ "id": 34797,
+ "start": 16037.62,
+ "end": 16038.1,
+ "text": "monetize"
+ },
+ {
+ "id": 34798,
+ "start": 16038.1,
+ "end": 16038.2,
+ "text": "it"
+ },
+ {
+ "id": 34799,
+ "start": 16038.2,
+ "end": 16039.16,
+ "text": "themselves."
+ },
+ {
+ "id": 34800,
+ "start": 16039.16,
+ "end": 16039.74,
+ "text": "Your"
+ },
+ {
+ "id": 34801,
+ "start": 16039.74,
+ "end": 16040.12,
+ "text": "Co,"
+ },
+ {
+ "id": 34802,
+ "start": 16040.12,
+ "end": 16041.12,
+ "text": "miss"
+ },
+ {
+ "id": 34803,
+ "start": 16041.12,
+ "end": 16041.52,
+ "text": "Sandberg"
+ },
+ {
+ "id": 34804,
+ "start": 16041.52,
+ "end": 16042.22,
+ "text": "mentioned"
+ },
+ {
+ "id": 34805,
+ "start": 16042.22,
+ "end": 16042.8,
+ "text": "possibly"
+ },
+ {
+ "id": 34806,
+ "start": 16042.8,
+ "end": 16043.26,
+ "text": "if"
+ },
+ {
+ "id": 34807,
+ "start": 16043.26,
+ "end": 16043.56,
+ "text": "you"
+ },
+ {
+ "id": 34808,
+ "start": 16043.56,
+ "end": 16043.86,
+ "text": "can't"
+ },
+ {
+ "id": 34809,
+ "start": 16043.86,
+ "end": 16044.32,
+ "text": "utilize"
+ },
+ {
+ "id": 34810,
+ "start": 16044.32,
+ "end": 16044.5,
+ "text": "that"
+ },
+ {
+ "id": 34811,
+ "start": 16044.5,
+ "end": 16044.84,
+ "text": "data"
+ },
+ {
+ "id": 34812,
+ "start": 16044.84,
+ "end": 16045.12,
+ "text": "to"
+ },
+ {
+ "id": 34813,
+ "start": 16045.12,
+ "end": 16045.32,
+ "text": "sell"
+ },
+ {
+ "id": 34814,
+ "start": 16045.32,
+ "end": 16046.04,
+ "text": "advertising."
+ },
+ {
+ "id": 34815,
+ "start": 16046.04,
+ "end": 16047.22,
+ "text": "Perhaps"
+ },
+ {
+ "id": 34816,
+ "start": 16047.22,
+ "end": 16047.6,
+ "text": "we"
+ },
+ {
+ "id": 34817,
+ "start": 16047.6,
+ "end": 16047.88,
+ "text": "charge"
+ },
+ {
+ "id": 34818,
+ "start": 16047.88,
+ "end": 16048.22,
+ "text": "people"
+ },
+ {
+ "id": 34819,
+ "start": 16048.22,
+ "end": 16048.5,
+ "text": "to"
+ },
+ {
+ "id": 34820,
+ "start": 16048.5,
+ "end": 16049.28,
+ "text": "go"
+ },
+ {
+ "id": 34821,
+ "start": 16049.28,
+ "end": 16049.46,
+ "text": "into"
+ },
+ {
+ "id": 34822,
+ "start": 16049.46,
+ "end": 16049.84,
+ "text": "Facebook."
+ },
+ {
+ "id": 34823,
+ "start": 16049.84,
+ "end": 16050.12,
+ "text": "Have"
+ },
+ {
+ "id": 34824,
+ "start": 16050.12,
+ "end": 16050.3,
+ "text": "you"
+ },
+ {
+ "id": 34825,
+ "start": 16050.3,
+ "end": 16050.76,
+ "text": "thought"
+ },
+ {
+ "id": 34826,
+ "start": 16050.76,
+ "end": 16050.96,
+ "text": "about"
+ },
+ {
+ "id": 34827,
+ "start": 16050.96,
+ "end": 16051.2,
+ "text": "that"
+ },
+ {
+ "id": 34828,
+ "start": 16051.2,
+ "end": 16051.54,
+ "text": "model?"
+ },
+ {
+ "id": 34829,
+ "start": 16051.54,
+ "end": 16051.84,
+ "text": "Where"
+ },
+ {
+ "id": 34830,
+ "start": 16051.84,
+ "end": 16052.64,
+ "text": "the"
+ },
+ {
+ "id": 34831,
+ "start": 16052.64,
+ "end": 16053.26,
+ "text": "user"
+ },
+ {
+ "id": 34832,
+ "start": 16053.26,
+ "end": 16053.68,
+ "text": "data"
+ },
+ {
+ "id": 34833,
+ "start": 16053.68,
+ "end": 16054.18,
+ "text": "is"
+ },
+ {
+ "id": 34834,
+ "start": 16054.18,
+ "end": 16054.46,
+ "text": "actually"
+ },
+ {
+ "id": 34835,
+ "start": 16054.46,
+ "end": 16054.96,
+ "text": "monetized"
+ },
+ {
+ "id": 34836,
+ "start": 16054.96,
+ "end": 16055.14,
+ "text": "by"
+ },
+ {
+ "id": 34837,
+ "start": 16055.14,
+ "end": 16055.26,
+ "text": "the"
+ },
+ {
+ "id": 34838,
+ "start": 16055.26,
+ "end": 16055.54,
+ "text": "actual"
+ },
+ {
+ "id": 34839,
+ "start": 16055.54,
+ "end": 16058.3,
+ "text": "user."
+ },
+ {
+ "id": 34840,
+ "start": 16058.3,
+ "end": 16060.9,
+ "text": "Senator"
+ },
+ {
+ "id": 34841,
+ "start": 16060.9,
+ "end": 16062.04,
+ "text": "I'm"
+ },
+ {
+ "id": 34842,
+ "start": 16062.04,
+ "end": 16062.28,
+ "text": "not"
+ },
+ {
+ "id": 34843,
+ "start": 16062.28,
+ "end": 16062.5,
+ "text": "sure"
+ },
+ {
+ "id": 34844,
+ "start": 16062.5,
+ "end": 16062.96,
+ "text": "exactly"
+ },
+ {
+ "id": 34845,
+ "start": 16062.96,
+ "end": 16063.2,
+ "text": "how"
+ },
+ {
+ "id": 34846,
+ "start": 16063.2,
+ "end": 16063.48,
+ "text": "it"
+ },
+ {
+ "id": 34847,
+ "start": 16063.48,
+ "end": 16063.72,
+ "text": "would"
+ },
+ {
+ "id": 34848,
+ "start": 16063.72,
+ "end": 16063.88,
+ "text": "work"
+ },
+ {
+ "id": 34849,
+ "start": 16063.88,
+ "end": 16064,
+ "text": "for"
+ },
+ {
+ "id": 34850,
+ "start": 16064,
+ "end": 16064.06,
+ "text": "it"
+ },
+ {
+ "id": 34851,
+ "start": 16064.06,
+ "end": 16064.14,
+ "text": "to"
+ },
+ {
+ "id": 34852,
+ "start": 16064.14,
+ "end": 16064.24,
+ "text": "be"
+ },
+ {
+ "id": 34853,
+ "start": 16064.24,
+ "end": 16064.82,
+ "text": "monetized"
+ },
+ {
+ "id": 34854,
+ "start": 16064.82,
+ "end": 16065.04,
+ "text": "by"
+ },
+ {
+ "id": 34855,
+ "start": 16065.04,
+ "end": 16066.2,
+ "text": "the"
+ },
+ {
+ "id": 34856,
+ "start": 16066.2,
+ "end": 16066.6,
+ "text": "person"
+ },
+ {
+ "id": 34857,
+ "start": 16066.6,
+ "end": 16067.12,
+ "text": "directly"
+ },
+ {
+ "id": 34858,
+ "start": 16067.12,
+ "end": 16068.28,
+ "text": "in"
+ },
+ {
+ "id": 34859,
+ "start": 16068.28,
+ "end": 16068.8,
+ "text": "general,"
+ },
+ {
+ "id": 34860,
+ "start": 16068.8,
+ "end": 16069.92,
+ "text": "where"
+ },
+ {
+ "id": 34861,
+ "start": 16069.92,
+ "end": 16070.78,
+ "text": "we"
+ },
+ {
+ "id": 34862,
+ "start": 16070.78,
+ "end": 16071.12,
+ "text": "believe"
+ },
+ {
+ "id": 34863,
+ "start": 16071.12,
+ "end": 16071.24,
+ "text": "that"
+ },
+ {
+ "id": 34864,
+ "start": 16071.24,
+ "end": 16071.36,
+ "text": "the"
+ },
+ {
+ "id": 34865,
+ "start": 16071.36,
+ "end": 16071.62,
+ "text": "ads"
+ },
+ {
+ "id": 34866,
+ "start": 16071.62,
+ "end": 16071.92,
+ "text": "model"
+ },
+ {
+ "id": 34867,
+ "start": 16071.92,
+ "end": 16072.06,
+ "text": "is"
+ },
+ {
+ "id": 34868,
+ "start": 16072.06,
+ "end": 16072.2,
+ "text": "the"
+ },
+ {
+ "id": 34869,
+ "start": 16072.2,
+ "end": 16072.42,
+ "text": "right"
+ },
+ {
+ "id": 34870,
+ "start": 16072.42,
+ "end": 16072.64,
+ "text": "one"
+ },
+ {
+ "id": 34871,
+ "start": 16072.64,
+ "end": 16072.8,
+ "text": "for"
+ },
+ {
+ "id": 34872,
+ "start": 16072.8,
+ "end": 16072.94,
+ "text": "us"
+ },
+ {
+ "id": 34873,
+ "start": 16072.94,
+ "end": 16073.18,
+ "text": "because"
+ },
+ {
+ "id": 34874,
+ "start": 16073.18,
+ "end": 16073.28,
+ "text": "it"
+ },
+ {
+ "id": 34875,
+ "start": 16073.28,
+ "end": 16073.62,
+ "text": "aligns"
+ },
+ {
+ "id": 34876,
+ "start": 16073.62,
+ "end": 16073.78,
+ "text": "with"
+ },
+ {
+ "id": 34877,
+ "start": 16073.78,
+ "end": 16073.92,
+ "text": "our"
+ },
+ {
+ "id": 34878,
+ "start": 16073.92,
+ "end": 16074.26,
+ "text": "social"
+ },
+ {
+ "id": 34879,
+ "start": 16074.26,
+ "end": 16074.56,
+ "text": "mission"
+ },
+ {
+ "id": 34880,
+ "start": 16074.56,
+ "end": 16074.68,
+ "text": "of"
+ },
+ {
+ "id": 34881,
+ "start": 16074.68,
+ "end": 16074.96,
+ "text": "trying"
+ },
+ {
+ "id": 34882,
+ "start": 16074.96,
+ "end": 16075.06,
+ "text": "to"
+ },
+ {
+ "id": 34883,
+ "start": 16075.06,
+ "end": 16075.34,
+ "text": "connect"
+ },
+ {
+ "id": 34884,
+ "start": 16075.34,
+ "end": 16075.7,
+ "text": "everyone"
+ },
+ {
+ "id": 34885,
+ "start": 16075.7,
+ "end": 16075.82,
+ "text": "and"
+ },
+ {
+ "id": 34886,
+ "start": 16075.82,
+ "end": 16075.98,
+ "text": "bring"
+ },
+ {
+ "id": 34887,
+ "start": 16075.98,
+ "end": 16076.1,
+ "text": "the"
+ },
+ {
+ "id": 34888,
+ "start": 16076.1,
+ "end": 16076.32,
+ "text": "world"
+ },
+ {
+ "id": 34889,
+ "start": 16076.32,
+ "end": 16076.64,
+ "text": "closer"
+ },
+ {
+ "id": 34890,
+ "start": 16076.64,
+ "end": 16076.98,
+ "text": "together,"
+ },
+ {
+ "id": 34891,
+ "start": 16076.98,
+ "end": 16077.32,
+ "text": "but"
+ },
+ {
+ "id": 34892,
+ "start": 16077.32,
+ "end": 16077.54,
+ "text": "you're"
+ },
+ {
+ "id": 34893,
+ "start": 16077.54,
+ "end": 16077.72,
+ "text": "where"
+ },
+ {
+ "id": 34894,
+ "start": 16077.72,
+ "end": 16077.98,
+ "text": "people"
+ },
+ {
+ "id": 34895,
+ "start": 16077.98,
+ "end": 16078.3,
+ "text": "making"
+ },
+ {
+ "id": 34896,
+ "start": 16078.3,
+ "end": 16078.42,
+ "text": "that"
+ },
+ {
+ "id": 34897,
+ "start": 16078.42,
+ "end": 16078.58,
+ "text": "kind"
+ },
+ {
+ "id": 34898,
+ "start": 16078.58,
+ "end": 16078.66,
+ "text": "of"
+ },
+ {
+ "id": 34899,
+ "start": 16078.66,
+ "end": 16079.14,
+ "text": "proposal,"
+ },
+ {
+ "id": 34900,
+ "start": 16079.14,
+ "end": 16079.46,
+ "text": "correct?"
+ },
+ {
+ "id": 34901,
+ "start": 16079.46,
+ "end": 16080.4,
+ "text": "Yeah,"
+ },
+ {
+ "id": 34902,
+ "start": 16080.4,
+ "end": 16080.68,
+ "text": "I"
+ },
+ {
+ "id": 34903,
+ "start": 16080.68,
+ "end": 16081.02,
+ "text": "send"
+ },
+ {
+ "id": 34904,
+ "start": 16081.02,
+ "end": 16081.16,
+ "text": "her."
+ },
+ {
+ "id": 34905,
+ "start": 16081.16,
+ "end": 16081.28,
+ "text": "A"
+ },
+ {
+ "id": 34906,
+ "start": 16081.28,
+ "end": 16081.58,
+ "text": "number"
+ },
+ {
+ "id": 34907,
+ "start": 16081.58,
+ "end": 16081.66,
+ "text": "of"
+ },
+ {
+ "id": 34908,
+ "start": 16081.66,
+ "end": 16082.54,
+ "text": "people"
+ },
+ {
+ "id": 34909,
+ "start": 16082.54,
+ "end": 16083.44,
+ "text": "suggest"
+ },
+ {
+ "id": 34910,
+ "start": 16083.44,
+ "end": 16083.86,
+ "text": "that"
+ },
+ {
+ "id": 34911,
+ "start": 16083.86,
+ "end": 16084.5,
+ "text": "that"
+ },
+ {
+ "id": 34912,
+ "start": 16084.5,
+ "end": 16084.78,
+ "text": "we"
+ },
+ {
+ "id": 34913,
+ "start": 16084.78,
+ "end": 16085.16,
+ "text": "should"
+ },
+ {
+ "id": 34914,
+ "start": 16085.16,
+ "end": 16086.22,
+ "text": "offer"
+ },
+ {
+ "id": 34915,
+ "start": 16086.22,
+ "end": 16086.28,
+ "text": "a"
+ },
+ {
+ "id": 34916,
+ "start": 16086.28,
+ "end": 16086.62,
+ "text": "version"
+ },
+ {
+ "id": 34917,
+ "start": 16086.62,
+ "end": 16086.84,
+ "text": "where"
+ },
+ {
+ "id": 34918,
+ "start": 16086.84,
+ "end": 16087.1,
+ "text": "people"
+ },
+ {
+ "id": 34919,
+ "start": 16087.1,
+ "end": 16087.52,
+ "text": "cannot"
+ },
+ {
+ "id": 34920,
+ "start": 16087.52,
+ "end": 16087.7,
+ "text": "have"
+ },
+ {
+ "id": 34921,
+ "start": 16087.7,
+ "end": 16088.06,
+ "text": "ads"
+ },
+ {
+ "id": 34922,
+ "start": 16088.06,
+ "end": 16088.24,
+ "text": "if"
+ },
+ {
+ "id": 34923,
+ "start": 16088.24,
+ "end": 16088.44,
+ "text": "they"
+ },
+ {
+ "id": 34924,
+ "start": 16088.44,
+ "end": 16088.58,
+ "text": "pay"
+ },
+ {
+ "id": 34925,
+ "start": 16088.58,
+ "end": 16088.66,
+ "text": "a"
+ },
+ {
+ "id": 34926,
+ "start": 16088.66,
+ "end": 16088.94,
+ "text": "monthly"
+ },
+ {
+ "id": 34927,
+ "start": 16088.94,
+ "end": 16089.6,
+ "text": "subscription."
+ },
+ {
+ "id": 34928,
+ "start": 16089.6,
+ "end": 16089.88,
+ "text": "And"
+ },
+ {
+ "id": 34929,
+ "start": 16089.88,
+ "end": 16090.88,
+ "text": "certainly"
+ },
+ {
+ "id": 34930,
+ "start": 16090.88,
+ "end": 16090.98,
+ "text": "we"
+ },
+ {
+ "id": 34931,
+ "start": 16090.98,
+ "end": 16091.34,
+ "text": "consider"
+ },
+ {
+ "id": 34932,
+ "start": 16091.34,
+ "end": 16091.7,
+ "text": "ideas"
+ },
+ {
+ "id": 34933,
+ "start": 16091.7,
+ "end": 16091.9,
+ "text": "like"
+ },
+ {
+ "id": 34934,
+ "start": 16091.9,
+ "end": 16092.16,
+ "text": "that."
+ },
+ {
+ "id": 34935,
+ "start": 16092.16,
+ "end": 16092.2,
+ "text": "I"
+ },
+ {
+ "id": 34936,
+ "start": 16092.2,
+ "end": 16092.46,
+ "text": "think"
+ },
+ {
+ "id": 34937,
+ "start": 16092.46,
+ "end": 16092.58,
+ "text": "that"
+ },
+ {
+ "id": 34938,
+ "start": 16092.58,
+ "end": 16092.72,
+ "text": "there"
+ },
+ {
+ "id": 34939,
+ "start": 16092.72,
+ "end": 16092.82,
+ "text": "are"
+ },
+ {
+ "id": 34940,
+ "start": 16092.82,
+ "end": 16093.56,
+ "text": "reasonable"
+ },
+ {
+ "id": 34941,
+ "start": 16093.56,
+ "end": 16093.9,
+ "text": "ideas"
+ },
+ {
+ "id": 34942,
+ "start": 16093.9,
+ "end": 16094.18,
+ "text": "to"
+ },
+ {
+ "id": 34943,
+ "start": 16094.18,
+ "end": 16094.5,
+ "text": "think"
+ },
+ {
+ "id": 34944,
+ "start": 16094.5,
+ "end": 16094.82,
+ "text": "through"
+ },
+ {
+ "id": 34945,
+ "start": 16094.82,
+ "end": 16095.72,
+ "text": "but"
+ },
+ {
+ "id": 34946,
+ "start": 16095.72,
+ "end": 16096.28,
+ "text": "overall,"
+ },
+ {
+ "id": 34947,
+ "start": 16096.28,
+ "end": 16097.52,
+ "text": "I"
+ },
+ {
+ "id": 34948,
+ "start": 16097.52,
+ "end": 16097.72,
+ "text": "think"
+ },
+ {
+ "id": 34949,
+ "start": 16097.72,
+ "end": 16097.86,
+ "text": "that"
+ },
+ {
+ "id": 34950,
+ "start": 16097.86,
+ "end": 16098,
+ "text": "the"
+ },
+ {
+ "id": 34951,
+ "start": 16098,
+ "end": 16098.26,
+ "text": "ads"
+ },
+ {
+ "id": 34952,
+ "start": 16098.26,
+ "end": 16098.82,
+ "text": "experience"
+ },
+ {
+ "id": 34953,
+ "start": 16098.82,
+ "end": 16098.96,
+ "text": "is"
+ },
+ {
+ "id": 34954,
+ "start": 16098.96,
+ "end": 16099.22,
+ "text": "going"
+ },
+ {
+ "id": 34955,
+ "start": 16099.22,
+ "end": 16099.36,
+ "text": "to"
+ },
+ {
+ "id": 34956,
+ "start": 16099.36,
+ "end": 16099.58,
+ "text": "be"
+ },
+ {
+ "id": 34957,
+ "start": 16099.58,
+ "end": 16100.44,
+ "text": "the"
+ },
+ {
+ "id": 34958,
+ "start": 16100.44,
+ "end": 16100.62,
+ "text": "best"
+ },
+ {
+ "id": 34959,
+ "start": 16100.62,
+ "end": 16100.86,
+ "text": "one."
+ },
+ {
+ "id": 34960,
+ "start": 16100.86,
+ "end": 16101.04,
+ "text": "I"
+ },
+ {
+ "id": 34961,
+ "start": 16101.04,
+ "end": 16101.22,
+ "text": "think"
+ },
+ {
+ "id": 34962,
+ "start": 16101.22,
+ "end": 16101.34,
+ "text": "in"
+ },
+ {
+ "id": 34963,
+ "start": 16101.34,
+ "end": 16101.68,
+ "text": "general,"
+ },
+ {
+ "id": 34964,
+ "start": 16101.68,
+ "end": 16101.9,
+ "text": "people"
+ },
+ {
+ "id": 34965,
+ "start": 16101.9,
+ "end": 16102.14,
+ "text": "like"
+ },
+ {
+ "id": 34966,
+ "start": 16102.14,
+ "end": 16102.4,
+ "text": "not"
+ },
+ {
+ "id": 34967,
+ "start": 16102.4,
+ "end": 16102.72,
+ "text": "having"
+ },
+ {
+ "id": 34968,
+ "start": 16102.72,
+ "end": 16102.9,
+ "text": "to"
+ },
+ {
+ "id": 34969,
+ "start": 16102.9,
+ "end": 16103.06,
+ "text": "pay"
+ },
+ {
+ "id": 34970,
+ "start": 16103.06,
+ "end": 16103.26,
+ "text": "for"
+ },
+ {
+ "id": 34971,
+ "start": 16103.26,
+ "end": 16103.32,
+ "text": "a"
+ },
+ {
+ "id": 34972,
+ "start": 16103.32,
+ "end": 16103.74,
+ "text": "service."
+ },
+ {
+ "id": 34973,
+ "start": 16103.74,
+ "end": 16104.28,
+ "text": "A"
+ },
+ {
+ "id": 34974,
+ "start": 16104.28,
+ "end": 16104.42,
+ "text": "lot"
+ },
+ {
+ "id": 34975,
+ "start": 16104.42,
+ "end": 16104.52,
+ "text": "of"
+ },
+ {
+ "id": 34976,
+ "start": 16104.52,
+ "end": 16104.7,
+ "text": "people"
+ },
+ {
+ "id": 34977,
+ "start": 16104.7,
+ "end": 16104.9,
+ "text": "can't"
+ },
+ {
+ "id": 34978,
+ "start": 16104.9,
+ "end": 16105.16,
+ "text": "afford"
+ },
+ {
+ "id": 34979,
+ "start": 16105.16,
+ "end": 16105.28,
+ "text": "to"
+ },
+ {
+ "id": 34980,
+ "start": 16105.28,
+ "end": 16105.46,
+ "text": "pay"
+ },
+ {
+ "id": 34981,
+ "start": 16105.46,
+ "end": 16105.6,
+ "text": "for"
+ },
+ {
+ "id": 34982,
+ "start": 16105.6,
+ "end": 16105.66,
+ "text": "a"
+ },
+ {
+ "id": 34983,
+ "start": 16105.66,
+ "end": 16106.02,
+ "text": "service"
+ },
+ {
+ "id": 34984,
+ "start": 16106.02,
+ "end": 16106.3,
+ "text": "around"
+ },
+ {
+ "id": 34985,
+ "start": 16106.3,
+ "end": 16106.4,
+ "text": "the"
+ },
+ {
+ "id": 34986,
+ "start": 16106.4,
+ "end": 16106.66,
+ "text": "world"
+ },
+ {
+ "id": 34987,
+ "start": 16106.66,
+ "end": 16107.26,
+ "text": "and"
+ },
+ {
+ "id": 34988,
+ "start": 16107.26,
+ "end": 16107.46,
+ "text": "this"
+ },
+ {
+ "id": 34989,
+ "start": 16107.46,
+ "end": 16107.82,
+ "text": "aligns"
+ },
+ {
+ "id": 34990,
+ "start": 16107.82,
+ "end": 16108.02,
+ "text": "with"
+ },
+ {
+ "id": 34991,
+ "start": 16108.02,
+ "end": 16108.14,
+ "text": "our"
+ },
+ {
+ "id": 34992,
+ "start": 16108.14,
+ "end": 16108.38,
+ "text": "mission."
+ },
+ {
+ "id": 34993,
+ "start": 16108.38,
+ "end": 16108.54,
+ "text": "The"
+ },
+ {
+ "id": 34994,
+ "start": 16108.54,
+ "end": 16108.76,
+ "text": "best"
+ },
+ {
+ "id": 34995,
+ "start": 16108.76,
+ "end": 16109.14,
+ "text": "you"
+ },
+ {
+ "id": 34996,
+ "start": 16109.14,
+ "end": 16109.32,
+ "text": "as"
+ },
+ {
+ "id": 34997,
+ "start": 16109.32,
+ "end": 16109.44,
+ "text": "for"
+ },
+ {
+ "id": 34998,
+ "start": 16109.44,
+ "end": 16109.76,
+ "text": "sender"
+ },
+ {
+ "id": 34999,
+ "start": 16109.76,
+ "end": 16109.98,
+ "text": "Graham,"
+ },
+ {
+ "id": 35000,
+ "start": 16109.98,
+ "end": 16110.14,
+ "text": "when"
+ },
+ {
+ "id": 35001,
+ "start": 16110.14,
+ "end": 16110.3,
+ "text": "he"
+ },
+ {
+ "id": 35002,
+ "start": 16110.3,
+ "end": 16110.64,
+ "text": "asked"
+ },
+ {
+ "id": 35003,
+ "start": 16110.64,
+ "end": 16110.72,
+ "text": "you"
+ },
+ {
+ "id": 35004,
+ "start": 16110.72,
+ "end": 16110.78,
+ "text": "if"
+ },
+ {
+ "id": 35005,
+ "start": 16110.78,
+ "end": 16110.88,
+ "text": "you"
+ },
+ {
+ "id": 35006,
+ "start": 16110.88,
+ "end": 16111.04,
+ "text": "thought"
+ },
+ {
+ "id": 35007,
+ "start": 16111.04,
+ "end": 16111.2,
+ "text": "you're"
+ },
+ {
+ "id": 35008,
+ "start": 16111.2,
+ "end": 16111.26,
+ "text": "a"
+ },
+ {
+ "id": 35009,
+ "start": 16111.26,
+ "end": 16111.7,
+ "text": "monopoly"
+ },
+ {
+ "id": 35010,
+ "start": 16111.7,
+ "end": 16111.82,
+ "text": "that"
+ },
+ {
+ "id": 35011,
+ "start": 16111.82,
+ "end": 16111.94,
+ "text": "you"
+ },
+ {
+ "id": 35012,
+ "start": 16111.94,
+ "end": 16112.14,
+ "text": "didn't"
+ },
+ {
+ "id": 35013,
+ "start": 16112.14,
+ "end": 16112.38,
+ "text": "think"
+ },
+ {
+ "id": 35014,
+ "start": 16112.38,
+ "end": 16112.66,
+ "text": "so"
+ },
+ {
+ "id": 35015,
+ "start": 16112.66,
+ "end": 16113.46,
+ "text": "you're"
+ },
+ {
+ "id": 35016,
+ "start": 16113.46,
+ "end": 16113.88,
+ "text": "obviously"
+ },
+ {
+ "id": 35017,
+ "start": 16113.88,
+ "end": 16114.42,
+ "text": "a"
+ },
+ {
+ "id": 35018,
+ "start": 16114.42,
+ "end": 16114.64,
+ "text": "big"
+ },
+ {
+ "id": 35019,
+ "start": 16114.64,
+ "end": 16114.9,
+ "text": "player"
+ },
+ {
+ "id": 35020,
+ "start": 16114.9,
+ "end": 16114.98,
+ "text": "in"
+ },
+ {
+ "id": 35021,
+ "start": 16114.98,
+ "end": 16115.14,
+ "text": "this"
+ },
+ {
+ "id": 35022,
+ "start": 16115.14,
+ "end": 16115.9,
+ "text": "space."
+ },
+ {
+ "id": 35023,
+ "start": 16115.9,
+ "end": 16116.5,
+ "text": "That"
+ },
+ {
+ "id": 35024,
+ "start": 16116.5,
+ "end": 16116.94,
+ "text": "might"
+ },
+ {
+ "id": 35025,
+ "start": 16116.94,
+ "end": 16117.06,
+ "text": "be"
+ },
+ {
+ "id": 35026,
+ "start": 16117.06,
+ "end": 16117.22,
+ "text": "an"
+ },
+ {
+ "id": 35027,
+ "start": 16117.22,
+ "end": 16117.6,
+ "text": "area"
+ },
+ {
+ "id": 35028,
+ "start": 16117.6,
+ "end": 16117.76,
+ "text": "for"
+ },
+ {
+ "id": 35029,
+ "start": 16117.76,
+ "end": 16118.32,
+ "text": "competition"
+ },
+ {
+ "id": 35030,
+ "start": 16118.32,
+ "end": 16118.68,
+ "text": "correct"
+ },
+ {
+ "id": 35031,
+ "start": 16118.68,
+ "end": 16118.84,
+ "text": "if"
+ },
+ {
+ "id": 35032,
+ "start": 16118.84,
+ "end": 16119.24,
+ "text": "somebody"
+ },
+ {
+ "id": 35033,
+ "start": 16119.24,
+ "end": 16119.42,
+ "text": "else"
+ },
+ {
+ "id": 35034,
+ "start": 16119.42,
+ "end": 16119.66,
+ "text": "wants"
+ },
+ {
+ "id": 35035,
+ "start": 16119.66,
+ "end": 16119.76,
+ "text": "to"
+ },
+ {
+ "id": 35036,
+ "start": 16119.76,
+ "end": 16120.38,
+ "text": "create"
+ },
+ {
+ "id": 35037,
+ "start": 16120.38,
+ "end": 16120.42,
+ "text": "a"
+ },
+ {
+ "id": 35038,
+ "start": 16120.42,
+ "end": 16120.76,
+ "text": "social"
+ },
+ {
+ "id": 35039,
+ "start": 16120.76,
+ "end": 16121.26,
+ "text": "platform"
+ },
+ {
+ "id": 35040,
+ "start": 16121.26,
+ "end": 16122.04,
+ "text": "that"
+ },
+ {
+ "id": 35041,
+ "start": 16122.04,
+ "end": 16123.18,
+ "text": "allows"
+ },
+ {
+ "id": 35042,
+ "start": 16123.18,
+ "end": 16123.4,
+ "text": "a"
+ },
+ {
+ "id": 35043,
+ "start": 16123.4,
+ "end": 16123.8,
+ "text": "user"
+ },
+ {
+ "id": 35044,
+ "start": 16123.8,
+ "end": 16124.14,
+ "text": "to"
+ },
+ {
+ "id": 35045,
+ "start": 16124.14,
+ "end": 16124.66,
+ "text": "monetize"
+ },
+ {
+ "id": 35046,
+ "start": 16124.66,
+ "end": 16124.88,
+ "text": "your"
+ },
+ {
+ "id": 35047,
+ "start": 16124.88,
+ "end": 16125,
+ "text": "own"
+ },
+ {
+ "id": 35048,
+ "start": 16125,
+ "end": 16126,
+ "text": "data."
+ },
+ {
+ "id": 35049,
+ "start": 16126,
+ "end": 16127,
+ "text": "Senator"
+ },
+ {
+ "id": 35050,
+ "start": 16127,
+ "end": 16127.26,
+ "text": "yes,"
+ },
+ {
+ "id": 35051,
+ "start": 16127.26,
+ "end": 16127.46,
+ "text": "there"
+ },
+ {
+ "id": 35052,
+ "start": 16127.46,
+ "end": 16127.58,
+ "text": "are"
+ },
+ {
+ "id": 35053,
+ "start": 16127.58,
+ "end": 16127.8,
+ "text": "lots"
+ },
+ {
+ "id": 35054,
+ "start": 16127.8,
+ "end": 16127.92,
+ "text": "of"
+ },
+ {
+ "id": 35055,
+ "start": 16127.92,
+ "end": 16128.08,
+ "text": "new"
+ },
+ {
+ "id": 35056,
+ "start": 16128.08,
+ "end": 16128.46,
+ "text": "social"
+ },
+ {
+ "id": 35057,
+ "start": 16128.46,
+ "end": 16128.68,
+ "text": "apps"
+ },
+ {
+ "id": 35058,
+ "start": 16128.68,
+ "end": 16128.84,
+ "text": "all"
+ },
+ {
+ "id": 35059,
+ "start": 16128.84,
+ "end": 16128.96,
+ "text": "the"
+ },
+ {
+ "id": 35060,
+ "start": 16128.96,
+ "end": 16129.18,
+ "text": "time."
+ },
+ {
+ "id": 35061,
+ "start": 16129.18,
+ "end": 16129.32,
+ "text": "And"
+ },
+ {
+ "id": 35062,
+ "start": 16129.32,
+ "end": 16129.78,
+ "text": "as"
+ },
+ {
+ "id": 35063,
+ "start": 16129.78,
+ "end": 16129.9,
+ "text": "I"
+ },
+ {
+ "id": 35064,
+ "start": 16129.9,
+ "end": 16130.08,
+ "text": "said"
+ },
+ {
+ "id": 35065,
+ "start": 16130.08,
+ "end": 16130.38,
+ "text": "before,"
+ },
+ {
+ "id": 35066,
+ "start": 16130.38,
+ "end": 16130.72,
+ "text": "the"
+ },
+ {
+ "id": 35067,
+ "start": 16130.72,
+ "end": 16131.02,
+ "text": "average"
+ },
+ {
+ "id": 35068,
+ "start": 16131.02,
+ "end": 16131.44,
+ "text": "American,"
+ },
+ {
+ "id": 35069,
+ "start": 16131.44,
+ "end": 16131.5,
+ "text": "I"
+ },
+ {
+ "id": 35070,
+ "start": 16131.5,
+ "end": 16131.72,
+ "text": "think"
+ },
+ {
+ "id": 35071,
+ "start": 16131.72,
+ "end": 16132.1,
+ "text": "uses"
+ },
+ {
+ "id": 35072,
+ "start": 16132.1,
+ "end": 16132.34,
+ "text": "eight"
+ },
+ {
+ "id": 35073,
+ "start": 16132.34,
+ "end": 16132.7,
+ "text": "different"
+ },
+ {
+ "id": 35074,
+ "start": 16132.7,
+ "end": 16133.34,
+ "text": "communication"
+ },
+ {
+ "id": 35075,
+ "start": 16133.34,
+ "end": 16133.48,
+ "text": "and"
+ },
+ {
+ "id": 35076,
+ "start": 16133.48,
+ "end": 16133.84,
+ "text": "social"
+ },
+ {
+ "id": 35077,
+ "start": 16133.84,
+ "end": 16134.08,
+ "text": "apps."
+ },
+ {
+ "id": 35078,
+ "start": 16134.08,
+ "end": 16134.74,
+ "text": "So"
+ },
+ {
+ "id": 35079,
+ "start": 16134.74,
+ "end": 16135,
+ "text": "there's"
+ },
+ {
+ "id": 35080,
+ "start": 16135,
+ "end": 16135.06,
+ "text": "a"
+ },
+ {
+ "id": 35081,
+ "start": 16135.06,
+ "end": 16135.22,
+ "text": "lot"
+ },
+ {
+ "id": 35082,
+ "start": 16135.22,
+ "end": 16135.32,
+ "text": "of"
+ },
+ {
+ "id": 35083,
+ "start": 16135.32,
+ "end": 16135.62,
+ "text": "different"
+ },
+ {
+ "id": 35084,
+ "start": 16135.62,
+ "end": 16135.98,
+ "text": "choice."
+ },
+ {
+ "id": 35085,
+ "start": 16135.98,
+ "end": 16136.18,
+ "text": "And"
+ },
+ {
+ "id": 35086,
+ "start": 16136.18,
+ "end": 16136.34,
+ "text": "a"
+ },
+ {
+ "id": 35087,
+ "start": 16136.34,
+ "end": 16136.52,
+ "text": "lot"
+ },
+ {
+ "id": 35088,
+ "start": 16136.52,
+ "end": 16136.64,
+ "text": "of"
+ },
+ {
+ "id": 35089,
+ "start": 16136.64,
+ "end": 16137.22,
+ "text": "innovation"
+ },
+ {
+ "id": 35090,
+ "start": 16137.22,
+ "end": 16137.42,
+ "text": "and"
+ },
+ {
+ "id": 35091,
+ "start": 16137.42,
+ "end": 16138.05,
+ "text": "activity"
+ },
+ {
+ "id": 35092,
+ "start": 16138.05,
+ "end": 16138.35,
+ "text": "going"
+ },
+ {
+ "id": 35093,
+ "start": 16138.35,
+ "end": 16138.47,
+ "text": "on"
+ },
+ {
+ "id": 35094,
+ "start": 16138.47,
+ "end": 16138.57,
+ "text": "in"
+ },
+ {
+ "id": 35095,
+ "start": 16138.57,
+ "end": 16138.71,
+ "text": "this"
+ },
+ {
+ "id": 35096,
+ "start": 16138.71,
+ "end": 16138.97,
+ "text": "space."
+ },
+ {
+ "id": 35097,
+ "start": 16138.97,
+ "end": 16139.47,
+ "text": "I"
+ },
+ {
+ "id": 35098,
+ "start": 16139.47,
+ "end": 16139.65,
+ "text": "want"
+ },
+ {
+ "id": 35099,
+ "start": 16139.65,
+ "end": 16139.79,
+ "text": "in"
+ },
+ {
+ "id": 35100,
+ "start": 16139.79,
+ "end": 16139.85,
+ "text": "a"
+ },
+ {
+ "id": 35101,
+ "start": 16139.85,
+ "end": 16140.03,
+ "text": "very"
+ },
+ {
+ "id": 35102,
+ "start": 16140.03,
+ "end": 16140.25,
+ "text": "short"
+ },
+ {
+ "id": 35103,
+ "start": 16140.25,
+ "end": 16140.47,
+ "text": "period"
+ },
+ {
+ "id": 35104,
+ "start": 16140.47,
+ "end": 16140.55,
+ "text": "of"
+ },
+ {
+ "id": 35105,
+ "start": 16140.55,
+ "end": 16140.69,
+ "text": "time."
+ },
+ {
+ "id": 35106,
+ "start": 16140.69,
+ "end": 16140.93,
+ "text": "You"
+ },
+ {
+ "id": 35107,
+ "start": 16140.93,
+ "end": 16141.11,
+ "text": "talk"
+ },
+ {
+ "id": 35108,
+ "start": 16141.11,
+ "end": 16141.25,
+ "text": "about"
+ },
+ {
+ "id": 35109,
+ "start": 16141.25,
+ "end": 16141.37,
+ "text": "the"
+ },
+ {
+ "id": 35110,
+ "start": 16141.37,
+ "end": 16141.63,
+ "text": "difference"
+ },
+ {
+ "id": 35111,
+ "start": 16141.63,
+ "end": 16141.85,
+ "text": "between"
+ },
+ {
+ "id": 35112,
+ "start": 16141.85,
+ "end": 16142.71,
+ "text": "advertisers"
+ },
+ {
+ "id": 35113,
+ "start": 16142.71,
+ "end": 16143.29,
+ "text": "and"
+ },
+ {
+ "id": 35114,
+ "start": 16143.29,
+ "end": 16143.89,
+ "text": "application"
+ },
+ {
+ "id": 35115,
+ "start": 16143.89,
+ "end": 16144.39,
+ "text": "developers"
+ },
+ {
+ "id": 35116,
+ "start": 16144.39,
+ "end": 16145.11,
+ "text": "because"
+ },
+ {
+ "id": 35117,
+ "start": 16145.11,
+ "end": 16145.33,
+ "text": "again"
+ },
+ {
+ "id": 35118,
+ "start": 16145.33,
+ "end": 16145.75,
+ "text": "you"
+ },
+ {
+ "id": 35119,
+ "start": 16145.75,
+ "end": 16146.13,
+ "text": "said"
+ },
+ {
+ "id": 35120,
+ "start": 16146.13,
+ "end": 16146.23,
+ "text": "an"
+ },
+ {
+ "id": 35121,
+ "start": 16146.23,
+ "end": 16146.55,
+ "text": "earlier"
+ },
+ {
+ "id": 35122,
+ "start": 16146.55,
+ "end": 16146.75,
+ "text": "test"
+ },
+ {
+ "id": 35123,
+ "start": 16146.75,
+ "end": 16146.97,
+ "text": "or"
+ },
+ {
+ "id": 35124,
+ "start": 16146.97,
+ "end": 16147.09,
+ "text": "the"
+ },
+ {
+ "id": 35125,
+ "start": 16147.09,
+ "end": 16147.65,
+ "text": "advertisers"
+ },
+ {
+ "id": 35126,
+ "start": 16147.65,
+ "end": 16147.87,
+ "text": "have"
+ },
+ {
+ "id": 35127,
+ "start": 16147.87,
+ "end": 16148.19,
+ "text": "no"
+ },
+ {
+ "id": 35128,
+ "start": 16148.19,
+ "end": 16148.69,
+ "text": "access"
+ },
+ {
+ "id": 35129,
+ "start": 16148.69,
+ "end": 16148.77,
+ "text": "to"
+ },
+ {
+ "id": 35130,
+ "start": 16148.77,
+ "end": 16149.03,
+ "text": "data"
+ },
+ {
+ "id": 35131,
+ "start": 16149.03,
+ "end": 16150.1,
+ "text": "whatsoever,"
+ },
+ {
+ "id": 35132,
+ "start": 16150.1,
+ "end": 16150.76,
+ "text": "but"
+ },
+ {
+ "id": 35133,
+ "start": 16150.76,
+ "end": 16151.36,
+ "text": "application"
+ },
+ {
+ "id": 35134,
+ "start": 16151.36,
+ "end": 16152,
+ "text": "developers"
+ },
+ {
+ "id": 35135,
+ "start": 16152,
+ "end": 16152.66,
+ "text": "do"
+ },
+ {
+ "id": 35136,
+ "start": 16152.66,
+ "end": 16153.14,
+ "text": "now"
+ },
+ {
+ "id": 35137,
+ "start": 16153.14,
+ "end": 16153.26,
+ "text": "is"
+ },
+ {
+ "id": 35138,
+ "start": 16153.26,
+ "end": 16153.42,
+ "text": "that"
+ },
+ {
+ "id": 35139,
+ "start": 16153.42,
+ "end": 16153.6,
+ "text": "only"
+ },
+ {
+ "id": 35140,
+ "start": 16153.6,
+ "end": 16153.82,
+ "text": "through"
+ },
+ {
+ "id": 35141,
+ "start": 16153.82,
+ "end": 16154,
+ "text": "their"
+ },
+ {
+ "id": 35142,
+ "start": 16154,
+ "end": 16154.16,
+ "text": "own"
+ },
+ {
+ "id": 35143,
+ "start": 16154.16,
+ "end": 16154.5,
+ "text": "service"
+ },
+ {
+ "id": 35144,
+ "start": 16154.5,
+ "end": 16154.9,
+ "text": "agreements"
+ },
+ {
+ "id": 35145,
+ "start": 16154.9,
+ "end": 16155.1,
+ "text": "with"
+ },
+ {
+ "id": 35146,
+ "start": 16155.1,
+ "end": 16155.34,
+ "text": "their"
+ },
+ {
+ "id": 35147,
+ "start": 16155.34,
+ "end": 16156.52,
+ "text": "customers"
+ },
+ {
+ "id": 35148,
+ "start": 16156.52,
+ "end": 16156.78,
+ "text": "or"
+ },
+ {
+ "id": 35149,
+ "start": 16156.78,
+ "end": 16156.98,
+ "text": "do"
+ },
+ {
+ "id": 35150,
+ "start": 16156.98,
+ "end": 16157.22,
+ "text": "they"
+ },
+ {
+ "id": 35151,
+ "start": 16157.22,
+ "end": 16157.68,
+ "text": "actually"
+ },
+ {
+ "id": 35152,
+ "start": 16157.68,
+ "end": 16158.14,
+ "text": "access"
+ },
+ {
+ "id": 35153,
+ "start": 16158.14,
+ "end": 16158.44,
+ "text": "data"
+ },
+ {
+ "id": 35154,
+ "start": 16158.44,
+ "end": 16158.58,
+ "text": "as"
+ },
+ {
+ "id": 35155,
+ "start": 16158.58,
+ "end": 16158.68,
+ "text": "a"
+ },
+ {
+ "id": 35156,
+ "start": 16158.68,
+ "end": 16159.08,
+ "text": "developing"
+ },
+ {
+ "id": 35157,
+ "start": 16159.08,
+ "end": 16160,
+ "text": "applications?"
+ },
+ {
+ "id": 35158,
+ "start": 16160,
+ "end": 16161,
+ "text": "Senator,"
+ },
+ {
+ "id": 35159,
+ "start": 16161,
+ "end": 16161.14,
+ "text": "this"
+ },
+ {
+ "id": 35160,
+ "start": 16161.14,
+ "end": 16161.24,
+ "text": "is"
+ },
+ {
+ "id": 35161,
+ "start": 16161.24,
+ "end": 16161.32,
+ "text": "an"
+ },
+ {
+ "id": 35162,
+ "start": 16161.32,
+ "end": 16161.7,
+ "text": "important"
+ },
+ {
+ "id": 35163,
+ "start": 16161.7,
+ "end": 16162.18,
+ "text": "distinction."
+ },
+ {
+ "id": 35164,
+ "start": 16162.18,
+ "end": 16162.46,
+ "text": "So"
+ },
+ {
+ "id": 35165,
+ "start": 16162.46,
+ "end": 16162.7,
+ "text": "thanks"
+ },
+ {
+ "id": 35166,
+ "start": 16162.7,
+ "end": 16162.86,
+ "text": "for"
+ },
+ {
+ "id": 35167,
+ "start": 16162.86,
+ "end": 16163.06,
+ "text": "giving"
+ },
+ {
+ "id": 35168,
+ "start": 16163.06,
+ "end": 16163.2,
+ "text": "me"
+ },
+ {
+ "id": 35169,
+ "start": 16163.2,
+ "end": 16163.3,
+ "text": "the"
+ },
+ {
+ "id": 35170,
+ "start": 16163.3,
+ "end": 16163.7,
+ "text": "opportunity"
+ },
+ {
+ "id": 35171,
+ "start": 16163.7,
+ "end": 16163.8,
+ "text": "to"
+ },
+ {
+ "id": 35172,
+ "start": 16163.8,
+ "end": 16164.22,
+ "text": "clarify"
+ },
+ {
+ "id": 35173,
+ "start": 16164.22,
+ "end": 16165.1,
+ "text": "this"
+ },
+ {
+ "id": 35174,
+ "start": 16165.1,
+ "end": 16166.12,
+ "text": "people."
+ },
+ {
+ "id": 35175,
+ "start": 16166.12,
+ "end": 16166.38,
+ "text": "We"
+ },
+ {
+ "id": 35176,
+ "start": 16166.38,
+ "end": 16166.56,
+ "text": "give"
+ },
+ {
+ "id": 35177,
+ "start": 16166.56,
+ "end": 16166.84,
+ "text": "people"
+ },
+ {
+ "id": 35178,
+ "start": 16166.84,
+ "end": 16167.02,
+ "text": "the"
+ },
+ {
+ "id": 35179,
+ "start": 16167.02,
+ "end": 16167.4,
+ "text": "ability"
+ },
+ {
+ "id": 35180,
+ "start": 16167.4,
+ "end": 16167.78,
+ "text": "to"
+ },
+ {
+ "id": 35181,
+ "start": 16167.78,
+ "end": 16168.02,
+ "text": "take"
+ },
+ {
+ "id": 35182,
+ "start": 16168.02,
+ "end": 16168.36,
+ "text": "their"
+ },
+ {
+ "id": 35183,
+ "start": 16168.36,
+ "end": 16168.9,
+ "text": "data"
+ },
+ {
+ "id": 35184,
+ "start": 16168.9,
+ "end": 16169.7,
+ "text": "to"
+ },
+ {
+ "id": 35185,
+ "start": 16169.7,
+ "end": 16170.08,
+ "text": "another"
+ },
+ {
+ "id": 35186,
+ "start": 16170.08,
+ "end": 16170.3,
+ "text": "app"
+ },
+ {
+ "id": 35187,
+ "start": 16170.3,
+ "end": 16170.48,
+ "text": "if"
+ },
+ {
+ "id": 35188,
+ "start": 16170.48,
+ "end": 16170.66,
+ "text": "they"
+ },
+ {
+ "id": 35189,
+ "start": 16170.66,
+ "end": 16170.9,
+ "text": "want."
+ },
+ {
+ "id": 35190,
+ "start": 16170.9,
+ "end": 16171.5,
+ "text": "This"
+ },
+ {
+ "id": 35191,
+ "start": 16171.5,
+ "end": 16171.64,
+ "text": "is"
+ },
+ {
+ "id": 35192,
+ "start": 16171.64,
+ "end": 16171.82,
+ "text": "a"
+ },
+ {
+ "id": 35193,
+ "start": 16171.82,
+ "end": 16172.26,
+ "text": "question"
+ },
+ {
+ "id": 35194,
+ "start": 16172.26,
+ "end": 16172.5,
+ "text": "that"
+ },
+ {
+ "id": 35195,
+ "start": 16172.5,
+ "end": 16172.94,
+ "text": "Senator"
+ },
+ {
+ "id": 35196,
+ "start": 16172.94,
+ "end": 16173.26,
+ "text": "Kennedy"
+ },
+ {
+ "id": 35197,
+ "start": 16173.26,
+ "end": 16173.5,
+ "text": "asked"
+ },
+ {
+ "id": 35198,
+ "start": 16173.5,
+ "end": 16173.7,
+ "text": "me"
+ },
+ {
+ "id": 35199,
+ "start": 16173.7,
+ "end": 16174.32,
+ "text": "just"
+ },
+ {
+ "id": 35200,
+ "start": 16174.32,
+ "end": 16174.4,
+ "text": "a"
+ },
+ {
+ "id": 35201,
+ "start": 16174.4,
+ "end": 16174.56,
+ "text": "few"
+ },
+ {
+ "id": 35202,
+ "start": 16174.56,
+ "end": 16174.82,
+ "text": "minutes"
+ },
+ {
+ "id": 35203,
+ "start": 16174.82,
+ "end": 16175.04,
+ "text": "ago."
+ },
+ {
+ "id": 35204,
+ "start": 16175.04,
+ "end": 16175.6,
+ "text": "The"
+ },
+ {
+ "id": 35205,
+ "start": 16175.6,
+ "end": 16175.82,
+ "text": "reason"
+ },
+ {
+ "id": 35206,
+ "start": 16175.82,
+ "end": 16175.96,
+ "text": "why"
+ },
+ {
+ "id": 35207,
+ "start": 16175.96,
+ "end": 16176.08,
+ "text": "we"
+ },
+ {
+ "id": 35208,
+ "start": 16176.08,
+ "end": 16176.4,
+ "text": "designed"
+ },
+ {
+ "id": 35209,
+ "start": 16176.4,
+ "end": 16176.58,
+ "text": "the"
+ },
+ {
+ "id": 35210,
+ "start": 16176.58,
+ "end": 16177.06,
+ "text": "platform"
+ },
+ {
+ "id": 35211,
+ "start": 16177.06,
+ "end": 16177.22,
+ "text": "that"
+ },
+ {
+ "id": 35212,
+ "start": 16177.22,
+ "end": 16177.36,
+ "text": "way"
+ },
+ {
+ "id": 35213,
+ "start": 16177.36,
+ "end": 16177.86,
+ "text": "is"
+ },
+ {
+ "id": 35214,
+ "start": 16177.86,
+ "end": 16178.1,
+ "text": "because"
+ },
+ {
+ "id": 35215,
+ "start": 16178.1,
+ "end": 16178.24,
+ "text": "we"
+ },
+ {
+ "id": 35216,
+ "start": 16178.24,
+ "end": 16178.68,
+ "text": "thought"
+ },
+ {
+ "id": 35217,
+ "start": 16178.68,
+ "end": 16178.76,
+ "text": "it"
+ },
+ {
+ "id": 35218,
+ "start": 16178.76,
+ "end": 16178.9,
+ "text": "would"
+ },
+ {
+ "id": 35219,
+ "start": 16178.9,
+ "end": 16178.98,
+ "text": "be"
+ },
+ {
+ "id": 35220,
+ "start": 16178.98,
+ "end": 16179.2,
+ "text": "very"
+ },
+ {
+ "id": 35221,
+ "start": 16179.2,
+ "end": 16179.56,
+ "text": "useful"
+ },
+ {
+ "id": 35222,
+ "start": 16179.56,
+ "end": 16180.06,
+ "text": "to"
+ },
+ {
+ "id": 35223,
+ "start": 16180.06,
+ "end": 16180.3,
+ "text": "make"
+ },
+ {
+ "id": 35224,
+ "start": 16180.3,
+ "end": 16180.4,
+ "text": "it"
+ },
+ {
+ "id": 35225,
+ "start": 16180.4,
+ "end": 16180.52,
+ "text": "so"
+ },
+ {
+ "id": 35226,
+ "start": 16180.52,
+ "end": 16180.68,
+ "text": "that"
+ },
+ {
+ "id": 35227,
+ "start": 16180.68,
+ "end": 16180.9,
+ "text": "people"
+ },
+ {
+ "id": 35228,
+ "start": 16180.9,
+ "end": 16181.1,
+ "text": "could"
+ },
+ {
+ "id": 35229,
+ "start": 16181.1,
+ "end": 16181.48,
+ "text": "easily"
+ },
+ {
+ "id": 35230,
+ "start": 16181.48,
+ "end": 16181.7,
+ "text": "bring"
+ },
+ {
+ "id": 35231,
+ "start": 16181.7,
+ "end": 16181.88,
+ "text": "their"
+ },
+ {
+ "id": 35232,
+ "start": 16181.88,
+ "end": 16182.08,
+ "text": "data"
+ },
+ {
+ "id": 35233,
+ "start": 16182.08,
+ "end": 16182.16,
+ "text": "to"
+ },
+ {
+ "id": 35234,
+ "start": 16182.16,
+ "end": 16183.1,
+ "text": "other"
+ },
+ {
+ "id": 35235,
+ "start": 16183.1,
+ "end": 16183.56,
+ "text": "services"
+ },
+ {
+ "id": 35236,
+ "start": 16183.56,
+ "end": 16184.34,
+ "text": "some"
+ },
+ {
+ "id": 35237,
+ "start": 16184.34,
+ "end": 16184.54,
+ "text": "people"
+ },
+ {
+ "id": 35238,
+ "start": 16184.54,
+ "end": 16184.88,
+ "text": "inside"
+ },
+ {
+ "id": 35239,
+ "start": 16184.88,
+ "end": 16185.02,
+ "text": "the"
+ },
+ {
+ "id": 35240,
+ "start": 16185.02,
+ "end": 16185.3,
+ "text": "company"
+ },
+ {
+ "id": 35241,
+ "start": 16185.3,
+ "end": 16185.64,
+ "text": "argued"
+ },
+ {
+ "id": 35242,
+ "start": 16185.64,
+ "end": 16185.9,
+ "text": "against"
+ },
+ {
+ "id": 35243,
+ "start": 16185.9,
+ "end": 16186.08,
+ "text": "that"
+ },
+ {
+ "id": 35244,
+ "start": 16186.08,
+ "end": 16186.18,
+ "text": "at"
+ },
+ {
+ "id": 35245,
+ "start": 16186.18,
+ "end": 16186.28,
+ "text": "the"
+ },
+ {
+ "id": 35246,
+ "start": 16186.28,
+ "end": 16186.58,
+ "text": "time"
+ },
+ {
+ "id": 35247,
+ "start": 16186.58,
+ "end": 16186.92,
+ "text": "because"
+ },
+ {
+ "id": 35248,
+ "start": 16186.92,
+ "end": 16187.08,
+ "text": "they"
+ },
+ {
+ "id": 35249,
+ "start": 16187.08,
+ "end": 16187.22,
+ "text": "were"
+ },
+ {
+ "id": 35250,
+ "start": 16187.22,
+ "end": 16187.5,
+ "text": "worried"
+ },
+ {
+ "id": 35251,
+ "start": 16187.5,
+ "end": 16188.06,
+ "text": "that"
+ },
+ {
+ "id": 35252,
+ "start": 16188.06,
+ "end": 16188.54,
+ "text": "they"
+ },
+ {
+ "id": 35253,
+ "start": 16188.54,
+ "end": 16188.74,
+ "text": "said"
+ },
+ {
+ "id": 35254,
+ "start": 16188.74,
+ "end": 16188.9,
+ "text": "hey,"
+ },
+ {
+ "id": 35255,
+ "start": 16188.9,
+ "end": 16189.08,
+ "text": "we"
+ },
+ {
+ "id": 35256,
+ "start": 16189.08,
+ "end": 16189.3,
+ "text": "should"
+ },
+ {
+ "id": 35257,
+ "start": 16189.3,
+ "end": 16189.44,
+ "text": "just"
+ },
+ {
+ "id": 35258,
+ "start": 16189.44,
+ "end": 16189.58,
+ "text": "make"
+ },
+ {
+ "id": 35259,
+ "start": 16189.58,
+ "end": 16189.68,
+ "text": "it"
+ },
+ {
+ "id": 35260,
+ "start": 16189.68,
+ "end": 16189.86,
+ "text": "so"
+ },
+ {
+ "id": 35261,
+ "start": 16189.86,
+ "end": 16189.98,
+ "text": "we"
+ },
+ {
+ "id": 35262,
+ "start": 16189.98,
+ "end": 16190.16,
+ "text": "can"
+ },
+ {
+ "id": 35263,
+ "start": 16190.16,
+ "end": 16190.26,
+ "text": "be"
+ },
+ {
+ "id": 35264,
+ "start": 16190.26,
+ "end": 16190.38,
+ "text": "the"
+ },
+ {
+ "id": 35265,
+ "start": 16190.38,
+ "end": 16190.56,
+ "text": "only"
+ },
+ {
+ "id": 35266,
+ "start": 16190.56,
+ "end": 16190.72,
+ "text": "ones"
+ },
+ {
+ "id": 35267,
+ "start": 16190.72,
+ "end": 16190.86,
+ "text": "who"
+ },
+ {
+ "id": 35268,
+ "start": 16190.86,
+ "end": 16191.22,
+ "text": "develop"
+ },
+ {
+ "id": 35269,
+ "start": 16191.22,
+ "end": 16191.34,
+ "text": "this"
+ },
+ {
+ "id": 35270,
+ "start": 16191.34,
+ "end": 16192.06,
+ "text": "and"
+ },
+ {
+ "id": 35271,
+ "start": 16192.06,
+ "end": 16192.74,
+ "text": "that"
+ },
+ {
+ "id": 35272,
+ "start": 16192.74,
+ "end": 16192.92,
+ "text": "was"
+ },
+ {
+ "id": 35273,
+ "start": 16192.92,
+ "end": 16193.32,
+ "text": "a"
+ },
+ {
+ "id": 35274,
+ "start": 16193.32,
+ "end": 16193.68,
+ "text": "useful"
+ },
+ {
+ "id": 35275,
+ "start": 16193.68,
+ "end": 16193.86,
+ "text": "thing"
+ },
+ {
+ "id": 35276,
+ "start": 16193.86,
+ "end": 16193.98,
+ "text": "for"
+ },
+ {
+ "id": 35277,
+ "start": 16193.98,
+ "end": 16194.4,
+ "text": "a"
+ },
+ {
+ "id": 35278,
+ "start": 16194.4,
+ "end": 16194.88,
+ "text": "user"
+ },
+ {
+ "id": 35279,
+ "start": 16194.88,
+ "end": 16195.4,
+ "text": "agreeing"
+ },
+ {
+ "id": 35280,
+ "start": 16195.4,
+ "end": 16195.62,
+ "text": "to"
+ },
+ {
+ "id": 35281,
+ "start": 16195.62,
+ "end": 16195.94,
+ "text": "allow"
+ },
+ {
+ "id": 35282,
+ "start": 16195.94,
+ "end": 16196.14,
+ "text": "you"
+ },
+ {
+ "id": 35283,
+ "start": 16196.14,
+ "end": 16196.24,
+ "text": "to"
+ },
+ {
+ "id": 35284,
+ "start": 16196.24,
+ "end": 16196.64,
+ "text": "share"
+ },
+ {
+ "id": 35285,
+ "start": 16196.64,
+ "end": 16197,
+ "text": "when"
+ },
+ {
+ "id": 35286,
+ "start": 16197,
+ "end": 16197.22,
+ "text": "they're"
+ },
+ {
+ "id": 35287,
+ "start": 16197.22,
+ "end": 16197.42,
+ "text": "using"
+ },
+ {
+ "id": 35288,
+ "start": 16197.42,
+ "end": 16197.56,
+ "text": "that"
+ },
+ {
+ "id": 35289,
+ "start": 16197.56,
+ "end": 16197.82,
+ "text": "app"
+ },
+ {
+ "id": 35290,
+ "start": 16197.82,
+ "end": 16198.32,
+ "text": "to"
+ },
+ {
+ "id": 35291,
+ "start": 16198.32,
+ "end": 16198.56,
+ "text": "allow"
+ },
+ {
+ "id": 35292,
+ "start": 16198.56,
+ "end": 16199.43,
+ "text": "Facebook"
+ },
+ {
+ "id": 35293,
+ "start": 16199.43,
+ "end": 16200.19,
+ "text": "does"
+ },
+ {
+ "id": 35294,
+ "start": 16200.19,
+ "end": 16200.31,
+ "text": "the"
+ },
+ {
+ "id": 35295,
+ "start": 16200.31,
+ "end": 16200.73,
+ "text": "developer"
+ },
+ {
+ "id": 35296,
+ "start": 16200.73,
+ "end": 16201.01,
+ "text": "ever"
+ },
+ {
+ "id": 35297,
+ "start": 16201.01,
+ "end": 16201.17,
+ "text": "have"
+ },
+ {
+ "id": 35298,
+ "start": 16201.17,
+ "end": 16201.57,
+ "text": "access"
+ },
+ {
+ "id": 35299,
+ "start": 16201.57,
+ "end": 16201.67,
+ "text": "to"
+ },
+ {
+ "id": 35300,
+ "start": 16201.67,
+ "end": 16201.89,
+ "text": "that"
+ },
+ {
+ "id": 35301,
+ "start": 16201.89,
+ "end": 16202.31,
+ "text": "prior"
+ },
+ {
+ "id": 35302,
+ "start": 16202.31,
+ "end": 16202.49,
+ "text": "to"
+ },
+ {
+ "id": 35303,
+ "start": 16202.49,
+ "end": 16202.89,
+ "text": "users"
+ },
+ {
+ "id": 35304,
+ "start": 16202.89,
+ "end": 16203.21,
+ "text": "using"
+ },
+ {
+ "id": 35305,
+ "start": 16203.21,
+ "end": 16203.35,
+ "text": "it"
+ },
+ {
+ "id": 35306,
+ "start": 16203.35,
+ "end": 16203.73,
+ "text": "in"
+ },
+ {
+ "id": 35307,
+ "start": 16203.73,
+ "end": 16204.17,
+ "text": "developing"
+ },
+ {
+ "id": 35308,
+ "start": 16204.17,
+ "end": 16204.29,
+ "text": "the"
+ },
+ {
+ "id": 35309,
+ "start": 16204.29,
+ "end": 16204.93,
+ "text": "application?"
+ },
+ {
+ "id": 35310,
+ "start": 16204.93,
+ "end": 16205.33,
+ "text": "Because"
+ },
+ {
+ "id": 35311,
+ "start": 16205.33,
+ "end": 16205.37,
+ "text": "I"
+ },
+ {
+ "id": 35312,
+ "start": 16205.37,
+ "end": 16205.67,
+ "text": "used"
+ },
+ {
+ "id": 35313,
+ "start": 16205.67,
+ "end": 16205.77,
+ "text": "the"
+ },
+ {
+ "id": 35314,
+ "start": 16205.77,
+ "end": 16205.99,
+ "text": "term"
+ },
+ {
+ "id": 35315,
+ "start": 16205.99,
+ "end": 16206.59,
+ "text": "scrape"
+ },
+ {
+ "id": 35316,
+ "start": 16206.59,
+ "end": 16207.99,
+ "text": "data."
+ },
+ {
+ "id": 35317,
+ "start": 16207.99,
+ "end": 16208.31,
+ "text": "What"
+ },
+ {
+ "id": 35318,
+ "start": 16208.31,
+ "end": 16208.43,
+ "text": "does"
+ },
+ {
+ "id": 35319,
+ "start": 16208.43,
+ "end": 16208.59,
+ "text": "that"
+ },
+ {
+ "id": 35320,
+ "start": 16208.59,
+ "end": 16208.81,
+ "text": "mean?"
+ },
+ {
+ "id": 35321,
+ "start": 16208.81,
+ "end": 16209.29,
+ "text": "Who"
+ },
+ {
+ "id": 35322,
+ "start": 16209.29,
+ "end": 16209.65,
+ "text": "scraped"
+ },
+ {
+ "id": 35323,
+ "start": 16209.65,
+ "end": 16209.77,
+ "text": "the"
+ },
+ {
+ "id": 35324,
+ "start": 16209.77,
+ "end": 16210.8,
+ "text": "data,"
+ },
+ {
+ "id": 35325,
+ "start": 16210.8,
+ "end": 16211.76,
+ "text": "yes."
+ },
+ {
+ "id": 35326,
+ "start": 16211.76,
+ "end": 16212.1,
+ "text": "So"
+ },
+ {
+ "id": 35327,
+ "start": 16212.1,
+ "end": 16212.22,
+ "text": "this"
+ },
+ {
+ "id": 35328,
+ "start": 16212.22,
+ "end": 16212.34,
+ "text": "is"
+ },
+ {
+ "id": 35329,
+ "start": 16212.34,
+ "end": 16212.42,
+ "text": "a"
+ },
+ {
+ "id": 35330,
+ "start": 16212.42,
+ "end": 16212.66,
+ "text": "good"
+ },
+ {
+ "id": 35331,
+ "start": 16212.66,
+ "end": 16213.06,
+ "text": "question."
+ },
+ {
+ "id": 35332,
+ "start": 16213.06,
+ "end": 16213.5,
+ "text": "So"
+ },
+ {
+ "id": 35333,
+ "start": 16213.5,
+ "end": 16213.72,
+ "text": "there's"
+ },
+ {
+ "id": 35334,
+ "start": 16213.72,
+ "end": 16213.84,
+ "text": "the"
+ },
+ {
+ "id": 35335,
+ "start": 16213.84,
+ "end": 16214.36,
+ "text": "developer"
+ },
+ {
+ "id": 35336,
+ "start": 16214.36,
+ "end": 16214.94,
+ "text": "platform,"
+ },
+ {
+ "id": 35337,
+ "start": 16214.94,
+ "end": 16215.22,
+ "text": "which"
+ },
+ {
+ "id": 35338,
+ "start": 16215.22,
+ "end": 16215.36,
+ "text": "is"
+ },
+ {
+ "id": 35339,
+ "start": 16215.36,
+ "end": 16215.48,
+ "text": "the"
+ },
+ {
+ "id": 35340,
+ "start": 16215.48,
+ "end": 16216.02,
+ "text": "sanctioned"
+ },
+ {
+ "id": 35341,
+ "start": 16216.02,
+ "end": 16216.36,
+ "text": "way"
+ },
+ {
+ "id": 35342,
+ "start": 16216.36,
+ "end": 16216.54,
+ "text": "that"
+ },
+ {
+ "id": 35343,
+ "start": 16216.54,
+ "end": 16216.62,
+ "text": "an"
+ },
+ {
+ "id": 35344,
+ "start": 16216.62,
+ "end": 16216.86,
+ "text": "app"
+ },
+ {
+ "id": 35345,
+ "start": 16216.86,
+ "end": 16217.38,
+ "text": "developer"
+ },
+ {
+ "id": 35346,
+ "start": 16217.38,
+ "end": 16217.96,
+ "text": "can"
+ },
+ {
+ "id": 35347,
+ "start": 16217.96,
+ "end": 16218.26,
+ "text": "ask"
+ },
+ {
+ "id": 35348,
+ "start": 16218.26,
+ "end": 16218.34,
+ "text": "a"
+ },
+ {
+ "id": 35349,
+ "start": 16218.34,
+ "end": 16218.8,
+ "text": "person"
+ },
+ {
+ "id": 35350,
+ "start": 16218.8,
+ "end": 16219.02,
+ "text": "to"
+ },
+ {
+ "id": 35351,
+ "start": 16219.02,
+ "end": 16219.52,
+ "text": "access"
+ },
+ {
+ "id": 35352,
+ "start": 16219.52,
+ "end": 16220.26,
+ "text": "information,"
+ },
+ {
+ "id": 35353,
+ "start": 16220.26,
+ "end": 16220.98,
+ "text": "we"
+ },
+ {
+ "id": 35354,
+ "start": 16220.98,
+ "end": 16221.32,
+ "text": "also"
+ },
+ {
+ "id": 35355,
+ "start": 16221.32,
+ "end": 16221.62,
+ "text": "have"
+ },
+ {
+ "id": 35356,
+ "start": 16221.62,
+ "end": 16222.58,
+ "text": "certain"
+ },
+ {
+ "id": 35357,
+ "start": 16222.58,
+ "end": 16223.56,
+ "text": "features"
+ },
+ {
+ "id": 35358,
+ "start": 16223.56,
+ "end": 16223.8,
+ "text": "certain"
+ },
+ {
+ "id": 35359,
+ "start": 16223.8,
+ "end": 16224.04,
+ "text": "things"
+ },
+ {
+ "id": 35360,
+ "start": 16224.04,
+ "end": 16224.16,
+ "text": "that"
+ },
+ {
+ "id": 35361,
+ "start": 16224.16,
+ "end": 16224.3,
+ "text": "are"
+ },
+ {
+ "id": 35362,
+ "start": 16224.3,
+ "end": 16224.66,
+ "text": "public"
+ },
+ {
+ "id": 35363,
+ "start": 16224.66,
+ "end": 16225.08,
+ "text": "right."
+ },
+ {
+ "id": 35364,
+ "start": 16225.08,
+ "end": 16225.16,
+ "text": "A"
+ },
+ {
+ "id": 35365,
+ "start": 16225.16,
+ "end": 16225.28,
+ "text": "lot"
+ },
+ {
+ "id": 35366,
+ "start": 16225.28,
+ "end": 16225.36,
+ "text": "of"
+ },
+ {
+ "id": 35367,
+ "start": 16225.36,
+ "end": 16225.46,
+ "text": "the"
+ },
+ {
+ "id": 35368,
+ "start": 16225.46,
+ "end": 16225.92,
+ "text": "information"
+ },
+ {
+ "id": 35369,
+ "start": 16225.92,
+ "end": 16226.22,
+ "text": "that"
+ },
+ {
+ "id": 35370,
+ "start": 16226.22,
+ "end": 16226.44,
+ "text": "people"
+ },
+ {
+ "id": 35371,
+ "start": 16226.44,
+ "end": 16226.68,
+ "text": "choose"
+ },
+ {
+ "id": 35372,
+ "start": 16226.68,
+ "end": 16226.84,
+ "text": "to"
+ },
+ {
+ "id": 35373,
+ "start": 16226.84,
+ "end": 16227,
+ "text": "put"
+ },
+ {
+ "id": 35374,
+ "start": 16227,
+ "end": 16227.16,
+ "text": "on"
+ },
+ {
+ "id": 35375,
+ "start": 16227.16,
+ "end": 16227.52,
+ "text": "Facebook"
+ },
+ {
+ "id": 35376,
+ "start": 16227.52,
+ "end": 16227.72,
+ "text": "they're"
+ },
+ {
+ "id": 35377,
+ "start": 16227.72,
+ "end": 16227.92,
+ "text": "sharing"
+ },
+ {
+ "id": 35378,
+ "start": 16227.92,
+ "end": 16228.04,
+ "text": "with"
+ },
+ {
+ "id": 35379,
+ "start": 16228.04,
+ "end": 16228.28,
+ "text": "everyone"
+ },
+ {
+ "id": 35380,
+ "start": 16228.28,
+ "end": 16228.36,
+ "text": "in"
+ },
+ {
+ "id": 35381,
+ "start": 16228.36,
+ "end": 16228.44,
+ "text": "the"
+ },
+ {
+ "id": 35382,
+ "start": 16228.44,
+ "end": 16228.64,
+ "text": "world,"
+ },
+ {
+ "id": 35383,
+ "start": 16228.64,
+ "end": 16228.88,
+ "text": "not"
+ },
+ {
+ "id": 35384,
+ "start": 16228.88,
+ "end": 16229.38,
+ "text": "privately,"
+ },
+ {
+ "id": 35385,
+ "start": 16229.38,
+ "end": 16229.92,
+ "text": "but"
+ },
+ {
+ "id": 35386,
+ "start": 16229.92,
+ "end": 16230.68,
+ "text": "you"
+ },
+ {
+ "id": 35387,
+ "start": 16230.68,
+ "end": 16230.8,
+ "text": "put"
+ },
+ {
+ "id": 35388,
+ "start": 16230.8,
+ "end": 16230.98,
+ "text": "your"
+ },
+ {
+ "id": 35389,
+ "start": 16230.98,
+ "end": 16231.2,
+ "text": "name."
+ },
+ {
+ "id": 35390,
+ "start": 16231.2,
+ "end": 16231.34,
+ "text": "You"
+ },
+ {
+ "id": 35391,
+ "start": 16231.34,
+ "end": 16231.46,
+ "text": "put"
+ },
+ {
+ "id": 35392,
+ "start": 16231.46,
+ "end": 16231.6,
+ "text": "your"
+ },
+ {
+ "id": 35393,
+ "start": 16231.6,
+ "end": 16231.98,
+ "text": "profile"
+ },
+ {
+ "id": 35394,
+ "start": 16231.98,
+ "end": 16232.3,
+ "text": "picture"
+ },
+ {
+ "id": 35395,
+ "start": 16232.3,
+ "end": 16232.86,
+ "text": "that's"
+ },
+ {
+ "id": 35396,
+ "start": 16232.86,
+ "end": 16233.24,
+ "text": "public"
+ },
+ {
+ "id": 35397,
+ "start": 16233.24,
+ "end": 16233.84,
+ "text": "information"
+ },
+ {
+ "id": 35398,
+ "start": 16233.84,
+ "end": 16234.64,
+ "text": "that"
+ },
+ {
+ "id": 35399,
+ "start": 16234.64,
+ "end": 16234.88,
+ "text": "people"
+ },
+ {
+ "id": 35400,
+ "start": 16234.88,
+ "end": 16235.04,
+ "text": "put"
+ },
+ {
+ "id": 35401,
+ "start": 16235.04,
+ "end": 16235.2,
+ "text": "out"
+ },
+ {
+ "id": 35402,
+ "start": 16235.2,
+ "end": 16235.42,
+ "text": "there."
+ },
+ {
+ "id": 35403,
+ "start": 16235.42,
+ "end": 16236.14,
+ "text": "And"
+ },
+ {
+ "id": 35404,
+ "start": 16236.14,
+ "end": 16237.08,
+ "text": "sometimes"
+ },
+ {
+ "id": 35405,
+ "start": 16237.08,
+ "end": 16237.52,
+ "text": "people"
+ },
+ {
+ "id": 35406,
+ "start": 16237.52,
+ "end": 16237.94,
+ "text": "who"
+ },
+ {
+ "id": 35407,
+ "start": 16237.94,
+ "end": 16238.2,
+ "text": "aren't"
+ },
+ {
+ "id": 35408,
+ "start": 16238.2,
+ "end": 16238.7,
+ "text": "registered"
+ },
+ {
+ "id": 35409,
+ "start": 16238.7,
+ "end": 16239.18,
+ "text": "developers"
+ },
+ {
+ "id": 35410,
+ "start": 16239.18,
+ "end": 16239.34,
+ "text": "of"
+ },
+ {
+ "id": 35411,
+ "start": 16239.34,
+ "end": 16239.8,
+ "text": "Facebook"
+ },
+ {
+ "id": 35412,
+ "start": 16239.8,
+ "end": 16240.34,
+ "text": "try"
+ },
+ {
+ "id": 35413,
+ "start": 16240.34,
+ "end": 16240.44,
+ "text": "to"
+ },
+ {
+ "id": 35414,
+ "start": 16240.44,
+ "end": 16240.72,
+ "text": "load"
+ },
+ {
+ "id": 35415,
+ "start": 16240.72,
+ "end": 16240.8,
+ "text": "a"
+ },
+ {
+ "id": 35416,
+ "start": 16240.8,
+ "end": 16240.98,
+ "text": "lot"
+ },
+ {
+ "id": 35417,
+ "start": 16240.98,
+ "end": 16241.08,
+ "text": "of"
+ },
+ {
+ "id": 35418,
+ "start": 16241.08,
+ "end": 16241.48,
+ "text": "pages"
+ },
+ {
+ "id": 35419,
+ "start": 16241.48,
+ "end": 16242,
+ "text": "in"
+ },
+ {
+ "id": 35420,
+ "start": 16242,
+ "end": 16242.22,
+ "text": "order"
+ },
+ {
+ "id": 35421,
+ "start": 16242.22,
+ "end": 16242.32,
+ "text": "to"
+ },
+ {
+ "id": 35422,
+ "start": 16242.32,
+ "end": 16242.46,
+ "text": "get"
+ },
+ {
+ "id": 35423,
+ "start": 16242.46,
+ "end": 16242.88,
+ "text": "access"
+ },
+ {
+ "id": 35424,
+ "start": 16242.88,
+ "end": 16243.1,
+ "text": "to"
+ },
+ {
+ "id": 35425,
+ "start": 16243.1,
+ "end": 16243.64,
+ "text": "a"
+ },
+ {
+ "id": 35426,
+ "start": 16243.64,
+ "end": 16243.86,
+ "text": "bunch"
+ },
+ {
+ "id": 35427,
+ "start": 16243.86,
+ "end": 16243.96,
+ "text": "of"
+ },
+ {
+ "id": 35428,
+ "start": 16243.96,
+ "end": 16244.32,
+ "text": "people's"
+ },
+ {
+ "id": 35429,
+ "start": 16244.32,
+ "end": 16244.7,
+ "text": "public"
+ },
+ {
+ "id": 35430,
+ "start": 16244.7,
+ "end": 16245.2,
+ "text": "information"
+ },
+ {
+ "id": 35431,
+ "start": 16245.2,
+ "end": 16245.36,
+ "text": "and"
+ },
+ {
+ "id": 35432,
+ "start": 16245.36,
+ "end": 16245.78,
+ "text": "aggregate"
+ },
+ {
+ "id": 35433,
+ "start": 16245.78,
+ "end": 16245.88,
+ "text": "it."
+ },
+ {
+ "id": 35434,
+ "start": 16245.88,
+ "end": 16246.38,
+ "text": "We"
+ },
+ {
+ "id": 35435,
+ "start": 16246.38,
+ "end": 16246.6,
+ "text": "fight"
+ },
+ {
+ "id": 35436,
+ "start": 16246.6,
+ "end": 16246.8,
+ "text": "back"
+ },
+ {
+ "id": 35437,
+ "start": 16246.8,
+ "end": 16247.02,
+ "text": "hard"
+ },
+ {
+ "id": 35438,
+ "start": 16247.02,
+ "end": 16247.28,
+ "text": "against"
+ },
+ {
+ "id": 35439,
+ "start": 16247.28,
+ "end": 16247.5,
+ "text": "that,"
+ },
+ {
+ "id": 35440,
+ "start": 16247.5,
+ "end": 16247.9,
+ "text": "because"
+ },
+ {
+ "id": 35441,
+ "start": 16247.9,
+ "end": 16248,
+ "text": "we"
+ },
+ {
+ "id": 35442,
+ "start": 16248,
+ "end": 16248.18,
+ "text": "don't"
+ },
+ {
+ "id": 35443,
+ "start": 16248.18,
+ "end": 16248.3,
+ "text": "want"
+ },
+ {
+ "id": 35444,
+ "start": 16248.3,
+ "end": 16248.58,
+ "text": "anyone"
+ },
+ {
+ "id": 35445,
+ "start": 16248.58,
+ "end": 16248.7,
+ "text": "to"
+ },
+ {
+ "id": 35446,
+ "start": 16248.7,
+ "end": 16249.08,
+ "text": "aggregate"
+ },
+ {
+ "id": 35447,
+ "start": 16249.08,
+ "end": 16249.56,
+ "text": "information"
+ },
+ {
+ "id": 35448,
+ "start": 16249.56,
+ "end": 16249.94,
+ "text": "even"
+ },
+ {
+ "id": 35449,
+ "start": 16249.94,
+ "end": 16250.18,
+ "text": "if"
+ },
+ {
+ "id": 35450,
+ "start": 16250.18,
+ "end": 16250.76,
+ "text": "people"
+ },
+ {
+ "id": 35451,
+ "start": 16250.76,
+ "end": 16250.9,
+ "text": "made"
+ },
+ {
+ "id": 35452,
+ "start": 16250.9,
+ "end": 16251,
+ "text": "it"
+ },
+ {
+ "id": 35453,
+ "start": 16251,
+ "end": 16251.32,
+ "text": "public"
+ },
+ {
+ "id": 35454,
+ "start": 16251.32,
+ "end": 16251.46,
+ "text": "and"
+ },
+ {
+ "id": 35455,
+ "start": 16251.46,
+ "end": 16251.68,
+ "text": "chose"
+ },
+ {
+ "id": 35456,
+ "start": 16251.68,
+ "end": 16251.78,
+ "text": "to"
+ },
+ {
+ "id": 35457,
+ "start": 16251.78,
+ "end": 16251.96,
+ "text": "share"
+ },
+ {
+ "id": 35458,
+ "start": 16251.96,
+ "end": 16252.02,
+ "text": "it"
+ },
+ {
+ "id": 35459,
+ "start": 16252.02,
+ "end": 16252.14,
+ "text": "with"
+ },
+ {
+ "id": 35460,
+ "start": 16252.14,
+ "end": 16253.04,
+ "text": "everyone."
+ },
+ {
+ "id": 35461,
+ "start": 16253.04,
+ "end": 16253.88,
+ "text": "Okay,"
+ },
+ {
+ "id": 35462,
+ "start": 16253.88,
+ "end": 16254.14,
+ "text": "thanks,"
+ },
+ {
+ "id": 35463,
+ "start": 16254.14,
+ "end": 16254.34,
+ "text": "Mr"
+ },
+ {
+ "id": 35464,
+ "start": 16254.34,
+ "end": 16254.64,
+ "text": "Chairman."
+ },
+ {
+ "id": 35465,
+ "start": 16254.64,
+ "end": 16254.84,
+ "text": "Thank"
+ },
+ {
+ "id": 35466,
+ "start": 16254.84,
+ "end": 16254.96,
+ "text": "you,"
+ },
+ {
+ "id": 35467,
+ "start": 16254.96,
+ "end": 16255.3,
+ "text": "Senator"
+ },
+ {
+ "id": 35468,
+ "start": 16255.3,
+ "end": 16255.74,
+ "text": "Johnson,"
+ },
+ {
+ "id": 35469,
+ "start": 16255.74,
+ "end": 16256.18,
+ "text": "Senator"
+ },
+ {
+ "id": 35470,
+ "start": 16256.18,
+ "end": 16256.52,
+ "text": "Hasson."
+ },
+ {
+ "id": 35471,
+ "start": 16256.52,
+ "end": 16257.24,
+ "text": "Thank"
+ },
+ {
+ "id": 35472,
+ "start": 16257.24,
+ "end": 16257.38,
+ "text": "you,"
+ },
+ {
+ "id": 35473,
+ "start": 16257.38,
+ "end": 16257.7,
+ "text": "Mr"
+ },
+ {
+ "id": 35474,
+ "start": 16257.7,
+ "end": 16258.08,
+ "text": "chair."
+ },
+ {
+ "id": 35475,
+ "start": 16258.08,
+ "end": 16258.58,
+ "text": "Thank"
+ },
+ {
+ "id": 35476,
+ "start": 16258.58,
+ "end": 16258.72,
+ "text": "you,"
+ },
+ {
+ "id": 35477,
+ "start": 16258.72,
+ "end": 16259,
+ "text": "Mr"
+ },
+ {
+ "id": 35478,
+ "start": 16259,
+ "end": 16259.58,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 35479,
+ "start": 16259.58,
+ "end": 16259.76,
+ "text": "for"
+ },
+ {
+ "id": 35480,
+ "start": 16259.76,
+ "end": 16260.04,
+ "text": "being"
+ },
+ {
+ "id": 35481,
+ "start": 16260.04,
+ "end": 16260.26,
+ "text": "here"
+ },
+ {
+ "id": 35482,
+ "start": 16260.26,
+ "end": 16262.1,
+ "text": "today."
+ },
+ {
+ "id": 35483,
+ "start": 16262.1,
+ "end": 16263.5,
+ "text": "I"
+ },
+ {
+ "id": 35484,
+ "start": 16263.5,
+ "end": 16263.82,
+ "text": "want"
+ },
+ {
+ "id": 35485,
+ "start": 16263.82,
+ "end": 16263.92,
+ "text": "to"
+ },
+ {
+ "id": 35486,
+ "start": 16263.92,
+ "end": 16264.36,
+ "text": "talk"
+ },
+ {
+ "id": 35487,
+ "start": 16264.36,
+ "end": 16264.52,
+ "text": "to"
+ },
+ {
+ "id": 35488,
+ "start": 16264.52,
+ "end": 16264.58,
+ "text": "a"
+ },
+ {
+ "id": 35489,
+ "start": 16264.58,
+ "end": 16264.84,
+ "text": "couple"
+ },
+ {
+ "id": 35490,
+ "start": 16264.84,
+ "end": 16264.98,
+ "text": "of"
+ },
+ {
+ "id": 35491,
+ "start": 16264.98,
+ "end": 16265.38,
+ "text": "broader"
+ },
+ {
+ "id": 35492,
+ "start": 16265.38,
+ "end": 16265.92,
+ "text": "issues"
+ },
+ {
+ "id": 35493,
+ "start": 16265.92,
+ "end": 16266.98,
+ "text": "I'm"
+ },
+ {
+ "id": 35494,
+ "start": 16266.98,
+ "end": 16267.56,
+ "text": "concerned"
+ },
+ {
+ "id": 35495,
+ "start": 16267.56,
+ "end": 16267.72,
+ "text": "that"
+ },
+ {
+ "id": 35496,
+ "start": 16267.72,
+ "end": 16268.24,
+ "text": "Facebook's"
+ },
+ {
+ "id": 35497,
+ "start": 16268.24,
+ "end": 16269.04,
+ "text": "profitability"
+ },
+ {
+ "id": 35498,
+ "start": 16269.04,
+ "end": 16269.38,
+ "text": "rests"
+ },
+ {
+ "id": 35499,
+ "start": 16269.38,
+ "end": 16269.52,
+ "text": "on"
+ },
+ {
+ "id": 35500,
+ "start": 16269.52,
+ "end": 16269.84,
+ "text": "two"
+ },
+ {
+ "id": 35501,
+ "start": 16269.84,
+ "end": 16270.48,
+ "text": "potentially"
+ },
+ {
+ "id": 35502,
+ "start": 16270.48,
+ "end": 16271.92,
+ "text": "problematic"
+ },
+ {
+ "id": 35503,
+ "start": 16271.92,
+ "end": 16272.68,
+ "text": "foundations"
+ },
+ {
+ "id": 35504,
+ "start": 16272.68,
+ "end": 16273.06,
+ "text": "and"
+ },
+ {
+ "id": 35505,
+ "start": 16273.06,
+ "end": 16273.52,
+ "text": "we've"
+ },
+ {
+ "id": 35506,
+ "start": 16273.52,
+ "end": 16273.7,
+ "text": "heard"
+ },
+ {
+ "id": 35507,
+ "start": 16273.7,
+ "end": 16273.94,
+ "text": "other"
+ },
+ {
+ "id": 35508,
+ "start": 16273.94,
+ "end": 16274.4,
+ "text": "senators"
+ },
+ {
+ "id": 35509,
+ "start": 16274.4,
+ "end": 16274.9,
+ "text": "talk"
+ },
+ {
+ "id": 35510,
+ "start": 16274.9,
+ "end": 16275.1,
+ "text": "about"
+ },
+ {
+ "id": 35511,
+ "start": 16275.1,
+ "end": 16275.28,
+ "text": "this"
+ },
+ {
+ "id": 35512,
+ "start": 16275.28,
+ "end": 16275.36,
+ "text": "a"
+ },
+ {
+ "id": 35513,
+ "start": 16275.36,
+ "end": 16275.62,
+ "text": "little"
+ },
+ {
+ "id": 35514,
+ "start": 16275.62,
+ "end": 16276.86,
+ "text": "today."
+ },
+ {
+ "id": 35515,
+ "start": 16276.86,
+ "end": 16277.86,
+ "text": "The"
+ },
+ {
+ "id": 35516,
+ "start": 16277.86,
+ "end": 16278.36,
+ "text": "foundations"
+ },
+ {
+ "id": 35517,
+ "start": 16278.36,
+ "end": 16278.56,
+ "text": "are"
+ },
+ {
+ "id": 35518,
+ "start": 16278.56,
+ "end": 16279.32,
+ "text": "maximizing"
+ },
+ {
+ "id": 35519,
+ "start": 16279.32,
+ "end": 16279.46,
+ "text": "the"
+ },
+ {
+ "id": 35520,
+ "start": 16279.46,
+ "end": 16279.76,
+ "text": "amount"
+ },
+ {
+ "id": 35521,
+ "start": 16279.76,
+ "end": 16279.94,
+ "text": "of"
+ },
+ {
+ "id": 35522,
+ "start": 16279.94,
+ "end": 16280.3,
+ "text": "time."
+ },
+ {
+ "id": 35523,
+ "start": 16280.3,
+ "end": 16280.6,
+ "text": "People"
+ },
+ {
+ "id": 35524,
+ "start": 16280.6,
+ "end": 16280.98,
+ "text": "spend"
+ },
+ {
+ "id": 35525,
+ "start": 16280.98,
+ "end": 16281.14,
+ "text": "on"
+ },
+ {
+ "id": 35526,
+ "start": 16281.14,
+ "end": 16281.32,
+ "text": "your"
+ },
+ {
+ "id": 35527,
+ "start": 16281.32,
+ "end": 16281.76,
+ "text": "products"
+ },
+ {
+ "id": 35528,
+ "start": 16281.76,
+ "end": 16282.44,
+ "text": "and"
+ },
+ {
+ "id": 35529,
+ "start": 16282.44,
+ "end": 16282.9,
+ "text": "collecting"
+ },
+ {
+ "id": 35530,
+ "start": 16282.9,
+ "end": 16283.28,
+ "text": "people's"
+ },
+ {
+ "id": 35531,
+ "start": 16283.28,
+ "end": 16284.04,
+ "text": "data"
+ },
+ {
+ "id": 35532,
+ "start": 16284.04,
+ "end": 16284.68,
+ "text": "I've"
+ },
+ {
+ "id": 35533,
+ "start": 16284.68,
+ "end": 16284.94,
+ "text": "looked"
+ },
+ {
+ "id": 35534,
+ "start": 16284.94,
+ "end": 16285.04,
+ "text": "at"
+ },
+ {
+ "id": 35535,
+ "start": 16285.04,
+ "end": 16285.56,
+ "text": "Facebook's"
+ },
+ {
+ "id": 35536,
+ "start": 16285.56,
+ "end": 16285.92,
+ "text": "20"
+ },
+ {
+ "id": 35537,
+ "start": 16285.92,
+ "end": 16286.44,
+ "text": "17"
+ },
+ {
+ "id": 35538,
+ "start": 16286.44,
+ "end": 16286.82,
+ "text": "corporate"
+ },
+ {
+ "id": 35539,
+ "start": 16286.82,
+ "end": 16287.26,
+ "text": "financial"
+ },
+ {
+ "id": 35540,
+ "start": 16287.26,
+ "end": 16287.7,
+ "text": "statement,"
+ },
+ {
+ "id": 35541,
+ "start": 16287.7,
+ "end": 16287.88,
+ "text": "where"
+ },
+ {
+ "id": 35542,
+ "start": 16287.88,
+ "end": 16288,
+ "text": "you"
+ },
+ {
+ "id": 35543,
+ "start": 16288,
+ "end": 16288.3,
+ "text": "lay"
+ },
+ {
+ "id": 35544,
+ "start": 16288.3,
+ "end": 16288.5,
+ "text": "out"
+ },
+ {
+ "id": 35545,
+ "start": 16288.5,
+ "end": 16288.88,
+ "text": "some"
+ },
+ {
+ "id": 35546,
+ "start": 16288.88,
+ "end": 16289.14,
+ "text": "of"
+ },
+ {
+ "id": 35547,
+ "start": 16289.14,
+ "end": 16289.28,
+ "text": "the"
+ },
+ {
+ "id": 35548,
+ "start": 16289.28,
+ "end": 16289.7,
+ "text": "major"
+ },
+ {
+ "id": 35549,
+ "start": 16289.7,
+ "end": 16290.1,
+ "text": "risks"
+ },
+ {
+ "id": 35550,
+ "start": 16290.1,
+ "end": 16290.3,
+ "text": "to"
+ },
+ {
+ "id": 35551,
+ "start": 16290.3,
+ "end": 16290.5,
+ "text": "your"
+ },
+ {
+ "id": 35552,
+ "start": 16290.5,
+ "end": 16290.9,
+ "text": "business."
+ },
+ {
+ "id": 35553,
+ "start": 16290.9,
+ "end": 16291.86,
+ "text": "One"
+ },
+ {
+ "id": 35554,
+ "start": 16291.86,
+ "end": 16292.24,
+ "text": "risk"
+ },
+ {
+ "id": 35555,
+ "start": 16292.24,
+ "end": 16292.5,
+ "text": "is"
+ },
+ {
+ "id": 35556,
+ "start": 16292.5,
+ "end": 16292.62,
+ "text": "a"
+ },
+ {
+ "id": 35557,
+ "start": 16292.62,
+ "end": 16293.22,
+ "text": "decrease"
+ },
+ {
+ "id": 35558,
+ "start": 16293.22,
+ "end": 16293.64,
+ "text": "in"
+ },
+ {
+ "id": 35559,
+ "start": 16293.64,
+ "end": 16293.84,
+ "text": "and"
+ },
+ {
+ "id": 35560,
+ "start": 16293.84,
+ "end": 16294.02,
+ "text": "I"
+ },
+ {
+ "id": 35561,
+ "start": 16294.02,
+ "end": 16294.38,
+ "text": "quote"
+ },
+ {
+ "id": 35562,
+ "start": 16294.38,
+ "end": 16295.2,
+ "text": "user"
+ },
+ {
+ "id": 35563,
+ "start": 16295.2,
+ "end": 16296,
+ "text": "engagement"
+ },
+ {
+ "id": 35564,
+ "start": 16296,
+ "end": 16296.76,
+ "text": "including"
+ },
+ {
+ "id": 35565,
+ "start": 16296.76,
+ "end": 16297.12,
+ "text": "time"
+ },
+ {
+ "id": 35566,
+ "start": 16297.12,
+ "end": 16297.48,
+ "text": "spent"
+ },
+ {
+ "id": 35567,
+ "start": 16297.48,
+ "end": 16297.62,
+ "text": "on"
+ },
+ {
+ "id": 35568,
+ "start": 16297.62,
+ "end": 16297.8,
+ "text": "our"
+ },
+ {
+ "id": 35569,
+ "start": 16297.8,
+ "end": 16298.26,
+ "text": "products"
+ },
+ {
+ "id": 35570,
+ "start": 16298.26,
+ "end": 16299.14,
+ "text": "that"
+ },
+ {
+ "id": 35571,
+ "start": 16299.14,
+ "end": 16299.62,
+ "text": "concerns"
+ },
+ {
+ "id": 35572,
+ "start": 16299.62,
+ "end": 16299.8,
+ "text": "me"
+ },
+ {
+ "id": 35573,
+ "start": 16299.8,
+ "end": 16300.2,
+ "text": "because"
+ },
+ {
+ "id": 35574,
+ "start": 16300.2,
+ "end": 16300.3,
+ "text": "of"
+ },
+ {
+ "id": 35575,
+ "start": 16300.3,
+ "end": 16300.44,
+ "text": "the"
+ },
+ {
+ "id": 35576,
+ "start": 16300.44,
+ "end": 16300.8,
+ "text": "research"
+ },
+ {
+ "id": 35577,
+ "start": 16300.8,
+ "end": 16301.04,
+ "text": "we've"
+ },
+ {
+ "id": 35578,
+ "start": 16301.04,
+ "end": 16301.24,
+ "text": "seen"
+ },
+ {
+ "id": 35579,
+ "start": 16301.24,
+ "end": 16301.88,
+ "text": "suggesting"
+ },
+ {
+ "id": 35580,
+ "start": 16301.88,
+ "end": 16302.4,
+ "text": "that"
+ },
+ {
+ "id": 35581,
+ "start": 16302.4,
+ "end": 16302.86,
+ "text": "too"
+ },
+ {
+ "id": 35582,
+ "start": 16302.86,
+ "end": 16303.04,
+ "text": "much"
+ },
+ {
+ "id": 35583,
+ "start": 16303.04,
+ "end": 16303.36,
+ "text": "time"
+ },
+ {
+ "id": 35584,
+ "start": 16303.36,
+ "end": 16303.64,
+ "text": "spent"
+ },
+ {
+ "id": 35585,
+ "start": 16303.64,
+ "end": 16303.76,
+ "text": "on"
+ },
+ {
+ "id": 35586,
+ "start": 16303.76,
+ "end": 16304.1,
+ "text": "social"
+ },
+ {
+ "id": 35587,
+ "start": 16304.1,
+ "end": 16304.52,
+ "text": "media"
+ },
+ {
+ "id": 35588,
+ "start": 16304.52,
+ "end": 16305,
+ "text": "can"
+ },
+ {
+ "id": 35589,
+ "start": 16305,
+ "end": 16305.22,
+ "text": "hurt"
+ },
+ {
+ "id": 35590,
+ "start": 16305.22,
+ "end": 16305.58,
+ "text": "people's"
+ },
+ {
+ "id": 35591,
+ "start": 16305.58,
+ "end": 16305.94,
+ "text": "mental"
+ },
+ {
+ "id": 35592,
+ "start": 16305.94,
+ "end": 16306.22,
+ "text": "health,"
+ },
+ {
+ "id": 35593,
+ "start": 16306.22,
+ "end": 16307.04,
+ "text": "especially"
+ },
+ {
+ "id": 35594,
+ "start": 16307.04,
+ "end": 16307.32,
+ "text": "young"
+ },
+ {
+ "id": 35595,
+ "start": 16307.32,
+ "end": 16307.96,
+ "text": "people."
+ },
+ {
+ "id": 35596,
+ "start": 16307.96,
+ "end": 16308.66,
+ "text": "Another"
+ },
+ {
+ "id": 35597,
+ "start": 16308.66,
+ "end": 16309.04,
+ "text": "major"
+ },
+ {
+ "id": 35598,
+ "start": 16309.04,
+ "end": 16309.28,
+ "text": "risk"
+ },
+ {
+ "id": 35599,
+ "start": 16309.28,
+ "end": 16309.44,
+ "text": "to"
+ },
+ {
+ "id": 35600,
+ "start": 16309.44,
+ "end": 16309.62,
+ "text": "your"
+ },
+ {
+ "id": 35601,
+ "start": 16309.62,
+ "end": 16310.06,
+ "text": "business"
+ },
+ {
+ "id": 35602,
+ "start": 16310.06,
+ "end": 16310.2,
+ "text": "is"
+ },
+ {
+ "id": 35603,
+ "start": 16310.2,
+ "end": 16310.34,
+ "text": "a"
+ },
+ {
+ "id": 35604,
+ "start": 16310.34,
+ "end": 16310.82,
+ "text": "potential"
+ },
+ {
+ "id": 35605,
+ "start": 16310.82,
+ "end": 16311.26,
+ "text": "decline"
+ },
+ {
+ "id": 35606,
+ "start": 16311.26,
+ "end": 16311.42,
+ "text": "in"
+ },
+ {
+ "id": 35607,
+ "start": 16311.42,
+ "end": 16311.56,
+ "text": "and"
+ },
+ {
+ "id": 35608,
+ "start": 16311.56,
+ "end": 16311.78,
+ "text": "here's"
+ },
+ {
+ "id": 35609,
+ "start": 16311.78,
+ "end": 16312.1,
+ "text": "another"
+ },
+ {
+ "id": 35610,
+ "start": 16312.1,
+ "end": 16312.4,
+ "text": "quote."
+ },
+ {
+ "id": 35611,
+ "start": 16312.4,
+ "end": 16312.86,
+ "text": "The"
+ },
+ {
+ "id": 35612,
+ "start": 16312.86,
+ "end": 16313.56,
+ "text": "effectiveness"
+ },
+ {
+ "id": 35613,
+ "start": 16313.56,
+ "end": 16313.8,
+ "text": "of"
+ },
+ {
+ "id": 35614,
+ "start": 16313.8,
+ "end": 16314,
+ "text": "our"
+ },
+ {
+ "id": 35615,
+ "start": 16314,
+ "end": 16314.34,
+ "text": "ad"
+ },
+ {
+ "id": 35616,
+ "start": 16314.34,
+ "end": 16314.82,
+ "text": "targeting"
+ },
+ {
+ "id": 35617,
+ "start": 16314.82,
+ "end": 16315.06,
+ "text": "or"
+ },
+ {
+ "id": 35618,
+ "start": 16315.06,
+ "end": 16315.18,
+ "text": "the"
+ },
+ {
+ "id": 35619,
+ "start": 16315.18,
+ "end": 16315.52,
+ "text": "degree"
+ },
+ {
+ "id": 35620,
+ "start": 16315.52,
+ "end": 16315.6,
+ "text": "to"
+ },
+ {
+ "id": 35621,
+ "start": 16315.6,
+ "end": 16315.8,
+ "text": "which"
+ },
+ {
+ "id": 35622,
+ "start": 16315.8,
+ "end": 16316.3,
+ "text": "users"
+ },
+ {
+ "id": 35623,
+ "start": 16316.3,
+ "end": 16317,
+ "text": "opt"
+ },
+ {
+ "id": 35624,
+ "start": 16317,
+ "end": 16317.26,
+ "text": "out"
+ },
+ {
+ "id": 35625,
+ "start": 16317.26,
+ "end": 16317.36,
+ "text": "of"
+ },
+ {
+ "id": 35626,
+ "start": 16317.36,
+ "end": 16317.72,
+ "text": "certain"
+ },
+ {
+ "id": 35627,
+ "start": 16317.72,
+ "end": 16318,
+ "text": "types"
+ },
+ {
+ "id": 35628,
+ "start": 16318,
+ "end": 16318.14,
+ "text": "of"
+ },
+ {
+ "id": 35629,
+ "start": 16318.14,
+ "end": 16318.42,
+ "text": "ad"
+ },
+ {
+ "id": 35630,
+ "start": 16318.42,
+ "end": 16318.92,
+ "text": "targeting,"
+ },
+ {
+ "id": 35631,
+ "start": 16318.92,
+ "end": 16319.86,
+ "text": "including"
+ },
+ {
+ "id": 35632,
+ "start": 16319.86,
+ "end": 16320.08,
+ "text": "as"
+ },
+ {
+ "id": 35633,
+ "start": 16320.08,
+ "end": 16320.16,
+ "text": "a"
+ },
+ {
+ "id": 35634,
+ "start": 16320.16,
+ "end": 16320.54,
+ "text": "result"
+ },
+ {
+ "id": 35635,
+ "start": 16320.54,
+ "end": 16320.64,
+ "text": "of"
+ },
+ {
+ "id": 35636,
+ "start": 16320.64,
+ "end": 16321.12,
+ "text": "changes"
+ },
+ {
+ "id": 35637,
+ "start": 16321.12,
+ "end": 16321.3,
+ "text": "that"
+ },
+ {
+ "id": 35638,
+ "start": 16321.3,
+ "end": 16321.78,
+ "text": "enhance"
+ },
+ {
+ "id": 35639,
+ "start": 16321.78,
+ "end": 16322.02,
+ "text": "the"
+ },
+ {
+ "id": 35640,
+ "start": 16322.02,
+ "end": 16322.46,
+ "text": "users"
+ },
+ {
+ "id": 35641,
+ "start": 16322.46,
+ "end": 16323.38,
+ "text": "privacy"
+ },
+ {
+ "id": 35642,
+ "start": 16323.38,
+ "end": 16324,
+ "text": "there's"
+ },
+ {
+ "id": 35643,
+ "start": 16324,
+ "end": 16324.56,
+ "text": "clearly"
+ },
+ {
+ "id": 35644,
+ "start": 16324.56,
+ "end": 16325.12,
+ "text": "tension"
+ },
+ {
+ "id": 35645,
+ "start": 16325.12,
+ "end": 16325.7,
+ "text": "as"
+ },
+ {
+ "id": 35646,
+ "start": 16325.7,
+ "end": 16325.96,
+ "text": "other"
+ },
+ {
+ "id": 35647,
+ "start": 16325.96,
+ "end": 16326.4,
+ "text": "senators"
+ },
+ {
+ "id": 35648,
+ "start": 16326.4,
+ "end": 16326.54,
+ "text": "have"
+ },
+ {
+ "id": 35649,
+ "start": 16326.54,
+ "end": 16326.86,
+ "text": "pointed"
+ },
+ {
+ "id": 35650,
+ "start": 16326.86,
+ "end": 16327.14,
+ "text": "out"
+ },
+ {
+ "id": 35651,
+ "start": 16327.14,
+ "end": 16327.84,
+ "text": "between"
+ },
+ {
+ "id": 35652,
+ "start": 16327.84,
+ "end": 16328.08,
+ "text": "your"
+ },
+ {
+ "id": 35653,
+ "start": 16328.08,
+ "end": 16328.42,
+ "text": "bottom"
+ },
+ {
+ "id": 35654,
+ "start": 16328.42,
+ "end": 16328.78,
+ "text": "line"
+ },
+ {
+ "id": 35655,
+ "start": 16328.78,
+ "end": 16329.04,
+ "text": "and"
+ },
+ {
+ "id": 35656,
+ "start": 16329.04,
+ "end": 16329.32,
+ "text": "what's"
+ },
+ {
+ "id": 35657,
+ "start": 16329.32,
+ "end": 16329.68,
+ "text": "best"
+ },
+ {
+ "id": 35658,
+ "start": 16329.68,
+ "end": 16329.9,
+ "text": "for"
+ },
+ {
+ "id": 35659,
+ "start": 16329.9,
+ "end": 16330.08,
+ "text": "your"
+ },
+ {
+ "id": 35660,
+ "start": 16330.08,
+ "end": 16330.52,
+ "text": "users."
+ },
+ {
+ "id": 35661,
+ "start": 16330.52,
+ "end": 16331.18,
+ "text": "You"
+ },
+ {
+ "id": 35662,
+ "start": 16331.18,
+ "end": 16331.6,
+ "text": "said"
+ },
+ {
+ "id": 35663,
+ "start": 16331.6,
+ "end": 16331.78,
+ "text": "in"
+ },
+ {
+ "id": 35664,
+ "start": 16331.78,
+ "end": 16331.98,
+ "text": "your"
+ },
+ {
+ "id": 35665,
+ "start": 16331.98,
+ "end": 16332.64,
+ "text": "testimony"
+ },
+ {
+ "id": 35666,
+ "start": 16332.64,
+ "end": 16332.84,
+ "text": "that"
+ },
+ {
+ "id": 35667,
+ "start": 16332.84,
+ "end": 16333.42,
+ "text": "Facebook's"
+ },
+ {
+ "id": 35668,
+ "start": 16333.42,
+ "end": 16333.83,
+ "text": "mission"
+ },
+ {
+ "id": 35669,
+ "start": 16333.83,
+ "end": 16334.49,
+ "text": "is"
+ },
+ {
+ "id": 35670,
+ "start": 16334.49,
+ "end": 16334.63,
+ "text": "to"
+ },
+ {
+ "id": 35671,
+ "start": 16334.63,
+ "end": 16334.85,
+ "text": "bring"
+ },
+ {
+ "id": 35672,
+ "start": 16334.85,
+ "end": 16334.97,
+ "text": "the"
+ },
+ {
+ "id": 35673,
+ "start": 16334.97,
+ "end": 16335.23,
+ "text": "world"
+ },
+ {
+ "id": 35674,
+ "start": 16335.23,
+ "end": 16335.65,
+ "text": "closer"
+ },
+ {
+ "id": 35675,
+ "start": 16335.65,
+ "end": 16336.03,
+ "text": "together."
+ },
+ {
+ "id": 35676,
+ "start": 16336.03,
+ "end": 16336.53,
+ "text": "And"
+ },
+ {
+ "id": 35677,
+ "start": 16336.53,
+ "end": 16336.81,
+ "text": "you've"
+ },
+ {
+ "id": 35678,
+ "start": 16336.81,
+ "end": 16337.07,
+ "text": "said"
+ },
+ {
+ "id": 35679,
+ "start": 16337.07,
+ "end": 16337.25,
+ "text": "that"
+ },
+ {
+ "id": 35680,
+ "start": 16337.25,
+ "end": 16337.45,
+ "text": "you"
+ },
+ {
+ "id": 35681,
+ "start": 16337.45,
+ "end": 16337.67,
+ "text": "will"
+ },
+ {
+ "id": 35682,
+ "start": 16337.67,
+ "end": 16337.97,
+ "text": "never"
+ },
+ {
+ "id": 35683,
+ "start": 16337.97,
+ "end": 16338.81,
+ "text": "Prioritise"
+ },
+ {
+ "id": 35684,
+ "start": 16338.81,
+ "end": 16339.71,
+ "text": "advertisers"
+ },
+ {
+ "id": 35685,
+ "start": 16339.71,
+ "end": 16340.15,
+ "text": "over"
+ },
+ {
+ "id": 35686,
+ "start": 16340.15,
+ "end": 16340.43,
+ "text": "that"
+ },
+ {
+ "id": 35687,
+ "start": 16340.43,
+ "end": 16341.09,
+ "text": "mission."
+ },
+ {
+ "id": 35688,
+ "start": 16341.09,
+ "end": 16341.57,
+ "text": "And"
+ },
+ {
+ "id": 35689,
+ "start": 16341.57,
+ "end": 16341.73,
+ "text": "I"
+ },
+ {
+ "id": 35690,
+ "start": 16341.73,
+ "end": 16342.17,
+ "text": "believe"
+ },
+ {
+ "id": 35691,
+ "start": 16342.17,
+ "end": 16343.11,
+ "text": "that"
+ },
+ {
+ "id": 35692,
+ "start": 16343.11,
+ "end": 16343.29,
+ "text": "you"
+ },
+ {
+ "id": 35693,
+ "start": 16343.29,
+ "end": 16343.63,
+ "text": "believe"
+ },
+ {
+ "id": 35694,
+ "start": 16343.63,
+ "end": 16344.28,
+ "text": "that."
+ },
+ {
+ "id": 35695,
+ "start": 16344.28,
+ "end": 16344.82,
+ "text": "But"
+ },
+ {
+ "id": 35696,
+ "start": 16344.82,
+ "end": 16344.92,
+ "text": "at"
+ },
+ {
+ "id": 35697,
+ "start": 16344.92,
+ "end": 16345.06,
+ "text": "the"
+ },
+ {
+ "id": 35698,
+ "start": 16345.06,
+ "end": 16345.32,
+ "text": "end,"
+ },
+ {
+ "id": 35699,
+ "start": 16345.32,
+ "end": 16345.44,
+ "text": "of"
+ },
+ {
+ "id": 35700,
+ "start": 16345.44,
+ "end": 16345.6,
+ "text": "the"
+ },
+ {
+ "id": 35701,
+ "start": 16345.6,
+ "end": 16345.78,
+ "text": "day,"
+ },
+ {
+ "id": 35702,
+ "start": 16345.78,
+ "end": 16346.7,
+ "text": "your"
+ },
+ {
+ "id": 35703,
+ "start": 16346.7,
+ "end": 16347.26,
+ "text": "business"
+ },
+ {
+ "id": 35704,
+ "start": 16347.26,
+ "end": 16347.6,
+ "text": "model"
+ },
+ {
+ "id": 35705,
+ "start": 16347.6,
+ "end": 16348.12,
+ "text": "does"
+ },
+ {
+ "id": 35706,
+ "start": 16348.12,
+ "end": 16348.96,
+ "text": "Prioritise"
+ },
+ {
+ "id": 35707,
+ "start": 16348.96,
+ "end": 16349.98,
+ "text": "advertisers"
+ },
+ {
+ "id": 35708,
+ "start": 16349.98,
+ "end": 16350.44,
+ "text": "over"
+ },
+ {
+ "id": 35709,
+ "start": 16350.44,
+ "end": 16350.58,
+ "text": "the"
+ },
+ {
+ "id": 35710,
+ "start": 16350.58,
+ "end": 16350.94,
+ "text": "mission."
+ },
+ {
+ "id": 35711,
+ "start": 16350.94,
+ "end": 16352,
+ "text": "Facebook"
+ },
+ {
+ "id": 35712,
+ "start": 16352,
+ "end": 16352.22,
+ "text": "is"
+ },
+ {
+ "id": 35713,
+ "start": 16352.22,
+ "end": 16352.4,
+ "text": "a"
+ },
+ {
+ "id": 35714,
+ "start": 16352.4,
+ "end": 16352.72,
+ "text": "for"
+ },
+ {
+ "id": 35715,
+ "start": 16352.72,
+ "end": 16353.18,
+ "text": "profit"
+ },
+ {
+ "id": 35716,
+ "start": 16353.18,
+ "end": 16353.6,
+ "text": "company."
+ },
+ {
+ "id": 35717,
+ "start": 16353.6,
+ "end": 16354.18,
+ "text": "And"
+ },
+ {
+ "id": 35718,
+ "start": 16354.18,
+ "end": 16354.32,
+ "text": "as"
+ },
+ {
+ "id": 35719,
+ "start": 16354.32,
+ "end": 16354.44,
+ "text": "a"
+ },
+ {
+ "id": 35720,
+ "start": 16354.44,
+ "end": 16354.94,
+ "text": "CEO,"
+ },
+ {
+ "id": 35721,
+ "start": 16354.94,
+ "end": 16355.1,
+ "text": "you"
+ },
+ {
+ "id": 35722,
+ "start": 16355.1,
+ "end": 16355.28,
+ "text": "have"
+ },
+ {
+ "id": 35723,
+ "start": 16355.28,
+ "end": 16355.34,
+ "text": "a"
+ },
+ {
+ "id": 35724,
+ "start": 16355.34,
+ "end": 16355.74,
+ "text": "legal"
+ },
+ {
+ "id": 35725,
+ "start": 16355.74,
+ "end": 16356.08,
+ "text": "duty"
+ },
+ {
+ "id": 35726,
+ "start": 16356.08,
+ "end": 16356.28,
+ "text": "to"
+ },
+ {
+ "id": 35727,
+ "start": 16356.28,
+ "end": 16356.54,
+ "text": "do"
+ },
+ {
+ "id": 35728,
+ "start": 16356.54,
+ "end": 16356.82,
+ "text": "what's"
+ },
+ {
+ "id": 35729,
+ "start": 16356.82,
+ "end": 16357.1,
+ "text": "best"
+ },
+ {
+ "id": 35730,
+ "start": 16357.1,
+ "end": 16357.26,
+ "text": "for"
+ },
+ {
+ "id": 35731,
+ "start": 16357.26,
+ "end": 16357.53,
+ "text": "your"
+ },
+ {
+ "id": 35732,
+ "start": 16357.53,
+ "end": 16358.07,
+ "text": "shareholders."
+ },
+ {
+ "id": 35733,
+ "start": 16358.07,
+ "end": 16358.81,
+ "text": "So,"
+ },
+ {
+ "id": 35734,
+ "start": 16358.81,
+ "end": 16359.17,
+ "text": "given"
+ },
+ {
+ "id": 35735,
+ "start": 16359.17,
+ "end": 16359.45,
+ "text": "all"
+ },
+ {
+ "id": 35736,
+ "start": 16359.45,
+ "end": 16359.55,
+ "text": "of"
+ },
+ {
+ "id": 35737,
+ "start": 16359.55,
+ "end": 16359.91,
+ "text": "that,"
+ },
+ {
+ "id": 35738,
+ "start": 16359.91,
+ "end": 16360.59,
+ "text": "why"
+ },
+ {
+ "id": 35739,
+ "start": 16360.59,
+ "end": 16360.99,
+ "text": "should"
+ },
+ {
+ "id": 35740,
+ "start": 16360.99,
+ "end": 16361.13,
+ "text": "we"
+ },
+ {
+ "id": 35741,
+ "start": 16361.13,
+ "end": 16361.53,
+ "text": "think"
+ },
+ {
+ "id": 35742,
+ "start": 16361.53,
+ "end": 16362.03,
+ "text": "that"
+ },
+ {
+ "id": 35743,
+ "start": 16362.03,
+ "end": 16362.61,
+ "text": "Facebook"
+ },
+ {
+ "id": 35744,
+ "start": 16362.61,
+ "end": 16362.97,
+ "text": "on"
+ },
+ {
+ "id": 35745,
+ "start": 16362.97,
+ "end": 16363.21,
+ "text": "its"
+ },
+ {
+ "id": 35746,
+ "start": 16363.21,
+ "end": 16363.67,
+ "text": "own"
+ },
+ {
+ "id": 35747,
+ "start": 16363.67,
+ "end": 16364.29,
+ "text": "will"
+ },
+ {
+ "id": 35748,
+ "start": 16364.29,
+ "end": 16364.61,
+ "text": "ever"
+ },
+ {
+ "id": 35749,
+ "start": 16364.61,
+ "end": 16365.05,
+ "text": "truly"
+ },
+ {
+ "id": 35750,
+ "start": 16365.05,
+ "end": 16365.25,
+ "text": "be"
+ },
+ {
+ "id": 35751,
+ "start": 16365.25,
+ "end": 16365.61,
+ "text": "able"
+ },
+ {
+ "id": 35752,
+ "start": 16365.61,
+ "end": 16365.79,
+ "text": "to"
+ },
+ {
+ "id": 35753,
+ "start": 16365.79,
+ "end": 16365.99,
+ "text": "make"
+ },
+ {
+ "id": 35754,
+ "start": 16365.99,
+ "end": 16366.15,
+ "text": "the"
+ },
+ {
+ "id": 35755,
+ "start": 16366.15,
+ "end": 16366.61,
+ "text": "changes"
+ },
+ {
+ "id": 35756,
+ "start": 16366.61,
+ "end": 16366.81,
+ "text": "that"
+ },
+ {
+ "id": 35757,
+ "start": 16366.81,
+ "end": 16366.93,
+ "text": "we"
+ },
+ {
+ "id": 35758,
+ "start": 16366.93,
+ "end": 16367.19,
+ "text": "need"
+ },
+ {
+ "id": 35759,
+ "start": 16367.19,
+ "end": 16367.47,
+ "text": "to"
+ },
+ {
+ "id": 35760,
+ "start": 16367.47,
+ "end": 16367.71,
+ "text": "make"
+ },
+ {
+ "id": 35761,
+ "start": 16367.71,
+ "end": 16367.85,
+ "text": "to"
+ },
+ {
+ "id": 35762,
+ "start": 16367.85,
+ "end": 16368.25,
+ "text": "protect"
+ },
+ {
+ "id": 35763,
+ "start": 16368.25,
+ "end": 16368.83,
+ "text": "Americans"
+ },
+ {
+ "id": 35764,
+ "start": 16368.83,
+ "end": 16369.07,
+ "text": "well"
+ },
+ {
+ "id": 35765,
+ "start": 16369.07,
+ "end": 16369.33,
+ "text": "being"
+ },
+ {
+ "id": 35766,
+ "start": 16369.33,
+ "end": 16369.47,
+ "text": "in"
+ },
+ {
+ "id": 35767,
+ "start": 16369.47,
+ "end": 16370.78,
+ "text": "privacy."
+ },
+ {
+ "id": 35768,
+ "start": 16370.78,
+ "end": 16371.76,
+ "text": "Well,"
+ },
+ {
+ "id": 35769,
+ "start": 16371.76,
+ "end": 16372.04,
+ "text": "Senator,"
+ },
+ {
+ "id": 35770,
+ "start": 16372.04,
+ "end": 16372.16,
+ "text": "you"
+ },
+ {
+ "id": 35771,
+ "start": 16372.16,
+ "end": 16372.38,
+ "text": "raise"
+ },
+ {
+ "id": 35772,
+ "start": 16372.38,
+ "end": 16372.42,
+ "text": "a"
+ },
+ {
+ "id": 35773,
+ "start": 16372.42,
+ "end": 16372.72,
+ "text": "number"
+ },
+ {
+ "id": 35774,
+ "start": 16372.72,
+ "end": 16372.82,
+ "text": "of"
+ },
+ {
+ "id": 35775,
+ "start": 16372.82,
+ "end": 16373.32,
+ "text": "important"
+ },
+ {
+ "id": 35776,
+ "start": 16373.32,
+ "end": 16373.74,
+ "text": "points"
+ },
+ {
+ "id": 35777,
+ "start": 16373.74,
+ "end": 16373.86,
+ "text": "in"
+ },
+ {
+ "id": 35778,
+ "start": 16373.86,
+ "end": 16374.08,
+ "text": "there."
+ },
+ {
+ "id": 35779,
+ "start": 16374.08,
+ "end": 16374.46,
+ "text": "So"
+ },
+ {
+ "id": 35780,
+ "start": 16374.46,
+ "end": 16375.44,
+ "text": "let"
+ },
+ {
+ "id": 35781,
+ "start": 16375.44,
+ "end": 16375.54,
+ "text": "me"
+ },
+ {
+ "id": 35782,
+ "start": 16375.54,
+ "end": 16375.86,
+ "text": "respond"
+ },
+ {
+ "id": 35783,
+ "start": 16375.86,
+ "end": 16375.98,
+ "text": "in"
+ },
+ {
+ "id": 35784,
+ "start": 16375.98,
+ "end": 16376.36,
+ "text": "a"
+ },
+ {
+ "id": 35785,
+ "start": 16376.36,
+ "end": 16376.52,
+ "text": "couple"
+ },
+ {
+ "id": 35786,
+ "start": 16376.52,
+ "end": 16376.6,
+ "text": "of"
+ },
+ {
+ "id": 35787,
+ "start": 16376.6,
+ "end": 16376.84,
+ "text": "different"
+ },
+ {
+ "id": 35788,
+ "start": 16376.84,
+ "end": 16377.02,
+ "text": "ways,"
+ },
+ {
+ "id": 35789,
+ "start": 16377.02,
+ "end": 16377.92,
+ "text": "the"
+ },
+ {
+ "id": 35790,
+ "start": 16377.92,
+ "end": 16378.2,
+ "text": "first"
+ },
+ {
+ "id": 35791,
+ "start": 16378.2,
+ "end": 16378.38,
+ "text": "is"
+ },
+ {
+ "id": 35792,
+ "start": 16378.38,
+ "end": 16378.6,
+ "text": "that"
+ },
+ {
+ "id": 35793,
+ "start": 16378.6,
+ "end": 16379.26,
+ "text": "I"
+ },
+ {
+ "id": 35794,
+ "start": 16379.26,
+ "end": 16379.42,
+ "text": "think"
+ },
+ {
+ "id": 35795,
+ "start": 16379.42,
+ "end": 16379.58,
+ "text": "it's"
+ },
+ {
+ "id": 35796,
+ "start": 16379.58,
+ "end": 16379.84,
+ "text": "really"
+ },
+ {
+ "id": 35797,
+ "start": 16379.84,
+ "end": 16380.2,
+ "text": "important"
+ },
+ {
+ "id": 35798,
+ "start": 16380.2,
+ "end": 16380.3,
+ "text": "to"
+ },
+ {
+ "id": 35799,
+ "start": 16380.3,
+ "end": 16380.5,
+ "text": "think"
+ },
+ {
+ "id": 35800,
+ "start": 16380.5,
+ "end": 16380.68,
+ "text": "about"
+ },
+ {
+ "id": 35801,
+ "start": 16380.68,
+ "end": 16380.84,
+ "text": "what"
+ },
+ {
+ "id": 35802,
+ "start": 16380.84,
+ "end": 16381,
+ "text": "we're"
+ },
+ {
+ "id": 35803,
+ "start": 16381,
+ "end": 16381.24,
+ "text": "doing"
+ },
+ {
+ "id": 35804,
+ "start": 16381.24,
+ "end": 16381.4,
+ "text": "is"
+ },
+ {
+ "id": 35805,
+ "start": 16381.4,
+ "end": 16381.76,
+ "text": "building"
+ },
+ {
+ "id": 35806,
+ "start": 16381.76,
+ "end": 16381.94,
+ "text": "this"
+ },
+ {
+ "id": 35807,
+ "start": 16381.94,
+ "end": 16382.42,
+ "text": "community"
+ },
+ {
+ "id": 35808,
+ "start": 16382.42,
+ "end": 16382.62,
+ "text": "over"
+ },
+ {
+ "id": 35809,
+ "start": 16382.62,
+ "end": 16382.74,
+ "text": "the"
+ },
+ {
+ "id": 35810,
+ "start": 16382.74,
+ "end": 16382.98,
+ "text": "long"
+ },
+ {
+ "id": 35811,
+ "start": 16382.98,
+ "end": 16383.24,
+ "text": "term."
+ },
+ {
+ "id": 35812,
+ "start": 16383.24,
+ "end": 16384,
+ "text": "Any"
+ },
+ {
+ "id": 35813,
+ "start": 16384,
+ "end": 16384.34,
+ "text": "business"
+ },
+ {
+ "id": 35814,
+ "start": 16384.34,
+ "end": 16384.54,
+ "text": "has"
+ },
+ {
+ "id": 35815,
+ "start": 16384.54,
+ "end": 16384.66,
+ "text": "the"
+ },
+ {
+ "id": 35816,
+ "start": 16384.66,
+ "end": 16385.13,
+ "text": "opportunity"
+ },
+ {
+ "id": 35817,
+ "start": 16385.13,
+ "end": 16385.33,
+ "text": "to"
+ },
+ {
+ "id": 35818,
+ "start": 16385.33,
+ "end": 16385.53,
+ "text": "do"
+ },
+ {
+ "id": 35819,
+ "start": 16385.53,
+ "end": 16385.77,
+ "text": "things"
+ },
+ {
+ "id": 35820,
+ "start": 16385.77,
+ "end": 16385.93,
+ "text": "that"
+ },
+ {
+ "id": 35821,
+ "start": 16385.93,
+ "end": 16386.13,
+ "text": "might"
+ },
+ {
+ "id": 35822,
+ "start": 16386.13,
+ "end": 16386.53,
+ "text": "increase"
+ },
+ {
+ "id": 35823,
+ "start": 16386.53,
+ "end": 16387.29,
+ "text": "revenue"
+ },
+ {
+ "id": 35824,
+ "start": 16387.29,
+ "end": 16387.39,
+ "text": "in"
+ },
+ {
+ "id": 35825,
+ "start": 16387.39,
+ "end": 16387.51,
+ "text": "the"
+ },
+ {
+ "id": 35826,
+ "start": 16387.51,
+ "end": 16387.77,
+ "text": "short"
+ },
+ {
+ "id": 35827,
+ "start": 16387.77,
+ "end": 16388.05,
+ "text": "term."
+ },
+ {
+ "id": 35828,
+ "start": 16388.05,
+ "end": 16388.33,
+ "text": "But"
+ },
+ {
+ "id": 35829,
+ "start": 16388.33,
+ "end": 16388.69,
+ "text": "at"
+ },
+ {
+ "id": 35830,
+ "start": 16388.69,
+ "end": 16388.79,
+ "text": "the"
+ },
+ {
+ "id": 35831,
+ "start": 16388.79,
+ "end": 16389.37,
+ "text": "expensive"
+ },
+ {
+ "id": 35832,
+ "start": 16389.37,
+ "end": 16389.75,
+ "text": "trust"
+ },
+ {
+ "id": 35833,
+ "start": 16389.75,
+ "end": 16389.95,
+ "text": "or"
+ },
+ {
+ "id": 35834,
+ "start": 16389.95,
+ "end": 16390.29,
+ "text": "building"
+ },
+ {
+ "id": 35835,
+ "start": 16390.29,
+ "end": 16390.79,
+ "text": "engagement"
+ },
+ {
+ "id": 35836,
+ "start": 16390.79,
+ "end": 16391.05,
+ "text": "over"
+ },
+ {
+ "id": 35837,
+ "start": 16391.05,
+ "end": 16391.37,
+ "text": "time,"
+ },
+ {
+ "id": 35838,
+ "start": 16391.37,
+ "end": 16392.05,
+ "text": "what"
+ },
+ {
+ "id": 35839,
+ "start": 16392.05,
+ "end": 16392.23,
+ "text": "we"
+ },
+ {
+ "id": 35840,
+ "start": 16392.23,
+ "end": 16392.57,
+ "text": "actually"
+ },
+ {
+ "id": 35841,
+ "start": 16392.57,
+ "end": 16392.83,
+ "text": "find"
+ },
+ {
+ "id": 35842,
+ "start": 16392.83,
+ "end": 16393.01,
+ "text": "is"
+ },
+ {
+ "id": 35843,
+ "start": 16393.01,
+ "end": 16393.29,
+ "text": "not"
+ },
+ {
+ "id": 35844,
+ "start": 16393.29,
+ "end": 16393.97,
+ "text": "necessarily"
+ },
+ {
+ "id": 35845,
+ "start": 16393.97,
+ "end": 16394.21,
+ "text": "that"
+ },
+ {
+ "id": 35846,
+ "start": 16394.21,
+ "end": 16394.71,
+ "text": "increasing"
+ },
+ {
+ "id": 35847,
+ "start": 16394.71,
+ "end": 16395.01,
+ "text": "time"
+ },
+ {
+ "id": 35848,
+ "start": 16395.01,
+ "end": 16395.45,
+ "text": "spent,"
+ },
+ {
+ "id": 35849,
+ "start": 16395.45,
+ "end": 16396.29,
+ "text": "especially"
+ },
+ {
+ "id": 35850,
+ "start": 16396.29,
+ "end": 16396.45,
+ "text": "not"
+ },
+ {
+ "id": 35851,
+ "start": 16396.45,
+ "end": 16396.61,
+ "text": "just"
+ },
+ {
+ "id": 35852,
+ "start": 16396.61,
+ "end": 16396.71,
+ "text": "in"
+ },
+ {
+ "id": 35853,
+ "start": 16396.71,
+ "end": 16396.81,
+ "text": "the"
+ },
+ {
+ "id": 35854,
+ "start": 16396.81,
+ "end": 16397.05,
+ "text": "short"
+ },
+ {
+ "id": 35855,
+ "start": 16397.05,
+ "end": 16397.31,
+ "text": "term"
+ },
+ {
+ "id": 35856,
+ "start": 16397.31,
+ "end": 16397.81,
+ "text": "is"
+ },
+ {
+ "id": 35857,
+ "start": 16397.81,
+ "end": 16398.03,
+ "text": "going"
+ },
+ {
+ "id": 35858,
+ "start": 16398.03,
+ "end": 16398.13,
+ "text": "to"
+ },
+ {
+ "id": 35859,
+ "start": 16398.13,
+ "end": 16398.25,
+ "text": "be"
+ },
+ {
+ "id": 35860,
+ "start": 16398.25,
+ "end": 16398.49,
+ "text": "best"
+ },
+ {
+ "id": 35861,
+ "start": 16398.49,
+ "end": 16398.67,
+ "text": "for"
+ },
+ {
+ "id": 35862,
+ "start": 16398.67,
+ "end": 16398.85,
+ "text": "our"
+ },
+ {
+ "id": 35863,
+ "start": 16398.85,
+ "end": 16399.48,
+ "text": "business."
+ },
+ {
+ "id": 35864,
+ "start": 16399.48,
+ "end": 16399.78,
+ "text": "It"
+ },
+ {
+ "id": 35865,
+ "start": 16399.78,
+ "end": 16400.1,
+ "text": "actually"
+ },
+ {
+ "id": 35866,
+ "start": 16400.1,
+ "end": 16400.2,
+ "text": "it"
+ },
+ {
+ "id": 35867,
+ "start": 16400.2,
+ "end": 16400.56,
+ "text": "aligns"
+ },
+ {
+ "id": 35868,
+ "start": 16400.56,
+ "end": 16400.86,
+ "text": "very"
+ },
+ {
+ "id": 35869,
+ "start": 16400.86,
+ "end": 16401.3,
+ "text": "closely"
+ },
+ {
+ "id": 35870,
+ "start": 16401.3,
+ "end": 16402.04,
+ "text": "with"
+ },
+ {
+ "id": 35871,
+ "start": 16402.04,
+ "end": 16402.46,
+ "text": "well"
+ },
+ {
+ "id": 35872,
+ "start": 16402.46,
+ "end": 16402.66,
+ "text": "being"
+ },
+ {
+ "id": 35873,
+ "start": 16402.66,
+ "end": 16403.04,
+ "text": "research"
+ },
+ {
+ "id": 35874,
+ "start": 16403.04,
+ "end": 16403.18,
+ "text": "that"
+ },
+ {
+ "id": 35875,
+ "start": 16403.18,
+ "end": 16403.38,
+ "text": "we've"
+ },
+ {
+ "id": 35876,
+ "start": 16403.38,
+ "end": 16403.56,
+ "text": "done"
+ },
+ {
+ "id": 35877,
+ "start": 16403.56,
+ "end": 16404.16,
+ "text": "that"
+ },
+ {
+ "id": 35878,
+ "start": 16404.16,
+ "end": 16404.36,
+ "text": "when"
+ },
+ {
+ "id": 35879,
+ "start": 16404.36,
+ "end": 16404.62,
+ "text": "people"
+ },
+ {
+ "id": 35880,
+ "start": 16404.62,
+ "end": 16404.8,
+ "text": "are"
+ },
+ {
+ "id": 35881,
+ "start": 16404.8,
+ "end": 16405.32,
+ "text": "interacting"
+ },
+ {
+ "id": 35882,
+ "start": 16405.32,
+ "end": 16405.46,
+ "text": "with"
+ },
+ {
+ "id": 35883,
+ "start": 16405.46,
+ "end": 16405.68,
+ "text": "other"
+ },
+ {
+ "id": 35884,
+ "start": 16405.68,
+ "end": 16406.52,
+ "text": "people"
+ },
+ {
+ "id": 35885,
+ "start": 16406.52,
+ "end": 16407.2,
+ "text": "and"
+ },
+ {
+ "id": 35886,
+ "start": 16407.2,
+ "end": 16407.66,
+ "text": "posting"
+ },
+ {
+ "id": 35887,
+ "start": 16407.66,
+ "end": 16408.64,
+ "text": "and"
+ },
+ {
+ "id": 35888,
+ "start": 16408.64,
+ "end": 16409.1,
+ "text": "basically"
+ },
+ {
+ "id": 35889,
+ "start": 16409.1,
+ "end": 16409.48,
+ "text": "building"
+ },
+ {
+ "id": 35890,
+ "start": 16409.48,
+ "end": 16410.12,
+ "text": "relationships."
+ },
+ {
+ "id": 35891,
+ "start": 16410.12,
+ "end": 16410.76,
+ "text": "That"
+ },
+ {
+ "id": 35892,
+ "start": 16410.76,
+ "end": 16410.98,
+ "text": "is"
+ },
+ {
+ "id": 35893,
+ "start": 16410.98,
+ "end": 16411.32,
+ "text": "both"
+ },
+ {
+ "id": 35894,
+ "start": 16411.32,
+ "end": 16412.08,
+ "text": "correlated"
+ },
+ {
+ "id": 35895,
+ "start": 16412.08,
+ "end": 16412.32,
+ "text": "with"
+ },
+ {
+ "id": 35896,
+ "start": 16412.32,
+ "end": 16413.22,
+ "text": "higher"
+ },
+ {
+ "id": 35897,
+ "start": 16413.22,
+ "end": 16414.28,
+ "text": "measures"
+ },
+ {
+ "id": 35898,
+ "start": 16414.28,
+ "end": 16414.4,
+ "text": "of"
+ },
+ {
+ "id": 35899,
+ "start": 16414.4,
+ "end": 16414.62,
+ "text": "well"
+ },
+ {
+ "id": 35900,
+ "start": 16414.62,
+ "end": 16414.88,
+ "text": "being"
+ },
+ {
+ "id": 35901,
+ "start": 16414.88,
+ "end": 16415.4,
+ "text": "health."
+ },
+ {
+ "id": 35902,
+ "start": 16415.4,
+ "end": 16415.94,
+ "text": "Happiness"
+ },
+ {
+ "id": 35903,
+ "start": 16415.94,
+ "end": 16416.8,
+ "text": "not"
+ },
+ {
+ "id": 35904,
+ "start": 16416.8,
+ "end": 16417.12,
+ "text": "feeling"
+ },
+ {
+ "id": 35905,
+ "start": 16417.12,
+ "end": 16417.88,
+ "text": "lonely"
+ },
+ {
+ "id": 35906,
+ "start": 16417.88,
+ "end": 16418.9,
+ "text": "and"
+ },
+ {
+ "id": 35907,
+ "start": 16418.9,
+ "end": 16419.44,
+ "text": "that"
+ },
+ {
+ "id": 35908,
+ "start": 16419.44,
+ "end": 16419.6,
+ "text": "ends"
+ },
+ {
+ "id": 35909,
+ "start": 16419.6,
+ "end": 16419.8,
+ "text": "up"
+ },
+ {
+ "id": 35910,
+ "start": 16419.8,
+ "end": 16420.16,
+ "text": "better"
+ },
+ {
+ "id": 35911,
+ "start": 16420.16,
+ "end": 16420.32,
+ "text": "for"
+ },
+ {
+ "id": 35912,
+ "start": 16420.32,
+ "end": 16420.42,
+ "text": "the"
+ },
+ {
+ "id": 35913,
+ "start": 16420.42,
+ "end": 16420.76,
+ "text": "business."
+ },
+ {
+ "id": 35914,
+ "start": 16420.76,
+ "end": 16421.44,
+ "text": "Then"
+ },
+ {
+ "id": 35915,
+ "start": 16421.44,
+ "end": 16421.6,
+ "text": "when"
+ },
+ {
+ "id": 35916,
+ "start": 16421.6,
+ "end": 16421.84,
+ "text": "they're"
+ },
+ {
+ "id": 35917,
+ "start": 16421.84,
+ "end": 16422.04,
+ "text": "doing"
+ },
+ {
+ "id": 35918,
+ "start": 16422.04,
+ "end": 16422.34,
+ "text": "lower"
+ },
+ {
+ "id": 35919,
+ "start": 16422.34,
+ "end": 16422.74,
+ "text": "value"
+ },
+ {
+ "id": 35920,
+ "start": 16422.74,
+ "end": 16423.08,
+ "text": "things"
+ },
+ {
+ "id": 35921,
+ "start": 16423.08,
+ "end": 16423.28,
+ "text": "like"
+ },
+ {
+ "id": 35922,
+ "start": 16423.28,
+ "end": 16423.46,
+ "text": "just"
+ },
+ {
+ "id": 35923,
+ "start": 16423.46,
+ "end": 16424,
+ "text": "passively"
+ },
+ {
+ "id": 35924,
+ "start": 16424,
+ "end": 16424.46,
+ "text": "consuming"
+ },
+ {
+ "id": 35925,
+ "start": 16424.46,
+ "end": 16424.82,
+ "text": "content."
+ },
+ {
+ "id": 35926,
+ "start": 16424.82,
+ "end": 16425.4,
+ "text": "So"
+ },
+ {
+ "id": 35927,
+ "start": 16425.4,
+ "end": 16425.48,
+ "text": "I"
+ },
+ {
+ "id": 35928,
+ "start": 16425.48,
+ "end": 16425.64,
+ "text": "think"
+ },
+ {
+ "id": 35929,
+ "start": 16425.64,
+ "end": 16425.78,
+ "text": "that"
+ },
+ {
+ "id": 35930,
+ "start": 16425.78,
+ "end": 16426.18,
+ "text": "that's"
+ },
+ {
+ "id": 35931,
+ "start": 16426.18,
+ "end": 16426.26,
+ "text": "an"
+ },
+ {
+ "id": 35932,
+ "start": 16426.26,
+ "end": 16426.6,
+ "text": "important"
+ },
+ {
+ "id": 35933,
+ "start": 16426.6,
+ "end": 16426.9,
+ "text": "point"
+ },
+ {
+ "id": 35934,
+ "start": 16426.9,
+ "end": 16427.82,
+ "text": "to"
+ },
+ {
+ "id": 35935,
+ "start": 16427.82,
+ "end": 16428.8,
+ "text": "and"
+ },
+ {
+ "id": 35936,
+ "start": 16428.8,
+ "end": 16428.92,
+ "text": "I"
+ },
+ {
+ "id": 35937,
+ "start": 16428.92,
+ "end": 16429.42,
+ "text": "understand"
+ },
+ {
+ "id": 35938,
+ "start": 16429.42,
+ "end": 16429.56,
+ "text": "the"
+ },
+ {
+ "id": 35939,
+ "start": 16429.56,
+ "end": 16429.78,
+ "text": "point"
+ },
+ {
+ "id": 35940,
+ "start": 16429.78,
+ "end": 16429.94,
+ "text": "that"
+ },
+ {
+ "id": 35941,
+ "start": 16429.94,
+ "end": 16430.12,
+ "text": "you're"
+ },
+ {
+ "id": 35942,
+ "start": 16430.12,
+ "end": 16430.34,
+ "text": "trying"
+ },
+ {
+ "id": 35943,
+ "start": 16430.34,
+ "end": 16430.44,
+ "text": "to"
+ },
+ {
+ "id": 35944,
+ "start": 16430.44,
+ "end": 16430.64,
+ "text": "make"
+ },
+ {
+ "id": 35945,
+ "start": 16430.64,
+ "end": 16430.86,
+ "text": "here"
+ },
+ {
+ "id": 35946,
+ "start": 16430.86,
+ "end": 16431.02,
+ "text": "but"
+ },
+ {
+ "id": 35947,
+ "start": 16431.02,
+ "end": 16431.32,
+ "text": "here's"
+ },
+ {
+ "id": 35948,
+ "start": 16431.32,
+ "end": 16431.54,
+ "text": "what"
+ },
+ {
+ "id": 35949,
+ "start": 16431.54,
+ "end": 16431.78,
+ "text": "I'm"
+ },
+ {
+ "id": 35950,
+ "start": 16431.78,
+ "end": 16432.22,
+ "text": "concerned"
+ },
+ {
+ "id": 35951,
+ "start": 16432.22,
+ "end": 16433.08,
+ "text": "about?"
+ },
+ {
+ "id": 35952,
+ "start": 16433.08,
+ "end": 16433.76,
+ "text": "We"
+ },
+ {
+ "id": 35953,
+ "start": 16433.76,
+ "end": 16433.96,
+ "text": "have"
+ },
+ {
+ "id": 35954,
+ "start": 16433.96,
+ "end": 16434.32,
+ "text": "heard"
+ },
+ {
+ "id": 35955,
+ "start": 16434.32,
+ "end": 16434.6,
+ "text": "this"
+ },
+ {
+ "id": 35956,
+ "start": 16434.6,
+ "end": 16434.9,
+ "text": "point"
+ },
+ {
+ "id": 35957,
+ "start": 16434.9,
+ "end": 16435.1,
+ "text": "from"
+ },
+ {
+ "id": 35958,
+ "start": 16435.1,
+ "end": 16435.22,
+ "text": "you"
+ },
+ {
+ "id": 35959,
+ "start": 16435.22,
+ "end": 16436.12,
+ "text": "over"
+ },
+ {
+ "id": 35960,
+ "start": 16436.12,
+ "end": 16436.28,
+ "text": "the"
+ },
+ {
+ "id": 35961,
+ "start": 16436.28,
+ "end": 16436.62,
+ "text": "last"
+ },
+ {
+ "id": 35962,
+ "start": 16436.62,
+ "end": 16437.32,
+ "text": "decade"
+ },
+ {
+ "id": 35963,
+ "start": 16437.32,
+ "end": 16437.88,
+ "text": "plus"
+ },
+ {
+ "id": 35964,
+ "start": 16437.88,
+ "end": 16438.86,
+ "text": "since"
+ },
+ {
+ "id": 35965,
+ "start": 16438.86,
+ "end": 16439.04,
+ "text": "you"
+ },
+ {
+ "id": 35966,
+ "start": 16439.04,
+ "end": 16439.5,
+ "text": "founded"
+ },
+ {
+ "id": 35967,
+ "start": 16439.5,
+ "end": 16439.94,
+ "text": "Facebook"
+ },
+ {
+ "id": 35968,
+ "start": 16439.94,
+ "end": 16440.08,
+ "text": "and"
+ },
+ {
+ "id": 35969,
+ "start": 16440.08,
+ "end": 16440.18,
+ "text": "I"
+ },
+ {
+ "id": 35970,
+ "start": 16440.18,
+ "end": 16440.66,
+ "text": "understand"
+ },
+ {
+ "id": 35971,
+ "start": 16440.66,
+ "end": 16440.82,
+ "text": "it,"
+ },
+ {
+ "id": 35972,
+ "start": 16440.82,
+ "end": 16441.96,
+ "text": "you"
+ },
+ {
+ "id": 35973,
+ "start": 16441.96,
+ "end": 16442.18,
+ "text": "found"
+ },
+ {
+ "id": 35974,
+ "start": 16442.18,
+ "end": 16442.32,
+ "text": "it."
+ },
+ {
+ "id": 35975,
+ "start": 16442.32,
+ "end": 16443,
+ "text": "It"
+ },
+ {
+ "id": 35976,
+ "start": 16443,
+ "end": 16443.78,
+ "text": "pretty"
+ },
+ {
+ "id": 35977,
+ "start": 16443.78,
+ "end": 16443.94,
+ "text": "much"
+ },
+ {
+ "id": 35978,
+ "start": 16443.94,
+ "end": 16444.1,
+ "text": "as"
+ },
+ {
+ "id": 35979,
+ "start": 16444.1,
+ "end": 16444.2,
+ "text": "a"
+ },
+ {
+ "id": 35980,
+ "start": 16444.2,
+ "end": 16444.64,
+ "text": "solo"
+ },
+ {
+ "id": 35981,
+ "start": 16444.64,
+ "end": 16445.16,
+ "text": "entrepreneur"
+ },
+ {
+ "id": 35982,
+ "start": 16445.16,
+ "end": 16445.32,
+ "text": "with"
+ },
+ {
+ "id": 35983,
+ "start": 16445.32,
+ "end": 16445.44,
+ "text": "your"
+ },
+ {
+ "id": 35984,
+ "start": 16445.44,
+ "end": 16445.84,
+ "text": "roommate."
+ },
+ {
+ "id": 35985,
+ "start": 16445.84,
+ "end": 16446.46,
+ "text": "But"
+ },
+ {
+ "id": 35986,
+ "start": 16446.46,
+ "end": 16446.88,
+ "text": "now,"
+ },
+ {
+ "id": 35987,
+ "start": 16446.88,
+ "end": 16447.62,
+ "text": "you"
+ },
+ {
+ "id": 35988,
+ "start": 16447.62,
+ "end": 16447.78,
+ "text": "know,"
+ },
+ {
+ "id": 35989,
+ "start": 16447.78,
+ "end": 16447.98,
+ "text": "you're"
+ },
+ {
+ "id": 35990,
+ "start": 16447.98,
+ "end": 16448.24,
+ "text": "sitting"
+ },
+ {
+ "id": 35991,
+ "start": 16448.24,
+ "end": 16448.44,
+ "text": "here,"
+ },
+ {
+ "id": 35992,
+ "start": 16448.44,
+ "end": 16448.76,
+ "text": "the"
+ },
+ {
+ "id": 35993,
+ "start": 16448.76,
+ "end": 16449,
+ "text": "head"
+ },
+ {
+ "id": 35994,
+ "start": 16449,
+ "end": 16449.22,
+ "text": "of"
+ },
+ {
+ "id": 35995,
+ "start": 16449.22,
+ "end": 16449.46,
+ "text": "a"
+ },
+ {
+ "id": 35996,
+ "start": 16449.46,
+ "end": 16450.38,
+ "text": "bazillion"
+ },
+ {
+ "id": 35997,
+ "start": 16450.38,
+ "end": 16450.7,
+ "text": "dollar"
+ },
+ {
+ "id": 35998,
+ "start": 16450.7,
+ "end": 16451.14,
+ "text": "company"
+ },
+ {
+ "id": 35999,
+ "start": 16451.14,
+ "end": 16452.26,
+ "text": "and"
+ },
+ {
+ "id": 36000,
+ "start": 16452.26,
+ "end": 16452.96,
+ "text": "we've"
+ },
+ {
+ "id": 36001,
+ "start": 16452.96,
+ "end": 16453.18,
+ "text": "heard"
+ },
+ {
+ "id": 36002,
+ "start": 16453.18,
+ "end": 16453.34,
+ "text": "you"
+ },
+ {
+ "id": 36003,
+ "start": 16453.34,
+ "end": 16454.08,
+ "text": "apologize"
+ },
+ {
+ "id": 36004,
+ "start": 16454.08,
+ "end": 16454.58,
+ "text": "numerous"
+ },
+ {
+ "id": 36005,
+ "start": 16454.58,
+ "end": 16455.08,
+ "text": "times"
+ },
+ {
+ "id": 36006,
+ "start": 16455.08,
+ "end": 16455.58,
+ "text": "and"
+ },
+ {
+ "id": 36007,
+ "start": 16455.58,
+ "end": 16456,
+ "text": "promised"
+ },
+ {
+ "id": 36008,
+ "start": 16456,
+ "end": 16456.14,
+ "text": "to"
+ },
+ {
+ "id": 36009,
+ "start": 16456.14,
+ "end": 16457.07,
+ "text": "change."
+ },
+ {
+ "id": 36010,
+ "start": 16457.07,
+ "end": 16457.29,
+ "text": "But"
+ },
+ {
+ "id": 36011,
+ "start": 16457.29,
+ "end": 16457.49,
+ "text": "here"
+ },
+ {
+ "id": 36012,
+ "start": 16457.49,
+ "end": 16457.63,
+ "text": "we"
+ },
+ {
+ "id": 36013,
+ "start": 16457.63,
+ "end": 16457.83,
+ "text": "are"
+ },
+ {
+ "id": 36014,
+ "start": 16457.83,
+ "end": 16458.13,
+ "text": "again,"
+ },
+ {
+ "id": 36015,
+ "start": 16458.13,
+ "end": 16458.49,
+ "text": "right,"
+ },
+ {
+ "id": 36016,
+ "start": 16458.49,
+ "end": 16459.39,
+ "text": "so"
+ },
+ {
+ "id": 36017,
+ "start": 16459.39,
+ "end": 16459.77,
+ "text": "I"
+ },
+ {
+ "id": 36018,
+ "start": 16459.77,
+ "end": 16460.35,
+ "text": "really"
+ },
+ {
+ "id": 36019,
+ "start": 16460.35,
+ "end": 16461.13,
+ "text": "firmly"
+ },
+ {
+ "id": 36020,
+ "start": 16461.13,
+ "end": 16461.49,
+ "text": "believe"
+ },
+ {
+ "id": 36021,
+ "start": 16461.49,
+ "end": 16461.61,
+ "text": "in"
+ },
+ {
+ "id": 36022,
+ "start": 16461.61,
+ "end": 16461.85,
+ "text": "free"
+ },
+ {
+ "id": 36023,
+ "start": 16461.85,
+ "end": 16462.37,
+ "text": "enterprise."
+ },
+ {
+ "id": 36024,
+ "start": 16462.37,
+ "end": 16462.55,
+ "text": "But"
+ },
+ {
+ "id": 36025,
+ "start": 16462.55,
+ "end": 16462.75,
+ "text": "when"
+ },
+ {
+ "id": 36026,
+ "start": 16462.75,
+ "end": 16463.19,
+ "text": "private"
+ },
+ {
+ "id": 36027,
+ "start": 16463.19,
+ "end": 16463.65,
+ "text": "companies"
+ },
+ {
+ "id": 36028,
+ "start": 16463.65,
+ "end": 16463.85,
+ "text": "are"
+ },
+ {
+ "id": 36029,
+ "start": 16463.85,
+ "end": 16464.49,
+ "text": "unwilling"
+ },
+ {
+ "id": 36030,
+ "start": 16464.49,
+ "end": 16464.73,
+ "text": "or"
+ },
+ {
+ "id": 36031,
+ "start": 16464.73,
+ "end": 16465.41,
+ "text": "unable"
+ },
+ {
+ "id": 36032,
+ "start": 16465.41,
+ "end": 16465.95,
+ "text": "to"
+ },
+ {
+ "id": 36033,
+ "start": 16465.95,
+ "end": 16466.09,
+ "text": "do"
+ },
+ {
+ "id": 36034,
+ "start": 16466.09,
+ "end": 16466.37,
+ "text": "what's"
+ },
+ {
+ "id": 36035,
+ "start": 16466.37,
+ "end": 16467.11,
+ "text": "necessary,"
+ },
+ {
+ "id": 36036,
+ "start": 16467.11,
+ "end": 16467.87,
+ "text": "public"
+ },
+ {
+ "id": 36037,
+ "start": 16467.87,
+ "end": 16468.37,
+ "text": "officials"
+ },
+ {
+ "id": 36038,
+ "start": 16468.37,
+ "end": 16468.99,
+ "text": "have"
+ },
+ {
+ "id": 36039,
+ "start": 16468.99,
+ "end": 16469.69,
+ "text": "historically"
+ },
+ {
+ "id": 36040,
+ "start": 16469.69,
+ "end": 16469.97,
+ "text": "in"
+ },
+ {
+ "id": 36041,
+ "start": 16469.97,
+ "end": 16470.33,
+ "text": "every"
+ },
+ {
+ "id": 36042,
+ "start": 16470.33,
+ "end": 16471.14,
+ "text": "industry"
+ },
+ {
+ "id": 36043,
+ "start": 16471.14,
+ "end": 16471.78,
+ "text": "stepped"
+ },
+ {
+ "id": 36044,
+ "start": 16471.78,
+ "end": 16471.88,
+ "text": "up"
+ },
+ {
+ "id": 36045,
+ "start": 16471.88,
+ "end": 16472.08,
+ "text": "to"
+ },
+ {
+ "id": 36046,
+ "start": 16472.08,
+ "end": 16472.48,
+ "text": "protect"
+ },
+ {
+ "id": 36047,
+ "start": 16472.48,
+ "end": 16472.68,
+ "text": "our"
+ },
+ {
+ "id": 36048,
+ "start": 16472.68,
+ "end": 16473.36,
+ "text": "constituents"
+ },
+ {
+ "id": 36049,
+ "start": 16473.36,
+ "end": 16473.5,
+ "text": "and"
+ },
+ {
+ "id": 36050,
+ "start": 16473.5,
+ "end": 16474.04,
+ "text": "consumers"
+ },
+ {
+ "id": 36051,
+ "start": 16474.04,
+ "end": 16474.8,
+ "text": "you've"
+ },
+ {
+ "id": 36052,
+ "start": 16474.8,
+ "end": 16475.38,
+ "text": "supported"
+ },
+ {
+ "id": 36053,
+ "start": 16475.38,
+ "end": 16475.94,
+ "text": "targeted"
+ },
+ {
+ "id": 36054,
+ "start": 16475.94,
+ "end": 16476.68,
+ "text": "regulations"
+ },
+ {
+ "id": 36055,
+ "start": 16476.68,
+ "end": 16477,
+ "text": "such"
+ },
+ {
+ "id": 36056,
+ "start": 16477,
+ "end": 16477.14,
+ "text": "as"
+ },
+ {
+ "id": 36057,
+ "start": 16477.14,
+ "end": 16477.28,
+ "text": "the"
+ },
+ {
+ "id": 36058,
+ "start": 16477.28,
+ "end": 16477.66,
+ "text": "honest"
+ },
+ {
+ "id": 36059,
+ "start": 16477.66,
+ "end": 16477.96,
+ "text": "ads"
+ },
+ {
+ "id": 36060,
+ "start": 16477.96,
+ "end": 16478.24,
+ "text": "act"
+ },
+ {
+ "id": 36061,
+ "start": 16478.24,
+ "end": 16478.92,
+ "text": "and"
+ },
+ {
+ "id": 36062,
+ "start": 16478.92,
+ "end": 16479.26,
+ "text": "that's"
+ },
+ {
+ "id": 36063,
+ "start": 16479.26,
+ "end": 16479.42,
+ "text": "an"
+ },
+ {
+ "id": 36064,
+ "start": 16479.42,
+ "end": 16480,
+ "text": "important"
+ },
+ {
+ "id": 36065,
+ "start": 16480,
+ "end": 16480.18,
+ "text": "step"
+ },
+ {
+ "id": 36066,
+ "start": 16480.18,
+ "end": 16480.3,
+ "text": "for"
+ },
+ {
+ "id": 36067,
+ "start": 16480.3,
+ "end": 16480.62,
+ "text": "election."
+ },
+ {
+ "id": 36068,
+ "start": 16480.62,
+ "end": 16481.12,
+ "text": "Integrity"
+ },
+ {
+ "id": 36069,
+ "start": 16481.12,
+ "end": 16481.38,
+ "text": "I'm"
+ },
+ {
+ "id": 36070,
+ "start": 16481.38,
+ "end": 16481.62,
+ "text": "proud"
+ },
+ {
+ "id": 36071,
+ "start": 16481.62,
+ "end": 16481.72,
+ "text": "to"
+ },
+ {
+ "id": 36072,
+ "start": 16481.72,
+ "end": 16481.84,
+ "text": "be"
+ },
+ {
+ "id": 36073,
+ "start": 16481.84,
+ "end": 16481.92,
+ "text": "a"
+ },
+ {
+ "id": 36074,
+ "start": 16481.92,
+ "end": 16482.04,
+ "text": "CO"
+ },
+ {
+ "id": 36075,
+ "start": 16482.04,
+ "end": 16482.48,
+ "text": "sponsor."
+ },
+ {
+ "id": 36076,
+ "start": 16482.48,
+ "end": 16482.56,
+ "text": "Of"
+ },
+ {
+ "id": 36077,
+ "start": 16482.56,
+ "end": 16482.76,
+ "text": "that"
+ },
+ {
+ "id": 36078,
+ "start": 16482.76,
+ "end": 16483.06,
+ "text": "bill,"
+ },
+ {
+ "id": 36079,
+ "start": 16483.06,
+ "end": 16483.66,
+ "text": "but"
+ },
+ {
+ "id": 36080,
+ "start": 16483.66,
+ "end": 16483.82,
+ "text": "we"
+ },
+ {
+ "id": 36081,
+ "start": 16483.82,
+ "end": 16484.04,
+ "text": "need"
+ },
+ {
+ "id": 36082,
+ "start": 16484.04,
+ "end": 16484.18,
+ "text": "to"
+ },
+ {
+ "id": 36083,
+ "start": 16484.18,
+ "end": 16484.58,
+ "text": "address"
+ },
+ {
+ "id": 36084,
+ "start": 16484.58,
+ "end": 16485.04,
+ "text": "other"
+ },
+ {
+ "id": 36085,
+ "start": 16485.04,
+ "end": 16485.44,
+ "text": "broader"
+ },
+ {
+ "id": 36086,
+ "start": 16485.44,
+ "end": 16485.94,
+ "text": "issues"
+ },
+ {
+ "id": 36087,
+ "start": 16485.94,
+ "end": 16486.12,
+ "text": "as"
+ },
+ {
+ "id": 36088,
+ "start": 16486.12,
+ "end": 16486.44,
+ "text": "well."
+ },
+ {
+ "id": 36089,
+ "start": 16486.44,
+ "end": 16486.9,
+ "text": "And"
+ },
+ {
+ "id": 36090,
+ "start": 16486.9,
+ "end": 16487.24,
+ "text": "today,"
+ },
+ {
+ "id": 36091,
+ "start": 16487.24,
+ "end": 16487.5,
+ "text": "you've"
+ },
+ {
+ "id": 36092,
+ "start": 16487.5,
+ "end": 16487.7,
+ "text": "said,"
+ },
+ {
+ "id": 36093,
+ "start": 16487.7,
+ "end": 16487.96,
+ "text": "you'd"
+ },
+ {
+ "id": 36094,
+ "start": 16487.96,
+ "end": 16488.06,
+ "text": "be"
+ },
+ {
+ "id": 36095,
+ "start": 16488.06,
+ "end": 16488.58,
+ "text": "open"
+ },
+ {
+ "id": 36096,
+ "start": 16488.58,
+ "end": 16488.94,
+ "text": "to"
+ },
+ {
+ "id": 36097,
+ "start": 16488.94,
+ "end": 16489.3,
+ "text": "some"
+ },
+ {
+ "id": 36098,
+ "start": 16489.3,
+ "end": 16490.72,
+ "text": "regulation."
+ },
+ {
+ "id": 36099,
+ "start": 16490.72,
+ "end": 16491.44,
+ "text": "But"
+ },
+ {
+ "id": 36100,
+ "start": 16491.44,
+ "end": 16491.7,
+ "text": "this"
+ },
+ {
+ "id": 36101,
+ "start": 16491.7,
+ "end": 16491.82,
+ "text": "has"
+ },
+ {
+ "id": 36102,
+ "start": 16491.82,
+ "end": 16492.02,
+ "text": "been"
+ },
+ {
+ "id": 36103,
+ "start": 16492.02,
+ "end": 16492.06,
+ "text": "a"
+ },
+ {
+ "id": 36104,
+ "start": 16492.06,
+ "end": 16492.3,
+ "text": "pretty"
+ },
+ {
+ "id": 36105,
+ "start": 16492.3,
+ "end": 16492.66,
+ "text": "general"
+ },
+ {
+ "id": 36106,
+ "start": 16492.66,
+ "end": 16493.38,
+ "text": "conversation"
+ },
+ {
+ "id": 36107,
+ "start": 16493.38,
+ "end": 16493.56,
+ "text": "so,"
+ },
+ {
+ "id": 36108,
+ "start": 16493.56,
+ "end": 16493.84,
+ "text": "will"
+ },
+ {
+ "id": 36109,
+ "start": 16493.84,
+ "end": 16493.98,
+ "text": "you"
+ },
+ {
+ "id": 36110,
+ "start": 16493.98,
+ "end": 16494.44,
+ "text": "commit"
+ },
+ {
+ "id": 36111,
+ "start": 16494.44,
+ "end": 16494.64,
+ "text": "to"
+ },
+ {
+ "id": 36112,
+ "start": 16494.64,
+ "end": 16495.02,
+ "text": "working"
+ },
+ {
+ "id": 36113,
+ "start": 16495.02,
+ "end": 16495.2,
+ "text": "with"
+ },
+ {
+ "id": 36114,
+ "start": 16495.2,
+ "end": 16495.66,
+ "text": "Congress"
+ },
+ {
+ "id": 36115,
+ "start": 16495.66,
+ "end": 16496.28,
+ "text": "to"
+ },
+ {
+ "id": 36116,
+ "start": 16496.28,
+ "end": 16496.9,
+ "text": "develop"
+ },
+ {
+ "id": 36117,
+ "start": 16496.9,
+ "end": 16497.42,
+ "text": "ways"
+ },
+ {
+ "id": 36118,
+ "start": 16497.42,
+ "end": 16497.68,
+ "text": "of"
+ },
+ {
+ "id": 36119,
+ "start": 16497.68,
+ "end": 16498.28,
+ "text": "protecting"
+ },
+ {
+ "id": 36120,
+ "start": 16498.28,
+ "end": 16499.24,
+ "text": "constituent"
+ },
+ {
+ "id": 36121,
+ "start": 16499.24,
+ "end": 16499.78,
+ "text": "privacy"
+ },
+ {
+ "id": 36122,
+ "start": 16499.78,
+ "end": 16500.28,
+ "text": "and"
+ },
+ {
+ "id": 36123,
+ "start": 16500.28,
+ "end": 16500.86,
+ "text": "wellbeing?"
+ },
+ {
+ "id": 36124,
+ "start": 16500.86,
+ "end": 16501.68,
+ "text": "Even"
+ },
+ {
+ "id": 36125,
+ "start": 16501.68,
+ "end": 16501.8,
+ "text": "if"
+ },
+ {
+ "id": 36126,
+ "start": 16501.8,
+ "end": 16501.94,
+ "text": "it"
+ },
+ {
+ "id": 36127,
+ "start": 16501.94,
+ "end": 16502.24,
+ "text": "means"
+ },
+ {
+ "id": 36128,
+ "start": 16502.24,
+ "end": 16502.48,
+ "text": "that"
+ },
+ {
+ "id": 36129,
+ "start": 16502.48,
+ "end": 16502.74,
+ "text": "that"
+ },
+ {
+ "id": 36130,
+ "start": 16502.74,
+ "end": 16503.54,
+ "text": "results"
+ },
+ {
+ "id": 36131,
+ "start": 16503.54,
+ "end": 16503.68,
+ "text": "in"
+ },
+ {
+ "id": 36132,
+ "start": 16503.68,
+ "end": 16503.9,
+ "text": "some"
+ },
+ {
+ "id": 36133,
+ "start": 16503.9,
+ "end": 16504.24,
+ "text": "laws"
+ },
+ {
+ "id": 36134,
+ "start": 16504.24,
+ "end": 16504.4,
+ "text": "that"
+ },
+ {
+ "id": 36135,
+ "start": 16504.4,
+ "end": 16504.6,
+ "text": "will"
+ },
+ {
+ "id": 36136,
+ "start": 16504.6,
+ "end": 16505.02,
+ "text": "require"
+ },
+ {
+ "id": 36137,
+ "start": 16505.02,
+ "end": 16505.16,
+ "text": "you"
+ },
+ {
+ "id": 36138,
+ "start": 16505.16,
+ "end": 16505.28,
+ "text": "to"
+ },
+ {
+ "id": 36139,
+ "start": 16505.28,
+ "end": 16505.64,
+ "text": "adjust"
+ },
+ {
+ "id": 36140,
+ "start": 16505.64,
+ "end": 16505.8,
+ "text": "your"
+ },
+ {
+ "id": 36141,
+ "start": 16505.8,
+ "end": 16506.22,
+ "text": "business"
+ },
+ {
+ "id": 36142,
+ "start": 16506.22,
+ "end": 16507.22,
+ "text": "model,"
+ },
+ {
+ "id": 36143,
+ "start": 16507.22,
+ "end": 16508.24,
+ "text": "Senator"
+ },
+ {
+ "id": 36144,
+ "start": 16508.24,
+ "end": 16508.5,
+ "text": "yes,"
+ },
+ {
+ "id": 36145,
+ "start": 16508.5,
+ "end": 16509.1,
+ "text": "we"
+ },
+ {
+ "id": 36146,
+ "start": 16509.1,
+ "end": 16509.3,
+ "text": "will"
+ },
+ {
+ "id": 36147,
+ "start": 16509.3,
+ "end": 16509.5,
+ "text": "commit"
+ },
+ {
+ "id": 36148,
+ "start": 16509.5,
+ "end": 16509.62,
+ "text": "to"
+ },
+ {
+ "id": 36149,
+ "start": 16509.62,
+ "end": 16509.76,
+ "text": "that."
+ },
+ {
+ "id": 36150,
+ "start": 16509.76,
+ "end": 16509.82,
+ "text": "I"
+ },
+ {
+ "id": 36151,
+ "start": 16509.82,
+ "end": 16510,
+ "text": "think"
+ },
+ {
+ "id": 36152,
+ "start": 16510,
+ "end": 16510.12,
+ "text": "that"
+ },
+ {
+ "id": 36153,
+ "start": 16510.12,
+ "end": 16510.3,
+ "text": "that's"
+ },
+ {
+ "id": 36154,
+ "start": 16510.3,
+ "end": 16510.4,
+ "text": "an"
+ },
+ {
+ "id": 36155,
+ "start": 16510.4,
+ "end": 16510.78,
+ "text": "important"
+ },
+ {
+ "id": 36156,
+ "start": 16510.78,
+ "end": 16511.38,
+ "text": "conversation"
+ },
+ {
+ "id": 36157,
+ "start": 16511.38,
+ "end": 16511.54,
+ "text": "to"
+ },
+ {
+ "id": 36158,
+ "start": 16511.54,
+ "end": 16511.82,
+ "text": "have"
+ },
+ {
+ "id": 36159,
+ "start": 16511.82,
+ "end": 16512.7,
+ "text": "our"
+ },
+ {
+ "id": 36160,
+ "start": 16512.7,
+ "end": 16513.3,
+ "text": "position"
+ },
+ {
+ "id": 36161,
+ "start": 16513.3,
+ "end": 16514.08,
+ "text": "is"
+ },
+ {
+ "id": 36162,
+ "start": 16514.08,
+ "end": 16514.4,
+ "text": "not"
+ },
+ {
+ "id": 36163,
+ "start": 16514.4,
+ "end": 16514.74,
+ "text": "that"
+ },
+ {
+ "id": 36164,
+ "start": 16514.74,
+ "end": 16515.54,
+ "text": "regulation"
+ },
+ {
+ "id": 36165,
+ "start": 16515.54,
+ "end": 16515.72,
+ "text": "is"
+ },
+ {
+ "id": 36166,
+ "start": 16515.72,
+ "end": 16516.1,
+ "text": "bad."
+ },
+ {
+ "id": 36167,
+ "start": 16516.1,
+ "end": 16516.52,
+ "text": "I"
+ },
+ {
+ "id": 36168,
+ "start": 16516.52,
+ "end": 16516.72,
+ "text": "think"
+ },
+ {
+ "id": 36169,
+ "start": 16516.72,
+ "end": 16517.02,
+ "text": "the"
+ },
+ {
+ "id": 36170,
+ "start": 16517.02,
+ "end": 16517.34,
+ "text": "Internet"
+ },
+ {
+ "id": 36171,
+ "start": 16517.34,
+ "end": 16517.44,
+ "text": "is"
+ },
+ {
+ "id": 36172,
+ "start": 16517.44,
+ "end": 16517.68,
+ "text": "so"
+ },
+ {
+ "id": 36173,
+ "start": 16517.68,
+ "end": 16518.06,
+ "text": "important"
+ },
+ {
+ "id": 36174,
+ "start": 16518.06,
+ "end": 16518.14,
+ "text": "in"
+ },
+ {
+ "id": 36175,
+ "start": 16518.14,
+ "end": 16518.48,
+ "text": "people's"
+ },
+ {
+ "id": 36176,
+ "start": 16518.48,
+ "end": 16518.76,
+ "text": "lives"
+ },
+ {
+ "id": 36177,
+ "start": 16518.76,
+ "end": 16518.88,
+ "text": "and"
+ },
+ {
+ "id": 36178,
+ "start": 16518.88,
+ "end": 16519.04,
+ "text": "it's"
+ },
+ {
+ "id": 36179,
+ "start": 16519.04,
+ "end": 16519.28,
+ "text": "getting"
+ },
+ {
+ "id": 36180,
+ "start": 16519.28,
+ "end": 16519.48,
+ "text": "more"
+ },
+ {
+ "id": 36181,
+ "start": 16519.48,
+ "end": 16519.86,
+ "text": "important."
+ },
+ {
+ "id": 36182,
+ "start": 16519.86,
+ "end": 16520.32,
+ "text": "The"
+ },
+ {
+ "id": 36183,
+ "start": 16520.32,
+ "end": 16520.96,
+ "text": "expectations"
+ },
+ {
+ "id": 36184,
+ "start": 16520.96,
+ "end": 16521.1,
+ "text": "on"
+ },
+ {
+ "id": 36185,
+ "start": 16521.1,
+ "end": 16521.48,
+ "text": "Internet"
+ },
+ {
+ "id": 36186,
+ "start": 16521.48,
+ "end": 16521.94,
+ "text": "companies"
+ },
+ {
+ "id": 36187,
+ "start": 16521.94,
+ "end": 16522.12,
+ "text": "and"
+ },
+ {
+ "id": 36188,
+ "start": 16522.12,
+ "end": 16522.64,
+ "text": "technology"
+ },
+ {
+ "id": 36189,
+ "start": 16522.64,
+ "end": 16522.94,
+ "text": "companies"
+ },
+ {
+ "id": 36190,
+ "start": 16522.94,
+ "end": 16523.3,
+ "text": "overall"
+ },
+ {
+ "id": 36191,
+ "start": 16523.3,
+ "end": 16523.44,
+ "text": "are"
+ },
+ {
+ "id": 36192,
+ "start": 16523.44,
+ "end": 16524.1,
+ "text": "growing"
+ },
+ {
+ "id": 36193,
+ "start": 16524.1,
+ "end": 16524.66,
+ "text": "and"
+ },
+ {
+ "id": 36194,
+ "start": 16524.66,
+ "end": 16525.28,
+ "text": "I"
+ },
+ {
+ "id": 36195,
+ "start": 16525.28,
+ "end": 16525.48,
+ "text": "think"
+ },
+ {
+ "id": 36196,
+ "start": 16525.48,
+ "end": 16525.6,
+ "text": "the"
+ },
+ {
+ "id": 36197,
+ "start": 16525.6,
+ "end": 16525.86,
+ "text": "real"
+ },
+ {
+ "id": 36198,
+ "start": 16525.86,
+ "end": 16526.22,
+ "text": "question"
+ },
+ {
+ "id": 36199,
+ "start": 16526.22,
+ "end": 16526.44,
+ "text": "is"
+ },
+ {
+ "id": 36200,
+ "start": 16526.44,
+ "end": 16527.02,
+ "text": "what"
+ },
+ {
+ "id": 36201,
+ "start": 16527.02,
+ "end": 16527.16,
+ "text": "is"
+ },
+ {
+ "id": 36202,
+ "start": 16527.16,
+ "end": 16527.3,
+ "text": "the"
+ },
+ {
+ "id": 36203,
+ "start": 16527.3,
+ "end": 16527.52,
+ "text": "right"
+ },
+ {
+ "id": 36204,
+ "start": 16527.52,
+ "end": 16527.94,
+ "text": "framework"
+ },
+ {
+ "id": 36205,
+ "start": 16527.94,
+ "end": 16528.12,
+ "text": "for"
+ },
+ {
+ "id": 36206,
+ "start": 16528.12,
+ "end": 16528.28,
+ "text": "this?"
+ },
+ {
+ "id": 36207,
+ "start": 16528.28,
+ "end": 16528.54,
+ "text": "Not"
+ },
+ {
+ "id": 36208,
+ "start": 16528.54,
+ "end": 16528.76,
+ "text": "should"
+ },
+ {
+ "id": 36209,
+ "start": 16528.76,
+ "end": 16528.94,
+ "text": "there"
+ },
+ {
+ "id": 36210,
+ "start": 16528.94,
+ "end": 16529.06,
+ "text": "be"
+ },
+ {
+ "id": 36211,
+ "start": 16529.06,
+ "end": 16529.26,
+ "text": "one?"
+ },
+ {
+ "id": 36212,
+ "start": 16529.26,
+ "end": 16529.88,
+ "text": "That"
+ },
+ {
+ "id": 36213,
+ "start": 16529.88,
+ "end": 16530.04,
+ "text": "is"
+ },
+ {
+ "id": 36214,
+ "start": 16530.04,
+ "end": 16530.3,
+ "text": "very"
+ },
+ {
+ "id": 36215,
+ "start": 16530.3,
+ "end": 16530.62,
+ "text": "helpful."
+ },
+ {
+ "id": 36216,
+ "start": 16530.62,
+ "end": 16530.8,
+ "text": "And"
+ },
+ {
+ "id": 36217,
+ "start": 16530.8,
+ "end": 16530.88,
+ "text": "I"
+ },
+ {
+ "id": 36218,
+ "start": 16530.88,
+ "end": 16531.1,
+ "text": "think"
+ },
+ {
+ "id": 36219,
+ "start": 16531.1,
+ "end": 16531.24,
+ "text": "the"
+ },
+ {
+ "id": 36220,
+ "start": 16531.24,
+ "end": 16531.52,
+ "text": "other"
+ },
+ {
+ "id": 36221,
+ "start": 16531.52,
+ "end": 16532,
+ "text": "question"
+ },
+ {
+ "id": 36222,
+ "start": 16532,
+ "end": 16532.3,
+ "text": "and"
+ },
+ {
+ "id": 36223,
+ "start": 16532.3,
+ "end": 16532.48,
+ "text": "it"
+ },
+ {
+ "id": 36224,
+ "start": 16532.48,
+ "end": 16532.98,
+ "text": "doesn't"
+ },
+ {
+ "id": 36225,
+ "start": 16532.98,
+ "end": 16533.22,
+ "text": "just"
+ },
+ {
+ "id": 36226,
+ "start": 16533.22,
+ "end": 16533.38,
+ "text": "go"
+ },
+ {
+ "id": 36227,
+ "start": 16533.38,
+ "end": 16533.5,
+ "text": "to"
+ },
+ {
+ "id": 36228,
+ "start": 16533.5,
+ "end": 16534.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 36229,
+ "start": 16534.02,
+ "end": 16534.58,
+ "text": "is"
+ },
+ {
+ "id": 36230,
+ "start": 16534.58,
+ "end": 16534.94,
+ "text": "whether"
+ },
+ {
+ "id": 36231,
+ "start": 16534.94,
+ "end": 16535.14,
+ "text": "the"
+ },
+ {
+ "id": 36232,
+ "start": 16535.14,
+ "end": 16535.6,
+ "text": "framework"
+ },
+ {
+ "id": 36233,
+ "start": 16535.6,
+ "end": 16535.9,
+ "text": "should"
+ },
+ {
+ "id": 36234,
+ "start": 16535.9,
+ "end": 16536.32,
+ "text": "include"
+ },
+ {
+ "id": 36235,
+ "start": 16536.32,
+ "end": 16536.94,
+ "text": "financial"
+ },
+ {
+ "id": 36236,
+ "start": 16536.94,
+ "end": 16537.54,
+ "text": "penalties."
+ },
+ {
+ "id": 36237,
+ "start": 16537.54,
+ "end": 16538.18,
+ "text": "When"
+ },
+ {
+ "id": 36238,
+ "start": 16538.18,
+ "end": 16538.66,
+ "text": "large"
+ },
+ {
+ "id": 36239,
+ "start": 16538.66,
+ "end": 16539.38,
+ "text": "providers"
+ },
+ {
+ "id": 36240,
+ "start": 16539.38,
+ "end": 16540.28,
+ "text": "like"
+ },
+ {
+ "id": 36241,
+ "start": 16540.28,
+ "end": 16541.24,
+ "text": "Facebook"
+ },
+ {
+ "id": 36242,
+ "start": 16541.24,
+ "end": 16541.98,
+ "text": "are"
+ },
+ {
+ "id": 36243,
+ "start": 16541.98,
+ "end": 16542.92,
+ "text": "breached"
+ },
+ {
+ "id": 36244,
+ "start": 16542.92,
+ "end": 16543.44,
+ "text": "and"
+ },
+ {
+ "id": 36245,
+ "start": 16543.44,
+ "end": 16544.02,
+ "text": "privacy"
+ },
+ {
+ "id": 36246,
+ "start": 16544.02,
+ "end": 16544.16,
+ "text": "is"
+ },
+ {
+ "id": 36247,
+ "start": 16544.16,
+ "end": 16544.74,
+ "text": "compromised"
+ },
+ {
+ "id": 36248,
+ "start": 16544.74,
+ "end": 16544.9,
+ "text": "as"
+ },
+ {
+ "id": 36249,
+ "start": 16544.9,
+ "end": 16544.98,
+ "text": "a"
+ },
+ {
+ "id": 36250,
+ "start": 16544.98,
+ "end": 16545.3,
+ "text": "result"
+ },
+ {
+ "id": 36251,
+ "start": 16545.3,
+ "end": 16545.58,
+ "text": "because"
+ },
+ {
+ "id": 36252,
+ "start": 16545.58,
+ "end": 16545.82,
+ "text": "right"
+ },
+ {
+ "id": 36253,
+ "start": 16545.82,
+ "end": 16545.98,
+ "text": "now"
+ },
+ {
+ "id": 36254,
+ "start": 16545.98,
+ "end": 16546.2,
+ "text": "there"
+ },
+ {
+ "id": 36255,
+ "start": 16546.2,
+ "end": 16546.34,
+ "text": "is"
+ },
+ {
+ "id": 36256,
+ "start": 16546.34,
+ "end": 16546.64,
+ "text": "very"
+ },
+ {
+ "id": 36257,
+ "start": 16546.64,
+ "end": 16546.92,
+ "text": "little"
+ },
+ {
+ "id": 36258,
+ "start": 16546.92,
+ "end": 16547.9,
+ "text": "incentive"
+ },
+ {
+ "id": 36259,
+ "start": 16547.9,
+ "end": 16548.58,
+ "text": "for"
+ },
+ {
+ "id": 36260,
+ "start": 16548.58,
+ "end": 16549.38,
+ "text": "whether"
+ },
+ {
+ "id": 36261,
+ "start": 16549.38,
+ "end": 16549.6,
+ "text": "it's"
+ },
+ {
+ "id": 36262,
+ "start": 16549.6,
+ "end": 16550.1,
+ "text": "Facebook"
+ },
+ {
+ "id": 36263,
+ "start": 16550.1,
+ "end": 16550.22,
+ "text": "or"
+ },
+ {
+ "id": 36264,
+ "start": 16550.22,
+ "end": 16550.84,
+ "text": "Equifax"
+ },
+ {
+ "id": 36265,
+ "start": 16550.84,
+ "end": 16551.68,
+ "text": "to"
+ },
+ {
+ "id": 36266,
+ "start": 16551.68,
+ "end": 16552.28,
+ "text": "actually"
+ },
+ {
+ "id": 36267,
+ "start": 16552.28,
+ "end": 16552.52,
+ "text": "be"
+ },
+ {
+ "id": 36268,
+ "start": 16552.52,
+ "end": 16553.2,
+ "text": "aggressive"
+ },
+ {
+ "id": 36269,
+ "start": 16553.2,
+ "end": 16553.38,
+ "text": "and"
+ },
+ {
+ "id": 36270,
+ "start": 16553.38,
+ "end": 16553.92,
+ "text": "protecting"
+ },
+ {
+ "id": 36271,
+ "start": 16553.92,
+ "end": 16554.42,
+ "text": "customer"
+ },
+ {
+ "id": 36272,
+ "start": 16554.42,
+ "end": 16554.98,
+ "text": "privacy"
+ },
+ {
+ "id": 36273,
+ "start": 16554.98,
+ "end": 16555.52,
+ "text": "and"
+ },
+ {
+ "id": 36274,
+ "start": 16555.52,
+ "end": 16556.02,
+ "text": "looking"
+ },
+ {
+ "id": 36275,
+ "start": 16556.02,
+ "end": 16556.56,
+ "text": "for"
+ },
+ {
+ "id": 36276,
+ "start": 16556.56,
+ "end": 16557.1,
+ "text": "potential"
+ },
+ {
+ "id": 36277,
+ "start": 16557.1,
+ "end": 16557.6,
+ "text": "breaches"
+ },
+ {
+ "id": 36278,
+ "start": 16557.6,
+ "end": 16558.06,
+ "text": "or"
+ },
+ {
+ "id": 36279,
+ "start": 16558.06,
+ "end": 16558.9,
+ "text": "vulnerabilities"
+ },
+ {
+ "id": 36280,
+ "start": 16558.9,
+ "end": 16559.02,
+ "text": "in"
+ },
+ {
+ "id": 36281,
+ "start": 16559.02,
+ "end": 16559.24,
+ "text": "their"
+ },
+ {
+ "id": 36282,
+ "start": 16559.24,
+ "end": 16559.6,
+ "text": "systems."
+ },
+ {
+ "id": 36283,
+ "start": 16559.6,
+ "end": 16559.76,
+ "text": "So"
+ },
+ {
+ "id": 36284,
+ "start": 16559.76,
+ "end": 16559.9,
+ "text": "what"
+ },
+ {
+ "id": 36285,
+ "start": 16559.9,
+ "end": 16560,
+ "text": "we"
+ },
+ {
+ "id": 36286,
+ "start": 16560,
+ "end": 16560.24,
+ "text": "hear"
+ },
+ {
+ "id": 36287,
+ "start": 16560.24,
+ "end": 16560.58,
+ "text": "after"
+ },
+ {
+ "id": 36288,
+ "start": 16560.58,
+ "end": 16560.7,
+ "text": "the"
+ },
+ {
+ "id": 36289,
+ "start": 16560.7,
+ "end": 16561.02,
+ "text": "fact"
+ },
+ {
+ "id": 36290,
+ "start": 16561.02,
+ "end": 16561.72,
+ "text": "after"
+ },
+ {
+ "id": 36291,
+ "start": 16561.72,
+ "end": 16562.04,
+ "text": "people's"
+ },
+ {
+ "id": 36292,
+ "start": 16562.04,
+ "end": 16562.5,
+ "text": "privacy"
+ },
+ {
+ "id": 36293,
+ "start": 16562.5,
+ "end": 16562.66,
+ "text": "has"
+ },
+ {
+ "id": 36294,
+ "start": 16562.66,
+ "end": 16562.92,
+ "text": "been"
+ },
+ {
+ "id": 36295,
+ "start": 16562.92,
+ "end": 16563.26,
+ "text": "breached"
+ },
+ {
+ "id": 36296,
+ "start": 16563.26,
+ "end": 16563.72,
+ "text": "after"
+ },
+ {
+ "id": 36297,
+ "start": 16563.72,
+ "end": 16564.62,
+ "text": "they've"
+ },
+ {
+ "id": 36298,
+ "start": 16564.62,
+ "end": 16565.56,
+ "text": "taken"
+ },
+ {
+ "id": 36299,
+ "start": 16565.56,
+ "end": 16565.68,
+ "text": "the"
+ },
+ {
+ "id": 36300,
+ "start": 16565.68,
+ "end": 16565.98,
+ "text": "harm"
+ },
+ {
+ "id": 36301,
+ "start": 16565.98,
+ "end": 16566.14,
+ "text": "that"
+ },
+ {
+ "id": 36302,
+ "start": 16566.14,
+ "end": 16566.42,
+ "text": "comes"
+ },
+ {
+ "id": 36303,
+ "start": 16566.42,
+ "end": 16566.64,
+ "text": "with"
+ },
+ {
+ "id": 36304,
+ "start": 16566.64,
+ "end": 16566.94,
+ "text": "that"
+ },
+ {
+ "id": 36305,
+ "start": 16566.94,
+ "end": 16567.66,
+ "text": "and"
+ },
+ {
+ "id": 36306,
+ "start": 16567.66,
+ "end": 16568.56,
+ "text": "considerable"
+ },
+ {
+ "id": 36307,
+ "start": 16568.56,
+ "end": 16569.2,
+ "text": "inconvenience"
+ },
+ {
+ "id": 36308,
+ "start": 16569.2,
+ "end": 16569.34,
+ "text": "in"
+ },
+ {
+ "id": 36309,
+ "start": 16569.34,
+ "end": 16569.66,
+ "text": "addition"
+ },
+ {
+ "id": 36310,
+ "start": 16569.66,
+ "end": 16569.78,
+ "text": "to"
+ },
+ {
+ "id": 36311,
+ "start": 16569.78,
+ "end": 16569.92,
+ "text": "the"
+ },
+ {
+ "id": 36312,
+ "start": 16569.92,
+ "end": 16570.22,
+ "text": "harm"
+ },
+ {
+ "id": 36313,
+ "start": 16570.22,
+ "end": 16570.82,
+ "text": "we've"
+ },
+ {
+ "id": 36314,
+ "start": 16570.82,
+ "end": 16571,
+ "text": "heard"
+ },
+ {
+ "id": 36315,
+ "start": 16571,
+ "end": 16571.78,
+ "text": "apologies,"
+ },
+ {
+ "id": 36316,
+ "start": 16571.78,
+ "end": 16572.04,
+ "text": "but"
+ },
+ {
+ "id": 36317,
+ "start": 16572.04,
+ "end": 16572.28,
+ "text": "there"
+ },
+ {
+ "id": 36318,
+ "start": 16572.28,
+ "end": 16572.54,
+ "text": "is"
+ },
+ {
+ "id": 36319,
+ "start": 16572.54,
+ "end": 16572.78,
+ "text": "no"
+ },
+ {
+ "id": 36320,
+ "start": 16572.78,
+ "end": 16573.34,
+ "text": "financial"
+ },
+ {
+ "id": 36321,
+ "start": 16573.34,
+ "end": 16573.84,
+ "text": "incentive."
+ },
+ {
+ "id": 36322,
+ "start": 16573.84,
+ "end": 16574.06,
+ "text": "Right"
+ },
+ {
+ "id": 36323,
+ "start": 16574.06,
+ "end": 16574.22,
+ "text": "now."
+ },
+ {
+ "id": 36324,
+ "start": 16574.22,
+ "end": 16574.34,
+ "text": "It"
+ },
+ {
+ "id": 36325,
+ "start": 16574.34,
+ "end": 16574.62,
+ "text": "seems"
+ },
+ {
+ "id": 36326,
+ "start": 16574.62,
+ "end": 16574.76,
+ "text": "to"
+ },
+ {
+ "id": 36327,
+ "start": 16574.76,
+ "end": 16575.54,
+ "text": "me"
+ },
+ {
+ "id": 36328,
+ "start": 16575.54,
+ "end": 16576.56,
+ "text": "for"
+ },
+ {
+ "id": 36329,
+ "start": 16576.56,
+ "end": 16576.86,
+ "text": "these"
+ },
+ {
+ "id": 36330,
+ "start": 16576.86,
+ "end": 16577.4,
+ "text": "companies"
+ },
+ {
+ "id": 36331,
+ "start": 16577.4,
+ "end": 16578.16,
+ "text": "to"
+ },
+ {
+ "id": 36332,
+ "start": 16578.16,
+ "end": 16579.4,
+ "text": "aggressively"
+ },
+ {
+ "id": 36333,
+ "start": 16579.4,
+ "end": 16580.38,
+ "text": "stand"
+ },
+ {
+ "id": 36334,
+ "start": 16580.38,
+ "end": 16580.52,
+ "text": "in"
+ },
+ {
+ "id": 36335,
+ "start": 16580.52,
+ "end": 16580.78,
+ "text": "their"
+ },
+ {
+ "id": 36336,
+ "start": 16580.78,
+ "end": 16581.88,
+ "text": "consumers."
+ },
+ {
+ "id": 36337,
+ "start": 16581.88,
+ "end": 16582.5,
+ "text": "Stead"
+ },
+ {
+ "id": 36338,
+ "start": 16582.5,
+ "end": 16582.88,
+ "text": "and"
+ },
+ {
+ "id": 36339,
+ "start": 16582.88,
+ "end": 16583.2,
+ "text": "protect"
+ },
+ {
+ "id": 36340,
+ "start": 16583.2,
+ "end": 16583.42,
+ "text": "their"
+ },
+ {
+ "id": 36341,
+ "start": 16583.42,
+ "end": 16583.9,
+ "text": "privacy."
+ },
+ {
+ "id": 36342,
+ "start": 16583.9,
+ "end": 16584.04,
+ "text": "And"
+ },
+ {
+ "id": 36343,
+ "start": 16584.04,
+ "end": 16584.08,
+ "text": "I"
+ },
+ {
+ "id": 36344,
+ "start": 16584.08,
+ "end": 16584.28,
+ "text": "would"
+ },
+ {
+ "id": 36345,
+ "start": 16584.28,
+ "end": 16584.54,
+ "text": "really"
+ },
+ {
+ "id": 36346,
+ "start": 16584.54,
+ "end": 16584.72,
+ "text": "look"
+ },
+ {
+ "id": 36347,
+ "start": 16584.72,
+ "end": 16585.04,
+ "text": "forward"
+ },
+ {
+ "id": 36348,
+ "start": 16585.04,
+ "end": 16585.18,
+ "text": "to"
+ },
+ {
+ "id": 36349,
+ "start": 16585.18,
+ "end": 16585.42,
+ "text": "working"
+ },
+ {
+ "id": 36350,
+ "start": 16585.42,
+ "end": 16585.58,
+ "text": "with"
+ },
+ {
+ "id": 36351,
+ "start": 16585.58,
+ "end": 16585.7,
+ "text": "you"
+ },
+ {
+ "id": 36352,
+ "start": 16585.7,
+ "end": 16585.86,
+ "text": "on"
+ },
+ {
+ "id": 36353,
+ "start": 16585.86,
+ "end": 16586.08,
+ "text": "that."
+ },
+ {
+ "id": 36354,
+ "start": 16586.08,
+ "end": 16586.71,
+ "text": "And"
+ },
+ {
+ "id": 36355,
+ "start": 16586.71,
+ "end": 16587.07,
+ "text": "your"
+ },
+ {
+ "id": 36356,
+ "start": 16587.07,
+ "end": 16587.43,
+ "text": "considered"
+ },
+ {
+ "id": 36357,
+ "start": 16587.43,
+ "end": 16587.79,
+ "text": "opinion"
+ },
+ {
+ "id": 36358,
+ "start": 16587.79,
+ "end": 16587.99,
+ "text": "about"
+ },
+ {
+ "id": 36359,
+ "start": 16587.99,
+ "end": 16588.13,
+ "text": "it."
+ },
+ {
+ "id": 36360,
+ "start": 16588.13,
+ "end": 16588.87,
+ "text": "Well,"
+ },
+ {
+ "id": 36361,
+ "start": 16588.87,
+ "end": 16589.27,
+ "text": "Senator,"
+ },
+ {
+ "id": 36362,
+ "start": 16589.27,
+ "end": 16590.11,
+ "text": "we"
+ },
+ {
+ "id": 36363,
+ "start": 16590.11,
+ "end": 16590.37,
+ "text": "look"
+ },
+ {
+ "id": 36364,
+ "start": 16590.37,
+ "end": 16590.61,
+ "text": "forward"
+ },
+ {
+ "id": 36365,
+ "start": 16590.61,
+ "end": 16590.97,
+ "text": "to"
+ },
+ {
+ "id": 36366,
+ "start": 16590.97,
+ "end": 16591.41,
+ "text": "discussing"
+ },
+ {
+ "id": 36367,
+ "start": 16591.41,
+ "end": 16591.53,
+ "text": "that"
+ },
+ {
+ "id": 36368,
+ "start": 16591.53,
+ "end": 16591.67,
+ "text": "with"
+ },
+ {
+ "id": 36369,
+ "start": 16591.67,
+ "end": 16591.85,
+ "text": "you,"
+ },
+ {
+ "id": 36370,
+ "start": 16591.85,
+ "end": 16592.49,
+ "text": "I"
+ },
+ {
+ "id": 36371,
+ "start": 16592.49,
+ "end": 16592.77,
+ "text": "would"
+ },
+ {
+ "id": 36372,
+ "start": 16592.77,
+ "end": 16593.35,
+ "text": "disagree,"
+ },
+ {
+ "id": 36373,
+ "start": 16593.35,
+ "end": 16593.77,
+ "text": "however"
+ },
+ {
+ "id": 36374,
+ "start": 16593.77,
+ "end": 16594.11,
+ "text": "that"
+ },
+ {
+ "id": 36375,
+ "start": 16594.11,
+ "end": 16594.27,
+ "text": "we"
+ },
+ {
+ "id": 36376,
+ "start": 16594.27,
+ "end": 16594.43,
+ "text": "have"
+ },
+ {
+ "id": 36377,
+ "start": 16594.43,
+ "end": 16594.65,
+ "text": "no"
+ },
+ {
+ "id": 36378,
+ "start": 16594.65,
+ "end": 16595.11,
+ "text": "financial"
+ },
+ {
+ "id": 36379,
+ "start": 16595.11,
+ "end": 16595.61,
+ "text": "incentive"
+ },
+ {
+ "id": 36380,
+ "start": 16595.61,
+ "end": 16595.77,
+ "text": "or"
+ },
+ {
+ "id": 36381,
+ "start": 16595.77,
+ "end": 16596.21,
+ "text": "incentive"
+ },
+ {
+ "id": 36382,
+ "start": 16596.21,
+ "end": 16596.71,
+ "text": "overall"
+ },
+ {
+ "id": 36383,
+ "start": 16596.71,
+ "end": 16597.05,
+ "text": "to"
+ },
+ {
+ "id": 36384,
+ "start": 16597.05,
+ "end": 16597.17,
+ "text": "do"
+ },
+ {
+ "id": 36385,
+ "start": 16597.17,
+ "end": 16597.88,
+ "text": "this."
+ },
+ {
+ "id": 36386,
+ "start": 16597.88,
+ "end": 16598.58,
+ "text": "This"
+ },
+ {
+ "id": 36387,
+ "start": 16598.58,
+ "end": 16599.06,
+ "text": "episode"
+ },
+ {
+ "id": 36388,
+ "start": 16599.06,
+ "end": 16599.18,
+ "text": "is"
+ },
+ {
+ "id": 36389,
+ "start": 16599.18,
+ "end": 16599.78,
+ "text": "clearly"
+ },
+ {
+ "id": 36390,
+ "start": 16599.78,
+ "end": 16599.98,
+ "text": "hurt"
+ },
+ {
+ "id": 36391,
+ "start": 16599.98,
+ "end": 16600.14,
+ "text": "us"
+ },
+ {
+ "id": 36392,
+ "start": 16600.14,
+ "end": 16600.86,
+ "text": "and"
+ },
+ {
+ "id": 36393,
+ "start": 16600.86,
+ "end": 16601.2,
+ "text": "has"
+ },
+ {
+ "id": 36394,
+ "start": 16601.2,
+ "end": 16601.76,
+ "text": "clearly"
+ },
+ {
+ "id": 36395,
+ "start": 16601.76,
+ "end": 16602.54,
+ "text": "made"
+ },
+ {
+ "id": 36396,
+ "start": 16602.54,
+ "end": 16602.66,
+ "text": "it"
+ },
+ {
+ "id": 36397,
+ "start": 16602.66,
+ "end": 16602.94,
+ "text": "harder"
+ },
+ {
+ "id": 36398,
+ "start": 16602.94,
+ "end": 16603.1,
+ "text": "for"
+ },
+ {
+ "id": 36399,
+ "start": 16603.1,
+ "end": 16603.2,
+ "text": "us"
+ },
+ {
+ "id": 36400,
+ "start": 16603.2,
+ "end": 16603.34,
+ "text": "to"
+ },
+ {
+ "id": 36401,
+ "start": 16603.34,
+ "end": 16603.66,
+ "text": "achieve"
+ },
+ {
+ "id": 36402,
+ "start": 16603.66,
+ "end": 16603.8,
+ "text": "the"
+ },
+ {
+ "id": 36403,
+ "start": 16603.8,
+ "end": 16604.12,
+ "text": "social"
+ },
+ {
+ "id": 36404,
+ "start": 16604.12,
+ "end": 16604.42,
+ "text": "mission"
+ },
+ {
+ "id": 36405,
+ "start": 16604.42,
+ "end": 16604.56,
+ "text": "that"
+ },
+ {
+ "id": 36406,
+ "start": 16604.56,
+ "end": 16604.68,
+ "text": "we"
+ },
+ {
+ "id": 36407,
+ "start": 16604.68,
+ "end": 16604.88,
+ "text": "care"
+ },
+ {
+ "id": 36408,
+ "start": 16604.88,
+ "end": 16605.18,
+ "text": "about."
+ },
+ {
+ "id": 36409,
+ "start": 16605.18,
+ "end": 16605.36,
+ "text": "And"
+ },
+ {
+ "id": 36410,
+ "start": 16605.36,
+ "end": 16605.46,
+ "text": "we"
+ },
+ {
+ "id": 36411,
+ "start": 16605.46,
+ "end": 16605.66,
+ "text": "now"
+ },
+ {
+ "id": 36412,
+ "start": 16605.66,
+ "end": 16605.84,
+ "text": "have"
+ },
+ {
+ "id": 36413,
+ "start": 16605.84,
+ "end": 16606.02,
+ "text": "to"
+ },
+ {
+ "id": 36414,
+ "start": 16606.02,
+ "end": 16606.48,
+ "text": "do"
+ },
+ {
+ "id": 36415,
+ "start": 16606.48,
+ "end": 16606.54,
+ "text": "a"
+ },
+ {
+ "id": 36416,
+ "start": 16606.54,
+ "end": 16606.74,
+ "text": "lot"
+ },
+ {
+ "id": 36417,
+ "start": 16606.74,
+ "end": 16606.84,
+ "text": "of"
+ },
+ {
+ "id": 36418,
+ "start": 16606.84,
+ "end": 16607.1,
+ "text": "work"
+ },
+ {
+ "id": 36419,
+ "start": 16607.1,
+ "end": 16607.66,
+ "text": "around"
+ },
+ {
+ "id": 36420,
+ "start": 16607.66,
+ "end": 16608.04,
+ "text": "building"
+ },
+ {
+ "id": 36421,
+ "start": 16608.04,
+ "end": 16608.38,
+ "text": "trust"
+ },
+ {
+ "id": 36422,
+ "start": 16608.38,
+ "end": 16609.42,
+ "text": "back."
+ },
+ {
+ "id": 36423,
+ "start": 16609.42,
+ "end": 16610.18,
+ "text": "Which"
+ },
+ {
+ "id": 36424,
+ "start": 16610.18,
+ "end": 16610.7,
+ "text": "is"
+ },
+ {
+ "id": 36425,
+ "start": 16610.7,
+ "end": 16610.88,
+ "text": "just"
+ },
+ {
+ "id": 36426,
+ "start": 16610.88,
+ "end": 16610.94,
+ "text": "a"
+ },
+ {
+ "id": 36427,
+ "start": 16610.94,
+ "end": 16611.22,
+ "text": "really"
+ },
+ {
+ "id": 36428,
+ "start": 16611.22,
+ "end": 16611.58,
+ "text": "important"
+ },
+ {
+ "id": 36429,
+ "start": 16611.58,
+ "end": 16611.76,
+ "text": "part"
+ },
+ {
+ "id": 36430,
+ "start": 16611.76,
+ "end": 16611.84,
+ "text": "of"
+ },
+ {
+ "id": 36431,
+ "start": 16611.84,
+ "end": 16611.98,
+ "text": "this."
+ },
+ {
+ "id": 36432,
+ "start": 16611.98,
+ "end": 16612.78,
+ "text": "Well,"
+ },
+ {
+ "id": 36433,
+ "start": 16612.78,
+ "end": 16612.9,
+ "text": "I"
+ },
+ {
+ "id": 36434,
+ "start": 16612.9,
+ "end": 16613.12,
+ "text": "think"
+ },
+ {
+ "id": 36435,
+ "start": 16613.12,
+ "end": 16613.28,
+ "text": "you"
+ },
+ {
+ "id": 36436,
+ "start": 16613.28,
+ "end": 16613.46,
+ "text": "my"
+ },
+ {
+ "id": 36437,
+ "start": 16613.46,
+ "end": 16613.68,
+ "text": "time"
+ },
+ {
+ "id": 36438,
+ "start": 16613.68,
+ "end": 16613.84,
+ "text": "is"
+ },
+ {
+ "id": 36439,
+ "start": 16613.84,
+ "end": 16614.64,
+ "text": "up"
+ },
+ {
+ "id": 36440,
+ "start": 16614.64,
+ "end": 16615.26,
+ "text": "and"
+ },
+ {
+ "id": 36441,
+ "start": 16615.26,
+ "end": 16615.54,
+ "text": "I'll"
+ },
+ {
+ "id": 36442,
+ "start": 16615.54,
+ "end": 16615.8,
+ "text": "follow"
+ },
+ {
+ "id": 36443,
+ "start": 16615.8,
+ "end": 16615.9,
+ "text": "up"
+ },
+ {
+ "id": 36444,
+ "start": 16615.9,
+ "end": 16616.06,
+ "text": "with"
+ },
+ {
+ "id": 36445,
+ "start": 16616.06,
+ "end": 16616.16,
+ "text": "you"
+ },
+ {
+ "id": 36446,
+ "start": 16616.16,
+ "end": 16616.28,
+ "text": "on"
+ },
+ {
+ "id": 36447,
+ "start": 16616.28,
+ "end": 16616.46,
+ "text": "that"
+ },
+ {
+ "id": 36448,
+ "start": 16616.46,
+ "end": 16617.12,
+ "text": "Senator"
+ },
+ {
+ "id": 36449,
+ "start": 16617.12,
+ "end": 16617.58,
+ "text": "capital."
+ },
+ {
+ "id": 36450,
+ "start": 16617.58,
+ "end": 16618.2,
+ "text": "Thank"
+ },
+ {
+ "id": 36451,
+ "start": 16618.2,
+ "end": 16618.38,
+ "text": "you,"
+ },
+ {
+ "id": 36452,
+ "start": 16618.38,
+ "end": 16618.8,
+ "text": "chairman."
+ },
+ {
+ "id": 36453,
+ "start": 16618.8,
+ "end": 16619.18,
+ "text": "Grassley,"
+ },
+ {
+ "id": 36454,
+ "start": 16619.18,
+ "end": 16619.44,
+ "text": "thank"
+ },
+ {
+ "id": 36455,
+ "start": 16619.44,
+ "end": 16619.58,
+ "text": "you,"
+ },
+ {
+ "id": 36456,
+ "start": 16619.58,
+ "end": 16619.84,
+ "text": "Mr"
+ },
+ {
+ "id": 36457,
+ "start": 16619.84,
+ "end": 16620.24,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 36458,
+ "start": 16620.24,
+ "end": 16620.4,
+ "text": "for"
+ },
+ {
+ "id": 36459,
+ "start": 16620.4,
+ "end": 16620.64,
+ "text": "being"
+ },
+ {
+ "id": 36460,
+ "start": 16620.64,
+ "end": 16620.82,
+ "text": "here"
+ },
+ {
+ "id": 36461,
+ "start": 16620.82,
+ "end": 16622.14,
+ "text": "today."
+ },
+ {
+ "id": 36462,
+ "start": 16622.14,
+ "end": 16622.82,
+ "text": "I"
+ },
+ {
+ "id": 36463,
+ "start": 16622.82,
+ "end": 16623.14,
+ "text": "want"
+ },
+ {
+ "id": 36464,
+ "start": 16623.14,
+ "end": 16623.24,
+ "text": "to"
+ },
+ {
+ "id": 36465,
+ "start": 16623.24,
+ "end": 16623.52,
+ "text": "ask"
+ },
+ {
+ "id": 36466,
+ "start": 16623.52,
+ "end": 16623.76,
+ "text": "just"
+ },
+ {
+ "id": 36467,
+ "start": 16623.76,
+ "end": 16624,
+ "text": "kind"
+ },
+ {
+ "id": 36468,
+ "start": 16624,
+ "end": 16624.08,
+ "text": "of"
+ },
+ {
+ "id": 36469,
+ "start": 16624.08,
+ "end": 16624.14,
+ "text": "a"
+ },
+ {
+ "id": 36470,
+ "start": 16624.14,
+ "end": 16624.7,
+ "text": "process."
+ },
+ {
+ "id": 36471,
+ "start": 16624.7,
+ "end": 16625.08,
+ "text": "Question"
+ },
+ {
+ "id": 36472,
+ "start": 16625.08,
+ "end": 16625.3,
+ "text": "you've"
+ },
+ {
+ "id": 36473,
+ "start": 16625.3,
+ "end": 16625.56,
+ "text": "said"
+ },
+ {
+ "id": 36474,
+ "start": 16625.56,
+ "end": 16626.18,
+ "text": "more"
+ },
+ {
+ "id": 36475,
+ "start": 16626.18,
+ "end": 16626.32,
+ "text": "than"
+ },
+ {
+ "id": 36476,
+ "start": 16626.32,
+ "end": 16626.4,
+ "text": "a"
+ },
+ {
+ "id": 36477,
+ "start": 16626.4,
+ "end": 16626.62,
+ "text": "few"
+ },
+ {
+ "id": 36478,
+ "start": 16626.62,
+ "end": 16627.02,
+ "text": "times"
+ },
+ {
+ "id": 36479,
+ "start": 16627.02,
+ "end": 16627.26,
+ "text": "that"
+ },
+ {
+ "id": 36480,
+ "start": 16627.26,
+ "end": 16628.22,
+ "text": "Facebook"
+ },
+ {
+ "id": 36481,
+ "start": 16628.22,
+ "end": 16628.64,
+ "text": "users"
+ },
+ {
+ "id": 36482,
+ "start": 16628.64,
+ "end": 16628.94,
+ "text": "can"
+ },
+ {
+ "id": 36483,
+ "start": 16628.94,
+ "end": 16629.42,
+ "text": "delete"
+ },
+ {
+ "id": 36484,
+ "start": 16629.42,
+ "end": 16630.22,
+ "text": "from"
+ },
+ {
+ "id": 36485,
+ "start": 16630.22,
+ "end": 16630.42,
+ "text": "their"
+ },
+ {
+ "id": 36486,
+ "start": 16630.42,
+ "end": 16630.56,
+ "text": "own"
+ },
+ {
+ "id": 36487,
+ "start": 16630.56,
+ "end": 16630.94,
+ "text": "account"
+ },
+ {
+ "id": 36488,
+ "start": 16630.94,
+ "end": 16631.12,
+ "text": "at"
+ },
+ {
+ "id": 36489,
+ "start": 16631.12,
+ "end": 16631.38,
+ "text": "any"
+ },
+ {
+ "id": 36490,
+ "start": 16631.38,
+ "end": 16631.72,
+ "text": "time."
+ },
+ {
+ "id": 36491,
+ "start": 16631.72,
+ "end": 16632.42,
+ "text": "Well,"
+ },
+ {
+ "id": 36492,
+ "start": 16632.42,
+ "end": 16632.6,
+ "text": "we"
+ },
+ {
+ "id": 36493,
+ "start": 16632.6,
+ "end": 16632.8,
+ "text": "know"
+ },
+ {
+ "id": 36494,
+ "start": 16632.8,
+ "end": 16633.04,
+ "text": "in"
+ },
+ {
+ "id": 36495,
+ "start": 16633.04,
+ "end": 16633.14,
+ "text": "the"
+ },
+ {
+ "id": 36496,
+ "start": 16633.14,
+ "end": 16633.42,
+ "text": "course,"
+ },
+ {
+ "id": 36497,
+ "start": 16633.42,
+ "end": 16633.68,
+ "text": "I"
+ },
+ {
+ "id": 36498,
+ "start": 16633.68,
+ "end": 16634,
+ "text": "do"
+ },
+ {
+ "id": 36499,
+ "start": 16634,
+ "end": 16634.86,
+ "text": "I've"
+ },
+ {
+ "id": 36500,
+ "start": 16634.86,
+ "end": 16635,
+ "text": "got"
+ },
+ {
+ "id": 36501,
+ "start": 16635,
+ "end": 16635.56,
+ "text": "grandchildren"
+ },
+ {
+ "id": 36502,
+ "start": 16635.56,
+ "end": 16635.78,
+ "text": "now."
+ },
+ {
+ "id": 36503,
+ "start": 16635.78,
+ "end": 16635.94,
+ "text": "But"
+ },
+ {
+ "id": 36504,
+ "start": 16635.94,
+ "end": 16636.4,
+ "text": "children"
+ },
+ {
+ "id": 36505,
+ "start": 16636.4,
+ "end": 16636.8,
+ "text": "you"
+ },
+ {
+ "id": 36506,
+ "start": 16636.8,
+ "end": 16637.02,
+ "text": "tell"
+ },
+ {
+ "id": 36507,
+ "start": 16637.02,
+ "end": 16637.18,
+ "text": "your"
+ },
+ {
+ "id": 36508,
+ "start": 16637.18,
+ "end": 16637.6,
+ "text": "children"
+ },
+ {
+ "id": 36509,
+ "start": 16637.6,
+ "end": 16638.4,
+ "text": "once"
+ },
+ {
+ "id": 36510,
+ "start": 16638.4,
+ "end": 16638.56,
+ "text": "you"
+ },
+ {
+ "id": 36511,
+ "start": 16638.56,
+ "end": 16638.78,
+ "text": "make"
+ },
+ {
+ "id": 36512,
+ "start": 16638.78,
+ "end": 16639.06,
+ "text": "that"
+ },
+ {
+ "id": 36513,
+ "start": 16639.06,
+ "end": 16639.5,
+ "text": "mark"
+ },
+ {
+ "id": 36514,
+ "start": 16639.5,
+ "end": 16640.54,
+ "text": "in"
+ },
+ {
+ "id": 36515,
+ "start": 16640.54,
+ "end": 16641,
+ "text": "in"
+ },
+ {
+ "id": 36516,
+ "start": 16641,
+ "end": 16641.42,
+ "text": "cyber"
+ },
+ {
+ "id": 36517,
+ "start": 16641.42,
+ "end": 16641.66,
+ "text": "or"
+ },
+ {
+ "id": 36518,
+ "start": 16641.66,
+ "end": 16642.18,
+ "text": "in"
+ },
+ {
+ "id": 36519,
+ "start": 16642.18,
+ "end": 16642.46,
+ "text": "the"
+ },
+ {
+ "id": 36520,
+ "start": 16642.46,
+ "end": 16643.18,
+ "text": "Internet"
+ },
+ {
+ "id": 36521,
+ "start": 16643.18,
+ "end": 16643.66,
+ "text": "system."
+ },
+ {
+ "id": 36522,
+ "start": 16643.66,
+ "end": 16644.08,
+ "text": "It"
+ },
+ {
+ "id": 36523,
+ "start": 16644.08,
+ "end": 16644.38,
+ "text": "never"
+ },
+ {
+ "id": 36524,
+ "start": 16644.38,
+ "end": 16644.84,
+ "text": "really"
+ },
+ {
+ "id": 36525,
+ "start": 16644.84,
+ "end": 16645.3,
+ "text": "goes"
+ },
+ {
+ "id": 36526,
+ "start": 16645.3,
+ "end": 16645.62,
+ "text": "away."
+ },
+ {
+ "id": 36527,
+ "start": 16645.62,
+ "end": 16646.78,
+ "text": "So"
+ },
+ {
+ "id": 36528,
+ "start": 16646.78,
+ "end": 16647.02,
+ "text": "my"
+ },
+ {
+ "id": 36529,
+ "start": 16647.02,
+ "end": 16647.5,
+ "text": "question"
+ },
+ {
+ "id": 36530,
+ "start": 16647.5,
+ "end": 16647.72,
+ "text": "to"
+ },
+ {
+ "id": 36531,
+ "start": 16647.72,
+ "end": 16647.88,
+ "text": "you"
+ },
+ {
+ "id": 36532,
+ "start": 16647.88,
+ "end": 16648.42,
+ "text": "is"
+ },
+ {
+ "id": 36533,
+ "start": 16648.42,
+ "end": 16649.26,
+ "text": "one"
+ },
+ {
+ "id": 36534,
+ "start": 16649.26,
+ "end": 16649.86,
+ "text": "and"
+ },
+ {
+ "id": 36535,
+ "start": 16649.86,
+ "end": 16649.9,
+ "text": "I"
+ },
+ {
+ "id": 36536,
+ "start": 16649.9,
+ "end": 16650.06,
+ "text": "think"
+ },
+ {
+ "id": 36537,
+ "start": 16650.06,
+ "end": 16650.2,
+ "text": "you"
+ },
+ {
+ "id": 36538,
+ "start": 16650.2,
+ "end": 16650.48,
+ "text": "answered"
+ },
+ {
+ "id": 36539,
+ "start": 16650.48,
+ "end": 16651,
+ "text": "that"
+ },
+ {
+ "id": 36540,
+ "start": 16651,
+ "end": 16651.32,
+ "text": "once"
+ },
+ {
+ "id": 36541,
+ "start": 16651.32,
+ "end": 16651.48,
+ "text": "an"
+ },
+ {
+ "id": 36542,
+ "start": 16651.48,
+ "end": 16652.12,
+ "text": "individual"
+ },
+ {
+ "id": 36543,
+ "start": 16652.12,
+ "end": 16652.52,
+ "text": "deletes,"
+ },
+ {
+ "id": 36544,
+ "start": 16652.52,
+ "end": 16652.66,
+ "text": "the"
+ },
+ {
+ "id": 36545,
+ "start": 16652.66,
+ "end": 16653.32,
+ "text": "information"
+ },
+ {
+ "id": 36546,
+ "start": 16653.32,
+ "end": 16654.08,
+ "text": "from"
+ },
+ {
+ "id": 36547,
+ "start": 16654.08,
+ "end": 16654.34,
+ "text": "their"
+ },
+ {
+ "id": 36548,
+ "start": 16654.34,
+ "end": 16654.74,
+ "text": "page"
+ },
+ {
+ "id": 36549,
+ "start": 16654.74,
+ "end": 16655.18,
+ "text": "it's"
+ },
+ {
+ "id": 36550,
+ "start": 16655.18,
+ "end": 16655.48,
+ "text": "gone"
+ },
+ {
+ "id": 36551,
+ "start": 16655.48,
+ "end": 16656.02,
+ "text": "forever"
+ },
+ {
+ "id": 36552,
+ "start": 16656.02,
+ "end": 16656.24,
+ "text": "from"
+ },
+ {
+ "id": 36553,
+ "start": 16656.24,
+ "end": 16656.8,
+ "text": "Facebook's"
+ },
+ {
+ "id": 36554,
+ "start": 16656.8,
+ "end": 16657.64,
+ "text": "archives,"
+ },
+ {
+ "id": 36555,
+ "start": 16657.64,
+ "end": 16657.9,
+ "text": "is"
+ },
+ {
+ "id": 36556,
+ "start": 16657.9,
+ "end": 16658.08,
+ "text": "that"
+ },
+ {
+ "id": 36557,
+ "start": 16658.08,
+ "end": 16658.94,
+ "text": "correct?"
+ },
+ {
+ "id": 36558,
+ "start": 16658.94,
+ "end": 16659.64,
+ "text": "Yes,"
+ },
+ {
+ "id": 36559,
+ "start": 16659.64,
+ "end": 16660.26,
+ "text": "and"
+ },
+ {
+ "id": 36560,
+ "start": 16660.26,
+ "end": 16660.34,
+ "text": "I"
+ },
+ {
+ "id": 36561,
+ "start": 16660.34,
+ "end": 16660.52,
+ "text": "think"
+ },
+ {
+ "id": 36562,
+ "start": 16660.52,
+ "end": 16660.72,
+ "text": "here"
+ },
+ {
+ "id": 36563,
+ "start": 16660.72,
+ "end": 16660.84,
+ "text": "is"
+ },
+ {
+ "id": 36564,
+ "start": 16660.84,
+ "end": 16660.92,
+ "text": "a"
+ },
+ {
+ "id": 36565,
+ "start": 16660.92,
+ "end": 16661.12,
+ "text": "good"
+ },
+ {
+ "id": 36566,
+ "start": 16661.12,
+ "end": 16661.36,
+ "text": "point,"
+ },
+ {
+ "id": 36567,
+ "start": 16661.36,
+ "end": 16661.64,
+ "text": "though."
+ },
+ {
+ "id": 36568,
+ "start": 16661.64,
+ "end": 16661.94,
+ "text": "Which"
+ },
+ {
+ "id": 36569,
+ "start": 16661.94,
+ "end": 16662.1,
+ "text": "is"
+ },
+ {
+ "id": 36570,
+ "start": 16662.1,
+ "end": 16662.92,
+ "text": "that"
+ },
+ {
+ "id": 36571,
+ "start": 16662.92,
+ "end": 16663.94,
+ "text": "we"
+ },
+ {
+ "id": 36572,
+ "start": 16663.94,
+ "end": 16664.12,
+ "text": "will"
+ },
+ {
+ "id": 36573,
+ "start": 16664.12,
+ "end": 16664.4,
+ "text": "delete"
+ },
+ {
+ "id": 36574,
+ "start": 16664.4,
+ "end": 16664.48,
+ "text": "it"
+ },
+ {
+ "id": 36575,
+ "start": 16664.48,
+ "end": 16664.64,
+ "text": "from"
+ },
+ {
+ "id": 36576,
+ "start": 16664.64,
+ "end": 16664.84,
+ "text": "our"
+ },
+ {
+ "id": 36577,
+ "start": 16664.84,
+ "end": 16665.4,
+ "text": "systems."
+ },
+ {
+ "id": 36578,
+ "start": 16665.4,
+ "end": 16666.1,
+ "text": "But"
+ },
+ {
+ "id": 36579,
+ "start": 16666.1,
+ "end": 16666.2,
+ "text": "if"
+ },
+ {
+ "id": 36580,
+ "start": 16666.2,
+ "end": 16666.46,
+ "text": "you've"
+ },
+ {
+ "id": 36581,
+ "start": 16666.46,
+ "end": 16666.72,
+ "text": "shared"
+ },
+ {
+ "id": 36582,
+ "start": 16666.72,
+ "end": 16667.04,
+ "text": "something"
+ },
+ {
+ "id": 36583,
+ "start": 16667.04,
+ "end": 16667.2,
+ "text": "to"
+ },
+ {
+ "id": 36584,
+ "start": 16667.2,
+ "end": 16667.48,
+ "text": "someone"
+ },
+ {
+ "id": 36585,
+ "start": 16667.48,
+ "end": 16668.28,
+ "text": "else,"
+ },
+ {
+ "id": 36586,
+ "start": 16668.28,
+ "end": 16669.16,
+ "text": "then"
+ },
+ {
+ "id": 36587,
+ "start": 16669.16,
+ "end": 16669.8,
+ "text": "we"
+ },
+ {
+ "id": 36588,
+ "start": 16669.8,
+ "end": 16670.14,
+ "text": "can't"
+ },
+ {
+ "id": 36589,
+ "start": 16670.14,
+ "end": 16670.62,
+ "text": "guarantee"
+ },
+ {
+ "id": 36590,
+ "start": 16670.62,
+ "end": 16670.86,
+ "text": "that"
+ },
+ {
+ "id": 36591,
+ "start": 16670.86,
+ "end": 16671.06,
+ "text": "they"
+ },
+ {
+ "id": 36592,
+ "start": 16671.06,
+ "end": 16671.86,
+ "text": "don't"
+ },
+ {
+ "id": 36593,
+ "start": 16671.86,
+ "end": 16672.02,
+ "text": "have"
+ },
+ {
+ "id": 36594,
+ "start": 16672.02,
+ "end": 16672.12,
+ "text": "it"
+ },
+ {
+ "id": 36595,
+ "start": 16672.12,
+ "end": 16672.44,
+ "text": "somewhere"
+ },
+ {
+ "id": 36596,
+ "start": 16672.44,
+ "end": 16672.64,
+ "text": "else."
+ },
+ {
+ "id": 36597,
+ "start": 16672.64,
+ "end": 16673.42,
+ "text": "Okay,"
+ },
+ {
+ "id": 36598,
+ "start": 16673.42,
+ "end": 16673.64,
+ "text": "so"
+ },
+ {
+ "id": 36599,
+ "start": 16673.64,
+ "end": 16673.8,
+ "text": "if"
+ },
+ {
+ "id": 36600,
+ "start": 16673.8,
+ "end": 16674.26,
+ "text": "somebody"
+ },
+ {
+ "id": 36601,
+ "start": 16674.26,
+ "end": 16674.72,
+ "text": "leaves"
+ },
+ {
+ "id": 36602,
+ "start": 16674.72,
+ "end": 16675.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 36603,
+ "start": 16675.26,
+ "end": 16675.44,
+ "text": "and"
+ },
+ {
+ "id": 36604,
+ "start": 16675.44,
+ "end": 16675.62,
+ "text": "then"
+ },
+ {
+ "id": 36605,
+ "start": 16675.62,
+ "end": 16676.22,
+ "text": "rejoins"
+ },
+ {
+ "id": 36606,
+ "start": 16676.22,
+ "end": 16676.9,
+ "text": "and"
+ },
+ {
+ "id": 36607,
+ "start": 16676.9,
+ "end": 16677.24,
+ "text": "asks"
+ },
+ {
+ "id": 36608,
+ "start": 16677.24,
+ "end": 16677.96,
+ "text": "Facebook,"
+ },
+ {
+ "id": 36609,
+ "start": 16677.96,
+ "end": 16678.42,
+ "text": "can"
+ },
+ {
+ "id": 36610,
+ "start": 16678.42,
+ "end": 16678.6,
+ "text": "you"
+ },
+ {
+ "id": 36611,
+ "start": 16678.6,
+ "end": 16679.38,
+ "text": "recreate"
+ },
+ {
+ "id": 36612,
+ "start": 16679.38,
+ "end": 16680.2,
+ "text": "my"
+ },
+ {
+ "id": 36613,
+ "start": 16680.2,
+ "end": 16680.68,
+ "text": "past?"
+ },
+ {
+ "id": 36614,
+ "start": 16680.68,
+ "end": 16681.06,
+ "text": "Your"
+ },
+ {
+ "id": 36615,
+ "start": 16681.06,
+ "end": 16681.44,
+ "text": "answer"
+ },
+ {
+ "id": 36616,
+ "start": 16681.44,
+ "end": 16681.66,
+ "text": "would"
+ },
+ {
+ "id": 36617,
+ "start": 16681.66,
+ "end": 16682.56,
+ "text": "be"
+ },
+ {
+ "id": 36618,
+ "start": 16682.56,
+ "end": 16683.34,
+ "text": "if"
+ },
+ {
+ "id": 36619,
+ "start": 16683.34,
+ "end": 16683.48,
+ "text": "they"
+ },
+ {
+ "id": 36620,
+ "start": 16683.48,
+ "end": 16683.78,
+ "text": "delete"
+ },
+ {
+ "id": 36621,
+ "start": 16683.78,
+ "end": 16683.96,
+ "text": "their"
+ },
+ {
+ "id": 36622,
+ "start": 16683.96,
+ "end": 16684.26,
+ "text": "account."
+ },
+ {
+ "id": 36623,
+ "start": 16684.26,
+ "end": 16684.42,
+ "text": "The"
+ },
+ {
+ "id": 36624,
+ "start": 16684.42,
+ "end": 16684.68,
+ "text": "answer"
+ },
+ {
+ "id": 36625,
+ "start": 16684.68,
+ "end": 16684.82,
+ "text": "is"
+ },
+ {
+ "id": 36626,
+ "start": 16684.82,
+ "end": 16685,
+ "text": "no"
+ },
+ {
+ "id": 36627,
+ "start": 16685,
+ "end": 16685.36,
+ "text": "that's"
+ },
+ {
+ "id": 36628,
+ "start": 16685.36,
+ "end": 16685.52,
+ "text": "why"
+ },
+ {
+ "id": 36629,
+ "start": 16685.52,
+ "end": 16685.62,
+ "text": "we"
+ },
+ {
+ "id": 36630,
+ "start": 16685.62,
+ "end": 16685.94,
+ "text": "actually"
+ },
+ {
+ "id": 36631,
+ "start": 16685.94,
+ "end": 16686.22,
+ "text": "offer"
+ },
+ {
+ "id": 36632,
+ "start": 16686.22,
+ "end": 16686.4,
+ "text": "two"
+ },
+ {
+ "id": 36633,
+ "start": 16686.4,
+ "end": 16686.9,
+ "text": "options?"
+ },
+ {
+ "id": 36634,
+ "start": 16686.9,
+ "end": 16687.38,
+ "text": "We"
+ },
+ {
+ "id": 36635,
+ "start": 16687.38,
+ "end": 16687.68,
+ "text": "offer"
+ },
+ {
+ "id": 36636,
+ "start": 16687.68,
+ "end": 16688.5,
+ "text": "deactivation"
+ },
+ {
+ "id": 36637,
+ "start": 16688.5,
+ "end": 16688.8,
+ "text": "which"
+ },
+ {
+ "id": 36638,
+ "start": 16688.8,
+ "end": 16689.1,
+ "text": "allows"
+ },
+ {
+ "id": 36639,
+ "start": 16689.1,
+ "end": 16689.22,
+ "text": "you"
+ },
+ {
+ "id": 36640,
+ "start": 16689.22,
+ "end": 16689.32,
+ "text": "to"
+ },
+ {
+ "id": 36641,
+ "start": 16689.32,
+ "end": 16689.58,
+ "text": "shut"
+ },
+ {
+ "id": 36642,
+ "start": 16689.58,
+ "end": 16689.88,
+ "text": "down"
+ },
+ {
+ "id": 36643,
+ "start": 16689.88,
+ "end": 16690.26,
+ "text": "or"
+ },
+ {
+ "id": 36644,
+ "start": 16690.26,
+ "end": 16690.7,
+ "text": "suspend"
+ },
+ {
+ "id": 36645,
+ "start": 16690.7,
+ "end": 16690.86,
+ "text": "your"
+ },
+ {
+ "id": 36646,
+ "start": 16690.86,
+ "end": 16691.18,
+ "text": "account."
+ },
+ {
+ "id": 36647,
+ "start": 16691.18,
+ "end": 16691.34,
+ "text": "But"
+ },
+ {
+ "id": 36648,
+ "start": 16691.34,
+ "end": 16691.54,
+ "text": "not"
+ },
+ {
+ "id": 36649,
+ "start": 16691.54,
+ "end": 16691.82,
+ "text": "delete"
+ },
+ {
+ "id": 36650,
+ "start": 16691.82,
+ "end": 16691.94,
+ "text": "the"
+ },
+ {
+ "id": 36651,
+ "start": 16691.94,
+ "end": 16692.52,
+ "text": "information"
+ },
+ {
+ "id": 36652,
+ "start": 16692.52,
+ "end": 16693.04,
+ "text": "because"
+ },
+ {
+ "id": 36653,
+ "start": 16693.04,
+ "end": 16693.3,
+ "text": "actually"
+ },
+ {
+ "id": 36654,
+ "start": 16693.3,
+ "end": 16693.36,
+ "text": "a"
+ },
+ {
+ "id": 36655,
+ "start": 16693.36,
+ "end": 16693.5,
+ "text": "lot"
+ },
+ {
+ "id": 36656,
+ "start": 16693.5,
+ "end": 16693.58,
+ "text": "of"
+ },
+ {
+ "id": 36657,
+ "start": 16693.58,
+ "end": 16693.77,
+ "text": "people"
+ },
+ {
+ "id": 36658,
+ "start": 16693.77,
+ "end": 16695.91,
+ "text": "at"
+ },
+ {
+ "id": 36659,
+ "start": 16695.91,
+ "end": 16696.11,
+ "text": "least"
+ },
+ {
+ "id": 36660,
+ "start": 16696.11,
+ "end": 16696.27,
+ "text": "for"
+ },
+ {
+ "id": 36661,
+ "start": 16696.27,
+ "end": 16696.43,
+ "text": "some"
+ },
+ {
+ "id": 36662,
+ "start": 16696.43,
+ "end": 16696.69,
+ "text": "period"
+ },
+ {
+ "id": 36663,
+ "start": 16696.69,
+ "end": 16696.79,
+ "text": "of"
+ },
+ {
+ "id": 36664,
+ "start": 16696.79,
+ "end": 16697.01,
+ "text": "time."
+ },
+ {
+ "id": 36665,
+ "start": 16697.01,
+ "end": 16697.37,
+ "text": "We"
+ },
+ {
+ "id": 36666,
+ "start": 16697.37,
+ "end": 16697.59,
+ "text": "hear"
+ },
+ {
+ "id": 36667,
+ "start": 16697.59,
+ "end": 16698.65,
+ "text": "students"
+ },
+ {
+ "id": 36668,
+ "start": 16698.65,
+ "end": 16698.95,
+ "text": "with"
+ },
+ {
+ "id": 36669,
+ "start": 16698.95,
+ "end": 16699.53,
+ "text": "exams."
+ },
+ {
+ "id": 36670,
+ "start": 16699.53,
+ "end": 16699.83,
+ "text": "Coming"
+ },
+ {
+ "id": 36671,
+ "start": 16699.83,
+ "end": 16700.01,
+ "text": "up"
+ },
+ {
+ "id": 36672,
+ "start": 16700.01,
+ "end": 16700.33,
+ "text": "want"
+ },
+ {
+ "id": 36673,
+ "start": 16700.33,
+ "end": 16700.77,
+ "text": "to"
+ },
+ {
+ "id": 36674,
+ "start": 16700.77,
+ "end": 16700.97,
+ "text": "not"
+ },
+ {
+ "id": 36675,
+ "start": 16700.97,
+ "end": 16701.09,
+ "text": "be"
+ },
+ {
+ "id": 36676,
+ "start": 16701.09,
+ "end": 16701.27,
+ "text": "on"
+ },
+ {
+ "id": 36677,
+ "start": 16701.27,
+ "end": 16701.77,
+ "text": "Facebook"
+ },
+ {
+ "id": 36678,
+ "start": 16701.77,
+ "end": 16702.19,
+ "text": "because"
+ },
+ {
+ "id": 36679,
+ "start": 16702.19,
+ "end": 16702.89,
+ "text": "they"
+ },
+ {
+ "id": 36680,
+ "start": 16702.89,
+ "end": 16703.01,
+ "text": "want"
+ },
+ {
+ "id": 36681,
+ "start": 16703.01,
+ "end": 16703.09,
+ "text": "to"
+ },
+ {
+ "id": 36682,
+ "start": 16703.09,
+ "end": 16703.19,
+ "text": "make"
+ },
+ {
+ "id": 36683,
+ "start": 16703.19,
+ "end": 16703.31,
+ "text": "sure"
+ },
+ {
+ "id": 36684,
+ "start": 16703.31,
+ "end": 16703.43,
+ "text": "that"
+ },
+ {
+ "id": 36685,
+ "start": 16703.43,
+ "end": 16703.53,
+ "text": "they"
+ },
+ {
+ "id": 36686,
+ "start": 16703.53,
+ "end": 16703.67,
+ "text": "can"
+ },
+ {
+ "id": 36687,
+ "start": 16703.67,
+ "end": 16703.97,
+ "text": "focus"
+ },
+ {
+ "id": 36688,
+ "start": 16703.97,
+ "end": 16704.09,
+ "text": "on"
+ },
+ {
+ "id": 36689,
+ "start": 16704.09,
+ "end": 16704.21,
+ "text": "the"
+ },
+ {
+ "id": 36690,
+ "start": 16704.21,
+ "end": 16704.98,
+ "text": "exam"
+ },
+ {
+ "id": 36691,
+ "start": 16704.98,
+ "end": 16705.4,
+ "text": "so"
+ },
+ {
+ "id": 36692,
+ "start": 16705.4,
+ "end": 16705.54,
+ "text": "they"
+ },
+ {
+ "id": 36693,
+ "start": 16705.54,
+ "end": 16706.06,
+ "text": "deactivate"
+ },
+ {
+ "id": 36694,
+ "start": 16706.06,
+ "end": 16706.24,
+ "text": "their"
+ },
+ {
+ "id": 36695,
+ "start": 16706.24,
+ "end": 16706.52,
+ "text": "account"
+ },
+ {
+ "id": 36696,
+ "start": 16706.52,
+ "end": 16707.2,
+ "text": "temporarily."
+ },
+ {
+ "id": 36697,
+ "start": 16707.2,
+ "end": 16707.54,
+ "text": "But"
+ },
+ {
+ "id": 36698,
+ "start": 16707.54,
+ "end": 16707.72,
+ "text": "they"
+ },
+ {
+ "id": 36699,
+ "start": 16707.72,
+ "end": 16707.9,
+ "text": "want"
+ },
+ {
+ "id": 36700,
+ "start": 16707.9,
+ "end": 16708.02,
+ "text": "the"
+ },
+ {
+ "id": 36701,
+ "start": 16708.02,
+ "end": 16708.36,
+ "text": "ability"
+ },
+ {
+ "id": 36702,
+ "start": 16708.36,
+ "end": 16708.46,
+ "text": "to"
+ },
+ {
+ "id": 36703,
+ "start": 16708.46,
+ "end": 16708.66,
+ "text": "turn"
+ },
+ {
+ "id": 36704,
+ "start": 16708.66,
+ "end": 16708.78,
+ "text": "it"
+ },
+ {
+ "id": 36705,
+ "start": 16708.78,
+ "end": 16708.98,
+ "text": "back"
+ },
+ {
+ "id": 36706,
+ "start": 16708.98,
+ "end": 16709.18,
+ "text": "on"
+ },
+ {
+ "id": 36707,
+ "start": 16709.18,
+ "end": 16709.32,
+ "text": "when"
+ },
+ {
+ "id": 36708,
+ "start": 16709.32,
+ "end": 16709.54,
+ "text": "they're"
+ },
+ {
+ "id": 36709,
+ "start": 16709.54,
+ "end": 16709.82,
+ "text": "ready."
+ },
+ {
+ "id": 36710,
+ "start": 16709.82,
+ "end": 16710.46,
+ "text": "You"
+ },
+ {
+ "id": 36711,
+ "start": 16710.46,
+ "end": 16710.6,
+ "text": "can"
+ },
+ {
+ "id": 36712,
+ "start": 16710.6,
+ "end": 16710.86,
+ "text": "also"
+ },
+ {
+ "id": 36713,
+ "start": 16710.86,
+ "end": 16711.14,
+ "text": "delete"
+ },
+ {
+ "id": 36714,
+ "start": 16711.14,
+ "end": 16711.3,
+ "text": "your"
+ },
+ {
+ "id": 36715,
+ "start": 16711.3,
+ "end": 16711.58,
+ "text": "account,"
+ },
+ {
+ "id": 36716,
+ "start": 16711.58,
+ "end": 16711.78,
+ "text": "which"
+ },
+ {
+ "id": 36717,
+ "start": 16711.78,
+ "end": 16711.94,
+ "text": "is"
+ },
+ {
+ "id": 36718,
+ "start": 16711.94,
+ "end": 16712.44,
+ "text": "wiping"
+ },
+ {
+ "id": 36719,
+ "start": 16712.44,
+ "end": 16712.82,
+ "text": "everything."
+ },
+ {
+ "id": 36720,
+ "start": 16712.82,
+ "end": 16712.98,
+ "text": "And"
+ },
+ {
+ "id": 36721,
+ "start": 16712.98,
+ "end": 16713.06,
+ "text": "if"
+ },
+ {
+ "id": 36722,
+ "start": 16713.06,
+ "end": 16713.16,
+ "text": "you"
+ },
+ {
+ "id": 36723,
+ "start": 16713.16,
+ "end": 16713.3,
+ "text": "do"
+ },
+ {
+ "id": 36724,
+ "start": 16713.3,
+ "end": 16713.5,
+ "text": "that,"
+ },
+ {
+ "id": 36725,
+ "start": 16713.5,
+ "end": 16713.66,
+ "text": "then"
+ },
+ {
+ "id": 36726,
+ "start": 16713.66,
+ "end": 16713.8,
+ "text": "you"
+ },
+ {
+ "id": 36727,
+ "start": 16713.8,
+ "end": 16713.98,
+ "text": "can't"
+ },
+ {
+ "id": 36728,
+ "start": 16713.98,
+ "end": 16714.08,
+ "text": "get"
+ },
+ {
+ "id": 36729,
+ "start": 16714.08,
+ "end": 16714.18,
+ "text": "it"
+ },
+ {
+ "id": 36730,
+ "start": 16714.18,
+ "end": 16714.4,
+ "text": "back."
+ },
+ {
+ "id": 36731,
+ "start": 16714.4,
+ "end": 16714.68,
+ "text": "You"
+ },
+ {
+ "id": 36732,
+ "start": 16714.68,
+ "end": 16714.94,
+ "text": "can't"
+ },
+ {
+ "id": 36733,
+ "start": 16714.94,
+ "end": 16715.08,
+ "text": "get"
+ },
+ {
+ "id": 36734,
+ "start": 16715.08,
+ "end": 16715.18,
+ "text": "it"
+ },
+ {
+ "id": 36735,
+ "start": 16715.18,
+ "end": 16715.42,
+ "text": "back"
+ },
+ {
+ "id": 36736,
+ "start": 16715.42,
+ "end": 16716.06,
+ "text": "it's"
+ },
+ {
+ "id": 36737,
+ "start": 16716.06,
+ "end": 16716.28,
+ "text": "gone"
+ },
+ {
+ "id": 36738,
+ "start": 16716.28,
+ "end": 16716.42,
+ "text": "from"
+ },
+ {
+ "id": 36739,
+ "start": 16716.42,
+ "end": 16716.58,
+ "text": "your"
+ },
+ {
+ "id": 36740,
+ "start": 16716.58,
+ "end": 16717.38,
+ "text": "archive."
+ },
+ {
+ "id": 36741,
+ "start": 16717.38,
+ "end": 16717.62,
+ "text": "Yes,"
+ },
+ {
+ "id": 36742,
+ "start": 16717.62,
+ "end": 16718.16,
+ "text": "but"
+ },
+ {
+ "id": 36743,
+ "start": 16718.16,
+ "end": 16718.3,
+ "text": "is"
+ },
+ {
+ "id": 36744,
+ "start": 16718.3,
+ "end": 16718.38,
+ "text": "it"
+ },
+ {
+ "id": 36745,
+ "start": 16718.38,
+ "end": 16718.6,
+ "text": "ever"
+ },
+ {
+ "id": 36746,
+ "start": 16718.6,
+ "end": 16718.82,
+ "text": "really"
+ },
+ {
+ "id": 36747,
+ "start": 16718.82,
+ "end": 16719.69,
+ "text": "gone"
+ },
+ {
+ "id": 36748,
+ "start": 16719.69,
+ "end": 16720.69,
+ "text": "from"
+ },
+ {
+ "id": 36749,
+ "start": 16720.69,
+ "end": 16720.91,
+ "text": "our"
+ },
+ {
+ "id": 36750,
+ "start": 16720.91,
+ "end": 16721.41,
+ "text": "systems"
+ },
+ {
+ "id": 36751,
+ "start": 16721.41,
+ "end": 16722.23,
+ "text": "from"
+ },
+ {
+ "id": 36752,
+ "start": 16722.23,
+ "end": 16723.15,
+ "text": "the"
+ },
+ {
+ "id": 36753,
+ "start": 16723.15,
+ "end": 16723.71,
+ "text": "cloud"
+ },
+ {
+ "id": 36754,
+ "start": 16723.71,
+ "end": 16723.87,
+ "text": "or"
+ },
+ {
+ "id": 36755,
+ "start": 16723.87,
+ "end": 16724.95,
+ "text": "wherever"
+ },
+ {
+ "id": 36756,
+ "start": 16724.95,
+ "end": 16725.07,
+ "text": "it"
+ },
+ {
+ "id": 36757,
+ "start": 16725.07,
+ "end": 16725.33,
+ "text": "is?"
+ },
+ {
+ "id": 36758,
+ "start": 16725.33,
+ "end": 16725.43,
+ "text": "I"
+ },
+ {
+ "id": 36759,
+ "start": 16725.43,
+ "end": 16725.69,
+ "text": "mean,"
+ },
+ {
+ "id": 36760,
+ "start": 16725.69,
+ "end": 16725.89,
+ "text": "it"
+ },
+ {
+ "id": 36761,
+ "start": 16725.89,
+ "end": 16726.17,
+ "text": "always"
+ },
+ {
+ "id": 36762,
+ "start": 16726.17,
+ "end": 16726.39,
+ "text": "seems"
+ },
+ {
+ "id": 36763,
+ "start": 16726.39,
+ "end": 16726.51,
+ "text": "to"
+ },
+ {
+ "id": 36764,
+ "start": 16726.51,
+ "end": 16726.61,
+ "text": "be"
+ },
+ {
+ "id": 36765,
+ "start": 16726.61,
+ "end": 16726.77,
+ "text": "able"
+ },
+ {
+ "id": 36766,
+ "start": 16726.77,
+ "end": 16726.85,
+ "text": "to"
+ },
+ {
+ "id": 36767,
+ "start": 16726.85,
+ "end": 16727.33,
+ "text": "reappear"
+ },
+ {
+ "id": 36768,
+ "start": 16727.33,
+ "end": 16727.41,
+ "text": "in"
+ },
+ {
+ "id": 36769,
+ "start": 16727.41,
+ "end": 16728.21,
+ "text": "investigations"
+ },
+ {
+ "id": 36770,
+ "start": 16728.21,
+ "end": 16728.35,
+ "text": "and"
+ },
+ {
+ "id": 36771,
+ "start": 16728.35,
+ "end": 16728.59,
+ "text": "other"
+ },
+ {
+ "id": 36772,
+ "start": 16728.59,
+ "end": 16728.79,
+ "text": "things"
+ },
+ {
+ "id": 36773,
+ "start": 16728.79,
+ "end": 16728.95,
+ "text": "not"
+ },
+ {
+ "id": 36774,
+ "start": 16728.95,
+ "end": 16729.43,
+ "text": "necessarily"
+ },
+ {
+ "id": 36775,
+ "start": 16729.43,
+ "end": 16729.85,
+ "text": "Facebook,"
+ },
+ {
+ "id": 36776,
+ "start": 16729.85,
+ "end": 16730.53,
+ "text": "other"
+ },
+ {
+ "id": 36777,
+ "start": 16730.53,
+ "end": 16730.95,
+ "text": "emails"
+ },
+ {
+ "id": 36778,
+ "start": 16730.95,
+ "end": 16731.51,
+ "text": "and"
+ },
+ {
+ "id": 36779,
+ "start": 16731.51,
+ "end": 16731.71,
+ "text": "and"
+ },
+ {
+ "id": 36780,
+ "start": 16731.71,
+ "end": 16731.93,
+ "text": "other"
+ },
+ {
+ "id": 36781,
+ "start": 16731.93,
+ "end": 16732.11,
+ "text": "things"
+ },
+ {
+ "id": 36782,
+ "start": 16732.11,
+ "end": 16732.25,
+ "text": "of"
+ },
+ {
+ "id": 36783,
+ "start": 16732.25,
+ "end": 16732.39,
+ "text": "that"
+ },
+ {
+ "id": 36784,
+ "start": 16732.39,
+ "end": 16733.2,
+ "text": "nature."
+ },
+ {
+ "id": 36785,
+ "start": 16733.2,
+ "end": 16733.8,
+ "text": "What"
+ },
+ {
+ "id": 36786,
+ "start": 16733.8,
+ "end": 16734.1,
+ "text": "about"
+ },
+ {
+ "id": 36787,
+ "start": 16734.1,
+ "end": 16734.6,
+ "text": "the"
+ },
+ {
+ "id": 36788,
+ "start": 16734.6,
+ "end": 16735.14,
+ "text": "information"
+ },
+ {
+ "id": 36789,
+ "start": 16735.14,
+ "end": 16735.44,
+ "text": "going"
+ },
+ {
+ "id": 36790,
+ "start": 16735.44,
+ "end": 16735.6,
+ "text": "from"
+ },
+ {
+ "id": 36791,
+ "start": 16735.6,
+ "end": 16735.76,
+ "text": "the"
+ },
+ {
+ "id": 36792,
+ "start": 16735.76,
+ "end": 16736.1,
+ "text": "past?"
+ },
+ {
+ "id": 36793,
+ "start": 16736.1,
+ "end": 16736.26,
+ "text": "The"
+ },
+ {
+ "id": 36794,
+ "start": 16736.26,
+ "end": 16736.68,
+ "text": "information"
+ },
+ {
+ "id": 36795,
+ "start": 16736.68,
+ "end": 16736.88,
+ "text": "that's"
+ },
+ {
+ "id": 36796,
+ "start": 16736.88,
+ "end": 16737.26,
+ "text": "already"
+ },
+ {
+ "id": 36797,
+ "start": 16737.26,
+ "end": 16737.54,
+ "text": "been"
+ },
+ {
+ "id": 36798,
+ "start": 16737.54,
+ "end": 16738.52,
+ "text": "in"
+ },
+ {
+ "id": 36799,
+ "start": 16738.52,
+ "end": 16738.66,
+ "text": "the"
+ },
+ {
+ "id": 36800,
+ "start": 16738.66,
+ "end": 16739.6,
+ "text": "Cambridge"
+ },
+ {
+ "id": 36801,
+ "start": 16739.6,
+ "end": 16740.1,
+ "text": "Analytica"
+ },
+ {
+ "id": 36802,
+ "start": 16740.1,
+ "end": 16740.58,
+ "text": "case,"
+ },
+ {
+ "id": 36803,
+ "start": 16740.58,
+ "end": 16741.2,
+ "text": "you"
+ },
+ {
+ "id": 36804,
+ "start": 16741.2,
+ "end": 16741.54,
+ "text": "can't"
+ },
+ {
+ "id": 36805,
+ "start": 16741.54,
+ "end": 16741.86,
+ "text": "really"
+ },
+ {
+ "id": 36806,
+ "start": 16741.86,
+ "end": 16742.06,
+ "text": "go"
+ },
+ {
+ "id": 36807,
+ "start": 16742.06,
+ "end": 16742.3,
+ "text": "back"
+ },
+ {
+ "id": 36808,
+ "start": 16742.3,
+ "end": 16742.48,
+ "text": "and"
+ },
+ {
+ "id": 36809,
+ "start": 16742.48,
+ "end": 16743,
+ "text": "redo"
+ },
+ {
+ "id": 36810,
+ "start": 16743,
+ "end": 16743.4,
+ "text": "that."
+ },
+ {
+ "id": 36811,
+ "start": 16743.4,
+ "end": 16744.38,
+ "text": "So"
+ },
+ {
+ "id": 36812,
+ "start": 16744.38,
+ "end": 16744.74,
+ "text": "I'm"
+ },
+ {
+ "id": 36813,
+ "start": 16744.74,
+ "end": 16744.98,
+ "text": "going"
+ },
+ {
+ "id": 36814,
+ "start": 16744.98,
+ "end": 16745.08,
+ "text": "to"
+ },
+ {
+ "id": 36815,
+ "start": 16745.08,
+ "end": 16745.46,
+ "text": "assume"
+ },
+ {
+ "id": 36816,
+ "start": 16745.46,
+ "end": 16745.6,
+ "text": "that"
+ },
+ {
+ "id": 36817,
+ "start": 16745.6,
+ "end": 16745.76,
+ "text": "what"
+ },
+ {
+ "id": 36818,
+ "start": 16745.76,
+ "end": 16745.98,
+ "text": "we've"
+ },
+ {
+ "id": 36819,
+ "start": 16745.98,
+ "end": 16746.14,
+ "text": "been"
+ },
+ {
+ "id": 36820,
+ "start": 16746.14,
+ "end": 16746.48,
+ "text": "talking"
+ },
+ {
+ "id": 36821,
+ "start": 16746.48,
+ "end": 16746.68,
+ "text": "with"
+ },
+ {
+ "id": 36822,
+ "start": 16746.68,
+ "end": 16746.82,
+ "text": "an"
+ },
+ {
+ "id": 36823,
+ "start": 16746.82,
+ "end": 16747.58,
+ "text": "improvement"
+ },
+ {
+ "id": 36824,
+ "start": 16747.58,
+ "end": 16747.74,
+ "text": "that"
+ },
+ {
+ "id": 36825,
+ "start": 16747.74,
+ "end": 16747.96,
+ "text": "you're"
+ },
+ {
+ "id": 36826,
+ "start": 16747.96,
+ "end": 16748.26,
+ "text": "making."
+ },
+ {
+ "id": 36827,
+ "start": 16748.26,
+ "end": 16748.5,
+ "text": "Now,"
+ },
+ {
+ "id": 36828,
+ "start": 16748.5,
+ "end": 16749.7,
+ "text": "Facebook"
+ },
+ {
+ "id": 36829,
+ "start": 16749.7,
+ "end": 16749.92,
+ "text": "from"
+ },
+ {
+ "id": 36830,
+ "start": 16749.92,
+ "end": 16750.16,
+ "text": "this"
+ },
+ {
+ "id": 36831,
+ "start": 16750.16,
+ "end": 16750.5,
+ "text": "point"
+ },
+ {
+ "id": 36832,
+ "start": 16750.5,
+ "end": 16750.98,
+ "text": "forward,"
+ },
+ {
+ "id": 36833,
+ "start": 16750.98,
+ "end": 16751.14,
+ "text": "is"
+ },
+ {
+ "id": 36834,
+ "start": 16751.14,
+ "end": 16751.3,
+ "text": "that"
+ },
+ {
+ "id": 36835,
+ "start": 16751.3,
+ "end": 16751.48,
+ "text": "a"
+ },
+ {
+ "id": 36836,
+ "start": 16751.48,
+ "end": 16751.8,
+ "text": "correct"
+ },
+ {
+ "id": 36837,
+ "start": 16751.8,
+ "end": 16752.92,
+ "text": "assumption"
+ },
+ {
+ "id": 36838,
+ "start": 16752.92,
+ "end": 16753.76,
+ "text": "Senator?"
+ },
+ {
+ "id": 36839,
+ "start": 16753.76,
+ "end": 16753.84,
+ "text": "I"
+ },
+ {
+ "id": 36840,
+ "start": 16753.84,
+ "end": 16754.28,
+ "text": "actually"
+ },
+ {
+ "id": 36841,
+ "start": 16754.28,
+ "end": 16754.44,
+ "text": "do"
+ },
+ {
+ "id": 36842,
+ "start": 16754.44,
+ "end": 16754.68,
+ "text": "think"
+ },
+ {
+ "id": 36843,
+ "start": 16754.68,
+ "end": 16754.8,
+ "text": "we"
+ },
+ {
+ "id": 36844,
+ "start": 16754.8,
+ "end": 16754.98,
+ "text": "can"
+ },
+ {
+ "id": 36845,
+ "start": 16754.98,
+ "end": 16755.12,
+ "text": "go"
+ },
+ {
+ "id": 36846,
+ "start": 16755.12,
+ "end": 16755.46,
+ "text": "back"
+ },
+ {
+ "id": 36847,
+ "start": 16755.46,
+ "end": 16755.6,
+ "text": "in"
+ },
+ {
+ "id": 36848,
+ "start": 16755.6,
+ "end": 16755.88,
+ "text": "some"
+ },
+ {
+ "id": 36849,
+ "start": 16755.88,
+ "end": 16756.28,
+ "text": "cases"
+ },
+ {
+ "id": 36850,
+ "start": 16756.28,
+ "end": 16756.82,
+ "text": "and"
+ },
+ {
+ "id": 36851,
+ "start": 16756.82,
+ "end": 16757,
+ "text": "that's"
+ },
+ {
+ "id": 36852,
+ "start": 16757,
+ "end": 16757.14,
+ "text": "why"
+ },
+ {
+ "id": 36853,
+ "start": 16757.14,
+ "end": 16757.3,
+ "text": "one"
+ },
+ {
+ "id": 36854,
+ "start": 16757.3,
+ "end": 16757.38,
+ "text": "of"
+ },
+ {
+ "id": 36855,
+ "start": 16757.38,
+ "end": 16757.5,
+ "text": "the"
+ },
+ {
+ "id": 36856,
+ "start": 16757.5,
+ "end": 16757.72,
+ "text": "things"
+ },
+ {
+ "id": 36857,
+ "start": 16757.72,
+ "end": 16757.86,
+ "text": "that"
+ },
+ {
+ "id": 36858,
+ "start": 16757.86,
+ "end": 16757.96,
+ "text": "I"
+ },
+ {
+ "id": 36859,
+ "start": 16757.96,
+ "end": 16758.36,
+ "text": "announced"
+ },
+ {
+ "id": 36860,
+ "start": 16758.36,
+ "end": 16758.88,
+ "text": "is"
+ },
+ {
+ "id": 36861,
+ "start": 16758.88,
+ "end": 16759.02,
+ "text": "that"
+ },
+ {
+ "id": 36862,
+ "start": 16759.02,
+ "end": 16759.22,
+ "text": "we're"
+ },
+ {
+ "id": 36863,
+ "start": 16759.22,
+ "end": 16759.36,
+ "text": "going"
+ },
+ {
+ "id": 36864,
+ "start": 16759.36,
+ "end": 16759.44,
+ "text": "to"
+ },
+ {
+ "id": 36865,
+ "start": 16759.44,
+ "end": 16759.6,
+ "text": "be"
+ },
+ {
+ "id": 36866,
+ "start": 16759.6,
+ "end": 16760.54,
+ "text": "investigating."
+ },
+ {
+ "id": 36867,
+ "start": 16760.54,
+ "end": 16760.9,
+ "text": "Every"
+ },
+ {
+ "id": 36868,
+ "start": 16760.9,
+ "end": 16761.22,
+ "text": "single"
+ },
+ {
+ "id": 36869,
+ "start": 16761.22,
+ "end": 16761.46,
+ "text": "app"
+ },
+ {
+ "id": 36870,
+ "start": 16761.46,
+ "end": 16761.62,
+ "text": "that"
+ },
+ {
+ "id": 36871,
+ "start": 16761.62,
+ "end": 16761.78,
+ "text": "had"
+ },
+ {
+ "id": 36872,
+ "start": 16761.78,
+ "end": 16762.18,
+ "text": "access"
+ },
+ {
+ "id": 36873,
+ "start": 16762.18,
+ "end": 16762.3,
+ "text": "to"
+ },
+ {
+ "id": 36874,
+ "start": 16762.3,
+ "end": 16762.38,
+ "text": "a"
+ },
+ {
+ "id": 36875,
+ "start": 16762.38,
+ "end": 16762.64,
+ "text": "large"
+ },
+ {
+ "id": 36876,
+ "start": 16762.64,
+ "end": 16762.84,
+ "text": "amount"
+ },
+ {
+ "id": 36877,
+ "start": 16762.84,
+ "end": 16762.92,
+ "text": "of"
+ },
+ {
+ "id": 36878,
+ "start": 16762.92,
+ "end": 16763.5,
+ "text": "information"
+ },
+ {
+ "id": 36879,
+ "start": 16763.5,
+ "end": 16763.84,
+ "text": "before"
+ },
+ {
+ "id": 36880,
+ "start": 16763.84,
+ "end": 16763.96,
+ "text": "we"
+ },
+ {
+ "id": 36881,
+ "start": 16763.96,
+ "end": 16764.2,
+ "text": "lock"
+ },
+ {
+ "id": 36882,
+ "start": 16764.2,
+ "end": 16764.36,
+ "text": "down"
+ },
+ {
+ "id": 36883,
+ "start": 16764.36,
+ "end": 16764.5,
+ "text": "the"
+ },
+ {
+ "id": 36884,
+ "start": 16764.5,
+ "end": 16764.9,
+ "text": "platform"
+ },
+ {
+ "id": 36885,
+ "start": 16764.9,
+ "end": 16765.04,
+ "text": "in"
+ },
+ {
+ "id": 36886,
+ "start": 16765.04,
+ "end": 16765.3,
+ "text": "20"
+ },
+ {
+ "id": 36887,
+ "start": 16765.3,
+ "end": 16765.76,
+ "text": "14"
+ },
+ {
+ "id": 36888,
+ "start": 16765.76,
+ "end": 16766.3,
+ "text": "and"
+ },
+ {
+ "id": 36889,
+ "start": 16766.3,
+ "end": 16766.4,
+ "text": "if"
+ },
+ {
+ "id": 36890,
+ "start": 16766.4,
+ "end": 16766.52,
+ "text": "we"
+ },
+ {
+ "id": 36891,
+ "start": 16766.52,
+ "end": 16766.74,
+ "text": "find"
+ },
+ {
+ "id": 36892,
+ "start": 16766.74,
+ "end": 16767.02,
+ "text": "any"
+ },
+ {
+ "id": 36893,
+ "start": 16767.02,
+ "end": 16767.36,
+ "text": "pattern"
+ },
+ {
+ "id": 36894,
+ "start": 16767.36,
+ "end": 16767.48,
+ "text": "of"
+ },
+ {
+ "id": 36895,
+ "start": 16767.48,
+ "end": 16768.02,
+ "text": "suspicious"
+ },
+ {
+ "id": 36896,
+ "start": 16768.02,
+ "end": 16768.84,
+ "text": "activity,"
+ },
+ {
+ "id": 36897,
+ "start": 16768.84,
+ "end": 16769.34,
+ "text": "so"
+ },
+ {
+ "id": 36898,
+ "start": 16769.34,
+ "end": 16769.5,
+ "text": "we're"
+ },
+ {
+ "id": 36899,
+ "start": 16769.5,
+ "end": 16769.64,
+ "text": "going"
+ },
+ {
+ "id": 36900,
+ "start": 16769.64,
+ "end": 16769.72,
+ "text": "to"
+ },
+ {
+ "id": 36901,
+ "start": 16769.72,
+ "end": 16769.9,
+ "text": "go"
+ },
+ {
+ "id": 36902,
+ "start": 16769.9,
+ "end": 16770.44,
+ "text": "do"
+ },
+ {
+ "id": 36903,
+ "start": 16770.44,
+ "end": 16770.5,
+ "text": "a"
+ },
+ {
+ "id": 36904,
+ "start": 16770.5,
+ "end": 16770.82,
+ "text": "full"
+ },
+ {
+ "id": 36905,
+ "start": 16770.82,
+ "end": 16771.14,
+ "text": "audit"
+ },
+ {
+ "id": 36906,
+ "start": 16771.14,
+ "end": 16771.3,
+ "text": "of"
+ },
+ {
+ "id": 36907,
+ "start": 16771.3,
+ "end": 16771.54,
+ "text": "their"
+ },
+ {
+ "id": 36908,
+ "start": 16771.54,
+ "end": 16772.02,
+ "text": "systems."
+ },
+ {
+ "id": 36909,
+ "start": 16772.02,
+ "end": 16772.78,
+ "text": "And"
+ },
+ {
+ "id": 36910,
+ "start": 16772.78,
+ "end": 16773.14,
+ "text": "if"
+ },
+ {
+ "id": 36911,
+ "start": 16773.14,
+ "end": 16773.3,
+ "text": "we"
+ },
+ {
+ "id": 36912,
+ "start": 16773.3,
+ "end": 16773.5,
+ "text": "find"
+ },
+ {
+ "id": 36913,
+ "start": 16773.5,
+ "end": 16773.62,
+ "text": "that"
+ },
+ {
+ "id": 36914,
+ "start": 16773.62,
+ "end": 16773.96,
+ "text": "anyone's"
+ },
+ {
+ "id": 36915,
+ "start": 16773.96,
+ "end": 16774.54,
+ "text": "improperly"
+ },
+ {
+ "id": 36916,
+ "start": 16774.54,
+ "end": 16774.84,
+ "text": "using"
+ },
+ {
+ "id": 36917,
+ "start": 16774.84,
+ "end": 16775.16,
+ "text": "data"
+ },
+ {
+ "id": 36918,
+ "start": 16775.16,
+ "end": 16775.8,
+ "text": "then"
+ },
+ {
+ "id": 36919,
+ "start": 16775.8,
+ "end": 16776.04,
+ "text": "we'll"
+ },
+ {
+ "id": 36920,
+ "start": 16776.04,
+ "end": 16776.2,
+ "text": "take"
+ },
+ {
+ "id": 36921,
+ "start": 16776.2,
+ "end": 16776.58,
+ "text": "action"
+ },
+ {
+ "id": 36922,
+ "start": 16776.58,
+ "end": 16776.66,
+ "text": "to"
+ },
+ {
+ "id": 36923,
+ "start": 16776.66,
+ "end": 16776.8,
+ "text": "make"
+ },
+ {
+ "id": 36924,
+ "start": 16776.8,
+ "end": 16776.94,
+ "text": "sure"
+ },
+ {
+ "id": 36925,
+ "start": 16776.94,
+ "end": 16777.08,
+ "text": "that"
+ },
+ {
+ "id": 36926,
+ "start": 16777.08,
+ "end": 16777.22,
+ "text": "they"
+ },
+ {
+ "id": 36927,
+ "start": 16777.22,
+ "end": 16777.48,
+ "text": "delete"
+ },
+ {
+ "id": 36928,
+ "start": 16777.48,
+ "end": 16777.58,
+ "text": "the"
+ },
+ {
+ "id": 36929,
+ "start": 16777.58,
+ "end": 16777.88,
+ "text": "data"
+ },
+ {
+ "id": 36930,
+ "start": 16777.88,
+ "end": 16778.64,
+ "text": "and"
+ },
+ {
+ "id": 36931,
+ "start": 16778.64,
+ "end": 16779.04,
+ "text": "will"
+ },
+ {
+ "id": 36932,
+ "start": 16779.04,
+ "end": 16779.63,
+ "text": "inform"
+ },
+ {
+ "id": 36933,
+ "start": 16779.63,
+ "end": 16779.99,
+ "text": "everyone"
+ },
+ {
+ "id": 36934,
+ "start": 16779.99,
+ "end": 16781.03,
+ "text": "who"
+ },
+ {
+ "id": 36935,
+ "start": 16781.03,
+ "end": 16781.15,
+ "text": "may"
+ },
+ {
+ "id": 36936,
+ "start": 16781.15,
+ "end": 16781.25,
+ "text": "have"
+ },
+ {
+ "id": 36937,
+ "start": 16781.25,
+ "end": 16781.35,
+ "text": "had"
+ },
+ {
+ "id": 36938,
+ "start": 16781.35,
+ "end": 16781.51,
+ "text": "their"
+ },
+ {
+ "id": 36939,
+ "start": 16781.51,
+ "end": 16781.69,
+ "text": "data"
+ },
+ {
+ "id": 36940,
+ "start": 16781.69,
+ "end": 16781.89,
+ "text": "is"
+ },
+ {
+ "id": 36941,
+ "start": 16781.89,
+ "end": 16782.15,
+ "text": "used"
+ },
+ {
+ "id": 36942,
+ "start": 16782.15,
+ "end": 16783.33,
+ "text": "other"
+ },
+ {
+ "id": 36943,
+ "start": 16783.33,
+ "end": 16783.75,
+ "text": "suggestion."
+ },
+ {
+ "id": 36944,
+ "start": 16783.75,
+ "end": 16783.85,
+ "text": "I"
+ },
+ {
+ "id": 36945,
+ "start": 16783.85,
+ "end": 16784.03,
+ "text": "would"
+ },
+ {
+ "id": 36946,
+ "start": 16784.03,
+ "end": 16784.19,
+ "text": "make"
+ },
+ {
+ "id": 36947,
+ "start": 16784.19,
+ "end": 16784.37,
+ "text": "because"
+ },
+ {
+ "id": 36948,
+ "start": 16784.37,
+ "end": 16784.61,
+ "text": "we're"
+ },
+ {
+ "id": 36949,
+ "start": 16784.61,
+ "end": 16784.89,
+ "text": "kind"
+ },
+ {
+ "id": 36950,
+ "start": 16784.89,
+ "end": 16784.95,
+ "text": "of"
+ },
+ {
+ "id": 36951,
+ "start": 16784.95,
+ "end": 16785.15,
+ "text": "running"
+ },
+ {
+ "id": 36952,
+ "start": 16785.15,
+ "end": 16785.25,
+ "text": "out"
+ },
+ {
+ "id": 36953,
+ "start": 16785.25,
+ "end": 16785.35,
+ "text": "of"
+ },
+ {
+ "id": 36954,
+ "start": 16785.35,
+ "end": 16785.57,
+ "text": "time."
+ },
+ {
+ "id": 36955,
+ "start": 16785.57,
+ "end": 16785.81,
+ "text": "Here"
+ },
+ {
+ "id": 36956,
+ "start": 16785.81,
+ "end": 16786.07,
+ "text": "is"
+ },
+ {
+ "id": 36957,
+ "start": 16786.07,
+ "end": 16786.49,
+ "text": "you've"
+ },
+ {
+ "id": 36958,
+ "start": 16786.49,
+ "end": 16786.73,
+ "text": "heard"
+ },
+ {
+ "id": 36959,
+ "start": 16786.73,
+ "end": 16787.29,
+ "text": "more"
+ },
+ {
+ "id": 36960,
+ "start": 16787.29,
+ "end": 16787.45,
+ "text": "than"
+ },
+ {
+ "id": 36961,
+ "start": 16787.45,
+ "end": 16787.49,
+ "text": "a"
+ },
+ {
+ "id": 36962,
+ "start": 16787.49,
+ "end": 16787.73,
+ "text": "few"
+ },
+ {
+ "id": 36963,
+ "start": 16787.73,
+ "end": 16788.57,
+ "text": "complaints"
+ },
+ {
+ "id": 36964,
+ "start": 16788.57,
+ "end": 16788.75,
+ "text": "that"
+ },
+ {
+ "id": 36965,
+ "start": 16788.75,
+ "end": 16788.89,
+ "text": "I"
+ },
+ {
+ "id": 36966,
+ "start": 16788.89,
+ "end": 16789.17,
+ "text": "join"
+ },
+ {
+ "id": 36967,
+ "start": 16789.17,
+ "end": 16789.29,
+ "text": "the"
+ },
+ {
+ "id": 36968,
+ "start": 16789.29,
+ "end": 16789.67,
+ "text": "course"
+ },
+ {
+ "id": 36969,
+ "start": 16789.67,
+ "end": 16790.42,
+ "text": "of"
+ },
+ {
+ "id": 36970,
+ "start": 16790.42,
+ "end": 16791.02,
+ "text": "the"
+ },
+ {
+ "id": 36971,
+ "start": 16791.02,
+ "end": 16791.52,
+ "text": "laps"
+ },
+ {
+ "id": 36972,
+ "start": 16791.52,
+ "end": 16791.68,
+ "text": "in"
+ },
+ {
+ "id": 36973,
+ "start": 16791.68,
+ "end": 16791.8,
+ "text": "the"
+ },
+ {
+ "id": 36974,
+ "start": 16791.8,
+ "end": 16792.08,
+ "text": "time"
+ },
+ {
+ "id": 36975,
+ "start": 16792.08,
+ "end": 16792.2,
+ "text": "of"
+ },
+ {
+ "id": 36976,
+ "start": 16792.2,
+ "end": 16792.48,
+ "text": "when"
+ },
+ {
+ "id": 36977,
+ "start": 16792.48,
+ "end": 16792.62,
+ "text": "you"
+ },
+ {
+ "id": 36978,
+ "start": 16792.62,
+ "end": 16793.18,
+ "text": "discovered"
+ },
+ {
+ "id": 36979,
+ "start": 16793.18,
+ "end": 16793.88,
+ "text": "and"
+ },
+ {
+ "id": 36980,
+ "start": 16793.88,
+ "end": 16794.16,
+ "text": "when"
+ },
+ {
+ "id": 36981,
+ "start": 16794.16,
+ "end": 16794.38,
+ "text": "you"
+ },
+ {
+ "id": 36982,
+ "start": 16794.38,
+ "end": 16794.74,
+ "text": "became"
+ },
+ {
+ "id": 36983,
+ "start": 16794.74,
+ "end": 16795.4,
+ "text": "transparent"
+ },
+ {
+ "id": 36984,
+ "start": 16795.4,
+ "end": 16795.52,
+ "text": "and"
+ },
+ {
+ "id": 36985,
+ "start": 16795.52,
+ "end": 16795.64,
+ "text": "I"
+ },
+ {
+ "id": 36986,
+ "start": 16795.64,
+ "end": 16796.1,
+ "text": "understand"
+ },
+ {
+ "id": 36987,
+ "start": 16796.1,
+ "end": 16796.28,
+ "text": "you"
+ },
+ {
+ "id": 36988,
+ "start": 16796.28,
+ "end": 16796.46,
+ "text": "sent"
+ },
+ {
+ "id": 36989,
+ "start": 16796.46,
+ "end": 16796.6,
+ "text": "out"
+ },
+ {
+ "id": 36990,
+ "start": 16796.6,
+ "end": 16796.8,
+ "text": "two"
+ },
+ {
+ "id": 36991,
+ "start": 16796.8,
+ "end": 16797.3,
+ "text": "messages"
+ },
+ {
+ "id": 36992,
+ "start": 16797.3,
+ "end": 16797.66,
+ "text": "just"
+ },
+ {
+ "id": 36993,
+ "start": 16797.66,
+ "end": 16798.5,
+ "text": "today"
+ },
+ {
+ "id": 36994,
+ "start": 16798.5,
+ "end": 16798.84,
+ "text": "to"
+ },
+ {
+ "id": 36995,
+ "start": 16798.84,
+ "end": 16799.44,
+ "text": "users."
+ },
+ {
+ "id": 36996,
+ "start": 16799.44,
+ "end": 16799.82,
+ "text": "So"
+ },
+ {
+ "id": 36997,
+ "start": 16799.82,
+ "end": 16800.68,
+ "text": "I"
+ },
+ {
+ "id": 36998,
+ "start": 16800.68,
+ "end": 16800.9,
+ "text": "would"
+ },
+ {
+ "id": 36999,
+ "start": 16800.9,
+ "end": 16801.18,
+ "text": "say"
+ },
+ {
+ "id": 37000,
+ "start": 16801.18,
+ "end": 16801.4,
+ "text": "you"
+ },
+ {
+ "id": 37001,
+ "start": 16801.4,
+ "end": 16801.6,
+ "text": "say"
+ },
+ {
+ "id": 37002,
+ "start": 16801.6,
+ "end": 16801.76,
+ "text": "you"
+ },
+ {
+ "id": 37003,
+ "start": 16801.76,
+ "end": 16802.06,
+ "text": "regret"
+ },
+ {
+ "id": 37004,
+ "start": 16802.06,
+ "end": 16802.28,
+ "text": "that"
+ },
+ {
+ "id": 37005,
+ "start": 16802.28,
+ "end": 16802.7,
+ "text": "decision"
+ },
+ {
+ "id": 37006,
+ "start": 16802.7,
+ "end": 16802.86,
+ "text": "that"
+ },
+ {
+ "id": 37007,
+ "start": 16802.86,
+ "end": 16802.98,
+ "text": "you"
+ },
+ {
+ "id": 37008,
+ "start": 16802.98,
+ "end": 16803.16,
+ "text": "wish"
+ },
+ {
+ "id": 37009,
+ "start": 16803.16,
+ "end": 16803.36,
+ "text": "you'd"
+ },
+ {
+ "id": 37010,
+ "start": 16803.36,
+ "end": 16803.52,
+ "text": "been"
+ },
+ {
+ "id": 37011,
+ "start": 16803.52,
+ "end": 16803.68,
+ "text": "more"
+ },
+ {
+ "id": 37012,
+ "start": 16803.68,
+ "end": 16804.54,
+ "text": "transparent"
+ },
+ {
+ "id": 37013,
+ "start": 16804.54,
+ "end": 16804.64,
+ "text": "at"
+ },
+ {
+ "id": 37014,
+ "start": 16804.64,
+ "end": 16804.78,
+ "text": "the"
+ },
+ {
+ "id": 37015,
+ "start": 16804.78,
+ "end": 16805.04,
+ "text": "time."
+ },
+ {
+ "id": 37016,
+ "start": 16805.04,
+ "end": 16805.2,
+ "text": "So"
+ },
+ {
+ "id": 37017,
+ "start": 16805.2,
+ "end": 16805.28,
+ "text": "I"
+ },
+ {
+ "id": 37018,
+ "start": 16805.28,
+ "end": 16805.46,
+ "text": "would"
+ },
+ {
+ "id": 37019,
+ "start": 16805.46,
+ "end": 16805.84,
+ "text": "imagine"
+ },
+ {
+ "id": 37020,
+ "start": 16805.84,
+ "end": 16806.1,
+ "text": "if"
+ },
+ {
+ "id": 37021,
+ "start": 16806.1,
+ "end": 16806.3,
+ "text": "in"
+ },
+ {
+ "id": 37022,
+ "start": 16806.3,
+ "end": 16806.4,
+ "text": "the"
+ },
+ {
+ "id": 37023,
+ "start": 16806.4,
+ "end": 16806.62,
+ "text": "course"
+ },
+ {
+ "id": 37024,
+ "start": 16806.62,
+ "end": 16806.72,
+ "text": "of"
+ },
+ {
+ "id": 37025,
+ "start": 16806.72,
+ "end": 16806.88,
+ "text": "your"
+ },
+ {
+ "id": 37026,
+ "start": 16806.88,
+ "end": 16807.62,
+ "text": "investigation,"
+ },
+ {
+ "id": 37027,
+ "start": 16807.62,
+ "end": 16808.12,
+ "text": "you"
+ },
+ {
+ "id": 37028,
+ "start": 16808.12,
+ "end": 16808.48,
+ "text": "find"
+ },
+ {
+ "id": 37029,
+ "start": 16808.48,
+ "end": 16809.36,
+ "text": "more"
+ },
+ {
+ "id": 37030,
+ "start": 16809.36,
+ "end": 16810.36,
+ "text": "breaches."
+ },
+ {
+ "id": 37031,
+ "start": 16810.36,
+ "end": 16810.82,
+ "text": "So"
+ },
+ {
+ "id": 37032,
+ "start": 16810.82,
+ "end": 16810.96,
+ "text": "to"
+ },
+ {
+ "id": 37033,
+ "start": 16810.96,
+ "end": 16811.3,
+ "text": "speak"
+ },
+ {
+ "id": 37034,
+ "start": 16811.3,
+ "end": 16811.76,
+ "text": "that"
+ },
+ {
+ "id": 37035,
+ "start": 16811.76,
+ "end": 16811.9,
+ "text": "you"
+ },
+ {
+ "id": 37036,
+ "start": 16811.9,
+ "end": 16812.1,
+ "text": "will"
+ },
+ {
+ "id": 37037,
+ "start": 16812.1,
+ "end": 16812.24,
+ "text": "be"
+ },
+ {
+ "id": 37038,
+ "start": 16812.24,
+ "end": 16812.74,
+ "text": "re"
+ },
+ {
+ "id": 37039,
+ "start": 16812.74,
+ "end": 16813.22,
+ "text": "informing"
+ },
+ {
+ "id": 37040,
+ "start": 16813.22,
+ "end": 16813.44,
+ "text": "your"
+ },
+ {
+ "id": 37041,
+ "start": 16813.44,
+ "end": 16814.52,
+ "text": "Facebook"
+ },
+ {
+ "id": 37042,
+ "start": 16814.52,
+ "end": 16815.64,
+ "text": "customers."
+ },
+ {
+ "id": 37043,
+ "start": 16815.64,
+ "end": 16816.26,
+ "text": "Yes,"
+ },
+ {
+ "id": 37044,
+ "start": 16816.26,
+ "end": 16816.44,
+ "text": "that"
+ },
+ {
+ "id": 37045,
+ "start": 16816.44,
+ "end": 16816.58,
+ "text": "is"
+ },
+ {
+ "id": 37046,
+ "start": 16816.58,
+ "end": 16816.88,
+ "text": "correct."
+ },
+ {
+ "id": 37047,
+ "start": 16816.88,
+ "end": 16817.06,
+ "text": "We"
+ },
+ {
+ "id": 37048,
+ "start": 16817.06,
+ "end": 16817.22,
+ "text": "have"
+ },
+ {
+ "id": 37049,
+ "start": 16817.22,
+ "end": 16817.54,
+ "text": "already"
+ },
+ {
+ "id": 37050,
+ "start": 16817.54,
+ "end": 16817.92,
+ "text": "committed"
+ },
+ {
+ "id": 37051,
+ "start": 16817.92,
+ "end": 16818.18,
+ "text": "that"
+ },
+ {
+ "id": 37052,
+ "start": 16818.18,
+ "end": 16818.28,
+ "text": "if"
+ },
+ {
+ "id": 37053,
+ "start": 16818.28,
+ "end": 16818.44,
+ "text": "we"
+ },
+ {
+ "id": 37054,
+ "start": 16818.44,
+ "end": 16818.68,
+ "text": "find"
+ },
+ {
+ "id": 37055,
+ "start": 16818.68,
+ "end": 16818.86,
+ "text": "any"
+ },
+ {
+ "id": 37056,
+ "start": 16818.86,
+ "end": 16819.3,
+ "text": "improper"
+ },
+ {
+ "id": 37057,
+ "start": 16819.3,
+ "end": 16819.52,
+ "text": "use,"
+ },
+ {
+ "id": 37058,
+ "start": 16819.52,
+ "end": 16820.1,
+ "text": "we"
+ },
+ {
+ "id": 37059,
+ "start": 16820.1,
+ "end": 16820.3,
+ "text": "will"
+ },
+ {
+ "id": 37060,
+ "start": 16820.3,
+ "end": 16820.74,
+ "text": "inform"
+ },
+ {
+ "id": 37061,
+ "start": 16820.74,
+ "end": 16821.06,
+ "text": "everyone"
+ },
+ {
+ "id": 37062,
+ "start": 16821.06,
+ "end": 16821.44,
+ "text": "affected."
+ },
+ {
+ "id": 37063,
+ "start": 16821.44,
+ "end": 16821.92,
+ "text": "Okay,"
+ },
+ {
+ "id": 37064,
+ "start": 16821.92,
+ "end": 16822.4,
+ "text": "thank"
+ },
+ {
+ "id": 37065,
+ "start": 16822.4,
+ "end": 16822.6,
+ "text": "you."
+ },
+ {
+ "id": 37066,
+ "start": 16822.6,
+ "end": 16823.2,
+ "text": "You've"
+ },
+ {
+ "id": 37067,
+ "start": 16823.2,
+ "end": 16823.42,
+ "text": "said"
+ },
+ {
+ "id": 37068,
+ "start": 16823.42,
+ "end": 16824,
+ "text": "also"
+ },
+ {
+ "id": 37069,
+ "start": 16824,
+ "end": 16824.88,
+ "text": "that"
+ },
+ {
+ "id": 37070,
+ "start": 16824.88,
+ "end": 16825.64,
+ "text": "you"
+ },
+ {
+ "id": 37071,
+ "start": 16825.64,
+ "end": 16825.84,
+ "text": "want"
+ },
+ {
+ "id": 37072,
+ "start": 16825.84,
+ "end": 16826.04,
+ "text": "to"
+ },
+ {
+ "id": 37073,
+ "start": 16826.04,
+ "end": 16826.44,
+ "text": "have"
+ },
+ {
+ "id": 37074,
+ "start": 16826.44,
+ "end": 16826.6,
+ "text": "an"
+ },
+ {
+ "id": 37075,
+ "start": 16826.6,
+ "end": 16827,
+ "text": "active"
+ },
+ {
+ "id": 37076,
+ "start": 16827,
+ "end": 16827.28,
+ "text": "view"
+ },
+ {
+ "id": 37077,
+ "start": 16827.28,
+ "end": 16827.76,
+ "text": "on"
+ },
+ {
+ "id": 37078,
+ "start": 16827.76,
+ "end": 16828.54,
+ "text": "controlling"
+ },
+ {
+ "id": 37079,
+ "start": 16828.54,
+ "end": 16828.7,
+ "text": "your"
+ },
+ {
+ "id": 37080,
+ "start": 16828.7,
+ "end": 16829.38,
+ "text": "ecosystem."
+ },
+ {
+ "id": 37081,
+ "start": 16829.38,
+ "end": 16830.44,
+ "text": "Last"
+ },
+ {
+ "id": 37082,
+ "start": 16830.44,
+ "end": 16830.64,
+ "text": "week,"
+ },
+ {
+ "id": 37083,
+ "start": 16830.64,
+ "end": 16830.74,
+ "text": "the"
+ },
+ {
+ "id": 37084,
+ "start": 16830.74,
+ "end": 16831.26,
+ "text": "FDA"
+ },
+ {
+ "id": 37085,
+ "start": 16831.26,
+ "end": 16832.12,
+ "text": "Commissioner"
+ },
+ {
+ "id": 37086,
+ "start": 16832.12,
+ "end": 16832.46,
+ "text": "Scott"
+ },
+ {
+ "id": 37087,
+ "start": 16832.46,
+ "end": 16832.74,
+ "text": "got"
+ },
+ {
+ "id": 37088,
+ "start": 16832.74,
+ "end": 16833.48,
+ "text": "addressed"
+ },
+ {
+ "id": 37089,
+ "start": 16833.48,
+ "end": 16833.56,
+ "text": "a"
+ },
+ {
+ "id": 37090,
+ "start": 16833.56,
+ "end": 16833.82,
+ "text": "drug"
+ },
+ {
+ "id": 37091,
+ "start": 16833.82,
+ "end": 16834.14,
+ "text": "summit"
+ },
+ {
+ "id": 37092,
+ "start": 16834.14,
+ "end": 16834.28,
+ "text": "in"
+ },
+ {
+ "id": 37093,
+ "start": 16834.28,
+ "end": 16834.8,
+ "text": "Atlanta"
+ },
+ {
+ "id": 37094,
+ "start": 16834.8,
+ "end": 16834.94,
+ "text": "and"
+ },
+ {
+ "id": 37095,
+ "start": 16834.94,
+ "end": 16835.2,
+ "text": "spoke"
+ },
+ {
+ "id": 37096,
+ "start": 16835.2,
+ "end": 16835.32,
+ "text": "on"
+ },
+ {
+ "id": 37097,
+ "start": 16835.32,
+ "end": 16835.42,
+ "text": "the"
+ },
+ {
+ "id": 37098,
+ "start": 16835.42,
+ "end": 16835.78,
+ "text": "National"
+ },
+ {
+ "id": 37099,
+ "start": 16835.78,
+ "end": 16836.3,
+ "text": "opioid"
+ },
+ {
+ "id": 37100,
+ "start": 16836.3,
+ "end": 16837.19,
+ "text": "epidemic."
+ },
+ {
+ "id": 37101,
+ "start": 16837.19,
+ "end": 16837.71,
+ "text": "I'm"
+ },
+ {
+ "id": 37102,
+ "start": 16837.71,
+ "end": 16837.85,
+ "text": "from"
+ },
+ {
+ "id": 37103,
+ "start": 16837.85,
+ "end": 16838.05,
+ "text": "West"
+ },
+ {
+ "id": 37104,
+ "start": 16838.05,
+ "end": 16838.43,
+ "text": "Virginia"
+ },
+ {
+ "id": 37105,
+ "start": 16838.43,
+ "end": 16838.85,
+ "text": "and"
+ },
+ {
+ "id": 37106,
+ "start": 16838.85,
+ "end": 16839.03,
+ "text": "thank"
+ },
+ {
+ "id": 37107,
+ "start": 16839.03,
+ "end": 16839.15,
+ "text": "you"
+ },
+ {
+ "id": 37108,
+ "start": 16839.15,
+ "end": 16839.29,
+ "text": "for"
+ },
+ {
+ "id": 37109,
+ "start": 16839.29,
+ "end": 16839.65,
+ "text": "visiting."
+ },
+ {
+ "id": 37110,
+ "start": 16839.65,
+ "end": 16839.83,
+ "text": "And"
+ },
+ {
+ "id": 37111,
+ "start": 16839.83,
+ "end": 16840.07,
+ "text": "next"
+ },
+ {
+ "id": 37112,
+ "start": 16840.07,
+ "end": 16840.25,
+ "text": "time"
+ },
+ {
+ "id": 37113,
+ "start": 16840.25,
+ "end": 16840.37,
+ "text": "you"
+ },
+ {
+ "id": 37114,
+ "start": 16840.37,
+ "end": 16840.75,
+ "text": "visit,"
+ },
+ {
+ "id": 37115,
+ "start": 16840.75,
+ "end": 16841.15,
+ "text": "if"
+ },
+ {
+ "id": 37116,
+ "start": 16841.15,
+ "end": 16841.27,
+ "text": "you"
+ },
+ {
+ "id": 37117,
+ "start": 16841.27,
+ "end": 16841.45,
+ "text": "would"
+ },
+ {
+ "id": 37118,
+ "start": 16841.45,
+ "end": 16841.71,
+ "text": "please"
+ },
+ {
+ "id": 37119,
+ "start": 16841.71,
+ "end": 16841.93,
+ "text": "bring"
+ },
+ {
+ "id": 37120,
+ "start": 16841.93,
+ "end": 16842.09,
+ "text": "some"
+ },
+ {
+ "id": 37121,
+ "start": 16842.09,
+ "end": 16842.51,
+ "text": "fiber"
+ },
+ {
+ "id": 37122,
+ "start": 16842.51,
+ "end": 16842.83,
+ "text": "because"
+ },
+ {
+ "id": 37123,
+ "start": 16842.83,
+ "end": 16843.03,
+ "text": "we"
+ },
+ {
+ "id": 37124,
+ "start": 16843.03,
+ "end": 16843.47,
+ "text": "don't"
+ },
+ {
+ "id": 37125,
+ "start": 16843.47,
+ "end": 16843.65,
+ "text": "have"
+ },
+ {
+ "id": 37126,
+ "start": 16843.65,
+ "end": 16844.45,
+ "text": "connectivity"
+ },
+ {
+ "id": 37127,
+ "start": 16844.45,
+ "end": 16845.63,
+ "text": "in"
+ },
+ {
+ "id": 37128,
+ "start": 16845.63,
+ "end": 16845.83,
+ "text": "our"
+ },
+ {
+ "id": 37129,
+ "start": 16845.83,
+ "end": 16846.15,
+ "text": "rural"
+ },
+ {
+ "id": 37130,
+ "start": 16846.15,
+ "end": 16846.53,
+ "text": "areas."
+ },
+ {
+ "id": 37131,
+ "start": 16846.53,
+ "end": 16846.69,
+ "text": "Like,"
+ },
+ {
+ "id": 37132,
+ "start": 16846.69,
+ "end": 16846.83,
+ "text": "we"
+ },
+ {
+ "id": 37133,
+ "start": 16846.83,
+ "end": 16847.09,
+ "text": "really"
+ },
+ {
+ "id": 37134,
+ "start": 16847.09,
+ "end": 16847.27,
+ "text": "need"
+ },
+ {
+ "id": 37135,
+ "start": 16847.27,
+ "end": 16847.39,
+ "text": "a"
+ },
+ {
+ "id": 37136,
+ "start": 16847.39,
+ "end": 16847.79,
+ "text": "Facebook"
+ },
+ {
+ "id": 37137,
+ "start": 16847.79,
+ "end": 16847.97,
+ "text": "could"
+ },
+ {
+ "id": 37138,
+ "start": 16847.97,
+ "end": 16848.21,
+ "text": "really"
+ },
+ {
+ "id": 37139,
+ "start": 16848.21,
+ "end": 16848.39,
+ "text": "help"
+ },
+ {
+ "id": 37140,
+ "start": 16848.39,
+ "end": 16848.53,
+ "text": "us"
+ },
+ {
+ "id": 37141,
+ "start": 16848.53,
+ "end": 16848.71,
+ "text": "with"
+ },
+ {
+ "id": 37142,
+ "start": 16848.71,
+ "end": 16849.5,
+ "text": "that."
+ },
+ {
+ "id": 37143,
+ "start": 16849.5,
+ "end": 16849.96,
+ "text": "So"
+ },
+ {
+ "id": 37144,
+ "start": 16849.96,
+ "end": 16850.94,
+ "text": "Commissioner"
+ },
+ {
+ "id": 37145,
+ "start": 16850.94,
+ "end": 16851.16,
+ "text": "got"
+ },
+ {
+ "id": 37146,
+ "start": 16851.16,
+ "end": 16852.4,
+ "text": "LA"
+ },
+ {
+ "id": 37147,
+ "start": 16852.4,
+ "end": 16852.6,
+ "text": "called"
+ },
+ {
+ "id": 37148,
+ "start": 16852.6,
+ "end": 16852.82,
+ "text": "upon"
+ },
+ {
+ "id": 37149,
+ "start": 16852.82,
+ "end": 16853.14,
+ "text": "social"
+ },
+ {
+ "id": 37150,
+ "start": 16853.14,
+ "end": 16853.4,
+ "text": "media"
+ },
+ {
+ "id": 37151,
+ "start": 16853.4,
+ "end": 16853.5,
+ "text": "and"
+ },
+ {
+ "id": 37152,
+ "start": 16853.5,
+ "end": 16853.8,
+ "text": "Internet"
+ },
+ {
+ "id": 37153,
+ "start": 16853.8,
+ "end": 16854.14,
+ "text": "service"
+ },
+ {
+ "id": 37154,
+ "start": 16854.14,
+ "end": 16854.5,
+ "text": "providers"
+ },
+ {
+ "id": 37155,
+ "start": 16854.5,
+ "end": 16854.66,
+ "text": "and"
+ },
+ {
+ "id": 37156,
+ "start": 16854.66,
+ "end": 16854.8,
+ "text": "he"
+ },
+ {
+ "id": 37157,
+ "start": 16854.8,
+ "end": 16855.12,
+ "text": "mentioned"
+ },
+ {
+ "id": 37158,
+ "start": 16855.12,
+ "end": 16855.62,
+ "text": "Facebook"
+ },
+ {
+ "id": 37159,
+ "start": 16855.62,
+ "end": 16856.1,
+ "text": "when"
+ },
+ {
+ "id": 37160,
+ "start": 16856.1,
+ "end": 16856.24,
+ "text": "he"
+ },
+ {
+ "id": 37161,
+ "start": 16856.24,
+ "end": 16856.48,
+ "text": "talked"
+ },
+ {
+ "id": 37162,
+ "start": 16856.48,
+ "end": 16856.76,
+ "text": "about"
+ },
+ {
+ "id": 37163,
+ "start": 16856.76,
+ "end": 16856.92,
+ "text": "it"
+ },
+ {
+ "id": 37164,
+ "start": 16856.92,
+ "end": 16857.24,
+ "text": "to"
+ },
+ {
+ "id": 37165,
+ "start": 16857.24,
+ "end": 16858.4,
+ "text": "try"
+ },
+ {
+ "id": 37166,
+ "start": 16858.4,
+ "end": 16858.52,
+ "text": "to"
+ },
+ {
+ "id": 37167,
+ "start": 16858.52,
+ "end": 16859.04,
+ "text": "disrupt"
+ },
+ {
+ "id": 37168,
+ "start": 16859.04,
+ "end": 16859.26,
+ "text": "the"
+ },
+ {
+ "id": 37169,
+ "start": 16859.26,
+ "end": 16860.24,
+ "text": "sale"
+ },
+ {
+ "id": 37170,
+ "start": 16860.24,
+ "end": 16860.52,
+ "text": "of"
+ },
+ {
+ "id": 37171,
+ "start": 16860.52,
+ "end": 16861.08,
+ "text": "illegal"
+ },
+ {
+ "id": 37172,
+ "start": 16861.08,
+ "end": 16861.46,
+ "text": "drugs"
+ },
+ {
+ "id": 37173,
+ "start": 16861.46,
+ "end": 16861.78,
+ "text": "and"
+ },
+ {
+ "id": 37174,
+ "start": 16861.78,
+ "end": 16862.54,
+ "text": "particularly"
+ },
+ {
+ "id": 37175,
+ "start": 16862.54,
+ "end": 16863.04,
+ "text": "powerful"
+ },
+ {
+ "id": 37176,
+ "start": 16863.04,
+ "end": 16863.6,
+ "text": "opioid"
+ },
+ {
+ "id": 37177,
+ "start": 16863.6,
+ "end": 16864.5,
+ "text": "Fentanyl."
+ },
+ {
+ "id": 37178,
+ "start": 16864.5,
+ "end": 16864.64,
+ "text": "Which"
+ },
+ {
+ "id": 37179,
+ "start": 16864.64,
+ "end": 16864.8,
+ "text": "has"
+ },
+ {
+ "id": 37180,
+ "start": 16864.8,
+ "end": 16864.98,
+ "text": "been"
+ },
+ {
+ "id": 37181,
+ "start": 16864.98,
+ "end": 16865.64,
+ "text": "advertised"
+ },
+ {
+ "id": 37182,
+ "start": 16865.64,
+ "end": 16865.76,
+ "text": "and"
+ },
+ {
+ "id": 37183,
+ "start": 16865.76,
+ "end": 16866.02,
+ "text": "sold"
+ },
+ {
+ "id": 37184,
+ "start": 16866.02,
+ "end": 16866.44,
+ "text": "online."
+ },
+ {
+ "id": 37185,
+ "start": 16866.44,
+ "end": 16866.62,
+ "text": "I"
+ },
+ {
+ "id": 37186,
+ "start": 16866.62,
+ "end": 16866.78,
+ "text": "know"
+ },
+ {
+ "id": 37187,
+ "start": 16866.78,
+ "end": 16866.92,
+ "text": "you"
+ },
+ {
+ "id": 37188,
+ "start": 16866.92,
+ "end": 16867.06,
+ "text": "have"
+ },
+ {
+ "id": 37189,
+ "start": 16867.06,
+ "end": 16867.58,
+ "text": "policies"
+ },
+ {
+ "id": 37190,
+ "start": 16867.58,
+ "end": 16867.96,
+ "text": "against"
+ },
+ {
+ "id": 37191,
+ "start": 16867.96,
+ "end": 16868.24,
+ "text": "this."
+ },
+ {
+ "id": 37192,
+ "start": 16868.24,
+ "end": 16869.24,
+ "text": "The"
+ },
+ {
+ "id": 37193,
+ "start": 16869.24,
+ "end": 16870.06,
+ "text": "commissioner"
+ },
+ {
+ "id": 37194,
+ "start": 16870.06,
+ "end": 16870.28,
+ "text": "is"
+ },
+ {
+ "id": 37195,
+ "start": 16870.28,
+ "end": 16870.78,
+ "text": "announcing"
+ },
+ {
+ "id": 37196,
+ "start": 16870.78,
+ "end": 16870.92,
+ "text": "his"
+ },
+ {
+ "id": 37197,
+ "start": 16870.92,
+ "end": 16871.28,
+ "text": "intention"
+ },
+ {
+ "id": 37198,
+ "start": 16871.28,
+ "end": 16871.42,
+ "text": "to"
+ },
+ {
+ "id": 37199,
+ "start": 16871.42,
+ "end": 16871.8,
+ "text": "convene"
+ },
+ {
+ "id": 37200,
+ "start": 16871.8,
+ "end": 16871.86,
+ "text": "a"
+ },
+ {
+ "id": 37201,
+ "start": 16871.86,
+ "end": 16872.18,
+ "text": "meeting"
+ },
+ {
+ "id": 37202,
+ "start": 16872.18,
+ "end": 16872.3,
+ "text": "of"
+ },
+ {
+ "id": 37203,
+ "start": 16872.3,
+ "end": 16872.56,
+ "text": "chief"
+ },
+ {
+ "id": 37204,
+ "start": 16872.56,
+ "end": 16873.16,
+ "text": "executives"
+ },
+ {
+ "id": 37205,
+ "start": 16873.16,
+ "end": 16873.64,
+ "text": "and"
+ },
+ {
+ "id": 37206,
+ "start": 16873.64,
+ "end": 16874.02,
+ "text": "senior"
+ },
+ {
+ "id": 37207,
+ "start": 16874.02,
+ "end": 16874.36,
+ "text": "leaders"
+ },
+ {
+ "id": 37208,
+ "start": 16874.36,
+ "end": 16874.64,
+ "text": "and"
+ },
+ {
+ "id": 37209,
+ "start": 16874.64,
+ "end": 16874.78,
+ "text": "I"
+ },
+ {
+ "id": 37210,
+ "start": 16874.78,
+ "end": 16875.4,
+ "text": "want"
+ },
+ {
+ "id": 37211,
+ "start": 16875.4,
+ "end": 16875.54,
+ "text": "to"
+ },
+ {
+ "id": 37212,
+ "start": 16875.54,
+ "end": 16876,
+ "text": "know."
+ },
+ {
+ "id": 37213,
+ "start": 16876,
+ "end": 16876.18,
+ "text": "Can"
+ },
+ {
+ "id": 37214,
+ "start": 16876.18,
+ "end": 16876.28,
+ "text": "I"
+ },
+ {
+ "id": 37215,
+ "start": 16876.28,
+ "end": 16876.4,
+ "text": "get"
+ },
+ {
+ "id": 37216,
+ "start": 16876.4,
+ "end": 16876.48,
+ "text": "a"
+ },
+ {
+ "id": 37217,
+ "start": 16876.48,
+ "end": 16876.84,
+ "text": "commitment"
+ },
+ {
+ "id": 37218,
+ "start": 16876.84,
+ "end": 16877.02,
+ "text": "from"
+ },
+ {
+ "id": 37219,
+ "start": 16877.02,
+ "end": 16877.14,
+ "text": "you"
+ },
+ {
+ "id": 37220,
+ "start": 16877.14,
+ "end": 16877.4,
+ "text": "today"
+ },
+ {
+ "id": 37221,
+ "start": 16877.4,
+ "end": 16877.56,
+ "text": "that"
+ },
+ {
+ "id": 37222,
+ "start": 16877.56,
+ "end": 16878.04,
+ "text": "Facebook"
+ },
+ {
+ "id": 37223,
+ "start": 16878.04,
+ "end": 16878.52,
+ "text": "will"
+ },
+ {
+ "id": 37224,
+ "start": 16878.52,
+ "end": 16878.78,
+ "text": "commit"
+ },
+ {
+ "id": 37225,
+ "start": 16878.78,
+ "end": 16878.92,
+ "text": "to"
+ },
+ {
+ "id": 37226,
+ "start": 16878.92,
+ "end": 16879.2,
+ "text": "having"
+ },
+ {
+ "id": 37227,
+ "start": 16879.2,
+ "end": 16879.24,
+ "text": "a"
+ },
+ {
+ "id": 37228,
+ "start": 16879.24,
+ "end": 16879.96,
+ "text": "representative"
+ },
+ {
+ "id": 37229,
+ "start": 16879.96,
+ "end": 16880.18,
+ "text": "with"
+ },
+ {
+ "id": 37230,
+ "start": 16880.18,
+ "end": 16880.6,
+ "text": "Commissioner"
+ },
+ {
+ "id": 37231,
+ "start": 16880.6,
+ "end": 16880.82,
+ "text": "got"
+ },
+ {
+ "id": 37232,
+ "start": 16880.82,
+ "end": 16881.02,
+ "text": "leave"
+ },
+ {
+ "id": 37233,
+ "start": 16881.02,
+ "end": 16881.12,
+ "text": "to"
+ },
+ {
+ "id": 37234,
+ "start": 16881.12,
+ "end": 16881.56,
+ "text": "finalize"
+ },
+ {
+ "id": 37235,
+ "start": 16881.56,
+ "end": 16881.78,
+ "text": "with"
+ },
+ {
+ "id": 37236,
+ "start": 16881.78,
+ "end": 16881.96,
+ "text": "this"
+ },
+ {
+ "id": 37237,
+ "start": 16881.96,
+ "end": 16882.68,
+ "text": "meeting,"
+ },
+ {
+ "id": 37238,
+ "start": 16882.68,
+ "end": 16883.4,
+ "text": "Senator,"
+ },
+ {
+ "id": 37239,
+ "start": 16883.4,
+ "end": 16883.6,
+ "text": "that"
+ },
+ {
+ "id": 37240,
+ "start": 16883.6,
+ "end": 16883.84,
+ "text": "sounds"
+ },
+ {
+ "id": 37241,
+ "start": 16883.84,
+ "end": 16883.98,
+ "text": "like"
+ },
+ {
+ "id": 37242,
+ "start": 16883.98,
+ "end": 16884.08,
+ "text": "an"
+ },
+ {
+ "id": 37243,
+ "start": 16884.08,
+ "end": 16884.44,
+ "text": "important"
+ },
+ {
+ "id": 37244,
+ "start": 16884.44,
+ "end": 16884.92,
+ "text": "initiative"
+ },
+ {
+ "id": 37245,
+ "start": 16884.92,
+ "end": 16885.16,
+ "text": "and"
+ },
+ {
+ "id": 37246,
+ "start": 16885.16,
+ "end": 16885.3,
+ "text": "we"
+ },
+ {
+ "id": 37247,
+ "start": 16885.3,
+ "end": 16885.52,
+ "text": "will"
+ },
+ {
+ "id": 37248,
+ "start": 16885.52,
+ "end": 16885.74,
+ "text": "send"
+ },
+ {
+ "id": 37249,
+ "start": 16885.74,
+ "end": 16886.1,
+ "text": "someone."
+ },
+ {
+ "id": 37250,
+ "start": 16886.1,
+ "end": 16886.78,
+ "text": "Let"
+ },
+ {
+ "id": 37251,
+ "start": 16886.78,
+ "end": 16886.9,
+ "text": "me"
+ },
+ {
+ "id": 37252,
+ "start": 16886.9,
+ "end": 16887.2,
+ "text": "also"
+ },
+ {
+ "id": 37253,
+ "start": 16887.2,
+ "end": 16887.44,
+ "text": "say"
+ },
+ {
+ "id": 37254,
+ "start": 16887.44,
+ "end": 16887.66,
+ "text": "that"
+ },
+ {
+ "id": 37255,
+ "start": 16887.66,
+ "end": 16888.02,
+ "text": "on"
+ },
+ {
+ "id": 37256,
+ "start": 16888.02,
+ "end": 16888.18,
+ "text": "your"
+ },
+ {
+ "id": 37257,
+ "start": 16888.18,
+ "end": 16888.36,
+ "text": "point"
+ },
+ {
+ "id": 37258,
+ "start": 16888.36,
+ "end": 16888.54,
+ "text": "about"
+ },
+ {
+ "id": 37259,
+ "start": 16888.54,
+ "end": 16889.1,
+ "text": "connectivity,"
+ },
+ {
+ "id": 37260,
+ "start": 16889.1,
+ "end": 16889.86,
+ "text": "we"
+ },
+ {
+ "id": 37261,
+ "start": 16889.86,
+ "end": 16890.06,
+ "text": "do"
+ },
+ {
+ "id": 37262,
+ "start": 16890.06,
+ "end": 16890.3,
+ "text": "have"
+ },
+ {
+ "id": 37263,
+ "start": 16890.3,
+ "end": 16890.54,
+ "text": "a"
+ },
+ {
+ "id": 37264,
+ "start": 16890.54,
+ "end": 16890.96,
+ "text": "group"
+ },
+ {
+ "id": 37265,
+ "start": 16890.96,
+ "end": 16891.1,
+ "text": "at"
+ },
+ {
+ "id": 37266,
+ "start": 16891.1,
+ "end": 16891.48,
+ "text": "Facebook,"
+ },
+ {
+ "id": 37267,
+ "start": 16891.48,
+ "end": 16891.62,
+ "text": "that"
+ },
+ {
+ "id": 37268,
+ "start": 16891.62,
+ "end": 16891.76,
+ "text": "is"
+ },
+ {
+ "id": 37269,
+ "start": 16891.76,
+ "end": 16892.04,
+ "text": "working"
+ },
+ {
+ "id": 37270,
+ "start": 16892.04,
+ "end": 16892.22,
+ "text": "on"
+ },
+ {
+ "id": 37271,
+ "start": 16892.22,
+ "end": 16892.48,
+ "text": "trying"
+ },
+ {
+ "id": 37272,
+ "start": 16892.48,
+ "end": 16892.62,
+ "text": "to"
+ },
+ {
+ "id": 37273,
+ "start": 16892.62,
+ "end": 16892.86,
+ "text": "spread"
+ },
+ {
+ "id": 37274,
+ "start": 16892.86,
+ "end": 16893.22,
+ "text": "Internet"
+ },
+ {
+ "id": 37275,
+ "start": 16893.22,
+ "end": 16893.78,
+ "text": "connectivity"
+ },
+ {
+ "id": 37276,
+ "start": 16893.78,
+ "end": 16894.12,
+ "text": "in"
+ },
+ {
+ "id": 37277,
+ "start": 16894.12,
+ "end": 16894.74,
+ "text": "rural"
+ },
+ {
+ "id": 37278,
+ "start": 16894.74,
+ "end": 16895.08,
+ "text": "areas"
+ },
+ {
+ "id": 37279,
+ "start": 16895.08,
+ "end": 16895.22,
+ "text": "and"
+ },
+ {
+ "id": 37280,
+ "start": 16895.22,
+ "end": 16895.3,
+ "text": "we"
+ },
+ {
+ "id": 37281,
+ "start": 16895.3,
+ "end": 16895.5,
+ "text": "would"
+ },
+ {
+ "id": 37282,
+ "start": 16895.5,
+ "end": 16895.6,
+ "text": "be"
+ },
+ {
+ "id": 37283,
+ "start": 16895.6,
+ "end": 16895.86,
+ "text": "happy"
+ },
+ {
+ "id": 37284,
+ "start": 16895.86,
+ "end": 16896,
+ "text": "to"
+ },
+ {
+ "id": 37285,
+ "start": 16896,
+ "end": 16896.36,
+ "text": "follow"
+ },
+ {
+ "id": 37286,
+ "start": 16896.36,
+ "end": 16896.44,
+ "text": "up"
+ },
+ {
+ "id": 37287,
+ "start": 16896.44,
+ "end": 16896.56,
+ "text": "with"
+ },
+ {
+ "id": 37288,
+ "start": 16896.56,
+ "end": 16896.66,
+ "text": "you"
+ },
+ {
+ "id": 37289,
+ "start": 16896.66,
+ "end": 16896.78,
+ "text": "on"
+ },
+ {
+ "id": 37290,
+ "start": 16896.78,
+ "end": 16896.92,
+ "text": "that"
+ },
+ {
+ "id": 37291,
+ "start": 16896.92,
+ "end": 16897.04,
+ "text": "as"
+ },
+ {
+ "id": 37292,
+ "start": 16897.04,
+ "end": 16897.24,
+ "text": "well."
+ },
+ {
+ "id": 37293,
+ "start": 16897.24,
+ "end": 16897.46,
+ "text": "That's"
+ },
+ {
+ "id": 37294,
+ "start": 16897.46,
+ "end": 16897.7,
+ "text": "something"
+ },
+ {
+ "id": 37295,
+ "start": 16897.7,
+ "end": 16897.82,
+ "text": "that"
+ },
+ {
+ "id": 37296,
+ "start": 16897.82,
+ "end": 16897.94,
+ "text": "I'm"
+ },
+ {
+ "id": 37297,
+ "start": 16897.94,
+ "end": 16898.12,
+ "text": "very"
+ },
+ {
+ "id": 37298,
+ "start": 16898.12,
+ "end": 16898.54,
+ "text": "passionate"
+ },
+ {
+ "id": 37299,
+ "start": 16898.54,
+ "end": 16899.06,
+ "text": "about"
+ },
+ {
+ "id": 37300,
+ "start": 16899.06,
+ "end": 16899.42,
+ "text": "good"
+ },
+ {
+ "id": 37301,
+ "start": 16899.42,
+ "end": 16899.72,
+ "text": "that's"
+ },
+ {
+ "id": 37302,
+ "start": 16899.72,
+ "end": 16899.94,
+ "text": "good"
+ },
+ {
+ "id": 37303,
+ "start": 16899.94,
+ "end": 16900.22,
+ "text": "news,"
+ },
+ {
+ "id": 37304,
+ "start": 16900.22,
+ "end": 16900.84,
+ "text": "last"
+ },
+ {
+ "id": 37305,
+ "start": 16900.84,
+ "end": 16901.12,
+ "text": "question."
+ },
+ {
+ "id": 37306,
+ "start": 16901.12,
+ "end": 16901.18,
+ "text": "I"
+ },
+ {
+ "id": 37307,
+ "start": 16901.18,
+ "end": 16901.4,
+ "text": "have"
+ },
+ {
+ "id": 37308,
+ "start": 16901.4,
+ "end": 16901.6,
+ "text": "just"
+ },
+ {
+ "id": 37309,
+ "start": 16901.6,
+ "end": 16901.84,
+ "text": "on"
+ },
+ {
+ "id": 37310,
+ "start": 16901.84,
+ "end": 16901.94,
+ "text": "the"
+ },
+ {
+ "id": 37311,
+ "start": 16901.94,
+ "end": 16902.72,
+ "text": "advertising."
+ },
+ {
+ "id": 37312,
+ "start": 16902.72,
+ "end": 16902.94,
+ "text": "If"
+ },
+ {
+ "id": 37313,
+ "start": 16902.94,
+ "end": 16903.4,
+ "text": "somebody"
+ },
+ {
+ "id": 37314,
+ "start": 16903.4,
+ "end": 16904.12,
+ "text": "advertises"
+ },
+ {
+ "id": 37315,
+ "start": 16904.12,
+ "end": 16904.34,
+ "text": "on"
+ },
+ {
+ "id": 37316,
+ "start": 16904.34,
+ "end": 16904.86,
+ "text": "Facebook"
+ },
+ {
+ "id": 37317,
+ "start": 16904.86,
+ "end": 16905.3,
+ "text": "and"
+ },
+ {
+ "id": 37318,
+ "start": 16905.3,
+ "end": 16905.86,
+ "text": "somebody"
+ },
+ {
+ "id": 37319,
+ "start": 16905.86,
+ "end": 16906.48,
+ "text": "purchases"
+ },
+ {
+ "id": 37320,
+ "start": 16906.48,
+ "end": 16906.94,
+ "text": "something."
+ },
+ {
+ "id": 37321,
+ "start": 16906.94,
+ "end": 16907.6,
+ "text": "Does"
+ },
+ {
+ "id": 37322,
+ "start": 16907.6,
+ "end": 16908.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 37323,
+ "start": 16908.16,
+ "end": 16908.46,
+ "text": "get"
+ },
+ {
+ "id": 37324,
+ "start": 16908.46,
+ "end": 16908.88,
+ "text": "a"
+ },
+ {
+ "id": 37325,
+ "start": 16908.88,
+ "end": 16909.94,
+ "text": "percentage"
+ },
+ {
+ "id": 37326,
+ "start": 16909.94,
+ "end": 16910.18,
+ "text": "or"
+ },
+ {
+ "id": 37327,
+ "start": 16910.18,
+ "end": 16910.44,
+ "text": "any"
+ },
+ {
+ "id": 37328,
+ "start": 16910.44,
+ "end": 16910.7,
+ "text": "kind"
+ },
+ {
+ "id": 37329,
+ "start": 16910.7,
+ "end": 16910.9,
+ "text": "of"
+ },
+ {
+ "id": 37330,
+ "start": 16910.9,
+ "end": 16911.7,
+ "text": "a"
+ },
+ {
+ "id": 37331,
+ "start": 16911.7,
+ "end": 16912.02,
+ "text": "fee"
+ },
+ {
+ "id": 37332,
+ "start": 16912.02,
+ "end": 16912.68,
+ "text": "associated"
+ },
+ {
+ "id": 37333,
+ "start": 16912.68,
+ "end": 16912.82,
+ "text": "with"
+ },
+ {
+ "id": 37334,
+ "start": 16912.82,
+ "end": 16912.92,
+ "text": "a"
+ },
+ {
+ "id": 37335,
+ "start": 16912.92,
+ "end": 16913.5,
+ "text": "successful"
+ },
+ {
+ "id": 37336,
+ "start": 16913.5,
+ "end": 16913.88,
+ "text": "purchase"
+ },
+ {
+ "id": 37337,
+ "start": 16913.88,
+ "end": 16914.02,
+ "text": "from"
+ },
+ {
+ "id": 37338,
+ "start": 16914.02,
+ "end": 16914.12,
+ "text": "an"
+ },
+ {
+ "id": 37339,
+ "start": 16914.12,
+ "end": 16915.44,
+ "text": "advertiser"
+ },
+ {
+ "id": 37340,
+ "start": 16915.44,
+ "end": 16916.62,
+ "text": "Senator."
+ },
+ {
+ "id": 37341,
+ "start": 16916.62,
+ "end": 16917.38,
+ "text": "Now,"
+ },
+ {
+ "id": 37342,
+ "start": 16917.38,
+ "end": 16917.56,
+ "text": "the"
+ },
+ {
+ "id": 37343,
+ "start": 16917.56,
+ "end": 16917.72,
+ "text": "way"
+ },
+ {
+ "id": 37344,
+ "start": 16917.72,
+ "end": 16917.86,
+ "text": "that"
+ },
+ {
+ "id": 37345,
+ "start": 16917.86,
+ "end": 16917.98,
+ "text": "the"
+ },
+ {
+ "id": 37346,
+ "start": 16917.98,
+ "end": 16918.32,
+ "text": "system"
+ },
+ {
+ "id": 37347,
+ "start": 16918.32,
+ "end": 16918.64,
+ "text": "works"
+ },
+ {
+ "id": 37348,
+ "start": 16918.64,
+ "end": 16919.44,
+ "text": "is"
+ },
+ {
+ "id": 37349,
+ "start": 16919.44,
+ "end": 16920.36,
+ "text": "people"
+ },
+ {
+ "id": 37350,
+ "start": 16920.36,
+ "end": 16921.4,
+ "text": "advertisers"
+ },
+ {
+ "id": 37351,
+ "start": 16921.4,
+ "end": 16922.74,
+ "text": "bid"
+ },
+ {
+ "id": 37352,
+ "start": 16922.74,
+ "end": 16923.86,
+ "text": "how"
+ },
+ {
+ "id": 37353,
+ "start": 16923.86,
+ "end": 16924.1,
+ "text": "much"
+ },
+ {
+ "id": 37354,
+ "start": 16924.1,
+ "end": 16925.06,
+ "text": "it's"
+ },
+ {
+ "id": 37355,
+ "start": 16925.06,
+ "end": 16925.4,
+ "text": "worth"
+ },
+ {
+ "id": 37356,
+ "start": 16925.4,
+ "end": 16925.5,
+ "text": "it"
+ },
+ {
+ "id": 37357,
+ "start": 16925.5,
+ "end": 16925.62,
+ "text": "to"
+ },
+ {
+ "id": 37358,
+ "start": 16925.62,
+ "end": 16925.8,
+ "text": "them"
+ },
+ {
+ "id": 37359,
+ "start": 16925.8,
+ "end": 16926.02,
+ "text": "to"
+ },
+ {
+ "id": 37360,
+ "start": 16926.02,
+ "end": 16926.54,
+ "text": "show"
+ },
+ {
+ "id": 37361,
+ "start": 16926.54,
+ "end": 16926.64,
+ "text": "an"
+ },
+ {
+ "id": 37362,
+ "start": 16926.64,
+ "end": 16926.96,
+ "text": "ad"
+ },
+ {
+ "id": 37363,
+ "start": 16926.96,
+ "end": 16927.28,
+ "text": "or"
+ },
+ {
+ "id": 37364,
+ "start": 16927.28,
+ "end": 16927.54,
+ "text": "when"
+ },
+ {
+ "id": 37365,
+ "start": 16927.54,
+ "end": 16927.64,
+ "text": "an"
+ },
+ {
+ "id": 37366,
+ "start": 16927.64,
+ "end": 16927.96,
+ "text": "action"
+ },
+ {
+ "id": 37367,
+ "start": 16927.96,
+ "end": 16928.38,
+ "text": "happens?"
+ },
+ {
+ "id": 37368,
+ "start": 16928.38,
+ "end": 16928.72,
+ "text": "So"
+ },
+ {
+ "id": 37369,
+ "start": 16928.72,
+ "end": 16929.6,
+ "text": "it's"
+ },
+ {
+ "id": 37370,
+ "start": 16929.6,
+ "end": 16929.72,
+ "text": "not"
+ },
+ {
+ "id": 37371,
+ "start": 16929.72,
+ "end": 16929.88,
+ "text": "that"
+ },
+ {
+ "id": 37372,
+ "start": 16929.88,
+ "end": 16929.96,
+ "text": "we"
+ },
+ {
+ "id": 37373,
+ "start": 16929.96,
+ "end": 16930.12,
+ "text": "would"
+ },
+ {
+ "id": 37374,
+ "start": 16930.12,
+ "end": 16930.24,
+ "text": "get"
+ },
+ {
+ "id": 37375,
+ "start": 16930.24,
+ "end": 16930.3,
+ "text": "a"
+ },
+ {
+ "id": 37376,
+ "start": 16930.3,
+ "end": 16930.7,
+ "text": "percent"
+ },
+ {
+ "id": 37377,
+ "start": 16930.7,
+ "end": 16930.78,
+ "text": "of"
+ },
+ {
+ "id": 37378,
+ "start": 16930.78,
+ "end": 16930.9,
+ "text": "the"
+ },
+ {
+ "id": 37379,
+ "start": 16930.9,
+ "end": 16931.26,
+ "text": "sale."
+ },
+ {
+ "id": 37380,
+ "start": 16931.26,
+ "end": 16932.12,
+ "text": "But"
+ },
+ {
+ "id": 37381,
+ "start": 16932.12,
+ "end": 16932.92,
+ "text": "let's"
+ },
+ {
+ "id": 37382,
+ "start": 16932.92,
+ "end": 16933.02,
+ "text": "just"
+ },
+ {
+ "id": 37383,
+ "start": 16933.02,
+ "end": 16933.16,
+ "text": "use"
+ },
+ {
+ "id": 37384,
+ "start": 16933.16,
+ "end": 16933.22,
+ "text": "an"
+ },
+ {
+ "id": 37385,
+ "start": 16933.22,
+ "end": 16933.56,
+ "text": "example."
+ },
+ {
+ "id": 37386,
+ "start": 16933.56,
+ "end": 16933.68,
+ "text": "So"
+ },
+ {
+ "id": 37387,
+ "start": 16933.68,
+ "end": 16933.82,
+ "text": "let's"
+ },
+ {
+ "id": 37388,
+ "start": 16933.82,
+ "end": 16933.94,
+ "text": "say"
+ },
+ {
+ "id": 37389,
+ "start": 16933.94,
+ "end": 16934.38,
+ "text": "you're"
+ },
+ {
+ "id": 37390,
+ "start": 16934.38,
+ "end": 16934.46,
+ "text": "an"
+ },
+ {
+ "id": 37391,
+ "start": 16934.46,
+ "end": 16934.62,
+ "text": "app"
+ },
+ {
+ "id": 37392,
+ "start": 16934.62,
+ "end": 16935.06,
+ "text": "developer"
+ },
+ {
+ "id": 37393,
+ "start": 16935.06,
+ "end": 16935.58,
+ "text": "and"
+ },
+ {
+ "id": 37394,
+ "start": 16935.58,
+ "end": 16936.14,
+ "text": "your"
+ },
+ {
+ "id": 37395,
+ "start": 16936.14,
+ "end": 16936.4,
+ "text": "goal"
+ },
+ {
+ "id": 37396,
+ "start": 16936.4,
+ "end": 16936.62,
+ "text": "is"
+ },
+ {
+ "id": 37397,
+ "start": 16936.62,
+ "end": 16936.74,
+ "text": "you"
+ },
+ {
+ "id": 37398,
+ "start": 16936.74,
+ "end": 16936.88,
+ "text": "want"
+ },
+ {
+ "id": 37399,
+ "start": 16936.88,
+ "end": 16936.96,
+ "text": "to"
+ },
+ {
+ "id": 37400,
+ "start": 16936.96,
+ "end": 16937.12,
+ "text": "get"
+ },
+ {
+ "id": 37401,
+ "start": 16937.12,
+ "end": 16937.54,
+ "text": "more"
+ },
+ {
+ "id": 37402,
+ "start": 16937.54,
+ "end": 16937.84,
+ "text": "people"
+ },
+ {
+ "id": 37403,
+ "start": 16937.84,
+ "end": 16937.96,
+ "text": "to"
+ },
+ {
+ "id": 37404,
+ "start": 16937.96,
+ "end": 16938.32,
+ "text": "install"
+ },
+ {
+ "id": 37405,
+ "start": 16938.32,
+ "end": 16938.48,
+ "text": "your"
+ },
+ {
+ "id": 37406,
+ "start": 16938.48,
+ "end": 16938.7,
+ "text": "app?"
+ },
+ {
+ "id": 37407,
+ "start": 16938.7,
+ "end": 16939.54,
+ "text": "You"
+ },
+ {
+ "id": 37408,
+ "start": 16939.54,
+ "end": 16939.78,
+ "text": "could"
+ },
+ {
+ "id": 37409,
+ "start": 16939.78,
+ "end": 16940.48,
+ "text": "bid"
+ },
+ {
+ "id": 37410,
+ "start": 16940.48,
+ "end": 16940.66,
+ "text": "in"
+ },
+ {
+ "id": 37411,
+ "start": 16940.66,
+ "end": 16940.76,
+ "text": "the"
+ },
+ {
+ "id": 37412,
+ "start": 16940.76,
+ "end": 16940.96,
+ "text": "ad"
+ },
+ {
+ "id": 37413,
+ "start": 16940.96,
+ "end": 16941.26,
+ "text": "system"
+ },
+ {
+ "id": 37414,
+ "start": 16941.26,
+ "end": 16941.4,
+ "text": "and"
+ },
+ {
+ "id": 37415,
+ "start": 16941.4,
+ "end": 16941.58,
+ "text": "say"
+ },
+ {
+ "id": 37416,
+ "start": 16941.58,
+ "end": 16941.76,
+ "text": "I"
+ },
+ {
+ "id": 37417,
+ "start": 16941.76,
+ "end": 16941.98,
+ "text": "will"
+ },
+ {
+ "id": 37418,
+ "start": 16941.98,
+ "end": 16942.38,
+ "text": "pay"
+ },
+ {
+ "id": 37419,
+ "start": 16942.38,
+ "end": 16943.2,
+ "text": "three"
+ },
+ {
+ "id": 37420,
+ "start": 16943.2,
+ "end": 16943.64,
+ "text": "dollars"
+ },
+ {
+ "id": 37421,
+ "start": 16943.64,
+ "end": 16944.6,
+ "text": "anytime,"
+ },
+ {
+ "id": 37422,
+ "start": 16944.6,
+ "end": 16944.94,
+ "text": "someone"
+ },
+ {
+ "id": 37423,
+ "start": 16944.94,
+ "end": 16945.43,
+ "text": "installs"
+ },
+ {
+ "id": 37424,
+ "start": 16945.43,
+ "end": 16945.85,
+ "text": "app"
+ },
+ {
+ "id": 37425,
+ "start": 16945.85,
+ "end": 16946.49,
+ "text": "and"
+ },
+ {
+ "id": 37426,
+ "start": 16946.49,
+ "end": 16946.67,
+ "text": "then"
+ },
+ {
+ "id": 37427,
+ "start": 16946.67,
+ "end": 16947.03,
+ "text": "we"
+ },
+ {
+ "id": 37428,
+ "start": 16947.03,
+ "end": 16947.49,
+ "text": "basically"
+ },
+ {
+ "id": 37429,
+ "start": 16947.49,
+ "end": 16947.99,
+ "text": "calculate"
+ },
+ {
+ "id": 37430,
+ "start": 16947.99,
+ "end": 16948.37,
+ "text": "on"
+ },
+ {
+ "id": 37431,
+ "start": 16948.37,
+ "end": 16948.65,
+ "text": "our"
+ },
+ {
+ "id": 37432,
+ "start": 16948.65,
+ "end": 16949.01,
+ "text": "side"
+ },
+ {
+ "id": 37433,
+ "start": 16949.01,
+ "end": 16949.79,
+ "text": "which"
+ },
+ {
+ "id": 37434,
+ "start": 16949.79,
+ "end": 16949.99,
+ "text": "ads"
+ },
+ {
+ "id": 37435,
+ "start": 16949.99,
+ "end": 16950.15,
+ "text": "are"
+ },
+ {
+ "id": 37436,
+ "start": 16950.15,
+ "end": 16950.31,
+ "text": "going"
+ },
+ {
+ "id": 37437,
+ "start": 16950.31,
+ "end": 16950.37,
+ "text": "to"
+ },
+ {
+ "id": 37438,
+ "start": 16950.37,
+ "end": 16950.53,
+ "text": "be"
+ },
+ {
+ "id": 37439,
+ "start": 16950.53,
+ "end": 16950.99,
+ "text": "relevant"
+ },
+ {
+ "id": 37440,
+ "start": 16950.99,
+ "end": 16951.15,
+ "text": "for"
+ },
+ {
+ "id": 37441,
+ "start": 16951.15,
+ "end": 16951.47,
+ "text": "people"
+ },
+ {
+ "id": 37442,
+ "start": 16951.47,
+ "end": 16952.39,
+ "text": "and"
+ },
+ {
+ "id": 37443,
+ "start": 16952.39,
+ "end": 16952.85,
+ "text": "we"
+ },
+ {
+ "id": 37444,
+ "start": 16952.85,
+ "end": 16952.97,
+ "text": "have"
+ },
+ {
+ "id": 37445,
+ "start": 16952.97,
+ "end": 16953.07,
+ "text": "an"
+ },
+ {
+ "id": 37446,
+ "start": 16953.07,
+ "end": 16953.65,
+ "text": "incentive"
+ },
+ {
+ "id": 37447,
+ "start": 16953.65,
+ "end": 16953.99,
+ "text": "to"
+ },
+ {
+ "id": 37448,
+ "start": 16953.99,
+ "end": 16954.27,
+ "text": "show"
+ },
+ {
+ "id": 37449,
+ "start": 16954.27,
+ "end": 16954.47,
+ "text": "people"
+ },
+ {
+ "id": 37450,
+ "start": 16954.47,
+ "end": 16954.69,
+ "text": "ads"
+ },
+ {
+ "id": 37451,
+ "start": 16954.69,
+ "end": 16954.79,
+ "text": "that"
+ },
+ {
+ "id": 37452,
+ "start": 16954.79,
+ "end": 16954.91,
+ "text": "are"
+ },
+ {
+ "id": 37453,
+ "start": 16954.91,
+ "end": 16955.05,
+ "text": "going"
+ },
+ {
+ "id": 37454,
+ "start": 16955.05,
+ "end": 16955.11,
+ "text": "to"
+ },
+ {
+ "id": 37455,
+ "start": 16955.11,
+ "end": 16955.17,
+ "text": "be"
+ },
+ {
+ "id": 37456,
+ "start": 16955.17,
+ "end": 16955.55,
+ "text": "relevant"
+ },
+ {
+ "id": 37457,
+ "start": 16955.55,
+ "end": 16956.03,
+ "text": "because"
+ },
+ {
+ "id": 37458,
+ "start": 16956.03,
+ "end": 16956.41,
+ "text": "we"
+ },
+ {
+ "id": 37459,
+ "start": 16956.41,
+ "end": 16956.63,
+ "text": "only"
+ },
+ {
+ "id": 37460,
+ "start": 16956.63,
+ "end": 16956.77,
+ "text": "get"
+ },
+ {
+ "id": 37461,
+ "start": 16956.77,
+ "end": 16957.01,
+ "text": "paid"
+ },
+ {
+ "id": 37462,
+ "start": 16957.01,
+ "end": 16957.15,
+ "text": "when"
+ },
+ {
+ "id": 37463,
+ "start": 16957.15,
+ "end": 16957.27,
+ "text": "it"
+ },
+ {
+ "id": 37464,
+ "start": 16957.27,
+ "end": 16957.61,
+ "text": "delivers"
+ },
+ {
+ "id": 37465,
+ "start": 16957.61,
+ "end": 16957.69,
+ "text": "a"
+ },
+ {
+ "id": 37466,
+ "start": 16957.69,
+ "end": 16958.05,
+ "text": "business"
+ },
+ {
+ "id": 37467,
+ "start": 16958.05,
+ "end": 16958.74,
+ "text": "result."
+ },
+ {
+ "id": 37468,
+ "start": 16958.74,
+ "end": 16959.98,
+ "text": "And"
+ },
+ {
+ "id": 37469,
+ "start": 16959.98,
+ "end": 16960.42,
+ "text": "that's"
+ },
+ {
+ "id": 37470,
+ "start": 16960.42,
+ "end": 16960.54,
+ "text": "how"
+ },
+ {
+ "id": 37471,
+ "start": 16960.54,
+ "end": 16960.68,
+ "text": "the"
+ },
+ {
+ "id": 37472,
+ "start": 16960.68,
+ "end": 16960.92,
+ "text": "system"
+ },
+ {
+ "id": 37473,
+ "start": 16960.92,
+ "end": 16961.12,
+ "text": "works."
+ },
+ {
+ "id": 37474,
+ "start": 16961.12,
+ "end": 16961.52,
+ "text": "So"
+ },
+ {
+ "id": 37475,
+ "start": 16961.52,
+ "end": 16961.96,
+ "text": "it"
+ },
+ {
+ "id": 37476,
+ "start": 16961.96,
+ "end": 16962.18,
+ "text": "could"
+ },
+ {
+ "id": 37477,
+ "start": 16962.18,
+ "end": 16962.34,
+ "text": "be"
+ },
+ {
+ "id": 37478,
+ "start": 16962.34,
+ "end": 16962.6,
+ "text": "one."
+ },
+ {
+ "id": 37479,
+ "start": 16962.6,
+ "end": 16963.36,
+ "text": "You"
+ },
+ {
+ "id": 37480,
+ "start": 16963.36,
+ "end": 16963.58,
+ "text": "could"
+ },
+ {
+ "id": 37481,
+ "start": 16963.58,
+ "end": 16963.72,
+ "text": "be"
+ },
+ {
+ "id": 37482,
+ "start": 16963.72,
+ "end": 16963.94,
+ "text": "paid"
+ },
+ {
+ "id": 37483,
+ "start": 16963.94,
+ "end": 16964.06,
+ "text": "for"
+ },
+ {
+ "id": 37484,
+ "start": 16964.06,
+ "end": 16964.18,
+ "text": "the"
+ },
+ {
+ "id": 37485,
+ "start": 16964.18,
+ "end": 16964.66,
+ "text": "advertiser."
+ },
+ {
+ "id": 37486,
+ "start": 16964.66,
+ "end": 16964.8,
+ "text": "I"
+ },
+ {
+ "id": 37487,
+ "start": 16964.8,
+ "end": 16965,
+ "text": "mean,"
+ },
+ {
+ "id": 37488,
+ "start": 16965,
+ "end": 16965.14,
+ "text": "for"
+ },
+ {
+ "id": 37489,
+ "start": 16965.14,
+ "end": 16965.24,
+ "text": "the"
+ },
+ {
+ "id": 37490,
+ "start": 16965.24,
+ "end": 16965.62,
+ "text": "sales"
+ },
+ {
+ "id": 37491,
+ "start": 16965.62,
+ "end": 16966.18,
+ "text": "we"
+ },
+ {
+ "id": 37492,
+ "start": 16966.18,
+ "end": 16966.32,
+ "text": "get"
+ },
+ {
+ "id": 37493,
+ "start": 16966.32,
+ "end": 16966.54,
+ "text": "paid"
+ },
+ {
+ "id": 37494,
+ "start": 16966.54,
+ "end": 16966.76,
+ "text": "when"
+ },
+ {
+ "id": 37495,
+ "start": 16966.76,
+ "end": 16966.96,
+ "text": "the"
+ },
+ {
+ "id": 37496,
+ "start": 16966.96,
+ "end": 16967.32,
+ "text": "action"
+ },
+ {
+ "id": 37497,
+ "start": 16967.32,
+ "end": 16967.46,
+ "text": "that"
+ },
+ {
+ "id": 37498,
+ "start": 16967.46,
+ "end": 16967.58,
+ "text": "the"
+ },
+ {
+ "id": 37499,
+ "start": 16967.58,
+ "end": 16968.26,
+ "text": "advertiser"
+ },
+ {
+ "id": 37500,
+ "start": 16968.26,
+ "end": 16968.62,
+ "text": "wants"
+ },
+ {
+ "id": 37501,
+ "start": 16968.62,
+ "end": 16969.1,
+ "text": "to"
+ },
+ {
+ "id": 37502,
+ "start": 16969.1,
+ "end": 16969.52,
+ "text": "happen"
+ },
+ {
+ "id": 37503,
+ "start": 16969.52,
+ "end": 16970.42,
+ "text": "happens."
+ },
+ {
+ "id": 37504,
+ "start": 16970.42,
+ "end": 16970.88,
+ "text": "Alright,"
+ },
+ {
+ "id": 37505,
+ "start": 16970.88,
+ "end": 16971.04,
+ "text": "thank"
+ },
+ {
+ "id": 37506,
+ "start": 16971.04,
+ "end": 16971.14,
+ "text": "you,"
+ },
+ {
+ "id": 37507,
+ "start": 16971.14,
+ "end": 16972.02,
+ "text": "Senator"
+ },
+ {
+ "id": 37508,
+ "start": 16972.02,
+ "end": 16972.8,
+ "text": "Corker."
+ },
+ {
+ "id": 37509,
+ "start": 16972.8,
+ "end": 16973.4,
+ "text": "To"
+ },
+ {
+ "id": 37510,
+ "start": 16973.4,
+ "end": 16974.06,
+ "text": "thank"
+ },
+ {
+ "id": 37511,
+ "start": 16974.06,
+ "end": 16974.22,
+ "text": "you,"
+ },
+ {
+ "id": 37512,
+ "start": 16974.22,
+ "end": 16975.04,
+ "text": "Mr"
+ },
+ {
+ "id": 37513,
+ "start": 16975.04,
+ "end": 16975.46,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 37514,
+ "start": 16975.46,
+ "end": 16975.72,
+ "text": "Thank"
+ },
+ {
+ "id": 37515,
+ "start": 16975.72,
+ "end": 16975.92,
+ "text": "you"
+ },
+ {
+ "id": 37516,
+ "start": 16975.92,
+ "end": 16976.34,
+ "text": "been"
+ },
+ {
+ "id": 37517,
+ "start": 16976.34,
+ "end": 16976.4,
+ "text": "a"
+ },
+ {
+ "id": 37518,
+ "start": 16976.4,
+ "end": 16976.56,
+ "text": "long"
+ },
+ {
+ "id": 37519,
+ "start": 16976.56,
+ "end": 16977.12,
+ "text": "afternoon"
+ },
+ {
+ "id": 37520,
+ "start": 16977.12,
+ "end": 16977.26,
+ "text": "and"
+ },
+ {
+ "id": 37521,
+ "start": 16977.26,
+ "end": 16977.6,
+ "text": "I"
+ },
+ {
+ "id": 37522,
+ "start": 16977.6,
+ "end": 16978.3,
+ "text": "appreciate"
+ },
+ {
+ "id": 37523,
+ "start": 16978.3,
+ "end": 16978.48,
+ "text": "you"
+ },
+ {
+ "id": 37524,
+ "start": 16978.48,
+ "end": 16978.7,
+ "text": "being"
+ },
+ {
+ "id": 37525,
+ "start": 16978.7,
+ "end": 16978.9,
+ "text": "here."
+ },
+ {
+ "id": 37526,
+ "start": 16978.9,
+ "end": 16979.38,
+ "text": "And"
+ },
+ {
+ "id": 37527,
+ "start": 16979.38,
+ "end": 16979.62,
+ "text": "taking"
+ },
+ {
+ "id": 37528,
+ "start": 16979.62,
+ "end": 16979.74,
+ "text": "the"
+ },
+ {
+ "id": 37529,
+ "start": 16979.74,
+ "end": 16979.92,
+ "text": "time"
+ },
+ {
+ "id": 37530,
+ "start": 16979.92,
+ "end": 16980.14,
+ "text": "with"
+ },
+ {
+ "id": 37531,
+ "start": 16980.14,
+ "end": 16980.36,
+ "text": "every"
+ },
+ {
+ "id": 37532,
+ "start": 16980.36,
+ "end": 16980.6,
+ "text": "single"
+ },
+ {
+ "id": 37533,
+ "start": 16980.6,
+ "end": 16980.78,
+ "text": "one"
+ },
+ {
+ "id": 37534,
+ "start": 16980.78,
+ "end": 16980.86,
+ "text": "of"
+ },
+ {
+ "id": 37535,
+ "start": 16980.86,
+ "end": 16981.84,
+ "text": "us"
+ },
+ {
+ "id": 37536,
+ "start": 16981.84,
+ "end": 16982.74,
+ "text": "I'm"
+ },
+ {
+ "id": 37537,
+ "start": 16982.74,
+ "end": 16982.92,
+ "text": "going"
+ },
+ {
+ "id": 37538,
+ "start": 16982.92,
+ "end": 16982.98,
+ "text": "to"
+ },
+ {
+ "id": 37539,
+ "start": 16982.98,
+ "end": 16983.46,
+ "text": "echo"
+ },
+ {
+ "id": 37540,
+ "start": 16983.46,
+ "end": 16983.66,
+ "text": "a"
+ },
+ {
+ "id": 37541,
+ "start": 16983.66,
+ "end": 16983.86,
+ "text": "lot"
+ },
+ {
+ "id": 37542,
+ "start": 16983.86,
+ "end": 16983.96,
+ "text": "of"
+ },
+ {
+ "id": 37543,
+ "start": 16983.96,
+ "end": 16984.1,
+ "text": "what"
+ },
+ {
+ "id": 37544,
+ "start": 16984.1,
+ "end": 16984.22,
+ "text": "I've"
+ },
+ {
+ "id": 37545,
+ "start": 16984.22,
+ "end": 16984.38,
+ "text": "heard"
+ },
+ {
+ "id": 37546,
+ "start": 16984.38,
+ "end": 16984.52,
+ "text": "my"
+ },
+ {
+ "id": 37547,
+ "start": 16984.52,
+ "end": 16984.9,
+ "text": "colleagues"
+ },
+ {
+ "id": 37548,
+ "start": 16984.9,
+ "end": 16985.08,
+ "text": "say"
+ },
+ {
+ "id": 37549,
+ "start": 16985.08,
+ "end": 16985.34,
+ "text": "today"
+ },
+ {
+ "id": 37550,
+ "start": 16985.34,
+ "end": 16985.52,
+ "text": "as"
+ },
+ {
+ "id": 37551,
+ "start": 16985.52,
+ "end": 16986.28,
+ "text": "well."
+ },
+ {
+ "id": 37552,
+ "start": 16986.28,
+ "end": 16987.26,
+ "text": "Appreciate"
+ },
+ {
+ "id": 37553,
+ "start": 16987.26,
+ "end": 16987.4,
+ "text": "you"
+ },
+ {
+ "id": 37554,
+ "start": 16987.4,
+ "end": 16987.62,
+ "text": "being"
+ },
+ {
+ "id": 37555,
+ "start": 16987.62,
+ "end": 16987.9,
+ "text": "here"
+ },
+ {
+ "id": 37556,
+ "start": 16987.9,
+ "end": 16988.74,
+ "text": "appreciate"
+ },
+ {
+ "id": 37557,
+ "start": 16988.74,
+ "end": 16988.86,
+ "text": "the"
+ },
+ {
+ "id": 37558,
+ "start": 16988.86,
+ "end": 16989.64,
+ "text": "apology,"
+ },
+ {
+ "id": 37559,
+ "start": 16989.64,
+ "end": 16990.22,
+ "text": "but"
+ },
+ {
+ "id": 37560,
+ "start": 16990.22,
+ "end": 16990.7,
+ "text": "stop"
+ },
+ {
+ "id": 37561,
+ "start": 16990.7,
+ "end": 16991.4,
+ "text": "apologizing"
+ },
+ {
+ "id": 37562,
+ "start": 16991.4,
+ "end": 16991.54,
+ "text": "and"
+ },
+ {
+ "id": 37563,
+ "start": 16991.54,
+ "end": 16991.72,
+ "text": "let's"
+ },
+ {
+ "id": 37564,
+ "start": 16991.72,
+ "end": 16991.86,
+ "text": "make"
+ },
+ {
+ "id": 37565,
+ "start": 16991.86,
+ "end": 16991.96,
+ "text": "the"
+ },
+ {
+ "id": 37566,
+ "start": 16991.96,
+ "end": 16992.28,
+ "text": "change."
+ },
+ {
+ "id": 37567,
+ "start": 16992.28,
+ "end": 16993.4,
+ "text": "I"
+ },
+ {
+ "id": 37568,
+ "start": 16993.4,
+ "end": 16993.56,
+ "text": "think"
+ },
+ {
+ "id": 37569,
+ "start": 16993.56,
+ "end": 16993.72,
+ "text": "it's"
+ },
+ {
+ "id": 37570,
+ "start": 16993.72,
+ "end": 16994,
+ "text": "time"
+ },
+ {
+ "id": 37571,
+ "start": 16994,
+ "end": 16994.08,
+ "text": "to"
+ },
+ {
+ "id": 37572,
+ "start": 16994.08,
+ "end": 16994.4,
+ "text": "really"
+ },
+ {
+ "id": 37573,
+ "start": 16994.4,
+ "end": 16994.7,
+ "text": "change"
+ },
+ {
+ "id": 37574,
+ "start": 16994.7,
+ "end": 16994.9,
+ "text": "the"
+ },
+ {
+ "id": 37575,
+ "start": 16994.9,
+ "end": 16995.34,
+ "text": "conduct."
+ },
+ {
+ "id": 37576,
+ "start": 16995.34,
+ "end": 16995.5,
+ "text": "I"
+ },
+ {
+ "id": 37577,
+ "start": 16995.5,
+ "end": 16996.12,
+ "text": "appreciate"
+ },
+ {
+ "id": 37578,
+ "start": 16996.12,
+ "end": 16996.52,
+ "text": "the"
+ },
+ {
+ "id": 37579,
+ "start": 16996.52,
+ "end": 16996.7,
+ "text": "fact"
+ },
+ {
+ "id": 37580,
+ "start": 16996.7,
+ "end": 16996.84,
+ "text": "that"
+ },
+ {
+ "id": 37581,
+ "start": 16996.84,
+ "end": 16996.94,
+ "text": "we"
+ },
+ {
+ "id": 37582,
+ "start": 16996.94,
+ "end": 16997.24,
+ "text": "talked"
+ },
+ {
+ "id": 37583,
+ "start": 16997.24,
+ "end": 16997.4,
+ "text": "about"
+ },
+ {
+ "id": 37584,
+ "start": 16997.4,
+ "end": 16997.66,
+ "text": "their"
+ },
+ {
+ "id": 37585,
+ "start": 16997.66,
+ "end": 16998.07,
+ "text": "principle"
+ },
+ {
+ "id": 37586,
+ "start": 16998.07,
+ "end": 16998.87,
+ "text": "for"
+ },
+ {
+ "id": 37587,
+ "start": 16998.87,
+ "end": 16999.37,
+ "text": "Facebook"
+ },
+ {
+ "id": 37588,
+ "start": 16999.37,
+ "end": 16999.73,
+ "text": "notice"
+ },
+ {
+ "id": 37589,
+ "start": 16999.73,
+ "end": 17000.23,
+ "text": "users"
+ },
+ {
+ "id": 37590,
+ "start": 17000.23,
+ "end": 17000.47,
+ "text": "on"
+ },
+ {
+ "id": 37591,
+ "start": 17000.47,
+ "end": 17000.75,
+ "text": "the"
+ },
+ {
+ "id": 37592,
+ "start": 17000.75,
+ "end": 17000.91,
+ "text": "use"
+ },
+ {
+ "id": 37593,
+ "start": 17000.91,
+ "end": 17001.03,
+ "text": "of"
+ },
+ {
+ "id": 37594,
+ "start": 17001.03,
+ "end": 17001.15,
+ "text": "the"
+ },
+ {
+ "id": 37595,
+ "start": 17001.15,
+ "end": 17001.55,
+ "text": "data"
+ },
+ {
+ "id": 37596,
+ "start": 17001.55,
+ "end": 17001.93,
+ "text": "and"
+ },
+ {
+ "id": 37597,
+ "start": 17001.93,
+ "end": 17002.13,
+ "text": "that"
+ },
+ {
+ "id": 37598,
+ "start": 17002.13,
+ "end": 17002.53,
+ "text": "users"
+ },
+ {
+ "id": 37599,
+ "start": 17002.53,
+ "end": 17002.75,
+ "text": "have"
+ },
+ {
+ "id": 37600,
+ "start": 17002.75,
+ "end": 17003.33,
+ "text": "complete"
+ },
+ {
+ "id": 37601,
+ "start": 17003.33,
+ "end": 17003.85,
+ "text": "control"
+ },
+ {
+ "id": 37602,
+ "start": 17003.85,
+ "end": 17004.07,
+ "text": "of"
+ },
+ {
+ "id": 37603,
+ "start": 17004.07,
+ "end": 17004.25,
+ "text": "their"
+ },
+ {
+ "id": 37604,
+ "start": 17004.25,
+ "end": 17004.63,
+ "text": "data."
+ },
+ {
+ "id": 37605,
+ "start": 17004.63,
+ "end": 17005.29,
+ "text": "But"
+ },
+ {
+ "id": 37606,
+ "start": 17005.29,
+ "end": 17005.79,
+ "text": "the"
+ },
+ {
+ "id": 37607,
+ "start": 17005.79,
+ "end": 17006.51,
+ "text": "skepticism"
+ },
+ {
+ "id": 37608,
+ "start": 17006.51,
+ "end": 17006.67,
+ "text": "that"
+ },
+ {
+ "id": 37609,
+ "start": 17006.67,
+ "end": 17006.83,
+ "text": "I"
+ },
+ {
+ "id": 37610,
+ "start": 17006.83,
+ "end": 17007.09,
+ "text": "have"
+ },
+ {
+ "id": 37611,
+ "start": 17007.09,
+ "end": 17007.23,
+ "text": "and"
+ },
+ {
+ "id": 37612,
+ "start": 17007.23,
+ "end": 17007.37,
+ "text": "I'm"
+ },
+ {
+ "id": 37613,
+ "start": 17007.37,
+ "end": 17007.71,
+ "text": "hoping"
+ },
+ {
+ "id": 37614,
+ "start": 17007.71,
+ "end": 17007.95,
+ "text": "you"
+ },
+ {
+ "id": 37615,
+ "start": 17007.95,
+ "end": 17008.13,
+ "text": "can"
+ },
+ {
+ "id": 37616,
+ "start": 17008.13,
+ "end": 17008.35,
+ "text": "help"
+ },
+ {
+ "id": 37617,
+ "start": 17008.35,
+ "end": 17008.45,
+ "text": "me"
+ },
+ {
+ "id": 37618,
+ "start": 17008.45,
+ "end": 17008.61,
+ "text": "with"
+ },
+ {
+ "id": 37619,
+ "start": 17008.61,
+ "end": 17008.85,
+ "text": "this"
+ },
+ {
+ "id": 37620,
+ "start": 17008.85,
+ "end": 17009.57,
+ "text": "is"
+ },
+ {
+ "id": 37621,
+ "start": 17009.57,
+ "end": 17009.87,
+ "text": "over"
+ },
+ {
+ "id": 37622,
+ "start": 17009.87,
+ "end": 17009.99,
+ "text": "the"
+ },
+ {
+ "id": 37623,
+ "start": 17009.99,
+ "end": 17010.35,
+ "text": "last."
+ },
+ {
+ "id": 37624,
+ "start": 17010.35,
+ "end": 17010.69,
+ "text": "What"
+ },
+ {
+ "id": 37625,
+ "start": 17010.69,
+ "end": 17011.41,
+ "text": "seven"
+ },
+ {
+ "id": 37626,
+ "start": 17011.41,
+ "end": 17011.91,
+ "text": "years"
+ },
+ {
+ "id": 37627,
+ "start": 17011.91,
+ "end": 17012.67,
+ "text": "7"
+ },
+ {
+ "id": 37628,
+ "start": 17012.67,
+ "end": 17013.07,
+ "text": "14"
+ },
+ {
+ "id": 37629,
+ "start": 17013.07,
+ "end": 17013.25,
+ "text": "years,"
+ },
+ {
+ "id": 37630,
+ "start": 17013.25,
+ "end": 17013.57,
+ "text": "seven"
+ },
+ {
+ "id": 37631,
+ "start": 17013.57,
+ "end": 17014.3,
+ "text": "years."
+ },
+ {
+ "id": 37632,
+ "start": 17014.3,
+ "end": 17014.34,
+ "text": "I"
+ },
+ {
+ "id": 37633,
+ "start": 17014.34,
+ "end": 17015.02,
+ "text": "haven't"
+ },
+ {
+ "id": 37634,
+ "start": 17015.02,
+ "end": 17015.4,
+ "text": "seen"
+ },
+ {
+ "id": 37635,
+ "start": 17015.4,
+ "end": 17015.96,
+ "text": "really"
+ },
+ {
+ "id": 37636,
+ "start": 17015.96,
+ "end": 17016.3,
+ "text": "much"
+ },
+ {
+ "id": 37637,
+ "start": 17016.3,
+ "end": 17016.94,
+ "text": "change"
+ },
+ {
+ "id": 37638,
+ "start": 17016.94,
+ "end": 17017.24,
+ "text": "in"
+ },
+ {
+ "id": 37639,
+ "start": 17017.24,
+ "end": 17017.88,
+ "text": "ensuring"
+ },
+ {
+ "id": 37640,
+ "start": 17017.88,
+ "end": 17018.14,
+ "text": "that"
+ },
+ {
+ "id": 37641,
+ "start": 17018.14,
+ "end": 17018.4,
+ "text": "the"
+ },
+ {
+ "id": 37642,
+ "start": 17018.4,
+ "end": 17018.92,
+ "text": "privacy"
+ },
+ {
+ "id": 37643,
+ "start": 17018.92,
+ "end": 17019.06,
+ "text": "is"
+ },
+ {
+ "id": 37644,
+ "start": 17019.06,
+ "end": 17019.38,
+ "text": "there"
+ },
+ {
+ "id": 37645,
+ "start": 17019.38,
+ "end": 17019.54,
+ "text": "and"
+ },
+ {
+ "id": 37646,
+ "start": 17019.54,
+ "end": 17019.74,
+ "text": "that"
+ },
+ {
+ "id": 37647,
+ "start": 17019.74,
+ "end": 17020.32,
+ "text": "individual"
+ },
+ {
+ "id": 37648,
+ "start": 17020.32,
+ "end": 17020.74,
+ "text": "users"
+ },
+ {
+ "id": 37649,
+ "start": 17020.74,
+ "end": 17020.96,
+ "text": "have"
+ },
+ {
+ "id": 37650,
+ "start": 17020.96,
+ "end": 17021.28,
+ "text": "control"
+ },
+ {
+ "id": 37651,
+ "start": 17021.28,
+ "end": 17021.46,
+ "text": "of"
+ },
+ {
+ "id": 37652,
+ "start": 17021.46,
+ "end": 17021.72,
+ "text": "their"
+ },
+ {
+ "id": 37653,
+ "start": 17021.72,
+ "end": 17021.98,
+ "text": "data."
+ },
+ {
+ "id": 37654,
+ "start": 17021.98,
+ "end": 17022.66,
+ "text": "So"
+ },
+ {
+ "id": 37655,
+ "start": 17022.66,
+ "end": 17023.82,
+ "text": "let"
+ },
+ {
+ "id": 37656,
+ "start": 17023.82,
+ "end": 17023.98,
+ "text": "me"
+ },
+ {
+ "id": 37657,
+ "start": 17023.98,
+ "end": 17024.22,
+ "text": "ask"
+ },
+ {
+ "id": 37658,
+ "start": 17024.22,
+ "end": 17024.38,
+ "text": "you"
+ },
+ {
+ "id": 37659,
+ "start": 17024.38,
+ "end": 17025.3,
+ "text": "this"
+ },
+ {
+ "id": 37660,
+ "start": 17025.3,
+ "end": 17026.16,
+ "text": "back"
+ },
+ {
+ "id": 37661,
+ "start": 17026.16,
+ "end": 17026.26,
+ "text": "in"
+ },
+ {
+ "id": 37662,
+ "start": 17026.26,
+ "end": 17027.14,
+ "text": "2,009"
+ },
+ {
+ "id": 37663,
+ "start": 17027.14,
+ "end": 17027.58,
+ "text": "you"
+ },
+ {
+ "id": 37664,
+ "start": 17027.58,
+ "end": 17027.76,
+ "text": "made"
+ },
+ {
+ "id": 37665,
+ "start": 17027.76,
+ "end": 17027.92,
+ "text": "two"
+ },
+ {
+ "id": 37666,
+ "start": 17027.92,
+ "end": 17028.3,
+ "text": "changes"
+ },
+ {
+ "id": 37667,
+ "start": 17028.3,
+ "end": 17028.86,
+ "text": "to"
+ },
+ {
+ "id": 37668,
+ "start": 17028.86,
+ "end": 17029.04,
+ "text": "your"
+ },
+ {
+ "id": 37669,
+ "start": 17029.04,
+ "end": 17029.62,
+ "text": "privacy"
+ },
+ {
+ "id": 37670,
+ "start": 17029.62,
+ "end": 17030.14,
+ "text": "policy"
+ },
+ {
+ "id": 37671,
+ "start": 17030.14,
+ "end": 17031.22,
+ "text": "and"
+ },
+ {
+ "id": 37672,
+ "start": 17031.22,
+ "end": 17031.38,
+ "text": "in"
+ },
+ {
+ "id": 37673,
+ "start": 17031.38,
+ "end": 17031.72,
+ "text": "fact,"
+ },
+ {
+ "id": 37674,
+ "start": 17031.72,
+ "end": 17032.1,
+ "text": "prior"
+ },
+ {
+ "id": 37675,
+ "start": 17032.1,
+ "end": 17032.22,
+ "text": "to"
+ },
+ {
+ "id": 37676,
+ "start": 17032.22,
+ "end": 17033.16,
+ "text": "that,"
+ },
+ {
+ "id": 37677,
+ "start": 17033.16,
+ "end": 17034.08,
+ "text": "most"
+ },
+ {
+ "id": 37678,
+ "start": 17034.08,
+ "end": 17034.68,
+ "text": "users"
+ },
+ {
+ "id": 37679,
+ "start": 17034.68,
+ "end": 17034.94,
+ "text": "could"
+ },
+ {
+ "id": 37680,
+ "start": 17034.94,
+ "end": 17035.38,
+ "text": "either"
+ },
+ {
+ "id": 37681,
+ "start": 17035.38,
+ "end": 17035.98,
+ "text": "identify"
+ },
+ {
+ "id": 37682,
+ "start": 17035.98,
+ "end": 17036.4,
+ "text": "only"
+ },
+ {
+ "id": 37683,
+ "start": 17036.4,
+ "end": 17036.78,
+ "text": "friends"
+ },
+ {
+ "id": 37684,
+ "start": 17036.78,
+ "end": 17036.98,
+ "text": "or"
+ },
+ {
+ "id": 37685,
+ "start": 17036.98,
+ "end": 17037.24,
+ "text": "friends"
+ },
+ {
+ "id": 37686,
+ "start": 17037.24,
+ "end": 17037.36,
+ "text": "of"
+ },
+ {
+ "id": 37687,
+ "start": 17037.36,
+ "end": 17037.66,
+ "text": "friends"
+ },
+ {
+ "id": 37688,
+ "start": 17037.66,
+ "end": 17037.96,
+ "text": "as"
+ },
+ {
+ "id": 37689,
+ "start": 17037.96,
+ "end": 17038.64,
+ "text": "part"
+ },
+ {
+ "id": 37690,
+ "start": 17038.64,
+ "end": 17038.72,
+ "text": "of"
+ },
+ {
+ "id": 37691,
+ "start": 17038.72,
+ "end": 17039.34,
+ "text": "their"
+ },
+ {
+ "id": 37692,
+ "start": 17039.34,
+ "end": 17039.88,
+ "text": "privacy."
+ },
+ {
+ "id": 37693,
+ "start": 17039.88,
+ "end": 17041.02,
+ "text": "Correct,"
+ },
+ {
+ "id": 37694,
+ "start": 17041.02,
+ "end": 17041.86,
+ "text": "if"
+ },
+ {
+ "id": 37695,
+ "start": 17041.86,
+ "end": 17042,
+ "text": "they"
+ },
+ {
+ "id": 37696,
+ "start": 17042,
+ "end": 17042.24,
+ "text": "wanted"
+ },
+ {
+ "id": 37697,
+ "start": 17042.24,
+ "end": 17042.34,
+ "text": "to"
+ },
+ {
+ "id": 37698,
+ "start": 17042.34,
+ "end": 17042.62,
+ "text": "protect"
+ },
+ {
+ "id": 37699,
+ "start": 17042.62,
+ "end": 17042.8,
+ "text": "their"
+ },
+ {
+ "id": 37700,
+ "start": 17042.8,
+ "end": 17043.02,
+ "text": "data"
+ },
+ {
+ "id": 37701,
+ "start": 17043.02,
+ "end": 17043.2,
+ "text": "they"
+ },
+ {
+ "id": 37702,
+ "start": 17043.2,
+ "end": 17043.42,
+ "text": "could"
+ },
+ {
+ "id": 37703,
+ "start": 17043.42,
+ "end": 17044.26,
+ "text": "identify"
+ },
+ {
+ "id": 37704,
+ "start": 17044.26,
+ "end": 17045.06,
+ "text": "only"
+ },
+ {
+ "id": 37705,
+ "start": 17045.06,
+ "end": 17045.4,
+ "text": "friends"
+ },
+ {
+ "id": 37706,
+ "start": 17045.4,
+ "end": 17045.56,
+ "text": "or"
+ },
+ {
+ "id": 37707,
+ "start": 17045.56,
+ "end": 17045.8,
+ "text": "friends"
+ },
+ {
+ "id": 37708,
+ "start": 17045.8,
+ "end": 17045.9,
+ "text": "of"
+ },
+ {
+ "id": 37709,
+ "start": 17045.9,
+ "end": 17046.14,
+ "text": "friends"
+ },
+ {
+ "id": 37710,
+ "start": 17046.14,
+ "end": 17046.28,
+ "text": "who"
+ },
+ {
+ "id": 37711,
+ "start": 17046.28,
+ "end": 17046.5,
+ "text": "could"
+ },
+ {
+ "id": 37712,
+ "start": 17046.5,
+ "end": 17046.66,
+ "text": "see"
+ },
+ {
+ "id": 37713,
+ "start": 17046.66,
+ "end": 17046.86,
+ "text": "their"
+ },
+ {
+ "id": 37714,
+ "start": 17046.86,
+ "end": 17047.08,
+ "text": "data."
+ },
+ {
+ "id": 37715,
+ "start": 17047.08,
+ "end": 17047.3,
+ "text": "Isn't"
+ },
+ {
+ "id": 37716,
+ "start": 17047.3,
+ "end": 17047.42,
+ "text": "that"
+ },
+ {
+ "id": 37717,
+ "start": 17047.42,
+ "end": 17047.68,
+ "text": "correct,"
+ },
+ {
+ "id": 37718,
+ "start": 17047.68,
+ "end": 17048.8,
+ "text": "Senator."
+ },
+ {
+ "id": 37719,
+ "start": 17048.8,
+ "end": 17048.98,
+ "text": "I"
+ },
+ {
+ "id": 37720,
+ "start": 17048.98,
+ "end": 17049.36,
+ "text": "believe"
+ },
+ {
+ "id": 37721,
+ "start": 17049.36,
+ "end": 17049.72,
+ "text": "that"
+ },
+ {
+ "id": 37722,
+ "start": 17049.72,
+ "end": 17050.06,
+ "text": "we've"
+ },
+ {
+ "id": 37723,
+ "start": 17050.06,
+ "end": 17050.24,
+ "text": "had"
+ },
+ {
+ "id": 37724,
+ "start": 17050.24,
+ "end": 17050.38,
+ "text": "the"
+ },
+ {
+ "id": 37725,
+ "start": 17050.38,
+ "end": 17050.78,
+ "text": "option"
+ },
+ {
+ "id": 37726,
+ "start": 17050.78,
+ "end": 17050.96,
+ "text": "for"
+ },
+ {
+ "id": 37727,
+ "start": 17050.96,
+ "end": 17051.2,
+ "text": "people"
+ },
+ {
+ "id": 37728,
+ "start": 17051.2,
+ "end": 17051.32,
+ "text": "to"
+ },
+ {
+ "id": 37729,
+ "start": 17051.32,
+ "end": 17051.64,
+ "text": "share"
+ },
+ {
+ "id": 37730,
+ "start": 17051.64,
+ "end": 17052.44,
+ "text": "with"
+ },
+ {
+ "id": 37731,
+ "start": 17052.44,
+ "end": 17052.86,
+ "text": "friends,"
+ },
+ {
+ "id": 37732,
+ "start": 17052.86,
+ "end": 17053.44,
+ "text": "friends"
+ },
+ {
+ "id": 37733,
+ "start": 17053.44,
+ "end": 17053.56,
+ "text": "of"
+ },
+ {
+ "id": 37734,
+ "start": 17053.56,
+ "end": 17053.96,
+ "text": "friends,"
+ },
+ {
+ "id": 37735,
+ "start": 17053.96,
+ "end": 17054.42,
+ "text": "a"
+ },
+ {
+ "id": 37736,
+ "start": 17054.42,
+ "end": 17054.92,
+ "text": "custom"
+ },
+ {
+ "id": 37737,
+ "start": 17054.92,
+ "end": 17055.4,
+ "text": "audience"
+ },
+ {
+ "id": 37738,
+ "start": 17055.4,
+ "end": 17056.14,
+ "text": "or"
+ },
+ {
+ "id": 37739,
+ "start": 17056.14,
+ "end": 17056.74,
+ "text": "publicly"
+ },
+ {
+ "id": 37740,
+ "start": 17056.74,
+ "end": 17057.32,
+ "text": "for"
+ },
+ {
+ "id": 37741,
+ "start": 17057.32,
+ "end": 17057.4,
+ "text": "a"
+ },
+ {
+ "id": 37742,
+ "start": 17057.4,
+ "end": 17057.64,
+ "text": "long"
+ },
+ {
+ "id": 37743,
+ "start": 17057.64,
+ "end": 17057.96,
+ "text": "time."
+ },
+ {
+ "id": 37744,
+ "start": 17057.96,
+ "end": 17058.42,
+ "text": "I"
+ },
+ {
+ "id": 37745,
+ "start": 17058.42,
+ "end": 17058.56,
+ "text": "don't"
+ },
+ {
+ "id": 37746,
+ "start": 17058.56,
+ "end": 17058.8,
+ "text": "remember"
+ },
+ {
+ "id": 37747,
+ "start": 17058.8,
+ "end": 17059.1,
+ "text": "exactly"
+ },
+ {
+ "id": 37748,
+ "start": 17059.1,
+ "end": 17059.3,
+ "text": "we"
+ },
+ {
+ "id": 37749,
+ "start": 17059.3,
+ "end": 17059.71,
+ "text": "put,"
+ },
+ {
+ "id": 37750,
+ "start": 17059.71,
+ "end": 17060.03,
+ "text": "but"
+ },
+ {
+ "id": 37751,
+ "start": 17060.03,
+ "end": 17060.07,
+ "text": "I"
+ },
+ {
+ "id": 37752,
+ "start": 17060.07,
+ "end": 17060.37,
+ "text": "believe"
+ },
+ {
+ "id": 37753,
+ "start": 17060.37,
+ "end": 17060.49,
+ "text": "it"
+ },
+ {
+ "id": 37754,
+ "start": 17060.49,
+ "end": 17060.67,
+ "text": "was"
+ },
+ {
+ "id": 37755,
+ "start": 17060.67,
+ "end": 17060.99,
+ "text": "before"
+ },
+ {
+ "id": 37756,
+ "start": 17060.99,
+ "end": 17061.43,
+ "text": "2,000"
+ },
+ {
+ "id": 37757,
+ "start": 17061.43,
+ "end": 17061.81,
+ "text": "so"
+ },
+ {
+ "id": 37758,
+ "start": 17061.81,
+ "end": 17062.21,
+ "text": "either"
+ },
+ {
+ "id": 37759,
+ "start": 17062.21,
+ "end": 17062.33,
+ "text": "you"
+ },
+ {
+ "id": 37760,
+ "start": 17062.33,
+ "end": 17062.47,
+ "text": "can"
+ },
+ {
+ "id": 37761,
+ "start": 17062.47,
+ "end": 17062.71,
+ "text": "choose"
+ },
+ {
+ "id": 37762,
+ "start": 17062.71,
+ "end": 17062.99,
+ "text": "only"
+ },
+ {
+ "id": 37763,
+ "start": 17062.99,
+ "end": 17063.27,
+ "text": "friends"
+ },
+ {
+ "id": 37764,
+ "start": 17063.27,
+ "end": 17063.41,
+ "text": "or"
+ },
+ {
+ "id": 37765,
+ "start": 17063.41,
+ "end": 17063.63,
+ "text": "friends"
+ },
+ {
+ "id": 37766,
+ "start": 17063.63,
+ "end": 17063.75,
+ "text": "of"
+ },
+ {
+ "id": 37767,
+ "start": 17063.75,
+ "end": 17064.05,
+ "text": "friends"
+ },
+ {
+ "id": 37768,
+ "start": 17064.05,
+ "end": 17064.33,
+ "text": "to"
+ },
+ {
+ "id": 37769,
+ "start": 17064.33,
+ "end": 17064.73,
+ "text": "decide"
+ },
+ {
+ "id": 37770,
+ "start": 17064.73,
+ "end": 17064.93,
+ "text": "how"
+ },
+ {
+ "id": 37771,
+ "start": 17064.93,
+ "end": 17065.17,
+ "text": "you're"
+ },
+ {
+ "id": 37772,
+ "start": 17065.17,
+ "end": 17065.33,
+ "text": "going"
+ },
+ {
+ "id": 37773,
+ "start": 17065.33,
+ "end": 17065.39,
+ "text": "to"
+ },
+ {
+ "id": 37774,
+ "start": 17065.39,
+ "end": 17065.59,
+ "text": "share"
+ },
+ {
+ "id": 37775,
+ "start": 17065.59,
+ "end": 17065.81,
+ "text": "that."
+ },
+ {
+ "id": 37776,
+ "start": 17065.81,
+ "end": 17066.35,
+ "text": "Protect"
+ },
+ {
+ "id": 37777,
+ "start": 17066.35,
+ "end": 17066.51,
+ "text": "that"
+ },
+ {
+ "id": 37778,
+ "start": 17066.51,
+ "end": 17066.79,
+ "text": "data"
+ },
+ {
+ "id": 37779,
+ "start": 17066.79,
+ "end": 17067.13,
+ "text": "correct."
+ },
+ {
+ "id": 37780,
+ "start": 17067.13,
+ "end": 17068.01,
+ "text": "Those"
+ },
+ {
+ "id": 37781,
+ "start": 17068.01,
+ "end": 17068.19,
+ "text": "are"
+ },
+ {
+ "id": 37782,
+ "start": 17068.19,
+ "end": 17068.41,
+ "text": "two"
+ },
+ {
+ "id": 37783,
+ "start": 17068.41,
+ "end": 17068.57,
+ "text": "the"
+ },
+ {
+ "id": 37784,
+ "start": 17068.57,
+ "end": 17068.93,
+ "text": "options"
+ },
+ {
+ "id": 37785,
+ "start": 17068.93,
+ "end": 17069.95,
+ "text": "and"
+ },
+ {
+ "id": 37786,
+ "start": 17069.95,
+ "end": 17070.23,
+ "text": "in"
+ },
+ {
+ "id": 37787,
+ "start": 17070.23,
+ "end": 17070.49,
+ "text": "20"
+ },
+ {
+ "id": 37788,
+ "start": 17070.49,
+ "end": 17070.91,
+ "text": "11"
+ },
+ {
+ "id": 37789,
+ "start": 17070.91,
+ "end": 17071.25,
+ "text": "when"
+ },
+ {
+ "id": 37790,
+ "start": 17071.25,
+ "end": 17071.47,
+ "text": "the"
+ },
+ {
+ "id": 37791,
+ "start": 17071.47,
+ "end": 17072.03,
+ "text": "FTC"
+ },
+ {
+ "id": 37792,
+ "start": 17072.03,
+ "end": 17072.37,
+ "text": "started"
+ },
+ {
+ "id": 37793,
+ "start": 17072.37,
+ "end": 17072.63,
+ "text": "taking"
+ },
+ {
+ "id": 37794,
+ "start": 17072.63,
+ "end": 17072.73,
+ "text": "a"
+ },
+ {
+ "id": 37795,
+ "start": 17072.73,
+ "end": 17072.91,
+ "text": "look"
+ },
+ {
+ "id": 37796,
+ "start": 17072.91,
+ "end": 17073.01,
+ "text": "at"
+ },
+ {
+ "id": 37797,
+ "start": 17073.01,
+ "end": 17073.25,
+ "text": "this."
+ },
+ {
+ "id": 37798,
+ "start": 17073.25,
+ "end": 17073.67,
+ "text": "They"
+ },
+ {
+ "id": 37799,
+ "start": 17073.67,
+ "end": 17074.47,
+ "text": "were"
+ },
+ {
+ "id": 37800,
+ "start": 17074.47,
+ "end": 17075.05,
+ "text": "concerned"
+ },
+ {
+ "id": 37801,
+ "start": 17075.05,
+ "end": 17075.29,
+ "text": "that"
+ },
+ {
+ "id": 37802,
+ "start": 17075.29,
+ "end": 17075.61,
+ "text": "if"
+ },
+ {
+ "id": 37803,
+ "start": 17075.61,
+ "end": 17076.09,
+ "text": "somebody"
+ },
+ {
+ "id": 37804,
+ "start": 17076.09,
+ "end": 17076.51,
+ "text": "chose"
+ },
+ {
+ "id": 37805,
+ "start": 17076.51,
+ "end": 17077.01,
+ "text": "only"
+ },
+ {
+ "id": 37806,
+ "start": 17077.01,
+ "end": 17078.4,
+ "text": "friends,"
+ },
+ {
+ "id": 37807,
+ "start": 17078.4,
+ "end": 17080.08,
+ "text": "the"
+ },
+ {
+ "id": 37808,
+ "start": 17080.08,
+ "end": 17080.58,
+ "text": "individual"
+ },
+ {
+ "id": 37809,
+ "start": 17080.58,
+ "end": 17080.88,
+ "text": "user"
+ },
+ {
+ "id": 37810,
+ "start": 17080.88,
+ "end": 17081.02,
+ "text": "was"
+ },
+ {
+ "id": 37811,
+ "start": 17081.02,
+ "end": 17081.22,
+ "text": "under"
+ },
+ {
+ "id": 37812,
+ "start": 17081.22,
+ "end": 17081.34,
+ "text": "the"
+ },
+ {
+ "id": 37813,
+ "start": 17081.34,
+ "end": 17081.68,
+ "text": "impression"
+ },
+ {
+ "id": 37814,
+ "start": 17081.68,
+ "end": 17081.84,
+ "text": "they"
+ },
+ {
+ "id": 37815,
+ "start": 17081.84,
+ "end": 17082,
+ "text": "could"
+ },
+ {
+ "id": 37816,
+ "start": 17082,
+ "end": 17082.42,
+ "text": "continue"
+ },
+ {
+ "id": 37817,
+ "start": 17082.42,
+ "end": 17082.54,
+ "text": "to"
+ },
+ {
+ "id": 37818,
+ "start": 17082.54,
+ "end": 17082.9,
+ "text": "restrict"
+ },
+ {
+ "id": 37819,
+ "start": 17082.9,
+ "end": 17083.24,
+ "text": "sharing"
+ },
+ {
+ "id": 37820,
+ "start": 17083.24,
+ "end": 17083.32,
+ "text": "of"
+ },
+ {
+ "id": 37821,
+ "start": 17083.32,
+ "end": 17083.58,
+ "text": "data"
+ },
+ {
+ "id": 37822,
+ "start": 17083.58,
+ "end": 17083.72,
+ "text": "to"
+ },
+ {
+ "id": 37823,
+ "start": 17083.72,
+ "end": 17084.08,
+ "text": "limited"
+ },
+ {
+ "id": 37824,
+ "start": 17084.08,
+ "end": 17084.54,
+ "text": "audience."
+ },
+ {
+ "id": 37825,
+ "start": 17084.54,
+ "end": 17085.12,
+ "text": "But"
+ },
+ {
+ "id": 37826,
+ "start": 17085.12,
+ "end": 17085.34,
+ "text": "that"
+ },
+ {
+ "id": 37827,
+ "start": 17085.34,
+ "end": 17085.68,
+ "text": "wasn't"
+ },
+ {
+ "id": 37828,
+ "start": 17085.68,
+ "end": 17085.84,
+ "text": "the"
+ },
+ {
+ "id": 37829,
+ "start": 17085.84,
+ "end": 17086.16,
+ "text": "case."
+ },
+ {
+ "id": 37830,
+ "start": 17086.16,
+ "end": 17086.78,
+ "text": "And"
+ },
+ {
+ "id": 37831,
+ "start": 17086.78,
+ "end": 17086.96,
+ "text": "in"
+ },
+ {
+ "id": 37832,
+ "start": 17086.96,
+ "end": 17087.34,
+ "text": "fact,"
+ },
+ {
+ "id": 37833,
+ "start": 17087.34,
+ "end": 17088.51,
+ "text": "selecting"
+ },
+ {
+ "id": 37834,
+ "start": 17088.51,
+ "end": 17088.83,
+ "text": "friends"
+ },
+ {
+ "id": 37835,
+ "start": 17088.83,
+ "end": 17089.11,
+ "text": "only"
+ },
+ {
+ "id": 37836,
+ "start": 17089.11,
+ "end": 17089.27,
+ "text": "did"
+ },
+ {
+ "id": 37837,
+ "start": 17089.27,
+ "end": 17089.45,
+ "text": "not"
+ },
+ {
+ "id": 37838,
+ "start": 17089.45,
+ "end": 17089.81,
+ "text": "prevent"
+ },
+ {
+ "id": 37839,
+ "start": 17089.81,
+ "end": 17090.31,
+ "text": "users"
+ },
+ {
+ "id": 37840,
+ "start": 17090.31,
+ "end": 17090.93,
+ "text": "information"
+ },
+ {
+ "id": 37841,
+ "start": 17090.93,
+ "end": 17091.17,
+ "text": "from"
+ },
+ {
+ "id": 37842,
+ "start": 17091.17,
+ "end": 17091.41,
+ "text": "being"
+ },
+ {
+ "id": 37843,
+ "start": 17091.41,
+ "end": 17091.93,
+ "text": "shared"
+ },
+ {
+ "id": 37844,
+ "start": 17091.93,
+ "end": 17092.13,
+ "text": "with"
+ },
+ {
+ "id": 37845,
+ "start": 17092.13,
+ "end": 17092.39,
+ "text": "the"
+ },
+ {
+ "id": 37846,
+ "start": 17092.39,
+ "end": 17092.73,
+ "text": "third"
+ },
+ {
+ "id": 37847,
+ "start": 17092.73,
+ "end": 17093.37,
+ "text": "party"
+ },
+ {
+ "id": 37848,
+ "start": 17093.37,
+ "end": 17093.89,
+ "text": "applications"
+ },
+ {
+ "id": 37849,
+ "start": 17093.89,
+ "end": 17094.15,
+ "text": "their"
+ },
+ {
+ "id": 37850,
+ "start": 17094.15,
+ "end": 17094.43,
+ "text": "friend"
+ },
+ {
+ "id": 37851,
+ "start": 17094.43,
+ "end": 17094.83,
+ "text": "used"
+ },
+ {
+ "id": 37852,
+ "start": 17094.83,
+ "end": 17095.19,
+ "text": "isn't"
+ },
+ {
+ "id": 37853,
+ "start": 17095.19,
+ "end": 17095.35,
+ "text": "that"
+ },
+ {
+ "id": 37854,
+ "start": 17095.35,
+ "end": 17095.45,
+ "text": "the"
+ },
+ {
+ "id": 37855,
+ "start": 17095.45,
+ "end": 17095.69,
+ "text": "case"
+ },
+ {
+ "id": 37856,
+ "start": 17095.69,
+ "end": 17095.87,
+ "text": "and"
+ },
+ {
+ "id": 37857,
+ "start": 17095.87,
+ "end": 17096.07,
+ "text": "that's"
+ },
+ {
+ "id": 37858,
+ "start": 17096.07,
+ "end": 17096.23,
+ "text": "why"
+ },
+ {
+ "id": 37859,
+ "start": 17096.23,
+ "end": 17096.37,
+ "text": "the"
+ },
+ {
+ "id": 37860,
+ "start": 17096.37,
+ "end": 17096.85,
+ "text": "FTC"
+ },
+ {
+ "id": 37861,
+ "start": 17096.85,
+ "end": 17096.99,
+ "text": "was"
+ },
+ {
+ "id": 37862,
+ "start": 17096.99,
+ "end": 17097.23,
+ "text": "looking"
+ },
+ {
+ "id": 37863,
+ "start": 17097.23,
+ "end": 17098.62,
+ "text": "at"
+ },
+ {
+ "id": 37864,
+ "start": 17098.62,
+ "end": 17099.44,
+ "text": "do"
+ },
+ {
+ "id": 37865,
+ "start": 17099.44,
+ "end": 17099.72,
+ "text": "and"
+ },
+ {
+ "id": 37866,
+ "start": 17099.72,
+ "end": 17100.06,
+ "text": "making"
+ },
+ {
+ "id": 37867,
+ "start": 17100.06,
+ "end": 17100.24,
+ "text": "that"
+ },
+ {
+ "id": 37868,
+ "start": 17100.24,
+ "end": 17100.56,
+ "text": "change."
+ },
+ {
+ "id": 37869,
+ "start": 17100.56,
+ "end": 17100.92,
+ "text": "Because"
+ },
+ {
+ "id": 37870,
+ "start": 17100.92,
+ "end": 17101.42,
+ "text": "there"
+ },
+ {
+ "id": 37871,
+ "start": 17101.42,
+ "end": 17101.54,
+ "text": "was"
+ },
+ {
+ "id": 37872,
+ "start": 17101.54,
+ "end": 17102.22,
+ "text": "concerned"
+ },
+ {
+ "id": 37873,
+ "start": 17102.22,
+ "end": 17102.56,
+ "text": "that"
+ },
+ {
+ "id": 37874,
+ "start": 17102.56,
+ "end": 17103.36,
+ "text": "if"
+ },
+ {
+ "id": 37875,
+ "start": 17103.36,
+ "end": 17103.54,
+ "text": "you"
+ },
+ {
+ "id": 37876,
+ "start": 17103.54,
+ "end": 17103.7,
+ "text": "had"
+ },
+ {
+ "id": 37877,
+ "start": 17103.7,
+ "end": 17104.08,
+ "text": "friends"
+ },
+ {
+ "id": 37878,
+ "start": 17104.08,
+ "end": 17104.34,
+ "text": "on"
+ },
+ {
+ "id": 37879,
+ "start": 17104.34,
+ "end": 17104.56,
+ "text": "your"
+ },
+ {
+ "id": 37880,
+ "start": 17104.56,
+ "end": 17104.94,
+ "text": "page,"
+ },
+ {
+ "id": 37881,
+ "start": 17104.94,
+ "end": 17105.06,
+ "text": "a"
+ },
+ {
+ "id": 37882,
+ "start": 17105.06,
+ "end": 17105.36,
+ "text": "third"
+ },
+ {
+ "id": 37883,
+ "start": 17105.36,
+ "end": 17105.64,
+ "text": "party"
+ },
+ {
+ "id": 37884,
+ "start": 17105.64,
+ "end": 17105.86,
+ "text": "could"
+ },
+ {
+ "id": 37885,
+ "start": 17105.86,
+ "end": 17106.26,
+ "text": "access"
+ },
+ {
+ "id": 37886,
+ "start": 17106.26,
+ "end": 17106.42,
+ "text": "that"
+ },
+ {
+ "id": 37887,
+ "start": 17106.42,
+ "end": 17107.72,
+ "text": "information"
+ },
+ {
+ "id": 37888,
+ "start": 17107.72,
+ "end": 17108.62,
+ "text": "isn't"
+ },
+ {
+ "id": 37889,
+ "start": 17108.62,
+ "end": 17108.72,
+ "text": "that"
+ },
+ {
+ "id": 37890,
+ "start": 17108.72,
+ "end": 17108.94,
+ "text": "correct,"
+ },
+ {
+ "id": 37891,
+ "start": 17108.94,
+ "end": 17110.06,
+ "text": "Senator."
+ },
+ {
+ "id": 37892,
+ "start": 17110.06,
+ "end": 17110.48,
+ "text": "I"
+ },
+ {
+ "id": 37893,
+ "start": 17110.48,
+ "end": 17110.7,
+ "text": "don't"
+ },
+ {
+ "id": 37894,
+ "start": 17110.7,
+ "end": 17111.24,
+ "text": "remember"
+ },
+ {
+ "id": 37895,
+ "start": 17111.24,
+ "end": 17111.46,
+ "text": "the"
+ },
+ {
+ "id": 37896,
+ "start": 17111.46,
+ "end": 17111.88,
+ "text": "exact"
+ },
+ {
+ "id": 37897,
+ "start": 17111.88,
+ "end": 17112.34,
+ "text": "context."
+ },
+ {
+ "id": 37898,
+ "start": 17112.34,
+ "end": 17113.46,
+ "text": "So"
+ },
+ {
+ "id": 37899,
+ "start": 17113.46,
+ "end": 17113.74,
+ "text": "let"
+ },
+ {
+ "id": 37900,
+ "start": 17113.74,
+ "end": 17113.92,
+ "text": "me"
+ },
+ {
+ "id": 37901,
+ "start": 17113.92,
+ "end": 17114.02,
+ "text": "let"
+ },
+ {
+ "id": 37902,
+ "start": 17114.02,
+ "end": 17114.12,
+ "text": "me"
+ },
+ {
+ "id": 37903,
+ "start": 17114.12,
+ "end": 17114.28,
+ "text": "help"
+ },
+ {
+ "id": 37904,
+ "start": 17114.28,
+ "end": 17114.4,
+ "text": "you"
+ },
+ {
+ "id": 37905,
+ "start": 17114.4,
+ "end": 17114.56,
+ "text": "here"
+ },
+ {
+ "id": 37906,
+ "start": 17114.56,
+ "end": 17114.78,
+ "text": "because"
+ },
+ {
+ "id": 37907,
+ "start": 17114.78,
+ "end": 17115.2,
+ "text": "David"
+ },
+ {
+ "id": 37908,
+ "start": 17115.2,
+ "end": 17115.78,
+ "text": "Vladi,"
+ },
+ {
+ "id": 37909,
+ "start": 17115.78,
+ "end": 17116.06,
+ "text": "who"
+ },
+ {
+ "id": 37910,
+ "start": 17116.06,
+ "end": 17116.38,
+ "text": "was"
+ },
+ {
+ "id": 37911,
+ "start": 17116.38,
+ "end": 17116.9,
+ "text": "spent"
+ },
+ {
+ "id": 37912,
+ "start": 17116.9,
+ "end": 17117.3,
+ "text": "Nailer"
+ },
+ {
+ "id": 37913,
+ "start": 17117.3,
+ "end": 17117.48,
+ "text": "four"
+ },
+ {
+ "id": 37914,
+ "start": 17117.48,
+ "end": 17117.74,
+ "text": "years"
+ },
+ {
+ "id": 37915,
+ "start": 17117.74,
+ "end": 17117.88,
+ "text": "is"
+ },
+ {
+ "id": 37916,
+ "start": 17117.88,
+ "end": 17118.22,
+ "text": "director"
+ },
+ {
+ "id": 37917,
+ "start": 17118.22,
+ "end": 17118.3,
+ "text": "of"
+ },
+ {
+ "id": 37918,
+ "start": 17118.3,
+ "end": 17118.42,
+ "text": "the"
+ },
+ {
+ "id": 37919,
+ "start": 17118.42,
+ "end": 17118.88,
+ "text": "Federal"
+ },
+ {
+ "id": 37920,
+ "start": 17118.88,
+ "end": 17119.14,
+ "text": "Trade"
+ },
+ {
+ "id": 37921,
+ "start": 17119.14,
+ "end": 17119.56,
+ "text": "Commission's"
+ },
+ {
+ "id": 37922,
+ "start": 17119.56,
+ "end": 17120.08,
+ "text": "Bureau"
+ },
+ {
+ "id": 37923,
+ "start": 17120.08,
+ "end": 17120.24,
+ "text": "of"
+ },
+ {
+ "id": 37924,
+ "start": 17120.24,
+ "end": 17120.84,
+ "text": "consumer"
+ },
+ {
+ "id": 37925,
+ "start": 17120.84,
+ "end": 17121.88,
+ "text": "protection"
+ },
+ {
+ "id": 37926,
+ "start": 17121.88,
+ "end": 17122.44,
+ "text": "where"
+ },
+ {
+ "id": 37927,
+ "start": 17122.44,
+ "end": 17122.58,
+ "text": "he"
+ },
+ {
+ "id": 37928,
+ "start": 17122.58,
+ "end": 17122.96,
+ "text": "worked,"
+ },
+ {
+ "id": 37929,
+ "start": 17122.96,
+ "end": 17123.72,
+ "text": "including"
+ },
+ {
+ "id": 37930,
+ "start": 17123.72,
+ "end": 17123.94,
+ "text": "on"
+ },
+ {
+ "id": 37931,
+ "start": 17123.94,
+ "end": 17124.44,
+ "text": "the"
+ },
+ {
+ "id": 37932,
+ "start": 17124.44,
+ "end": 17124.98,
+ "text": "FTC's"
+ },
+ {
+ "id": 37933,
+ "start": 17124.98,
+ "end": 17125.54,
+ "text": "enforcement"
+ },
+ {
+ "id": 37934,
+ "start": 17125.54,
+ "end": 17125.76,
+ "text": "case"
+ },
+ {
+ "id": 37935,
+ "start": 17125.76,
+ "end": 17126.12,
+ "text": "against"
+ },
+ {
+ "id": 37936,
+ "start": 17126.12,
+ "end": 17126.68,
+ "text": "Facebook"
+ },
+ {
+ "id": 37937,
+ "start": 17126.68,
+ "end": 17128.04,
+ "text": "basically"
+ },
+ {
+ "id": 37938,
+ "start": 17128.04,
+ "end": 17129.06,
+ "text": "identifies"
+ },
+ {
+ "id": 37939,
+ "start": 17129.06,
+ "end": 17129.56,
+ "text": "in"
+ },
+ {
+ "id": 37940,
+ "start": 17129.56,
+ "end": 17129.76,
+ "text": "this"
+ },
+ {
+ "id": 37941,
+ "start": 17129.76,
+ "end": 17130.22,
+ "text": "article"
+ },
+ {
+ "id": 37942,
+ "start": 17130.22,
+ "end": 17130.8,
+ "text": "that"
+ },
+ {
+ "id": 37943,
+ "start": 17130.8,
+ "end": 17131.02,
+ "text": "that"
+ },
+ {
+ "id": 37944,
+ "start": 17131.02,
+ "end": 17131.2,
+ "text": "was"
+ },
+ {
+ "id": 37945,
+ "start": 17131.2,
+ "end": 17131.34,
+ "text": "the"
+ },
+ {
+ "id": 37946,
+ "start": 17131.34,
+ "end": 17131.58,
+ "text": "case"
+ },
+ {
+ "id": 37947,
+ "start": 17131.58,
+ "end": 17131.9,
+ "text": "that"
+ },
+ {
+ "id": 37948,
+ "start": 17131.9,
+ "end": 17132.26,
+ "text": "not"
+ },
+ {
+ "id": 37949,
+ "start": 17132.26,
+ "end": 17132.6,
+ "text": "only"
+ },
+ {
+ "id": 37950,
+ "start": 17132.6,
+ "end": 17133.2,
+ "text": "did"
+ },
+ {
+ "id": 37951,
+ "start": 17133.2,
+ "end": 17134.04,
+ "text": "Facebook"
+ },
+ {
+ "id": 37952,
+ "start": 17134.04,
+ "end": 17134.98,
+ "text": "misrepresent"
+ },
+ {
+ "id": 37953,
+ "start": 17134.98,
+ "end": 17135.08,
+ "text": "and"
+ },
+ {
+ "id": 37954,
+ "start": 17135.08,
+ "end": 17135.3,
+ "text": "that's"
+ },
+ {
+ "id": 37955,
+ "start": 17135.3,
+ "end": 17135.48,
+ "text": "why"
+ },
+ {
+ "id": 37956,
+ "start": 17135.48,
+ "end": 17135.66,
+ "text": "there"
+ },
+ {
+ "id": 37957,
+ "start": 17135.66,
+ "end": 17135.78,
+ "text": "were"
+ },
+ {
+ "id": 37958,
+ "start": 17135.78,
+ "end": 17135.98,
+ "text": "eight"
+ },
+ {
+ "id": 37959,
+ "start": 17135.98,
+ "end": 17136.26,
+ "text": "counts"
+ },
+ {
+ "id": 37960,
+ "start": 17136.26,
+ "end": 17136.36,
+ "text": "of"
+ },
+ {
+ "id": 37961,
+ "start": 17136.36,
+ "end": 17136.9,
+ "text": "deceptive"
+ },
+ {
+ "id": 37962,
+ "start": 17136.9,
+ "end": 17137.16,
+ "text": "acts"
+ },
+ {
+ "id": 37963,
+ "start": 17137.16,
+ "end": 17137.28,
+ "text": "and"
+ },
+ {
+ "id": 37964,
+ "start": 17137.28,
+ "end": 17137.52,
+ "text": "practice"
+ },
+ {
+ "id": 37965,
+ "start": 17137.52,
+ "end": 17138.48,
+ "text": "the"
+ },
+ {
+ "id": 37966,
+ "start": 17138.48,
+ "end": 17138.96,
+ "text": "actual"
+ },
+ {
+ "id": 37967,
+ "start": 17138.96,
+ "end": 17139.96,
+ "text": "FTC"
+ },
+ {
+ "id": 37968,
+ "start": 17139.96,
+ "end": 17140.14,
+ "text": "in"
+ },
+ {
+ "id": 37969,
+ "start": 17140.14,
+ "end": 17140.74,
+ "text": "November"
+ },
+ {
+ "id": 37970,
+ "start": 17140.74,
+ "end": 17141.18,
+ "text": "20"
+ },
+ {
+ "id": 37971,
+ "start": 17141.18,
+ "end": 17141.9,
+ "text": "11"
+ },
+ {
+ "id": 37972,
+ "start": 17141.9,
+ "end": 17143.04,
+ "text": "decree"
+ },
+ {
+ "id": 37973,
+ "start": 17143.04,
+ "end": 17144.08,
+ "text": "basically"
+ },
+ {
+ "id": 37974,
+ "start": 17144.08,
+ "end": 17144.6,
+ "text": "stated"
+ },
+ {
+ "id": 37975,
+ "start": 17144.6,
+ "end": 17145.42,
+ "text": "required"
+ },
+ {
+ "id": 37976,
+ "start": 17145.42,
+ "end": 17145.92,
+ "text": "Facebook"
+ },
+ {
+ "id": 37977,
+ "start": 17145.92,
+ "end": 17146.06,
+ "text": "to"
+ },
+ {
+ "id": 37978,
+ "start": 17146.06,
+ "end": 17146.34,
+ "text": "give"
+ },
+ {
+ "id": 37979,
+ "start": 17146.34,
+ "end": 17146.74,
+ "text": "users"
+ },
+ {
+ "id": 37980,
+ "start": 17146.74,
+ "end": 17147.08,
+ "text": "clear"
+ },
+ {
+ "id": 37981,
+ "start": 17147.08,
+ "end": 17147.18,
+ "text": "and"
+ },
+ {
+ "id": 37982,
+ "start": 17147.18,
+ "end": 17147.8,
+ "text": "conspicuous"
+ },
+ {
+ "id": 37983,
+ "start": 17147.8,
+ "end": 17148.26,
+ "text": "notice"
+ },
+ {
+ "id": 37984,
+ "start": 17148.26,
+ "end": 17148.78,
+ "text": "and"
+ },
+ {
+ "id": 37985,
+ "start": 17148.78,
+ "end": 17148.94,
+ "text": "to"
+ },
+ {
+ "id": 37986,
+ "start": 17148.94,
+ "end": 17149.3,
+ "text": "obtain"
+ },
+ {
+ "id": 37987,
+ "start": 17149.3,
+ "end": 17150.06,
+ "text": "affirmative"
+ },
+ {
+ "id": 37988,
+ "start": 17150.06,
+ "end": 17151.02,
+ "text": "jump"
+ },
+ {
+ "id": 37989,
+ "start": 17151.02,
+ "end": 17151.18,
+ "text": "back"
+ },
+ {
+ "id": 37990,
+ "start": 17151.18,
+ "end": 17151.4,
+ "text": "here"
+ },
+ {
+ "id": 37991,
+ "start": 17151.4,
+ "end": 17152.12,
+ "text": "to"
+ },
+ {
+ "id": 37992,
+ "start": 17152.12,
+ "end": 17152.26,
+ "text": "do"
+ },
+ {
+ "id": 37993,
+ "start": 17152.26,
+ "end": 17152.5,
+ "text": "three"
+ },
+ {
+ "id": 37994,
+ "start": 17152.5,
+ "end": 17153.16,
+ "text": "things."
+ },
+ {
+ "id": 37995,
+ "start": 17153.16,
+ "end": 17153.72,
+ "text": "The"
+ },
+ {
+ "id": 37996,
+ "start": 17153.72,
+ "end": 17154.08,
+ "text": "decree"
+ },
+ {
+ "id": 37997,
+ "start": 17154.08,
+ "end": 17154.46,
+ "text": "barred"
+ },
+ {
+ "id": 37998,
+ "start": 17154.46,
+ "end": 17155,
+ "text": "Facebook"
+ },
+ {
+ "id": 37999,
+ "start": 17155,
+ "end": 17155.2,
+ "text": "from"
+ },
+ {
+ "id": 38000,
+ "start": 17155.2,
+ "end": 17155.48,
+ "text": "making"
+ },
+ {
+ "id": 38001,
+ "start": 17155.48,
+ "end": 17155.72,
+ "text": "any"
+ },
+ {
+ "id": 38002,
+ "start": 17155.72,
+ "end": 17156.06,
+ "text": "further"
+ },
+ {
+ "id": 38003,
+ "start": 17156.06,
+ "end": 17156.52,
+ "text": "deceptive"
+ },
+ {
+ "id": 38004,
+ "start": 17156.52,
+ "end": 17157.08,
+ "text": "privacy"
+ },
+ {
+ "id": 38005,
+ "start": 17157.08,
+ "end": 17157.54,
+ "text": "claims"
+ },
+ {
+ "id": 38006,
+ "start": 17157.54,
+ "end": 17158.54,
+ "text": "and"
+ },
+ {
+ "id": 38007,
+ "start": 17158.54,
+ "end": 17158.64,
+ "text": "it"
+ },
+ {
+ "id": 38008,
+ "start": 17158.64,
+ "end": 17159.22,
+ "text": "required"
+ },
+ {
+ "id": 38009,
+ "start": 17159.22,
+ "end": 17160.02,
+ "text": "Facebook"
+ },
+ {
+ "id": 38010,
+ "start": 17160.02,
+ "end": 17160.22,
+ "text": "get"
+ },
+ {
+ "id": 38011,
+ "start": 17160.22,
+ "end": 17160.78,
+ "text": "consumers"
+ },
+ {
+ "id": 38012,
+ "start": 17160.78,
+ "end": 17161.42,
+ "text": "approval"
+ },
+ {
+ "id": 38013,
+ "start": 17161.42,
+ "end": 17162.1,
+ "text": "before"
+ },
+ {
+ "id": 38014,
+ "start": 17162.1,
+ "end": 17162.56,
+ "text": "changing"
+ },
+ {
+ "id": 38015,
+ "start": 17162.56,
+ "end": 17162.66,
+ "text": "the"
+ },
+ {
+ "id": 38016,
+ "start": 17162.66,
+ "end": 17162.8,
+ "text": "way"
+ },
+ {
+ "id": 38017,
+ "start": 17162.8,
+ "end": 17162.94,
+ "text": "it"
+ },
+ {
+ "id": 38018,
+ "start": 17162.94,
+ "end": 17163.24,
+ "text": "shares"
+ },
+ {
+ "id": 38019,
+ "start": 17163.24,
+ "end": 17163.46,
+ "text": "their"
+ },
+ {
+ "id": 38020,
+ "start": 17163.46,
+ "end": 17163.82,
+ "text": "data"
+ },
+ {
+ "id": 38021,
+ "start": 17163.82,
+ "end": 17164,
+ "text": "and"
+ },
+ {
+ "id": 38022,
+ "start": 17164,
+ "end": 17164.28,
+ "text": "most"
+ },
+ {
+ "id": 38023,
+ "start": 17164.28,
+ "end": 17164.74,
+ "text": "importantly,"
+ },
+ {
+ "id": 38024,
+ "start": 17164.74,
+ "end": 17164.88,
+ "text": "the"
+ },
+ {
+ "id": 38025,
+ "start": 17164.88,
+ "end": 17165.1,
+ "text": "third"
+ },
+ {
+ "id": 38026,
+ "start": 17165.1,
+ "end": 17165.28,
+ "text": "thing"
+ },
+ {
+ "id": 38027,
+ "start": 17165.28,
+ "end": 17165.44,
+ "text": "it"
+ },
+ {
+ "id": 38028,
+ "start": 17165.44,
+ "end": 17165.92,
+ "text": "required"
+ },
+ {
+ "id": 38029,
+ "start": 17165.92,
+ "end": 17166.48,
+ "text": "Facebook"
+ },
+ {
+ "id": 38030,
+ "start": 17166.48,
+ "end": 17166.94,
+ "text": "to"
+ },
+ {
+ "id": 38031,
+ "start": 17166.94,
+ "end": 17167.16,
+ "text": "give"
+ },
+ {
+ "id": 38032,
+ "start": 17167.16,
+ "end": 17167.58,
+ "text": "users"
+ },
+ {
+ "id": 38033,
+ "start": 17167.58,
+ "end": 17168.04,
+ "text": "clear"
+ },
+ {
+ "id": 38034,
+ "start": 17168.04,
+ "end": 17168.16,
+ "text": "and"
+ },
+ {
+ "id": 38035,
+ "start": 17168.16,
+ "end": 17168.86,
+ "text": "conspicuous"
+ },
+ {
+ "id": 38036,
+ "start": 17168.86,
+ "end": 17169.48,
+ "text": "notice"
+ },
+ {
+ "id": 38037,
+ "start": 17169.48,
+ "end": 17169.82,
+ "text": "and"
+ },
+ {
+ "id": 38038,
+ "start": 17169.82,
+ "end": 17169.92,
+ "text": "to"
+ },
+ {
+ "id": 38039,
+ "start": 17169.92,
+ "end": 17170.4,
+ "text": "obtain"
+ },
+ {
+ "id": 38040,
+ "start": 17170.4,
+ "end": 17171.2,
+ "text": "affirmative"
+ },
+ {
+ "id": 38041,
+ "start": 17171.2,
+ "end": 17171.74,
+ "text": "express"
+ },
+ {
+ "id": 38042,
+ "start": 17171.74,
+ "end": 17172.22,
+ "text": "consent"
+ },
+ {
+ "id": 38043,
+ "start": 17172.22,
+ "end": 17172.78,
+ "text": "before"
+ },
+ {
+ "id": 38044,
+ "start": 17172.78,
+ "end": 17173.22,
+ "text": "sharing"
+ },
+ {
+ "id": 38045,
+ "start": 17173.22,
+ "end": 17173.48,
+ "text": "their"
+ },
+ {
+ "id": 38046,
+ "start": 17173.48,
+ "end": 17173.88,
+ "text": "data"
+ },
+ {
+ "id": 38047,
+ "start": 17173.88,
+ "end": 17174.24,
+ "text": "with"
+ },
+ {
+ "id": 38048,
+ "start": 17174.24,
+ "end": 17174.56,
+ "text": "third"
+ },
+ {
+ "id": 38049,
+ "start": 17174.56,
+ "end": 17175,
+ "text": "parties,"
+ },
+ {
+ "id": 38050,
+ "start": 17175,
+ "end": 17175.34,
+ "text": "that"
+ },
+ {
+ "id": 38051,
+ "start": 17175.34,
+ "end": 17175.5,
+ "text": "was"
+ },
+ {
+ "id": 38052,
+ "start": 17175.5,
+ "end": 17175.76,
+ "text": "part"
+ },
+ {
+ "id": 38053,
+ "start": 17175.76,
+ "end": 17175.84,
+ "text": "of"
+ },
+ {
+ "id": 38054,
+ "start": 17175.84,
+ "end": 17176.04,
+ "text": "the"
+ },
+ {
+ "id": 38055,
+ "start": 17176.04,
+ "end": 17176.5,
+ "text": "FTC"
+ },
+ {
+ "id": 38056,
+ "start": 17176.5,
+ "end": 17176.98,
+ "text": "consent"
+ },
+ {
+ "id": 38057,
+ "start": 17176.98,
+ "end": 17177.1,
+ "text": "to"
+ },
+ {
+ "id": 38058,
+ "start": 17177.1,
+ "end": 17177.32,
+ "text": "Cree"
+ },
+ {
+ "id": 38059,
+ "start": 17177.32,
+ "end": 17179.1,
+ "text": "correct."
+ },
+ {
+ "id": 38060,
+ "start": 17179.1,
+ "end": 17180.08,
+ "text": "So"
+ },
+ {
+ "id": 38061,
+ "start": 17180.08,
+ "end": 17180.22,
+ "text": "that"
+ },
+ {
+ "id": 38062,
+ "start": 17180.22,
+ "end": 17180.45,
+ "text": "sounds"
+ },
+ {
+ "id": 38063,
+ "start": 17180.45,
+ "end": 17180.75,
+ "text": "to"
+ },
+ {
+ "id": 38064,
+ "start": 17180.75,
+ "end": 17180.93,
+ "text": "me."
+ },
+ {
+ "id": 38065,
+ "start": 17180.93,
+ "end": 17181.55,
+ "text": "Okay,"
+ },
+ {
+ "id": 38066,
+ "start": 17181.55,
+ "end": 17181.77,
+ "text": "so"
+ },
+ {
+ "id": 38067,
+ "start": 17181.77,
+ "end": 17181.91,
+ "text": "at"
+ },
+ {
+ "id": 38068,
+ "start": 17181.91,
+ "end": 17182.11,
+ "text": "that"
+ },
+ {
+ "id": 38069,
+ "start": 17182.11,
+ "end": 17182.37,
+ "text": "time"
+ },
+ {
+ "id": 38070,
+ "start": 17182.37,
+ "end": 17182.63,
+ "text": "you're"
+ },
+ {
+ "id": 38071,
+ "start": 17182.63,
+ "end": 17182.79,
+ "text": "on"
+ },
+ {
+ "id": 38072,
+ "start": 17182.79,
+ "end": 17183.19,
+ "text": "notice"
+ },
+ {
+ "id": 38073,
+ "start": 17183.19,
+ "end": 17183.33,
+ "text": "that"
+ },
+ {
+ "id": 38074,
+ "start": 17183.33,
+ "end": 17183.49,
+ "text": "they"
+ },
+ {
+ "id": 38075,
+ "start": 17183.49,
+ "end": 17183.65,
+ "text": "were"
+ },
+ {
+ "id": 38076,
+ "start": 17183.65,
+ "end": 17184.17,
+ "text": "concerned"
+ },
+ {
+ "id": 38077,
+ "start": 17184.17,
+ "end": 17184.43,
+ "text": "about"
+ },
+ {
+ "id": 38078,
+ "start": 17184.43,
+ "end": 17184.65,
+ "text": "the"
+ },
+ {
+ "id": 38079,
+ "start": 17184.65,
+ "end": 17185.27,
+ "text": "sharing"
+ },
+ {
+ "id": 38080,
+ "start": 17185.27,
+ "end": 17185.73,
+ "text": "of"
+ },
+ {
+ "id": 38081,
+ "start": 17185.73,
+ "end": 17186.39,
+ "text": "data"
+ },
+ {
+ "id": 38082,
+ "start": 17186.39,
+ "end": 17186.55,
+ "text": "and"
+ },
+ {
+ "id": 38083,
+ "start": 17186.55,
+ "end": 17187.13,
+ "text": "information"
+ },
+ {
+ "id": 38084,
+ "start": 17187.13,
+ "end": 17187.51,
+ "text": "users"
+ },
+ {
+ "id": 38085,
+ "start": 17187.51,
+ "end": 17187.75,
+ "text": "data"
+ },
+ {
+ "id": 38086,
+ "start": 17187.75,
+ "end": 17188.17,
+ "text": "including"
+ },
+ {
+ "id": 38087,
+ "start": 17188.17,
+ "end": 17188.39,
+ "text": "those"
+ },
+ {
+ "id": 38088,
+ "start": 17188.39,
+ "end": 17188.75,
+ "text": "friends"
+ },
+ {
+ "id": 38089,
+ "start": 17188.75,
+ "end": 17188.95,
+ "text": "with"
+ },
+ {
+ "id": 38090,
+ "start": 17188.95,
+ "end": 17189.27,
+ "text": "third"
+ },
+ {
+ "id": 38091,
+ "start": 17189.27,
+ "end": 17189.65,
+ "text": "parties."
+ },
+ {
+ "id": 38092,
+ "start": 17189.65,
+ "end": 17192.2,
+ "text": "Correct,"
+ },
+ {
+ "id": 38093,
+ "start": 17192.2,
+ "end": 17193.16,
+ "text": "Senator,"
+ },
+ {
+ "id": 38094,
+ "start": 17193.16,
+ "end": 17193.48,
+ "text": "my"
+ },
+ {
+ "id": 38095,
+ "start": 17193.48,
+ "end": 17194.72,
+ "text": "understanding."
+ },
+ {
+ "id": 38096,
+ "start": 17194.72,
+ "end": 17195.68,
+ "text": "Well,"
+ },
+ {
+ "id": 38097,
+ "start": 17195.68,
+ "end": 17195.78,
+ "text": "let"
+ },
+ {
+ "id": 38098,
+ "start": 17195.78,
+ "end": 17195.86,
+ "text": "me"
+ },
+ {
+ "id": 38099,
+ "start": 17195.86,
+ "end": 17196,
+ "text": "ask"
+ },
+ {
+ "id": 38100,
+ "start": 17196,
+ "end": 17196.16,
+ "text": "you"
+ },
+ {
+ "id": 38101,
+ "start": 17196.16,
+ "end": 17196.28,
+ "text": "this."
+ },
+ {
+ "id": 38102,
+ "start": 17196.28,
+ "end": 17196.46,
+ "text": "Let"
+ },
+ {
+ "id": 38103,
+ "start": 17196.46,
+ "end": 17196.54,
+ "text": "me"
+ },
+ {
+ "id": 38104,
+ "start": 17196.54,
+ "end": 17196.62,
+ "text": "do"
+ },
+ {
+ "id": 38105,
+ "start": 17196.62,
+ "end": 17196.68,
+ "text": "it."
+ },
+ {
+ "id": 38106,
+ "start": 17196.68,
+ "end": 17196.86,
+ "text": "This"
+ },
+ {
+ "id": 38107,
+ "start": 17196.86,
+ "end": 17197.02,
+ "text": "way"
+ },
+ {
+ "id": 38108,
+ "start": 17197.02,
+ "end": 17197.64,
+ "text": "in"
+ },
+ {
+ "id": 38109,
+ "start": 17197.64,
+ "end": 17198.14,
+ "text": "response"
+ },
+ {
+ "id": 38110,
+ "start": 17198.14,
+ "end": 17198.28,
+ "text": "to"
+ },
+ {
+ "id": 38111,
+ "start": 17198.28,
+ "end": 17198.42,
+ "text": "the"
+ },
+ {
+ "id": 38112,
+ "start": 17198.42,
+ "end": 17199.06,
+ "text": "FTC"
+ },
+ {
+ "id": 38113,
+ "start": 17199.06,
+ "end": 17199.6,
+ "text": "consent"
+ },
+ {
+ "id": 38114,
+ "start": 17199.6,
+ "end": 17200.34,
+ "text": "to"
+ },
+ {
+ "id": 38115,
+ "start": 17200.34,
+ "end": 17200.56,
+ "text": "make"
+ },
+ {
+ "id": 38116,
+ "start": 17200.56,
+ "end": 17200.8,
+ "text": "those"
+ },
+ {
+ "id": 38117,
+ "start": 17200.8,
+ "end": 17201.28,
+ "text": "changes."
+ },
+ {
+ "id": 38118,
+ "start": 17201.28,
+ "end": 17201.6,
+ "text": "Did"
+ },
+ {
+ "id": 38119,
+ "start": 17201.6,
+ "end": 17201.78,
+ "text": "you"
+ },
+ {
+ "id": 38120,
+ "start": 17201.78,
+ "end": 17201.94,
+ "text": "make"
+ },
+ {
+ "id": 38121,
+ "start": 17201.94,
+ "end": 17202.14,
+ "text": "those"
+ },
+ {
+ "id": 38122,
+ "start": 17202.14,
+ "end": 17202.46,
+ "text": "changes"
+ },
+ {
+ "id": 38123,
+ "start": 17202.46,
+ "end": 17202.66,
+ "text": "and"
+ },
+ {
+ "id": 38124,
+ "start": 17202.66,
+ "end": 17202.94,
+ "text": "what"
+ },
+ {
+ "id": 38125,
+ "start": 17202.94,
+ "end": 17203.16,
+ "text": "did"
+ },
+ {
+ "id": 38126,
+ "start": 17203.16,
+ "end": 17203.38,
+ "text": "you"
+ },
+ {
+ "id": 38127,
+ "start": 17203.38,
+ "end": 17204.04,
+ "text": "do"
+ },
+ {
+ "id": 38128,
+ "start": 17204.04,
+ "end": 17204.38,
+ "text": "to"
+ },
+ {
+ "id": 38129,
+ "start": 17204.38,
+ "end": 17204.94,
+ "text": "ensure"
+ },
+ {
+ "id": 38130,
+ "start": 17204.94,
+ "end": 17205.56,
+ "text": "individual"
+ },
+ {
+ "id": 38131,
+ "start": 17205.56,
+ "end": 17205.98,
+ "text": "user"
+ },
+ {
+ "id": 38132,
+ "start": 17205.98,
+ "end": 17206.34,
+ "text": "data"
+ },
+ {
+ "id": 38133,
+ "start": 17206.34,
+ "end": 17206.5,
+ "text": "was"
+ },
+ {
+ "id": 38134,
+ "start": 17206.5,
+ "end": 17206.96,
+ "text": "protected"
+ },
+ {
+ "id": 38135,
+ "start": 17206.96,
+ "end": 17207.12,
+ "text": "and"
+ },
+ {
+ "id": 38136,
+ "start": 17207.12,
+ "end": 17207.32,
+ "text": "they"
+ },
+ {
+ "id": 38137,
+ "start": 17207.32,
+ "end": 17207.52,
+ "text": "had"
+ },
+ {
+ "id": 38138,
+ "start": 17207.52,
+ "end": 17208.02,
+ "text": "notice"
+ },
+ {
+ "id": 38139,
+ "start": 17208.02,
+ "end": 17208.1,
+ "text": "of"
+ },
+ {
+ "id": 38140,
+ "start": 17208.1,
+ "end": 17208.28,
+ "text": "that"
+ },
+ {
+ "id": 38141,
+ "start": 17208.28,
+ "end": 17208.82,
+ "text": "information."
+ },
+ {
+ "id": 38142,
+ "start": 17208.82,
+ "end": 17209.12,
+ "text": "And"
+ },
+ {
+ "id": 38143,
+ "start": 17209.12,
+ "end": 17209.34,
+ "text": "that"
+ },
+ {
+ "id": 38144,
+ "start": 17209.34,
+ "end": 17210.14,
+ "text": "potentially"
+ },
+ {
+ "id": 38145,
+ "start": 17210.14,
+ "end": 17210.48,
+ "text": "third"
+ },
+ {
+ "id": 38146,
+ "start": 17210.48,
+ "end": 17211.08,
+ "text": "parties"
+ },
+ {
+ "id": 38147,
+ "start": 17211.08,
+ "end": 17211.28,
+ "text": "would"
+ },
+ {
+ "id": 38148,
+ "start": 17211.28,
+ "end": 17211.4,
+ "text": "be"
+ },
+ {
+ "id": 38149,
+ "start": 17211.4,
+ "end": 17211.94,
+ "text": "accessing"
+ },
+ {
+ "id": 38150,
+ "start": 17211.94,
+ "end": 17212.08,
+ "text": "that."
+ },
+ {
+ "id": 38151,
+ "start": 17212.08,
+ "end": 17212.2,
+ "text": "And"
+ },
+ {
+ "id": 38152,
+ "start": 17212.2,
+ "end": 17212.3,
+ "text": "they"
+ },
+ {
+ "id": 38153,
+ "start": 17212.3,
+ "end": 17212.44,
+ "text": "had"
+ },
+ {
+ "id": 38154,
+ "start": 17212.44,
+ "end": 17212.54,
+ "text": "to"
+ },
+ {
+ "id": 38155,
+ "start": 17212.54,
+ "end": 17212.7,
+ "text": "give"
+ },
+ {
+ "id": 38156,
+ "start": 17212.7,
+ "end": 17213.08,
+ "text": "express"
+ },
+ {
+ "id": 38157,
+ "start": 17213.08,
+ "end": 17213.48,
+ "text": "consent"
+ },
+ {
+ "id": 38158,
+ "start": 17213.48,
+ "end": 17213.84,
+ "text": "what"
+ },
+ {
+ "id": 38159,
+ "start": 17213.84,
+ "end": 17214.36,
+ "text": "you"
+ },
+ {
+ "id": 38160,
+ "start": 17214.36,
+ "end": 17214.86,
+ "text": "specifically"
+ },
+ {
+ "id": 38161,
+ "start": 17214.86,
+ "end": 17215.08,
+ "text": "doing"
+ },
+ {
+ "id": 38162,
+ "start": 17215.08,
+ "end": 17215.42,
+ "text": "response"
+ },
+ {
+ "id": 38163,
+ "start": 17215.42,
+ "end": 17215.52,
+ "text": "to"
+ },
+ {
+ "id": 38164,
+ "start": 17215.52,
+ "end": 17215.7,
+ "text": "that"
+ },
+ {
+ "id": 38165,
+ "start": 17215.7,
+ "end": 17216.42,
+ "text": "Senator"
+ },
+ {
+ "id": 38166,
+ "start": 17216.42,
+ "end": 17216.48,
+ "text": "a"
+ },
+ {
+ "id": 38167,
+ "start": 17216.48,
+ "end": 17216.76,
+ "text": "number"
+ },
+ {
+ "id": 38168,
+ "start": 17216.76,
+ "end": 17216.88,
+ "text": "of"
+ },
+ {
+ "id": 38169,
+ "start": 17216.88,
+ "end": 17217.12,
+ "text": "things."
+ },
+ {
+ "id": 38170,
+ "start": 17217.12,
+ "end": 17217.74,
+ "text": "One"
+ },
+ {
+ "id": 38171,
+ "start": 17217.74,
+ "end": 17217.82,
+ "text": "of"
+ },
+ {
+ "id": 38172,
+ "start": 17217.82,
+ "end": 17217.92,
+ "text": "the"
+ },
+ {
+ "id": 38173,
+ "start": 17217.92,
+ "end": 17218.08,
+ "text": "most"
+ },
+ {
+ "id": 38174,
+ "start": 17218.08,
+ "end": 17218.54,
+ "text": "important"
+ },
+ {
+ "id": 38175,
+ "start": 17218.54,
+ "end": 17218.82,
+ "text": "parts"
+ },
+ {
+ "id": 38176,
+ "start": 17218.82,
+ "end": 17219,
+ "text": "of"
+ },
+ {
+ "id": 38177,
+ "start": 17219,
+ "end": 17219.14,
+ "text": "the"
+ },
+ {
+ "id": 38178,
+ "start": 17219.14,
+ "end": 17219.46,
+ "text": "FTC"
+ },
+ {
+ "id": 38179,
+ "start": 17219.46,
+ "end": 17219.98,
+ "text": "consent"
+ },
+ {
+ "id": 38180,
+ "start": 17219.98,
+ "end": 17220.32,
+ "text": "decree"
+ },
+ {
+ "id": 38181,
+ "start": 17220.32,
+ "end": 17220.56,
+ "text": "that"
+ },
+ {
+ "id": 38182,
+ "start": 17220.56,
+ "end": 17220.66,
+ "text": "we"
+ },
+ {
+ "id": 38183,
+ "start": 17220.66,
+ "end": 17221.14,
+ "text": "signed"
+ },
+ {
+ "id": 38184,
+ "start": 17221.14,
+ "end": 17221.82,
+ "text": "was"
+ },
+ {
+ "id": 38185,
+ "start": 17221.82,
+ "end": 17222.66,
+ "text": "establishing"
+ },
+ {
+ "id": 38186,
+ "start": 17222.66,
+ "end": 17223.28,
+ "text": "a"
+ },
+ {
+ "id": 38187,
+ "start": 17223.28,
+ "end": 17223.88,
+ "text": "robust"
+ },
+ {
+ "id": 38188,
+ "start": 17223.88,
+ "end": 17224.48,
+ "text": "privacy"
+ },
+ {
+ "id": 38189,
+ "start": 17224.48,
+ "end": 17224.92,
+ "text": "program"
+ },
+ {
+ "id": 38190,
+ "start": 17224.92,
+ "end": 17225.04,
+ "text": "at"
+ },
+ {
+ "id": 38191,
+ "start": 17225.04,
+ "end": 17225.14,
+ "text": "the"
+ },
+ {
+ "id": 38192,
+ "start": 17225.14,
+ "end": 17225.48,
+ "text": "company"
+ },
+ {
+ "id": 38193,
+ "start": 17225.48,
+ "end": 17225.8,
+ "text": "headed"
+ },
+ {
+ "id": 38194,
+ "start": 17225.8,
+ "end": 17225.96,
+ "text": "by"
+ },
+ {
+ "id": 38195,
+ "start": 17225.96,
+ "end": 17226.16,
+ "text": "our"
+ },
+ {
+ "id": 38196,
+ "start": 17226.16,
+ "end": 17226.42,
+ "text": "chief"
+ },
+ {
+ "id": 38197,
+ "start": 17226.42,
+ "end": 17226.82,
+ "text": "privacy"
+ },
+ {
+ "id": 38198,
+ "start": 17226.82,
+ "end": 17227.2,
+ "text": "officer"
+ },
+ {
+ "id": 38199,
+ "start": 17227.2,
+ "end": 17227.52,
+ "text": "Aaron"
+ },
+ {
+ "id": 38200,
+ "start": 17227.52,
+ "end": 17228.3,
+ "text": "Egan"
+ },
+ {
+ "id": 38201,
+ "start": 17228.3,
+ "end": 17229.32,
+ "text": "specific."
+ },
+ {
+ "id": 38202,
+ "start": 17229.32,
+ "end": 17229.64,
+ "text": "And"
+ },
+ {
+ "id": 38203,
+ "start": 17229.64,
+ "end": 17229.7,
+ "text": "I"
+ },
+ {
+ "id": 38204,
+ "start": 17229.7,
+ "end": 17230.2,
+ "text": "know"
+ },
+ {
+ "id": 38205,
+ "start": 17230.2,
+ "end": 17230.7,
+ "text": "and"
+ },
+ {
+ "id": 38206,
+ "start": 17230.7,
+ "end": 17230.86,
+ "text": "I've"
+ },
+ {
+ "id": 38207,
+ "start": 17230.86,
+ "end": 17231,
+ "text": "heard"
+ },
+ {
+ "id": 38208,
+ "start": 17231,
+ "end": 17231.16,
+ "text": "this"
+ },
+ {
+ "id": 38209,
+ "start": 17231.16,
+ "end": 17231.34,
+ "text": "over"
+ },
+ {
+ "id": 38210,
+ "start": 17231.34,
+ "end": 17231.46,
+ "text": "and"
+ },
+ {
+ "id": 38211,
+ "start": 17231.46,
+ "end": 17231.6,
+ "text": "over"
+ },
+ {
+ "id": 38212,
+ "start": 17231.6,
+ "end": 17231.74,
+ "text": "again."
+ },
+ {
+ "id": 38213,
+ "start": 17231.74,
+ "end": 17231.94,
+ "text": "I'm"
+ },
+ {
+ "id": 38214,
+ "start": 17231.94,
+ "end": 17232.2,
+ "text": "running"
+ },
+ {
+ "id": 38215,
+ "start": 17232.2,
+ "end": 17232.34,
+ "text": "out"
+ },
+ {
+ "id": 38216,
+ "start": 17232.34,
+ "end": 17232.44,
+ "text": "of"
+ },
+ {
+ "id": 38217,
+ "start": 17232.44,
+ "end": 17232.76,
+ "text": "time."
+ },
+ {
+ "id": 38218,
+ "start": 17232.76,
+ "end": 17233.14,
+ "text": "But"
+ },
+ {
+ "id": 38219,
+ "start": 17233.14,
+ "end": 17233.66,
+ "text": "here's"
+ },
+ {
+ "id": 38220,
+ "start": 17233.66,
+ "end": 17233.78,
+ "text": "the"
+ },
+ {
+ "id": 38221,
+ "start": 17233.78,
+ "end": 17234.12,
+ "text": "concern"
+ },
+ {
+ "id": 38222,
+ "start": 17234.12,
+ "end": 17234.3,
+ "text": "that"
+ },
+ {
+ "id": 38223,
+ "start": 17234.3,
+ "end": 17234.42,
+ "text": "I"
+ },
+ {
+ "id": 38224,
+ "start": 17234.42,
+ "end": 17234.72,
+ "text": "have"
+ },
+ {
+ "id": 38225,
+ "start": 17234.72,
+ "end": 17235.42,
+ "text": "it"
+ },
+ {
+ "id": 38226,
+ "start": 17235.42,
+ "end": 17235.62,
+ "text": "can't"
+ },
+ {
+ "id": 38227,
+ "start": 17235.62,
+ "end": 17235.72,
+ "text": "be"
+ },
+ {
+ "id": 38228,
+ "start": 17235.72,
+ "end": 17235.78,
+ "text": "a"
+ },
+ {
+ "id": 38229,
+ "start": 17235.78,
+ "end": 17236.22,
+ "text": "privacy"
+ },
+ {
+ "id": 38230,
+ "start": 17236.22,
+ "end": 17236.66,
+ "text": "policy"
+ },
+ {
+ "id": 38231,
+ "start": 17236.66,
+ "end": 17236.94,
+ "text": "because"
+ },
+ {
+ "id": 38232,
+ "start": 17236.94,
+ "end": 17237.14,
+ "text": "that's"
+ },
+ {
+ "id": 38233,
+ "start": 17237.14,
+ "end": 17237.3,
+ "text": "what"
+ },
+ {
+ "id": 38234,
+ "start": 17237.3,
+ "end": 17237.44,
+ "text": "the"
+ },
+ {
+ "id": 38235,
+ "start": 17237.44,
+ "end": 17237.8,
+ "text": "consent"
+ },
+ {
+ "id": 38236,
+ "start": 17237.8,
+ "end": 17238.04,
+ "text": "said."
+ },
+ {
+ "id": 38237,
+ "start": 17238.04,
+ "end": 17238.14,
+ "text": "It"
+ },
+ {
+ "id": 38238,
+ "start": 17238.14,
+ "end": 17238.42,
+ "text": "couldn't"
+ },
+ {
+ "id": 38239,
+ "start": 17238.42,
+ "end": 17238.62,
+ "text": "be"
+ },
+ {
+ "id": 38240,
+ "start": 17238.62,
+ "end": 17239.06,
+ "text": "it"
+ },
+ {
+ "id": 38241,
+ "start": 17239.06,
+ "end": 17239.3,
+ "text": "had"
+ },
+ {
+ "id": 38242,
+ "start": 17239.3,
+ "end": 17239.4,
+ "text": "to"
+ },
+ {
+ "id": 38243,
+ "start": 17239.4,
+ "end": 17239.54,
+ "text": "be"
+ },
+ {
+ "id": 38244,
+ "start": 17239.54,
+ "end": 17239.9,
+ "text": "something"
+ },
+ {
+ "id": 38245,
+ "start": 17239.9,
+ "end": 17240.14,
+ "text": "very"
+ },
+ {
+ "id": 38246,
+ "start": 17240.14,
+ "end": 17240.74,
+ "text": "specific."
+ },
+ {
+ "id": 38247,
+ "start": 17240.74,
+ "end": 17241.14,
+ "text": "Something"
+ },
+ {
+ "id": 38248,
+ "start": 17241.14,
+ "end": 17241.36,
+ "text": "very"
+ },
+ {
+ "id": 38249,
+ "start": 17241.36,
+ "end": 17241.72,
+ "text": "simple"
+ },
+ {
+ "id": 38250,
+ "start": 17241.72,
+ "end": 17241.94,
+ "text": "like"
+ },
+ {
+ "id": 38251,
+ "start": 17241.94,
+ "end": 17242.18,
+ "text": "you've"
+ },
+ {
+ "id": 38252,
+ "start": 17242.18,
+ "end": 17242.38,
+ "text": "heard"
+ },
+ {
+ "id": 38253,
+ "start": 17242.38,
+ "end": 17242.89,
+ "text": "from"
+ },
+ {
+ "id": 38254,
+ "start": 17242.89,
+ "end": 17243.21,
+ "text": "my"
+ },
+ {
+ "id": 38255,
+ "start": 17243.21,
+ "end": 17243.61,
+ "text": "colleagues"
+ },
+ {
+ "id": 38256,
+ "start": 17243.61,
+ "end": 17244.11,
+ "text": "and"
+ },
+ {
+ "id": 38257,
+ "start": 17244.11,
+ "end": 17244.37,
+ "text": "that"
+ },
+ {
+ "id": 38258,
+ "start": 17244.37,
+ "end": 17244.57,
+ "text": "did"
+ },
+ {
+ "id": 38259,
+ "start": 17244.57,
+ "end": 17244.75,
+ "text": "not"
+ },
+ {
+ "id": 38260,
+ "start": 17244.75,
+ "end": 17245.13,
+ "text": "occur,"
+ },
+ {
+ "id": 38261,
+ "start": 17245.13,
+ "end": 17245.51,
+ "text": "had"
+ },
+ {
+ "id": 38262,
+ "start": 17245.51,
+ "end": 17245.69,
+ "text": "that"
+ },
+ {
+ "id": 38263,
+ "start": 17245.69,
+ "end": 17246.21,
+ "text": "occurred."
+ },
+ {
+ "id": 38264,
+ "start": 17246.21,
+ "end": 17246.55,
+ "text": "We"
+ },
+ {
+ "id": 38265,
+ "start": 17246.55,
+ "end": 17246.85,
+ "text": "wouldn't"
+ },
+ {
+ "id": 38266,
+ "start": 17246.85,
+ "end": 17247.03,
+ "text": "be"
+ },
+ {
+ "id": 38267,
+ "start": 17247.03,
+ "end": 17247.25,
+ "text": "here"
+ },
+ {
+ "id": 38268,
+ "start": 17247.25,
+ "end": 17247.49,
+ "text": "today."
+ },
+ {
+ "id": 38269,
+ "start": 17247.49,
+ "end": 17247.87,
+ "text": "Talking"
+ },
+ {
+ "id": 38270,
+ "start": 17247.87,
+ "end": 17248.09,
+ "text": "about"
+ },
+ {
+ "id": 38271,
+ "start": 17248.09,
+ "end": 17248.51,
+ "text": "Cambridge"
+ },
+ {
+ "id": 38272,
+ "start": 17248.51,
+ "end": 17249.07,
+ "text": "Analytica"
+ },
+ {
+ "id": 38273,
+ "start": 17249.07,
+ "end": 17249.85,
+ "text": "isn't"
+ },
+ {
+ "id": 38274,
+ "start": 17249.85,
+ "end": 17250.01,
+ "text": "that"
+ },
+ {
+ "id": 38275,
+ "start": 17250.01,
+ "end": 17250.23,
+ "text": "really"
+ },
+ {
+ "id": 38276,
+ "start": 17250.23,
+ "end": 17250.49,
+ "text": "true."
+ },
+ {
+ "id": 38277,
+ "start": 17250.49,
+ "end": 17251.05,
+ "text": "I"
+ },
+ {
+ "id": 38278,
+ "start": 17251.05,
+ "end": 17251.31,
+ "text": "had"
+ },
+ {
+ "id": 38279,
+ "start": 17251.31,
+ "end": 17251.49,
+ "text": "you"
+ },
+ {
+ "id": 38280,
+ "start": 17251.49,
+ "end": 17251.91,
+ "text": "address"
+ },
+ {
+ "id": 38281,
+ "start": 17251.91,
+ "end": 17252.15,
+ "text": "those"
+ },
+ {
+ "id": 38282,
+ "start": 17252.15,
+ "end": 17252.59,
+ "text": "issues,"
+ },
+ {
+ "id": 38283,
+ "start": 17252.59,
+ "end": 17252.85,
+ "text": "then"
+ },
+ {
+ "id": 38284,
+ "start": 17252.85,
+ "end": 17253.11,
+ "text": "had"
+ },
+ {
+ "id": 38285,
+ "start": 17253.11,
+ "end": 17253.25,
+ "text": "you"
+ },
+ {
+ "id": 38286,
+ "start": 17253.25,
+ "end": 17253.43,
+ "text": "done"
+ },
+ {
+ "id": 38287,
+ "start": 17253.43,
+ "end": 17253.55,
+ "text": "an"
+ },
+ {
+ "id": 38288,
+ "start": 17253.55,
+ "end": 17253.91,
+ "text": "audit?"
+ },
+ {
+ "id": 38289,
+ "start": 17253.91,
+ "end": 17254.17,
+ "text": "Had"
+ },
+ {
+ "id": 38290,
+ "start": 17254.17,
+ "end": 17254.35,
+ "text": "you"
+ },
+ {
+ "id": 38291,
+ "start": 17254.35,
+ "end": 17254.65,
+ "text": "looked"
+ },
+ {
+ "id": 38292,
+ "start": 17254.65,
+ "end": 17255.58,
+ "text": "at"
+ },
+ {
+ "id": 38293,
+ "start": 17255.58,
+ "end": 17256.36,
+ "text": "not"
+ },
+ {
+ "id": 38294,
+ "start": 17256.36,
+ "end": 17256.62,
+ "text": "only"
+ },
+ {
+ "id": 38295,
+ "start": 17256.62,
+ "end": 17256.9,
+ "text": "the"
+ },
+ {
+ "id": 38296,
+ "start": 17256.9,
+ "end": 17257.6,
+ "text": "third"
+ },
+ {
+ "id": 38297,
+ "start": 17257.6,
+ "end": 17257.88,
+ "text": "party"
+ },
+ {
+ "id": 38298,
+ "start": 17257.88,
+ "end": 17258.62,
+ "text": "applications?"
+ },
+ {
+ "id": 38299,
+ "start": 17258.62,
+ "end": 17258.8,
+ "text": "But"
+ },
+ {
+ "id": 38300,
+ "start": 17258.8,
+ "end": 17258.94,
+ "text": "they"
+ },
+ {
+ "id": 38301,
+ "start": 17258.94,
+ "end": 17259.08,
+ "text": "are"
+ },
+ {
+ "id": 38302,
+ "start": 17259.08,
+ "end": 17259.6,
+ "text": "audited"
+ },
+ {
+ "id": 38303,
+ "start": 17259.6,
+ "end": 17259.8,
+ "text": "their"
+ },
+ {
+ "id": 38304,
+ "start": 17259.8,
+ "end": 17260.46,
+ "text": "associated"
+ },
+ {
+ "id": 38305,
+ "start": 17260.46,
+ "end": 17260.84,
+ "text": "data"
+ },
+ {
+ "id": 38306,
+ "start": 17260.84,
+ "end": 17261.28,
+ "text": "storage"
+ },
+ {
+ "id": 38307,
+ "start": 17261.28,
+ "end": 17261.44,
+ "text": "as"
+ },
+ {
+ "id": 38308,
+ "start": 17261.44,
+ "end": 17261.86,
+ "text": "well."
+ },
+ {
+ "id": 38309,
+ "start": 17261.86,
+ "end": 17262.5,
+ "text": "You"
+ },
+ {
+ "id": 38310,
+ "start": 17262.5,
+ "end": 17262.8,
+ "text": "would"
+ },
+ {
+ "id": 38311,
+ "start": 17262.8,
+ "end": 17263.08,
+ "text": "have"
+ },
+ {
+ "id": 38312,
+ "start": 17263.08,
+ "end": 17263.54,
+ "text": "known"
+ },
+ {
+ "id": 38313,
+ "start": 17263.54,
+ "end": 17264.22,
+ "text": "that"
+ },
+ {
+ "id": 38314,
+ "start": 17264.22,
+ "end": 17264.64,
+ "text": "this"
+ },
+ {
+ "id": 38315,
+ "start": 17264.64,
+ "end": 17264.92,
+ "text": "type"
+ },
+ {
+ "id": 38316,
+ "start": 17264.92,
+ "end": 17265.1,
+ "text": "of"
+ },
+ {
+ "id": 38317,
+ "start": 17265.1,
+ "end": 17265.6,
+ "text": "data"
+ },
+ {
+ "id": 38318,
+ "start": 17265.6,
+ "end": 17266.16,
+ "text": "information"
+ },
+ {
+ "id": 38319,
+ "start": 17266.16,
+ "end": 17266.36,
+ "text": "was"
+ },
+ {
+ "id": 38320,
+ "start": 17266.36,
+ "end": 17266.62,
+ "text": "being"
+ },
+ {
+ "id": 38321,
+ "start": 17266.62,
+ "end": 17267.04,
+ "text": "shared"
+ },
+ {
+ "id": 38322,
+ "start": 17267.04,
+ "end": 17267.68,
+ "text": "and"
+ },
+ {
+ "id": 38323,
+ "start": 17267.68,
+ "end": 17267.9,
+ "text": "that's"
+ },
+ {
+ "id": 38324,
+ "start": 17267.9,
+ "end": 17268.08,
+ "text": "our"
+ },
+ {
+ "id": 38325,
+ "start": 17268.08,
+ "end": 17268.56,
+ "text": "concern"
+ },
+ {
+ "id": 38326,
+ "start": 17268.56,
+ "end": 17268.7,
+ "text": "and"
+ },
+ {
+ "id": 38327,
+ "start": 17268.7,
+ "end": 17268.9,
+ "text": "that's"
+ },
+ {
+ "id": 38328,
+ "start": 17268.9,
+ "end": 17269.02,
+ "text": "what"
+ },
+ {
+ "id": 38329,
+ "start": 17269.02,
+ "end": 17269.18,
+ "text": "I'm"
+ },
+ {
+ "id": 38330,
+ "start": 17269.18,
+ "end": 17269.42,
+ "text": "saying."
+ },
+ {
+ "id": 38331,
+ "start": 17269.42,
+ "end": 17269.94,
+ "text": "Now,"
+ },
+ {
+ "id": 38332,
+ "start": 17269.94,
+ "end": 17270.46,
+ "text": "time"
+ },
+ {
+ "id": 38333,
+ "start": 17270.46,
+ "end": 17270.64,
+ "text": "just"
+ },
+ {
+ "id": 38334,
+ "start": 17270.64,
+ "end": 17270.74,
+ "text": "to"
+ },
+ {
+ "id": 38335,
+ "start": 17270.74,
+ "end": 17270.9,
+ "text": "make"
+ },
+ {
+ "id": 38336,
+ "start": 17270.9,
+ "end": 17271,
+ "text": "the"
+ },
+ {
+ "id": 38337,
+ "start": 17271,
+ "end": 17271.28,
+ "text": "change"
+ },
+ {
+ "id": 38338,
+ "start": 17271.28,
+ "end": 17271.84,
+ "text": "it's"
+ },
+ {
+ "id": 38339,
+ "start": 17271.84,
+ "end": 17272.1,
+ "text": "time"
+ },
+ {
+ "id": 38340,
+ "start": 17272.1,
+ "end": 17272.2,
+ "text": "to"
+ },
+ {
+ "id": 38341,
+ "start": 17272.2,
+ "end": 17272.52,
+ "text": "really"
+ },
+ {
+ "id": 38342,
+ "start": 17272.52,
+ "end": 17272.94,
+ "text": "address"
+ },
+ {
+ "id": 38343,
+ "start": 17272.94,
+ "end": 17273.14,
+ "text": "the"
+ },
+ {
+ "id": 38344,
+ "start": 17273.14,
+ "end": 17273.62,
+ "text": "privacy"
+ },
+ {
+ "id": 38345,
+ "start": 17273.62,
+ "end": 17273.86,
+ "text": "issue."
+ },
+ {
+ "id": 38346,
+ "start": 17273.86,
+ "end": 17274.06,
+ "text": "It's"
+ },
+ {
+ "id": 38347,
+ "start": 17274.06,
+ "end": 17274.36,
+ "text": "time"
+ },
+ {
+ "id": 38348,
+ "start": 17274.36,
+ "end": 17274.48,
+ "text": "to"
+ },
+ {
+ "id": 38349,
+ "start": 17274.48,
+ "end": 17274.72,
+ "text": "really"
+ },
+ {
+ "id": 38350,
+ "start": 17274.72,
+ "end": 17274.98,
+ "text": "come"
+ },
+ {
+ "id": 38351,
+ "start": 17274.98,
+ "end": 17275.16,
+ "text": "and"
+ },
+ {
+ "id": 38352,
+ "start": 17275.16,
+ "end": 17275.54,
+ "text": "lead"
+ },
+ {
+ "id": 38353,
+ "start": 17275.54,
+ "end": 17275.68,
+ "text": "the"
+ },
+ {
+ "id": 38354,
+ "start": 17275.68,
+ "end": 17276.18,
+ "text": "country"
+ },
+ {
+ "id": 38355,
+ "start": 17276.18,
+ "end": 17276.72,
+ "text": "on"
+ },
+ {
+ "id": 38356,
+ "start": 17276.72,
+ "end": 17276.92,
+ "text": "this"
+ },
+ {
+ "id": 38357,
+ "start": 17276.92,
+ "end": 17277.3,
+ "text": "issue"
+ },
+ {
+ "id": 38358,
+ "start": 17277.3,
+ "end": 17277.44,
+ "text": "and"
+ },
+ {
+ "id": 38359,
+ "start": 17277.44,
+ "end": 17277.68,
+ "text": "how"
+ },
+ {
+ "id": 38360,
+ "start": 17277.68,
+ "end": 17277.8,
+ "text": "we"
+ },
+ {
+ "id": 38361,
+ "start": 17277.8,
+ "end": 17277.96,
+ "text": "can"
+ },
+ {
+ "id": 38362,
+ "start": 17277.96,
+ "end": 17278.26,
+ "text": "protect"
+ },
+ {
+ "id": 38363,
+ "start": 17278.26,
+ "end": 17278.9,
+ "text": "individual"
+ },
+ {
+ "id": 38364,
+ "start": 17278.9,
+ "end": 17279.3,
+ "text": "users"
+ },
+ {
+ "id": 38365,
+ "start": 17279.3,
+ "end": 17280.02,
+ "text": "data"
+ },
+ {
+ "id": 38366,
+ "start": 17280.02,
+ "end": 17280.14,
+ "text": "and"
+ },
+ {
+ "id": 38367,
+ "start": 17280.14,
+ "end": 17280.84,
+ "text": "information"
+ },
+ {
+ "id": 38368,
+ "start": 17280.84,
+ "end": 17281.24,
+ "text": "I"
+ },
+ {
+ "id": 38369,
+ "start": 17281.24,
+ "end": 17281.38,
+ "text": "know"
+ },
+ {
+ "id": 38370,
+ "start": 17281.38,
+ "end": 17281.5,
+ "text": "my"
+ },
+ {
+ "id": 38371,
+ "start": 17281.5,
+ "end": 17281.7,
+ "text": "time"
+ },
+ {
+ "id": 38372,
+ "start": 17281.7,
+ "end": 17281.86,
+ "text": "is"
+ },
+ {
+ "id": 38373,
+ "start": 17281.86,
+ "end": 17282.16,
+ "text": "running"
+ },
+ {
+ "id": 38374,
+ "start": 17282.16,
+ "end": 17282.42,
+ "text": "out,"
+ },
+ {
+ "id": 38375,
+ "start": 17282.42,
+ "end": 17282.96,
+ "text": "but"
+ },
+ {
+ "id": 38376,
+ "start": 17282.96,
+ "end": 17283.4,
+ "text": "I"
+ },
+ {
+ "id": 38377,
+ "start": 17283.4,
+ "end": 17283.84,
+ "text": "appreciate"
+ },
+ {
+ "id": 38378,
+ "start": 17283.84,
+ "end": 17284.02,
+ "text": "you"
+ },
+ {
+ "id": 38379,
+ "start": 17284.02,
+ "end": 17284.24,
+ "text": "being"
+ },
+ {
+ "id": 38380,
+ "start": 17284.24,
+ "end": 17284.46,
+ "text": "here"
+ },
+ {
+ "id": 38381,
+ "start": 17284.46,
+ "end": 17284.62,
+ "text": "and"
+ },
+ {
+ "id": 38382,
+ "start": 17284.62,
+ "end": 17284.78,
+ "text": "I'm"
+ },
+ {
+ "id": 38383,
+ "start": 17284.78,
+ "end": 17284.92,
+ "text": "just"
+ },
+ {
+ "id": 38384,
+ "start": 17284.92,
+ "end": 17285.24,
+ "text": "hoping"
+ },
+ {
+ "id": 38385,
+ "start": 17285.24,
+ "end": 17285.42,
+ "text": "that"
+ },
+ {
+ "id": 38386,
+ "start": 17285.42,
+ "end": 17285.62,
+ "text": "you're"
+ },
+ {
+ "id": 38387,
+ "start": 17285.62,
+ "end": 17285.96,
+ "text": "committed"
+ },
+ {
+ "id": 38388,
+ "start": 17285.96,
+ "end": 17286.08,
+ "text": "to"
+ },
+ {
+ "id": 38389,
+ "start": 17286.08,
+ "end": 17286.38,
+ "text": "working"
+ },
+ {
+ "id": 38390,
+ "start": 17286.38,
+ "end": 17286.52,
+ "text": "with"
+ },
+ {
+ "id": 38391,
+ "start": 17286.52,
+ "end": 17286.68,
+ "text": "us"
+ },
+ {
+ "id": 38392,
+ "start": 17286.68,
+ "end": 17286.78,
+ "text": "in"
+ },
+ {
+ "id": 38393,
+ "start": 17286.78,
+ "end": 17286.9,
+ "text": "the"
+ },
+ {
+ "id": 38394,
+ "start": 17286.9,
+ "end": 17287.18,
+ "text": "future"
+ },
+ {
+ "id": 38395,
+ "start": 17287.18,
+ "end": 17287.28,
+ "text": "and"
+ },
+ {
+ "id": 38396,
+ "start": 17287.28,
+ "end": 17287.64,
+ "text": "addressing"
+ },
+ {
+ "id": 38397,
+ "start": 17287.64,
+ "end": 17287.82,
+ "text": "these"
+ },
+ {
+ "id": 38398,
+ "start": 17287.82,
+ "end": 17288.68,
+ "text": "concerns,"
+ },
+ {
+ "id": 38399,
+ "start": 17288.68,
+ "end": 17289.3,
+ "text": "thank"
+ },
+ {
+ "id": 38400,
+ "start": 17289.3,
+ "end": 17289.44,
+ "text": "you,"
+ },
+ {
+ "id": 38401,
+ "start": 17289.44,
+ "end": 17289.66,
+ "text": "Senator"
+ },
+ {
+ "id": 38402,
+ "start": 17289.66,
+ "end": 17290.08,
+ "text": "Cortes"
+ },
+ {
+ "id": 38403,
+ "start": 17290.08,
+ "end": 17290.54,
+ "text": "Maso"
+ },
+ {
+ "id": 38404,
+ "start": 17290.54,
+ "end": 17290.8,
+ "text": "Senator"
+ },
+ {
+ "id": 38405,
+ "start": 17290.8,
+ "end": 17291.14,
+ "text": "Gardner."
+ },
+ {
+ "id": 38406,
+ "start": 17291.14,
+ "end": 17291.88,
+ "text": "Thank"
+ },
+ {
+ "id": 38407,
+ "start": 17291.88,
+ "end": 17291.96,
+ "text": "you,"
+ },
+ {
+ "id": 38408,
+ "start": 17291.96,
+ "end": 17292.14,
+ "text": "Mr"
+ },
+ {
+ "id": 38409,
+ "start": 17292.14,
+ "end": 17292.4,
+ "text": "Chairman."
+ },
+ {
+ "id": 38410,
+ "start": 17292.4,
+ "end": 17292.5,
+ "text": "And"
+ },
+ {
+ "id": 38411,
+ "start": 17292.5,
+ "end": 17292.62,
+ "text": "thank"
+ },
+ {
+ "id": 38412,
+ "start": 17292.62,
+ "end": 17292.7,
+ "text": "you,"
+ },
+ {
+ "id": 38413,
+ "start": 17292.7,
+ "end": 17292.92,
+ "text": "Mr"
+ },
+ {
+ "id": 38414,
+ "start": 17292.92,
+ "end": 17293.38,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 38415,
+ "start": 17293.38,
+ "end": 17293.5,
+ "text": "For"
+ },
+ {
+ "id": 38416,
+ "start": 17293.5,
+ "end": 17293.64,
+ "text": "your"
+ },
+ {
+ "id": 38417,
+ "start": 17293.64,
+ "end": 17294,
+ "text": "patience"
+ },
+ {
+ "id": 38418,
+ "start": 17294,
+ "end": 17294.34,
+ "text": "and"
+ },
+ {
+ "id": 38419,
+ "start": 17294.34,
+ "end": 17294.82,
+ "text": "testimony"
+ },
+ {
+ "id": 38420,
+ "start": 17294.82,
+ "end": 17295.04,
+ "text": "today,"
+ },
+ {
+ "id": 38421,
+ "start": 17295.04,
+ "end": 17295.2,
+ "text": "the"
+ },
+ {
+ "id": 38422,
+ "start": 17295.2,
+ "end": 17295.32,
+ "text": "end"
+ },
+ {
+ "id": 38423,
+ "start": 17295.32,
+ "end": 17295.46,
+ "text": "is"
+ },
+ {
+ "id": 38424,
+ "start": 17295.46,
+ "end": 17296.1,
+ "text": "near"
+ },
+ {
+ "id": 38425,
+ "start": 17296.1,
+ "end": 17296.16,
+ "text": "I"
+ },
+ {
+ "id": 38426,
+ "start": 17296.16,
+ "end": 17296.84,
+ "text": "think"
+ },
+ {
+ "id": 38427,
+ "start": 17296.84,
+ "end": 17297.06,
+ "text": "1"
+ },
+ {
+ "id": 38428,
+ "start": 17297.06,
+ "end": 17297.2,
+ "text": "2"
+ },
+ {
+ "id": 38429,
+ "start": 17297.2,
+ "end": 17297.44,
+ "text": "3"
+ },
+ {
+ "id": 38430,
+ "start": 17297.44,
+ "end": 17297.52,
+ "text": "or"
+ },
+ {
+ "id": 38431,
+ "start": 17297.52,
+ "end": 17297.7,
+ "text": "four"
+ },
+ {
+ "id": 38432,
+ "start": 17297.7,
+ "end": 17297.96,
+ "text": "people."
+ },
+ {
+ "id": 38433,
+ "start": 17297.96,
+ "end": 17298.22,
+ "text": "So"
+ },
+ {
+ "id": 38434,
+ "start": 17298.22,
+ "end": 17298.6,
+ "text": "that's"
+ },
+ {
+ "id": 38435,
+ "start": 17298.6,
+ "end": 17298.86,
+ "text": "good"
+ },
+ {
+ "id": 38436,
+ "start": 17298.86,
+ "end": 17299.1,
+ "text": "news"
+ },
+ {
+ "id": 38437,
+ "start": 17299.1,
+ "end": 17299.74,
+ "text": "to"
+ },
+ {
+ "id": 38438,
+ "start": 17299.74,
+ "end": 17299.88,
+ "text": "get"
+ },
+ {
+ "id": 38439,
+ "start": 17299.88,
+ "end": 17300.52,
+ "text": "out"
+ },
+ {
+ "id": 38440,
+ "start": 17300.52,
+ "end": 17301.24,
+ "text": "of"
+ },
+ {
+ "id": 38441,
+ "start": 17301.24,
+ "end": 17301.42,
+ "text": "this"
+ },
+ {
+ "id": 38442,
+ "start": 17301.42,
+ "end": 17301.76,
+ "text": "hearing."
+ },
+ {
+ "id": 38443,
+ "start": 17301.76,
+ "end": 17302.96,
+ "text": "A"
+ },
+ {
+ "id": 38444,
+ "start": 17302.96,
+ "end": 17303.16,
+ "text": "couple"
+ },
+ {
+ "id": 38445,
+ "start": 17303.16,
+ "end": 17303.22,
+ "text": "of"
+ },
+ {
+ "id": 38446,
+ "start": 17303.22,
+ "end": 17303.44,
+ "text": "questions"
+ },
+ {
+ "id": 38447,
+ "start": 17303.44,
+ "end": 17303.54,
+ "text": "for"
+ },
+ {
+ "id": 38448,
+ "start": 17303.54,
+ "end": 17303.64,
+ "text": "you"
+ },
+ {
+ "id": 38449,
+ "start": 17303.64,
+ "end": 17303.78,
+ "text": "to"
+ },
+ {
+ "id": 38450,
+ "start": 17303.78,
+ "end": 17304.16,
+ "text": "clarify"
+ },
+ {
+ "id": 38451,
+ "start": 17304.16,
+ "end": 17304.78,
+ "text": "one"
+ },
+ {
+ "id": 38452,
+ "start": 17304.78,
+ "end": 17304.86,
+ "text": "of"
+ },
+ {
+ "id": 38453,
+ "start": 17304.86,
+ "end": 17305,
+ "text": "the"
+ },
+ {
+ "id": 38454,
+ "start": 17305,
+ "end": 17305.36,
+ "text": "comments"
+ },
+ {
+ "id": 38455,
+ "start": 17305.36,
+ "end": 17305.54,
+ "text": "made"
+ },
+ {
+ "id": 38456,
+ "start": 17305.54,
+ "end": 17305.74,
+ "text": "about"
+ },
+ {
+ "id": 38457,
+ "start": 17305.74,
+ "end": 17306.26,
+ "text": "deleting"
+ },
+ {
+ "id": 38458,
+ "start": 17306.26,
+ "end": 17307,
+ "text": "accounts"
+ },
+ {
+ "id": 38459,
+ "start": 17307,
+ "end": 17307.2,
+ "text": "from"
+ },
+ {
+ "id": 38460,
+ "start": 17307.2,
+ "end": 17307.62,
+ "text": "Facebook"
+ },
+ {
+ "id": 38461,
+ "start": 17307.62,
+ "end": 17307.8,
+ "text": "and"
+ },
+ {
+ "id": 38462,
+ "start": 17307.8,
+ "end": 17307.92,
+ "text": "the"
+ },
+ {
+ "id": 38463,
+ "start": 17307.92,
+ "end": 17308.14,
+ "text": "user"
+ },
+ {
+ "id": 38464,
+ "start": 17308.14,
+ "end": 17308.48,
+ "text": "agreement."
+ },
+ {
+ "id": 38465,
+ "start": 17308.48,
+ "end": 17308.58,
+ "text": "It"
+ },
+ {
+ "id": 38466,
+ "start": 17308.58,
+ "end": 17308.88,
+ "text": "says"
+ },
+ {
+ "id": 38467,
+ "start": 17308.88,
+ "end": 17309.32,
+ "text": "when"
+ },
+ {
+ "id": 38468,
+ "start": 17309.32,
+ "end": 17309.46,
+ "text": "you"
+ },
+ {
+ "id": 38469,
+ "start": 17309.46,
+ "end": 17309.78,
+ "text": "delete"
+ },
+ {
+ "id": 38470,
+ "start": 17309.78,
+ "end": 17310.16,
+ "text": "IP"
+ },
+ {
+ "id": 38471,
+ "start": 17310.16,
+ "end": 17310.62,
+ "text": "content"
+ },
+ {
+ "id": 38472,
+ "start": 17310.62,
+ "end": 17311.18,
+ "text": "if"
+ },
+ {
+ "id": 38473,
+ "start": 17311.18,
+ "end": 17311.3,
+ "text": "it"
+ },
+ {
+ "id": 38474,
+ "start": 17311.3,
+ "end": 17311.42,
+ "text": "is"
+ },
+ {
+ "id": 38475,
+ "start": 17311.42,
+ "end": 17311.87,
+ "text": "deleted"
+ },
+ {
+ "id": 38476,
+ "start": 17311.87,
+ "end": 17312.21,
+ "text": "a"
+ },
+ {
+ "id": 38477,
+ "start": 17312.21,
+ "end": 17313.09,
+ "text": "similar,"
+ },
+ {
+ "id": 38478,
+ "start": 17313.09,
+ "end": 17313.19,
+ "text": "it"
+ },
+ {
+ "id": 38479,
+ "start": 17313.19,
+ "end": 17313.31,
+ "text": "is"
+ },
+ {
+ "id": 38480,
+ "start": 17313.31,
+ "end": 17313.69,
+ "text": "deleted"
+ },
+ {
+ "id": 38481,
+ "start": 17313.69,
+ "end": 17313.81,
+ "text": "in"
+ },
+ {
+ "id": 38482,
+ "start": 17313.81,
+ "end": 17313.89,
+ "text": "a"
+ },
+ {
+ "id": 38483,
+ "start": 17313.89,
+ "end": 17314.19,
+ "text": "manner"
+ },
+ {
+ "id": 38484,
+ "start": 17314.19,
+ "end": 17314.47,
+ "text": "similar"
+ },
+ {
+ "id": 38485,
+ "start": 17314.47,
+ "end": 17314.55,
+ "text": "to"
+ },
+ {
+ "id": 38486,
+ "start": 17314.55,
+ "end": 17314.83,
+ "text": "emptying"
+ },
+ {
+ "id": 38487,
+ "start": 17314.83,
+ "end": 17314.95,
+ "text": "the"
+ },
+ {
+ "id": 38488,
+ "start": 17314.95,
+ "end": 17315.31,
+ "text": "recycle"
+ },
+ {
+ "id": 38489,
+ "start": 17315.31,
+ "end": 17315.49,
+ "text": "bin"
+ },
+ {
+ "id": 38490,
+ "start": 17315.49,
+ "end": 17315.59,
+ "text": "on"
+ },
+ {
+ "id": 38491,
+ "start": 17315.59,
+ "end": 17315.65,
+ "text": "a"
+ },
+ {
+ "id": 38492,
+ "start": 17315.65,
+ "end": 17316.03,
+ "text": "computer."
+ },
+ {
+ "id": 38493,
+ "start": 17316.03,
+ "end": 17316.37,
+ "text": "However,"
+ },
+ {
+ "id": 38494,
+ "start": 17316.37,
+ "end": 17316.51,
+ "text": "you"
+ },
+ {
+ "id": 38495,
+ "start": 17316.51,
+ "end": 17316.97,
+ "text": "understand"
+ },
+ {
+ "id": 38496,
+ "start": 17316.97,
+ "end": 17317.11,
+ "text": "that"
+ },
+ {
+ "id": 38497,
+ "start": 17317.11,
+ "end": 17317.47,
+ "text": "remove"
+ },
+ {
+ "id": 38498,
+ "start": 17317.47,
+ "end": 17317.83,
+ "text": "content"
+ },
+ {
+ "id": 38499,
+ "start": 17317.83,
+ "end": 17318.01,
+ "text": "may"
+ },
+ {
+ "id": 38500,
+ "start": 17318.01,
+ "end": 17318.41,
+ "text": "persist"
+ },
+ {
+ "id": 38501,
+ "start": 17318.41,
+ "end": 17318.57,
+ "text": "in"
+ },
+ {
+ "id": 38502,
+ "start": 17318.57,
+ "end": 17318.93,
+ "text": "backup"
+ },
+ {
+ "id": 38503,
+ "start": 17318.93,
+ "end": 17319.33,
+ "text": "copies"
+ },
+ {
+ "id": 38504,
+ "start": 17319.33,
+ "end": 17319.81,
+ "text": "for"
+ },
+ {
+ "id": 38505,
+ "start": 17319.81,
+ "end": 17319.85,
+ "text": "a"
+ },
+ {
+ "id": 38506,
+ "start": 17319.85,
+ "end": 17320.23,
+ "text": "reasonable"
+ },
+ {
+ "id": 38507,
+ "start": 17320.23,
+ "end": 17320.49,
+ "text": "period"
+ },
+ {
+ "id": 38508,
+ "start": 17320.49,
+ "end": 17320.59,
+ "text": "of"
+ },
+ {
+ "id": 38509,
+ "start": 17320.59,
+ "end": 17320.89,
+ "text": "time."
+ },
+ {
+ "id": 38510,
+ "start": 17320.89,
+ "end": 17321.91,
+ "text": "How"
+ },
+ {
+ "id": 38511,
+ "start": 17321.91,
+ "end": 17322.11,
+ "text": "long"
+ },
+ {
+ "id": 38512,
+ "start": 17322.11,
+ "end": 17322.27,
+ "text": "is"
+ },
+ {
+ "id": 38513,
+ "start": 17322.27,
+ "end": 17323.22,
+ "text": "that"
+ },
+ {
+ "id": 38514,
+ "start": 17323.22,
+ "end": 17324.28,
+ "text": "Senator?"
+ },
+ {
+ "id": 38515,
+ "start": 17324.28,
+ "end": 17324.36,
+ "text": "I"
+ },
+ {
+ "id": 38516,
+ "start": 17324.36,
+ "end": 17324.6,
+ "text": "don't"
+ },
+ {
+ "id": 38517,
+ "start": 17324.6,
+ "end": 17325.1,
+ "text": "know"
+ },
+ {
+ "id": 38518,
+ "start": 17325.1,
+ "end": 17325.6,
+ "text": "sitting"
+ },
+ {
+ "id": 38519,
+ "start": 17325.6,
+ "end": 17325.84,
+ "text": "here"
+ },
+ {
+ "id": 38520,
+ "start": 17325.84,
+ "end": 17326.14,
+ "text": "what"
+ },
+ {
+ "id": 38521,
+ "start": 17326.14,
+ "end": 17326.3,
+ "text": "our"
+ },
+ {
+ "id": 38522,
+ "start": 17326.3,
+ "end": 17326.6,
+ "text": "current"
+ },
+ {
+ "id": 38523,
+ "start": 17326.6,
+ "end": 17327.02,
+ "text": "systems"
+ },
+ {
+ "id": 38524,
+ "start": 17327.02,
+ "end": 17327.2,
+ "text": "are"
+ },
+ {
+ "id": 38525,
+ "start": 17327.2,
+ "end": 17327.36,
+ "text": "on"
+ },
+ {
+ "id": 38526,
+ "start": 17327.36,
+ "end": 17327.58,
+ "text": "that."
+ },
+ {
+ "id": 38527,
+ "start": 17327.58,
+ "end": 17328.32,
+ "text": "But"
+ },
+ {
+ "id": 38528,
+ "start": 17328.32,
+ "end": 17328.46,
+ "text": "the"
+ },
+ {
+ "id": 38529,
+ "start": 17328.46,
+ "end": 17328.88,
+ "text": "intent"
+ },
+ {
+ "id": 38530,
+ "start": 17328.88,
+ "end": 17329.14,
+ "text": "is"
+ },
+ {
+ "id": 38531,
+ "start": 17329.14,
+ "end": 17329.4,
+ "text": "to"
+ },
+ {
+ "id": 38532,
+ "start": 17329.4,
+ "end": 17329.96,
+ "text": "get"
+ },
+ {
+ "id": 38533,
+ "start": 17329.96,
+ "end": 17330.12,
+ "text": "all"
+ },
+ {
+ "id": 38534,
+ "start": 17330.12,
+ "end": 17330.24,
+ "text": "the"
+ },
+ {
+ "id": 38535,
+ "start": 17330.24,
+ "end": 17330.6,
+ "text": "content"
+ },
+ {
+ "id": 38536,
+ "start": 17330.6,
+ "end": 17330.78,
+ "text": "out"
+ },
+ {
+ "id": 38537,
+ "start": 17330.78,
+ "end": 17330.86,
+ "text": "of"
+ },
+ {
+ "id": 38538,
+ "start": 17330.86,
+ "end": 17330.96,
+ "text": "the"
+ },
+ {
+ "id": 38539,
+ "start": 17330.96,
+ "end": 17331.24,
+ "text": "system"
+ },
+ {
+ "id": 38540,
+ "start": 17331.24,
+ "end": 17331.38,
+ "text": "as"
+ },
+ {
+ "id": 38541,
+ "start": 17331.38,
+ "end": 17331.64,
+ "text": "quickly"
+ },
+ {
+ "id": 38542,
+ "start": 17331.64,
+ "end": 17331.8,
+ "text": "as"
+ },
+ {
+ "id": 38543,
+ "start": 17331.8,
+ "end": 17332.22,
+ "text": "possible"
+ },
+ {
+ "id": 38544,
+ "start": 17332.22,
+ "end": 17332.66,
+ "text": "and"
+ },
+ {
+ "id": 38545,
+ "start": 17332.66,
+ "end": 17332.8,
+ "text": "does"
+ },
+ {
+ "id": 38546,
+ "start": 17332.8,
+ "end": 17332.92,
+ "text": "that"
+ },
+ {
+ "id": 38547,
+ "start": 17332.92,
+ "end": 17333.06,
+ "text": "mean"
+ },
+ {
+ "id": 38548,
+ "start": 17333.06,
+ "end": 17333.24,
+ "text": "your"
+ },
+ {
+ "id": 38549,
+ "start": 17333.24,
+ "end": 17333.54,
+ "text": "user"
+ },
+ {
+ "id": 38550,
+ "start": 17333.54,
+ "end": 17333.78,
+ "text": "data"
+ },
+ {
+ "id": 38551,
+ "start": 17333.78,
+ "end": 17333.92,
+ "text": "as"
+ },
+ {
+ "id": 38552,
+ "start": 17333.92,
+ "end": 17334.1,
+ "text": "well?"
+ },
+ {
+ "id": 38553,
+ "start": 17334.1,
+ "end": 17334.2,
+ "text": "It"
+ },
+ {
+ "id": 38554,
+ "start": 17334.2,
+ "end": 17334.4,
+ "text": "talks"
+ },
+ {
+ "id": 38555,
+ "start": 17334.4,
+ "end": 17334.56,
+ "text": "about"
+ },
+ {
+ "id": 38556,
+ "start": 17334.56,
+ "end": 17334.82,
+ "text": "IP"
+ },
+ {
+ "id": 38557,
+ "start": 17334.82,
+ "end": 17335.2,
+ "text": "content."
+ },
+ {
+ "id": 38558,
+ "start": 17335.2,
+ "end": 17335.34,
+ "text": "Is"
+ },
+ {
+ "id": 38559,
+ "start": 17335.34,
+ "end": 17335.48,
+ "text": "that"
+ },
+ {
+ "id": 38560,
+ "start": 17335.48,
+ "end": 17335.62,
+ "text": "the"
+ },
+ {
+ "id": 38561,
+ "start": 17335.62,
+ "end": 17335.82,
+ "text": "same"
+ },
+ {
+ "id": 38562,
+ "start": 17335.82,
+ "end": 17335.98,
+ "text": "thing"
+ },
+ {
+ "id": 38563,
+ "start": 17335.98,
+ "end": 17336.12,
+ "text": "as"
+ },
+ {
+ "id": 38564,
+ "start": 17336.12,
+ "end": 17336.3,
+ "text": "your"
+ },
+ {
+ "id": 38565,
+ "start": 17336.3,
+ "end": 17336.56,
+ "text": "user"
+ },
+ {
+ "id": 38566,
+ "start": 17336.56,
+ "end": 17336.78,
+ "text": "data?"
+ },
+ {
+ "id": 38567,
+ "start": 17336.78,
+ "end": 17336.86,
+ "text": "It"
+ },
+ {
+ "id": 38568,
+ "start": 17336.86,
+ "end": 17337.02,
+ "text": "could"
+ },
+ {
+ "id": 38569,
+ "start": 17337.02,
+ "end": 17337.18,
+ "text": "sit"
+ },
+ {
+ "id": 38570,
+ "start": 17337.18,
+ "end": 17337.28,
+ "text": "in"
+ },
+ {
+ "id": 38571,
+ "start": 17337.28,
+ "end": 17337.62,
+ "text": "backup"
+ },
+ {
+ "id": 38572,
+ "start": 17337.62,
+ "end": 17339.6,
+ "text": "copies,"
+ },
+ {
+ "id": 38573,
+ "start": 17339.6,
+ "end": 17340.58,
+ "text": "Senator."
+ },
+ {
+ "id": 38574,
+ "start": 17340.58,
+ "end": 17340.64,
+ "text": "I"
+ },
+ {
+ "id": 38575,
+ "start": 17340.64,
+ "end": 17340.78,
+ "text": "think"
+ },
+ {
+ "id": 38576,
+ "start": 17340.78,
+ "end": 17341.1,
+ "text": "that"
+ },
+ {
+ "id": 38577,
+ "start": 17341.1,
+ "end": 17341.34,
+ "text": "is"
+ },
+ {
+ "id": 38578,
+ "start": 17341.34,
+ "end": 17341.82,
+ "text": "probably"
+ },
+ {
+ "id": 38579,
+ "start": 17341.82,
+ "end": 17342.84,
+ "text": "right"
+ },
+ {
+ "id": 38580,
+ "start": 17342.84,
+ "end": 17343.82,
+ "text": "I'm"
+ },
+ {
+ "id": 38581,
+ "start": 17343.82,
+ "end": 17344.02,
+ "text": "not"
+ },
+ {
+ "id": 38582,
+ "start": 17344.02,
+ "end": 17344.92,
+ "text": "sitting"
+ },
+ {
+ "id": 38583,
+ "start": 17344.92,
+ "end": 17345.08,
+ "text": "here"
+ },
+ {
+ "id": 38584,
+ "start": 17345.08,
+ "end": 17345.36,
+ "text": "today."
+ },
+ {
+ "id": 38585,
+ "start": 17345.36,
+ "end": 17346.28,
+ "text": "Having"
+ },
+ {
+ "id": 38586,
+ "start": 17346.28,
+ "end": 17346.76,
+ "text": "full"
+ },
+ {
+ "id": 38587,
+ "start": 17346.76,
+ "end": 17347.3,
+ "text": "knowledge"
+ },
+ {
+ "id": 38588,
+ "start": 17347.3,
+ "end": 17347.66,
+ "text": "of"
+ },
+ {
+ "id": 38589,
+ "start": 17347.66,
+ "end": 17348.16,
+ "text": "our"
+ },
+ {
+ "id": 38590,
+ "start": 17348.16,
+ "end": 17348.5,
+ "text": "current"
+ },
+ {
+ "id": 38591,
+ "start": 17348.5,
+ "end": 17348.96,
+ "text": "state"
+ },
+ {
+ "id": 38592,
+ "start": 17348.96,
+ "end": 17349.08,
+ "text": "of"
+ },
+ {
+ "id": 38593,
+ "start": 17349.08,
+ "end": 17349.2,
+ "text": "the"
+ },
+ {
+ "id": 38594,
+ "start": 17349.2,
+ "end": 17349.68,
+ "text": "systems"
+ },
+ {
+ "id": 38595,
+ "start": 17349.68,
+ "end": 17350.52,
+ "text": "around"
+ },
+ {
+ "id": 38596,
+ "start": 17350.52,
+ "end": 17351.48,
+ "text": "wiping"
+ },
+ {
+ "id": 38597,
+ "start": 17351.48,
+ "end": 17351.68,
+ "text": "all"
+ },
+ {
+ "id": 38598,
+ "start": 17351.68,
+ "end": 17351.78,
+ "text": "of"
+ },
+ {
+ "id": 38599,
+ "start": 17351.78,
+ "end": 17351.92,
+ "text": "the"
+ },
+ {
+ "id": 38600,
+ "start": 17351.92,
+ "end": 17352.2,
+ "text": "data"
+ },
+ {
+ "id": 38601,
+ "start": 17352.2,
+ "end": 17352.38,
+ "text": "out"
+ },
+ {
+ "id": 38602,
+ "start": 17352.38,
+ "end": 17352.48,
+ "text": "of"
+ },
+ {
+ "id": 38603,
+ "start": 17352.48,
+ "end": 17352.94,
+ "text": "backups."
+ },
+ {
+ "id": 38604,
+ "start": 17352.94,
+ "end": 17353.48,
+ "text": "So"
+ },
+ {
+ "id": 38605,
+ "start": 17353.48,
+ "end": 17354.28,
+ "text": "I"
+ },
+ {
+ "id": 38606,
+ "start": 17354.28,
+ "end": 17354.52,
+ "text": "can"
+ },
+ {
+ "id": 38607,
+ "start": 17354.52,
+ "end": 17355.04,
+ "text": "follow"
+ },
+ {
+ "id": 38608,
+ "start": 17355.04,
+ "end": 17355.14,
+ "text": "up"
+ },
+ {
+ "id": 38609,
+ "start": 17355.14,
+ "end": 17355.28,
+ "text": "with"
+ },
+ {
+ "id": 38610,
+ "start": 17355.28,
+ "end": 17355.38,
+ "text": "you"
+ },
+ {
+ "id": 38611,
+ "start": 17355.38,
+ "end": 17355.5,
+ "text": "on"
+ },
+ {
+ "id": 38612,
+ "start": 17355.5,
+ "end": 17355.66,
+ "text": "that"
+ },
+ {
+ "id": 38613,
+ "start": 17355.66,
+ "end": 17356.2,
+ "text": "afterwards."
+ },
+ {
+ "id": 38614,
+ "start": 17356.2,
+ "end": 17356.66,
+ "text": "But"
+ },
+ {
+ "id": 38615,
+ "start": 17356.66,
+ "end": 17356.8,
+ "text": "what"
+ },
+ {
+ "id": 38616,
+ "start": 17356.8,
+ "end": 17356.86,
+ "text": "I"
+ },
+ {
+ "id": 38617,
+ "start": 17356.86,
+ "end": 17357,
+ "text": "can"
+ },
+ {
+ "id": 38618,
+ "start": 17357,
+ "end": 17357.18,
+ "text": "tell"
+ },
+ {
+ "id": 38619,
+ "start": 17357.18,
+ "end": 17357.3,
+ "text": "you"
+ },
+ {
+ "id": 38620,
+ "start": 17357.3,
+ "end": 17357.38,
+ "text": "is"
+ },
+ {
+ "id": 38621,
+ "start": 17357.38,
+ "end": 17357.5,
+ "text": "that"
+ },
+ {
+ "id": 38622,
+ "start": 17357.5,
+ "end": 17357.64,
+ "text": "all"
+ },
+ {
+ "id": 38623,
+ "start": 17357.64,
+ "end": 17357.96,
+ "text": "backups?"
+ },
+ {
+ "id": 38624,
+ "start": 17357.96,
+ "end": 17358.2,
+ "text": "I"
+ },
+ {
+ "id": 38625,
+ "start": 17358.2,
+ "end": 17358.98,
+ "text": "liked"
+ },
+ {
+ "id": 38626,
+ "start": 17358.98,
+ "end": 17359.74,
+ "text": "that"
+ },
+ {
+ "id": 38627,
+ "start": 17359.74,
+ "end": 17359.88,
+ "text": "is"
+ },
+ {
+ "id": 38628,
+ "start": 17359.88,
+ "end": 17360.26,
+ "text": "certainly"
+ },
+ {
+ "id": 38629,
+ "start": 17360.26,
+ "end": 17360.4,
+ "text": "the"
+ },
+ {
+ "id": 38630,
+ "start": 17360.4,
+ "end": 17360.5,
+ "text": "way"
+ },
+ {
+ "id": 38631,
+ "start": 17360.5,
+ "end": 17361.48,
+ "text": "it's"
+ },
+ {
+ "id": 38632,
+ "start": 17361.48,
+ "end": 17361.78,
+ "text": "supposed"
+ },
+ {
+ "id": 38633,
+ "start": 17361.78,
+ "end": 17361.88,
+ "text": "to"
+ },
+ {
+ "id": 38634,
+ "start": 17361.88,
+ "end": 17362.06,
+ "text": "work."
+ },
+ {
+ "id": 38635,
+ "start": 17362.06,
+ "end": 17362.7,
+ "text": "Is"
+ },
+ {
+ "id": 38636,
+ "start": 17362.7,
+ "end": 17362.86,
+ "text": "there"
+ },
+ {
+ "id": 38637,
+ "start": 17362.86,
+ "end": 17363.18,
+ "text": "ever"
+ },
+ {
+ "id": 38638,
+ "start": 17363.18,
+ "end": 17363.32,
+ "text": "been"
+ },
+ {
+ "id": 38639,
+ "start": 17363.32,
+ "end": 17363.38,
+ "text": "a"
+ },
+ {
+ "id": 38640,
+ "start": 17363.38,
+ "end": 17363.7,
+ "text": "failure"
+ },
+ {
+ "id": 38641,
+ "start": 17363.7,
+ "end": 17364.4,
+ "text": "of"
+ },
+ {
+ "id": 38642,
+ "start": 17364.4,
+ "end": 17365.02,
+ "text": "that?"
+ },
+ {
+ "id": 38643,
+ "start": 17365.02,
+ "end": 17366,
+ "text": "Senator?"
+ },
+ {
+ "id": 38644,
+ "start": 17366,
+ "end": 17366.24,
+ "text": "I"
+ },
+ {
+ "id": 38645,
+ "start": 17366.24,
+ "end": 17366.42,
+ "text": "don't"
+ },
+ {
+ "id": 38646,
+ "start": 17366.42,
+ "end": 17367.24,
+ "text": "know"
+ },
+ {
+ "id": 38647,
+ "start": 17367.24,
+ "end": 17369.44,
+ "text": "if"
+ },
+ {
+ "id": 38648,
+ "start": 17369.44,
+ "end": 17369.58,
+ "text": "we"
+ },
+ {
+ "id": 38649,
+ "start": 17369.58,
+ "end": 17369.76,
+ "text": "tell"
+ },
+ {
+ "id": 38650,
+ "start": 17369.76,
+ "end": 17369.94,
+ "text": "people"
+ },
+ {
+ "id": 38651,
+ "start": 17369.94,
+ "end": 17370.06,
+ "text": "that"
+ },
+ {
+ "id": 38652,
+ "start": 17370.06,
+ "end": 17370.2,
+ "text": "we're"
+ },
+ {
+ "id": 38653,
+ "start": 17370.2,
+ "end": 17370.32,
+ "text": "going"
+ },
+ {
+ "id": 38654,
+ "start": 17370.32,
+ "end": 17370.4,
+ "text": "to"
+ },
+ {
+ "id": 38655,
+ "start": 17370.4,
+ "end": 17370.58,
+ "text": "delete"
+ },
+ {
+ "id": 38656,
+ "start": 17370.58,
+ "end": 17370.76,
+ "text": "their"
+ },
+ {
+ "id": 38657,
+ "start": 17370.76,
+ "end": 17371.02,
+ "text": "data"
+ },
+ {
+ "id": 38658,
+ "start": 17371.02,
+ "end": 17371.38,
+ "text": "we"
+ },
+ {
+ "id": 38659,
+ "start": 17371.38,
+ "end": 17371.56,
+ "text": "need"
+ },
+ {
+ "id": 38660,
+ "start": 17371.56,
+ "end": 17371.64,
+ "text": "to"
+ },
+ {
+ "id": 38661,
+ "start": 17371.64,
+ "end": 17371.74,
+ "text": "do"
+ },
+ {
+ "id": 38662,
+ "start": 17371.74,
+ "end": 17371.94,
+ "text": "that"
+ },
+ {
+ "id": 38663,
+ "start": 17371.94,
+ "end": 17372.96,
+ "text": "and"
+ },
+ {
+ "id": 38664,
+ "start": 17372.96,
+ "end": 17373.12,
+ "text": "you"
+ },
+ {
+ "id": 38665,
+ "start": 17373.12,
+ "end": 17373.24,
+ "text": "do"
+ },
+ {
+ "id": 38666,
+ "start": 17373.24,
+ "end": 17373.38,
+ "text": "do"
+ },
+ {
+ "id": 38667,
+ "start": 17373.38,
+ "end": 17374.94,
+ "text": "that."
+ },
+ {
+ "id": 38668,
+ "start": 17374.94,
+ "end": 17375.9,
+ "text": "Thank"
+ },
+ {
+ "id": 38669,
+ "start": 17375.9,
+ "end": 17375.98,
+ "text": "you,"
+ },
+ {
+ "id": 38670,
+ "start": 17375.98,
+ "end": 17376.66,
+ "text": "a"
+ },
+ {
+ "id": 38671,
+ "start": 17376.66,
+ "end": 17376.82,
+ "text": "couple"
+ },
+ {
+ "id": 38672,
+ "start": 17376.82,
+ "end": 17376.9,
+ "text": "of"
+ },
+ {
+ "id": 38673,
+ "start": 17376.9,
+ "end": 17377.1,
+ "text": "other"
+ },
+ {
+ "id": 38674,
+ "start": 17377.1,
+ "end": 17377.32,
+ "text": "questions."
+ },
+ {
+ "id": 38675,
+ "start": 17377.32,
+ "end": 17377.38,
+ "text": "I"
+ },
+ {
+ "id": 38676,
+ "start": 17377.38,
+ "end": 17377.54,
+ "text": "think"
+ },
+ {
+ "id": 38677,
+ "start": 17377.54,
+ "end": 17377.64,
+ "text": "that"
+ },
+ {
+ "id": 38678,
+ "start": 17377.64,
+ "end": 17377.82,
+ "text": "gets"
+ },
+ {
+ "id": 38679,
+ "start": 17377.82,
+ "end": 17377.96,
+ "text": "the"
+ },
+ {
+ "id": 38680,
+ "start": 17377.96,
+ "end": 17378.12,
+ "text": "heart"
+ },
+ {
+ "id": 38681,
+ "start": 17378.12,
+ "end": 17378.2,
+ "text": "of"
+ },
+ {
+ "id": 38682,
+ "start": 17378.2,
+ "end": 17378.36,
+ "text": "this"
+ },
+ {
+ "id": 38683,
+ "start": 17378.36,
+ "end": 17379.46,
+ "text": "expectation"
+ },
+ {
+ "id": 38684,
+ "start": 17379.46,
+ "end": 17379.82,
+ "text": "gap"
+ },
+ {
+ "id": 38685,
+ "start": 17379.82,
+ "end": 17380.08,
+ "text": "as"
+ },
+ {
+ "id": 38686,
+ "start": 17380.08,
+ "end": 17380.24,
+ "text": "I"
+ },
+ {
+ "id": 38687,
+ "start": 17380.24,
+ "end": 17380.48,
+ "text": "call"
+ },
+ {
+ "id": 38688,
+ "start": 17380.48,
+ "end": 17380.6,
+ "text": "it"
+ },
+ {
+ "id": 38689,
+ "start": 17380.6,
+ "end": 17381.18,
+ "text": "with"
+ },
+ {
+ "id": 38690,
+ "start": 17381.18,
+ "end": 17381.92,
+ "text": "users"
+ },
+ {
+ "id": 38691,
+ "start": 17381.92,
+ "end": 17382.94,
+ "text": "Facebook"
+ },
+ {
+ "id": 38692,
+ "start": 17382.94,
+ "end": 17383.92,
+ "text": "as"
+ },
+ {
+ "id": 38693,
+ "start": 17383.92,
+ "end": 17384.02,
+ "text": "I"
+ },
+ {
+ "id": 38694,
+ "start": 17384.02,
+ "end": 17384.4,
+ "text": "understand"
+ },
+ {
+ "id": 38695,
+ "start": 17384.4,
+ "end": 17384.56,
+ "text": "it."
+ },
+ {
+ "id": 38696,
+ "start": 17384.56,
+ "end": 17385.04,
+ "text": "If"
+ },
+ {
+ "id": 38697,
+ "start": 17385.04,
+ "end": 17385.22,
+ "text": "you're"
+ },
+ {
+ "id": 38698,
+ "start": 17385.22,
+ "end": 17385.44,
+ "text": "logged"
+ },
+ {
+ "id": 38699,
+ "start": 17385.44,
+ "end": 17385.62,
+ "text": "into"
+ },
+ {
+ "id": 38700,
+ "start": 17385.62,
+ "end": 17386.05,
+ "text": "Facebook"
+ },
+ {
+ "id": 38701,
+ "start": 17386.05,
+ "end": 17386.51,
+ "text": "separate"
+ },
+ {
+ "id": 38702,
+ "start": 17386.51,
+ "end": 17386.89,
+ "text": "browser"
+ },
+ {
+ "id": 38703,
+ "start": 17386.89,
+ "end": 17387.01,
+ "text": "and"
+ },
+ {
+ "id": 38704,
+ "start": 17387.01,
+ "end": 17387.09,
+ "text": "you"
+ },
+ {
+ "id": 38705,
+ "start": 17387.09,
+ "end": 17387.31,
+ "text": "log"
+ },
+ {
+ "id": 38706,
+ "start": 17387.31,
+ "end": 17387.61,
+ "text": "into"
+ },
+ {
+ "id": 38707,
+ "start": 17387.61,
+ "end": 17388.25,
+ "text": "another"
+ },
+ {
+ "id": 38708,
+ "start": 17388.25,
+ "end": 17389.13,
+ "text": "log"
+ },
+ {
+ "id": 38709,
+ "start": 17389.13,
+ "end": 17389.23,
+ "text": "in"
+ },
+ {
+ "id": 38710,
+ "start": 17389.23,
+ "end": 17389.33,
+ "text": "to"
+ },
+ {
+ "id": 38711,
+ "start": 17389.33,
+ "end": 17389.63,
+ "text": "another"
+ },
+ {
+ "id": 38712,
+ "start": 17389.63,
+ "end": 17390.49,
+ "text": "article,"
+ },
+ {
+ "id": 38713,
+ "start": 17390.49,
+ "end": 17391.17,
+ "text": "open"
+ },
+ {
+ "id": 38714,
+ "start": 17391.17,
+ "end": 17391.23,
+ "text": "a"
+ },
+ {
+ "id": 38715,
+ "start": 17391.23,
+ "end": 17391.37,
+ "text": "new"
+ },
+ {
+ "id": 38716,
+ "start": 17391.37,
+ "end": 17391.61,
+ "text": "tab"
+ },
+ {
+ "id": 38717,
+ "start": 17391.61,
+ "end": 17391.69,
+ "text": "in"
+ },
+ {
+ "id": 38718,
+ "start": 17391.69,
+ "end": 17391.81,
+ "text": "the"
+ },
+ {
+ "id": 38719,
+ "start": 17391.81,
+ "end": 17392.13,
+ "text": "browser."
+ },
+ {
+ "id": 38720,
+ "start": 17392.13,
+ "end": 17392.63,
+ "text": "All"
+ },
+ {
+ "id": 38721,
+ "start": 17392.63,
+ "end": 17392.71,
+ "text": "you"
+ },
+ {
+ "id": 38722,
+ "start": 17392.71,
+ "end": 17392.83,
+ "text": "have"
+ },
+ {
+ "id": 38723,
+ "start": 17392.83,
+ "end": 17392.93,
+ "text": "the"
+ },
+ {
+ "id": 38724,
+ "start": 17392.93,
+ "end": 17393.33,
+ "text": "Facebook"
+ },
+ {
+ "id": 38725,
+ "start": 17393.33,
+ "end": 17393.63,
+ "text": "tab"
+ },
+ {
+ "id": 38726,
+ "start": 17393.63,
+ "end": 17393.97,
+ "text": "open"
+ },
+ {
+ "id": 38727,
+ "start": 17393.97,
+ "end": 17394.11,
+ "text": "and"
+ },
+ {
+ "id": 38728,
+ "start": 17394.11,
+ "end": 17394.31,
+ "text": "that"
+ },
+ {
+ "id": 38729,
+ "start": 17394.31,
+ "end": 17394.69,
+ "text": "new"
+ },
+ {
+ "id": 38730,
+ "start": 17394.69,
+ "end": 17395.61,
+ "text": "tab"
+ },
+ {
+ "id": 38731,
+ "start": 17395.61,
+ "end": 17396.13,
+ "text": "has"
+ },
+ {
+ "id": 38732,
+ "start": 17396.13,
+ "end": 17396.31,
+ "text": "a"
+ },
+ {
+ "id": 38733,
+ "start": 17396.31,
+ "end": 17397.44,
+ "text": "Facebook"
+ },
+ {
+ "id": 38734,
+ "start": 17397.44,
+ "end": 17398.26,
+ "text": "button"
+ },
+ {
+ "id": 38735,
+ "start": 17398.26,
+ "end": 17398.36,
+ "text": "on"
+ },
+ {
+ "id": 38736,
+ "start": 17398.36,
+ "end": 17398.48,
+ "text": "it."
+ },
+ {
+ "id": 38737,
+ "start": 17398.48,
+ "end": 17399.06,
+ "text": "You"
+ },
+ {
+ "id": 38738,
+ "start": 17399.06,
+ "end": 17399.46,
+ "text": "track"
+ },
+ {
+ "id": 38739,
+ "start": 17399.46,
+ "end": 17399.66,
+ "text": "the"
+ },
+ {
+ "id": 38740,
+ "start": 17399.66,
+ "end": 17400.1,
+ "text": "article"
+ },
+ {
+ "id": 38741,
+ "start": 17400.1,
+ "end": 17400.72,
+ "text": "that"
+ },
+ {
+ "id": 38742,
+ "start": 17400.72,
+ "end": 17401.02,
+ "text": "you're"
+ },
+ {
+ "id": 38743,
+ "start": 17401.02,
+ "end": 17401.28,
+ "text": "reading"
+ },
+ {
+ "id": 38744,
+ "start": 17401.28,
+ "end": 17401.36,
+ "text": "is"
+ },
+ {
+ "id": 38745,
+ "start": 17401.36,
+ "end": 17401.5,
+ "text": "that"
+ },
+ {
+ "id": 38746,
+ "start": 17401.5,
+ "end": 17403.56,
+ "text": "correct,"
+ },
+ {
+ "id": 38747,
+ "start": 17403.56,
+ "end": 17406.16,
+ "text": "right?"
+ },
+ {
+ "id": 38748,
+ "start": 17406.16,
+ "end": 17406.24,
+ "text": "I"
+ },
+ {
+ "id": 38749,
+ "start": 17406.24,
+ "end": 17406.42,
+ "text": "think"
+ },
+ {
+ "id": 38750,
+ "start": 17406.42,
+ "end": 17406.56,
+ "text": "that"
+ },
+ {
+ "id": 38751,
+ "start": 17406.56,
+ "end": 17407.14,
+ "text": "there"
+ },
+ {
+ "id": 38752,
+ "start": 17407.14,
+ "end": 17407.3,
+ "text": "is"
+ },
+ {
+ "id": 38753,
+ "start": 17407.3,
+ "end": 17408.14,
+ "text": "functionality"
+ },
+ {
+ "id": 38754,
+ "start": 17408.14,
+ "end": 17408.74,
+ "text": "like"
+ },
+ {
+ "id": 38755,
+ "start": 17408.74,
+ "end": 17408.98,
+ "text": "that."
+ },
+ {
+ "id": 38756,
+ "start": 17408.98,
+ "end": 17409.28,
+ "text": "Yes,"
+ },
+ {
+ "id": 38757,
+ "start": 17409.28,
+ "end": 17410,
+ "text": "do"
+ },
+ {
+ "id": 38758,
+ "start": 17410,
+ "end": 17410.1,
+ "text": "you"
+ },
+ {
+ "id": 38759,
+ "start": 17410.1,
+ "end": 17410.26,
+ "text": "think"
+ },
+ {
+ "id": 38760,
+ "start": 17410.26,
+ "end": 17410.66,
+ "text": "users"
+ },
+ {
+ "id": 38761,
+ "start": 17410.66,
+ "end": 17411.08,
+ "text": "understand"
+ },
+ {
+ "id": 38762,
+ "start": 17411.08,
+ "end": 17412.86,
+ "text": "that,"
+ },
+ {
+ "id": 38763,
+ "start": 17412.86,
+ "end": 17413.82,
+ "text": "Senator?"
+ },
+ {
+ "id": 38764,
+ "start": 17413.82,
+ "end": 17414.22,
+ "text": "I"
+ },
+ {
+ "id": 38765,
+ "start": 17414.22,
+ "end": 17414.44,
+ "text": "think"
+ },
+ {
+ "id": 38766,
+ "start": 17414.44,
+ "end": 17416.42,
+ "text": "that"
+ },
+ {
+ "id": 38767,
+ "start": 17416.42,
+ "end": 17416.78,
+ "text": "there"
+ },
+ {
+ "id": 38768,
+ "start": 17416.78,
+ "end": 17416.94,
+ "text": "is"
+ },
+ {
+ "id": 38769,
+ "start": 17416.94,
+ "end": 17417.06,
+ "text": "a"
+ },
+ {
+ "id": 38770,
+ "start": 17417.06,
+ "end": 17417.76,
+ "text": "reasonable"
+ },
+ {
+ "id": 38771,
+ "start": 17417.76,
+ "end": 17418.16,
+ "text": "I"
+ },
+ {
+ "id": 38772,
+ "start": 17418.16,
+ "end": 17418.32,
+ "text": "think"
+ },
+ {
+ "id": 38773,
+ "start": 17418.32,
+ "end": 17418.44,
+ "text": "the"
+ },
+ {
+ "id": 38774,
+ "start": 17418.44,
+ "end": 17418.64,
+ "text": "answer"
+ },
+ {
+ "id": 38775,
+ "start": 17418.64,
+ "end": 17418.76,
+ "text": "is"
+ },
+ {
+ "id": 38776,
+ "start": 17418.76,
+ "end": 17419.22,
+ "text": "probably,"
+ },
+ {
+ "id": 38777,
+ "start": 17419.22,
+ "end": 17419.5,
+ "text": "yes,"
+ },
+ {
+ "id": 38778,
+ "start": 17419.5,
+ "end": 17419.84,
+ "text": "for"
+ },
+ {
+ "id": 38779,
+ "start": 17419.84,
+ "end": 17419.94,
+ "text": "the"
+ },
+ {
+ "id": 38780,
+ "start": 17419.94,
+ "end": 17420.24,
+ "text": "following"
+ },
+ {
+ "id": 38781,
+ "start": 17420.24,
+ "end": 17420.58,
+ "text": "reason."
+ },
+ {
+ "id": 38782,
+ "start": 17420.58,
+ "end": 17421.28,
+ "text": "Because"
+ },
+ {
+ "id": 38783,
+ "start": 17421.28,
+ "end": 17421.48,
+ "text": "when"
+ },
+ {
+ "id": 38784,
+ "start": 17421.48,
+ "end": 17421.66,
+ "text": "we"
+ },
+ {
+ "id": 38785,
+ "start": 17421.66,
+ "end": 17422.06,
+ "text": "show"
+ },
+ {
+ "id": 38786,
+ "start": 17422.06,
+ "end": 17422.49,
+ "text": "a"
+ },
+ {
+ "id": 38787,
+ "start": 17422.49,
+ "end": 17422.89,
+ "text": "button"
+ },
+ {
+ "id": 38788,
+ "start": 17422.89,
+ "end": 17423.01,
+ "text": "on"
+ },
+ {
+ "id": 38789,
+ "start": 17423.01,
+ "end": 17423.27,
+ "text": "a"
+ },
+ {
+ "id": 38790,
+ "start": 17423.27,
+ "end": 17423.91,
+ "text": "website,"
+ },
+ {
+ "id": 38791,
+ "start": 17423.91,
+ "end": 17424.65,
+ "text": "we"
+ },
+ {
+ "id": 38792,
+ "start": 17424.65,
+ "end": 17424.99,
+ "text": "show"
+ },
+ {
+ "id": 38793,
+ "start": 17424.99,
+ "end": 17425.61,
+ "text": "social"
+ },
+ {
+ "id": 38794,
+ "start": 17425.61,
+ "end": 17426.05,
+ "text": "context"
+ },
+ {
+ "id": 38795,
+ "start": 17426.05,
+ "end": 17426.27,
+ "text": "there."
+ },
+ {
+ "id": 38796,
+ "start": 17426.27,
+ "end": 17426.41,
+ "text": "So"
+ },
+ {
+ "id": 38797,
+ "start": 17426.41,
+ "end": 17426.53,
+ "text": "it"
+ },
+ {
+ "id": 38798,
+ "start": 17426.53,
+ "end": 17426.85,
+ "text": "says"
+ },
+ {
+ "id": 38799,
+ "start": 17426.85,
+ "end": 17427.55,
+ "text": "here"
+ },
+ {
+ "id": 38800,
+ "start": 17427.55,
+ "end": 17427.87,
+ "text": "your"
+ },
+ {
+ "id": 38801,
+ "start": 17427.87,
+ "end": 17428.23,
+ "text": "friends"
+ },
+ {
+ "id": 38802,
+ "start": 17428.23,
+ "end": 17428.47,
+ "text": "who"
+ },
+ {
+ "id": 38803,
+ "start": 17428.47,
+ "end": 17428.67,
+ "text": "like"
+ },
+ {
+ "id": 38804,
+ "start": 17428.67,
+ "end": 17428.97,
+ "text": "that?"
+ },
+ {
+ "id": 38805,
+ "start": 17428.97,
+ "end": 17429.63,
+ "text": "So,"
+ },
+ {
+ "id": 38806,
+ "start": 17429.63,
+ "end": 17429.79,
+ "text": "in"
+ },
+ {
+ "id": 38807,
+ "start": 17429.79,
+ "end": 17430.05,
+ "text": "order"
+ },
+ {
+ "id": 38808,
+ "start": 17430.05,
+ "end": 17430.17,
+ "text": "to"
+ },
+ {
+ "id": 38809,
+ "start": 17430.17,
+ "end": 17430.33,
+ "text": "do"
+ },
+ {
+ "id": 38810,
+ "start": 17430.33,
+ "end": 17430.57,
+ "text": "that,"
+ },
+ {
+ "id": 38811,
+ "start": 17430.57,
+ "end": 17431.11,
+ "text": "we"
+ },
+ {
+ "id": 38812,
+ "start": 17431.11,
+ "end": 17431.31,
+ "text": "would"
+ },
+ {
+ "id": 38813,
+ "start": 17431.31,
+ "end": 17431.53,
+ "text": "have"
+ },
+ {
+ "id": 38814,
+ "start": 17431.53,
+ "end": 17432.62,
+ "text": "to."
+ },
+ {
+ "id": 38815,
+ "start": 17432.62,
+ "end": 17433.26,
+ "text": "But"
+ },
+ {
+ "id": 38816,
+ "start": 17433.26,
+ "end": 17433.64,
+ "text": "if"
+ },
+ {
+ "id": 38817,
+ "start": 17433.64,
+ "end": 17433.76,
+ "text": "you"
+ },
+ {
+ "id": 38818,
+ "start": 17433.76,
+ "end": 17433.9,
+ "text": "get"
+ },
+ {
+ "id": 38819,
+ "start": 17433.9,
+ "end": 17434.02,
+ "text": "your"
+ },
+ {
+ "id": 38820,
+ "start": 17434.02,
+ "end": 17434.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 38821,
+ "start": 17434.34,
+ "end": 17435,
+ "text": "browser"
+ },
+ {
+ "id": 38822,
+ "start": 17435,
+ "end": 17435.36,
+ "text": "open"
+ },
+ {
+ "id": 38823,
+ "start": 17435.36,
+ "end": 17435.58,
+ "text": "and"
+ },
+ {
+ "id": 38824,
+ "start": 17435.58,
+ "end": 17435.74,
+ "text": "you"
+ },
+ {
+ "id": 38825,
+ "start": 17435.74,
+ "end": 17436,
+ "text": "open"
+ },
+ {
+ "id": 38826,
+ "start": 17436,
+ "end": 17436.12,
+ "text": "up"
+ },
+ {
+ "id": 38827,
+ "start": 17436.12,
+ "end": 17436.62,
+ "text": "the"
+ },
+ {
+ "id": 38828,
+ "start": 17436.62,
+ "end": 17437.28,
+ "text": "article"
+ },
+ {
+ "id": 38829,
+ "start": 17437.28,
+ "end": 17437.34,
+ "text": "in"
+ },
+ {
+ "id": 38830,
+ "start": 17437.34,
+ "end": 17437.44,
+ "text": "the"
+ },
+ {
+ "id": 38831,
+ "start": 17437.44,
+ "end": 17437.66,
+ "text": "Denver"
+ },
+ {
+ "id": 38832,
+ "start": 17437.66,
+ "end": 17437.84,
+ "text": "Post"
+ },
+ {
+ "id": 38833,
+ "start": 17437.84,
+ "end": 17437.94,
+ "text": "and"
+ },
+ {
+ "id": 38834,
+ "start": 17437.94,
+ "end": 17438.02,
+ "text": "it"
+ },
+ {
+ "id": 38835,
+ "start": 17438.02,
+ "end": 17438.16,
+ "text": "has"
+ },
+ {
+ "id": 38836,
+ "start": 17438.16,
+ "end": 17438.24,
+ "text": "a"
+ },
+ {
+ "id": 38837,
+ "start": 17438.24,
+ "end": 17438.72,
+ "text": "Facebook"
+ },
+ {
+ "id": 38838,
+ "start": 17438.72,
+ "end": 17439.46,
+ "text": "button"
+ },
+ {
+ "id": 38839,
+ "start": 17439.46,
+ "end": 17439.56,
+ "text": "on"
+ },
+ {
+ "id": 38840,
+ "start": 17439.56,
+ "end": 17439.66,
+ "text": "it."
+ },
+ {
+ "id": 38841,
+ "start": 17439.66,
+ "end": 17440.24,
+ "text": "You"
+ },
+ {
+ "id": 38842,
+ "start": 17440.24,
+ "end": 17440.52,
+ "text": "think"
+ },
+ {
+ "id": 38843,
+ "start": 17440.52,
+ "end": 17441.28,
+ "text": "they"
+ },
+ {
+ "id": 38844,
+ "start": 17441.28,
+ "end": 17441.56,
+ "text": "know"
+ },
+ {
+ "id": 38845,
+ "start": 17441.56,
+ "end": 17442.18,
+ "text": "consumers"
+ },
+ {
+ "id": 38846,
+ "start": 17442.18,
+ "end": 17442.54,
+ "text": "users"
+ },
+ {
+ "id": 38847,
+ "start": 17442.54,
+ "end": 17442.78,
+ "text": "know"
+ },
+ {
+ "id": 38848,
+ "start": 17442.78,
+ "end": 17443.72,
+ "text": "that"
+ },
+ {
+ "id": 38849,
+ "start": 17443.72,
+ "end": 17444.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 38850,
+ "start": 17444.26,
+ "end": 17444.46,
+ "text": "now"
+ },
+ {
+ "id": 38851,
+ "start": 17444.46,
+ "end": 17444.7,
+ "text": "knows"
+ },
+ {
+ "id": 38852,
+ "start": 17444.7,
+ "end": 17444.88,
+ "text": "what"
+ },
+ {
+ "id": 38853,
+ "start": 17444.88,
+ "end": 17445.22,
+ "text": "article"
+ },
+ {
+ "id": 38854,
+ "start": 17445.22,
+ "end": 17445.46,
+ "text": "you're"
+ },
+ {
+ "id": 38855,
+ "start": 17445.46,
+ "end": 17445.68,
+ "text": "reading"
+ },
+ {
+ "id": 38856,
+ "start": 17445.68,
+ "end": 17445.82,
+ "text": "the"
+ },
+ {
+ "id": 38857,
+ "start": 17445.82,
+ "end": 17446.04,
+ "text": "Denver"
+ },
+ {
+ "id": 38858,
+ "start": 17446.04,
+ "end": 17447.06,
+ "text": "Post?"
+ },
+ {
+ "id": 38859,
+ "start": 17447.06,
+ "end": 17448.12,
+ "text": "Well,"
+ },
+ {
+ "id": 38860,
+ "start": 17448.12,
+ "end": 17448.94,
+ "text": "we"
+ },
+ {
+ "id": 38861,
+ "start": 17448.94,
+ "end": 17449.16,
+ "text": "would"
+ },
+ {
+ "id": 38862,
+ "start": 17449.16,
+ "end": 17449.44,
+ "text": "need"
+ },
+ {
+ "id": 38863,
+ "start": 17449.44,
+ "end": 17450.08,
+ "text": "to"
+ },
+ {
+ "id": 38864,
+ "start": 17450.08,
+ "end": 17451.04,
+ "text": "have"
+ },
+ {
+ "id": 38865,
+ "start": 17451.04,
+ "end": 17451.2,
+ "text": "that"
+ },
+ {
+ "id": 38866,
+ "start": 17451.2,
+ "end": 17451.3,
+ "text": "in"
+ },
+ {
+ "id": 38867,
+ "start": 17451.3,
+ "end": 17451.54,
+ "text": "order"
+ },
+ {
+ "id": 38868,
+ "start": 17451.54,
+ "end": 17451.64,
+ "text": "to"
+ },
+ {
+ "id": 38869,
+ "start": 17451.64,
+ "end": 17452.02,
+ "text": "serve"
+ },
+ {
+ "id": 38870,
+ "start": 17452.02,
+ "end": 17452.2,
+ "text": "up"
+ },
+ {
+ "id": 38871,
+ "start": 17452.2,
+ "end": 17453.28,
+ "text": "the"
+ },
+ {
+ "id": 38872,
+ "start": 17453.28,
+ "end": 17453.58,
+ "text": "like"
+ },
+ {
+ "id": 38873,
+ "start": 17453.58,
+ "end": 17453.82,
+ "text": "button"
+ },
+ {
+ "id": 38874,
+ "start": 17453.82,
+ "end": 17453.94,
+ "text": "and"
+ },
+ {
+ "id": 38875,
+ "start": 17453.94,
+ "end": 17454.2,
+ "text": "show"
+ },
+ {
+ "id": 38876,
+ "start": 17454.2,
+ "end": 17454.32,
+ "text": "you"
+ },
+ {
+ "id": 38877,
+ "start": 17454.32,
+ "end": 17454.44,
+ "text": "who"
+ },
+ {
+ "id": 38878,
+ "start": 17454.44,
+ "end": 17454.62,
+ "text": "your"
+ },
+ {
+ "id": 38879,
+ "start": 17454.62,
+ "end": 17454.9,
+ "text": "friends"
+ },
+ {
+ "id": 38880,
+ "start": 17454.9,
+ "end": 17455.1,
+ "text": "were."
+ },
+ {
+ "id": 38881,
+ "start": 17455.1,
+ "end": 17455.22,
+ "text": "Who"
+ },
+ {
+ "id": 38882,
+ "start": 17455.22,
+ "end": 17455.36,
+ "text": "would"
+ },
+ {
+ "id": 38883,
+ "start": 17455.36,
+ "end": 17455.62,
+ "text": "also"
+ },
+ {
+ "id": 38884,
+ "start": 17455.62,
+ "end": 17455.8,
+ "text": "like"
+ },
+ {
+ "id": 38885,
+ "start": 17455.8,
+ "end": 17456.28,
+ "text": "that."
+ },
+ {
+ "id": 38886,
+ "start": 17456.28,
+ "end": 17457.28,
+ "text": "So"
+ },
+ {
+ "id": 38887,
+ "start": 17457.28,
+ "end": 17457.96,
+ "text": "I"
+ },
+ {
+ "id": 38888,
+ "start": 17457.96,
+ "end": 17458.12,
+ "text": "think"
+ },
+ {
+ "id": 38889,
+ "start": 17458.12,
+ "end": 17458.24,
+ "text": "that"
+ },
+ {
+ "id": 38890,
+ "start": 17458.24,
+ "end": 17458.38,
+ "text": "goes"
+ },
+ {
+ "id": 38891,
+ "start": 17458.38,
+ "end": 17458.46,
+ "text": "to"
+ },
+ {
+ "id": 38892,
+ "start": 17458.46,
+ "end": 17458.54,
+ "text": "the"
+ },
+ {
+ "id": 38893,
+ "start": 17458.54,
+ "end": 17458.68,
+ "text": "heart"
+ },
+ {
+ "id": 38894,
+ "start": 17458.68,
+ "end": 17458.76,
+ "text": "of"
+ },
+ {
+ "id": 38895,
+ "start": 17458.76,
+ "end": 17458.9,
+ "text": "this"
+ },
+ {
+ "id": 38896,
+ "start": 17458.9,
+ "end": 17459.56,
+ "text": "expectation"
+ },
+ {
+ "id": 38897,
+ "start": 17459.56,
+ "end": 17459.74,
+ "text": "gap"
+ },
+ {
+ "id": 38898,
+ "start": 17459.74,
+ "end": 17459.96,
+ "text": "because"
+ },
+ {
+ "id": 38899,
+ "start": 17459.96,
+ "end": 17460.02,
+ "text": "I"
+ },
+ {
+ "id": 38900,
+ "start": 17460.02,
+ "end": 17460.2,
+ "text": "don't"
+ },
+ {
+ "id": 38901,
+ "start": 17460.2,
+ "end": 17460.42,
+ "text": "think"
+ },
+ {
+ "id": 38902,
+ "start": 17460.42,
+ "end": 17461.57,
+ "text": "consumers"
+ },
+ {
+ "id": 38903,
+ "start": 17461.57,
+ "end": 17462.35,
+ "text": "necessarily"
+ },
+ {
+ "id": 38904,
+ "start": 17462.35,
+ "end": 17462.83,
+ "text": "understand"
+ },
+ {
+ "id": 38905,
+ "start": 17462.83,
+ "end": 17462.97,
+ "text": "that"
+ },
+ {
+ "id": 38906,
+ "start": 17462.97,
+ "end": 17463.73,
+ "text": "and"
+ },
+ {
+ "id": 38907,
+ "start": 17463.73,
+ "end": 17463.93,
+ "text": "going"
+ },
+ {
+ "id": 38908,
+ "start": 17463.93,
+ "end": 17464.11,
+ "text": "through"
+ },
+ {
+ "id": 38909,
+ "start": 17464.11,
+ "end": 17464.23,
+ "text": "this"
+ },
+ {
+ "id": 38910,
+ "start": 17464.23,
+ "end": 17464.39,
+ "text": "user"
+ },
+ {
+ "id": 38911,
+ "start": 17464.39,
+ "end": 17464.69,
+ "text": "agreement"
+ },
+ {
+ "id": 38912,
+ "start": 17464.69,
+ "end": 17464.83,
+ "text": "as"
+ },
+ {
+ "id": 38913,
+ "start": 17464.83,
+ "end": 17465.13,
+ "text": "others."
+ },
+ {
+ "id": 38914,
+ "start": 17465.13,
+ "end": 17465.55,
+ "text": "Have"
+ },
+ {
+ "id": 38915,
+ "start": 17465.55,
+ "end": 17465.95,
+ "text": "you"
+ },
+ {
+ "id": 38916,
+ "start": 17465.95,
+ "end": 17466.11,
+ "text": "do"
+ },
+ {
+ "id": 38917,
+ "start": 17466.11,
+ "end": 17466.27,
+ "text": "need"
+ },
+ {
+ "id": 38918,
+ "start": 17466.27,
+ "end": 17466.35,
+ "text": "a"
+ },
+ {
+ "id": 38919,
+ "start": 17466.35,
+ "end": 17466.71,
+ "text": "lawyer"
+ },
+ {
+ "id": 38920,
+ "start": 17466.71,
+ "end": 17467.15,
+ "text": "to"
+ },
+ {
+ "id": 38921,
+ "start": 17467.15,
+ "end": 17467.53,
+ "text": "understand"
+ },
+ {
+ "id": 38922,
+ "start": 17467.53,
+ "end": 17467.67,
+ "text": "and"
+ },
+ {
+ "id": 38923,
+ "start": 17467.67,
+ "end": 17467.73,
+ "text": "I"
+ },
+ {
+ "id": 38924,
+ "start": 17467.73,
+ "end": 17467.91,
+ "text": "hope"
+ },
+ {
+ "id": 38925,
+ "start": 17467.91,
+ "end": 17468.07,
+ "text": "that"
+ },
+ {
+ "id": 38926,
+ "start": 17468.07,
+ "end": 17468.17,
+ "text": "you"
+ },
+ {
+ "id": 38927,
+ "start": 17468.17,
+ "end": 17468.33,
+ "text": "can"
+ },
+ {
+ "id": 38928,
+ "start": 17468.33,
+ "end": 17468.95,
+ "text": "close"
+ },
+ {
+ "id": 38929,
+ "start": 17468.95,
+ "end": 17469.15,
+ "text": "that"
+ },
+ {
+ "id": 38930,
+ "start": 17469.15,
+ "end": 17469.95,
+ "text": "expectation"
+ },
+ {
+ "id": 38931,
+ "start": 17469.95,
+ "end": 17470.21,
+ "text": "gap"
+ },
+ {
+ "id": 38932,
+ "start": 17470.21,
+ "end": 17470.43,
+ "text": "by"
+ },
+ {
+ "id": 38933,
+ "start": 17470.43,
+ "end": 17471.37,
+ "text": "simplifying"
+ },
+ {
+ "id": 38934,
+ "start": 17471.37,
+ "end": 17471.53,
+ "text": "the"
+ },
+ {
+ "id": 38935,
+ "start": 17471.53,
+ "end": 17471.81,
+ "text": "user"
+ },
+ {
+ "id": 38936,
+ "start": 17471.81,
+ "end": 17472.23,
+ "text": "agreement"
+ },
+ {
+ "id": 38937,
+ "start": 17472.23,
+ "end": 17472.47,
+ "text": "making"
+ },
+ {
+ "id": 38938,
+ "start": 17472.47,
+ "end": 17472.63,
+ "text": "sure"
+ },
+ {
+ "id": 38939,
+ "start": 17472.63,
+ "end": 17472.77,
+ "text": "that"
+ },
+ {
+ "id": 38940,
+ "start": 17472.77,
+ "end": 17472.95,
+ "text": "people"
+ },
+ {
+ "id": 38941,
+ "start": 17472.95,
+ "end": 17473.31,
+ "text": "understand"
+ },
+ {
+ "id": 38942,
+ "start": 17473.31,
+ "end": 17473.45,
+ "text": "the"
+ },
+ {
+ "id": 38943,
+ "start": 17473.45,
+ "end": 17473.83,
+ "text": "privacy."
+ },
+ {
+ "id": 38944,
+ "start": 17473.83,
+ "end": 17474.15,
+ "text": "Has"
+ },
+ {
+ "id": 38945,
+ "start": 17474.15,
+ "end": 17474.35,
+ "text": "there"
+ },
+ {
+ "id": 38946,
+ "start": 17474.35,
+ "end": 17474.55,
+ "text": "ever"
+ },
+ {
+ "id": 38947,
+ "start": 17474.55,
+ "end": 17474.73,
+ "text": "been"
+ },
+ {
+ "id": 38948,
+ "start": 17474.73,
+ "end": 17474.89,
+ "text": "a"
+ },
+ {
+ "id": 38949,
+ "start": 17474.89,
+ "end": 17475.35,
+ "text": "violation"
+ },
+ {
+ "id": 38950,
+ "start": 17475.35,
+ "end": 17475.67,
+ "text": "outside"
+ },
+ {
+ "id": 38951,
+ "start": 17475.67,
+ "end": 17475.75,
+ "text": "of"
+ },
+ {
+ "id": 38952,
+ "start": 17475.75,
+ "end": 17476.54,
+ "text": "the"
+ },
+ {
+ "id": 38953,
+ "start": 17476.54,
+ "end": 17477.54,
+ "text": "talk"
+ },
+ {
+ "id": 38954,
+ "start": 17477.54,
+ "end": 17477.72,
+ "text": "about"
+ },
+ {
+ "id": 38955,
+ "start": 17477.72,
+ "end": 17478.08,
+ "text": "Cambridge"
+ },
+ {
+ "id": 38956,
+ "start": 17478.08,
+ "end": 17478.64,
+ "text": "Analytica"
+ },
+ {
+ "id": 38957,
+ "start": 17478.64,
+ "end": 17479.7,
+ "text": "about"
+ },
+ {
+ "id": 38958,
+ "start": 17479.7,
+ "end": 17480.78,
+ "text": "the"
+ },
+ {
+ "id": 38959,
+ "start": 17480.78,
+ "end": 17481.28,
+ "text": "privacy"
+ },
+ {
+ "id": 38960,
+ "start": 17481.28,
+ "end": 17481.64,
+ "text": "settings"
+ },
+ {
+ "id": 38961,
+ "start": 17481.64,
+ "end": 17481.82,
+ "text": "has"
+ },
+ {
+ "id": 38962,
+ "start": 17481.82,
+ "end": 17481.96,
+ "text": "a"
+ },
+ {
+ "id": 38963,
+ "start": 17481.96,
+ "end": 17482.42,
+ "text": "privacy"
+ },
+ {
+ "id": 38964,
+ "start": 17482.42,
+ "end": 17482.74,
+ "text": "setting"
+ },
+ {
+ "id": 38965,
+ "start": 17482.74,
+ "end": 17483.18,
+ "text": "violation"
+ },
+ {
+ "id": 38966,
+ "start": 17483.18,
+ "end": 17483.44,
+ "text": "ever"
+ },
+ {
+ "id": 38967,
+ "start": 17483.44,
+ "end": 17483.72,
+ "text": "occurred"
+ },
+ {
+ "id": 38968,
+ "start": 17483.72,
+ "end": 17484.02,
+ "text": "outside"
+ },
+ {
+ "id": 38969,
+ "start": 17484.02,
+ "end": 17484.1,
+ "text": "of"
+ },
+ {
+ "id": 38970,
+ "start": 17484.1,
+ "end": 17484.46,
+ "text": "Cambridge"
+ },
+ {
+ "id": 38971,
+ "start": 17484.46,
+ "end": 17486.64,
+ "text": "analytical"
+ },
+ {
+ "id": 38972,
+ "start": 17486.64,
+ "end": 17487.64,
+ "text": "I'm"
+ },
+ {
+ "id": 38973,
+ "start": 17487.64,
+ "end": 17488.02,
+ "text": "not"
+ },
+ {
+ "id": 38974,
+ "start": 17488.02,
+ "end": 17488.64,
+ "text": "aware"
+ },
+ {
+ "id": 38975,
+ "start": 17488.64,
+ "end": 17489.2,
+ "text": "that"
+ },
+ {
+ "id": 38976,
+ "start": 17489.2,
+ "end": 17489.7,
+ "text": "we"
+ },
+ {
+ "id": 38977,
+ "start": 17489.7,
+ "end": 17489.88,
+ "text": "have"
+ },
+ {
+ "id": 38978,
+ "start": 17489.88,
+ "end": 17490.12,
+ "text": "had"
+ },
+ {
+ "id": 38979,
+ "start": 17490.12,
+ "end": 17490.72,
+ "text": "systems"
+ },
+ {
+ "id": 38980,
+ "start": 17490.72,
+ "end": 17490.98,
+ "text": "that"
+ },
+ {
+ "id": 38981,
+ "start": 17490.98,
+ "end": 17491.3,
+ "text": "have"
+ },
+ {
+ "id": 38982,
+ "start": 17491.3,
+ "end": 17491.94,
+ "text": "so"
+ },
+ {
+ "id": 38983,
+ "start": 17491.94,
+ "end": 17492.08,
+ "text": "the"
+ },
+ {
+ "id": 38984,
+ "start": 17492.08,
+ "end": 17492.4,
+ "text": "price"
+ },
+ {
+ "id": 38985,
+ "start": 17492.4,
+ "end": 17492.52,
+ "text": "I'm"
+ },
+ {
+ "id": 38986,
+ "start": 17492.52,
+ "end": 17492.8,
+ "text": "cutting"
+ },
+ {
+ "id": 38987,
+ "start": 17492.8,
+ "end": 17493.16,
+ "text": "a"
+ },
+ {
+ "id": 38988,
+ "start": 17493.16,
+ "end": 17493.8,
+ "text": "consumer"
+ },
+ {
+ "id": 38989,
+ "start": 17493.8,
+ "end": 17494.34,
+ "text": "user"
+ },
+ {
+ "id": 38990,
+ "start": 17494.34,
+ "end": 17494.94,
+ "text": "users"
+ },
+ {
+ "id": 38991,
+ "start": 17494.94,
+ "end": 17495.12,
+ "text": "have"
+ },
+ {
+ "id": 38992,
+ "start": 17495.12,
+ "end": 17495.42,
+ "text": "always"
+ },
+ {
+ "id": 38993,
+ "start": 17495.42,
+ "end": 17495.6,
+ "text": "been"
+ },
+ {
+ "id": 38994,
+ "start": 17495.6,
+ "end": 17496,
+ "text": "respected"
+ },
+ {
+ "id": 38995,
+ "start": 17496,
+ "end": 17496.22,
+ "text": "there's"
+ },
+ {
+ "id": 38996,
+ "start": 17496.22,
+ "end": 17496.38,
+ "text": "never"
+ },
+ {
+ "id": 38997,
+ "start": 17496.38,
+ "end": 17496.52,
+ "text": "been"
+ },
+ {
+ "id": 38998,
+ "start": 17496.52,
+ "end": 17496.6,
+ "text": "an"
+ },
+ {
+ "id": 38999,
+ "start": 17496.6,
+ "end": 17496.92,
+ "text": "instance"
+ },
+ {
+ "id": 39000,
+ "start": 17496.92,
+ "end": 17497.18,
+ "text": "where"
+ },
+ {
+ "id": 39001,
+ "start": 17497.18,
+ "end": 17497.92,
+ "text": "those"
+ },
+ {
+ "id": 39002,
+ "start": 17497.92,
+ "end": 17498.42,
+ "text": "privacy"
+ },
+ {
+ "id": 39003,
+ "start": 17498.42,
+ "end": 17498.76,
+ "text": "settings"
+ },
+ {
+ "id": 39004,
+ "start": 17498.76,
+ "end": 17499,
+ "text": "have"
+ },
+ {
+ "id": 39005,
+ "start": 17499,
+ "end": 17499.18,
+ "text": "been"
+ },
+ {
+ "id": 39006,
+ "start": 17499.18,
+ "end": 17500.33,
+ "text": "violated"
+ },
+ {
+ "id": 39007,
+ "start": 17500.33,
+ "end": 17501.19,
+ "text": "that's"
+ },
+ {
+ "id": 39008,
+ "start": 17501.19,
+ "end": 17501.43,
+ "text": "my"
+ },
+ {
+ "id": 39009,
+ "start": 17501.43,
+ "end": 17501.91,
+ "text": "understanding."
+ },
+ {
+ "id": 39010,
+ "start": 17501.91,
+ "end": 17501.95,
+ "text": "I"
+ },
+ {
+ "id": 39011,
+ "start": 17501.95,
+ "end": 17502.09,
+ "text": "mean,"
+ },
+ {
+ "id": 39012,
+ "start": 17502.09,
+ "end": 17502.21,
+ "text": "this"
+ },
+ {
+ "id": 39013,
+ "start": 17502.21,
+ "end": 17502.33,
+ "text": "is"
+ },
+ {
+ "id": 39014,
+ "start": 17502.33,
+ "end": 17502.47,
+ "text": "the"
+ },
+ {
+ "id": 39015,
+ "start": 17502.47,
+ "end": 17502.75,
+ "text": "core"
+ },
+ {
+ "id": 39016,
+ "start": 17502.75,
+ "end": 17502.97,
+ "text": "thing"
+ },
+ {
+ "id": 39017,
+ "start": 17502.97,
+ "end": 17503.11,
+ "text": "that"
+ },
+ {
+ "id": 39018,
+ "start": 17503.11,
+ "end": 17503.25,
+ "text": "our"
+ },
+ {
+ "id": 39019,
+ "start": 17503.25,
+ "end": 17503.59,
+ "text": "company"
+ },
+ {
+ "id": 39020,
+ "start": 17503.59,
+ "end": 17503.91,
+ "text": "does"
+ },
+ {
+ "id": 39021,
+ "start": 17503.91,
+ "end": 17504.57,
+ "text": "is"
+ },
+ {
+ "id": 39022,
+ "start": 17504.57,
+ "end": 17504.79,
+ "text": "you"
+ },
+ {
+ "id": 39023,
+ "start": 17504.79,
+ "end": 17504.95,
+ "text": "come"
+ },
+ {
+ "id": 39024,
+ "start": 17504.95,
+ "end": 17505.07,
+ "text": "to"
+ },
+ {
+ "id": 39025,
+ "start": 17505.07,
+ "end": 17505.53,
+ "text": "Facebook,"
+ },
+ {
+ "id": 39026,
+ "start": 17505.53,
+ "end": 17505.73,
+ "text": "you"
+ },
+ {
+ "id": 39027,
+ "start": 17505.73,
+ "end": 17506.19,
+ "text": "say,"
+ },
+ {
+ "id": 39028,
+ "start": 17506.19,
+ "end": 17506.33,
+ "text": "hey,"
+ },
+ {
+ "id": 39029,
+ "start": 17506.33,
+ "end": 17506.39,
+ "text": "I"
+ },
+ {
+ "id": 39030,
+ "start": 17506.39,
+ "end": 17506.55,
+ "text": "want"
+ },
+ {
+ "id": 39031,
+ "start": 17506.55,
+ "end": 17506.63,
+ "text": "to"
+ },
+ {
+ "id": 39032,
+ "start": 17506.63,
+ "end": 17506.79,
+ "text": "share"
+ },
+ {
+ "id": 39033,
+ "start": 17506.79,
+ "end": 17507.01,
+ "text": "this"
+ },
+ {
+ "id": 39034,
+ "start": 17507.01,
+ "end": 17507.35,
+ "text": "photo,"
+ },
+ {
+ "id": 39035,
+ "start": 17507.35,
+ "end": 17507.49,
+ "text": "or"
+ },
+ {
+ "id": 39036,
+ "start": 17507.49,
+ "end": 17507.55,
+ "text": "I"
+ },
+ {
+ "id": 39037,
+ "start": 17507.55,
+ "end": 17507.73,
+ "text": "want"
+ },
+ {
+ "id": 39038,
+ "start": 17507.73,
+ "end": 17507.81,
+ "text": "to"
+ },
+ {
+ "id": 39039,
+ "start": 17507.81,
+ "end": 17508.25,
+ "text": "understand"
+ },
+ {
+ "id": 39040,
+ "start": 17508.25,
+ "end": 17508.57,
+ "text": "send"
+ },
+ {
+ "id": 39041,
+ "start": 17508.57,
+ "end": 17508.73,
+ "text": "this"
+ },
+ {
+ "id": 39042,
+ "start": 17508.73,
+ "end": 17509.09,
+ "text": "message"
+ },
+ {
+ "id": 39043,
+ "start": 17509.09,
+ "end": 17509.19,
+ "text": "to"
+ },
+ {
+ "id": 39044,
+ "start": 17509.19,
+ "end": 17509.43,
+ "text": "these"
+ },
+ {
+ "id": 39045,
+ "start": 17509.43,
+ "end": 17509.73,
+ "text": "people."
+ },
+ {
+ "id": 39046,
+ "start": 17509.73,
+ "end": 17510.63,
+ "text": "He"
+ },
+ {
+ "id": 39047,
+ "start": 17510.63,
+ "end": 17511.43,
+ "text": "has"
+ },
+ {
+ "id": 39048,
+ "start": 17511.43,
+ "end": 17511.63,
+ "text": "ever"
+ },
+ {
+ "id": 39049,
+ "start": 17511.63,
+ "end": 17511.79,
+ "text": "been"
+ },
+ {
+ "id": 39050,
+ "start": 17511.79,
+ "end": 17511.85,
+ "text": "a"
+ },
+ {
+ "id": 39051,
+ "start": 17511.85,
+ "end": 17512.13,
+ "text": "breach"
+ },
+ {
+ "id": 39052,
+ "start": 17512.13,
+ "end": 17512.89,
+ "text": "of"
+ },
+ {
+ "id": 39053,
+ "start": 17512.89,
+ "end": 17513.61,
+ "text": "Facebook"
+ },
+ {
+ "id": 39054,
+ "start": 17513.61,
+ "end": 17514.54,
+ "text": "data."
+ },
+ {
+ "id": 39055,
+ "start": 17514.54,
+ "end": 17515.32,
+ "text": "The"
+ },
+ {
+ "id": 39056,
+ "start": 17515.32,
+ "end": 17520.22,
+ "text": "heck"
+ },
+ {
+ "id": 39057,
+ "start": 17520.22,
+ "end": 17521.22,
+ "text": "there"
+ },
+ {
+ "id": 39058,
+ "start": 17521.22,
+ "end": 17521.46,
+ "text": "have"
+ },
+ {
+ "id": 39059,
+ "start": 17521.46,
+ "end": 17522.42,
+ "text": "been."
+ },
+ {
+ "id": 39060,
+ "start": 17522.42,
+ "end": 17522.82,
+ "text": "I"
+ },
+ {
+ "id": 39061,
+ "start": 17522.82,
+ "end": 17523.34,
+ "text": "don't"
+ },
+ {
+ "id": 39062,
+ "start": 17523.34,
+ "end": 17523.62,
+ "text": "believe"
+ },
+ {
+ "id": 39063,
+ "start": 17523.62,
+ "end": 17523.74,
+ "text": "that"
+ },
+ {
+ "id": 39064,
+ "start": 17523.74,
+ "end": 17523.9,
+ "text": "there"
+ },
+ {
+ "id": 39065,
+ "start": 17523.9,
+ "end": 17524.04,
+ "text": "has"
+ },
+ {
+ "id": 39066,
+ "start": 17524.04,
+ "end": 17524.3,
+ "text": "been"
+ },
+ {
+ "id": 39067,
+ "start": 17524.3,
+ "end": 17524.46,
+ "text": "a"
+ },
+ {
+ "id": 39068,
+ "start": 17524.46,
+ "end": 17524.86,
+ "text": "breach"
+ },
+ {
+ "id": 39069,
+ "start": 17524.86,
+ "end": 17525.08,
+ "text": "of"
+ },
+ {
+ "id": 39070,
+ "start": 17525.08,
+ "end": 17525.48,
+ "text": "data"
+ },
+ {
+ "id": 39071,
+ "start": 17525.48,
+ "end": 17525.66,
+ "text": "that"
+ },
+ {
+ "id": 39072,
+ "start": 17525.66,
+ "end": 17525.78,
+ "text": "we"
+ },
+ {
+ "id": 39073,
+ "start": 17525.78,
+ "end": 17525.92,
+ "text": "are"
+ },
+ {
+ "id": 39074,
+ "start": 17525.92,
+ "end": 17526.2,
+ "text": "aware"
+ },
+ {
+ "id": 39075,
+ "start": 17526.2,
+ "end": 17526.44,
+ "text": "has"
+ },
+ {
+ "id": 39076,
+ "start": 17526.44,
+ "end": 17526.66,
+ "text": "ever"
+ },
+ {
+ "id": 39077,
+ "start": 17526.66,
+ "end": 17526.8,
+ "text": "been"
+ },
+ {
+ "id": 39078,
+ "start": 17526.8,
+ "end": 17526.86,
+ "text": "to"
+ },
+ {
+ "id": 39079,
+ "start": 17526.86,
+ "end": 17527.04,
+ "text": "hack."
+ },
+ {
+ "id": 39080,
+ "start": 17527.04,
+ "end": 17528.2,
+ "text": "Yes,"
+ },
+ {
+ "id": 39081,
+ "start": 17528.2,
+ "end": 17529.16,
+ "text": "and"
+ },
+ {
+ "id": 39082,
+ "start": 17529.16,
+ "end": 17529.34,
+ "text": "have"
+ },
+ {
+ "id": 39083,
+ "start": 17529.34,
+ "end": 17529.54,
+ "text": "those"
+ },
+ {
+ "id": 39084,
+ "start": 17529.54,
+ "end": 17529.9,
+ "text": "hacks"
+ },
+ {
+ "id": 39085,
+ "start": 17529.9,
+ "end": 17530.68,
+ "text": "access"
+ },
+ {
+ "id": 39086,
+ "start": 17530.68,
+ "end": 17530.98,
+ "text": "user"
+ },
+ {
+ "id": 39087,
+ "start": 17530.98,
+ "end": 17531.24,
+ "text": "data."
+ },
+ {
+ "id": 39088,
+ "start": 17531.24,
+ "end": 17531.92,
+ "text": "I"
+ },
+ {
+ "id": 39089,
+ "start": 17531.92,
+ "end": 17532.12,
+ "text": "don't"
+ },
+ {
+ "id": 39090,
+ "start": 17532.12,
+ "end": 17532.44,
+ "text": "believe"
+ },
+ {
+ "id": 39091,
+ "start": 17532.44,
+ "end": 17532.66,
+ "text": "so"
+ },
+ {
+ "id": 39092,
+ "start": 17532.66,
+ "end": 17532.72,
+ "text": "I"
+ },
+ {
+ "id": 39093,
+ "start": 17532.72,
+ "end": 17532.99,
+ "text": "think"
+ },
+ {
+ "id": 39094,
+ "start": 17532.99,
+ "end": 17533.19,
+ "text": "we"
+ },
+ {
+ "id": 39095,
+ "start": 17533.19,
+ "end": 17533.75,
+ "text": "had"
+ },
+ {
+ "id": 39096,
+ "start": 17533.75,
+ "end": 17533.93,
+ "text": "an"
+ },
+ {
+ "id": 39097,
+ "start": 17533.93,
+ "end": 17534.39,
+ "text": "instance"
+ },
+ {
+ "id": 39098,
+ "start": 17534.39,
+ "end": 17534.75,
+ "text": "back"
+ },
+ {
+ "id": 39099,
+ "start": 17534.75,
+ "end": 17534.87,
+ "text": "in"
+ },
+ {
+ "id": 39100,
+ "start": 17534.87,
+ "end": 17535.23,
+ "text": "20"
+ },
+ {
+ "id": 39101,
+ "start": 17535.23,
+ "end": 17535.83,
+ "text": "13"
+ },
+ {
+ "id": 39102,
+ "start": 17535.83,
+ "end": 17536.59,
+ "text": "where"
+ },
+ {
+ "id": 39103,
+ "start": 17536.59,
+ "end": 17537.05,
+ "text": "someone"
+ },
+ {
+ "id": 39104,
+ "start": 17537.05,
+ "end": 17537.27,
+ "text": "was"
+ },
+ {
+ "id": 39105,
+ "start": 17537.27,
+ "end": 17537.49,
+ "text": "able"
+ },
+ {
+ "id": 39106,
+ "start": 17537.49,
+ "end": 17537.61,
+ "text": "to"
+ },
+ {
+ "id": 39107,
+ "start": 17537.61,
+ "end": 17538.01,
+ "text": "install"
+ },
+ {
+ "id": 39108,
+ "start": 17538.01,
+ "end": 17538.33,
+ "text": "some"
+ },
+ {
+ "id": 39109,
+ "start": 17538.33,
+ "end": 17538.81,
+ "text": "malware"
+ },
+ {
+ "id": 39110,
+ "start": 17538.81,
+ "end": 17539.73,
+ "text": "on"
+ },
+ {
+ "id": 39111,
+ "start": 17539.73,
+ "end": 17539.89,
+ "text": "a"
+ },
+ {
+ "id": 39112,
+ "start": 17539.89,
+ "end": 17540.11,
+ "text": "few"
+ },
+ {
+ "id": 39113,
+ "start": 17540.11,
+ "end": 17540.73,
+ "text": "employees"
+ },
+ {
+ "id": 39114,
+ "start": 17540.73,
+ "end": 17541.83,
+ "text": "computers"
+ },
+ {
+ "id": 39115,
+ "start": 17541.83,
+ "end": 17542.05,
+ "text": "and"
+ },
+ {
+ "id": 39116,
+ "start": 17542.05,
+ "end": 17542.23,
+ "text": "had"
+ },
+ {
+ "id": 39117,
+ "start": 17542.23,
+ "end": 17542.67,
+ "text": "access"
+ },
+ {
+ "id": 39118,
+ "start": 17542.67,
+ "end": 17543.56,
+ "text": "to"
+ },
+ {
+ "id": 39119,
+ "start": 17543.56,
+ "end": 17544.34,
+ "text": "some"
+ },
+ {
+ "id": 39120,
+ "start": 17544.34,
+ "end": 17544.42,
+ "text": "of"
+ },
+ {
+ "id": 39121,
+ "start": 17544.42,
+ "end": 17544.54,
+ "text": "the"
+ },
+ {
+ "id": 39122,
+ "start": 17544.54,
+ "end": 17544.8,
+ "text": "content"
+ },
+ {
+ "id": 39123,
+ "start": 17544.8,
+ "end": 17544.94,
+ "text": "on"
+ },
+ {
+ "id": 39124,
+ "start": 17544.94,
+ "end": 17545.16,
+ "text": "their"
+ },
+ {
+ "id": 39125,
+ "start": 17545.16,
+ "end": 17545.68,
+ "text": "computers."
+ },
+ {
+ "id": 39126,
+ "start": 17545.68,
+ "end": 17546.52,
+ "text": "But"
+ },
+ {
+ "id": 39127,
+ "start": 17546.52,
+ "end": 17546.7,
+ "text": "I"
+ },
+ {
+ "id": 39128,
+ "start": 17546.7,
+ "end": 17547.02,
+ "text": "don't"
+ },
+ {
+ "id": 39129,
+ "start": 17547.02,
+ "end": 17547.32,
+ "text": "er,"
+ },
+ {
+ "id": 39130,
+ "start": 17547.32,
+ "end": 17547.5,
+ "text": "I"
+ },
+ {
+ "id": 39131,
+ "start": 17547.5,
+ "end": 17547.62,
+ "text": "had"
+ },
+ {
+ "id": 39132,
+ "start": 17547.62,
+ "end": 17547.78,
+ "text": "a"
+ },
+ {
+ "id": 39133,
+ "start": 17547.78,
+ "end": 17548.08,
+ "text": "user"
+ },
+ {
+ "id": 39134,
+ "start": 17548.08,
+ "end": 17548.34,
+ "text": "data"
+ },
+ {
+ "id": 39135,
+ "start": 17548.34,
+ "end": 17548.58,
+ "text": "page"
+ },
+ {
+ "id": 39136,
+ "start": 17548.58,
+ "end": 17549.3,
+ "text": "never"
+ },
+ {
+ "id": 39137,
+ "start": 17549.3,
+ "end": 17549.62,
+ "text": "affected"
+ },
+ {
+ "id": 39138,
+ "start": 17549.62,
+ "end": 17549.72,
+ "text": "the"
+ },
+ {
+ "id": 39139,
+ "start": 17549.72,
+ "end": 17549.98,
+ "text": "user"
+ },
+ {
+ "id": 39140,
+ "start": 17549.98,
+ "end": 17550.2,
+ "text": "page."
+ },
+ {
+ "id": 39141,
+ "start": 17550.2,
+ "end": 17550.46,
+ "text": "I"
+ },
+ {
+ "id": 39142,
+ "start": 17550.46,
+ "end": 17550.62,
+ "text": "do"
+ },
+ {
+ "id": 39143,
+ "start": 17550.62,
+ "end": 17550.74,
+ "text": "not"
+ },
+ {
+ "id": 39144,
+ "start": 17550.74,
+ "end": 17550.98,
+ "text": "believe"
+ },
+ {
+ "id": 39145,
+ "start": 17550.98,
+ "end": 17551.82,
+ "text": "as"
+ },
+ {
+ "id": 39146,
+ "start": 17551.82,
+ "end": 17551.92,
+ "text": "the"
+ },
+ {
+ "id": 39147,
+ "start": 17551.92,
+ "end": 17552.24,
+ "text": "government"
+ },
+ {
+ "id": 39148,
+ "start": 17552.24,
+ "end": 17552.44,
+ "text": "ever"
+ },
+ {
+ "id": 39149,
+ "start": 17552.44,
+ "end": 17552.68,
+ "text": "asked"
+ },
+ {
+ "id": 39150,
+ "start": 17552.68,
+ "end": 17552.78,
+ "text": "to"
+ },
+ {
+ "id": 39151,
+ "start": 17552.78,
+ "end": 17553.08,
+ "text": "remove"
+ },
+ {
+ "id": 39152,
+ "start": 17553.08,
+ "end": 17553.16,
+ "text": "a"
+ },
+ {
+ "id": 39153,
+ "start": 17553.16,
+ "end": 17553.46,
+ "text": "page."
+ },
+ {
+ "id": 39154,
+ "start": 17553.46,
+ "end": 17554.1,
+ "text": "Have"
+ },
+ {
+ "id": 39155,
+ "start": 17554.1,
+ "end": 17554.16,
+ "text": "a"
+ },
+ {
+ "id": 39156,
+ "start": 17554.16,
+ "end": 17554.4,
+ "text": "page"
+ },
+ {
+ "id": 39157,
+ "start": 17554.4,
+ "end": 17556.24,
+ "text": "removed"
+ },
+ {
+ "id": 39158,
+ "start": 17556.24,
+ "end": 17557.22,
+ "text": "seat."
+ },
+ {
+ "id": 39159,
+ "start": 17557.22,
+ "end": 17557.34,
+ "text": "I"
+ },
+ {
+ "id": 39160,
+ "start": 17557.34,
+ "end": 17557.6,
+ "text": "believe"
+ },
+ {
+ "id": 39161,
+ "start": 17557.6,
+ "end": 17557.96,
+ "text": "so,"
+ },
+ {
+ "id": 39162,
+ "start": 17557.96,
+ "end": 17558.5,
+ "text": "okay?"
+ },
+ {
+ "id": 39163,
+ "start": 17558.5,
+ "end": 17558.72,
+ "text": "And"
+ },
+ {
+ "id": 39164,
+ "start": 17558.72,
+ "end": 17559.28,
+ "text": "as"
+ },
+ {
+ "id": 39165,
+ "start": 17559.28,
+ "end": 17559.42,
+ "text": "the"
+ },
+ {
+ "id": 39166,
+ "start": 17559.42,
+ "end": 17559.76,
+ "text": "government"
+ },
+ {
+ "id": 39167,
+ "start": 17559.76,
+ "end": 17560.02,
+ "text": "ever,"
+ },
+ {
+ "id": 39168,
+ "start": 17560.02,
+ "end": 17560.16,
+ "text": "can"
+ },
+ {
+ "id": 39169,
+ "start": 17560.16,
+ "end": 17560.3,
+ "text": "you"
+ },
+ {
+ "id": 39170,
+ "start": 17560.3,
+ "end": 17560.46,
+ "text": "get"
+ },
+ {
+ "id": 39171,
+ "start": 17560.46,
+ "end": 17560.6,
+ "text": "a"
+ },
+ {
+ "id": 39172,
+ "start": 17560.6,
+ "end": 17561.04,
+ "text": "warrant"
+ },
+ {
+ "id": 39173,
+ "start": 17561.04,
+ "end": 17562.2,
+ "text": "to"
+ },
+ {
+ "id": 39174,
+ "start": 17562.2,
+ "end": 17562.76,
+ "text": "join"
+ },
+ {
+ "id": 39175,
+ "start": 17562.76,
+ "end": 17562.94,
+ "text": "a"
+ },
+ {
+ "id": 39176,
+ "start": 17562.94,
+ "end": 17563.3,
+ "text": "page"
+ },
+ {
+ "id": 39177,
+ "start": 17563.3,
+ "end": 17563.48,
+ "text": "to"
+ },
+ {
+ "id": 39178,
+ "start": 17563.48,
+ "end": 17563.66,
+ "text": "get"
+ },
+ {
+ "id": 39179,
+ "start": 17563.66,
+ "end": 17563.94,
+ "text": "to"
+ },
+ {
+ "id": 39180,
+ "start": 17563.94,
+ "end": 17564.2,
+ "text": "be"
+ },
+ {
+ "id": 39181,
+ "start": 17564.2,
+ "end": 17565.06,
+ "text": "on"
+ },
+ {
+ "id": 39182,
+ "start": 17565.06,
+ "end": 17565.18,
+ "text": "a"
+ },
+ {
+ "id": 39183,
+ "start": 17565.18,
+ "end": 17566.02,
+ "text": "page"
+ },
+ {
+ "id": 39184,
+ "start": 17566.02,
+ "end": 17566.98,
+ "text": "pretending"
+ },
+ {
+ "id": 39185,
+ "start": 17566.98,
+ "end": 17567.14,
+ "text": "you're"
+ },
+ {
+ "id": 39186,
+ "start": 17567.14,
+ "end": 17567.2,
+ "text": "a"
+ },
+ {
+ "id": 39187,
+ "start": 17567.2,
+ "end": 17567.64,
+ "text": "separate"
+ },
+ {
+ "id": 39188,
+ "start": 17567.64,
+ "end": 17567.94,
+ "text": "user"
+ },
+ {
+ "id": 39189,
+ "start": 17567.94,
+ "end": 17568.06,
+ "text": "to"
+ },
+ {
+ "id": 39190,
+ "start": 17568.06,
+ "end": 17568.16,
+ "text": "be"
+ },
+ {
+ "id": 39191,
+ "start": 17568.16,
+ "end": 17568.42,
+ "text": "liked"
+ },
+ {
+ "id": 39192,
+ "start": 17568.42,
+ "end": 17568.58,
+ "text": "by"
+ },
+ {
+ "id": 39193,
+ "start": 17568.58,
+ "end": 17568.8,
+ "text": "that"
+ },
+ {
+ "id": 39194,
+ "start": 17568.8,
+ "end": 17569.04,
+ "text": "to"
+ },
+ {
+ "id": 39195,
+ "start": 17569.04,
+ "end": 17569.3,
+ "text": "track"
+ },
+ {
+ "id": 39196,
+ "start": 17569.3,
+ "end": 17569.44,
+ "text": "with."
+ },
+ {
+ "id": 39197,
+ "start": 17569.44,
+ "end": 17569.56,
+ "text": "That"
+ },
+ {
+ "id": 39198,
+ "start": 17569.56,
+ "end": 17569.76,
+ "text": "person"
+ },
+ {
+ "id": 39199,
+ "start": 17569.76,
+ "end": 17569.88,
+ "text": "is"
+ },
+ {
+ "id": 39200,
+ "start": 17569.88,
+ "end": 17570.04,
+ "text": "doing."
+ },
+ {
+ "id": 39201,
+ "start": 17570.04,
+ "end": 17570.22,
+ "text": "You"
+ },
+ {
+ "id": 39202,
+ "start": 17570.22,
+ "end": 17570.34,
+ "text": "need"
+ },
+ {
+ "id": 39203,
+ "start": 17570.34,
+ "end": 17570.4,
+ "text": "to"
+ },
+ {
+ "id": 39204,
+ "start": 17570.4,
+ "end": 17570.62,
+ "text": "warrant"
+ },
+ {
+ "id": 39205,
+ "start": 17570.62,
+ "end": 17570.7,
+ "text": "for"
+ },
+ {
+ "id": 39206,
+ "start": 17570.7,
+ "end": 17570.82,
+ "text": "that"
+ },
+ {
+ "id": 39207,
+ "start": 17570.82,
+ "end": 17570.92,
+ "text": "or"
+ },
+ {
+ "id": 39208,
+ "start": 17570.92,
+ "end": 17571.06,
+ "text": "can"
+ },
+ {
+ "id": 39209,
+ "start": 17571.06,
+ "end": 17571.16,
+ "text": "the"
+ },
+ {
+ "id": 39210,
+ "start": 17571.16,
+ "end": 17571.44,
+ "text": "government"
+ },
+ {
+ "id": 39211,
+ "start": 17571.44,
+ "end": 17571.58,
+ "text": "just"
+ },
+ {
+ "id": 39212,
+ "start": 17571.58,
+ "end": 17571.68,
+ "text": "do"
+ },
+ {
+ "id": 39213,
+ "start": 17571.68,
+ "end": 17571.82,
+ "text": "that?"
+ },
+ {
+ "id": 39214,
+ "start": 17571.82,
+ "end": 17571.96,
+ "text": "The"
+ },
+ {
+ "id": 39215,
+ "start": 17571.96,
+ "end": 17572.32,
+ "text": "FBI,"
+ },
+ {
+ "id": 39216,
+ "start": 17572.32,
+ "end": 17573.56,
+ "text": "anybody?"
+ },
+ {
+ "id": 39217,
+ "start": 17573.56,
+ "end": 17574.72,
+ "text": "Senator"
+ },
+ {
+ "id": 39218,
+ "start": 17574.72,
+ "end": 17575.08,
+ "text": "I'm"
+ },
+ {
+ "id": 39219,
+ "start": 17575.08,
+ "end": 17575.18,
+ "text": "not"
+ },
+ {
+ "id": 39220,
+ "start": 17575.18,
+ "end": 17575.32,
+ "text": "sure"
+ },
+ {
+ "id": 39221,
+ "start": 17575.32,
+ "end": 17575.36,
+ "text": "I"
+ },
+ {
+ "id": 39222,
+ "start": 17575.36,
+ "end": 17575.58,
+ "text": "fully"
+ },
+ {
+ "id": 39223,
+ "start": 17575.58,
+ "end": 17575.86,
+ "text": "understand."
+ },
+ {
+ "id": 39224,
+ "start": 17575.86,
+ "end": 17576.26,
+ "text": "You"
+ },
+ {
+ "id": 39225,
+ "start": 17576.26,
+ "end": 17576.72,
+ "text": "say"
+ },
+ {
+ "id": 39226,
+ "start": 17576.72,
+ "end": 17577.12,
+ "text": "we"
+ },
+ {
+ "id": 39227,
+ "start": 17577.12,
+ "end": 17577.26,
+ "text": "can"
+ },
+ {
+ "id": 39228,
+ "start": 17577.26,
+ "end": 17577.5,
+ "text": "follow"
+ },
+ {
+ "id": 39229,
+ "start": 17577.5,
+ "end": 17577.58,
+ "text": "up"
+ },
+ {
+ "id": 39230,
+ "start": 17577.58,
+ "end": 17577.68,
+ "text": "on"
+ },
+ {
+ "id": 39231,
+ "start": 17577.68,
+ "end": 17577.8,
+ "text": "that"
+ },
+ {
+ "id": 39232,
+ "start": 17577.8,
+ "end": 17577.98,
+ "text": "because"
+ },
+ {
+ "id": 39233,
+ "start": 17577.98,
+ "end": 17578.02,
+ "text": "I"
+ },
+ {
+ "id": 39234,
+ "start": 17578.02,
+ "end": 17578.16,
+ "text": "do"
+ },
+ {
+ "id": 39235,
+ "start": 17578.16,
+ "end": 17578.5,
+ "text": "have"
+ },
+ {
+ "id": 39236,
+ "start": 17578.5,
+ "end": 17578.66,
+ "text": "one"
+ },
+ {
+ "id": 39237,
+ "start": 17578.66,
+ "end": 17578.92,
+ "text": "final"
+ },
+ {
+ "id": 39238,
+ "start": 17578.92,
+ "end": 17579.14,
+ "text": "question,"
+ },
+ {
+ "id": 39239,
+ "start": 17579.14,
+ "end": 17579.2,
+ "text": "I"
+ },
+ {
+ "id": 39240,
+ "start": 17579.2,
+ "end": 17579.36,
+ "text": "want"
+ },
+ {
+ "id": 39241,
+ "start": 17579.36,
+ "end": 17579.42,
+ "text": "to"
+ },
+ {
+ "id": 39242,
+ "start": 17579.42,
+ "end": 17579.6,
+ "text": "ask"
+ },
+ {
+ "id": 39243,
+ "start": 17579.6,
+ "end": 17580.54,
+ "text": "you"
+ },
+ {
+ "id": 39244,
+ "start": 17580.54,
+ "end": 17581.24,
+ "text": "a"
+ },
+ {
+ "id": 39245,
+ "start": 17581.24,
+ "end": 17581.44,
+ "text": "couple"
+ },
+ {
+ "id": 39246,
+ "start": 17581.44,
+ "end": 17581.6,
+ "text": "days"
+ },
+ {
+ "id": 39247,
+ "start": 17581.6,
+ "end": 17581.74,
+ "text": "ago."
+ },
+ {
+ "id": 39248,
+ "start": 17581.74,
+ "end": 17581.8,
+ "text": "I"
+ },
+ {
+ "id": 39249,
+ "start": 17581.8,
+ "end": 17581.98,
+ "text": "think"
+ },
+ {
+ "id": 39250,
+ "start": 17581.98,
+ "end": 17582.34,
+ "text": "Facebook"
+ },
+ {
+ "id": 39251,
+ "start": 17582.34,
+ "end": 17582.62,
+ "text": "talked"
+ },
+ {
+ "id": 39252,
+ "start": 17582.62,
+ "end": 17582.84,
+ "text": "about"
+ },
+ {
+ "id": 39253,
+ "start": 17582.84,
+ "end": 17583.68,
+ "text": "that."
+ },
+ {
+ "id": 39254,
+ "start": 17583.68,
+ "end": 17583.76,
+ "text": "It"
+ },
+ {
+ "id": 39255,
+ "start": 17583.76,
+ "end": 17583.88,
+ "text": "would"
+ },
+ {
+ "id": 39256,
+ "start": 17583.88,
+ "end": 17584.18,
+ "text": "label"
+ },
+ {
+ "id": 39257,
+ "start": 17584.18,
+ "end": 17584.62,
+ "text": "traditional"
+ },
+ {
+ "id": 39258,
+ "start": 17584.62,
+ "end": 17585.18,
+ "text": "advocacy"
+ },
+ {
+ "id": 39259,
+ "start": 17585.18,
+ "end": 17585.56,
+ "text": "as"
+ },
+ {
+ "id": 39260,
+ "start": 17585.56,
+ "end": 17586.06,
+ "text": "political"
+ },
+ {
+ "id": 39261,
+ "start": 17586.06,
+ "end": 17586.4,
+ "text": "ads"
+ },
+ {
+ "id": 39262,
+ "start": 17586.4,
+ "end": 17587.34,
+ "text": "and"
+ },
+ {
+ "id": 39263,
+ "start": 17587.34,
+ "end": 17588.18,
+ "text": "instance."
+ },
+ {
+ "id": 39264,
+ "start": 17588.18,
+ "end": 17588.58,
+ "text": "If"
+ },
+ {
+ "id": 39265,
+ "start": 17588.58,
+ "end": 17588.72,
+ "text": "the"
+ },
+ {
+ "id": 39266,
+ "start": 17588.72,
+ "end": 17589.06,
+ "text": "Sierra"
+ },
+ {
+ "id": 39267,
+ "start": 17589.06,
+ "end": 17589.38,
+ "text": "Club"
+ },
+ {
+ "id": 39268,
+ "start": 17589.38,
+ "end": 17589.62,
+ "text": "was"
+ },
+ {
+ "id": 39269,
+ "start": 17589.62,
+ "end": 17589.88,
+ "text": "to"
+ },
+ {
+ "id": 39270,
+ "start": 17589.88,
+ "end": 17590.08,
+ "text": "run"
+ },
+ {
+ "id": 39271,
+ "start": 17590.08,
+ "end": 17590.24,
+ "text": "a"
+ },
+ {
+ "id": 39272,
+ "start": 17590.24,
+ "end": 17590.72,
+ "text": "climate"
+ },
+ {
+ "id": 39273,
+ "start": 17590.72,
+ "end": 17591.06,
+ "text": "change"
+ },
+ {
+ "id": 39274,
+ "start": 17591.06,
+ "end": 17591.42,
+ "text": "ad"
+ },
+ {
+ "id": 39275,
+ "start": 17591.42,
+ "end": 17591.56,
+ "text": "that"
+ },
+ {
+ "id": 39276,
+ "start": 17591.56,
+ "end": 17591.74,
+ "text": "would"
+ },
+ {
+ "id": 39277,
+ "start": 17591.74,
+ "end": 17591.82,
+ "text": "be"
+ },
+ {
+ "id": 39278,
+ "start": 17591.82,
+ "end": 17592.16,
+ "text": "labeled"
+ },
+ {
+ "id": 39279,
+ "start": 17592.16,
+ "end": 17593.42,
+ "text": "political"
+ },
+ {
+ "id": 39280,
+ "start": 17593.42,
+ "end": 17593.76,
+ "text": "political"
+ },
+ {
+ "id": 39281,
+ "start": 17593.76,
+ "end": 17594,
+ "text": "ad."
+ },
+ {
+ "id": 39282,
+ "start": 17594,
+ "end": 17594.26,
+ "text": "If"
+ },
+ {
+ "id": 39283,
+ "start": 17594.26,
+ "end": 17594.46,
+ "text": "the"
+ },
+ {
+ "id": 39284,
+ "start": 17594.46,
+ "end": 17594.74,
+ "text": "Chamber"
+ },
+ {
+ "id": 39285,
+ "start": 17594.74,
+ "end": 17594.82,
+ "text": "of"
+ },
+ {
+ "id": 39286,
+ "start": 17594.82,
+ "end": 17595.16,
+ "text": "commerce"
+ },
+ {
+ "id": 39287,
+ "start": 17595.16,
+ "end": 17595.46,
+ "text": "wanted"
+ },
+ {
+ "id": 39288,
+ "start": 17595.46,
+ "end": 17595.64,
+ "text": "to"
+ },
+ {
+ "id": 39289,
+ "start": 17595.64,
+ "end": 17596.29,
+ "text": "run"
+ },
+ {
+ "id": 39290,
+ "start": 17596.29,
+ "end": 17596.73,
+ "text": "place"
+ },
+ {
+ "id": 39291,
+ "start": 17596.73,
+ "end": 17596.87,
+ "text": "an"
+ },
+ {
+ "id": 39292,
+ "start": 17596.87,
+ "end": 17597.27,
+ "text": "ad"
+ },
+ {
+ "id": 39293,
+ "start": 17597.27,
+ "end": 17597.69,
+ "text": "as"
+ },
+ {
+ "id": 39294,
+ "start": 17597.69,
+ "end": 17598.57,
+ "text": "this"
+ },
+ {
+ "id": 39295,
+ "start": 17598.57,
+ "end": 17598.93,
+ "text": "would"
+ },
+ {
+ "id": 39296,
+ "start": 17598.93,
+ "end": 17599.63,
+ "text": "be"
+ },
+ {
+ "id": 39297,
+ "start": 17599.63,
+ "end": 17599.77,
+ "text": "this"
+ },
+ {
+ "id": 39298,
+ "start": 17599.77,
+ "end": 17599.91,
+ "text": "would"
+ },
+ {
+ "id": 39299,
+ "start": 17599.91,
+ "end": 17600.03,
+ "text": "have"
+ },
+ {
+ "id": 39300,
+ "start": 17600.03,
+ "end": 17600.11,
+ "text": "an"
+ },
+ {
+ "id": 39301,
+ "start": 17600.11,
+ "end": 17600.45,
+ "text": "impact"
+ },
+ {
+ "id": 39302,
+ "start": 17600.45,
+ "end": 17600.85,
+ "text": "on"
+ },
+ {
+ "id": 39303,
+ "start": 17600.85,
+ "end": 17601.63,
+ "text": "the"
+ },
+ {
+ "id": 39304,
+ "start": 17601.63,
+ "end": 17601.93,
+ "text": "climate."
+ },
+ {
+ "id": 39305,
+ "start": 17601.93,
+ "end": 17602.09,
+ "text": "Change"
+ },
+ {
+ "id": 39306,
+ "start": 17602.09,
+ "end": 17602.49,
+ "text": "regulations"
+ },
+ {
+ "id": 39307,
+ "start": 17602.49,
+ "end": 17602.67,
+ "text": "would"
+ },
+ {
+ "id": 39308,
+ "start": 17602.67,
+ "end": 17602.81,
+ "text": "have"
+ },
+ {
+ "id": 39309,
+ "start": 17602.81,
+ "end": 17602.89,
+ "text": "an"
+ },
+ {
+ "id": 39310,
+ "start": 17602.89,
+ "end": 17603.17,
+ "text": "impact"
+ },
+ {
+ "id": 39311,
+ "start": 17603.17,
+ "end": 17603.31,
+ "text": "to"
+ },
+ {
+ "id": 39312,
+ "start": 17603.31,
+ "end": 17603.67,
+ "text": "talk"
+ },
+ {
+ "id": 39313,
+ "start": 17603.67,
+ "end": 17603.83,
+ "text": "about"
+ },
+ {
+ "id": 39314,
+ "start": 17603.83,
+ "end": 17603.99,
+ "text": "that"
+ },
+ {
+ "id": 39315,
+ "start": 17603.99,
+ "end": 17604.21,
+ "text": "through"
+ },
+ {
+ "id": 39316,
+ "start": 17604.21,
+ "end": 17604.27,
+ "text": "an"
+ },
+ {
+ "id": 39317,
+ "start": 17604.27,
+ "end": 17604.49,
+ "text": "ad"
+ },
+ {
+ "id": 39318,
+ "start": 17604.49,
+ "end": 17605.05,
+ "text": "that"
+ },
+ {
+ "id": 39319,
+ "start": 17605.05,
+ "end": 17605.25,
+ "text": "would"
+ },
+ {
+ "id": 39320,
+ "start": 17605.25,
+ "end": 17605.35,
+ "text": "be"
+ },
+ {
+ "id": 39321,
+ "start": 17605.35,
+ "end": 17605.69,
+ "text": "labeled"
+ },
+ {
+ "id": 39322,
+ "start": 17605.69,
+ "end": 17605.99,
+ "text": "as"
+ },
+ {
+ "id": 39323,
+ "start": 17605.99,
+ "end": 17606.45,
+ "text": "political"
+ },
+ {
+ "id": 39324,
+ "start": 17606.45,
+ "end": 17606.61,
+ "text": "which"
+ },
+ {
+ "id": 39325,
+ "start": 17606.61,
+ "end": 17606.75,
+ "text": "is"
+ },
+ {
+ "id": 39326,
+ "start": 17606.75,
+ "end": 17607.11,
+ "text": "different"
+ },
+ {
+ "id": 39327,
+ "start": 17607.11,
+ "end": 17608.29,
+ "text": "than"
+ },
+ {
+ "id": 39328,
+ "start": 17608.29,
+ "end": 17608.75,
+ "text": "current"
+ },
+ {
+ "id": 39329,
+ "start": 17608.75,
+ "end": 17609.11,
+ "text": "standards"
+ },
+ {
+ "id": 39330,
+ "start": 17609.11,
+ "end": 17609.23,
+ "text": "of"
+ },
+ {
+ "id": 39331,
+ "start": 17609.23,
+ "end": 17609.41,
+ "text": "what"
+ },
+ {
+ "id": 39332,
+ "start": 17609.41,
+ "end": 17609.61,
+ "text": "is"
+ },
+ {
+ "id": 39333,
+ "start": 17609.61,
+ "end": 17610.01,
+ "text": "political."
+ },
+ {
+ "id": 39334,
+ "start": 17610.01,
+ "end": 17610.27,
+ "text": "What"
+ },
+ {
+ "id": 39335,
+ "start": 17610.27,
+ "end": 17610.51,
+ "text": "is"
+ },
+ {
+ "id": 39336,
+ "start": 17610.51,
+ "end": 17610.95,
+ "text": "issue"
+ },
+ {
+ "id": 39337,
+ "start": 17610.95,
+ "end": 17612.04,
+ "text": "advocacy?"
+ },
+ {
+ "id": 39338,
+ "start": 17612.04,
+ "end": 17612.6,
+ "text": "Is"
+ },
+ {
+ "id": 39339,
+ "start": 17612.6,
+ "end": 17612.82,
+ "text": "it"
+ },
+ {
+ "id": 39340,
+ "start": 17612.82,
+ "end": 17613,
+ "text": "your"
+ },
+ {
+ "id": 39341,
+ "start": 17613,
+ "end": 17613.26,
+ "text": "intent"
+ },
+ {
+ "id": 39342,
+ "start": 17613.26,
+ "end": 17613.92,
+ "text": "to"
+ },
+ {
+ "id": 39343,
+ "start": 17613.92,
+ "end": 17614.4,
+ "text": "label"
+ },
+ {
+ "id": 39344,
+ "start": 17614.4,
+ "end": 17614.7,
+ "text": "things"
+ },
+ {
+ "id": 39345,
+ "start": 17614.7,
+ "end": 17615.18,
+ "text": "political"
+ },
+ {
+ "id": 39346,
+ "start": 17615.18,
+ "end": 17615.88,
+ "text": "that"
+ },
+ {
+ "id": 39347,
+ "start": 17615.88,
+ "end": 17616.32,
+ "text": "would"
+ },
+ {
+ "id": 39348,
+ "start": 17616.32,
+ "end": 17616.48,
+ "text": "be"
+ },
+ {
+ "id": 39349,
+ "start": 17616.48,
+ "end": 17616.62,
+ "text": "in"
+ },
+ {
+ "id": 39350,
+ "start": 17616.62,
+ "end": 17617.32,
+ "text": "contradiction"
+ },
+ {
+ "id": 39351,
+ "start": 17617.32,
+ "end": 17617.44,
+ "text": "to"
+ },
+ {
+ "id": 39352,
+ "start": 17617.44,
+ "end": 17617.74,
+ "text": "federal"
+ },
+ {
+ "id": 39353,
+ "start": 17617.74,
+ "end": 17619.82,
+ "text": "law"
+ },
+ {
+ "id": 39354,
+ "start": 17619.82,
+ "end": 17620.86,
+ "text": "so"
+ },
+ {
+ "id": 39355,
+ "start": 17620.86,
+ "end": 17621.2,
+ "text": "the"
+ },
+ {
+ "id": 39356,
+ "start": 17621.2,
+ "end": 17621.52,
+ "text": "intent"
+ },
+ {
+ "id": 39357,
+ "start": 17621.52,
+ "end": 17621.62,
+ "text": "of"
+ },
+ {
+ "id": 39358,
+ "start": 17621.62,
+ "end": 17621.76,
+ "text": "what"
+ },
+ {
+ "id": 39359,
+ "start": 17621.76,
+ "end": 17621.92,
+ "text": "we're"
+ },
+ {
+ "id": 39360,
+ "start": 17621.92,
+ "end": 17622.14,
+ "text": "trying"
+ },
+ {
+ "id": 39361,
+ "start": 17622.14,
+ "end": 17622.24,
+ "text": "to"
+ },
+ {
+ "id": 39362,
+ "start": 17622.24,
+ "end": 17622.38,
+ "text": "get"
+ },
+ {
+ "id": 39363,
+ "start": 17622.38,
+ "end": 17622.6,
+ "text": "at"
+ },
+ {
+ "id": 39364,
+ "start": 17622.6,
+ "end": 17623.84,
+ "text": "is"
+ },
+ {
+ "id": 39365,
+ "start": 17623.84,
+ "end": 17624.5,
+ "text": "the"
+ },
+ {
+ "id": 39366,
+ "start": 17624.5,
+ "end": 17625.52,
+ "text": "foreign"
+ },
+ {
+ "id": 39367,
+ "start": 17625.52,
+ "end": 17626.18,
+ "text": "election"
+ },
+ {
+ "id": 39368,
+ "start": 17626.18,
+ "end": 17626.72,
+ "text": "interference"
+ },
+ {
+ "id": 39369,
+ "start": 17626.72,
+ "end": 17626.88,
+ "text": "that"
+ },
+ {
+ "id": 39370,
+ "start": 17626.88,
+ "end": 17627.14,
+ "text": "we've"
+ },
+ {
+ "id": 39371,
+ "start": 17627.14,
+ "end": 17627.44,
+ "text": "seen"
+ },
+ {
+ "id": 39372,
+ "start": 17627.44,
+ "end": 17628.46,
+ "text": "has"
+ },
+ {
+ "id": 39373,
+ "start": 17628.46,
+ "end": 17628.88,
+ "text": "taken"
+ },
+ {
+ "id": 39374,
+ "start": 17628.88,
+ "end": 17629.16,
+ "text": "more."
+ },
+ {
+ "id": 39375,
+ "start": 17629.16,
+ "end": 17629.36,
+ "text": "The"
+ },
+ {
+ "id": 39376,
+ "start": 17629.36,
+ "end": 17629.76,
+ "text": "form"
+ },
+ {
+ "id": 39377,
+ "start": 17629.76,
+ "end": 17630.2,
+ "text": "of"
+ },
+ {
+ "id": 39378,
+ "start": 17630.2,
+ "end": 17631.1,
+ "text": "issue"
+ },
+ {
+ "id": 39379,
+ "start": 17631.1,
+ "end": 17631.44,
+ "text": "ads"
+ },
+ {
+ "id": 39380,
+ "start": 17631.44,
+ "end": 17632.24,
+ "text": "than"
+ },
+ {
+ "id": 39381,
+ "start": 17632.24,
+ "end": 17632.72,
+ "text": "direct"
+ },
+ {
+ "id": 39382,
+ "start": 17632.72,
+ "end": 17633.4,
+ "text": "political"
+ },
+ {
+ "id": 39383,
+ "start": 17633.4,
+ "end": 17634.52,
+ "text": "Electioneering"
+ },
+ {
+ "id": 39384,
+ "start": 17634.52,
+ "end": 17635.14,
+ "text": "advertising,"
+ },
+ {
+ "id": 39385,
+ "start": 17635.14,
+ "end": 17636.12,
+ "text": "so"
+ },
+ {
+ "id": 39386,
+ "start": 17636.12,
+ "end": 17636.56,
+ "text": "because"
+ },
+ {
+ "id": 39387,
+ "start": 17636.56,
+ "end": 17636.68,
+ "text": "of"
+ },
+ {
+ "id": 39388,
+ "start": 17636.68,
+ "end": 17636.96,
+ "text": "that,"
+ },
+ {
+ "id": 39389,
+ "start": 17636.96,
+ "end": 17637.26,
+ "text": "we"
+ },
+ {
+ "id": 39390,
+ "start": 17637.26,
+ "end": 17637.42,
+ "text": "think"
+ },
+ {
+ "id": 39391,
+ "start": 17637.42,
+ "end": 17637.6,
+ "text": "it's"
+ },
+ {
+ "id": 39392,
+ "start": 17637.6,
+ "end": 17637.88,
+ "text": "very"
+ },
+ {
+ "id": 39393,
+ "start": 17637.88,
+ "end": 17638.38,
+ "text": "important"
+ },
+ {
+ "id": 39394,
+ "start": 17638.38,
+ "end": 17638.62,
+ "text": "to"
+ },
+ {
+ "id": 39395,
+ "start": 17638.62,
+ "end": 17639.04,
+ "text": "extend"
+ },
+ {
+ "id": 39396,
+ "start": 17639.04,
+ "end": 17639.24,
+ "text": "the"
+ },
+ {
+ "id": 39397,
+ "start": 17639.24,
+ "end": 17640.02,
+ "text": "verification"
+ },
+ {
+ "id": 39398,
+ "start": 17640.02,
+ "end": 17640.22,
+ "text": "and"
+ },
+ {
+ "id": 39399,
+ "start": 17640.22,
+ "end": 17641.33,
+ "text": "transparency"
+ },
+ {
+ "id": 39400,
+ "start": 17641.33,
+ "end": 17641.61,
+ "text": "to"
+ },
+ {
+ "id": 39401,
+ "start": 17641.61,
+ "end": 17642.13,
+ "text": "issue"
+ },
+ {
+ "id": 39402,
+ "start": 17642.13,
+ "end": 17642.51,
+ "text": "ads"
+ },
+ {
+ "id": 39403,
+ "start": 17642.51,
+ "end": 17643.35,
+ "text": "in"
+ },
+ {
+ "id": 39404,
+ "start": 17643.35,
+ "end": 17643.65,
+ "text": "order"
+ },
+ {
+ "id": 39405,
+ "start": 17643.65,
+ "end": 17643.75,
+ "text": "to"
+ },
+ {
+ "id": 39406,
+ "start": 17643.75,
+ "end": 17644.05,
+ "text": "block"
+ },
+ {
+ "id": 39407,
+ "start": 17644.05,
+ "end": 17644.25,
+ "text": "the"
+ },
+ {
+ "id": 39408,
+ "start": 17644.25,
+ "end": 17644.51,
+ "text": "kind"
+ },
+ {
+ "id": 39409,
+ "start": 17644.51,
+ "end": 17645.39,
+ "text": "of"
+ },
+ {
+ "id": 39410,
+ "start": 17645.39,
+ "end": 17646.35,
+ "text": "interference"
+ },
+ {
+ "id": 39411,
+ "start": 17646.35,
+ "end": 17646.55,
+ "text": "that"
+ },
+ {
+ "id": 39412,
+ "start": 17646.55,
+ "end": 17646.67,
+ "text": "the"
+ },
+ {
+ "id": 39413,
+ "start": 17646.67,
+ "end": 17647.11,
+ "text": "Russians"
+ },
+ {
+ "id": 39414,
+ "start": 17647.11,
+ "end": 17647.91,
+ "text": "attempted"
+ },
+ {
+ "id": 39415,
+ "start": 17647.91,
+ "end": 17648.03,
+ "text": "to"
+ },
+ {
+ "id": 39416,
+ "start": 17648.03,
+ "end": 17648.37,
+ "text": "do"
+ },
+ {
+ "id": 39417,
+ "start": 17648.37,
+ "end": 17649.49,
+ "text": "and"
+ },
+ {
+ "id": 39418,
+ "start": 17649.49,
+ "end": 17649.67,
+ "text": "I"
+ },
+ {
+ "id": 39419,
+ "start": 17649.67,
+ "end": 17649.85,
+ "text": "think"
+ },
+ {
+ "id": 39420,
+ "start": 17649.85,
+ "end": 17650.67,
+ "text": "will"
+ },
+ {
+ "id": 39421,
+ "start": 17650.67,
+ "end": 17650.97,
+ "text": "likely"
+ },
+ {
+ "id": 39422,
+ "start": 17650.97,
+ "end": 17651.37,
+ "text": "continue"
+ },
+ {
+ "id": 39423,
+ "start": 17651.37,
+ "end": 17651.47,
+ "text": "to"
+ },
+ {
+ "id": 39424,
+ "start": 17651.47,
+ "end": 17651.77,
+ "text": "attempt"
+ },
+ {
+ "id": 39425,
+ "start": 17651.77,
+ "end": 17651.89,
+ "text": "to"
+ },
+ {
+ "id": 39426,
+ "start": 17651.89,
+ "end": 17652.05,
+ "text": "do"
+ },
+ {
+ "id": 39427,
+ "start": 17652.05,
+ "end": 17652.61,
+ "text": "that's"
+ },
+ {
+ "id": 39428,
+ "start": 17652.61,
+ "end": 17652.75,
+ "text": "why"
+ },
+ {
+ "id": 39429,
+ "start": 17652.75,
+ "end": 17652.81,
+ "text": "I"
+ },
+ {
+ "id": 39430,
+ "start": 17652.81,
+ "end": 17652.99,
+ "text": "think"
+ },
+ {
+ "id": 39431,
+ "start": 17652.99,
+ "end": 17653.11,
+ "text": "that"
+ },
+ {
+ "id": 39432,
+ "start": 17653.11,
+ "end": 17653.33,
+ "text": "those"
+ },
+ {
+ "id": 39433,
+ "start": 17653.33,
+ "end": 17653.75,
+ "text": "measures"
+ },
+ {
+ "id": 39434,
+ "start": 17653.75,
+ "end": 17654.15,
+ "text": "are"
+ },
+ {
+ "id": 39435,
+ "start": 17654.15,
+ "end": 17654.69,
+ "text": "important"
+ },
+ {
+ "id": 39436,
+ "start": 17654.69,
+ "end": 17654.77,
+ "text": "to"
+ },
+ {
+ "id": 39437,
+ "start": 17654.77,
+ "end": 17654.95,
+ "text": "do."
+ },
+ {
+ "id": 39438,
+ "start": 17654.95,
+ "end": 17655.73,
+ "text": "Thank"
+ },
+ {
+ "id": 39439,
+ "start": 17655.73,
+ "end": 17655.87,
+ "text": "you,"
+ },
+ {
+ "id": 39440,
+ "start": 17655.87,
+ "end": 17656.01,
+ "text": "thank"
+ },
+ {
+ "id": 39441,
+ "start": 17656.01,
+ "end": 17656.33,
+ "text": "Senator"
+ },
+ {
+ "id": 39442,
+ "start": 17656.33,
+ "end": 17656.67,
+ "text": "Garner,"
+ },
+ {
+ "id": 39443,
+ "start": 17656.67,
+ "end": 17657.55,
+ "text": "Senator"
+ },
+ {
+ "id": 39444,
+ "start": 17657.55,
+ "end": 17658.82,
+ "text": "tester."
+ },
+ {
+ "id": 39445,
+ "start": 17658.82,
+ "end": 17659.64,
+ "text": "Thank"
+ },
+ {
+ "id": 39446,
+ "start": 17659.64,
+ "end": 17659.74,
+ "text": "you,"
+ },
+ {
+ "id": 39447,
+ "start": 17659.74,
+ "end": 17659.9,
+ "text": "Mr"
+ },
+ {
+ "id": 39448,
+ "start": 17659.9,
+ "end": 17660.16,
+ "text": "Chairman."
+ },
+ {
+ "id": 39449,
+ "start": 17660.16,
+ "end": 17660.22,
+ "text": "I"
+ },
+ {
+ "id": 39450,
+ "start": 17660.22,
+ "end": 17660.4,
+ "text": "want"
+ },
+ {
+ "id": 39451,
+ "start": 17660.4,
+ "end": 17660.48,
+ "text": "to"
+ },
+ {
+ "id": 39452,
+ "start": 17660.48,
+ "end": 17660.66,
+ "text": "thank"
+ },
+ {
+ "id": 39453,
+ "start": 17660.66,
+ "end": 17660.8,
+ "text": "you"
+ },
+ {
+ "id": 39454,
+ "start": 17660.8,
+ "end": 17660.98,
+ "text": "for"
+ },
+ {
+ "id": 39455,
+ "start": 17660.98,
+ "end": 17661.22,
+ "text": "being"
+ },
+ {
+ "id": 39456,
+ "start": 17661.22,
+ "end": 17661.36,
+ "text": "here"
+ },
+ {
+ "id": 39457,
+ "start": 17661.36,
+ "end": 17662.3,
+ "text": "today."
+ },
+ {
+ "id": 39458,
+ "start": 17662.3,
+ "end": 17663.1,
+ "text": "Mark."
+ },
+ {
+ "id": 39459,
+ "start": 17663.1,
+ "end": 17664.12,
+ "text": "Appreciate"
+ },
+ {
+ "id": 39460,
+ "start": 17664.12,
+ "end": 17665.26,
+ "text": "you"
+ },
+ {
+ "id": 39461,
+ "start": 17665.26,
+ "end": 17665.6,
+ "text": "coming"
+ },
+ {
+ "id": 39462,
+ "start": 17665.6,
+ "end": 17665.72,
+ "text": "in."
+ },
+ {
+ "id": 39463,
+ "start": 17665.72,
+ "end": 17665.86,
+ "text": "I"
+ },
+ {
+ "id": 39464,
+ "start": 17665.86,
+ "end": 17666.06,
+ "text": "hope"
+ },
+ {
+ "id": 39465,
+ "start": 17666.06,
+ "end": 17666.36,
+ "text": "this"
+ },
+ {
+ "id": 39466,
+ "start": 17666.36,
+ "end": 17666.64,
+ "text": "isn't"
+ },
+ {
+ "id": 39467,
+ "start": 17666.64,
+ "end": 17666.82,
+ "text": "the"
+ },
+ {
+ "id": 39468,
+ "start": 17666.82,
+ "end": 17667.04,
+ "text": "last"
+ },
+ {
+ "id": 39469,
+ "start": 17667.04,
+ "end": 17667.28,
+ "text": "time"
+ },
+ {
+ "id": 39470,
+ "start": 17667.28,
+ "end": 17667.68,
+ "text": "we"
+ },
+ {
+ "id": 39471,
+ "start": 17667.68,
+ "end": 17667.94,
+ "text": "see"
+ },
+ {
+ "id": 39472,
+ "start": 17667.94,
+ "end": 17668.04,
+ "text": "you"
+ },
+ {
+ "id": 39473,
+ "start": 17668.04,
+ "end": 17668.14,
+ "text": "in"
+ },
+ {
+ "id": 39474,
+ "start": 17668.14,
+ "end": 17668.36,
+ "text": "front"
+ },
+ {
+ "id": 39475,
+ "start": 17668.36,
+ "end": 17668.44,
+ "text": "of"
+ },
+ {
+ "id": 39476,
+ "start": 17668.44,
+ "end": 17668.82,
+ "text": "committee,"
+ },
+ {
+ "id": 39477,
+ "start": 17668.82,
+ "end": 17668.92,
+ "text": "I"
+ },
+ {
+ "id": 39478,
+ "start": 17668.92,
+ "end": 17669.1,
+ "text": "know"
+ },
+ {
+ "id": 39479,
+ "start": 17669.1,
+ "end": 17669.26,
+ "text": "this"
+ },
+ {
+ "id": 39480,
+ "start": 17669.26,
+ "end": 17669.42,
+ "text": "is"
+ },
+ {
+ "id": 39481,
+ "start": 17669.42,
+ "end": 17670.52,
+ "text": "approaching"
+ },
+ {
+ "id": 39482,
+ "start": 17670.52,
+ "end": 17670.78,
+ "text": "five"
+ },
+ {
+ "id": 39483,
+ "start": 17670.78,
+ "end": 17671.08,
+ "text": "hours."
+ },
+ {
+ "id": 39484,
+ "start": 17671.08,
+ "end": 17671.34,
+ "text": "So"
+ },
+ {
+ "id": 39485,
+ "start": 17671.34,
+ "end": 17671.66,
+ "text": "it's"
+ },
+ {
+ "id": 39486,
+ "start": 17671.66,
+ "end": 17672.28,
+ "text": "been"
+ },
+ {
+ "id": 39487,
+ "start": 17672.28,
+ "end": 17672.34,
+ "text": "a"
+ },
+ {
+ "id": 39488,
+ "start": 17672.34,
+ "end": 17672.56,
+ "text": "little"
+ },
+ {
+ "id": 39489,
+ "start": 17672.56,
+ "end": 17672.94,
+ "text": "tenuous."
+ },
+ {
+ "id": 39490,
+ "start": 17672.94,
+ "end": 17673.96,
+ "text": "Some"
+ },
+ {
+ "id": 39491,
+ "start": 17673.96,
+ "end": 17674.26,
+ "text": "mental"
+ },
+ {
+ "id": 39492,
+ "start": 17674.26,
+ "end": 17674.94,
+ "text": "gymnastics"
+ },
+ {
+ "id": 39493,
+ "start": 17674.94,
+ "end": 17675.3,
+ "text": "for"
+ },
+ {
+ "id": 39494,
+ "start": 17675.3,
+ "end": 17675.6,
+ "text": "all"
+ },
+ {
+ "id": 39495,
+ "start": 17675.6,
+ "end": 17675.7,
+ "text": "of"
+ },
+ {
+ "id": 39496,
+ "start": 17675.7,
+ "end": 17675.82,
+ "text": "us"
+ },
+ {
+ "id": 39497,
+ "start": 17675.82,
+ "end": 17676,
+ "text": "and"
+ },
+ {
+ "id": 39498,
+ "start": 17676,
+ "end": 17676.1,
+ "text": "I"
+ },
+ {
+ "id": 39499,
+ "start": 17676.1,
+ "end": 17676.26,
+ "text": "just"
+ },
+ {
+ "id": 39500,
+ "start": 17676.26,
+ "end": 17676.4,
+ "text": "want"
+ },
+ {
+ "id": 39501,
+ "start": 17676.4,
+ "end": 17676.5,
+ "text": "to"
+ },
+ {
+ "id": 39502,
+ "start": 17676.5,
+ "end": 17676.68,
+ "text": "thank"
+ },
+ {
+ "id": 39503,
+ "start": 17676.68,
+ "end": 17676.84,
+ "text": "you"
+ },
+ {
+ "id": 39504,
+ "start": 17676.84,
+ "end": 17677.44,
+ "text": "for"
+ },
+ {
+ "id": 39505,
+ "start": 17677.44,
+ "end": 17678.2,
+ "text": "for"
+ },
+ {
+ "id": 39506,
+ "start": 17678.2,
+ "end": 17678.54,
+ "text": "being"
+ },
+ {
+ "id": 39507,
+ "start": 17678.54,
+ "end": 17678.72,
+ "text": "here."
+ },
+ {
+ "id": 39508,
+ "start": 17678.72,
+ "end": 17679.26,
+ "text": "Facebook"
+ },
+ {
+ "id": 39509,
+ "start": 17679.26,
+ "end": 17679.44,
+ "text": "is"
+ },
+ {
+ "id": 39510,
+ "start": 17679.44,
+ "end": 17679.56,
+ "text": "an"
+ },
+ {
+ "id": 39511,
+ "start": 17679.56,
+ "end": 17680.02,
+ "text": "American"
+ },
+ {
+ "id": 39512,
+ "start": 17680.02,
+ "end": 17680.34,
+ "text": "company"
+ },
+ {
+ "id": 39513,
+ "start": 17680.34,
+ "end": 17681.02,
+ "text": "and"
+ },
+ {
+ "id": 39514,
+ "start": 17681.02,
+ "end": 17681.26,
+ "text": "with"
+ },
+ {
+ "id": 39515,
+ "start": 17681.26,
+ "end": 17681.5,
+ "text": "that,"
+ },
+ {
+ "id": 39516,
+ "start": 17681.5,
+ "end": 17681.56,
+ "text": "I"
+ },
+ {
+ "id": 39517,
+ "start": 17681.56,
+ "end": 17681.88,
+ "text": "believe"
+ },
+ {
+ "id": 39518,
+ "start": 17681.88,
+ "end": 17682.12,
+ "text": "you've"
+ },
+ {
+ "id": 39519,
+ "start": 17682.12,
+ "end": 17682.22,
+ "text": "got"
+ },
+ {
+ "id": 39520,
+ "start": 17682.22,
+ "end": 17682.28,
+ "text": "a"
+ },
+ {
+ "id": 39521,
+ "start": 17682.28,
+ "end": 17683.04,
+ "text": "responsibility"
+ },
+ {
+ "id": 39522,
+ "start": 17683.04,
+ "end": 17683.86,
+ "text": "to"
+ },
+ {
+ "id": 39523,
+ "start": 17683.86,
+ "end": 17684.28,
+ "text": "protect"
+ },
+ {
+ "id": 39524,
+ "start": 17684.28,
+ "end": 17684.9,
+ "text": "American"
+ },
+ {
+ "id": 39525,
+ "start": 17684.9,
+ "end": 17685.4,
+ "text": "liberties"
+ },
+ {
+ "id": 39526,
+ "start": 17685.4,
+ "end": 17685.94,
+ "text": "central"
+ },
+ {
+ "id": 39527,
+ "start": 17685.94,
+ "end": 17686.1,
+ "text": "to"
+ },
+ {
+ "id": 39528,
+ "start": 17686.1,
+ "end": 17686.3,
+ "text": "our"
+ },
+ {
+ "id": 39529,
+ "start": 17686.3,
+ "end": 17687.12,
+ "text": "privacy"
+ },
+ {
+ "id": 39530,
+ "start": 17687.12,
+ "end": 17688.12,
+ "text": "Facebook"
+ },
+ {
+ "id": 39531,
+ "start": 17688.12,
+ "end": 17688.56,
+ "text": "allowed,"
+ },
+ {
+ "id": 39532,
+ "start": 17688.56,
+ "end": 17688.76,
+ "text": "a"
+ },
+ {
+ "id": 39533,
+ "start": 17688.76,
+ "end": 17689.26,
+ "text": "foreign"
+ },
+ {
+ "id": 39534,
+ "start": 17689.26,
+ "end": 17689.72,
+ "text": "company"
+ },
+ {
+ "id": 39535,
+ "start": 17689.72,
+ "end": 17689.86,
+ "text": "to"
+ },
+ {
+ "id": 39536,
+ "start": 17689.86,
+ "end": 17690.14,
+ "text": "steal"
+ },
+ {
+ "id": 39537,
+ "start": 17690.14,
+ "end": 17690.52,
+ "text": "private"
+ },
+ {
+ "id": 39538,
+ "start": 17690.52,
+ "end": 17691.56,
+ "text": "information."
+ },
+ {
+ "id": 39539,
+ "start": 17691.56,
+ "end": 17692.16,
+ "text": "They"
+ },
+ {
+ "id": 39540,
+ "start": 17692.16,
+ "end": 17692.44,
+ "text": "allowed"
+ },
+ {
+ "id": 39541,
+ "start": 17692.44,
+ "end": 17692.5,
+ "text": "a"
+ },
+ {
+ "id": 39542,
+ "start": 17692.5,
+ "end": 17692.92,
+ "text": "foreign"
+ },
+ {
+ "id": 39543,
+ "start": 17692.92,
+ "end": 17693.3,
+ "text": "company"
+ },
+ {
+ "id": 39544,
+ "start": 17693.3,
+ "end": 17693.44,
+ "text": "to"
+ },
+ {
+ "id": 39545,
+ "start": 17693.44,
+ "end": 17693.78,
+ "text": "steal"
+ },
+ {
+ "id": 39546,
+ "start": 17693.78,
+ "end": 17694.18,
+ "text": "private"
+ },
+ {
+ "id": 39547,
+ "start": 17694.18,
+ "end": 17694.76,
+ "text": "information"
+ },
+ {
+ "id": 39548,
+ "start": 17694.76,
+ "end": 17695.02,
+ "text": "from"
+ },
+ {
+ "id": 39549,
+ "start": 17695.02,
+ "end": 17695.5,
+ "text": "tens"
+ },
+ {
+ "id": 39550,
+ "start": 17695.5,
+ "end": 17695.68,
+ "text": "of"
+ },
+ {
+ "id": 39551,
+ "start": 17695.68,
+ "end": 17696.12,
+ "text": "millions"
+ },
+ {
+ "id": 39552,
+ "start": 17696.12,
+ "end": 17696.24,
+ "text": "of"
+ },
+ {
+ "id": 39553,
+ "start": 17696.24,
+ "end": 17697.36,
+ "text": "Americans."
+ },
+ {
+ "id": 39554,
+ "start": 17697.36,
+ "end": 17698.24,
+ "text": "Largely"
+ },
+ {
+ "id": 39555,
+ "start": 17698.24,
+ "end": 17698.82,
+ "text": "without"
+ },
+ {
+ "id": 39556,
+ "start": 17698.82,
+ "end": 17699.02,
+ "text": "any"
+ },
+ {
+ "id": 39557,
+ "start": 17699.02,
+ "end": 17699.32,
+ "text": "knowledge"
+ },
+ {
+ "id": 39558,
+ "start": 17699.32,
+ "end": 17699.42,
+ "text": "of"
+ },
+ {
+ "id": 39559,
+ "start": 17699.42,
+ "end": 17699.58,
+ "text": "their"
+ },
+ {
+ "id": 39560,
+ "start": 17699.58,
+ "end": 17699.78,
+ "text": "own"
+ },
+ {
+ "id": 39561,
+ "start": 17699.78,
+ "end": 17700.84,
+ "text": "who"
+ },
+ {
+ "id": 39562,
+ "start": 17700.84,
+ "end": 17701.06,
+ "text": "and"
+ },
+ {
+ "id": 39563,
+ "start": 17701.06,
+ "end": 17701.2,
+ "text": "how"
+ },
+ {
+ "id": 39564,
+ "start": 17701.2,
+ "end": 17701.78,
+ "text": "we"
+ },
+ {
+ "id": 39565,
+ "start": 17701.78,
+ "end": 17702.72,
+ "text": "choose"
+ },
+ {
+ "id": 39566,
+ "start": 17702.72,
+ "end": 17702.84,
+ "text": "to"
+ },
+ {
+ "id": 39567,
+ "start": 17702.84,
+ "end": 17703.08,
+ "text": "share"
+ },
+ {
+ "id": 39568,
+ "start": 17703.08,
+ "end": 17703.18,
+ "text": "our"
+ },
+ {
+ "id": 39569,
+ "start": 17703.18,
+ "end": 17703.64,
+ "text": "opinions"
+ },
+ {
+ "id": 39570,
+ "start": 17703.64,
+ "end": 17703.78,
+ "text": "is"
+ },
+ {
+ "id": 39571,
+ "start": 17703.78,
+ "end": 17703.84,
+ "text": "a"
+ },
+ {
+ "id": 39572,
+ "start": 17703.84,
+ "end": 17704.14,
+ "text": "question"
+ },
+ {
+ "id": 39573,
+ "start": 17704.14,
+ "end": 17704.22,
+ "text": "of"
+ },
+ {
+ "id": 39574,
+ "start": 17704.22,
+ "end": 17704.54,
+ "text": "personal"
+ },
+ {
+ "id": 39575,
+ "start": 17704.54,
+ "end": 17705.5,
+ "text": "freedom"
+ },
+ {
+ "id": 39576,
+ "start": 17705.5,
+ "end": 17706.28,
+ "text": "who"
+ },
+ {
+ "id": 39577,
+ "start": 17706.28,
+ "end": 17706.48,
+ "text": "we"
+ },
+ {
+ "id": 39578,
+ "start": 17706.48,
+ "end": 17706.8,
+ "text": "share"
+ },
+ {
+ "id": 39579,
+ "start": 17706.8,
+ "end": 17706.92,
+ "text": "our"
+ },
+ {
+ "id": 39580,
+ "start": 17706.92,
+ "end": 17707.18,
+ "text": "likes"
+ },
+ {
+ "id": 39581,
+ "start": 17707.18,
+ "end": 17707.36,
+ "text": "and"
+ },
+ {
+ "id": 39582,
+ "start": 17707.36,
+ "end": 17708.16,
+ "text": "dislikes."
+ },
+ {
+ "id": 39583,
+ "start": 17708.16,
+ "end": 17708.76,
+ "text": "It"
+ },
+ {
+ "id": 39584,
+ "start": 17708.76,
+ "end": 17709.02,
+ "text": "is"
+ },
+ {
+ "id": 39585,
+ "start": 17709.02,
+ "end": 17709.1,
+ "text": "a"
+ },
+ {
+ "id": 39586,
+ "start": 17709.1,
+ "end": 17709.64,
+ "text": "question"
+ },
+ {
+ "id": 39587,
+ "start": 17709.64,
+ "end": 17709.84,
+ "text": "of"
+ },
+ {
+ "id": 39588,
+ "start": 17709.84,
+ "end": 17710.26,
+ "text": "personal"
+ },
+ {
+ "id": 39589,
+ "start": 17710.26,
+ "end": 17710.88,
+ "text": "freedom."
+ },
+ {
+ "id": 39590,
+ "start": 17710.88,
+ "end": 17711.86,
+ "text": "This"
+ },
+ {
+ "id": 39591,
+ "start": 17711.86,
+ "end": 17712.02,
+ "text": "is"
+ },
+ {
+ "id": 39592,
+ "start": 17712.02,
+ "end": 17712.08,
+ "text": "a"
+ },
+ {
+ "id": 39593,
+ "start": 17712.08,
+ "end": 17712.82,
+ "text": "troubling"
+ },
+ {
+ "id": 39594,
+ "start": 17712.82,
+ "end": 17713.8,
+ "text": "episode"
+ },
+ {
+ "id": 39595,
+ "start": 17713.8,
+ "end": 17714.2,
+ "text": "that"
+ },
+ {
+ "id": 39596,
+ "start": 17714.2,
+ "end": 17714.94,
+ "text": "completely"
+ },
+ {
+ "id": 39597,
+ "start": 17714.94,
+ "end": 17715.4,
+ "text": "shatters"
+ },
+ {
+ "id": 39598,
+ "start": 17715.4,
+ "end": 17716.01,
+ "text": "that"
+ },
+ {
+ "id": 39599,
+ "start": 17716.01,
+ "end": 17716.45,
+ "text": "liberty."
+ },
+ {
+ "id": 39600,
+ "start": 17716.45,
+ "end": 17716.65,
+ "text": "So"
+ },
+ {
+ "id": 39601,
+ "start": 17716.65,
+ "end": 17716.81,
+ "text": "that"
+ },
+ {
+ "id": 39602,
+ "start": 17716.81,
+ "end": 17716.97,
+ "text": "you"
+ },
+ {
+ "id": 39603,
+ "start": 17716.97,
+ "end": 17718.01,
+ "text": "understand"
+ },
+ {
+ "id": 39604,
+ "start": 17718.01,
+ "end": 17718.99,
+ "text": "the"
+ },
+ {
+ "id": 39605,
+ "start": 17718.99,
+ "end": 17719.51,
+ "text": "magnitude"
+ },
+ {
+ "id": 39606,
+ "start": 17719.51,
+ "end": 17719.59,
+ "text": "of"
+ },
+ {
+ "id": 39607,
+ "start": 17719.59,
+ "end": 17720.03,
+ "text": "this"
+ },
+ {
+ "id": 39608,
+ "start": 17720.03,
+ "end": 17720.99,
+ "text": "Montanans"
+ },
+ {
+ "id": 39609,
+ "start": 17720.99,
+ "end": 17722.23,
+ "text": "deeply"
+ },
+ {
+ "id": 39610,
+ "start": 17722.23,
+ "end": 17723.09,
+ "text": "concerned."
+ },
+ {
+ "id": 39611,
+ "start": 17723.09,
+ "end": 17724.13,
+ "text": "They"
+ },
+ {
+ "id": 39612,
+ "start": 17724.13,
+ "end": 17724.35,
+ "text": "are"
+ },
+ {
+ "id": 39613,
+ "start": 17724.35,
+ "end": 17724.71,
+ "text": "deeply"
+ },
+ {
+ "id": 39614,
+ "start": 17724.71,
+ "end": 17725.25,
+ "text": "concerned"
+ },
+ {
+ "id": 39615,
+ "start": 17725.25,
+ "end": 17725.47,
+ "text": "with"
+ },
+ {
+ "id": 39616,
+ "start": 17725.47,
+ "end": 17725.69,
+ "text": "this"
+ },
+ {
+ "id": 39617,
+ "start": 17725.69,
+ "end": 17726.52,
+ "text": "breach"
+ },
+ {
+ "id": 39618,
+ "start": 17726.52,
+ "end": 17727.18,
+ "text": "of"
+ },
+ {
+ "id": 39619,
+ "start": 17727.18,
+ "end": 17727.68,
+ "text": "privacy"
+ },
+ {
+ "id": 39620,
+ "start": 17727.68,
+ "end": 17727.82,
+ "text": "and"
+ },
+ {
+ "id": 39621,
+ "start": 17727.82,
+ "end": 17728.14,
+ "text": "trust."
+ },
+ {
+ "id": 39622,
+ "start": 17728.14,
+ "end": 17728.7,
+ "text": "So"
+ },
+ {
+ "id": 39623,
+ "start": 17728.7,
+ "end": 17729.3,
+ "text": "you've"
+ },
+ {
+ "id": 39624,
+ "start": 17729.3,
+ "end": 17729.46,
+ "text": "been"
+ },
+ {
+ "id": 39625,
+ "start": 17729.46,
+ "end": 17729.54,
+ "text": "at"
+ },
+ {
+ "id": 39626,
+ "start": 17729.54,
+ "end": 17729.74,
+ "text": "this"
+ },
+ {
+ "id": 39627,
+ "start": 17729.74,
+ "end": 17729.96,
+ "text": "for"
+ },
+ {
+ "id": 39628,
+ "start": 17729.96,
+ "end": 17730.3,
+ "text": "nearly"
+ },
+ {
+ "id": 39629,
+ "start": 17730.3,
+ "end": 17730.56,
+ "text": "five"
+ },
+ {
+ "id": 39630,
+ "start": 17730.56,
+ "end": 17730.88,
+ "text": "hours"
+ },
+ {
+ "id": 39631,
+ "start": 17730.88,
+ "end": 17731.7,
+ "text": "today."
+ },
+ {
+ "id": 39632,
+ "start": 17731.7,
+ "end": 17732.28,
+ "text": "So"
+ },
+ {
+ "id": 39633,
+ "start": 17732.28,
+ "end": 17732.86,
+ "text": "besides,"
+ },
+ {
+ "id": 39634,
+ "start": 17732.86,
+ "end": 17733.28,
+ "text": "taking"
+ },
+ {
+ "id": 39635,
+ "start": 17733.28,
+ "end": 17733.98,
+ "text": "reactive"
+ },
+ {
+ "id": 39636,
+ "start": 17733.98,
+ "end": 17734.36,
+ "text": "steps."
+ },
+ {
+ "id": 39637,
+ "start": 17734.36,
+ "end": 17734.64,
+ "text": "And"
+ },
+ {
+ "id": 39638,
+ "start": 17734.64,
+ "end": 17734.82,
+ "text": "I"
+ },
+ {
+ "id": 39639,
+ "start": 17734.82,
+ "end": 17734.98,
+ "text": "want"
+ },
+ {
+ "id": 39640,
+ "start": 17734.98,
+ "end": 17735.14,
+ "text": "you"
+ },
+ {
+ "id": 39641,
+ "start": 17735.14,
+ "end": 17735.26,
+ "text": "to"
+ },
+ {
+ "id": 39642,
+ "start": 17735.26,
+ "end": 17735.36,
+ "text": "be"
+ },
+ {
+ "id": 39643,
+ "start": 17735.36,
+ "end": 17735.5,
+ "text": "as"
+ },
+ {
+ "id": 39644,
+ "start": 17735.5,
+ "end": 17736,
+ "text": "concise"
+ },
+ {
+ "id": 39645,
+ "start": 17736,
+ "end": 17736.16,
+ "text": "as"
+ },
+ {
+ "id": 39646,
+ "start": 17736.16,
+ "end": 17736.36,
+ "text": "you"
+ },
+ {
+ "id": 39647,
+ "start": 17736.36,
+ "end": 17736.78,
+ "text": "possibly"
+ },
+ {
+ "id": 39648,
+ "start": 17736.78,
+ "end": 17737.54,
+ "text": "can,"
+ },
+ {
+ "id": 39649,
+ "start": 17737.54,
+ "end": 17738.22,
+ "text": "what"
+ },
+ {
+ "id": 39650,
+ "start": 17738.22,
+ "end": 17738.44,
+ "text": "are"
+ },
+ {
+ "id": 39651,
+ "start": 17738.44,
+ "end": 17738.58,
+ "text": "you"
+ },
+ {
+ "id": 39652,
+ "start": 17738.58,
+ "end": 17738.96,
+ "text": "doing"
+ },
+ {
+ "id": 39653,
+ "start": 17738.96,
+ "end": 17739.96,
+ "text": "to"
+ },
+ {
+ "id": 39654,
+ "start": 17739.96,
+ "end": 17740.16,
+ "text": "make"
+ },
+ {
+ "id": 39655,
+ "start": 17740.16,
+ "end": 17740.42,
+ "text": "sure"
+ },
+ {
+ "id": 39656,
+ "start": 17740.42,
+ "end": 17740.84,
+ "text": "what"
+ },
+ {
+ "id": 39657,
+ "start": 17740.84,
+ "end": 17741.48,
+ "text": "Cambridge"
+ },
+ {
+ "id": 39658,
+ "start": 17741.48,
+ "end": 17741.62,
+ "text": "a"
+ },
+ {
+ "id": 39659,
+ "start": 17741.62,
+ "end": 17742.02,
+ "text": "Lytic"
+ },
+ {
+ "id": 39660,
+ "start": 17742.02,
+ "end": 17742.62,
+ "text": "analytic"
+ },
+ {
+ "id": 39661,
+ "start": 17742.62,
+ "end": 17743.06,
+ "text": "did"
+ },
+ {
+ "id": 39662,
+ "start": 17743.06,
+ "end": 17743.68,
+ "text": "never"
+ },
+ {
+ "id": 39663,
+ "start": 17743.68,
+ "end": 17744.36,
+ "text": "happens"
+ },
+ {
+ "id": 39664,
+ "start": 17744.36,
+ "end": 17745.62,
+ "text": "again."
+ },
+ {
+ "id": 39665,
+ "start": 17745.62,
+ "end": 17746.64,
+ "text": "Thank"
+ },
+ {
+ "id": 39666,
+ "start": 17746.64,
+ "end": 17746.76,
+ "text": "you,"
+ },
+ {
+ "id": 39667,
+ "start": 17746.76,
+ "end": 17747.14,
+ "text": "Senator."
+ },
+ {
+ "id": 39668,
+ "start": 17747.14,
+ "end": 17748.26,
+ "text": "There"
+ },
+ {
+ "id": 39669,
+ "start": 17748.26,
+ "end": 17748.38,
+ "text": "are"
+ },
+ {
+ "id": 39670,
+ "start": 17748.38,
+ "end": 17748.7,
+ "text": "three"
+ },
+ {
+ "id": 39671,
+ "start": 17748.7,
+ "end": 17749.22,
+ "text": "important"
+ },
+ {
+ "id": 39672,
+ "start": 17749.22,
+ "end": 17749.54,
+ "text": "steps"
+ },
+ {
+ "id": 39673,
+ "start": 17749.54,
+ "end": 17749.76,
+ "text": "that"
+ },
+ {
+ "id": 39674,
+ "start": 17749.76,
+ "end": 17749.98,
+ "text": "were"
+ },
+ {
+ "id": 39675,
+ "start": 17749.98,
+ "end": 17750.38,
+ "text": "taken"
+ },
+ {
+ "id": 39676,
+ "start": 17750.38,
+ "end": 17750.6,
+ "text": "here"
+ },
+ {
+ "id": 39677,
+ "start": 17750.6,
+ "end": 17750.9,
+ "text": "for"
+ },
+ {
+ "id": 39678,
+ "start": 17750.9,
+ "end": 17751.24,
+ "text": "Cambridge"
+ },
+ {
+ "id": 39679,
+ "start": 17751.24,
+ "end": 17751.66,
+ "text": "Analytica."
+ },
+ {
+ "id": 39680,
+ "start": 17751.66,
+ "end": 17751.98,
+ "text": "First"
+ },
+ {
+ "id": 39681,
+ "start": 17751.98,
+ "end": 17752.08,
+ "text": "of"
+ },
+ {
+ "id": 39682,
+ "start": 17752.08,
+ "end": 17752.22,
+ "text": "all"
+ },
+ {
+ "id": 39683,
+ "start": 17752.22,
+ "end": 17752.32,
+ "text": "we"
+ },
+ {
+ "id": 39684,
+ "start": 17752.32,
+ "end": 17752.48,
+ "text": "need"
+ },
+ {
+ "id": 39685,
+ "start": 17752.48,
+ "end": 17752.56,
+ "text": "to"
+ },
+ {
+ "id": 39686,
+ "start": 17752.56,
+ "end": 17752.8,
+ "text": "finish"
+ },
+ {
+ "id": 39687,
+ "start": 17752.8,
+ "end": 17753.32,
+ "text": "resolving"
+ },
+ {
+ "id": 39688,
+ "start": 17753.32,
+ "end": 17753.54,
+ "text": "this"
+ },
+ {
+ "id": 39689,
+ "start": 17753.54,
+ "end": 17753.8,
+ "text": "by"
+ },
+ {
+ "id": 39690,
+ "start": 17753.8,
+ "end": 17754.02,
+ "text": "doing"
+ },
+ {
+ "id": 39691,
+ "start": 17754.02,
+ "end": 17754.08,
+ "text": "a"
+ },
+ {
+ "id": 39692,
+ "start": 17754.08,
+ "end": 17754.36,
+ "text": "full"
+ },
+ {
+ "id": 39693,
+ "start": 17754.36,
+ "end": 17754.64,
+ "text": "audit"
+ },
+ {
+ "id": 39694,
+ "start": 17754.64,
+ "end": 17754.72,
+ "text": "of"
+ },
+ {
+ "id": 39695,
+ "start": 17754.72,
+ "end": 17754.92,
+ "text": "their"
+ },
+ {
+ "id": 39696,
+ "start": 17754.92,
+ "end": 17755.34,
+ "text": "systems"
+ },
+ {
+ "id": 39697,
+ "start": 17755.34,
+ "end": 17755.46,
+ "text": "to"
+ },
+ {
+ "id": 39698,
+ "start": 17755.46,
+ "end": 17755.62,
+ "text": "make"
+ },
+ {
+ "id": 39699,
+ "start": 17755.62,
+ "end": 17755.76,
+ "text": "sure"
+ },
+ {
+ "id": 39700,
+ "start": 17755.76,
+ "end": 17755.88,
+ "text": "that"
+ },
+ {
+ "id": 39701,
+ "start": 17755.88,
+ "end": 17756.02,
+ "text": "they"
+ },
+ {
+ "id": 39702,
+ "start": 17756.02,
+ "end": 17756.38,
+ "text": "delete"
+ },
+ {
+ "id": 39703,
+ "start": 17756.38,
+ "end": 17756.52,
+ "text": "all"
+ },
+ {
+ "id": 39704,
+ "start": 17756.52,
+ "end": 17756.66,
+ "text": "the"
+ },
+ {
+ "id": 39705,
+ "start": 17756.66,
+ "end": 17756.9,
+ "text": "data"
+ },
+ {
+ "id": 39706,
+ "start": 17756.9,
+ "end": 17757.06,
+ "text": "that"
+ },
+ {
+ "id": 39707,
+ "start": 17757.06,
+ "end": 17757.52,
+ "text": "they"
+ },
+ {
+ "id": 39708,
+ "start": 17757.52,
+ "end": 17757.82,
+ "text": "have"
+ },
+ {
+ "id": 39709,
+ "start": 17757.82,
+ "end": 17758.26,
+ "text": "and"
+ },
+ {
+ "id": 39710,
+ "start": 17758.26,
+ "end": 17758.38,
+ "text": "so"
+ },
+ {
+ "id": 39711,
+ "start": 17758.38,
+ "end": 17758.48,
+ "text": "we"
+ },
+ {
+ "id": 39712,
+ "start": 17758.48,
+ "end": 17758.62,
+ "text": "can"
+ },
+ {
+ "id": 39713,
+ "start": 17758.62,
+ "end": 17758.88,
+ "text": "fully"
+ },
+ {
+ "id": 39714,
+ "start": 17758.88,
+ "end": 17759.26,
+ "text": "understand"
+ },
+ {
+ "id": 39715,
+ "start": 17759.26,
+ "end": 17759.42,
+ "text": "what"
+ },
+ {
+ "id": 39716,
+ "start": 17759.42,
+ "end": 17759.76,
+ "text": "happened."
+ },
+ {
+ "id": 39717,
+ "start": 17759.76,
+ "end": 17760.56,
+ "text": "There"
+ },
+ {
+ "id": 39718,
+ "start": 17760.56,
+ "end": 17760.68,
+ "text": "are"
+ },
+ {
+ "id": 39719,
+ "start": 17760.68,
+ "end": 17760.88,
+ "text": "two"
+ },
+ {
+ "id": 39720,
+ "start": 17760.88,
+ "end": 17761.12,
+ "text": "sets"
+ },
+ {
+ "id": 39721,
+ "start": 17761.12,
+ "end": 17761.24,
+ "text": "of"
+ },
+ {
+ "id": 39722,
+ "start": 17761.24,
+ "end": 17761.54,
+ "text": "steps"
+ },
+ {
+ "id": 39723,
+ "start": 17761.54,
+ "end": 17761.68,
+ "text": "that"
+ },
+ {
+ "id": 39724,
+ "start": 17761.68,
+ "end": 17761.86,
+ "text": "we're"
+ },
+ {
+ "id": 39725,
+ "start": 17761.86,
+ "end": 17762.2,
+ "text": "taking"
+ },
+ {
+ "id": 39726,
+ "start": 17762.2,
+ "end": 17763.12,
+ "text": "to"
+ },
+ {
+ "id": 39727,
+ "start": 17763.12,
+ "end": 17763.58,
+ "text": "make"
+ },
+ {
+ "id": 39728,
+ "start": 17763.58,
+ "end": 17763.74,
+ "text": "sure"
+ },
+ {
+ "id": 39729,
+ "start": 17763.74,
+ "end": 17763.86,
+ "text": "that"
+ },
+ {
+ "id": 39730,
+ "start": 17763.86,
+ "end": 17764,
+ "text": "this"
+ },
+ {
+ "id": 39731,
+ "start": 17764,
+ "end": 17764.24,
+ "text": "doesn't"
+ },
+ {
+ "id": 39732,
+ "start": 17764.24,
+ "end": 17764.44,
+ "text": "happen"
+ },
+ {
+ "id": 39733,
+ "start": 17764.44,
+ "end": 17764.64,
+ "text": "again."
+ },
+ {
+ "id": 39734,
+ "start": 17764.64,
+ "end": 17764.8,
+ "text": "The"
+ },
+ {
+ "id": 39735,
+ "start": 17764.8,
+ "end": 17764.94,
+ "text": "most"
+ },
+ {
+ "id": 39736,
+ "start": 17764.94,
+ "end": 17765.4,
+ "text": "important"
+ },
+ {
+ "id": 39737,
+ "start": 17765.4,
+ "end": 17766.18,
+ "text": "is"
+ },
+ {
+ "id": 39738,
+ "start": 17766.18,
+ "end": 17766.74,
+ "text": "restricting"
+ },
+ {
+ "id": 39739,
+ "start": 17766.74,
+ "end": 17766.96,
+ "text": "the"
+ },
+ {
+ "id": 39740,
+ "start": 17766.96,
+ "end": 17767.24,
+ "text": "amount"
+ },
+ {
+ "id": 39741,
+ "start": 17767.24,
+ "end": 17767.4,
+ "text": "of"
+ },
+ {
+ "id": 39742,
+ "start": 17767.4,
+ "end": 17768.46,
+ "text": "access"
+ },
+ {
+ "id": 39743,
+ "start": 17768.46,
+ "end": 17769.12,
+ "text": "information"
+ },
+ {
+ "id": 39744,
+ "start": 17769.12,
+ "end": 17769.3,
+ "text": "that"
+ },
+ {
+ "id": 39745,
+ "start": 17769.3,
+ "end": 17769.86,
+ "text": "developers"
+ },
+ {
+ "id": 39746,
+ "start": 17769.86,
+ "end": 17770.1,
+ "text": "will"
+ },
+ {
+ "id": 39747,
+ "start": 17770.1,
+ "end": 17770.24,
+ "text": "have"
+ },
+ {
+ "id": 39748,
+ "start": 17770.24,
+ "end": 17770.52,
+ "text": "going"
+ },
+ {
+ "id": 39749,
+ "start": 17770.52,
+ "end": 17770.88,
+ "text": "forward."
+ },
+ {
+ "id": 39750,
+ "start": 17770.88,
+ "end": 17771.52,
+ "text": "The"
+ },
+ {
+ "id": 39751,
+ "start": 17771.52,
+ "end": 17771.7,
+ "text": "good"
+ },
+ {
+ "id": 39752,
+ "start": 17771.7,
+ "end": 17771.9,
+ "text": "news"
+ },
+ {
+ "id": 39753,
+ "start": 17771.9,
+ "end": 17772.16,
+ "text": "here"
+ },
+ {
+ "id": 39754,
+ "start": 17772.16,
+ "end": 17772.4,
+ "text": "is"
+ },
+ {
+ "id": 39755,
+ "start": 17772.4,
+ "end": 17772.56,
+ "text": "that"
+ },
+ {
+ "id": 39756,
+ "start": 17772.56,
+ "end": 17772.8,
+ "text": "back"
+ },
+ {
+ "id": 39757,
+ "start": 17772.8,
+ "end": 17772.92,
+ "text": "in"
+ },
+ {
+ "id": 39758,
+ "start": 17772.92,
+ "end": 17773.24,
+ "text": "20"
+ },
+ {
+ "id": 39759,
+ "start": 17773.24,
+ "end": 17773.9,
+ "text": "14"
+ },
+ {
+ "id": 39760,
+ "start": 17773.9,
+ "end": 17774.46,
+ "text": "we"
+ },
+ {
+ "id": 39761,
+ "start": 17774.46,
+ "end": 17774.84,
+ "text": "actually"
+ },
+ {
+ "id": 39762,
+ "start": 17774.84,
+ "end": 17774.96,
+ "text": "had"
+ },
+ {
+ "id": 39763,
+ "start": 17774.96,
+ "end": 17775.44,
+ "text": "already"
+ },
+ {
+ "id": 39764,
+ "start": 17775.44,
+ "end": 17775.74,
+ "text": "made"
+ },
+ {
+ "id": 39765,
+ "start": 17775.74,
+ "end": 17775.96,
+ "text": "a"
+ },
+ {
+ "id": 39766,
+ "start": 17775.96,
+ "end": 17776.3,
+ "text": "large"
+ },
+ {
+ "id": 39767,
+ "start": 17776.3,
+ "end": 17776.68,
+ "text": "change"
+ },
+ {
+ "id": 39768,
+ "start": 17776.68,
+ "end": 17776.84,
+ "text": "to"
+ },
+ {
+ "id": 39769,
+ "start": 17776.84,
+ "end": 17777.3,
+ "text": "restrict"
+ },
+ {
+ "id": 39770,
+ "start": 17777.3,
+ "end": 17777.92,
+ "text": "access"
+ },
+ {
+ "id": 39771,
+ "start": 17777.92,
+ "end": 17778.08,
+ "text": "on"
+ },
+ {
+ "id": 39772,
+ "start": 17778.08,
+ "end": 17778.2,
+ "text": "the"
+ },
+ {
+ "id": 39773,
+ "start": 17778.2,
+ "end": 17778.72,
+ "text": "platform"
+ },
+ {
+ "id": 39774,
+ "start": 17778.72,
+ "end": 17779.12,
+ "text": "that"
+ },
+ {
+ "id": 39775,
+ "start": 17779.12,
+ "end": 17779.28,
+ "text": "would"
+ },
+ {
+ "id": 39776,
+ "start": 17779.28,
+ "end": 17779.4,
+ "text": "have"
+ },
+ {
+ "id": 39777,
+ "start": 17779.4,
+ "end": 17779.88,
+ "text": "prevented"
+ },
+ {
+ "id": 39778,
+ "start": 17779.88,
+ "end": 17780.12,
+ "text": "this"
+ },
+ {
+ "id": 39779,
+ "start": 17780.12,
+ "end": 17780.4,
+ "text": "issue"
+ },
+ {
+ "id": 39780,
+ "start": 17780.4,
+ "end": 17780.56,
+ "text": "with"
+ },
+ {
+ "id": 39781,
+ "start": 17780.56,
+ "end": 17780.88,
+ "text": "Cambridge"
+ },
+ {
+ "id": 39782,
+ "start": 17780.88,
+ "end": 17781.3,
+ "text": "Analytica"
+ },
+ {
+ "id": 39783,
+ "start": 17781.3,
+ "end": 17781.52,
+ "text": "from"
+ },
+ {
+ "id": 39784,
+ "start": 17781.52,
+ "end": 17781.84,
+ "text": "happening"
+ },
+ {
+ "id": 39785,
+ "start": 17781.84,
+ "end": 17782.08,
+ "text": "again"
+ },
+ {
+ "id": 39786,
+ "start": 17782.08,
+ "end": 17783.08,
+ "text": "today."
+ },
+ {
+ "id": 39787,
+ "start": 17783.08,
+ "end": 17784,
+ "text": "Clearly"
+ },
+ {
+ "id": 39788,
+ "start": 17784,
+ "end": 17784.12,
+ "text": "we"
+ },
+ {
+ "id": 39789,
+ "start": 17784.12,
+ "end": 17784.26,
+ "text": "did"
+ },
+ {
+ "id": 39790,
+ "start": 17784.26,
+ "end": 17784.46,
+ "text": "not"
+ },
+ {
+ "id": 39791,
+ "start": 17784.46,
+ "end": 17784.56,
+ "text": "do"
+ },
+ {
+ "id": 39792,
+ "start": 17784.56,
+ "end": 17784.72,
+ "text": "that"
+ },
+ {
+ "id": 39793,
+ "start": 17784.72,
+ "end": 17784.96,
+ "text": "soon"
+ },
+ {
+ "id": 39794,
+ "start": 17784.96,
+ "end": 17785.16,
+ "text": "enough"
+ },
+ {
+ "id": 39795,
+ "start": 17785.16,
+ "end": 17786.02,
+ "text": "if"
+ },
+ {
+ "id": 39796,
+ "start": 17786.02,
+ "end": 17786.12,
+ "text": "we"
+ },
+ {
+ "id": 39797,
+ "start": 17786.12,
+ "end": 17786.32,
+ "text": "done"
+ },
+ {
+ "id": 39798,
+ "start": 17786.32,
+ "end": 17786.44,
+ "text": "it"
+ },
+ {
+ "id": 39799,
+ "start": 17786.44,
+ "end": 17786.52,
+ "text": "a"
+ },
+ {
+ "id": 39800,
+ "start": 17786.52,
+ "end": 17786.72,
+ "text": "couple"
+ },
+ {
+ "id": 39801,
+ "start": 17786.72,
+ "end": 17786.82,
+ "text": "of"
+ },
+ {
+ "id": 39802,
+ "start": 17786.82,
+ "end": 17787.04,
+ "text": "years"
+ },
+ {
+ "id": 39803,
+ "start": 17787.04,
+ "end": 17787.38,
+ "text": "earlier"
+ },
+ {
+ "id": 39804,
+ "start": 17787.38,
+ "end": 17787.56,
+ "text": "than"
+ },
+ {
+ "id": 39805,
+ "start": 17787.56,
+ "end": 17787.64,
+ "text": "we"
+ },
+ {
+ "id": 39806,
+ "start": 17787.64,
+ "end": 17787.86,
+ "text": "probably"
+ },
+ {
+ "id": 39807,
+ "start": 17787.86,
+ "end": 17788.04,
+ "text": "wouldn't"
+ },
+ {
+ "id": 39808,
+ "start": 17788.04,
+ "end": 17788.12,
+ "text": "be"
+ },
+ {
+ "id": 39809,
+ "start": 17788.12,
+ "end": 17788.34,
+ "text": "sitting"
+ },
+ {
+ "id": 39810,
+ "start": 17788.34,
+ "end": 17788.46,
+ "text": "here"
+ },
+ {
+ "id": 39811,
+ "start": 17788.46,
+ "end": 17788.72,
+ "text": "today."
+ },
+ {
+ "id": 39812,
+ "start": 17788.72,
+ "end": 17789.4,
+ "text": "But"
+ },
+ {
+ "id": 39813,
+ "start": 17789.4,
+ "end": 17789.62,
+ "text": "this"
+ },
+ {
+ "id": 39814,
+ "start": 17789.62,
+ "end": 17789.88,
+ "text": "isn't"
+ },
+ {
+ "id": 39815,
+ "start": 17789.88,
+ "end": 17789.94,
+ "text": "a"
+ },
+ {
+ "id": 39816,
+ "start": 17789.94,
+ "end": 17790.18,
+ "text": "change"
+ },
+ {
+ "id": 39817,
+ "start": 17790.18,
+ "end": 17790.3,
+ "text": "that"
+ },
+ {
+ "id": 39818,
+ "start": 17790.3,
+ "end": 17790.42,
+ "text": "we"
+ },
+ {
+ "id": 39819,
+ "start": 17790.42,
+ "end": 17790.58,
+ "text": "had"
+ },
+ {
+ "id": 39820,
+ "start": 17790.58,
+ "end": 17790.7,
+ "text": "to"
+ },
+ {
+ "id": 39821,
+ "start": 17790.7,
+ "end": 17790.94,
+ "text": "take"
+ },
+ {
+ "id": 39822,
+ "start": 17790.94,
+ "end": 17791.24,
+ "text": "now"
+ },
+ {
+ "id": 39823,
+ "start": 17791.24,
+ "end": 17791.42,
+ "text": "in"
+ },
+ {
+ "id": 39824,
+ "start": 17791.42,
+ "end": 17791.66,
+ "text": "20"
+ },
+ {
+ "id": 39825,
+ "start": 17791.66,
+ "end": 17792.1,
+ "text": "18"
+ },
+ {
+ "id": 39826,
+ "start": 17792.1,
+ "end": 17792.6,
+ "text": "it's"
+ },
+ {
+ "id": 39827,
+ "start": 17792.6,
+ "end": 17793.28,
+ "text": "largely"
+ },
+ {
+ "id": 39828,
+ "start": 17793.28,
+ "end": 17793.36,
+ "text": "a"
+ },
+ {
+ "id": 39829,
+ "start": 17793.36,
+ "end": 17793.56,
+ "text": "change"
+ },
+ {
+ "id": 39830,
+ "start": 17793.56,
+ "end": 17793.68,
+ "text": "that"
+ },
+ {
+ "id": 39831,
+ "start": 17793.68,
+ "end": 17793.78,
+ "text": "we"
+ },
+ {
+ "id": 39832,
+ "start": 17793.78,
+ "end": 17793.94,
+ "text": "had"
+ },
+ {
+ "id": 39833,
+ "start": 17793.94,
+ "end": 17794.08,
+ "text": "back"
+ },
+ {
+ "id": 39834,
+ "start": 17794.08,
+ "end": 17794.44,
+ "text": "in."
+ },
+ {
+ "id": 39835,
+ "start": 17794.44,
+ "end": 17795.56,
+ "text": "There"
+ },
+ {
+ "id": 39836,
+ "start": 17795.56,
+ "end": 17795.68,
+ "text": "are"
+ },
+ {
+ "id": 39837,
+ "start": 17795.68,
+ "end": 17795.94,
+ "text": "other"
+ },
+ {
+ "id": 39838,
+ "start": 17795.94,
+ "end": 17796.72,
+ "text": "parts"
+ },
+ {
+ "id": 39839,
+ "start": 17796.72,
+ "end": 17796.82,
+ "text": "of"
+ },
+ {
+ "id": 39840,
+ "start": 17796.82,
+ "end": 17796.92,
+ "text": "the"
+ },
+ {
+ "id": 39841,
+ "start": 17796.92,
+ "end": 17797.36,
+ "text": "platform"
+ },
+ {
+ "id": 39842,
+ "start": 17797.36,
+ "end": 17797.86,
+ "text": "that"
+ },
+ {
+ "id": 39843,
+ "start": 17797.86,
+ "end": 17798.32,
+ "text": "we"
+ },
+ {
+ "id": 39844,
+ "start": 17798.32,
+ "end": 17798.68,
+ "text": "also"
+ },
+ {
+ "id": 39845,
+ "start": 17798.68,
+ "end": 17799.28,
+ "text": "similarly"
+ },
+ {
+ "id": 39846,
+ "start": 17799.28,
+ "end": 17799.64,
+ "text": "can"
+ },
+ {
+ "id": 39847,
+ "start": 17799.64,
+ "end": 17799.86,
+ "text": "lock"
+ },
+ {
+ "id": 39848,
+ "start": 17799.86,
+ "end": 17800.16,
+ "text": "down"
+ },
+ {
+ "id": 39849,
+ "start": 17800.16,
+ "end": 17800.52,
+ "text": "now"
+ },
+ {
+ "id": 39850,
+ "start": 17800.52,
+ "end": 17801.02,
+ "text": "to"
+ },
+ {
+ "id": 39851,
+ "start": 17801.02,
+ "end": 17801.18,
+ "text": "make"
+ },
+ {
+ "id": 39852,
+ "start": 17801.18,
+ "end": 17801.32,
+ "text": "sure"
+ },
+ {
+ "id": 39853,
+ "start": 17801.32,
+ "end": 17801.48,
+ "text": "that"
+ },
+ {
+ "id": 39854,
+ "start": 17801.48,
+ "end": 17801.78,
+ "text": "other"
+ },
+ {
+ "id": 39855,
+ "start": 17801.78,
+ "end": 17802.4,
+ "text": "issues"
+ },
+ {
+ "id": 39856,
+ "start": 17802.4,
+ "end": 17803.12,
+ "text": "that"
+ },
+ {
+ "id": 39857,
+ "start": 17803.12,
+ "end": 17803.52,
+ "text": "might"
+ },
+ {
+ "id": 39858,
+ "start": 17803.52,
+ "end": 17803.66,
+ "text": "have"
+ },
+ {
+ "id": 39859,
+ "start": 17803.66,
+ "end": 17803.8,
+ "text": "been"
+ },
+ {
+ "id": 39860,
+ "start": 17803.8,
+ "end": 17804.32,
+ "text": "exploited"
+ },
+ {
+ "id": 39861,
+ "start": 17804.32,
+ "end": 17804.84,
+ "text": "in"
+ },
+ {
+ "id": 39862,
+ "start": 17804.84,
+ "end": 17805.1,
+ "text": "the"
+ },
+ {
+ "id": 39863,
+ "start": 17805.1,
+ "end": 17805.8,
+ "text": "future."
+ },
+ {
+ "id": 39864,
+ "start": 17805.8,
+ "end": 17806.38,
+ "text": "Won't"
+ },
+ {
+ "id": 39865,
+ "start": 17806.38,
+ "end": 17806.48,
+ "text": "be"
+ },
+ {
+ "id": 39866,
+ "start": 17806.48,
+ "end": 17806.68,
+ "text": "able"
+ },
+ {
+ "id": 39867,
+ "start": 17806.68,
+ "end": 17806.8,
+ "text": "to"
+ },
+ {
+ "id": 39868,
+ "start": 17806.8,
+ "end": 17807.04,
+ "text": "and"
+ },
+ {
+ "id": 39869,
+ "start": 17807.04,
+ "end": 17807.26,
+ "text": "we've"
+ },
+ {
+ "id": 39870,
+ "start": 17807.26,
+ "end": 17807.48,
+ "text": "taken"
+ },
+ {
+ "id": 39871,
+ "start": 17807.48,
+ "end": 17807.54,
+ "text": "a"
+ },
+ {
+ "id": 39872,
+ "start": 17807.54,
+ "end": 17807.76,
+ "text": "number"
+ },
+ {
+ "id": 39873,
+ "start": 17807.76,
+ "end": 17807.82,
+ "text": "of"
+ },
+ {
+ "id": 39874,
+ "start": 17807.82,
+ "end": 17808,
+ "text": "those"
+ },
+ {
+ "id": 39875,
+ "start": 17808,
+ "end": 17808.24,
+ "text": "steps"
+ },
+ {
+ "id": 39876,
+ "start": 17808.24,
+ "end": 17808.36,
+ "text": "that"
+ },
+ {
+ "id": 39877,
+ "start": 17808.36,
+ "end": 17808.52,
+ "text": "I've"
+ },
+ {
+ "id": 39878,
+ "start": 17808.52,
+ "end": 17808.9,
+ "text": "outlined"
+ },
+ {
+ "id": 39879,
+ "start": 17808.9,
+ "end": 17809.16,
+ "text": "those"
+ },
+ {
+ "id": 39880,
+ "start": 17809.16,
+ "end": 17809.6,
+ "text": "in"
+ },
+ {
+ "id": 39881,
+ "start": 17809.6,
+ "end": 17809.92,
+ "text": "my"
+ },
+ {
+ "id": 39882,
+ "start": 17809.92,
+ "end": 17810.48,
+ "text": "written"
+ },
+ {
+ "id": 39883,
+ "start": 17810.48,
+ "end": 17810.8,
+ "text": "statement"
+ },
+ {
+ "id": 39884,
+ "start": 17810.8,
+ "end": 17810.92,
+ "text": "as"
+ },
+ {
+ "id": 39885,
+ "start": 17810.92,
+ "end": 17811.1,
+ "text": "well."
+ },
+ {
+ "id": 39886,
+ "start": 17811.1,
+ "end": 17811.86,
+ "text": "Appreciate"
+ },
+ {
+ "id": 39887,
+ "start": 17811.86,
+ "end": 17812.1,
+ "text": "that."
+ },
+ {
+ "id": 39888,
+ "start": 17812.1,
+ "end": 17812.26,
+ "text": "And"
+ },
+ {
+ "id": 39889,
+ "start": 17812.26,
+ "end": 17812.46,
+ "text": "you"
+ },
+ {
+ "id": 39890,
+ "start": 17812.46,
+ "end": 17812.72,
+ "text": "feel"
+ },
+ {
+ "id": 39891,
+ "start": 17812.72,
+ "end": 17813.2,
+ "text": "confident"
+ },
+ {
+ "id": 39892,
+ "start": 17813.2,
+ "end": 17813.4,
+ "text": "that"
+ },
+ {
+ "id": 39893,
+ "start": 17813.4,
+ "end": 17813.98,
+ "text": "the"
+ },
+ {
+ "id": 39894,
+ "start": 17813.98,
+ "end": 17814.38,
+ "text": "actions"
+ },
+ {
+ "id": 39895,
+ "start": 17814.38,
+ "end": 17814.68,
+ "text": "you've"
+ },
+ {
+ "id": 39896,
+ "start": 17814.68,
+ "end": 17814.96,
+ "text": "taken"
+ },
+ {
+ "id": 39897,
+ "start": 17814.96,
+ "end": 17815.24,
+ "text": "thus"
+ },
+ {
+ "id": 39898,
+ "start": 17815.24,
+ "end": 17815.44,
+ "text": "far"
+ },
+ {
+ "id": 39899,
+ "start": 17815.44,
+ "end": 17815.6,
+ "text": "where"
+ },
+ {
+ "id": 39900,
+ "start": 17815.6,
+ "end": 17815.74,
+ "text": "there"
+ },
+ {
+ "id": 39901,
+ "start": 17815.74,
+ "end": 17815.86,
+ "text": "was"
+ },
+ {
+ "id": 39902,
+ "start": 17815.86,
+ "end": 17816.1,
+ "text": "ones"
+ },
+ {
+ "id": 39903,
+ "start": 17816.1,
+ "end": 17816.28,
+ "text": "back"
+ },
+ {
+ "id": 39904,
+ "start": 17816.28,
+ "end": 17816.38,
+ "text": "in"
+ },
+ {
+ "id": 39905,
+ "start": 17816.38,
+ "end": 17817.36,
+ "text": "2,014"
+ },
+ {
+ "id": 39906,
+ "start": 17817.36,
+ "end": 17817.8,
+ "text": "or"
+ },
+ {
+ "id": 39907,
+ "start": 17817.8,
+ "end": 17817.9,
+ "text": "the"
+ },
+ {
+ "id": 39908,
+ "start": 17817.9,
+ "end": 17818.02,
+ "text": "one"
+ },
+ {
+ "id": 39909,
+ "start": 17818.02,
+ "end": 17818.16,
+ "text": "that"
+ },
+ {
+ "id": 39910,
+ "start": 17818.16,
+ "end": 17818.32,
+ "text": "you"
+ },
+ {
+ "id": 39911,
+ "start": 17818.32,
+ "end": 17818.46,
+ "text": "just"
+ },
+ {
+ "id": 39912,
+ "start": 17818.46,
+ "end": 17818.86,
+ "text": "talked"
+ },
+ {
+ "id": 39913,
+ "start": 17818.86,
+ "end": 17819.12,
+ "text": "about"
+ },
+ {
+ "id": 39914,
+ "start": 17819.12,
+ "end": 17819.4,
+ "text": "about"
+ },
+ {
+ "id": 39915,
+ "start": 17819.4,
+ "end": 17819.84,
+ "text": "locking"
+ },
+ {
+ "id": 39916,
+ "start": 17819.84,
+ "end": 17820.12,
+ "text": "down,"
+ },
+ {
+ "id": 39917,
+ "start": 17820.12,
+ "end": 17820.54,
+ "text": "the"
+ },
+ {
+ "id": 39918,
+ "start": 17820.54,
+ "end": 17820.76,
+ "text": "other"
+ },
+ {
+ "id": 39919,
+ "start": 17820.76,
+ "end": 17821.02,
+ "text": "parts"
+ },
+ {
+ "id": 39920,
+ "start": 17821.02,
+ "end": 17821.46,
+ "text": "will"
+ },
+ {
+ "id": 39921,
+ "start": 17821.46,
+ "end": 17822.5,
+ "text": "adequately"
+ },
+ {
+ "id": 39922,
+ "start": 17822.5,
+ "end": 17823.02,
+ "text": "protect"
+ },
+ {
+ "id": 39923,
+ "start": 17823.02,
+ "end": 17823.62,
+ "text": "the"
+ },
+ {
+ "id": 39924,
+ "start": 17823.62,
+ "end": 17823.82,
+ "text": "folks"
+ },
+ {
+ "id": 39925,
+ "start": 17823.82,
+ "end": 17823.92,
+ "text": "who"
+ },
+ {
+ "id": 39926,
+ "start": 17823.92,
+ "end": 17824.16,
+ "text": "use"
+ },
+ {
+ "id": 39927,
+ "start": 17824.16,
+ "end": 17825.28,
+ "text": "Facebook."
+ },
+ {
+ "id": 39928,
+ "start": 17825.28,
+ "end": 17826.36,
+ "text": "Senator,"
+ },
+ {
+ "id": 39929,
+ "start": 17826.36,
+ "end": 17826.74,
+ "text": "I"
+ },
+ {
+ "id": 39930,
+ "start": 17826.74,
+ "end": 17827.04,
+ "text": "believe"
+ },
+ {
+ "id": 39931,
+ "start": 17827.04,
+ "end": 17827.24,
+ "text": "so."
+ },
+ {
+ "id": 39932,
+ "start": 17827.24,
+ "end": 17828.2,
+ "text": "Although"
+ },
+ {
+ "id": 39933,
+ "start": 17828.2,
+ "end": 17828.66,
+ "text": "security"
+ },
+ {
+ "id": 39934,
+ "start": 17828.66,
+ "end": 17828.82,
+ "text": "is"
+ },
+ {
+ "id": 39935,
+ "start": 17828.82,
+ "end": 17829.08,
+ "text": "never"
+ },
+ {
+ "id": 39936,
+ "start": 17829.08,
+ "end": 17829.14,
+ "text": "a"
+ },
+ {
+ "id": 39937,
+ "start": 17829.14,
+ "end": 17829.54,
+ "text": "solved"
+ },
+ {
+ "id": 39938,
+ "start": 17829.54,
+ "end": 17829.92,
+ "text": "problem."
+ },
+ {
+ "id": 39939,
+ "start": 17829.92,
+ "end": 17830.18,
+ "text": "So"
+ },
+ {
+ "id": 39940,
+ "start": 17830.18,
+ "end": 17830.36,
+ "text": "all"
+ },
+ {
+ "id": 39941,
+ "start": 17830.36,
+ "end": 17830.46,
+ "text": "I"
+ },
+ {
+ "id": 39942,
+ "start": 17830.46,
+ "end": 17830.7,
+ "text": "need"
+ },
+ {
+ "id": 39943,
+ "start": 17830.7,
+ "end": 17831.38,
+ "text": "you"
+ },
+ {
+ "id": 39944,
+ "start": 17831.38,
+ "end": 17831.66,
+ "text": "talked"
+ },
+ {
+ "id": 39945,
+ "start": 17831.66,
+ "end": 17831.92,
+ "text": "about"
+ },
+ {
+ "id": 39946,
+ "start": 17831.92,
+ "end": 17831.98,
+ "text": "a"
+ },
+ {
+ "id": 39947,
+ "start": 17831.98,
+ "end": 17832.32,
+ "text": "full"
+ },
+ {
+ "id": 39948,
+ "start": 17832.32,
+ "end": 17832.66,
+ "text": "audit"
+ },
+ {
+ "id": 39949,
+ "start": 17832.66,
+ "end": 17832.76,
+ "text": "of"
+ },
+ {
+ "id": 39950,
+ "start": 17832.76,
+ "end": 17833.18,
+ "text": "the"
+ },
+ {
+ "id": 39951,
+ "start": 17833.18,
+ "end": 17833.68,
+ "text": "Cambridge"
+ },
+ {
+ "id": 39952,
+ "start": 17833.68,
+ "end": 17834.26,
+ "text": "analytical"
+ },
+ {
+ "id": 39953,
+ "start": 17834.26,
+ "end": 17834.72,
+ "text": "systems."
+ },
+ {
+ "id": 39954,
+ "start": 17834.72,
+ "end": 17835.28,
+ "text": "Can"
+ },
+ {
+ "id": 39955,
+ "start": 17835.28,
+ "end": 17835.44,
+ "text": "you"
+ },
+ {
+ "id": 39956,
+ "start": 17835.44,
+ "end": 17835.58,
+ "text": "do"
+ },
+ {
+ "id": 39957,
+ "start": 17835.58,
+ "end": 17835.66,
+ "text": "a"
+ },
+ {
+ "id": 39958,
+ "start": 17835.66,
+ "end": 17835.92,
+ "text": "full"
+ },
+ {
+ "id": 39959,
+ "start": 17835.92,
+ "end": 17836.2,
+ "text": "audit?"
+ },
+ {
+ "id": 39960,
+ "start": 17836.2,
+ "end": 17836.32,
+ "text": "If"
+ },
+ {
+ "id": 39961,
+ "start": 17836.32,
+ "end": 17836.52,
+ "text": "that"
+ },
+ {
+ "id": 39962,
+ "start": 17836.52,
+ "end": 17837,
+ "text": "information"
+ },
+ {
+ "id": 39963,
+ "start": 17837,
+ "end": 17837.08,
+ "text": "is"
+ },
+ {
+ "id": 39964,
+ "start": 17837.08,
+ "end": 17837.4,
+ "text": "stored"
+ },
+ {
+ "id": 39965,
+ "start": 17837.4,
+ "end": 17837.98,
+ "text": "somewhere"
+ },
+ {
+ "id": 39966,
+ "start": 17837.98,
+ "end": 17838.16,
+ "text": "of"
+ },
+ {
+ "id": 39967,
+ "start": 17838.16,
+ "end": 17838.34,
+ "text": "some"
+ },
+ {
+ "id": 39968,
+ "start": 17838.34,
+ "end": 17838.54,
+ "text": "other"
+ },
+ {
+ "id": 39969,
+ "start": 17838.54,
+ "end": 17840.18,
+ "text": "country."
+ },
+ {
+ "id": 39970,
+ "start": 17840.18,
+ "end": 17843.02,
+ "text": "Senator"
+ },
+ {
+ "id": 39971,
+ "start": 17843.02,
+ "end": 17843.88,
+ "text": "right"
+ },
+ {
+ "id": 39972,
+ "start": 17843.88,
+ "end": 17844.04,
+ "text": "now"
+ },
+ {
+ "id": 39973,
+ "start": 17844.04,
+ "end": 17844.96,
+ "text": "we're"
+ },
+ {
+ "id": 39974,
+ "start": 17844.96,
+ "end": 17845.28,
+ "text": "waiting"
+ },
+ {
+ "id": 39975,
+ "start": 17845.28,
+ "end": 17845.38,
+ "text": "on"
+ },
+ {
+ "id": 39976,
+ "start": 17845.38,
+ "end": 17845.5,
+ "text": "the"
+ },
+ {
+ "id": 39977,
+ "start": 17845.5,
+ "end": 17845.72,
+ "text": "audit"
+ },
+ {
+ "id": 39978,
+ "start": 17845.72,
+ "end": 17846.02,
+ "text": "because"
+ },
+ {
+ "id": 39979,
+ "start": 17846.02,
+ "end": 17846.18,
+ "text": "the"
+ },
+ {
+ "id": 39980,
+ "start": 17846.18,
+ "end": 17846.56,
+ "text": "UK"
+ },
+ {
+ "id": 39981,
+ "start": 17846.56,
+ "end": 17847.04,
+ "text": "government"
+ },
+ {
+ "id": 39982,
+ "start": 17847.04,
+ "end": 17847.26,
+ "text": "is"
+ },
+ {
+ "id": 39983,
+ "start": 17847.26,
+ "end": 17847.46,
+ "text": "doing"
+ },
+ {
+ "id": 39984,
+ "start": 17847.46,
+ "end": 17847.5,
+ "text": "a"
+ },
+ {
+ "id": 39985,
+ "start": 17847.5,
+ "end": 17847.9,
+ "text": "government"
+ },
+ {
+ "id": 39986,
+ "start": 17847.9,
+ "end": 17848.56,
+ "text": "investigation"
+ },
+ {
+ "id": 39987,
+ "start": 17848.56,
+ "end": 17848.68,
+ "text": "of"
+ },
+ {
+ "id": 39988,
+ "start": 17848.68,
+ "end": 17848.88,
+ "text": "them."
+ },
+ {
+ "id": 39989,
+ "start": 17848.88,
+ "end": 17849.44,
+ "text": "And"
+ },
+ {
+ "id": 39990,
+ "start": 17849.44,
+ "end": 17849.52,
+ "text": "I"
+ },
+ {
+ "id": 39991,
+ "start": 17849.52,
+ "end": 17849.66,
+ "text": "do"
+ },
+ {
+ "id": 39992,
+ "start": 17849.66,
+ "end": 17849.9,
+ "text": "believe"
+ },
+ {
+ "id": 39993,
+ "start": 17849.9,
+ "end": 17850.02,
+ "text": "that"
+ },
+ {
+ "id": 39994,
+ "start": 17850.02,
+ "end": 17850.12,
+ "text": "the"
+ },
+ {
+ "id": 39995,
+ "start": 17850.12,
+ "end": 17850.5,
+ "text": "government"
+ },
+ {
+ "id": 39996,
+ "start": 17850.5,
+ "end": 17850.76,
+ "text": "will"
+ },
+ {
+ "id": 39997,
+ "start": 17850.76,
+ "end": 17850.94,
+ "text": "have"
+ },
+ {
+ "id": 39998,
+ "start": 17850.94,
+ "end": 17851.06,
+ "text": "the"
+ },
+ {
+ "id": 39999,
+ "start": 17851.06,
+ "end": 17851.44,
+ "text": "ability"
+ },
+ {
+ "id": 40000,
+ "start": 17851.44,
+ "end": 17851.66,
+ "text": "to"
+ },
+ {
+ "id": 40001,
+ "start": 17851.66,
+ "end": 17852.2,
+ "text": "get"
+ },
+ {
+ "id": 40002,
+ "start": 17852.2,
+ "end": 17852.38,
+ "text": "into"
+ },
+ {
+ "id": 40003,
+ "start": 17852.38,
+ "end": 17852.5,
+ "text": "the"
+ },
+ {
+ "id": 40004,
+ "start": 17852.5,
+ "end": 17852.8,
+ "text": "system."
+ },
+ {
+ "id": 40005,
+ "start": 17852.8,
+ "end": 17853.12,
+ "text": "Even"
+ },
+ {
+ "id": 40006,
+ "start": 17853.12,
+ "end": 17853.22,
+ "text": "if"
+ },
+ {
+ "id": 40007,
+ "start": 17853.22,
+ "end": 17853.34,
+ "text": "we"
+ },
+ {
+ "id": 40008,
+ "start": 17853.34,
+ "end": 17853.62,
+ "text": "can't"
+ },
+ {
+ "id": 40009,
+ "start": 17853.62,
+ "end": 17853.92,
+ "text": "if"
+ },
+ {
+ "id": 40010,
+ "start": 17853.92,
+ "end": 17854.48,
+ "text": "information"
+ },
+ {
+ "id": 40011,
+ "start": 17854.48,
+ "end": 17854.58,
+ "text": "is"
+ },
+ {
+ "id": 40012,
+ "start": 17854.58,
+ "end": 17854.86,
+ "text": "stored"
+ },
+ {
+ "id": 40013,
+ "start": 17854.86,
+ "end": 17854.96,
+ "text": "in"
+ },
+ {
+ "id": 40014,
+ "start": 17854.96,
+ "end": 17855.1,
+ "text": "the"
+ },
+ {
+ "id": 40015,
+ "start": 17855.1,
+ "end": 17855.4,
+ "text": "UK."
+ },
+ {
+ "id": 40016,
+ "start": 17855.4,
+ "end": 17855.52,
+ "text": "But"
+ },
+ {
+ "id": 40017,
+ "start": 17855.52,
+ "end": 17855.66,
+ "text": "what"
+ },
+ {
+ "id": 40018,
+ "start": 17855.66,
+ "end": 17855.76,
+ "text": "if"
+ },
+ {
+ "id": 40019,
+ "start": 17855.76,
+ "end": 17855.9,
+ "text": "it's"
+ },
+ {
+ "id": 40020,
+ "start": 17855.9,
+ "end": 17856.22,
+ "text": "stored"
+ },
+ {
+ "id": 40021,
+ "start": 17856.22,
+ "end": 17856.32,
+ "text": "to"
+ },
+ {
+ "id": 40022,
+ "start": 17856.32,
+ "end": 17856.5,
+ "text": "some"
+ },
+ {
+ "id": 40023,
+ "start": 17856.5,
+ "end": 17856.7,
+ "text": "other"
+ },
+ {
+ "id": 40024,
+ "start": 17856.7,
+ "end": 17857.92,
+ "text": "country."
+ },
+ {
+ "id": 40025,
+ "start": 17857.92,
+ "end": 17859,
+ "text": "What"
+ },
+ {
+ "id": 40026,
+ "start": 17859,
+ "end": 17859.12,
+ "text": "if"
+ },
+ {
+ "id": 40027,
+ "start": 17859.12,
+ "end": 17859.24,
+ "text": "the"
+ },
+ {
+ "id": 40028,
+ "start": 17859.24,
+ "end": 17859.84,
+ "text": "information"
+ },
+ {
+ "id": 40029,
+ "start": 17859.84,
+ "end": 17859.98,
+ "text": "is"
+ },
+ {
+ "id": 40030,
+ "start": 17859.98,
+ "end": 17860.32,
+ "text": "stored"
+ },
+ {
+ "id": 40031,
+ "start": 17860.32,
+ "end": 17860.42,
+ "text": "in"
+ },
+ {
+ "id": 40032,
+ "start": 17860.42,
+ "end": 17860.62,
+ "text": "some"
+ },
+ {
+ "id": 40033,
+ "start": 17860.62,
+ "end": 17860.84,
+ "text": "other"
+ },
+ {
+ "id": 40034,
+ "start": 17860.84,
+ "end": 17861.16,
+ "text": "country?"
+ },
+ {
+ "id": 40035,
+ "start": 17861.16,
+ "end": 17862.12,
+ "text": "Is"
+ },
+ {
+ "id": 40036,
+ "start": 17862.12,
+ "end": 17862.22,
+ "text": "an"
+ },
+ {
+ "id": 40037,
+ "start": 17862.22,
+ "end": 17862.52,
+ "text": "audit"
+ },
+ {
+ "id": 40038,
+ "start": 17862.52,
+ "end": 17862.74,
+ "text": "even"
+ },
+ {
+ "id": 40039,
+ "start": 17862.74,
+ "end": 17863.16,
+ "text": "possible?"
+ },
+ {
+ "id": 40040,
+ "start": 17863.16,
+ "end": 17864.22,
+ "text": "Well,"
+ },
+ {
+ "id": 40041,
+ "start": 17864.22,
+ "end": 17864.5,
+ "text": "Senator,"
+ },
+ {
+ "id": 40042,
+ "start": 17864.5,
+ "end": 17864.66,
+ "text": "we"
+ },
+ {
+ "id": 40043,
+ "start": 17864.66,
+ "end": 17864.94,
+ "text": "believe"
+ },
+ {
+ "id": 40044,
+ "start": 17864.94,
+ "end": 17865.04,
+ "text": "a"
+ },
+ {
+ "id": 40045,
+ "start": 17865.04,
+ "end": 17865.22,
+ "text": "bunch"
+ },
+ {
+ "id": 40046,
+ "start": 17865.22,
+ "end": 17865.3,
+ "text": "of"
+ },
+ {
+ "id": 40047,
+ "start": 17865.3,
+ "end": 17865.4,
+ "text": "the"
+ },
+ {
+ "id": 40048,
+ "start": 17865.4,
+ "end": 17866.02,
+ "text": "information"
+ },
+ {
+ "id": 40049,
+ "start": 17866.02,
+ "end": 17866.34,
+ "text": "that"
+ },
+ {
+ "id": 40050,
+ "start": 17866.34,
+ "end": 17866.8,
+ "text": "we"
+ },
+ {
+ "id": 40051,
+ "start": 17866.8,
+ "end": 17867.06,
+ "text": "will"
+ },
+ {
+ "id": 40052,
+ "start": 17867.06,
+ "end": 17867.16,
+ "text": "be"
+ },
+ {
+ "id": 40053,
+ "start": 17867.16,
+ "end": 17867.3,
+ "text": "able"
+ },
+ {
+ "id": 40054,
+ "start": 17867.3,
+ "end": 17867.38,
+ "text": "to"
+ },
+ {
+ "id": 40055,
+ "start": 17867.38,
+ "end": 17868.12,
+ "text": "audit."
+ },
+ {
+ "id": 40056,
+ "start": 17868.12,
+ "end": 17868.56,
+ "text": "I"
+ },
+ {
+ "id": 40057,
+ "start": 17868.56,
+ "end": 17868.84,
+ "text": "think"
+ },
+ {
+ "id": 40058,
+ "start": 17868.84,
+ "end": 17868.98,
+ "text": "you"
+ },
+ {
+ "id": 40059,
+ "start": 17868.98,
+ "end": 17869.2,
+ "text": "raise"
+ },
+ {
+ "id": 40060,
+ "start": 17869.2,
+ "end": 17869.32,
+ "text": "an"
+ },
+ {
+ "id": 40061,
+ "start": 17869.32,
+ "end": 17869.68,
+ "text": "important"
+ },
+ {
+ "id": 40062,
+ "start": 17869.68,
+ "end": 17870.04,
+ "text": "question"
+ },
+ {
+ "id": 40063,
+ "start": 17870.04,
+ "end": 17870.48,
+ "text": "and"
+ },
+ {
+ "id": 40064,
+ "start": 17870.48,
+ "end": 17870.86,
+ "text": "if"
+ },
+ {
+ "id": 40065,
+ "start": 17870.86,
+ "end": 17870.98,
+ "text": "we"
+ },
+ {
+ "id": 40066,
+ "start": 17870.98,
+ "end": 17871.12,
+ "text": "have"
+ },
+ {
+ "id": 40067,
+ "start": 17871.12,
+ "end": 17871.46,
+ "text": "issues,"
+ },
+ {
+ "id": 40068,
+ "start": 17871.46,
+ "end": 17871.74,
+ "text": "then"
+ },
+ {
+ "id": 40069,
+ "start": 17871.74,
+ "end": 17872.68,
+ "text": "if"
+ },
+ {
+ "id": 40070,
+ "start": 17872.68,
+ "end": 17872.88,
+ "text": "we"
+ },
+ {
+ "id": 40071,
+ "start": 17872.88,
+ "end": 17873.08,
+ "text": "are"
+ },
+ {
+ "id": 40072,
+ "start": 17873.08,
+ "end": 17873.3,
+ "text": "not"
+ },
+ {
+ "id": 40073,
+ "start": 17873.3,
+ "end": 17873.58,
+ "text": "able"
+ },
+ {
+ "id": 40074,
+ "start": 17873.58,
+ "end": 17873.7,
+ "text": "to"
+ },
+ {
+ "id": 40075,
+ "start": 17873.7,
+ "end": 17873.94,
+ "text": "do"
+ },
+ {
+ "id": 40076,
+ "start": 17873.94,
+ "end": 17874.16,
+ "text": "an"
+ },
+ {
+ "id": 40077,
+ "start": 17874.16,
+ "end": 17874.48,
+ "text": "audit"
+ },
+ {
+ "id": 40078,
+ "start": 17874.48,
+ "end": 17874.64,
+ "text": "to"
+ },
+ {
+ "id": 40079,
+ "start": 17874.64,
+ "end": 17874.8,
+ "text": "our"
+ },
+ {
+ "id": 40080,
+ "start": 17874.8,
+ "end": 17875.56,
+ "text": "satisfaction,"
+ },
+ {
+ "id": 40081,
+ "start": 17875.56,
+ "end": 17876.2,
+ "text": "we"
+ },
+ {
+ "id": 40082,
+ "start": 17876.2,
+ "end": 17876.36,
+ "text": "are"
+ },
+ {
+ "id": 40083,
+ "start": 17876.36,
+ "end": 17876.64,
+ "text": "going"
+ },
+ {
+ "id": 40084,
+ "start": 17876.64,
+ "end": 17876.76,
+ "text": "to"
+ },
+ {
+ "id": 40085,
+ "start": 17876.76,
+ "end": 17877,
+ "text": "take"
+ },
+ {
+ "id": 40086,
+ "start": 17877,
+ "end": 17877.34,
+ "text": "legal"
+ },
+ {
+ "id": 40087,
+ "start": 17877.34,
+ "end": 17877.64,
+ "text": "action"
+ },
+ {
+ "id": 40088,
+ "start": 17877.64,
+ "end": 17877.86,
+ "text": "to"
+ },
+ {
+ "id": 40089,
+ "start": 17877.86,
+ "end": 17878.26,
+ "text": "enable"
+ },
+ {
+ "id": 40090,
+ "start": 17878.26,
+ "end": 17878.42,
+ "text": "us"
+ },
+ {
+ "id": 40091,
+ "start": 17878.42,
+ "end": 17878.52,
+ "text": "to"
+ },
+ {
+ "id": 40092,
+ "start": 17878.52,
+ "end": 17878.68,
+ "text": "do"
+ },
+ {
+ "id": 40093,
+ "start": 17878.68,
+ "end": 17878.9,
+ "text": "that."
+ },
+ {
+ "id": 40094,
+ "start": 17878.9,
+ "end": 17879.93,
+ "text": "And"
+ },
+ {
+ "id": 40095,
+ "start": 17879.93,
+ "end": 17880.57,
+ "text": "and"
+ },
+ {
+ "id": 40096,
+ "start": 17880.57,
+ "end": 17880.95,
+ "text": "also,"
+ },
+ {
+ "id": 40097,
+ "start": 17880.95,
+ "end": 17881.01,
+ "text": "I"
+ },
+ {
+ "id": 40098,
+ "start": 17881.01,
+ "end": 17881.19,
+ "text": "know"
+ },
+ {
+ "id": 40099,
+ "start": 17881.19,
+ "end": 17881.33,
+ "text": "that"
+ },
+ {
+ "id": 40100,
+ "start": 17881.33,
+ "end": 17881.47,
+ "text": "the"
+ },
+ {
+ "id": 40101,
+ "start": 17881.47,
+ "end": 17881.71,
+ "text": "UK"
+ },
+ {
+ "id": 40102,
+ "start": 17881.71,
+ "end": 17882.01,
+ "text": "and"
+ },
+ {
+ "id": 40103,
+ "start": 17882.01,
+ "end": 17882.31,
+ "text": "US"
+ },
+ {
+ "id": 40104,
+ "start": 17882.31,
+ "end": 17882.75,
+ "text": "governments"
+ },
+ {
+ "id": 40105,
+ "start": 17882.75,
+ "end": 17882.93,
+ "text": "are"
+ },
+ {
+ "id": 40106,
+ "start": 17882.93,
+ "end": 17883.17,
+ "text": "also"
+ },
+ {
+ "id": 40107,
+ "start": 17883.17,
+ "end": 17883.51,
+ "text": "involved"
+ },
+ {
+ "id": 40108,
+ "start": 17883.51,
+ "end": 17883.63,
+ "text": "in"
+ },
+ {
+ "id": 40109,
+ "start": 17883.63,
+ "end": 17883.87,
+ "text": "working"
+ },
+ {
+ "id": 40110,
+ "start": 17883.87,
+ "end": 17883.95,
+ "text": "on"
+ },
+ {
+ "id": 40111,
+ "start": 17883.95,
+ "end": 17884.09,
+ "text": "this"
+ },
+ {
+ "id": 40112,
+ "start": 17884.09,
+ "end": 17884.25,
+ "text": "as"
+ },
+ {
+ "id": 40113,
+ "start": 17884.25,
+ "end": 17885.01,
+ "text": "well."
+ },
+ {
+ "id": 40114,
+ "start": 17885.01,
+ "end": 17885.99,
+ "text": "I'm"
+ },
+ {
+ "id": 40115,
+ "start": 17885.99,
+ "end": 17886.27,
+ "text": "telling"
+ },
+ {
+ "id": 40116,
+ "start": 17886.27,
+ "end": 17886.41,
+ "text": "you"
+ },
+ {
+ "id": 40117,
+ "start": 17886.41,
+ "end": 17886.91,
+ "text": "I"
+ },
+ {
+ "id": 40118,
+ "start": 17886.91,
+ "end": 17887.23,
+ "text": "have"
+ },
+ {
+ "id": 40119,
+ "start": 17887.23,
+ "end": 17887.51,
+ "text": "faith"
+ },
+ {
+ "id": 40120,
+ "start": 17887.51,
+ "end": 17887.67,
+ "text": "in"
+ },
+ {
+ "id": 40121,
+ "start": 17887.67,
+ "end": 17887.77,
+ "text": "the"
+ },
+ {
+ "id": 40122,
+ "start": 17887.77,
+ "end": 17888.05,
+ "text": "US"
+ },
+ {
+ "id": 40123,
+ "start": 17888.05,
+ "end": 17888.45,
+ "text": "government."
+ },
+ {
+ "id": 40124,
+ "start": 17888.45,
+ "end": 17888.85,
+ "text": "I"
+ },
+ {
+ "id": 40125,
+ "start": 17888.85,
+ "end": 17889.13,
+ "text": "really"
+ },
+ {
+ "id": 40126,
+ "start": 17889.13,
+ "end": 17889.51,
+ "text": "actually"
+ },
+ {
+ "id": 40127,
+ "start": 17889.51,
+ "end": 17889.69,
+ "text": "have"
+ },
+ {
+ "id": 40128,
+ "start": 17889.69,
+ "end": 17889.95,
+ "text": "faith"
+ },
+ {
+ "id": 40129,
+ "start": 17889.95,
+ "end": 17890.11,
+ "text": "in"
+ },
+ {
+ "id": 40130,
+ "start": 17890.11,
+ "end": 17890.25,
+ "text": "the"
+ },
+ {
+ "id": 40131,
+ "start": 17890.25,
+ "end": 17890.69,
+ "text": "UK"
+ },
+ {
+ "id": 40132,
+ "start": 17890.69,
+ "end": 17891.74,
+ "text": "to"
+ },
+ {
+ "id": 40133,
+ "start": 17891.74,
+ "end": 17892.72,
+ "text": "there"
+ },
+ {
+ "id": 40134,
+ "start": 17892.72,
+ "end": 17892.88,
+ "text": "have"
+ },
+ {
+ "id": 40135,
+ "start": 17892.88,
+ "end": 17893.1,
+ "text": "been"
+ },
+ {
+ "id": 40136,
+ "start": 17893.1,
+ "end": 17893.44,
+ "text": "claims"
+ },
+ {
+ "id": 40137,
+ "start": 17893.44,
+ "end": 17893.56,
+ "text": "that"
+ },
+ {
+ "id": 40138,
+ "start": 17893.56,
+ "end": 17893.74,
+ "text": "this"
+ },
+ {
+ "id": 40139,
+ "start": 17893.74,
+ "end": 17894.28,
+ "text": "information"
+ },
+ {
+ "id": 40140,
+ "start": 17894.28,
+ "end": 17894.44,
+ "text": "is"
+ },
+ {
+ "id": 40141,
+ "start": 17894.44,
+ "end": 17894.64,
+ "text": "being"
+ },
+ {
+ "id": 40142,
+ "start": 17894.64,
+ "end": 17894.9,
+ "text": "stored"
+ },
+ {
+ "id": 40143,
+ "start": 17894.9,
+ "end": 17895,
+ "text": "in"
+ },
+ {
+ "id": 40144,
+ "start": 17895,
+ "end": 17895.3,
+ "text": "Russia."
+ },
+ {
+ "id": 40145,
+ "start": 17895.3,
+ "end": 17895.36,
+ "text": "I"
+ },
+ {
+ "id": 40146,
+ "start": 17895.36,
+ "end": 17895.64,
+ "text": "don't"
+ },
+ {
+ "id": 40147,
+ "start": 17895.64,
+ "end": 17895.82,
+ "text": "care,"
+ },
+ {
+ "id": 40148,
+ "start": 17895.82,
+ "end": 17895.9,
+ "text": "it"
+ },
+ {
+ "id": 40149,
+ "start": 17895.9,
+ "end": 17896.08,
+ "text": "could"
+ },
+ {
+ "id": 40150,
+ "start": 17896.08,
+ "end": 17896.18,
+ "text": "be"
+ },
+ {
+ "id": 40151,
+ "start": 17896.18,
+ "end": 17896.44,
+ "text": "stored"
+ },
+ {
+ "id": 40152,
+ "start": 17896.44,
+ "end": 17896.78,
+ "text": "anywhere"
+ },
+ {
+ "id": 40153,
+ "start": 17896.78,
+ "end": 17896.88,
+ "text": "in"
+ },
+ {
+ "id": 40154,
+ "start": 17896.88,
+ "end": 17897,
+ "text": "the"
+ },
+ {
+ "id": 40155,
+ "start": 17897,
+ "end": 17897.36,
+ "text": "world."
+ },
+ {
+ "id": 40156,
+ "start": 17897.36,
+ "end": 17897.92,
+ "text": "I"
+ },
+ {
+ "id": 40157,
+ "start": 17897.92,
+ "end": 17898.1,
+ "text": "don't"
+ },
+ {
+ "id": 40158,
+ "start": 17898.1,
+ "end": 17898.24,
+ "text": "know"
+ },
+ {
+ "id": 40159,
+ "start": 17898.24,
+ "end": 17898.34,
+ "text": "how"
+ },
+ {
+ "id": 40160,
+ "start": 17898.34,
+ "end": 17898.46,
+ "text": "you"
+ },
+ {
+ "id": 40161,
+ "start": 17898.46,
+ "end": 17898.6,
+ "text": "get"
+ },
+ {
+ "id": 40162,
+ "start": 17898.6,
+ "end": 17898.96,
+ "text": "access"
+ },
+ {
+ "id": 40163,
+ "start": 17898.96,
+ "end": 17899.08,
+ "text": "to"
+ },
+ {
+ "id": 40164,
+ "start": 17899.08,
+ "end": 17899.46,
+ "text": "that"
+ },
+ {
+ "id": 40165,
+ "start": 17899.46,
+ "end": 17900,
+ "text": "information"
+ },
+ {
+ "id": 40166,
+ "start": 17900,
+ "end": 17900.22,
+ "text": "I'm"
+ },
+ {
+ "id": 40167,
+ "start": 17900.22,
+ "end": 17900.5,
+ "text": "not"
+ },
+ {
+ "id": 40168,
+ "start": 17900.5,
+ "end": 17901,
+ "text": "as"
+ },
+ {
+ "id": 40169,
+ "start": 17901,
+ "end": 17901.28,
+ "text": "smart"
+ },
+ {
+ "id": 40170,
+ "start": 17901.28,
+ "end": 17901.38,
+ "text": "as"
+ },
+ {
+ "id": 40171,
+ "start": 17901.38,
+ "end": 17901.52,
+ "text": "you"
+ },
+ {
+ "id": 40172,
+ "start": 17901.52,
+ "end": 17901.74,
+ "text": "are"
+ },
+ {
+ "id": 40173,
+ "start": 17901.74,
+ "end": 17902.86,
+ "text": "about"
+ },
+ {
+ "id": 40174,
+ "start": 17902.86,
+ "end": 17903.66,
+ "text": "the"
+ },
+ {
+ "id": 40175,
+ "start": 17903.66,
+ "end": 17904.78,
+ "text": "information."
+ },
+ {
+ "id": 40176,
+ "start": 17904.78,
+ "end": 17905,
+ "text": "And"
+ },
+ {
+ "id": 40177,
+ "start": 17905,
+ "end": 17905.14,
+ "text": "so"
+ },
+ {
+ "id": 40178,
+ "start": 17905.14,
+ "end": 17905.28,
+ "text": "the"
+ },
+ {
+ "id": 40179,
+ "start": 17905.28,
+ "end": 17905.72,
+ "text": "question"
+ },
+ {
+ "id": 40180,
+ "start": 17905.72,
+ "end": 17906.02,
+ "text": "really"
+ },
+ {
+ "id": 40181,
+ "start": 17906.02,
+ "end": 17906.5,
+ "text": "becomes"
+ },
+ {
+ "id": 40182,
+ "start": 17906.5,
+ "end": 17906.86,
+ "text": "and"
+ },
+ {
+ "id": 40183,
+ "start": 17906.86,
+ "end": 17907,
+ "text": "I"
+ },
+ {
+ "id": 40184,
+ "start": 17907,
+ "end": 17907.14,
+ "text": "got"
+ },
+ {
+ "id": 40185,
+ "start": 17907.14,
+ "end": 17907.24,
+ "text": "to"
+ },
+ {
+ "id": 40186,
+ "start": 17907.24,
+ "end": 17907.4,
+ "text": "move"
+ },
+ {
+ "id": 40187,
+ "start": 17907.4,
+ "end": 17907.58,
+ "text": "on."
+ },
+ {
+ "id": 40188,
+ "start": 17907.58,
+ "end": 17907.72,
+ "text": "But"
+ },
+ {
+ "id": 40189,
+ "start": 17907.72,
+ "end": 17907.84,
+ "text": "the"
+ },
+ {
+ "id": 40190,
+ "start": 17907.84,
+ "end": 17908.14,
+ "text": "question"
+ },
+ {
+ "id": 40191,
+ "start": 17908.14,
+ "end": 17908.28,
+ "text": "is,"
+ },
+ {
+ "id": 40192,
+ "start": 17908.28,
+ "end": 17909.26,
+ "text": "I"
+ },
+ {
+ "id": 40193,
+ "start": 17909.26,
+ "end": 17909.46,
+ "text": "don't"
+ },
+ {
+ "id": 40194,
+ "start": 17909.46,
+ "end": 17909.68,
+ "text": "see"
+ },
+ {
+ "id": 40195,
+ "start": 17909.68,
+ "end": 17909.86,
+ "text": "how"
+ },
+ {
+ "id": 40196,
+ "start": 17909.86,
+ "end": 17910,
+ "text": "you"
+ },
+ {
+ "id": 40197,
+ "start": 17910,
+ "end": 17910.2,
+ "text": "can"
+ },
+ {
+ "id": 40198,
+ "start": 17910.2,
+ "end": 17910.7,
+ "text": "perform"
+ },
+ {
+ "id": 40199,
+ "start": 17910.7,
+ "end": 17910.78,
+ "text": "a"
+ },
+ {
+ "id": 40200,
+ "start": 17910.78,
+ "end": 17911,
+ "text": "full"
+ },
+ {
+ "id": 40201,
+ "start": 17911,
+ "end": 17911.34,
+ "text": "audit."
+ },
+ {
+ "id": 40202,
+ "start": 17911.34,
+ "end": 17911.7,
+ "text": "If"
+ },
+ {
+ "id": 40203,
+ "start": 17911.7,
+ "end": 17911.94,
+ "text": "they've"
+ },
+ {
+ "id": 40204,
+ "start": 17911.94,
+ "end": 17912.1,
+ "text": "got"
+ },
+ {
+ "id": 40205,
+ "start": 17912.1,
+ "end": 17912.38,
+ "text": "stuff"
+ },
+ {
+ "id": 40206,
+ "start": 17912.38,
+ "end": 17912.68,
+ "text": "stored"
+ },
+ {
+ "id": 40207,
+ "start": 17912.68,
+ "end": 17912.98,
+ "text": "somewhere"
+ },
+ {
+ "id": 40208,
+ "start": 17912.98,
+ "end": 17913.12,
+ "text": "else"
+ },
+ {
+ "id": 40209,
+ "start": 17913.12,
+ "end": 17913.26,
+ "text": "that"
+ },
+ {
+ "id": 40210,
+ "start": 17913.26,
+ "end": 17913.36,
+ "text": "we"
+ },
+ {
+ "id": 40211,
+ "start": 17913.36,
+ "end": 17913.56,
+ "text": "can't"
+ },
+ {
+ "id": 40212,
+ "start": 17913.56,
+ "end": 17913.68,
+ "text": "get"
+ },
+ {
+ "id": 40213,
+ "start": 17913.68,
+ "end": 17914.06,
+ "text": "access"
+ },
+ {
+ "id": 40214,
+ "start": 17914.06,
+ "end": 17914.16,
+ "text": "to"
+ },
+ {
+ "id": 40215,
+ "start": 17914.16,
+ "end": 17914.98,
+ "text": "that's"
+ },
+ {
+ "id": 40216,
+ "start": 17914.98,
+ "end": 17915.58,
+ "text": "all"
+ },
+ {
+ "id": 40217,
+ "start": 17915.58,
+ "end": 17916.26,
+ "text": "maybe"
+ },
+ {
+ "id": 40218,
+ "start": 17916.26,
+ "end": 17916.4,
+ "text": "you"
+ },
+ {
+ "id": 40219,
+ "start": 17916.4,
+ "end": 17916.6,
+ "text": "have"
+ },
+ {
+ "id": 40220,
+ "start": 17916.6,
+ "end": 17916.84,
+ "text": "other"
+ },
+ {
+ "id": 40221,
+ "start": 17916.84,
+ "end": 17917.12,
+ "text": "ideas"
+ },
+ {
+ "id": 40222,
+ "start": 17917.12,
+ "end": 17917.28,
+ "text": "on"
+ },
+ {
+ "id": 40223,
+ "start": 17917.28,
+ "end": 17917.42,
+ "text": "how"
+ },
+ {
+ "id": 40224,
+ "start": 17917.42,
+ "end": 17917.52,
+ "text": "to"
+ },
+ {
+ "id": 40225,
+ "start": 17917.52,
+ "end": 17917.64,
+ "text": "do"
+ },
+ {
+ "id": 40226,
+ "start": 17917.64,
+ "end": 17919.16,
+ "text": "that?"
+ },
+ {
+ "id": 40227,
+ "start": 17919.16,
+ "end": 17920.18,
+ "text": "Well,"
+ },
+ {
+ "id": 40228,
+ "start": 17920.18,
+ "end": 17920.56,
+ "text": "I"
+ },
+ {
+ "id": 40229,
+ "start": 17920.56,
+ "end": 17920.74,
+ "text": "think"
+ },
+ {
+ "id": 40230,
+ "start": 17920.74,
+ "end": 17920.98,
+ "text": "we'll"
+ },
+ {
+ "id": 40231,
+ "start": 17920.98,
+ "end": 17921.16,
+ "text": "know,"
+ },
+ {
+ "id": 40232,
+ "start": 17921.16,
+ "end": 17921.44,
+ "text": "once"
+ },
+ {
+ "id": 40233,
+ "start": 17921.44,
+ "end": 17921.64,
+ "text": "we"
+ },
+ {
+ "id": 40234,
+ "start": 17921.64,
+ "end": 17921.78,
+ "text": "get"
+ },
+ {
+ "id": 40235,
+ "start": 17921.78,
+ "end": 17921.92,
+ "text": "in"
+ },
+ {
+ "id": 40236,
+ "start": 17921.92,
+ "end": 17922.16,
+ "text": "there,"
+ },
+ {
+ "id": 40237,
+ "start": 17922.16,
+ "end": 17922.56,
+ "text": "whether"
+ },
+ {
+ "id": 40238,
+ "start": 17922.56,
+ "end": 17922.72,
+ "text": "we"
+ },
+ {
+ "id": 40239,
+ "start": 17922.72,
+ "end": 17922.9,
+ "text": "feel"
+ },
+ {
+ "id": 40240,
+ "start": 17922.9,
+ "end": 17923.04,
+ "text": "like"
+ },
+ {
+ "id": 40241,
+ "start": 17923.04,
+ "end": 17923.16,
+ "text": "we"
+ },
+ {
+ "id": 40242,
+ "start": 17923.16,
+ "end": 17923.36,
+ "text": "can"
+ },
+ {
+ "id": 40243,
+ "start": 17923.36,
+ "end": 17923.62,
+ "text": "fully"
+ },
+ {
+ "id": 40244,
+ "start": 17923.62,
+ "end": 17924.14,
+ "text": "investigate"
+ },
+ {
+ "id": 40245,
+ "start": 17924.14,
+ "end": 17924.52,
+ "text": "everything"
+ },
+ {
+ "id": 40246,
+ "start": 17924.52,
+ "end": 17924.88,
+ "text": "just"
+ },
+ {
+ "id": 40247,
+ "start": 17924.88,
+ "end": 17925.4,
+ "text": "real"
+ },
+ {
+ "id": 40248,
+ "start": 17925.4,
+ "end": 17926.46,
+ "text": "quickly."
+ },
+ {
+ "id": 40249,
+ "start": 17926.46,
+ "end": 17927.04,
+ "text": "Sender"
+ },
+ {
+ "id": 40250,
+ "start": 17927.04,
+ "end": 17927.34,
+ "text": "shots"
+ },
+ {
+ "id": 40251,
+ "start": 17927.34,
+ "end": 17927.6,
+ "text": "asked"
+ },
+ {
+ "id": 40252,
+ "start": 17927.6,
+ "end": 17927.7,
+ "text": "a"
+ },
+ {
+ "id": 40253,
+ "start": 17927.7,
+ "end": 17928.12,
+ "text": "question"
+ },
+ {
+ "id": 40254,
+ "start": 17928.12,
+ "end": 17928.56,
+ "text": "earlier"
+ },
+ {
+ "id": 40255,
+ "start": 17928.56,
+ "end": 17930.18,
+ "text": "about"
+ },
+ {
+ "id": 40256,
+ "start": 17930.18,
+ "end": 17930.54,
+ "text": "data"
+ },
+ {
+ "id": 40257,
+ "start": 17930.54,
+ "end": 17930.66,
+ "text": "and"
+ },
+ {
+ "id": 40258,
+ "start": 17930.66,
+ "end": 17930.8,
+ "text": "who"
+ },
+ {
+ "id": 40259,
+ "start": 17930.8,
+ "end": 17931.06,
+ "text": "owns"
+ },
+ {
+ "id": 40260,
+ "start": 17931.06,
+ "end": 17931.16,
+ "text": "the"
+ },
+ {
+ "id": 40261,
+ "start": 17931.16,
+ "end": 17931.42,
+ "text": "data?"
+ },
+ {
+ "id": 40262,
+ "start": 17931.42,
+ "end": 17931.5,
+ "text": "I"
+ },
+ {
+ "id": 40263,
+ "start": 17931.5,
+ "end": 17931.72,
+ "text": "want"
+ },
+ {
+ "id": 40264,
+ "start": 17931.72,
+ "end": 17931.8,
+ "text": "to"
+ },
+ {
+ "id": 40265,
+ "start": 17931.8,
+ "end": 17932.04,
+ "text": "dig"
+ },
+ {
+ "id": 40266,
+ "start": 17932.04,
+ "end": 17932.32,
+ "text": "into"
+ },
+ {
+ "id": 40267,
+ "start": 17932.32,
+ "end": 17932.42,
+ "text": "it"
+ },
+ {
+ "id": 40268,
+ "start": 17932.42,
+ "end": 17932.48,
+ "text": "a"
+ },
+ {
+ "id": 40269,
+ "start": 17932.48,
+ "end": 17932.7,
+ "text": "little"
+ },
+ {
+ "id": 40270,
+ "start": 17932.7,
+ "end": 17932.84,
+ "text": "bit"
+ },
+ {
+ "id": 40271,
+ "start": 17932.84,
+ "end": 17933.08,
+ "text": "more."
+ },
+ {
+ "id": 40272,
+ "start": 17933.08,
+ "end": 17933.3,
+ "text": "You"
+ },
+ {
+ "id": 40273,
+ "start": 17933.3,
+ "end": 17933.64,
+ "text": "said,"
+ },
+ {
+ "id": 40274,
+ "start": 17933.64,
+ "end": 17934.38,
+ "text": "and"
+ },
+ {
+ "id": 40275,
+ "start": 17934.38,
+ "end": 17934.46,
+ "text": "I"
+ },
+ {
+ "id": 40276,
+ "start": 17934.46,
+ "end": 17934.66,
+ "text": "think"
+ },
+ {
+ "id": 40277,
+ "start": 17934.66,
+ "end": 17935.14,
+ "text": "multiple"
+ },
+ {
+ "id": 40278,
+ "start": 17935.14,
+ "end": 17935.46,
+ "text": "times"
+ },
+ {
+ "id": 40279,
+ "start": 17935.46,
+ "end": 17935.78,
+ "text": "during"
+ },
+ {
+ "id": 40280,
+ "start": 17935.78,
+ "end": 17936.02,
+ "text": "this"
+ },
+ {
+ "id": 40281,
+ "start": 17936.02,
+ "end": 17936.48,
+ "text": "hearing"
+ },
+ {
+ "id": 40282,
+ "start": 17936.48,
+ "end": 17937.34,
+ "text": "that"
+ },
+ {
+ "id": 40283,
+ "start": 17937.34,
+ "end": 17937.38,
+ "text": "I"
+ },
+ {
+ "id": 40284,
+ "start": 17937.38,
+ "end": 17938.3,
+ "text": "own"
+ },
+ {
+ "id": 40285,
+ "start": 17938.3,
+ "end": 17938.44,
+ "text": "the"
+ },
+ {
+ "id": 40286,
+ "start": 17938.44,
+ "end": 17938.68,
+ "text": "data"
+ },
+ {
+ "id": 40287,
+ "start": 17938.68,
+ "end": 17938.8,
+ "text": "on"
+ },
+ {
+ "id": 40288,
+ "start": 17938.8,
+ "end": 17939.28,
+ "text": "Facebook."
+ },
+ {
+ "id": 40289,
+ "start": 17939.28,
+ "end": 17939.4,
+ "text": "If"
+ },
+ {
+ "id": 40290,
+ "start": 17939.4,
+ "end": 17939.6,
+ "text": "it's"
+ },
+ {
+ "id": 40291,
+ "start": 17939.6,
+ "end": 17939.78,
+ "text": "my"
+ },
+ {
+ "id": 40292,
+ "start": 17939.78,
+ "end": 17940.12,
+ "text": "data."
+ },
+ {
+ "id": 40293,
+ "start": 17940.12,
+ "end": 17940.38,
+ "text": "Yes,"
+ },
+ {
+ "id": 40294,
+ "start": 17940.38,
+ "end": 17941.38,
+ "text": "and"
+ },
+ {
+ "id": 40295,
+ "start": 17941.38,
+ "end": 17941.52,
+ "text": "I'm"
+ },
+ {
+ "id": 40296,
+ "start": 17941.52,
+ "end": 17941.66,
+ "text": "going"
+ },
+ {
+ "id": 40297,
+ "start": 17941.66,
+ "end": 17941.74,
+ "text": "to"
+ },
+ {
+ "id": 40298,
+ "start": 17941.74,
+ "end": 17941.9,
+ "text": "tell"
+ },
+ {
+ "id": 40299,
+ "start": 17941.9,
+ "end": 17942.02,
+ "text": "you"
+ },
+ {
+ "id": 40300,
+ "start": 17942.02,
+ "end": 17942.16,
+ "text": "that."
+ },
+ {
+ "id": 40301,
+ "start": 17942.16,
+ "end": 17942.4,
+ "text": "I"
+ },
+ {
+ "id": 40302,
+ "start": 17942.4,
+ "end": 17942.62,
+ "text": "think"
+ },
+ {
+ "id": 40303,
+ "start": 17942.62,
+ "end": 17942.8,
+ "text": "that"
+ },
+ {
+ "id": 40304,
+ "start": 17942.8,
+ "end": 17943.36,
+ "text": "that"
+ },
+ {
+ "id": 40305,
+ "start": 17943.36,
+ "end": 17944.34,
+ "text": "sounds"
+ },
+ {
+ "id": 40306,
+ "start": 17944.34,
+ "end": 17944.64,
+ "text": "really"
+ },
+ {
+ "id": 40307,
+ "start": 17944.64,
+ "end": 17944.88,
+ "text": "good"
+ },
+ {
+ "id": 40308,
+ "start": 17944.88,
+ "end": 17945.06,
+ "text": "to"
+ },
+ {
+ "id": 40309,
+ "start": 17945.06,
+ "end": 17945.86,
+ "text": "me."
+ },
+ {
+ "id": 40310,
+ "start": 17945.86,
+ "end": 17946.58,
+ "text": "But"
+ },
+ {
+ "id": 40311,
+ "start": 17946.58,
+ "end": 17946.74,
+ "text": "in"
+ },
+ {
+ "id": 40312,
+ "start": 17946.74,
+ "end": 17947.32,
+ "text": "practice"
+ },
+ {
+ "id": 40313,
+ "start": 17947.32,
+ "end": 17948.22,
+ "text": "let's"
+ },
+ {
+ "id": 40314,
+ "start": 17948.22,
+ "end": 17948.58,
+ "text": "think"
+ },
+ {
+ "id": 40315,
+ "start": 17948.58,
+ "end": 17948.8,
+ "text": "about"
+ },
+ {
+ "id": 40316,
+ "start": 17948.8,
+ "end": 17949.02,
+ "text": "this"
+ },
+ {
+ "id": 40317,
+ "start": 17949.02,
+ "end": 17949.16,
+ "text": "for"
+ },
+ {
+ "id": 40318,
+ "start": 17949.16,
+ "end": 17949.22,
+ "text": "a"
+ },
+ {
+ "id": 40319,
+ "start": 17949.22,
+ "end": 17949.52,
+ "text": "second"
+ },
+ {
+ "id": 40320,
+ "start": 17949.52,
+ "end": 17949.74,
+ "text": "you're"
+ },
+ {
+ "id": 40321,
+ "start": 17949.74,
+ "end": 17950.02,
+ "text": "making"
+ },
+ {
+ "id": 40322,
+ "start": 17950.02,
+ "end": 17950.32,
+ "text": "about"
+ },
+ {
+ "id": 40323,
+ "start": 17950.32,
+ "end": 17951.68,
+ "text": "40,000,000,000"
+ },
+ {
+ "id": 40324,
+ "start": 17951.68,
+ "end": 17951.94,
+ "text": "bucks"
+ },
+ {
+ "id": 40325,
+ "start": 17951.94,
+ "end": 17952.08,
+ "text": "a"
+ },
+ {
+ "id": 40326,
+ "start": 17952.08,
+ "end": 17952.38,
+ "text": "year"
+ },
+ {
+ "id": 40327,
+ "start": 17952.38,
+ "end": 17953.18,
+ "text": "on"
+ },
+ {
+ "id": 40328,
+ "start": 17953.18,
+ "end": 17953.32,
+ "text": "the"
+ },
+ {
+ "id": 40329,
+ "start": 17953.32,
+ "end": 17953.72,
+ "text": "data"
+ },
+ {
+ "id": 40330,
+ "start": 17953.72,
+ "end": 17954.04,
+ "text": "I'm"
+ },
+ {
+ "id": 40331,
+ "start": 17954.04,
+ "end": 17954.46,
+ "text": "not"
+ },
+ {
+ "id": 40332,
+ "start": 17954.46,
+ "end": 17954.74,
+ "text": "making"
+ },
+ {
+ "id": 40333,
+ "start": 17954.74,
+ "end": 17954.96,
+ "text": "any"
+ },
+ {
+ "id": 40334,
+ "start": 17954.96,
+ "end": 17955.18,
+ "text": "money"
+ },
+ {
+ "id": 40335,
+ "start": 17955.18,
+ "end": 17955.36,
+ "text": "on"
+ },
+ {
+ "id": 40336,
+ "start": 17955.36,
+ "end": 17955.5,
+ "text": "it."
+ },
+ {
+ "id": 40337,
+ "start": 17955.5,
+ "end": 17956.18,
+ "text": "It"
+ },
+ {
+ "id": 40338,
+ "start": 17956.18,
+ "end": 17956.48,
+ "text": "feels"
+ },
+ {
+ "id": 40339,
+ "start": 17956.48,
+ "end": 17956.64,
+ "text": "like,"
+ },
+ {
+ "id": 40340,
+ "start": 17956.64,
+ "end": 17956.78,
+ "text": "you"
+ },
+ {
+ "id": 40341,
+ "start": 17956.78,
+ "end": 17956.98,
+ "text": "own"
+ },
+ {
+ "id": 40342,
+ "start": 17956.98,
+ "end": 17957.08,
+ "text": "the"
+ },
+ {
+ "id": 40343,
+ "start": 17957.08,
+ "end": 17957.68,
+ "text": "data."
+ },
+ {
+ "id": 40344,
+ "start": 17957.68,
+ "end": 17958.66,
+ "text": "And"
+ },
+ {
+ "id": 40345,
+ "start": 17958.66,
+ "end": 17958.8,
+ "text": "in"
+ },
+ {
+ "id": 40346,
+ "start": 17958.8,
+ "end": 17959.16,
+ "text": "fact,"
+ },
+ {
+ "id": 40347,
+ "start": 17959.16,
+ "end": 17959.5,
+ "text": "I"
+ },
+ {
+ "id": 40348,
+ "start": 17959.5,
+ "end": 17959.72,
+ "text": "would"
+ },
+ {
+ "id": 40349,
+ "start": 17959.72,
+ "end": 17959.96,
+ "text": "say"
+ },
+ {
+ "id": 40350,
+ "start": 17959.96,
+ "end": 17960.12,
+ "text": "that"
+ },
+ {
+ "id": 40351,
+ "start": 17960.12,
+ "end": 17961.38,
+ "text": "the"
+ },
+ {
+ "id": 40352,
+ "start": 17961.38,
+ "end": 17961.72,
+ "text": "data"
+ },
+ {
+ "id": 40353,
+ "start": 17961.72,
+ "end": 17961.88,
+ "text": "that"
+ },
+ {
+ "id": 40354,
+ "start": 17961.88,
+ "end": 17962.58,
+ "text": "was"
+ },
+ {
+ "id": 40355,
+ "start": 17962.58,
+ "end": 17963.62,
+ "text": "that"
+ },
+ {
+ "id": 40356,
+ "start": 17963.62,
+ "end": 17963.8,
+ "text": "was"
+ },
+ {
+ "id": 40357,
+ "start": 17963.8,
+ "end": 17964.26,
+ "text": "breached"
+ },
+ {
+ "id": 40358,
+ "start": 17964.26,
+ "end": 17964.68,
+ "text": "through"
+ },
+ {
+ "id": 40359,
+ "start": 17964.68,
+ "end": 17965.2,
+ "text": "Cambridge"
+ },
+ {
+ "id": 40360,
+ "start": 17965.2,
+ "end": 17965.86,
+ "text": "Analytica."
+ },
+ {
+ "id": 40361,
+ "start": 17965.86,
+ "end": 17966.64,
+ "text": "Which"
+ },
+ {
+ "id": 40362,
+ "start": 17966.64,
+ "end": 17967.24,
+ "text": "impacted"
+ },
+ {
+ "id": 40363,
+ "start": 17967.24,
+ "end": 17967.38,
+ "text": "in"
+ },
+ {
+ "id": 40364,
+ "start": 17967.38,
+ "end": 17967.68,
+ "text": "correct"
+ },
+ {
+ "id": 40365,
+ "start": 17967.68,
+ "end": 17967.78,
+ "text": "me,"
+ },
+ {
+ "id": 40366,
+ "start": 17967.78,
+ "end": 17967.88,
+ "text": "if"
+ },
+ {
+ "id": 40367,
+ "start": 17967.88,
+ "end": 17968.1,
+ "text": "these"
+ },
+ {
+ "id": 40368,
+ "start": 17968.1,
+ "end": 17968.4,
+ "text": "numbers"
+ },
+ {
+ "id": 40369,
+ "start": 17968.4,
+ "end": 17968.54,
+ "text": "are"
+ },
+ {
+ "id": 40370,
+ "start": 17968.54,
+ "end": 17968.72,
+ "text": "wrong,"
+ },
+ {
+ "id": 40371,
+ "start": 17968.72,
+ "end": 17968.98,
+ "text": "some"
+ },
+ {
+ "id": 40372,
+ "start": 17968.98,
+ "end": 17969.7,
+ "text": "80,000,000"
+ },
+ {
+ "id": 40373,
+ "start": 17969.7,
+ "end": 17970.24,
+ "text": "Americans."
+ },
+ {
+ "id": 40374,
+ "start": 17970.24,
+ "end": 17971.06,
+ "text": "My"
+ },
+ {
+ "id": 40375,
+ "start": 17971.06,
+ "end": 17971.28,
+ "text": "guess"
+ },
+ {
+ "id": 40376,
+ "start": 17971.28,
+ "end": 17971.48,
+ "text": "is"
+ },
+ {
+ "id": 40377,
+ "start": 17971.48,
+ "end": 17972.02,
+ "text": "a"
+ },
+ {
+ "id": 40378,
+ "start": 17972.02,
+ "end": 17972.26,
+ "text": "few"
+ },
+ {
+ "id": 40379,
+ "start": 17972.26,
+ "end": 17972.42,
+ "text": "if"
+ },
+ {
+ "id": 40380,
+ "start": 17972.42,
+ "end": 17972.84,
+ "text": "any"
+ },
+ {
+ "id": 40381,
+ "start": 17972.84,
+ "end": 17973.14,
+ "text": "knew"
+ },
+ {
+ "id": 40382,
+ "start": 17973.14,
+ "end": 17973.3,
+ "text": "that"
+ },
+ {
+ "id": 40383,
+ "start": 17973.3,
+ "end": 17973.58,
+ "text": "that"
+ },
+ {
+ "id": 40384,
+ "start": 17973.58,
+ "end": 17974.32,
+ "text": "information"
+ },
+ {
+ "id": 40385,
+ "start": 17974.32,
+ "end": 17974.58,
+ "text": "was"
+ },
+ {
+ "id": 40386,
+ "start": 17974.58,
+ "end": 17974.84,
+ "text": "being"
+ },
+ {
+ "id": 40387,
+ "start": 17974.84,
+ "end": 17975.1,
+ "text": "breached."
+ },
+ {
+ "id": 40388,
+ "start": 17975.1,
+ "end": 17975.24,
+ "text": "If"
+ },
+ {
+ "id": 40389,
+ "start": 17975.24,
+ "end": 17975.38,
+ "text": "I"
+ },
+ {
+ "id": 40390,
+ "start": 17975.38,
+ "end": 17975.58,
+ "text": "own"
+ },
+ {
+ "id": 40391,
+ "start": 17975.58,
+ "end": 17975.8,
+ "text": "that"
+ },
+ {
+ "id": 40392,
+ "start": 17975.8,
+ "end": 17976.14,
+ "text": "data,"
+ },
+ {
+ "id": 40393,
+ "start": 17976.14,
+ "end": 17976.86,
+ "text": "I"
+ },
+ {
+ "id": 40394,
+ "start": 17976.86,
+ "end": 17977.02,
+ "text": "know"
+ },
+ {
+ "id": 40395,
+ "start": 17977.02,
+ "end": 17977.22,
+ "text": "it's"
+ },
+ {
+ "id": 40396,
+ "start": 17977.22,
+ "end": 17977.44,
+ "text": "being"
+ },
+ {
+ "id": 40397,
+ "start": 17977.44,
+ "end": 17978.4,
+ "text": "breached,"
+ },
+ {
+ "id": 40398,
+ "start": 17978.4,
+ "end": 17979.18,
+ "text": "so"
+ },
+ {
+ "id": 40399,
+ "start": 17979.18,
+ "end": 17979.66,
+ "text": "could"
+ },
+ {
+ "id": 40400,
+ "start": 17979.66,
+ "end": 17979.84,
+ "text": "you"
+ },
+ {
+ "id": 40401,
+ "start": 17979.84,
+ "end": 17980.06,
+ "text": "give"
+ },
+ {
+ "id": 40402,
+ "start": 17980.06,
+ "end": 17980.16,
+ "text": "me"
+ },
+ {
+ "id": 40403,
+ "start": 17980.16,
+ "end": 17980.58,
+ "text": "some"
+ },
+ {
+ "id": 40404,
+ "start": 17980.58,
+ "end": 17980.88,
+ "text": "sort"
+ },
+ {
+ "id": 40405,
+ "start": 17980.88,
+ "end": 17980.98,
+ "text": "of"
+ },
+ {
+ "id": 40406,
+ "start": 17980.98,
+ "end": 17981.36,
+ "text": "idea"
+ },
+ {
+ "id": 40407,
+ "start": 17981.36,
+ "end": 17981.5,
+ "text": "on"
+ },
+ {
+ "id": 40408,
+ "start": 17981.5,
+ "end": 17981.72,
+ "text": "how"
+ },
+ {
+ "id": 40409,
+ "start": 17981.72,
+ "end": 17981.94,
+ "text": "you"
+ },
+ {
+ "id": 40410,
+ "start": 17981.94,
+ "end": 17982.12,
+ "text": "can"
+ },
+ {
+ "id": 40411,
+ "start": 17982.12,
+ "end": 17982.42,
+ "text": "really"
+ },
+ {
+ "id": 40412,
+ "start": 17982.42,
+ "end": 17982.96,
+ "text": "honestly"
+ },
+ {
+ "id": 40413,
+ "start": 17982.96,
+ "end": 17983.2,
+ "text": "say,"
+ },
+ {
+ "id": 40414,
+ "start": 17983.2,
+ "end": 17984.26,
+ "text": "it's"
+ },
+ {
+ "id": 40415,
+ "start": 17984.26,
+ "end": 17984.62,
+ "text": "my"
+ },
+ {
+ "id": 40416,
+ "start": 17984.62,
+ "end": 17985.04,
+ "text": "data"
+ },
+ {
+ "id": 40417,
+ "start": 17985.04,
+ "end": 17985.52,
+ "text": "when"
+ },
+ {
+ "id": 40418,
+ "start": 17985.52,
+ "end": 17986.12,
+ "text": "quite"
+ },
+ {
+ "id": 40419,
+ "start": 17986.12,
+ "end": 17987.3,
+ "text": "frankly,"
+ },
+ {
+ "id": 40420,
+ "start": 17987.3,
+ "end": 17988.16,
+ "text": "they"
+ },
+ {
+ "id": 40421,
+ "start": 17988.16,
+ "end": 17988.34,
+ "text": "may"
+ },
+ {
+ "id": 40422,
+ "start": 17988.34,
+ "end": 17988.5,
+ "text": "have"
+ },
+ {
+ "id": 40423,
+ "start": 17988.5,
+ "end": 17988.76,
+ "text": "goods"
+ },
+ {
+ "id": 40424,
+ "start": 17988.76,
+ "end": 17988.98,
+ "text": "on"
+ },
+ {
+ "id": 40425,
+ "start": 17988.98,
+ "end": 17989.1,
+ "text": "me."
+ },
+ {
+ "id": 40426,
+ "start": 17989.1,
+ "end": 17989.2,
+ "text": "I"
+ },
+ {
+ "id": 40427,
+ "start": 17989.2,
+ "end": 17989.92,
+ "text": "don't"
+ },
+ {
+ "id": 40428,
+ "start": 17989.92,
+ "end": 17990.1,
+ "text": "want"
+ },
+ {
+ "id": 40429,
+ "start": 17990.1,
+ "end": 17990.24,
+ "text": "them"
+ },
+ {
+ "id": 40430,
+ "start": 17990.24,
+ "end": 17990.3,
+ "text": "to"
+ },
+ {
+ "id": 40431,
+ "start": 17990.3,
+ "end": 17990.46,
+ "text": "have"
+ },
+ {
+ "id": 40432,
+ "start": 17990.46,
+ "end": 17990.6,
+ "text": "any"
+ },
+ {
+ "id": 40433,
+ "start": 17990.6,
+ "end": 17991.16,
+ "text": "information"
+ },
+ {
+ "id": 40434,
+ "start": 17991.16,
+ "end": 17991.36,
+ "text": "on"
+ },
+ {
+ "id": 40435,
+ "start": 17991.36,
+ "end": 17992.38,
+ "text": "me."
+ },
+ {
+ "id": 40436,
+ "start": 17992.38,
+ "end": 17993.58,
+ "text": "Senator,"
+ },
+ {
+ "id": 40437,
+ "start": 17993.58,
+ "end": 17993.86,
+ "text": "when"
+ },
+ {
+ "id": 40438,
+ "start": 17993.86,
+ "end": 17993.98,
+ "text": "I"
+ },
+ {
+ "id": 40439,
+ "start": 17993.98,
+ "end": 17994.18,
+ "text": "say"
+ },
+ {
+ "id": 40440,
+ "start": 17994.18,
+ "end": 17994.48,
+ "text": "on"
+ },
+ {
+ "id": 40441,
+ "start": 17994.48,
+ "end": 17994.6,
+ "text": "it,"
+ },
+ {
+ "id": 40442,
+ "start": 17994.6,
+ "end": 17994.7,
+ "text": "I"
+ },
+ {
+ "id": 40443,
+ "start": 17994.7,
+ "end": 17994.88,
+ "text": "can"
+ },
+ {
+ "id": 40444,
+ "start": 17994.88,
+ "end": 17995.14,
+ "text": "stop"
+ },
+ {
+ "id": 40445,
+ "start": 17995.14,
+ "end": 17996.22,
+ "text": "it."
+ },
+ {
+ "id": 40446,
+ "start": 17996.22,
+ "end": 17997.38,
+ "text": "Yes,"
+ },
+ {
+ "id": 40447,
+ "start": 17997.38,
+ "end": 17997.56,
+ "text": "so,"
+ },
+ {
+ "id": 40448,
+ "start": 17997.56,
+ "end": 17997.98,
+ "text": "Senator,"
+ },
+ {
+ "id": 40449,
+ "start": 17997.98,
+ "end": 17998.42,
+ "text": "when"
+ },
+ {
+ "id": 40450,
+ "start": 17998.42,
+ "end": 17998.54,
+ "text": "I"
+ },
+ {
+ "id": 40451,
+ "start": 17998.54,
+ "end": 17998.68,
+ "text": "say"
+ },
+ {
+ "id": 40452,
+ "start": 17998.68,
+ "end": 17998.86,
+ "text": "it's"
+ },
+ {
+ "id": 40453,
+ "start": 17998.86,
+ "end": 17999.12,
+ "text": "your"
+ },
+ {
+ "id": 40454,
+ "start": 17999.12,
+ "end": 17999.46,
+ "text": "data,"
+ },
+ {
+ "id": 40455,
+ "start": 17999.46,
+ "end": 18000,
+ "text": "what"
+ },
+ {
+ "id": 40456,
+ "start": 18000,
+ "end": 18000.16,
+ "text": "we"
+ },
+ {
+ "id": 40457,
+ "start": 18000.16,
+ "end": 18000.52,
+ "text": "mean"
+ },
+ {
+ "id": 40458,
+ "start": 18000.52,
+ "end": 18000.96,
+ "text": "is"
+ },
+ {
+ "id": 40459,
+ "start": 18000.96,
+ "end": 18001.24,
+ "text": "that"
+ },
+ {
+ "id": 40460,
+ "start": 18001.24,
+ "end": 18001.68,
+ "text": "you"
+ },
+ {
+ "id": 40461,
+ "start": 18001.68,
+ "end": 18001.88,
+ "text": "have"
+ },
+ {
+ "id": 40462,
+ "start": 18001.88,
+ "end": 18002.4,
+ "text": "control"
+ },
+ {
+ "id": 40463,
+ "start": 18002.4,
+ "end": 18002.62,
+ "text": "over"
+ },
+ {
+ "id": 40464,
+ "start": 18002.62,
+ "end": 18002.78,
+ "text": "how"
+ },
+ {
+ "id": 40465,
+ "start": 18002.78,
+ "end": 18002.98,
+ "text": "it's"
+ },
+ {
+ "id": 40466,
+ "start": 18002.98,
+ "end": 18003.32,
+ "text": "used"
+ },
+ {
+ "id": 40467,
+ "start": 18003.32,
+ "end": 18003.74,
+ "text": "on"
+ },
+ {
+ "id": 40468,
+ "start": 18003.74,
+ "end": 18004.48,
+ "text": "Facebook."
+ },
+ {
+ "id": 40469,
+ "start": 18004.48,
+ "end": 18004.82,
+ "text": "You"
+ },
+ {
+ "id": 40470,
+ "start": 18004.82,
+ "end": 18005.24,
+ "text": "clearly"
+ },
+ {
+ "id": 40471,
+ "start": 18005.24,
+ "end": 18005.48,
+ "text": "need"
+ },
+ {
+ "id": 40472,
+ "start": 18005.48,
+ "end": 18005.6,
+ "text": "to"
+ },
+ {
+ "id": 40473,
+ "start": 18005.6,
+ "end": 18005.78,
+ "text": "give"
+ },
+ {
+ "id": 40474,
+ "start": 18005.78,
+ "end": 18006.18,
+ "text": "Facebook"
+ },
+ {
+ "id": 40475,
+ "start": 18006.18,
+ "end": 18006.24,
+ "text": "a"
+ },
+ {
+ "id": 40476,
+ "start": 18006.24,
+ "end": 18006.7,
+ "text": "license"
+ },
+ {
+ "id": 40477,
+ "start": 18006.7,
+ "end": 18006.84,
+ "text": "to"
+ },
+ {
+ "id": 40478,
+ "start": 18006.84,
+ "end": 18007.06,
+ "text": "use"
+ },
+ {
+ "id": 40479,
+ "start": 18007.06,
+ "end": 18007.18,
+ "text": "it"
+ },
+ {
+ "id": 40480,
+ "start": 18007.18,
+ "end": 18007.42,
+ "text": "within"
+ },
+ {
+ "id": 40481,
+ "start": 18007.42,
+ "end": 18007.54,
+ "text": "our"
+ },
+ {
+ "id": 40482,
+ "start": 18007.54,
+ "end": 18007.9,
+ "text": "system"
+ },
+ {
+ "id": 40483,
+ "start": 18007.9,
+ "end": 18008.5,
+ "text": "or"
+ },
+ {
+ "id": 40484,
+ "start": 18008.5,
+ "end": 18008.76,
+ "text": "else"
+ },
+ {
+ "id": 40485,
+ "start": 18008.76,
+ "end": 18009.2,
+ "text": "or"
+ },
+ {
+ "id": 40486,
+ "start": 18009.2,
+ "end": 18009.36,
+ "text": "else?"
+ },
+ {
+ "id": 40487,
+ "start": 18009.36,
+ "end": 18009.5,
+ "text": "The"
+ },
+ {
+ "id": 40488,
+ "start": 18009.5,
+ "end": 18009.8,
+ "text": "service"
+ },
+ {
+ "id": 40489,
+ "start": 18009.8,
+ "end": 18010.04,
+ "text": "doesn't"
+ },
+ {
+ "id": 40490,
+ "start": 18010.04,
+ "end": 18010.24,
+ "text": "work."
+ },
+ {
+ "id": 40491,
+ "start": 18010.24,
+ "end": 18010.86,
+ "text": "Yeah,"
+ },
+ {
+ "id": 40492,
+ "start": 18010.86,
+ "end": 18011.18,
+ "text": "I"
+ },
+ {
+ "id": 40493,
+ "start": 18011.18,
+ "end": 18011.36,
+ "text": "know."
+ },
+ {
+ "id": 40494,
+ "start": 18011.36,
+ "end": 18011.72,
+ "text": "In"
+ },
+ {
+ "id": 40495,
+ "start": 18011.72,
+ "end": 18011.88,
+ "text": "this"
+ },
+ {
+ "id": 40496,
+ "start": 18011.88,
+ "end": 18012.32,
+ "text": "license"
+ },
+ {
+ "id": 40497,
+ "start": 18012.32,
+ "end": 18012.52,
+ "text": "has"
+ },
+ {
+ "id": 40498,
+ "start": 18012.52,
+ "end": 18012.76,
+ "text": "brought"
+ },
+ {
+ "id": 40499,
+ "start": 18012.76,
+ "end": 18012.86,
+ "text": "have"
+ },
+ {
+ "id": 40500,
+ "start": 18012.86,
+ "end": 18013,
+ "text": "been"
+ },
+ {
+ "id": 40501,
+ "start": 18013,
+ "end": 18013.18,
+ "text": "brought"
+ },
+ {
+ "id": 40502,
+ "start": 18013.18,
+ "end": 18013.3,
+ "text": "up"
+ },
+ {
+ "id": 40503,
+ "start": 18013.3,
+ "end": 18013.52,
+ "text": "many"
+ },
+ {
+ "id": 40504,
+ "start": 18013.52,
+ "end": 18013.8,
+ "text": "times"
+ },
+ {
+ "id": 40505,
+ "start": 18013.8,
+ "end": 18013.9,
+ "text": "a"
+ },
+ {
+ "id": 40506,
+ "start": 18013.9,
+ "end": 18014.04,
+ "text": "day"
+ },
+ {
+ "id": 40507,
+ "start": 18014.04,
+ "end": 18014.16,
+ "text": "and"
+ },
+ {
+ "id": 40508,
+ "start": 18014.16,
+ "end": 18014.26,
+ "text": "I'm"
+ },
+ {
+ "id": 40509,
+ "start": 18014.26,
+ "end": 18014.46,
+ "text": "gonna"
+ },
+ {
+ "id": 40510,
+ "start": 18014.46,
+ "end": 18014.56,
+ "text": "be"
+ },
+ {
+ "id": 40511,
+ "start": 18014.56,
+ "end": 18014.8,
+ "text": "quiet"
+ },
+ {
+ "id": 40512,
+ "start": 18014.8,
+ "end": 18014.9,
+ "text": "in"
+ },
+ {
+ "id": 40513,
+ "start": 18014.9,
+ "end": 18015.06,
+ "text": "just"
+ },
+ {
+ "id": 40514,
+ "start": 18015.06,
+ "end": 18015.28,
+ "text": "one"
+ },
+ {
+ "id": 40515,
+ "start": 18015.28,
+ "end": 18015.6,
+ "text": "second,"
+ },
+ {
+ "id": 40516,
+ "start": 18015.6,
+ "end": 18015.9,
+ "text": "Mister"
+ },
+ {
+ "id": 40517,
+ "start": 18015.9,
+ "end": 18016.46,
+ "text": "chairman."
+ },
+ {
+ "id": 40518,
+ "start": 18016.46,
+ "end": 18016.82,
+ "text": "But"
+ },
+ {
+ "id": 40519,
+ "start": 18016.82,
+ "end": 18017,
+ "text": "the"
+ },
+ {
+ "id": 40520,
+ "start": 18017,
+ "end": 18017.3,
+ "text": "fact"
+ },
+ {
+ "id": 40521,
+ "start": 18017.3,
+ "end": 18017.52,
+ "text": "is"
+ },
+ {
+ "id": 40522,
+ "start": 18017.52,
+ "end": 18017.7,
+ "text": "is"
+ },
+ {
+ "id": 40523,
+ "start": 18017.7,
+ "end": 18017.84,
+ "text": "the"
+ },
+ {
+ "id": 40524,
+ "start": 18017.84,
+ "end": 18018.32,
+ "text": "license"
+ },
+ {
+ "id": 40525,
+ "start": 18018.32,
+ "end": 18018.54,
+ "text": "is"
+ },
+ {
+ "id": 40526,
+ "start": 18018.54,
+ "end": 18019.14,
+ "text": "very"
+ },
+ {
+ "id": 40527,
+ "start": 18019.14,
+ "end": 18019.48,
+ "text": "thick"
+ },
+ {
+ "id": 40528,
+ "start": 18019.48,
+ "end": 18020.18,
+ "text": "maybe"
+ },
+ {
+ "id": 40529,
+ "start": 18020.18,
+ "end": 18020.9,
+ "text": "intentionally."
+ },
+ {
+ "id": 40530,
+ "start": 18020.9,
+ "end": 18021.2,
+ "text": "So"
+ },
+ {
+ "id": 40531,
+ "start": 18021.2,
+ "end": 18021.4,
+ "text": "so"
+ },
+ {
+ "id": 40532,
+ "start": 18021.4,
+ "end": 18021.72,
+ "text": "people"
+ },
+ {
+ "id": 40533,
+ "start": 18021.72,
+ "end": 18022.32,
+ "text": "get"
+ },
+ {
+ "id": 40534,
+ "start": 18022.32,
+ "end": 18022.58,
+ "text": "tired"
+ },
+ {
+ "id": 40535,
+ "start": 18022.58,
+ "end": 18022.68,
+ "text": "of"
+ },
+ {
+ "id": 40536,
+ "start": 18022.68,
+ "end": 18022.94,
+ "text": "reading."
+ },
+ {
+ "id": 40537,
+ "start": 18022.94,
+ "end": 18023.06,
+ "text": "I"
+ },
+ {
+ "id": 40538,
+ "start": 18023.06,
+ "end": 18023.32,
+ "text": "don't"
+ },
+ {
+ "id": 40539,
+ "start": 18023.32,
+ "end": 18023.48,
+ "text": "want"
+ },
+ {
+ "id": 40540,
+ "start": 18023.48,
+ "end": 18023.66,
+ "text": "to"
+ },
+ {
+ "id": 40541,
+ "start": 18023.66,
+ "end": 18024.18,
+ "text": "look"
+ },
+ {
+ "id": 40542,
+ "start": 18024.18,
+ "end": 18024.58,
+ "text": "mark,"
+ },
+ {
+ "id": 40543,
+ "start": 18024.58,
+ "end": 18024.62,
+ "text": "I"
+ },
+ {
+ "id": 40544,
+ "start": 18024.62,
+ "end": 18025.04,
+ "text": "appreciate"
+ },
+ {
+ "id": 40545,
+ "start": 18025.04,
+ "end": 18025.18,
+ "text": "you"
+ },
+ {
+ "id": 40546,
+ "start": 18025.18,
+ "end": 18025.38,
+ "text": "being"
+ },
+ {
+ "id": 40547,
+ "start": 18025.38,
+ "end": 18025.54,
+ "text": "here."
+ },
+ {
+ "id": 40548,
+ "start": 18025.54,
+ "end": 18025.8,
+ "text": "I"
+ },
+ {
+ "id": 40549,
+ "start": 18025.8,
+ "end": 18025.98,
+ "text": "look"
+ },
+ {
+ "id": 40550,
+ "start": 18025.98,
+ "end": 18026.24,
+ "text": "forward"
+ },
+ {
+ "id": 40551,
+ "start": 18026.24,
+ "end": 18026.32,
+ "text": "to"
+ },
+ {
+ "id": 40552,
+ "start": 18026.32,
+ "end": 18026.58,
+ "text": "having"
+ },
+ {
+ "id": 40553,
+ "start": 18026.58,
+ "end": 18026.96,
+ "text": "another"
+ },
+ {
+ "id": 40554,
+ "start": 18026.96,
+ "end": 18027.24,
+ "text": "here."
+ },
+ {
+ "id": 40555,
+ "start": 18027.24,
+ "end": 18027.42,
+ "text": "Thank"
+ },
+ {
+ "id": 40556,
+ "start": 18027.42,
+ "end": 18027.6,
+ "text": "you"
+ },
+ {
+ "id": 40557,
+ "start": 18027.6,
+ "end": 18027.88,
+ "text": "so"
+ },
+ {
+ "id": 40558,
+ "start": 18027.88,
+ "end": 18029.12,
+ "text": "young."
+ },
+ {
+ "id": 40559,
+ "start": 18029.12,
+ "end": 18030.16,
+ "text": "Mr"
+ },
+ {
+ "id": 40560,
+ "start": 18030.16,
+ "end": 18030.6,
+ "text": "Zuckerberg,"
+ },
+ {
+ "id": 40561,
+ "start": 18030.6,
+ "end": 18030.84,
+ "text": "thanks"
+ },
+ {
+ "id": 40562,
+ "start": 18030.84,
+ "end": 18031,
+ "text": "so"
+ },
+ {
+ "id": 40563,
+ "start": 18031,
+ "end": 18031.2,
+ "text": "much"
+ },
+ {
+ "id": 40564,
+ "start": 18031.2,
+ "end": 18031.38,
+ "text": "for"
+ },
+ {
+ "id": 40565,
+ "start": 18031.38,
+ "end": 18031.58,
+ "text": "being"
+ },
+ {
+ "id": 40566,
+ "start": 18031.58,
+ "end": 18031.76,
+ "text": "here."
+ },
+ {
+ "id": 40567,
+ "start": 18031.76,
+ "end": 18032.32,
+ "text": "And"
+ },
+ {
+ "id": 40568,
+ "start": 18032.32,
+ "end": 18033.3,
+ "text": "during"
+ },
+ {
+ "id": 40569,
+ "start": 18033.3,
+ "end": 18033.78,
+ "text": "the"
+ },
+ {
+ "id": 40570,
+ "start": 18033.78,
+ "end": 18034.02,
+ "text": "many"
+ },
+ {
+ "id": 40571,
+ "start": 18034.02,
+ "end": 18034.44,
+ "text": "questions"
+ },
+ {
+ "id": 40572,
+ "start": 18034.44,
+ "end": 18034.84,
+ "text": "today,"
+ },
+ {
+ "id": 40573,
+ "start": 18034.84,
+ "end": 18034.92,
+ "text": "I"
+ },
+ {
+ "id": 40574,
+ "start": 18034.92,
+ "end": 18035.1,
+ "text": "think"
+ },
+ {
+ "id": 40575,
+ "start": 18035.1,
+ "end": 18035.26,
+ "text": "it's"
+ },
+ {
+ "id": 40576,
+ "start": 18035.26,
+ "end": 18035.58,
+ "text": "important"
+ },
+ {
+ "id": 40577,
+ "start": 18035.58,
+ "end": 18035.8,
+ "text": "you're"
+ },
+ {
+ "id": 40578,
+ "start": 18035.8,
+ "end": 18036.02,
+ "text": "here"
+ },
+ {
+ "id": 40579,
+ "start": 18036.02,
+ "end": 18036.7,
+ "text": "because"
+ },
+ {
+ "id": 40580,
+ "start": 18036.7,
+ "end": 18037.68,
+ "text": "your"
+ },
+ {
+ "id": 40581,
+ "start": 18037.68,
+ "end": 18038.04,
+ "text": "social"
+ },
+ {
+ "id": 40582,
+ "start": 18038.04,
+ "end": 18038.34,
+ "text": "media"
+ },
+ {
+ "id": 40583,
+ "start": 18038.34,
+ "end": 18038.84,
+ "text": "platform"
+ },
+ {
+ "id": 40584,
+ "start": 18038.84,
+ "end": 18039.22,
+ "text": "happens"
+ },
+ {
+ "id": 40585,
+ "start": 18039.22,
+ "end": 18039.36,
+ "text": "to"
+ },
+ {
+ "id": 40586,
+ "start": 18039.36,
+ "end": 18040.66,
+ "text": "be"
+ },
+ {
+ "id": 40587,
+ "start": 18040.66,
+ "end": 18041.5,
+ "text": "social"
+ },
+ {
+ "id": 40588,
+ "start": 18041.5,
+ "end": 18041.82,
+ "text": "media"
+ },
+ {
+ "id": 40589,
+ "start": 18041.82,
+ "end": 18042.44,
+ "text": "platform"
+ },
+ {
+ "id": 40590,
+ "start": 18042.44,
+ "end": 18042.76,
+ "text": "and"
+ },
+ {
+ "id": 40591,
+ "start": 18042.76,
+ "end": 18043.5,
+ "text": "there's"
+ },
+ {
+ "id": 40592,
+ "start": 18043.5,
+ "end": 18043.64,
+ "text": "not"
+ },
+ {
+ "id": 40593,
+ "start": 18043.64,
+ "end": 18043.7,
+ "text": "a"
+ },
+ {
+ "id": 40594,
+ "start": 18043.7,
+ "end": 18044.16,
+ "text": "senator"
+ },
+ {
+ "id": 40595,
+ "start": 18044.16,
+ "end": 18044.44,
+ "text": "that"
+ },
+ {
+ "id": 40596,
+ "start": 18044.44,
+ "end": 18044.78,
+ "text": "you"
+ },
+ {
+ "id": 40597,
+ "start": 18044.78,
+ "end": 18044.94,
+ "text": "heard"
+ },
+ {
+ "id": 40598,
+ "start": 18044.94,
+ "end": 18045.12,
+ "text": "from"
+ },
+ {
+ "id": 40599,
+ "start": 18045.12,
+ "end": 18045.5,
+ "text": "today."
+ },
+ {
+ "id": 40600,
+ "start": 18045.5,
+ "end": 18045.72,
+ "text": "That"
+ },
+ {
+ "id": 40601,
+ "start": 18045.72,
+ "end": 18046.22,
+ "text": "isn't"
+ },
+ {
+ "id": 40602,
+ "start": 18046.22,
+ "end": 18046.54,
+ "text": "on"
+ },
+ {
+ "id": 40603,
+ "start": 18046.54,
+ "end": 18047.04,
+ "text": "Facebook"
+ },
+ {
+ "id": 40604,
+ "start": 18047.04,
+ "end": 18047.18,
+ "text": "that"
+ },
+ {
+ "id": 40605,
+ "start": 18047.18,
+ "end": 18047.46,
+ "text": "doesn't"
+ },
+ {
+ "id": 40606,
+ "start": 18047.46,
+ "end": 18048.04,
+ "text": "communicate"
+ },
+ {
+ "id": 40607,
+ "start": 18048.04,
+ "end": 18048.28,
+ "text": "with"
+ },
+ {
+ "id": 40608,
+ "start": 18048.28,
+ "end": 18048.8,
+ "text": "our"
+ },
+ {
+ "id": 40609,
+ "start": 18048.8,
+ "end": 18049.4,
+ "text": "constituents"
+ },
+ {
+ "id": 40610,
+ "start": 18049.4,
+ "end": 18049.64,
+ "text": "through"
+ },
+ {
+ "id": 40611,
+ "start": 18049.64,
+ "end": 18050.08,
+ "text": "Facebook."
+ },
+ {
+ "id": 40612,
+ "start": 18050.08,
+ "end": 18050.2,
+ "text": "In"
+ },
+ {
+ "id": 40613,
+ "start": 18050.2,
+ "end": 18050.28,
+ "text": "a"
+ },
+ {
+ "id": 40614,
+ "start": 18050.28,
+ "end": 18050.52,
+ "text": "sense"
+ },
+ {
+ "id": 40615,
+ "start": 18050.52,
+ "end": 18051.14,
+ "text": "we"
+ },
+ {
+ "id": 40616,
+ "start": 18051.14,
+ "end": 18051.36,
+ "text": "have"
+ },
+ {
+ "id": 40617,
+ "start": 18051.36,
+ "end": 18051.5,
+ "text": "to"
+ },
+ {
+ "id": 40618,
+ "start": 18051.5,
+ "end": 18051.62,
+ "text": "be"
+ },
+ {
+ "id": 40619,
+ "start": 18051.62,
+ "end": 18051.74,
+ "text": "on"
+ },
+ {
+ "id": 40620,
+ "start": 18051.74,
+ "end": 18052.2,
+ "text": "it."
+ },
+ {
+ "id": 40621,
+ "start": 18052.2,
+ "end": 18052.94,
+ "text": "And"
+ },
+ {
+ "id": 40622,
+ "start": 18052.94,
+ "end": 18053.54,
+ "text": "so"
+ },
+ {
+ "id": 40623,
+ "start": 18053.54,
+ "end": 18053.6,
+ "text": "I"
+ },
+ {
+ "id": 40624,
+ "start": 18053.6,
+ "end": 18053.78,
+ "text": "think"
+ },
+ {
+ "id": 40625,
+ "start": 18053.78,
+ "end": 18053.94,
+ "text": "it's"
+ },
+ {
+ "id": 40626,
+ "start": 18053.94,
+ "end": 18054.36,
+ "text": "especially"
+ },
+ {
+ "id": 40627,
+ "start": 18054.36,
+ "end": 18054.74,
+ "text": "important."
+ },
+ {
+ "id": 40628,
+ "start": 18054.74,
+ "end": 18055.28,
+ "text": "That"
+ },
+ {
+ "id": 40629,
+ "start": 18055.28,
+ "end": 18055.48,
+ "text": "you're"
+ },
+ {
+ "id": 40630,
+ "start": 18055.48,
+ "end": 18055.62,
+ "text": "here,"
+ },
+ {
+ "id": 40631,
+ "start": 18055.62,
+ "end": 18055.88,
+ "text": "not"
+ },
+ {
+ "id": 40632,
+ "start": 18055.88,
+ "end": 18056.08,
+ "text": "just"
+ },
+ {
+ "id": 40633,
+ "start": 18056.08,
+ "end": 18056.24,
+ "text": "for"
+ },
+ {
+ "id": 40634,
+ "start": 18056.24,
+ "end": 18056.8,
+ "text": "Facebook,"
+ },
+ {
+ "id": 40635,
+ "start": 18056.8,
+ "end": 18057.08,
+ "text": "but"
+ },
+ {
+ "id": 40636,
+ "start": 18057.08,
+ "end": 18057.64,
+ "text": "really"
+ },
+ {
+ "id": 40637,
+ "start": 18057.64,
+ "end": 18057.96,
+ "text": "for"
+ },
+ {
+ "id": 40638,
+ "start": 18057.96,
+ "end": 18058.1,
+ "text": "our"
+ },
+ {
+ "id": 40639,
+ "start": 18058.1,
+ "end": 18058.52,
+ "text": "country"
+ },
+ {
+ "id": 40640,
+ "start": 18058.52,
+ "end": 18059.08,
+ "text": "and"
+ },
+ {
+ "id": 40641,
+ "start": 18059.08,
+ "end": 18060,
+ "text": "beyond"
+ },
+ {
+ "id": 40642,
+ "start": 18060,
+ "end": 18060.74,
+ "text": "the"
+ },
+ {
+ "id": 40643,
+ "start": 18060.74,
+ "end": 18061.26,
+ "text": "threshold"
+ },
+ {
+ "id": 40644,
+ "start": 18061.26,
+ "end": 18061.7,
+ "text": "question"
+ },
+ {
+ "id": 40645,
+ "start": 18061.7,
+ "end": 18062.24,
+ "text": "that"
+ },
+ {
+ "id": 40646,
+ "start": 18062.24,
+ "end": 18062.7,
+ "text": "continues"
+ },
+ {
+ "id": 40647,
+ "start": 18062.7,
+ "end": 18062.82,
+ "text": "to"
+ },
+ {
+ "id": 40648,
+ "start": 18062.82,
+ "end": 18063.2,
+ "text": "emerge"
+ },
+ {
+ "id": 40649,
+ "start": 18063.2,
+ "end": 18063.42,
+ "text": "here."
+ },
+ {
+ "id": 40650,
+ "start": 18063.42,
+ "end": 18063.82,
+ "text": "Today"
+ },
+ {
+ "id": 40651,
+ "start": 18063.82,
+ "end": 18064.36,
+ "text": "is"
+ },
+ {
+ "id": 40652,
+ "start": 18064.36,
+ "end": 18065.02,
+ "text": "what"
+ },
+ {
+ "id": 40653,
+ "start": 18065.02,
+ "end": 18065.26,
+ "text": "are"
+ },
+ {
+ "id": 40654,
+ "start": 18065.26,
+ "end": 18065.48,
+ "text": "the"
+ },
+ {
+ "id": 40655,
+ "start": 18065.48,
+ "end": 18066.18,
+ "text": "reasonable"
+ },
+ {
+ "id": 40656,
+ "start": 18066.18,
+ "end": 18067.1,
+ "text": "expectation"
+ },
+ {
+ "id": 40657,
+ "start": 18067.1,
+ "end": 18067.54,
+ "text": "of"
+ },
+ {
+ "id": 40658,
+ "start": 18067.54,
+ "end": 18068.22,
+ "text": "privacy"
+ },
+ {
+ "id": 40659,
+ "start": 18068.22,
+ "end": 18068.5,
+ "text": "that"
+ },
+ {
+ "id": 40660,
+ "start": 18068.5,
+ "end": 18069.24,
+ "text": "users"
+ },
+ {
+ "id": 40661,
+ "start": 18069.24,
+ "end": 18069.86,
+ "text": "ought"
+ },
+ {
+ "id": 40662,
+ "start": 18069.86,
+ "end": 18070.02,
+ "text": "to"
+ },
+ {
+ "id": 40663,
+ "start": 18070.02,
+ "end": 18070.44,
+ "text": "have"
+ },
+ {
+ "id": 40664,
+ "start": 18070.44,
+ "end": 18071.34,
+ "text": "and"
+ },
+ {
+ "id": 40665,
+ "start": 18071.34,
+ "end": 18072,
+ "text": "I'll"
+ },
+ {
+ "id": 40666,
+ "start": 18072,
+ "end": 18072.14,
+ "text": "tell"
+ },
+ {
+ "id": 40667,
+ "start": 18072.14,
+ "end": 18072.26,
+ "text": "you."
+ },
+ {
+ "id": 40668,
+ "start": 18072.26,
+ "end": 18072.36,
+ "text": "My"
+ },
+ {
+ "id": 40669,
+ "start": 18072.36,
+ "end": 18072.88,
+ "text": "neighbors"
+ },
+ {
+ "id": 40670,
+ "start": 18072.88,
+ "end": 18073.46,
+ "text": "are"
+ },
+ {
+ "id": 40671,
+ "start": 18073.46,
+ "end": 18074.56,
+ "text": "unsatisfied"
+ },
+ {
+ "id": 40672,
+ "start": 18074.56,
+ "end": 18075,
+ "text": "by"
+ },
+ {
+ "id": 40673,
+ "start": 18075,
+ "end": 18075.1,
+ "text": "an"
+ },
+ {
+ "id": 40674,
+ "start": 18075.1,
+ "end": 18075.42,
+ "text": "answer"
+ },
+ {
+ "id": 40675,
+ "start": 18075.42,
+ "end": 18075.52,
+ "text": "to"
+ },
+ {
+ "id": 40676,
+ "start": 18075.52,
+ "end": 18075.72,
+ "text": "that"
+ },
+ {
+ "id": 40677,
+ "start": 18075.72,
+ "end": 18076.08,
+ "text": "question"
+ },
+ {
+ "id": 40678,
+ "start": 18076.08,
+ "end": 18076.28,
+ "text": "that"
+ },
+ {
+ "id": 40679,
+ "start": 18076.28,
+ "end": 18076.78,
+ "text": "involves"
+ },
+ {
+ "id": 40680,
+ "start": 18076.78,
+ "end": 18077.72,
+ "text": "you."
+ },
+ {
+ "id": 40681,
+ "start": 18077.72,
+ "end": 18077.86,
+ "text": "Take"
+ },
+ {
+ "id": 40682,
+ "start": 18077.86,
+ "end": 18077.92,
+ "text": "a"
+ },
+ {
+ "id": 40683,
+ "start": 18077.92,
+ "end": 18078.12,
+ "text": "look"
+ },
+ {
+ "id": 40684,
+ "start": 18078.12,
+ "end": 18078.22,
+ "text": "at"
+ },
+ {
+ "id": 40685,
+ "start": 18078.22,
+ "end": 18078.34,
+ "text": "the"
+ },
+ {
+ "id": 40686,
+ "start": 18078.34,
+ "end": 18078.66,
+ "text": "user."
+ },
+ {
+ "id": 40687,
+ "start": 18078.66,
+ "end": 18079.2,
+ "text": "Agreement"
+ },
+ {
+ "id": 40688,
+ "start": 18079.2,
+ "end": 18080.82,
+ "text": "and"
+ },
+ {
+ "id": 40689,
+ "start": 18080.82,
+ "end": 18080.86,
+ "text": "I"
+ },
+ {
+ "id": 40690,
+ "start": 18080.86,
+ "end": 18081.8,
+ "text": "think"
+ },
+ {
+ "id": 40691,
+ "start": 18081.8,
+ "end": 18082.06,
+ "text": "there's"
+ },
+ {
+ "id": 40692,
+ "start": 18082.06,
+ "end": 18082.34,
+ "text": "been"
+ },
+ {
+ "id": 40693,
+ "start": 18082.34,
+ "end": 18082.42,
+ "text": "a"
+ },
+ {
+ "id": 40694,
+ "start": 18082.42,
+ "end": 18082.66,
+ "text": "fair"
+ },
+ {
+ "id": 40695,
+ "start": 18082.66,
+ "end": 18082.88,
+ "text": "amount"
+ },
+ {
+ "id": 40696,
+ "start": 18082.88,
+ "end": 18082.94,
+ "text": "of"
+ },
+ {
+ "id": 40697,
+ "start": 18082.94,
+ "end": 18083.42,
+ "text": "discussion"
+ },
+ {
+ "id": 40698,
+ "start": 18083.42,
+ "end": 18083.64,
+ "text": "here"
+ },
+ {
+ "id": 40699,
+ "start": 18083.64,
+ "end": 18083.86,
+ "text": "about"
+ },
+ {
+ "id": 40700,
+ "start": 18083.86,
+ "end": 18084.1,
+ "text": "whether"
+ },
+ {
+ "id": 40701,
+ "start": 18084.1,
+ "end": 18084.2,
+ "text": "or"
+ },
+ {
+ "id": 40702,
+ "start": 18084.2,
+ "end": 18084.34,
+ "text": "not"
+ },
+ {
+ "id": 40703,
+ "start": 18084.34,
+ "end": 18084.58,
+ "text": "people"
+ },
+ {
+ "id": 40704,
+ "start": 18084.58,
+ "end": 18084.92,
+ "text": "actually"
+ },
+ {
+ "id": 40705,
+ "start": 18084.92,
+ "end": 18085.22,
+ "text": "read"
+ },
+ {
+ "id": 40706,
+ "start": 18085.22,
+ "end": 18085.42,
+ "text": "that"
+ },
+ {
+ "id": 40707,
+ "start": 18085.42,
+ "end": 18085.74,
+ "text": "user"
+ },
+ {
+ "id": 40708,
+ "start": 18085.74,
+ "end": 18086.2,
+ "text": "agreement."
+ },
+ {
+ "id": 40709,
+ "start": 18086.2,
+ "end": 18086.26,
+ "text": "I"
+ },
+ {
+ "id": 40710,
+ "start": 18086.26,
+ "end": 18086.6,
+ "text": "would"
+ },
+ {
+ "id": 40711,
+ "start": 18086.6,
+ "end": 18087.04,
+ "text": "encourage"
+ },
+ {
+ "id": 40712,
+ "start": 18087.04,
+ "end": 18087.2,
+ "text": "you"
+ },
+ {
+ "id": 40713,
+ "start": 18087.2,
+ "end": 18088.7,
+ "text": "to"
+ },
+ {
+ "id": 40714,
+ "start": 18088.7,
+ "end": 18089.66,
+ "text": "survey"
+ },
+ {
+ "id": 40715,
+ "start": 18089.66,
+ "end": 18090.02,
+ "text": "that"
+ },
+ {
+ "id": 40716,
+ "start": 18090.02,
+ "end": 18090.36,
+ "text": "get"
+ },
+ {
+ "id": 40717,
+ "start": 18090.36,
+ "end": 18090.5,
+ "text": "all"
+ },
+ {
+ "id": 40718,
+ "start": 18090.5,
+ "end": 18090.66,
+ "text": "the"
+ },
+ {
+ "id": 40719,
+ "start": 18090.66,
+ "end": 18091.12,
+ "text": "information"
+ },
+ {
+ "id": 40720,
+ "start": 18091.12,
+ "end": 18091.3,
+ "text": "you"
+ },
+ {
+ "id": 40721,
+ "start": 18091.3,
+ "end": 18091.5,
+ "text": "can"
+ },
+ {
+ "id": 40722,
+ "start": 18091.5,
+ "end": 18091.66,
+ "text": "with"
+ },
+ {
+ "id": 40723,
+ "start": 18091.66,
+ "end": 18092,
+ "text": "respect"
+ },
+ {
+ "id": 40724,
+ "start": 18092,
+ "end": 18092.1,
+ "text": "to"
+ },
+ {
+ "id": 40725,
+ "start": 18092.1,
+ "end": 18092.42,
+ "text": "that"
+ },
+ {
+ "id": 40726,
+ "start": 18092.42,
+ "end": 18092.8,
+ "text": "and"
+ },
+ {
+ "id": 40727,
+ "start": 18092.8,
+ "end": 18093.22,
+ "text": "make"
+ },
+ {
+ "id": 40728,
+ "start": 18093.22,
+ "end": 18093.38,
+ "text": "sure"
+ },
+ {
+ "id": 40729,
+ "start": 18093.38,
+ "end": 18094.26,
+ "text": "that"
+ },
+ {
+ "id": 40730,
+ "start": 18094.26,
+ "end": 18095.1,
+ "text": "make"
+ },
+ {
+ "id": 40731,
+ "start": 18095.1,
+ "end": 18095.26,
+ "text": "sure"
+ },
+ {
+ "id": 40732,
+ "start": 18095.26,
+ "end": 18095.42,
+ "text": "that"
+ },
+ {
+ "id": 40733,
+ "start": 18095.42,
+ "end": 18095.74,
+ "text": "user"
+ },
+ {
+ "id": 40734,
+ "start": 18095.74,
+ "end": 18096.18,
+ "text": "agreement"
+ },
+ {
+ "id": 40735,
+ "start": 18096.18,
+ "end": 18096.44,
+ "text": "is"
+ },
+ {
+ "id": 40736,
+ "start": 18096.44,
+ "end": 18096.92,
+ "text": "easy"
+ },
+ {
+ "id": 40737,
+ "start": 18096.92,
+ "end": 18097.02,
+ "text": "to"
+ },
+ {
+ "id": 40738,
+ "start": 18097.02,
+ "end": 18097.66,
+ "text": "understand"
+ },
+ {
+ "id": 40739,
+ "start": 18097.66,
+ "end": 18097.8,
+ "text": "and"
+ },
+ {
+ "id": 40740,
+ "start": 18097.8,
+ "end": 18098.38,
+ "text": "streamlined"
+ },
+ {
+ "id": 40741,
+ "start": 18098.38,
+ "end": 18098.74,
+ "text": "and"
+ },
+ {
+ "id": 40742,
+ "start": 18098.74,
+ "end": 18098.92,
+ "text": "so"
+ },
+ {
+ "id": 40743,
+ "start": 18098.92,
+ "end": 18099.94,
+ "text": "forth."
+ },
+ {
+ "id": 40744,
+ "start": 18099.94,
+ "end": 18100.94,
+ "text": "Mr"
+ },
+ {
+ "id": 40745,
+ "start": 18100.94,
+ "end": 18101.42,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 40746,
+ "start": 18101.42,
+ "end": 18101.96,
+ "text": "earlier"
+ },
+ {
+ "id": 40747,
+ "start": 18101.96,
+ "end": 18102.08,
+ "text": "in"
+ },
+ {
+ "id": 40748,
+ "start": 18102.08,
+ "end": 18102.4,
+ "text": "today's"
+ },
+ {
+ "id": 40749,
+ "start": 18102.4,
+ "end": 18102.84,
+ "text": "hearing,"
+ },
+ {
+ "id": 40750,
+ "start": 18102.84,
+ "end": 18103.38,
+ "text": "you"
+ },
+ {
+ "id": 40751,
+ "start": 18103.38,
+ "end": 18103.58,
+ "text": "drew"
+ },
+ {
+ "id": 40752,
+ "start": 18103.58,
+ "end": 18103.62,
+ "text": "a"
+ },
+ {
+ "id": 40753,
+ "start": 18103.62,
+ "end": 18104.22,
+ "text": "distinction"
+ },
+ {
+ "id": 40754,
+ "start": 18104.22,
+ "end": 18104.42,
+ "text": "that"
+ },
+ {
+ "id": 40755,
+ "start": 18104.42,
+ "end": 18104.48,
+ "text": "I"
+ },
+ {
+ "id": 40756,
+ "start": 18104.48,
+ "end": 18104.76,
+ "text": "thought"
+ },
+ {
+ "id": 40757,
+ "start": 18104.76,
+ "end": 18105.16,
+ "text": "was"
+ },
+ {
+ "id": 40758,
+ "start": 18105.16,
+ "end": 18106.22,
+ "text": "interesting."
+ },
+ {
+ "id": 40759,
+ "start": 18106.22,
+ "end": 18106.32,
+ "text": "I"
+ },
+ {
+ "id": 40760,
+ "start": 18106.32,
+ "end": 18106.58,
+ "text": "caught"
+ },
+ {
+ "id": 40761,
+ "start": 18106.58,
+ "end": 18106.7,
+ "text": "my"
+ },
+ {
+ "id": 40762,
+ "start": 18106.7,
+ "end": 18107.14,
+ "text": "attention."
+ },
+ {
+ "id": 40763,
+ "start": 18107.14,
+ "end": 18107.5,
+ "text": "It"
+ },
+ {
+ "id": 40764,
+ "start": 18107.5,
+ "end": 18107.62,
+ "text": "was"
+ },
+ {
+ "id": 40765,
+ "start": 18107.62,
+ "end": 18107.7,
+ "text": "a"
+ },
+ {
+ "id": 40766,
+ "start": 18107.7,
+ "end": 18108.18,
+ "text": "distinction"
+ },
+ {
+ "id": 40767,
+ "start": 18108.18,
+ "end": 18108.5,
+ "text": "between"
+ },
+ {
+ "id": 40768,
+ "start": 18108.5,
+ "end": 18109.06,
+ "text": "consumer"
+ },
+ {
+ "id": 40769,
+ "start": 18109.06,
+ "end": 18109.82,
+ "text": "expectation"
+ },
+ {
+ "id": 40770,
+ "start": 18109.82,
+ "end": 18109.96,
+ "text": "of"
+ },
+ {
+ "id": 40771,
+ "start": 18109.96,
+ "end": 18111,
+ "text": "privacy"
+ },
+ {
+ "id": 40772,
+ "start": 18111,
+ "end": 18111.78,
+ "text": "depending"
+ },
+ {
+ "id": 40773,
+ "start": 18111.78,
+ "end": 18112.08,
+ "text": "upon"
+ },
+ {
+ "id": 40774,
+ "start": 18112.08,
+ "end": 18112.48,
+ "text": "whether"
+ },
+ {
+ "id": 40775,
+ "start": 18112.48,
+ "end": 18113.08,
+ "text": "they"
+ },
+ {
+ "id": 40776,
+ "start": 18113.08,
+ "end": 18113.34,
+ "text": "were"
+ },
+ {
+ "id": 40777,
+ "start": 18113.34,
+ "end": 18113.62,
+ "text": "on"
+ },
+ {
+ "id": 40778,
+ "start": 18113.62,
+ "end": 18113.76,
+ "text": "an"
+ },
+ {
+ "id": 40779,
+ "start": 18113.76,
+ "end": 18114.66,
+ "text": "ISP"
+ },
+ {
+ "id": 40780,
+ "start": 18114.66,
+ "end": 18115.22,
+ "text": "or"
+ },
+ {
+ "id": 40781,
+ "start": 18115.22,
+ "end": 18115.44,
+ "text": "the"
+ },
+ {
+ "id": 40782,
+ "start": 18115.44,
+ "end": 18115.8,
+ "text": "pipes"
+ },
+ {
+ "id": 40783,
+ "start": 18115.8,
+ "end": 18116.04,
+ "text": "of"
+ },
+ {
+ "id": 40784,
+ "start": 18116.04,
+ "end": 18116.18,
+ "text": "the"
+ },
+ {
+ "id": 40785,
+ "start": 18116.18,
+ "end": 18116.54,
+ "text": "Internet"
+ },
+ {
+ "id": 40786,
+ "start": 18116.54,
+ "end": 18116.68,
+ "text": "as"
+ },
+ {
+ "id": 40787,
+ "start": 18116.68,
+ "end": 18116.84,
+ "text": "you"
+ },
+ {
+ "id": 40788,
+ "start": 18116.84,
+ "end": 18117.5,
+ "text": "characterized"
+ },
+ {
+ "id": 40789,
+ "start": 18117.5,
+ "end": 18117.66,
+ "text": "it"
+ },
+ {
+ "id": 40790,
+ "start": 18117.66,
+ "end": 18118.48,
+ "text": "or"
+ },
+ {
+ "id": 40791,
+ "start": 18118.48,
+ "end": 18118.74,
+ "text": "on"
+ },
+ {
+ "id": 40792,
+ "start": 18118.74,
+ "end": 18118.86,
+ "text": "an"
+ },
+ {
+ "id": 40793,
+ "start": 18118.86,
+ "end": 18119.14,
+ "text": "edge"
+ },
+ {
+ "id": 40794,
+ "start": 18119.14,
+ "end": 18119.68,
+ "text": "platform"
+ },
+ {
+ "id": 40795,
+ "start": 18119.68,
+ "end": 18119.94,
+ "text": "like"
+ },
+ {
+ "id": 40796,
+ "start": 18119.94,
+ "end": 18120.76,
+ "text": "Facebook,"
+ },
+ {
+ "id": 40797,
+ "start": 18120.76,
+ "end": 18121.38,
+ "text": "I"
+ },
+ {
+ "id": 40798,
+ "start": 18121.38,
+ "end": 18121.62,
+ "text": "find"
+ },
+ {
+ "id": 40799,
+ "start": 18121.62,
+ "end": 18121.84,
+ "text": "this"
+ },
+ {
+ "id": 40800,
+ "start": 18121.84,
+ "end": 18123.26,
+ "text": "distinction"
+ },
+ {
+ "id": 40801,
+ "start": 18123.26,
+ "end": 18125.06,
+ "text": "somewhat"
+ },
+ {
+ "id": 40802,
+ "start": 18125.06,
+ "end": 18126.06,
+ "text": "unsatisfying."
+ },
+ {
+ "id": 40803,
+ "start": 18126.06,
+ "end": 18127.32,
+ "text": "Because"
+ },
+ {
+ "id": 40804,
+ "start": 18127.32,
+ "end": 18128.2,
+ "text": "most"
+ },
+ {
+ "id": 40805,
+ "start": 18128.2,
+ "end": 18128.44,
+ "text": "folks"
+ },
+ {
+ "id": 40806,
+ "start": 18128.44,
+ "end": 18128.56,
+ "text": "who"
+ },
+ {
+ "id": 40807,
+ "start": 18128.56,
+ "end": 18128.82,
+ "text": "use"
+ },
+ {
+ "id": 40808,
+ "start": 18128.82,
+ "end": 18128.98,
+ "text": "the"
+ },
+ {
+ "id": 40809,
+ "start": 18128.98,
+ "end": 18129.46,
+ "text": "Internet,"
+ },
+ {
+ "id": 40810,
+ "start": 18129.46,
+ "end": 18130,
+ "text": "just"
+ },
+ {
+ "id": 40811,
+ "start": 18130,
+ "end": 18130.2,
+ "text": "think"
+ },
+ {
+ "id": 40812,
+ "start": 18130.2,
+ "end": 18130.3,
+ "text": "of"
+ },
+ {
+ "id": 40813,
+ "start": 18130.3,
+ "end": 18130.42,
+ "text": "it"
+ },
+ {
+ "id": 40814,
+ "start": 18130.42,
+ "end": 18130.58,
+ "text": "as"
+ },
+ {
+ "id": 40815,
+ "start": 18130.58,
+ "end": 18130.84,
+ "text": "one"
+ },
+ {
+ "id": 40816,
+ "start": 18130.84,
+ "end": 18131.2,
+ "text": "place."
+ },
+ {
+ "id": 40817,
+ "start": 18131.2,
+ "end": 18131.54,
+ "text": "If"
+ },
+ {
+ "id": 40818,
+ "start": 18131.54,
+ "end": 18131.7,
+ "text": "you"
+ },
+ {
+ "id": 40819,
+ "start": 18131.7,
+ "end": 18131.92,
+ "text": "will."
+ },
+ {
+ "id": 40820,
+ "start": 18131.92,
+ "end": 18132.48,
+ "text": "They"
+ },
+ {
+ "id": 40821,
+ "start": 18132.48,
+ "end": 18132.66,
+ "text": "think"
+ },
+ {
+ "id": 40822,
+ "start": 18132.66,
+ "end": 18132.78,
+ "text": "of"
+ },
+ {
+ "id": 40823,
+ "start": 18132.78,
+ "end": 18132.92,
+ "text": "it"
+ },
+ {
+ "id": 40824,
+ "start": 18132.92,
+ "end": 18133.24,
+ "text": "as"
+ },
+ {
+ "id": 40825,
+ "start": 18133.24,
+ "end": 18133.56,
+ "text": "the"
+ },
+ {
+ "id": 40826,
+ "start": 18133.56,
+ "end": 18134.1,
+ "text": "Internet"
+ },
+ {
+ "id": 40827,
+ "start": 18134.1,
+ "end": 18134.28,
+ "text": "as"
+ },
+ {
+ "id": 40828,
+ "start": 18134.28,
+ "end": 18134.66,
+ "text": "opposed"
+ },
+ {
+ "id": 40829,
+ "start": 18134.66,
+ "end": 18134.78,
+ "text": "to"
+ },
+ {
+ "id": 40830,
+ "start": 18134.78,
+ "end": 18135.86,
+ "text": "various"
+ },
+ {
+ "id": 40831,
+ "start": 18135.86,
+ "end": 18136.38,
+ "text": "places."
+ },
+ {
+ "id": 40832,
+ "start": 18136.38,
+ "end": 18136.96,
+ "text": "Requiring"
+ },
+ {
+ "id": 40833,
+ "start": 18136.96,
+ "end": 18137.62,
+ "text": "different"
+ },
+ {
+ "id": 40834,
+ "start": 18137.62,
+ "end": 18137.98,
+ "text": "degrees"
+ },
+ {
+ "id": 40835,
+ "start": 18137.98,
+ "end": 18138.14,
+ "text": "of"
+ },
+ {
+ "id": 40836,
+ "start": 18138.14,
+ "end": 18139.14,
+ "text": "privacy,"
+ },
+ {
+ "id": 40837,
+ "start": 18139.14,
+ "end": 18140.12,
+ "text": "could"
+ },
+ {
+ "id": 40838,
+ "start": 18140.12,
+ "end": 18140.4,
+ "text": "you?"
+ },
+ {
+ "id": 40839,
+ "start": 18140.4,
+ "end": 18141.12,
+ "text": "Could"
+ },
+ {
+ "id": 40840,
+ "start": 18141.12,
+ "end": 18141.24,
+ "text": "you"
+ },
+ {
+ "id": 40841,
+ "start": 18141.24,
+ "end": 18141.56,
+ "text": "speak"
+ },
+ {
+ "id": 40842,
+ "start": 18141.56,
+ "end": 18141.68,
+ "text": "to"
+ },
+ {
+ "id": 40843,
+ "start": 18141.68,
+ "end": 18141.9,
+ "text": "this"
+ },
+ {
+ "id": 40844,
+ "start": 18141.9,
+ "end": 18142.3,
+ "text": "issue"
+ },
+ {
+ "id": 40845,
+ "start": 18142.3,
+ "end": 18142.46,
+ "text": "and"
+ },
+ {
+ "id": 40846,
+ "start": 18142.46,
+ "end": 18142.88,
+ "text": "indicate"
+ },
+ {
+ "id": 40847,
+ "start": 18142.88,
+ "end": 18143.12,
+ "text": "whether"
+ },
+ {
+ "id": 40848,
+ "start": 18143.12,
+ "end": 18143.3,
+ "text": "you"
+ },
+ {
+ "id": 40849,
+ "start": 18143.3,
+ "end": 18143.88,
+ "text": "support"
+ },
+ {
+ "id": 40850,
+ "start": 18143.88,
+ "end": 18144.56,
+ "text": "a"
+ },
+ {
+ "id": 40851,
+ "start": 18144.56,
+ "end": 18145.58,
+ "text": "comprehensive"
+ },
+ {
+ "id": 40852,
+ "start": 18145.58,
+ "end": 18146.08,
+ "text": "privacy"
+ },
+ {
+ "id": 40853,
+ "start": 18146.08,
+ "end": 18146.58,
+ "text": "policy"
+ },
+ {
+ "id": 40854,
+ "start": 18146.58,
+ "end": 18146.74,
+ "text": "that"
+ },
+ {
+ "id": 40855,
+ "start": 18146.74,
+ "end": 18147.1,
+ "text": "applies"
+ },
+ {
+ "id": 40856,
+ "start": 18147.1,
+ "end": 18147.28,
+ "text": "in"
+ },
+ {
+ "id": 40857,
+ "start": 18147.28,
+ "end": 18147.4,
+ "text": "the"
+ },
+ {
+ "id": 40858,
+ "start": 18147.4,
+ "end": 18147.66,
+ "text": "same"
+ },
+ {
+ "id": 40859,
+ "start": 18147.66,
+ "end": 18147.98,
+ "text": "manner"
+ },
+ {
+ "id": 40860,
+ "start": 18147.98,
+ "end": 18149.18,
+ "text": "to"
+ },
+ {
+ "id": 40861,
+ "start": 18149.18,
+ "end": 18149.5,
+ "text": "all"
+ },
+ {
+ "id": 40862,
+ "start": 18149.5,
+ "end": 18150.06,
+ "text": "entities"
+ },
+ {
+ "id": 40863,
+ "start": 18150.06,
+ "end": 18150.5,
+ "text": "across"
+ },
+ {
+ "id": 40864,
+ "start": 18150.5,
+ "end": 18150.64,
+ "text": "the"
+ },
+ {
+ "id": 40865,
+ "start": 18150.64,
+ "end": 18151.02,
+ "text": "entire"
+ },
+ {
+ "id": 40866,
+ "start": 18151.02,
+ "end": 18151.92,
+ "text": "Internet"
+ },
+ {
+ "id": 40867,
+ "start": 18151.92,
+ "end": 18153.78,
+ "text": "ecosystem."
+ },
+ {
+ "id": 40868,
+ "start": 18153.78,
+ "end": 18154.74,
+ "text": "Senator,"
+ },
+ {
+ "id": 40869,
+ "start": 18154.74,
+ "end": 18156.22,
+ "text": "sure,"
+ },
+ {
+ "id": 40870,
+ "start": 18156.22,
+ "end": 18157.26,
+ "text": "I"
+ },
+ {
+ "id": 40871,
+ "start": 18157.26,
+ "end": 18157.48,
+ "text": "think"
+ },
+ {
+ "id": 40872,
+ "start": 18157.48,
+ "end": 18157.7,
+ "text": "that"
+ },
+ {
+ "id": 40873,
+ "start": 18157.7,
+ "end": 18158.08,
+ "text": "people's"
+ },
+ {
+ "id": 40874,
+ "start": 18158.08,
+ "end": 18159.04,
+ "text": "expectations"
+ },
+ {
+ "id": 40875,
+ "start": 18159.04,
+ "end": 18160.02,
+ "text": "of"
+ },
+ {
+ "id": 40876,
+ "start": 18160.02,
+ "end": 18160.74,
+ "text": "how"
+ },
+ {
+ "id": 40877,
+ "start": 18160.74,
+ "end": 18160.9,
+ "text": "they"
+ },
+ {
+ "id": 40878,
+ "start": 18160.9,
+ "end": 18161.08,
+ "text": "use"
+ },
+ {
+ "id": 40879,
+ "start": 18161.08,
+ "end": 18161.36,
+ "text": "these"
+ },
+ {
+ "id": 40880,
+ "start": 18161.36,
+ "end": 18161.78,
+ "text": "different"
+ },
+ {
+ "id": 40881,
+ "start": 18161.78,
+ "end": 18162.24,
+ "text": "systems"
+ },
+ {
+ "id": 40882,
+ "start": 18162.24,
+ "end": 18162.5,
+ "text": "are"
+ },
+ {
+ "id": 40883,
+ "start": 18162.5,
+ "end": 18163.2,
+ "text": "different."
+ },
+ {
+ "id": 40884,
+ "start": 18163.2,
+ "end": 18164.88,
+ "text": "Some"
+ },
+ {
+ "id": 40885,
+ "start": 18164.88,
+ "end": 18165.24,
+ "text": "apps"
+ },
+ {
+ "id": 40886,
+ "start": 18165.24,
+ "end": 18166.08,
+ "text": "are"
+ },
+ {
+ "id": 40887,
+ "start": 18166.08,
+ "end": 18166.36,
+ "text": "very"
+ },
+ {
+ "id": 40888,
+ "start": 18166.36,
+ "end": 18166.84,
+ "text": "lightweight"
+ },
+ {
+ "id": 40889,
+ "start": 18166.84,
+ "end": 18167.2,
+ "text": "and"
+ },
+ {
+ "id": 40890,
+ "start": 18167.2,
+ "end": 18167.5,
+ "text": "as"
+ },
+ {
+ "id": 40891,
+ "start": 18167.5,
+ "end": 18168.44,
+ "text": "our"
+ },
+ {
+ "id": 40892,
+ "start": 18168.44,
+ "end": 18169.58,
+ "text": "and"
+ },
+ {
+ "id": 40893,
+ "start": 18169.58,
+ "end": 18170.68,
+ "text": "you"
+ },
+ {
+ "id": 40894,
+ "start": 18170.68,
+ "end": 18170.84,
+ "text": "can"
+ },
+ {
+ "id": 40895,
+ "start": 18170.84,
+ "end": 18171.18,
+ "text": "fully"
+ },
+ {
+ "id": 40896,
+ "start": 18171.18,
+ "end": 18171.56,
+ "text": "encrypt"
+ },
+ {
+ "id": 40897,
+ "start": 18171.56,
+ "end": 18171.7,
+ "text": "the"
+ },
+ {
+ "id": 40898,
+ "start": 18171.7,
+ "end": 18171.92,
+ "text": "data"
+ },
+ {
+ "id": 40899,
+ "start": 18171.92,
+ "end": 18172.16,
+ "text": "going"
+ },
+ {
+ "id": 40900,
+ "start": 18172.16,
+ "end": 18172.52,
+ "text": "across"
+ },
+ {
+ "id": 40901,
+ "start": 18172.52,
+ "end": 18172.76,
+ "text": "them"
+ },
+ {
+ "id": 40902,
+ "start": 18172.76,
+ "end": 18172.94,
+ "text": "in"
+ },
+ {
+ "id": 40903,
+ "start": 18172.94,
+ "end": 18173.02,
+ "text": "a"
+ },
+ {
+ "id": 40904,
+ "start": 18173.02,
+ "end": 18173.2,
+ "text": "way"
+ },
+ {
+ "id": 40905,
+ "start": 18173.2,
+ "end": 18173.4,
+ "text": "that"
+ },
+ {
+ "id": 40906,
+ "start": 18173.4,
+ "end": 18173.66,
+ "text": "the"
+ },
+ {
+ "id": 40907,
+ "start": 18173.66,
+ "end": 18173.86,
+ "text": "app"
+ },
+ {
+ "id": 40908,
+ "start": 18173.86,
+ "end": 18174.32,
+ "text": "developer"
+ },
+ {
+ "id": 40909,
+ "start": 18174.32,
+ "end": 18174.62,
+ "text": "or"
+ },
+ {
+ "id": 40910,
+ "start": 18174.62,
+ "end": 18175.42,
+ "text": "the"
+ },
+ {
+ "id": 40911,
+ "start": 18175.42,
+ "end": 18175.74,
+ "text": "pipes"
+ },
+ {
+ "id": 40912,
+ "start": 18175.74,
+ "end": 18175.88,
+ "text": "and"
+ },
+ {
+ "id": 40913,
+ "start": 18175.88,
+ "end": 18175.98,
+ "text": "the"
+ },
+ {
+ "id": 40914,
+ "start": 18175.98,
+ "end": 18176.48,
+ "text": "ISP"
+ },
+ {
+ "id": 40915,
+ "start": 18176.48,
+ "end": 18178.82,
+ "text": "case"
+ },
+ {
+ "id": 40916,
+ "start": 18178.82,
+ "end": 18179.88,
+ "text": "you"
+ },
+ {
+ "id": 40917,
+ "start": 18179.88,
+ "end": 18180.12,
+ "text": "probably"
+ },
+ {
+ "id": 40918,
+ "start": 18180.12,
+ "end": 18180.34,
+ "text": "shouldn't"
+ },
+ {
+ "id": 40919,
+ "start": 18180.34,
+ "end": 18180.42,
+ "text": "be"
+ },
+ {
+ "id": 40920,
+ "start": 18180.42,
+ "end": 18180.54,
+ "text": "able"
+ },
+ {
+ "id": 40921,
+ "start": 18180.54,
+ "end": 18180.6,
+ "text": "to"
+ },
+ {
+ "id": 40922,
+ "start": 18180.6,
+ "end": 18180.76,
+ "text": "see"
+ },
+ {
+ "id": 40923,
+ "start": 18180.76,
+ "end": 18180.88,
+ "text": "any"
+ },
+ {
+ "id": 40924,
+ "start": 18180.88,
+ "end": 18180.96,
+ "text": "of"
+ },
+ {
+ "id": 40925,
+ "start": 18180.96,
+ "end": 18181.06,
+ "text": "the"
+ },
+ {
+ "id": 40926,
+ "start": 18181.06,
+ "end": 18181.44,
+ "text": "content."
+ },
+ {
+ "id": 40927,
+ "start": 18181.44,
+ "end": 18181.6,
+ "text": "And"
+ },
+ {
+ "id": 40928,
+ "start": 18181.6,
+ "end": 18181.86,
+ "text": "I"
+ },
+ {
+ "id": 40929,
+ "start": 18181.86,
+ "end": 18182.09,
+ "text": "think"
+ },
+ {
+ "id": 40930,
+ "start": 18182.09,
+ "end": 18182.95,
+ "text": "you"
+ },
+ {
+ "id": 40931,
+ "start": 18182.95,
+ "end": 18183.23,
+ "text": "probably"
+ },
+ {
+ "id": 40932,
+ "start": 18183.23,
+ "end": 18183.51,
+ "text": "should"
+ },
+ {
+ "id": 40933,
+ "start": 18183.51,
+ "end": 18183.91,
+ "text": "have"
+ },
+ {
+ "id": 40934,
+ "start": 18183.91,
+ "end": 18184.15,
+ "text": "a"
+ },
+ {
+ "id": 40935,
+ "start": 18184.15,
+ "end": 18184.45,
+ "text": "full"
+ },
+ {
+ "id": 40936,
+ "start": 18184.45,
+ "end": 18185.15,
+ "text": "expectation"
+ },
+ {
+ "id": 40937,
+ "start": 18185.15,
+ "end": 18185.83,
+ "text": "that"
+ },
+ {
+ "id": 40938,
+ "start": 18185.83,
+ "end": 18185.99,
+ "text": "no"
+ },
+ {
+ "id": 40939,
+ "start": 18185.99,
+ "end": 18186.11,
+ "text": "one"
+ },
+ {
+ "id": 40940,
+ "start": 18186.11,
+ "end": 18186.25,
+ "text": "is"
+ },
+ {
+ "id": 40941,
+ "start": 18186.25,
+ "end": 18186.47,
+ "text": "going"
+ },
+ {
+ "id": 40942,
+ "start": 18186.47,
+ "end": 18186.57,
+ "text": "to"
+ },
+ {
+ "id": 40943,
+ "start": 18186.57,
+ "end": 18186.65,
+ "text": "be"
+ },
+ {
+ "id": 40944,
+ "start": 18186.65,
+ "end": 18187.25,
+ "text": "Introspecting"
+ },
+ {
+ "id": 40945,
+ "start": 18187.25,
+ "end": 18187.39,
+ "text": "or"
+ },
+ {
+ "id": 40946,
+ "start": 18187.39,
+ "end": 18187.69,
+ "text": "looking"
+ },
+ {
+ "id": 40947,
+ "start": 18187.69,
+ "end": 18187.79,
+ "text": "at"
+ },
+ {
+ "id": 40948,
+ "start": 18187.79,
+ "end": 18187.95,
+ "text": "that"
+ },
+ {
+ "id": 40949,
+ "start": 18187.95,
+ "end": 18188.35,
+ "text": "content"
+ },
+ {
+ "id": 40950,
+ "start": 18188.35,
+ "end": 18188.81,
+ "text": "give"
+ },
+ {
+ "id": 40951,
+ "start": 18188.81,
+ "end": 18188.89,
+ "text": "me"
+ },
+ {
+ "id": 40952,
+ "start": 18188.89,
+ "end": 18189.09,
+ "text": "other,"
+ },
+ {
+ "id": 40953,
+ "start": 18189.09,
+ "end": 18189.37,
+ "text": "sir."
+ },
+ {
+ "id": 40954,
+ "start": 18189.37,
+ "end": 18189.83,
+ "text": "Examples"
+ },
+ {
+ "id": 40955,
+ "start": 18189.83,
+ "end": 18189.95,
+ "text": "if"
+ },
+ {
+ "id": 40956,
+ "start": 18189.95,
+ "end": 18190.07,
+ "text": "you"
+ },
+ {
+ "id": 40957,
+ "start": 18190.07,
+ "end": 18190.31,
+ "text": "would"
+ },
+ {
+ "id": 40958,
+ "start": 18190.31,
+ "end": 18190.69,
+ "text": "kindly,"
+ },
+ {
+ "id": 40959,
+ "start": 18190.69,
+ "end": 18190.91,
+ "text": "sir."
+ },
+ {
+ "id": 40960,
+ "start": 18190.91,
+ "end": 18191.69,
+ "text": "Sure"
+ },
+ {
+ "id": 40961,
+ "start": 18191.69,
+ "end": 18192.01,
+ "text": "well,"
+ },
+ {
+ "id": 40962,
+ "start": 18192.01,
+ "end": 18192.65,
+ "text": "when"
+ },
+ {
+ "id": 40963,
+ "start": 18192.65,
+ "end": 18193.01,
+ "text": "data"
+ },
+ {
+ "id": 40964,
+ "start": 18193.01,
+ "end": 18193.17,
+ "text": "is"
+ },
+ {
+ "id": 40965,
+ "start": 18193.17,
+ "end": 18193.39,
+ "text": "going"
+ },
+ {
+ "id": 40966,
+ "start": 18193.39,
+ "end": 18193.73,
+ "text": "over"
+ },
+ {
+ "id": 40967,
+ "start": 18193.73,
+ "end": 18194.01,
+ "text": "the"
+ },
+ {
+ "id": 40968,
+ "start": 18194.01,
+ "end": 18194.99,
+ "text": "Verizon"
+ },
+ {
+ "id": 40969,
+ "start": 18194.99,
+ "end": 18195.74,
+ "text": "network."
+ },
+ {
+ "id": 40970,
+ "start": 18195.74,
+ "end": 18196.18,
+ "text": "I"
+ },
+ {
+ "id": 40971,
+ "start": 18196.18,
+ "end": 18196.38,
+ "text": "think"
+ },
+ {
+ "id": 40972,
+ "start": 18196.38,
+ "end": 18196.44,
+ "text": "it"
+ },
+ {
+ "id": 40973,
+ "start": 18196.44,
+ "end": 18196.58,
+ "text": "would"
+ },
+ {
+ "id": 40974,
+ "start": 18196.58,
+ "end": 18196.66,
+ "text": "be"
+ },
+ {
+ "id": 40975,
+ "start": 18196.66,
+ "end": 18196.8,
+ "text": "good"
+ },
+ {
+ "id": 40976,
+ "start": 18196.8,
+ "end": 18196.96,
+ "text": "for"
+ },
+ {
+ "id": 40977,
+ "start": 18196.96,
+ "end": 18197.1,
+ "text": "that"
+ },
+ {
+ "id": 40978,
+ "start": 18197.1,
+ "end": 18197.22,
+ "text": "to"
+ },
+ {
+ "id": 40979,
+ "start": 18197.22,
+ "end": 18197.32,
+ "text": "be"
+ },
+ {
+ "id": 40980,
+ "start": 18197.32,
+ "end": 18197.5,
+ "text": "as"
+ },
+ {
+ "id": 40981,
+ "start": 18197.5,
+ "end": 18197.94,
+ "text": "encrypted"
+ },
+ {
+ "id": 40982,
+ "start": 18197.94,
+ "end": 18198.1,
+ "text": "as"
+ },
+ {
+ "id": 40983,
+ "start": 18198.1,
+ "end": 18198.62,
+ "text": "possible."
+ },
+ {
+ "id": 40984,
+ "start": 18198.62,
+ "end": 18199.38,
+ "text": "And"
+ },
+ {
+ "id": 40985,
+ "start": 18199.38,
+ "end": 18200,
+ "text": "such"
+ },
+ {
+ "id": 40986,
+ "start": 18200,
+ "end": 18200.2,
+ "text": "that"
+ },
+ {
+ "id": 40987,
+ "start": 18200.2,
+ "end": 18200.74,
+ "text": "Verizon"
+ },
+ {
+ "id": 40988,
+ "start": 18200.74,
+ "end": 18201.74,
+ "text": "wouldn't"
+ },
+ {
+ "id": 40989,
+ "start": 18201.74,
+ "end": 18201.92,
+ "text": "look"
+ },
+ {
+ "id": 40990,
+ "start": 18201.92,
+ "end": 18202.02,
+ "text": "at"
+ },
+ {
+ "id": 40991,
+ "start": 18202.02,
+ "end": 18202.16,
+ "text": "it."
+ },
+ {
+ "id": 40992,
+ "start": 18202.16,
+ "end": 18202.48,
+ "text": "I"
+ },
+ {
+ "id": 40993,
+ "start": 18202.48,
+ "end": 18202.78,
+ "text": "think"
+ },
+ {
+ "id": 40994,
+ "start": 18202.78,
+ "end": 18203.06,
+ "text": "that's"
+ },
+ {
+ "id": 40995,
+ "start": 18203.06,
+ "end": 18203.2,
+ "text": "what"
+ },
+ {
+ "id": 40996,
+ "start": 18203.2,
+ "end": 18203.44,
+ "text": "people"
+ },
+ {
+ "id": 40997,
+ "start": 18203.44,
+ "end": 18203.8,
+ "text": "expect."
+ },
+ {
+ "id": 40998,
+ "start": 18203.8,
+ "end": 18203.92,
+ "text": "And"
+ },
+ {
+ "id": 40999,
+ "start": 18203.92,
+ "end": 18203.98,
+ "text": "I"
+ },
+ {
+ "id": 41000,
+ "start": 18203.98,
+ "end": 18204.14,
+ "text": "don't"
+ },
+ {
+ "id": 41001,
+ "start": 18204.14,
+ "end": 18204.28,
+ "text": "know"
+ },
+ {
+ "id": 41002,
+ "start": 18204.28,
+ "end": 18204.46,
+ "text": "that"
+ },
+ {
+ "id": 41003,
+ "start": 18204.46,
+ "end": 18204.86,
+ "text": "being"
+ },
+ {
+ "id": 41004,
+ "start": 18204.86,
+ "end": 18204.98,
+ "text": "able"
+ },
+ {
+ "id": 41005,
+ "start": 18204.98,
+ "end": 18205.06,
+ "text": "to"
+ },
+ {
+ "id": 41006,
+ "start": 18205.06,
+ "end": 18205.2,
+ "text": "look"
+ },
+ {
+ "id": 41007,
+ "start": 18205.2,
+ "end": 18205.28,
+ "text": "at"
+ },
+ {
+ "id": 41008,
+ "start": 18205.28,
+ "end": 18205.38,
+ "text": "the"
+ },
+ {
+ "id": 41009,
+ "start": 18205.38,
+ "end": 18205.54,
+ "text": "data"
+ },
+ {
+ "id": 41010,
+ "start": 18205.54,
+ "end": 18205.64,
+ "text": "is"
+ },
+ {
+ "id": 41011,
+ "start": 18205.64,
+ "end": 18206.24,
+ "text": "required"
+ },
+ {
+ "id": 41012,
+ "start": 18206.24,
+ "end": 18206.88,
+ "text": "to"
+ },
+ {
+ "id": 41013,
+ "start": 18206.88,
+ "end": 18207.66,
+ "text": "to"
+ },
+ {
+ "id": 41014,
+ "start": 18207.66,
+ "end": 18208.12,
+ "text": "deliver"
+ },
+ {
+ "id": 41015,
+ "start": 18208.12,
+ "end": 18208.3,
+ "text": "their"
+ },
+ {
+ "id": 41016,
+ "start": 18208.3,
+ "end": 18208.62,
+ "text": "service"
+ },
+ {
+ "id": 41017,
+ "start": 18208.62,
+ "end": 18209.06,
+ "text": "that"
+ },
+ {
+ "id": 41018,
+ "start": 18209.06,
+ "end": 18209.64,
+ "text": "WhatsApp"
+ },
+ {
+ "id": 41019,
+ "start": 18209.64,
+ "end": 18209.88,
+ "text": "works"
+ },
+ {
+ "id": 41020,
+ "start": 18209.88,
+ "end": 18210.14,
+ "text": "too."
+ },
+ {
+ "id": 41021,
+ "start": 18210.14,
+ "end": 18210.44,
+ "text": "So"
+ },
+ {
+ "id": 41022,
+ "start": 18210.44,
+ "end": 18210.64,
+ "text": "that's"
+ },
+ {
+ "id": 41023,
+ "start": 18210.64,
+ "end": 18210.74,
+ "text": "an"
+ },
+ {
+ "id": 41024,
+ "start": 18210.74,
+ "end": 18211.32,
+ "text": "app"
+ },
+ {
+ "id": 41025,
+ "start": 18211.32,
+ "end": 18212.3,
+ "text": "it's"
+ },
+ {
+ "id": 41026,
+ "start": 18212.3,
+ "end": 18212.36,
+ "text": "a"
+ },
+ {
+ "id": 41027,
+ "start": 18212.36,
+ "end": 18212.54,
+ "text": "very"
+ },
+ {
+ "id": 41028,
+ "start": 18212.54,
+ "end": 18212.92,
+ "text": "lightweight"
+ },
+ {
+ "id": 41029,
+ "start": 18212.92,
+ "end": 18213.16,
+ "text": "app."
+ },
+ {
+ "id": 41030,
+ "start": 18213.16,
+ "end": 18213.7,
+ "text": "It"
+ },
+ {
+ "id": 41031,
+ "start": 18213.7,
+ "end": 18213.92,
+ "text": "doesn't"
+ },
+ {
+ "id": 41032,
+ "start": 18213.92,
+ "end": 18214.36,
+ "text": "require"
+ },
+ {
+ "id": 41033,
+ "start": 18214.36,
+ "end": 18214.56,
+ "text": "us"
+ },
+ {
+ "id": 41034,
+ "start": 18214.56,
+ "end": 18214.8,
+ "text": "to"
+ },
+ {
+ "id": 41035,
+ "start": 18214.8,
+ "end": 18215.02,
+ "text": "know"
+ },
+ {
+ "id": 41036,
+ "start": 18215.02,
+ "end": 18215.08,
+ "text": "a"
+ },
+ {
+ "id": 41037,
+ "start": 18215.08,
+ "end": 18215.22,
+ "text": "lot"
+ },
+ {
+ "id": 41038,
+ "start": 18215.22,
+ "end": 18215.3,
+ "text": "of"
+ },
+ {
+ "id": 41039,
+ "start": 18215.3,
+ "end": 18215.82,
+ "text": "information"
+ },
+ {
+ "id": 41040,
+ "start": 18215.82,
+ "end": 18216.04,
+ "text": "about"
+ },
+ {
+ "id": 41041,
+ "start": 18216.04,
+ "end": 18216.22,
+ "text": "you"
+ },
+ {
+ "id": 41042,
+ "start": 18216.22,
+ "end": 18217.22,
+ "text": "so"
+ },
+ {
+ "id": 41043,
+ "start": 18217.22,
+ "end": 18217.44,
+ "text": "we"
+ },
+ {
+ "id": 41044,
+ "start": 18217.44,
+ "end": 18217.58,
+ "text": "can"
+ },
+ {
+ "id": 41045,
+ "start": 18217.58,
+ "end": 18217.84,
+ "text": "offer"
+ },
+ {
+ "id": 41046,
+ "start": 18217.84,
+ "end": 18217.98,
+ "text": "that"
+ },
+ {
+ "id": 41047,
+ "start": 18217.98,
+ "end": 18218.14,
+ "text": "with"
+ },
+ {
+ "id": 41048,
+ "start": 18218.14,
+ "end": 18218.34,
+ "text": "full"
+ },
+ {
+ "id": 41049,
+ "start": 18218.34,
+ "end": 18218.86,
+ "text": "encryption."
+ },
+ {
+ "id": 41050,
+ "start": 18218.86,
+ "end": 18219.62,
+ "text": "And"
+ },
+ {
+ "id": 41051,
+ "start": 18219.62,
+ "end": 18220.56,
+ "text": "therefore"
+ },
+ {
+ "id": 41052,
+ "start": 18220.56,
+ "end": 18220.7,
+ "text": "we're"
+ },
+ {
+ "id": 41053,
+ "start": 18220.7,
+ "end": 18220.78,
+ "text": "not"
+ },
+ {
+ "id": 41054,
+ "start": 18220.78,
+ "end": 18221.01,
+ "text": "looking"
+ },
+ {
+ "id": 41055,
+ "start": 18221.01,
+ "end": 18221.71,
+ "text": "we"
+ },
+ {
+ "id": 41056,
+ "start": 18221.71,
+ "end": 18221.87,
+ "text": "don't"
+ },
+ {
+ "id": 41057,
+ "start": 18221.87,
+ "end": 18222.05,
+ "text": "see"
+ },
+ {
+ "id": 41058,
+ "start": 18222.05,
+ "end": 18222.15,
+ "text": "the"
+ },
+ {
+ "id": 41059,
+ "start": 18222.15,
+ "end": 18222.49,
+ "text": "content"
+ },
+ {
+ "id": 41060,
+ "start": 18222.49,
+ "end": 18223.21,
+ "text": "for"
+ },
+ {
+ "id": 41061,
+ "start": 18223.21,
+ "end": 18223.27,
+ "text": "a"
+ },
+ {
+ "id": 41062,
+ "start": 18223.27,
+ "end": 18223.65,
+ "text": "service."
+ },
+ {
+ "id": 41063,
+ "start": 18223.65,
+ "end": 18223.83,
+ "text": "Like"
+ },
+ {
+ "id": 41064,
+ "start": 18223.83,
+ "end": 18224.35,
+ "text": "Facebook"
+ },
+ {
+ "id": 41065,
+ "start": 18224.35,
+ "end": 18224.57,
+ "text": "or"
+ },
+ {
+ "id": 41066,
+ "start": 18224.57,
+ "end": 18225.17,
+ "text": "Instagram,"
+ },
+ {
+ "id": 41067,
+ "start": 18225.17,
+ "end": 18225.79,
+ "text": "where"
+ },
+ {
+ "id": 41068,
+ "start": 18225.79,
+ "end": 18225.97,
+ "text": "you're"
+ },
+ {
+ "id": 41069,
+ "start": 18225.97,
+ "end": 18226.35,
+ "text": "sharing"
+ },
+ {
+ "id": 41070,
+ "start": 18226.35,
+ "end": 18227.05,
+ "text": "photos"
+ },
+ {
+ "id": 41071,
+ "start": 18227.05,
+ "end": 18227.21,
+ "text": "and"
+ },
+ {
+ "id": 41072,
+ "start": 18227.21,
+ "end": 18227.77,
+ "text": "then"
+ },
+ {
+ "id": 41073,
+ "start": 18227.77,
+ "end": 18228.73,
+ "text": "people"
+ },
+ {
+ "id": 41074,
+ "start": 18228.73,
+ "end": 18228.87,
+ "text": "want"
+ },
+ {
+ "id": 41075,
+ "start": 18228.87,
+ "end": 18228.95,
+ "text": "to"
+ },
+ {
+ "id": 41076,
+ "start": 18228.95,
+ "end": 18229.27,
+ "text": "access"
+ },
+ {
+ "id": 41077,
+ "start": 18229.27,
+ "end": 18229.43,
+ "text": "them"
+ },
+ {
+ "id": 41078,
+ "start": 18229.43,
+ "end": 18229.59,
+ "text": "from"
+ },
+ {
+ "id": 41079,
+ "start": 18229.59,
+ "end": 18229.85,
+ "text": "lots"
+ },
+ {
+ "id": 41080,
+ "start": 18229.85,
+ "end": 18229.93,
+ "text": "of"
+ },
+ {
+ "id": 41081,
+ "start": 18229.93,
+ "end": 18230.19,
+ "text": "different"
+ },
+ {
+ "id": 41082,
+ "start": 18230.19,
+ "end": 18230.57,
+ "text": "places."
+ },
+ {
+ "id": 41083,
+ "start": 18230.57,
+ "end": 18231.13,
+ "text": "People"
+ },
+ {
+ "id": 41084,
+ "start": 18231.13,
+ "end": 18231.31,
+ "text": "kind"
+ },
+ {
+ "id": 41085,
+ "start": 18231.31,
+ "end": 18231.39,
+ "text": "of"
+ },
+ {
+ "id": 41086,
+ "start": 18231.39,
+ "end": 18231.59,
+ "text": "want"
+ },
+ {
+ "id": 41087,
+ "start": 18231.59,
+ "end": 18231.71,
+ "text": "to"
+ },
+ {
+ "id": 41088,
+ "start": 18231.71,
+ "end": 18231.99,
+ "text": "store"
+ },
+ {
+ "id": 41089,
+ "start": 18231.99,
+ "end": 18232.17,
+ "text": "that"
+ },
+ {
+ "id": 41090,
+ "start": 18232.17,
+ "end": 18232.25,
+ "text": "in"
+ },
+ {
+ "id": 41091,
+ "start": 18232.25,
+ "end": 18232.37,
+ "text": "a"
+ },
+ {
+ "id": 41092,
+ "start": 18232.37,
+ "end": 18232.73,
+ "text": "central"
+ },
+ {
+ "id": 41093,
+ "start": 18232.73,
+ "end": 18233.03,
+ "text": "place"
+ },
+ {
+ "id": 41094,
+ "start": 18233.03,
+ "end": 18233.57,
+ "text": "that"
+ },
+ {
+ "id": 41095,
+ "start": 18233.57,
+ "end": 18233.69,
+ "text": "way"
+ },
+ {
+ "id": 41096,
+ "start": 18233.69,
+ "end": 18233.83,
+ "text": "they"
+ },
+ {
+ "id": 41097,
+ "start": 18233.83,
+ "end": 18233.95,
+ "text": "can"
+ },
+ {
+ "id": 41098,
+ "start": 18233.95,
+ "end": 18234.05,
+ "text": "go"
+ },
+ {
+ "id": 41099,
+ "start": 18234.05,
+ "end": 18234.49,
+ "text": "access"
+ },
+ {
+ "id": 41100,
+ "start": 18234.49,
+ "end": 18235.14,
+ "text": "it"
+ },
+ {
+ "id": 41101,
+ "start": 18235.14,
+ "end": 18235.8,
+ "text": "from"
+ },
+ {
+ "id": 41102,
+ "start": 18235.8,
+ "end": 18236.04,
+ "text": "lots"
+ },
+ {
+ "id": 41103,
+ "start": 18236.04,
+ "end": 18236.14,
+ "text": "of"
+ },
+ {
+ "id": 41104,
+ "start": 18236.14,
+ "end": 18236.4,
+ "text": "different"
+ },
+ {
+ "id": 41105,
+ "start": 18236.4,
+ "end": 18236.86,
+ "text": "devices"
+ },
+ {
+ "id": 41106,
+ "start": 18236.86,
+ "end": 18237.52,
+ "text": "in"
+ },
+ {
+ "id": 41107,
+ "start": 18237.52,
+ "end": 18237.74,
+ "text": "order"
+ },
+ {
+ "id": 41108,
+ "start": 18237.74,
+ "end": 18237.84,
+ "text": "to"
+ },
+ {
+ "id": 41109,
+ "start": 18237.84,
+ "end": 18237.96,
+ "text": "do"
+ },
+ {
+ "id": 41110,
+ "start": 18237.96,
+ "end": 18238.2,
+ "text": "that."
+ },
+ {
+ "id": 41111,
+ "start": 18238.2,
+ "end": 18239.18,
+ "text": "We"
+ },
+ {
+ "id": 41112,
+ "start": 18239.18,
+ "end": 18239.42,
+ "text": "need"
+ },
+ {
+ "id": 41113,
+ "start": 18239.42,
+ "end": 18239.52,
+ "text": "to"
+ },
+ {
+ "id": 41114,
+ "start": 18239.52,
+ "end": 18239.88,
+ "text": "have"
+ },
+ {
+ "id": 41115,
+ "start": 18239.88,
+ "end": 18239.96,
+ "text": "an"
+ },
+ {
+ "id": 41116,
+ "start": 18239.96,
+ "end": 18240.46,
+ "text": "understanding"
+ },
+ {
+ "id": 41117,
+ "start": 18240.46,
+ "end": 18240.54,
+ "text": "of"
+ },
+ {
+ "id": 41118,
+ "start": 18240.54,
+ "end": 18240.68,
+ "text": "what"
+ },
+ {
+ "id": 41119,
+ "start": 18240.68,
+ "end": 18240.86,
+ "text": "that"
+ },
+ {
+ "id": 41120,
+ "start": 18240.86,
+ "end": 18241.22,
+ "text": "content"
+ },
+ {
+ "id": 41121,
+ "start": 18241.22,
+ "end": 18241.38,
+ "text": "is"
+ },
+ {
+ "id": 41122,
+ "start": 18241.38,
+ "end": 18241.6,
+ "text": "so"
+ },
+ {
+ "id": 41123,
+ "start": 18241.6,
+ "end": 18241.66,
+ "text": "I"
+ },
+ {
+ "id": 41124,
+ "start": 18241.66,
+ "end": 18241.84,
+ "text": "think"
+ },
+ {
+ "id": 41125,
+ "start": 18241.84,
+ "end": 18242.66,
+ "text": "the"
+ },
+ {
+ "id": 41126,
+ "start": 18242.66,
+ "end": 18243.68,
+ "text": "expectations"
+ },
+ {
+ "id": 41127,
+ "start": 18243.68,
+ "end": 18243.94,
+ "text": "of"
+ },
+ {
+ "id": 41128,
+ "start": 18243.94,
+ "end": 18244.7,
+ "text": "what"
+ },
+ {
+ "id": 41129,
+ "start": 18244.7,
+ "end": 18245.16,
+ "text": "Facebook"
+ },
+ {
+ "id": 41130,
+ "start": 18245.16,
+ "end": 18245.32,
+ "text": "will"
+ },
+ {
+ "id": 41131,
+ "start": 18245.32,
+ "end": 18245.46,
+ "text": "have"
+ },
+ {
+ "id": 41132,
+ "start": 18245.46,
+ "end": 18245.82,
+ "text": "knowledge"
+ },
+ {
+ "id": 41133,
+ "start": 18245.82,
+ "end": 18246.02,
+ "text": "of"
+ },
+ {
+ "id": 41134,
+ "start": 18246.02,
+ "end": 18246.42,
+ "text": "versus."
+ },
+ {
+ "id": 41135,
+ "start": 18246.42,
+ "end": 18246.56,
+ "text": "What"
+ },
+ {
+ "id": 41136,
+ "start": 18246.56,
+ "end": 18246.94,
+ "text": "if"
+ },
+ {
+ "id": 41137,
+ "start": 18246.94,
+ "end": 18247.22,
+ "text": "people"
+ },
+ {
+ "id": 41138,
+ "start": 18247.22,
+ "end": 18247.38,
+ "text": "have"
+ },
+ {
+ "id": 41139,
+ "start": 18247.38,
+ "end": 18247.7,
+ "text": "knowledge"
+ },
+ {
+ "id": 41140,
+ "start": 18247.7,
+ "end": 18247.84,
+ "text": "of"
+ },
+ {
+ "id": 41141,
+ "start": 18247.84,
+ "end": 18248.02,
+ "text": "are"
+ },
+ {
+ "id": 41142,
+ "start": 18248.02,
+ "end": 18248.16,
+ "text": "just"
+ },
+ {
+ "id": 41143,
+ "start": 18248.16,
+ "end": 18249.48,
+ "text": "different?"
+ },
+ {
+ "id": 41144,
+ "start": 18249.48,
+ "end": 18249.58,
+ "text": "I"
+ },
+ {
+ "id": 41145,
+ "start": 18249.58,
+ "end": 18250.74,
+ "text": "think"
+ },
+ {
+ "id": 41146,
+ "start": 18250.74,
+ "end": 18250.88,
+ "text": "that"
+ },
+ {
+ "id": 41147,
+ "start": 18250.88,
+ "end": 18251.12,
+ "text": "needs"
+ },
+ {
+ "id": 41148,
+ "start": 18251.12,
+ "end": 18251.22,
+ "text": "to"
+ },
+ {
+ "id": 41149,
+ "start": 18251.22,
+ "end": 18251.34,
+ "text": "be"
+ },
+ {
+ "id": 41150,
+ "start": 18251.34,
+ "end": 18251.68,
+ "text": "clearly"
+ },
+ {
+ "id": 41151,
+ "start": 18251.68,
+ "end": 18252.34,
+ "text": "communicated"
+ },
+ {
+ "id": 41152,
+ "start": 18252.34,
+ "end": 18253.06,
+ "text": "to"
+ },
+ {
+ "id": 41153,
+ "start": 18253.06,
+ "end": 18253.24,
+ "text": "your"
+ },
+ {
+ "id": 41154,
+ "start": 18253.24,
+ "end": 18253.78,
+ "text": "users"
+ },
+ {
+ "id": 41155,
+ "start": 18253.78,
+ "end": 18254.44,
+ "text": "and"
+ },
+ {
+ "id": 41156,
+ "start": 18254.44,
+ "end": 18255.38,
+ "text": "we'll."
+ },
+ {
+ "id": 41157,
+ "start": 18255.38,
+ "end": 18255.52,
+ "text": "Leave"
+ },
+ {
+ "id": 41158,
+ "start": 18255.52,
+ "end": 18255.6,
+ "text": "it"
+ },
+ {
+ "id": 41159,
+ "start": 18255.6,
+ "end": 18255.7,
+ "text": "at"
+ },
+ {
+ "id": 41160,
+ "start": 18255.7,
+ "end": 18257.54,
+ "text": "the"
+ },
+ {
+ "id": 41161,
+ "start": 18257.54,
+ "end": 18258.56,
+ "text": "different"
+ },
+ {
+ "id": 41162,
+ "start": 18258.56,
+ "end": 18259.26,
+ "text": "levels"
+ },
+ {
+ "id": 41163,
+ "start": 18259.26,
+ "end": 18259.4,
+ "text": "of"
+ },
+ {
+ "id": 41164,
+ "start": 18259.4,
+ "end": 18259.94,
+ "text": "privacy"
+ },
+ {
+ "id": 41165,
+ "start": 18259.94,
+ "end": 18260.12,
+ "text": "that"
+ },
+ {
+ "id": 41166,
+ "start": 18260.12,
+ "end": 18260.54,
+ "text": "the"
+ },
+ {
+ "id": 41167,
+ "start": 18260.54,
+ "end": 18261.12,
+ "text": "user"
+ },
+ {
+ "id": 41168,
+ "start": 18261.12,
+ "end": 18262.12,
+ "text": "can"
+ },
+ {
+ "id": 41169,
+ "start": 18262.12,
+ "end": 18263,
+ "text": "expect"
+ },
+ {
+ "id": 41170,
+ "start": 18263,
+ "end": 18263.12,
+ "text": "to"
+ },
+ {
+ "id": 41171,
+ "start": 18263.12,
+ "end": 18263.4,
+ "text": "enjoy."
+ },
+ {
+ "id": 41172,
+ "start": 18263.4,
+ "end": 18263.56,
+ "text": "When"
+ },
+ {
+ "id": 41173,
+ "start": 18263.56,
+ "end": 18263.78,
+ "text": "they're"
+ },
+ {
+ "id": 41174,
+ "start": 18263.78,
+ "end": 18263.84,
+ "text": "on"
+ },
+ {
+ "id": 41175,
+ "start": 18263.84,
+ "end": 18264,
+ "text": "your"
+ },
+ {
+ "id": 41176,
+ "start": 18264,
+ "end": 18264.54,
+ "text": "platform"
+ },
+ {
+ "id": 41177,
+ "start": 18264.54,
+ "end": 18265.06,
+ "text": "I'd"
+ },
+ {
+ "id": 41178,
+ "start": 18265.06,
+ "end": 18265.22,
+ "text": "like"
+ },
+ {
+ "id": 41179,
+ "start": 18265.22,
+ "end": 18265.42,
+ "text": "to"
+ },
+ {
+ "id": 41180,
+ "start": 18265.42,
+ "end": 18266.1,
+ "text": "sort"
+ },
+ {
+ "id": 41181,
+ "start": 18266.1,
+ "end": 18266.18,
+ "text": "of"
+ },
+ {
+ "id": 41182,
+ "start": 18266.18,
+ "end": 18266.34,
+ "text": "take"
+ },
+ {
+ "id": 41183,
+ "start": 18266.34,
+ "end": 18266.4,
+ "text": "a"
+ },
+ {
+ "id": 41184,
+ "start": 18266.4,
+ "end": 18266.7,
+ "text": "different"
+ },
+ {
+ "id": 41185,
+ "start": 18266.7,
+ "end": 18266.94,
+ "text": "tack"
+ },
+ {
+ "id": 41186,
+ "start": 18266.94,
+ "end": 18267.02,
+ "text": "to"
+ },
+ {
+ "id": 41187,
+ "start": 18267.02,
+ "end": 18267.44,
+ "text": "Internet"
+ },
+ {
+ "id": 41188,
+ "start": 18267.44,
+ "end": 18268.24,
+ "text": "privacy"
+ },
+ {
+ "id": 41189,
+ "start": 18268.24,
+ "end": 18268.66,
+ "text": "policy"
+ },
+ {
+ "id": 41190,
+ "start": 18268.66,
+ "end": 18268.82,
+ "text": "with"
+ },
+ {
+ "id": 41191,
+ "start": 18268.82,
+ "end": 18268.96,
+ "text": "you,"
+ },
+ {
+ "id": 41192,
+ "start": 18268.96,
+ "end": 18270.92,
+ "text": "sir."
+ },
+ {
+ "id": 41193,
+ "start": 18270.92,
+ "end": 18271.9,
+ "text": "Might"
+ },
+ {
+ "id": 41194,
+ "start": 18271.9,
+ "end": 18272.04,
+ "text": "we"
+ },
+ {
+ "id": 41195,
+ "start": 18272.04,
+ "end": 18272.8,
+ "text": "create"
+ },
+ {
+ "id": 41196,
+ "start": 18272.8,
+ "end": 18273.26,
+ "text": "stronger"
+ },
+ {
+ "id": 41197,
+ "start": 18273.26,
+ "end": 18273.8,
+ "text": "privacy"
+ },
+ {
+ "id": 41198,
+ "start": 18273.8,
+ "end": 18274.14,
+ "text": "rights"
+ },
+ {
+ "id": 41199,
+ "start": 18274.14,
+ "end": 18274.34,
+ "text": "for"
+ },
+ {
+ "id": 41200,
+ "start": 18274.34,
+ "end": 18275.1,
+ "text": "consumers"
+ },
+ {
+ "id": 41201,
+ "start": 18275.1,
+ "end": 18275.5,
+ "text": "either"
+ },
+ {
+ "id": 41202,
+ "start": 18275.5,
+ "end": 18275.88,
+ "text": "through"
+ },
+ {
+ "id": 41203,
+ "start": 18275.88,
+ "end": 18276.74,
+ "text": "creating"
+ },
+ {
+ "id": 41204,
+ "start": 18276.74,
+ "end": 18277.16,
+ "text": "a"
+ },
+ {
+ "id": 41205,
+ "start": 18277.16,
+ "end": 18277.9,
+ "text": "stronger"
+ },
+ {
+ "id": 41206,
+ "start": 18277.9,
+ "end": 18278.44,
+ "text": "general"
+ },
+ {
+ "id": 41207,
+ "start": 18278.44,
+ "end": 18278.9,
+ "text": "property?"
+ },
+ {
+ "id": 41208,
+ "start": 18278.9,
+ "end": 18279.18,
+ "text": "Right"
+ },
+ {
+ "id": 41209,
+ "start": 18279.18,
+ "end": 18280.18,
+ "text": "regime"
+ },
+ {
+ "id": 41210,
+ "start": 18280.18,
+ "end": 18281.2,
+ "text": "online"
+ },
+ {
+ "id": 41211,
+ "start": 18281.2,
+ "end": 18281.86,
+ "text": "say"
+ },
+ {
+ "id": 41212,
+ "start": 18281.86,
+ "end": 18281.92,
+ "text": "a"
+ },
+ {
+ "id": 41213,
+ "start": 18281.92,
+ "end": 18282.14,
+ "text": "new"
+ },
+ {
+ "id": 41214,
+ "start": 18282.14,
+ "end": 18282.42,
+ "text": "law"
+ },
+ {
+ "id": 41215,
+ "start": 18282.42,
+ "end": 18282.58,
+ "text": "that"
+ },
+ {
+ "id": 41216,
+ "start": 18282.58,
+ "end": 18282.88,
+ "text": "states"
+ },
+ {
+ "id": 41217,
+ "start": 18282.88,
+ "end": 18283.66,
+ "text": "unequivocally"
+ },
+ {
+ "id": 41218,
+ "start": 18283.66,
+ "end": 18284.3,
+ "text": "something"
+ },
+ {
+ "id": 41219,
+ "start": 18284.3,
+ "end": 18284.5,
+ "text": "that"
+ },
+ {
+ "id": 41220,
+ "start": 18284.5,
+ "end": 18284.66,
+ "text": "you"
+ },
+ {
+ "id": 41221,
+ "start": 18284.66,
+ "end": 18284.96,
+ "text": "said"
+ },
+ {
+ "id": 41222,
+ "start": 18284.96,
+ "end": 18285.38,
+ "text": "before"
+ },
+ {
+ "id": 41223,
+ "start": 18285.38,
+ "end": 18285.9,
+ "text": "the"
+ },
+ {
+ "id": 41224,
+ "start": 18285.9,
+ "end": 18286.4,
+ "text": "users"
+ },
+ {
+ "id": 41225,
+ "start": 18286.4,
+ "end": 18286.68,
+ "text": "own"
+ },
+ {
+ "id": 41226,
+ "start": 18286.68,
+ "end": 18286.88,
+ "text": "their"
+ },
+ {
+ "id": 41227,
+ "start": 18286.88,
+ "end": 18287.32,
+ "text": "online"
+ },
+ {
+ "id": 41228,
+ "start": 18287.32,
+ "end": 18288.34,
+ "text": "data"
+ },
+ {
+ "id": 41229,
+ "start": 18288.34,
+ "end": 18289.16,
+ "text": "or"
+ },
+ {
+ "id": 41230,
+ "start": 18289.16,
+ "end": 18289.48,
+ "text": "through"
+ },
+ {
+ "id": 41231,
+ "start": 18289.48,
+ "end": 18290.02,
+ "text": "stronger"
+ },
+ {
+ "id": 41232,
+ "start": 18290.02,
+ "end": 18290.72,
+ "text": "affirmative"
+ },
+ {
+ "id": 41233,
+ "start": 18290.72,
+ "end": 18291.28,
+ "text": "OptIn"
+ },
+ {
+ "id": 41234,
+ "start": 18291.28,
+ "end": 18292.04,
+ "text": "requirements"
+ },
+ {
+ "id": 41235,
+ "start": 18292.04,
+ "end": 18292.78,
+ "text": "on"
+ },
+ {
+ "id": 41236,
+ "start": 18292.78,
+ "end": 18293.46,
+ "text": "platforms"
+ },
+ {
+ "id": 41237,
+ "start": 18293.46,
+ "end": 18293.72,
+ "text": "like"
+ },
+ {
+ "id": 41238,
+ "start": 18293.72,
+ "end": 18294.56,
+ "text": "yours"
+ },
+ {
+ "id": 41239,
+ "start": 18294.56,
+ "end": 18295.02,
+ "text": "now"
+ },
+ {
+ "id": 41240,
+ "start": 18295.02,
+ "end": 18295.14,
+ "text": "if"
+ },
+ {
+ "id": 41241,
+ "start": 18295.14,
+ "end": 18295.22,
+ "text": "we"
+ },
+ {
+ "id": 41242,
+ "start": 18295.22,
+ "end": 18295.38,
+ "text": "were"
+ },
+ {
+ "id": 41243,
+ "start": 18295.38,
+ "end": 18295.5,
+ "text": "to"
+ },
+ {
+ "id": 41244,
+ "start": 18295.5,
+ "end": 18295.66,
+ "text": "do"
+ },
+ {
+ "id": 41245,
+ "start": 18295.66,
+ "end": 18295.96,
+ "text": "that,"
+ },
+ {
+ "id": 41246,
+ "start": 18295.96,
+ "end": 18296.26,
+ "text": "would"
+ },
+ {
+ "id": 41247,
+ "start": 18296.26,
+ "end": 18296.42,
+ "text": "you"
+ },
+ {
+ "id": 41248,
+ "start": 18296.42,
+ "end": 18296.62,
+ "text": "need"
+ },
+ {
+ "id": 41249,
+ "start": 18296.62,
+ "end": 18296.74,
+ "text": "to"
+ },
+ {
+ "id": 41250,
+ "start": 18296.74,
+ "end": 18297.42,
+ "text": "retool"
+ },
+ {
+ "id": 41251,
+ "start": 18297.42,
+ "end": 18297.88,
+ "text": "your"
+ },
+ {
+ "id": 41252,
+ "start": 18297.88,
+ "end": 18298.92,
+ "text": "model"
+ },
+ {
+ "id": 41253,
+ "start": 18298.92,
+ "end": 18299.68,
+ "text": "if"
+ },
+ {
+ "id": 41254,
+ "start": 18299.68,
+ "end": 18299.88,
+ "text": "were"
+ },
+ {
+ "id": 41255,
+ "start": 18299.88,
+ "end": 18299.96,
+ "text": "to"
+ },
+ {
+ "id": 41256,
+ "start": 18299.96,
+ "end": 18300.3,
+ "text": "adopt"
+ },
+ {
+ "id": 41257,
+ "start": 18300.3,
+ "end": 18300.56,
+ "text": "one"
+ },
+ {
+ "id": 41258,
+ "start": 18300.56,
+ "end": 18300.66,
+ "text": "of"
+ },
+ {
+ "id": 41259,
+ "start": 18300.66,
+ "end": 18300.88,
+ "text": "those"
+ },
+ {
+ "id": 41260,
+ "start": 18300.88,
+ "end": 18301.04,
+ "text": "two"
+ },
+ {
+ "id": 41261,
+ "start": 18301.04,
+ "end": 18301.98,
+ "text": "approaches?"
+ },
+ {
+ "id": 41262,
+ "start": 18301.98,
+ "end": 18302.66,
+ "text": "Senator,"
+ },
+ {
+ "id": 41263,
+ "start": 18302.66,
+ "end": 18302.82,
+ "text": "can"
+ },
+ {
+ "id": 41264,
+ "start": 18302.82,
+ "end": 18302.92,
+ "text": "you"
+ },
+ {
+ "id": 41265,
+ "start": 18302.92,
+ "end": 18303.16,
+ "text": "repeat"
+ },
+ {
+ "id": 41266,
+ "start": 18303.16,
+ "end": 18303.48,
+ "text": "what"
+ },
+ {
+ "id": 41267,
+ "start": 18303.48,
+ "end": 18303.6,
+ "text": "the"
+ },
+ {
+ "id": 41268,
+ "start": 18303.6,
+ "end": 18303.98,
+ "text": "approaches"
+ },
+ {
+ "id": 41269,
+ "start": 18303.98,
+ "end": 18304.12,
+ "text": "are"
+ },
+ {
+ "id": 41270,
+ "start": 18304.12,
+ "end": 18304.32,
+ "text": "going."
+ },
+ {
+ "id": 41271,
+ "start": 18304.32,
+ "end": 18304.94,
+ "text": "So"
+ },
+ {
+ "id": 41272,
+ "start": 18304.94,
+ "end": 18305.12,
+ "text": "one"
+ },
+ {
+ "id": 41273,
+ "start": 18305.12,
+ "end": 18305.26,
+ "text": "is"
+ },
+ {
+ "id": 41274,
+ "start": 18305.26,
+ "end": 18305.54,
+ "text": "to"
+ },
+ {
+ "id": 41275,
+ "start": 18305.54,
+ "end": 18306.6,
+ "text": "create"
+ },
+ {
+ "id": 41276,
+ "start": 18306.6,
+ "end": 18306.8,
+ "text": "a"
+ },
+ {
+ "id": 41277,
+ "start": 18306.8,
+ "end": 18307.32,
+ "text": "stronger"
+ },
+ {
+ "id": 41278,
+ "start": 18307.32,
+ "end": 18308.52,
+ "text": "property"
+ },
+ {
+ "id": 41279,
+ "start": 18308.52,
+ "end": 18308.92,
+ "text": "right"
+ },
+ {
+ "id": 41280,
+ "start": 18308.92,
+ "end": 18309.84,
+ "text": "for"
+ },
+ {
+ "id": 41281,
+ "start": 18309.84,
+ "end": 18309.98,
+ "text": "the"
+ },
+ {
+ "id": 41282,
+ "start": 18309.98,
+ "end": 18310.56,
+ "text": "individual"
+ },
+ {
+ "id": 41283,
+ "start": 18310.56,
+ "end": 18311.18,
+ "text": "online"
+ },
+ {
+ "id": 41284,
+ "start": 18311.18,
+ "end": 18311.52,
+ "text": "through"
+ },
+ {
+ "id": 41285,
+ "start": 18311.52,
+ "end": 18311.6,
+ "text": "a"
+ },
+ {
+ "id": 41286,
+ "start": 18311.6,
+ "end": 18311.92,
+ "text": "law"
+ },
+ {
+ "id": 41287,
+ "start": 18311.92,
+ "end": 18312.1,
+ "text": "that"
+ },
+ {
+ "id": 41288,
+ "start": 18312.1,
+ "end": 18312.38,
+ "text": "states"
+ },
+ {
+ "id": 41289,
+ "start": 18312.38,
+ "end": 18313.08,
+ "text": "unequivocally"
+ },
+ {
+ "id": 41290,
+ "start": 18313.08,
+ "end": 18313.62,
+ "text": "users"
+ },
+ {
+ "id": 41291,
+ "start": 18313.62,
+ "end": 18313.88,
+ "text": "own"
+ },
+ {
+ "id": 41292,
+ "start": 18313.88,
+ "end": 18314.06,
+ "text": "their"
+ },
+ {
+ "id": 41293,
+ "start": 18314.06,
+ "end": 18314.34,
+ "text": "data."
+ },
+ {
+ "id": 41294,
+ "start": 18314.34,
+ "end": 18315.14,
+ "text": "The"
+ },
+ {
+ "id": 41295,
+ "start": 18315.14,
+ "end": 18315.36,
+ "text": "other"
+ },
+ {
+ "id": 41296,
+ "start": 18315.36,
+ "end": 18315.66,
+ "text": "one"
+ },
+ {
+ "id": 41297,
+ "start": 18315.66,
+ "end": 18316.1,
+ "text": "is"
+ },
+ {
+ "id": 41298,
+ "start": 18316.1,
+ "end": 18316.48,
+ "text": "a"
+ },
+ {
+ "id": 41299,
+ "start": 18316.48,
+ "end": 18316.94,
+ "text": "stronger"
+ },
+ {
+ "id": 41300,
+ "start": 18316.94,
+ "end": 18317.52,
+ "text": "affirmative"
+ },
+ {
+ "id": 41301,
+ "start": 18317.52,
+ "end": 18318.04,
+ "text": "OptIn"
+ },
+ {
+ "id": 41302,
+ "start": 18318.04,
+ "end": 18319.45,
+ "text": "requirement"
+ },
+ {
+ "id": 41303,
+ "start": 18319.45,
+ "end": 18319.61,
+ "text": "to"
+ },
+ {
+ "id": 41304,
+ "start": 18319.61,
+ "end": 18320.15,
+ "text": "be"
+ },
+ {
+ "id": 41305,
+ "start": 18320.15,
+ "end": 18320.31,
+ "text": "a"
+ },
+ {
+ "id": 41306,
+ "start": 18320.31,
+ "end": 18320.61,
+ "text": "user"
+ },
+ {
+ "id": 41307,
+ "start": 18320.61,
+ "end": 18320.75,
+ "text": "on"
+ },
+ {
+ "id": 41308,
+ "start": 18320.75,
+ "end": 18321.19,
+ "text": "Facebook."
+ },
+ {
+ "id": 41309,
+ "start": 18321.19,
+ "end": 18321.91,
+ "text": "Would"
+ },
+ {
+ "id": 41310,
+ "start": 18321.91,
+ "end": 18322.01,
+ "text": "you"
+ },
+ {
+ "id": 41311,
+ "start": 18322.01,
+ "end": 18322.17,
+ "text": "have"
+ },
+ {
+ "id": 41312,
+ "start": 18322.17,
+ "end": 18322.27,
+ "text": "to"
+ },
+ {
+ "id": 41313,
+ "start": 18322.27,
+ "end": 18322.87,
+ "text": "fundamentally"
+ },
+ {
+ "id": 41314,
+ "start": 18322.87,
+ "end": 18323.21,
+ "text": "change"
+ },
+ {
+ "id": 41315,
+ "start": 18323.21,
+ "end": 18323.39,
+ "text": "the"
+ },
+ {
+ "id": 41316,
+ "start": 18323.39,
+ "end": 18323.93,
+ "text": "Facebook"
+ },
+ {
+ "id": 41317,
+ "start": 18323.93,
+ "end": 18324.91,
+ "text": "architecture"
+ },
+ {
+ "id": 41318,
+ "start": 18324.91,
+ "end": 18325.21,
+ "text": "to"
+ },
+ {
+ "id": 41319,
+ "start": 18325.21,
+ "end": 18325.95,
+ "text": "accommodate"
+ },
+ {
+ "id": 41320,
+ "start": 18325.95,
+ "end": 18326.97,
+ "text": "those"
+ },
+ {
+ "id": 41321,
+ "start": 18326.97,
+ "end": 18327.85,
+ "text": "policies?"
+ },
+ {
+ "id": 41322,
+ "start": 18327.85,
+ "end": 18328.87,
+ "text": "Senator,"
+ },
+ {
+ "id": 41323,
+ "start": 18328.87,
+ "end": 18329.15,
+ "text": "those"
+ },
+ {
+ "id": 41324,
+ "start": 18329.15,
+ "end": 18329.89,
+ "text": "policies"
+ },
+ {
+ "id": 41325,
+ "start": 18329.89,
+ "end": 18330.45,
+ "text": "and"
+ },
+ {
+ "id": 41326,
+ "start": 18330.45,
+ "end": 18330.55,
+ "text": "the"
+ },
+ {
+ "id": 41327,
+ "start": 18330.55,
+ "end": 18331.05,
+ "text": "principles"
+ },
+ {
+ "id": 41328,
+ "start": 18331.05,
+ "end": 18331.19,
+ "text": "that"
+ },
+ {
+ "id": 41329,
+ "start": 18331.19,
+ "end": 18331.31,
+ "text": "you"
+ },
+ {
+ "id": 41330,
+ "start": 18331.31,
+ "end": 18331.93,
+ "text": "articulated"
+ },
+ {
+ "id": 41331,
+ "start": 18331.93,
+ "end": 18332.11,
+ "text": "are"
+ },
+ {
+ "id": 41332,
+ "start": 18332.11,
+ "end": 18332.57,
+ "text": "generally"
+ },
+ {
+ "id": 41333,
+ "start": 18332.57,
+ "end": 18332.75,
+ "text": "how"
+ },
+ {
+ "id": 41334,
+ "start": 18332.75,
+ "end": 18332.87,
+ "text": "we"
+ },
+ {
+ "id": 41335,
+ "start": 18332.87,
+ "end": 18333.19,
+ "text": "view"
+ },
+ {
+ "id": 41336,
+ "start": 18333.19,
+ "end": 18333.43,
+ "text": "our"
+ },
+ {
+ "id": 41337,
+ "start": 18333.43,
+ "end": 18333.83,
+ "text": "service"
+ },
+ {
+ "id": 41338,
+ "start": 18333.83,
+ "end": 18334.25,
+ "text": "already."
+ },
+ {
+ "id": 41339,
+ "start": 18334.25,
+ "end": 18334.55,
+ "text": "So"
+ },
+ {
+ "id": 41340,
+ "start": 18334.55,
+ "end": 18335.15,
+ "text": "depending"
+ },
+ {
+ "id": 41341,
+ "start": 18335.15,
+ "end": 18335.27,
+ "text": "on"
+ },
+ {
+ "id": 41342,
+ "start": 18335.27,
+ "end": 18335.37,
+ "text": "the"
+ },
+ {
+ "id": 41343,
+ "start": 18335.37,
+ "end": 18335.89,
+ "text": "details"
+ },
+ {
+ "id": 41344,
+ "start": 18335.89,
+ "end": 18336.21,
+ "text": "of"
+ },
+ {
+ "id": 41345,
+ "start": 18336.21,
+ "end": 18336.92,
+ "text": "what"
+ },
+ {
+ "id": 41346,
+ "start": 18336.92,
+ "end": 18337.66,
+ "text": "what"
+ },
+ {
+ "id": 41347,
+ "start": 18337.66,
+ "end": 18338.62,
+ "text": "the"
+ },
+ {
+ "id": 41348,
+ "start": 18338.62,
+ "end": 18339,
+ "text": "proposal"
+ },
+ {
+ "id": 41349,
+ "start": 18339,
+ "end": 18339.28,
+ "text": "actually"
+ },
+ {
+ "id": 41350,
+ "start": 18339.28,
+ "end": 18339.44,
+ "text": "ends"
+ },
+ {
+ "id": 41351,
+ "start": 18339.44,
+ "end": 18339.54,
+ "text": "up"
+ },
+ {
+ "id": 41352,
+ "start": 18339.54,
+ "end": 18339.74,
+ "text": "being"
+ },
+ {
+ "id": 41353,
+ "start": 18339.74,
+ "end": 18339.84,
+ "text": "in"
+ },
+ {
+ "id": 41354,
+ "start": 18339.84,
+ "end": 18339.96,
+ "text": "the"
+ },
+ {
+ "id": 41355,
+ "start": 18339.96,
+ "end": 18340.34,
+ "text": "details"
+ },
+ {
+ "id": 41356,
+ "start": 18340.34,
+ "end": 18340.94,
+ "text": "do"
+ },
+ {
+ "id": 41357,
+ "start": 18340.94,
+ "end": 18341.12,
+ "text": "just"
+ },
+ {
+ "id": 41358,
+ "start": 18341.12,
+ "end": 18341.44,
+ "text": "matter."
+ },
+ {
+ "id": 41359,
+ "start": 18341.44,
+ "end": 18341.5,
+ "text": "A"
+ },
+ {
+ "id": 41360,
+ "start": 18341.5,
+ "end": 18341.78,
+ "text": "huge"
+ },
+ {
+ "id": 41361,
+ "start": 18341.78,
+ "end": 18342.06,
+ "text": "amount"
+ },
+ {
+ "id": 41362,
+ "start": 18342.06,
+ "end": 18342.32,
+ "text": "here"
+ },
+ {
+ "id": 41363,
+ "start": 18342.32,
+ "end": 18343.04,
+ "text": "it's"
+ },
+ {
+ "id": 41364,
+ "start": 18343.04,
+ "end": 18343.18,
+ "text": "not"
+ },
+ {
+ "id": 41365,
+ "start": 18343.18,
+ "end": 18343.4,
+ "text": "clear"
+ },
+ {
+ "id": 41366,
+ "start": 18343.4,
+ "end": 18343.54,
+ "text": "that"
+ },
+ {
+ "id": 41367,
+ "start": 18343.54,
+ "end": 18343.62,
+ "text": "it"
+ },
+ {
+ "id": 41368,
+ "start": 18343.62,
+ "end": 18343.78,
+ "text": "would"
+ },
+ {
+ "id": 41369,
+ "start": 18343.78,
+ "end": 18343.88,
+ "text": "be"
+ },
+ {
+ "id": 41370,
+ "start": 18343.88,
+ "end": 18343.94,
+ "text": "a"
+ },
+ {
+ "id": 41371,
+ "start": 18343.94,
+ "end": 18344.48,
+ "text": "fundamental"
+ },
+ {
+ "id": 41372,
+ "start": 18344.48,
+ "end": 18344.78,
+ "text": "shift."
+ },
+ {
+ "id": 41373,
+ "start": 18344.78,
+ "end": 18345.18,
+ "text": "But"
+ },
+ {
+ "id": 41374,
+ "start": 18345.18,
+ "end": 18345.3,
+ "text": "the"
+ },
+ {
+ "id": 41375,
+ "start": 18345.3,
+ "end": 18345.66,
+ "text": "details"
+ },
+ {
+ "id": 41376,
+ "start": 18345.66,
+ "end": 18345.94,
+ "text": "really"
+ },
+ {
+ "id": 41377,
+ "start": 18345.94,
+ "end": 18346.24,
+ "text": "matter."
+ },
+ {
+ "id": 41378,
+ "start": 18346.24,
+ "end": 18346.82,
+ "text": "And"
+ },
+ {
+ "id": 41379,
+ "start": 18346.82,
+ "end": 18347.06,
+ "text": "if"
+ },
+ {
+ "id": 41380,
+ "start": 18347.06,
+ "end": 18347.2,
+ "text": "this"
+ },
+ {
+ "id": 41381,
+ "start": 18347.2,
+ "end": 18347.3,
+ "text": "is"
+ },
+ {
+ "id": 41382,
+ "start": 18347.3,
+ "end": 18347.54,
+ "text": "something"
+ },
+ {
+ "id": 41383,
+ "start": 18347.54,
+ "end": 18347.86,
+ "text": "you're"
+ },
+ {
+ "id": 41384,
+ "start": 18347.86,
+ "end": 18348.46,
+ "text": "considering"
+ },
+ {
+ "id": 41385,
+ "start": 18348.46,
+ "end": 18348.62,
+ "text": "or"
+ },
+ {
+ "id": 41386,
+ "start": 18348.62,
+ "end": 18348.92,
+ "text": "working"
+ },
+ {
+ "id": 41387,
+ "start": 18348.92,
+ "end": 18349.12,
+ "text": "on."
+ },
+ {
+ "id": 41388,
+ "start": 18349.12,
+ "end": 18349.96,
+ "text": "We"
+ },
+ {
+ "id": 41389,
+ "start": 18349.96,
+ "end": 18350.2,
+ "text": "would"
+ },
+ {
+ "id": 41390,
+ "start": 18350.2,
+ "end": 18350.38,
+ "text": "love"
+ },
+ {
+ "id": 41391,
+ "start": 18350.38,
+ "end": 18350.5,
+ "text": "to"
+ },
+ {
+ "id": 41392,
+ "start": 18350.5,
+ "end": 18350.72,
+ "text": "follow"
+ },
+ {
+ "id": 41393,
+ "start": 18350.72,
+ "end": 18350.84,
+ "text": "up"
+ },
+ {
+ "id": 41394,
+ "start": 18350.84,
+ "end": 18350.96,
+ "text": "with"
+ },
+ {
+ "id": 41395,
+ "start": 18350.96,
+ "end": 18351.08,
+ "text": "you"
+ },
+ {
+ "id": 41396,
+ "start": 18351.08,
+ "end": 18351.22,
+ "text": "on"
+ },
+ {
+ "id": 41397,
+ "start": 18351.22,
+ "end": 18351.38,
+ "text": "this"
+ },
+ {
+ "id": 41398,
+ "start": 18351.38,
+ "end": 18351.6,
+ "text": "because"
+ },
+ {
+ "id": 41399,
+ "start": 18351.6,
+ "end": 18351.74,
+ "text": "this"
+ },
+ {
+ "id": 41400,
+ "start": 18351.74,
+ "end": 18351.86,
+ "text": "is"
+ },
+ {
+ "id": 41401,
+ "start": 18351.86,
+ "end": 18352.1,
+ "text": "very"
+ },
+ {
+ "id": 41402,
+ "start": 18352.1,
+ "end": 18352.42,
+ "text": "important"
+ },
+ {
+ "id": 41403,
+ "start": 18352.42,
+ "end": 18352.5,
+ "text": "to"
+ },
+ {
+ "id": 41404,
+ "start": 18352.5,
+ "end": 18352.62,
+ "text": "get"
+ },
+ {
+ "id": 41405,
+ "start": 18352.62,
+ "end": 18353.28,
+ "text": "right."
+ },
+ {
+ "id": 41406,
+ "start": 18353.28,
+ "end": 18353.94,
+ "text": "I'd"
+ },
+ {
+ "id": 41407,
+ "start": 18353.94,
+ "end": 18354.08,
+ "text": "love"
+ },
+ {
+ "id": 41408,
+ "start": 18354.08,
+ "end": 18354.2,
+ "text": "to"
+ },
+ {
+ "id": 41409,
+ "start": 18354.2,
+ "end": 18354.36,
+ "text": "work"
+ },
+ {
+ "id": 41410,
+ "start": 18354.36,
+ "end": 18354.52,
+ "text": "with"
+ },
+ {
+ "id": 41411,
+ "start": 18354.52,
+ "end": 18354.66,
+ "text": "you"
+ },
+ {
+ "id": 41412,
+ "start": 18354.66,
+ "end": 18355.5,
+ "text": "I'm"
+ },
+ {
+ "id": 41413,
+ "start": 18355.5,
+ "end": 18355.66,
+ "text": "out"
+ },
+ {
+ "id": 41414,
+ "start": 18355.66,
+ "end": 18355.74,
+ "text": "of"
+ },
+ {
+ "id": 41415,
+ "start": 18355.74,
+ "end": 18355.96,
+ "text": "time."
+ },
+ {
+ "id": 41416,
+ "start": 18355.96,
+ "end": 18356.24,
+ "text": "Thank"
+ },
+ {
+ "id": 41417,
+ "start": 18356.24,
+ "end": 18357.18,
+ "text": "you,"
+ },
+ {
+ "id": 41418,
+ "start": 18357.18,
+ "end": 18358.26,
+ "text": "Senator."
+ },
+ {
+ "id": 41419,
+ "start": 18358.26,
+ "end": 18358.76,
+ "text": "Phone"
+ },
+ {
+ "id": 41420,
+ "start": 18358.76,
+ "end": 18359.16,
+ "text": "has"
+ },
+ {
+ "id": 41421,
+ "start": 18359.16,
+ "end": 18359.48,
+ "text": "a"
+ },
+ {
+ "id": 41422,
+ "start": 18359.48,
+ "end": 18360.08,
+ "text": "closing"
+ },
+ {
+ "id": 41423,
+ "start": 18360.08,
+ "end": 18361.2,
+ "text": "comment"
+ },
+ {
+ "id": 41424,
+ "start": 18361.2,
+ "end": 18362.18,
+ "text": "and"
+ },
+ {
+ "id": 41425,
+ "start": 18362.18,
+ "end": 18362.28,
+ "text": "I"
+ },
+ {
+ "id": 41426,
+ "start": 18362.28,
+ "end": 18362.42,
+ "text": "have"
+ },
+ {
+ "id": 41427,
+ "start": 18362.42,
+ "end": 18362.48,
+ "text": "a"
+ },
+ {
+ "id": 41428,
+ "start": 18362.48,
+ "end": 18363.58,
+ "text": "process"
+ },
+ {
+ "id": 41429,
+ "start": 18363.58,
+ "end": 18364.48,
+ "text": "statement"
+ },
+ {
+ "id": 41430,
+ "start": 18364.48,
+ "end": 18364.66,
+ "text": "for"
+ },
+ {
+ "id": 41431,
+ "start": 18364.66,
+ "end": 18365.12,
+ "text": "everybody"
+ },
+ {
+ "id": 41432,
+ "start": 18365.12,
+ "end": 18365.32,
+ "text": "to"
+ },
+ {
+ "id": 41433,
+ "start": 18365.32,
+ "end": 18365.8,
+ "text": "listen"
+ },
+ {
+ "id": 41434,
+ "start": 18365.8,
+ "end": 18365.96,
+ "text": "to."
+ },
+ {
+ "id": 41435,
+ "start": 18365.96,
+ "end": 18366.46,
+ "text": "Mr"
+ },
+ {
+ "id": 41436,
+ "start": 18366.46,
+ "end": 18366.74,
+ "text": "Chairman,"
+ },
+ {
+ "id": 41437,
+ "start": 18366.74,
+ "end": 18366.98,
+ "text": "thank"
+ },
+ {
+ "id": 41438,
+ "start": 18366.98,
+ "end": 18367.12,
+ "text": "you."
+ },
+ {
+ "id": 41439,
+ "start": 18367.12,
+ "end": 18368.02,
+ "text": "And"
+ },
+ {
+ "id": 41440,
+ "start": 18368.02,
+ "end": 18368.36,
+ "text": "thanks"
+ },
+ {
+ "id": 41441,
+ "start": 18368.36,
+ "end": 18368.56,
+ "text": "all"
+ },
+ {
+ "id": 41442,
+ "start": 18368.56,
+ "end": 18368.64,
+ "text": "of"
+ },
+ {
+ "id": 41443,
+ "start": 18368.64,
+ "end": 18368.76,
+ "text": "our"
+ },
+ {
+ "id": 41444,
+ "start": 18368.76,
+ "end": 18369.02,
+ "text": "members,"
+ },
+ {
+ "id": 41445,
+ "start": 18369.02,
+ "end": 18369.64,
+ "text": "their"
+ },
+ {
+ "id": 41446,
+ "start": 18369.64,
+ "end": 18370.08,
+ "text": "patience"
+ },
+ {
+ "id": 41447,
+ "start": 18370.08,
+ "end": 18370.98,
+ "text": "been"
+ },
+ {
+ "id": 41448,
+ "start": 18370.98,
+ "end": 18371.24,
+ "text": "along"
+ },
+ {
+ "id": 41449,
+ "start": 18371.24,
+ "end": 18371.56,
+ "text": "hearing"
+ },
+ {
+ "id": 41450,
+ "start": 18371.56,
+ "end": 18372,
+ "text": "particular"
+ },
+ {
+ "id": 41451,
+ "start": 18372,
+ "end": 18372.12,
+ "text": "on"
+ },
+ {
+ "id": 41452,
+ "start": 18372.12,
+ "end": 18372.36,
+ "text": "hearing"
+ },
+ {
+ "id": 41453,
+ "start": 18372.36,
+ "end": 18372.48,
+ "text": "for"
+ },
+ {
+ "id": 41454,
+ "start": 18372.48,
+ "end": 18372.58,
+ "text": "you,"
+ },
+ {
+ "id": 41455,
+ "start": 18372.58,
+ "end": 18372.84,
+ "text": "Mr"
+ },
+ {
+ "id": 41456,
+ "start": 18372.84,
+ "end": 18373.28,
+ "text": "Zuckerberg."
+ },
+ {
+ "id": 41457,
+ "start": 18373.28,
+ "end": 18373.48,
+ "text": "Thank"
+ },
+ {
+ "id": 41458,
+ "start": 18373.48,
+ "end": 18373.62,
+ "text": "you"
+ },
+ {
+ "id": 41459,
+ "start": 18373.62,
+ "end": 18375.16,
+ "text": "for"
+ },
+ {
+ "id": 41460,
+ "start": 18375.16,
+ "end": 18375.44,
+ "text": "sitting"
+ },
+ {
+ "id": 41461,
+ "start": 18375.44,
+ "end": 18375.64,
+ "text": "through"
+ },
+ {
+ "id": 41462,
+ "start": 18375.64,
+ "end": 18375.84,
+ "text": "this."
+ },
+ {
+ "id": 41463,
+ "start": 18375.84,
+ "end": 18376.18,
+ "text": "But"
+ },
+ {
+ "id": 41464,
+ "start": 18376.18,
+ "end": 18376.28,
+ "text": "I"
+ },
+ {
+ "id": 41465,
+ "start": 18376.28,
+ "end": 18376.5,
+ "text": "think"
+ },
+ {
+ "id": 41466,
+ "start": 18376.5,
+ "end": 18376.64,
+ "text": "this"
+ },
+ {
+ "id": 41467,
+ "start": 18376.64,
+ "end": 18376.78,
+ "text": "is"
+ },
+ {
+ "id": 41468,
+ "start": 18376.78,
+ "end": 18377.26,
+ "text": "important."
+ },
+ {
+ "id": 41469,
+ "start": 18377.26,
+ "end": 18377.7,
+ "text": "I"
+ },
+ {
+ "id": 41470,
+ "start": 18377.7,
+ "end": 18377.86,
+ "text": "do"
+ },
+ {
+ "id": 41471,
+ "start": 18377.86,
+ "end": 18378.02,
+ "text": "have"
+ },
+ {
+ "id": 41472,
+ "start": 18378.02,
+ "end": 18378.08,
+ "text": "a"
+ },
+ {
+ "id": 41473,
+ "start": 18378.08,
+ "end": 18378.32,
+ "text": "letter"
+ },
+ {
+ "id": 41474,
+ "start": 18378.32,
+ "end": 18378.48,
+ "text": "here"
+ },
+ {
+ "id": 41475,
+ "start": 18378.48,
+ "end": 18378.66,
+ "text": "from"
+ },
+ {
+ "id": 41476,
+ "start": 18378.66,
+ "end": 18378.76,
+ "text": "the"
+ },
+ {
+ "id": 41477,
+ "start": 18378.76,
+ "end": 18379,
+ "text": "motion"
+ },
+ {
+ "id": 41478,
+ "start": 18379,
+ "end": 18379.32,
+ "text": "picture"
+ },
+ {
+ "id": 41479,
+ "start": 18379.32,
+ "end": 18379.84,
+ "text": "Association"
+ },
+ {
+ "id": 41480,
+ "start": 18379.84,
+ "end": 18379.92,
+ "text": "of"
+ },
+ {
+ "id": 41481,
+ "start": 18379.92,
+ "end": 18380.22,
+ "text": "America"
+ },
+ {
+ "id": 41482,
+ "start": 18380.22,
+ "end": 18380.36,
+ "text": "that"
+ },
+ {
+ "id": 41483,
+ "start": 18380.36,
+ "end": 18380.4,
+ "text": "I"
+ },
+ {
+ "id": 41484,
+ "start": 18380.4,
+ "end": 18380.56,
+ "text": "want"
+ },
+ {
+ "id": 41485,
+ "start": 18380.56,
+ "end": 18380.64,
+ "text": "to"
+ },
+ {
+ "id": 41486,
+ "start": 18380.64,
+ "end": 18380.8,
+ "text": "get"
+ },
+ {
+ "id": 41487,
+ "start": 18380.8,
+ "end": 18381.74,
+ "text": "into"
+ },
+ {
+ "id": 41488,
+ "start": 18381.74,
+ "end": 18381.86,
+ "text": "the"
+ },
+ {
+ "id": 41489,
+ "start": 18381.86,
+ "end": 18382.26,
+ "text": "record"
+ },
+ {
+ "id": 41490,
+ "start": 18382.26,
+ "end": 18382.7,
+ "text": "without"
+ },
+ {
+ "id": 41491,
+ "start": 18382.7,
+ "end": 18383.14,
+ "text": "objection"
+ },
+ {
+ "id": 41492,
+ "start": 18383.14,
+ "end": 18383.58,
+ "text": "without"
+ },
+ {
+ "id": 41493,
+ "start": 18383.58,
+ "end": 18384.14,
+ "text": "objections"
+ },
+ {
+ "id": 41494,
+ "start": 18384.14,
+ "end": 18385.02,
+ "text": "and"
+ },
+ {
+ "id": 41495,
+ "start": 18385.02,
+ "end": 18385.18,
+ "text": "just"
+ },
+ {
+ "id": 41496,
+ "start": 18385.18,
+ "end": 18385.28,
+ "text": "a"
+ },
+ {
+ "id": 41497,
+ "start": 18385.28,
+ "end": 18385.52,
+ "text": "quick"
+ },
+ {
+ "id": 41498,
+ "start": 18385.52,
+ "end": 18385.82,
+ "text": "quick"
+ },
+ {
+ "id": 41499,
+ "start": 18385.82,
+ "end": 18386.18,
+ "text": "sort"
+ },
+ {
+ "id": 41500,
+ "start": 18386.18,
+ "end": 18386.74,
+ "text": "of"
+ },
+ {
+ "id": 41501,
+ "start": 18386.74,
+ "end": 18387.48,
+ "text": "wrap"
+ },
+ {
+ "id": 41502,
+ "start": 18387.48,
+ "end": 18387.68,
+ "text": "up"
+ },
+ {
+ "id": 41503,
+ "start": 18387.68,
+ "end": 18388.04,
+ "text": "question"
+ },
+ {
+ "id": 41504,
+ "start": 18388.04,
+ "end": 18388.18,
+ "text": "if"
+ },
+ {
+ "id": 41505,
+ "start": 18388.18,
+ "end": 18388.3,
+ "text": "you"
+ },
+ {
+ "id": 41506,
+ "start": 18388.3,
+ "end": 18388.54,
+ "text": "will."
+ },
+ {
+ "id": 41507,
+ "start": 18388.54,
+ "end": 18388.9,
+ "text": "Maybe"
+ },
+ {
+ "id": 41508,
+ "start": 18388.9,
+ "end": 18389.08,
+ "text": "one"
+ },
+ {
+ "id": 41509,
+ "start": 18389.08,
+ "end": 18389.3,
+ "text": "quick"
+ },
+ {
+ "id": 41510,
+ "start": 18389.3,
+ "end": 18389.68,
+ "text": "comment."
+ },
+ {
+ "id": 41511,
+ "start": 18389.68,
+ "end": 18389.9,
+ "text": "But"
+ },
+ {
+ "id": 41512,
+ "start": 18389.9,
+ "end": 18390.48,
+ "text": "you"
+ },
+ {
+ "id": 41513,
+ "start": 18390.48,
+ "end": 18390.64,
+ "text": "be"
+ },
+ {
+ "id": 41514,
+ "start": 18390.64,
+ "end": 18390.98,
+ "text": "answered"
+ },
+ {
+ "id": 41515,
+ "start": 18390.98,
+ "end": 18391.54,
+ "text": "several"
+ },
+ {
+ "id": 41516,
+ "start": 18391.54,
+ "end": 18392.02,
+ "text": "questions"
+ },
+ {
+ "id": 41517,
+ "start": 18392.02,
+ "end": 18393.16,
+ "text": "about"
+ },
+ {
+ "id": 41518,
+ "start": 18393.16,
+ "end": 18393.66,
+ "text": "today."
+ },
+ {
+ "id": 41519,
+ "start": 18393.66,
+ "end": 18393.92,
+ "text": "About"
+ },
+ {
+ "id": 41520,
+ "start": 18393.92,
+ "end": 18394.3,
+ "text": "efforts"
+ },
+ {
+ "id": 41521,
+ "start": 18394.3,
+ "end": 18394.44,
+ "text": "to"
+ },
+ {
+ "id": 41522,
+ "start": 18394.44,
+ "end": 18394.7,
+ "text": "keep"
+ },
+ {
+ "id": 41523,
+ "start": 18394.7,
+ "end": 18394.98,
+ "text": "bad"
+ },
+ {
+ "id": 41524,
+ "start": 18394.98,
+ "end": 18395.36,
+ "text": "actors"
+ },
+ {
+ "id": 41525,
+ "start": 18395.36,
+ "end": 18395.5,
+ "text": "or"
+ },
+ {
+ "id": 41526,
+ "start": 18395.5,
+ "end": 18395.7,
+ "text": "whether"
+ },
+ {
+ "id": 41527,
+ "start": 18395.7,
+ "end": 18395.9,
+ "text": "that's"
+ },
+ {
+ "id": 41528,
+ "start": 18395.9,
+ "end": 18395.96,
+ "text": "a"
+ },
+ {
+ "id": 41529,
+ "start": 18395.96,
+ "end": 18396.32,
+ "text": "terrorist"
+ },
+ {
+ "id": 41530,
+ "start": 18396.32,
+ "end": 18396.6,
+ "text": "group"
+ },
+ {
+ "id": 41531,
+ "start": 18396.6,
+ "end": 18396.84,
+ "text": "to"
+ },
+ {
+ "id": 41532,
+ "start": 18396.84,
+ "end": 18396.9,
+ "text": "a"
+ },
+ {
+ "id": 41533,
+ "start": 18396.9,
+ "end": 18397.36,
+ "text": "malicious"
+ },
+ {
+ "id": 41534,
+ "start": 18397.36,
+ "end": 18397.7,
+ "text": "foreign"
+ },
+ {
+ "id": 41535,
+ "start": 18397.7,
+ "end": 18398.04,
+ "text": "agent"
+ },
+ {
+ "id": 41536,
+ "start": 18398.04,
+ "end": 18399.06,
+ "text": "off"
+ },
+ {
+ "id": 41537,
+ "start": 18399.06,
+ "end": 18399.16,
+ "text": "of"
+ },
+ {
+ "id": 41538,
+ "start": 18399.16,
+ "end": 18399.32,
+ "text": "your"
+ },
+ {
+ "id": 41539,
+ "start": 18399.32,
+ "end": 18399.82,
+ "text": "platform"
+ },
+ {
+ "id": 41540,
+ "start": 18399.82,
+ "end": 18400.04,
+ "text": "you've"
+ },
+ {
+ "id": 41541,
+ "start": 18400.04,
+ "end": 18400.4,
+ "text": "also"
+ },
+ {
+ "id": 41542,
+ "start": 18400.4,
+ "end": 18400.66,
+ "text": "heard"
+ },
+ {
+ "id": 41543,
+ "start": 18400.66,
+ "end": 18401.26,
+ "text": "concerns"
+ },
+ {
+ "id": 41544,
+ "start": 18401.26,
+ "end": 18402.26,
+ "text": "about"
+ },
+ {
+ "id": 41545,
+ "start": 18402.26,
+ "end": 18402.8,
+ "text": "bias"
+ },
+ {
+ "id": 41546,
+ "start": 18402.8,
+ "end": 18403.28,
+ "text": "at"
+ },
+ {
+ "id": 41547,
+ "start": 18403.28,
+ "end": 18403.72,
+ "text": "Facebook."
+ },
+ {
+ "id": 41548,
+ "start": 18403.72,
+ "end": 18404.24,
+ "text": "Particularly"
+ },
+ {
+ "id": 41549,
+ "start": 18404.24,
+ "end": 18404.62,
+ "text": "bias"
+ },
+ {
+ "id": 41550,
+ "start": 18404.62,
+ "end": 18404.94,
+ "text": "against"
+ },
+ {
+ "id": 41551,
+ "start": 18404.94,
+ "end": 18406.14,
+ "text": "conservatives."
+ },
+ {
+ "id": 41552,
+ "start": 18406.14,
+ "end": 18406.72,
+ "text": "And"
+ },
+ {
+ "id": 41553,
+ "start": 18406.72,
+ "end": 18406.82,
+ "text": "I"
+ },
+ {
+ "id": 41554,
+ "start": 18406.82,
+ "end": 18406.98,
+ "text": "just"
+ },
+ {
+ "id": 41555,
+ "start": 18406.98,
+ "end": 18407.2,
+ "text": "as"
+ },
+ {
+ "id": 41556,
+ "start": 18407.2,
+ "end": 18407.52,
+ "text": "a"
+ },
+ {
+ "id": 41557,
+ "start": 18407.52,
+ "end": 18408.56,
+ "text": "final"
+ },
+ {
+ "id": 41558,
+ "start": 18408.56,
+ "end": 18409.02,
+ "text": "question,"
+ },
+ {
+ "id": 41559,
+ "start": 18409.02,
+ "end": 18409.24,
+ "text": "can"
+ },
+ {
+ "id": 41560,
+ "start": 18409.24,
+ "end": 18409.36,
+ "text": "you"
+ },
+ {
+ "id": 41561,
+ "start": 18409.36,
+ "end": 18409.82,
+ "text": "assure"
+ },
+ {
+ "id": 41562,
+ "start": 18409.82,
+ "end": 18409.96,
+ "text": "us"
+ },
+ {
+ "id": 41563,
+ "start": 18409.96,
+ "end": 18410.36,
+ "text": "that"
+ },
+ {
+ "id": 41564,
+ "start": 18410.36,
+ "end": 18410.66,
+ "text": "when"
+ },
+ {
+ "id": 41565,
+ "start": 18410.66,
+ "end": 18410.86,
+ "text": "you"
+ },
+ {
+ "id": 41566,
+ "start": 18410.86,
+ "end": 18411.52,
+ "text": "are"
+ },
+ {
+ "id": 41567,
+ "start": 18411.52,
+ "end": 18412.48,
+ "text": "improving"
+ },
+ {
+ "id": 41568,
+ "start": 18412.48,
+ "end": 18412.94,
+ "text": "tools"
+ },
+ {
+ "id": 41569,
+ "start": 18412.94,
+ "end": 18413.14,
+ "text": "to"
+ },
+ {
+ "id": 41570,
+ "start": 18413.14,
+ "end": 18413.5,
+ "text": "stop"
+ },
+ {
+ "id": 41571,
+ "start": 18413.5,
+ "end": 18413.78,
+ "text": "bad"
+ },
+ {
+ "id": 41572,
+ "start": 18413.78,
+ "end": 18414.24,
+ "text": "actors"
+ },
+ {
+ "id": 41573,
+ "start": 18414.24,
+ "end": 18415.28,
+ "text": "that"
+ },
+ {
+ "id": 41574,
+ "start": 18415.28,
+ "end": 18415.42,
+ "text": "you"
+ },
+ {
+ "id": 41575,
+ "start": 18415.42,
+ "end": 18415.6,
+ "text": "will"
+ },
+ {
+ "id": 41576,
+ "start": 18415.6,
+ "end": 18415.9,
+ "text": "err"
+ },
+ {
+ "id": 41577,
+ "start": 18415.9,
+ "end": 18416,
+ "text": "on"
+ },
+ {
+ "id": 41578,
+ "start": 18416,
+ "end": 18416.12,
+ "text": "the"
+ },
+ {
+ "id": 41579,
+ "start": 18416.12,
+ "end": 18416.4,
+ "text": "side"
+ },
+ {
+ "id": 41580,
+ "start": 18416.4,
+ "end": 18416.52,
+ "text": "of"
+ },
+ {
+ "id": 41581,
+ "start": 18416.52,
+ "end": 18417.04,
+ "text": "protecting"
+ },
+ {
+ "id": 41582,
+ "start": 18417.04,
+ "end": 18417.5,
+ "text": "speech,"
+ },
+ {
+ "id": 41583,
+ "start": 18417.5,
+ "end": 18418.18,
+ "text": "especially"
+ },
+ {
+ "id": 41584,
+ "start": 18418.18,
+ "end": 18418.72,
+ "text": "political"
+ },
+ {
+ "id": 41585,
+ "start": 18418.72,
+ "end": 18419.06,
+ "text": "speech"
+ },
+ {
+ "id": 41586,
+ "start": 18419.06,
+ "end": 18419.5,
+ "text": "from"
+ },
+ {
+ "id": 41587,
+ "start": 18419.5,
+ "end": 18419.86,
+ "text": "all"
+ },
+ {
+ "id": 41588,
+ "start": 18419.86,
+ "end": 18420.34,
+ "text": "different"
+ },
+ {
+ "id": 41589,
+ "start": 18420.34,
+ "end": 18423,
+ "text": "quarters,"
+ },
+ {
+ "id": 41590,
+ "start": 18423,
+ "end": 18423.98,
+ "text": "Senator."
+ },
+ {
+ "id": 41591,
+ "start": 18423.98,
+ "end": 18424.3,
+ "text": "Yes"
+ },
+ {
+ "id": 41592,
+ "start": 18424.3,
+ "end": 18425.16,
+ "text": "that's"
+ },
+ {
+ "id": 41593,
+ "start": 18425.16,
+ "end": 18425.32,
+ "text": "our"
+ },
+ {
+ "id": 41594,
+ "start": 18425.32,
+ "end": 18426.36,
+ "text": "approach."
+ },
+ {
+ "id": 41595,
+ "start": 18426.36,
+ "end": 18427.34,
+ "text": "If"
+ },
+ {
+ "id": 41596,
+ "start": 18427.34,
+ "end": 18427.6,
+ "text": "there"
+ },
+ {
+ "id": 41597,
+ "start": 18427.6,
+ "end": 18427.76,
+ "text": "is"
+ },
+ {
+ "id": 41598,
+ "start": 18427.76,
+ "end": 18427.98,
+ "text": "an"
+ },
+ {
+ "id": 41599,
+ "start": 18427.98,
+ "end": 18428.34,
+ "text": "imminent"
+ },
+ {
+ "id": 41600,
+ "start": 18428.34,
+ "end": 18428.64,
+ "text": "threat"
+ },
+ {
+ "id": 41601,
+ "start": 18428.64,
+ "end": 18428.74,
+ "text": "of"
+ },
+ {
+ "id": 41602,
+ "start": 18428.74,
+ "end": 18429.12,
+ "text": "harm"
+ },
+ {
+ "id": 41603,
+ "start": 18429.12,
+ "end": 18429.78,
+ "text": "we're"
+ },
+ {
+ "id": 41604,
+ "start": 18429.78,
+ "end": 18430.04,
+ "text": "going"
+ },
+ {
+ "id": 41605,
+ "start": 18430.04,
+ "end": 18430.18,
+ "text": "to"
+ },
+ {
+ "id": 41606,
+ "start": 18430.18,
+ "end": 18430.46,
+ "text": "take"
+ },
+ {
+ "id": 41607,
+ "start": 18430.46,
+ "end": 18430.76,
+ "text": "a"
+ },
+ {
+ "id": 41608,
+ "start": 18430.76,
+ "end": 18431.44,
+ "text": "conservative"
+ },
+ {
+ "id": 41609,
+ "start": 18431.44,
+ "end": 18431.9,
+ "text": "position"
+ },
+ {
+ "id": 41610,
+ "start": 18431.9,
+ "end": 18432.04,
+ "text": "on"
+ },
+ {
+ "id": 41611,
+ "start": 18432.04,
+ "end": 18432.32,
+ "text": "that."
+ },
+ {
+ "id": 41612,
+ "start": 18432.32,
+ "end": 18432.7,
+ "text": "And"
+ },
+ {
+ "id": 41613,
+ "start": 18432.7,
+ "end": 18432.9,
+ "text": "make"
+ },
+ {
+ "id": 41614,
+ "start": 18432.9,
+ "end": 18433.12,
+ "text": "sure"
+ },
+ {
+ "id": 41615,
+ "start": 18433.12,
+ "end": 18433.26,
+ "text": "that"
+ },
+ {
+ "id": 41616,
+ "start": 18433.26,
+ "end": 18433.5,
+ "text": "we"
+ },
+ {
+ "id": 41617,
+ "start": 18433.5,
+ "end": 18434.06,
+ "text": "flag"
+ },
+ {
+ "id": 41618,
+ "start": 18434.06,
+ "end": 18434.2,
+ "text": "that"
+ },
+ {
+ "id": 41619,
+ "start": 18434.2,
+ "end": 18434.3,
+ "text": "and"
+ },
+ {
+ "id": 41620,
+ "start": 18434.3,
+ "end": 18434.7,
+ "text": "understand"
+ },
+ {
+ "id": 41621,
+ "start": 18434.7,
+ "end": 18434.86,
+ "text": "that"
+ },
+ {
+ "id": 41622,
+ "start": 18434.86,
+ "end": 18435.06,
+ "text": "more"
+ },
+ {
+ "id": 41623,
+ "start": 18435.06,
+ "end": 18435.52,
+ "text": "broadly."
+ },
+ {
+ "id": 41624,
+ "start": 18435.52,
+ "end": 18436.85,
+ "text": "But"
+ },
+ {
+ "id": 41625,
+ "start": 18436.85,
+ "end": 18437.49,
+ "text": "I"
+ },
+ {
+ "id": 41626,
+ "start": 18437.49,
+ "end": 18437.65,
+ "text": "want"
+ },
+ {
+ "id": 41627,
+ "start": 18437.65,
+ "end": 18437.73,
+ "text": "to"
+ },
+ {
+ "id": 41628,
+ "start": 18437.73,
+ "end": 18437.85,
+ "text": "make"
+ },
+ {
+ "id": 41629,
+ "start": 18437.85,
+ "end": 18438.01,
+ "text": "sure"
+ },
+ {
+ "id": 41630,
+ "start": 18438.01,
+ "end": 18438.19,
+ "text": "that"
+ },
+ {
+ "id": 41631,
+ "start": 18438.19,
+ "end": 18438.31,
+ "text": "we"
+ },
+ {
+ "id": 41632,
+ "start": 18438.31,
+ "end": 18438.73,
+ "text": "provide"
+ },
+ {
+ "id": 41633,
+ "start": 18438.73,
+ "end": 18439.01,
+ "text": "people"
+ },
+ {
+ "id": 41634,
+ "start": 18439.01,
+ "end": 18439.17,
+ "text": "with"
+ },
+ {
+ "id": 41635,
+ "start": 18439.17,
+ "end": 18439.27,
+ "text": "the"
+ },
+ {
+ "id": 41636,
+ "start": 18439.27,
+ "end": 18439.53,
+ "text": "most"
+ },
+ {
+ "id": 41637,
+ "start": 18439.53,
+ "end": 18439.87,
+ "text": "voice"
+ },
+ {
+ "id": 41638,
+ "start": 18439.87,
+ "end": 18440.35,
+ "text": "possible."
+ },
+ {
+ "id": 41639,
+ "start": 18440.35,
+ "end": 18440.71,
+ "text": "I"
+ },
+ {
+ "id": 41640,
+ "start": 18440.71,
+ "end": 18440.87,
+ "text": "want"
+ },
+ {
+ "id": 41641,
+ "start": 18440.87,
+ "end": 18441.01,
+ "text": "the"
+ },
+ {
+ "id": 41642,
+ "start": 18441.01,
+ "end": 18441.41,
+ "text": "widest"
+ },
+ {
+ "id": 41643,
+ "start": 18441.41,
+ "end": 18441.87,
+ "text": "possible"
+ },
+ {
+ "id": 41644,
+ "start": 18441.87,
+ "end": 18442.41,
+ "text": "expression"
+ },
+ {
+ "id": 41645,
+ "start": 18442.41,
+ "end": 18443.21,
+ "text": "and"
+ },
+ {
+ "id": 41646,
+ "start": 18443.21,
+ "end": 18443.71,
+ "text": "I"
+ },
+ {
+ "id": 41647,
+ "start": 18443.71,
+ "end": 18443.91,
+ "text": "don't"
+ },
+ {
+ "id": 41648,
+ "start": 18443.91,
+ "end": 18444.07,
+ "text": "want"
+ },
+ {
+ "id": 41649,
+ "start": 18444.07,
+ "end": 18444.51,
+ "text": "anyone"
+ },
+ {
+ "id": 41650,
+ "start": 18444.51,
+ "end": 18444.89,
+ "text": "at"
+ },
+ {
+ "id": 41651,
+ "start": 18444.89,
+ "end": 18445.05,
+ "text": "our"
+ },
+ {
+ "id": 41652,
+ "start": 18445.05,
+ "end": 18445.45,
+ "text": "company"
+ },
+ {
+ "id": 41653,
+ "start": 18445.45,
+ "end": 18445.97,
+ "text": "to"
+ },
+ {
+ "id": 41654,
+ "start": 18445.97,
+ "end": 18446.19,
+ "text": "make"
+ },
+ {
+ "id": 41655,
+ "start": 18446.19,
+ "end": 18446.43,
+ "text": "any"
+ },
+ {
+ "id": 41656,
+ "start": 18446.43,
+ "end": 18446.95,
+ "text": "decisions"
+ },
+ {
+ "id": 41657,
+ "start": 18446.95,
+ "end": 18447.29,
+ "text": "based"
+ },
+ {
+ "id": 41658,
+ "start": 18447.29,
+ "end": 18447.57,
+ "text": "on"
+ },
+ {
+ "id": 41659,
+ "start": 18447.57,
+ "end": 18448.31,
+ "text": "the"
+ },
+ {
+ "id": 41660,
+ "start": 18448.31,
+ "end": 18449.41,
+ "text": "political"
+ },
+ {
+ "id": 41661,
+ "start": 18449.41,
+ "end": 18449.89,
+ "text": "ideology"
+ },
+ {
+ "id": 41662,
+ "start": 18449.89,
+ "end": 18449.99,
+ "text": "of"
+ },
+ {
+ "id": 41663,
+ "start": 18449.99,
+ "end": 18450.11,
+ "text": "the"
+ },
+ {
+ "id": 41664,
+ "start": 18450.11,
+ "end": 18451.52,
+ "text": "content."
+ },
+ {
+ "id": 41665,
+ "start": 18451.52,
+ "end": 18452.18,
+ "text": "And"
+ },
+ {
+ "id": 41666,
+ "start": 18452.18,
+ "end": 18452.34,
+ "text": "just"
+ },
+ {
+ "id": 41667,
+ "start": 18452.34,
+ "end": 18452.52,
+ "text": "one"
+ },
+ {
+ "id": 41668,
+ "start": 18452.52,
+ "end": 18452.82,
+ "text": "final"
+ },
+ {
+ "id": 41669,
+ "start": 18452.82,
+ "end": 18453.42,
+ "text": "observation,"
+ },
+ {
+ "id": 41670,
+ "start": 18453.42,
+ "end": 18454.32,
+ "text": "chairman"
+ },
+ {
+ "id": 41671,
+ "start": 18454.32,
+ "end": 18455.22,
+ "text": "Grassley,"
+ },
+ {
+ "id": 41672,
+ "start": 18455.22,
+ "end": 18456.22,
+ "text": "Mr"
+ },
+ {
+ "id": 41673,
+ "start": 18456.22,
+ "end": 18456.62,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 41674,
+ "start": 18456.62,
+ "end": 18456.74,
+ "text": "has"
+ },
+ {
+ "id": 41675,
+ "start": 18456.74,
+ "end": 18457.06,
+ "text": "answered"
+ },
+ {
+ "id": 41676,
+ "start": 18457.06,
+ "end": 18457.14,
+ "text": "a"
+ },
+ {
+ "id": 41677,
+ "start": 18457.14,
+ "end": 18457.32,
+ "text": "lot"
+ },
+ {
+ "id": 41678,
+ "start": 18457.32,
+ "end": 18457.4,
+ "text": "of"
+ },
+ {
+ "id": 41679,
+ "start": 18457.4,
+ "end": 18457.74,
+ "text": "questions"
+ },
+ {
+ "id": 41680,
+ "start": 18457.74,
+ "end": 18458.16,
+ "text": "today."
+ },
+ {
+ "id": 41681,
+ "start": 18458.16,
+ "end": 18458.86,
+ "text": "But"
+ },
+ {
+ "id": 41682,
+ "start": 18458.86,
+ "end": 18459.08,
+ "text": "there"
+ },
+ {
+ "id": 41683,
+ "start": 18459.08,
+ "end": 18459.24,
+ "text": "are"
+ },
+ {
+ "id": 41684,
+ "start": 18459.24,
+ "end": 18459.58,
+ "text": "also"
+ },
+ {
+ "id": 41685,
+ "start": 18459.58,
+ "end": 18459.64,
+ "text": "a"
+ },
+ {
+ "id": 41686,
+ "start": 18459.64,
+ "end": 18459.86,
+ "text": "lot"
+ },
+ {
+ "id": 41687,
+ "start": 18459.86,
+ "end": 18460.46,
+ "text": "of"
+ },
+ {
+ "id": 41688,
+ "start": 18460.46,
+ "end": 18461.42,
+ "text": "promises"
+ },
+ {
+ "id": 41689,
+ "start": 18461.42,
+ "end": 18461.54,
+ "text": "to"
+ },
+ {
+ "id": 41690,
+ "start": 18461.54,
+ "end": 18461.84,
+ "text": "follow"
+ },
+ {
+ "id": 41691,
+ "start": 18461.84,
+ "end": 18462.02,
+ "text": "up"
+ },
+ {
+ "id": 41692,
+ "start": 18462.02,
+ "end": 18462.2,
+ "text": "with"
+ },
+ {
+ "id": 41693,
+ "start": 18462.2,
+ "end": 18462.32,
+ "text": "some"
+ },
+ {
+ "id": 41694,
+ "start": 18462.32,
+ "end": 18462.4,
+ "text": "of"
+ },
+ {
+ "id": 41695,
+ "start": 18462.4,
+ "end": 18462.54,
+ "text": "our"
+ },
+ {
+ "id": 41696,
+ "start": 18462.54,
+ "end": 18462.9,
+ "text": "members."
+ },
+ {
+ "id": 41697,
+ "start": 18462.9,
+ "end": 18464.02,
+ "text": "And"
+ },
+ {
+ "id": 41698,
+ "start": 18464.02,
+ "end": 18465.04,
+ "text": "sometimes"
+ },
+ {
+ "id": 41699,
+ "start": 18465.04,
+ "end": 18465.2,
+ "text": "on"
+ },
+ {
+ "id": 41700,
+ "start": 18465.2,
+ "end": 18465.54,
+ "text": "questions"
+ },
+ {
+ "id": 41701,
+ "start": 18465.54,
+ "end": 18465.82,
+ "text": "about"
+ },
+ {
+ "id": 41702,
+ "start": 18465.82,
+ "end": 18466.28,
+ "text": "Facebook"
+ },
+ {
+ "id": 41703,
+ "start": 18466.28,
+ "end": 18466.84,
+ "text": "practices"
+ },
+ {
+ "id": 41704,
+ "start": 18466.84,
+ "end": 18467,
+ "text": "that"
+ },
+ {
+ "id": 41705,
+ "start": 18467,
+ "end": 18467.26,
+ "text": "seem"
+ },
+ {
+ "id": 41706,
+ "start": 18467.26,
+ "end": 18467.54,
+ "text": "fairly"
+ },
+ {
+ "id": 41707,
+ "start": 18467.54,
+ "end": 18468.18,
+ "text": "straightforward,"
+ },
+ {
+ "id": 41708,
+ "start": 18468.18,
+ "end": 18469.06,
+ "text": "but"
+ },
+ {
+ "id": 41709,
+ "start": 18469.06,
+ "end": 18469.2,
+ "text": "I"
+ },
+ {
+ "id": 41710,
+ "start": 18469.2,
+ "end": 18469.38,
+ "text": "don't"
+ },
+ {
+ "id": 41711,
+ "start": 18469.38,
+ "end": 18469.56,
+ "text": "think"
+ },
+ {
+ "id": 41712,
+ "start": 18469.56,
+ "end": 18469.68,
+ "text": "we"
+ },
+ {
+ "id": 41713,
+ "start": 18469.68,
+ "end": 18469.82,
+ "text": "have."
+ },
+ {
+ "id": 41714,
+ "start": 18469.82,
+ "end": 18469.88,
+ "text": "I"
+ },
+ {
+ "id": 41715,
+ "start": 18469.88,
+ "end": 18470.02,
+ "text": "think"
+ },
+ {
+ "id": 41716,
+ "start": 18470.02,
+ "end": 18470.14,
+ "text": "it's"
+ },
+ {
+ "id": 41717,
+ "start": 18470.14,
+ "end": 18470.26,
+ "text": "going"
+ },
+ {
+ "id": 41718,
+ "start": 18470.26,
+ "end": 18470.32,
+ "text": "to"
+ },
+ {
+ "id": 41719,
+ "start": 18470.32,
+ "end": 18470.4,
+ "text": "be"
+ },
+ {
+ "id": 41720,
+ "start": 18470.4,
+ "end": 18470.58,
+ "text": "hard"
+ },
+ {
+ "id": 41721,
+ "start": 18470.58,
+ "end": 18470.7,
+ "text": "for"
+ },
+ {
+ "id": 41722,
+ "start": 18470.7,
+ "end": 18470.86,
+ "text": "us"
+ },
+ {
+ "id": 41723,
+ "start": 18470.86,
+ "end": 18470.98,
+ "text": "to"
+ },
+ {
+ "id": 41724,
+ "start": 18470.98,
+ "end": 18471.38,
+ "text": "fashion"
+ },
+ {
+ "id": 41725,
+ "start": 18471.38,
+ "end": 18471.88,
+ "text": "solutions"
+ },
+ {
+ "id": 41726,
+ "start": 18471.88,
+ "end": 18472.38,
+ "text": "to"
+ },
+ {
+ "id": 41727,
+ "start": 18472.38,
+ "end": 18472.64,
+ "text": "solve"
+ },
+ {
+ "id": 41728,
+ "start": 18472.64,
+ "end": 18472.82,
+ "text": "some"
+ },
+ {
+ "id": 41729,
+ "start": 18472.82,
+ "end": 18472.92,
+ "text": "of"
+ },
+ {
+ "id": 41730,
+ "start": 18472.92,
+ "end": 18473.06,
+ "text": "this"
+ },
+ {
+ "id": 41731,
+ "start": 18473.06,
+ "end": 18473.94,
+ "text": "stuff"
+ },
+ {
+ "id": 41732,
+ "start": 18473.94,
+ "end": 18474.96,
+ "text": "until"
+ },
+ {
+ "id": 41733,
+ "start": 18474.96,
+ "end": 18475.06,
+ "text": "we"
+ },
+ {
+ "id": 41734,
+ "start": 18475.06,
+ "end": 18475.28,
+ "text": "have"
+ },
+ {
+ "id": 41735,
+ "start": 18475.28,
+ "end": 18475.46,
+ "text": "some"
+ },
+ {
+ "id": 41736,
+ "start": 18475.46,
+ "end": 18475.54,
+ "text": "of"
+ },
+ {
+ "id": 41737,
+ "start": 18475.54,
+ "end": 18475.74,
+ "text": "those"
+ },
+ {
+ "id": 41738,
+ "start": 18475.74,
+ "end": 18476.36,
+ "text": "answers."
+ },
+ {
+ "id": 41739,
+ "start": 18476.36,
+ "end": 18476.54,
+ "text": "And"
+ },
+ {
+ "id": 41740,
+ "start": 18476.54,
+ "end": 18476.8,
+ "text": "you"
+ },
+ {
+ "id": 41741,
+ "start": 18476.8,
+ "end": 18476.98,
+ "text": "had"
+ },
+ {
+ "id": 41742,
+ "start": 18476.98,
+ "end": 18477.46,
+ "text": "indicated"
+ },
+ {
+ "id": 41743,
+ "start": 18477.46,
+ "end": 18477.86,
+ "text": "earlier"
+ },
+ {
+ "id": 41744,
+ "start": 18477.86,
+ "end": 18478,
+ "text": "that"
+ },
+ {
+ "id": 41745,
+ "start": 18478,
+ "end": 18478.22,
+ "text": "you're"
+ },
+ {
+ "id": 41746,
+ "start": 18478.22,
+ "end": 18478.6,
+ "text": "continuing"
+ },
+ {
+ "id": 41747,
+ "start": 18478.6,
+ "end": 18478.7,
+ "text": "to"
+ },
+ {
+ "id": 41748,
+ "start": 18478.7,
+ "end": 18478.88,
+ "text": "try"
+ },
+ {
+ "id": 41749,
+ "start": 18478.88,
+ "end": 18479,
+ "text": "and"
+ },
+ {
+ "id": 41750,
+ "start": 18479,
+ "end": 18479.3,
+ "text": "find"
+ },
+ {
+ "id": 41751,
+ "start": 18479.3,
+ "end": 18479.58,
+ "text": "out"
+ },
+ {
+ "id": 41752,
+ "start": 18479.58,
+ "end": 18480.46,
+ "text": "who"
+ },
+ {
+ "id": 41753,
+ "start": 18480.46,
+ "end": 18480.86,
+ "text": "among"
+ },
+ {
+ "id": 41754,
+ "start": 18480.86,
+ "end": 18481.06,
+ "text": "these"
+ },
+ {
+ "id": 41755,
+ "start": 18481.06,
+ "end": 18481.8,
+ "text": "other"
+ },
+ {
+ "id": 41756,
+ "start": 18481.8,
+ "end": 18482.78,
+ "text": "analytics"
+ },
+ {
+ "id": 41757,
+ "start": 18482.78,
+ "end": 18484.1,
+ "text": "companies"
+ },
+ {
+ "id": 41758,
+ "start": 18484.1,
+ "end": 18485.04,
+ "text": "may"
+ },
+ {
+ "id": 41759,
+ "start": 18485.04,
+ "end": 18485.2,
+ "text": "have"
+ },
+ {
+ "id": 41760,
+ "start": 18485.2,
+ "end": 18485.36,
+ "text": "had"
+ },
+ {
+ "id": 41761,
+ "start": 18485.36,
+ "end": 18485.8,
+ "text": "access"
+ },
+ {
+ "id": 41762,
+ "start": 18485.8,
+ "end": 18485.96,
+ "text": "to"
+ },
+ {
+ "id": 41763,
+ "start": 18485.96,
+ "end": 18486.6,
+ "text": "user"
+ },
+ {
+ "id": 41764,
+ "start": 18486.6,
+ "end": 18486.92,
+ "text": "data"
+ },
+ {
+ "id": 41765,
+ "start": 18486.92,
+ "end": 18487.16,
+ "text": "that"
+ },
+ {
+ "id": 41766,
+ "start": 18487.16,
+ "end": 18487.84,
+ "text": "they"
+ },
+ {
+ "id": 41767,
+ "start": 18487.84,
+ "end": 18488.04,
+ "text": "were"
+ },
+ {
+ "id": 41768,
+ "start": 18488.04,
+ "end": 18488.24,
+ "text": "able"
+ },
+ {
+ "id": 41769,
+ "start": 18488.24,
+ "end": 18488.4,
+ "text": "to"
+ },
+ {
+ "id": 41770,
+ "start": 18488.4,
+ "end": 18488.7,
+ "text": "use."
+ },
+ {
+ "id": 41771,
+ "start": 18488.7,
+ "end": 18488.86,
+ "text": "And"
+ },
+ {
+ "id": 41772,
+ "start": 18488.86,
+ "end": 18489.28,
+ "text": "hopefully"
+ },
+ {
+ "id": 41773,
+ "start": 18489.28,
+ "end": 18489.42,
+ "text": "as"
+ },
+ {
+ "id": 41774,
+ "start": 18489.42,
+ "end": 18489.54,
+ "text": "you"
+ },
+ {
+ "id": 41775,
+ "start": 18489.54,
+ "end": 18489.72,
+ "text": "get"
+ },
+ {
+ "id": 41776,
+ "start": 18489.72,
+ "end": 18489.96,
+ "text": "those"
+ },
+ {
+ "id": 41777,
+ "start": 18489.96,
+ "end": 18490.36,
+ "text": "answers,"
+ },
+ {
+ "id": 41778,
+ "start": 18490.36,
+ "end": 18490.5,
+ "text": "you"
+ },
+ {
+ "id": 41779,
+ "start": 18490.5,
+ "end": 18490.72,
+ "text": "will"
+ },
+ {
+ "id": 41780,
+ "start": 18490.72,
+ "end": 18490.8,
+ "text": "be"
+ },
+ {
+ "id": 41781,
+ "start": 18490.8,
+ "end": 18490.98,
+ "text": "able"
+ },
+ {
+ "id": 41782,
+ "start": 18490.98,
+ "end": 18491.1,
+ "text": "to"
+ },
+ {
+ "id": 41783,
+ "start": 18491.1,
+ "end": 18491.58,
+ "text": "forward"
+ },
+ {
+ "id": 41784,
+ "start": 18491.58,
+ "end": 18491.86,
+ "text": "those"
+ },
+ {
+ "id": 41785,
+ "start": 18491.86,
+ "end": 18492.14,
+ "text": "to"
+ },
+ {
+ "id": 41786,
+ "start": 18492.14,
+ "end": 18492.74,
+ "text": "us"
+ },
+ {
+ "id": 41787,
+ "start": 18492.74,
+ "end": 18493.64,
+ "text": "and"
+ },
+ {
+ "id": 41788,
+ "start": 18493.64,
+ "end": 18493.92,
+ "text": "it"
+ },
+ {
+ "id": 41789,
+ "start": 18493.92,
+ "end": 18494.08,
+ "text": "will"
+ },
+ {
+ "id": 41790,
+ "start": 18494.08,
+ "end": 18494.24,
+ "text": "help"
+ },
+ {
+ "id": 41791,
+ "start": 18494.24,
+ "end": 18494.52,
+ "text": "shape"
+ },
+ {
+ "id": 41792,
+ "start": 18494.52,
+ "end": 18494.76,
+ "text": "our"
+ },
+ {
+ "id": 41793,
+ "start": 18494.76,
+ "end": 18495.34,
+ "text": "thinking"
+ },
+ {
+ "id": 41794,
+ "start": 18495.34,
+ "end": 18495.44,
+ "text": "in"
+ },
+ {
+ "id": 41795,
+ "start": 18495.44,
+ "end": 18495.68,
+ "text": "terms"
+ },
+ {
+ "id": 41796,
+ "start": 18495.68,
+ "end": 18495.8,
+ "text": "of"
+ },
+ {
+ "id": 41797,
+ "start": 18495.8,
+ "end": 18496.16,
+ "text": "where"
+ },
+ {
+ "id": 41798,
+ "start": 18496.16,
+ "end": 18496.3,
+ "text": "we"
+ },
+ {
+ "id": 41799,
+ "start": 18496.3,
+ "end": 18496.44,
+ "text": "go"
+ },
+ {
+ "id": 41800,
+ "start": 18496.44,
+ "end": 18496.62,
+ "text": "from"
+ },
+ {
+ "id": 41801,
+ "start": 18496.62,
+ "end": 18496.86,
+ "text": "here."
+ },
+ {
+ "id": 41802,
+ "start": 18496.86,
+ "end": 18498,
+ "text": "But"
+ },
+ {
+ "id": 41803,
+ "start": 18498,
+ "end": 18498.6,
+ "text": "overall,"
+ },
+ {
+ "id": 41804,
+ "start": 18498.6,
+ "end": 18498.64,
+ "text": "I"
+ },
+ {
+ "id": 41805,
+ "start": 18498.64,
+ "end": 18498.82,
+ "text": "think"
+ },
+ {
+ "id": 41806,
+ "start": 18498.82,
+ "end": 18498.98,
+ "text": "the"
+ },
+ {
+ "id": 41807,
+ "start": 18498.98,
+ "end": 18499.22,
+ "text": "very"
+ },
+ {
+ "id": 41808,
+ "start": 18499.22,
+ "end": 18500.3,
+ "text": "informative"
+ },
+ {
+ "id": 41809,
+ "start": 18500.3,
+ "end": 18500.7,
+ "text": "hearing"
+ },
+ {
+ "id": 41810,
+ "start": 18500.7,
+ "end": 18501.02,
+ "text": "and"
+ },
+ {
+ "id": 41811,
+ "start": 18501.02,
+ "end": 18501.18,
+ "text": "is"
+ },
+ {
+ "id": 41812,
+ "start": 18501.18,
+ "end": 18501.52,
+ "text": "chairman"
+ },
+ {
+ "id": 41813,
+ "start": 18501.52,
+ "end": 18503.18,
+ "text": "and"
+ },
+ {
+ "id": 41814,
+ "start": 18503.18,
+ "end": 18504.18,
+ "text": "I'm"
+ },
+ {
+ "id": 41815,
+ "start": 18504.18,
+ "end": 18504.36,
+ "text": "ready"
+ },
+ {
+ "id": 41816,
+ "start": 18504.36,
+ "end": 18504.42,
+ "text": "to"
+ },
+ {
+ "id": 41817,
+ "start": 18504.42,
+ "end": 18504.62,
+ "text": "wrap"
+ },
+ {
+ "id": 41818,
+ "start": 18504.62,
+ "end": 18504.72,
+ "text": "it"
+ },
+ {
+ "id": 41819,
+ "start": 18504.72,
+ "end": 18504.88,
+ "text": "up,"
+ },
+ {
+ "id": 41820,
+ "start": 18504.88,
+ "end": 18505.46,
+ "text": "I"
+ },
+ {
+ "id": 41821,
+ "start": 18505.46,
+ "end": 18505.72,
+ "text": "probably"
+ },
+ {
+ "id": 41822,
+ "start": 18505.72,
+ "end": 18505.98,
+ "text": "wouldn't"
+ },
+ {
+ "id": 41823,
+ "start": 18505.98,
+ "end": 18506.14,
+ "text": "make"
+ },
+ {
+ "id": 41824,
+ "start": 18506.14,
+ "end": 18506.36,
+ "text": "this"
+ },
+ {
+ "id": 41825,
+ "start": 18506.36,
+ "end": 18506.86,
+ "text": "comment."
+ },
+ {
+ "id": 41826,
+ "start": 18506.86,
+ "end": 18507.08,
+ "text": "But"
+ },
+ {
+ "id": 41827,
+ "start": 18507.08,
+ "end": 18507.4,
+ "text": "your"
+ },
+ {
+ "id": 41828,
+ "start": 18507.4,
+ "end": 18507.88,
+ "text": "response"
+ },
+ {
+ "id": 41829,
+ "start": 18507.88,
+ "end": 18508.04,
+ "text": "to"
+ },
+ {
+ "id": 41830,
+ "start": 18508.04,
+ "end": 18508.32,
+ "text": "him"
+ },
+ {
+ "id": 41831,
+ "start": 18508.32,
+ "end": 18508.76,
+ "text": "in"
+ },
+ {
+ "id": 41832,
+ "start": 18508.76,
+ "end": 18509.16,
+ "text": "regard"
+ },
+ {
+ "id": 41833,
+ "start": 18509.16,
+ "end": 18509.26,
+ "text": "to"
+ },
+ {
+ "id": 41834,
+ "start": 18509.26,
+ "end": 18509.72,
+ "text": "political"
+ },
+ {
+ "id": 41835,
+ "start": 18509.72,
+ "end": 18510.14,
+ "text": "speech."
+ },
+ {
+ "id": 41836,
+ "start": 18510.14,
+ "end": 18511,
+ "text": "I"
+ },
+ {
+ "id": 41837,
+ "start": 18511,
+ "end": 18511.3,
+ "text": "won't"
+ },
+ {
+ "id": 41838,
+ "start": 18511.3,
+ "end": 18512.14,
+ "text": "identify"
+ },
+ {
+ "id": 41839,
+ "start": 18512.14,
+ "end": 18512.42,
+ "text": "the"
+ },
+ {
+ "id": 41840,
+ "start": 18512.42,
+ "end": 18513.38,
+ "text": "CEO."
+ },
+ {
+ "id": 41841,
+ "start": 18513.38,
+ "end": 18513.62,
+ "text": "I"
+ },
+ {
+ "id": 41842,
+ "start": 18513.62,
+ "end": 18513.8,
+ "text": "had"
+ },
+ {
+ "id": 41843,
+ "start": 18513.8,
+ "end": 18513.9,
+ "text": "a"
+ },
+ {
+ "id": 41844,
+ "start": 18513.9,
+ "end": 18514.64,
+ "text": "conversation"
+ },
+ {
+ "id": 41845,
+ "start": 18514.64,
+ "end": 18514.86,
+ "text": "with"
+ },
+ {
+ "id": 41846,
+ "start": 18514.86,
+ "end": 18515.5,
+ "text": "yesterday."
+ },
+ {
+ "id": 41847,
+ "start": 18515.5,
+ "end": 18516.5,
+ "text": "But"
+ },
+ {
+ "id": 41848,
+ "start": 18516.5,
+ "end": 18517.28,
+ "text": "one"
+ },
+ {
+ "id": 41849,
+ "start": 18517.28,
+ "end": 18517.52,
+ "text": "of"
+ },
+ {
+ "id": 41850,
+ "start": 18517.52,
+ "end": 18517.74,
+ "text": "our"
+ },
+ {
+ "id": 41851,
+ "start": 18517.74,
+ "end": 18518.44,
+ "text": "platforms"
+ },
+ {
+ "id": 41852,
+ "start": 18518.44,
+ "end": 18518.76,
+ "text": "and"
+ },
+ {
+ "id": 41853,
+ "start": 18518.76,
+ "end": 18519.54,
+ "text": "he"
+ },
+ {
+ "id": 41854,
+ "start": 18519.54,
+ "end": 18520.52,
+ "text": "admitted"
+ },
+ {
+ "id": 41855,
+ "start": 18520.52,
+ "end": 18520.72,
+ "text": "to"
+ },
+ {
+ "id": 41856,
+ "start": 18520.72,
+ "end": 18521.46,
+ "text": "being"
+ },
+ {
+ "id": 41857,
+ "start": 18521.46,
+ "end": 18522.46,
+ "text": "more"
+ },
+ {
+ "id": 41858,
+ "start": 18522.46,
+ "end": 18522.78,
+ "text": "left"
+ },
+ {
+ "id": 41859,
+ "start": 18522.78,
+ "end": 18523.02,
+ "text": "than"
+ },
+ {
+ "id": 41860,
+ "start": 18523.02,
+ "end": 18523.36,
+ "text": "right"
+ },
+ {
+ "id": 41861,
+ "start": 18523.36,
+ "end": 18523.82,
+ "text": "or"
+ },
+ {
+ "id": 41862,
+ "start": 18523.82,
+ "end": 18523.94,
+ "text": "I"
+ },
+ {
+ "id": 41863,
+ "start": 18523.94,
+ "end": 18524.16,
+ "text": "mean,"
+ },
+ {
+ "id": 41864,
+ "start": 18524.16,
+ "end": 18524.42,
+ "text": "being"
+ },
+ {
+ "id": 41865,
+ "start": 18524.42,
+ "end": 18524.7,
+ "text": "left,"
+ },
+ {
+ "id": 41866,
+ "start": 18524.7,
+ "end": 18524.84,
+ "text": "I"
+ },
+ {
+ "id": 41867,
+ "start": 18524.84,
+ "end": 18525.06,
+ "text": "guess,"
+ },
+ {
+ "id": 41868,
+ "start": 18525.06,
+ "end": 18525.24,
+ "text": "is"
+ },
+ {
+ "id": 41869,
+ "start": 18525.24,
+ "end": 18525.38,
+ "text": "what"
+ },
+ {
+ "id": 41870,
+ "start": 18525.38,
+ "end": 18525.52,
+ "text": "he"
+ },
+ {
+ "id": 41871,
+ "start": 18525.52,
+ "end": 18525.9,
+ "text": "admitted."
+ },
+ {
+ "id": 41872,
+ "start": 18525.9,
+ "end": 18526.02,
+ "text": "And"
+ },
+ {
+ "id": 41873,
+ "start": 18526.02,
+ "end": 18526.14,
+ "text": "I"
+ },
+ {
+ "id": 41874,
+ "start": 18526.14,
+ "end": 18526.34,
+ "text": "don't"
+ },
+ {
+ "id": 41875,
+ "start": 18526.34,
+ "end": 18526.88,
+ "text": "know"
+ },
+ {
+ "id": 41876,
+ "start": 18526.88,
+ "end": 18527.86,
+ "text": "I'm"
+ },
+ {
+ "id": 41877,
+ "start": 18527.86,
+ "end": 18528.04,
+ "text": "not"
+ },
+ {
+ "id": 41878,
+ "start": 18528.04,
+ "end": 18528.38,
+ "text": "asking"
+ },
+ {
+ "id": 41879,
+ "start": 18528.38,
+ "end": 18528.52,
+ "text": "you"
+ },
+ {
+ "id": 41880,
+ "start": 18528.52,
+ "end": 18528.74,
+ "text": "what"
+ },
+ {
+ "id": 41881,
+ "start": 18528.74,
+ "end": 18528.96,
+ "text": "you"
+ },
+ {
+ "id": 41882,
+ "start": 18528.96,
+ "end": 18529.88,
+ "text": "are."
+ },
+ {
+ "id": 41883,
+ "start": 18529.88,
+ "end": 18530.8,
+ "text": "But"
+ },
+ {
+ "id": 41884,
+ "start": 18530.8,
+ "end": 18531.22,
+ "text": "just"
+ },
+ {
+ "id": 41885,
+ "start": 18531.22,
+ "end": 18531.36,
+ "text": "so"
+ },
+ {
+ "id": 41886,
+ "start": 18531.36,
+ "end": 18531.52,
+ "text": "you"
+ },
+ {
+ "id": 41887,
+ "start": 18531.52,
+ "end": 18532.34,
+ "text": "understand"
+ },
+ {
+ "id": 41888,
+ "start": 18532.34,
+ "end": 18534.58,
+ "text": "that"
+ },
+ {
+ "id": 41889,
+ "start": 18534.58,
+ "end": 18535.32,
+ "text": "probably"
+ },
+ {
+ "id": 41890,
+ "start": 18535.32,
+ "end": 18535.58,
+ "text": "as"
+ },
+ {
+ "id": 41891,
+ "start": 18535.58,
+ "end": 18536.1,
+ "text": "liberals"
+ },
+ {
+ "id": 41892,
+ "start": 18536.1,
+ "end": 18536.38,
+ "text": "have"
+ },
+ {
+ "id": 41893,
+ "start": 18536.38,
+ "end": 18536.46,
+ "text": "a"
+ },
+ {
+ "id": 41894,
+ "start": 18536.46,
+ "end": 18536.72,
+ "text": "lot"
+ },
+ {
+ "id": 41895,
+ "start": 18536.72,
+ "end": 18536.88,
+ "text": "of"
+ },
+ {
+ "id": 41896,
+ "start": 18536.88,
+ "end": 18537.66,
+ "text": "concerns"
+ },
+ {
+ "id": 41897,
+ "start": 18537.66,
+ "end": 18539.14,
+ "text": "about"
+ },
+ {
+ "id": 41898,
+ "start": 18539.14,
+ "end": 18540.24,
+ "text": "the"
+ },
+ {
+ "id": 41899,
+ "start": 18540.24,
+ "end": 18540.78,
+ "text": "leaning"
+ },
+ {
+ "id": 41900,
+ "start": 18540.78,
+ "end": 18542.16,
+ "text": "of"
+ },
+ {
+ "id": 41901,
+ "start": 18542.16,
+ "end": 18543.28,
+ "text": "Fox"
+ },
+ {
+ "id": 41902,
+ "start": 18543.28,
+ "end": 18543.72,
+ "text": "News"
+ },
+ {
+ "id": 41903,
+ "start": 18543.72,
+ "end": 18545.24,
+ "text": "or"
+ },
+ {
+ "id": 41904,
+ "start": 18545.24,
+ "end": 18546.22,
+ "text": "conservatives"
+ },
+ {
+ "id": 41905,
+ "start": 18546.22,
+ "end": 18546.62,
+ "text": "have"
+ },
+ {
+ "id": 41906,
+ "start": 18546.62,
+ "end": 18547.48,
+ "text": "questions"
+ },
+ {
+ "id": 41907,
+ "start": 18547.48,
+ "end": 18547.76,
+ "text": "about"
+ },
+ {
+ "id": 41908,
+ "start": 18547.76,
+ "end": 18547.94,
+ "text": "the"
+ },
+ {
+ "id": 41909,
+ "start": 18547.94,
+ "end": 18548.46,
+ "text": "leaning"
+ },
+ {
+ "id": 41910,
+ "start": 18548.46,
+ "end": 18550.06,
+ "text": "of"
+ },
+ {
+ "id": 41911,
+ "start": 18550.06,
+ "end": 18550.98,
+ "text": "of"
+ },
+ {
+ "id": 41912,
+ "start": 18550.98,
+ "end": 18552,
+ "text": "MSNBC"
+ },
+ {
+ "id": 41913,
+ "start": 18552,
+ "end": 18552.26,
+ "text": "let's"
+ },
+ {
+ "id": 41914,
+ "start": 18552.26,
+ "end": 18552.8,
+ "text": "say"
+ },
+ {
+ "id": 41915,
+ "start": 18552.8,
+ "end": 18553.8,
+ "text": "it"
+ },
+ {
+ "id": 41916,
+ "start": 18553.8,
+ "end": 18554.1,
+ "text": "seems"
+ },
+ {
+ "id": 41917,
+ "start": 18554.1,
+ "end": 18554.2,
+ "text": "to"
+ },
+ {
+ "id": 41918,
+ "start": 18554.2,
+ "end": 18554.44,
+ "text": "me"
+ },
+ {
+ "id": 41919,
+ "start": 18554.44,
+ "end": 18554.72,
+ "text": "that"
+ },
+ {
+ "id": 41920,
+ "start": 18554.72,
+ "end": 18555.54,
+ "text": "when"
+ },
+ {
+ "id": 41921,
+ "start": 18555.54,
+ "end": 18556.48,
+ "text": "we"
+ },
+ {
+ "id": 41922,
+ "start": 18556.48,
+ "end": 18556.7,
+ "text": "get"
+ },
+ {
+ "id": 41923,
+ "start": 18556.7,
+ "end": 18557.1,
+ "text": "whether"
+ },
+ {
+ "id": 41924,
+ "start": 18557.1,
+ "end": 18557.26,
+ "text": "it's"
+ },
+ {
+ "id": 41925,
+ "start": 18557.26,
+ "end": 18557.48,
+ "text": "from"
+ },
+ {
+ "id": 41926,
+ "start": 18557.48,
+ "end": 18557.6,
+ "text": "the"
+ },
+ {
+ "id": 41927,
+ "start": 18557.6,
+ "end": 18557.84,
+ "text": "right"
+ },
+ {
+ "id": 41928,
+ "start": 18557.84,
+ "end": 18557.92,
+ "text": "or"
+ },
+ {
+ "id": 41929,
+ "start": 18557.92,
+ "end": 18558.1,
+ "text": "the"
+ },
+ {
+ "id": 41930,
+ "start": 18558.1,
+ "end": 18558.36,
+ "text": "left."
+ },
+ {
+ "id": 41931,
+ "start": 18558.36,
+ "end": 18558.58,
+ "text": "So"
+ },
+ {
+ "id": 41932,
+ "start": 18558.58,
+ "end": 18558.76,
+ "text": "I'm"
+ },
+ {
+ "id": 41933,
+ "start": 18558.76,
+ "end": 18559.1,
+ "text": "speaking"
+ },
+ {
+ "id": 41934,
+ "start": 18559.1,
+ "end": 18559.18,
+ "text": "to"
+ },
+ {
+ "id": 41935,
+ "start": 18559.18,
+ "end": 18559.4,
+ "text": "you"
+ },
+ {
+ "id": 41936,
+ "start": 18559.4,
+ "end": 18559.62,
+ "text": "for"
+ },
+ {
+ "id": 41937,
+ "start": 18559.62,
+ "end": 18559.86,
+ "text": "your"
+ },
+ {
+ "id": 41938,
+ "start": 18559.86,
+ "end": 18560.98,
+ "text": "platform"
+ },
+ {
+ "id": 41939,
+ "start": 18560.98,
+ "end": 18561.72,
+ "text": "there's"
+ },
+ {
+ "id": 41940,
+ "start": 18561.72,
+ "end": 18561.76,
+ "text": "a"
+ },
+ {
+ "id": 41941,
+ "start": 18561.76,
+ "end": 18562.24,
+ "text": "great"
+ },
+ {
+ "id": 41942,
+ "start": 18562.24,
+ "end": 18562.46,
+ "text": "deal"
+ },
+ {
+ "id": 41943,
+ "start": 18562.46,
+ "end": 18562.6,
+ "text": "of"
+ },
+ {
+ "id": 41944,
+ "start": 18562.6,
+ "end": 18563.36,
+ "text": "cynicism"
+ },
+ {
+ "id": 41945,
+ "start": 18563.36,
+ "end": 18564.54,
+ "text": "in"
+ },
+ {
+ "id": 41946,
+ "start": 18564.54,
+ "end": 18565.1,
+ "text": "American"
+ },
+ {
+ "id": 41947,
+ "start": 18565.1,
+ "end": 18565.72,
+ "text": "society"
+ },
+ {
+ "id": 41948,
+ "start": 18565.72,
+ "end": 18566.02,
+ "text": "about"
+ },
+ {
+ "id": 41949,
+ "start": 18566.02,
+ "end": 18566.54,
+ "text": "government"
+ },
+ {
+ "id": 41950,
+ "start": 18566.54,
+ "end": 18567.02,
+ "text": "generally."
+ },
+ {
+ "id": 41951,
+ "start": 18567.02,
+ "end": 18568.02,
+ "text": "And"
+ },
+ {
+ "id": 41952,
+ "start": 18568.02,
+ "end": 18568.24,
+ "text": "then"
+ },
+ {
+ "id": 41953,
+ "start": 18568.24,
+ "end": 18568.5,
+ "text": "when"
+ },
+ {
+ "id": 41954,
+ "start": 18568.5,
+ "end": 18568.84,
+ "text": "there"
+ },
+ {
+ "id": 41955,
+ "start": 18568.84,
+ "end": 18569.14,
+ "text": "is"
+ },
+ {
+ "id": 41956,
+ "start": 18569.14,
+ "end": 18569.98,
+ "text": "suspicions"
+ },
+ {
+ "id": 41957,
+ "start": 18569.98,
+ "end": 18570.7,
+ "text": "legitimate"
+ },
+ {
+ "id": 41958,
+ "start": 18570.7,
+ "end": 18570.82,
+ "text": "or"
+ },
+ {
+ "id": 41959,
+ "start": 18570.82,
+ "end": 18571.18,
+ "text": "not"
+ },
+ {
+ "id": 41960,
+ "start": 18571.18,
+ "end": 18572,
+ "text": "that"
+ },
+ {
+ "id": 41961,
+ "start": 18572,
+ "end": 18572.46,
+ "text": "maybe"
+ },
+ {
+ "id": 41962,
+ "start": 18572.46,
+ "end": 18573.36,
+ "text": "you're"
+ },
+ {
+ "id": 41963,
+ "start": 18573.36,
+ "end": 18573.64,
+ "text": "playing"
+ },
+ {
+ "id": 41964,
+ "start": 18573.64,
+ "end": 18573.78,
+ "text": "it"
+ },
+ {
+ "id": 41965,
+ "start": 18573.78,
+ "end": 18574.04,
+ "text": "one"
+ },
+ {
+ "id": 41966,
+ "start": 18574.04,
+ "end": 18574.38,
+ "text": "way"
+ },
+ {
+ "id": 41967,
+ "start": 18574.38,
+ "end": 18575.26,
+ "text": "unfairly"
+ },
+ {
+ "id": 41968,
+ "start": 18575.26,
+ "end": 18575.58,
+ "text": "towards"
+ },
+ {
+ "id": 41969,
+ "start": 18575.58,
+ "end": 18575.72,
+ "text": "the"
+ },
+ {
+ "id": 41970,
+ "start": 18575.72,
+ "end": 18576.08,
+ "text": "other."
+ },
+ {
+ "id": 41971,
+ "start": 18576.08,
+ "end": 18577,
+ "text": "It"
+ },
+ {
+ "id": 41972,
+ "start": 18577,
+ "end": 18577.26,
+ "text": "seemed"
+ },
+ {
+ "id": 41973,
+ "start": 18577.26,
+ "end": 18577.36,
+ "text": "to"
+ },
+ {
+ "id": 41974,
+ "start": 18577.36,
+ "end": 18577.58,
+ "text": "me"
+ },
+ {
+ "id": 41975,
+ "start": 18577.58,
+ "end": 18577.82,
+ "text": "that"
+ },
+ {
+ "id": 41976,
+ "start": 18577.82,
+ "end": 18578.38,
+ "text": "everything"
+ },
+ {
+ "id": 41977,
+ "start": 18578.38,
+ "end": 18578.52,
+ "text": "you"
+ },
+ {
+ "id": 41978,
+ "start": 18578.52,
+ "end": 18578.66,
+ "text": "can"
+ },
+ {
+ "id": 41979,
+ "start": 18578.66,
+ "end": 18578.8,
+ "text": "do"
+ },
+ {
+ "id": 41980,
+ "start": 18578.8,
+ "end": 18579.02,
+ "text": "to"
+ },
+ {
+ "id": 41981,
+ "start": 18579.02,
+ "end": 18579.42,
+ "text": "lean"
+ },
+ {
+ "id": 41982,
+ "start": 18579.42,
+ "end": 18579.72,
+ "text": "over"
+ },
+ {
+ "id": 41983,
+ "start": 18579.72,
+ "end": 18580.36,
+ "text": "backwards"
+ },
+ {
+ "id": 41984,
+ "start": 18580.36,
+ "end": 18581.54,
+ "text": "to"
+ },
+ {
+ "id": 41985,
+ "start": 18581.54,
+ "end": 18581.74,
+ "text": "make"
+ },
+ {
+ "id": 41986,
+ "start": 18581.74,
+ "end": 18581.96,
+ "text": "sure"
+ },
+ {
+ "id": 41987,
+ "start": 18581.96,
+ "end": 18582.24,
+ "text": "that"
+ },
+ {
+ "id": 41988,
+ "start": 18582.24,
+ "end": 18582.38,
+ "text": "you"
+ },
+ {
+ "id": 41989,
+ "start": 18582.38,
+ "end": 18583.46,
+ "text": "are"
+ },
+ {
+ "id": 41990,
+ "start": 18583.46,
+ "end": 18583.92,
+ "text": "fair"
+ },
+ {
+ "id": 41991,
+ "start": 18583.92,
+ "end": 18585.02,
+ "text": "in"
+ },
+ {
+ "id": 41992,
+ "start": 18585.02,
+ "end": 18585.56,
+ "text": "protecting"
+ },
+ {
+ "id": 41993,
+ "start": 18585.56,
+ "end": 18585.98,
+ "text": "political"
+ },
+ {
+ "id": 41994,
+ "start": 18585.98,
+ "end": 18586.36,
+ "text": "speech"
+ },
+ {
+ "id": 41995,
+ "start": 18586.36,
+ "end": 18586.76,
+ "text": "right"
+ },
+ {
+ "id": 41996,
+ "start": 18586.76,
+ "end": 18586.92,
+ "text": "or"
+ },
+ {
+ "id": 41997,
+ "start": 18586.92,
+ "end": 18587.24,
+ "text": "left"
+ },
+ {
+ "id": 41998,
+ "start": 18587.24,
+ "end": 18588.14,
+ "text": "that"
+ },
+ {
+ "id": 41999,
+ "start": 18588.14,
+ "end": 18588.28,
+ "text": "you"
+ },
+ {
+ "id": 42000,
+ "start": 18588.28,
+ "end": 18588.5,
+ "text": "ought"
+ },
+ {
+ "id": 42001,
+ "start": 18588.5,
+ "end": 18588.6,
+ "text": "to"
+ },
+ {
+ "id": 42002,
+ "start": 18588.6,
+ "end": 18588.8,
+ "text": "do"
+ },
+ {
+ "id": 42003,
+ "start": 18588.8,
+ "end": 18589.24,
+ "text": "it."
+ },
+ {
+ "id": 42004,
+ "start": 18589.24,
+ "end": 18590.24,
+ "text": "And"
+ },
+ {
+ "id": 42005,
+ "start": 18590.24,
+ "end": 18590.5,
+ "text": "I'm"
+ },
+ {
+ "id": 42006,
+ "start": 18590.5,
+ "end": 18590.68,
+ "text": "not"
+ },
+ {
+ "id": 42007,
+ "start": 18590.68,
+ "end": 18591.08,
+ "text": "telling"
+ },
+ {
+ "id": 42008,
+ "start": 18591.08,
+ "end": 18591.2,
+ "text": "you"
+ },
+ {
+ "id": 42009,
+ "start": 18591.2,
+ "end": 18591.36,
+ "text": "how"
+ },
+ {
+ "id": 42010,
+ "start": 18591.36,
+ "end": 18591.48,
+ "text": "to"
+ },
+ {
+ "id": 42011,
+ "start": 18591.48,
+ "end": 18591.64,
+ "text": "do"
+ },
+ {
+ "id": 42012,
+ "start": 18591.64,
+ "end": 18591.8,
+ "text": "it."
+ },
+ {
+ "id": 42013,
+ "start": 18591.8,
+ "end": 18592.84,
+ "text": "And"
+ },
+ {
+ "id": 42014,
+ "start": 18592.84,
+ "end": 18593.02,
+ "text": "I'm"
+ },
+ {
+ "id": 42015,
+ "start": 18593.02,
+ "end": 18593.2,
+ "text": "not"
+ },
+ {
+ "id": 42016,
+ "start": 18593.2,
+ "end": 18593.5,
+ "text": "saying"
+ },
+ {
+ "id": 42017,
+ "start": 18593.5,
+ "end": 18594.48,
+ "text": "you"
+ },
+ {
+ "id": 42018,
+ "start": 18594.48,
+ "end": 18594.78,
+ "text": "don't"
+ },
+ {
+ "id": 42019,
+ "start": 18594.78,
+ "end": 18594.96,
+ "text": "do"
+ },
+ {
+ "id": 42020,
+ "start": 18594.96,
+ "end": 18595.16,
+ "text": "it"
+ },
+ {
+ "id": 42021,
+ "start": 18595.16,
+ "end": 18597.06,
+ "text": "but"
+ },
+ {
+ "id": 42022,
+ "start": 18597.06,
+ "end": 18598.16,
+ "text": "we"
+ },
+ {
+ "id": 42023,
+ "start": 18598.16,
+ "end": 18598.36,
+ "text": "got"
+ },
+ {
+ "id": 42024,
+ "start": 18598.36,
+ "end": 18598.52,
+ "text": "to"
+ },
+ {
+ "id": 42025,
+ "start": 18598.52,
+ "end": 18598.64,
+ "text": "do"
+ },
+ {
+ "id": 42026,
+ "start": 18598.64,
+ "end": 18599.06,
+ "text": "something"
+ },
+ {
+ "id": 42027,
+ "start": 18599.06,
+ "end": 18599.78,
+ "text": "reduces"
+ },
+ {
+ "id": 42028,
+ "start": 18599.78,
+ "end": 18601.52,
+ "text": "cynicism"
+ },
+ {
+ "id": 42029,
+ "start": 18601.52,
+ "end": 18602.72,
+ "text": "at"
+ },
+ {
+ "id": 42030,
+ "start": 18602.72,
+ "end": 18602.9,
+ "text": "my"
+ },
+ {
+ "id": 42031,
+ "start": 18602.9,
+ "end": 18603.2,
+ "text": "town"
+ },
+ {
+ "id": 42032,
+ "start": 18603.2,
+ "end": 18603.54,
+ "text": "meetings"
+ },
+ {
+ "id": 42033,
+ "start": 18603.54,
+ "end": 18603.7,
+ "text": "in"
+ },
+ {
+ "id": 42034,
+ "start": 18603.7,
+ "end": 18604.16,
+ "text": "Iowa."
+ },
+ {
+ "id": 42035,
+ "start": 18604.16,
+ "end": 18604.24,
+ "text": "I"
+ },
+ {
+ "id": 42036,
+ "start": 18604.24,
+ "end": 18604.54,
+ "text": "always"
+ },
+ {
+ "id": 42037,
+ "start": 18604.54,
+ "end": 18604.68,
+ "text": "get"
+ },
+ {
+ "id": 42038,
+ "start": 18604.68,
+ "end": 18604.96,
+ "text": "this"
+ },
+ {
+ "id": 42039,
+ "start": 18604.96,
+ "end": 18605.42,
+ "text": "question."
+ },
+ {
+ "id": 42040,
+ "start": 18605.42,
+ "end": 18605.88,
+ "text": "How"
+ },
+ {
+ "id": 42041,
+ "start": 18605.88,
+ "end": 18606.04,
+ "text": "come"
+ },
+ {
+ "id": 42042,
+ "start": 18606.04,
+ "end": 18606.24,
+ "text": "you"
+ },
+ {
+ "id": 42043,
+ "start": 18606.24,
+ "end": 18606.5,
+ "text": "guys"
+ },
+ {
+ "id": 42044,
+ "start": 18606.5,
+ "end": 18606.64,
+ "text": "in"
+ },
+ {
+ "id": 42045,
+ "start": 18606.64,
+ "end": 18607.5,
+ "text": "DC"
+ },
+ {
+ "id": 42046,
+ "start": 18607.5,
+ "end": 18607.74,
+ "text": "can't"
+ },
+ {
+ "id": 42047,
+ "start": 18607.74,
+ "end": 18607.88,
+ "text": "get"
+ },
+ {
+ "id": 42048,
+ "start": 18607.88,
+ "end": 18608.28,
+ "text": "along,"
+ },
+ {
+ "id": 42049,
+ "start": 18608.28,
+ "end": 18608.46,
+ "text": "you"
+ },
+ {
+ "id": 42050,
+ "start": 18608.46,
+ "end": 18608.64,
+ "text": "know"
+ },
+ {
+ "id": 42051,
+ "start": 18608.64,
+ "end": 18608.98,
+ "text": "meaning"
+ },
+ {
+ "id": 42052,
+ "start": 18608.98,
+ "end": 18609.68,
+ "text": "Republicans"
+ },
+ {
+ "id": 42053,
+ "start": 18609.68,
+ "end": 18609.84,
+ "text": "and"
+ },
+ {
+ "id": 42054,
+ "start": 18609.84,
+ "end": 18610.36,
+ "text": "Democrats."
+ },
+ {
+ "id": 42055,
+ "start": 18610.36,
+ "end": 18611.18,
+ "text": "Well,"
+ },
+ {
+ "id": 42056,
+ "start": 18611.18,
+ "end": 18611.34,
+ "text": "I"
+ },
+ {
+ "id": 42057,
+ "start": 18611.34,
+ "end": 18611.6,
+ "text": "try"
+ },
+ {
+ "id": 42058,
+ "start": 18611.6,
+ "end": 18611.7,
+ "text": "to"
+ },
+ {
+ "id": 42059,
+ "start": 18611.7,
+ "end": 18612.1,
+ "text": "explain"
+ },
+ {
+ "id": 42060,
+ "start": 18612.1,
+ "end": 18612.3,
+ "text": "to"
+ },
+ {
+ "id": 42061,
+ "start": 18612.3,
+ "end": 18612.64,
+ "text": "them"
+ },
+ {
+ "id": 42062,
+ "start": 18612.64,
+ "end": 18613.18,
+ "text": "that"
+ },
+ {
+ "id": 42063,
+ "start": 18613.18,
+ "end": 18613.4,
+ "text": "they"
+ },
+ {
+ "id": 42064,
+ "start": 18613.4,
+ "end": 18613.64,
+ "text": "kind"
+ },
+ {
+ "id": 42065,
+ "start": 18613.64,
+ "end": 18613.74,
+ "text": "of"
+ },
+ {
+ "id": 42066,
+ "start": 18613.74,
+ "end": 18613.94,
+ "text": "get"
+ },
+ {
+ "id": 42067,
+ "start": 18613.94,
+ "end": 18614.42,
+ "text": "an"
+ },
+ {
+ "id": 42068,
+ "start": 18614.42,
+ "end": 18619.36,
+ "text": "obtuse."
+ },
+ {
+ "id": 42069,
+ "start": 18619.36,
+ "end": 18620.32,
+ "text": "What"
+ },
+ {
+ "id": 42070,
+ "start": 18620.32,
+ "end": 18620.5,
+ "text": "would"
+ },
+ {
+ "id": 42071,
+ "start": 18620.5,
+ "end": 18620.64,
+ "text": "you"
+ },
+ {
+ "id": 42072,
+ "start": 18620.64,
+ "end": 18620.84,
+ "text": "say?"
+ },
+ {
+ "id": 42073,
+ "start": 18620.84,
+ "end": 18621.24,
+ "text": "Review"
+ },
+ {
+ "id": 42074,
+ "start": 18621.24,
+ "end": 18621.54,
+ "text": "what"
+ },
+ {
+ "id": 42075,
+ "start": 18621.54,
+ "end": 18621.76,
+ "text": "goes"
+ },
+ {
+ "id": 42076,
+ "start": 18621.76,
+ "end": 18621.96,
+ "text": "on"
+ },
+ {
+ "id": 42077,
+ "start": 18621.96,
+ "end": 18622.24,
+ "text": "here?"
+ },
+ {
+ "id": 42078,
+ "start": 18622.24,
+ "end": 18622.6,
+ "text": "Because"
+ },
+ {
+ "id": 42079,
+ "start": 18622.6,
+ "end": 18623.32,
+ "text": "controversy"
+ },
+ {
+ "id": 42080,
+ "start": 18623.32,
+ "end": 18623.54,
+ "text": "makes"
+ },
+ {
+ "id": 42081,
+ "start": 18623.54,
+ "end": 18624.02,
+ "text": "news"
+ },
+ {
+ "id": 42082,
+ "start": 18624.02,
+ "end": 18624.74,
+ "text": "so"
+ },
+ {
+ "id": 42083,
+ "start": 18624.74,
+ "end": 18624.86,
+ "text": "if"
+ },
+ {
+ "id": 42084,
+ "start": 18624.86,
+ "end": 18625.12,
+ "text": "people"
+ },
+ {
+ "id": 42085,
+ "start": 18625.12,
+ "end": 18625.24,
+ "text": "are"
+ },
+ {
+ "id": 42086,
+ "start": 18625.24,
+ "end": 18625.48,
+ "text": "getting"
+ },
+ {
+ "id": 42087,
+ "start": 18625.48,
+ "end": 18625.98,
+ "text": "along,"
+ },
+ {
+ "id": 42088,
+ "start": 18625.98,
+ "end": 18626.22,
+ "text": "you"
+ },
+ {
+ "id": 42089,
+ "start": 18626.22,
+ "end": 18626.58,
+ "text": "never"
+ },
+ {
+ "id": 42090,
+ "start": 18626.58,
+ "end": 18627.02,
+ "text": "hear"
+ },
+ {
+ "id": 42091,
+ "start": 18627.02,
+ "end": 18627.28,
+ "text": "about"
+ },
+ {
+ "id": 42092,
+ "start": 18627.28,
+ "end": 18627.58,
+ "text": "that."
+ },
+ {
+ "id": 42093,
+ "start": 18627.58,
+ "end": 18627.76,
+ "text": "So"
+ },
+ {
+ "id": 42094,
+ "start": 18627.76,
+ "end": 18627.94,
+ "text": "they"
+ },
+ {
+ "id": 42095,
+ "start": 18627.94,
+ "end": 18628.08,
+ "text": "get"
+ },
+ {
+ "id": 42096,
+ "start": 18628.08,
+ "end": 18628.2,
+ "text": "a"
+ },
+ {
+ "id": 42097,
+ "start": 18628.2,
+ "end": 18628.8,
+ "text": "distorted"
+ },
+ {
+ "id": 42098,
+ "start": 18628.8,
+ "end": 18629.1,
+ "text": "view"
+ },
+ {
+ "id": 42099,
+ "start": 18629.1,
+ "end": 18629.3,
+ "text": "of"
+ },
+ {
+ "id": 42100,
+ "start": 18629.3,
+ "end": 18630.6,
+ "text": "it."
+ },
+ {
+ "id": 42101,
+ "start": 18630.6,
+ "end": 18631.9,
+ "text": "And"
+ },
+ {
+ "id": 42102,
+ "start": 18631.9,
+ "end": 18633.02,
+ "text": "really,"
+ },
+ {
+ "id": 42103,
+ "start": 18633.02,
+ "end": 18634.02,
+ "text": "Congressman,"
+ },
+ {
+ "id": 42104,
+ "start": 18634.02,
+ "end": 18634.16,
+ "text": "get"
+ },
+ {
+ "id": 42105,
+ "start": 18634.16,
+ "end": 18634.54,
+ "text": "along"
+ },
+ {
+ "id": 42106,
+ "start": 18634.54,
+ "end": 18634.96,
+ "text": "more"
+ },
+ {
+ "id": 42107,
+ "start": 18634.96,
+ "end": 18635.24,
+ "text": "than"
+ },
+ {
+ "id": 42108,
+ "start": 18635.24,
+ "end": 18635.64,
+ "text": "the"
+ },
+ {
+ "id": 42109,
+ "start": 18635.64,
+ "end": 18636.02,
+ "text": "public"
+ },
+ {
+ "id": 42110,
+ "start": 18636.02,
+ "end": 18636.38,
+ "text": "things,"
+ },
+ {
+ "id": 42111,
+ "start": 18636.38,
+ "end": 18637.98,
+ "text": "but"
+ },
+ {
+ "id": 42112,
+ "start": 18637.98,
+ "end": 18638.98,
+ "text": "these"
+ },
+ {
+ "id": 42113,
+ "start": 18638.98,
+ "end": 18639.56,
+ "text": "attitudes"
+ },
+ {
+ "id": 42114,
+ "start": 18639.56,
+ "end": 18639.78,
+ "text": "of"
+ },
+ {
+ "id": 42115,
+ "start": 18639.78,
+ "end": 18639.92,
+ "text": "the"
+ },
+ {
+ "id": 42116,
+ "start": 18639.92,
+ "end": 18640.34,
+ "text": "public"
+ },
+ {
+ "id": 42117,
+ "start": 18640.34,
+ "end": 18640.68,
+ "text": "we"
+ },
+ {
+ "id": 42118,
+ "start": 18640.68,
+ "end": 18640.86,
+ "text": "got"
+ },
+ {
+ "id": 42119,
+ "start": 18640.86,
+ "end": 18641.02,
+ "text": "to"
+ },
+ {
+ "id": 42120,
+ "start": 18641.02,
+ "end": 18641.68,
+ "text": "change"
+ },
+ {
+ "id": 42121,
+ "start": 18641.68,
+ "end": 18641.9,
+ "text": "and"
+ },
+ {
+ "id": 42122,
+ "start": 18641.9,
+ "end": 18642.64,
+ "text": "people"
+ },
+ {
+ "id": 42123,
+ "start": 18642.64,
+ "end": 18642.8,
+ "text": "of"
+ },
+ {
+ "id": 42124,
+ "start": 18642.8,
+ "end": 18643.02,
+ "text": "your"
+ },
+ {
+ "id": 42125,
+ "start": 18643.02,
+ "end": 18643.64,
+ "text": "position"
+ },
+ {
+ "id": 42126,
+ "start": 18643.64,
+ "end": 18643.82,
+ "text": "and"
+ },
+ {
+ "id": 42127,
+ "start": 18643.82,
+ "end": 18644.06,
+ "text": "your"
+ },
+ {
+ "id": 42128,
+ "start": 18644.06,
+ "end": 18644.66,
+ "text": "influence,"
+ },
+ {
+ "id": 42129,
+ "start": 18644.66,
+ "end": 18645.22,
+ "text": "you"
+ },
+ {
+ "id": 42130,
+ "start": 18645.22,
+ "end": 18645.36,
+ "text": "can"
+ },
+ {
+ "id": 42131,
+ "start": 18645.36,
+ "end": 18645.46,
+ "text": "do"
+ },
+ {
+ "id": 42132,
+ "start": 18645.46,
+ "end": 18645.56,
+ "text": "a"
+ },
+ {
+ "id": 42133,
+ "start": 18645.56,
+ "end": 18645.78,
+ "text": "lot"
+ },
+ {
+ "id": 42134,
+ "start": 18645.78,
+ "end": 18645.92,
+ "text": "to"
+ },
+ {
+ "id": 42135,
+ "start": 18645.92,
+ "end": 18646.28,
+ "text": "change"
+ },
+ {
+ "id": 42136,
+ "start": 18646.28,
+ "end": 18646.54,
+ "text": "this"
+ },
+ {
+ "id": 42137,
+ "start": 18646.54,
+ "end": 18647.28,
+ "text": "whether"
+ },
+ {
+ "id": 42138,
+ "start": 18647.28,
+ "end": 18648.32,
+ "text": "I"
+ },
+ {
+ "id": 42139,
+ "start": 18648.32,
+ "end": 18648.48,
+ "text": "know"
+ },
+ {
+ "id": 42140,
+ "start": 18648.48,
+ "end": 18648.68,
+ "text": "you"
+ },
+ {
+ "id": 42141,
+ "start": 18648.68,
+ "end": 18648.82,
+ "text": "got"
+ },
+ {
+ "id": 42142,
+ "start": 18648.82,
+ "end": 18649.14,
+ "text": "plenty"
+ },
+ {
+ "id": 42143,
+ "start": 18649.14,
+ "end": 18649.24,
+ "text": "of"
+ },
+ {
+ "id": 42144,
+ "start": 18649.24,
+ "end": 18649.44,
+ "text": "time"
+ },
+ {
+ "id": 42145,
+ "start": 18649.44,
+ "end": 18649.6,
+ "text": "or"
+ },
+ {
+ "id": 42146,
+ "start": 18649.6,
+ "end": 18649.76,
+ "text": "on"
+ },
+ {
+ "id": 42147,
+ "start": 18649.76,
+ "end": 18649.98,
+ "text": "your"
+ },
+ {
+ "id": 42148,
+ "start": 18649.98,
+ "end": 18651,
+ "text": "corporation"
+ },
+ {
+ "id": 42149,
+ "start": 18651,
+ "end": 18651.38,
+ "text": "through"
+ },
+ {
+ "id": 42150,
+ "start": 18651.38,
+ "end": 18651.52,
+ "text": "your"
+ },
+ {
+ "id": 42151,
+ "start": 18651.52,
+ "end": 18652.1,
+ "text": "corporation"
+ },
+ {
+ "id": 42152,
+ "start": 18652.1,
+ "end": 18652.26,
+ "text": "or"
+ },
+ {
+ "id": 42153,
+ "start": 18652.26,
+ "end": 18652.76,
+ "text": "privately"
+ },
+ {
+ "id": 42154,
+ "start": 18652.76,
+ "end": 18653.2,
+ "text": "and"
+ },
+ {
+ "id": 42155,
+ "start": 18653.2,
+ "end": 18653.42,
+ "text": "then"
+ },
+ {
+ "id": 42156,
+ "start": 18653.42,
+ "end": 18653.6,
+ "text": "you"
+ },
+ {
+ "id": 42157,
+ "start": 18653.6,
+ "end": 18653.8,
+ "text": "can"
+ },
+ {
+ "id": 42158,
+ "start": 18653.8,
+ "end": 18653.96,
+ "text": "do"
+ },
+ {
+ "id": 42159,
+ "start": 18653.96,
+ "end": 18654.08,
+ "text": "to"
+ },
+ {
+ "id": 42160,
+ "start": 18654.08,
+ "end": 18654.48,
+ "text": "reduce"
+ },
+ {
+ "id": 42161,
+ "start": 18654.48,
+ "end": 18654.74,
+ "text": "this"
+ },
+ {
+ "id": 42162,
+ "start": 18654.74,
+ "end": 18655.88,
+ "text": "cynicism"
+ },
+ {
+ "id": 42163,
+ "start": 18655.88,
+ "end": 18656.2,
+ "text": "because"
+ },
+ {
+ "id": 42164,
+ "start": 18656.2,
+ "end": 18656.72,
+ "text": "we"
+ },
+ {
+ "id": 42165,
+ "start": 18656.72,
+ "end": 18657.44,
+ "text": "have"
+ },
+ {
+ "id": 42166,
+ "start": 18657.44,
+ "end": 18657.5,
+ "text": "a"
+ },
+ {
+ "id": 42167,
+ "start": 18657.5,
+ "end": 18658.46,
+ "text": "perfect"
+ },
+ {
+ "id": 42168,
+ "start": 18658.46,
+ "end": 18659.4,
+ "text": "Constitution,"
+ },
+ {
+ "id": 42169,
+ "start": 18659.4,
+ "end": 18660.2,
+ "text": "maybe"
+ },
+ {
+ "id": 42170,
+ "start": 18660.2,
+ "end": 18660.34,
+ "text": "it's"
+ },
+ {
+ "id": 42171,
+ "start": 18660.34,
+ "end": 18660.54,
+ "text": "not"
+ },
+ {
+ "id": 42172,
+ "start": 18660.54,
+ "end": 18660.94,
+ "text": "perfect."
+ },
+ {
+ "id": 42173,
+ "start": 18660.94,
+ "end": 18661.08,
+ "text": "But"
+ },
+ {
+ "id": 42174,
+ "start": 18661.08,
+ "end": 18661.24,
+ "text": "we"
+ },
+ {
+ "id": 42175,
+ "start": 18661.24,
+ "end": 18661.42,
+ "text": "got"
+ },
+ {
+ "id": 42176,
+ "start": 18661.42,
+ "end": 18661.5,
+ "text": "a"
+ },
+ {
+ "id": 42177,
+ "start": 18661.5,
+ "end": 18661.74,
+ "text": "very"
+ },
+ {
+ "id": 42178,
+ "start": 18661.74,
+ "end": 18661.96,
+ "text": "good"
+ },
+ {
+ "id": 42179,
+ "start": 18661.96,
+ "end": 18662.6,
+ "text": "Constitution"
+ },
+ {
+ "id": 42180,
+ "start": 18662.6,
+ "end": 18663.32,
+ "text": "longest"
+ },
+ {
+ "id": 42181,
+ "start": 18663.32,
+ "end": 18663.54,
+ "text": "one"
+ },
+ {
+ "id": 42182,
+ "start": 18663.54,
+ "end": 18664.42,
+ "text": "written"
+ },
+ {
+ "id": 42183,
+ "start": 18664.42,
+ "end": 18665.1,
+ "text": "constitution"
+ },
+ {
+ "id": 42184,
+ "start": 18665.1,
+ "end": 18665.18,
+ "text": "in"
+ },
+ {
+ "id": 42185,
+ "start": 18665.18,
+ "end": 18665.28,
+ "text": "the"
+ },
+ {
+ "id": 42186,
+ "start": 18665.28,
+ "end": 18665.68,
+ "text": "history"
+ },
+ {
+ "id": 42187,
+ "start": 18665.68,
+ "end": 18666.42,
+ "text": "of"
+ },
+ {
+ "id": 42188,
+ "start": 18666.42,
+ "end": 18667.42,
+ "text": "mankind."
+ },
+ {
+ "id": 42189,
+ "start": 18667.42,
+ "end": 18668.22,
+ "text": "But"
+ },
+ {
+ "id": 42190,
+ "start": 18668.22,
+ "end": 18668.42,
+ "text": "if"
+ },
+ {
+ "id": 42191,
+ "start": 18668.42,
+ "end": 18668.72,
+ "text": "people"
+ },
+ {
+ "id": 42192,
+ "start": 18668.72,
+ "end": 18669,
+ "text": "don't"
+ },
+ {
+ "id": 42193,
+ "start": 18669,
+ "end": 18669.22,
+ "text": "have"
+ },
+ {
+ "id": 42194,
+ "start": 18669.22,
+ "end": 18669.52,
+ "text": "faith"
+ },
+ {
+ "id": 42195,
+ "start": 18669.52,
+ "end": 18669.68,
+ "text": "in"
+ },
+ {
+ "id": 42196,
+ "start": 18669.68,
+ "end": 18669.78,
+ "text": "the"
+ },
+ {
+ "id": 42197,
+ "start": 18669.78,
+ "end": 18670.54,
+ "text": "institutions"
+ },
+ {
+ "id": 42198,
+ "start": 18670.54,
+ "end": 18670.74,
+ "text": "of"
+ },
+ {
+ "id": 42199,
+ "start": 18670.74,
+ "end": 18671.26,
+ "text": "government"
+ },
+ {
+ "id": 42200,
+ "start": 18671.26,
+ "end": 18671.86,
+ "text": "and"
+ },
+ {
+ "id": 42201,
+ "start": 18671.86,
+ "end": 18672.64,
+ "text": "then"
+ },
+ {
+ "id": 42202,
+ "start": 18672.64,
+ "end": 18673.38,
+ "text": "it's"
+ },
+ {
+ "id": 42203,
+ "start": 18673.38,
+ "end": 18673.64,
+ "text": "our"
+ },
+ {
+ "id": 42204,
+ "start": 18673.64,
+ "end": 18674.62,
+ "text": "responsibility"
+ },
+ {
+ "id": 42205,
+ "start": 18674.62,
+ "end": 18675.26,
+ "text": "to"
+ },
+ {
+ "id": 42206,
+ "start": 18675.26,
+ "end": 18675.92,
+ "text": "enhance"
+ },
+ {
+ "id": 42207,
+ "start": 18675.92,
+ "end": 18676.2,
+ "text": "that"
+ },
+ {
+ "id": 42208,
+ "start": 18676.2,
+ "end": 18676.54,
+ "text": "faith."
+ },
+ {
+ "id": 42209,
+ "start": 18676.54,
+ "end": 18677.04,
+ "text": "So"
+ },
+ {
+ "id": 42210,
+ "start": 18677.04,
+ "end": 18677.26,
+ "text": "they"
+ },
+ {
+ "id": 42211,
+ "start": 18677.26,
+ "end": 18677.44,
+ "text": "have"
+ },
+ {
+ "id": 42212,
+ "start": 18677.44,
+ "end": 18677.7,
+ "text": "less"
+ },
+ {
+ "id": 42213,
+ "start": 18677.7,
+ "end": 18678.38,
+ "text": "cynicism"
+ },
+ {
+ "id": 42214,
+ "start": 18678.38,
+ "end": 18678.54,
+ "text": "on"
+ },
+ {
+ "id": 42215,
+ "start": 18678.54,
+ "end": 18678.82,
+ "text": "us."
+ },
+ {
+ "id": 42216,
+ "start": 18678.82,
+ "end": 18679.38,
+ "text": "You"
+ },
+ {
+ "id": 42217,
+ "start": 18679.38,
+ "end": 18679.6,
+ "text": "know,"
+ },
+ {
+ "id": 42218,
+ "start": 18679.6,
+ "end": 18679.74,
+ "text": "we"
+ },
+ {
+ "id": 42219,
+ "start": 18679.74,
+ "end": 18679.92,
+ "text": "don't"
+ },
+ {
+ "id": 42220,
+ "start": 18679.92,
+ "end": 18680.08,
+ "text": "have"
+ },
+ {
+ "id": 42221,
+ "start": 18680.08,
+ "end": 18680.14,
+ "text": "a"
+ },
+ {
+ "id": 42222,
+ "start": 18680.14,
+ "end": 18680.4,
+ "text": "very"
+ },
+ {
+ "id": 42223,
+ "start": 18680.4,
+ "end": 18680.72,
+ "text": "strong"
+ },
+ {
+ "id": 42224,
+ "start": 18680.72,
+ "end": 18681.44,
+ "text": "democracy"
+ },
+ {
+ "id": 42225,
+ "start": 18681.44,
+ "end": 18681.86,
+ "text": "just"
+ },
+ {
+ "id": 42226,
+ "start": 18681.86,
+ "end": 18682.12,
+ "text": "because"
+ },
+ {
+ "id": 42227,
+ "start": 18682.12,
+ "end": 18682.3,
+ "text": "we"
+ },
+ {
+ "id": 42228,
+ "start": 18682.3,
+ "end": 18682.46,
+ "text": "got"
+ },
+ {
+ "id": 42229,
+ "start": 18682.46,
+ "end": 18682.54,
+ "text": "a"
+ },
+ {
+ "id": 42230,
+ "start": 18682.54,
+ "end": 18682.74,
+ "text": "good"
+ },
+ {
+ "id": 42231,
+ "start": 18682.74,
+ "end": 18684.45,
+ "text": "constitution"
+ },
+ {
+ "id": 42232,
+ "start": 18684.45,
+ "end": 18684.89,
+ "text": "that"
+ },
+ {
+ "id": 42233,
+ "start": 18684.89,
+ "end": 18685.45,
+ "text": "everybody"
+ },
+ {
+ "id": 42234,
+ "start": 18685.45,
+ "end": 18685.71,
+ "text": "will"
+ },
+ {
+ "id": 42235,
+ "start": 18685.71,
+ "end": 18685.83,
+ "text": "do"
+ },
+ {
+ "id": 42236,
+ "start": 18685.83,
+ "end": 18686.37,
+ "text": "whatever"
+ },
+ {
+ "id": 42237,
+ "start": 18686.37,
+ "end": 18686.57,
+ "text": "they"
+ },
+ {
+ "id": 42238,
+ "start": 18686.57,
+ "end": 18686.89,
+ "text": "can"
+ },
+ {
+ "id": 42239,
+ "start": 18686.89,
+ "end": 18687.47,
+ "text": "to"
+ },
+ {
+ "id": 42240,
+ "start": 18687.47,
+ "end": 18687.71,
+ "text": "help"
+ },
+ {
+ "id": 42241,
+ "start": 18687.71,
+ "end": 18688.45,
+ "text": "enhance"
+ },
+ {
+ "id": 42242,
+ "start": 18688.45,
+ "end": 18689.43,
+ "text": "respect"
+ },
+ {
+ "id": 42243,
+ "start": 18689.43,
+ "end": 18690.19,
+ "text": "for"
+ },
+ {
+ "id": 42244,
+ "start": 18690.19,
+ "end": 18690.67,
+ "text": "government."
+ },
+ {
+ "id": 42245,
+ "start": 18690.67,
+ "end": 18691.43,
+ "text": "Including"
+ },
+ {
+ "id": 42246,
+ "start": 18691.43,
+ "end": 18692.19,
+ "text": "speaking"
+ },
+ {
+ "id": 42247,
+ "start": 18692.19,
+ "end": 18692.31,
+ "text": "to"
+ },
+ {
+ "id": 42248,
+ "start": 18692.31,
+ "end": 18692.85,
+ "text": "myself."
+ },
+ {
+ "id": 42249,
+ "start": 18692.85,
+ "end": 18693.09,
+ "text": "I"
+ },
+ {
+ "id": 42250,
+ "start": 18693.09,
+ "end": 18693.25,
+ "text": "got"
+ },
+ {
+ "id": 42251,
+ "start": 18693.25,
+ "end": 18693.39,
+ "text": "to"
+ },
+ {
+ "id": 42252,
+ "start": 18693.39,
+ "end": 18693.99,
+ "text": "bend"
+ },
+ {
+ "id": 42253,
+ "start": 18693.99,
+ "end": 18694.25,
+ "text": "over"
+ },
+ {
+ "id": 42254,
+ "start": 18694.25,
+ "end": 18694.81,
+ "text": "backwards"
+ },
+ {
+ "id": 42255,
+ "start": 18694.81,
+ "end": 18694.95,
+ "text": "to"
+ },
+ {
+ "id": 42256,
+ "start": 18694.95,
+ "end": 18695.13,
+ "text": "do"
+ },
+ {
+ "id": 42257,
+ "start": 18695.13,
+ "end": 18695.31,
+ "text": "what"
+ },
+ {
+ "id": 42258,
+ "start": 18695.31,
+ "end": 18695.51,
+ "text": "I"
+ },
+ {
+ "id": 42259,
+ "start": 18695.51,
+ "end": 18696.26,
+ "text": "can."
+ },
+ {
+ "id": 42260,
+ "start": 18696.26,
+ "end": 18696.78,
+ "text": "So"
+ },
+ {
+ "id": 42261,
+ "start": 18696.78,
+ "end": 18697.96,
+ "text": "I"
+ },
+ {
+ "id": 42262,
+ "start": 18697.96,
+ "end": 18698.2,
+ "text": "don't"
+ },
+ {
+ "id": 42263,
+ "start": 18698.2,
+ "end": 18698.42,
+ "text": "add"
+ },
+ {
+ "id": 42264,
+ "start": 18698.42,
+ "end": 18698.54,
+ "text": "to"
+ },
+ {
+ "id": 42265,
+ "start": 18698.54,
+ "end": 18698.76,
+ "text": "that"
+ },
+ {
+ "id": 42266,
+ "start": 18698.76,
+ "end": 18699.4,
+ "text": "cynicism."
+ },
+ {
+ "id": 42267,
+ "start": 18699.4,
+ "end": 18700.24,
+ "text": "So"
+ },
+ {
+ "id": 42268,
+ "start": 18700.24,
+ "end": 18700.98,
+ "text": "sorry,"
+ },
+ {
+ "id": 42269,
+ "start": 18700.98,
+ "end": 18701.1,
+ "text": "you"
+ },
+ {
+ "id": 42270,
+ "start": 18701.1,
+ "end": 18701.28,
+ "text": "had"
+ },
+ {
+ "id": 42271,
+ "start": 18701.28,
+ "end": 18701.38,
+ "text": "to"
+ },
+ {
+ "id": 42272,
+ "start": 18701.38,
+ "end": 18701.7,
+ "text": "listen"
+ },
+ {
+ "id": 42273,
+ "start": 18701.7,
+ "end": 18701.88,
+ "text": "to"
+ },
+ {
+ "id": 42274,
+ "start": 18701.88,
+ "end": 18703.36,
+ "text": "me."
+ },
+ {
+ "id": 42275,
+ "start": 18703.36,
+ "end": 18705.56,
+ "text": "So"
+ },
+ {
+ "id": 42276,
+ "start": 18705.56,
+ "end": 18706.16,
+ "text": "this"
+ },
+ {
+ "id": 42277,
+ "start": 18706.16,
+ "end": 18706.7,
+ "text": "concludes"
+ },
+ {
+ "id": 42278,
+ "start": 18706.7,
+ "end": 18707.2,
+ "text": "today's"
+ },
+ {
+ "id": 42279,
+ "start": 18707.2,
+ "end": 18707.64,
+ "text": "hearing"
+ },
+ {
+ "id": 42280,
+ "start": 18707.64,
+ "end": 18708.72,
+ "text": "thanks"
+ },
+ {
+ "id": 42281,
+ "start": 18708.72,
+ "end": 18708.82,
+ "text": "to"
+ },
+ {
+ "id": 42282,
+ "start": 18708.82,
+ "end": 18709.04,
+ "text": "all"
+ },
+ {
+ "id": 42283,
+ "start": 18709.04,
+ "end": 18709.2,
+ "text": "the"
+ },
+ {
+ "id": 42284,
+ "start": 18709.2,
+ "end": 18709.84,
+ "text": "witnesses"
+ },
+ {
+ "id": 42285,
+ "start": 18709.84,
+ "end": 18710.12,
+ "text": "for"
+ },
+ {
+ "id": 42286,
+ "start": 18710.12,
+ "end": 18710.74,
+ "text": "attending"
+ },
+ {
+ "id": 42287,
+ "start": 18710.74,
+ "end": 18711.6,
+ "text": "the"
+ },
+ {
+ "id": 42288,
+ "start": 18711.6,
+ "end": 18711.98,
+ "text": "record"
+ },
+ {
+ "id": 42289,
+ "start": 18711.98,
+ "end": 18712.2,
+ "text": "will"
+ },
+ {
+ "id": 42290,
+ "start": 18712.2,
+ "end": 18712.32,
+ "text": "be"
+ },
+ {
+ "id": 42291,
+ "start": 18712.32,
+ "end": 18712.7,
+ "text": "open"
+ },
+ {
+ "id": 42292,
+ "start": 18712.7,
+ "end": 18712.9,
+ "text": "for"
+ },
+ {
+ "id": 42293,
+ "start": 18712.9,
+ "end": 18713.46,
+ "text": "14"
+ },
+ {
+ "id": 42294,
+ "start": 18713.46,
+ "end": 18713.67,
+ "text": "days"
+ },
+ {
+ "id": 42295,
+ "start": 18713.67,
+ "end": 18714.73,
+ "text": "for"
+ },
+ {
+ "id": 42296,
+ "start": 18714.73,
+ "end": 18714.85,
+ "text": "the"
+ },
+ {
+ "id": 42297,
+ "start": 18714.85,
+ "end": 18715.23,
+ "text": "members"
+ },
+ {
+ "id": 42298,
+ "start": 18715.23,
+ "end": 18715.37,
+ "text": "to"
+ },
+ {
+ "id": 42299,
+ "start": 18715.37,
+ "end": 18715.85,
+ "text": "submit"
+ },
+ {
+ "id": 42300,
+ "start": 18715.85,
+ "end": 18716.55,
+ "text": "additional"
+ },
+ {
+ "id": 42301,
+ "start": 18716.55,
+ "end": 18716.99,
+ "text": "written"
+ },
+ {
+ "id": 42302,
+ "start": 18716.99,
+ "end": 18717.79,
+ "text": "questions."
+ },
+ {
+ "id": 42303,
+ "start": 18717.79,
+ "end": 18718.55,
+ "text": "And"
+ },
+ {
+ "id": 42304,
+ "start": 18718.55,
+ "end": 18718.85,
+ "text": "for"
+ },
+ {
+ "id": 42305,
+ "start": 18718.85,
+ "end": 18719.01,
+ "text": "the"
+ },
+ {
+ "id": 42306,
+ "start": 18719.01,
+ "end": 18719.51,
+ "text": "witness,"
+ },
+ {
+ "id": 42307,
+ "start": 18719.51,
+ "end": 18719.93,
+ "text": "Mr"
+ },
+ {
+ "id": 42308,
+ "start": 18719.93,
+ "end": 18720.45,
+ "text": "Zuckerberg"
+ },
+ {
+ "id": 42309,
+ "start": 18720.45,
+ "end": 18721.31,
+ "text": "to"
+ },
+ {
+ "id": 42310,
+ "start": 18721.31,
+ "end": 18721.59,
+ "text": "make"
+ },
+ {
+ "id": 42311,
+ "start": 18721.59,
+ "end": 18722.03,
+ "text": "any"
+ },
+ {
+ "id": 42312,
+ "start": 18722.03,
+ "end": 18722.61,
+ "text": "corrections"
+ },
+ {
+ "id": 42313,
+ "start": 18722.61,
+ "end": 18722.97,
+ "text": "to"
+ },
+ {
+ "id": 42314,
+ "start": 18722.97,
+ "end": 18723.15,
+ "text": "his"
+ },
+ {
+ "id": 42315,
+ "start": 18723.15,
+ "end": 18724.26,
+ "text": "testimony."
+ },
+ {
+ "id": 42316,
+ "start": 18724.26,
+ "end": 18724.78,
+ "text": "The"
+ },
+ {
+ "id": 42317,
+ "start": 18724.78,
+ "end": 18725.18,
+ "text": "hearing"
+ },
+ {
+ "id": 42318,
+ "start": 18725.18,
+ "end": 18725.5,
+ "text": "is"
+ },
+ {
+ "id": 42319,
+ "start": 18725.5,
+ "end": 18725.62,
+ "text": "a"
+ },
+ {
+ "id": 42320,
+ "start": 18725.62,
+ "end": 18749.26,
+ "text": "jerk."
+ },
+ {
+ "id": 42321,
+ "start": 18749.26,
+ "end": 18795.04,
+ "text": "Are"
+ },
+ {
+ "id": 42322,
+ "start": 18795.04,
+ "end": 18795.78,
+ "text": "all"
+ },
+ {
+ "id": 42323,
+ "start": 18795.8,
+ "end": 18796.02,
+ "text": "right."
+ }
+ ],
+ "paragraphs": [
+ {
+ "id": 0,
+ "start": 0,
+ "end": 228.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1,
+ "start": 228.02,
+ "end": 320.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2,
+ "start": 320.68,
+ "end": 434.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 3,
+ "start": 434.04,
+ "end": 801.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 4,
+ "start": 801.26,
+ "end": 1194.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 5,
+ "start": 1194.64,
+ "end": 1198.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 6,
+ "start": 1198.16,
+ "end": 1211.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 7,
+ "start": 1211.92,
+ "end": 1215.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 8,
+ "start": 1215.92,
+ "end": 1240.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 9,
+ "start": 1240.68,
+ "end": 1246.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 10,
+ "start": 1246.12,
+ "end": 1251.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 11,
+ "start": 1251.2,
+ "end": 1257.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 12,
+ "start": 1257.34,
+ "end": 1266.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 13,
+ "start": 1266.34,
+ "end": 1272.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 14,
+ "start": 1272.92,
+ "end": 1292.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 15,
+ "start": 1292.52,
+ "end": 1301.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 16,
+ "start": 1301.2,
+ "end": 1308.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 17,
+ "start": 1308.04,
+ "end": 1318.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 18,
+ "start": 1318.12,
+ "end": 1327.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 19,
+ "start": 1327.62,
+ "end": 1329.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 20,
+ "start": 1329.04,
+ "end": 1342.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 21,
+ "start": 1342.66,
+ "end": 1345.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 22,
+ "start": 1345.6,
+ "end": 1349.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 23,
+ "start": 1349.24,
+ "end": 1351.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 24,
+ "start": 1351.06,
+ "end": 1353.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 25,
+ "start": 1353.18,
+ "end": 1367.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 26,
+ "start": 1367.42,
+ "end": 1382.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 27,
+ "start": 1382.86,
+ "end": 1393.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 28,
+ "start": 1393.24,
+ "end": 1395.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 29,
+ "start": 1395.06,
+ "end": 1403.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 30,
+ "start": 1403.94,
+ "end": 1410.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 31,
+ "start": 1410.6,
+ "end": 1414.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 32,
+ "start": 1414.98,
+ "end": 1426.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 33,
+ "start": 1426.01,
+ "end": 1429.57,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 34,
+ "start": 1429.57,
+ "end": 1437.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 35,
+ "start": 1437.04,
+ "end": 1450.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 36,
+ "start": 1450.8,
+ "end": 1459.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 37,
+ "start": 1459.66,
+ "end": 1478.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 38,
+ "start": 1478.8,
+ "end": 1486.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 39,
+ "start": 1486.4,
+ "end": 1494.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 40,
+ "start": 1494.76,
+ "end": 1500.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 41,
+ "start": 1500.26,
+ "end": 1525.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 42,
+ "start": 1525.78,
+ "end": 1531.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 43,
+ "start": 1531.7,
+ "end": 1535.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 44,
+ "start": 1535.9,
+ "end": 1546.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 45,
+ "start": 1546.76,
+ "end": 1548.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 46,
+ "start": 1548.28,
+ "end": 1568.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 47,
+ "start": 1568.16,
+ "end": 1571.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 48,
+ "start": 1571.06,
+ "end": 1581.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 49,
+ "start": 1581.76,
+ "end": 1584.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 50,
+ "start": 1584.22,
+ "end": 1598.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 51,
+ "start": 1598.12,
+ "end": 1606.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 52,
+ "start": 1606.06,
+ "end": 1610.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 53,
+ "start": 1610.84,
+ "end": 1621.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 54,
+ "start": 1621.26,
+ "end": 1630.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 55,
+ "start": 1630.48,
+ "end": 1639.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 56,
+ "start": 1639.56,
+ "end": 1642.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 57,
+ "start": 1642.32,
+ "end": 1647.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 58,
+ "start": 1647.2,
+ "end": 1650.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 59,
+ "start": 1650.78,
+ "end": 1662.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 60,
+ "start": 1662.76,
+ "end": 1712.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 61,
+ "start": 1712.78,
+ "end": 1722.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 62,
+ "start": 1722.54,
+ "end": 1754.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 63,
+ "start": 1754.36,
+ "end": 1766.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 64,
+ "start": 1766.42,
+ "end": 1782.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 65,
+ "start": 1782.26,
+ "end": 1790.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 66,
+ "start": 1790.42,
+ "end": 1797.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 67,
+ "start": 1797.82,
+ "end": 1811.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 68,
+ "start": 1811.96,
+ "end": 1821.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 69,
+ "start": 1821.48,
+ "end": 1830.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 70,
+ "start": 1830.52,
+ "end": 1838.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 71,
+ "start": 1838.02,
+ "end": 1873.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 72,
+ "start": 1873.9,
+ "end": 1890.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 73,
+ "start": 1890.1,
+ "end": 1892.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 74,
+ "start": 1892.36,
+ "end": 1895.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 75,
+ "start": 1895.42,
+ "end": 1899.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 76,
+ "start": 1899.5,
+ "end": 1902.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 77,
+ "start": 1902.64,
+ "end": 1905.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 78,
+ "start": 1905.22,
+ "end": 1920.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 79,
+ "start": 1920.26,
+ "end": 1935.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 80,
+ "start": 1935.72,
+ "end": 1946.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 81,
+ "start": 1946.54,
+ "end": 1947.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 82,
+ "start": 1947.66,
+ "end": 1966.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 83,
+ "start": 1966.5,
+ "end": 1971.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 84,
+ "start": 1971.56,
+ "end": 1978.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 85,
+ "start": 1978.2,
+ "end": 1986.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 86,
+ "start": 1986.3,
+ "end": 2001.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 87,
+ "start": 2001.44,
+ "end": 2011.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 88,
+ "start": 2011.7,
+ "end": 2024.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 89,
+ "start": 2024.56,
+ "end": 2030.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 90,
+ "start": 2030.36,
+ "end": 2037.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 91,
+ "start": 2037.56,
+ "end": 2044.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 92,
+ "start": 2044.22,
+ "end": 2078.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 93,
+ "start": 2078.94,
+ "end": 2110.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 94,
+ "start": 2110.66,
+ "end": 2125.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 95,
+ "start": 2125.78,
+ "end": 2138.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 96,
+ "start": 2138.92,
+ "end": 2152.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 97,
+ "start": 2152.06,
+ "end": 2170.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 98,
+ "start": 2170.84,
+ "end": 2177.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 99,
+ "start": 2177.48,
+ "end": 2189.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 100,
+ "start": 2189.76,
+ "end": 2196.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 101,
+ "start": 2196.04,
+ "end": 2211.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 102,
+ "start": 2211.76,
+ "end": 2212.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 103,
+ "start": 2212.68,
+ "end": 2225.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 104,
+ "start": 2225.74,
+ "end": 2229.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 105,
+ "start": 2229.08,
+ "end": 2231.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 106,
+ "start": 2231.84,
+ "end": 2234.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 107,
+ "start": 2234.04,
+ "end": 2240.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 108,
+ "start": 2240.92,
+ "end": 2265.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 109,
+ "start": 2265.8,
+ "end": 2294.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 110,
+ "start": 2294.44,
+ "end": 2302.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 111,
+ "start": 2302.82,
+ "end": 2309.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 112,
+ "start": 2309.42,
+ "end": 2328.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 113,
+ "start": 2328.7,
+ "end": 2341.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 114,
+ "start": 2341.8,
+ "end": 2347.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 115,
+ "start": 2347.02,
+ "end": 2349.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 116,
+ "start": 2349.24,
+ "end": 2363.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 117,
+ "start": 2363.42,
+ "end": 2371.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 118,
+ "start": 2371.1,
+ "end": 2385.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 119,
+ "start": 2385.14,
+ "end": 2387.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 120,
+ "start": 2387.6,
+ "end": 2391.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 121,
+ "start": 2391.18,
+ "end": 2396.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 122,
+ "start": 2396.08,
+ "end": 2400.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 123,
+ "start": 2400.52,
+ "end": 2426.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 124,
+ "start": 2426.94,
+ "end": 2432.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 125,
+ "start": 2432.7,
+ "end": 2437.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 126,
+ "start": 2437.44,
+ "end": 2457.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 127,
+ "start": 2457.82,
+ "end": 2471.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 128,
+ "start": 2471.93,
+ "end": 2476.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 129,
+ "start": 2476.38,
+ "end": 2497.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 130,
+ "start": 2497.6,
+ "end": 2508.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 131,
+ "start": 2508.01,
+ "end": 2519.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 132,
+ "start": 2519.24,
+ "end": 2520.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 133,
+ "start": 2520.92,
+ "end": 2522.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 134,
+ "start": 2522.3,
+ "end": 2525.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 135,
+ "start": 2525.44,
+ "end": 2528.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 136,
+ "start": 2528.26,
+ "end": 2537.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 137,
+ "start": 2537.92,
+ "end": 2550.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 138,
+ "start": 2550.08,
+ "end": 2556.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 139,
+ "start": 2556.66,
+ "end": 2558.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 140,
+ "start": 2558.64,
+ "end": 2562.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 141,
+ "start": 2562.04,
+ "end": 2582.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 142,
+ "start": 2582.1,
+ "end": 2594.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 143,
+ "start": 2594.34,
+ "end": 2599.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 144,
+ "start": 2599.96,
+ "end": 2611.51,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 145,
+ "start": 2611.51,
+ "end": 2613.35,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 146,
+ "start": 2613.35,
+ "end": 2615.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 147,
+ "start": 2615.05,
+ "end": 2623.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 148,
+ "start": 2623.28,
+ "end": 2635.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 149,
+ "start": 2635.7,
+ "end": 2647.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 150,
+ "start": 2647.16,
+ "end": 2649.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 151,
+ "start": 2649.68,
+ "end": 2656.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 152,
+ "start": 2656.42,
+ "end": 2662.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 153,
+ "start": 2662.66,
+ "end": 2665.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 154,
+ "start": 2665.56,
+ "end": 2669.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 155,
+ "start": 2669.94,
+ "end": 2682.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 156,
+ "start": 2682.46,
+ "end": 2691.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 157,
+ "start": 2691.72,
+ "end": 2704.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 158,
+ "start": 2704.14,
+ "end": 2713.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 159,
+ "start": 2713.16,
+ "end": 2715.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 160,
+ "start": 2715.74,
+ "end": 2719.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 161,
+ "start": 2719.86,
+ "end": 2722.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 162,
+ "start": 2722.72,
+ "end": 2729.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 163,
+ "start": 2729.52,
+ "end": 2738.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 164,
+ "start": 2738.2,
+ "end": 2744.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 165,
+ "start": 2744.06,
+ "end": 2758.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 166,
+ "start": 2758.1,
+ "end": 2763.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 167,
+ "start": 2763.04,
+ "end": 2770.09,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 168,
+ "start": 2770.09,
+ "end": 2771.77,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 169,
+ "start": 2771.77,
+ "end": 2789.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 170,
+ "start": 2789.82,
+ "end": 2792.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 171,
+ "start": 2792.46,
+ "end": 2797.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 172,
+ "start": 2797.02,
+ "end": 2801,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 173,
+ "start": 2801,
+ "end": 2809.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 174,
+ "start": 2809.78,
+ "end": 2819.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 175,
+ "start": 2819.01,
+ "end": 2828.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 176,
+ "start": 2828.48,
+ "end": 2830.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 177,
+ "start": 2830.36,
+ "end": 2837,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 178,
+ "start": 2837,
+ "end": 2842.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 179,
+ "start": 2842.56,
+ "end": 2847.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 180,
+ "start": 2847.2,
+ "end": 2853.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 181,
+ "start": 2853.34,
+ "end": 2868.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 182,
+ "start": 2868.46,
+ "end": 2879.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 183,
+ "start": 2879.2,
+ "end": 2887.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 184,
+ "start": 2887.34,
+ "end": 2894.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 185,
+ "start": 2894.8,
+ "end": 2903.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 186,
+ "start": 2903.64,
+ "end": 2906.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 187,
+ "start": 2906.96,
+ "end": 2913.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 188,
+ "start": 2913.66,
+ "end": 2915.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 189,
+ "start": 2915.6,
+ "end": 2935.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 190,
+ "start": 2935.08,
+ "end": 2949.13,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 191,
+ "start": 2949.13,
+ "end": 2954.77,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 192,
+ "start": 2954.77,
+ "end": 2964.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 193,
+ "start": 2964.26,
+ "end": 2968.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 194,
+ "start": 2968.01,
+ "end": 2969.19,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 195,
+ "start": 2969.19,
+ "end": 2972.19,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 196,
+ "start": 2972.19,
+ "end": 2978.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 197,
+ "start": 2978.02,
+ "end": 2990.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 198,
+ "start": 2990.54,
+ "end": 3007.55,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 199,
+ "start": 3007.55,
+ "end": 3008.29,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 200,
+ "start": 3008.29,
+ "end": 3014.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 201,
+ "start": 3014.32,
+ "end": 3029.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 202,
+ "start": 3029.16,
+ "end": 3037.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 203,
+ "start": 3037.22,
+ "end": 3050.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 204,
+ "start": 3050.66,
+ "end": 3059.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 205,
+ "start": 3059.32,
+ "end": 3065.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 206,
+ "start": 3065.5,
+ "end": 3071.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 207,
+ "start": 3071.04,
+ "end": 3081.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 208,
+ "start": 3081.76,
+ "end": 3088.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 209,
+ "start": 3088.02,
+ "end": 3118.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 210,
+ "start": 3118.98,
+ "end": 3127.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 211,
+ "start": 3127.3,
+ "end": 3129.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 212,
+ "start": 3129.38,
+ "end": 3137.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 213,
+ "start": 3137.46,
+ "end": 3143.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 214,
+ "start": 3143.15,
+ "end": 3156.51,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 215,
+ "start": 3156.51,
+ "end": 3186.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 216,
+ "start": 3186.24,
+ "end": 3192.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 217,
+ "start": 3192.66,
+ "end": 3215.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 218,
+ "start": 3215.48,
+ "end": 3227.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 219,
+ "start": 3227.92,
+ "end": 3252.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 220,
+ "start": 3252.5,
+ "end": 3261.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 221,
+ "start": 3261.28,
+ "end": 3272.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 222,
+ "start": 3272.6,
+ "end": 3276.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 223,
+ "start": 3276.84,
+ "end": 3281.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 224,
+ "start": 3281.82,
+ "end": 3285.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 225,
+ "start": 3285.78,
+ "end": 3290.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 226,
+ "start": 3290.92,
+ "end": 3296.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 227,
+ "start": 3296.84,
+ "end": 3313.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 228,
+ "start": 3313.86,
+ "end": 3321.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 229,
+ "start": 3321.96,
+ "end": 3333.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 230,
+ "start": 3333.68,
+ "end": 3337.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 231,
+ "start": 3337.12,
+ "end": 3339.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 232,
+ "start": 3339.62,
+ "end": 3347,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 233,
+ "start": 3347,
+ "end": 3349.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 234,
+ "start": 3349.68,
+ "end": 3351.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 235,
+ "start": 3351.64,
+ "end": 3360.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 236,
+ "start": 3360.62,
+ "end": 3366.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 237,
+ "start": 3366.8,
+ "end": 3378.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 238,
+ "start": 3378.96,
+ "end": 3383.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 239,
+ "start": 3383.76,
+ "end": 3391.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 240,
+ "start": 3391.74,
+ "end": 3399.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 241,
+ "start": 3399.42,
+ "end": 3414.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 242,
+ "start": 3414.82,
+ "end": 3420.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 243,
+ "start": 3420.54,
+ "end": 3425.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 244,
+ "start": 3425.7,
+ "end": 3427.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 245,
+ "start": 3427.64,
+ "end": 3429,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 246,
+ "start": 3429,
+ "end": 3435.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 247,
+ "start": 3435.84,
+ "end": 3437.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 248,
+ "start": 3437.06,
+ "end": 3439.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 249,
+ "start": 3439.82,
+ "end": 3445.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 250,
+ "start": 3445.72,
+ "end": 3464.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 251,
+ "start": 3464.08,
+ "end": 3466.37,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 252,
+ "start": 3466.37,
+ "end": 3469.71,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 253,
+ "start": 3469.71,
+ "end": 3472.79,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 254,
+ "start": 3472.79,
+ "end": 3476.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 255,
+ "start": 3476.34,
+ "end": 3485.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 256,
+ "start": 3485.4,
+ "end": 3489.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 257,
+ "start": 3489.2,
+ "end": 3501.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 258,
+ "start": 3501.08,
+ "end": 3509.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 259,
+ "start": 3509.52,
+ "end": 3518.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 260,
+ "start": 3518.82,
+ "end": 3528.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 261,
+ "start": 3528.02,
+ "end": 3533.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 262,
+ "start": 3533.14,
+ "end": 3535.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 263,
+ "start": 3535.12,
+ "end": 3538.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 264,
+ "start": 3538.24,
+ "end": 3541.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 265,
+ "start": 3541.1,
+ "end": 3544.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 266,
+ "start": 3544.32,
+ "end": 3551.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 267,
+ "start": 3551.96,
+ "end": 3556.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 268,
+ "start": 3556.88,
+ "end": 3562.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 269,
+ "start": 3562.12,
+ "end": 3574.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 270,
+ "start": 3574.46,
+ "end": 3583.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 271,
+ "start": 3583.52,
+ "end": 3587.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 272,
+ "start": 3587.36,
+ "end": 3592.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 273,
+ "start": 3592.4,
+ "end": 3596,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 274,
+ "start": 3596,
+ "end": 3598.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 275,
+ "start": 3598.32,
+ "end": 3602.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 276,
+ "start": 3602.93,
+ "end": 3612.17,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 277,
+ "start": 3612.17,
+ "end": 3624.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 278,
+ "start": 3624.1,
+ "end": 3626.31,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 279,
+ "start": 3626.31,
+ "end": 3640.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 280,
+ "start": 3640.98,
+ "end": 3659.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 281,
+ "start": 3659.02,
+ "end": 3664.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 282,
+ "start": 3664.06,
+ "end": 3666.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 283,
+ "start": 3666.58,
+ "end": 3679.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 284,
+ "start": 3679.4,
+ "end": 3684.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 285,
+ "start": 3684.68,
+ "end": 3686.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 286,
+ "start": 3686.58,
+ "end": 3688.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 287,
+ "start": 3688.52,
+ "end": 3691.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 288,
+ "start": 3691.6,
+ "end": 3697.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 289,
+ "start": 3697.52,
+ "end": 3699.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 290,
+ "start": 3699.32,
+ "end": 3705.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 291,
+ "start": 3705.4,
+ "end": 3709.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 292,
+ "start": 3709.34,
+ "end": 3719.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 293,
+ "start": 3719.1,
+ "end": 3725.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 294,
+ "start": 3725.68,
+ "end": 3736.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 295,
+ "start": 3736.92,
+ "end": 3749.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 296,
+ "start": 3749.72,
+ "end": 3753.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 297,
+ "start": 3753.26,
+ "end": 3760.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 298,
+ "start": 3760.26,
+ "end": 3766.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 299,
+ "start": 3766.92,
+ "end": 3769.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 300,
+ "start": 3769.88,
+ "end": 3777.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 301,
+ "start": 3777.32,
+ "end": 3787.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 302,
+ "start": 3787.66,
+ "end": 3800.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 303,
+ "start": 3800.44,
+ "end": 3802.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 304,
+ "start": 3802.56,
+ "end": 3805.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 305,
+ "start": 3805.82,
+ "end": 3807.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 306,
+ "start": 3807.64,
+ "end": 3815.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 307,
+ "start": 3815.08,
+ "end": 3817.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 308,
+ "start": 3817.4,
+ "end": 3821.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 309,
+ "start": 3821.82,
+ "end": 3828.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 310,
+ "start": 3828.98,
+ "end": 3830.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 311,
+ "start": 3830.42,
+ "end": 3852.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 312,
+ "start": 3852.08,
+ "end": 3856.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 313,
+ "start": 3856.34,
+ "end": 3859.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 314,
+ "start": 3859.92,
+ "end": 3863.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 315,
+ "start": 3863.84,
+ "end": 3869.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 316,
+ "start": 3869.6,
+ "end": 3872.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 317,
+ "start": 3872.44,
+ "end": 3881.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 318,
+ "start": 3881.69,
+ "end": 3893.23,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 319,
+ "start": 3893.23,
+ "end": 3896.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 320,
+ "start": 3896.42,
+ "end": 3898.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 321,
+ "start": 3898.86,
+ "end": 3900.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 322,
+ "start": 3900.28,
+ "end": 3909.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 323,
+ "start": 3909.66,
+ "end": 3911.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 324,
+ "start": 3911.72,
+ "end": 3919.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 325,
+ "start": 3919.94,
+ "end": 3931.55,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 326,
+ "start": 3931.55,
+ "end": 3934.95,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 327,
+ "start": 3934.95,
+ "end": 3938.11,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 328,
+ "start": 3938.11,
+ "end": 3946.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 329,
+ "start": 3946.52,
+ "end": 3952.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 330,
+ "start": 3952.94,
+ "end": 3959.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 331,
+ "start": 3959.6,
+ "end": 3963.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 332,
+ "start": 3963.8,
+ "end": 3965.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 333,
+ "start": 3965.42,
+ "end": 3971.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 334,
+ "start": 3971.22,
+ "end": 3978.73,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 335,
+ "start": 3978.73,
+ "end": 3983.55,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 336,
+ "start": 3983.55,
+ "end": 3987.87,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 337,
+ "start": 3987.87,
+ "end": 3991.41,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 338,
+ "start": 3991.41,
+ "end": 4010.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 339,
+ "start": 4010.5,
+ "end": 4012.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 340,
+ "start": 4012.1,
+ "end": 4021.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 341,
+ "start": 4021.69,
+ "end": 4023.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 342,
+ "start": 4023.88,
+ "end": 4028.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 343,
+ "start": 4028.08,
+ "end": 4035.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 344,
+ "start": 4035.96,
+ "end": 4042.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 345,
+ "start": 4042.76,
+ "end": 4053.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 346,
+ "start": 4053.84,
+ "end": 4067.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 347,
+ "start": 4067.18,
+ "end": 4070.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 348,
+ "start": 4070.9,
+ "end": 4073.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 349,
+ "start": 4073.56,
+ "end": 4088.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 350,
+ "start": 4088.64,
+ "end": 4092.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 351,
+ "start": 4092.08,
+ "end": 4096.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 352,
+ "start": 4096.52,
+ "end": 4100.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 353,
+ "start": 4100.16,
+ "end": 4112.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 354,
+ "start": 4112.22,
+ "end": 4114.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 355,
+ "start": 4114.64,
+ "end": 4116.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 356,
+ "start": 4116.84,
+ "end": 4118.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 357,
+ "start": 4118.3,
+ "end": 4120.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 358,
+ "start": 4120.62,
+ "end": 4133.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 359,
+ "start": 4133.68,
+ "end": 4142.13,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 360,
+ "start": 4142.13,
+ "end": 4159.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 361,
+ "start": 4159.68,
+ "end": 4164.45,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 362,
+ "start": 4164.45,
+ "end": 4166.99,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 363,
+ "start": 4166.99,
+ "end": 4171.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 364,
+ "start": 4171.93,
+ "end": 4180.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 365,
+ "start": 4180.3,
+ "end": 4181.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 366,
+ "start": 4181.12,
+ "end": 4183.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 367,
+ "start": 4183.02,
+ "end": 4184.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 368,
+ "start": 4184.02,
+ "end": 4187.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 369,
+ "start": 4187.38,
+ "end": 4190.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 370,
+ "start": 4190.88,
+ "end": 4196.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 371,
+ "start": 4196.26,
+ "end": 4213.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 372,
+ "start": 4213.78,
+ "end": 4222.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 373,
+ "start": 4222.84,
+ "end": 4231.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 374,
+ "start": 4231.1,
+ "end": 4236.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 375,
+ "start": 4236.58,
+ "end": 4241.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 376,
+ "start": 4241.02,
+ "end": 4245.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 377,
+ "start": 4245.12,
+ "end": 4248.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 378,
+ "start": 4248.28,
+ "end": 4254.31,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 379,
+ "start": 4254.31,
+ "end": 4258.85,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 380,
+ "start": 4258.85,
+ "end": 4265.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 381,
+ "start": 4265.34,
+ "end": 4266.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 382,
+ "start": 4266.88,
+ "end": 4271.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 383,
+ "start": 4271.02,
+ "end": 4282.49,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 384,
+ "start": 4282.49,
+ "end": 4295.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 385,
+ "start": 4295.64,
+ "end": 4303.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 386,
+ "start": 4303.58,
+ "end": 4320.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 387,
+ "start": 4320.98,
+ "end": 4339.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 388,
+ "start": 4339.12,
+ "end": 4349.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 389,
+ "start": 4349.8,
+ "end": 4356.57,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 390,
+ "start": 4356.57,
+ "end": 4361.17,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 391,
+ "start": 4361.17,
+ "end": 4376.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 392,
+ "start": 4376.66,
+ "end": 4400.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 393,
+ "start": 4400.98,
+ "end": 4411.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 394,
+ "start": 4411.14,
+ "end": 4426.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 395,
+ "start": 4426.68,
+ "end": 4427.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 396,
+ "start": 4427.62,
+ "end": 4430.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 397,
+ "start": 4430.2,
+ "end": 4431.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 398,
+ "start": 4431.98,
+ "end": 4438.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 399,
+ "start": 4438.5,
+ "end": 4444.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 400,
+ "start": 4444.08,
+ "end": 4447.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 401,
+ "start": 4447.66,
+ "end": 4448.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 402,
+ "start": 4448.44,
+ "end": 4465.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 403,
+ "start": 4465.58,
+ "end": 4471.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 404,
+ "start": 4471.14,
+ "end": 4482.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 405,
+ "start": 4482.92,
+ "end": 4498.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 406,
+ "start": 4498.44,
+ "end": 4500.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 407,
+ "start": 4500.22,
+ "end": 4502.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 408,
+ "start": 4502.06,
+ "end": 4504.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 409,
+ "start": 4504.5,
+ "end": 4505.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 410,
+ "start": 4505.82,
+ "end": 4510.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 411,
+ "start": 4510.84,
+ "end": 4524.11,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 412,
+ "start": 4524.11,
+ "end": 4524.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 413,
+ "start": 4524.59,
+ "end": 4529.97,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 414,
+ "start": 4529.97,
+ "end": 4534.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 415,
+ "start": 4534.6,
+ "end": 4537.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 416,
+ "start": 4537.4,
+ "end": 4538.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 417,
+ "start": 4538.38,
+ "end": 4541.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 418,
+ "start": 4541.8,
+ "end": 4543.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 419,
+ "start": 4543.68,
+ "end": 4546.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 420,
+ "start": 4546.16,
+ "end": 4547.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 421,
+ "start": 4547.88,
+ "end": 4548.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 422,
+ "start": 4548.92,
+ "end": 4570.31,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 423,
+ "start": 4570.31,
+ "end": 4574.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 424,
+ "start": 4574.16,
+ "end": 4581.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 425,
+ "start": 4581.92,
+ "end": 4598.23,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 426,
+ "start": 4598.23,
+ "end": 4613.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 427,
+ "start": 4613.64,
+ "end": 4617.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 428,
+ "start": 4617.8,
+ "end": 4630.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 429,
+ "start": 4630.96,
+ "end": 4643.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 430,
+ "start": 4643.94,
+ "end": 4653.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 431,
+ "start": 4653.1,
+ "end": 4666.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 432,
+ "start": 4666.5,
+ "end": 4677.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 433,
+ "start": 4677.5,
+ "end": 4685.99,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 434,
+ "start": 4685.99,
+ "end": 4700.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 435,
+ "start": 4700.26,
+ "end": 4702.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 436,
+ "start": 4702.72,
+ "end": 4704.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 437,
+ "start": 4704.68,
+ "end": 4709.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 438,
+ "start": 4709.38,
+ "end": 4717.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 439,
+ "start": 4717.9,
+ "end": 4724.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 440,
+ "start": 4724.54,
+ "end": 4730.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 441,
+ "start": 4730.66,
+ "end": 4733.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 442,
+ "start": 4733.8,
+ "end": 4752.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 443,
+ "start": 4752.74,
+ "end": 4760.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 444,
+ "start": 4760.64,
+ "end": 4764.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 445,
+ "start": 4764.88,
+ "end": 4770.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 446,
+ "start": 4770.16,
+ "end": 4778.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 447,
+ "start": 4778.92,
+ "end": 4787.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 448,
+ "start": 4787.24,
+ "end": 4788.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 449,
+ "start": 4788.28,
+ "end": 4806.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 450,
+ "start": 4806.78,
+ "end": 4817.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 451,
+ "start": 4817.64,
+ "end": 4819.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 452,
+ "start": 4819.92,
+ "end": 4835.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 453,
+ "start": 4835.38,
+ "end": 4847.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 454,
+ "start": 4847.86,
+ "end": 4865.17,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 455,
+ "start": 4865.17,
+ "end": 4873,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 456,
+ "start": 4873,
+ "end": 4874.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 457,
+ "start": 4874.26,
+ "end": 4888.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 458,
+ "start": 4888.59,
+ "end": 4895.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 459,
+ "start": 4895.64,
+ "end": 4899.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 460,
+ "start": 4899.2,
+ "end": 4900.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 461,
+ "start": 4900.46,
+ "end": 4906.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 462,
+ "start": 4906.88,
+ "end": 4922.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 463,
+ "start": 4922.74,
+ "end": 4933.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 464,
+ "start": 4933.7,
+ "end": 4936.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 465,
+ "start": 4936.58,
+ "end": 4945.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 466,
+ "start": 4945.59,
+ "end": 4951.73,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 467,
+ "start": 4951.73,
+ "end": 4958.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 468,
+ "start": 4958.02,
+ "end": 4962.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 469,
+ "start": 4962.34,
+ "end": 4978.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 470,
+ "start": 4978.28,
+ "end": 4983.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 471,
+ "start": 4983.88,
+ "end": 4997.33,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 472,
+ "start": 4997.33,
+ "end": 5001.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 473,
+ "start": 5001.74,
+ "end": 5006.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 474,
+ "start": 5006.4,
+ "end": 5007.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 475,
+ "start": 5007.28,
+ "end": 5009.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 476,
+ "start": 5009.38,
+ "end": 5015.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 477,
+ "start": 5015.02,
+ "end": 5021.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 478,
+ "start": 5021.38,
+ "end": 5022.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 479,
+ "start": 5022.18,
+ "end": 5025.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 480,
+ "start": 5025.64,
+ "end": 5026.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 481,
+ "start": 5026.7,
+ "end": 5032.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 482,
+ "start": 5032.18,
+ "end": 5045.89,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 483,
+ "start": 5045.89,
+ "end": 5051.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 484,
+ "start": 5051.14,
+ "end": 5052.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 485,
+ "start": 5052.18,
+ "end": 5054.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 486,
+ "start": 5054.46,
+ "end": 5056.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 487,
+ "start": 5056.98,
+ "end": 5058.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 488,
+ "start": 5058.04,
+ "end": 5067.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 489,
+ "start": 5067.74,
+ "end": 5078.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 490,
+ "start": 5078.74,
+ "end": 5084.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 491,
+ "start": 5084.59,
+ "end": 5096.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 492,
+ "start": 5096.46,
+ "end": 5098.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 493,
+ "start": 5098.12,
+ "end": 5098.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 494,
+ "start": 5098.88,
+ "end": 5099.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 495,
+ "start": 5099.86,
+ "end": 5102.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 496,
+ "start": 5102.28,
+ "end": 5114.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 497,
+ "start": 5114.3,
+ "end": 5121.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 498,
+ "start": 5121.86,
+ "end": 5124.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 499,
+ "start": 5124.4,
+ "end": 5128.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 500,
+ "start": 5128.44,
+ "end": 5130.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 501,
+ "start": 5130.04,
+ "end": 5137.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 502,
+ "start": 5137.88,
+ "end": 5146.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 503,
+ "start": 5146.6,
+ "end": 5149.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 504,
+ "start": 5149.12,
+ "end": 5149.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 505,
+ "start": 5149.9,
+ "end": 5152.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 506,
+ "start": 5152.62,
+ "end": 5159.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 507,
+ "start": 5159.12,
+ "end": 5170.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 508,
+ "start": 5170.92,
+ "end": 5179.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 509,
+ "start": 5179.48,
+ "end": 5179.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 510,
+ "start": 5179.96,
+ "end": 5189.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 511,
+ "start": 5189.68,
+ "end": 5197.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 512,
+ "start": 5197.06,
+ "end": 5205.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 513,
+ "start": 5205.5,
+ "end": 5213.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 514,
+ "start": 5213.78,
+ "end": 5217.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 515,
+ "start": 5217.84,
+ "end": 5225.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 516,
+ "start": 5225.34,
+ "end": 5240.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 517,
+ "start": 5240.58,
+ "end": 5242.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 518,
+ "start": 5242.98,
+ "end": 5246.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 519,
+ "start": 5246.82,
+ "end": 5249.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 520,
+ "start": 5249.62,
+ "end": 5251.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 521,
+ "start": 5251.66,
+ "end": 5254.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 522,
+ "start": 5254.84,
+ "end": 5262.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 523,
+ "start": 5262.9,
+ "end": 5266.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 524,
+ "start": 5266.8,
+ "end": 5281.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 525,
+ "start": 5281.15,
+ "end": 5289.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 526,
+ "start": 5289.38,
+ "end": 5297.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 527,
+ "start": 5297.06,
+ "end": 5300.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 528,
+ "start": 5300.59,
+ "end": 5303.77,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 529,
+ "start": 5303.77,
+ "end": 5308.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 530,
+ "start": 5308.15,
+ "end": 5329.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 531,
+ "start": 5329.86,
+ "end": 5333.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 532,
+ "start": 5333.72,
+ "end": 5337.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 533,
+ "start": 5337.64,
+ "end": 5339.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 534,
+ "start": 5339.2,
+ "end": 5340.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 535,
+ "start": 5340.28,
+ "end": 5340.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 536,
+ "start": 5340.7,
+ "end": 5349.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 537,
+ "start": 5349.56,
+ "end": 5352.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 538,
+ "start": 5352.18,
+ "end": 5354.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 539,
+ "start": 5354.3,
+ "end": 5363.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 540,
+ "start": 5363.12,
+ "end": 5365.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 541,
+ "start": 5365.86,
+ "end": 5373.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 542,
+ "start": 5373.46,
+ "end": 5376.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 543,
+ "start": 5376.72,
+ "end": 5385.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 544,
+ "start": 5385.54,
+ "end": 5413.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 545,
+ "start": 5413.34,
+ "end": 5416.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 546,
+ "start": 5416.04,
+ "end": 5417.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 547,
+ "start": 5417.02,
+ "end": 5425.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 548,
+ "start": 5425.7,
+ "end": 5430.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 549,
+ "start": 5430.2,
+ "end": 5431.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 550,
+ "start": 5431.9,
+ "end": 5435.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 551,
+ "start": 5435.3,
+ "end": 5450.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 552,
+ "start": 5450.64,
+ "end": 5453.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 553,
+ "start": 5453.38,
+ "end": 5455.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 554,
+ "start": 5455.14,
+ "end": 5461.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 555,
+ "start": 5461.02,
+ "end": 5467.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 556,
+ "start": 5467.26,
+ "end": 5469.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 557,
+ "start": 5469.8,
+ "end": 5473.91,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 558,
+ "start": 5473.91,
+ "end": 5479.29,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 559,
+ "start": 5479.29,
+ "end": 5484.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 560,
+ "start": 5484.76,
+ "end": 5491,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 561,
+ "start": 5491,
+ "end": 5493.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 562,
+ "start": 5493.6,
+ "end": 5502,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 563,
+ "start": 5502,
+ "end": 5509.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 564,
+ "start": 5509.5,
+ "end": 5516.89,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 565,
+ "start": 5516.89,
+ "end": 5519.53,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 566,
+ "start": 5519.53,
+ "end": 5520.87,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 567,
+ "start": 5520.87,
+ "end": 5521.39,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 568,
+ "start": 5521.39,
+ "end": 5522.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 569,
+ "start": 5522.67,
+ "end": 5529.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 570,
+ "start": 5529.92,
+ "end": 5530.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 571,
+ "start": 5530.78,
+ "end": 5532.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 572,
+ "start": 5532.5,
+ "end": 5538.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 573,
+ "start": 5538.74,
+ "end": 5544.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 574,
+ "start": 5544.94,
+ "end": 5548.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 575,
+ "start": 5548.1,
+ "end": 5552.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 576,
+ "start": 5552.72,
+ "end": 5557.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 577,
+ "start": 5557.06,
+ "end": 5567.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 578,
+ "start": 5567.2,
+ "end": 5570.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 579,
+ "start": 5570.7,
+ "end": 5572.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 580,
+ "start": 5572.36,
+ "end": 5574.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 581,
+ "start": 5574.8,
+ "end": 5577.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 582,
+ "start": 5577.4,
+ "end": 5584.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 583,
+ "start": 5584.78,
+ "end": 5585.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 584,
+ "start": 5585.84,
+ "end": 5595.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 585,
+ "start": 5595.96,
+ "end": 5606.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 586,
+ "start": 5606.52,
+ "end": 5608.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 587,
+ "start": 5608.42,
+ "end": 5613.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 588,
+ "start": 5613.4,
+ "end": 5625.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 589,
+ "start": 5625.42,
+ "end": 5629.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 590,
+ "start": 5629.36,
+ "end": 5632.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 591,
+ "start": 5632.46,
+ "end": 5639.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 592,
+ "start": 5639.05,
+ "end": 5641.17,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 593,
+ "start": 5641.17,
+ "end": 5643.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 594,
+ "start": 5643.15,
+ "end": 5646.31,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 595,
+ "start": 5646.31,
+ "end": 5649.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 596,
+ "start": 5649.07,
+ "end": 5653.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 597,
+ "start": 5653.24,
+ "end": 5662.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 598,
+ "start": 5662.56,
+ "end": 5665.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 599,
+ "start": 5665.3,
+ "end": 5671.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 600,
+ "start": 5671.28,
+ "end": 5676.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 601,
+ "start": 5676.58,
+ "end": 5685.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 602,
+ "start": 5685.74,
+ "end": 5693.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 603,
+ "start": 5693.68,
+ "end": 5694.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 604,
+ "start": 5694.82,
+ "end": 5698.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 605,
+ "start": 5698.92,
+ "end": 5704.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 606,
+ "start": 5704.38,
+ "end": 5712.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 607,
+ "start": 5712.96,
+ "end": 5714.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 608,
+ "start": 5714.4,
+ "end": 5723.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 609,
+ "start": 5723.26,
+ "end": 5726.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 610,
+ "start": 5726.04,
+ "end": 5738.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 611,
+ "start": 5738.36,
+ "end": 5751.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 612,
+ "start": 5751.56,
+ "end": 5755.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 613,
+ "start": 5755.7,
+ "end": 5761.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 614,
+ "start": 5761.14,
+ "end": 5764.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 615,
+ "start": 5764.52,
+ "end": 5768.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 616,
+ "start": 5768.52,
+ "end": 5771.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 617,
+ "start": 5771.74,
+ "end": 5772.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 618,
+ "start": 5772.82,
+ "end": 5774.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 619,
+ "start": 5774.26,
+ "end": 5776,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 620,
+ "start": 5776,
+ "end": 5782.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 621,
+ "start": 5782.6,
+ "end": 5802.71,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 622,
+ "start": 5802.71,
+ "end": 5807.77,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 623,
+ "start": 5807.77,
+ "end": 5810.55,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 624,
+ "start": 5810.55,
+ "end": 5814.21,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 625,
+ "start": 5814.21,
+ "end": 5819.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 626,
+ "start": 5819.1,
+ "end": 5834.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 627,
+ "start": 5834.24,
+ "end": 5839.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 628,
+ "start": 5839.22,
+ "end": 5841.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 629,
+ "start": 5841.94,
+ "end": 5851.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 630,
+ "start": 5851.92,
+ "end": 5856.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 631,
+ "start": 5856.98,
+ "end": 5865.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 632,
+ "start": 5865.88,
+ "end": 5872.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 633,
+ "start": 5872.84,
+ "end": 5880.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 634,
+ "start": 5880.36,
+ "end": 5889.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 635,
+ "start": 5889.7,
+ "end": 5897.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 636,
+ "start": 5897.32,
+ "end": 5902.41,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 637,
+ "start": 5902.41,
+ "end": 5907.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 638,
+ "start": 5907.67,
+ "end": 5910.71,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 639,
+ "start": 5910.71,
+ "end": 5912.29,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 640,
+ "start": 5912.29,
+ "end": 5913.29,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 641,
+ "start": 5913.29,
+ "end": 5924.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 642,
+ "start": 5924.2,
+ "end": 5927.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 643,
+ "start": 5927.14,
+ "end": 5933.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 644,
+ "start": 5933.82,
+ "end": 5939.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 645,
+ "start": 5939.38,
+ "end": 5956.75,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 646,
+ "start": 5956.75,
+ "end": 5965.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 647,
+ "start": 5965.56,
+ "end": 5967.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 648,
+ "start": 5967.9,
+ "end": 5982.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 649,
+ "start": 5982.64,
+ "end": 5987.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 650,
+ "start": 5987.28,
+ "end": 5992.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 651,
+ "start": 5992.12,
+ "end": 6000.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 652,
+ "start": 6000.08,
+ "end": 6007.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 653,
+ "start": 6007.44,
+ "end": 6014.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 654,
+ "start": 6014.82,
+ "end": 6025.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 655,
+ "start": 6025.72,
+ "end": 6028.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 656,
+ "start": 6028.08,
+ "end": 6030.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 657,
+ "start": 6030.2,
+ "end": 6032.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 658,
+ "start": 6032.14,
+ "end": 6032.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 659,
+ "start": 6032.84,
+ "end": 6046.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 660,
+ "start": 6046.56,
+ "end": 6054.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 661,
+ "start": 6054.18,
+ "end": 6056.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 662,
+ "start": 6056.64,
+ "end": 6064.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 663,
+ "start": 6064.54,
+ "end": 6065.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 664,
+ "start": 6065.18,
+ "end": 6070.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 665,
+ "start": 6070.82,
+ "end": 6077.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 666,
+ "start": 6077.04,
+ "end": 6084.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 667,
+ "start": 6084.6,
+ "end": 6085.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 668,
+ "start": 6085.66,
+ "end": 6086.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 669,
+ "start": 6086.92,
+ "end": 6090.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 670,
+ "start": 6090.56,
+ "end": 6102.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 671,
+ "start": 6102.54,
+ "end": 6111.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 672,
+ "start": 6111.64,
+ "end": 6121.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 673,
+ "start": 6121.67,
+ "end": 6126.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 674,
+ "start": 6126.69,
+ "end": 6130.25,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 675,
+ "start": 6130.25,
+ "end": 6131.83,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 676,
+ "start": 6131.83,
+ "end": 6133.29,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 677,
+ "start": 6133.29,
+ "end": 6137.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 678,
+ "start": 6137.2,
+ "end": 6138.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 679,
+ "start": 6138.64,
+ "end": 6140.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 680,
+ "start": 6140.58,
+ "end": 6151.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 681,
+ "start": 6151.72,
+ "end": 6153.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 682,
+ "start": 6153.14,
+ "end": 6158.61,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 683,
+ "start": 6158.61,
+ "end": 6163.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 684,
+ "start": 6163.01,
+ "end": 6172.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 685,
+ "start": 6172.34,
+ "end": 6183.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 686,
+ "start": 6183.72,
+ "end": 6190.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 687,
+ "start": 6190.02,
+ "end": 6193.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 688,
+ "start": 6193.46,
+ "end": 6195.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 689,
+ "start": 6195.26,
+ "end": 6197.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 690,
+ "start": 6197.48,
+ "end": 6199.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 691,
+ "start": 6199.38,
+ "end": 6201.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 692,
+ "start": 6201.94,
+ "end": 6203.85,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 693,
+ "start": 6203.85,
+ "end": 6208.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 694,
+ "start": 6208.05,
+ "end": 6220.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 695,
+ "start": 6220.44,
+ "end": 6227.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 696,
+ "start": 6227.42,
+ "end": 6234.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 697,
+ "start": 6234.18,
+ "end": 6237.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 698,
+ "start": 6237.96,
+ "end": 6240.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 699,
+ "start": 6240.16,
+ "end": 6246.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 700,
+ "start": 6246.64,
+ "end": 6255.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 701,
+ "start": 6255.68,
+ "end": 6268,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 702,
+ "start": 6268,
+ "end": 6271.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 703,
+ "start": 6271.1,
+ "end": 6276.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 704,
+ "start": 6276.8,
+ "end": 6280.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 705,
+ "start": 6280.94,
+ "end": 6284.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 706,
+ "start": 6284.44,
+ "end": 6296.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 707,
+ "start": 6296.22,
+ "end": 6304.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 708,
+ "start": 6304.48,
+ "end": 6318.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 709,
+ "start": 6318.72,
+ "end": 6324.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 710,
+ "start": 6324.92,
+ "end": 6333.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 711,
+ "start": 6333.3,
+ "end": 6340.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 712,
+ "start": 6340.82,
+ "end": 6354.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 713,
+ "start": 6354.64,
+ "end": 6357.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 714,
+ "start": 6357.16,
+ "end": 6393,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 715,
+ "start": 6393,
+ "end": 6394.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 716,
+ "start": 6394.52,
+ "end": 6403.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 717,
+ "start": 6403.7,
+ "end": 6409.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 718,
+ "start": 6409.26,
+ "end": 6410.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 719,
+ "start": 6410.6,
+ "end": 6410.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 720,
+ "start": 6410.82,
+ "end": 6417.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 721,
+ "start": 6417.12,
+ "end": 6424.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 722,
+ "start": 6424.24,
+ "end": 6430.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 723,
+ "start": 6430.38,
+ "end": 6431.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 724,
+ "start": 6431.74,
+ "end": 6435.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 725,
+ "start": 6435.64,
+ "end": 6438.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 726,
+ "start": 6438.28,
+ "end": 6463.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 727,
+ "start": 6463.7,
+ "end": 6467.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 728,
+ "start": 6467.88,
+ "end": 6472.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 729,
+ "start": 6472.16,
+ "end": 6480.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 730,
+ "start": 6480.44,
+ "end": 6483.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 731,
+ "start": 6483.78,
+ "end": 6490.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 732,
+ "start": 6490.08,
+ "end": 6496.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 733,
+ "start": 6496.74,
+ "end": 6502.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 734,
+ "start": 6502.12,
+ "end": 6514.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 735,
+ "start": 6514.32,
+ "end": 6528.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 736,
+ "start": 6528.1,
+ "end": 6530.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 737,
+ "start": 6530.86,
+ "end": 6546.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 738,
+ "start": 6546.58,
+ "end": 6554.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 739,
+ "start": 6554.68,
+ "end": 6564.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 740,
+ "start": 6564.5,
+ "end": 6584.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 741,
+ "start": 6584.16,
+ "end": 6589.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 742,
+ "start": 6589.32,
+ "end": 6590.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 743,
+ "start": 6590.54,
+ "end": 6596.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 744,
+ "start": 6596.84,
+ "end": 6604.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 745,
+ "start": 6604.14,
+ "end": 6605.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 746,
+ "start": 6605.62,
+ "end": 6622.47,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 747,
+ "start": 6622.47,
+ "end": 6633.71,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 748,
+ "start": 6633.71,
+ "end": 6635.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 749,
+ "start": 6635.92,
+ "end": 6641.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 750,
+ "start": 6641.7,
+ "end": 6645.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 751,
+ "start": 6645.88,
+ "end": 6650.81,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 752,
+ "start": 6650.81,
+ "end": 6654.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 753,
+ "start": 6654.07,
+ "end": 6663.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 754,
+ "start": 6663.14,
+ "end": 6671.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 755,
+ "start": 6671.96,
+ "end": 6678.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 756,
+ "start": 6678.46,
+ "end": 6684.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 757,
+ "start": 6684.04,
+ "end": 6690.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 758,
+ "start": 6690.26,
+ "end": 6692.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 759,
+ "start": 6692.18,
+ "end": 6694.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 760,
+ "start": 6694.14,
+ "end": 6699.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 761,
+ "start": 6699.22,
+ "end": 6703,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 762,
+ "start": 6703,
+ "end": 6705.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 763,
+ "start": 6705.16,
+ "end": 6708.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 764,
+ "start": 6708.42,
+ "end": 6719.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 765,
+ "start": 6719.16,
+ "end": 6723.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 766,
+ "start": 6723.06,
+ "end": 6727.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 767,
+ "start": 6727.34,
+ "end": 6728.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 768,
+ "start": 6728.96,
+ "end": 6730.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 769,
+ "start": 6730.64,
+ "end": 6733.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 770,
+ "start": 6733.96,
+ "end": 6739.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 771,
+ "start": 6739.92,
+ "end": 6744.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 772,
+ "start": 6744.86,
+ "end": 6752.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 773,
+ "start": 6752.6,
+ "end": 6754.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 774,
+ "start": 6754.48,
+ "end": 6761.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 775,
+ "start": 6761.16,
+ "end": 6778.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 776,
+ "start": 6778.28,
+ "end": 6779.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 777,
+ "start": 6779.3,
+ "end": 6790.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 778,
+ "start": 6790.48,
+ "end": 6792.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 779,
+ "start": 6792.46,
+ "end": 6802.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 780,
+ "start": 6802.26,
+ "end": 6815.03,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 781,
+ "start": 6815.03,
+ "end": 6816.91,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 782,
+ "start": 6816.91,
+ "end": 6830.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 783,
+ "start": 6830.52,
+ "end": 6839.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 784,
+ "start": 6839.12,
+ "end": 6842.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 785,
+ "start": 6842.72,
+ "end": 6853.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 786,
+ "start": 6853.12,
+ "end": 6876.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 787,
+ "start": 6876.4,
+ "end": 6881.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 788,
+ "start": 6881.5,
+ "end": 6889.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 789,
+ "start": 6889.38,
+ "end": 6899.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 790,
+ "start": 6899.8,
+ "end": 6905.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 791,
+ "start": 6905.26,
+ "end": 6906.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 792,
+ "start": 6906.48,
+ "end": 6912.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 793,
+ "start": 6912.46,
+ "end": 6917.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 794,
+ "start": 6917.46,
+ "end": 6919.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 795,
+ "start": 6919.34,
+ "end": 6925.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 796,
+ "start": 6925.9,
+ "end": 6932.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 797,
+ "start": 6932.5,
+ "end": 6942.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 798,
+ "start": 6942.94,
+ "end": 6944.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 799,
+ "start": 6944.68,
+ "end": 6951.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 800,
+ "start": 6951.92,
+ "end": 6955.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 801,
+ "start": 6955.06,
+ "end": 6955.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 802,
+ "start": 6955.66,
+ "end": 6962.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 803,
+ "start": 6962.66,
+ "end": 6968.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 804,
+ "start": 6968.22,
+ "end": 6974.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 805,
+ "start": 6974.8,
+ "end": 6976.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 806,
+ "start": 6976.64,
+ "end": 6983.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 807,
+ "start": 6983.48,
+ "end": 6993.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 808,
+ "start": 6993.34,
+ "end": 6999.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 809,
+ "start": 6999.74,
+ "end": 7009.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 810,
+ "start": 7009.94,
+ "end": 7015.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 811,
+ "start": 7015.32,
+ "end": 7028.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 812,
+ "start": 7028.1,
+ "end": 7030.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 813,
+ "start": 7030.4,
+ "end": 7034.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 814,
+ "start": 7034.84,
+ "end": 7036.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 815,
+ "start": 7036.92,
+ "end": 7041.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 816,
+ "start": 7041.44,
+ "end": 7044.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 817,
+ "start": 7044.62,
+ "end": 7052.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 818,
+ "start": 7052.32,
+ "end": 7056.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 819,
+ "start": 7056.62,
+ "end": 7066.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 820,
+ "start": 7066.42,
+ "end": 7067.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 821,
+ "start": 7067.78,
+ "end": 7071.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 822,
+ "start": 7071.56,
+ "end": 7072.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 823,
+ "start": 7072.92,
+ "end": 7076.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 824,
+ "start": 7076.2,
+ "end": 7078.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 825,
+ "start": 7078.9,
+ "end": 7085.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 826,
+ "start": 7085.32,
+ "end": 7086.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 827,
+ "start": 7086.86,
+ "end": 7092.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 828,
+ "start": 7092.24,
+ "end": 7093.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 829,
+ "start": 7093.88,
+ "end": 7098.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 830,
+ "start": 7098.5,
+ "end": 7112.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 831,
+ "start": 7112.16,
+ "end": 7136.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 832,
+ "start": 7136.04,
+ "end": 7150.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 833,
+ "start": 7150.88,
+ "end": 7154.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 834,
+ "start": 7154.44,
+ "end": 7156.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 835,
+ "start": 7156.48,
+ "end": 7194.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 836,
+ "start": 7194.52,
+ "end": 7195.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 837,
+ "start": 7195.52,
+ "end": 7204.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 838,
+ "start": 7204.16,
+ "end": 7220.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 839,
+ "start": 7220.8,
+ "end": 7227.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 840,
+ "start": 7227.26,
+ "end": 7236.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 841,
+ "start": 7236.62,
+ "end": 7240.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 842,
+ "start": 7240.68,
+ "end": 7270.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 843,
+ "start": 7270.14,
+ "end": 7277.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 844,
+ "start": 7277.7,
+ "end": 7289.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 845,
+ "start": 7289.72,
+ "end": 7300.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 846,
+ "start": 7300.06,
+ "end": 7309.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 847,
+ "start": 7309.54,
+ "end": 7318.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 848,
+ "start": 7318.58,
+ "end": 7329.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 849,
+ "start": 7329.78,
+ "end": 7353.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 850,
+ "start": 7353.78,
+ "end": 7356.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 851,
+ "start": 7356.88,
+ "end": 7358.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 852,
+ "start": 7358.5,
+ "end": 7360.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 853,
+ "start": 7360.96,
+ "end": 7365.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 854,
+ "start": 7365.88,
+ "end": 7370.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 855,
+ "start": 7370.34,
+ "end": 7379.85,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 856,
+ "start": 7379.85,
+ "end": 7381.49,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 857,
+ "start": 7381.49,
+ "end": 7389.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 858,
+ "start": 7389.54,
+ "end": 7400.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 859,
+ "start": 7400.8,
+ "end": 7401.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 860,
+ "start": 7401.78,
+ "end": 7403.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 861,
+ "start": 7403.02,
+ "end": 7411.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 862,
+ "start": 7411.14,
+ "end": 7413.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 863,
+ "start": 7413.08,
+ "end": 7432.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 864,
+ "start": 7432.16,
+ "end": 7439.09,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 865,
+ "start": 7439.09,
+ "end": 7442.47,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 866,
+ "start": 7442.47,
+ "end": 7445.87,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 867,
+ "start": 7445.87,
+ "end": 7446.79,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 868,
+ "start": 7446.79,
+ "end": 7448.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 869,
+ "start": 7448.48,
+ "end": 7450.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 870,
+ "start": 7450.9,
+ "end": 7451.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 871,
+ "start": 7451.24,
+ "end": 7456.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 872,
+ "start": 7456.8,
+ "end": 7461.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 873,
+ "start": 7461.86,
+ "end": 7463.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 874,
+ "start": 7463.92,
+ "end": 7465.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 875,
+ "start": 7465.9,
+ "end": 7469.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 876,
+ "start": 7469.22,
+ "end": 7474.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 877,
+ "start": 7474.5,
+ "end": 7476.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 878,
+ "start": 7476.44,
+ "end": 7478.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 879,
+ "start": 7478.54,
+ "end": 7489.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 880,
+ "start": 7489.58,
+ "end": 7493.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 881,
+ "start": 7493.34,
+ "end": 7503.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 882,
+ "start": 7503.59,
+ "end": 7507.83,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 883,
+ "start": 7507.83,
+ "end": 7509.51,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 884,
+ "start": 7509.51,
+ "end": 7515.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 885,
+ "start": 7515.9,
+ "end": 7532.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 886,
+ "start": 7532.04,
+ "end": 7546.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 887,
+ "start": 7546.38,
+ "end": 7554.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 888,
+ "start": 7554.72,
+ "end": 7566.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 889,
+ "start": 7566.42,
+ "end": 7583.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 890,
+ "start": 7583.68,
+ "end": 7599.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 891,
+ "start": 7599.62,
+ "end": 7601.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 892,
+ "start": 7601.34,
+ "end": 7604.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 893,
+ "start": 7604.94,
+ "end": 7613.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 894,
+ "start": 7613.64,
+ "end": 7618.09,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 895,
+ "start": 7618.09,
+ "end": 7623.37,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 896,
+ "start": 7623.37,
+ "end": 7628.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 897,
+ "start": 7628.59,
+ "end": 7629.19,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 898,
+ "start": 7629.19,
+ "end": 7634.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 899,
+ "start": 7634.84,
+ "end": 7641.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 900,
+ "start": 7641.96,
+ "end": 7650.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 901,
+ "start": 7650.5,
+ "end": 7657.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 902,
+ "start": 7657.16,
+ "end": 7664.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 903,
+ "start": 7664.12,
+ "end": 7675.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 904,
+ "start": 7675.82,
+ "end": 7680.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 905,
+ "start": 7680.24,
+ "end": 7684.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 906,
+ "start": 7684.62,
+ "end": 7688.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 907,
+ "start": 7688.6,
+ "end": 7692.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 908,
+ "start": 7692.8,
+ "end": 7697.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 909,
+ "start": 7697.22,
+ "end": 7704.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 910,
+ "start": 7704.8,
+ "end": 7705.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 911,
+ "start": 7705.86,
+ "end": 7710.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 912,
+ "start": 7710.72,
+ "end": 7720.09,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 913,
+ "start": 7720.09,
+ "end": 7725.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 914,
+ "start": 7725.07,
+ "end": 7740,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 915,
+ "start": 7740,
+ "end": 7748.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 916,
+ "start": 7748.68,
+ "end": 7750.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 917,
+ "start": 7750.32,
+ "end": 7756.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 918,
+ "start": 7756.08,
+ "end": 7764.63,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 919,
+ "start": 7764.63,
+ "end": 7768.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 920,
+ "start": 7768.05,
+ "end": 7774.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 921,
+ "start": 7774.34,
+ "end": 7791.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 922,
+ "start": 7791.7,
+ "end": 7795.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 923,
+ "start": 7795.58,
+ "end": 7798.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 924,
+ "start": 7798.02,
+ "end": 7806.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 925,
+ "start": 7806.74,
+ "end": 7937.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 926,
+ "start": 7937.2,
+ "end": 7978.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 927,
+ "start": 7978.76,
+ "end": 8097.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 928,
+ "start": 8097.68,
+ "end": 8224.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 929,
+ "start": 8224.58,
+ "end": 8322.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 930,
+ "start": 8322.6,
+ "end": 8323.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 931,
+ "start": 8323.94,
+ "end": 8462.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 932,
+ "start": 8462.6,
+ "end": 8468.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 933,
+ "start": 8468.8,
+ "end": 8486.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 934,
+ "start": 8486.04,
+ "end": 8500.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 935,
+ "start": 8500.46,
+ "end": 8504.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 936,
+ "start": 8504.12,
+ "end": 8509.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 937,
+ "start": 8509.82,
+ "end": 8513.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 938,
+ "start": 8513.44,
+ "end": 8520.13,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 939,
+ "start": 8520.13,
+ "end": 8522.41,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 940,
+ "start": 8522.41,
+ "end": 8545.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 941,
+ "start": 8545.86,
+ "end": 8557.81,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 942,
+ "start": 8557.81,
+ "end": 8559.99,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 943,
+ "start": 8559.99,
+ "end": 8570.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 944,
+ "start": 8570.32,
+ "end": 8574.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 945,
+ "start": 8574.78,
+ "end": 8576.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 946,
+ "start": 8576.46,
+ "end": 8579.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 947,
+ "start": 8579.12,
+ "end": 8588.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 948,
+ "start": 8588.42,
+ "end": 8594.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 949,
+ "start": 8594.52,
+ "end": 8600.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 950,
+ "start": 8600.88,
+ "end": 8602.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 951,
+ "start": 8602.58,
+ "end": 8605.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 952,
+ "start": 8605.28,
+ "end": 8612.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 953,
+ "start": 8612.24,
+ "end": 8614.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 954,
+ "start": 8614.26,
+ "end": 8616.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 955,
+ "start": 8616.58,
+ "end": 8618.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 956,
+ "start": 8618.84,
+ "end": 8622.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 957,
+ "start": 8622.5,
+ "end": 8625.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 958,
+ "start": 8625.84,
+ "end": 8627.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 959,
+ "start": 8627.96,
+ "end": 8634.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 960,
+ "start": 8634.64,
+ "end": 8641.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 961,
+ "start": 8641.5,
+ "end": 8644.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 962,
+ "start": 8644.6,
+ "end": 8649.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 963,
+ "start": 8649.98,
+ "end": 8651.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 964,
+ "start": 8651.86,
+ "end": 8652.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 965,
+ "start": 8652.72,
+ "end": 8662.21,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 966,
+ "start": 8662.21,
+ "end": 8664.49,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 967,
+ "start": 8664.49,
+ "end": 8672.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 968,
+ "start": 8672.56,
+ "end": 8673.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 969,
+ "start": 8673.72,
+ "end": 8682.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 970,
+ "start": 8682.96,
+ "end": 8691.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 971,
+ "start": 8691.98,
+ "end": 8695.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 972,
+ "start": 8695.52,
+ "end": 8703.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 973,
+ "start": 8703.78,
+ "end": 8714.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 974,
+ "start": 8714.78,
+ "end": 8733.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 975,
+ "start": 8733.92,
+ "end": 8750.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 976,
+ "start": 8750.02,
+ "end": 8754.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 977,
+ "start": 8754.2,
+ "end": 8760.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 978,
+ "start": 8760.18,
+ "end": 8766.49,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 979,
+ "start": 8766.49,
+ "end": 8776.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 980,
+ "start": 8776.84,
+ "end": 8786.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 981,
+ "start": 8786.72,
+ "end": 8791.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 982,
+ "start": 8791.36,
+ "end": 8801.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 983,
+ "start": 8801.38,
+ "end": 8805.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 984,
+ "start": 8805.14,
+ "end": 8815.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 985,
+ "start": 8815.44,
+ "end": 8823.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 986,
+ "start": 8823.02,
+ "end": 8825.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 987,
+ "start": 8825.94,
+ "end": 8833.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 988,
+ "start": 8833.52,
+ "end": 8843.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 989,
+ "start": 8843.88,
+ "end": 8848.99,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 990,
+ "start": 8848.99,
+ "end": 8859.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 991,
+ "start": 8859.04,
+ "end": 8863.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 992,
+ "start": 8863.42,
+ "end": 8866.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 993,
+ "start": 8866.44,
+ "end": 8873.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 994,
+ "start": 8873.64,
+ "end": 8875.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 995,
+ "start": 8875.2,
+ "end": 8881.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 996,
+ "start": 8881.74,
+ "end": 8891.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 997,
+ "start": 8891.36,
+ "end": 8894.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 998,
+ "start": 8894.5,
+ "end": 8895.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 999,
+ "start": 8895.82,
+ "end": 8897.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1000,
+ "start": 8897.84,
+ "end": 8899.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1001,
+ "start": 8899.42,
+ "end": 8904.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1002,
+ "start": 8904.72,
+ "end": 8906.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1003,
+ "start": 8906.34,
+ "end": 8908.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1004,
+ "start": 8908.72,
+ "end": 8920.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1005,
+ "start": 8920.22,
+ "end": 8925.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1006,
+ "start": 8925.8,
+ "end": 8935.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1007,
+ "start": 8935.24,
+ "end": 8941.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1008,
+ "start": 8941.36,
+ "end": 8948.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1009,
+ "start": 8948.88,
+ "end": 8953.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1010,
+ "start": 8953.84,
+ "end": 8963.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1011,
+ "start": 8963.28,
+ "end": 8964.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1012,
+ "start": 8964.74,
+ "end": 8975.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1013,
+ "start": 8975.36,
+ "end": 8981.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1014,
+ "start": 8981.92,
+ "end": 8984.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1015,
+ "start": 8984.54,
+ "end": 8991.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1016,
+ "start": 8991.74,
+ "end": 8999.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1017,
+ "start": 8999.44,
+ "end": 9013.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1018,
+ "start": 9013.92,
+ "end": 9016,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1019,
+ "start": 9016,
+ "end": 9024.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1020,
+ "start": 9024.48,
+ "end": 9030.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1021,
+ "start": 9030.68,
+ "end": 9037.53,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1022,
+ "start": 9037.53,
+ "end": 9040.43,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1023,
+ "start": 9040.43,
+ "end": 9055.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1024,
+ "start": 9055.12,
+ "end": 9067.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1025,
+ "start": 9067.78,
+ "end": 9079.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1026,
+ "start": 9079.3,
+ "end": 9083.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1027,
+ "start": 9083.32,
+ "end": 9092.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1028,
+ "start": 9092.42,
+ "end": 9104.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1029,
+ "start": 9104.5,
+ "end": 9106.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1030,
+ "start": 9106.48,
+ "end": 9118.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1031,
+ "start": 9118.62,
+ "end": 9131.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1032,
+ "start": 9131.86,
+ "end": 9132.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1033,
+ "start": 9132.4,
+ "end": 9138.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1034,
+ "start": 9138.34,
+ "end": 9144.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1035,
+ "start": 9144.6,
+ "end": 9152.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1036,
+ "start": 9152.04,
+ "end": 9154.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1037,
+ "start": 9154.74,
+ "end": 9168.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1038,
+ "start": 9168.52,
+ "end": 9173.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1039,
+ "start": 9173.68,
+ "end": 9181.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1040,
+ "start": 9181.58,
+ "end": 9195.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1041,
+ "start": 9195.8,
+ "end": 9200.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1042,
+ "start": 9200.68,
+ "end": 9204.61,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1043,
+ "start": 9204.61,
+ "end": 9212.25,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1044,
+ "start": 9212.25,
+ "end": 9213.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1045,
+ "start": 9213.92,
+ "end": 9231.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1046,
+ "start": 9231.69,
+ "end": 9233.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1047,
+ "start": 9233.05,
+ "end": 9242.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1048,
+ "start": 9242.88,
+ "end": 9250.63,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1049,
+ "start": 9250.63,
+ "end": 9252.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1050,
+ "start": 9252.05,
+ "end": 9255.25,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1051,
+ "start": 9255.25,
+ "end": 9259.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1052,
+ "start": 9259.04,
+ "end": 9266.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1053,
+ "start": 9266.4,
+ "end": 9272.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1054,
+ "start": 9272.66,
+ "end": 9276.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1055,
+ "start": 9276.36,
+ "end": 9282.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1056,
+ "start": 9282.16,
+ "end": 9287.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1057,
+ "start": 9287.26,
+ "end": 9296.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1058,
+ "start": 9296.12,
+ "end": 9298.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1059,
+ "start": 9298.04,
+ "end": 9308.89,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1060,
+ "start": 9308.89,
+ "end": 9313.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1061,
+ "start": 9313.96,
+ "end": 9315.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1062,
+ "start": 9315.36,
+ "end": 9323.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1063,
+ "start": 9323.16,
+ "end": 9333.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1064,
+ "start": 9333.48,
+ "end": 9334.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1065,
+ "start": 9334.84,
+ "end": 9338.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1066,
+ "start": 9338.82,
+ "end": 9341.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1067,
+ "start": 9341.8,
+ "end": 9352.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1068,
+ "start": 9352.4,
+ "end": 9357.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1069,
+ "start": 9357.93,
+ "end": 9366.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1070,
+ "start": 9366.15,
+ "end": 9381.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1071,
+ "start": 9381.44,
+ "end": 9382.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1072,
+ "start": 9382.96,
+ "end": 9389.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1073,
+ "start": 9389.4,
+ "end": 9400.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1074,
+ "start": 9400.34,
+ "end": 9406.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1075,
+ "start": 9406.56,
+ "end": 9416.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1076,
+ "start": 9416.1,
+ "end": 9421.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1077,
+ "start": 9421.08,
+ "end": 9430.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1078,
+ "start": 9430.69,
+ "end": 9431.21,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1079,
+ "start": 9431.21,
+ "end": 9445.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1080,
+ "start": 9445.92,
+ "end": 9451.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1081,
+ "start": 9451.2,
+ "end": 9457.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1082,
+ "start": 9457.2,
+ "end": 9459.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1083,
+ "start": 9459.86,
+ "end": 9465.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1084,
+ "start": 9465.64,
+ "end": 9472.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1085,
+ "start": 9472.62,
+ "end": 9479.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1086,
+ "start": 9479.16,
+ "end": 9485.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1087,
+ "start": 9485.67,
+ "end": 9488.11,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1088,
+ "start": 9488.11,
+ "end": 9492.73,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1089,
+ "start": 9492.73,
+ "end": 9497.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1090,
+ "start": 9497.08,
+ "end": 9500.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1091,
+ "start": 9500.42,
+ "end": 9509.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1092,
+ "start": 9509.04,
+ "end": 9512.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1093,
+ "start": 9512.12,
+ "end": 9518.87,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1094,
+ "start": 9518.87,
+ "end": 9521.41,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1095,
+ "start": 9521.41,
+ "end": 9524.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1096,
+ "start": 9524.69,
+ "end": 9527.39,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1097,
+ "start": 9527.39,
+ "end": 9531.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1098,
+ "start": 9531.86,
+ "end": 9535.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1099,
+ "start": 9535.52,
+ "end": 9539.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1100,
+ "start": 9539.7,
+ "end": 9542.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1101,
+ "start": 9542.06,
+ "end": 9546.77,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1102,
+ "start": 9546.77,
+ "end": 9554.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1103,
+ "start": 9554.48,
+ "end": 9557.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1104,
+ "start": 9557.06,
+ "end": 9561.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1105,
+ "start": 9561.5,
+ "end": 9567.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1106,
+ "start": 9567.18,
+ "end": 9568.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1107,
+ "start": 9568.24,
+ "end": 9570.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1108,
+ "start": 9570.68,
+ "end": 9572.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1109,
+ "start": 9572.2,
+ "end": 9580.37,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1110,
+ "start": 9580.37,
+ "end": 9587.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1111,
+ "start": 9587.07,
+ "end": 9591.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1112,
+ "start": 9591.07,
+ "end": 9600.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1113,
+ "start": 9600.52,
+ "end": 9603.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1114,
+ "start": 9603.84,
+ "end": 9606.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1115,
+ "start": 9606.76,
+ "end": 9624.47,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1116,
+ "start": 9624.47,
+ "end": 9628.79,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1117,
+ "start": 9628.79,
+ "end": 9642.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1118,
+ "start": 9642.02,
+ "end": 9653.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1119,
+ "start": 9653.3,
+ "end": 9658.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1120,
+ "start": 9658.84,
+ "end": 9667.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1121,
+ "start": 9667.42,
+ "end": 9675.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1122,
+ "start": 9675.22,
+ "end": 9686.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1123,
+ "start": 9686.06,
+ "end": 9692.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1124,
+ "start": 9692.9,
+ "end": 9698.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1125,
+ "start": 9698.66,
+ "end": 9703.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1126,
+ "start": 9703.54,
+ "end": 9704.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1127,
+ "start": 9704.92,
+ "end": 9706.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1128,
+ "start": 9706.1,
+ "end": 9720.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1129,
+ "start": 9720.22,
+ "end": 9726.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1130,
+ "start": 9726.6,
+ "end": 9732.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1131,
+ "start": 9732.66,
+ "end": 9739.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1132,
+ "start": 9739.46,
+ "end": 9745.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1133,
+ "start": 9745.02,
+ "end": 9755.83,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1134,
+ "start": 9755.83,
+ "end": 9763.91,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1135,
+ "start": 9763.91,
+ "end": 9766.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1136,
+ "start": 9766.86,
+ "end": 9777.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1137,
+ "start": 9777.46,
+ "end": 9784.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1138,
+ "start": 9784.2,
+ "end": 9787.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1139,
+ "start": 9787.48,
+ "end": 9792.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1140,
+ "start": 9792.02,
+ "end": 9795.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1141,
+ "start": 9795.84,
+ "end": 9799.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1142,
+ "start": 9799.1,
+ "end": 9814.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1143,
+ "start": 9814.52,
+ "end": 9825.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1144,
+ "start": 9825.14,
+ "end": 9837.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1145,
+ "start": 9837.36,
+ "end": 9842.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1146,
+ "start": 9842.18,
+ "end": 9847.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1147,
+ "start": 9847.62,
+ "end": 9851.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1148,
+ "start": 9851.18,
+ "end": 9856.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1149,
+ "start": 9856.48,
+ "end": 9867.25,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1150,
+ "start": 9867.25,
+ "end": 9871.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1151,
+ "start": 9871.04,
+ "end": 9872.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1152,
+ "start": 9872.1,
+ "end": 9873.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1153,
+ "start": 9873.24,
+ "end": 9877.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1154,
+ "start": 9877.38,
+ "end": 9883.63,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1155,
+ "start": 9883.63,
+ "end": 9887.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1156,
+ "start": 9887.67,
+ "end": 9894.23,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1157,
+ "start": 9894.23,
+ "end": 9896.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1158,
+ "start": 9896.22,
+ "end": 9900.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1159,
+ "start": 9900.06,
+ "end": 9905.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1160,
+ "start": 9905.36,
+ "end": 9910.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1161,
+ "start": 9910.01,
+ "end": 9911.57,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1162,
+ "start": 9911.57,
+ "end": 9914.91,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1163,
+ "start": 9914.91,
+ "end": 9919.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1164,
+ "start": 9919.32,
+ "end": 9920.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1165,
+ "start": 9920.08,
+ "end": 9921.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1166,
+ "start": 9921.02,
+ "end": 9921.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1167,
+ "start": 9921.92,
+ "end": 9922.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1168,
+ "start": 9922.28,
+ "end": 9924.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1169,
+ "start": 9924.14,
+ "end": 9929.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1170,
+ "start": 9929.46,
+ "end": 9931.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1171,
+ "start": 9931.08,
+ "end": 9933.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1172,
+ "start": 9933.64,
+ "end": 9937.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1173,
+ "start": 9937.18,
+ "end": 9941.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1174,
+ "start": 9941.02,
+ "end": 9949.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1175,
+ "start": 9949.9,
+ "end": 9963.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1176,
+ "start": 9963.56,
+ "end": 9972.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1177,
+ "start": 9972.28,
+ "end": 9982.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1178,
+ "start": 9982.14,
+ "end": 9984.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1179,
+ "start": 9984.98,
+ "end": 9986.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1180,
+ "start": 9986.12,
+ "end": 10026.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1181,
+ "start": 10026.04,
+ "end": 10032.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1182,
+ "start": 10032.76,
+ "end": 10034.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1183,
+ "start": 10034.64,
+ "end": 10037,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1184,
+ "start": 10037,
+ "end": 10039.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1185,
+ "start": 10039.88,
+ "end": 10047.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1186,
+ "start": 10047.16,
+ "end": 10058.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1187,
+ "start": 10058.74,
+ "end": 10071.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1188,
+ "start": 10071.68,
+ "end": 10080.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1189,
+ "start": 10080.96,
+ "end": 10085.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1190,
+ "start": 10085.56,
+ "end": 10090.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1191,
+ "start": 10090.08,
+ "end": 10097.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1192,
+ "start": 10097.04,
+ "end": 10106.11,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1193,
+ "start": 10106.11,
+ "end": 10117.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1194,
+ "start": 10117.06,
+ "end": 10128.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1195,
+ "start": 10128.26,
+ "end": 10139.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1196,
+ "start": 10139.02,
+ "end": 10142.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1197,
+ "start": 10142.5,
+ "end": 10145.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1198,
+ "start": 10145.9,
+ "end": 10150.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1199,
+ "start": 10150.52,
+ "end": 10154.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1200,
+ "start": 10154.98,
+ "end": 10161.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1201,
+ "start": 10161.22,
+ "end": 10167.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1202,
+ "start": 10167.26,
+ "end": 10169.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1203,
+ "start": 10169.08,
+ "end": 10179.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1204,
+ "start": 10179.82,
+ "end": 10184.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1205,
+ "start": 10184.08,
+ "end": 10189.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1206,
+ "start": 10189.04,
+ "end": 10206.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1207,
+ "start": 10206.68,
+ "end": 10218.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1208,
+ "start": 10218.16,
+ "end": 10221.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1209,
+ "start": 10221.98,
+ "end": 10229.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1210,
+ "start": 10229.36,
+ "end": 10235.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1211,
+ "start": 10235.5,
+ "end": 10250.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1212,
+ "start": 10250.34,
+ "end": 10260.83,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1213,
+ "start": 10260.83,
+ "end": 10267.55,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1214,
+ "start": 10267.55,
+ "end": 10274.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1215,
+ "start": 10274.4,
+ "end": 10277.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1216,
+ "start": 10277.22,
+ "end": 10286.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1217,
+ "start": 10286.08,
+ "end": 10289.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1218,
+ "start": 10289.96,
+ "end": 10295.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1219,
+ "start": 10295.74,
+ "end": 10299.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1220,
+ "start": 10299.84,
+ "end": 10303.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1221,
+ "start": 10303.92,
+ "end": 10306.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1222,
+ "start": 10306.6,
+ "end": 10315.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1223,
+ "start": 10315.1,
+ "end": 10316.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1224,
+ "start": 10316.12,
+ "end": 10327.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1225,
+ "start": 10327.52,
+ "end": 10329.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1226,
+ "start": 10329.66,
+ "end": 10331.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1227,
+ "start": 10331.02,
+ "end": 10346.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1228,
+ "start": 10346.88,
+ "end": 10348.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1229,
+ "start": 10348.78,
+ "end": 10350.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1230,
+ "start": 10350.84,
+ "end": 10355.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1231,
+ "start": 10355.34,
+ "end": 10357.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1232,
+ "start": 10357.84,
+ "end": 10360.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1233,
+ "start": 10360.76,
+ "end": 10371.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1234,
+ "start": 10371.6,
+ "end": 10377,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1235,
+ "start": 10377,
+ "end": 10392.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1236,
+ "start": 10392.54,
+ "end": 10394.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1237,
+ "start": 10394.44,
+ "end": 10406.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1238,
+ "start": 10406.54,
+ "end": 10409.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1239,
+ "start": 10409.46,
+ "end": 10416.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1240,
+ "start": 10416.66,
+ "end": 10423.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1241,
+ "start": 10423.56,
+ "end": 10426.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1242,
+ "start": 10426.34,
+ "end": 10431.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1243,
+ "start": 10431.56,
+ "end": 10434.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1244,
+ "start": 10434.9,
+ "end": 10436.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1245,
+ "start": 10436.08,
+ "end": 10445.47,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1246,
+ "start": 10445.47,
+ "end": 10451.19,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1247,
+ "start": 10451.19,
+ "end": 10454.11,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1248,
+ "start": 10454.11,
+ "end": 10462.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1249,
+ "start": 10462.1,
+ "end": 10469.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1250,
+ "start": 10469.12,
+ "end": 10472.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1251,
+ "start": 10472.7,
+ "end": 10475.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1252,
+ "start": 10475.94,
+ "end": 10479.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1253,
+ "start": 10479.4,
+ "end": 10488.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1254,
+ "start": 10488.84,
+ "end": 10495.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1255,
+ "start": 10495.36,
+ "end": 10497.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1256,
+ "start": 10497.82,
+ "end": 10499.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1257,
+ "start": 10499.42,
+ "end": 10504.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1258,
+ "start": 10504.54,
+ "end": 10507.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1259,
+ "start": 10507.42,
+ "end": 10520.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1260,
+ "start": 10520.36,
+ "end": 10529.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1261,
+ "start": 10529.02,
+ "end": 10536.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1262,
+ "start": 10536.94,
+ "end": 10546.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1263,
+ "start": 10546.56,
+ "end": 10566.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1264,
+ "start": 10566.04,
+ "end": 10575.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1265,
+ "start": 10575.58,
+ "end": 10576.73,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1266,
+ "start": 10576.73,
+ "end": 10583.45,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1267,
+ "start": 10583.45,
+ "end": 10587.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1268,
+ "start": 10587.42,
+ "end": 10593.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1269,
+ "start": 10593.5,
+ "end": 10596.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1270,
+ "start": 10596.6,
+ "end": 10598.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1271,
+ "start": 10598.92,
+ "end": 10603.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1272,
+ "start": 10603.02,
+ "end": 10604.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1273,
+ "start": 10604.92,
+ "end": 10607.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1274,
+ "start": 10607.76,
+ "end": 10614.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1275,
+ "start": 10614.7,
+ "end": 10631.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1276,
+ "start": 10631.4,
+ "end": 10632.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1277,
+ "start": 10632.72,
+ "end": 10646.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1278,
+ "start": 10646.15,
+ "end": 10648.43,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1279,
+ "start": 10648.43,
+ "end": 10657.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1280,
+ "start": 10657.44,
+ "end": 10662.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1281,
+ "start": 10662.78,
+ "end": 10674.75,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1282,
+ "start": 10674.75,
+ "end": 10680.89,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1283,
+ "start": 10680.89,
+ "end": 10683.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1284,
+ "start": 10683.01,
+ "end": 10684.33,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1285,
+ "start": 10684.33,
+ "end": 10686.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1286,
+ "start": 10686.84,
+ "end": 10690.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1287,
+ "start": 10690.68,
+ "end": 10703.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1288,
+ "start": 10703.72,
+ "end": 10708.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1289,
+ "start": 10708.7,
+ "end": 10712.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1290,
+ "start": 10712.12,
+ "end": 10716.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1291,
+ "start": 10716.9,
+ "end": 10718.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1292,
+ "start": 10718.84,
+ "end": 10725.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1293,
+ "start": 10725.72,
+ "end": 10730.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1294,
+ "start": 10730.46,
+ "end": 10735.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1295,
+ "start": 10735.6,
+ "end": 10745.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1296,
+ "start": 10745.76,
+ "end": 10746.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1297,
+ "start": 10746.54,
+ "end": 10751.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1298,
+ "start": 10751.18,
+ "end": 10761.51,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1299,
+ "start": 10761.51,
+ "end": 10763.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1300,
+ "start": 10763.07,
+ "end": 10770.21,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1301,
+ "start": 10770.21,
+ "end": 10781,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1302,
+ "start": 10781,
+ "end": 10783.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1303,
+ "start": 10783.02,
+ "end": 10786.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1304,
+ "start": 10786.68,
+ "end": 10792.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1305,
+ "start": 10792.2,
+ "end": 10798.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1306,
+ "start": 10798.5,
+ "end": 10812.61,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1307,
+ "start": 10812.61,
+ "end": 10823.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1308,
+ "start": 10823.82,
+ "end": 10849.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1309,
+ "start": 10849.4,
+ "end": 10851.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1310,
+ "start": 10851.3,
+ "end": 10867.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1311,
+ "start": 10867.9,
+ "end": 10876.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1312,
+ "start": 10876.54,
+ "end": 10879.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1313,
+ "start": 10879.74,
+ "end": 10883.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1314,
+ "start": 10883.36,
+ "end": 10901.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1315,
+ "start": 10901.54,
+ "end": 10903.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1316,
+ "start": 10903.88,
+ "end": 10908.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1317,
+ "start": 10908.32,
+ "end": 10914.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1318,
+ "start": 10914.38,
+ "end": 10916.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1319,
+ "start": 10916.02,
+ "end": 10919.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1320,
+ "start": 10919.68,
+ "end": 10923.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1321,
+ "start": 10923.2,
+ "end": 10926.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1322,
+ "start": 10926.74,
+ "end": 10934.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1323,
+ "start": 10934.02,
+ "end": 10949.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1324,
+ "start": 10949.56,
+ "end": 10959,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1325,
+ "start": 10959,
+ "end": 10962.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1326,
+ "start": 10962.86,
+ "end": 10964.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1327,
+ "start": 10964.76,
+ "end": 10966.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1328,
+ "start": 10966.54,
+ "end": 10968.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1329,
+ "start": 10968.4,
+ "end": 10979.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1330,
+ "start": 10979.08,
+ "end": 10991.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1331,
+ "start": 10991.06,
+ "end": 10992.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1332,
+ "start": 10992.7,
+ "end": 10994.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1333,
+ "start": 10994.6,
+ "end": 11001.25,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1334,
+ "start": 11001.25,
+ "end": 11018.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1335,
+ "start": 11018.68,
+ "end": 11034.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1336,
+ "start": 11034.88,
+ "end": 11042.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1337,
+ "start": 11042.98,
+ "end": 11052.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1338,
+ "start": 11052.66,
+ "end": 11073.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1339,
+ "start": 11073.12,
+ "end": 11076.25,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1340,
+ "start": 11076.25,
+ "end": 11077.17,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1341,
+ "start": 11077.17,
+ "end": 11079.83,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1342,
+ "start": 11079.83,
+ "end": 11092.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1343,
+ "start": 11092.02,
+ "end": 11100.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1344,
+ "start": 11100.76,
+ "end": 11121.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1345,
+ "start": 11121.15,
+ "end": 11131.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1346,
+ "start": 11131.22,
+ "end": 11136.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1347,
+ "start": 11136.12,
+ "end": 11147.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1348,
+ "start": 11147.84,
+ "end": 11149.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1349,
+ "start": 11149.86,
+ "end": 11158.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1350,
+ "start": 11158.1,
+ "end": 11163.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1351,
+ "start": 11163.76,
+ "end": 11166.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1352,
+ "start": 11166.74,
+ "end": 11179.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1353,
+ "start": 11179.5,
+ "end": 11182.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1354,
+ "start": 11182.92,
+ "end": 11191.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1355,
+ "start": 11191.86,
+ "end": 11197.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1356,
+ "start": 11197.88,
+ "end": 11201.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1357,
+ "start": 11201.68,
+ "end": 11218.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1358,
+ "start": 11218.9,
+ "end": 11226.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1359,
+ "start": 11226.7,
+ "end": 11230.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1360,
+ "start": 11230.5,
+ "end": 11236.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1361,
+ "start": 11236.64,
+ "end": 11244.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1362,
+ "start": 11244.52,
+ "end": 11259.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1363,
+ "start": 11259.2,
+ "end": 11262.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1364,
+ "start": 11262.64,
+ "end": 11274.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1365,
+ "start": 11274.18,
+ "end": 11318.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1366,
+ "start": 11318.2,
+ "end": 11324.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1367,
+ "start": 11324.48,
+ "end": 11342.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1368,
+ "start": 11342.7,
+ "end": 11355.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1369,
+ "start": 11355.72,
+ "end": 11372.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1370,
+ "start": 11372.9,
+ "end": 11375.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1371,
+ "start": 11375.52,
+ "end": 11379.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1372,
+ "start": 11379.18,
+ "end": 11383.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1373,
+ "start": 11383.26,
+ "end": 11388.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1374,
+ "start": 11388.4,
+ "end": 11396.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1375,
+ "start": 11396.78,
+ "end": 11404.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1376,
+ "start": 11404.14,
+ "end": 11416.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1377,
+ "start": 11416.86,
+ "end": 11420.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1378,
+ "start": 11420.8,
+ "end": 11423.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1379,
+ "start": 11423.24,
+ "end": 11433.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1380,
+ "start": 11433.52,
+ "end": 11450.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1381,
+ "start": 11450.6,
+ "end": 11453.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1382,
+ "start": 11453.66,
+ "end": 11459.83,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1383,
+ "start": 11459.83,
+ "end": 11466.21,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1384,
+ "start": 11466.21,
+ "end": 11471.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1385,
+ "start": 11471.36,
+ "end": 11486.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1386,
+ "start": 11486.54,
+ "end": 11490.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1387,
+ "start": 11490.42,
+ "end": 11494.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1388,
+ "start": 11494.18,
+ "end": 11496.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1389,
+ "start": 11496.84,
+ "end": 11499.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1390,
+ "start": 11499.22,
+ "end": 11518.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1391,
+ "start": 11518.9,
+ "end": 11530.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1392,
+ "start": 11530.7,
+ "end": 11535.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1393,
+ "start": 11535.14,
+ "end": 11540.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1394,
+ "start": 11540.05,
+ "end": 11548.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1395,
+ "start": 11548.32,
+ "end": 11551.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1396,
+ "start": 11551.04,
+ "end": 11559.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1397,
+ "start": 11559.68,
+ "end": 11565.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1398,
+ "start": 11565.36,
+ "end": 11569.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1399,
+ "start": 11569.12,
+ "end": 11573.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1400,
+ "start": 11573.4,
+ "end": 11584.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1401,
+ "start": 11584.38,
+ "end": 11593.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1402,
+ "start": 11593.98,
+ "end": 11599.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1403,
+ "start": 11599.7,
+ "end": 11601.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1404,
+ "start": 11601.32,
+ "end": 11607.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1405,
+ "start": 11607.84,
+ "end": 11617.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1406,
+ "start": 11617.94,
+ "end": 11622.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1407,
+ "start": 11622.04,
+ "end": 11632.31,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1408,
+ "start": 11632.31,
+ "end": 11634.43,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1409,
+ "start": 11634.43,
+ "end": 11638.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1410,
+ "start": 11638.08,
+ "end": 11639.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1411,
+ "start": 11639.66,
+ "end": 11645.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1412,
+ "start": 11645.6,
+ "end": 11648.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1413,
+ "start": 11648.94,
+ "end": 11651.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1414,
+ "start": 11651.34,
+ "end": 11653.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1415,
+ "start": 11653.88,
+ "end": 11658.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1416,
+ "start": 11658.58,
+ "end": 11663.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1417,
+ "start": 11663.44,
+ "end": 11666.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1418,
+ "start": 11666.38,
+ "end": 11668.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1419,
+ "start": 11668.26,
+ "end": 11669.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1420,
+ "start": 11669.22,
+ "end": 11671.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1421,
+ "start": 11671.2,
+ "end": 11680.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1422,
+ "start": 11680.54,
+ "end": 11683.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1423,
+ "start": 11683.78,
+ "end": 11701.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1424,
+ "start": 11701.67,
+ "end": 11703.21,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1425,
+ "start": 11703.21,
+ "end": 11706.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1426,
+ "start": 11706.24,
+ "end": 11717.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1427,
+ "start": 11717.02,
+ "end": 11724.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1428,
+ "start": 11724.24,
+ "end": 11742.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1429,
+ "start": 11742.02,
+ "end": 11751.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1430,
+ "start": 11751.44,
+ "end": 11757.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1431,
+ "start": 11757.88,
+ "end": 11759.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1432,
+ "start": 11759.6,
+ "end": 11768.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1433,
+ "start": 11768.48,
+ "end": 11769.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1434,
+ "start": 11769.86,
+ "end": 11772.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1435,
+ "start": 11772.04,
+ "end": 11778.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1436,
+ "start": 11778.9,
+ "end": 11784.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1437,
+ "start": 11784.24,
+ "end": 11787.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1438,
+ "start": 11787.96,
+ "end": 11792.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1439,
+ "start": 11792.44,
+ "end": 11793.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1440,
+ "start": 11793.76,
+ "end": 11795.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1441,
+ "start": 11795.48,
+ "end": 11796.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1442,
+ "start": 11796.74,
+ "end": 11798.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1443,
+ "start": 11798.78,
+ "end": 11806.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1444,
+ "start": 11806.36,
+ "end": 11810.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1445,
+ "start": 11810.66,
+ "end": 11811.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1446,
+ "start": 11811.86,
+ "end": 11819.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1447,
+ "start": 11819.1,
+ "end": 11824.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1448,
+ "start": 11824.92,
+ "end": 11831.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1449,
+ "start": 11831.72,
+ "end": 11842.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1450,
+ "start": 11842.82,
+ "end": 11846.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1451,
+ "start": 11846.5,
+ "end": 11851.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1452,
+ "start": 11851.08,
+ "end": 11854.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1453,
+ "start": 11854.8,
+ "end": 11858,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1454,
+ "start": 11858,
+ "end": 11859.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1455,
+ "start": 11859.9,
+ "end": 11862.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1456,
+ "start": 11862.36,
+ "end": 11871.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1457,
+ "start": 11871.74,
+ "end": 11877.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1458,
+ "start": 11877.1,
+ "end": 11881.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1459,
+ "start": 11881.72,
+ "end": 11885.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1460,
+ "start": 11885.66,
+ "end": 11898.25,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1461,
+ "start": 11898.25,
+ "end": 11900.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1462,
+ "start": 11900.93,
+ "end": 11902.49,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1463,
+ "start": 11902.49,
+ "end": 11904.97,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1464,
+ "start": 11904.97,
+ "end": 11907.81,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1465,
+ "start": 11907.81,
+ "end": 11912.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1466,
+ "start": 11912.64,
+ "end": 11922.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1467,
+ "start": 11922.88,
+ "end": 11924.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1468,
+ "start": 11924.5,
+ "end": 11938.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1469,
+ "start": 11938.04,
+ "end": 11946.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1470,
+ "start": 11946.22,
+ "end": 11949.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1471,
+ "start": 11949.06,
+ "end": 11952.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1472,
+ "start": 11952.02,
+ "end": 11964.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1473,
+ "start": 11964.84,
+ "end": 11974.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1474,
+ "start": 11974.24,
+ "end": 11989.77,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1475,
+ "start": 11989.77,
+ "end": 12002.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1476,
+ "start": 12002.14,
+ "end": 12004.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1477,
+ "start": 12004.66,
+ "end": 12007.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1478,
+ "start": 12007.24,
+ "end": 12010.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1479,
+ "start": 12010.3,
+ "end": 12012.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1480,
+ "start": 12012.26,
+ "end": 12017.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1481,
+ "start": 12017.04,
+ "end": 12028.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1482,
+ "start": 12028.46,
+ "end": 12034.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1483,
+ "start": 12034.54,
+ "end": 12047.65,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1484,
+ "start": 12047.65,
+ "end": 12049.83,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1485,
+ "start": 12049.83,
+ "end": 12077.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1486,
+ "start": 12077.08,
+ "end": 12082.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1487,
+ "start": 12082.28,
+ "end": 12093.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1488,
+ "start": 12093.05,
+ "end": 12105.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1489,
+ "start": 12105.94,
+ "end": 12110.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1490,
+ "start": 12110.72,
+ "end": 12118.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1491,
+ "start": 12118.16,
+ "end": 12122.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1492,
+ "start": 12122.36,
+ "end": 12135.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1493,
+ "start": 12135.54,
+ "end": 12139.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1494,
+ "start": 12139.76,
+ "end": 12146.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1495,
+ "start": 12146.24,
+ "end": 12150.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1496,
+ "start": 12150.82,
+ "end": 12158.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1497,
+ "start": 12158.96,
+ "end": 12163.53,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1498,
+ "start": 12163.53,
+ "end": 12164.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1499,
+ "start": 12164.01,
+ "end": 12172.71,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1500,
+ "start": 12172.71,
+ "end": 12178.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1501,
+ "start": 12178.28,
+ "end": 12183.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1502,
+ "start": 12183.18,
+ "end": 12190.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1503,
+ "start": 12190.14,
+ "end": 12192.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1504,
+ "start": 12192.3,
+ "end": 12195.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1505,
+ "start": 12195.78,
+ "end": 12202.43,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1506,
+ "start": 12202.43,
+ "end": 12208.81,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1507,
+ "start": 12208.81,
+ "end": 12211.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1508,
+ "start": 12211.15,
+ "end": 12218.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1509,
+ "start": 12218.14,
+ "end": 12229.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1510,
+ "start": 12229.5,
+ "end": 12235.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1511,
+ "start": 12235.34,
+ "end": 12246.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1512,
+ "start": 12246.04,
+ "end": 12256.87,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1513,
+ "start": 12256.87,
+ "end": 12259.45,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1514,
+ "start": 12259.45,
+ "end": 12262.45,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1515,
+ "start": 12262.45,
+ "end": 12273.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1516,
+ "start": 12273.08,
+ "end": 12276.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1517,
+ "start": 12276.16,
+ "end": 12277.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1518,
+ "start": 12277.62,
+ "end": 12284.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1519,
+ "start": 12284.07,
+ "end": 12292.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1520,
+ "start": 12292.92,
+ "end": 12302.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1521,
+ "start": 12302.34,
+ "end": 12318.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1522,
+ "start": 12318.92,
+ "end": 12321.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1523,
+ "start": 12321.68,
+ "end": 12335.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1524,
+ "start": 12335.18,
+ "end": 12341.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1525,
+ "start": 12341.1,
+ "end": 12342.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1526,
+ "start": 12342.82,
+ "end": 12351.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1527,
+ "start": 12351.62,
+ "end": 12352.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1528,
+ "start": 12352.84,
+ "end": 12357.27,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1529,
+ "start": 12357.27,
+ "end": 12358.55,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1530,
+ "start": 12358.55,
+ "end": 12359.51,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1531,
+ "start": 12359.51,
+ "end": 12360.65,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1532,
+ "start": 12360.65,
+ "end": 12361.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1533,
+ "start": 12361.69,
+ "end": 12366.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1534,
+ "start": 12366.88,
+ "end": 12377.09,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1535,
+ "start": 12377.09,
+ "end": 12383.73,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1536,
+ "start": 12383.73,
+ "end": 12390.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1537,
+ "start": 12390.34,
+ "end": 12402.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1538,
+ "start": 12402.84,
+ "end": 12418.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1539,
+ "start": 12418.7,
+ "end": 12427.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1540,
+ "start": 12427.72,
+ "end": 12432.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1541,
+ "start": 12432.36,
+ "end": 12440.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1542,
+ "start": 12440.36,
+ "end": 12443.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1543,
+ "start": 12443.84,
+ "end": 12445.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1544,
+ "start": 12445.5,
+ "end": 12457.79,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1545,
+ "start": 12457.79,
+ "end": 12476.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1546,
+ "start": 12476.62,
+ "end": 12488.87,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1547,
+ "start": 12488.87,
+ "end": 12492.53,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1548,
+ "start": 12492.53,
+ "end": 12499.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1549,
+ "start": 12499.26,
+ "end": 12504.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1550,
+ "start": 12504.1,
+ "end": 12510.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1551,
+ "start": 12510.56,
+ "end": 12514.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1552,
+ "start": 12514.2,
+ "end": 12517.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1553,
+ "start": 12517.69,
+ "end": 12528.11,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1554,
+ "start": 12528.11,
+ "end": 12531.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1555,
+ "start": 12531.22,
+ "end": 12533.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1556,
+ "start": 12533.16,
+ "end": 12534.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1557,
+ "start": 12534.42,
+ "end": 12537.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1558,
+ "start": 12537.72,
+ "end": 12544.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1559,
+ "start": 12544.78,
+ "end": 12553.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1560,
+ "start": 12553.24,
+ "end": 12563.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1561,
+ "start": 12563.04,
+ "end": 12570.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1562,
+ "start": 12570.96,
+ "end": 12584.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1563,
+ "start": 12584.24,
+ "end": 12585.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1564,
+ "start": 12585.98,
+ "end": 12593.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1565,
+ "start": 12593.98,
+ "end": 12609.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1566,
+ "start": 12609.84,
+ "end": 12612.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1567,
+ "start": 12612.92,
+ "end": 12628.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1568,
+ "start": 12628.52,
+ "end": 12635.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1569,
+ "start": 12635.24,
+ "end": 12645.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1570,
+ "start": 12645.68,
+ "end": 12647.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1571,
+ "start": 12647.24,
+ "end": 12651.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1572,
+ "start": 12651.74,
+ "end": 12655.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1573,
+ "start": 12655.66,
+ "end": 12665.73,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1574,
+ "start": 12665.73,
+ "end": 12670.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1575,
+ "start": 12670.93,
+ "end": 12671.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1576,
+ "start": 12671.93,
+ "end": 12673.49,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1577,
+ "start": 12673.49,
+ "end": 12674.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1578,
+ "start": 12674.05,
+ "end": 12677.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1579,
+ "start": 12677.38,
+ "end": 12686.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1580,
+ "start": 12686.28,
+ "end": 12690.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1581,
+ "start": 12690.9,
+ "end": 12701.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1582,
+ "start": 12701.02,
+ "end": 12707.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1583,
+ "start": 12707.88,
+ "end": 12720.39,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1584,
+ "start": 12720.39,
+ "end": 12739.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1585,
+ "start": 12739.24,
+ "end": 12744.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1586,
+ "start": 12744.2,
+ "end": 12757.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1587,
+ "start": 12757.36,
+ "end": 12799.41,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1588,
+ "start": 12799.41,
+ "end": 12818.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1589,
+ "start": 12818.08,
+ "end": 12825.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1590,
+ "start": 12825.06,
+ "end": 12827.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1591,
+ "start": 12827.76,
+ "end": 12840.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1592,
+ "start": 12840.1,
+ "end": 12847.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1593,
+ "start": 12847.16,
+ "end": 12855.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1594,
+ "start": 12855.94,
+ "end": 12867.57,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1595,
+ "start": 12867.57,
+ "end": 12877.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1596,
+ "start": 12877.26,
+ "end": 12882.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1597,
+ "start": 12882.84,
+ "end": 12884.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1598,
+ "start": 12884.56,
+ "end": 12887.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1599,
+ "start": 12887.58,
+ "end": 12889.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1600,
+ "start": 12889.96,
+ "end": 12896.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1601,
+ "start": 12896.32,
+ "end": 12899.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1602,
+ "start": 12899.6,
+ "end": 12902.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1603,
+ "start": 12902.46,
+ "end": 12913.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1604,
+ "start": 12913.72,
+ "end": 12922.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1605,
+ "start": 12922.82,
+ "end": 12926.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1606,
+ "start": 12926.32,
+ "end": 12939.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1607,
+ "start": 12939.1,
+ "end": 12941.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1608,
+ "start": 12941.58,
+ "end": 12942.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1609,
+ "start": 12942.74,
+ "end": 12944.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1610,
+ "start": 12944.04,
+ "end": 12951.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1611,
+ "start": 12951.32,
+ "end": 12967.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1612,
+ "start": 12967.12,
+ "end": 12973.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1613,
+ "start": 12973.06,
+ "end": 12977.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1614,
+ "start": 12977.66,
+ "end": 12986.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1615,
+ "start": 12986.98,
+ "end": 12993.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1616,
+ "start": 12993.1,
+ "end": 13004.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1617,
+ "start": 13004.96,
+ "end": 13012.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1618,
+ "start": 13012.72,
+ "end": 13017.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1619,
+ "start": 13017.3,
+ "end": 13029.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1620,
+ "start": 13029.26,
+ "end": 13034.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1621,
+ "start": 13034.74,
+ "end": 13046.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1622,
+ "start": 13046.93,
+ "end": 13048.19,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1623,
+ "start": 13048.19,
+ "end": 13054.37,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1624,
+ "start": 13054.37,
+ "end": 13057.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1625,
+ "start": 13057.96,
+ "end": 13060.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1626,
+ "start": 13060.68,
+ "end": 13063.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1627,
+ "start": 13063.42,
+ "end": 13066.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1628,
+ "start": 13066.74,
+ "end": 13071.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1629,
+ "start": 13071.06,
+ "end": 13073.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1630,
+ "start": 13073.46,
+ "end": 13080.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1631,
+ "start": 13080.82,
+ "end": 13090.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1632,
+ "start": 13090.52,
+ "end": 13097.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1633,
+ "start": 13097.34,
+ "end": 13098.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1634,
+ "start": 13098.34,
+ "end": 13101.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1635,
+ "start": 13101.18,
+ "end": 13104.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1636,
+ "start": 13104.64,
+ "end": 13113.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1637,
+ "start": 13113.38,
+ "end": 13114.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1638,
+ "start": 13114.8,
+ "end": 13119.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1639,
+ "start": 13119.1,
+ "end": 13125.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1640,
+ "start": 13125.04,
+ "end": 13128.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1641,
+ "start": 13128.82,
+ "end": 13140.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1642,
+ "start": 13140.78,
+ "end": 13142.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1643,
+ "start": 13142.52,
+ "end": 13144.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1644,
+ "start": 13144.5,
+ "end": 13145.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1645,
+ "start": 13145.24,
+ "end": 13148.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1646,
+ "start": 13148.74,
+ "end": 13152.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1647,
+ "start": 13152.56,
+ "end": 13155.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1648,
+ "start": 13155.24,
+ "end": 13158.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1649,
+ "start": 13158.69,
+ "end": 13159.03,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1650,
+ "start": 13159.03,
+ "end": 13174.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1651,
+ "start": 13174.08,
+ "end": 13176.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1652,
+ "start": 13176.46,
+ "end": 13181,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1653,
+ "start": 13181,
+ "end": 13200.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1654,
+ "start": 13200.3,
+ "end": 13208.63,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1655,
+ "start": 13208.63,
+ "end": 13214.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1656,
+ "start": 13214.96,
+ "end": 13222.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1657,
+ "start": 13222.76,
+ "end": 13227.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1658,
+ "start": 13227.62,
+ "end": 13243.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1659,
+ "start": 13243.59,
+ "end": 13248.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1660,
+ "start": 13248.15,
+ "end": 13251.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1661,
+ "start": 13251.8,
+ "end": 13255.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1662,
+ "start": 13255.1,
+ "end": 13264.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1663,
+ "start": 13264.76,
+ "end": 13267.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1664,
+ "start": 13267.6,
+ "end": 13276.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1665,
+ "start": 13276.08,
+ "end": 13281.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1666,
+ "start": 13281.72,
+ "end": 13285.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1667,
+ "start": 13285.28,
+ "end": 13291.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1668,
+ "start": 13291.96,
+ "end": 13299.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1669,
+ "start": 13299.36,
+ "end": 13302.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1670,
+ "start": 13302.54,
+ "end": 13304.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1671,
+ "start": 13304.26,
+ "end": 13308.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1672,
+ "start": 13308.5,
+ "end": 13316.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1673,
+ "start": 13316.48,
+ "end": 13332.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1674,
+ "start": 13332.48,
+ "end": 13336.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1675,
+ "start": 13336.02,
+ "end": 13339.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1676,
+ "start": 13339.58,
+ "end": 13344.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1677,
+ "start": 13344.76,
+ "end": 13355,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1678,
+ "start": 13355,
+ "end": 13356.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1679,
+ "start": 13356.4,
+ "end": 13361.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1680,
+ "start": 13361.98,
+ "end": 13368.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1681,
+ "start": 13368.22,
+ "end": 13370.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1682,
+ "start": 13370.58,
+ "end": 13379.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1683,
+ "start": 13379.04,
+ "end": 13382.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1684,
+ "start": 13382.96,
+ "end": 13394.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1685,
+ "start": 13394.05,
+ "end": 13394.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1686,
+ "start": 13394.93,
+ "end": 13399.27,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1687,
+ "start": 13399.27,
+ "end": 13402.21,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1688,
+ "start": 13402.21,
+ "end": 13406.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1689,
+ "start": 13406.58,
+ "end": 13413.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1690,
+ "start": 13413.1,
+ "end": 13419.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1691,
+ "start": 13419.52,
+ "end": 13426.49,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1692,
+ "start": 13426.49,
+ "end": 13429.77,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1693,
+ "start": 13429.77,
+ "end": 13430.47,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1694,
+ "start": 13430.47,
+ "end": 13433.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1695,
+ "start": 13433.68,
+ "end": 13434.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1696,
+ "start": 13434.98,
+ "end": 13436.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1697,
+ "start": 13436.4,
+ "end": 13439.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1698,
+ "start": 13439.52,
+ "end": 13441.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1699,
+ "start": 13441.22,
+ "end": 13442.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1700,
+ "start": 13442.5,
+ "end": 13452.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1701,
+ "start": 13452.5,
+ "end": 13456.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1702,
+ "start": 13456.88,
+ "end": 13464.41,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1703,
+ "start": 13464.41,
+ "end": 13471.11,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1704,
+ "start": 13471.11,
+ "end": 13475.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1705,
+ "start": 13475.93,
+ "end": 13479.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1706,
+ "start": 13479.16,
+ "end": 13481.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1707,
+ "start": 13481.74,
+ "end": 13487.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1708,
+ "start": 13487.12,
+ "end": 13488.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1709,
+ "start": 13488.58,
+ "end": 13495.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1710,
+ "start": 13495.04,
+ "end": 13503.89,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1711,
+ "start": 13503.89,
+ "end": 13514.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1712,
+ "start": 13514.44,
+ "end": 13523.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1713,
+ "start": 13523.86,
+ "end": 13533.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1714,
+ "start": 13533.9,
+ "end": 13538.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1715,
+ "start": 13538.5,
+ "end": 13543.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1716,
+ "start": 13543.6,
+ "end": 13553.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1717,
+ "start": 13553.52,
+ "end": 13555.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1718,
+ "start": 13555.98,
+ "end": 13561.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1719,
+ "start": 13561.36,
+ "end": 13567.09,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1720,
+ "start": 13567.09,
+ "end": 13575.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1721,
+ "start": 13575.64,
+ "end": 13584.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1722,
+ "start": 13584.58,
+ "end": 13587.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1723,
+ "start": 13587.02,
+ "end": 13588.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1724,
+ "start": 13588.34,
+ "end": 13590.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1725,
+ "start": 13590.9,
+ "end": 13591.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1726,
+ "start": 13591.86,
+ "end": 13601.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1727,
+ "start": 13601.96,
+ "end": 13621.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1728,
+ "start": 13621.52,
+ "end": 13633.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1729,
+ "start": 13633.86,
+ "end": 13640.43,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1730,
+ "start": 13640.43,
+ "end": 13642.61,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1731,
+ "start": 13642.61,
+ "end": 13644.19,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1732,
+ "start": 13644.19,
+ "end": 13665.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1733,
+ "start": 13665.32,
+ "end": 13682.73,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1734,
+ "start": 13682.73,
+ "end": 13689.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1735,
+ "start": 13689.42,
+ "end": 13698.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1736,
+ "start": 13698.8,
+ "end": 13708.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1737,
+ "start": 13708.32,
+ "end": 13710.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1738,
+ "start": 13710.74,
+ "end": 13717.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1739,
+ "start": 13717.78,
+ "end": 13721.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1740,
+ "start": 13721.18,
+ "end": 13724.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1741,
+ "start": 13724.52,
+ "end": 13727.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1742,
+ "start": 13727.56,
+ "end": 13734.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1743,
+ "start": 13734.5,
+ "end": 13739.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1744,
+ "start": 13739.02,
+ "end": 13743.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1745,
+ "start": 13743.02,
+ "end": 13744.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1746,
+ "start": 13744.62,
+ "end": 13748.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1747,
+ "start": 13748.58,
+ "end": 13753.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1748,
+ "start": 13753.32,
+ "end": 13761.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1749,
+ "start": 13761.34,
+ "end": 13763.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1750,
+ "start": 13763.24,
+ "end": 13767.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1751,
+ "start": 13767.08,
+ "end": 13769.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1752,
+ "start": 13769.62,
+ "end": 13805.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1753,
+ "start": 13805.82,
+ "end": 13814.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1754,
+ "start": 13814.78,
+ "end": 13929.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1755,
+ "start": 13929.1,
+ "end": 14193.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1756,
+ "start": 14193.86,
+ "end": 14395.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1757,
+ "start": 14395.8,
+ "end": 14561.35,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1758,
+ "start": 14561.35,
+ "end": 14563.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1759,
+ "start": 14563.67,
+ "end": 14566.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1760,
+ "start": 14566.07,
+ "end": 14569.59,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1761,
+ "start": 14569.59,
+ "end": 14570.79,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1762,
+ "start": 14570.79,
+ "end": 14573.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1763,
+ "start": 14573.56,
+ "end": 14582.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1764,
+ "start": 14582.96,
+ "end": 14589.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1765,
+ "start": 14589.04,
+ "end": 14602.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1766,
+ "start": 14602.1,
+ "end": 14605.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1767,
+ "start": 14605.8,
+ "end": 14608.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1768,
+ "start": 14608.08,
+ "end": 14611.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1769,
+ "start": 14611.06,
+ "end": 14612.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1770,
+ "start": 14612.88,
+ "end": 14631,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1771,
+ "start": 14631,
+ "end": 14636.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1772,
+ "start": 14636.02,
+ "end": 14649.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1773,
+ "start": 14649.12,
+ "end": 14653.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1774,
+ "start": 14653.26,
+ "end": 14656.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1775,
+ "start": 14656.38,
+ "end": 14660.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1776,
+ "start": 14660.16,
+ "end": 14661.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1777,
+ "start": 14661.46,
+ "end": 14666.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1778,
+ "start": 14666.82,
+ "end": 14674.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1779,
+ "start": 14674.36,
+ "end": 14682.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1780,
+ "start": 14682.02,
+ "end": 14693.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1781,
+ "start": 14693.08,
+ "end": 14708.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1782,
+ "start": 14708.74,
+ "end": 14714.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1783,
+ "start": 14714.98,
+ "end": 14727.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1784,
+ "start": 14727.67,
+ "end": 14732.89,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1785,
+ "start": 14732.89,
+ "end": 14734.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1786,
+ "start": 14734.01,
+ "end": 14742.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1787,
+ "start": 14742.02,
+ "end": 14745.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1788,
+ "start": 14745.9,
+ "end": 14753.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1789,
+ "start": 14753.94,
+ "end": 14756.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1790,
+ "start": 14756.36,
+ "end": 14760.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1791,
+ "start": 14760.18,
+ "end": 14766.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1792,
+ "start": 14766.98,
+ "end": 14770.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1793,
+ "start": 14770.64,
+ "end": 14772.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1794,
+ "start": 14772.6,
+ "end": 14775.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1795,
+ "start": 14775.4,
+ "end": 14777.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1796,
+ "start": 14777.1,
+ "end": 14780.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1797,
+ "start": 14780.16,
+ "end": 14784.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1798,
+ "start": 14784.54,
+ "end": 14787.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1799,
+ "start": 14787.78,
+ "end": 14791.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1800,
+ "start": 14791.1,
+ "end": 14795.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1801,
+ "start": 14795.96,
+ "end": 14798.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1802,
+ "start": 14798.8,
+ "end": 14799.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1803,
+ "start": 14799.86,
+ "end": 14804.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1804,
+ "start": 14804.92,
+ "end": 14813.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1805,
+ "start": 14813.34,
+ "end": 14818.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1806,
+ "start": 14818.78,
+ "end": 14823.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1807,
+ "start": 14823.92,
+ "end": 14826.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1808,
+ "start": 14826.16,
+ "end": 14834.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1809,
+ "start": 14834.02,
+ "end": 14837.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1810,
+ "start": 14837.96,
+ "end": 14855.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1811,
+ "start": 14855.54,
+ "end": 14860.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1812,
+ "start": 14860.02,
+ "end": 14865.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1813,
+ "start": 14865.62,
+ "end": 14868.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1814,
+ "start": 14868.42,
+ "end": 14869.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1815,
+ "start": 14869.18,
+ "end": 14871.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1816,
+ "start": 14871.02,
+ "end": 14872.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1817,
+ "start": 14872.02,
+ "end": 14885.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1818,
+ "start": 14885.72,
+ "end": 14903.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1819,
+ "start": 14903.96,
+ "end": 14909.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1820,
+ "start": 14909.66,
+ "end": 14912.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1821,
+ "start": 14912.02,
+ "end": 14922.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1822,
+ "start": 14922.67,
+ "end": 14969.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1823,
+ "start": 14969.86,
+ "end": 14974.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1824,
+ "start": 14974.28,
+ "end": 14994.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1825,
+ "start": 14994.64,
+ "end": 15001.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1826,
+ "start": 15001.64,
+ "end": 15019.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1827,
+ "start": 15019.02,
+ "end": 15020.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1828,
+ "start": 15020.92,
+ "end": 15027.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1829,
+ "start": 15027.04,
+ "end": 15030.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1830,
+ "start": 15030.96,
+ "end": 15040.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1831,
+ "start": 15040.4,
+ "end": 15046.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1832,
+ "start": 15046.38,
+ "end": 15059.15,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1833,
+ "start": 15059.15,
+ "end": 15062.39,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1834,
+ "start": 15062.39,
+ "end": 15079.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1835,
+ "start": 15079.64,
+ "end": 15092.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1836,
+ "start": 15092.02,
+ "end": 15113.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1837,
+ "start": 15113.48,
+ "end": 15117.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1838,
+ "start": 15117.7,
+ "end": 15128.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1839,
+ "start": 15128.02,
+ "end": 15129.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1840,
+ "start": 15129.4,
+ "end": 15134.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1841,
+ "start": 15134.06,
+ "end": 15141.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1842,
+ "start": 15141.12,
+ "end": 15153.09,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1843,
+ "start": 15153.09,
+ "end": 15156.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1844,
+ "start": 15156.24,
+ "end": 15163.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1845,
+ "start": 15163.08,
+ "end": 15173.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1846,
+ "start": 15173.48,
+ "end": 15178.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1847,
+ "start": 15178.5,
+ "end": 15182.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1848,
+ "start": 15182.18,
+ "end": 15183.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1849,
+ "start": 15183.98,
+ "end": 15186.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1850,
+ "start": 15186.86,
+ "end": 15188.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1851,
+ "start": 15188.1,
+ "end": 15200.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1852,
+ "start": 15200.8,
+ "end": 15204.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1853,
+ "start": 15204.86,
+ "end": 15210.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1854,
+ "start": 15210.98,
+ "end": 15213.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1855,
+ "start": 15213.16,
+ "end": 15219.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1856,
+ "start": 15219.22,
+ "end": 15223.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1857,
+ "start": 15223.88,
+ "end": 15226.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1858,
+ "start": 15226.56,
+ "end": 15232.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1859,
+ "start": 15232.34,
+ "end": 15245.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1860,
+ "start": 15245.74,
+ "end": 15249.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1861,
+ "start": 15249.54,
+ "end": 15276.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1862,
+ "start": 15276.7,
+ "end": 15277.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1863,
+ "start": 15277.84,
+ "end": 15292.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1864,
+ "start": 15292.38,
+ "end": 15296.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1865,
+ "start": 15296.72,
+ "end": 15302.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1866,
+ "start": 15302.56,
+ "end": 15311.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1867,
+ "start": 15311.02,
+ "end": 15315.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1868,
+ "start": 15315.44,
+ "end": 15317.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1869,
+ "start": 15317.44,
+ "end": 15325.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1870,
+ "start": 15325.32,
+ "end": 15327.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1871,
+ "start": 15327.04,
+ "end": 15336.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1872,
+ "start": 15336.68,
+ "end": 15338.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1873,
+ "start": 15338.9,
+ "end": 15350.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1874,
+ "start": 15350.46,
+ "end": 15355.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1875,
+ "start": 15355.68,
+ "end": 15361.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1876,
+ "start": 15361.68,
+ "end": 15364.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1877,
+ "start": 15364.28,
+ "end": 15372.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1878,
+ "start": 15372.74,
+ "end": 15379.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1879,
+ "start": 15379.38,
+ "end": 15388.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1880,
+ "start": 15388.42,
+ "end": 15397.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1881,
+ "start": 15397.32,
+ "end": 15406.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1882,
+ "start": 15406.54,
+ "end": 15418.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1883,
+ "start": 15418.26,
+ "end": 15422.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1884,
+ "start": 15422.4,
+ "end": 15426.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1885,
+ "start": 15426.9,
+ "end": 15445.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1886,
+ "start": 15445.44,
+ "end": 15447.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1887,
+ "start": 15447.28,
+ "end": 15453.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1888,
+ "start": 15453.86,
+ "end": 15466.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1889,
+ "start": 15466.66,
+ "end": 15470.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1890,
+ "start": 15470.74,
+ "end": 15480.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1891,
+ "start": 15480.74,
+ "end": 15482.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1892,
+ "start": 15482.18,
+ "end": 15485.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1893,
+ "start": 15485.52,
+ "end": 15488.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1894,
+ "start": 15488.12,
+ "end": 15491.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1895,
+ "start": 15491.94,
+ "end": 15502.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1896,
+ "start": 15502.16,
+ "end": 15504.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1897,
+ "start": 15504.32,
+ "end": 15508.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1898,
+ "start": 15508.54,
+ "end": 15514.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1899,
+ "start": 15514.02,
+ "end": 15516.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1900,
+ "start": 15516.46,
+ "end": 15519.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1901,
+ "start": 15519.98,
+ "end": 15521.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1902,
+ "start": 15521.26,
+ "end": 15523.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1903,
+ "start": 15523.38,
+ "end": 15524.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1904,
+ "start": 15524.58,
+ "end": 15526.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1905,
+ "start": 15526.24,
+ "end": 15528.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1906,
+ "start": 15528.2,
+ "end": 15532.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1907,
+ "start": 15532.32,
+ "end": 15534.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1908,
+ "start": 15534.1,
+ "end": 15536.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1909,
+ "start": 15536.2,
+ "end": 15539.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1910,
+ "start": 15539.06,
+ "end": 15544.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1911,
+ "start": 15544.86,
+ "end": 15546.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1912,
+ "start": 15546.4,
+ "end": 15552.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1913,
+ "start": 15552.02,
+ "end": 15569.71,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1914,
+ "start": 15569.71,
+ "end": 15573.35,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1915,
+ "start": 15573.35,
+ "end": 15578.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1916,
+ "start": 15578.1,
+ "end": 15582.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1917,
+ "start": 15582.06,
+ "end": 15589.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1918,
+ "start": 15589.16,
+ "end": 15594.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1919,
+ "start": 15594.06,
+ "end": 15602.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1920,
+ "start": 15602.94,
+ "end": 15607.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1921,
+ "start": 15607.48,
+ "end": 15616.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1922,
+ "start": 15616.02,
+ "end": 15623.61,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1923,
+ "start": 15623.61,
+ "end": 15627.83,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1924,
+ "start": 15627.83,
+ "end": 15630.83,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1925,
+ "start": 15630.83,
+ "end": 15644.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1926,
+ "start": 15644.92,
+ "end": 15657.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1927,
+ "start": 15657.62,
+ "end": 15661.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1928,
+ "start": 15661.06,
+ "end": 15676.53,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1929,
+ "start": 15676.53,
+ "end": 15708.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1930,
+ "start": 15708.46,
+ "end": 15726.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1931,
+ "start": 15726.24,
+ "end": 15737.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1932,
+ "start": 15737.98,
+ "end": 15741.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1933,
+ "start": 15741.92,
+ "end": 15742.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1934,
+ "start": 15742.88,
+ "end": 15743.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1935,
+ "start": 15743.48,
+ "end": 15747.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1936,
+ "start": 15747.78,
+ "end": 15749.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1937,
+ "start": 15749.44,
+ "end": 15752.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1938,
+ "start": 15752.78,
+ "end": 15756.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1939,
+ "start": 15756.24,
+ "end": 15757.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1940,
+ "start": 15757.74,
+ "end": 15759.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1941,
+ "start": 15759.42,
+ "end": 15779.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1942,
+ "start": 15779.58,
+ "end": 15784.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1943,
+ "start": 15784.98,
+ "end": 15790.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1944,
+ "start": 15790.58,
+ "end": 15792.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1945,
+ "start": 15792.98,
+ "end": 15797.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1946,
+ "start": 15797.04,
+ "end": 15805.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1947,
+ "start": 15805.04,
+ "end": 15814.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1948,
+ "start": 15814.3,
+ "end": 15845,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1949,
+ "start": 15845,
+ "end": 15884,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1950,
+ "start": 15884,
+ "end": 15909.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1951,
+ "start": 15909.8,
+ "end": 15916.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1952,
+ "start": 15916.32,
+ "end": 15923.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1953,
+ "start": 15923.86,
+ "end": 15925.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1954,
+ "start": 15925.04,
+ "end": 15926.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1955,
+ "start": 15926.82,
+ "end": 15928.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1956,
+ "start": 15928.28,
+ "end": 15938.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1957,
+ "start": 15938.68,
+ "end": 15946.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1958,
+ "start": 15946.14,
+ "end": 15947,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1959,
+ "start": 15947,
+ "end": 15954.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1960,
+ "start": 15954.54,
+ "end": 15963.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1961,
+ "start": 15963.5,
+ "end": 15967.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1962,
+ "start": 15967.94,
+ "end": 15971.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1963,
+ "start": 15971.54,
+ "end": 15975.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1964,
+ "start": 15975.76,
+ "end": 15978.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1965,
+ "start": 15978.2,
+ "end": 15983.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1966,
+ "start": 15983.84,
+ "end": 15985.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1967,
+ "start": 15985.56,
+ "end": 15988.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1968,
+ "start": 15988.64,
+ "end": 15994.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1969,
+ "start": 15994.04,
+ "end": 15997.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1970,
+ "start": 15997.46,
+ "end": 16003.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1971,
+ "start": 16003.98,
+ "end": 16017,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1972,
+ "start": 16017,
+ "end": 16023.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1973,
+ "start": 16023.8,
+ "end": 16026.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1974,
+ "start": 16026.8,
+ "end": 16027.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1975,
+ "start": 16027.42,
+ "end": 16031.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1976,
+ "start": 16031.4,
+ "end": 16032.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1977,
+ "start": 16032.68,
+ "end": 16039.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1978,
+ "start": 16039.16,
+ "end": 16046.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1979,
+ "start": 16046.04,
+ "end": 16049.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1980,
+ "start": 16049.84,
+ "end": 16051.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1981,
+ "start": 16051.54,
+ "end": 16058.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1982,
+ "start": 16058.3,
+ "end": 16079.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1983,
+ "start": 16079.46,
+ "end": 16081.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1984,
+ "start": 16081.16,
+ "end": 16089.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1985,
+ "start": 16089.6,
+ "end": 16092.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1986,
+ "start": 16092.16,
+ "end": 16100.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1987,
+ "start": 16100.86,
+ "end": 16103.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1988,
+ "start": 16103.74,
+ "end": 16108.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1989,
+ "start": 16108.38,
+ "end": 16115.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1990,
+ "start": 16115.9,
+ "end": 16126,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1991,
+ "start": 16126,
+ "end": 16129.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1992,
+ "start": 16129.18,
+ "end": 16134.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1993,
+ "start": 16134.08,
+ "end": 16135.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1994,
+ "start": 16135.98,
+ "end": 16138.97,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1995,
+ "start": 16138.97,
+ "end": 16140.69,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1996,
+ "start": 16140.69,
+ "end": 16160,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1997,
+ "start": 16160,
+ "end": 16162.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1998,
+ "start": 16162.18,
+ "end": 16166.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 1999,
+ "start": 16166.12,
+ "end": 16170.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2000,
+ "start": 16170.9,
+ "end": 16175.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2001,
+ "start": 16175.04,
+ "end": 16204.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2002,
+ "start": 16204.93,
+ "end": 16207.99,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2003,
+ "start": 16207.99,
+ "end": 16208.81,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2004,
+ "start": 16208.81,
+ "end": 16211.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2005,
+ "start": 16211.76,
+ "end": 16213.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2006,
+ "start": 16213.06,
+ "end": 16225.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2007,
+ "start": 16225.08,
+ "end": 16231.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2008,
+ "start": 16231.2,
+ "end": 16235.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2009,
+ "start": 16235.42,
+ "end": 16245.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2010,
+ "start": 16245.88,
+ "end": 16253.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2011,
+ "start": 16253.04,
+ "end": 16254.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2012,
+ "start": 16254.64,
+ "end": 16256.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2013,
+ "start": 16256.52,
+ "end": 16258.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2014,
+ "start": 16258.08,
+ "end": 16262.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2015,
+ "start": 16262.1,
+ "end": 16276.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2016,
+ "start": 16276.86,
+ "end": 16280.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2017,
+ "start": 16280.3,
+ "end": 16290.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2018,
+ "start": 16290.9,
+ "end": 16307.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2019,
+ "start": 16307.96,
+ "end": 16312.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2020,
+ "start": 16312.4,
+ "end": 16330.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2021,
+ "start": 16330.52,
+ "end": 16336.03,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2022,
+ "start": 16336.03,
+ "end": 16341.09,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2023,
+ "start": 16341.09,
+ "end": 16344.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2024,
+ "start": 16344.28,
+ "end": 16350.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2025,
+ "start": 16350.94,
+ "end": 16353.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2026,
+ "start": 16353.6,
+ "end": 16358.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2027,
+ "start": 16358.07,
+ "end": 16370.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2028,
+ "start": 16370.78,
+ "end": 16374.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2029,
+ "start": 16374.08,
+ "end": 16383.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2030,
+ "start": 16383.24,
+ "end": 16388.05,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2031,
+ "start": 16388.05,
+ "end": 16399.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2032,
+ "start": 16399.48,
+ "end": 16410.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2033,
+ "start": 16410.12,
+ "end": 16415.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2034,
+ "start": 16415.4,
+ "end": 16420.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2035,
+ "start": 16420.76,
+ "end": 16424.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2036,
+ "start": 16424.82,
+ "end": 16433.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2037,
+ "start": 16433.08,
+ "end": 16442.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2038,
+ "start": 16442.32,
+ "end": 16445.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2039,
+ "start": 16445.84,
+ "end": 16457.07,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2040,
+ "start": 16457.07,
+ "end": 16462.37,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2041,
+ "start": 16462.37,
+ "end": 16480.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2042,
+ "start": 16480.62,
+ "end": 16482.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2043,
+ "start": 16482.48,
+ "end": 16486.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2044,
+ "start": 16486.44,
+ "end": 16490.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2045,
+ "start": 16490.72,
+ "end": 16500.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2046,
+ "start": 16500.86,
+ "end": 16509.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2047,
+ "start": 16509.76,
+ "end": 16516.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2048,
+ "start": 16516.1,
+ "end": 16519.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2049,
+ "start": 16519.86,
+ "end": 16528.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2050,
+ "start": 16528.28,
+ "end": 16529.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2051,
+ "start": 16529.26,
+ "end": 16530.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2052,
+ "start": 16530.62,
+ "end": 16537.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2053,
+ "start": 16537.54,
+ "end": 16559.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2054,
+ "start": 16559.6,
+ "end": 16573.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2055,
+ "start": 16573.84,
+ "end": 16574.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2056,
+ "start": 16574.22,
+ "end": 16581.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2057,
+ "start": 16581.88,
+ "end": 16583.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2058,
+ "start": 16583.9,
+ "end": 16586.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2059,
+ "start": 16586.08,
+ "end": 16588.13,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2060,
+ "start": 16588.13,
+ "end": 16597.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2061,
+ "start": 16597.88,
+ "end": 16605.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2062,
+ "start": 16605.18,
+ "end": 16609.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2063,
+ "start": 16609.42,
+ "end": 16611.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2064,
+ "start": 16611.98,
+ "end": 16617.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2065,
+ "start": 16617.58,
+ "end": 16618.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2066,
+ "start": 16618.8,
+ "end": 16622.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2067,
+ "start": 16622.14,
+ "end": 16624.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2068,
+ "start": 16624.7,
+ "end": 16631.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2069,
+ "start": 16631.72,
+ "end": 16635.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2070,
+ "start": 16635.78,
+ "end": 16643.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2071,
+ "start": 16643.66,
+ "end": 16645.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2072,
+ "start": 16645.62,
+ "end": 16658.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2073,
+ "start": 16658.94,
+ "end": 16661.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2074,
+ "start": 16661.64,
+ "end": 16665.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2075,
+ "start": 16665.4,
+ "end": 16672.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2076,
+ "start": 16672.64,
+ "end": 16680.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2077,
+ "start": 16680.68,
+ "end": 16684.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2078,
+ "start": 16684.26,
+ "end": 16686.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2079,
+ "start": 16686.9,
+ "end": 16691.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2080,
+ "start": 16691.18,
+ "end": 16697.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2081,
+ "start": 16697.01,
+ "end": 16699.53,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2082,
+ "start": 16699.53,
+ "end": 16707.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2083,
+ "start": 16707.2,
+ "end": 16709.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2084,
+ "start": 16709.82,
+ "end": 16712.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2085,
+ "start": 16712.82,
+ "end": 16714.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2086,
+ "start": 16714.4,
+ "end": 16717.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2087,
+ "start": 16717.38,
+ "end": 16725.33,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2088,
+ "start": 16725.33,
+ "end": 16733.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2089,
+ "start": 16733.2,
+ "end": 16736.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2090,
+ "start": 16736.1,
+ "end": 16743.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2091,
+ "start": 16743.4,
+ "end": 16748.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2092,
+ "start": 16748.26,
+ "end": 16753.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2093,
+ "start": 16753.76,
+ "end": 16760.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2094,
+ "start": 16760.54,
+ "end": 16772.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2095,
+ "start": 16772.02,
+ "end": 16783.75,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2096,
+ "start": 16783.75,
+ "end": 16785.57,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2097,
+ "start": 16785.57,
+ "end": 16799.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2098,
+ "start": 16799.44,
+ "end": 16805.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2099,
+ "start": 16805.04,
+ "end": 16810.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2100,
+ "start": 16810.36,
+ "end": 16815.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2101,
+ "start": 16815.64,
+ "end": 16816.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2102,
+ "start": 16816.88,
+ "end": 16821.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2103,
+ "start": 16821.44,
+ "end": 16822.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2104,
+ "start": 16822.6,
+ "end": 16829.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2105,
+ "start": 16829.38,
+ "end": 16837.19,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2106,
+ "start": 16837.19,
+ "end": 16839.65,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2107,
+ "start": 16839.65,
+ "end": 16846.53,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2108,
+ "start": 16846.53,
+ "end": 16849.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2109,
+ "start": 16849.5,
+ "end": 16864.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2110,
+ "start": 16864.5,
+ "end": 16866.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2111,
+ "start": 16866.44,
+ "end": 16868.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2112,
+ "start": 16868.24,
+ "end": 16876,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2113,
+ "start": 16876,
+ "end": 16886.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2114,
+ "start": 16886.1,
+ "end": 16897.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2115,
+ "start": 16897.24,
+ "end": 16901.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2116,
+ "start": 16901.12,
+ "end": 16902.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2117,
+ "start": 16902.72,
+ "end": 16906.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2118,
+ "start": 16906.94,
+ "end": 16916.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2119,
+ "start": 16916.62,
+ "end": 16928.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2120,
+ "start": 16928.38,
+ "end": 16931.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2121,
+ "start": 16931.26,
+ "end": 16933.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2122,
+ "start": 16933.56,
+ "end": 16938.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2123,
+ "start": 16938.7,
+ "end": 16958.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2124,
+ "start": 16958.74,
+ "end": 16961.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2125,
+ "start": 16961.12,
+ "end": 16962.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2126,
+ "start": 16962.6,
+ "end": 16964.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2127,
+ "start": 16964.66,
+ "end": 16970.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2128,
+ "start": 16970.42,
+ "end": 16972.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2129,
+ "start": 16972.8,
+ "end": 16975.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2130,
+ "start": 16975.46,
+ "end": 16978.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2131,
+ "start": 16978.9,
+ "end": 16986.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2132,
+ "start": 16986.28,
+ "end": 16992.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2133,
+ "start": 16992.28,
+ "end": 16995.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2134,
+ "start": 16995.34,
+ "end": 17004.63,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2135,
+ "start": 17004.63,
+ "end": 17010.35,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2136,
+ "start": 17010.35,
+ "end": 17014.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2137,
+ "start": 17014.3,
+ "end": 17021.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2138,
+ "start": 17021.98,
+ "end": 17039.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2139,
+ "start": 17039.88,
+ "end": 17047.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2140,
+ "start": 17047.08,
+ "end": 17048.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2141,
+ "start": 17048.8,
+ "end": 17057.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2142,
+ "start": 17057.96,
+ "end": 17065.81,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2143,
+ "start": 17065.81,
+ "end": 17067.13,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2144,
+ "start": 17067.13,
+ "end": 17073.25,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2145,
+ "start": 17073.25,
+ "end": 17084.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2146,
+ "start": 17084.54,
+ "end": 17086.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2147,
+ "start": 17086.16,
+ "end": 17100.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2148,
+ "start": 17100.56,
+ "end": 17110.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2149,
+ "start": 17110.06,
+ "end": 17112.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2150,
+ "start": 17112.34,
+ "end": 17153.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2151,
+ "start": 17153.16,
+ "end": 17179.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2152,
+ "start": 17179.1,
+ "end": 17180.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2153,
+ "start": 17180.93,
+ "end": 17189.65,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2154,
+ "start": 17189.65,
+ "end": 17194.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2155,
+ "start": 17194.72,
+ "end": 17196.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2156,
+ "start": 17196.28,
+ "end": 17196.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2157,
+ "start": 17196.68,
+ "end": 17201.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2158,
+ "start": 17201.28,
+ "end": 17208.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2159,
+ "start": 17208.82,
+ "end": 17212.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2160,
+ "start": 17212.08,
+ "end": 17217.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2161,
+ "start": 17217.12,
+ "end": 17229.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2162,
+ "start": 17229.32,
+ "end": 17231.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2163,
+ "start": 17231.74,
+ "end": 17232.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2164,
+ "start": 17232.76,
+ "end": 17238.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2165,
+ "start": 17238.04,
+ "end": 17240.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2166,
+ "start": 17240.74,
+ "end": 17246.21,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2167,
+ "start": 17246.21,
+ "end": 17247.49,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2168,
+ "start": 17247.49,
+ "end": 17250.49,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2169,
+ "start": 17250.49,
+ "end": 17253.91,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2170,
+ "start": 17253.91,
+ "end": 17258.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2171,
+ "start": 17258.62,
+ "end": 17261.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2172,
+ "start": 17261.86,
+ "end": 17269.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2173,
+ "start": 17269.42,
+ "end": 17273.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2174,
+ "start": 17273.86,
+ "end": 17291.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2175,
+ "start": 17291.14,
+ "end": 17292.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2176,
+ "start": 17292.4,
+ "end": 17293.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2177,
+ "start": 17293.38,
+ "end": 17297.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2178,
+ "start": 17297.96,
+ "end": 17301.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2179,
+ "start": 17301.76,
+ "end": 17308.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2180,
+ "start": 17308.48,
+ "end": 17316.03,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2181,
+ "start": 17316.03,
+ "end": 17320.89,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2182,
+ "start": 17320.89,
+ "end": 17324.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2183,
+ "start": 17324.28,
+ "end": 17327.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2184,
+ "start": 17327.58,
+ "end": 17334.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2185,
+ "start": 17334.1,
+ "end": 17335.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2186,
+ "start": 17335.2,
+ "end": 17336.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2187,
+ "start": 17336.78,
+ "end": 17340.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2188,
+ "start": 17340.58,
+ "end": 17345.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2189,
+ "start": 17345.36,
+ "end": 17352.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2190,
+ "start": 17352.94,
+ "end": 17356.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2191,
+ "start": 17356.2,
+ "end": 17357.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2192,
+ "start": 17357.96,
+ "end": 17362.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2193,
+ "start": 17362.06,
+ "end": 17365.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2194,
+ "start": 17365.02,
+ "end": 17366,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2195,
+ "start": 17366,
+ "end": 17374.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2196,
+ "start": 17374.94,
+ "end": 17377.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2197,
+ "start": 17377.32,
+ "end": 17384.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2198,
+ "start": 17384.56,
+ "end": 17392.13,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2199,
+ "start": 17392.13,
+ "end": 17398.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2200,
+ "start": 17398.48,
+ "end": 17406.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2201,
+ "start": 17406.16,
+ "end": 17408.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2202,
+ "start": 17408.98,
+ "end": 17413.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2203,
+ "start": 17413.82,
+ "end": 17420.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2204,
+ "start": 17420.58,
+ "end": 17426.27,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2205,
+ "start": 17426.27,
+ "end": 17428.97,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2206,
+ "start": 17428.97,
+ "end": 17432.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2207,
+ "start": 17432.62,
+ "end": 17439.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2208,
+ "start": 17439.66,
+ "end": 17447.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2209,
+ "start": 17447.06,
+ "end": 17455.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2210,
+ "start": 17455.1,
+ "end": 17456.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2211,
+ "start": 17456.28,
+ "end": 17465.13,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2212,
+ "start": 17465.13,
+ "end": 17473.83,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2213,
+ "start": 17473.83,
+ "end": 17501.91,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2214,
+ "start": 17501.91,
+ "end": 17509.73,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2215,
+ "start": 17509.73,
+ "end": 17514.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2216,
+ "start": 17514.54,
+ "end": 17522.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2217,
+ "start": 17522.42,
+ "end": 17527.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2218,
+ "start": 17527.04,
+ "end": 17531.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2219,
+ "start": 17531.24,
+ "end": 17545.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2220,
+ "start": 17545.68,
+ "end": 17550.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2221,
+ "start": 17550.2,
+ "end": 17553.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2222,
+ "start": 17553.46,
+ "end": 17557.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2223,
+ "start": 17557.22,
+ "end": 17558.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2224,
+ "start": 17558.5,
+ "end": 17569.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2225,
+ "start": 17569.44,
+ "end": 17570.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2226,
+ "start": 17570.04,
+ "end": 17571.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2227,
+ "start": 17571.82,
+ "end": 17573.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2228,
+ "start": 17573.56,
+ "end": 17575.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2229,
+ "start": 17575.86,
+ "end": 17581.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2230,
+ "start": 17581.74,
+ "end": 17583.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2231,
+ "start": 17583.68,
+ "end": 17588.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2232,
+ "start": 17588.18,
+ "end": 17594,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2233,
+ "start": 17594,
+ "end": 17601.93,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2234,
+ "start": 17601.93,
+ "end": 17610.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2235,
+ "start": 17610.01,
+ "end": 17612.04,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2236,
+ "start": 17612.04,
+ "end": 17629.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2237,
+ "start": 17629.16,
+ "end": 17654.95,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2238,
+ "start": 17654.95,
+ "end": 17658.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2239,
+ "start": 17658.82,
+ "end": 17660.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2240,
+ "start": 17660.16,
+ "end": 17662.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2241,
+ "start": 17662.3,
+ "end": 17663.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2242,
+ "start": 17663.1,
+ "end": 17665.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2243,
+ "start": 17665.72,
+ "end": 17671.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2244,
+ "start": 17671.08,
+ "end": 17672.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2245,
+ "start": 17672.94,
+ "end": 17678.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2246,
+ "start": 17678.72,
+ "end": 17691.56,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2247,
+ "start": 17691.56,
+ "end": 17697.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2248,
+ "start": 17697.36,
+ "end": 17708.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2249,
+ "start": 17708.16,
+ "end": 17710.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2250,
+ "start": 17710.88,
+ "end": 17716.45,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2251,
+ "start": 17716.45,
+ "end": 17723.09,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2252,
+ "start": 17723.09,
+ "end": 17728.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2253,
+ "start": 17728.14,
+ "end": 17731.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2254,
+ "start": 17731.7,
+ "end": 17734.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2255,
+ "start": 17734.36,
+ "end": 17745.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2256,
+ "start": 17745.62,
+ "end": 17747.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2257,
+ "start": 17747.14,
+ "end": 17751.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2258,
+ "start": 17751.66,
+ "end": 17759.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2259,
+ "start": 17759.76,
+ "end": 17764.64,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2260,
+ "start": 17764.64,
+ "end": 17770.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2261,
+ "start": 17770.88,
+ "end": 17783.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2262,
+ "start": 17783.08,
+ "end": 17788.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2263,
+ "start": 17788.72,
+ "end": 17794.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2264,
+ "start": 17794.44,
+ "end": 17805.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2265,
+ "start": 17805.8,
+ "end": 17811.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2266,
+ "start": 17811.1,
+ "end": 17812.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2267,
+ "start": 17812.1,
+ "end": 17825.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2268,
+ "start": 17825.28,
+ "end": 17827.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2269,
+ "start": 17827.24,
+ "end": 17829.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2270,
+ "start": 17829.92,
+ "end": 17834.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2271,
+ "start": 17834.72,
+ "end": 17836.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2272,
+ "start": 17836.2,
+ "end": 17840.18,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2273,
+ "start": 17840.18,
+ "end": 17848.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2274,
+ "start": 17848.88,
+ "end": 17852.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2275,
+ "start": 17852.8,
+ "end": 17855.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2276,
+ "start": 17855.4,
+ "end": 17857.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2277,
+ "start": 17857.92,
+ "end": 17861.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2278,
+ "start": 17861.16,
+ "end": 17863.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2279,
+ "start": 17863.16,
+ "end": 17868.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2280,
+ "start": 17868.12,
+ "end": 17878.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2281,
+ "start": 17878.9,
+ "end": 17885.01,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2282,
+ "start": 17885.01,
+ "end": 17888.45,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2283,
+ "start": 17888.45,
+ "end": 17895.3,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2284,
+ "start": 17895.3,
+ "end": 17897.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2285,
+ "start": 17897.36,
+ "end": 17904.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2286,
+ "start": 17904.78,
+ "end": 17907.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2287,
+ "start": 17907.58,
+ "end": 17911.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2288,
+ "start": 17911.34,
+ "end": 17919.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2289,
+ "start": 17919.16,
+ "end": 17926.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2290,
+ "start": 17926.46,
+ "end": 17931.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2291,
+ "start": 17931.42,
+ "end": 17933.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2292,
+ "start": 17933.08,
+ "end": 17939.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2293,
+ "start": 17939.28,
+ "end": 17940.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2294,
+ "start": 17940.12,
+ "end": 17942.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2295,
+ "start": 17942.16,
+ "end": 17945.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2296,
+ "start": 17945.86,
+ "end": 17955.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2297,
+ "start": 17955.5,
+ "end": 17957.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2298,
+ "start": 17957.68,
+ "end": 17965.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2299,
+ "start": 17965.86,
+ "end": 17970.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2300,
+ "start": 17970.24,
+ "end": 17975.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2301,
+ "start": 17975.1,
+ "end": 17989.1,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2302,
+ "start": 17989.1,
+ "end": 17992.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2303,
+ "start": 17992.38,
+ "end": 17996.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2304,
+ "start": 17996.22,
+ "end": 18004.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2305,
+ "start": 18004.48,
+ "end": 18009.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2306,
+ "start": 18009.36,
+ "end": 18010.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2307,
+ "start": 18010.24,
+ "end": 18011.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2308,
+ "start": 18011.36,
+ "end": 18016.46,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2309,
+ "start": 18016.46,
+ "end": 18020.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2310,
+ "start": 18020.9,
+ "end": 18022.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2311,
+ "start": 18022.94,
+ "end": 18025.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2312,
+ "start": 18025.54,
+ "end": 18027.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2313,
+ "start": 18027.24,
+ "end": 18029.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2314,
+ "start": 18029.12,
+ "end": 18031.76,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2315,
+ "start": 18031.76,
+ "end": 18045.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2316,
+ "start": 18045.5,
+ "end": 18050.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2317,
+ "start": 18050.08,
+ "end": 18052.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2318,
+ "start": 18052.2,
+ "end": 18054.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2319,
+ "start": 18054.74,
+ "end": 18063.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2320,
+ "start": 18063.42,
+ "end": 18072.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2321,
+ "start": 18072.26,
+ "end": 18077.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2322,
+ "start": 18077.72,
+ "end": 18078.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2323,
+ "start": 18078.66,
+ "end": 18086.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2324,
+ "start": 18086.2,
+ "end": 18099.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2325,
+ "start": 18099.94,
+ "end": 18106.22,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2326,
+ "start": 18106.22,
+ "end": 18107.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2327,
+ "start": 18107.14,
+ "end": 18126.06,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2328,
+ "start": 18126.06,
+ "end": 18131.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2329,
+ "start": 18131.2,
+ "end": 18131.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2330,
+ "start": 18131.92,
+ "end": 18136.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2331,
+ "start": 18136.38,
+ "end": 18140.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2332,
+ "start": 18140.4,
+ "end": 18153.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2333,
+ "start": 18153.78,
+ "end": 18163.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2334,
+ "start": 18163.2,
+ "end": 18181.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2335,
+ "start": 18181.44,
+ "end": 18189.37,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2336,
+ "start": 18189.37,
+ "end": 18190.91,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2337,
+ "start": 18190.91,
+ "end": 18195.74,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2338,
+ "start": 18195.74,
+ "end": 18198.62,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2339,
+ "start": 18198.62,
+ "end": 18202.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2340,
+ "start": 18202.16,
+ "end": 18203.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2341,
+ "start": 18203.8,
+ "end": 18210.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2342,
+ "start": 18210.14,
+ "end": 18213.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2343,
+ "start": 18213.16,
+ "end": 18218.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2344,
+ "start": 18218.86,
+ "end": 18223.65,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2345,
+ "start": 18223.65,
+ "end": 18230.57,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2346,
+ "start": 18230.57,
+ "end": 18238.2,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2347,
+ "start": 18238.2,
+ "end": 18246.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2348,
+ "start": 18246.42,
+ "end": 18249.48,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2349,
+ "start": 18249.48,
+ "end": 18255.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2350,
+ "start": 18255.38,
+ "end": 18263.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2351,
+ "start": 18263.4,
+ "end": 18270.92,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2352,
+ "start": 18270.92,
+ "end": 18278.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2353,
+ "start": 18278.9,
+ "end": 18301.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2354,
+ "start": 18301.98,
+ "end": 18304.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2355,
+ "start": 18304.32,
+ "end": 18314.34,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2356,
+ "start": 18314.34,
+ "end": 18321.19,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2357,
+ "start": 18321.19,
+ "end": 18327.85,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2358,
+ "start": 18327.85,
+ "end": 18334.25,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2359,
+ "start": 18334.25,
+ "end": 18341.44,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2360,
+ "start": 18341.44,
+ "end": 18344.78,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2361,
+ "start": 18344.78,
+ "end": 18346.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2362,
+ "start": 18346.24,
+ "end": 18349.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2363,
+ "start": 18349.12,
+ "end": 18353.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2364,
+ "start": 18353.28,
+ "end": 18355.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2365,
+ "start": 18355.96,
+ "end": 18358.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2366,
+ "start": 18358.26,
+ "end": 18365.96,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2367,
+ "start": 18365.96,
+ "end": 18367.12,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2368,
+ "start": 18367.12,
+ "end": 18373.28,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2369,
+ "start": 18373.28,
+ "end": 18375.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2370,
+ "start": 18375.84,
+ "end": 18377.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2371,
+ "start": 18377.26,
+ "end": 18388.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2372,
+ "start": 18388.54,
+ "end": 18389.68,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2373,
+ "start": 18389.68,
+ "end": 18393.66,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2374,
+ "start": 18393.66,
+ "end": 18403.72,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2375,
+ "start": 18403.72,
+ "end": 18406.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2376,
+ "start": 18406.14,
+ "end": 18423.98,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2377,
+ "start": 18423.98,
+ "end": 18426.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2378,
+ "start": 18426.36,
+ "end": 18432.32,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2379,
+ "start": 18432.32,
+ "end": 18435.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2380,
+ "start": 18435.52,
+ "end": 18440.35,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2381,
+ "start": 18440.35,
+ "end": 18451.52,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2382,
+ "start": 18451.52,
+ "end": 18458.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2383,
+ "start": 18458.16,
+ "end": 18462.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2384,
+ "start": 18462.9,
+ "end": 18469.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2385,
+ "start": 18469.82,
+ "end": 18476.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2386,
+ "start": 18476.36,
+ "end": 18488.7,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2387,
+ "start": 18488.7,
+ "end": 18496.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2388,
+ "start": 18496.86,
+ "end": 18506.86,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2389,
+ "start": 18506.86,
+ "end": 18510.14,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2390,
+ "start": 18510.14,
+ "end": 18513.38,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2391,
+ "start": 18513.38,
+ "end": 18515.5,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2392,
+ "start": 18515.5,
+ "end": 18525.9,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2393,
+ "start": 18525.9,
+ "end": 18529.88,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2394,
+ "start": 18529.88,
+ "end": 18558.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2395,
+ "start": 18558.36,
+ "end": 18567.02,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2396,
+ "start": 18567.02,
+ "end": 18576.08,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2397,
+ "start": 18576.08,
+ "end": 18589.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2398,
+ "start": 18589.24,
+ "end": 18591.8,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2399,
+ "start": 18591.8,
+ "end": 18604.16,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2400,
+ "start": 18604.16,
+ "end": 18605.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2401,
+ "start": 18605.42,
+ "end": 18610.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2402,
+ "start": 18610.36,
+ "end": 18619.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2403,
+ "start": 18619.36,
+ "end": 18620.84,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2404,
+ "start": 18620.84,
+ "end": 18622.24,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2405,
+ "start": 18622.24,
+ "end": 18627.58,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2406,
+ "start": 18627.58,
+ "end": 18630.6,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2407,
+ "start": 18630.6,
+ "end": 18660.94,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2408,
+ "start": 18660.94,
+ "end": 18667.42,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2409,
+ "start": 18667.42,
+ "end": 18676.54,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2410,
+ "start": 18676.54,
+ "end": 18678.82,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2411,
+ "start": 18678.82,
+ "end": 18690.67,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2412,
+ "start": 18690.67,
+ "end": 18692.85,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2413,
+ "start": 18692.85,
+ "end": 18696.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2414,
+ "start": 18696.26,
+ "end": 18699.4,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2415,
+ "start": 18699.4,
+ "end": 18703.36,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2416,
+ "start": 18703.36,
+ "end": 18717.79,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2417,
+ "start": 18717.79,
+ "end": 18724.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2418,
+ "start": 18724.26,
+ "end": 18749.26,
+ "speaker": "U_UKN"
+ },
+ {
+ "id": 2419,
+ "start": 18749.26,
+ "end": 18796.02,
+ "speaker": "U_UKN"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.draftjs-2hours.json b/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.draftjs-2hours.json
new file mode 100644
index 00000000..7f1b2f71
--- /dev/null
+++ b/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.draftjs-2hours.json
@@ -0,0 +1,130945 @@
+{
+ "blocks": [
+ {
+ "key": "1798b",
+ "text": "Yeah, I I don't know the.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 0,
+ "end": 0.28,
+ "confidence": 0,
+ "word": "yeah,",
+ "punct": "Yeah,",
+ "index": 0
+ },
+ {
+ "start": 0.28,
+ "end": 27.44,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 1
+ },
+ {
+ "start": 27.44,
+ "end": 32.04,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2
+ },
+ {
+ "start": 32.04,
+ "end": 33,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 3
+ },
+ {
+ "start": 33,
+ "end": 71.08,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 4
+ },
+ {
+ "start": 71.08,
+ "end": 228.02,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the.",
+ "index": 5
+ }
+ ],
+ "start": 0
+ }
+ },
+ {
+ "key": "9qvki",
+ "text": "Yeah, that it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 228.02,
+ "end": 299.24,
+ "confidence": 0,
+ "word": "yeah,",
+ "punct": "Yeah,",
+ "index": 6
+ },
+ {
+ "start": 299.24,
+ "end": 300.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7
+ },
+ {
+ "start": 300.28,
+ "end": 320.68,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 8
+ }
+ ],
+ "start": 228.02
+ }
+ },
+ {
+ "key": "bn0q8",
+ "text": "No, I I, like, I know.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 320.68,
+ "end": 340.96,
+ "confidence": 0,
+ "word": "no,",
+ "punct": "No,",
+ "index": 9
+ },
+ {
+ "start": 340.96,
+ "end": 341.46,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10
+ },
+ {
+ "start": 341.46,
+ "end": 342.66,
+ "confidence": 0,
+ "word": "i,",
+ "punct": "I,",
+ "index": 11
+ },
+ {
+ "start": 342.66,
+ "end": 361.68,
+ "confidence": 0,
+ "word": "like,",
+ "punct": "like,",
+ "index": 12
+ },
+ {
+ "start": 361.68,
+ "end": 367.24,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13
+ },
+ {
+ "start": 367.24,
+ "end": 434.04,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know.",
+ "index": 14
+ }
+ ],
+ "start": 320.68
+ }
+ },
+ {
+ "key": "1a5bg",
+ "text": "So to make sure once we get started down, thank you for.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 434.04,
+ "end": 487.98,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 15
+ },
+ {
+ "start": 487.98,
+ "end": 496.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 16
+ },
+ {
+ "start": 496.8,
+ "end": 496.96,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 17
+ },
+ {
+ "start": 496.96,
+ "end": 497.12,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 18
+ },
+ {
+ "start": 497.12,
+ "end": 497.32,
+ "confidence": 0,
+ "word": "once",
+ "punct": "once",
+ "index": 19
+ },
+ {
+ "start": 497.32,
+ "end": 497.46,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 20
+ },
+ {
+ "start": 497.46,
+ "end": 497.62,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 21
+ },
+ {
+ "start": 497.62,
+ "end": 498.1,
+ "confidence": 0,
+ "word": "started",
+ "punct": "started",
+ "index": 22
+ },
+ {
+ "start": 498.1,
+ "end": 750.28,
+ "confidence": 0,
+ "word": "down,",
+ "punct": "down,",
+ "index": 23
+ },
+ {
+ "start": 750.28,
+ "end": 751.24,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 24
+ },
+ {
+ "start": 751.24,
+ "end": 751.4,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 25
+ },
+ {
+ "start": 751.4,
+ "end": 801.26,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for.",
+ "index": 26
+ }
+ ],
+ "start": 434.04
+ }
+ },
+ {
+ "key": "ce23u",
+ "text": "So I thank on the judiciary and commerce.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 801.26,
+ "end": 806.54,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 27
+ },
+ {
+ "start": 806.54,
+ "end": 925.4,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 28
+ },
+ {
+ "start": 925.4,
+ "end": 1191.86,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 29
+ },
+ {
+ "start": 1191.86,
+ "end": 1193.06,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 30
+ },
+ {
+ "start": 1193.06,
+ "end": 1193.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 31
+ },
+ {
+ "start": 1193.22,
+ "end": 1193.82,
+ "confidence": 0,
+ "word": "judiciary",
+ "punct": "judiciary",
+ "index": 32
+ },
+ {
+ "start": 1193.82,
+ "end": 1194.16,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 33
+ },
+ {
+ "start": 1194.16,
+ "end": 1194.64,
+ "confidence": 0,
+ "word": "commerce",
+ "punct": "commerce.",
+ "index": 34
+ }
+ ],
+ "start": 801.26
+ }
+ },
+ {
+ "key": "9qh32",
+ "text": "Science and transportation will come to order.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1194.64,
+ "end": 1195.12,
+ "confidence": 0,
+ "word": "science",
+ "punct": "Science",
+ "index": 35
+ },
+ {
+ "start": 1195.12,
+ "end": 1195.28,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 36
+ },
+ {
+ "start": 1195.28,
+ "end": 1196.2,
+ "confidence": 0,
+ "word": "transportation",
+ "punct": "transportation",
+ "index": 37
+ },
+ {
+ "start": 1196.2,
+ "end": 1196.9,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 38
+ },
+ {
+ "start": 1196.9,
+ "end": 1197.08,
+ "confidence": 0,
+ "word": "come",
+ "punct": "come",
+ "index": 39
+ },
+ {
+ "start": 1197.08,
+ "end": 1197.18,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 40
+ },
+ {
+ "start": 1197.18,
+ "end": 1198.16,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order.",
+ "index": 41
+ }
+ ],
+ "start": 1194.64
+ }
+ },
+ {
+ "key": "vdhq",
+ "text": "We welcome everyone today's hearing on Facebook, social media privacy and the use and abuse of data, although not unprecedented.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1198.16,
+ "end": 1198.82,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 42
+ },
+ {
+ "start": 1198.82,
+ "end": 1199.38,
+ "confidence": 0,
+ "word": "welcome",
+ "punct": "welcome",
+ "index": 43
+ },
+ {
+ "start": 1199.38,
+ "end": 1199.94,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 44
+ },
+ {
+ "start": 1199.94,
+ "end": 1200.56,
+ "confidence": 0,
+ "word": "today's",
+ "punct": "today's",
+ "index": 45
+ },
+ {
+ "start": 1200.56,
+ "end": 1201.62,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 46
+ },
+ {
+ "start": 1201.62,
+ "end": 1202.42,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 47
+ },
+ {
+ "start": 1202.42,
+ "end": 1203,
+ "confidence": 0,
+ "word": "facebook,",
+ "punct": "Facebook,",
+ "index": 48
+ },
+ {
+ "start": 1203,
+ "end": 1204.16,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 49
+ },
+ {
+ "start": 1204.16,
+ "end": 1204.62,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 50
+ },
+ {
+ "start": 1204.62,
+ "end": 1205.18,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 51
+ },
+ {
+ "start": 1205.18,
+ "end": 1206.24,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 52
+ },
+ {
+ "start": 1206.24,
+ "end": 1206.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 53
+ },
+ {
+ "start": 1206.42,
+ "end": 1206.74,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 54
+ },
+ {
+ "start": 1206.74,
+ "end": 1207.32,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 55
+ },
+ {
+ "start": 1207.32,
+ "end": 1208.34,
+ "confidence": 0,
+ "word": "abuse",
+ "punct": "abuse",
+ "index": 56
+ },
+ {
+ "start": 1208.34,
+ "end": 1208.66,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 57
+ },
+ {
+ "start": 1208.66,
+ "end": 1209.74,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 58
+ },
+ {
+ "start": 1209.74,
+ "end": 1210.66,
+ "confidence": 0,
+ "word": "although",
+ "punct": "although",
+ "index": 59
+ },
+ {
+ "start": 1210.66,
+ "end": 1210.92,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 60
+ },
+ {
+ "start": 1210.92,
+ "end": 1211.92,
+ "confidence": 0,
+ "word": "unprecedented",
+ "punct": "unprecedented.",
+ "index": 61
+ }
+ ],
+ "start": 1198.16
+ }
+ },
+ {
+ "key": "15t6b",
+ "text": "This is a unique are the issues.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1211.92,
+ "end": 1213,
+ "confidence": 0,
+ "word": "this",
+ "punct": "This",
+ "index": 62
+ },
+ {
+ "start": 1213,
+ "end": 1213.2,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 63
+ },
+ {
+ "start": 1213.2,
+ "end": 1213.26,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 64
+ },
+ {
+ "start": 1213.26,
+ "end": 1213.72,
+ "confidence": 0,
+ "word": "unique",
+ "punct": "unique",
+ "index": 65
+ },
+ {
+ "start": 1213.72,
+ "end": 1214.38,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 66
+ },
+ {
+ "start": 1214.38,
+ "end": 1215.4,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 67
+ },
+ {
+ "start": 1215.4,
+ "end": 1215.92,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues.",
+ "index": 68
+ }
+ ],
+ "start": 1211.92
+ }
+ },
+ {
+ "key": "3isvk",
+ "text": "We will consider range from data privacy and security to consumer protection and the Federal Trade Commission enforcement touching on jurisdictions of these two committees, we have 44 members between our two committees that may not seem like a large group by Facebook standards.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1215.92,
+ "end": 1216.68,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 69
+ },
+ {
+ "start": 1216.68,
+ "end": 1216.94,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 70
+ },
+ {
+ "start": 1216.94,
+ "end": 1217.54,
+ "confidence": 0,
+ "word": "consider",
+ "punct": "consider",
+ "index": 71
+ },
+ {
+ "start": 1217.54,
+ "end": 1218.64,
+ "confidence": 0,
+ "word": "range",
+ "punct": "range",
+ "index": 72
+ },
+ {
+ "start": 1218.64,
+ "end": 1218.92,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 73
+ },
+ {
+ "start": 1218.92,
+ "end": 1219.28,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 74
+ },
+ {
+ "start": 1219.28,
+ "end": 1220.55,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 75
+ },
+ {
+ "start": 1220.55,
+ "end": 1220.69,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 76
+ },
+ {
+ "start": 1220.69,
+ "end": 1221.29,
+ "confidence": 0,
+ "word": "security",
+ "punct": "security",
+ "index": 77
+ },
+ {
+ "start": 1221.29,
+ "end": 1222.29,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 78
+ },
+ {
+ "start": 1222.29,
+ "end": 1222.87,
+ "confidence": 0,
+ "word": "consumer",
+ "punct": "consumer",
+ "index": 79
+ },
+ {
+ "start": 1222.87,
+ "end": 1223.49,
+ "confidence": 0,
+ "word": "protection",
+ "punct": "protection",
+ "index": 80
+ },
+ {
+ "start": 1223.49,
+ "end": 1224.25,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 81
+ },
+ {
+ "start": 1224.25,
+ "end": 1224.37,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 82
+ },
+ {
+ "start": 1224.37,
+ "end": 1224.65,
+ "confidence": 0,
+ "word": "federal",
+ "punct": "Federal",
+ "index": 83
+ },
+ {
+ "start": 1224.65,
+ "end": 1224.95,
+ "confidence": 0,
+ "word": "trade",
+ "punct": "Trade",
+ "index": 84
+ },
+ {
+ "start": 1224.95,
+ "end": 1225.43,
+ "confidence": 0,
+ "word": "commission",
+ "punct": "Commission",
+ "index": 85
+ },
+ {
+ "start": 1225.43,
+ "end": 1226.17,
+ "confidence": 0,
+ "word": "enforcement",
+ "punct": "enforcement",
+ "index": 86
+ },
+ {
+ "start": 1226.17,
+ "end": 1227.31,
+ "confidence": 0,
+ "word": "touching",
+ "punct": "touching",
+ "index": 87
+ },
+ {
+ "start": 1227.31,
+ "end": 1227.53,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 88
+ },
+ {
+ "start": 1227.53,
+ "end": 1228.43,
+ "confidence": 0,
+ "word": "jurisdictions",
+ "punct": "jurisdictions",
+ "index": 89
+ },
+ {
+ "start": 1228.43,
+ "end": 1229.35,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 90
+ },
+ {
+ "start": 1229.35,
+ "end": 1229.63,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 91
+ },
+ {
+ "start": 1229.63,
+ "end": 1229.91,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two",
+ "index": 92
+ },
+ {
+ "start": 1229.91,
+ "end": 1231.36,
+ "confidence": 0,
+ "word": "committees,",
+ "punct": "committees,",
+ "index": 93
+ },
+ {
+ "start": 1231.36,
+ "end": 1232.34,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 94
+ },
+ {
+ "start": 1232.34,
+ "end": 1232.66,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 95
+ },
+ {
+ "start": 1232.66,
+ "end": 1233.24,
+ "confidence": 0,
+ "word": "44",
+ "punct": "44",
+ "index": 96
+ },
+ {
+ "start": 1233.24,
+ "end": 1233.88,
+ "confidence": 0,
+ "word": "members",
+ "punct": "members",
+ "index": 97
+ },
+ {
+ "start": 1233.88,
+ "end": 1234.4,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 98
+ },
+ {
+ "start": 1234.4,
+ "end": 1234.58,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 99
+ },
+ {
+ "start": 1234.58,
+ "end": 1234.76,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two",
+ "index": 100
+ },
+ {
+ "start": 1234.76,
+ "end": 1235.46,
+ "confidence": 0,
+ "word": "committees",
+ "punct": "committees",
+ "index": 101
+ },
+ {
+ "start": 1235.46,
+ "end": 1236.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 102
+ },
+ {
+ "start": 1236.44,
+ "end": 1236.68,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 103
+ },
+ {
+ "start": 1236.68,
+ "end": 1236.88,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 104
+ },
+ {
+ "start": 1236.88,
+ "end": 1237.84,
+ "confidence": 0,
+ "word": "seem",
+ "punct": "seem",
+ "index": 105
+ },
+ {
+ "start": 1237.84,
+ "end": 1238.1,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 106
+ },
+ {
+ "start": 1238.1,
+ "end": 1238.14,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 107
+ },
+ {
+ "start": 1238.14,
+ "end": 1238.66,
+ "confidence": 0,
+ "word": "large",
+ "punct": "large",
+ "index": 108
+ },
+ {
+ "start": 1238.66,
+ "end": 1239.04,
+ "confidence": 0,
+ "word": "group",
+ "punct": "group",
+ "index": 109
+ },
+ {
+ "start": 1239.04,
+ "end": 1239.3,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 110
+ },
+ {
+ "start": 1239.3,
+ "end": 1240.06,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 111
+ },
+ {
+ "start": 1240.06,
+ "end": 1240.68,
+ "confidence": 0,
+ "word": "standards",
+ "punct": "standards.",
+ "index": 112
+ }
+ ],
+ "start": 1215.92
+ }
+ },
+ {
+ "key": "1rqj4",
+ "text": "But it is significant here for a hearing in the United States Senate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1240.68,
+ "end": 1241.62,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 113
+ },
+ {
+ "start": 1241.62,
+ "end": 1241.74,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 114
+ },
+ {
+ "start": 1241.74,
+ "end": 1241.94,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 115
+ },
+ {
+ "start": 1241.94,
+ "end": 1242.68,
+ "confidence": 0,
+ "word": "significant",
+ "punct": "significant",
+ "index": 116
+ },
+ {
+ "start": 1242.68,
+ "end": 1243.04,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 117
+ },
+ {
+ "start": 1243.04,
+ "end": 1244.02,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 118
+ },
+ {
+ "start": 1244.02,
+ "end": 1244.08,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 119
+ },
+ {
+ "start": 1244.08,
+ "end": 1244.42,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 120
+ },
+ {
+ "start": 1244.42,
+ "end": 1244.58,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 121
+ },
+ {
+ "start": 1244.58,
+ "end": 1244.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 122
+ },
+ {
+ "start": 1244.7,
+ "end": 1244.96,
+ "confidence": 0,
+ "word": "united",
+ "punct": "United",
+ "index": 123
+ },
+ {
+ "start": 1244.96,
+ "end": 1245.26,
+ "confidence": 0,
+ "word": "states",
+ "punct": "States",
+ "index": 124
+ },
+ {
+ "start": 1245.26,
+ "end": 1246.12,
+ "confidence": 0,
+ "word": "senate",
+ "punct": "Senate.",
+ "index": 125
+ }
+ ],
+ "start": 1240.68
+ }
+ },
+ {
+ "key": "648ug",
+ "text": "We will do our best to keep things moving efficiently, given our circumstances.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1246.12,
+ "end": 1246.62,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 126
+ },
+ {
+ "start": 1246.62,
+ "end": 1246.96,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 127
+ },
+ {
+ "start": 1246.96,
+ "end": 1247.06,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 128
+ },
+ {
+ "start": 1247.06,
+ "end": 1247.3,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 129
+ },
+ {
+ "start": 1247.3,
+ "end": 1247.58,
+ "confidence": 0,
+ "word": "best",
+ "punct": "best",
+ "index": 130
+ },
+ {
+ "start": 1247.58,
+ "end": 1247.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 131
+ },
+ {
+ "start": 1247.86,
+ "end": 1248.1,
+ "confidence": 0,
+ "word": "keep",
+ "punct": "keep",
+ "index": 132
+ },
+ {
+ "start": 1248.1,
+ "end": 1248.38,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 133
+ },
+ {
+ "start": 1248.38,
+ "end": 1248.78,
+ "confidence": 0,
+ "word": "moving",
+ "punct": "moving",
+ "index": 134
+ },
+ {
+ "start": 1248.78,
+ "end": 1249.4,
+ "confidence": 0,
+ "word": "efficiently,",
+ "punct": "efficiently,",
+ "index": 135
+ },
+ {
+ "start": 1249.4,
+ "end": 1250.2,
+ "confidence": 0,
+ "word": "given",
+ "punct": "given",
+ "index": 136
+ },
+ {
+ "start": 1250.2,
+ "end": 1250.38,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 137
+ },
+ {
+ "start": 1250.38,
+ "end": 1251.2,
+ "confidence": 0,
+ "word": "circumstances",
+ "punct": "circumstances.",
+ "index": 138
+ }
+ ],
+ "start": 1246.12
+ }
+ },
+ {
+ "key": "400la",
+ "text": "We will begin with opening statements from the chairman and ranking members of each committee.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1251.2,
+ "end": 1252.12,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 139
+ },
+ {
+ "start": 1252.12,
+ "end": 1252.4,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 140
+ },
+ {
+ "start": 1252.4,
+ "end": 1252.78,
+ "confidence": 0,
+ "word": "begin",
+ "punct": "begin",
+ "index": 141
+ },
+ {
+ "start": 1252.78,
+ "end": 1253.14,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 142
+ },
+ {
+ "start": 1253.14,
+ "end": 1253.68,
+ "confidence": 0,
+ "word": "opening",
+ "punct": "opening",
+ "index": 143
+ },
+ {
+ "start": 1253.68,
+ "end": 1254.2,
+ "confidence": 0,
+ "word": "statements",
+ "punct": "statements",
+ "index": 144
+ },
+ {
+ "start": 1254.2,
+ "end": 1254.72,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 145
+ },
+ {
+ "start": 1254.72,
+ "end": 1254.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 146
+ },
+ {
+ "start": 1254.88,
+ "end": 1255.32,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 147
+ },
+ {
+ "start": 1255.32,
+ "end": 1255.66,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 148
+ },
+ {
+ "start": 1255.66,
+ "end": 1256.06,
+ "confidence": 0,
+ "word": "ranking",
+ "punct": "ranking",
+ "index": 149
+ },
+ {
+ "start": 1256.06,
+ "end": 1256.48,
+ "confidence": 0,
+ "word": "members",
+ "punct": "members",
+ "index": 150
+ },
+ {
+ "start": 1256.48,
+ "end": 1256.64,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 151
+ },
+ {
+ "start": 1256.64,
+ "end": 1256.88,
+ "confidence": 0,
+ "word": "each",
+ "punct": "each",
+ "index": 152
+ },
+ {
+ "start": 1256.88,
+ "end": 1257.34,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "committee.",
+ "index": 153
+ }
+ ],
+ "start": 1251.2
+ }
+ },
+ {
+ "key": "fc11h",
+ "text": "Starting with Chairman tone and then proceed with Mr Zuckerberg's opening statement.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1257.34,
+ "end": 1258.36,
+ "confidence": 0,
+ "word": "starting",
+ "punct": "Starting",
+ "index": 154
+ },
+ {
+ "start": 1258.36,
+ "end": 1258.58,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 155
+ },
+ {
+ "start": 1258.58,
+ "end": 1259.04,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman",
+ "index": 156
+ },
+ {
+ "start": 1259.04,
+ "end": 1260.2,
+ "confidence": 0,
+ "word": "tone",
+ "punct": "tone",
+ "index": 157
+ },
+ {
+ "start": 1260.2,
+ "end": 1260.94,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 158
+ },
+ {
+ "start": 1260.94,
+ "end": 1261.14,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 159
+ },
+ {
+ "start": 1261.14,
+ "end": 1261.8,
+ "confidence": 0,
+ "word": "proceed",
+ "punct": "proceed",
+ "index": 160
+ },
+ {
+ "start": 1261.8,
+ "end": 1262.82,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 161
+ },
+ {
+ "start": 1262.82,
+ "end": 1263.2,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 162
+ },
+ {
+ "start": 1263.2,
+ "end": 1264.24,
+ "confidence": 0,
+ "word": "zuckerberg's",
+ "punct": "Zuckerberg's",
+ "index": 163
+ },
+ {
+ "start": 1264.24,
+ "end": 1265.28,
+ "confidence": 0,
+ "word": "opening",
+ "punct": "opening",
+ "index": 164
+ },
+ {
+ "start": 1265.28,
+ "end": 1266.34,
+ "confidence": 0,
+ "word": "statement",
+ "punct": "statement.",
+ "index": 165
+ }
+ ],
+ "start": 1257.34
+ }
+ },
+ {
+ "key": "676a7",
+ "text": "We will then move on to questioning each member will have five minutes to question.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1266.34,
+ "end": 1267.38,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 166
+ },
+ {
+ "start": 1267.38,
+ "end": 1267.58,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 167
+ },
+ {
+ "start": 1267.58,
+ "end": 1267.84,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 168
+ },
+ {
+ "start": 1267.84,
+ "end": 1268.22,
+ "confidence": 0,
+ "word": "move",
+ "punct": "move",
+ "index": 169
+ },
+ {
+ "start": 1268.22,
+ "end": 1268.7,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 170
+ },
+ {
+ "start": 1268.7,
+ "end": 1268.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 171
+ },
+ {
+ "start": 1268.88,
+ "end": 1269.66,
+ "confidence": 0,
+ "word": "questioning",
+ "punct": "questioning",
+ "index": 172
+ },
+ {
+ "start": 1269.66,
+ "end": 1270.66,
+ "confidence": 0,
+ "word": "each",
+ "punct": "each",
+ "index": 173
+ },
+ {
+ "start": 1270.66,
+ "end": 1271.04,
+ "confidence": 0,
+ "word": "member",
+ "punct": "member",
+ "index": 174
+ },
+ {
+ "start": 1271.04,
+ "end": 1271.3,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 175
+ },
+ {
+ "start": 1271.3,
+ "end": 1271.5,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 176
+ },
+ {
+ "start": 1271.5,
+ "end": 1271.78,
+ "confidence": 0,
+ "word": "five",
+ "punct": "five",
+ "index": 177
+ },
+ {
+ "start": 1271.78,
+ "end": 1272.12,
+ "confidence": 0,
+ "word": "minutes",
+ "punct": "minutes",
+ "index": 178
+ },
+ {
+ "start": 1272.12,
+ "end": 1272.26,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 179
+ },
+ {
+ "start": 1272.26,
+ "end": 1272.92,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question.",
+ "index": 180
+ }
+ ],
+ "start": 1266.34
+ }
+ },
+ {
+ "key": "ag5vs",
+ "text": "Witnesses I'd like to remind the members of both committees that time limits will be and must be strictly enforced given the numbers that we have here today if you're over your time chairman tone and I will make sure to let you know.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1272.92,
+ "end": 1274.28,
+ "confidence": 0,
+ "word": "witnesses",
+ "punct": "Witnesses",
+ "index": 181
+ },
+ {
+ "start": 1274.28,
+ "end": 1275.22,
+ "confidence": 0,
+ "word": "i'd",
+ "punct": "I'd",
+ "index": 182
+ },
+ {
+ "start": 1275.22,
+ "end": 1275.4,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 183
+ },
+ {
+ "start": 1275.4,
+ "end": 1275.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 184
+ },
+ {
+ "start": 1275.48,
+ "end": 1276,
+ "confidence": 0,
+ "word": "remind",
+ "punct": "remind",
+ "index": 185
+ },
+ {
+ "start": 1276,
+ "end": 1276.58,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 186
+ },
+ {
+ "start": 1276.58,
+ "end": 1277.02,
+ "confidence": 0,
+ "word": "members",
+ "punct": "members",
+ "index": 187
+ },
+ {
+ "start": 1277.02,
+ "end": 1277.22,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 188
+ },
+ {
+ "start": 1277.22,
+ "end": 1277.46,
+ "confidence": 0,
+ "word": "both",
+ "punct": "both",
+ "index": 189
+ },
+ {
+ "start": 1277.46,
+ "end": 1279.14,
+ "confidence": 0,
+ "word": "committees",
+ "punct": "committees",
+ "index": 190
+ },
+ {
+ "start": 1279.14,
+ "end": 1280.16,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 191
+ },
+ {
+ "start": 1280.16,
+ "end": 1280.48,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 192
+ },
+ {
+ "start": 1280.48,
+ "end": 1280.84,
+ "confidence": 0,
+ "word": "limits",
+ "punct": "limits",
+ "index": 193
+ },
+ {
+ "start": 1280.84,
+ "end": 1281.12,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 194
+ },
+ {
+ "start": 1281.12,
+ "end": 1281.24,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 195
+ },
+ {
+ "start": 1281.24,
+ "end": 1282.02,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 196
+ },
+ {
+ "start": 1282.02,
+ "end": 1282.32,
+ "confidence": 0,
+ "word": "must",
+ "punct": "must",
+ "index": 197
+ },
+ {
+ "start": 1282.32,
+ "end": 1282.52,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 198
+ },
+ {
+ "start": 1282.52,
+ "end": 1283.04,
+ "confidence": 0,
+ "word": "strictly",
+ "punct": "strictly",
+ "index": 199
+ },
+ {
+ "start": 1283.04,
+ "end": 1283.56,
+ "confidence": 0,
+ "word": "enforced",
+ "punct": "enforced",
+ "index": 200
+ },
+ {
+ "start": 1283.56,
+ "end": 1283.92,
+ "confidence": 0,
+ "word": "given",
+ "punct": "given",
+ "index": 201
+ },
+ {
+ "start": 1283.92,
+ "end": 1284.04,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 202
+ },
+ {
+ "start": 1284.04,
+ "end": 1284.56,
+ "confidence": 0,
+ "word": "numbers",
+ "punct": "numbers",
+ "index": 203
+ },
+ {
+ "start": 1284.56,
+ "end": 1285.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 204
+ },
+ {
+ "start": 1285.4,
+ "end": 1285.56,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 205
+ },
+ {
+ "start": 1285.56,
+ "end": 1285.76,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 206
+ },
+ {
+ "start": 1285.76,
+ "end": 1286.02,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 207
+ },
+ {
+ "start": 1286.02,
+ "end": 1287.18,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 208
+ },
+ {
+ "start": 1287.18,
+ "end": 1288,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 209
+ },
+ {
+ "start": 1288,
+ "end": 1288.24,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 210
+ },
+ {
+ "start": 1288.24,
+ "end": 1288.46,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 211
+ },
+ {
+ "start": 1288.46,
+ "end": 1288.68,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 212
+ },
+ {
+ "start": 1288.68,
+ "end": 1289.16,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 213
+ },
+ {
+ "start": 1289.16,
+ "end": 1290.06,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 214
+ },
+ {
+ "start": 1290.06,
+ "end": 1290.4,
+ "confidence": 0,
+ "word": "tone",
+ "punct": "tone",
+ "index": 215
+ },
+ {
+ "start": 1290.4,
+ "end": 1290.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 216
+ },
+ {
+ "start": 1290.54,
+ "end": 1290.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 217
+ },
+ {
+ "start": 1290.74,
+ "end": 1290.98,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 218
+ },
+ {
+ "start": 1290.98,
+ "end": 1291.16,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 219
+ },
+ {
+ "start": 1291.16,
+ "end": 1291.5,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 220
+ },
+ {
+ "start": 1291.5,
+ "end": 1291.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 221
+ },
+ {
+ "start": 1291.66,
+ "end": 1291.9,
+ "confidence": 0,
+ "word": "let",
+ "punct": "let",
+ "index": 222
+ },
+ {
+ "start": 1291.9,
+ "end": 1292.06,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 223
+ },
+ {
+ "start": 1292.06,
+ "end": 1292.52,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know.",
+ "index": 224
+ }
+ ],
+ "start": 1272.92
+ }
+ },
+ {
+ "key": "4p7p9",
+ "text": "There will not be a second round as well, of course, there will be the usual follow up written questions for the record.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1292.52,
+ "end": 1293.5,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 225
+ },
+ {
+ "start": 1293.5,
+ "end": 1293.7,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 226
+ },
+ {
+ "start": 1293.7,
+ "end": 1293.9,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 227
+ },
+ {
+ "start": 1293.9,
+ "end": 1294.08,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 228
+ },
+ {
+ "start": 1294.08,
+ "end": 1294.16,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 229
+ },
+ {
+ "start": 1294.16,
+ "end": 1294.58,
+ "confidence": 0,
+ "word": "second",
+ "punct": "second",
+ "index": 230
+ },
+ {
+ "start": 1294.58,
+ "end": 1294.94,
+ "confidence": 0,
+ "word": "round",
+ "punct": "round",
+ "index": 231
+ },
+ {
+ "start": 1294.94,
+ "end": 1295.12,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 232
+ },
+ {
+ "start": 1295.12,
+ "end": 1295.46,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "well,",
+ "index": 233
+ },
+ {
+ "start": 1295.46,
+ "end": 1296.44,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 234
+ },
+ {
+ "start": 1296.44,
+ "end": 1296.76,
+ "confidence": 0,
+ "word": "course,",
+ "punct": "course,",
+ "index": 235
+ },
+ {
+ "start": 1296.76,
+ "end": 1296.98,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 236
+ },
+ {
+ "start": 1296.98,
+ "end": 1297.2,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 237
+ },
+ {
+ "start": 1297.2,
+ "end": 1297.32,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 238
+ },
+ {
+ "start": 1297.32,
+ "end": 1297.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 239
+ },
+ {
+ "start": 1297.5,
+ "end": 1297.96,
+ "confidence": 0,
+ "word": "usual",
+ "punct": "usual",
+ "index": 240
+ },
+ {
+ "start": 1297.96,
+ "end": 1298.4,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 241
+ },
+ {
+ "start": 1298.4,
+ "end": 1298.58,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 242
+ },
+ {
+ "start": 1298.58,
+ "end": 1298.92,
+ "confidence": 0,
+ "word": "written",
+ "punct": "written",
+ "index": 243
+ },
+ {
+ "start": 1298.92,
+ "end": 1299.5,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 244
+ },
+ {
+ "start": 1299.5,
+ "end": 1300.18,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 245
+ },
+ {
+ "start": 1300.18,
+ "end": 1300.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 246
+ },
+ {
+ "start": 1300.32,
+ "end": 1301.2,
+ "confidence": 0,
+ "word": "record",
+ "punct": "record.",
+ "index": 247
+ }
+ ],
+ "start": 1292.52
+ }
+ },
+ {
+ "key": "67c7t",
+ "text": "Questioning will alternate between majority and minority and between committees.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1301.2,
+ "end": 1302.22,
+ "confidence": 0,
+ "word": "questioning",
+ "punct": "Questioning",
+ "index": 248
+ },
+ {
+ "start": 1302.22,
+ "end": 1303.22,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 249
+ },
+ {
+ "start": 1303.22,
+ "end": 1303.82,
+ "confidence": 0,
+ "word": "alternate",
+ "punct": "alternate",
+ "index": 250
+ },
+ {
+ "start": 1303.82,
+ "end": 1304.32,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 251
+ },
+ {
+ "start": 1304.32,
+ "end": 1304.96,
+ "confidence": 0,
+ "word": "majority",
+ "punct": "majority",
+ "index": 252
+ },
+ {
+ "start": 1304.96,
+ "end": 1305.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 253
+ },
+ {
+ "start": 1305.3,
+ "end": 1305.92,
+ "confidence": 0,
+ "word": "minority",
+ "punct": "minority",
+ "index": 254
+ },
+ {
+ "start": 1305.92,
+ "end": 1306.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 255
+ },
+ {
+ "start": 1306.42,
+ "end": 1306.92,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 256
+ },
+ {
+ "start": 1306.92,
+ "end": 1308.04,
+ "confidence": 0,
+ "word": "committees",
+ "punct": "committees.",
+ "index": 257
+ }
+ ],
+ "start": 1301.2
+ }
+ },
+ {
+ "key": "5o6qi",
+ "text": "We will proceed in order based on respective committee seniority, we will anticipate a couple short breaks later in the afternoon.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1308.04,
+ "end": 1308.5,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 258
+ },
+ {
+ "start": 1308.5,
+ "end": 1308.88,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 259
+ },
+ {
+ "start": 1308.88,
+ "end": 1309.38,
+ "confidence": 0,
+ "word": "proceed",
+ "punct": "proceed",
+ "index": 260
+ },
+ {
+ "start": 1309.38,
+ "end": 1309.7,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 261
+ },
+ {
+ "start": 1309.7,
+ "end": 1310.08,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 262
+ },
+ {
+ "start": 1310.08,
+ "end": 1310.54,
+ "confidence": 0,
+ "word": "based",
+ "punct": "based",
+ "index": 263
+ },
+ {
+ "start": 1310.54,
+ "end": 1310.78,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 264
+ },
+ {
+ "start": 1310.78,
+ "end": 1311.6,
+ "confidence": 0,
+ "word": "respective",
+ "punct": "respective",
+ "index": 265
+ },
+ {
+ "start": 1311.6,
+ "end": 1312.48,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "committee",
+ "index": 266
+ },
+ {
+ "start": 1312.48,
+ "end": 1313.86,
+ "confidence": 0,
+ "word": "seniority,",
+ "punct": "seniority,",
+ "index": 267
+ },
+ {
+ "start": 1313.86,
+ "end": 1314.34,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 268
+ },
+ {
+ "start": 1314.34,
+ "end": 1314.68,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 269
+ },
+ {
+ "start": 1314.68,
+ "end": 1315.4,
+ "confidence": 0,
+ "word": "anticipate",
+ "punct": "anticipate",
+ "index": 270
+ },
+ {
+ "start": 1315.4,
+ "end": 1315.56,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 271
+ },
+ {
+ "start": 1315.56,
+ "end": 1315.9,
+ "confidence": 0,
+ "word": "couple",
+ "punct": "couple",
+ "index": 272
+ },
+ {
+ "start": 1315.9,
+ "end": 1316.28,
+ "confidence": 0,
+ "word": "short",
+ "punct": "short",
+ "index": 273
+ },
+ {
+ "start": 1316.28,
+ "end": 1316.64,
+ "confidence": 0,
+ "word": "breaks",
+ "punct": "breaks",
+ "index": 274
+ },
+ {
+ "start": 1316.64,
+ "end": 1317.3,
+ "confidence": 0,
+ "word": "later",
+ "punct": "later",
+ "index": 275
+ },
+ {
+ "start": 1317.3,
+ "end": 1317.4,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 276
+ },
+ {
+ "start": 1317.4,
+ "end": 1317.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 277
+ },
+ {
+ "start": 1317.52,
+ "end": 1318.12,
+ "confidence": 0,
+ "word": "afternoon",
+ "punct": "afternoon.",
+ "index": 278
+ }
+ ],
+ "start": 1308.04
+ }
+ },
+ {
+ "key": "fthmr",
+ "text": "And so it's my pleasure to recognize the chairman of the Commerce Committee chairman tone for his opening statement.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1318.12,
+ "end": 1319.16,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 279
+ },
+ {
+ "start": 1319.16,
+ "end": 1319.32,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 280
+ },
+ {
+ "start": 1319.32,
+ "end": 1319.52,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 281
+ },
+ {
+ "start": 1319.52,
+ "end": 1319.68,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 282
+ },
+ {
+ "start": 1319.68,
+ "end": 1320.12,
+ "confidence": 0,
+ "word": "pleasure",
+ "punct": "pleasure",
+ "index": 283
+ },
+ {
+ "start": 1320.12,
+ "end": 1320.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 284
+ },
+ {
+ "start": 1320.72,
+ "end": 1321.32,
+ "confidence": 0,
+ "word": "recognize",
+ "punct": "recognize",
+ "index": 285
+ },
+ {
+ "start": 1321.32,
+ "end": 1321.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 286
+ },
+ {
+ "start": 1321.52,
+ "end": 1321.98,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 287
+ },
+ {
+ "start": 1321.98,
+ "end": 1322.66,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 288
+ },
+ {
+ "start": 1322.66,
+ "end": 1322.82,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 289
+ },
+ {
+ "start": 1322.82,
+ "end": 1323.28,
+ "confidence": 0,
+ "word": "commerce",
+ "punct": "Commerce",
+ "index": 290
+ },
+ {
+ "start": 1323.28,
+ "end": 1324.66,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "Committee",
+ "index": 291
+ },
+ {
+ "start": 1324.66,
+ "end": 1325.86,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 292
+ },
+ {
+ "start": 1325.86,
+ "end": 1326.24,
+ "confidence": 0,
+ "word": "tone",
+ "punct": "tone",
+ "index": 293
+ },
+ {
+ "start": 1326.24,
+ "end": 1326.44,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 294
+ },
+ {
+ "start": 1326.44,
+ "end": 1326.68,
+ "confidence": 0,
+ "word": "his",
+ "punct": "his",
+ "index": 295
+ },
+ {
+ "start": 1326.68,
+ "end": 1327.14,
+ "confidence": 0,
+ "word": "opening",
+ "punct": "opening",
+ "index": 296
+ },
+ {
+ "start": 1327.14,
+ "end": 1327.62,
+ "confidence": 0,
+ "word": "statement",
+ "punct": "statement.",
+ "index": 297
+ }
+ ],
+ "start": 1318.12
+ }
+ },
+ {
+ "key": "dqmbk",
+ "text": "Thank you, chairman.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1327.62,
+ "end": 1328.64,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 298
+ },
+ {
+ "start": 1328.64,
+ "end": 1328.74,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 299
+ },
+ {
+ "start": 1328.74,
+ "end": 1329.04,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman.",
+ "index": 300
+ }
+ ],
+ "start": 1327.62
+ }
+ },
+ {
+ "key": "39r9m",
+ "text": "Grassley today's hearing is extraordinary it's extraordinary to hold a joint committee hearing it's even more extraordinary to have a single CEO testify before nearly half of the United States Senate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1329.04,
+ "end": 1329.48,
+ "confidence": 0,
+ "word": "grassley",
+ "punct": "Grassley",
+ "index": 301
+ },
+ {
+ "start": 1329.48,
+ "end": 1330.62,
+ "confidence": 0,
+ "word": "today's",
+ "punct": "today's",
+ "index": 302
+ },
+ {
+ "start": 1330.62,
+ "end": 1330.88,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 303
+ },
+ {
+ "start": 1330.88,
+ "end": 1331,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 304
+ },
+ {
+ "start": 1331,
+ "end": 1331.68,
+ "confidence": 0,
+ "word": "extraordinary",
+ "punct": "extraordinary",
+ "index": 305
+ },
+ {
+ "start": 1331.68,
+ "end": 1332.46,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 306
+ },
+ {
+ "start": 1332.46,
+ "end": 1333.02,
+ "confidence": 0,
+ "word": "extraordinary",
+ "punct": "extraordinary",
+ "index": 307
+ },
+ {
+ "start": 1333.02,
+ "end": 1333.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 308
+ },
+ {
+ "start": 1333.14,
+ "end": 1333.4,
+ "confidence": 0,
+ "word": "hold",
+ "punct": "hold",
+ "index": 309
+ },
+ {
+ "start": 1333.4,
+ "end": 1333.64,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 310
+ },
+ {
+ "start": 1333.64,
+ "end": 1334.08,
+ "confidence": 0,
+ "word": "joint",
+ "punct": "joint",
+ "index": 311
+ },
+ {
+ "start": 1334.08,
+ "end": 1334.5,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "committee",
+ "index": 312
+ },
+ {
+ "start": 1334.5,
+ "end": 1334.88,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 313
+ },
+ {
+ "start": 1334.88,
+ "end": 1335.78,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 314
+ },
+ {
+ "start": 1335.78,
+ "end": 1335.98,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 315
+ },
+ {
+ "start": 1335.98,
+ "end": 1336.18,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 316
+ },
+ {
+ "start": 1336.18,
+ "end": 1336.92,
+ "confidence": 0,
+ "word": "extraordinary",
+ "punct": "extraordinary",
+ "index": 317
+ },
+ {
+ "start": 1336.92,
+ "end": 1337.02,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 318
+ },
+ {
+ "start": 1337.02,
+ "end": 1337.28,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 319
+ },
+ {
+ "start": 1337.28,
+ "end": 1337.48,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 320
+ },
+ {
+ "start": 1337.48,
+ "end": 1337.98,
+ "confidence": 0,
+ "word": "single",
+ "punct": "single",
+ "index": 321
+ },
+ {
+ "start": 1337.98,
+ "end": 1338.72,
+ "confidence": 0,
+ "word": "ceo",
+ "punct": "CEO",
+ "index": 322
+ },
+ {
+ "start": 1338.72,
+ "end": 1339.42,
+ "confidence": 0,
+ "word": "testify",
+ "punct": "testify",
+ "index": 323
+ },
+ {
+ "start": 1339.42,
+ "end": 1339.72,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 324
+ },
+ {
+ "start": 1339.72,
+ "end": 1340.14,
+ "confidence": 0,
+ "word": "nearly",
+ "punct": "nearly",
+ "index": 325
+ },
+ {
+ "start": 1340.14,
+ "end": 1340.5,
+ "confidence": 0,
+ "word": "half",
+ "punct": "half",
+ "index": 326
+ },
+ {
+ "start": 1340.5,
+ "end": 1341.1,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 327
+ },
+ {
+ "start": 1341.1,
+ "end": 1341.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 328
+ },
+ {
+ "start": 1341.22,
+ "end": 1341.54,
+ "confidence": 0,
+ "word": "united",
+ "punct": "United",
+ "index": 329
+ },
+ {
+ "start": 1341.54,
+ "end": 1341.82,
+ "confidence": 0,
+ "word": "states",
+ "punct": "States",
+ "index": 330
+ },
+ {
+ "start": 1341.82,
+ "end": 1342.66,
+ "confidence": 0,
+ "word": "senate",
+ "punct": "Senate.",
+ "index": 331
+ }
+ ],
+ "start": 1329.04
+ }
+ },
+ {
+ "key": "6247l",
+ "text": "But then Facebook is pretty extraordinary.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1342.66,
+ "end": 1343.28,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 332
+ },
+ {
+ "start": 1343.28,
+ "end": 1343.48,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 333
+ },
+ {
+ "start": 1343.48,
+ "end": 1344.04,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 334
+ },
+ {
+ "start": 1344.04,
+ "end": 1344.48,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 335
+ },
+ {
+ "start": 1344.48,
+ "end": 1345.02,
+ "confidence": 0,
+ "word": "pretty",
+ "punct": "pretty",
+ "index": 336
+ },
+ {
+ "start": 1345.02,
+ "end": 1345.6,
+ "confidence": 0,
+ "word": "extraordinary",
+ "punct": "extraordinary.",
+ "index": 337
+ }
+ ],
+ "start": 1342.66
+ }
+ },
+ {
+ "key": "1bska",
+ "text": "More than 2,000,000,000 people use Facebook every month.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1345.6,
+ "end": 1346.6,
+ "confidence": 0,
+ "word": "more",
+ "punct": "More",
+ "index": 338
+ },
+ {
+ "start": 1346.6,
+ "end": 1346.74,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 339
+ },
+ {
+ "start": 1346.74,
+ "end": 1347.24,
+ "confidence": 0,
+ "word": "2,000,000,000",
+ "punct": "2,000,000,000",
+ "index": 340
+ },
+ {
+ "start": 1347.24,
+ "end": 1347.5,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 341
+ },
+ {
+ "start": 1347.5,
+ "end": 1347.78,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 342
+ },
+ {
+ "start": 1347.78,
+ "end": 1348.32,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 343
+ },
+ {
+ "start": 1348.32,
+ "end": 1349.02,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 344
+ },
+ {
+ "start": 1349.02,
+ "end": 1349.24,
+ "confidence": 0,
+ "word": "month",
+ "punct": "month.",
+ "index": 345
+ }
+ ],
+ "start": 1345.6
+ }
+ },
+ {
+ "key": "ag1kd",
+ "text": "1.4",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1349.24,
+ "end": 1351.06,
+ "confidence": 0,
+ "word": "14",
+ "punct": "1.4",
+ "index": 346
+ }
+ ],
+ "start": 1349.24
+ }
+ },
+ {
+ "key": "2ud6p",
+ "text": "billion people use it every day.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1351.06,
+ "end": 1351.5,
+ "confidence": 0,
+ "word": "billion",
+ "punct": "billion",
+ "index": 347
+ },
+ {
+ "start": 1351.5,
+ "end": 1351.78,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 348
+ },
+ {
+ "start": 1351.78,
+ "end": 1352.04,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 349
+ },
+ {
+ "start": 1352.04,
+ "end": 1352.2,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 350
+ },
+ {
+ "start": 1352.2,
+ "end": 1352.88,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 351
+ },
+ {
+ "start": 1352.88,
+ "end": 1353.18,
+ "confidence": 0,
+ "word": "day",
+ "punct": "day.",
+ "index": 352
+ }
+ ],
+ "start": 1351.06
+ }
+ },
+ {
+ "key": "nd67",
+ "text": "More than the population of any country on Earth, except China and more than four times the population of the United States it's also more than 1,500 times the population of my home state of South Dakota.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1353.18,
+ "end": 1354.24,
+ "confidence": 0,
+ "word": "more",
+ "punct": "More",
+ "index": 353
+ },
+ {
+ "start": 1354.24,
+ "end": 1354.4,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 354
+ },
+ {
+ "start": 1354.4,
+ "end": 1354.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 355
+ },
+ {
+ "start": 1354.52,
+ "end": 1355.18,
+ "confidence": 0,
+ "word": "population",
+ "punct": "population",
+ "index": 356
+ },
+ {
+ "start": 1355.18,
+ "end": 1355.32,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 357
+ },
+ {
+ "start": 1355.32,
+ "end": 1355.66,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 358
+ },
+ {
+ "start": 1355.66,
+ "end": 1356.16,
+ "confidence": 0,
+ "word": "country",
+ "punct": "country",
+ "index": 359
+ },
+ {
+ "start": 1356.16,
+ "end": 1356.52,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 360
+ },
+ {
+ "start": 1356.52,
+ "end": 1356.86,
+ "confidence": 0,
+ "word": "earth,",
+ "punct": "Earth,",
+ "index": 361
+ },
+ {
+ "start": 1356.86,
+ "end": 1357.28,
+ "confidence": 0,
+ "word": "except",
+ "punct": "except",
+ "index": 362
+ },
+ {
+ "start": 1357.28,
+ "end": 1357.66,
+ "confidence": 0,
+ "word": "china",
+ "punct": "China",
+ "index": 363
+ },
+ {
+ "start": 1357.66,
+ "end": 1358.6,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 364
+ },
+ {
+ "start": 1358.6,
+ "end": 1358.76,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 365
+ },
+ {
+ "start": 1358.76,
+ "end": 1358.9,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 366
+ },
+ {
+ "start": 1358.9,
+ "end": 1359.1,
+ "confidence": 0,
+ "word": "four",
+ "punct": "four",
+ "index": 367
+ },
+ {
+ "start": 1359.1,
+ "end": 1359.36,
+ "confidence": 0,
+ "word": "times",
+ "punct": "times",
+ "index": 368
+ },
+ {
+ "start": 1359.36,
+ "end": 1359.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 369
+ },
+ {
+ "start": 1359.5,
+ "end": 1360.06,
+ "confidence": 0,
+ "word": "population",
+ "punct": "population",
+ "index": 370
+ },
+ {
+ "start": 1360.06,
+ "end": 1360.14,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 371
+ },
+ {
+ "start": 1360.14,
+ "end": 1360.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 372
+ },
+ {
+ "start": 1360.24,
+ "end": 1360.52,
+ "confidence": 0,
+ "word": "united",
+ "punct": "United",
+ "index": 373
+ },
+ {
+ "start": 1360.52,
+ "end": 1361.38,
+ "confidence": 0,
+ "word": "states",
+ "punct": "States",
+ "index": 374
+ },
+ {
+ "start": 1361.38,
+ "end": 1362.08,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 375
+ },
+ {
+ "start": 1362.08,
+ "end": 1362.34,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 376
+ },
+ {
+ "start": 1362.34,
+ "end": 1362.5,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 377
+ },
+ {
+ "start": 1362.5,
+ "end": 1362.66,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 378
+ },
+ {
+ "start": 1362.66,
+ "end": 1363.56,
+ "confidence": 0,
+ "word": "1,500",
+ "punct": "1,500",
+ "index": 379
+ },
+ {
+ "start": 1363.56,
+ "end": 1364.14,
+ "confidence": 0,
+ "word": "times",
+ "punct": "times",
+ "index": 380
+ },
+ {
+ "start": 1364.14,
+ "end": 1364.28,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 381
+ },
+ {
+ "start": 1364.28,
+ "end": 1364.92,
+ "confidence": 0,
+ "word": "population",
+ "punct": "population",
+ "index": 382
+ },
+ {
+ "start": 1364.92,
+ "end": 1365.5,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 383
+ },
+ {
+ "start": 1365.5,
+ "end": 1365.68,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 384
+ },
+ {
+ "start": 1365.68,
+ "end": 1365.88,
+ "confidence": 0,
+ "word": "home",
+ "punct": "home",
+ "index": 385
+ },
+ {
+ "start": 1365.88,
+ "end": 1366.1,
+ "confidence": 0,
+ "word": "state",
+ "punct": "state",
+ "index": 386
+ },
+ {
+ "start": 1366.1,
+ "end": 1366.18,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 387
+ },
+ {
+ "start": 1366.18,
+ "end": 1366.44,
+ "confidence": 0,
+ "word": "south",
+ "punct": "South",
+ "index": 388
+ },
+ {
+ "start": 1366.44,
+ "end": 1367.42,
+ "confidence": 0,
+ "word": "dakota",
+ "punct": "Dakota.",
+ "index": 389
+ }
+ ],
+ "start": 1353.18
+ }
+ },
+ {
+ "key": "cmakr",
+ "text": "Plus, roughly 45% of American adults report getting at least some of their news from Facebook in many respects Facebook's incredible reach is why we're here today we're here because of what you Mr Zuckerberg have described as a breach of trust.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1367.42,
+ "end": 1368.22,
+ "confidence": 0,
+ "word": "plus,",
+ "punct": "Plus,",
+ "index": 390
+ },
+ {
+ "start": 1368.22,
+ "end": 1368.6,
+ "confidence": 0,
+ "word": "roughly",
+ "punct": "roughly",
+ "index": 391
+ },
+ {
+ "start": 1368.6,
+ "end": 1369.48,
+ "confidence": 0,
+ "word": "45%",
+ "punct": "45%",
+ "index": 392
+ },
+ {
+ "start": 1369.48,
+ "end": 1369.58,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 393
+ },
+ {
+ "start": 1369.58,
+ "end": 1369.96,
+ "confidence": 0,
+ "word": "american",
+ "punct": "American",
+ "index": 394
+ },
+ {
+ "start": 1369.96,
+ "end": 1370.3,
+ "confidence": 0,
+ "word": "adults",
+ "punct": "adults",
+ "index": 395
+ },
+ {
+ "start": 1370.3,
+ "end": 1370.68,
+ "confidence": 0,
+ "word": "report",
+ "punct": "report",
+ "index": 396
+ },
+ {
+ "start": 1370.68,
+ "end": 1370.96,
+ "confidence": 0,
+ "word": "getting",
+ "punct": "getting",
+ "index": 397
+ },
+ {
+ "start": 1370.96,
+ "end": 1371.04,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 398
+ },
+ {
+ "start": 1371.04,
+ "end": 1371.22,
+ "confidence": 0,
+ "word": "least",
+ "punct": "least",
+ "index": 399
+ },
+ {
+ "start": 1371.22,
+ "end": 1371.38,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 400
+ },
+ {
+ "start": 1371.38,
+ "end": 1371.48,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 401
+ },
+ {
+ "start": 1371.48,
+ "end": 1371.64,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 402
+ },
+ {
+ "start": 1371.64,
+ "end": 1371.88,
+ "confidence": 0,
+ "word": "news",
+ "punct": "news",
+ "index": 403
+ },
+ {
+ "start": 1371.88,
+ "end": 1372.04,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 404
+ },
+ {
+ "start": 1372.04,
+ "end": 1372.5,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 405
+ },
+ {
+ "start": 1372.5,
+ "end": 1373.54,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 406
+ },
+ {
+ "start": 1373.54,
+ "end": 1373.76,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 407
+ },
+ {
+ "start": 1373.76,
+ "end": 1374.94,
+ "confidence": 0,
+ "word": "respects",
+ "punct": "respects",
+ "index": 408
+ },
+ {
+ "start": 1374.94,
+ "end": 1375.92,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 409
+ },
+ {
+ "start": 1375.92,
+ "end": 1376.5,
+ "confidence": 0,
+ "word": "incredible",
+ "punct": "incredible",
+ "index": 410
+ },
+ {
+ "start": 1376.5,
+ "end": 1376.9,
+ "confidence": 0,
+ "word": "reach",
+ "punct": "reach",
+ "index": 411
+ },
+ {
+ "start": 1376.9,
+ "end": 1377.38,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 412
+ },
+ {
+ "start": 1377.38,
+ "end": 1377.56,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 413
+ },
+ {
+ "start": 1377.56,
+ "end": 1377.76,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 414
+ },
+ {
+ "start": 1377.76,
+ "end": 1377.92,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 415
+ },
+ {
+ "start": 1377.92,
+ "end": 1378.2,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 416
+ },
+ {
+ "start": 1378.2,
+ "end": 1379.38,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 417
+ },
+ {
+ "start": 1379.38,
+ "end": 1379.54,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 418
+ },
+ {
+ "start": 1379.54,
+ "end": 1379.84,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 419
+ },
+ {
+ "start": 1379.84,
+ "end": 1379.98,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 420
+ },
+ {
+ "start": 1379.98,
+ "end": 1380.14,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 421
+ },
+ {
+ "start": 1380.14,
+ "end": 1380.26,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 422
+ },
+ {
+ "start": 1380.26,
+ "end": 1380.58,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 423
+ },
+ {
+ "start": 1380.58,
+ "end": 1381.24,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg",
+ "index": 424
+ },
+ {
+ "start": 1381.24,
+ "end": 1381.44,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 425
+ },
+ {
+ "start": 1381.44,
+ "end": 1381.92,
+ "confidence": 0,
+ "word": "described",
+ "punct": "described",
+ "index": 426
+ },
+ {
+ "start": 1381.92,
+ "end": 1382.08,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 427
+ },
+ {
+ "start": 1382.08,
+ "end": 1382.16,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 428
+ },
+ {
+ "start": 1382.16,
+ "end": 1382.4,
+ "confidence": 0,
+ "word": "breach",
+ "punct": "breach",
+ "index": 429
+ },
+ {
+ "start": 1382.4,
+ "end": 1382.5,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 430
+ },
+ {
+ "start": 1382.5,
+ "end": 1382.86,
+ "confidence": 0,
+ "word": "trust",
+ "punct": "trust.",
+ "index": 431
+ }
+ ],
+ "start": 1367.42
+ }
+ },
+ {
+ "key": "8kuq6",
+ "text": "A quiz app used by approximately 300,000 people led to information about 87,000,000 Facebook users being obtained by the company.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1382.86,
+ "end": 1384.04,
+ "confidence": 0,
+ "word": "a",
+ "punct": "A",
+ "index": 432
+ },
+ {
+ "start": 1384.04,
+ "end": 1384.34,
+ "confidence": 0,
+ "word": "quiz",
+ "punct": "quiz",
+ "index": 433
+ },
+ {
+ "start": 1384.34,
+ "end": 1384.66,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 434
+ },
+ {
+ "start": 1384.66,
+ "end": 1384.92,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 435
+ },
+ {
+ "start": 1384.92,
+ "end": 1385.06,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 436
+ },
+ {
+ "start": 1385.06,
+ "end": 1385.76,
+ "confidence": 0,
+ "word": "approximately",
+ "punct": "approximately",
+ "index": 437
+ },
+ {
+ "start": 1385.76,
+ "end": 1386.68,
+ "confidence": 0,
+ "word": "300,000",
+ "punct": "300,000",
+ "index": 438
+ },
+ {
+ "start": 1386.68,
+ "end": 1387.04,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 439
+ },
+ {
+ "start": 1387.04,
+ "end": 1388.02,
+ "confidence": 0,
+ "word": "led",
+ "punct": "led",
+ "index": 440
+ },
+ {
+ "start": 1388.02,
+ "end": 1388.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 441
+ },
+ {
+ "start": 1388.12,
+ "end": 1388.84,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 442
+ },
+ {
+ "start": 1388.84,
+ "end": 1389.68,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 443
+ },
+ {
+ "start": 1389.68,
+ "end": 1390.78,
+ "confidence": 0,
+ "word": "87,000,000",
+ "punct": "87,000,000",
+ "index": 444
+ },
+ {
+ "start": 1390.78,
+ "end": 1391.3,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 445
+ },
+ {
+ "start": 1391.3,
+ "end": 1391.74,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 446
+ },
+ {
+ "start": 1391.74,
+ "end": 1391.96,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 447
+ },
+ {
+ "start": 1391.96,
+ "end": 1392.44,
+ "confidence": 0,
+ "word": "obtained",
+ "punct": "obtained",
+ "index": 448
+ },
+ {
+ "start": 1392.44,
+ "end": 1392.58,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 449
+ },
+ {
+ "start": 1392.58,
+ "end": 1392.78,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 450
+ },
+ {
+ "start": 1392.78,
+ "end": 1393.24,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company.",
+ "index": 451
+ }
+ ],
+ "start": 1382.86
+ }
+ },
+ {
+ "key": "10de8",
+ "text": "Cambridge Analytica.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1393.24,
+ "end": 1393.8,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 452
+ },
+ {
+ "start": 1393.8,
+ "end": 1395.06,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica.",
+ "index": 453
+ }
+ ],
+ "start": 1393.24
+ }
+ },
+ {
+ "key": "b389g",
+ "text": "There are plenty of questions about the behavior of Cambridge Analytica and we expect to hold a future hearing on Cambridge and similar firms.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1395.06,
+ "end": 1395.84,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 454
+ },
+ {
+ "start": 1395.84,
+ "end": 1396.02,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 455
+ },
+ {
+ "start": 1396.02,
+ "end": 1396.44,
+ "confidence": 0,
+ "word": "plenty",
+ "punct": "plenty",
+ "index": 456
+ },
+ {
+ "start": 1396.44,
+ "end": 1396.6,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 457
+ },
+ {
+ "start": 1396.6,
+ "end": 1397.1,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 458
+ },
+ {
+ "start": 1397.1,
+ "end": 1397.46,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 459
+ },
+ {
+ "start": 1397.46,
+ "end": 1397.72,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 460
+ },
+ {
+ "start": 1397.72,
+ "end": 1398.18,
+ "confidence": 0,
+ "word": "behavior",
+ "punct": "behavior",
+ "index": 461
+ },
+ {
+ "start": 1398.18,
+ "end": 1398.96,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 462
+ },
+ {
+ "start": 1398.96,
+ "end": 1399.44,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 463
+ },
+ {
+ "start": 1399.44,
+ "end": 1399.94,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 464
+ },
+ {
+ "start": 1399.94,
+ "end": 1400.16,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 465
+ },
+ {
+ "start": 1400.16,
+ "end": 1400.26,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 466
+ },
+ {
+ "start": 1400.26,
+ "end": 1400.62,
+ "confidence": 0,
+ "word": "expect",
+ "punct": "expect",
+ "index": 467
+ },
+ {
+ "start": 1400.62,
+ "end": 1400.74,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 468
+ },
+ {
+ "start": 1400.74,
+ "end": 1400.94,
+ "confidence": 0,
+ "word": "hold",
+ "punct": "hold",
+ "index": 469
+ },
+ {
+ "start": 1400.94,
+ "end": 1400.98,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 470
+ },
+ {
+ "start": 1400.98,
+ "end": 1401.38,
+ "confidence": 0,
+ "word": "future",
+ "punct": "future",
+ "index": 471
+ },
+ {
+ "start": 1401.38,
+ "end": 1401.74,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 472
+ },
+ {
+ "start": 1401.74,
+ "end": 1401.94,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 473
+ },
+ {
+ "start": 1401.94,
+ "end": 1402.44,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 474
+ },
+ {
+ "start": 1402.44,
+ "end": 1402.6,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 475
+ },
+ {
+ "start": 1402.6,
+ "end": 1403.5,
+ "confidence": 0,
+ "word": "similar",
+ "punct": "similar",
+ "index": 476
+ },
+ {
+ "start": 1403.5,
+ "end": 1403.94,
+ "confidence": 0,
+ "word": "firms",
+ "punct": "firms.",
+ "index": 477
+ }
+ ],
+ "start": 1395.06
+ }
+ },
+ {
+ "key": "dhhkc",
+ "text": "But as you said, this is not likely to be an isolated incident.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1403.94,
+ "end": 1404.8,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 478
+ },
+ {
+ "start": 1404.8,
+ "end": 1404.94,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 479
+ },
+ {
+ "start": 1404.94,
+ "end": 1405.06,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 480
+ },
+ {
+ "start": 1405.06,
+ "end": 1405.9,
+ "confidence": 0,
+ "word": "said,",
+ "punct": "said,",
+ "index": 481
+ },
+ {
+ "start": 1405.9,
+ "end": 1406.48,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 482
+ },
+ {
+ "start": 1406.48,
+ "end": 1406.68,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 483
+ },
+ {
+ "start": 1406.68,
+ "end": 1407.08,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 484
+ },
+ {
+ "start": 1407.08,
+ "end": 1407.76,
+ "confidence": 0,
+ "word": "likely",
+ "punct": "likely",
+ "index": 485
+ },
+ {
+ "start": 1407.76,
+ "end": 1408.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 486
+ },
+ {
+ "start": 1408.12,
+ "end": 1408.26,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 487
+ },
+ {
+ "start": 1408.26,
+ "end": 1409.04,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 488
+ },
+ {
+ "start": 1409.04,
+ "end": 1409.68,
+ "confidence": 0,
+ "word": "isolated",
+ "punct": "isolated",
+ "index": 489
+ },
+ {
+ "start": 1409.68,
+ "end": 1410.6,
+ "confidence": 0,
+ "word": "incident",
+ "punct": "incident.",
+ "index": 490
+ }
+ ],
+ "start": 1403.94
+ }
+ },
+ {
+ "key": "7dli6",
+ "text": "A fact demonstrated by Facebook suspension of another firm just this past weekend.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1410.6,
+ "end": 1410.78,
+ "confidence": 0,
+ "word": "a",
+ "punct": "A",
+ "index": 491
+ },
+ {
+ "start": 1410.78,
+ "end": 1411.1,
+ "confidence": 0,
+ "word": "fact",
+ "punct": "fact",
+ "index": 492
+ },
+ {
+ "start": 1411.1,
+ "end": 1411.7,
+ "confidence": 0,
+ "word": "demonstrated",
+ "punct": "demonstrated",
+ "index": 493
+ },
+ {
+ "start": 1411.7,
+ "end": 1411.86,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 494
+ },
+ {
+ "start": 1411.86,
+ "end": 1412.3,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 495
+ },
+ {
+ "start": 1412.3,
+ "end": 1412.84,
+ "confidence": 0,
+ "word": "suspension",
+ "punct": "suspension",
+ "index": 496
+ },
+ {
+ "start": 1412.84,
+ "end": 1412.94,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 497
+ },
+ {
+ "start": 1412.94,
+ "end": 1413.24,
+ "confidence": 0,
+ "word": "another",
+ "punct": "another",
+ "index": 498
+ },
+ {
+ "start": 1413.24,
+ "end": 1413.5,
+ "confidence": 0,
+ "word": "firm",
+ "punct": "firm",
+ "index": 499
+ },
+ {
+ "start": 1413.5,
+ "end": 1413.68,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 500
+ },
+ {
+ "start": 1413.68,
+ "end": 1413.86,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 501
+ },
+ {
+ "start": 1413.86,
+ "end": 1414.12,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past",
+ "index": 502
+ },
+ {
+ "start": 1414.12,
+ "end": 1414.98,
+ "confidence": 0,
+ "word": "weekend",
+ "punct": "weekend.",
+ "index": 503
+ }
+ ],
+ "start": 1410.6
+ }
+ },
+ {
+ "key": "5in69",
+ "text": "You promised that when Facebook discovers other apps that had access to large amounts of user data, you will ban them until those affected and that's appropriate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1414.98,
+ "end": 1415.52,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 504
+ },
+ {
+ "start": 1415.52,
+ "end": 1416.02,
+ "confidence": 0,
+ "word": "promised",
+ "punct": "promised",
+ "index": 505
+ },
+ {
+ "start": 1416.02,
+ "end": 1416.22,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 506
+ },
+ {
+ "start": 1416.22,
+ "end": 1416.54,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 507
+ },
+ {
+ "start": 1416.54,
+ "end": 1417.18,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 508
+ },
+ {
+ "start": 1417.18,
+ "end": 1417.7,
+ "confidence": 0,
+ "word": "discovers",
+ "punct": "discovers",
+ "index": 509
+ },
+ {
+ "start": 1417.7,
+ "end": 1418,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 510
+ },
+ {
+ "start": 1418,
+ "end": 1418.26,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 511
+ },
+ {
+ "start": 1418.26,
+ "end": 1418.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 512
+ },
+ {
+ "start": 1418.4,
+ "end": 1418.6,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 513
+ },
+ {
+ "start": 1418.6,
+ "end": 1419,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access",
+ "index": 514
+ },
+ {
+ "start": 1419,
+ "end": 1419.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 515
+ },
+ {
+ "start": 1419.12,
+ "end": 1419.4,
+ "confidence": 0,
+ "word": "large",
+ "punct": "large",
+ "index": 516
+ },
+ {
+ "start": 1419.4,
+ "end": 1419.68,
+ "confidence": 0,
+ "word": "amounts",
+ "punct": "amounts",
+ "index": 517
+ },
+ {
+ "start": 1419.68,
+ "end": 1419.82,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 518
+ },
+ {
+ "start": 1419.82,
+ "end": 1420.14,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 519
+ },
+ {
+ "start": 1420.14,
+ "end": 1420.46,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 520
+ },
+ {
+ "start": 1420.46,
+ "end": 1421.34,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 521
+ },
+ {
+ "start": 1421.34,
+ "end": 1421.52,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 522
+ },
+ {
+ "start": 1421.52,
+ "end": 1422.14,
+ "confidence": 0,
+ "word": "ban",
+ "punct": "ban",
+ "index": 523
+ },
+ {
+ "start": 1422.14,
+ "end": 1422.38,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 524
+ },
+ {
+ "start": 1422.38,
+ "end": 1422.7,
+ "confidence": 0,
+ "word": "until",
+ "punct": "until",
+ "index": 525
+ },
+ {
+ "start": 1422.7,
+ "end": 1422.98,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 526
+ },
+ {
+ "start": 1422.98,
+ "end": 1423.46,
+ "confidence": 0,
+ "word": "affected",
+ "punct": "affected",
+ "index": 527
+ },
+ {
+ "start": 1423.46,
+ "end": 1424.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 528
+ },
+ {
+ "start": 1424.42,
+ "end": 1424.64,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 529
+ },
+ {
+ "start": 1424.64,
+ "end": 1426.01,
+ "confidence": 0,
+ "word": "appropriate",
+ "punct": "appropriate.",
+ "index": 530
+ }
+ ],
+ "start": 1414.98
+ }
+ },
+ {
+ "key": "fhdor",
+ "text": "But it's unlikely to be enough for the 2,000,000,000 Facebook users.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1426.01,
+ "end": 1426.13,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 531
+ },
+ {
+ "start": 1426.13,
+ "end": 1426.27,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 532
+ },
+ {
+ "start": 1426.27,
+ "end": 1426.81,
+ "confidence": 0,
+ "word": "unlikely",
+ "punct": "unlikely",
+ "index": 533
+ },
+ {
+ "start": 1426.81,
+ "end": 1426.99,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 534
+ },
+ {
+ "start": 1426.99,
+ "end": 1427.11,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 535
+ },
+ {
+ "start": 1427.11,
+ "end": 1427.47,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough",
+ "index": 536
+ },
+ {
+ "start": 1427.47,
+ "end": 1427.81,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 537
+ },
+ {
+ "start": 1427.81,
+ "end": 1427.93,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 538
+ },
+ {
+ "start": 1427.93,
+ "end": 1428.61,
+ "confidence": 0,
+ "word": "2,000,000,000",
+ "punct": "2,000,000,000",
+ "index": 539
+ },
+ {
+ "start": 1428.61,
+ "end": 1429.11,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 540
+ },
+ {
+ "start": 1429.11,
+ "end": 1429.57,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users.",
+ "index": 541
+ }
+ ],
+ "start": 1426.01
+ }
+ },
+ {
+ "key": "f4sck",
+ "text": "One reason that so many people are worried about this incident is what it says about how Facebook works.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1429.57,
+ "end": 1430.63,
+ "confidence": 0,
+ "word": "one",
+ "punct": "One",
+ "index": 542
+ },
+ {
+ "start": 1430.63,
+ "end": 1430.99,
+ "confidence": 0,
+ "word": "reason",
+ "punct": "reason",
+ "index": 543
+ },
+ {
+ "start": 1430.99,
+ "end": 1431.17,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 544
+ },
+ {
+ "start": 1431.17,
+ "end": 1431.39,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 545
+ },
+ {
+ "start": 1431.39,
+ "end": 1431.63,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 546
+ },
+ {
+ "start": 1431.63,
+ "end": 1431.97,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 547
+ },
+ {
+ "start": 1431.97,
+ "end": 1432.41,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 548
+ },
+ {
+ "start": 1432.41,
+ "end": 1432.73,
+ "confidence": 0,
+ "word": "worried",
+ "punct": "worried",
+ "index": 549
+ },
+ {
+ "start": 1432.73,
+ "end": 1432.95,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 550
+ },
+ {
+ "start": 1432.95,
+ "end": 1433.17,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 551
+ },
+ {
+ "start": 1433.17,
+ "end": 1433.65,
+ "confidence": 0,
+ "word": "incident",
+ "punct": "incident",
+ "index": 552
+ },
+ {
+ "start": 1433.65,
+ "end": 1434.43,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 553
+ },
+ {
+ "start": 1434.43,
+ "end": 1434.59,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 554
+ },
+ {
+ "start": 1434.59,
+ "end": 1434.69,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 555
+ },
+ {
+ "start": 1434.69,
+ "end": 1434.89,
+ "confidence": 0,
+ "word": "says",
+ "punct": "says",
+ "index": 556
+ },
+ {
+ "start": 1434.89,
+ "end": 1435.25,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 557
+ },
+ {
+ "start": 1435.25,
+ "end": 1435.49,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 558
+ },
+ {
+ "start": 1435.49,
+ "end": 1435.99,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 559
+ },
+ {
+ "start": 1435.99,
+ "end": 1437.04,
+ "confidence": 0,
+ "word": "works",
+ "punct": "works.",
+ "index": 560
+ }
+ ],
+ "start": 1429.57
+ }
+ },
+ {
+ "key": "7iojo",
+ "text": "The idea that for every person who decided to try an app information about nearly 300 other people was scraped from your services to put it mildly disturbing.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1437.04,
+ "end": 1437.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 561
+ },
+ {
+ "start": 1437.88,
+ "end": 1438.26,
+ "confidence": 0,
+ "word": "idea",
+ "punct": "idea",
+ "index": 562
+ },
+ {
+ "start": 1438.26,
+ "end": 1439.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 563
+ },
+ {
+ "start": 1439.36,
+ "end": 1439.54,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 564
+ },
+ {
+ "start": 1439.54,
+ "end": 1439.84,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 565
+ },
+ {
+ "start": 1439.84,
+ "end": 1440.58,
+ "confidence": 0,
+ "word": "person",
+ "punct": "person",
+ "index": 566
+ },
+ {
+ "start": 1440.58,
+ "end": 1440.76,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 567
+ },
+ {
+ "start": 1440.76,
+ "end": 1441.34,
+ "confidence": 0,
+ "word": "decided",
+ "punct": "decided",
+ "index": 568
+ },
+ {
+ "start": 1441.34,
+ "end": 1441.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 569
+ },
+ {
+ "start": 1441.48,
+ "end": 1441.72,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 570
+ },
+ {
+ "start": 1441.72,
+ "end": 1441.98,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 571
+ },
+ {
+ "start": 1441.98,
+ "end": 1442.74,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 572
+ },
+ {
+ "start": 1442.74,
+ "end": 1443.78,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 573
+ },
+ {
+ "start": 1443.78,
+ "end": 1444.08,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 574
+ },
+ {
+ "start": 1444.08,
+ "end": 1444.46,
+ "confidence": 0,
+ "word": "nearly",
+ "punct": "nearly",
+ "index": 575
+ },
+ {
+ "start": 1444.46,
+ "end": 1445.08,
+ "confidence": 0,
+ "word": "300",
+ "punct": "300",
+ "index": 576
+ },
+ {
+ "start": 1445.08,
+ "end": 1445.56,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 577
+ },
+ {
+ "start": 1445.56,
+ "end": 1445.86,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 578
+ },
+ {
+ "start": 1445.86,
+ "end": 1446.84,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 579
+ },
+ {
+ "start": 1446.84,
+ "end": 1447.32,
+ "confidence": 0,
+ "word": "scraped",
+ "punct": "scraped",
+ "index": 580
+ },
+ {
+ "start": 1447.32,
+ "end": 1447.48,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 581
+ },
+ {
+ "start": 1447.48,
+ "end": 1447.68,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 582
+ },
+ {
+ "start": 1447.68,
+ "end": 1448.2,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 583
+ },
+ {
+ "start": 1448.2,
+ "end": 1448.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 584
+ },
+ {
+ "start": 1448.32,
+ "end": 1448.44,
+ "confidence": 0,
+ "word": "put",
+ "punct": "put",
+ "index": 585
+ },
+ {
+ "start": 1448.44,
+ "end": 1448.56,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 586
+ },
+ {
+ "start": 1448.56,
+ "end": 1449.38,
+ "confidence": 0,
+ "word": "mildly",
+ "punct": "mildly",
+ "index": 587
+ },
+ {
+ "start": 1449.38,
+ "end": 1450.8,
+ "confidence": 0,
+ "word": "disturbing",
+ "punct": "disturbing.",
+ "index": 588
+ }
+ ],
+ "start": 1437.04
+ }
+ },
+ {
+ "key": "5smhn",
+ "text": "And the fact that those 87,000,000 people may have technically consented to making their data available doesn't make most people feel any better.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1450.8,
+ "end": 1451.34,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 589
+ },
+ {
+ "start": 1451.34,
+ "end": 1451.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 590
+ },
+ {
+ "start": 1451.44,
+ "end": 1451.7,
+ "confidence": 0,
+ "word": "fact",
+ "punct": "fact",
+ "index": 591
+ },
+ {
+ "start": 1451.7,
+ "end": 1451.84,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 592
+ },
+ {
+ "start": 1451.84,
+ "end": 1452.2,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 593
+ },
+ {
+ "start": 1452.2,
+ "end": 1453.78,
+ "confidence": 0,
+ "word": "87,000,000",
+ "punct": "87,000,000",
+ "index": 594
+ },
+ {
+ "start": 1453.78,
+ "end": 1454.08,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 595
+ },
+ {
+ "start": 1454.08,
+ "end": 1454.32,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 596
+ },
+ {
+ "start": 1454.32,
+ "end": 1454.48,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 597
+ },
+ {
+ "start": 1454.48,
+ "end": 1454.94,
+ "confidence": 0,
+ "word": "technically",
+ "punct": "technically",
+ "index": 598
+ },
+ {
+ "start": 1454.94,
+ "end": 1455.44,
+ "confidence": 0,
+ "word": "consented",
+ "punct": "consented",
+ "index": 599
+ },
+ {
+ "start": 1455.44,
+ "end": 1455.56,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 600
+ },
+ {
+ "start": 1455.56,
+ "end": 1455.86,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 601
+ },
+ {
+ "start": 1455.86,
+ "end": 1456.06,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 602
+ },
+ {
+ "start": 1456.06,
+ "end": 1456.28,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 603
+ },
+ {
+ "start": 1456.28,
+ "end": 1456.72,
+ "confidence": 0,
+ "word": "available",
+ "punct": "available",
+ "index": 604
+ },
+ {
+ "start": 1456.72,
+ "end": 1457.04,
+ "confidence": 0,
+ "word": "doesn't",
+ "punct": "doesn't",
+ "index": 605
+ },
+ {
+ "start": 1457.04,
+ "end": 1457.3,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 606
+ },
+ {
+ "start": 1457.3,
+ "end": 1458,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 607
+ },
+ {
+ "start": 1458,
+ "end": 1458.26,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 608
+ },
+ {
+ "start": 1458.26,
+ "end": 1458.56,
+ "confidence": 0,
+ "word": "feel",
+ "punct": "feel",
+ "index": 609
+ },
+ {
+ "start": 1458.56,
+ "end": 1459.42,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 610
+ },
+ {
+ "start": 1459.42,
+ "end": 1459.66,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better.",
+ "index": 611
+ }
+ ],
+ "start": 1450.8
+ }
+ },
+ {
+ "key": "apc9m",
+ "text": "The recent revelation that malicious actors were able to utilize Facebook's default privacy settings to match email addresses and phone numbers found on the so called dark web to public Facebook profiles, potentially affecting all Facebook users only adds fuel to the fire.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1459.66,
+ "end": 1460.62,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 612
+ },
+ {
+ "start": 1460.62,
+ "end": 1460.96,
+ "confidence": 0,
+ "word": "recent",
+ "punct": "recent",
+ "index": 613
+ },
+ {
+ "start": 1460.96,
+ "end": 1461.5,
+ "confidence": 0,
+ "word": "revelation",
+ "punct": "revelation",
+ "index": 614
+ },
+ {
+ "start": 1461.5,
+ "end": 1461.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 615
+ },
+ {
+ "start": 1461.72,
+ "end": 1462.2,
+ "confidence": 0,
+ "word": "malicious",
+ "punct": "malicious",
+ "index": 616
+ },
+ {
+ "start": 1462.2,
+ "end": 1462.64,
+ "confidence": 0,
+ "word": "actors",
+ "punct": "actors",
+ "index": 617
+ },
+ {
+ "start": 1462.64,
+ "end": 1462.82,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 618
+ },
+ {
+ "start": 1462.82,
+ "end": 1463,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 619
+ },
+ {
+ "start": 1463,
+ "end": 1463.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 620
+ },
+ {
+ "start": 1463.12,
+ "end": 1463.66,
+ "confidence": 0,
+ "word": "utilize",
+ "punct": "utilize",
+ "index": 621
+ },
+ {
+ "start": 1463.66,
+ "end": 1464.22,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 622
+ },
+ {
+ "start": 1464.22,
+ "end": 1464.8,
+ "confidence": 0,
+ "word": "default",
+ "punct": "default",
+ "index": 623
+ },
+ {
+ "start": 1464.8,
+ "end": 1465.24,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 624
+ },
+ {
+ "start": 1465.24,
+ "end": 1465.62,
+ "confidence": 0,
+ "word": "settings",
+ "punct": "settings",
+ "index": 625
+ },
+ {
+ "start": 1465.62,
+ "end": 1466.4,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 626
+ },
+ {
+ "start": 1466.4,
+ "end": 1466.7,
+ "confidence": 0,
+ "word": "match",
+ "punct": "match",
+ "index": 627
+ },
+ {
+ "start": 1466.7,
+ "end": 1467.26,
+ "confidence": 0,
+ "word": "email",
+ "punct": "email",
+ "index": 628
+ },
+ {
+ "start": 1467.26,
+ "end": 1467.9,
+ "confidence": 0,
+ "word": "addresses",
+ "punct": "addresses",
+ "index": 629
+ },
+ {
+ "start": 1467.9,
+ "end": 1468.06,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 630
+ },
+ {
+ "start": 1468.06,
+ "end": 1468.32,
+ "confidence": 0,
+ "word": "phone",
+ "punct": "phone",
+ "index": 631
+ },
+ {
+ "start": 1468.32,
+ "end": 1468.66,
+ "confidence": 0,
+ "word": "numbers",
+ "punct": "numbers",
+ "index": 632
+ },
+ {
+ "start": 1468.66,
+ "end": 1468.94,
+ "confidence": 0,
+ "word": "found",
+ "punct": "found",
+ "index": 633
+ },
+ {
+ "start": 1468.94,
+ "end": 1469.08,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 634
+ },
+ {
+ "start": 1469.08,
+ "end": 1469.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 635
+ },
+ {
+ "start": 1469.2,
+ "end": 1469.42,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 636
+ },
+ {
+ "start": 1469.42,
+ "end": 1469.68,
+ "confidence": 0,
+ "word": "called",
+ "punct": "called",
+ "index": 637
+ },
+ {
+ "start": 1469.68,
+ "end": 1470.02,
+ "confidence": 0,
+ "word": "dark",
+ "punct": "dark",
+ "index": 638
+ },
+ {
+ "start": 1470.02,
+ "end": 1470.4,
+ "confidence": 0,
+ "word": "web",
+ "punct": "web",
+ "index": 639
+ },
+ {
+ "start": 1470.4,
+ "end": 1471.36,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 640
+ },
+ {
+ "start": 1471.36,
+ "end": 1471.8,
+ "confidence": 0,
+ "word": "public",
+ "punct": "public",
+ "index": 641
+ },
+ {
+ "start": 1471.8,
+ "end": 1472.34,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 642
+ },
+ {
+ "start": 1472.34,
+ "end": 1473.4,
+ "confidence": 0,
+ "word": "profiles,",
+ "punct": "profiles,",
+ "index": 643
+ },
+ {
+ "start": 1473.4,
+ "end": 1474.38,
+ "confidence": 0,
+ "word": "potentially",
+ "punct": "potentially",
+ "index": 644
+ },
+ {
+ "start": 1474.38,
+ "end": 1474.88,
+ "confidence": 0,
+ "word": "affecting",
+ "punct": "affecting",
+ "index": 645
+ },
+ {
+ "start": 1474.88,
+ "end": 1475.18,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 646
+ },
+ {
+ "start": 1475.18,
+ "end": 1475.78,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 647
+ },
+ {
+ "start": 1475.78,
+ "end": 1476.26,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 648
+ },
+ {
+ "start": 1476.26,
+ "end": 1477.28,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 649
+ },
+ {
+ "start": 1477.28,
+ "end": 1477.54,
+ "confidence": 0,
+ "word": "adds",
+ "punct": "adds",
+ "index": 650
+ },
+ {
+ "start": 1477.54,
+ "end": 1477.78,
+ "confidence": 0,
+ "word": "fuel",
+ "punct": "fuel",
+ "index": 651
+ },
+ {
+ "start": 1477.78,
+ "end": 1477.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 652
+ },
+ {
+ "start": 1477.88,
+ "end": 1478.02,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 653
+ },
+ {
+ "start": 1478.02,
+ "end": 1478.8,
+ "confidence": 0,
+ "word": "fire",
+ "punct": "fire.",
+ "index": 654
+ }
+ ],
+ "start": 1459.66
+ }
+ },
+ {
+ "key": "6uuqi",
+ "text": "What binds these two incidents is if they don't appear to be caused by the kind of negligence that allows typical data breaches to happen.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1478.8,
+ "end": 1479.44,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 655
+ },
+ {
+ "start": 1479.44,
+ "end": 1479.78,
+ "confidence": 0,
+ "word": "binds",
+ "punct": "binds",
+ "index": 656
+ },
+ {
+ "start": 1479.78,
+ "end": 1480.04,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 657
+ },
+ {
+ "start": 1480.04,
+ "end": 1480.18,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two",
+ "index": 658
+ },
+ {
+ "start": 1480.18,
+ "end": 1480.76,
+ "confidence": 0,
+ "word": "incidents",
+ "punct": "incidents",
+ "index": 659
+ },
+ {
+ "start": 1480.76,
+ "end": 1481.08,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 660
+ },
+ {
+ "start": 1481.08,
+ "end": 1481.2,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 661
+ },
+ {
+ "start": 1481.2,
+ "end": 1481.34,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 662
+ },
+ {
+ "start": 1481.34,
+ "end": 1481.58,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 663
+ },
+ {
+ "start": 1481.58,
+ "end": 1481.88,
+ "confidence": 0,
+ "word": "appear",
+ "punct": "appear",
+ "index": 664
+ },
+ {
+ "start": 1481.88,
+ "end": 1482,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 665
+ },
+ {
+ "start": 1482,
+ "end": 1482.14,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 666
+ },
+ {
+ "start": 1482.14,
+ "end": 1482.54,
+ "confidence": 0,
+ "word": "caused",
+ "punct": "caused",
+ "index": 667
+ },
+ {
+ "start": 1482.54,
+ "end": 1482.68,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 668
+ },
+ {
+ "start": 1482.68,
+ "end": 1482.84,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 669
+ },
+ {
+ "start": 1482.84,
+ "end": 1483.08,
+ "confidence": 0,
+ "word": "kind",
+ "punct": "kind",
+ "index": 670
+ },
+ {
+ "start": 1483.08,
+ "end": 1483.2,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 671
+ },
+ {
+ "start": 1483.2,
+ "end": 1483.8,
+ "confidence": 0,
+ "word": "negligence",
+ "punct": "negligence",
+ "index": 672
+ },
+ {
+ "start": 1483.8,
+ "end": 1483.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 673
+ },
+ {
+ "start": 1483.98,
+ "end": 1484.34,
+ "confidence": 0,
+ "word": "allows",
+ "punct": "allows",
+ "index": 674
+ },
+ {
+ "start": 1484.34,
+ "end": 1484.8,
+ "confidence": 0,
+ "word": "typical",
+ "punct": "typical",
+ "index": 675
+ },
+ {
+ "start": 1484.8,
+ "end": 1485.04,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 676
+ },
+ {
+ "start": 1485.04,
+ "end": 1485.42,
+ "confidence": 0,
+ "word": "breaches",
+ "punct": "breaches",
+ "index": 677
+ },
+ {
+ "start": 1485.42,
+ "end": 1485.54,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 678
+ },
+ {
+ "start": 1485.54,
+ "end": 1486.4,
+ "confidence": 0,
+ "word": "happen",
+ "punct": "happen.",
+ "index": 679
+ }
+ ],
+ "start": 1478.8
+ }
+ },
+ {
+ "key": "8miuk",
+ "text": "Instead, they both appear to be the result of people exploiting the very tools that you've created to manipulate users information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1486.4,
+ "end": 1487.42,
+ "confidence": 0,
+ "word": "instead,",
+ "punct": "Instead,",
+ "index": 680
+ },
+ {
+ "start": 1487.42,
+ "end": 1488.3,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 681
+ },
+ {
+ "start": 1488.3,
+ "end": 1488.52,
+ "confidence": 0,
+ "word": "both",
+ "punct": "both",
+ "index": 682
+ },
+ {
+ "start": 1488.52,
+ "end": 1488.84,
+ "confidence": 0,
+ "word": "appear",
+ "punct": "appear",
+ "index": 683
+ },
+ {
+ "start": 1488.84,
+ "end": 1488.98,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 684
+ },
+ {
+ "start": 1488.98,
+ "end": 1489.08,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 685
+ },
+ {
+ "start": 1489.08,
+ "end": 1489.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 686
+ },
+ {
+ "start": 1489.24,
+ "end": 1489.6,
+ "confidence": 0,
+ "word": "result",
+ "punct": "result",
+ "index": 687
+ },
+ {
+ "start": 1489.6,
+ "end": 1489.72,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 688
+ },
+ {
+ "start": 1489.72,
+ "end": 1490.02,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 689
+ },
+ {
+ "start": 1490.02,
+ "end": 1490.54,
+ "confidence": 0,
+ "word": "exploiting",
+ "punct": "exploiting",
+ "index": 690
+ },
+ {
+ "start": 1490.54,
+ "end": 1490.68,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 691
+ },
+ {
+ "start": 1490.68,
+ "end": 1490.94,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 692
+ },
+ {
+ "start": 1490.94,
+ "end": 1491.3,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 693
+ },
+ {
+ "start": 1491.3,
+ "end": 1491.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 694
+ },
+ {
+ "start": 1491.44,
+ "end": 1491.68,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 695
+ },
+ {
+ "start": 1491.68,
+ "end": 1492.1,
+ "confidence": 0,
+ "word": "created",
+ "punct": "created",
+ "index": 696
+ },
+ {
+ "start": 1492.1,
+ "end": 1492.22,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 697
+ },
+ {
+ "start": 1492.22,
+ "end": 1492.86,
+ "confidence": 0,
+ "word": "manipulate",
+ "punct": "manipulate",
+ "index": 698
+ },
+ {
+ "start": 1492.86,
+ "end": 1493.62,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 699
+ },
+ {
+ "start": 1493.62,
+ "end": 1494.76,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 700
+ }
+ ],
+ "start": 1486.4
+ }
+ },
+ {
+ "key": "1bg51",
+ "text": "I know Facebook is taken several steps and intends to take more to address these issues.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1494.76,
+ "end": 1495.42,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 701
+ },
+ {
+ "start": 1495.42,
+ "end": 1495.62,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 702
+ },
+ {
+ "start": 1495.62,
+ "end": 1496.12,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 703
+ },
+ {
+ "start": 1496.12,
+ "end": 1496.26,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 704
+ },
+ {
+ "start": 1496.26,
+ "end": 1496.6,
+ "confidence": 0,
+ "word": "taken",
+ "punct": "taken",
+ "index": 705
+ },
+ {
+ "start": 1496.6,
+ "end": 1496.94,
+ "confidence": 0,
+ "word": "several",
+ "punct": "several",
+ "index": 706
+ },
+ {
+ "start": 1496.94,
+ "end": 1497.26,
+ "confidence": 0,
+ "word": "steps",
+ "punct": "steps",
+ "index": 707
+ },
+ {
+ "start": 1497.26,
+ "end": 1497.38,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 708
+ },
+ {
+ "start": 1497.38,
+ "end": 1497.74,
+ "confidence": 0,
+ "word": "intends",
+ "punct": "intends",
+ "index": 709
+ },
+ {
+ "start": 1497.74,
+ "end": 1497.84,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 710
+ },
+ {
+ "start": 1497.84,
+ "end": 1498.08,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 711
+ },
+ {
+ "start": 1498.08,
+ "end": 1498.34,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 712
+ },
+ {
+ "start": 1498.34,
+ "end": 1498.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 713
+ },
+ {
+ "start": 1498.52,
+ "end": 1498.86,
+ "confidence": 0,
+ "word": "address",
+ "punct": "address",
+ "index": 714
+ },
+ {
+ "start": 1498.86,
+ "end": 1499.06,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 715
+ },
+ {
+ "start": 1499.06,
+ "end": 1500.26,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues.",
+ "index": 716
+ }
+ ],
+ "start": 1494.76
+ }
+ },
+ {
+ "key": "arr36",
+ "text": "Nevertheless, some have warned that the actions Facebook is taking to ensure that third is don't obtain data from unsuspecting users while necessary will actually serve to enhance Facebook's own ability to market such data exclusively most of us understand that whether you're using Facebook or Google or some other online services.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1500.26,
+ "end": 1501.24,
+ "confidence": 0,
+ "word": "nevertheless,",
+ "punct": "Nevertheless,",
+ "index": 717
+ },
+ {
+ "start": 1501.24,
+ "end": 1502.42,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 718
+ },
+ {
+ "start": 1502.42,
+ "end": 1502.64,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 719
+ },
+ {
+ "start": 1502.64,
+ "end": 1503.08,
+ "confidence": 0,
+ "word": "warned",
+ "punct": "warned",
+ "index": 720
+ },
+ {
+ "start": 1503.08,
+ "end": 1503.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 721
+ },
+ {
+ "start": 1503.36,
+ "end": 1503.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 722
+ },
+ {
+ "start": 1503.5,
+ "end": 1503.98,
+ "confidence": 0,
+ "word": "actions",
+ "punct": "actions",
+ "index": 723
+ },
+ {
+ "start": 1503.98,
+ "end": 1504.54,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 724
+ },
+ {
+ "start": 1504.54,
+ "end": 1504.7,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 725
+ },
+ {
+ "start": 1504.7,
+ "end": 1505.1,
+ "confidence": 0,
+ "word": "taking",
+ "punct": "taking",
+ "index": 726
+ },
+ {
+ "start": 1505.1,
+ "end": 1505.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 727
+ },
+ {
+ "start": 1505.28,
+ "end": 1505.88,
+ "confidence": 0,
+ "word": "ensure",
+ "punct": "ensure",
+ "index": 728
+ },
+ {
+ "start": 1505.88,
+ "end": 1506.12,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 729
+ },
+ {
+ "start": 1506.12,
+ "end": 1506.73,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 730
+ },
+ {
+ "start": 1506.73,
+ "end": 1507.85,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 731
+ },
+ {
+ "start": 1507.85,
+ "end": 1508.09,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 732
+ },
+ {
+ "start": 1508.09,
+ "end": 1508.43,
+ "confidence": 0,
+ "word": "obtain",
+ "punct": "obtain",
+ "index": 733
+ },
+ {
+ "start": 1508.43,
+ "end": 1508.77,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 734
+ },
+ {
+ "start": 1508.77,
+ "end": 1508.93,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 735
+ },
+ {
+ "start": 1508.93,
+ "end": 1509.61,
+ "confidence": 0,
+ "word": "unsuspecting",
+ "punct": "unsuspecting",
+ "index": 736
+ },
+ {
+ "start": 1509.61,
+ "end": 1510.07,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 737
+ },
+ {
+ "start": 1510.07,
+ "end": 1510.81,
+ "confidence": 0,
+ "word": "while",
+ "punct": "while",
+ "index": 738
+ },
+ {
+ "start": 1510.81,
+ "end": 1511.49,
+ "confidence": 0,
+ "word": "necessary",
+ "punct": "necessary",
+ "index": 739
+ },
+ {
+ "start": 1511.49,
+ "end": 1512.55,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 740
+ },
+ {
+ "start": 1512.55,
+ "end": 1513.03,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 741
+ },
+ {
+ "start": 1513.03,
+ "end": 1513.33,
+ "confidence": 0,
+ "word": "serve",
+ "punct": "serve",
+ "index": 742
+ },
+ {
+ "start": 1513.33,
+ "end": 1513.49,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 743
+ },
+ {
+ "start": 1513.49,
+ "end": 1513.87,
+ "confidence": 0,
+ "word": "enhance",
+ "punct": "enhance",
+ "index": 744
+ },
+ {
+ "start": 1513.87,
+ "end": 1514.55,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 745
+ },
+ {
+ "start": 1514.55,
+ "end": 1514.99,
+ "confidence": 0,
+ "word": "own",
+ "punct": "own",
+ "index": 746
+ },
+ {
+ "start": 1514.99,
+ "end": 1515.53,
+ "confidence": 0,
+ "word": "ability",
+ "punct": "ability",
+ "index": 747
+ },
+ {
+ "start": 1515.53,
+ "end": 1516.17,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 748
+ },
+ {
+ "start": 1516.17,
+ "end": 1516.55,
+ "confidence": 0,
+ "word": "market",
+ "punct": "market",
+ "index": 749
+ },
+ {
+ "start": 1516.55,
+ "end": 1516.79,
+ "confidence": 0,
+ "word": "such",
+ "punct": "such",
+ "index": 750
+ },
+ {
+ "start": 1516.79,
+ "end": 1517.17,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 751
+ },
+ {
+ "start": 1517.17,
+ "end": 1518.7,
+ "confidence": 0,
+ "word": "exclusively",
+ "punct": "exclusively",
+ "index": 752
+ },
+ {
+ "start": 1518.7,
+ "end": 1519.5,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 753
+ },
+ {
+ "start": 1519.5,
+ "end": 1519.62,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 754
+ },
+ {
+ "start": 1519.62,
+ "end": 1519.74,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 755
+ },
+ {
+ "start": 1519.74,
+ "end": 1520.42,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 756
+ },
+ {
+ "start": 1520.42,
+ "end": 1520.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 757
+ },
+ {
+ "start": 1520.7,
+ "end": 1521.28,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 758
+ },
+ {
+ "start": 1521.28,
+ "end": 1521.58,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 759
+ },
+ {
+ "start": 1521.58,
+ "end": 1522.42,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 760
+ },
+ {
+ "start": 1522.42,
+ "end": 1523.02,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 761
+ },
+ {
+ "start": 1523.02,
+ "end": 1523.8,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 762
+ },
+ {
+ "start": 1523.8,
+ "end": 1524.2,
+ "confidence": 0,
+ "word": "google",
+ "punct": "Google",
+ "index": 763
+ },
+ {
+ "start": 1524.2,
+ "end": 1524.36,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 764
+ },
+ {
+ "start": 1524.36,
+ "end": 1524.56,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 765
+ },
+ {
+ "start": 1524.56,
+ "end": 1524.82,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 766
+ },
+ {
+ "start": 1524.82,
+ "end": 1525.24,
+ "confidence": 0,
+ "word": "online",
+ "punct": "online",
+ "index": 767
+ },
+ {
+ "start": 1525.24,
+ "end": 1525.78,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services.",
+ "index": 768
+ }
+ ],
+ "start": 1500.26
+ }
+ },
+ {
+ "key": "dgo9g",
+ "text": "We are trading certain information about ourselves for free or low cost services.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1525.78,
+ "end": 1526.68,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 769
+ },
+ {
+ "start": 1526.68,
+ "end": 1526.84,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 770
+ },
+ {
+ "start": 1526.84,
+ "end": 1527.2,
+ "confidence": 0,
+ "word": "trading",
+ "punct": "trading",
+ "index": 771
+ },
+ {
+ "start": 1527.2,
+ "end": 1527.5,
+ "confidence": 0,
+ "word": "certain",
+ "punct": "certain",
+ "index": 772
+ },
+ {
+ "start": 1527.5,
+ "end": 1528,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 773
+ },
+ {
+ "start": 1528,
+ "end": 1528.28,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 774
+ },
+ {
+ "start": 1528.28,
+ "end": 1528.76,
+ "confidence": 0,
+ "word": "ourselves",
+ "punct": "ourselves",
+ "index": 775
+ },
+ {
+ "start": 1528.76,
+ "end": 1528.94,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 776
+ },
+ {
+ "start": 1528.94,
+ "end": 1529.3,
+ "confidence": 0,
+ "word": "free",
+ "punct": "free",
+ "index": 777
+ },
+ {
+ "start": 1529.3,
+ "end": 1529.94,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 778
+ },
+ {
+ "start": 1529.94,
+ "end": 1530.18,
+ "confidence": 0,
+ "word": "low",
+ "punct": "low",
+ "index": 779
+ },
+ {
+ "start": 1530.18,
+ "end": 1530.44,
+ "confidence": 0,
+ "word": "cost",
+ "punct": "cost",
+ "index": 780
+ },
+ {
+ "start": 1530.44,
+ "end": 1531.7,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services.",
+ "index": 781
+ }
+ ],
+ "start": 1525.78
+ }
+ },
+ {
+ "key": "1nad8",
+ "text": "But for this model to persist, both sides of the bargain.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1531.7,
+ "end": 1532.48,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 782
+ },
+ {
+ "start": 1532.48,
+ "end": 1532.64,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 783
+ },
+ {
+ "start": 1532.64,
+ "end": 1532.82,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 784
+ },
+ {
+ "start": 1532.82,
+ "end": 1533.14,
+ "confidence": 0,
+ "word": "model",
+ "punct": "model",
+ "index": 785
+ },
+ {
+ "start": 1533.14,
+ "end": 1533.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 786
+ },
+ {
+ "start": 1533.32,
+ "end": 1533.9,
+ "confidence": 0,
+ "word": "persist,",
+ "punct": "persist,",
+ "index": 787
+ },
+ {
+ "start": 1533.9,
+ "end": 1534.92,
+ "confidence": 0,
+ "word": "both",
+ "punct": "both",
+ "index": 788
+ },
+ {
+ "start": 1534.92,
+ "end": 1535.28,
+ "confidence": 0,
+ "word": "sides",
+ "punct": "sides",
+ "index": 789
+ },
+ {
+ "start": 1535.28,
+ "end": 1535.4,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 790
+ },
+ {
+ "start": 1535.4,
+ "end": 1535.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 791
+ },
+ {
+ "start": 1535.52,
+ "end": 1535.9,
+ "confidence": 0,
+ "word": "bargain",
+ "punct": "bargain.",
+ "index": 792
+ }
+ ],
+ "start": 1531.7
+ }
+ },
+ {
+ "key": "81fus",
+ "text": "Need to know the stakes that are involved right now I'm not convinced that Facebook's users have the information that they need to make meaningful choices in the past.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1535.9,
+ "end": 1536.18,
+ "confidence": 0,
+ "word": "need",
+ "punct": "Need",
+ "index": 793
+ },
+ {
+ "start": 1536.18,
+ "end": 1536.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 794
+ },
+ {
+ "start": 1536.28,
+ "end": 1536.44,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 795
+ },
+ {
+ "start": 1536.44,
+ "end": 1537.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 796
+ },
+ {
+ "start": 1537.24,
+ "end": 1537.56,
+ "confidence": 0,
+ "word": "stakes",
+ "punct": "stakes",
+ "index": 797
+ },
+ {
+ "start": 1537.56,
+ "end": 1537.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 798
+ },
+ {
+ "start": 1537.7,
+ "end": 1537.84,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 799
+ },
+ {
+ "start": 1537.84,
+ "end": 1538.52,
+ "confidence": 0,
+ "word": "involved",
+ "punct": "involved",
+ "index": 800
+ },
+ {
+ "start": 1538.52,
+ "end": 1539.5,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 801
+ },
+ {
+ "start": 1539.5,
+ "end": 1539.74,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 802
+ },
+ {
+ "start": 1539.74,
+ "end": 1539.96,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 803
+ },
+ {
+ "start": 1539.96,
+ "end": 1540.2,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 804
+ },
+ {
+ "start": 1540.2,
+ "end": 1540.76,
+ "confidence": 0,
+ "word": "convinced",
+ "punct": "convinced",
+ "index": 805
+ },
+ {
+ "start": 1540.76,
+ "end": 1540.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 806
+ },
+ {
+ "start": 1540.96,
+ "end": 1541.52,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 807
+ },
+ {
+ "start": 1541.52,
+ "end": 1542.7,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 808
+ },
+ {
+ "start": 1542.7,
+ "end": 1542.98,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 809
+ },
+ {
+ "start": 1542.98,
+ "end": 1543.1,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 810
+ },
+ {
+ "start": 1543.1,
+ "end": 1543.58,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 811
+ },
+ {
+ "start": 1543.58,
+ "end": 1543.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 812
+ },
+ {
+ "start": 1543.72,
+ "end": 1543.84,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 813
+ },
+ {
+ "start": 1543.84,
+ "end": 1544.08,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 814
+ },
+ {
+ "start": 1544.08,
+ "end": 1544.2,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 815
+ },
+ {
+ "start": 1544.2,
+ "end": 1544.4,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 816
+ },
+ {
+ "start": 1544.4,
+ "end": 1544.84,
+ "confidence": 0,
+ "word": "meaningful",
+ "punct": "meaningful",
+ "index": 817
+ },
+ {
+ "start": 1544.84,
+ "end": 1545.28,
+ "confidence": 0,
+ "word": "choices",
+ "punct": "choices",
+ "index": 818
+ },
+ {
+ "start": 1545.28,
+ "end": 1546.34,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 819
+ },
+ {
+ "start": 1546.34,
+ "end": 1546.46,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 820
+ },
+ {
+ "start": 1546.46,
+ "end": 1546.76,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past.",
+ "index": 821
+ }
+ ],
+ "start": 1535.9
+ }
+ },
+ {
+ "key": "609ov",
+ "text": "Many of my colleagues on both sides.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1546.76,
+ "end": 1547,
+ "confidence": 0,
+ "word": "many",
+ "punct": "Many",
+ "index": 822
+ },
+ {
+ "start": 1547,
+ "end": 1547.08,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 823
+ },
+ {
+ "start": 1547.08,
+ "end": 1547.24,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 824
+ },
+ {
+ "start": 1547.24,
+ "end": 1547.66,
+ "confidence": 0,
+ "word": "colleagues",
+ "punct": "colleagues",
+ "index": 825
+ },
+ {
+ "start": 1547.66,
+ "end": 1547.78,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 826
+ },
+ {
+ "start": 1547.78,
+ "end": 1548,
+ "confidence": 0,
+ "word": "both",
+ "punct": "both",
+ "index": 827
+ },
+ {
+ "start": 1548,
+ "end": 1548.28,
+ "confidence": 0,
+ "word": "sides",
+ "punct": "sides.",
+ "index": 828
+ }
+ ],
+ "start": 1546.76
+ }
+ },
+ {
+ "key": "ajd4q",
+ "text": "The aisle have been willing to defer to tech company's efforts to regulate themselves, but this may be changing just last month and overwhelming bipartisan fashion Congress voted to make it easier for prosecutors and victims to go after websites that knowingly facilitate sex trafficking.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1548.28,
+ "end": 1548.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 829
+ },
+ {
+ "start": 1548.44,
+ "end": 1548.72,
+ "confidence": 0,
+ "word": "aisle",
+ "punct": "aisle",
+ "index": 830
+ },
+ {
+ "start": 1548.72,
+ "end": 1548.88,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 831
+ },
+ {
+ "start": 1548.88,
+ "end": 1549.02,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 832
+ },
+ {
+ "start": 1549.02,
+ "end": 1549.28,
+ "confidence": 0,
+ "word": "willing",
+ "punct": "willing",
+ "index": 833
+ },
+ {
+ "start": 1549.28,
+ "end": 1549.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 834
+ },
+ {
+ "start": 1549.38,
+ "end": 1549.86,
+ "confidence": 0,
+ "word": "defer",
+ "punct": "defer",
+ "index": 835
+ },
+ {
+ "start": 1549.86,
+ "end": 1550.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 836
+ },
+ {
+ "start": 1550.66,
+ "end": 1550.94,
+ "confidence": 0,
+ "word": "tech",
+ "punct": "tech",
+ "index": 837
+ },
+ {
+ "start": 1550.94,
+ "end": 1551.38,
+ "confidence": 0,
+ "word": "company's",
+ "punct": "company's",
+ "index": 838
+ },
+ {
+ "start": 1551.38,
+ "end": 1551.78,
+ "confidence": 0,
+ "word": "efforts",
+ "punct": "efforts",
+ "index": 839
+ },
+ {
+ "start": 1551.78,
+ "end": 1551.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 840
+ },
+ {
+ "start": 1551.9,
+ "end": 1552.38,
+ "confidence": 0,
+ "word": "regulate",
+ "punct": "regulate",
+ "index": 841
+ },
+ {
+ "start": 1552.38,
+ "end": 1553.7,
+ "confidence": 0,
+ "word": "themselves,",
+ "punct": "themselves,",
+ "index": 842
+ },
+ {
+ "start": 1553.7,
+ "end": 1554.52,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 843
+ },
+ {
+ "start": 1554.52,
+ "end": 1554.76,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 844
+ },
+ {
+ "start": 1554.76,
+ "end": 1555.24,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 845
+ },
+ {
+ "start": 1555.24,
+ "end": 1555.36,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 846
+ },
+ {
+ "start": 1555.36,
+ "end": 1556.44,
+ "confidence": 0,
+ "word": "changing",
+ "punct": "changing",
+ "index": 847
+ },
+ {
+ "start": 1556.44,
+ "end": 1557.42,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 848
+ },
+ {
+ "start": 1557.42,
+ "end": 1557.72,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 849
+ },
+ {
+ "start": 1557.72,
+ "end": 1557.98,
+ "confidence": 0,
+ "word": "month",
+ "punct": "month",
+ "index": 850
+ },
+ {
+ "start": 1557.98,
+ "end": 1558.12,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 851
+ },
+ {
+ "start": 1558.12,
+ "end": 1558.66,
+ "confidence": 0,
+ "word": "overwhelming",
+ "punct": "overwhelming",
+ "index": 852
+ },
+ {
+ "start": 1558.66,
+ "end": 1559.28,
+ "confidence": 0,
+ "word": "bipartisan",
+ "punct": "bipartisan",
+ "index": 853
+ },
+ {
+ "start": 1559.28,
+ "end": 1559.72,
+ "confidence": 0,
+ "word": "fashion",
+ "punct": "fashion",
+ "index": 854
+ },
+ {
+ "start": 1559.72,
+ "end": 1560.2,
+ "confidence": 0,
+ "word": "congress",
+ "punct": "Congress",
+ "index": 855
+ },
+ {
+ "start": 1560.2,
+ "end": 1560.46,
+ "confidence": 0,
+ "word": "voted",
+ "punct": "voted",
+ "index": 856
+ },
+ {
+ "start": 1560.46,
+ "end": 1560.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 857
+ },
+ {
+ "start": 1560.58,
+ "end": 1560.74,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 858
+ },
+ {
+ "start": 1560.74,
+ "end": 1560.84,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 859
+ },
+ {
+ "start": 1560.84,
+ "end": 1561.24,
+ "confidence": 0,
+ "word": "easier",
+ "punct": "easier",
+ "index": 860
+ },
+ {
+ "start": 1561.24,
+ "end": 1561.76,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 861
+ },
+ {
+ "start": 1561.76,
+ "end": 1562.48,
+ "confidence": 0,
+ "word": "prosecutors",
+ "punct": "prosecutors",
+ "index": 862
+ },
+ {
+ "start": 1562.48,
+ "end": 1562.58,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 863
+ },
+ {
+ "start": 1562.58,
+ "end": 1562.98,
+ "confidence": 0,
+ "word": "victims",
+ "punct": "victims",
+ "index": 864
+ },
+ {
+ "start": 1562.98,
+ "end": 1564.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 865
+ },
+ {
+ "start": 1564.14,
+ "end": 1564.28,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 866
+ },
+ {
+ "start": 1564.28,
+ "end": 1564.58,
+ "confidence": 0,
+ "word": "after",
+ "punct": "after",
+ "index": 867
+ },
+ {
+ "start": 1564.58,
+ "end": 1565.18,
+ "confidence": 0,
+ "word": "websites",
+ "punct": "websites",
+ "index": 868
+ },
+ {
+ "start": 1565.18,
+ "end": 1565.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 869
+ },
+ {
+ "start": 1565.36,
+ "end": 1565.78,
+ "confidence": 0,
+ "word": "knowingly",
+ "punct": "knowingly",
+ "index": 870
+ },
+ {
+ "start": 1565.78,
+ "end": 1566.52,
+ "confidence": 0,
+ "word": "facilitate",
+ "punct": "facilitate",
+ "index": 871
+ },
+ {
+ "start": 1566.52,
+ "end": 1567,
+ "confidence": 0,
+ "word": "sex",
+ "punct": "sex",
+ "index": 872
+ },
+ {
+ "start": 1567,
+ "end": 1568.16,
+ "confidence": 0,
+ "word": "trafficking",
+ "punct": "trafficking.",
+ "index": 873
+ }
+ ],
+ "start": 1548.28
+ }
+ },
+ {
+ "key": "8u8ss",
+ "text": "This should be a wake up call for the tech community.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1568.16,
+ "end": 1568.96,
+ "confidence": 0,
+ "word": "this",
+ "punct": "This",
+ "index": 874
+ },
+ {
+ "start": 1568.96,
+ "end": 1569.18,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 875
+ },
+ {
+ "start": 1569.18,
+ "end": 1569.28,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 876
+ },
+ {
+ "start": 1569.28,
+ "end": 1569.34,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 877
+ },
+ {
+ "start": 1569.34,
+ "end": 1569.58,
+ "confidence": 0,
+ "word": "wake",
+ "punct": "wake",
+ "index": 878
+ },
+ {
+ "start": 1569.58,
+ "end": 1569.7,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 879
+ },
+ {
+ "start": 1569.7,
+ "end": 1569.94,
+ "confidence": 0,
+ "word": "call",
+ "punct": "call",
+ "index": 880
+ },
+ {
+ "start": 1569.94,
+ "end": 1570.08,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 881
+ },
+ {
+ "start": 1570.08,
+ "end": 1570.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 882
+ },
+ {
+ "start": 1570.2,
+ "end": 1570.42,
+ "confidence": 0,
+ "word": "tech",
+ "punct": "tech",
+ "index": 883
+ },
+ {
+ "start": 1570.42,
+ "end": 1571.06,
+ "confidence": 0,
+ "word": "community",
+ "punct": "community.",
+ "index": 884
+ }
+ ],
+ "start": 1568.16
+ }
+ },
+ {
+ "key": "e90rf",
+ "text": "We want to hear more without delay about what Facebook and other companies plan to do to take greater responsibility for what happens on their platforms.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1571.06,
+ "end": 1572.02,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 885
+ },
+ {
+ "start": 1572.02,
+ "end": 1572.24,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 886
+ },
+ {
+ "start": 1572.24,
+ "end": 1572.34,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 887
+ },
+ {
+ "start": 1572.34,
+ "end": 1572.5,
+ "confidence": 0,
+ "word": "hear",
+ "punct": "hear",
+ "index": 888
+ },
+ {
+ "start": 1572.5,
+ "end": 1572.76,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 889
+ },
+ {
+ "start": 1572.76,
+ "end": 1573.64,
+ "confidence": 0,
+ "word": "without",
+ "punct": "without",
+ "index": 890
+ },
+ {
+ "start": 1573.64,
+ "end": 1573.98,
+ "confidence": 0,
+ "word": "delay",
+ "punct": "delay",
+ "index": 891
+ },
+ {
+ "start": 1573.98,
+ "end": 1575.06,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 892
+ },
+ {
+ "start": 1575.06,
+ "end": 1575.24,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 893
+ },
+ {
+ "start": 1575.24,
+ "end": 1575.82,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 894
+ },
+ {
+ "start": 1575.82,
+ "end": 1576.68,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 895
+ },
+ {
+ "start": 1576.68,
+ "end": 1577,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 896
+ },
+ {
+ "start": 1577,
+ "end": 1577.42,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies",
+ "index": 897
+ },
+ {
+ "start": 1577.42,
+ "end": 1577.8,
+ "confidence": 0,
+ "word": "plan",
+ "punct": "plan",
+ "index": 898
+ },
+ {
+ "start": 1577.8,
+ "end": 1577.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 899
+ },
+ {
+ "start": 1577.9,
+ "end": 1578.02,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 900
+ },
+ {
+ "start": 1578.02,
+ "end": 1578.2,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 901
+ },
+ {
+ "start": 1578.2,
+ "end": 1578.4,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 902
+ },
+ {
+ "start": 1578.4,
+ "end": 1578.84,
+ "confidence": 0,
+ "word": "greater",
+ "punct": "greater",
+ "index": 903
+ },
+ {
+ "start": 1578.84,
+ "end": 1579.68,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 904
+ },
+ {
+ "start": 1579.68,
+ "end": 1579.82,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 905
+ },
+ {
+ "start": 1579.82,
+ "end": 1579.96,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 906
+ },
+ {
+ "start": 1579.96,
+ "end": 1580.26,
+ "confidence": 0,
+ "word": "happens",
+ "punct": "happens",
+ "index": 907
+ },
+ {
+ "start": 1580.26,
+ "end": 1580.38,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 908
+ },
+ {
+ "start": 1580.38,
+ "end": 1580.56,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 909
+ },
+ {
+ "start": 1580.56,
+ "end": 1581.76,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms.",
+ "index": 910
+ }
+ ],
+ "start": 1571.06
+ }
+ },
+ {
+ "key": "1smck",
+ "text": "How will you protect users data?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1581.76,
+ "end": 1582.54,
+ "confidence": 0,
+ "word": "how",
+ "punct": "How",
+ "index": 911
+ },
+ {
+ "start": 1582.54,
+ "end": 1582.74,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 912
+ },
+ {
+ "start": 1582.74,
+ "end": 1582.84,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 913
+ },
+ {
+ "start": 1582.84,
+ "end": 1583.22,
+ "confidence": 0,
+ "word": "protect",
+ "punct": "protect",
+ "index": 914
+ },
+ {
+ "start": 1583.22,
+ "end": 1583.64,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 915
+ },
+ {
+ "start": 1583.64,
+ "end": 1584.22,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data?",
+ "index": 916
+ }
+ ],
+ "start": 1581.76
+ }
+ },
+ {
+ "key": "6mkat",
+ "text": "How will you inform users about the changes that you are making and how do you intend to proactively stop harmful conduct instead of being forced to respond to at months or years later?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1584.22,
+ "end": 1585.18,
+ "confidence": 0,
+ "word": "how",
+ "punct": "How",
+ "index": 917
+ },
+ {
+ "start": 1585.18,
+ "end": 1585.42,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 918
+ },
+ {
+ "start": 1585.42,
+ "end": 1585.58,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 919
+ },
+ {
+ "start": 1585.58,
+ "end": 1586.26,
+ "confidence": 0,
+ "word": "inform",
+ "punct": "inform",
+ "index": 920
+ },
+ {
+ "start": 1586.26,
+ "end": 1586.82,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 921
+ },
+ {
+ "start": 1586.82,
+ "end": 1587.14,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 922
+ },
+ {
+ "start": 1587.14,
+ "end": 1587.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 923
+ },
+ {
+ "start": 1587.32,
+ "end": 1587.8,
+ "confidence": 0,
+ "word": "changes",
+ "punct": "changes",
+ "index": 924
+ },
+ {
+ "start": 1587.8,
+ "end": 1587.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 925
+ },
+ {
+ "start": 1587.96,
+ "end": 1588.06,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 926
+ },
+ {
+ "start": 1588.06,
+ "end": 1588.22,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 927
+ },
+ {
+ "start": 1588.22,
+ "end": 1588.78,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 928
+ },
+ {
+ "start": 1588.78,
+ "end": 1589.74,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 929
+ },
+ {
+ "start": 1589.74,
+ "end": 1589.92,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 930
+ },
+ {
+ "start": 1589.92,
+ "end": 1590.04,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 931
+ },
+ {
+ "start": 1590.04,
+ "end": 1590.16,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 932
+ },
+ {
+ "start": 1590.16,
+ "end": 1590.54,
+ "confidence": 0,
+ "word": "intend",
+ "punct": "intend",
+ "index": 933
+ },
+ {
+ "start": 1590.54,
+ "end": 1590.68,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 934
+ },
+ {
+ "start": 1590.68,
+ "end": 1591.46,
+ "confidence": 0,
+ "word": "proactively",
+ "punct": "proactively",
+ "index": 935
+ },
+ {
+ "start": 1591.46,
+ "end": 1592.02,
+ "confidence": 0,
+ "word": "stop",
+ "punct": "stop",
+ "index": 936
+ },
+ {
+ "start": 1592.02,
+ "end": 1593.18,
+ "confidence": 0,
+ "word": "harmful",
+ "punct": "harmful",
+ "index": 937
+ },
+ {
+ "start": 1593.18,
+ "end": 1593.78,
+ "confidence": 0,
+ "word": "conduct",
+ "punct": "conduct",
+ "index": 938
+ },
+ {
+ "start": 1593.78,
+ "end": 1594.16,
+ "confidence": 0,
+ "word": "instead",
+ "punct": "instead",
+ "index": 939
+ },
+ {
+ "start": 1594.16,
+ "end": 1594.28,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 940
+ },
+ {
+ "start": 1594.28,
+ "end": 1594.48,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 941
+ },
+ {
+ "start": 1594.48,
+ "end": 1594.78,
+ "confidence": 0,
+ "word": "forced",
+ "punct": "forced",
+ "index": 942
+ },
+ {
+ "start": 1594.78,
+ "end": 1594.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 943
+ },
+ {
+ "start": 1594.9,
+ "end": 1595.38,
+ "confidence": 0,
+ "word": "respond",
+ "punct": "respond",
+ "index": 944
+ },
+ {
+ "start": 1595.38,
+ "end": 1595.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 945
+ },
+ {
+ "start": 1595.52,
+ "end": 1595.7,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 946
+ },
+ {
+ "start": 1595.7,
+ "end": 1596,
+ "confidence": 0,
+ "word": "months",
+ "punct": "months",
+ "index": 947
+ },
+ {
+ "start": 1596,
+ "end": 1596.8,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 948
+ },
+ {
+ "start": 1596.8,
+ "end": 1597.08,
+ "confidence": 0,
+ "word": "years",
+ "punct": "years",
+ "index": 949
+ },
+ {
+ "start": 1597.08,
+ "end": 1598.12,
+ "confidence": 0,
+ "word": "later",
+ "punct": "later?",
+ "index": 950
+ }
+ ],
+ "start": 1584.22
+ }
+ },
+ {
+ "key": "57s64",
+ "text": "Mr Zuckerberg in many ways, you and the company that you created the story that you created represent the American dream.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1598.12,
+ "end": 1599.08,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 951
+ },
+ {
+ "start": 1599.08,
+ "end": 1599.52,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg",
+ "index": 952
+ },
+ {
+ "start": 1599.52,
+ "end": 1599.64,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 953
+ },
+ {
+ "start": 1599.64,
+ "end": 1599.82,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 954
+ },
+ {
+ "start": 1599.82,
+ "end": 1600.02,
+ "confidence": 0,
+ "word": "ways,",
+ "punct": "ways,",
+ "index": 955
+ },
+ {
+ "start": 1600.02,
+ "end": 1600.18,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 956
+ },
+ {
+ "start": 1600.18,
+ "end": 1600.32,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 957
+ },
+ {
+ "start": 1600.32,
+ "end": 1600.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 958
+ },
+ {
+ "start": 1600.42,
+ "end": 1600.72,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 959
+ },
+ {
+ "start": 1600.72,
+ "end": 1600.9,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 960
+ },
+ {
+ "start": 1600.9,
+ "end": 1601,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 961
+ },
+ {
+ "start": 1601,
+ "end": 1602.22,
+ "confidence": 0,
+ "word": "created",
+ "punct": "created",
+ "index": 962
+ },
+ {
+ "start": 1602.22,
+ "end": 1603.08,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 963
+ },
+ {
+ "start": 1603.08,
+ "end": 1603.48,
+ "confidence": 0,
+ "word": "story",
+ "punct": "story",
+ "index": 964
+ },
+ {
+ "start": 1603.48,
+ "end": 1603.64,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 965
+ },
+ {
+ "start": 1603.64,
+ "end": 1603.74,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 966
+ },
+ {
+ "start": 1603.74,
+ "end": 1604.12,
+ "confidence": 0,
+ "word": "created",
+ "punct": "created",
+ "index": 967
+ },
+ {
+ "start": 1604.12,
+ "end": 1604.5,
+ "confidence": 0,
+ "word": "represent",
+ "punct": "represent",
+ "index": 968
+ },
+ {
+ "start": 1604.5,
+ "end": 1604.64,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 969
+ },
+ {
+ "start": 1604.64,
+ "end": 1605.02,
+ "confidence": 0,
+ "word": "american",
+ "punct": "American",
+ "index": 970
+ },
+ {
+ "start": 1605.02,
+ "end": 1606.06,
+ "confidence": 0,
+ "word": "dream",
+ "punct": "dream.",
+ "index": 971
+ }
+ ],
+ "start": 1598.12
+ }
+ },
+ {
+ "key": "aprdr",
+ "text": "Many are incredibly inspired by what you've done at the same time.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1606.06,
+ "end": 1607.04,
+ "confidence": 0,
+ "word": "many",
+ "punct": "Many",
+ "index": 972
+ },
+ {
+ "start": 1607.04,
+ "end": 1607.2,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 973
+ },
+ {
+ "start": 1607.2,
+ "end": 1607.68,
+ "confidence": 0,
+ "word": "incredibly",
+ "punct": "incredibly",
+ "index": 974
+ },
+ {
+ "start": 1607.68,
+ "end": 1608.18,
+ "confidence": 0,
+ "word": "inspired",
+ "punct": "inspired",
+ "index": 975
+ },
+ {
+ "start": 1608.18,
+ "end": 1608.32,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 976
+ },
+ {
+ "start": 1608.32,
+ "end": 1608.48,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 977
+ },
+ {
+ "start": 1608.48,
+ "end": 1608.72,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 978
+ },
+ {
+ "start": 1608.72,
+ "end": 1608.94,
+ "confidence": 0,
+ "word": "done",
+ "punct": "done",
+ "index": 979
+ },
+ {
+ "start": 1608.94,
+ "end": 1610.04,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 980
+ },
+ {
+ "start": 1610.04,
+ "end": 1610.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 981
+ },
+ {
+ "start": 1610.2,
+ "end": 1610.5,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 982
+ },
+ {
+ "start": 1610.5,
+ "end": 1610.84,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time.",
+ "index": 983
+ }
+ ],
+ "start": 1606.06
+ }
+ },
+ {
+ "key": "bmoie",
+ "text": "You have an obligation and it's up to you to ensure that that dream doesn't become a privacy nightmare for the scores of people who use Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1610.84,
+ "end": 1611.96,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 984
+ },
+ {
+ "start": 1611.96,
+ "end": 1612.14,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 985
+ },
+ {
+ "start": 1612.14,
+ "end": 1612.22,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 986
+ },
+ {
+ "start": 1612.22,
+ "end": 1612.82,
+ "confidence": 0,
+ "word": "obligation",
+ "punct": "obligation",
+ "index": 987
+ },
+ {
+ "start": 1612.82,
+ "end": 1613.12,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 988
+ },
+ {
+ "start": 1613.12,
+ "end": 1613.3,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 989
+ },
+ {
+ "start": 1613.3,
+ "end": 1613.46,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 990
+ },
+ {
+ "start": 1613.46,
+ "end": 1613.56,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 991
+ },
+ {
+ "start": 1613.56,
+ "end": 1614.56,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 992
+ },
+ {
+ "start": 1614.56,
+ "end": 1614.76,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 993
+ },
+ {
+ "start": 1614.76,
+ "end": 1615.18,
+ "confidence": 0,
+ "word": "ensure",
+ "punct": "ensure",
+ "index": 994
+ },
+ {
+ "start": 1615.18,
+ "end": 1615.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 995
+ },
+ {
+ "start": 1615.4,
+ "end": 1615.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 996
+ },
+ {
+ "start": 1615.7,
+ "end": 1616.08,
+ "confidence": 0,
+ "word": "dream",
+ "punct": "dream",
+ "index": 997
+ },
+ {
+ "start": 1616.08,
+ "end": 1616.48,
+ "confidence": 0,
+ "word": "doesn't",
+ "punct": "doesn't",
+ "index": 998
+ },
+ {
+ "start": 1616.48,
+ "end": 1616.96,
+ "confidence": 0,
+ "word": "become",
+ "punct": "become",
+ "index": 999
+ },
+ {
+ "start": 1616.96,
+ "end": 1617.16,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1000
+ },
+ {
+ "start": 1617.16,
+ "end": 1617.68,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 1001
+ },
+ {
+ "start": 1617.68,
+ "end": 1618.2,
+ "confidence": 0,
+ "word": "nightmare",
+ "punct": "nightmare",
+ "index": 1002
+ },
+ {
+ "start": 1618.2,
+ "end": 1619.2,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1003
+ },
+ {
+ "start": 1619.2,
+ "end": 1619.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1004
+ },
+ {
+ "start": 1619.3,
+ "end": 1619.64,
+ "confidence": 0,
+ "word": "scores",
+ "punct": "scores",
+ "index": 1005
+ },
+ {
+ "start": 1619.64,
+ "end": 1619.76,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1006
+ },
+ {
+ "start": 1619.76,
+ "end": 1620.04,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 1007
+ },
+ {
+ "start": 1620.04,
+ "end": 1620.18,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 1008
+ },
+ {
+ "start": 1620.18,
+ "end": 1620.4,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 1009
+ },
+ {
+ "start": 1620.4,
+ "end": 1621.26,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 1010
+ }
+ ],
+ "start": 1610.84
+ }
+ },
+ {
+ "key": "9sbbf",
+ "text": "This hearing is an opportunity to speak to those who believe in Facebook and those who are deeply skeptical about it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1621.26,
+ "end": 1622.26,
+ "confidence": 0,
+ "word": "this",
+ "punct": "This",
+ "index": 1011
+ },
+ {
+ "start": 1622.26,
+ "end": 1622.64,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 1012
+ },
+ {
+ "start": 1622.64,
+ "end": 1623.46,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1013
+ },
+ {
+ "start": 1623.46,
+ "end": 1623.56,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 1014
+ },
+ {
+ "start": 1623.56,
+ "end": 1624.26,
+ "confidence": 0,
+ "word": "opportunity",
+ "punct": "opportunity",
+ "index": 1015
+ },
+ {
+ "start": 1624.26,
+ "end": 1624.46,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1016
+ },
+ {
+ "start": 1624.46,
+ "end": 1624.84,
+ "confidence": 0,
+ "word": "speak",
+ "punct": "speak",
+ "index": 1017
+ },
+ {
+ "start": 1624.84,
+ "end": 1624.94,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1018
+ },
+ {
+ "start": 1624.94,
+ "end": 1625.18,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 1019
+ },
+ {
+ "start": 1625.18,
+ "end": 1625.36,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 1020
+ },
+ {
+ "start": 1625.36,
+ "end": 1625.68,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 1021
+ },
+ {
+ "start": 1625.68,
+ "end": 1625.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 1022
+ },
+ {
+ "start": 1625.78,
+ "end": 1626.9,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1023
+ },
+ {
+ "start": 1626.9,
+ "end": 1627.64,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1024
+ },
+ {
+ "start": 1627.64,
+ "end": 1627.98,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 1025
+ },
+ {
+ "start": 1627.98,
+ "end": 1628.12,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 1026
+ },
+ {
+ "start": 1628.12,
+ "end": 1628.32,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 1027
+ },
+ {
+ "start": 1628.32,
+ "end": 1628.82,
+ "confidence": 0,
+ "word": "deeply",
+ "punct": "deeply",
+ "index": 1028
+ },
+ {
+ "start": 1628.82,
+ "end": 1629.56,
+ "confidence": 0,
+ "word": "skeptical",
+ "punct": "skeptical",
+ "index": 1029
+ },
+ {
+ "start": 1629.56,
+ "end": 1630.12,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 1030
+ },
+ {
+ "start": 1630.12,
+ "end": 1630.48,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 1031
+ }
+ ],
+ "start": 1621.26
+ }
+ },
+ {
+ "key": "39aoe",
+ "text": "We are listening America is listening and quite possibly the world is listening to thank you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1630.48,
+ "end": 1631.48,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 1032
+ },
+ {
+ "start": 1631.48,
+ "end": 1631.6,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 1033
+ },
+ {
+ "start": 1631.6,
+ "end": 1632.5,
+ "confidence": 0,
+ "word": "listening",
+ "punct": "listening",
+ "index": 1034
+ },
+ {
+ "start": 1632.5,
+ "end": 1633.48,
+ "confidence": 0,
+ "word": "america",
+ "punct": "America",
+ "index": 1035
+ },
+ {
+ "start": 1633.48,
+ "end": 1633.58,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1036
+ },
+ {
+ "start": 1633.58,
+ "end": 1634.06,
+ "confidence": 0,
+ "word": "listening",
+ "punct": "listening",
+ "index": 1037
+ },
+ {
+ "start": 1634.06,
+ "end": 1635.22,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1038
+ },
+ {
+ "start": 1635.22,
+ "end": 1635.44,
+ "confidence": 0,
+ "word": "quite",
+ "punct": "quite",
+ "index": 1039
+ },
+ {
+ "start": 1635.44,
+ "end": 1635.98,
+ "confidence": 0,
+ "word": "possibly",
+ "punct": "possibly",
+ "index": 1040
+ },
+ {
+ "start": 1635.98,
+ "end": 1636.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1041
+ },
+ {
+ "start": 1636.24,
+ "end": 1636.54,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 1042
+ },
+ {
+ "start": 1636.54,
+ "end": 1637,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1043
+ },
+ {
+ "start": 1637,
+ "end": 1637.4,
+ "confidence": 0,
+ "word": "listening",
+ "punct": "listening",
+ "index": 1044
+ },
+ {
+ "start": 1637.4,
+ "end": 1638.4,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1045
+ },
+ {
+ "start": 1638.4,
+ "end": 1639.38,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 1046
+ },
+ {
+ "start": 1639.38,
+ "end": 1639.56,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 1047
+ }
+ ],
+ "start": 1630.48
+ }
+ },
+ {
+ "key": "f4eds",
+ "text": "Now, ranking member Feinstein.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1639.56,
+ "end": 1639.94,
+ "confidence": 0,
+ "word": "now,",
+ "punct": "Now,",
+ "index": 1048
+ },
+ {
+ "start": 1639.94,
+ "end": 1640.68,
+ "confidence": 0,
+ "word": "ranking",
+ "punct": "ranking",
+ "index": 1049
+ },
+ {
+ "start": 1640.68,
+ "end": 1640.94,
+ "confidence": 0,
+ "word": "member",
+ "punct": "member",
+ "index": 1050
+ },
+ {
+ "start": 1640.94,
+ "end": 1642.32,
+ "confidence": 0,
+ "word": "feinstein",
+ "punct": "Feinstein.",
+ "index": 1051
+ }
+ ],
+ "start": 1639.56
+ }
+ },
+ {
+ "key": "38qjd",
+ "text": "Thank you very much, Mr Chairman Chairman Grassley chairman soon.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1642.32,
+ "end": 1643.32,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 1052
+ },
+ {
+ "start": 1643.32,
+ "end": 1643.44,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 1053
+ },
+ {
+ "start": 1643.44,
+ "end": 1643.64,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 1054
+ },
+ {
+ "start": 1643.64,
+ "end": 1643.86,
+ "confidence": 0,
+ "word": "much,",
+ "punct": "much,",
+ "index": 1055
+ },
+ {
+ "start": 1643.86,
+ "end": 1644.52,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 1056
+ },
+ {
+ "start": 1644.52,
+ "end": 1644.9,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman",
+ "index": 1057
+ },
+ {
+ "start": 1644.9,
+ "end": 1645.42,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman",
+ "index": 1058
+ },
+ {
+ "start": 1645.42,
+ "end": 1645.94,
+ "confidence": 0,
+ "word": "grassley",
+ "punct": "Grassley",
+ "index": 1059
+ },
+ {
+ "start": 1645.94,
+ "end": 1646.7,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 1060
+ },
+ {
+ "start": 1646.7,
+ "end": 1647.2,
+ "confidence": 0,
+ "word": "soon",
+ "punct": "soon.",
+ "index": 1061
+ }
+ ],
+ "start": 1642.32
+ }
+ },
+ {
+ "key": "64nun",
+ "text": "Thank you both for holding this hearing, Mr Zuckerberg.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1647.2,
+ "end": 1647.48,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 1062
+ },
+ {
+ "start": 1647.48,
+ "end": 1647.64,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 1063
+ },
+ {
+ "start": 1647.64,
+ "end": 1647.96,
+ "confidence": 0,
+ "word": "both",
+ "punct": "both",
+ "index": 1064
+ },
+ {
+ "start": 1647.96,
+ "end": 1648.2,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1065
+ },
+ {
+ "start": 1648.2,
+ "end": 1648.6,
+ "confidence": 0,
+ "word": "holding",
+ "punct": "holding",
+ "index": 1066
+ },
+ {
+ "start": 1648.6,
+ "end": 1648.84,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1067
+ },
+ {
+ "start": 1648.84,
+ "end": 1649.28,
+ "confidence": 0,
+ "word": "hearing,",
+ "punct": "hearing,",
+ "index": 1068
+ },
+ {
+ "start": 1649.28,
+ "end": 1650.18,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 1069
+ },
+ {
+ "start": 1650.18,
+ "end": 1650.78,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg.",
+ "index": 1070
+ }
+ ],
+ "start": 1647.2
+ }
+ },
+ {
+ "key": "et4up",
+ "text": "Thank you for being here, you have a real opportunity to this afternoon to lead the industry and demonstrate a meaningful commitment to protecting individual privacy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1650.78,
+ "end": 1651.06,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 1071
+ },
+ {
+ "start": 1651.06,
+ "end": 1651.32,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 1072
+ },
+ {
+ "start": 1651.32,
+ "end": 1651.62,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1073
+ },
+ {
+ "start": 1651.62,
+ "end": 1651.92,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 1074
+ },
+ {
+ "start": 1651.92,
+ "end": 1652.54,
+ "confidence": 0,
+ "word": "here,",
+ "punct": "here,",
+ "index": 1075
+ },
+ {
+ "start": 1652.54,
+ "end": 1653.08,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 1076
+ },
+ {
+ "start": 1653.08,
+ "end": 1653.24,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 1077
+ },
+ {
+ "start": 1653.24,
+ "end": 1653.28,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1078
+ },
+ {
+ "start": 1653.28,
+ "end": 1653.62,
+ "confidence": 0,
+ "word": "real",
+ "punct": "real",
+ "index": 1079
+ },
+ {
+ "start": 1653.62,
+ "end": 1654.38,
+ "confidence": 0,
+ "word": "opportunity",
+ "punct": "opportunity",
+ "index": 1080
+ },
+ {
+ "start": 1654.38,
+ "end": 1654.56,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1081
+ },
+ {
+ "start": 1654.56,
+ "end": 1655.02,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1082
+ },
+ {
+ "start": 1655.02,
+ "end": 1655.7,
+ "confidence": 0,
+ "word": "afternoon",
+ "punct": "afternoon",
+ "index": 1083
+ },
+ {
+ "start": 1655.7,
+ "end": 1655.92,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1084
+ },
+ {
+ "start": 1655.92,
+ "end": 1656.3,
+ "confidence": 0,
+ "word": "lead",
+ "punct": "lead",
+ "index": 1085
+ },
+ {
+ "start": 1656.3,
+ "end": 1656.48,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1086
+ },
+ {
+ "start": 1656.48,
+ "end": 1657.06,
+ "confidence": 0,
+ "word": "industry",
+ "punct": "industry",
+ "index": 1087
+ },
+ {
+ "start": 1657.06,
+ "end": 1657.74,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1088
+ },
+ {
+ "start": 1657.74,
+ "end": 1658.42,
+ "confidence": 0,
+ "word": "demonstrate",
+ "punct": "demonstrate",
+ "index": 1089
+ },
+ {
+ "start": 1658.42,
+ "end": 1658.62,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1090
+ },
+ {
+ "start": 1658.62,
+ "end": 1659.24,
+ "confidence": 0,
+ "word": "meaningful",
+ "punct": "meaningful",
+ "index": 1091
+ },
+ {
+ "start": 1659.24,
+ "end": 1659.8,
+ "confidence": 0,
+ "word": "commitment",
+ "punct": "commitment",
+ "index": 1092
+ },
+ {
+ "start": 1659.8,
+ "end": 1660.2,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1093
+ },
+ {
+ "start": 1660.2,
+ "end": 1660.8,
+ "confidence": 0,
+ "word": "protecting",
+ "punct": "protecting",
+ "index": 1094
+ },
+ {
+ "start": 1660.8,
+ "end": 1661.66,
+ "confidence": 0,
+ "word": "individual",
+ "punct": "individual",
+ "index": 1095
+ },
+ {
+ "start": 1661.66,
+ "end": 1662.76,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy.",
+ "index": 1096
+ }
+ ],
+ "start": 1650.78
+ }
+ },
+ {
+ "key": "40tk7",
+ "text": "We have learned over the past few months and we've learned a great deal that that's alarming we've seen how foreign actors are abusing social media platforms like Facebook to interfere in elections and take millions of Americans personal information without their knowledge in order to manipulate public opinion and target individual voters specifically on February 16 special counsel Muller issued an indictment against the Russia based Internet Internet Research Agency and 13 of its employees for interfering operations targeting targeting the United States through this 37 page indictment.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1662.76,
+ "end": 1663.3,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 1097
+ },
+ {
+ "start": 1663.3,
+ "end": 1663.48,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 1098
+ },
+ {
+ "start": 1663.48,
+ "end": 1663.78,
+ "confidence": 0,
+ "word": "learned",
+ "punct": "learned",
+ "index": 1099
+ },
+ {
+ "start": 1663.78,
+ "end": 1664.02,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 1100
+ },
+ {
+ "start": 1664.02,
+ "end": 1664.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1101
+ },
+ {
+ "start": 1664.18,
+ "end": 1664.48,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past",
+ "index": 1102
+ },
+ {
+ "start": 1664.48,
+ "end": 1664.76,
+ "confidence": 0,
+ "word": "few",
+ "punct": "few",
+ "index": 1103
+ },
+ {
+ "start": 1664.76,
+ "end": 1665.1,
+ "confidence": 0,
+ "word": "months",
+ "punct": "months",
+ "index": 1104
+ },
+ {
+ "start": 1665.1,
+ "end": 1665.92,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1105
+ },
+ {
+ "start": 1665.92,
+ "end": 1666.2,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 1106
+ },
+ {
+ "start": 1666.2,
+ "end": 1666.56,
+ "confidence": 0,
+ "word": "learned",
+ "punct": "learned",
+ "index": 1107
+ },
+ {
+ "start": 1666.56,
+ "end": 1666.78,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1108
+ },
+ {
+ "start": 1666.78,
+ "end": 1667.06,
+ "confidence": 0,
+ "word": "great",
+ "punct": "great",
+ "index": 1109
+ },
+ {
+ "start": 1667.06,
+ "end": 1667.3,
+ "confidence": 0,
+ "word": "deal",
+ "punct": "deal",
+ "index": 1110
+ },
+ {
+ "start": 1667.3,
+ "end": 1667.54,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1111
+ },
+ {
+ "start": 1667.54,
+ "end": 1668.26,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 1112
+ },
+ {
+ "start": 1668.26,
+ "end": 1668.9,
+ "confidence": 0,
+ "word": "alarming",
+ "punct": "alarming",
+ "index": 1113
+ },
+ {
+ "start": 1668.9,
+ "end": 1669.68,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 1114
+ },
+ {
+ "start": 1669.68,
+ "end": 1670,
+ "confidence": 0,
+ "word": "seen",
+ "punct": "seen",
+ "index": 1115
+ },
+ {
+ "start": 1670,
+ "end": 1670.26,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 1116
+ },
+ {
+ "start": 1670.26,
+ "end": 1670.7,
+ "confidence": 0,
+ "word": "foreign",
+ "punct": "foreign",
+ "index": 1117
+ },
+ {
+ "start": 1670.7,
+ "end": 1671.22,
+ "confidence": 0,
+ "word": "actors",
+ "punct": "actors",
+ "index": 1118
+ },
+ {
+ "start": 1671.22,
+ "end": 1671.78,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 1119
+ },
+ {
+ "start": 1671.78,
+ "end": 1672.38,
+ "confidence": 0,
+ "word": "abusing",
+ "punct": "abusing",
+ "index": 1120
+ },
+ {
+ "start": 1672.38,
+ "end": 1672.9,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 1121
+ },
+ {
+ "start": 1672.9,
+ "end": 1673.42,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 1122
+ },
+ {
+ "start": 1673.42,
+ "end": 1674.18,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms",
+ "index": 1123
+ },
+ {
+ "start": 1674.18,
+ "end": 1674.92,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 1124
+ },
+ {
+ "start": 1674.92,
+ "end": 1675.97,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1125
+ },
+ {
+ "start": 1675.97,
+ "end": 1676.11,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1126
+ },
+ {
+ "start": 1676.11,
+ "end": 1676.69,
+ "confidence": 0,
+ "word": "interfere",
+ "punct": "interfere",
+ "index": 1127
+ },
+ {
+ "start": 1676.69,
+ "end": 1677.01,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 1128
+ },
+ {
+ "start": 1677.01,
+ "end": 1677.65,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections",
+ "index": 1129
+ },
+ {
+ "start": 1677.65,
+ "end": 1678.41,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1130
+ },
+ {
+ "start": 1678.41,
+ "end": 1679.15,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 1131
+ },
+ {
+ "start": 1679.15,
+ "end": 1679.73,
+ "confidence": 0,
+ "word": "millions",
+ "punct": "millions",
+ "index": 1132
+ },
+ {
+ "start": 1679.73,
+ "end": 1679.89,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1133
+ },
+ {
+ "start": 1679.89,
+ "end": 1680.55,
+ "confidence": 0,
+ "word": "americans",
+ "punct": "Americans",
+ "index": 1134
+ },
+ {
+ "start": 1680.55,
+ "end": 1681.15,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 1135
+ },
+ {
+ "start": 1681.15,
+ "end": 1681.97,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 1136
+ },
+ {
+ "start": 1681.97,
+ "end": 1682.67,
+ "confidence": 0,
+ "word": "without",
+ "punct": "without",
+ "index": 1137
+ },
+ {
+ "start": 1682.67,
+ "end": 1682.91,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 1138
+ },
+ {
+ "start": 1682.91,
+ "end": 1683.39,
+ "confidence": 0,
+ "word": "knowledge",
+ "punct": "knowledge",
+ "index": 1139
+ },
+ {
+ "start": 1683.39,
+ "end": 1684.01,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 1140
+ },
+ {
+ "start": 1684.01,
+ "end": 1684.49,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 1141
+ },
+ {
+ "start": 1684.49,
+ "end": 1684.65,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1142
+ },
+ {
+ "start": 1684.65,
+ "end": 1685.39,
+ "confidence": 0,
+ "word": "manipulate",
+ "punct": "manipulate",
+ "index": 1143
+ },
+ {
+ "start": 1685.39,
+ "end": 1685.89,
+ "confidence": 0,
+ "word": "public",
+ "punct": "public",
+ "index": 1144
+ },
+ {
+ "start": 1685.89,
+ "end": 1686.39,
+ "confidence": 0,
+ "word": "opinion",
+ "punct": "opinion",
+ "index": 1145
+ },
+ {
+ "start": 1686.39,
+ "end": 1686.93,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1146
+ },
+ {
+ "start": 1686.93,
+ "end": 1687.47,
+ "confidence": 0,
+ "word": "target",
+ "punct": "target",
+ "index": 1147
+ },
+ {
+ "start": 1687.47,
+ "end": 1688.37,
+ "confidence": 0,
+ "word": "individual",
+ "punct": "individual",
+ "index": 1148
+ },
+ {
+ "start": 1688.37,
+ "end": 1689.18,
+ "confidence": 0,
+ "word": "voters",
+ "punct": "voters",
+ "index": 1149
+ },
+ {
+ "start": 1689.18,
+ "end": 1690.32,
+ "confidence": 0,
+ "word": "specifically",
+ "punct": "specifically",
+ "index": 1150
+ },
+ {
+ "start": 1690.32,
+ "end": 1690.96,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 1151
+ },
+ {
+ "start": 1690.96,
+ "end": 1691.44,
+ "confidence": 0,
+ "word": "february",
+ "punct": "February",
+ "index": 1152
+ },
+ {
+ "start": 1691.44,
+ "end": 1692.3,
+ "confidence": 0,
+ "word": "16",
+ "punct": "16",
+ "index": 1153
+ },
+ {
+ "start": 1692.3,
+ "end": 1693.16,
+ "confidence": 0,
+ "word": "special",
+ "punct": "special",
+ "index": 1154
+ },
+ {
+ "start": 1693.16,
+ "end": 1693.6,
+ "confidence": 0,
+ "word": "counsel",
+ "punct": "counsel",
+ "index": 1155
+ },
+ {
+ "start": 1693.6,
+ "end": 1693.98,
+ "confidence": 0,
+ "word": "muller",
+ "punct": "Muller",
+ "index": 1156
+ },
+ {
+ "start": 1693.98,
+ "end": 1694.88,
+ "confidence": 0,
+ "word": "issued",
+ "punct": "issued",
+ "index": 1157
+ },
+ {
+ "start": 1694.88,
+ "end": 1695.04,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 1158
+ },
+ {
+ "start": 1695.04,
+ "end": 1695.78,
+ "confidence": 0,
+ "word": "indictment",
+ "punct": "indictment",
+ "index": 1159
+ },
+ {
+ "start": 1695.78,
+ "end": 1696.48,
+ "confidence": 0,
+ "word": "against",
+ "punct": "against",
+ "index": 1160
+ },
+ {
+ "start": 1696.48,
+ "end": 1696.72,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1161
+ },
+ {
+ "start": 1696.72,
+ "end": 1697.16,
+ "confidence": 0,
+ "word": "russia",
+ "punct": "Russia",
+ "index": 1162
+ },
+ {
+ "start": 1697.16,
+ "end": 1697.56,
+ "confidence": 0,
+ "word": "based",
+ "punct": "based",
+ "index": 1163
+ },
+ {
+ "start": 1697.56,
+ "end": 1698.32,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 1164
+ },
+ {
+ "start": 1698.32,
+ "end": 1699.36,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 1165
+ },
+ {
+ "start": 1699.36,
+ "end": 1700.1,
+ "confidence": 0,
+ "word": "research",
+ "punct": "Research",
+ "index": 1166
+ },
+ {
+ "start": 1700.1,
+ "end": 1700.86,
+ "confidence": 0,
+ "word": "agency",
+ "punct": "Agency",
+ "index": 1167
+ },
+ {
+ "start": 1700.86,
+ "end": 1701.52,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1168
+ },
+ {
+ "start": 1701.52,
+ "end": 1702.22,
+ "confidence": 0,
+ "word": "13",
+ "punct": "13",
+ "index": 1169
+ },
+ {
+ "start": 1702.22,
+ "end": 1702.72,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1170
+ },
+ {
+ "start": 1702.72,
+ "end": 1702.9,
+ "confidence": 0,
+ "word": "its",
+ "punct": "its",
+ "index": 1171
+ },
+ {
+ "start": 1702.9,
+ "end": 1703.8,
+ "confidence": 0,
+ "word": "employees",
+ "punct": "employees",
+ "index": 1172
+ },
+ {
+ "start": 1703.8,
+ "end": 1704.46,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1173
+ },
+ {
+ "start": 1704.46,
+ "end": 1705.26,
+ "confidence": 0,
+ "word": "interfering",
+ "punct": "interfering",
+ "index": 1174
+ },
+ {
+ "start": 1705.26,
+ "end": 1706.4,
+ "confidence": 0,
+ "word": "operations",
+ "punct": "operations",
+ "index": 1175
+ },
+ {
+ "start": 1706.4,
+ "end": 1707.24,
+ "confidence": 0,
+ "word": "targeting",
+ "punct": "targeting",
+ "index": 1176
+ },
+ {
+ "start": 1707.24,
+ "end": 1707.9,
+ "confidence": 0,
+ "word": "targeting",
+ "punct": "targeting",
+ "index": 1177
+ },
+ {
+ "start": 1707.9,
+ "end": 1708.26,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1178
+ },
+ {
+ "start": 1708.26,
+ "end": 1708.7,
+ "confidence": 0,
+ "word": "united",
+ "punct": "United",
+ "index": 1179
+ },
+ {
+ "start": 1708.7,
+ "end": 1709.54,
+ "confidence": 0,
+ "word": "states",
+ "punct": "States",
+ "index": 1180
+ },
+ {
+ "start": 1709.54,
+ "end": 1710.2,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 1181
+ },
+ {
+ "start": 1710.2,
+ "end": 1710.44,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1182
+ },
+ {
+ "start": 1710.44,
+ "end": 1711.68,
+ "confidence": 0,
+ "word": "37",
+ "punct": "37",
+ "index": 1183
+ },
+ {
+ "start": 1711.68,
+ "end": 1712.14,
+ "confidence": 0,
+ "word": "page",
+ "punct": "page",
+ "index": 1184
+ },
+ {
+ "start": 1712.14,
+ "end": 1712.78,
+ "confidence": 0,
+ "word": "indictment",
+ "punct": "indictment.",
+ "index": 1185
+ }
+ ],
+ "start": 1662.76
+ }
+ },
+ {
+ "key": "df0ls",
+ "text": "We learned that the IRA ran a coordinated campaign through 470 Facebook accounts and pages.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1712.78,
+ "end": 1713.44,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 1186
+ },
+ {
+ "start": 1713.44,
+ "end": 1713.88,
+ "confidence": 0,
+ "word": "learned",
+ "punct": "learned",
+ "index": 1187
+ },
+ {
+ "start": 1713.88,
+ "end": 1714.1,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1188
+ },
+ {
+ "start": 1714.1,
+ "end": 1714.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1189
+ },
+ {
+ "start": 1714.3,
+ "end": 1715.08,
+ "confidence": 0,
+ "word": "ira",
+ "punct": "IRA",
+ "index": 1190
+ },
+ {
+ "start": 1715.08,
+ "end": 1715.54,
+ "confidence": 0,
+ "word": "ran",
+ "punct": "ran",
+ "index": 1191
+ },
+ {
+ "start": 1715.54,
+ "end": 1715.76,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1192
+ },
+ {
+ "start": 1715.76,
+ "end": 1716.64,
+ "confidence": 0,
+ "word": "coordinated",
+ "punct": "coordinated",
+ "index": 1193
+ },
+ {
+ "start": 1716.64,
+ "end": 1717.42,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign",
+ "index": 1194
+ },
+ {
+ "start": 1717.42,
+ "end": 1718.12,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 1195
+ },
+ {
+ "start": 1718.12,
+ "end": 1719.8,
+ "confidence": 0,
+ "word": "470",
+ "punct": "470",
+ "index": 1196
+ },
+ {
+ "start": 1719.8,
+ "end": 1720.72,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1197
+ },
+ {
+ "start": 1720.72,
+ "end": 1721.52,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts",
+ "index": 1198
+ },
+ {
+ "start": 1721.52,
+ "end": 1722,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1199
+ },
+ {
+ "start": 1722,
+ "end": 1722.54,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages.",
+ "index": 1200
+ }
+ ],
+ "start": 1712.78
+ }
+ },
+ {
+ "key": "c8jtk",
+ "text": "The campaign included ads and false information to create discord and harm Secretary Clinton's campaign and the content was seen by an estimated 157,000,000 Americans a month later on March seventeenth news broke that Cambridge Analytica exploited the personal information of approximately 50,000,000 Facebook users without their knowledge or permission.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1722.54,
+ "end": 1723.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 1201
+ },
+ {
+ "start": 1723.3,
+ "end": 1723.89,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign",
+ "index": 1202
+ },
+ {
+ "start": 1723.89,
+ "end": 1724.47,
+ "confidence": 0,
+ "word": "included",
+ "punct": "included",
+ "index": 1203
+ },
+ {
+ "start": 1724.47,
+ "end": 1724.97,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 1204
+ },
+ {
+ "start": 1724.97,
+ "end": 1725.39,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1205
+ },
+ {
+ "start": 1725.39,
+ "end": 1725.73,
+ "confidence": 0,
+ "word": "false",
+ "punct": "false",
+ "index": 1206
+ },
+ {
+ "start": 1725.73,
+ "end": 1726.53,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 1207
+ },
+ {
+ "start": 1726.53,
+ "end": 1727.13,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1208
+ },
+ {
+ "start": 1727.13,
+ "end": 1727.55,
+ "confidence": 0,
+ "word": "create",
+ "punct": "create",
+ "index": 1209
+ },
+ {
+ "start": 1727.55,
+ "end": 1728.23,
+ "confidence": 0,
+ "word": "discord",
+ "punct": "discord",
+ "index": 1210
+ },
+ {
+ "start": 1728.23,
+ "end": 1728.51,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1211
+ },
+ {
+ "start": 1728.51,
+ "end": 1729.01,
+ "confidence": 0,
+ "word": "harm",
+ "punct": "harm",
+ "index": 1212
+ },
+ {
+ "start": 1729.01,
+ "end": 1729.97,
+ "confidence": 0,
+ "word": "secretary",
+ "punct": "Secretary",
+ "index": 1213
+ },
+ {
+ "start": 1729.97,
+ "end": 1730.43,
+ "confidence": 0,
+ "word": "clinton's",
+ "punct": "Clinton's",
+ "index": 1214
+ },
+ {
+ "start": 1730.43,
+ "end": 1731.35,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign",
+ "index": 1215
+ },
+ {
+ "start": 1731.35,
+ "end": 1732.01,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1216
+ },
+ {
+ "start": 1732.01,
+ "end": 1732.17,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1217
+ },
+ {
+ "start": 1732.17,
+ "end": 1732.75,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 1218
+ },
+ {
+ "start": 1732.75,
+ "end": 1733.13,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 1219
+ },
+ {
+ "start": 1733.13,
+ "end": 1733.47,
+ "confidence": 0,
+ "word": "seen",
+ "punct": "seen",
+ "index": 1220
+ },
+ {
+ "start": 1733.47,
+ "end": 1733.69,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 1221
+ },
+ {
+ "start": 1733.69,
+ "end": 1733.83,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 1222
+ },
+ {
+ "start": 1733.83,
+ "end": 1734.53,
+ "confidence": 0,
+ "word": "estimated",
+ "punct": "estimated",
+ "index": 1223
+ },
+ {
+ "start": 1734.53,
+ "end": 1737.11,
+ "confidence": 0,
+ "word": "157,000,000",
+ "punct": "157,000,000",
+ "index": 1224
+ },
+ {
+ "start": 1737.11,
+ "end": 1738.24,
+ "confidence": 0,
+ "word": "americans",
+ "punct": "Americans",
+ "index": 1225
+ },
+ {
+ "start": 1738.24,
+ "end": 1738.66,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1226
+ },
+ {
+ "start": 1738.66,
+ "end": 1738.94,
+ "confidence": 0,
+ "word": "month",
+ "punct": "month",
+ "index": 1227
+ },
+ {
+ "start": 1738.94,
+ "end": 1739.4,
+ "confidence": 0,
+ "word": "later",
+ "punct": "later",
+ "index": 1228
+ },
+ {
+ "start": 1739.4,
+ "end": 1740.14,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 1229
+ },
+ {
+ "start": 1740.14,
+ "end": 1740.44,
+ "confidence": 0,
+ "word": "march",
+ "punct": "March",
+ "index": 1230
+ },
+ {
+ "start": 1740.44,
+ "end": 1741.22,
+ "confidence": 0,
+ "word": "seventeenth",
+ "punct": "seventeenth",
+ "index": 1231
+ },
+ {
+ "start": 1741.22,
+ "end": 1742.2,
+ "confidence": 0,
+ "word": "news",
+ "punct": "news",
+ "index": 1232
+ },
+ {
+ "start": 1742.2,
+ "end": 1742.62,
+ "confidence": 0,
+ "word": "broke",
+ "punct": "broke",
+ "index": 1233
+ },
+ {
+ "start": 1742.62,
+ "end": 1742.9,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1234
+ },
+ {
+ "start": 1742.9,
+ "end": 1743.52,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 1235
+ },
+ {
+ "start": 1743.52,
+ "end": 1744.72,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 1236
+ },
+ {
+ "start": 1744.72,
+ "end": 1745.72,
+ "confidence": 0,
+ "word": "exploited",
+ "punct": "exploited",
+ "index": 1237
+ },
+ {
+ "start": 1745.72,
+ "end": 1745.9,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1238
+ },
+ {
+ "start": 1745.9,
+ "end": 1746.42,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 1239
+ },
+ {
+ "start": 1746.42,
+ "end": 1747.28,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 1240
+ },
+ {
+ "start": 1747.28,
+ "end": 1747.92,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1241
+ },
+ {
+ "start": 1747.92,
+ "end": 1748.76,
+ "confidence": 0,
+ "word": "approximately",
+ "punct": "approximately",
+ "index": 1242
+ },
+ {
+ "start": 1748.76,
+ "end": 1749.84,
+ "confidence": 0,
+ "word": "50,000,000",
+ "punct": "50,000,000",
+ "index": 1243
+ },
+ {
+ "start": 1749.84,
+ "end": 1750.8,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1244
+ },
+ {
+ "start": 1750.8,
+ "end": 1751.4,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 1245
+ },
+ {
+ "start": 1751.4,
+ "end": 1752.22,
+ "confidence": 0,
+ "word": "without",
+ "punct": "without",
+ "index": 1246
+ },
+ {
+ "start": 1752.22,
+ "end": 1752.54,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 1247
+ },
+ {
+ "start": 1752.54,
+ "end": 1753,
+ "confidence": 0,
+ "word": "knowledge",
+ "punct": "knowledge",
+ "index": 1248
+ },
+ {
+ "start": 1753,
+ "end": 1753.42,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 1249
+ },
+ {
+ "start": 1753.42,
+ "end": 1754.36,
+ "confidence": 0,
+ "word": "permission",
+ "punct": "permission.",
+ "index": 1250
+ }
+ ],
+ "start": 1722.54
+ }
+ },
+ {
+ "key": "60qp6",
+ "text": "And last week we learned that number was even higher 87,000,000 Facebook users who had their private information taken without their consent.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1754.36,
+ "end": 1754.88,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 1251
+ },
+ {
+ "start": 1754.88,
+ "end": 1755.28,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 1252
+ },
+ {
+ "start": 1755.28,
+ "end": 1755.6,
+ "confidence": 0,
+ "word": "week",
+ "punct": "week",
+ "index": 1253
+ },
+ {
+ "start": 1755.6,
+ "end": 1756.08,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 1254
+ },
+ {
+ "start": 1756.08,
+ "end": 1756.56,
+ "confidence": 0,
+ "word": "learned",
+ "punct": "learned",
+ "index": 1255
+ },
+ {
+ "start": 1756.56,
+ "end": 1756.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1256
+ },
+ {
+ "start": 1756.94,
+ "end": 1757.3,
+ "confidence": 0,
+ "word": "number",
+ "punct": "number",
+ "index": 1257
+ },
+ {
+ "start": 1757.3,
+ "end": 1757.6,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 1258
+ },
+ {
+ "start": 1757.6,
+ "end": 1757.92,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 1259
+ },
+ {
+ "start": 1757.92,
+ "end": 1758.34,
+ "confidence": 0,
+ "word": "higher",
+ "punct": "higher",
+ "index": 1260
+ },
+ {
+ "start": 1758.34,
+ "end": 1760.3,
+ "confidence": 0,
+ "word": "87,000,000",
+ "punct": "87,000,000",
+ "index": 1261
+ },
+ {
+ "start": 1760.3,
+ "end": 1761.08,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1262
+ },
+ {
+ "start": 1761.08,
+ "end": 1761.7,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 1263
+ },
+ {
+ "start": 1761.7,
+ "end": 1762.12,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 1264
+ },
+ {
+ "start": 1762.12,
+ "end": 1762.4,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 1265
+ },
+ {
+ "start": 1762.4,
+ "end": 1762.62,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 1266
+ },
+ {
+ "start": 1762.62,
+ "end": 1763.06,
+ "confidence": 0,
+ "word": "private",
+ "punct": "private",
+ "index": 1267
+ },
+ {
+ "start": 1763.06,
+ "end": 1763.78,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 1268
+ },
+ {
+ "start": 1763.78,
+ "end": 1764.58,
+ "confidence": 0,
+ "word": "taken",
+ "punct": "taken",
+ "index": 1269
+ },
+ {
+ "start": 1764.58,
+ "end": 1765.2,
+ "confidence": 0,
+ "word": "without",
+ "punct": "without",
+ "index": 1270
+ },
+ {
+ "start": 1765.2,
+ "end": 1765.46,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 1271
+ },
+ {
+ "start": 1765.46,
+ "end": 1766.42,
+ "confidence": 0,
+ "word": "consent",
+ "punct": "consent.",
+ "index": 1272
+ }
+ ],
+ "start": 1754.36
+ }
+ },
+ {
+ "key": "18r6l",
+ "text": "Specifically using a personality quiz, he created professor Kogan collected the personal information of 300,000 Facebook users and then collected data on millions of their friends.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1766.42,
+ "end": 1767.6,
+ "confidence": 0,
+ "word": "specifically",
+ "punct": "Specifically",
+ "index": 1273
+ },
+ {
+ "start": 1767.6,
+ "end": 1768.68,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 1274
+ },
+ {
+ "start": 1768.68,
+ "end": 1768.72,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1275
+ },
+ {
+ "start": 1768.72,
+ "end": 1769.76,
+ "confidence": 0,
+ "word": "personality",
+ "punct": "personality",
+ "index": 1276
+ },
+ {
+ "start": 1769.76,
+ "end": 1770.16,
+ "confidence": 0,
+ "word": "quiz,",
+ "punct": "quiz,",
+ "index": 1277
+ },
+ {
+ "start": 1770.16,
+ "end": 1770.26,
+ "confidence": 0,
+ "word": "he",
+ "punct": "he",
+ "index": 1278
+ },
+ {
+ "start": 1770.26,
+ "end": 1770.94,
+ "confidence": 0,
+ "word": "created",
+ "punct": "created",
+ "index": 1279
+ },
+ {
+ "start": 1770.94,
+ "end": 1771.94,
+ "confidence": 0,
+ "word": "professor",
+ "punct": "professor",
+ "index": 1280
+ },
+ {
+ "start": 1771.94,
+ "end": 1772.48,
+ "confidence": 0,
+ "word": "kogan",
+ "punct": "Kogan",
+ "index": 1281
+ },
+ {
+ "start": 1772.48,
+ "end": 1773.04,
+ "confidence": 0,
+ "word": "collected",
+ "punct": "collected",
+ "index": 1282
+ },
+ {
+ "start": 1773.04,
+ "end": 1773.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1283
+ },
+ {
+ "start": 1773.2,
+ "end": 1773.76,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 1284
+ },
+ {
+ "start": 1773.76,
+ "end": 1774.5,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 1285
+ },
+ {
+ "start": 1774.5,
+ "end": 1775.06,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1286
+ },
+ {
+ "start": 1775.06,
+ "end": 1776.32,
+ "confidence": 0,
+ "word": "300,000",
+ "punct": "300,000",
+ "index": 1287
+ },
+ {
+ "start": 1776.32,
+ "end": 1777.26,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1288
+ },
+ {
+ "start": 1777.26,
+ "end": 1777.82,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 1289
+ },
+ {
+ "start": 1777.82,
+ "end": 1778.52,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1290
+ },
+ {
+ "start": 1778.52,
+ "end": 1778.78,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 1291
+ },
+ {
+ "start": 1778.78,
+ "end": 1779.36,
+ "confidence": 0,
+ "word": "collected",
+ "punct": "collected",
+ "index": 1292
+ },
+ {
+ "start": 1779.36,
+ "end": 1779.82,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1293
+ },
+ {
+ "start": 1779.82,
+ "end": 1780.3,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 1294
+ },
+ {
+ "start": 1780.3,
+ "end": 1780.88,
+ "confidence": 0,
+ "word": "millions",
+ "punct": "millions",
+ "index": 1295
+ },
+ {
+ "start": 1780.88,
+ "end": 1781.28,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1296
+ },
+ {
+ "start": 1781.28,
+ "end": 1781.5,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 1297
+ },
+ {
+ "start": 1781.5,
+ "end": 1782.26,
+ "confidence": 0,
+ "word": "friends",
+ "punct": "friends.",
+ "index": 1298
+ }
+ ],
+ "start": 1766.42
+ }
+ },
+ {
+ "key": "e2di1",
+ "text": "It appears the information collected included everything these individuals had on their Facebook pages.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1782.26,
+ "end": 1782.74,
+ "confidence": 0,
+ "word": "it",
+ "punct": "It",
+ "index": 1299
+ },
+ {
+ "start": 1782.74,
+ "end": 1783.26,
+ "confidence": 0,
+ "word": "appears",
+ "punct": "appears",
+ "index": 1300
+ },
+ {
+ "start": 1783.26,
+ "end": 1783.54,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1301
+ },
+ {
+ "start": 1783.54,
+ "end": 1784.3,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 1302
+ },
+ {
+ "start": 1784.3,
+ "end": 1785.04,
+ "confidence": 0,
+ "word": "collected",
+ "punct": "collected",
+ "index": 1303
+ },
+ {
+ "start": 1785.04,
+ "end": 1786.18,
+ "confidence": 0,
+ "word": "included",
+ "punct": "included",
+ "index": 1304
+ },
+ {
+ "start": 1786.18,
+ "end": 1786.92,
+ "confidence": 0,
+ "word": "everything",
+ "punct": "everything",
+ "index": 1305
+ },
+ {
+ "start": 1786.92,
+ "end": 1787.44,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 1306
+ },
+ {
+ "start": 1787.44,
+ "end": 1788.22,
+ "confidence": 0,
+ "word": "individuals",
+ "punct": "individuals",
+ "index": 1307
+ },
+ {
+ "start": 1788.22,
+ "end": 1788.68,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 1308
+ },
+ {
+ "start": 1788.68,
+ "end": 1789.16,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 1309
+ },
+ {
+ "start": 1789.16,
+ "end": 1789.36,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 1310
+ },
+ {
+ "start": 1789.36,
+ "end": 1789.88,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1311
+ },
+ {
+ "start": 1789.88,
+ "end": 1790.42,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages.",
+ "index": 1312
+ }
+ ],
+ "start": 1782.26
+ }
+ },
+ {
+ "key": "b3q2c",
+ "text": "And according to some reports even included private direct messages between users.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1790.42,
+ "end": 1791.18,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 1313
+ },
+ {
+ "start": 1791.18,
+ "end": 1791.68,
+ "confidence": 0,
+ "word": "according",
+ "punct": "according",
+ "index": 1314
+ },
+ {
+ "start": 1791.68,
+ "end": 1791.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1315
+ },
+ {
+ "start": 1791.86,
+ "end": 1792.14,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 1316
+ },
+ {
+ "start": 1792.14,
+ "end": 1792.68,
+ "confidence": 0,
+ "word": "reports",
+ "punct": "reports",
+ "index": 1317
+ },
+ {
+ "start": 1792.68,
+ "end": 1793.46,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 1318
+ },
+ {
+ "start": 1793.46,
+ "end": 1794.1,
+ "confidence": 0,
+ "word": "included",
+ "punct": "included",
+ "index": 1319
+ },
+ {
+ "start": 1794.1,
+ "end": 1794.66,
+ "confidence": 0,
+ "word": "private",
+ "punct": "private",
+ "index": 1320
+ },
+ {
+ "start": 1794.66,
+ "end": 1795.24,
+ "confidence": 0,
+ "word": "direct",
+ "punct": "direct",
+ "index": 1321
+ },
+ {
+ "start": 1795.24,
+ "end": 1795.88,
+ "confidence": 0,
+ "word": "messages",
+ "punct": "messages",
+ "index": 1322
+ },
+ {
+ "start": 1795.88,
+ "end": 1796.68,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 1323
+ },
+ {
+ "start": 1796.68,
+ "end": 1797.82,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users.",
+ "index": 1324
+ }
+ ],
+ "start": 1790.42
+ }
+ },
+ {
+ "key": "1mnvu",
+ "text": "Professor Hogan is said to have taken data from over 70,000,000 Americans, it has also been reported that he sold this data to Cambridge Analytica for 800,000 dollars.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1797.82,
+ "end": 1798.7,
+ "confidence": 0,
+ "word": "professor",
+ "punct": "Professor",
+ "index": 1325
+ },
+ {
+ "start": 1798.7,
+ "end": 1799.14,
+ "confidence": 0,
+ "word": "hogan",
+ "punct": "Hogan",
+ "index": 1326
+ },
+ {
+ "start": 1799.14,
+ "end": 1799.3,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1327
+ },
+ {
+ "start": 1799.3,
+ "end": 1799.54,
+ "confidence": 0,
+ "word": "said",
+ "punct": "said",
+ "index": 1328
+ },
+ {
+ "start": 1799.54,
+ "end": 1799.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1329
+ },
+ {
+ "start": 1799.66,
+ "end": 1799.82,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 1330
+ },
+ {
+ "start": 1799.82,
+ "end": 1800.2,
+ "confidence": 0,
+ "word": "taken",
+ "punct": "taken",
+ "index": 1331
+ },
+ {
+ "start": 1800.2,
+ "end": 1800.68,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1332
+ },
+ {
+ "start": 1800.68,
+ "end": 1801.18,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 1333
+ },
+ {
+ "start": 1801.18,
+ "end": 1801.5,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 1334
+ },
+ {
+ "start": 1801.5,
+ "end": 1802.72,
+ "confidence": 0,
+ "word": "70,000,000",
+ "punct": "70,000,000",
+ "index": 1335
+ },
+ {
+ "start": 1802.72,
+ "end": 1803.6,
+ "confidence": 0,
+ "word": "americans,",
+ "punct": "Americans,",
+ "index": 1336
+ },
+ {
+ "start": 1803.6,
+ "end": 1804.26,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 1337
+ },
+ {
+ "start": 1804.26,
+ "end": 1804.4,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 1338
+ },
+ {
+ "start": 1804.4,
+ "end": 1804.8,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 1339
+ },
+ {
+ "start": 1804.8,
+ "end": 1805.04,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 1340
+ },
+ {
+ "start": 1805.04,
+ "end": 1805.62,
+ "confidence": 0,
+ "word": "reported",
+ "punct": "reported",
+ "index": 1341
+ },
+ {
+ "start": 1805.62,
+ "end": 1806.08,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1342
+ },
+ {
+ "start": 1806.08,
+ "end": 1806.18,
+ "confidence": 0,
+ "word": "he",
+ "punct": "he",
+ "index": 1343
+ },
+ {
+ "start": 1806.18,
+ "end": 1806.6,
+ "confidence": 0,
+ "word": "sold",
+ "punct": "sold",
+ "index": 1344
+ },
+ {
+ "start": 1806.6,
+ "end": 1806.86,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1345
+ },
+ {
+ "start": 1806.86,
+ "end": 1807.36,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1346
+ },
+ {
+ "start": 1807.36,
+ "end": 1807.82,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1347
+ },
+ {
+ "start": 1807.82,
+ "end": 1808.44,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 1348
+ },
+ {
+ "start": 1808.44,
+ "end": 1809.44,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 1349
+ },
+ {
+ "start": 1809.44,
+ "end": 1809.82,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1350
+ },
+ {
+ "start": 1809.82,
+ "end": 1811.12,
+ "confidence": 0,
+ "word": "800,000",
+ "punct": "800,000",
+ "index": 1351
+ },
+ {
+ "start": 1811.12,
+ "end": 1811.96,
+ "confidence": 0,
+ "word": "dollars",
+ "punct": "dollars.",
+ "index": 1352
+ }
+ ],
+ "start": 1797.82
+ }
+ },
+ {
+ "key": "1lkvh",
+ "text": "Cambridge Analytica then took this data and created a psychological welfare tool to influence United States elections.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1811.96,
+ "end": 1812.84,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 1353
+ },
+ {
+ "start": 1812.84,
+ "end": 1813.44,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 1354
+ },
+ {
+ "start": 1813.44,
+ "end": 1813.92,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 1355
+ },
+ {
+ "start": 1813.92,
+ "end": 1814.24,
+ "confidence": 0,
+ "word": "took",
+ "punct": "took",
+ "index": 1356
+ },
+ {
+ "start": 1814.24,
+ "end": 1814.5,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1357
+ },
+ {
+ "start": 1814.5,
+ "end": 1814.92,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1358
+ },
+ {
+ "start": 1814.92,
+ "end": 1815.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1359
+ },
+ {
+ "start": 1815.42,
+ "end": 1816.02,
+ "confidence": 0,
+ "word": "created",
+ "punct": "created",
+ "index": 1360
+ },
+ {
+ "start": 1816.02,
+ "end": 1816.28,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1361
+ },
+ {
+ "start": 1816.28,
+ "end": 1817.3,
+ "confidence": 0,
+ "word": "psychological",
+ "punct": "psychological",
+ "index": 1362
+ },
+ {
+ "start": 1817.3,
+ "end": 1817.88,
+ "confidence": 0,
+ "word": "welfare",
+ "punct": "welfare",
+ "index": 1363
+ },
+ {
+ "start": 1817.88,
+ "end": 1818.26,
+ "confidence": 0,
+ "word": "tool",
+ "punct": "tool",
+ "index": 1364
+ },
+ {
+ "start": 1818.26,
+ "end": 1818.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1365
+ },
+ {
+ "start": 1818.9,
+ "end": 1819.56,
+ "confidence": 0,
+ "word": "influence",
+ "punct": "influence",
+ "index": 1366
+ },
+ {
+ "start": 1819.56,
+ "end": 1820.26,
+ "confidence": 0,
+ "word": "united",
+ "punct": "United",
+ "index": 1367
+ },
+ {
+ "start": 1820.26,
+ "end": 1820.58,
+ "confidence": 0,
+ "word": "states",
+ "punct": "States",
+ "index": 1368
+ },
+ {
+ "start": 1820.58,
+ "end": 1821.48,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections.",
+ "index": 1369
+ }
+ ],
+ "start": 1811.96
+ }
+ },
+ {
+ "key": "cik5h",
+ "text": "In fact, the CEO Alexander Nick declared the Cambridge Analytica ran all the digital campaign.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1821.48,
+ "end": 1821.92,
+ "confidence": 0,
+ "word": "in",
+ "punct": "In",
+ "index": 1370
+ },
+ {
+ "start": 1821.92,
+ "end": 1822.34,
+ "confidence": 0,
+ "word": "fact,",
+ "punct": "fact,",
+ "index": 1371
+ },
+ {
+ "start": 1822.34,
+ "end": 1822.54,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1372
+ },
+ {
+ "start": 1822.54,
+ "end": 1823.48,
+ "confidence": 0,
+ "word": "ceo",
+ "punct": "CEO",
+ "index": 1373
+ },
+ {
+ "start": 1823.48,
+ "end": 1824.46,
+ "confidence": 0,
+ "word": "alexander",
+ "punct": "Alexander",
+ "index": 1374
+ },
+ {
+ "start": 1824.46,
+ "end": 1824.88,
+ "confidence": 0,
+ "word": "nick",
+ "punct": "Nick",
+ "index": 1375
+ },
+ {
+ "start": 1824.88,
+ "end": 1826.06,
+ "confidence": 0,
+ "word": "declared",
+ "punct": "declared",
+ "index": 1376
+ },
+ {
+ "start": 1826.06,
+ "end": 1826.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1377
+ },
+ {
+ "start": 1826.3,
+ "end": 1826.9,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 1378
+ },
+ {
+ "start": 1826.9,
+ "end": 1827.92,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 1379
+ },
+ {
+ "start": 1827.92,
+ "end": 1828.68,
+ "confidence": 0,
+ "word": "ran",
+ "punct": "ran",
+ "index": 1380
+ },
+ {
+ "start": 1828.68,
+ "end": 1829.12,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 1381
+ },
+ {
+ "start": 1829.12,
+ "end": 1829.34,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1382
+ },
+ {
+ "start": 1829.34,
+ "end": 1829.82,
+ "confidence": 0,
+ "word": "digital",
+ "punct": "digital",
+ "index": 1383
+ },
+ {
+ "start": 1829.82,
+ "end": 1830.52,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign.",
+ "index": 1384
+ }
+ ],
+ "start": 1821.48
+ }
+ },
+ {
+ "key": "5umin",
+ "text": "The television campaign and its data informed all the strategy for the Trump campaign.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1830.52,
+ "end": 1831.04,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 1385
+ },
+ {
+ "start": 1831.04,
+ "end": 1831.74,
+ "confidence": 0,
+ "word": "television",
+ "punct": "television",
+ "index": 1386
+ },
+ {
+ "start": 1831.74,
+ "end": 1832.48,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign",
+ "index": 1387
+ },
+ {
+ "start": 1832.48,
+ "end": 1833.18,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1388
+ },
+ {
+ "start": 1833.18,
+ "end": 1833.5,
+ "confidence": 0,
+ "word": "its",
+ "punct": "its",
+ "index": 1389
+ },
+ {
+ "start": 1833.5,
+ "end": 1834.06,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1390
+ },
+ {
+ "start": 1834.06,
+ "end": 1835.02,
+ "confidence": 0,
+ "word": "informed",
+ "punct": "informed",
+ "index": 1391
+ },
+ {
+ "start": 1835.02,
+ "end": 1835.46,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 1392
+ },
+ {
+ "start": 1835.46,
+ "end": 1835.66,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1393
+ },
+ {
+ "start": 1835.66,
+ "end": 1836.36,
+ "confidence": 0,
+ "word": "strategy",
+ "punct": "strategy",
+ "index": 1394
+ },
+ {
+ "start": 1836.36,
+ "end": 1836.64,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1395
+ },
+ {
+ "start": 1836.64,
+ "end": 1836.78,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1396
+ },
+ {
+ "start": 1836.78,
+ "end": 1837.1,
+ "confidence": 0,
+ "word": "trump",
+ "punct": "Trump",
+ "index": 1397
+ },
+ {
+ "start": 1837.1,
+ "end": 1838.02,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign.",
+ "index": 1398
+ }
+ ],
+ "start": 1830.52
+ }
+ },
+ {
+ "key": "2ajg1",
+ "text": "The reporting has also speculated that Cambridge analytic works with the Internet Research agency to help Russia identify which American voters to target, which is propaganda I'm concerned that press reports indicate Facebook learned about this breach in 2,015 but appears not to have taken significant steps to address it until this year, so this hearing is important and I appreciate the conversation we had yesterday.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1838.02,
+ "end": 1838.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 1399
+ },
+ {
+ "start": 1838.44,
+ "end": 1839,
+ "confidence": 0,
+ "word": "reporting",
+ "punct": "reporting",
+ "index": 1400
+ },
+ {
+ "start": 1839,
+ "end": 1839.46,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 1401
+ },
+ {
+ "start": 1839.46,
+ "end": 1839.82,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 1402
+ },
+ {
+ "start": 1839.82,
+ "end": 1840.74,
+ "confidence": 0,
+ "word": "speculated",
+ "punct": "speculated",
+ "index": 1403
+ },
+ {
+ "start": 1840.74,
+ "end": 1841.22,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1404
+ },
+ {
+ "start": 1841.22,
+ "end": 1841.78,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 1405
+ },
+ {
+ "start": 1841.78,
+ "end": 1842.5,
+ "confidence": 0,
+ "word": "analytic",
+ "punct": "analytic",
+ "index": 1406
+ },
+ {
+ "start": 1842.5,
+ "end": 1843.3,
+ "confidence": 0,
+ "word": "works",
+ "punct": "works",
+ "index": 1407
+ },
+ {
+ "start": 1843.3,
+ "end": 1843.6,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 1408
+ },
+ {
+ "start": 1843.6,
+ "end": 1843.76,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1409
+ },
+ {
+ "start": 1843.76,
+ "end": 1844.24,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 1410
+ },
+ {
+ "start": 1844.24,
+ "end": 1844.72,
+ "confidence": 0,
+ "word": "research",
+ "punct": "Research",
+ "index": 1411
+ },
+ {
+ "start": 1844.72,
+ "end": 1845.32,
+ "confidence": 0,
+ "word": "agency",
+ "punct": "agency",
+ "index": 1412
+ },
+ {
+ "start": 1845.32,
+ "end": 1845.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1413
+ },
+ {
+ "start": 1845.86,
+ "end": 1846.16,
+ "confidence": 0,
+ "word": "help",
+ "punct": "help",
+ "index": 1414
+ },
+ {
+ "start": 1846.16,
+ "end": 1846.72,
+ "confidence": 0,
+ "word": "russia",
+ "punct": "Russia",
+ "index": 1415
+ },
+ {
+ "start": 1846.72,
+ "end": 1847.7,
+ "confidence": 0,
+ "word": "identify",
+ "punct": "identify",
+ "index": 1416
+ },
+ {
+ "start": 1847.7,
+ "end": 1848.32,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 1417
+ },
+ {
+ "start": 1848.32,
+ "end": 1849.18,
+ "confidence": 0,
+ "word": "american",
+ "punct": "American",
+ "index": 1418
+ },
+ {
+ "start": 1849.18,
+ "end": 1849.58,
+ "confidence": 0,
+ "word": "voters",
+ "punct": "voters",
+ "index": 1419
+ },
+ {
+ "start": 1849.58,
+ "end": 1849.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1420
+ },
+ {
+ "start": 1849.8,
+ "end": 1850.3,
+ "confidence": 0,
+ "word": "target,",
+ "punct": "target,",
+ "index": 1421
+ },
+ {
+ "start": 1850.3,
+ "end": 1850.74,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 1422
+ },
+ {
+ "start": 1850.74,
+ "end": 1851.44,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1423
+ },
+ {
+ "start": 1851.44,
+ "end": 1853.34,
+ "confidence": 0,
+ "word": "propaganda",
+ "punct": "propaganda",
+ "index": 1424
+ },
+ {
+ "start": 1853.34,
+ "end": 1854.28,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 1425
+ },
+ {
+ "start": 1854.28,
+ "end": 1854.96,
+ "confidence": 0,
+ "word": "concerned",
+ "punct": "concerned",
+ "index": 1426
+ },
+ {
+ "start": 1854.96,
+ "end": 1855.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1427
+ },
+ {
+ "start": 1855.6,
+ "end": 1856.02,
+ "confidence": 0,
+ "word": "press",
+ "punct": "press",
+ "index": 1428
+ },
+ {
+ "start": 1856.02,
+ "end": 1856.54,
+ "confidence": 0,
+ "word": "reports",
+ "punct": "reports",
+ "index": 1429
+ },
+ {
+ "start": 1856.54,
+ "end": 1857.32,
+ "confidence": 0,
+ "word": "indicate",
+ "punct": "indicate",
+ "index": 1430
+ },
+ {
+ "start": 1857.32,
+ "end": 1858.4,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1431
+ },
+ {
+ "start": 1858.4,
+ "end": 1858.92,
+ "confidence": 0,
+ "word": "learned",
+ "punct": "learned",
+ "index": 1432
+ },
+ {
+ "start": 1858.92,
+ "end": 1859.22,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 1433
+ },
+ {
+ "start": 1859.22,
+ "end": 1859.5,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1434
+ },
+ {
+ "start": 1859.5,
+ "end": 1859.94,
+ "confidence": 0,
+ "word": "breach",
+ "punct": "breach",
+ "index": 1435
+ },
+ {
+ "start": 1859.94,
+ "end": 1860.4,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 1436
+ },
+ {
+ "start": 1860.4,
+ "end": 1861.7,
+ "confidence": 0,
+ "word": "2,015",
+ "punct": "2,015",
+ "index": 1437
+ },
+ {
+ "start": 1861.7,
+ "end": 1862.36,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 1438
+ },
+ {
+ "start": 1862.36,
+ "end": 1862.82,
+ "confidence": 0,
+ "word": "appears",
+ "punct": "appears",
+ "index": 1439
+ },
+ {
+ "start": 1862.82,
+ "end": 1863.2,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 1440
+ },
+ {
+ "start": 1863.2,
+ "end": 1863.34,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1441
+ },
+ {
+ "start": 1863.34,
+ "end": 1863.52,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 1442
+ },
+ {
+ "start": 1863.52,
+ "end": 1864.04,
+ "confidence": 0,
+ "word": "taken",
+ "punct": "taken",
+ "index": 1443
+ },
+ {
+ "start": 1864.04,
+ "end": 1865.04,
+ "confidence": 0,
+ "word": "significant",
+ "punct": "significant",
+ "index": 1444
+ },
+ {
+ "start": 1865.04,
+ "end": 1865.4,
+ "confidence": 0,
+ "word": "steps",
+ "punct": "steps",
+ "index": 1445
+ },
+ {
+ "start": 1865.4,
+ "end": 1865.62,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1446
+ },
+ {
+ "start": 1865.62,
+ "end": 1866.04,
+ "confidence": 0,
+ "word": "address",
+ "punct": "address",
+ "index": 1447
+ },
+ {
+ "start": 1866.04,
+ "end": 1866.22,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 1448
+ },
+ {
+ "start": 1866.22,
+ "end": 1866.98,
+ "confidence": 0,
+ "word": "until",
+ "punct": "until",
+ "index": 1449
+ },
+ {
+ "start": 1866.98,
+ "end": 1867.24,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1450
+ },
+ {
+ "start": 1867.24,
+ "end": 1868.08,
+ "confidence": 0,
+ "word": "year,",
+ "punct": "year,",
+ "index": 1451
+ },
+ {
+ "start": 1868.08,
+ "end": 1868.66,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 1452
+ },
+ {
+ "start": 1868.66,
+ "end": 1869.44,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1453
+ },
+ {
+ "start": 1869.44,
+ "end": 1869.84,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 1454
+ },
+ {
+ "start": 1869.84,
+ "end": 1870,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1455
+ },
+ {
+ "start": 1870,
+ "end": 1870.62,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 1456
+ },
+ {
+ "start": 1870.62,
+ "end": 1870.92,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1457
+ },
+ {
+ "start": 1870.92,
+ "end": 1871.02,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 1458
+ },
+ {
+ "start": 1871.02,
+ "end": 1871.66,
+ "confidence": 0,
+ "word": "appreciate",
+ "punct": "appreciate",
+ "index": 1459
+ },
+ {
+ "start": 1871.66,
+ "end": 1871.84,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1460
+ },
+ {
+ "start": 1871.84,
+ "end": 1872.66,
+ "confidence": 0,
+ "word": "conversation",
+ "punct": "conversation",
+ "index": 1461
+ },
+ {
+ "start": 1872.66,
+ "end": 1872.88,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 1462
+ },
+ {
+ "start": 1872.88,
+ "end": 1873.24,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 1463
+ },
+ {
+ "start": 1873.24,
+ "end": 1873.9,
+ "confidence": 0,
+ "word": "yesterday",
+ "punct": "yesterday.",
+ "index": 1464
+ }
+ ],
+ "start": 1838.02
+ }
+ },
+ {
+ "key": "2kod6",
+ "text": "And I believe that Facebook through your presence here today and the words you're about to tell us will indicate how strongly your industry will regulate and or reform.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1873.9,
+ "end": 1874.92,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 1465
+ },
+ {
+ "start": 1874.92,
+ "end": 1875.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 1466
+ },
+ {
+ "start": 1875.74,
+ "end": 1876.4,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 1467
+ },
+ {
+ "start": 1876.4,
+ "end": 1876.88,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1468
+ },
+ {
+ "start": 1876.88,
+ "end": 1877.96,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1469
+ },
+ {
+ "start": 1877.96,
+ "end": 1878.62,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 1470
+ },
+ {
+ "start": 1878.62,
+ "end": 1878.84,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 1471
+ },
+ {
+ "start": 1878.84,
+ "end": 1879.36,
+ "confidence": 0,
+ "word": "presence",
+ "punct": "presence",
+ "index": 1472
+ },
+ {
+ "start": 1879.36,
+ "end": 1879.6,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 1473
+ },
+ {
+ "start": 1879.6,
+ "end": 1879.98,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 1474
+ },
+ {
+ "start": 1879.98,
+ "end": 1880.78,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1475
+ },
+ {
+ "start": 1880.78,
+ "end": 1880.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1476
+ },
+ {
+ "start": 1880.92,
+ "end": 1881.3,
+ "confidence": 0,
+ "word": "words",
+ "punct": "words",
+ "index": 1477
+ },
+ {
+ "start": 1881.3,
+ "end": 1881.6,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 1478
+ },
+ {
+ "start": 1881.6,
+ "end": 1881.96,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 1479
+ },
+ {
+ "start": 1881.96,
+ "end": 1882.22,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1480
+ },
+ {
+ "start": 1882.22,
+ "end": 1882.58,
+ "confidence": 0,
+ "word": "tell",
+ "punct": "tell",
+ "index": 1481
+ },
+ {
+ "start": 1882.58,
+ "end": 1882.78,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 1482
+ },
+ {
+ "start": 1882.78,
+ "end": 1883.56,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 1483
+ },
+ {
+ "start": 1883.56,
+ "end": 1884.28,
+ "confidence": 0,
+ "word": "indicate",
+ "punct": "indicate",
+ "index": 1484
+ },
+ {
+ "start": 1884.28,
+ "end": 1884.68,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 1485
+ },
+ {
+ "start": 1884.68,
+ "end": 1885.48,
+ "confidence": 0,
+ "word": "strongly",
+ "punct": "strongly",
+ "index": 1486
+ },
+ {
+ "start": 1885.48,
+ "end": 1886.2,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 1487
+ },
+ {
+ "start": 1886.2,
+ "end": 1887,
+ "confidence": 0,
+ "word": "industry",
+ "punct": "industry",
+ "index": 1488
+ },
+ {
+ "start": 1887,
+ "end": 1887.98,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 1489
+ },
+ {
+ "start": 1887.98,
+ "end": 1888.9,
+ "confidence": 0,
+ "word": "regulate",
+ "punct": "regulate",
+ "index": 1490
+ },
+ {
+ "start": 1888.9,
+ "end": 1889.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1491
+ },
+ {
+ "start": 1889.26,
+ "end": 1889.52,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 1492
+ },
+ {
+ "start": 1889.52,
+ "end": 1890.1,
+ "confidence": 0,
+ "word": "reform",
+ "punct": "reform.",
+ "index": 1493
+ }
+ ],
+ "start": 1873.9
+ }
+ },
+ {
+ "key": "brfn3",
+ "text": "The platforms that they control.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1890.1,
+ "end": 1890.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 1494
+ },
+ {
+ "start": 1890.32,
+ "end": 1891.04,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms",
+ "index": 1495
+ },
+ {
+ "start": 1891.04,
+ "end": 1891.48,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1496
+ },
+ {
+ "start": 1891.48,
+ "end": 1891.76,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 1497
+ },
+ {
+ "start": 1891.76,
+ "end": 1892.36,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control.",
+ "index": 1498
+ }
+ ],
+ "start": 1890.1
+ }
+ },
+ {
+ "key": "7ctgt",
+ "text": "I believe this is extraordinarily important.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1892.36,
+ "end": 1893.08,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 1499
+ },
+ {
+ "start": 1893.08,
+ "end": 1893.4,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 1500
+ },
+ {
+ "start": 1893.4,
+ "end": 1893.62,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1501
+ },
+ {
+ "start": 1893.62,
+ "end": 1893.8,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1502
+ },
+ {
+ "start": 1893.8,
+ "end": 1894.8,
+ "confidence": 0,
+ "word": "extraordinarily",
+ "punct": "extraordinarily",
+ "index": 1503
+ },
+ {
+ "start": 1894.8,
+ "end": 1895.42,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important.",
+ "index": 1504
+ }
+ ],
+ "start": 1892.36
+ }
+ },
+ {
+ "key": "3008v",
+ "text": "You lead a big company with 27,000 employees.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1895.42,
+ "end": 1895.94,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 1505
+ },
+ {
+ "start": 1895.94,
+ "end": 1896.24,
+ "confidence": 0,
+ "word": "lead",
+ "punct": "lead",
+ "index": 1506
+ },
+ {
+ "start": 1896.24,
+ "end": 1896.32,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1507
+ },
+ {
+ "start": 1896.32,
+ "end": 1896.64,
+ "confidence": 0,
+ "word": "big",
+ "punct": "big",
+ "index": 1508
+ },
+ {
+ "start": 1896.64,
+ "end": 1897.22,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 1509
+ },
+ {
+ "start": 1897.22,
+ "end": 1897.44,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 1510
+ },
+ {
+ "start": 1897.44,
+ "end": 1898.66,
+ "confidence": 0,
+ "word": "27,000",
+ "punct": "27,000",
+ "index": 1511
+ },
+ {
+ "start": 1898.66,
+ "end": 1899.5,
+ "confidence": 0,
+ "word": "employees",
+ "punct": "employees.",
+ "index": 1512
+ }
+ ],
+ "start": 1895.42
+ }
+ },
+ {
+ "key": "ebeul",
+ "text": "And we very much look forward to your comments.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1899.5,
+ "end": 1900.4,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 1513
+ },
+ {
+ "start": 1900.4,
+ "end": 1900.62,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 1514
+ },
+ {
+ "start": 1900.62,
+ "end": 1900.98,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 1515
+ },
+ {
+ "start": 1900.98,
+ "end": 1901.18,
+ "confidence": 0,
+ "word": "much",
+ "punct": "much",
+ "index": 1516
+ },
+ {
+ "start": 1901.18,
+ "end": 1901.5,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 1517
+ },
+ {
+ "start": 1901.5,
+ "end": 1901.86,
+ "confidence": 0,
+ "word": "forward",
+ "punct": "forward",
+ "index": 1518
+ },
+ {
+ "start": 1901.86,
+ "end": 1901.98,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1519
+ },
+ {
+ "start": 1901.98,
+ "end": 1902.16,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 1520
+ },
+ {
+ "start": 1902.16,
+ "end": 1902.64,
+ "confidence": 0,
+ "word": "comments",
+ "punct": "comments.",
+ "index": 1521
+ }
+ ],
+ "start": 1899.5
+ }
+ },
+ {
+ "key": "5m8pv",
+ "text": "Thank you, Mr Chairman, thank you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1902.64,
+ "end": 1903.36,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 1522
+ },
+ {
+ "start": 1903.36,
+ "end": 1903.52,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 1523
+ },
+ {
+ "start": 1903.52,
+ "end": 1903.86,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 1524
+ },
+ {
+ "start": 1903.86,
+ "end": 1904.3,
+ "confidence": 0,
+ "word": "chairman,",
+ "punct": "Chairman,",
+ "index": 1525
+ },
+ {
+ "start": 1904.3,
+ "end": 1905.08,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 1526
+ },
+ {
+ "start": 1905.08,
+ "end": 1905.22,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 1527
+ }
+ ],
+ "start": 1902.64
+ }
+ },
+ {
+ "key": "4t8rp",
+ "text": "So, to find sign, the history and growth of Facebook Meares, that of many of our technological Giants founded by Mr Zuckerberg in 2,004 Facebook has exploded over the past 14 years.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1905.22,
+ "end": 1905.4,
+ "confidence": 0,
+ "word": "so,",
+ "punct": "So,",
+ "index": 1528
+ },
+ {
+ "start": 1905.4,
+ "end": 1905.68,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1529
+ },
+ {
+ "start": 1905.68,
+ "end": 1905.94,
+ "confidence": 0,
+ "word": "find",
+ "punct": "find",
+ "index": 1530
+ },
+ {
+ "start": 1905.94,
+ "end": 1906.72,
+ "confidence": 0,
+ "word": "sign,",
+ "punct": "sign,",
+ "index": 1531
+ },
+ {
+ "start": 1906.72,
+ "end": 1907.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1532
+ },
+ {
+ "start": 1907.24,
+ "end": 1907.74,
+ "confidence": 0,
+ "word": "history",
+ "punct": "history",
+ "index": 1533
+ },
+ {
+ "start": 1907.74,
+ "end": 1907.92,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1534
+ },
+ {
+ "start": 1907.92,
+ "end": 1908.3,
+ "confidence": 0,
+ "word": "growth",
+ "punct": "growth",
+ "index": 1535
+ },
+ {
+ "start": 1908.3,
+ "end": 1908.5,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1536
+ },
+ {
+ "start": 1908.5,
+ "end": 1909.12,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1537
+ },
+ {
+ "start": 1909.12,
+ "end": 1909.7,
+ "confidence": 0,
+ "word": "meares,",
+ "punct": "Meares,",
+ "index": 1538
+ },
+ {
+ "start": 1909.7,
+ "end": 1910,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1539
+ },
+ {
+ "start": 1910,
+ "end": 1910.14,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1540
+ },
+ {
+ "start": 1910.14,
+ "end": 1910.46,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 1541
+ },
+ {
+ "start": 1910.46,
+ "end": 1910.58,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1542
+ },
+ {
+ "start": 1910.58,
+ "end": 1910.9,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 1543
+ },
+ {
+ "start": 1910.9,
+ "end": 1911.96,
+ "confidence": 0,
+ "word": "technological",
+ "punct": "technological",
+ "index": 1544
+ },
+ {
+ "start": 1911.96,
+ "end": 1912.8,
+ "confidence": 0,
+ "word": "giants",
+ "punct": "Giants",
+ "index": 1545
+ },
+ {
+ "start": 1912.8,
+ "end": 1913.6,
+ "confidence": 0,
+ "word": "founded",
+ "punct": "founded",
+ "index": 1546
+ },
+ {
+ "start": 1913.6,
+ "end": 1913.74,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 1547
+ },
+ {
+ "start": 1913.74,
+ "end": 1914.4,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 1548
+ },
+ {
+ "start": 1914.4,
+ "end": 1915,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg",
+ "index": 1549
+ },
+ {
+ "start": 1915,
+ "end": 1915.6,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 1550
+ },
+ {
+ "start": 1915.6,
+ "end": 1916.5,
+ "confidence": 0,
+ "word": "2,004",
+ "punct": "2,004",
+ "index": 1551
+ },
+ {
+ "start": 1916.5,
+ "end": 1917.18,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1552
+ },
+ {
+ "start": 1917.18,
+ "end": 1917.42,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 1553
+ },
+ {
+ "start": 1917.42,
+ "end": 1918.1,
+ "confidence": 0,
+ "word": "exploded",
+ "punct": "exploded",
+ "index": 1554
+ },
+ {
+ "start": 1918.1,
+ "end": 1918.46,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 1555
+ },
+ {
+ "start": 1918.46,
+ "end": 1918.58,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1556
+ },
+ {
+ "start": 1918.58,
+ "end": 1918.86,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past",
+ "index": 1557
+ },
+ {
+ "start": 1918.86,
+ "end": 1919.56,
+ "confidence": 0,
+ "word": "14",
+ "punct": "14",
+ "index": 1558
+ },
+ {
+ "start": 1919.56,
+ "end": 1920.26,
+ "confidence": 0,
+ "word": "years",
+ "punct": "years.",
+ "index": 1559
+ }
+ ],
+ "start": 1905.22
+ }
+ },
+ {
+ "key": "922vr",
+ "text": "Facebook currently has over 2,000,000,000 monthly active users across the world over 25,000 employees and offices and 13 U S cities and various other countries like they're expanding user base.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1920.26,
+ "end": 1921.26,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1560
+ },
+ {
+ "start": 1921.26,
+ "end": 1921.74,
+ "confidence": 0,
+ "word": "currently",
+ "punct": "currently",
+ "index": 1561
+ },
+ {
+ "start": 1921.74,
+ "end": 1922.06,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 1562
+ },
+ {
+ "start": 1922.06,
+ "end": 1922.38,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 1563
+ },
+ {
+ "start": 1922.38,
+ "end": 1923.16,
+ "confidence": 0,
+ "word": "2,000,000,000",
+ "punct": "2,000,000,000",
+ "index": 1564
+ },
+ {
+ "start": 1923.16,
+ "end": 1923.8,
+ "confidence": 0,
+ "word": "monthly",
+ "punct": "monthly",
+ "index": 1565
+ },
+ {
+ "start": 1923.8,
+ "end": 1924.38,
+ "confidence": 0,
+ "word": "active",
+ "punct": "active",
+ "index": 1566
+ },
+ {
+ "start": 1924.38,
+ "end": 1924.88,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 1567
+ },
+ {
+ "start": 1924.88,
+ "end": 1925.28,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 1568
+ },
+ {
+ "start": 1925.28,
+ "end": 1925.48,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1569
+ },
+ {
+ "start": 1925.48,
+ "end": 1925.84,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 1570
+ },
+ {
+ "start": 1925.84,
+ "end": 1926.88,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 1571
+ },
+ {
+ "start": 1926.88,
+ "end": 1927.82,
+ "confidence": 0,
+ "word": "25,000",
+ "punct": "25,000",
+ "index": 1572
+ },
+ {
+ "start": 1927.82,
+ "end": 1928.38,
+ "confidence": 0,
+ "word": "employees",
+ "punct": "employees",
+ "index": 1573
+ },
+ {
+ "start": 1928.38,
+ "end": 1928.8,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1574
+ },
+ {
+ "start": 1928.8,
+ "end": 1929.4,
+ "confidence": 0,
+ "word": "offices",
+ "punct": "offices",
+ "index": 1575
+ },
+ {
+ "start": 1929.4,
+ "end": 1929.6,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1576
+ },
+ {
+ "start": 1929.6,
+ "end": 1930.14,
+ "confidence": 0,
+ "word": "13",
+ "punct": "13",
+ "index": 1577
+ },
+ {
+ "start": 1930.14,
+ "end": 1930.28,
+ "confidence": 0,
+ "word": "u",
+ "punct": "U",
+ "index": 1578
+ },
+ {
+ "start": 1930.28,
+ "end": 1930.48,
+ "confidence": 0,
+ "word": "s",
+ "punct": "S",
+ "index": 1579
+ },
+ {
+ "start": 1930.48,
+ "end": 1930.9,
+ "confidence": 0,
+ "word": "cities",
+ "punct": "cities",
+ "index": 1580
+ },
+ {
+ "start": 1930.9,
+ "end": 1931.72,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1581
+ },
+ {
+ "start": 1931.72,
+ "end": 1932.12,
+ "confidence": 0,
+ "word": "various",
+ "punct": "various",
+ "index": 1582
+ },
+ {
+ "start": 1932.12,
+ "end": 1932.62,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 1583
+ },
+ {
+ "start": 1932.62,
+ "end": 1933.52,
+ "confidence": 0,
+ "word": "countries",
+ "punct": "countries",
+ "index": 1584
+ },
+ {
+ "start": 1933.52,
+ "end": 1934.18,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 1585
+ },
+ {
+ "start": 1934.18,
+ "end": 1934.42,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 1586
+ },
+ {
+ "start": 1934.42,
+ "end": 1935,
+ "confidence": 0,
+ "word": "expanding",
+ "punct": "expanding",
+ "index": 1587
+ },
+ {
+ "start": 1935,
+ "end": 1935.4,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 1588
+ },
+ {
+ "start": 1935.4,
+ "end": 1935.72,
+ "confidence": 0,
+ "word": "base",
+ "punct": "base.",
+ "index": 1589
+ }
+ ],
+ "start": 1920.26
+ }
+ },
+ {
+ "key": "2lijf",
+ "text": "The data collected on Facebook users has also skyrocketed they have moved on from schools, likes and relationship statuses.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1935.72,
+ "end": 1936.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 1590
+ },
+ {
+ "start": 1936.36,
+ "end": 1936.7,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1591
+ },
+ {
+ "start": 1936.7,
+ "end": 1937.18,
+ "confidence": 0,
+ "word": "collected",
+ "punct": "collected",
+ "index": 1592
+ },
+ {
+ "start": 1937.18,
+ "end": 1937.4,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 1593
+ },
+ {
+ "start": 1937.4,
+ "end": 1938.18,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1594
+ },
+ {
+ "start": 1938.18,
+ "end": 1939.18,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 1595
+ },
+ {
+ "start": 1939.18,
+ "end": 1939.44,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 1596
+ },
+ {
+ "start": 1939.44,
+ "end": 1940.1,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 1597
+ },
+ {
+ "start": 1940.1,
+ "end": 1941.08,
+ "confidence": 0,
+ "word": "skyrocketed",
+ "punct": "skyrocketed",
+ "index": 1598
+ },
+ {
+ "start": 1941.08,
+ "end": 1941.94,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 1599
+ },
+ {
+ "start": 1941.94,
+ "end": 1942.12,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 1600
+ },
+ {
+ "start": 1942.12,
+ "end": 1942.44,
+ "confidence": 0,
+ "word": "moved",
+ "punct": "moved",
+ "index": 1601
+ },
+ {
+ "start": 1942.44,
+ "end": 1943.06,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 1602
+ },
+ {
+ "start": 1943.06,
+ "end": 1943.28,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 1603
+ },
+ {
+ "start": 1943.28,
+ "end": 1943.9,
+ "confidence": 0,
+ "word": "schools,",
+ "punct": "schools,",
+ "index": 1604
+ },
+ {
+ "start": 1943.9,
+ "end": 1944.46,
+ "confidence": 0,
+ "word": "likes",
+ "punct": "likes",
+ "index": 1605
+ },
+ {
+ "start": 1944.46,
+ "end": 1945.1,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1606
+ },
+ {
+ "start": 1945.1,
+ "end": 1945.82,
+ "confidence": 0,
+ "word": "relationship",
+ "punct": "relationship",
+ "index": 1607
+ },
+ {
+ "start": 1945.82,
+ "end": 1946.54,
+ "confidence": 0,
+ "word": "statuses",
+ "punct": "statuses.",
+ "index": 1608
+ }
+ ],
+ "start": 1935.72
+ }
+ },
+ {
+ "key": "1m1rj",
+ "text": "Today.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1946.54,
+ "end": 1947.66,
+ "confidence": 0,
+ "word": "today",
+ "punct": "Today.",
+ "index": 1609
+ }
+ ],
+ "start": 1946.54
+ }
+ },
+ {
+ "key": "1pra0",
+ "text": "Facebook has access to dozens of data points ranging from ads that you've clicked on events you've attended and your location based upon your mobile device, it is no secret that Facebook makes money of this data through advertising revenue.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1947.66,
+ "end": 1948.3,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1610
+ },
+ {
+ "start": 1948.3,
+ "end": 1948.64,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 1611
+ },
+ {
+ "start": 1948.64,
+ "end": 1949.3,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access",
+ "index": 1612
+ },
+ {
+ "start": 1949.3,
+ "end": 1949.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1613
+ },
+ {
+ "start": 1949.48,
+ "end": 1950,
+ "confidence": 0,
+ "word": "dozens",
+ "punct": "dozens",
+ "index": 1614
+ },
+ {
+ "start": 1950,
+ "end": 1950.22,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1615
+ },
+ {
+ "start": 1950.22,
+ "end": 1950.56,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1616
+ },
+ {
+ "start": 1950.56,
+ "end": 1951.26,
+ "confidence": 0,
+ "word": "points",
+ "punct": "points",
+ "index": 1617
+ },
+ {
+ "start": 1951.26,
+ "end": 1952.04,
+ "confidence": 0,
+ "word": "ranging",
+ "punct": "ranging",
+ "index": 1618
+ },
+ {
+ "start": 1952.04,
+ "end": 1952.26,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 1619
+ },
+ {
+ "start": 1952.26,
+ "end": 1952.74,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 1620
+ },
+ {
+ "start": 1952.74,
+ "end": 1953.02,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1621
+ },
+ {
+ "start": 1953.02,
+ "end": 1953.3,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 1622
+ },
+ {
+ "start": 1953.3,
+ "end": 1953.66,
+ "confidence": 0,
+ "word": "clicked",
+ "punct": "clicked",
+ "index": 1623
+ },
+ {
+ "start": 1953.66,
+ "end": 1953.94,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 1624
+ },
+ {
+ "start": 1953.94,
+ "end": 1955.14,
+ "confidence": 0,
+ "word": "events",
+ "punct": "events",
+ "index": 1625
+ },
+ {
+ "start": 1955.14,
+ "end": 1955.52,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 1626
+ },
+ {
+ "start": 1955.52,
+ "end": 1956.06,
+ "confidence": 0,
+ "word": "attended",
+ "punct": "attended",
+ "index": 1627
+ },
+ {
+ "start": 1956.06,
+ "end": 1956.74,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1628
+ },
+ {
+ "start": 1956.74,
+ "end": 1956.94,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 1629
+ },
+ {
+ "start": 1956.94,
+ "end": 1957.6,
+ "confidence": 0,
+ "word": "location",
+ "punct": "location",
+ "index": 1630
+ },
+ {
+ "start": 1957.6,
+ "end": 1957.9,
+ "confidence": 0,
+ "word": "based",
+ "punct": "based",
+ "index": 1631
+ },
+ {
+ "start": 1957.9,
+ "end": 1958.34,
+ "confidence": 0,
+ "word": "upon",
+ "punct": "upon",
+ "index": 1632
+ },
+ {
+ "start": 1958.34,
+ "end": 1958.58,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 1633
+ },
+ {
+ "start": 1958.58,
+ "end": 1959,
+ "confidence": 0,
+ "word": "mobile",
+ "punct": "mobile",
+ "index": 1634
+ },
+ {
+ "start": 1959,
+ "end": 1959.68,
+ "confidence": 0,
+ "word": "device,",
+ "punct": "device,",
+ "index": 1635
+ },
+ {
+ "start": 1959.68,
+ "end": 1960.82,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 1636
+ },
+ {
+ "start": 1960.82,
+ "end": 1960.96,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1637
+ },
+ {
+ "start": 1960.96,
+ "end": 1961.2,
+ "confidence": 0,
+ "word": "no",
+ "punct": "no",
+ "index": 1638
+ },
+ {
+ "start": 1961.2,
+ "end": 1961.66,
+ "confidence": 0,
+ "word": "secret",
+ "punct": "secret",
+ "index": 1639
+ },
+ {
+ "start": 1961.66,
+ "end": 1961.88,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1640
+ },
+ {
+ "start": 1961.88,
+ "end": 1962.5,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1641
+ },
+ {
+ "start": 1962.5,
+ "end": 1962.84,
+ "confidence": 0,
+ "word": "makes",
+ "punct": "makes",
+ "index": 1642
+ },
+ {
+ "start": 1962.84,
+ "end": 1963.38,
+ "confidence": 0,
+ "word": "money",
+ "punct": "money",
+ "index": 1643
+ },
+ {
+ "start": 1963.38,
+ "end": 1963.62,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1644
+ },
+ {
+ "start": 1963.62,
+ "end": 1964.14,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1645
+ },
+ {
+ "start": 1964.14,
+ "end": 1964.56,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1646
+ },
+ {
+ "start": 1964.56,
+ "end": 1965.22,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 1647
+ },
+ {
+ "start": 1965.22,
+ "end": 1966.02,
+ "confidence": 0,
+ "word": "advertising",
+ "punct": "advertising",
+ "index": 1648
+ },
+ {
+ "start": 1966.02,
+ "end": 1966.5,
+ "confidence": 0,
+ "word": "revenue",
+ "punct": "revenue.",
+ "index": 1649
+ }
+ ],
+ "start": 1947.66
+ }
+ },
+ {
+ "key": "6fgqs",
+ "text": "Although many seem confused by or get altogether.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1966.5,
+ "end": 1967.44,
+ "confidence": 0,
+ "word": "although",
+ "punct": "Although",
+ "index": 1650
+ },
+ {
+ "start": 1967.44,
+ "end": 1968.18,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 1651
+ },
+ {
+ "start": 1968.18,
+ "end": 1968.54,
+ "confidence": 0,
+ "word": "seem",
+ "punct": "seem",
+ "index": 1652
+ },
+ {
+ "start": 1968.54,
+ "end": 1969.06,
+ "confidence": 0,
+ "word": "confused",
+ "punct": "confused",
+ "index": 1653
+ },
+ {
+ "start": 1969.06,
+ "end": 1969.48,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 1654
+ },
+ {
+ "start": 1969.48,
+ "end": 1970.54,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 1655
+ },
+ {
+ "start": 1970.54,
+ "end": 1970.92,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 1656
+ },
+ {
+ "start": 1970.92,
+ "end": 1971.56,
+ "confidence": 0,
+ "word": "altogether",
+ "punct": "altogether.",
+ "index": 1657
+ }
+ ],
+ "start": 1966.5
+ }
+ },
+ {
+ "key": "buq17",
+ "text": "Unaware of this fact Facebook generates generated 40,000,000,000 in revenue.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1971.56,
+ "end": 1972.24,
+ "confidence": 0,
+ "word": "unaware",
+ "punct": "Unaware",
+ "index": 1658
+ },
+ {
+ "start": 1972.24,
+ "end": 1972.6,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1659
+ },
+ {
+ "start": 1972.6,
+ "end": 1972.82,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1660
+ },
+ {
+ "start": 1972.82,
+ "end": 1973.48,
+ "confidence": 0,
+ "word": "fact",
+ "punct": "fact",
+ "index": 1661
+ },
+ {
+ "start": 1973.48,
+ "end": 1974.5,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1662
+ },
+ {
+ "start": 1974.5,
+ "end": 1975.5,
+ "confidence": 0,
+ "word": "generates",
+ "punct": "generates",
+ "index": 1663
+ },
+ {
+ "start": 1975.5,
+ "end": 1976.5,
+ "confidence": 0,
+ "word": "generated",
+ "punct": "generated",
+ "index": 1664
+ },
+ {
+ "start": 1976.5,
+ "end": 1977.54,
+ "confidence": 0,
+ "word": "40,000,000,000",
+ "punct": "40,000,000,000",
+ "index": 1665
+ },
+ {
+ "start": 1977.54,
+ "end": 1977.76,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 1666
+ },
+ {
+ "start": 1977.76,
+ "end": 1978.2,
+ "confidence": 0,
+ "word": "revenue",
+ "punct": "revenue.",
+ "index": 1667
+ }
+ ],
+ "start": 1971.56
+ }
+ },
+ {
+ "key": "34rfl",
+ "text": "And we seen with about it coming from advertising across Facebook and Instagram.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1978.2,
+ "end": 1978.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 1668
+ },
+ {
+ "start": 1978.42,
+ "end": 1978.76,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 1669
+ },
+ {
+ "start": 1978.76,
+ "end": 1979.86,
+ "confidence": 0,
+ "word": "seen",
+ "punct": "seen",
+ "index": 1670
+ },
+ {
+ "start": 1979.86,
+ "end": 1980.06,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 1671
+ },
+ {
+ "start": 1980.06,
+ "end": 1980.38,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 1672
+ },
+ {
+ "start": 1980.38,
+ "end": 1981.16,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 1673
+ },
+ {
+ "start": 1981.16,
+ "end": 1982,
+ "confidence": 0,
+ "word": "coming",
+ "punct": "coming",
+ "index": 1674
+ },
+ {
+ "start": 1982,
+ "end": 1982.58,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 1675
+ },
+ {
+ "start": 1982.58,
+ "end": 1983.42,
+ "confidence": 0,
+ "word": "advertising",
+ "punct": "advertising",
+ "index": 1676
+ },
+ {
+ "start": 1983.42,
+ "end": 1983.94,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 1677
+ },
+ {
+ "start": 1983.94,
+ "end": 1984.54,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1678
+ },
+ {
+ "start": 1984.54,
+ "end": 1985.2,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1679
+ },
+ {
+ "start": 1985.2,
+ "end": 1986.3,
+ "confidence": 0,
+ "word": "instagram",
+ "punct": "Instagram.",
+ "index": 1680
+ }
+ ],
+ "start": 1978.2
+ }
+ },
+ {
+ "key": "esk7q",
+ "text": "Significant data collection is also occurring at Google, Twitter, Apple and Amazon and even an ever expanding portfolio of products and services offered by these companies.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1986.3,
+ "end": 1987.48,
+ "confidence": 0,
+ "word": "significant",
+ "punct": "Significant",
+ "index": 1681
+ },
+ {
+ "start": 1987.48,
+ "end": 1988.56,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1682
+ },
+ {
+ "start": 1988.56,
+ "end": 1989.14,
+ "confidence": 0,
+ "word": "collection",
+ "punct": "collection",
+ "index": 1683
+ },
+ {
+ "start": 1989.14,
+ "end": 1989.38,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1684
+ },
+ {
+ "start": 1989.38,
+ "end": 1989.7,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 1685
+ },
+ {
+ "start": 1989.7,
+ "end": 1990.26,
+ "confidence": 0,
+ "word": "occurring",
+ "punct": "occurring",
+ "index": 1686
+ },
+ {
+ "start": 1990.26,
+ "end": 1990.48,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 1687
+ },
+ {
+ "start": 1990.48,
+ "end": 1990.88,
+ "confidence": 0,
+ "word": "google,",
+ "punct": "Google,",
+ "index": 1688
+ },
+ {
+ "start": 1990.88,
+ "end": 1991.66,
+ "confidence": 0,
+ "word": "twitter,",
+ "punct": "Twitter,",
+ "index": 1689
+ },
+ {
+ "start": 1991.66,
+ "end": 1992.34,
+ "confidence": 0,
+ "word": "apple",
+ "punct": "Apple",
+ "index": 1690
+ },
+ {
+ "start": 1992.34,
+ "end": 1992.64,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1691
+ },
+ {
+ "start": 1992.64,
+ "end": 1993.14,
+ "confidence": 0,
+ "word": "amazon",
+ "punct": "Amazon",
+ "index": 1692
+ },
+ {
+ "start": 1993.14,
+ "end": 1994.02,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1693
+ },
+ {
+ "start": 1994.02,
+ "end": 1994.42,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 1694
+ },
+ {
+ "start": 1994.42,
+ "end": 1995.1,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 1695
+ },
+ {
+ "start": 1995.1,
+ "end": 1995.42,
+ "confidence": 0,
+ "word": "ever",
+ "punct": "ever",
+ "index": 1696
+ },
+ {
+ "start": 1995.42,
+ "end": 1996.06,
+ "confidence": 0,
+ "word": "expanding",
+ "punct": "expanding",
+ "index": 1697
+ },
+ {
+ "start": 1996.06,
+ "end": 1996.78,
+ "confidence": 0,
+ "word": "portfolio",
+ "punct": "portfolio",
+ "index": 1698
+ },
+ {
+ "start": 1996.78,
+ "end": 1997.12,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1699
+ },
+ {
+ "start": 1997.12,
+ "end": 1998.08,
+ "confidence": 0,
+ "word": "products",
+ "punct": "products",
+ "index": 1700
+ },
+ {
+ "start": 1998.08,
+ "end": 1998.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1701
+ },
+ {
+ "start": 1998.3,
+ "end": 1998.88,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 1702
+ },
+ {
+ "start": 1998.88,
+ "end": 1999.38,
+ "confidence": 0,
+ "word": "offered",
+ "punct": "offered",
+ "index": 1703
+ },
+ {
+ "start": 1999.38,
+ "end": 1999.52,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 1704
+ },
+ {
+ "start": 1999.52,
+ "end": 1999.92,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 1705
+ },
+ {
+ "start": 1999.92,
+ "end": 2001.44,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies.",
+ "index": 1706
+ }
+ ],
+ "start": 1986.3
+ }
+ },
+ {
+ "key": "54nfv",
+ "text": "Grant endless opportunities to collect increasing amounts of information on their customers as we get more free or extremely low cost services.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2001.44,
+ "end": 2002.3,
+ "confidence": 0,
+ "word": "grant",
+ "punct": "Grant",
+ "index": 1707
+ },
+ {
+ "start": 2002.3,
+ "end": 2002.96,
+ "confidence": 0,
+ "word": "endless",
+ "punct": "endless",
+ "index": 1708
+ },
+ {
+ "start": 2002.96,
+ "end": 2003.84,
+ "confidence": 0,
+ "word": "opportunities",
+ "punct": "opportunities",
+ "index": 1709
+ },
+ {
+ "start": 2003.84,
+ "end": 2004.2,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1710
+ },
+ {
+ "start": 2004.2,
+ "end": 2004.58,
+ "confidence": 0,
+ "word": "collect",
+ "punct": "collect",
+ "index": 1711
+ },
+ {
+ "start": 2004.58,
+ "end": 2005.24,
+ "confidence": 0,
+ "word": "increasing",
+ "punct": "increasing",
+ "index": 1712
+ },
+ {
+ "start": 2005.24,
+ "end": 2005.62,
+ "confidence": 0,
+ "word": "amounts",
+ "punct": "amounts",
+ "index": 1713
+ },
+ {
+ "start": 2005.62,
+ "end": 2005.8,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1714
+ },
+ {
+ "start": 2005.8,
+ "end": 2006.46,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 1715
+ },
+ {
+ "start": 2006.46,
+ "end": 2006.64,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 1716
+ },
+ {
+ "start": 2006.64,
+ "end": 2006.86,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 1717
+ },
+ {
+ "start": 2006.86,
+ "end": 2007.4,
+ "confidence": 0,
+ "word": "customers",
+ "punct": "customers",
+ "index": 1718
+ },
+ {
+ "start": 2007.4,
+ "end": 2008.3,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 1719
+ },
+ {
+ "start": 2008.3,
+ "end": 2008.44,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 1720
+ },
+ {
+ "start": 2008.44,
+ "end": 2008.68,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 1721
+ },
+ {
+ "start": 2008.68,
+ "end": 2008.92,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 1722
+ },
+ {
+ "start": 2008.92,
+ "end": 2009.38,
+ "confidence": 0,
+ "word": "free",
+ "punct": "free",
+ "index": 1723
+ },
+ {
+ "start": 2009.38,
+ "end": 2009.8,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 1724
+ },
+ {
+ "start": 2009.8,
+ "end": 2010.54,
+ "confidence": 0,
+ "word": "extremely",
+ "punct": "extremely",
+ "index": 1725
+ },
+ {
+ "start": 2010.54,
+ "end": 2010.78,
+ "confidence": 0,
+ "word": "low",
+ "punct": "low",
+ "index": 1726
+ },
+ {
+ "start": 2010.78,
+ "end": 2011.04,
+ "confidence": 0,
+ "word": "cost",
+ "punct": "cost",
+ "index": 1727
+ },
+ {
+ "start": 2011.04,
+ "end": 2011.7,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services.",
+ "index": 1728
+ }
+ ],
+ "start": 2001.44
+ }
+ },
+ {
+ "key": "bomn6",
+ "text": "The trade off for the American consumer is to provide personal data, the potential for further growth and innovation based on collection of data is limited less.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2011.7,
+ "end": 2012.6,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 1729
+ },
+ {
+ "start": 2012.6,
+ "end": 2012.92,
+ "confidence": 0,
+ "word": "trade",
+ "punct": "trade",
+ "index": 1730
+ },
+ {
+ "start": 2012.92,
+ "end": 2013.16,
+ "confidence": 0,
+ "word": "off",
+ "punct": "off",
+ "index": 1731
+ },
+ {
+ "start": 2013.16,
+ "end": 2013.72,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1732
+ },
+ {
+ "start": 2013.72,
+ "end": 2013.84,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1733
+ },
+ {
+ "start": 2013.84,
+ "end": 2014.36,
+ "confidence": 0,
+ "word": "american",
+ "punct": "American",
+ "index": 1734
+ },
+ {
+ "start": 2014.36,
+ "end": 2014.94,
+ "confidence": 0,
+ "word": "consumer",
+ "punct": "consumer",
+ "index": 1735
+ },
+ {
+ "start": 2014.94,
+ "end": 2015.12,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1736
+ },
+ {
+ "start": 2015.12,
+ "end": 2015.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1737
+ },
+ {
+ "start": 2015.28,
+ "end": 2015.9,
+ "confidence": 0,
+ "word": "provide",
+ "punct": "provide",
+ "index": 1738
+ },
+ {
+ "start": 2015.9,
+ "end": 2016.72,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 1739
+ },
+ {
+ "start": 2016.72,
+ "end": 2017.2,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 1740
+ },
+ {
+ "start": 2017.2,
+ "end": 2018.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1741
+ },
+ {
+ "start": 2018.22,
+ "end": 2018.74,
+ "confidence": 0,
+ "word": "potential",
+ "punct": "potential",
+ "index": 1742
+ },
+ {
+ "start": 2018.74,
+ "end": 2019,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1743
+ },
+ {
+ "start": 2019,
+ "end": 2019.46,
+ "confidence": 0,
+ "word": "further",
+ "punct": "further",
+ "index": 1744
+ },
+ {
+ "start": 2019.46,
+ "end": 2019.8,
+ "confidence": 0,
+ "word": "growth",
+ "punct": "growth",
+ "index": 1745
+ },
+ {
+ "start": 2019.8,
+ "end": 2020.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1746
+ },
+ {
+ "start": 2020.54,
+ "end": 2021.28,
+ "confidence": 0,
+ "word": "innovation",
+ "punct": "innovation",
+ "index": 1747
+ },
+ {
+ "start": 2021.28,
+ "end": 2021.66,
+ "confidence": 0,
+ "word": "based",
+ "punct": "based",
+ "index": 1748
+ },
+ {
+ "start": 2021.66,
+ "end": 2021.96,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 1749
+ },
+ {
+ "start": 2021.96,
+ "end": 2022.5,
+ "confidence": 0,
+ "word": "collection",
+ "punct": "collection",
+ "index": 1750
+ },
+ {
+ "start": 2022.5,
+ "end": 2022.6,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1751
+ },
+ {
+ "start": 2022.6,
+ "end": 2023.04,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1752
+ },
+ {
+ "start": 2023.04,
+ "end": 2023.56,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1753
+ },
+ {
+ "start": 2023.56,
+ "end": 2024.3,
+ "confidence": 0,
+ "word": "limited",
+ "punct": "limited",
+ "index": 1754
+ },
+ {
+ "start": 2024.3,
+ "end": 2024.56,
+ "confidence": 0,
+ "word": "less",
+ "punct": "less.",
+ "index": 1755
+ }
+ ],
+ "start": 2011.7
+ }
+ },
+ {
+ "key": "7t26t",
+ "text": "However, the potential for abuse is also significant.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2024.56,
+ "end": 2025.68,
+ "confidence": 0,
+ "word": "however,",
+ "punct": "However,",
+ "index": 1756
+ },
+ {
+ "start": 2025.68,
+ "end": 2026.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1757
+ },
+ {
+ "start": 2026.3,
+ "end": 2026.82,
+ "confidence": 0,
+ "word": "potential",
+ "punct": "potential",
+ "index": 1758
+ },
+ {
+ "start": 2026.82,
+ "end": 2027.04,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1759
+ },
+ {
+ "start": 2027.04,
+ "end": 2027.82,
+ "confidence": 0,
+ "word": "abuse",
+ "punct": "abuse",
+ "index": 1760
+ },
+ {
+ "start": 2027.82,
+ "end": 2028.64,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1761
+ },
+ {
+ "start": 2028.64,
+ "end": 2029.14,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 1762
+ },
+ {
+ "start": 2029.14,
+ "end": 2030.36,
+ "confidence": 0,
+ "word": "significant",
+ "punct": "significant.",
+ "index": 1763
+ }
+ ],
+ "start": 2024.56
+ }
+ },
+ {
+ "key": "b0aqq",
+ "text": "Well, the condors of the Cambridge analytic situation are still coming to light.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2030.36,
+ "end": 2031.08,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "Well,",
+ "index": 1764
+ },
+ {
+ "start": 2031.08,
+ "end": 2031.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1765
+ },
+ {
+ "start": 2031.22,
+ "end": 2031.96,
+ "confidence": 0,
+ "word": "condors",
+ "punct": "condors",
+ "index": 1766
+ },
+ {
+ "start": 2031.96,
+ "end": 2032.4,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1767
+ },
+ {
+ "start": 2032.4,
+ "end": 2032.58,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1768
+ },
+ {
+ "start": 2032.58,
+ "end": 2033.24,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 1769
+ },
+ {
+ "start": 2033.24,
+ "end": 2034.72,
+ "confidence": 0,
+ "word": "analytic",
+ "punct": "analytic",
+ "index": 1770
+ },
+ {
+ "start": 2034.72,
+ "end": 2035.72,
+ "confidence": 0,
+ "word": "situation",
+ "punct": "situation",
+ "index": 1771
+ },
+ {
+ "start": 2035.72,
+ "end": 2035.94,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 1772
+ },
+ {
+ "start": 2035.94,
+ "end": 2036.26,
+ "confidence": 0,
+ "word": "still",
+ "punct": "still",
+ "index": 1773
+ },
+ {
+ "start": 2036.26,
+ "end": 2036.58,
+ "confidence": 0,
+ "word": "coming",
+ "punct": "coming",
+ "index": 1774
+ },
+ {
+ "start": 2036.58,
+ "end": 2036.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1775
+ },
+ {
+ "start": 2036.72,
+ "end": 2037.56,
+ "confidence": 0,
+ "word": "light",
+ "punct": "light.",
+ "index": 1776
+ }
+ ],
+ "start": 2030.36
+ }
+ },
+ {
+ "key": "cu12m",
+ "text": "There was clearly a breach of consumer trust and a likely improper transfer of data.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2037.56,
+ "end": 2038.26,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 1777
+ },
+ {
+ "start": 2038.26,
+ "end": 2038.44,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 1778
+ },
+ {
+ "start": 2038.44,
+ "end": 2038.88,
+ "confidence": 0,
+ "word": "clearly",
+ "punct": "clearly",
+ "index": 1779
+ },
+ {
+ "start": 2038.88,
+ "end": 2039,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1780
+ },
+ {
+ "start": 2039,
+ "end": 2039.5,
+ "confidence": 0,
+ "word": "breach",
+ "punct": "breach",
+ "index": 1781
+ },
+ {
+ "start": 2039.5,
+ "end": 2039.68,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1782
+ },
+ {
+ "start": 2039.68,
+ "end": 2040.22,
+ "confidence": 0,
+ "word": "consumer",
+ "punct": "consumer",
+ "index": 1783
+ },
+ {
+ "start": 2040.22,
+ "end": 2040.62,
+ "confidence": 0,
+ "word": "trust",
+ "punct": "trust",
+ "index": 1784
+ },
+ {
+ "start": 2040.62,
+ "end": 2041.46,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1785
+ },
+ {
+ "start": 2041.46,
+ "end": 2041.62,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1786
+ },
+ {
+ "start": 2041.62,
+ "end": 2042.08,
+ "confidence": 0,
+ "word": "likely",
+ "punct": "likely",
+ "index": 1787
+ },
+ {
+ "start": 2042.08,
+ "end": 2042.68,
+ "confidence": 0,
+ "word": "improper",
+ "punct": "improper",
+ "index": 1788
+ },
+ {
+ "start": 2042.68,
+ "end": 2043.28,
+ "confidence": 0,
+ "word": "transfer",
+ "punct": "transfer",
+ "index": 1789
+ },
+ {
+ "start": 2043.28,
+ "end": 2043.38,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1790
+ },
+ {
+ "start": 2043.38,
+ "end": 2044.22,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data.",
+ "index": 1791
+ }
+ ],
+ "start": 2037.56
+ }
+ },
+ {
+ "key": "ed66v",
+ "text": "The Judiciary Committee will hold a separate hearing exploring Cambridge and other data privacy issues more importantly, though, these events have ignited a larger discussion on consumers expectations and the future of data privacy in our society, it is exposed that consumers may not fully understand or appreciate the extent to which their data is collected protected transferred used and misused.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2044.22,
+ "end": 2044.78,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 1792
+ },
+ {
+ "start": 2044.78,
+ "end": 2045.44,
+ "confidence": 0,
+ "word": "judiciary",
+ "punct": "Judiciary",
+ "index": 1793
+ },
+ {
+ "start": 2045.44,
+ "end": 2045.94,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "Committee",
+ "index": 1794
+ },
+ {
+ "start": 2045.94,
+ "end": 2046.54,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 1795
+ },
+ {
+ "start": 2046.54,
+ "end": 2047.52,
+ "confidence": 0,
+ "word": "hold",
+ "punct": "hold",
+ "index": 1796
+ },
+ {
+ "start": 2047.52,
+ "end": 2047.84,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1797
+ },
+ {
+ "start": 2047.84,
+ "end": 2048.38,
+ "confidence": 0,
+ "word": "separate",
+ "punct": "separate",
+ "index": 1798
+ },
+ {
+ "start": 2048.38,
+ "end": 2048.96,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 1799
+ },
+ {
+ "start": 2048.96,
+ "end": 2049.8,
+ "confidence": 0,
+ "word": "exploring",
+ "punct": "exploring",
+ "index": 1800
+ },
+ {
+ "start": 2049.8,
+ "end": 2050.74,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 1801
+ },
+ {
+ "start": 2050.74,
+ "end": 2051.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1802
+ },
+ {
+ "start": 2051.26,
+ "end": 2051.64,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 1803
+ },
+ {
+ "start": 2051.64,
+ "end": 2052.06,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1804
+ },
+ {
+ "start": 2052.06,
+ "end": 2052.74,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 1805
+ },
+ {
+ "start": 2052.74,
+ "end": 2053.26,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues",
+ "index": 1806
+ },
+ {
+ "start": 2053.26,
+ "end": 2054.32,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 1807
+ },
+ {
+ "start": 2054.32,
+ "end": 2054.84,
+ "confidence": 0,
+ "word": "importantly,",
+ "punct": "importantly,",
+ "index": 1808
+ },
+ {
+ "start": 2054.84,
+ "end": 2055.12,
+ "confidence": 0,
+ "word": "though,",
+ "punct": "though,",
+ "index": 1809
+ },
+ {
+ "start": 2055.12,
+ "end": 2055.78,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 1810
+ },
+ {
+ "start": 2055.78,
+ "end": 2056.26,
+ "confidence": 0,
+ "word": "events",
+ "punct": "events",
+ "index": 1811
+ },
+ {
+ "start": 2056.26,
+ "end": 2056.8,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 1812
+ },
+ {
+ "start": 2056.8,
+ "end": 2057.38,
+ "confidence": 0,
+ "word": "ignited",
+ "punct": "ignited",
+ "index": 1813
+ },
+ {
+ "start": 2057.38,
+ "end": 2058.06,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1814
+ },
+ {
+ "start": 2058.06,
+ "end": 2058.52,
+ "confidence": 0,
+ "word": "larger",
+ "punct": "larger",
+ "index": 1815
+ },
+ {
+ "start": 2058.52,
+ "end": 2059.14,
+ "confidence": 0,
+ "word": "discussion",
+ "punct": "discussion",
+ "index": 1816
+ },
+ {
+ "start": 2059.14,
+ "end": 2059.4,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 1817
+ },
+ {
+ "start": 2059.4,
+ "end": 2060.4,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 1818
+ },
+ {
+ "start": 2060.4,
+ "end": 2061.58,
+ "confidence": 0,
+ "word": "expectations",
+ "punct": "expectations",
+ "index": 1819
+ },
+ {
+ "start": 2061.58,
+ "end": 2062.28,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1820
+ },
+ {
+ "start": 2062.28,
+ "end": 2062.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1821
+ },
+ {
+ "start": 2062.42,
+ "end": 2062.86,
+ "confidence": 0,
+ "word": "future",
+ "punct": "future",
+ "index": 1822
+ },
+ {
+ "start": 2062.86,
+ "end": 2063,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1823
+ },
+ {
+ "start": 2063,
+ "end": 2063.38,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1824
+ },
+ {
+ "start": 2063.38,
+ "end": 2064,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 1825
+ },
+ {
+ "start": 2064,
+ "end": 2064.38,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 1826
+ },
+ {
+ "start": 2064.38,
+ "end": 2064.56,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 1827
+ },
+ {
+ "start": 2064.56,
+ "end": 2065.26,
+ "confidence": 0,
+ "word": "society,",
+ "punct": "society,",
+ "index": 1828
+ },
+ {
+ "start": 2065.26,
+ "end": 2066.14,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 1829
+ },
+ {
+ "start": 2066.14,
+ "end": 2066.32,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1830
+ },
+ {
+ "start": 2066.32,
+ "end": 2067.02,
+ "confidence": 0,
+ "word": "exposed",
+ "punct": "exposed",
+ "index": 1831
+ },
+ {
+ "start": 2067.02,
+ "end": 2067.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1832
+ },
+ {
+ "start": 2067.3,
+ "end": 2067.96,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 1833
+ },
+ {
+ "start": 2067.96,
+ "end": 2068.22,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 1834
+ },
+ {
+ "start": 2068.22,
+ "end": 2068.4,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 1835
+ },
+ {
+ "start": 2068.4,
+ "end": 2068.7,
+ "confidence": 0,
+ "word": "fully",
+ "punct": "fully",
+ "index": 1836
+ },
+ {
+ "start": 2068.7,
+ "end": 2069.38,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 1837
+ },
+ {
+ "start": 2069.38,
+ "end": 2070.06,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 1838
+ },
+ {
+ "start": 2070.06,
+ "end": 2070.74,
+ "confidence": 0,
+ "word": "appreciate",
+ "punct": "appreciate",
+ "index": 1839
+ },
+ {
+ "start": 2070.74,
+ "end": 2070.9,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1840
+ },
+ {
+ "start": 2070.9,
+ "end": 2071.3,
+ "confidence": 0,
+ "word": "extent",
+ "punct": "extent",
+ "index": 1841
+ },
+ {
+ "start": 2071.3,
+ "end": 2071.4,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1842
+ },
+ {
+ "start": 2071.4,
+ "end": 2071.62,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 1843
+ },
+ {
+ "start": 2071.62,
+ "end": 2071.86,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 1844
+ },
+ {
+ "start": 2071.86,
+ "end": 2072.42,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1845
+ },
+ {
+ "start": 2072.42,
+ "end": 2072.96,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 1846
+ },
+ {
+ "start": 2072.96,
+ "end": 2073.76,
+ "confidence": 0,
+ "word": "collected",
+ "punct": "collected",
+ "index": 1847
+ },
+ {
+ "start": 2073.76,
+ "end": 2074.72,
+ "confidence": 0,
+ "word": "protected",
+ "punct": "protected",
+ "index": 1848
+ },
+ {
+ "start": 2074.72,
+ "end": 2075.88,
+ "confidence": 0,
+ "word": "transferred",
+ "punct": "transferred",
+ "index": 1849
+ },
+ {
+ "start": 2075.88,
+ "end": 2076.8,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 1850
+ },
+ {
+ "start": 2076.8,
+ "end": 2077.82,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1851
+ },
+ {
+ "start": 2077.82,
+ "end": 2078.94,
+ "confidence": 0,
+ "word": "misused",
+ "punct": "misused.",
+ "index": 1852
+ }
+ ],
+ "start": 2044.22
+ }
+ },
+ {
+ "key": "abapd",
+ "text": "Data has been used in advertising and political campaigns for decades, the amount and type of data obtained, however, has seen a very dramatic change campaigns, including presidents, Bush Obama and Trump all use these increasing amounts of data to focus on micro targeting and personalization over numerous social media platforms and especially Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2078.94,
+ "end": 2079.8,
+ "confidence": 0,
+ "word": "data",
+ "punct": "Data",
+ "index": 1853
+ },
+ {
+ "start": 2079.8,
+ "end": 2080.08,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 1854
+ },
+ {
+ "start": 2080.08,
+ "end": 2080.34,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 1855
+ },
+ {
+ "start": 2080.34,
+ "end": 2080.72,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 1856
+ },
+ {
+ "start": 2080.72,
+ "end": 2080.9,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 1857
+ },
+ {
+ "start": 2080.9,
+ "end": 2081.7,
+ "confidence": 0,
+ "word": "advertising",
+ "punct": "advertising",
+ "index": 1858
+ },
+ {
+ "start": 2081.7,
+ "end": 2081.86,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1859
+ },
+ {
+ "start": 2081.86,
+ "end": 2082.34,
+ "confidence": 0,
+ "word": "political",
+ "punct": "political",
+ "index": 1860
+ },
+ {
+ "start": 2082.34,
+ "end": 2083,
+ "confidence": 0,
+ "word": "campaigns",
+ "punct": "campaigns",
+ "index": 1861
+ },
+ {
+ "start": 2083,
+ "end": 2083.7,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1862
+ },
+ {
+ "start": 2083.7,
+ "end": 2084.24,
+ "confidence": 0,
+ "word": "decades,",
+ "punct": "decades,",
+ "index": 1863
+ },
+ {
+ "start": 2084.24,
+ "end": 2085.04,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1864
+ },
+ {
+ "start": 2085.04,
+ "end": 2085.38,
+ "confidence": 0,
+ "word": "amount",
+ "punct": "amount",
+ "index": 1865
+ },
+ {
+ "start": 2085.38,
+ "end": 2085.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1866
+ },
+ {
+ "start": 2085.54,
+ "end": 2085.84,
+ "confidence": 0,
+ "word": "type",
+ "punct": "type",
+ "index": 1867
+ },
+ {
+ "start": 2085.84,
+ "end": 2085.98,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1868
+ },
+ {
+ "start": 2085.98,
+ "end": 2086.36,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1869
+ },
+ {
+ "start": 2086.36,
+ "end": 2086.96,
+ "confidence": 0,
+ "word": "obtained,",
+ "punct": "obtained,",
+ "index": 1870
+ },
+ {
+ "start": 2086.96,
+ "end": 2087.5,
+ "confidence": 0,
+ "word": "however,",
+ "punct": "however,",
+ "index": 1871
+ },
+ {
+ "start": 2087.5,
+ "end": 2088.32,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 1872
+ },
+ {
+ "start": 2088.32,
+ "end": 2089.06,
+ "confidence": 0,
+ "word": "seen",
+ "punct": "seen",
+ "index": 1873
+ },
+ {
+ "start": 2089.06,
+ "end": 2089.34,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 1874
+ },
+ {
+ "start": 2089.34,
+ "end": 2089.78,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 1875
+ },
+ {
+ "start": 2089.78,
+ "end": 2090.38,
+ "confidence": 0,
+ "word": "dramatic",
+ "punct": "dramatic",
+ "index": 1876
+ },
+ {
+ "start": 2090.38,
+ "end": 2091.32,
+ "confidence": 0,
+ "word": "change",
+ "punct": "change",
+ "index": 1877
+ },
+ {
+ "start": 2091.32,
+ "end": 2092.36,
+ "confidence": 0,
+ "word": "campaigns,",
+ "punct": "campaigns,",
+ "index": 1878
+ },
+ {
+ "start": 2092.36,
+ "end": 2093.36,
+ "confidence": 0,
+ "word": "including",
+ "punct": "including",
+ "index": 1879
+ },
+ {
+ "start": 2093.36,
+ "end": 2094.38,
+ "confidence": 0,
+ "word": "presidents,",
+ "punct": "presidents,",
+ "index": 1880
+ },
+ {
+ "start": 2094.38,
+ "end": 2094.86,
+ "confidence": 0,
+ "word": "bush",
+ "punct": "Bush",
+ "index": 1881
+ },
+ {
+ "start": 2094.86,
+ "end": 2095.72,
+ "confidence": 0,
+ "word": "obama",
+ "punct": "Obama",
+ "index": 1882
+ },
+ {
+ "start": 2095.72,
+ "end": 2096.34,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1883
+ },
+ {
+ "start": 2096.34,
+ "end": 2096.74,
+ "confidence": 0,
+ "word": "trump",
+ "punct": "Trump",
+ "index": 1884
+ },
+ {
+ "start": 2096.74,
+ "end": 2097.36,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 1885
+ },
+ {
+ "start": 2097.36,
+ "end": 2097.74,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 1886
+ },
+ {
+ "start": 2097.74,
+ "end": 2098.08,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 1887
+ },
+ {
+ "start": 2098.08,
+ "end": 2099.18,
+ "confidence": 0,
+ "word": "increasing",
+ "punct": "increasing",
+ "index": 1888
+ },
+ {
+ "start": 2099.18,
+ "end": 2099.62,
+ "confidence": 0,
+ "word": "amounts",
+ "punct": "amounts",
+ "index": 1889
+ },
+ {
+ "start": 2099.62,
+ "end": 2099.84,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1890
+ },
+ {
+ "start": 2099.84,
+ "end": 2100.48,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1891
+ },
+ {
+ "start": 2100.48,
+ "end": 2100.92,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1892
+ },
+ {
+ "start": 2100.92,
+ "end": 2101.54,
+ "confidence": 0,
+ "word": "focus",
+ "punct": "focus",
+ "index": 1893
+ },
+ {
+ "start": 2101.54,
+ "end": 2102,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 1894
+ },
+ {
+ "start": 2102,
+ "end": 2102.48,
+ "confidence": 0,
+ "word": "micro",
+ "punct": "micro",
+ "index": 1895
+ },
+ {
+ "start": 2102.48,
+ "end": 2103.2,
+ "confidence": 0,
+ "word": "targeting",
+ "punct": "targeting",
+ "index": 1896
+ },
+ {
+ "start": 2103.2,
+ "end": 2104.28,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1897
+ },
+ {
+ "start": 2104.28,
+ "end": 2105.28,
+ "confidence": 0,
+ "word": "personalization",
+ "punct": "personalization",
+ "index": 1898
+ },
+ {
+ "start": 2105.28,
+ "end": 2106.1,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 1899
+ },
+ {
+ "start": 2106.1,
+ "end": 2106.54,
+ "confidence": 0,
+ "word": "numerous",
+ "punct": "numerous",
+ "index": 1900
+ },
+ {
+ "start": 2106.54,
+ "end": 2107.06,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 1901
+ },
+ {
+ "start": 2107.06,
+ "end": 2107.5,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 1902
+ },
+ {
+ "start": 2107.5,
+ "end": 2108.18,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms",
+ "index": 1903
+ },
+ {
+ "start": 2108.18,
+ "end": 2108.94,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1904
+ },
+ {
+ "start": 2108.94,
+ "end": 2109.58,
+ "confidence": 0,
+ "word": "especially",
+ "punct": "especially",
+ "index": 1905
+ },
+ {
+ "start": 2109.58,
+ "end": 2110.66,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 1906
+ }
+ ],
+ "start": 2078.94
+ }
+ },
+ {
+ "key": "7g5cc",
+ "text": "In fact, President Obama's campaign developed an apt utilizing the same Facebook feature as Cambridge Analytica to capture the information of not just the apps use.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2110.66,
+ "end": 2111.66,
+ "confidence": 0,
+ "word": "in",
+ "punct": "In",
+ "index": 1907
+ },
+ {
+ "start": 2111.66,
+ "end": 2112.64,
+ "confidence": 0,
+ "word": "fact,",
+ "punct": "fact,",
+ "index": 1908
+ },
+ {
+ "start": 2112.64,
+ "end": 2113.76,
+ "confidence": 0,
+ "word": "president",
+ "punct": "President",
+ "index": 1909
+ },
+ {
+ "start": 2113.76,
+ "end": 2114.7,
+ "confidence": 0,
+ "word": "obama's",
+ "punct": "Obama's",
+ "index": 1910
+ },
+ {
+ "start": 2114.7,
+ "end": 2115.82,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign",
+ "index": 1911
+ },
+ {
+ "start": 2115.82,
+ "end": 2116.46,
+ "confidence": 0,
+ "word": "developed",
+ "punct": "developed",
+ "index": 1912
+ },
+ {
+ "start": 2116.46,
+ "end": 2116.6,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 1913
+ },
+ {
+ "start": 2116.6,
+ "end": 2117.06,
+ "confidence": 0,
+ "word": "apt",
+ "punct": "apt",
+ "index": 1914
+ },
+ {
+ "start": 2117.06,
+ "end": 2117.88,
+ "confidence": 0,
+ "word": "utilizing",
+ "punct": "utilizing",
+ "index": 1915
+ },
+ {
+ "start": 2117.88,
+ "end": 2118.06,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1916
+ },
+ {
+ "start": 2118.06,
+ "end": 2118.4,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 1917
+ },
+ {
+ "start": 2118.4,
+ "end": 2119.12,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 1918
+ },
+ {
+ "start": 2119.12,
+ "end": 2119.72,
+ "confidence": 0,
+ "word": "feature",
+ "punct": "feature",
+ "index": 1919
+ },
+ {
+ "start": 2119.72,
+ "end": 2120.38,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 1920
+ },
+ {
+ "start": 2120.38,
+ "end": 2121.2,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 1921
+ },
+ {
+ "start": 2121.2,
+ "end": 2122.16,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 1922
+ },
+ {
+ "start": 2122.16,
+ "end": 2122.78,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 1923
+ },
+ {
+ "start": 2122.78,
+ "end": 2123.26,
+ "confidence": 0,
+ "word": "capture",
+ "punct": "capture",
+ "index": 1924
+ },
+ {
+ "start": 2123.26,
+ "end": 2123.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1925
+ },
+ {
+ "start": 2123.44,
+ "end": 2124.06,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 1926
+ },
+ {
+ "start": 2124.06,
+ "end": 2124.26,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1927
+ },
+ {
+ "start": 2124.26,
+ "end": 2124.5,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 1928
+ },
+ {
+ "start": 2124.5,
+ "end": 2124.84,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 1929
+ },
+ {
+ "start": 2124.84,
+ "end": 2125.08,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1930
+ },
+ {
+ "start": 2125.08,
+ "end": 2125.42,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 1931
+ },
+ {
+ "start": 2125.42,
+ "end": 2125.78,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use.",
+ "index": 1932
+ }
+ ],
+ "start": 2110.66
+ }
+ },
+ {
+ "key": "boovq",
+ "text": "But millions of their friends, the digital director for that campaign for 20 12 described the data scraping app as something that would quote.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2125.78,
+ "end": 2126.7,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 1933
+ },
+ {
+ "start": 2126.7,
+ "end": 2127.22,
+ "confidence": 0,
+ "word": "millions",
+ "punct": "millions",
+ "index": 1934
+ },
+ {
+ "start": 2127.22,
+ "end": 2127.34,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1935
+ },
+ {
+ "start": 2127.34,
+ "end": 2127.6,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 1936
+ },
+ {
+ "start": 2127.6,
+ "end": 2128.04,
+ "confidence": 0,
+ "word": "friends,",
+ "punct": "friends,",
+ "index": 1937
+ },
+ {
+ "start": 2128.04,
+ "end": 2129,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1938
+ },
+ {
+ "start": 2129,
+ "end": 2129.5,
+ "confidence": 0,
+ "word": "digital",
+ "punct": "digital",
+ "index": 1939
+ },
+ {
+ "start": 2129.5,
+ "end": 2130.08,
+ "confidence": 0,
+ "word": "director",
+ "punct": "director",
+ "index": 1940
+ },
+ {
+ "start": 2130.08,
+ "end": 2130.34,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1941
+ },
+ {
+ "start": 2130.34,
+ "end": 2130.62,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1942
+ },
+ {
+ "start": 2130.62,
+ "end": 2131.36,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign",
+ "index": 1943
+ },
+ {
+ "start": 2131.36,
+ "end": 2132.28,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1944
+ },
+ {
+ "start": 2132.28,
+ "end": 2132.92,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 1945
+ },
+ {
+ "start": 2132.92,
+ "end": 2133.44,
+ "confidence": 0,
+ "word": "12",
+ "punct": "12",
+ "index": 1946
+ },
+ {
+ "start": 2133.44,
+ "end": 2134.12,
+ "confidence": 0,
+ "word": "described",
+ "punct": "described",
+ "index": 1947
+ },
+ {
+ "start": 2134.12,
+ "end": 2134.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1948
+ },
+ {
+ "start": 2134.3,
+ "end": 2134.7,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 1949
+ },
+ {
+ "start": 2134.7,
+ "end": 2135.4,
+ "confidence": 0,
+ "word": "scraping",
+ "punct": "scraping",
+ "index": 1950
+ },
+ {
+ "start": 2135.4,
+ "end": 2135.86,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 1951
+ },
+ {
+ "start": 2135.86,
+ "end": 2136.6,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 1952
+ },
+ {
+ "start": 2136.6,
+ "end": 2137.18,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 1953
+ },
+ {
+ "start": 2137.18,
+ "end": 2137.48,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 1954
+ },
+ {
+ "start": 2137.48,
+ "end": 2137.94,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 1955
+ },
+ {
+ "start": 2137.94,
+ "end": 2138.92,
+ "confidence": 0,
+ "word": "quote",
+ "punct": "quote.",
+ "index": 1956
+ }
+ ],
+ "start": 2125.78
+ }
+ },
+ {
+ "key": "49an9",
+ "text": "Wind up being the most groundbreaking piece of technology developed for this campaign and the quote so the effectiveness of these social media tactics can be debated.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2138.92,
+ "end": 2139.76,
+ "confidence": 0,
+ "word": "wind",
+ "punct": "Wind",
+ "index": 1957
+ },
+ {
+ "start": 2139.76,
+ "end": 2140.04,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 1958
+ },
+ {
+ "start": 2140.04,
+ "end": 2140.68,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 1959
+ },
+ {
+ "start": 2140.68,
+ "end": 2140.84,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1960
+ },
+ {
+ "start": 2140.84,
+ "end": 2141.12,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 1961
+ },
+ {
+ "start": 2141.12,
+ "end": 2142.08,
+ "confidence": 0,
+ "word": "groundbreaking",
+ "punct": "groundbreaking",
+ "index": 1962
+ },
+ {
+ "start": 2142.08,
+ "end": 2142.46,
+ "confidence": 0,
+ "word": "piece",
+ "punct": "piece",
+ "index": 1963
+ },
+ {
+ "start": 2142.46,
+ "end": 2142.62,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1964
+ },
+ {
+ "start": 2142.62,
+ "end": 2143.42,
+ "confidence": 0,
+ "word": "technology",
+ "punct": "technology",
+ "index": 1965
+ },
+ {
+ "start": 2143.42,
+ "end": 2144.1,
+ "confidence": 0,
+ "word": "developed",
+ "punct": "developed",
+ "index": 1966
+ },
+ {
+ "start": 2144.1,
+ "end": 2144.66,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 1967
+ },
+ {
+ "start": 2144.66,
+ "end": 2144.9,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 1968
+ },
+ {
+ "start": 2144.9,
+ "end": 2145.6,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign",
+ "index": 1969
+ },
+ {
+ "start": 2145.6,
+ "end": 2145.9,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1970
+ },
+ {
+ "start": 2145.9,
+ "end": 2146.06,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1971
+ },
+ {
+ "start": 2146.06,
+ "end": 2147,
+ "confidence": 0,
+ "word": "quote",
+ "punct": "quote",
+ "index": 1972
+ },
+ {
+ "start": 2147,
+ "end": 2147.76,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 1973
+ },
+ {
+ "start": 2147.76,
+ "end": 2147.96,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1974
+ },
+ {
+ "start": 2147.96,
+ "end": 2148.82,
+ "confidence": 0,
+ "word": "effectiveness",
+ "punct": "effectiveness",
+ "index": 1975
+ },
+ {
+ "start": 2148.82,
+ "end": 2149,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 1976
+ },
+ {
+ "start": 2149,
+ "end": 2149.26,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 1977
+ },
+ {
+ "start": 2149.26,
+ "end": 2149.74,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 1978
+ },
+ {
+ "start": 2149.74,
+ "end": 2150.12,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 1979
+ },
+ {
+ "start": 2150.12,
+ "end": 2150.82,
+ "confidence": 0,
+ "word": "tactics",
+ "punct": "tactics",
+ "index": 1980
+ },
+ {
+ "start": 2150.82,
+ "end": 2151.34,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 1981
+ },
+ {
+ "start": 2151.34,
+ "end": 2151.5,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 1982
+ },
+ {
+ "start": 2151.5,
+ "end": 2152.06,
+ "confidence": 0,
+ "word": "debated",
+ "punct": "debated.",
+ "index": 1983
+ }
+ ],
+ "start": 2138.92
+ }
+ },
+ {
+ "key": "2d46n",
+ "text": "But they're used over the past years across the political spectrum and their increased significance cannot be ignored our policy towards data, privacy and security must keep pace with these changes data.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2152.06,
+ "end": 2153.1,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 1984
+ },
+ {
+ "start": 2153.1,
+ "end": 2153.4,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 1985
+ },
+ {
+ "start": 2153.4,
+ "end": 2153.72,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 1986
+ },
+ {
+ "start": 2153.72,
+ "end": 2154,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 1987
+ },
+ {
+ "start": 2154,
+ "end": 2154.14,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1988
+ },
+ {
+ "start": 2154.14,
+ "end": 2154.46,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past",
+ "index": 1989
+ },
+ {
+ "start": 2154.46,
+ "end": 2154.78,
+ "confidence": 0,
+ "word": "years",
+ "punct": "years",
+ "index": 1990
+ },
+ {
+ "start": 2154.78,
+ "end": 2155.18,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 1991
+ },
+ {
+ "start": 2155.18,
+ "end": 2155.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 1992
+ },
+ {
+ "start": 2155.36,
+ "end": 2155.82,
+ "confidence": 0,
+ "word": "political",
+ "punct": "political",
+ "index": 1993
+ },
+ {
+ "start": 2155.82,
+ "end": 2156.44,
+ "confidence": 0,
+ "word": "spectrum",
+ "punct": "spectrum",
+ "index": 1994
+ },
+ {
+ "start": 2156.44,
+ "end": 2157.1,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 1995
+ },
+ {
+ "start": 2157.1,
+ "end": 2157.34,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 1996
+ },
+ {
+ "start": 2157.34,
+ "end": 2157.88,
+ "confidence": 0,
+ "word": "increased",
+ "punct": "increased",
+ "index": 1997
+ },
+ {
+ "start": 2157.88,
+ "end": 2158.72,
+ "confidence": 0,
+ "word": "significance",
+ "punct": "significance",
+ "index": 1998
+ },
+ {
+ "start": 2158.72,
+ "end": 2159.84,
+ "confidence": 0,
+ "word": "cannot",
+ "punct": "cannot",
+ "index": 1999
+ },
+ {
+ "start": 2159.84,
+ "end": 2160.14,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 2000
+ },
+ {
+ "start": 2160.14,
+ "end": 2161.72,
+ "confidence": 0,
+ "word": "ignored",
+ "punct": "ignored",
+ "index": 2001
+ },
+ {
+ "start": 2161.72,
+ "end": 2162.94,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 2002
+ },
+ {
+ "start": 2162.94,
+ "end": 2163.72,
+ "confidence": 0,
+ "word": "policy",
+ "punct": "policy",
+ "index": 2003
+ },
+ {
+ "start": 2163.72,
+ "end": 2164.68,
+ "confidence": 0,
+ "word": "towards",
+ "punct": "towards",
+ "index": 2004
+ },
+ {
+ "start": 2164.68,
+ "end": 2165.12,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 2005
+ },
+ {
+ "start": 2165.12,
+ "end": 2165.62,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 2006
+ },
+ {
+ "start": 2165.62,
+ "end": 2166.28,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2007
+ },
+ {
+ "start": 2166.28,
+ "end": 2166.9,
+ "confidence": 0,
+ "word": "security",
+ "punct": "security",
+ "index": 2008
+ },
+ {
+ "start": 2166.9,
+ "end": 2167.62,
+ "confidence": 0,
+ "word": "must",
+ "punct": "must",
+ "index": 2009
+ },
+ {
+ "start": 2167.62,
+ "end": 2167.84,
+ "confidence": 0,
+ "word": "keep",
+ "punct": "keep",
+ "index": 2010
+ },
+ {
+ "start": 2167.84,
+ "end": 2168.26,
+ "confidence": 0,
+ "word": "pace",
+ "punct": "pace",
+ "index": 2011
+ },
+ {
+ "start": 2168.26,
+ "end": 2168.5,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 2012
+ },
+ {
+ "start": 2168.5,
+ "end": 2168.72,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 2013
+ },
+ {
+ "start": 2168.72,
+ "end": 2169.76,
+ "confidence": 0,
+ "word": "changes",
+ "punct": "changes",
+ "index": 2014
+ },
+ {
+ "start": 2169.76,
+ "end": 2170.84,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data.",
+ "index": 2015
+ }
+ ],
+ "start": 2152.06
+ }
+ },
+ {
+ "key": "2rc7q",
+ "text": "Privacy should be tethered to consumer needs and expectations now at a minimum.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2170.84,
+ "end": 2171.4,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "Privacy",
+ "index": 2016
+ },
+ {
+ "start": 2171.4,
+ "end": 2171.7,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 2017
+ },
+ {
+ "start": 2171.7,
+ "end": 2171.82,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 2018
+ },
+ {
+ "start": 2171.82,
+ "end": 2172.38,
+ "confidence": 0,
+ "word": "tethered",
+ "punct": "tethered",
+ "index": 2019
+ },
+ {
+ "start": 2172.38,
+ "end": 2173.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2020
+ },
+ {
+ "start": 2173.14,
+ "end": 2173.78,
+ "confidence": 0,
+ "word": "consumer",
+ "punct": "consumer",
+ "index": 2021
+ },
+ {
+ "start": 2173.78,
+ "end": 2174.14,
+ "confidence": 0,
+ "word": "needs",
+ "punct": "needs",
+ "index": 2022
+ },
+ {
+ "start": 2174.14,
+ "end": 2174.38,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2023
+ },
+ {
+ "start": 2174.38,
+ "end": 2175.36,
+ "confidence": 0,
+ "word": "expectations",
+ "punct": "expectations",
+ "index": 2024
+ },
+ {
+ "start": 2175.36,
+ "end": 2176.64,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 2025
+ },
+ {
+ "start": 2176.64,
+ "end": 2176.94,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 2026
+ },
+ {
+ "start": 2176.94,
+ "end": 2177,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2027
+ },
+ {
+ "start": 2177,
+ "end": 2177.48,
+ "confidence": 0,
+ "word": "minimum",
+ "punct": "minimum.",
+ "index": 2028
+ }
+ ],
+ "start": 2170.84
+ }
+ },
+ {
+ "key": "7nack",
+ "text": "Consumers must have the transparency necessary to make an informed decision about whether to share their data and how it can be used consumers ought to have clear information?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2177.48,
+ "end": 2178.58,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "Consumers",
+ "index": 2029
+ },
+ {
+ "start": 2178.58,
+ "end": 2178.88,
+ "confidence": 0,
+ "word": "must",
+ "punct": "must",
+ "index": 2030
+ },
+ {
+ "start": 2178.88,
+ "end": 2179.08,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2031
+ },
+ {
+ "start": 2179.08,
+ "end": 2179.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2032
+ },
+ {
+ "start": 2179.18,
+ "end": 2180,
+ "confidence": 0,
+ "word": "transparency",
+ "punct": "transparency",
+ "index": 2033
+ },
+ {
+ "start": 2180,
+ "end": 2180.88,
+ "confidence": 0,
+ "word": "necessary",
+ "punct": "necessary",
+ "index": 2034
+ },
+ {
+ "start": 2180.88,
+ "end": 2181.44,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2035
+ },
+ {
+ "start": 2181.44,
+ "end": 2181.64,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 2036
+ },
+ {
+ "start": 2181.64,
+ "end": 2181.78,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 2037
+ },
+ {
+ "start": 2181.78,
+ "end": 2182.3,
+ "confidence": 0,
+ "word": "informed",
+ "punct": "informed",
+ "index": 2038
+ },
+ {
+ "start": 2182.3,
+ "end": 2182.84,
+ "confidence": 0,
+ "word": "decision",
+ "punct": "decision",
+ "index": 2039
+ },
+ {
+ "start": 2182.84,
+ "end": 2183.16,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 2040
+ },
+ {
+ "start": 2183.16,
+ "end": 2183.48,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 2041
+ },
+ {
+ "start": 2183.48,
+ "end": 2183.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2042
+ },
+ {
+ "start": 2183.66,
+ "end": 2183.94,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 2043
+ },
+ {
+ "start": 2183.94,
+ "end": 2184.22,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 2044
+ },
+ {
+ "start": 2184.22,
+ "end": 2184.62,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 2045
+ },
+ {
+ "start": 2184.62,
+ "end": 2185.46,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2046
+ },
+ {
+ "start": 2185.46,
+ "end": 2185.72,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 2047
+ },
+ {
+ "start": 2185.72,
+ "end": 2185.82,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 2048
+ },
+ {
+ "start": 2185.82,
+ "end": 2186,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 2049
+ },
+ {
+ "start": 2186,
+ "end": 2186.14,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 2050
+ },
+ {
+ "start": 2186.14,
+ "end": 2186.86,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 2051
+ },
+ {
+ "start": 2186.86,
+ "end": 2187.88,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 2052
+ },
+ {
+ "start": 2187.88,
+ "end": 2188.12,
+ "confidence": 0,
+ "word": "ought",
+ "punct": "ought",
+ "index": 2053
+ },
+ {
+ "start": 2188.12,
+ "end": 2188.24,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2054
+ },
+ {
+ "start": 2188.24,
+ "end": 2188.44,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2055
+ },
+ {
+ "start": 2188.44,
+ "end": 2188.88,
+ "confidence": 0,
+ "word": "clear",
+ "punct": "clear",
+ "index": 2056
+ },
+ {
+ "start": 2188.88,
+ "end": 2189.76,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information?",
+ "index": 2057
+ }
+ ],
+ "start": 2177.48
+ }
+ },
+ {
+ "key": "90nv5",
+ "text": "Not opaque policies and complex click through consent pages.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2189.76,
+ "end": 2190.52,
+ "confidence": 0,
+ "word": "not",
+ "punct": "Not",
+ "index": 2058
+ },
+ {
+ "start": 2190.52,
+ "end": 2191,
+ "confidence": 0,
+ "word": "opaque",
+ "punct": "opaque",
+ "index": 2059
+ },
+ {
+ "start": 2191,
+ "end": 2191.64,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies",
+ "index": 2060
+ },
+ {
+ "start": 2191.64,
+ "end": 2191.88,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2061
+ },
+ {
+ "start": 2191.88,
+ "end": 2192.56,
+ "confidence": 0,
+ "word": "complex",
+ "punct": "complex",
+ "index": 2062
+ },
+ {
+ "start": 2192.56,
+ "end": 2193.4,
+ "confidence": 0,
+ "word": "click",
+ "punct": "click",
+ "index": 2063
+ },
+ {
+ "start": 2193.4,
+ "end": 2194.26,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 2064
+ },
+ {
+ "start": 2194.26,
+ "end": 2195.12,
+ "confidence": 0,
+ "word": "consent",
+ "punct": "consent",
+ "index": 2065
+ },
+ {
+ "start": 2195.12,
+ "end": 2196.04,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages.",
+ "index": 2066
+ }
+ ],
+ "start": 2189.76
+ }
+ },
+ {
+ "key": "ef3q8",
+ "text": "The tech industry has an obligation to respond to widespread and growing concerns over data, privacy and security and to restore the public trust the status quo no longer works.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2196.04,
+ "end": 2196.62,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 2067
+ },
+ {
+ "start": 2196.62,
+ "end": 2196.9,
+ "confidence": 0,
+ "word": "tech",
+ "punct": "tech",
+ "index": 2068
+ },
+ {
+ "start": 2196.9,
+ "end": 2197.48,
+ "confidence": 0,
+ "word": "industry",
+ "punct": "industry",
+ "index": 2069
+ },
+ {
+ "start": 2197.48,
+ "end": 2198.22,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 2070
+ },
+ {
+ "start": 2198.22,
+ "end": 2198.34,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 2071
+ },
+ {
+ "start": 2198.34,
+ "end": 2199.04,
+ "confidence": 0,
+ "word": "obligation",
+ "punct": "obligation",
+ "index": 2072
+ },
+ {
+ "start": 2199.04,
+ "end": 2199.2,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2073
+ },
+ {
+ "start": 2199.2,
+ "end": 2199.74,
+ "confidence": 0,
+ "word": "respond",
+ "punct": "respond",
+ "index": 2074
+ },
+ {
+ "start": 2199.74,
+ "end": 2199.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2075
+ },
+ {
+ "start": 2199.88,
+ "end": 2200.62,
+ "confidence": 0,
+ "word": "widespread",
+ "punct": "widespread",
+ "index": 2076
+ },
+ {
+ "start": 2200.62,
+ "end": 2201.48,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2077
+ },
+ {
+ "start": 2201.48,
+ "end": 2201.88,
+ "confidence": 0,
+ "word": "growing",
+ "punct": "growing",
+ "index": 2078
+ },
+ {
+ "start": 2201.88,
+ "end": 2202.46,
+ "confidence": 0,
+ "word": "concerns",
+ "punct": "concerns",
+ "index": 2079
+ },
+ {
+ "start": 2202.46,
+ "end": 2202.78,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 2080
+ },
+ {
+ "start": 2202.78,
+ "end": 2203.14,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 2081
+ },
+ {
+ "start": 2203.14,
+ "end": 2203.68,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 2082
+ },
+ {
+ "start": 2203.68,
+ "end": 2204.64,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2083
+ },
+ {
+ "start": 2204.64,
+ "end": 2205.3,
+ "confidence": 0,
+ "word": "security",
+ "punct": "security",
+ "index": 2084
+ },
+ {
+ "start": 2205.3,
+ "end": 2206,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2085
+ },
+ {
+ "start": 2206,
+ "end": 2206.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2086
+ },
+ {
+ "start": 2206.14,
+ "end": 2206.54,
+ "confidence": 0,
+ "word": "restore",
+ "punct": "restore",
+ "index": 2087
+ },
+ {
+ "start": 2206.54,
+ "end": 2206.74,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2088
+ },
+ {
+ "start": 2206.74,
+ "end": 2207.12,
+ "confidence": 0,
+ "word": "public",
+ "punct": "public",
+ "index": 2089
+ },
+ {
+ "start": 2207.12,
+ "end": 2207.54,
+ "confidence": 0,
+ "word": "trust",
+ "punct": "trust",
+ "index": 2090
+ },
+ {
+ "start": 2207.54,
+ "end": 2208.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2091
+ },
+ {
+ "start": 2208.32,
+ "end": 2208.92,
+ "confidence": 0,
+ "word": "status",
+ "punct": "status",
+ "index": 2092
+ },
+ {
+ "start": 2208.92,
+ "end": 2209.24,
+ "confidence": 0,
+ "word": "quo",
+ "punct": "quo",
+ "index": 2093
+ },
+ {
+ "start": 2209.24,
+ "end": 2210.2,
+ "confidence": 0,
+ "word": "no",
+ "punct": "no",
+ "index": 2094
+ },
+ {
+ "start": 2210.2,
+ "end": 2210.74,
+ "confidence": 0,
+ "word": "longer",
+ "punct": "longer",
+ "index": 2095
+ },
+ {
+ "start": 2210.74,
+ "end": 2211.76,
+ "confidence": 0,
+ "word": "works",
+ "punct": "works.",
+ "index": 2096
+ }
+ ],
+ "start": 2196.04
+ }
+ },
+ {
+ "key": "4m302",
+ "text": "Moreover.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2211.76,
+ "end": 2212.68,
+ "confidence": 0,
+ "word": "moreover",
+ "punct": "Moreover.",
+ "index": 2097
+ }
+ ],
+ "start": 2211.76
+ }
+ },
+ {
+ "key": "9jha8",
+ "text": "Congress must determine if and how we need to strengthen privacy standards to ensure transparency and understanding for the billions of consumers who utilize these products.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2212.68,
+ "end": 2213.2,
+ "confidence": 0,
+ "word": "congress",
+ "punct": "Congress",
+ "index": 2098
+ },
+ {
+ "start": 2213.2,
+ "end": 2214.02,
+ "confidence": 0,
+ "word": "must",
+ "punct": "must",
+ "index": 2099
+ },
+ {
+ "start": 2214.02,
+ "end": 2214.56,
+ "confidence": 0,
+ "word": "determine",
+ "punct": "determine",
+ "index": 2100
+ },
+ {
+ "start": 2214.56,
+ "end": 2214.84,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 2101
+ },
+ {
+ "start": 2214.84,
+ "end": 2215.44,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2102
+ },
+ {
+ "start": 2215.44,
+ "end": 2215.68,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 2103
+ },
+ {
+ "start": 2215.68,
+ "end": 2215.86,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2104
+ },
+ {
+ "start": 2215.86,
+ "end": 2216.14,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 2105
+ },
+ {
+ "start": 2216.14,
+ "end": 2216.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2106
+ },
+ {
+ "start": 2216.28,
+ "end": 2216.84,
+ "confidence": 0,
+ "word": "strengthen",
+ "punct": "strengthen",
+ "index": 2107
+ },
+ {
+ "start": 2216.84,
+ "end": 2217.76,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 2108
+ },
+ {
+ "start": 2217.76,
+ "end": 2218.3,
+ "confidence": 0,
+ "word": "standards",
+ "punct": "standards",
+ "index": 2109
+ },
+ {
+ "start": 2218.3,
+ "end": 2218.5,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2110
+ },
+ {
+ "start": 2218.5,
+ "end": 2219.18,
+ "confidence": 0,
+ "word": "ensure",
+ "punct": "ensure",
+ "index": 2111
+ },
+ {
+ "start": 2219.18,
+ "end": 2220.16,
+ "confidence": 0,
+ "word": "transparency",
+ "punct": "transparency",
+ "index": 2112
+ },
+ {
+ "start": 2220.16,
+ "end": 2220.5,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2113
+ },
+ {
+ "start": 2220.5,
+ "end": 2221.8,
+ "confidence": 0,
+ "word": "understanding",
+ "punct": "understanding",
+ "index": 2114
+ },
+ {
+ "start": 2221.8,
+ "end": 2222.08,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2115
+ },
+ {
+ "start": 2222.08,
+ "end": 2222.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2116
+ },
+ {
+ "start": 2222.24,
+ "end": 2222.74,
+ "confidence": 0,
+ "word": "billions",
+ "punct": "billions",
+ "index": 2117
+ },
+ {
+ "start": 2222.74,
+ "end": 2222.9,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2118
+ },
+ {
+ "start": 2222.9,
+ "end": 2223.58,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 2119
+ },
+ {
+ "start": 2223.58,
+ "end": 2223.72,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 2120
+ },
+ {
+ "start": 2223.72,
+ "end": 2224.64,
+ "confidence": 0,
+ "word": "utilize",
+ "punct": "utilize",
+ "index": 2121
+ },
+ {
+ "start": 2224.64,
+ "end": 2225.24,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 2122
+ },
+ {
+ "start": 2225.24,
+ "end": 2225.74,
+ "confidence": 0,
+ "word": "products",
+ "punct": "products.",
+ "index": 2123
+ }
+ ],
+ "start": 2212.68
+ }
+ },
+ {
+ "key": "f8lgu",
+ "text": "Senator Nelson, thank you, Mr Chairman.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2225.74,
+ "end": 2226.48,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 2124
+ },
+ {
+ "start": 2226.48,
+ "end": 2227.32,
+ "confidence": 0,
+ "word": "nelson,",
+ "punct": "Nelson,",
+ "index": 2125
+ },
+ {
+ "start": 2227.32,
+ "end": 2228.28,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 2126
+ },
+ {
+ "start": 2228.28,
+ "end": 2228.42,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 2127
+ },
+ {
+ "start": 2228.42,
+ "end": 2228.68,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 2128
+ },
+ {
+ "start": 2228.68,
+ "end": 2229.08,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman.",
+ "index": 2129
+ }
+ ],
+ "start": 2225.74
+ }
+ },
+ {
+ "key": "2071u",
+ "text": "Mr Zuckerberg, good afternoon.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2229.08,
+ "end": 2229.7,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 2130
+ },
+ {
+ "start": 2229.7,
+ "end": 2230.16,
+ "confidence": 0,
+ "word": "zuckerberg,",
+ "punct": "Zuckerberg,",
+ "index": 2131
+ },
+ {
+ "start": 2230.16,
+ "end": 2230.48,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 2132
+ },
+ {
+ "start": 2230.48,
+ "end": 2231.84,
+ "confidence": 0,
+ "word": "afternoon",
+ "punct": "afternoon.",
+ "index": 2133
+ }
+ ],
+ "start": 2229.08
+ }
+ },
+ {
+ "key": "8kn8g",
+ "text": "Let me just cut to the chase.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2231.84,
+ "end": 2232.7,
+ "confidence": 0,
+ "word": "let",
+ "punct": "Let",
+ "index": 2134
+ },
+ {
+ "start": 2232.7,
+ "end": 2232.88,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 2135
+ },
+ {
+ "start": 2232.88,
+ "end": 2233.12,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 2136
+ },
+ {
+ "start": 2233.12,
+ "end": 2233.32,
+ "confidence": 0,
+ "word": "cut",
+ "punct": "cut",
+ "index": 2137
+ },
+ {
+ "start": 2233.32,
+ "end": 2233.5,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2138
+ },
+ {
+ "start": 2233.5,
+ "end": 2233.68,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2139
+ },
+ {
+ "start": 2233.68,
+ "end": 2234.04,
+ "confidence": 0,
+ "word": "chase",
+ "punct": "chase.",
+ "index": 2140
+ }
+ ],
+ "start": 2231.84
+ }
+ },
+ {
+ "key": "9fhuk",
+ "text": "If you and other social media companies do not get your act in order.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2234.04,
+ "end": 2234.9,
+ "confidence": 0,
+ "word": "if",
+ "punct": "If",
+ "index": 2141
+ },
+ {
+ "start": 2234.9,
+ "end": 2235.08,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 2142
+ },
+ {
+ "start": 2235.08,
+ "end": 2235.36,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2143
+ },
+ {
+ "start": 2235.36,
+ "end": 2235.62,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 2144
+ },
+ {
+ "start": 2235.62,
+ "end": 2236.12,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 2145
+ },
+ {
+ "start": 2236.12,
+ "end": 2236.5,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 2146
+ },
+ {
+ "start": 2236.5,
+ "end": 2237.2,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies",
+ "index": 2147
+ },
+ {
+ "start": 2237.2,
+ "end": 2237.9,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 2148
+ },
+ {
+ "start": 2237.9,
+ "end": 2238.22,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 2149
+ },
+ {
+ "start": 2238.22,
+ "end": 2238.6,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 2150
+ },
+ {
+ "start": 2238.6,
+ "end": 2239.26,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 2151
+ },
+ {
+ "start": 2239.26,
+ "end": 2240.08,
+ "confidence": 0,
+ "word": "act",
+ "punct": "act",
+ "index": 2152
+ },
+ {
+ "start": 2240.08,
+ "end": 2240.28,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2153
+ },
+ {
+ "start": 2240.28,
+ "end": 2240.92,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order.",
+ "index": 2154
+ }
+ ],
+ "start": 2234.04
+ }
+ },
+ {
+ "key": "3f3ae",
+ "text": "None of us are going to have any privacy anymore that's what we're facing we're talking about personally identifiable information that if not kept by the social media companies from theft, a value that we have in America being our personal privacy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2240.92,
+ "end": 2241.88,
+ "confidence": 0,
+ "word": "none",
+ "punct": "None",
+ "index": 2155
+ },
+ {
+ "start": 2241.88,
+ "end": 2241.98,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2156
+ },
+ {
+ "start": 2241.98,
+ "end": 2242.3,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 2157
+ },
+ {
+ "start": 2242.3,
+ "end": 2242.5,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 2158
+ },
+ {
+ "start": 2242.5,
+ "end": 2242.7,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 2159
+ },
+ {
+ "start": 2242.7,
+ "end": 2242.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2160
+ },
+ {
+ "start": 2242.8,
+ "end": 2243,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2161
+ },
+ {
+ "start": 2243,
+ "end": 2243.26,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 2162
+ },
+ {
+ "start": 2243.26,
+ "end": 2243.8,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 2163
+ },
+ {
+ "start": 2243.8,
+ "end": 2245.08,
+ "confidence": 0,
+ "word": "anymore",
+ "punct": "anymore",
+ "index": 2164
+ },
+ {
+ "start": 2245.08,
+ "end": 2246.18,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 2165
+ },
+ {
+ "start": 2246.18,
+ "end": 2246.44,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 2166
+ },
+ {
+ "start": 2246.44,
+ "end": 2246.8,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 2167
+ },
+ {
+ "start": 2246.8,
+ "end": 2247.34,
+ "confidence": 0,
+ "word": "facing",
+ "punct": "facing",
+ "index": 2168
+ },
+ {
+ "start": 2247.34,
+ "end": 2247.68,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 2169
+ },
+ {
+ "start": 2247.68,
+ "end": 2248.02,
+ "confidence": 0,
+ "word": "talking",
+ "punct": "talking",
+ "index": 2170
+ },
+ {
+ "start": 2248.02,
+ "end": 2248.36,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 2171
+ },
+ {
+ "start": 2248.36,
+ "end": 2249.44,
+ "confidence": 0,
+ "word": "personally",
+ "punct": "personally",
+ "index": 2172
+ },
+ {
+ "start": 2249.44,
+ "end": 2250.66,
+ "confidence": 0,
+ "word": "identifiable",
+ "punct": "identifiable",
+ "index": 2173
+ },
+ {
+ "start": 2250.66,
+ "end": 2252.12,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 2174
+ },
+ {
+ "start": 2252.12,
+ "end": 2253.14,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2175
+ },
+ {
+ "start": 2253.14,
+ "end": 2253.6,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 2176
+ },
+ {
+ "start": 2253.6,
+ "end": 2254.02,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 2177
+ },
+ {
+ "start": 2254.02,
+ "end": 2254.38,
+ "confidence": 0,
+ "word": "kept",
+ "punct": "kept",
+ "index": 2178
+ },
+ {
+ "start": 2254.38,
+ "end": 2254.6,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 2179
+ },
+ {
+ "start": 2254.6,
+ "end": 2254.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2180
+ },
+ {
+ "start": 2254.88,
+ "end": 2255.44,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 2181
+ },
+ {
+ "start": 2255.44,
+ "end": 2256.26,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 2182
+ },
+ {
+ "start": 2256.26,
+ "end": 2256.8,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies",
+ "index": 2183
+ },
+ {
+ "start": 2256.8,
+ "end": 2257.1,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 2184
+ },
+ {
+ "start": 2257.1,
+ "end": 2259.38,
+ "confidence": 0,
+ "word": "theft,",
+ "punct": "theft,",
+ "index": 2185
+ },
+ {
+ "start": 2259.38,
+ "end": 2260.44,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2186
+ },
+ {
+ "start": 2260.44,
+ "end": 2261.04,
+ "confidence": 0,
+ "word": "value",
+ "punct": "value",
+ "index": 2187
+ },
+ {
+ "start": 2261.04,
+ "end": 2261.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2188
+ },
+ {
+ "start": 2261.28,
+ "end": 2261.54,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2189
+ },
+ {
+ "start": 2261.54,
+ "end": 2261.86,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2190
+ },
+ {
+ "start": 2261.86,
+ "end": 2262.02,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2191
+ },
+ {
+ "start": 2262.02,
+ "end": 2262.74,
+ "confidence": 0,
+ "word": "america",
+ "punct": "America",
+ "index": 2192
+ },
+ {
+ "start": 2262.74,
+ "end": 2263.4,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 2193
+ },
+ {
+ "start": 2263.4,
+ "end": 2264,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 2194
+ },
+ {
+ "start": 2264,
+ "end": 2264.5,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 2195
+ },
+ {
+ "start": 2264.5,
+ "end": 2265.8,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy.",
+ "index": 2196
+ }
+ ],
+ "start": 2240.92
+ }
+ },
+ {
+ "key": "e6dqv",
+ "text": "We won't have it anymore it's the advent of technology and of course, all of us are part of it from the moment that we wake up in the morning until we go to bed we're on those handheld tablets and online, companies like Facebook are tracking our activities and collecting information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2265.8,
+ "end": 2266.5,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 2197
+ },
+ {
+ "start": 2266.5,
+ "end": 2266.88,
+ "confidence": 0,
+ "word": "won't",
+ "punct": "won't",
+ "index": 2198
+ },
+ {
+ "start": 2266.88,
+ "end": 2267.12,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2199
+ },
+ {
+ "start": 2267.12,
+ "end": 2267.26,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 2200
+ },
+ {
+ "start": 2267.26,
+ "end": 2268.48,
+ "confidence": 0,
+ "word": "anymore",
+ "punct": "anymore",
+ "index": 2201
+ },
+ {
+ "start": 2268.48,
+ "end": 2269.5,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 2202
+ },
+ {
+ "start": 2269.5,
+ "end": 2269.72,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2203
+ },
+ {
+ "start": 2269.72,
+ "end": 2270.24,
+ "confidence": 0,
+ "word": "advent",
+ "punct": "advent",
+ "index": 2204
+ },
+ {
+ "start": 2270.24,
+ "end": 2270.34,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2205
+ },
+ {
+ "start": 2270.34,
+ "end": 2272.02,
+ "confidence": 0,
+ "word": "technology",
+ "punct": "technology",
+ "index": 2206
+ },
+ {
+ "start": 2272.02,
+ "end": 2273.04,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2207
+ },
+ {
+ "start": 2273.04,
+ "end": 2273.16,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2208
+ },
+ {
+ "start": 2273.16,
+ "end": 2273.48,
+ "confidence": 0,
+ "word": "course,",
+ "punct": "course,",
+ "index": 2209
+ },
+ {
+ "start": 2273.48,
+ "end": 2273.8,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 2210
+ },
+ {
+ "start": 2273.8,
+ "end": 2273.94,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2211
+ },
+ {
+ "start": 2273.94,
+ "end": 2274.2,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 2212
+ },
+ {
+ "start": 2274.2,
+ "end": 2274.56,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 2213
+ },
+ {
+ "start": 2274.56,
+ "end": 2274.86,
+ "confidence": 0,
+ "word": "part",
+ "punct": "part",
+ "index": 2214
+ },
+ {
+ "start": 2274.86,
+ "end": 2275,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2215
+ },
+ {
+ "start": 2275,
+ "end": 2275.14,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 2216
+ },
+ {
+ "start": 2275.14,
+ "end": 2276.16,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 2217
+ },
+ {
+ "start": 2276.16,
+ "end": 2276.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2218
+ },
+ {
+ "start": 2276.32,
+ "end": 2276.72,
+ "confidence": 0,
+ "word": "moment",
+ "punct": "moment",
+ "index": 2219
+ },
+ {
+ "start": 2276.72,
+ "end": 2277,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2220
+ },
+ {
+ "start": 2277,
+ "end": 2277.18,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2221
+ },
+ {
+ "start": 2277.18,
+ "end": 2277.86,
+ "confidence": 0,
+ "word": "wake",
+ "punct": "wake",
+ "index": 2222
+ },
+ {
+ "start": 2277.86,
+ "end": 2278,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 2223
+ },
+ {
+ "start": 2278,
+ "end": 2278.14,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2224
+ },
+ {
+ "start": 2278.14,
+ "end": 2278.28,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2225
+ },
+ {
+ "start": 2278.28,
+ "end": 2278.62,
+ "confidence": 0,
+ "word": "morning",
+ "punct": "morning",
+ "index": 2226
+ },
+ {
+ "start": 2278.62,
+ "end": 2279.08,
+ "confidence": 0,
+ "word": "until",
+ "punct": "until",
+ "index": 2227
+ },
+ {
+ "start": 2279.08,
+ "end": 2279.24,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2228
+ },
+ {
+ "start": 2279.24,
+ "end": 2279.4,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 2229
+ },
+ {
+ "start": 2279.4,
+ "end": 2279.56,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2230
+ },
+ {
+ "start": 2279.56,
+ "end": 2279.82,
+ "confidence": 0,
+ "word": "bed",
+ "punct": "bed",
+ "index": 2231
+ },
+ {
+ "start": 2279.82,
+ "end": 2280.14,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 2232
+ },
+ {
+ "start": 2280.14,
+ "end": 2280.48,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 2233
+ },
+ {
+ "start": 2280.48,
+ "end": 2280.9,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 2234
+ },
+ {
+ "start": 2280.9,
+ "end": 2281.82,
+ "confidence": 0,
+ "word": "handheld",
+ "punct": "handheld",
+ "index": 2235
+ },
+ {
+ "start": 2281.82,
+ "end": 2283.26,
+ "confidence": 0,
+ "word": "tablets",
+ "punct": "tablets",
+ "index": 2236
+ },
+ {
+ "start": 2283.26,
+ "end": 2284.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2237
+ },
+ {
+ "start": 2284.26,
+ "end": 2285.04,
+ "confidence": 0,
+ "word": "online,",
+ "punct": "online,",
+ "index": 2238
+ },
+ {
+ "start": 2285.04,
+ "end": 2285.62,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies",
+ "index": 2239
+ },
+ {
+ "start": 2285.62,
+ "end": 2286.02,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 2240
+ },
+ {
+ "start": 2286.02,
+ "end": 2286.78,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2241
+ },
+ {
+ "start": 2286.78,
+ "end": 2287.04,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 2242
+ },
+ {
+ "start": 2287.04,
+ "end": 2287.7,
+ "confidence": 0,
+ "word": "tracking",
+ "punct": "tracking",
+ "index": 2243
+ },
+ {
+ "start": 2287.7,
+ "end": 2288.98,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 2244
+ },
+ {
+ "start": 2288.98,
+ "end": 2290.56,
+ "confidence": 0,
+ "word": "activities",
+ "punct": "activities",
+ "index": 2245
+ },
+ {
+ "start": 2290.56,
+ "end": 2291.38,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2246
+ },
+ {
+ "start": 2291.38,
+ "end": 2291.9,
+ "confidence": 0,
+ "word": "collecting",
+ "punct": "collecting",
+ "index": 2247
+ },
+ {
+ "start": 2291.9,
+ "end": 2294.44,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 2248
+ }
+ ],
+ "start": 2265.8
+ }
+ },
+ {
+ "key": "28acd",
+ "text": "Facebook has a responsibility to protect this personal information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2294.44,
+ "end": 2295.42,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2249
+ },
+ {
+ "start": 2295.42,
+ "end": 2296.32,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 2250
+ },
+ {
+ "start": 2296.32,
+ "end": 2297.34,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2251
+ },
+ {
+ "start": 2297.34,
+ "end": 2298.32,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 2252
+ },
+ {
+ "start": 2298.32,
+ "end": 2298.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2253
+ },
+ {
+ "start": 2298.58,
+ "end": 2299.26,
+ "confidence": 0,
+ "word": "protect",
+ "punct": "protect",
+ "index": 2254
+ },
+ {
+ "start": 2299.26,
+ "end": 2300.2,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 2255
+ },
+ {
+ "start": 2300.2,
+ "end": 2300.84,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 2256
+ },
+ {
+ "start": 2300.84,
+ "end": 2302.82,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 2257
+ }
+ ],
+ "start": 2294.44
+ }
+ },
+ {
+ "key": "16o41",
+ "text": "We had a good discussion yesterday we went over all of this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2302.82,
+ "end": 2303.86,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 2258
+ },
+ {
+ "start": 2303.86,
+ "end": 2304.1,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 2259
+ },
+ {
+ "start": 2304.1,
+ "end": 2304.14,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2260
+ },
+ {
+ "start": 2304.14,
+ "end": 2304.38,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 2261
+ },
+ {
+ "start": 2304.38,
+ "end": 2304.98,
+ "confidence": 0,
+ "word": "discussion",
+ "punct": "discussion",
+ "index": 2262
+ },
+ {
+ "start": 2304.98,
+ "end": 2306.12,
+ "confidence": 0,
+ "word": "yesterday",
+ "punct": "yesterday",
+ "index": 2263
+ },
+ {
+ "start": 2306.12,
+ "end": 2307.08,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2264
+ },
+ {
+ "start": 2307.08,
+ "end": 2307.5,
+ "confidence": 0,
+ "word": "went",
+ "punct": "went",
+ "index": 2265
+ },
+ {
+ "start": 2307.5,
+ "end": 2307.9,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 2266
+ },
+ {
+ "start": 2307.9,
+ "end": 2308.2,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 2267
+ },
+ {
+ "start": 2308.2,
+ "end": 2308.3,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2268
+ },
+ {
+ "start": 2308.3,
+ "end": 2309.42,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 2269
+ }
+ ],
+ "start": 2302.82
+ }
+ },
+ {
+ "key": "5kovs",
+ "text": "You told me that the company had failed to do so it's not the first time that Facebook has mishandled its users information, the FTC found that Facebook's privacy policies had deceived users in the past.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2309.42,
+ "end": 2310.32,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 2270
+ },
+ {
+ "start": 2310.32,
+ "end": 2310.72,
+ "confidence": 0,
+ "word": "told",
+ "punct": "told",
+ "index": 2271
+ },
+ {
+ "start": 2310.72,
+ "end": 2310.92,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 2272
+ },
+ {
+ "start": 2310.92,
+ "end": 2311.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2273
+ },
+ {
+ "start": 2311.2,
+ "end": 2311.34,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2274
+ },
+ {
+ "start": 2311.34,
+ "end": 2311.78,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 2275
+ },
+ {
+ "start": 2311.78,
+ "end": 2312.14,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 2276
+ },
+ {
+ "start": 2312.14,
+ "end": 2312.66,
+ "confidence": 0,
+ "word": "failed",
+ "punct": "failed",
+ "index": 2277
+ },
+ {
+ "start": 2312.66,
+ "end": 2312.82,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2278
+ },
+ {
+ "start": 2312.82,
+ "end": 2312.98,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 2279
+ },
+ {
+ "start": 2312.98,
+ "end": 2314.42,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 2280
+ },
+ {
+ "start": 2314.42,
+ "end": 2315.42,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 2281
+ },
+ {
+ "start": 2315.42,
+ "end": 2315.56,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 2282
+ },
+ {
+ "start": 2315.56,
+ "end": 2315.76,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2283
+ },
+ {
+ "start": 2315.76,
+ "end": 2316.04,
+ "confidence": 0,
+ "word": "first",
+ "punct": "first",
+ "index": 2284
+ },
+ {
+ "start": 2316.04,
+ "end": 2316.46,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 2285
+ },
+ {
+ "start": 2316.46,
+ "end": 2316.68,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2286
+ },
+ {
+ "start": 2316.68,
+ "end": 2317.32,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2287
+ },
+ {
+ "start": 2317.32,
+ "end": 2317.62,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 2288
+ },
+ {
+ "start": 2317.62,
+ "end": 2318.34,
+ "confidence": 0,
+ "word": "mishandled",
+ "punct": "mishandled",
+ "index": 2289
+ },
+ {
+ "start": 2318.34,
+ "end": 2318.7,
+ "confidence": 0,
+ "word": "its",
+ "punct": "its",
+ "index": 2290
+ },
+ {
+ "start": 2318.7,
+ "end": 2319.18,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 2291
+ },
+ {
+ "start": 2319.18,
+ "end": 2319.94,
+ "confidence": 0,
+ "word": "information,",
+ "punct": "information,",
+ "index": 2292
+ },
+ {
+ "start": 2319.94,
+ "end": 2320.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2293
+ },
+ {
+ "start": 2320.94,
+ "end": 2321.88,
+ "confidence": 0,
+ "word": "ftc",
+ "punct": "FTC",
+ "index": 2294
+ },
+ {
+ "start": 2321.88,
+ "end": 2322.42,
+ "confidence": 0,
+ "word": "found",
+ "punct": "found",
+ "index": 2295
+ },
+ {
+ "start": 2322.42,
+ "end": 2322.68,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2296
+ },
+ {
+ "start": 2322.68,
+ "end": 2323.48,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 2297
+ },
+ {
+ "start": 2323.48,
+ "end": 2324.4,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 2298
+ },
+ {
+ "start": 2324.4,
+ "end": 2325.14,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies",
+ "index": 2299
+ },
+ {
+ "start": 2325.14,
+ "end": 2325.84,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 2300
+ },
+ {
+ "start": 2325.84,
+ "end": 2326.52,
+ "confidence": 0,
+ "word": "deceived",
+ "punct": "deceived",
+ "index": 2301
+ },
+ {
+ "start": 2326.52,
+ "end": 2327.12,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 2302
+ },
+ {
+ "start": 2327.12,
+ "end": 2327.36,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2303
+ },
+ {
+ "start": 2327.36,
+ "end": 2327.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2304
+ },
+ {
+ "start": 2327.5,
+ "end": 2328.7,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past.",
+ "index": 2305
+ }
+ ],
+ "start": 2309.42
+ }
+ },
+ {
+ "key": "4vkm4",
+ "text": "And in the present case, we recognize that Cambridge Analytica and an app developer lied to consumers and lied to you lied to Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2328.7,
+ "end": 2329.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 2306
+ },
+ {
+ "start": 2329.62,
+ "end": 2329.8,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2307
+ },
+ {
+ "start": 2329.8,
+ "end": 2329.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2308
+ },
+ {
+ "start": 2329.94,
+ "end": 2330.38,
+ "confidence": 0,
+ "word": "present",
+ "punct": "present",
+ "index": 2309
+ },
+ {
+ "start": 2330.38,
+ "end": 2331.32,
+ "confidence": 0,
+ "word": "case,",
+ "punct": "case,",
+ "index": 2310
+ },
+ {
+ "start": 2331.32,
+ "end": 2332.38,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2311
+ },
+ {
+ "start": 2332.38,
+ "end": 2333.14,
+ "confidence": 0,
+ "word": "recognize",
+ "punct": "recognize",
+ "index": 2312
+ },
+ {
+ "start": 2333.14,
+ "end": 2333.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2313
+ },
+ {
+ "start": 2333.4,
+ "end": 2333.92,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 2314
+ },
+ {
+ "start": 2333.92,
+ "end": 2334.62,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 2315
+ },
+ {
+ "start": 2334.62,
+ "end": 2334.98,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2316
+ },
+ {
+ "start": 2334.98,
+ "end": 2335.14,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 2317
+ },
+ {
+ "start": 2335.14,
+ "end": 2335.54,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 2318
+ },
+ {
+ "start": 2335.54,
+ "end": 2336.18,
+ "confidence": 0,
+ "word": "developer",
+ "punct": "developer",
+ "index": 2319
+ },
+ {
+ "start": 2336.18,
+ "end": 2336.8,
+ "confidence": 0,
+ "word": "lied",
+ "punct": "lied",
+ "index": 2320
+ },
+ {
+ "start": 2336.8,
+ "end": 2337.06,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2321
+ },
+ {
+ "start": 2337.06,
+ "end": 2337.78,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 2322
+ },
+ {
+ "start": 2337.78,
+ "end": 2338.02,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2323
+ },
+ {
+ "start": 2338.02,
+ "end": 2338.6,
+ "confidence": 0,
+ "word": "lied",
+ "punct": "lied",
+ "index": 2324
+ },
+ {
+ "start": 2338.6,
+ "end": 2338.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2325
+ },
+ {
+ "start": 2338.86,
+ "end": 2339.32,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 2326
+ },
+ {
+ "start": 2339.32,
+ "end": 2340.22,
+ "confidence": 0,
+ "word": "lied",
+ "punct": "lied",
+ "index": 2327
+ },
+ {
+ "start": 2340.22,
+ "end": 2340.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2328
+ },
+ {
+ "start": 2340.38,
+ "end": 2341.8,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 2329
+ }
+ ],
+ "start": 2328.7
+ }
+ },
+ {
+ "key": "b5b8r",
+ "text": "But did Facebook watch over the operations?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2341.8,
+ "end": 2342.78,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 2330
+ },
+ {
+ "start": 2342.78,
+ "end": 2343.72,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 2331
+ },
+ {
+ "start": 2343.72,
+ "end": 2344.34,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2332
+ },
+ {
+ "start": 2344.34,
+ "end": 2344.82,
+ "confidence": 0,
+ "word": "watch",
+ "punct": "watch",
+ "index": 2333
+ },
+ {
+ "start": 2344.82,
+ "end": 2345.18,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 2334
+ },
+ {
+ "start": 2345.18,
+ "end": 2345.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2335
+ },
+ {
+ "start": 2345.42,
+ "end": 2347.02,
+ "confidence": 0,
+ "word": "operations",
+ "punct": "operations?",
+ "index": 2336
+ }
+ ],
+ "start": 2341.8
+ }
+ },
+ {
+ "key": "e1ei2",
+ "text": "We want to know that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2347.02,
+ "end": 2347.84,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 2337
+ },
+ {
+ "start": 2347.84,
+ "end": 2348.14,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 2338
+ },
+ {
+ "start": 2348.14,
+ "end": 2348.26,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2339
+ },
+ {
+ "start": 2348.26,
+ "end": 2348.4,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 2340
+ },
+ {
+ "start": 2348.4,
+ "end": 2349.24,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 2341
+ }
+ ],
+ "start": 2347.02
+ }
+ },
+ {
+ "key": "clvd3",
+ "text": "And why didn't Facebook notify 87,000,000 users that their personally identifiable information had been taken and it was being also used.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2349.24,
+ "end": 2350.2,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 2342
+ },
+ {
+ "start": 2350.2,
+ "end": 2350.38,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 2343
+ },
+ {
+ "start": 2350.38,
+ "end": 2350.82,
+ "confidence": 0,
+ "word": "didn't",
+ "punct": "didn't",
+ "index": 2344
+ },
+ {
+ "start": 2350.82,
+ "end": 2351.46,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2345
+ },
+ {
+ "start": 2351.46,
+ "end": 2352.04,
+ "confidence": 0,
+ "word": "notify",
+ "punct": "notify",
+ "index": 2346
+ },
+ {
+ "start": 2352.04,
+ "end": 2353.54,
+ "confidence": 0,
+ "word": "87,000,000",
+ "punct": "87,000,000",
+ "index": 2347
+ },
+ {
+ "start": 2353.54,
+ "end": 2354.06,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 2348
+ },
+ {
+ "start": 2354.06,
+ "end": 2354.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2349
+ },
+ {
+ "start": 2354.32,
+ "end": 2354.64,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 2350
+ },
+ {
+ "start": 2354.64,
+ "end": 2355.3,
+ "confidence": 0,
+ "word": "personally",
+ "punct": "personally",
+ "index": 2351
+ },
+ {
+ "start": 2355.3,
+ "end": 2356.22,
+ "confidence": 0,
+ "word": "identifiable",
+ "punct": "identifiable",
+ "index": 2352
+ },
+ {
+ "start": 2356.22,
+ "end": 2356.96,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 2353
+ },
+ {
+ "start": 2356.96,
+ "end": 2357.28,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 2354
+ },
+ {
+ "start": 2357.28,
+ "end": 2357.48,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 2355
+ },
+ {
+ "start": 2357.48,
+ "end": 2359.96,
+ "confidence": 0,
+ "word": "taken",
+ "punct": "taken",
+ "index": 2356
+ },
+ {
+ "start": 2359.96,
+ "end": 2360.92,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2357
+ },
+ {
+ "start": 2360.92,
+ "end": 2361.1,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 2358
+ },
+ {
+ "start": 2361.1,
+ "end": 2361.32,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 2359
+ },
+ {
+ "start": 2361.32,
+ "end": 2361.8,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 2360
+ },
+ {
+ "start": 2361.8,
+ "end": 2362.92,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 2361
+ },
+ {
+ "start": 2362.92,
+ "end": 2363.42,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used.",
+ "index": 2362
+ }
+ ],
+ "start": 2349.24
+ }
+ },
+ {
+ "key": "adrtj",
+ "text": "Why were they not informed for unauthorized political purposes?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2363.42,
+ "end": 2363.76,
+ "confidence": 0,
+ "word": "why",
+ "punct": "Why",
+ "index": 2363
+ },
+ {
+ "start": 2363.76,
+ "end": 2363.98,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 2364
+ },
+ {
+ "start": 2363.98,
+ "end": 2364.18,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 2365
+ },
+ {
+ "start": 2364.18,
+ "end": 2364.84,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 2366
+ },
+ {
+ "start": 2364.84,
+ "end": 2366.44,
+ "confidence": 0,
+ "word": "informed",
+ "punct": "informed",
+ "index": 2367
+ },
+ {
+ "start": 2366.44,
+ "end": 2367.56,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2368
+ },
+ {
+ "start": 2367.56,
+ "end": 2368.54,
+ "confidence": 0,
+ "word": "unauthorized",
+ "punct": "unauthorized",
+ "index": 2369
+ },
+ {
+ "start": 2368.54,
+ "end": 2369.58,
+ "confidence": 0,
+ "word": "political",
+ "punct": "political",
+ "index": 2370
+ },
+ {
+ "start": 2369.58,
+ "end": 2371.1,
+ "confidence": 0,
+ "word": "purposes",
+ "punct": "purposes?",
+ "index": 2371
+ }
+ ],
+ "start": 2363.42
+ }
+ },
+ {
+ "key": "5li2a",
+ "text": "So only now and I appreciate our conversation only now Facebook has pledged to inform those consumers whose accounts were compromised.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2371.1,
+ "end": 2372.12,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 2372
+ },
+ {
+ "start": 2372.12,
+ "end": 2373,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 2373
+ },
+ {
+ "start": 2373,
+ "end": 2373.5,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 2374
+ },
+ {
+ "start": 2373.5,
+ "end": 2374.48,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2375
+ },
+ {
+ "start": 2374.48,
+ "end": 2374.66,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2376
+ },
+ {
+ "start": 2374.66,
+ "end": 2375.26,
+ "confidence": 0,
+ "word": "appreciate",
+ "punct": "appreciate",
+ "index": 2377
+ },
+ {
+ "start": 2375.26,
+ "end": 2375.5,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 2378
+ },
+ {
+ "start": 2375.5,
+ "end": 2377.08,
+ "confidence": 0,
+ "word": "conversation",
+ "punct": "conversation",
+ "index": 2379
+ },
+ {
+ "start": 2377.08,
+ "end": 2378.1,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 2380
+ },
+ {
+ "start": 2378.1,
+ "end": 2378.4,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 2381
+ },
+ {
+ "start": 2378.4,
+ "end": 2379.28,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2382
+ },
+ {
+ "start": 2379.28,
+ "end": 2379.52,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 2383
+ },
+ {
+ "start": 2379.52,
+ "end": 2380,
+ "confidence": 0,
+ "word": "pledged",
+ "punct": "pledged",
+ "index": 2384
+ },
+ {
+ "start": 2380,
+ "end": 2380.18,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2385
+ },
+ {
+ "start": 2380.18,
+ "end": 2380.82,
+ "confidence": 0,
+ "word": "inform",
+ "punct": "inform",
+ "index": 2386
+ },
+ {
+ "start": 2380.82,
+ "end": 2381.16,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 2387
+ },
+ {
+ "start": 2381.16,
+ "end": 2381.94,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 2388
+ },
+ {
+ "start": 2381.94,
+ "end": 2382.26,
+ "confidence": 0,
+ "word": "whose",
+ "punct": "whose",
+ "index": 2389
+ },
+ {
+ "start": 2382.26,
+ "end": 2382.84,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts",
+ "index": 2390
+ },
+ {
+ "start": 2382.84,
+ "end": 2383.16,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 2391
+ },
+ {
+ "start": 2383.16,
+ "end": 2385.14,
+ "confidence": 0,
+ "word": "compromised",
+ "punct": "compromised.",
+ "index": 2392
+ }
+ ],
+ "start": 2371.1
+ }
+ },
+ {
+ "key": "6jqhn",
+ "text": "I think you're genuine.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2385.14,
+ "end": 2385.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2393
+ },
+ {
+ "start": 2385.74,
+ "end": 2386.72,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 2394
+ },
+ {
+ "start": 2386.72,
+ "end": 2386.98,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 2395
+ },
+ {
+ "start": 2386.98,
+ "end": 2387.6,
+ "confidence": 0,
+ "word": "genuine",
+ "punct": "genuine.",
+ "index": 2396
+ }
+ ],
+ "start": 2385.14
+ }
+ },
+ {
+ "key": "c2ocl",
+ "text": "I got that sense in conversing with you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2387.6,
+ "end": 2388.32,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2397
+ },
+ {
+ "start": 2388.32,
+ "end": 2388.48,
+ "confidence": 0,
+ "word": "got",
+ "punct": "got",
+ "index": 2398
+ },
+ {
+ "start": 2388.48,
+ "end": 2388.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2399
+ },
+ {
+ "start": 2388.8,
+ "end": 2389.18,
+ "confidence": 0,
+ "word": "sense",
+ "punct": "sense",
+ "index": 2400
+ },
+ {
+ "start": 2389.18,
+ "end": 2389.44,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2401
+ },
+ {
+ "start": 2389.44,
+ "end": 2390.58,
+ "confidence": 0,
+ "word": "conversing",
+ "punct": "conversing",
+ "index": 2402
+ },
+ {
+ "start": 2390.58,
+ "end": 2390.9,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 2403
+ },
+ {
+ "start": 2390.9,
+ "end": 2391.18,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 2404
+ }
+ ],
+ "start": 2387.6
+ }
+ },
+ {
+ "key": "52srb",
+ "text": "You want to do the right thing, you want to enact reforms.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2391.18,
+ "end": 2391.92,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 2405
+ },
+ {
+ "start": 2391.92,
+ "end": 2392.18,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 2406
+ },
+ {
+ "start": 2392.18,
+ "end": 2392.36,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2407
+ },
+ {
+ "start": 2392.36,
+ "end": 2392.5,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 2408
+ },
+ {
+ "start": 2392.5,
+ "end": 2392.68,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2409
+ },
+ {
+ "start": 2392.68,
+ "end": 2392.98,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 2410
+ },
+ {
+ "start": 2392.98,
+ "end": 2393.32,
+ "confidence": 0,
+ "word": "thing,",
+ "punct": "thing,",
+ "index": 2411
+ },
+ {
+ "start": 2393.32,
+ "end": 2393.56,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 2412
+ },
+ {
+ "start": 2393.56,
+ "end": 2393.8,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 2413
+ },
+ {
+ "start": 2393.8,
+ "end": 2394,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2414
+ },
+ {
+ "start": 2394,
+ "end": 2394.52,
+ "confidence": 0,
+ "word": "enact",
+ "punct": "enact",
+ "index": 2415
+ },
+ {
+ "start": 2394.52,
+ "end": 2396.08,
+ "confidence": 0,
+ "word": "reforms",
+ "punct": "reforms.",
+ "index": 2416
+ }
+ ],
+ "start": 2391.18
+ }
+ },
+ {
+ "key": "1e6dl",
+ "text": "We want to know if it's going to be enough.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2396.08,
+ "end": 2397,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 2417
+ },
+ {
+ "start": 2397,
+ "end": 2397.4,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 2418
+ },
+ {
+ "start": 2397.4,
+ "end": 2397.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2419
+ },
+ {
+ "start": 2397.58,
+ "end": 2397.78,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 2420
+ },
+ {
+ "start": 2397.78,
+ "end": 2398.7,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 2421
+ },
+ {
+ "start": 2398.7,
+ "end": 2399,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 2422
+ },
+ {
+ "start": 2399,
+ "end": 2399.2,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 2423
+ },
+ {
+ "start": 2399.2,
+ "end": 2399.3,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2424
+ },
+ {
+ "start": 2399.3,
+ "end": 2399.38,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 2425
+ },
+ {
+ "start": 2399.38,
+ "end": 2400.52,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough.",
+ "index": 2426
+ }
+ ],
+ "start": 2396.08
+ }
+ },
+ {
+ "key": "7qhj6",
+ "text": "And I hope that will be in the answers today, now, since we still don't know what Cambridge Analytica has done with this data, you heard chairman Thon say as we have discussed, we want the haul Cambridge Analytica in to answer these questions at a separate hearing.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2400.52,
+ "end": 2401.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 2427
+ },
+ {
+ "start": 2401.3,
+ "end": 2401.46,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2428
+ },
+ {
+ "start": 2401.46,
+ "end": 2401.72,
+ "confidence": 0,
+ "word": "hope",
+ "punct": "hope",
+ "index": 2429
+ },
+ {
+ "start": 2401.72,
+ "end": 2402.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2430
+ },
+ {
+ "start": 2402.18,
+ "end": 2402.46,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 2431
+ },
+ {
+ "start": 2402.46,
+ "end": 2402.56,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 2432
+ },
+ {
+ "start": 2402.56,
+ "end": 2402.74,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2433
+ },
+ {
+ "start": 2402.74,
+ "end": 2402.86,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2434
+ },
+ {
+ "start": 2402.86,
+ "end": 2403.44,
+ "confidence": 0,
+ "word": "answers",
+ "punct": "answers",
+ "index": 2435
+ },
+ {
+ "start": 2403.44,
+ "end": 2406.08,
+ "confidence": 0,
+ "word": "today,",
+ "punct": "today,",
+ "index": 2436
+ },
+ {
+ "start": 2406.08,
+ "end": 2407.08,
+ "confidence": 0,
+ "word": "now,",
+ "punct": "now,",
+ "index": 2437
+ },
+ {
+ "start": 2407.08,
+ "end": 2407.62,
+ "confidence": 0,
+ "word": "since",
+ "punct": "since",
+ "index": 2438
+ },
+ {
+ "start": 2407.62,
+ "end": 2407.8,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2439
+ },
+ {
+ "start": 2407.8,
+ "end": 2408.26,
+ "confidence": 0,
+ "word": "still",
+ "punct": "still",
+ "index": 2440
+ },
+ {
+ "start": 2408.26,
+ "end": 2408.62,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 2441
+ },
+ {
+ "start": 2408.62,
+ "end": 2408.86,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 2442
+ },
+ {
+ "start": 2408.86,
+ "end": 2409.26,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 2443
+ },
+ {
+ "start": 2409.26,
+ "end": 2409.84,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 2444
+ },
+ {
+ "start": 2409.84,
+ "end": 2410.58,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 2445
+ },
+ {
+ "start": 2410.58,
+ "end": 2411.04,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 2446
+ },
+ {
+ "start": 2411.04,
+ "end": 2411.36,
+ "confidence": 0,
+ "word": "done",
+ "punct": "done",
+ "index": 2447
+ },
+ {
+ "start": 2411.36,
+ "end": 2411.54,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 2448
+ },
+ {
+ "start": 2411.54,
+ "end": 2411.76,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 2449
+ },
+ {
+ "start": 2411.76,
+ "end": 2413.1,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 2450
+ },
+ {
+ "start": 2413.1,
+ "end": 2414.12,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 2451
+ },
+ {
+ "start": 2414.12,
+ "end": 2414.62,
+ "confidence": 0,
+ "word": "heard",
+ "punct": "heard",
+ "index": 2452
+ },
+ {
+ "start": 2414.62,
+ "end": 2415.5,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 2453
+ },
+ {
+ "start": 2415.5,
+ "end": 2416.02,
+ "confidence": 0,
+ "word": "thon",
+ "punct": "Thon",
+ "index": 2454
+ },
+ {
+ "start": 2416.02,
+ "end": 2417.1,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 2455
+ },
+ {
+ "start": 2417.1,
+ "end": 2417.56,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 2456
+ },
+ {
+ "start": 2417.56,
+ "end": 2417.88,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2457
+ },
+ {
+ "start": 2417.88,
+ "end": 2418.12,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2458
+ },
+ {
+ "start": 2418.12,
+ "end": 2418.8,
+ "confidence": 0,
+ "word": "discussed,",
+ "punct": "discussed,",
+ "index": 2459
+ },
+ {
+ "start": 2418.8,
+ "end": 2419.18,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2460
+ },
+ {
+ "start": 2419.18,
+ "end": 2419.46,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 2461
+ },
+ {
+ "start": 2419.46,
+ "end": 2419.72,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2462
+ },
+ {
+ "start": 2419.72,
+ "end": 2420.62,
+ "confidence": 0,
+ "word": "haul",
+ "punct": "haul",
+ "index": 2463
+ },
+ {
+ "start": 2420.62,
+ "end": 2421.18,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 2464
+ },
+ {
+ "start": 2421.18,
+ "end": 2422.22,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 2465
+ },
+ {
+ "start": 2422.22,
+ "end": 2423.48,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2466
+ },
+ {
+ "start": 2423.48,
+ "end": 2423.6,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2467
+ },
+ {
+ "start": 2423.6,
+ "end": 2424.12,
+ "confidence": 0,
+ "word": "answer",
+ "punct": "answer",
+ "index": 2468
+ },
+ {
+ "start": 2424.12,
+ "end": 2424.46,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 2469
+ },
+ {
+ "start": 2424.46,
+ "end": 2425,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 2470
+ },
+ {
+ "start": 2425,
+ "end": 2425.24,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 2471
+ },
+ {
+ "start": 2425.24,
+ "end": 2425.32,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2472
+ },
+ {
+ "start": 2425.32,
+ "end": 2425.82,
+ "confidence": 0,
+ "word": "separate",
+ "punct": "separate",
+ "index": 2473
+ },
+ {
+ "start": 2425.82,
+ "end": 2426.94,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing.",
+ "index": 2474
+ }
+ ],
+ "start": 2400.52
+ }
+ },
+ {
+ "key": "6mjf0",
+ "text": "I want to thank chairman ton for working with all of us on scheduling.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2426.94,
+ "end": 2427.76,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2475
+ },
+ {
+ "start": 2427.76,
+ "end": 2428.04,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 2476
+ },
+ {
+ "start": 2428.04,
+ "end": 2428.16,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2477
+ },
+ {
+ "start": 2428.16,
+ "end": 2428.48,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 2478
+ },
+ {
+ "start": 2428.48,
+ "end": 2429.28,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 2479
+ },
+ {
+ "start": 2429.28,
+ "end": 2429.74,
+ "confidence": 0,
+ "word": "ton",
+ "punct": "ton",
+ "index": 2480
+ },
+ {
+ "start": 2429.74,
+ "end": 2429.96,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2481
+ },
+ {
+ "start": 2429.96,
+ "end": 2430.52,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 2482
+ },
+ {
+ "start": 2430.52,
+ "end": 2430.98,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 2483
+ },
+ {
+ "start": 2430.98,
+ "end": 2431.42,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 2484
+ },
+ {
+ "start": 2431.42,
+ "end": 2431.54,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2485
+ },
+ {
+ "start": 2431.54,
+ "end": 2431.82,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 2486
+ },
+ {
+ "start": 2431.82,
+ "end": 2432.1,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 2487
+ },
+ {
+ "start": 2432.1,
+ "end": 2432.7,
+ "confidence": 0,
+ "word": "scheduling",
+ "punct": "scheduling.",
+ "index": 2488
+ }
+ ],
+ "start": 2426.94
+ }
+ },
+ {
+ "key": "3cp7m",
+ "text": "A hearing there's obviously a great deal of interest in this subject.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2432.7,
+ "end": 2432.82,
+ "confidence": 0,
+ "word": "a",
+ "punct": "A",
+ "index": 2489
+ },
+ {
+ "start": 2432.82,
+ "end": 2433.18,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 2490
+ },
+ {
+ "start": 2433.18,
+ "end": 2434.1,
+ "confidence": 0,
+ "word": "there's",
+ "punct": "there's",
+ "index": 2491
+ },
+ {
+ "start": 2434.1,
+ "end": 2434.66,
+ "confidence": 0,
+ "word": "obviously",
+ "punct": "obviously",
+ "index": 2492
+ },
+ {
+ "start": 2434.66,
+ "end": 2434.76,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2493
+ },
+ {
+ "start": 2434.76,
+ "end": 2435.04,
+ "confidence": 0,
+ "word": "great",
+ "punct": "great",
+ "index": 2494
+ },
+ {
+ "start": 2435.04,
+ "end": 2435.24,
+ "confidence": 0,
+ "word": "deal",
+ "punct": "deal",
+ "index": 2495
+ },
+ {
+ "start": 2435.24,
+ "end": 2435.36,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2496
+ },
+ {
+ "start": 2435.36,
+ "end": 2435.94,
+ "confidence": 0,
+ "word": "interest",
+ "punct": "interest",
+ "index": 2497
+ },
+ {
+ "start": 2435.94,
+ "end": 2436.4,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2498
+ },
+ {
+ "start": 2436.4,
+ "end": 2436.66,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 2499
+ },
+ {
+ "start": 2436.66,
+ "end": 2437.44,
+ "confidence": 0,
+ "word": "subject",
+ "punct": "subject.",
+ "index": 2500
+ }
+ ],
+ "start": 2432.7
+ }
+ },
+ {
+ "key": "9n4dd",
+ "text": "I hope we can get to the bottom of this and if Facebook and other online companies will not or cannot fix the privacy invasions, then we are going to have to we the Congress.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2437.44,
+ "end": 2438.5,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2501
+ },
+ {
+ "start": 2438.5,
+ "end": 2438.78,
+ "confidence": 0,
+ "word": "hope",
+ "punct": "hope",
+ "index": 2502
+ },
+ {
+ "start": 2438.78,
+ "end": 2439.06,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2503
+ },
+ {
+ "start": 2439.06,
+ "end": 2439.26,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 2504
+ },
+ {
+ "start": 2439.26,
+ "end": 2439.56,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 2505
+ },
+ {
+ "start": 2439.56,
+ "end": 2440.08,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2506
+ },
+ {
+ "start": 2440.08,
+ "end": 2440.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2507
+ },
+ {
+ "start": 2440.22,
+ "end": 2440.58,
+ "confidence": 0,
+ "word": "bottom",
+ "punct": "bottom",
+ "index": 2508
+ },
+ {
+ "start": 2440.58,
+ "end": 2440.7,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2509
+ },
+ {
+ "start": 2440.7,
+ "end": 2441.74,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 2510
+ },
+ {
+ "start": 2441.74,
+ "end": 2442.74,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2511
+ },
+ {
+ "start": 2442.74,
+ "end": 2443.12,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 2512
+ },
+ {
+ "start": 2443.12,
+ "end": 2443.92,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2513
+ },
+ {
+ "start": 2443.92,
+ "end": 2444.2,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2514
+ },
+ {
+ "start": 2444.2,
+ "end": 2444.6,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 2515
+ },
+ {
+ "start": 2444.6,
+ "end": 2445.18,
+ "confidence": 0,
+ "word": "online",
+ "punct": "online",
+ "index": 2516
+ },
+ {
+ "start": 2445.18,
+ "end": 2445.78,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies",
+ "index": 2517
+ },
+ {
+ "start": 2445.78,
+ "end": 2446.7,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 2518
+ },
+ {
+ "start": 2446.7,
+ "end": 2447.1,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 2519
+ },
+ {
+ "start": 2447.1,
+ "end": 2447.4,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 2520
+ },
+ {
+ "start": 2447.4,
+ "end": 2448.1,
+ "confidence": 0,
+ "word": "cannot",
+ "punct": "cannot",
+ "index": 2521
+ },
+ {
+ "start": 2448.1,
+ "end": 2448.74,
+ "confidence": 0,
+ "word": "fix",
+ "punct": "fix",
+ "index": 2522
+ },
+ {
+ "start": 2448.74,
+ "end": 2449.48,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2523
+ },
+ {
+ "start": 2449.48,
+ "end": 2450.14,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 2524
+ },
+ {
+ "start": 2450.14,
+ "end": 2451.92,
+ "confidence": 0,
+ "word": "invasions,",
+ "punct": "invasions,",
+ "index": 2525
+ },
+ {
+ "start": 2451.92,
+ "end": 2453.22,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 2526
+ },
+ {
+ "start": 2453.22,
+ "end": 2454.36,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2527
+ },
+ {
+ "start": 2454.36,
+ "end": 2454.6,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 2528
+ },
+ {
+ "start": 2454.6,
+ "end": 2454.92,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 2529
+ },
+ {
+ "start": 2454.92,
+ "end": 2455.08,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2530
+ },
+ {
+ "start": 2455.08,
+ "end": 2455.4,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2531
+ },
+ {
+ "start": 2455.4,
+ "end": 2455.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2532
+ },
+ {
+ "start": 2455.9,
+ "end": 2456.96,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2533
+ },
+ {
+ "start": 2456.96,
+ "end": 2457.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2534
+ },
+ {
+ "start": 2457.36,
+ "end": 2457.82,
+ "confidence": 0,
+ "word": "congress",
+ "punct": "Congress.",
+ "index": 2535
+ }
+ ],
+ "start": 2437.44
+ }
+ },
+ {
+ "key": "flvoi",
+ "text": "How can American consumers trust folks like you company to be caretakers of their most personal and identifiable information and that's the question.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2457.82,
+ "end": 2458.46,
+ "confidence": 0,
+ "word": "how",
+ "punct": "How",
+ "index": 2536
+ },
+ {
+ "start": 2458.46,
+ "end": 2458.84,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 2537
+ },
+ {
+ "start": 2458.84,
+ "end": 2459.5,
+ "confidence": 0,
+ "word": "american",
+ "punct": "American",
+ "index": 2538
+ },
+ {
+ "start": 2459.5,
+ "end": 2460.66,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 2539
+ },
+ {
+ "start": 2460.66,
+ "end": 2462.16,
+ "confidence": 0,
+ "word": "trust",
+ "punct": "trust",
+ "index": 2540
+ },
+ {
+ "start": 2462.16,
+ "end": 2463.18,
+ "confidence": 0,
+ "word": "folks",
+ "punct": "folks",
+ "index": 2541
+ },
+ {
+ "start": 2463.18,
+ "end": 2463.82,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 2542
+ },
+ {
+ "start": 2463.82,
+ "end": 2464.15,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 2543
+ },
+ {
+ "start": 2464.15,
+ "end": 2464.69,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 2544
+ },
+ {
+ "start": 2464.69,
+ "end": 2464.85,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2545
+ },
+ {
+ "start": 2464.85,
+ "end": 2464.97,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 2546
+ },
+ {
+ "start": 2464.97,
+ "end": 2465.93,
+ "confidence": 0,
+ "word": "caretakers",
+ "punct": "caretakers",
+ "index": 2547
+ },
+ {
+ "start": 2465.93,
+ "end": 2466.25,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2548
+ },
+ {
+ "start": 2466.25,
+ "end": 2466.49,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 2549
+ },
+ {
+ "start": 2466.49,
+ "end": 2466.89,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 2550
+ },
+ {
+ "start": 2466.89,
+ "end": 2467.55,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 2551
+ },
+ {
+ "start": 2467.55,
+ "end": 2468.19,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2552
+ },
+ {
+ "start": 2468.19,
+ "end": 2469.09,
+ "confidence": 0,
+ "word": "identifiable",
+ "punct": "identifiable",
+ "index": 2553
+ },
+ {
+ "start": 2469.09,
+ "end": 2470.11,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 2554
+ },
+ {
+ "start": 2470.11,
+ "end": 2471.09,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2555
+ },
+ {
+ "start": 2471.09,
+ "end": 2471.37,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 2556
+ },
+ {
+ "start": 2471.37,
+ "end": 2471.53,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2557
+ },
+ {
+ "start": 2471.53,
+ "end": 2471.93,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question.",
+ "index": 2558
+ }
+ ],
+ "start": 2457.82
+ }
+ },
+ {
+ "key": "bjigd",
+ "text": "Thank you, thank you, my colleagues and Senator Nelson.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2471.93,
+ "end": 2472.33,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 2559
+ },
+ {
+ "start": 2472.33,
+ "end": 2472.51,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 2560
+ },
+ {
+ "start": 2472.51,
+ "end": 2473.23,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 2561
+ },
+ {
+ "start": 2473.23,
+ "end": 2473.43,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 2562
+ },
+ {
+ "start": 2473.43,
+ "end": 2473.69,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 2563
+ },
+ {
+ "start": 2473.69,
+ "end": 2474.21,
+ "confidence": 0,
+ "word": "colleagues",
+ "punct": "colleagues",
+ "index": 2564
+ },
+ {
+ "start": 2474.21,
+ "end": 2474.57,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2565
+ },
+ {
+ "start": 2474.57,
+ "end": 2475.01,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 2566
+ },
+ {
+ "start": 2475.01,
+ "end": 2476.38,
+ "confidence": 0,
+ "word": "nelson",
+ "punct": "Nelson.",
+ "index": 2567
+ }
+ ],
+ "start": 2471.93
+ }
+ },
+ {
+ "key": "6jom8",
+ "text": "Our witness today is Mark Zuckerberg, founder chairman chief executive officer of Facebook Mr Zuckerberg launched Facebook February fourth 2,004 at the age of 19 and at that time, he was a student at Harvard University.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2476.38,
+ "end": 2477.44,
+ "confidence": 0,
+ "word": "our",
+ "punct": "Our",
+ "index": 2568
+ },
+ {
+ "start": 2477.44,
+ "end": 2477.78,
+ "confidence": 0,
+ "word": "witness",
+ "punct": "witness",
+ "index": 2569
+ },
+ {
+ "start": 2477.78,
+ "end": 2478.14,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 2570
+ },
+ {
+ "start": 2478.14,
+ "end": 2478.66,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 2571
+ },
+ {
+ "start": 2478.66,
+ "end": 2479.02,
+ "confidence": 0,
+ "word": "mark",
+ "punct": "Mark",
+ "index": 2572
+ },
+ {
+ "start": 2479.02,
+ "end": 2479.64,
+ "confidence": 0,
+ "word": "zuckerberg,",
+ "punct": "Zuckerberg,",
+ "index": 2573
+ },
+ {
+ "start": 2479.64,
+ "end": 2480.72,
+ "confidence": 0,
+ "word": "founder",
+ "punct": "founder",
+ "index": 2574
+ },
+ {
+ "start": 2480.72,
+ "end": 2481.88,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 2575
+ },
+ {
+ "start": 2481.88,
+ "end": 2482.78,
+ "confidence": 0,
+ "word": "chief",
+ "punct": "chief",
+ "index": 2576
+ },
+ {
+ "start": 2482.78,
+ "end": 2483.38,
+ "confidence": 0,
+ "word": "executive",
+ "punct": "executive",
+ "index": 2577
+ },
+ {
+ "start": 2483.38,
+ "end": 2483.96,
+ "confidence": 0,
+ "word": "officer",
+ "punct": "officer",
+ "index": 2578
+ },
+ {
+ "start": 2483.96,
+ "end": 2484.1,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2579
+ },
+ {
+ "start": 2484.1,
+ "end": 2484.9,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2580
+ },
+ {
+ "start": 2484.9,
+ "end": 2485.92,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 2581
+ },
+ {
+ "start": 2485.92,
+ "end": 2487.1,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg",
+ "index": 2582
+ },
+ {
+ "start": 2487.1,
+ "end": 2488.06,
+ "confidence": 0,
+ "word": "launched",
+ "punct": "launched",
+ "index": 2583
+ },
+ {
+ "start": 2488.06,
+ "end": 2488.84,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2584
+ },
+ {
+ "start": 2488.84,
+ "end": 2489.92,
+ "confidence": 0,
+ "word": "february",
+ "punct": "February",
+ "index": 2585
+ },
+ {
+ "start": 2489.92,
+ "end": 2490.28,
+ "confidence": 0,
+ "word": "fourth",
+ "punct": "fourth",
+ "index": 2586
+ },
+ {
+ "start": 2490.28,
+ "end": 2492.32,
+ "confidence": 0,
+ "word": "2,004",
+ "punct": "2,004",
+ "index": 2587
+ },
+ {
+ "start": 2492.32,
+ "end": 2492.44,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 2588
+ },
+ {
+ "start": 2492.44,
+ "end": 2492.58,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2589
+ },
+ {
+ "start": 2492.58,
+ "end": 2492.8,
+ "confidence": 0,
+ "word": "age",
+ "punct": "age",
+ "index": 2590
+ },
+ {
+ "start": 2492.8,
+ "end": 2492.94,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2591
+ },
+ {
+ "start": 2492.94,
+ "end": 2494.06,
+ "confidence": 0,
+ "word": "19",
+ "punct": "19",
+ "index": 2592
+ },
+ {
+ "start": 2494.06,
+ "end": 2494.88,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2593
+ },
+ {
+ "start": 2494.88,
+ "end": 2495.06,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 2594
+ },
+ {
+ "start": 2495.06,
+ "end": 2495.24,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2595
+ },
+ {
+ "start": 2495.24,
+ "end": 2495.6,
+ "confidence": 0,
+ "word": "time,",
+ "punct": "time,",
+ "index": 2596
+ },
+ {
+ "start": 2495.6,
+ "end": 2495.72,
+ "confidence": 0,
+ "word": "he",
+ "punct": "he",
+ "index": 2597
+ },
+ {
+ "start": 2495.72,
+ "end": 2495.9,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 2598
+ },
+ {
+ "start": 2495.9,
+ "end": 2495.96,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2599
+ },
+ {
+ "start": 2495.96,
+ "end": 2496.42,
+ "confidence": 0,
+ "word": "student",
+ "punct": "student",
+ "index": 2600
+ },
+ {
+ "start": 2496.42,
+ "end": 2496.6,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 2601
+ },
+ {
+ "start": 2496.6,
+ "end": 2497,
+ "confidence": 0,
+ "word": "harvard",
+ "punct": "Harvard",
+ "index": 2602
+ },
+ {
+ "start": 2497,
+ "end": 2497.6,
+ "confidence": 0,
+ "word": "university",
+ "punct": "University.",
+ "index": 2603
+ }
+ ],
+ "start": 2476.38
+ }
+ },
+ {
+ "key": "8npjq",
+ "text": "As I mentioned previously, his company now has over 40,000,000,000 of annual revenue and over 2,000,000,000 monthly active users.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2497.6,
+ "end": 2498.76,
+ "confidence": 0,
+ "word": "as",
+ "punct": "As",
+ "index": 2604
+ },
+ {
+ "start": 2498.76,
+ "end": 2498.86,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2605
+ },
+ {
+ "start": 2498.86,
+ "end": 2499.3,
+ "confidence": 0,
+ "word": "mentioned",
+ "punct": "mentioned",
+ "index": 2606
+ },
+ {
+ "start": 2499.3,
+ "end": 2499.84,
+ "confidence": 0,
+ "word": "previously,",
+ "punct": "previously,",
+ "index": 2607
+ },
+ {
+ "start": 2499.84,
+ "end": 2500.08,
+ "confidence": 0,
+ "word": "his",
+ "punct": "his",
+ "index": 2608
+ },
+ {
+ "start": 2500.08,
+ "end": 2500.44,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 2609
+ },
+ {
+ "start": 2500.44,
+ "end": 2500.72,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 2610
+ },
+ {
+ "start": 2500.72,
+ "end": 2501.08,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 2611
+ },
+ {
+ "start": 2501.08,
+ "end": 2501.4,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 2612
+ },
+ {
+ "start": 2501.4,
+ "end": 2502.7,
+ "confidence": 0,
+ "word": "40,000,000,000",
+ "punct": "40,000,000,000",
+ "index": 2613
+ },
+ {
+ "start": 2502.7,
+ "end": 2503.04,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2614
+ },
+ {
+ "start": 2503.04,
+ "end": 2503.44,
+ "confidence": 0,
+ "word": "annual",
+ "punct": "annual",
+ "index": 2615
+ },
+ {
+ "start": 2503.44,
+ "end": 2503.84,
+ "confidence": 0,
+ "word": "revenue",
+ "punct": "revenue",
+ "index": 2616
+ },
+ {
+ "start": 2503.84,
+ "end": 2504.9,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2617
+ },
+ {
+ "start": 2504.9,
+ "end": 2505.24,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 2618
+ },
+ {
+ "start": 2505.24,
+ "end": 2506.01,
+ "confidence": 0,
+ "word": "2,000,000,000",
+ "punct": "2,000,000,000",
+ "index": 2619
+ },
+ {
+ "start": 2506.01,
+ "end": 2506.49,
+ "confidence": 0,
+ "word": "monthly",
+ "punct": "monthly",
+ "index": 2620
+ },
+ {
+ "start": 2506.49,
+ "end": 2507.15,
+ "confidence": 0,
+ "word": "active",
+ "punct": "active",
+ "index": 2621
+ },
+ {
+ "start": 2507.15,
+ "end": 2508.01,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users.",
+ "index": 2622
+ }
+ ],
+ "start": 2497.6
+ }
+ },
+ {
+ "key": "2pikt",
+ "text": "Mr Zuckerberg, along with his wife, also established the Chan Zuckerberg initiative to further causes.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2508.01,
+ "end": 2509.03,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 2623
+ },
+ {
+ "start": 2509.03,
+ "end": 2509.65,
+ "confidence": 0,
+ "word": "zuckerberg,",
+ "punct": "Zuckerberg,",
+ "index": 2624
+ },
+ {
+ "start": 2509.65,
+ "end": 2510.21,
+ "confidence": 0,
+ "word": "along",
+ "punct": "along",
+ "index": 2625
+ },
+ {
+ "start": 2510.21,
+ "end": 2510.51,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 2626
+ },
+ {
+ "start": 2510.51,
+ "end": 2510.83,
+ "confidence": 0,
+ "word": "his",
+ "punct": "his",
+ "index": 2627
+ },
+ {
+ "start": 2510.83,
+ "end": 2511.35,
+ "confidence": 0,
+ "word": "wife,",
+ "punct": "wife,",
+ "index": 2628
+ },
+ {
+ "start": 2511.35,
+ "end": 2511.85,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 2629
+ },
+ {
+ "start": 2511.85,
+ "end": 2512.53,
+ "confidence": 0,
+ "word": "established",
+ "punct": "established",
+ "index": 2630
+ },
+ {
+ "start": 2512.53,
+ "end": 2513.19,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2631
+ },
+ {
+ "start": 2513.19,
+ "end": 2513.71,
+ "confidence": 0,
+ "word": "chan",
+ "punct": "Chan",
+ "index": 2632
+ },
+ {
+ "start": 2513.71,
+ "end": 2514.53,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg",
+ "index": 2633
+ },
+ {
+ "start": 2514.53,
+ "end": 2515.43,
+ "confidence": 0,
+ "word": "initiative",
+ "punct": "initiative",
+ "index": 2634
+ },
+ {
+ "start": 2515.43,
+ "end": 2516.01,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2635
+ },
+ {
+ "start": 2516.01,
+ "end": 2518.22,
+ "confidence": 0,
+ "word": "further",
+ "punct": "further",
+ "index": 2636
+ },
+ {
+ "start": 2518.22,
+ "end": 2519.24,
+ "confidence": 0,
+ "word": "causes",
+ "punct": "causes.",
+ "index": 2637
+ }
+ ],
+ "start": 2508.01
+ }
+ },
+ {
+ "key": "4ijc3",
+ "text": "I now turn to you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2519.24,
+ "end": 2519.98,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2638
+ },
+ {
+ "start": 2519.98,
+ "end": 2520.26,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 2639
+ },
+ {
+ "start": 2520.26,
+ "end": 2520.5,
+ "confidence": 0,
+ "word": "turn",
+ "punct": "turn",
+ "index": 2640
+ },
+ {
+ "start": 2520.5,
+ "end": 2520.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2641
+ },
+ {
+ "start": 2520.66,
+ "end": 2520.92,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 2642
+ }
+ ],
+ "start": 2519.24
+ }
+ },
+ {
+ "key": "9idoh",
+ "text": "Welcome to the committee.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2520.92,
+ "end": 2521.56,
+ "confidence": 0,
+ "word": "welcome",
+ "punct": "Welcome",
+ "index": 2643
+ },
+ {
+ "start": 2521.56,
+ "end": 2521.7,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2644
+ },
+ {
+ "start": 2521.7,
+ "end": 2521.86,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2645
+ },
+ {
+ "start": 2521.86,
+ "end": 2522.3,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "committee.",
+ "index": 2646
+ }
+ ],
+ "start": 2520.92
+ }
+ },
+ {
+ "key": "7l2t",
+ "text": "And whatever your statement is orally.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2522.3,
+ "end": 2523.52,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 2647
+ },
+ {
+ "start": 2523.52,
+ "end": 2524.14,
+ "confidence": 0,
+ "word": "whatever",
+ "punct": "whatever",
+ "index": 2648
+ },
+ {
+ "start": 2524.14,
+ "end": 2524.34,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 2649
+ },
+ {
+ "start": 2524.34,
+ "end": 2524.76,
+ "confidence": 0,
+ "word": "statement",
+ "punct": "statement",
+ "index": 2650
+ },
+ {
+ "start": 2524.76,
+ "end": 2524.96,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 2651
+ },
+ {
+ "start": 2524.96,
+ "end": 2525.44,
+ "confidence": 0,
+ "word": "orally",
+ "punct": "orally.",
+ "index": 2652
+ }
+ ],
+ "start": 2522.3
+ }
+ },
+ {
+ "key": "4cfgr",
+ "text": "If you have a longer one, it will be included in the record.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2525.44,
+ "end": 2525.56,
+ "confidence": 0,
+ "word": "if",
+ "punct": "If",
+ "index": 2653
+ },
+ {
+ "start": 2525.56,
+ "end": 2525.74,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 2654
+ },
+ {
+ "start": 2525.74,
+ "end": 2525.88,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2655
+ },
+ {
+ "start": 2525.88,
+ "end": 2525.96,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2656
+ },
+ {
+ "start": 2525.96,
+ "end": 2526.34,
+ "confidence": 0,
+ "word": "longer",
+ "punct": "longer",
+ "index": 2657
+ },
+ {
+ "start": 2526.34,
+ "end": 2526.58,
+ "confidence": 0,
+ "word": "one,",
+ "punct": "one,",
+ "index": 2658
+ },
+ {
+ "start": 2526.58,
+ "end": 2527.04,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 2659
+ },
+ {
+ "start": 2527.04,
+ "end": 2527.2,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 2660
+ },
+ {
+ "start": 2527.2,
+ "end": 2527.28,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 2661
+ },
+ {
+ "start": 2527.28,
+ "end": 2527.7,
+ "confidence": 0,
+ "word": "included",
+ "punct": "included",
+ "index": 2662
+ },
+ {
+ "start": 2527.7,
+ "end": 2527.8,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2663
+ },
+ {
+ "start": 2527.8,
+ "end": 2527.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2664
+ },
+ {
+ "start": 2527.92,
+ "end": 2528.26,
+ "confidence": 0,
+ "word": "record",
+ "punct": "record.",
+ "index": 2665
+ }
+ ],
+ "start": 2525.44
+ }
+ },
+ {
+ "key": "4v4h4",
+ "text": "So proceed Sir Chairman Grassley chairman Thon, ranking member, Feinstein and ranking member Nelson and members of the committee.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2528.26,
+ "end": 2528.74,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 2666
+ },
+ {
+ "start": 2528.74,
+ "end": 2529.3,
+ "confidence": 0,
+ "word": "proceed",
+ "punct": "proceed",
+ "index": 2667
+ },
+ {
+ "start": 2529.3,
+ "end": 2530.38,
+ "confidence": 0,
+ "word": "sir",
+ "punct": "Sir",
+ "index": 2668
+ },
+ {
+ "start": 2530.38,
+ "end": 2531.5,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman",
+ "index": 2669
+ },
+ {
+ "start": 2531.5,
+ "end": 2531.96,
+ "confidence": 0,
+ "word": "grassley",
+ "punct": "Grassley",
+ "index": 2670
+ },
+ {
+ "start": 2531.96,
+ "end": 2532.7,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 2671
+ },
+ {
+ "start": 2532.7,
+ "end": 2533.38,
+ "confidence": 0,
+ "word": "thon,",
+ "punct": "Thon,",
+ "index": 2672
+ },
+ {
+ "start": 2533.38,
+ "end": 2534.34,
+ "confidence": 0,
+ "word": "ranking",
+ "punct": "ranking",
+ "index": 2673
+ },
+ {
+ "start": 2534.34,
+ "end": 2534.6,
+ "confidence": 0,
+ "word": "member,",
+ "punct": "member,",
+ "index": 2674
+ },
+ {
+ "start": 2534.6,
+ "end": 2535.18,
+ "confidence": 0,
+ "word": "feinstein",
+ "punct": "Feinstein",
+ "index": 2675
+ },
+ {
+ "start": 2535.18,
+ "end": 2535.32,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2676
+ },
+ {
+ "start": 2535.32,
+ "end": 2535.64,
+ "confidence": 0,
+ "word": "ranking",
+ "punct": "ranking",
+ "index": 2677
+ },
+ {
+ "start": 2535.64,
+ "end": 2535.86,
+ "confidence": 0,
+ "word": "member",
+ "punct": "member",
+ "index": 2678
+ },
+ {
+ "start": 2535.86,
+ "end": 2536.32,
+ "confidence": 0,
+ "word": "nelson",
+ "punct": "Nelson",
+ "index": 2679
+ },
+ {
+ "start": 2536.32,
+ "end": 2536.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2680
+ },
+ {
+ "start": 2536.42,
+ "end": 2536.72,
+ "confidence": 0,
+ "word": "members",
+ "punct": "members",
+ "index": 2681
+ },
+ {
+ "start": 2536.72,
+ "end": 2536.84,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2682
+ },
+ {
+ "start": 2536.84,
+ "end": 2536.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2683
+ },
+ {
+ "start": 2536.94,
+ "end": 2537.92,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "committee.",
+ "index": 2684
+ }
+ ],
+ "start": 2528.26
+ }
+ },
+ {
+ "key": "ddptv",
+ "text": "We face a number of important issues around privacy safety and democracy and you will rightfully have some hard questions for me to answer before I talk about the steps we're taking to address them.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2537.92,
+ "end": 2538.64,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 2685
+ },
+ {
+ "start": 2538.64,
+ "end": 2538.92,
+ "confidence": 0,
+ "word": "face",
+ "punct": "face",
+ "index": 2686
+ },
+ {
+ "start": 2538.92,
+ "end": 2539.04,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2687
+ },
+ {
+ "start": 2539.04,
+ "end": 2539.34,
+ "confidence": 0,
+ "word": "number",
+ "punct": "number",
+ "index": 2688
+ },
+ {
+ "start": 2539.34,
+ "end": 2539.44,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2689
+ },
+ {
+ "start": 2539.44,
+ "end": 2539.86,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 2690
+ },
+ {
+ "start": 2539.86,
+ "end": 2540.24,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues",
+ "index": 2691
+ },
+ {
+ "start": 2540.24,
+ "end": 2540.72,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 2692
+ },
+ {
+ "start": 2540.72,
+ "end": 2541.3,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 2693
+ },
+ {
+ "start": 2541.3,
+ "end": 2542.16,
+ "confidence": 0,
+ "word": "safety",
+ "punct": "safety",
+ "index": 2694
+ },
+ {
+ "start": 2542.16,
+ "end": 2542.52,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2695
+ },
+ {
+ "start": 2542.52,
+ "end": 2543.1,
+ "confidence": 0,
+ "word": "democracy",
+ "punct": "democracy",
+ "index": 2696
+ },
+ {
+ "start": 2543.1,
+ "end": 2543.8,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2697
+ },
+ {
+ "start": 2543.8,
+ "end": 2543.9,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 2698
+ },
+ {
+ "start": 2543.9,
+ "end": 2544.06,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 2699
+ },
+ {
+ "start": 2544.06,
+ "end": 2544.52,
+ "confidence": 0,
+ "word": "rightfully",
+ "punct": "rightfully",
+ "index": 2700
+ },
+ {
+ "start": 2544.52,
+ "end": 2544.84,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2701
+ },
+ {
+ "start": 2544.84,
+ "end": 2545.1,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 2702
+ },
+ {
+ "start": 2545.1,
+ "end": 2545.34,
+ "confidence": 0,
+ "word": "hard",
+ "punct": "hard",
+ "index": 2703
+ },
+ {
+ "start": 2545.34,
+ "end": 2545.8,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 2704
+ },
+ {
+ "start": 2545.8,
+ "end": 2545.98,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2705
+ },
+ {
+ "start": 2545.98,
+ "end": 2546.08,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 2706
+ },
+ {
+ "start": 2546.08,
+ "end": 2546.18,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2707
+ },
+ {
+ "start": 2546.18,
+ "end": 2547.16,
+ "confidence": 0,
+ "word": "answer",
+ "punct": "answer",
+ "index": 2708
+ },
+ {
+ "start": 2547.16,
+ "end": 2548.1,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 2709
+ },
+ {
+ "start": 2548.1,
+ "end": 2548.14,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2710
+ },
+ {
+ "start": 2548.14,
+ "end": 2548.4,
+ "confidence": 0,
+ "word": "talk",
+ "punct": "talk",
+ "index": 2711
+ },
+ {
+ "start": 2548.4,
+ "end": 2548.62,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 2712
+ },
+ {
+ "start": 2548.62,
+ "end": 2548.74,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2713
+ },
+ {
+ "start": 2548.74,
+ "end": 2548.96,
+ "confidence": 0,
+ "word": "steps",
+ "punct": "steps",
+ "index": 2714
+ },
+ {
+ "start": 2548.96,
+ "end": 2549.2,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 2715
+ },
+ {
+ "start": 2549.2,
+ "end": 2549.44,
+ "confidence": 0,
+ "word": "taking",
+ "punct": "taking",
+ "index": 2716
+ },
+ {
+ "start": 2549.44,
+ "end": 2549.56,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2717
+ },
+ {
+ "start": 2549.56,
+ "end": 2549.86,
+ "confidence": 0,
+ "word": "address",
+ "punct": "address",
+ "index": 2718
+ },
+ {
+ "start": 2549.86,
+ "end": 2550.08,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them.",
+ "index": 2719
+ }
+ ],
+ "start": 2537.92
+ }
+ },
+ {
+ "key": "4lvtd",
+ "text": "I want to talk about how we got here, Facebook is an idealistic and optimistic company.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2550.08,
+ "end": 2550.72,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2720
+ },
+ {
+ "start": 2550.72,
+ "end": 2550.86,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 2721
+ },
+ {
+ "start": 2550.86,
+ "end": 2550.96,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2722
+ },
+ {
+ "start": 2550.96,
+ "end": 2551.12,
+ "confidence": 0,
+ "word": "talk",
+ "punct": "talk",
+ "index": 2723
+ },
+ {
+ "start": 2551.12,
+ "end": 2551.3,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 2724
+ },
+ {
+ "start": 2551.3,
+ "end": 2551.42,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 2725
+ },
+ {
+ "start": 2551.42,
+ "end": 2551.52,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2726
+ },
+ {
+ "start": 2551.52,
+ "end": 2551.72,
+ "confidence": 0,
+ "word": "got",
+ "punct": "got",
+ "index": 2727
+ },
+ {
+ "start": 2551.72,
+ "end": 2553.12,
+ "confidence": 0,
+ "word": "here,",
+ "punct": "here,",
+ "index": 2728
+ },
+ {
+ "start": 2553.12,
+ "end": 2554.1,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2729
+ },
+ {
+ "start": 2554.1,
+ "end": 2554.48,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 2730
+ },
+ {
+ "start": 2554.48,
+ "end": 2554.6,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 2731
+ },
+ {
+ "start": 2554.6,
+ "end": 2555.38,
+ "confidence": 0,
+ "word": "idealistic",
+ "punct": "idealistic",
+ "index": 2732
+ },
+ {
+ "start": 2555.38,
+ "end": 2555.6,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2733
+ },
+ {
+ "start": 2555.6,
+ "end": 2556.22,
+ "confidence": 0,
+ "word": "optimistic",
+ "punct": "optimistic",
+ "index": 2734
+ },
+ {
+ "start": 2556.22,
+ "end": 2556.66,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company.",
+ "index": 2735
+ }
+ ],
+ "start": 2550.08
+ }
+ },
+ {
+ "key": "8r82m",
+ "text": "For most of our existence.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2556.66,
+ "end": 2557.7,
+ "confidence": 0,
+ "word": "for",
+ "punct": "For",
+ "index": 2736
+ },
+ {
+ "start": 2557.7,
+ "end": 2557.92,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 2737
+ },
+ {
+ "start": 2557.92,
+ "end": 2558.02,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2738
+ },
+ {
+ "start": 2558.02,
+ "end": 2558.16,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 2739
+ },
+ {
+ "start": 2558.16,
+ "end": 2558.64,
+ "confidence": 0,
+ "word": "existence",
+ "punct": "existence.",
+ "index": 2740
+ }
+ ],
+ "start": 2556.66
+ }
+ },
+ {
+ "key": "ekdr0",
+ "text": "We focused on all of the good that connecting people can do.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2558.64,
+ "end": 2559.34,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 2741
+ },
+ {
+ "start": 2559.34,
+ "end": 2559.82,
+ "confidence": 0,
+ "word": "focused",
+ "punct": "focused",
+ "index": 2742
+ },
+ {
+ "start": 2559.82,
+ "end": 2560.04,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 2743
+ },
+ {
+ "start": 2560.04,
+ "end": 2560.3,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 2744
+ },
+ {
+ "start": 2560.3,
+ "end": 2560.36,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2745
+ },
+ {
+ "start": 2560.36,
+ "end": 2560.48,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2746
+ },
+ {
+ "start": 2560.48,
+ "end": 2560.74,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 2747
+ },
+ {
+ "start": 2560.74,
+ "end": 2560.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2748
+ },
+ {
+ "start": 2560.96,
+ "end": 2561.38,
+ "confidence": 0,
+ "word": "connecting",
+ "punct": "connecting",
+ "index": 2749
+ },
+ {
+ "start": 2561.38,
+ "end": 2561.68,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 2750
+ },
+ {
+ "start": 2561.68,
+ "end": 2561.9,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 2751
+ },
+ {
+ "start": 2561.9,
+ "end": 2562.04,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do.",
+ "index": 2752
+ }
+ ],
+ "start": 2558.64
+ }
+ },
+ {
+ "key": "8h2vp",
+ "text": "And as Facebook has grown people everywhere have gotten a powerful new tool for staying connected to the people they love for making their voices heard and for building communities and businesses just recently we've seen the me too movement and the March for our lives organized at least in part on Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2562.04,
+ "end": 2562.94,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 2753
+ },
+ {
+ "start": 2562.94,
+ "end": 2563.1,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 2754
+ },
+ {
+ "start": 2563.1,
+ "end": 2563.46,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2755
+ },
+ {
+ "start": 2563.46,
+ "end": 2563.6,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 2756
+ },
+ {
+ "start": 2563.6,
+ "end": 2563.92,
+ "confidence": 0,
+ "word": "grown",
+ "punct": "grown",
+ "index": 2757
+ },
+ {
+ "start": 2563.92,
+ "end": 2564.24,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 2758
+ },
+ {
+ "start": 2564.24,
+ "end": 2564.68,
+ "confidence": 0,
+ "word": "everywhere",
+ "punct": "everywhere",
+ "index": 2759
+ },
+ {
+ "start": 2564.68,
+ "end": 2564.88,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2760
+ },
+ {
+ "start": 2564.88,
+ "end": 2565.22,
+ "confidence": 0,
+ "word": "gotten",
+ "punct": "gotten",
+ "index": 2761
+ },
+ {
+ "start": 2565.22,
+ "end": 2565.66,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2762
+ },
+ {
+ "start": 2565.66,
+ "end": 2566.18,
+ "confidence": 0,
+ "word": "powerful",
+ "punct": "powerful",
+ "index": 2763
+ },
+ {
+ "start": 2566.18,
+ "end": 2566.34,
+ "confidence": 0,
+ "word": "new",
+ "punct": "new",
+ "index": 2764
+ },
+ {
+ "start": 2566.34,
+ "end": 2566.7,
+ "confidence": 0,
+ "word": "tool",
+ "punct": "tool",
+ "index": 2765
+ },
+ {
+ "start": 2566.7,
+ "end": 2567.28,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2766
+ },
+ {
+ "start": 2567.28,
+ "end": 2567.54,
+ "confidence": 0,
+ "word": "staying",
+ "punct": "staying",
+ "index": 2767
+ },
+ {
+ "start": 2567.54,
+ "end": 2567.9,
+ "confidence": 0,
+ "word": "connected",
+ "punct": "connected",
+ "index": 2768
+ },
+ {
+ "start": 2567.9,
+ "end": 2568,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2769
+ },
+ {
+ "start": 2568,
+ "end": 2568.12,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2770
+ },
+ {
+ "start": 2568.12,
+ "end": 2568.34,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 2771
+ },
+ {
+ "start": 2568.34,
+ "end": 2568.52,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 2772
+ },
+ {
+ "start": 2568.52,
+ "end": 2570.08,
+ "confidence": 0,
+ "word": "love",
+ "punct": "love",
+ "index": 2773
+ },
+ {
+ "start": 2570.08,
+ "end": 2571.08,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2774
+ },
+ {
+ "start": 2571.08,
+ "end": 2571.32,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 2775
+ },
+ {
+ "start": 2571.32,
+ "end": 2571.5,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 2776
+ },
+ {
+ "start": 2571.5,
+ "end": 2571.8,
+ "confidence": 0,
+ "word": "voices",
+ "punct": "voices",
+ "index": 2777
+ },
+ {
+ "start": 2571.8,
+ "end": 2572.06,
+ "confidence": 0,
+ "word": "heard",
+ "punct": "heard",
+ "index": 2778
+ },
+ {
+ "start": 2572.06,
+ "end": 2572.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2779
+ },
+ {
+ "start": 2572.26,
+ "end": 2572.46,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2780
+ },
+ {
+ "start": 2572.46,
+ "end": 2572.84,
+ "confidence": 0,
+ "word": "building",
+ "punct": "building",
+ "index": 2781
+ },
+ {
+ "start": 2572.84,
+ "end": 2573.38,
+ "confidence": 0,
+ "word": "communities",
+ "punct": "communities",
+ "index": 2782
+ },
+ {
+ "start": 2573.38,
+ "end": 2573.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2783
+ },
+ {
+ "start": 2573.62,
+ "end": 2574.2,
+ "confidence": 0,
+ "word": "businesses",
+ "punct": "businesses",
+ "index": 2784
+ },
+ {
+ "start": 2574.2,
+ "end": 2575.26,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 2785
+ },
+ {
+ "start": 2575.26,
+ "end": 2575.72,
+ "confidence": 0,
+ "word": "recently",
+ "punct": "recently",
+ "index": 2786
+ },
+ {
+ "start": 2575.72,
+ "end": 2576.44,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 2787
+ },
+ {
+ "start": 2576.44,
+ "end": 2576.66,
+ "confidence": 0,
+ "word": "seen",
+ "punct": "seen",
+ "index": 2788
+ },
+ {
+ "start": 2576.66,
+ "end": 2576.8,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2789
+ },
+ {
+ "start": 2576.8,
+ "end": 2576.94,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 2790
+ },
+ {
+ "start": 2576.94,
+ "end": 2577.2,
+ "confidence": 0,
+ "word": "too",
+ "punct": "too",
+ "index": 2791
+ },
+ {
+ "start": 2577.2,
+ "end": 2577.6,
+ "confidence": 0,
+ "word": "movement",
+ "punct": "movement",
+ "index": 2792
+ },
+ {
+ "start": 2577.6,
+ "end": 2577.78,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2793
+ },
+ {
+ "start": 2577.78,
+ "end": 2577.9,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 2794
+ },
+ {
+ "start": 2577.9,
+ "end": 2578.14,
+ "confidence": 0,
+ "word": "march",
+ "punct": "March",
+ "index": 2795
+ },
+ {
+ "start": 2578.14,
+ "end": 2578.3,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2796
+ },
+ {
+ "start": 2578.3,
+ "end": 2578.44,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 2797
+ },
+ {
+ "start": 2578.44,
+ "end": 2578.8,
+ "confidence": 0,
+ "word": "lives",
+ "punct": "lives",
+ "index": 2798
+ },
+ {
+ "start": 2578.8,
+ "end": 2579.34,
+ "confidence": 0,
+ "word": "organized",
+ "punct": "organized",
+ "index": 2799
+ },
+ {
+ "start": 2579.34,
+ "end": 2579.48,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 2800
+ },
+ {
+ "start": 2579.48,
+ "end": 2579.68,
+ "confidence": 0,
+ "word": "least",
+ "punct": "least",
+ "index": 2801
+ },
+ {
+ "start": 2579.68,
+ "end": 2579.84,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2802
+ },
+ {
+ "start": 2579.84,
+ "end": 2580.16,
+ "confidence": 0,
+ "word": "part",
+ "punct": "part",
+ "index": 2803
+ },
+ {
+ "start": 2580.16,
+ "end": 2580.7,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 2804
+ },
+ {
+ "start": 2580.7,
+ "end": 2582.1,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 2805
+ }
+ ],
+ "start": 2562.04
+ }
+ },
+ {
+ "key": "950hd",
+ "text": "After Hurricane Harvey, people came together to raise more than 20,000,000 dollars for relief and more than 70,000,000 small businesses use Facebook to create jobs and grow.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2582.1,
+ "end": 2582.36,
+ "confidence": 0,
+ "word": "after",
+ "punct": "After",
+ "index": 2806
+ },
+ {
+ "start": 2582.36,
+ "end": 2582.74,
+ "confidence": 0,
+ "word": "hurricane",
+ "punct": "Hurricane",
+ "index": 2807
+ },
+ {
+ "start": 2582.74,
+ "end": 2583.08,
+ "confidence": 0,
+ "word": "harvey,",
+ "punct": "Harvey,",
+ "index": 2808
+ },
+ {
+ "start": 2583.08,
+ "end": 2583.82,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 2809
+ },
+ {
+ "start": 2583.82,
+ "end": 2584.04,
+ "confidence": 0,
+ "word": "came",
+ "punct": "came",
+ "index": 2810
+ },
+ {
+ "start": 2584.04,
+ "end": 2584.4,
+ "confidence": 0,
+ "word": "together",
+ "punct": "together",
+ "index": 2811
+ },
+ {
+ "start": 2584.4,
+ "end": 2584.54,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2812
+ },
+ {
+ "start": 2584.54,
+ "end": 2584.76,
+ "confidence": 0,
+ "word": "raise",
+ "punct": "raise",
+ "index": 2813
+ },
+ {
+ "start": 2584.76,
+ "end": 2584.98,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 2814
+ },
+ {
+ "start": 2584.98,
+ "end": 2585.12,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 2815
+ },
+ {
+ "start": 2585.12,
+ "end": 2585.72,
+ "confidence": 0,
+ "word": "20,000,000",
+ "punct": "20,000,000",
+ "index": 2816
+ },
+ {
+ "start": 2585.72,
+ "end": 2586.1,
+ "confidence": 0,
+ "word": "dollars",
+ "punct": "dollars",
+ "index": 2817
+ },
+ {
+ "start": 2586.1,
+ "end": 2586.34,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2818
+ },
+ {
+ "start": 2586.34,
+ "end": 2586.7,
+ "confidence": 0,
+ "word": "relief",
+ "punct": "relief",
+ "index": 2819
+ },
+ {
+ "start": 2586.7,
+ "end": 2587.8,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2820
+ },
+ {
+ "start": 2587.8,
+ "end": 2588,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 2821
+ },
+ {
+ "start": 2588,
+ "end": 2588.14,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 2822
+ },
+ {
+ "start": 2588.14,
+ "end": 2589.04,
+ "confidence": 0,
+ "word": "70,000,000",
+ "punct": "70,000,000",
+ "index": 2823
+ },
+ {
+ "start": 2589.04,
+ "end": 2589.78,
+ "confidence": 0,
+ "word": "small",
+ "punct": "small",
+ "index": 2824
+ },
+ {
+ "start": 2589.78,
+ "end": 2590.34,
+ "confidence": 0,
+ "word": "businesses",
+ "punct": "businesses",
+ "index": 2825
+ },
+ {
+ "start": 2590.34,
+ "end": 2591,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 2826
+ },
+ {
+ "start": 2591,
+ "end": 2591.5,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 2827
+ },
+ {
+ "start": 2591.5,
+ "end": 2591.94,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2828
+ },
+ {
+ "start": 2591.94,
+ "end": 2592.26,
+ "confidence": 0,
+ "word": "create",
+ "punct": "create",
+ "index": 2829
+ },
+ {
+ "start": 2592.26,
+ "end": 2592.72,
+ "confidence": 0,
+ "word": "jobs",
+ "punct": "jobs",
+ "index": 2830
+ },
+ {
+ "start": 2592.72,
+ "end": 2593.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2831
+ },
+ {
+ "start": 2593.26,
+ "end": 2594.34,
+ "confidence": 0,
+ "word": "grow",
+ "punct": "grow.",
+ "index": 2832
+ }
+ ],
+ "start": 2582.1
+ }
+ },
+ {
+ "key": "2qbn2",
+ "text": "But it's clear now that we didn't do enough to prevent these tools from being used for harm as well.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2594.34,
+ "end": 2595.22,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 2833
+ },
+ {
+ "start": 2595.22,
+ "end": 2595.38,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 2834
+ },
+ {
+ "start": 2595.38,
+ "end": 2595.66,
+ "confidence": 0,
+ "word": "clear",
+ "punct": "clear",
+ "index": 2835
+ },
+ {
+ "start": 2595.66,
+ "end": 2595.86,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 2836
+ },
+ {
+ "start": 2595.86,
+ "end": 2596.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2837
+ },
+ {
+ "start": 2596.2,
+ "end": 2596.3,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2838
+ },
+ {
+ "start": 2596.3,
+ "end": 2596.6,
+ "confidence": 0,
+ "word": "didn't",
+ "punct": "didn't",
+ "index": 2839
+ },
+ {
+ "start": 2596.6,
+ "end": 2596.76,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 2840
+ },
+ {
+ "start": 2596.76,
+ "end": 2597.16,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough",
+ "index": 2841
+ },
+ {
+ "start": 2597.16,
+ "end": 2597.36,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2842
+ },
+ {
+ "start": 2597.36,
+ "end": 2597.68,
+ "confidence": 0,
+ "word": "prevent",
+ "punct": "prevent",
+ "index": 2843
+ },
+ {
+ "start": 2597.68,
+ "end": 2597.92,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 2844
+ },
+ {
+ "start": 2597.92,
+ "end": 2598.28,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 2845
+ },
+ {
+ "start": 2598.28,
+ "end": 2598.52,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 2846
+ },
+ {
+ "start": 2598.52,
+ "end": 2598.74,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 2847
+ },
+ {
+ "start": 2598.74,
+ "end": 2599,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 2848
+ },
+ {
+ "start": 2599,
+ "end": 2599.18,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2849
+ },
+ {
+ "start": 2599.18,
+ "end": 2599.48,
+ "confidence": 0,
+ "word": "harm",
+ "punct": "harm",
+ "index": 2850
+ },
+ {
+ "start": 2599.48,
+ "end": 2599.74,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 2851
+ },
+ {
+ "start": 2599.74,
+ "end": 2599.96,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well.",
+ "index": 2852
+ }
+ ],
+ "start": 2594.34
+ }
+ },
+ {
+ "key": "e57p6",
+ "text": "And that goes for Fake News for foreign interference in elections and hate speech is well as developers and data privacy, we didn't take a broad enough view of our responsibility.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2599.96,
+ "end": 2600.68,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 2853
+ },
+ {
+ "start": 2600.68,
+ "end": 2600.84,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2854
+ },
+ {
+ "start": 2600.84,
+ "end": 2601.12,
+ "confidence": 0,
+ "word": "goes",
+ "punct": "goes",
+ "index": 2855
+ },
+ {
+ "start": 2601.12,
+ "end": 2601.34,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2856
+ },
+ {
+ "start": 2601.34,
+ "end": 2601.7,
+ "confidence": 0,
+ "word": "fake",
+ "punct": "Fake",
+ "index": 2857
+ },
+ {
+ "start": 2601.7,
+ "end": 2602.06,
+ "confidence": 0,
+ "word": "news",
+ "punct": "News",
+ "index": 2858
+ },
+ {
+ "start": 2602.06,
+ "end": 2602.72,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2859
+ },
+ {
+ "start": 2602.72,
+ "end": 2603,
+ "confidence": 0,
+ "word": "foreign",
+ "punct": "foreign",
+ "index": 2860
+ },
+ {
+ "start": 2603,
+ "end": 2603.52,
+ "confidence": 0,
+ "word": "interference",
+ "punct": "interference",
+ "index": 2861
+ },
+ {
+ "start": 2603.52,
+ "end": 2603.62,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 2862
+ },
+ {
+ "start": 2603.62,
+ "end": 2604.06,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections",
+ "index": 2863
+ },
+ {
+ "start": 2604.06,
+ "end": 2604.28,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2864
+ },
+ {
+ "start": 2604.28,
+ "end": 2604.54,
+ "confidence": 0,
+ "word": "hate",
+ "punct": "hate",
+ "index": 2865
+ },
+ {
+ "start": 2604.54,
+ "end": 2604.86,
+ "confidence": 0,
+ "word": "speech",
+ "punct": "speech",
+ "index": 2866
+ },
+ {
+ "start": 2604.86,
+ "end": 2605.63,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 2867
+ },
+ {
+ "start": 2605.63,
+ "end": 2605.89,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well",
+ "index": 2868
+ },
+ {
+ "start": 2605.89,
+ "end": 2606.15,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 2869
+ },
+ {
+ "start": 2606.15,
+ "end": 2606.71,
+ "confidence": 0,
+ "word": "developers",
+ "punct": "developers",
+ "index": 2870
+ },
+ {
+ "start": 2606.71,
+ "end": 2606.83,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2871
+ },
+ {
+ "start": 2606.83,
+ "end": 2607.09,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 2872
+ },
+ {
+ "start": 2607.09,
+ "end": 2607.81,
+ "confidence": 0,
+ "word": "privacy,",
+ "punct": "privacy,",
+ "index": 2873
+ },
+ {
+ "start": 2607.81,
+ "end": 2608.85,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2874
+ },
+ {
+ "start": 2608.85,
+ "end": 2609.13,
+ "confidence": 0,
+ "word": "didn't",
+ "punct": "didn't",
+ "index": 2875
+ },
+ {
+ "start": 2609.13,
+ "end": 2609.41,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 2876
+ },
+ {
+ "start": 2609.41,
+ "end": 2609.59,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2877
+ },
+ {
+ "start": 2609.59,
+ "end": 2609.89,
+ "confidence": 0,
+ "word": "broad",
+ "punct": "broad",
+ "index": 2878
+ },
+ {
+ "start": 2609.89,
+ "end": 2610.13,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough",
+ "index": 2879
+ },
+ {
+ "start": 2610.13,
+ "end": 2610.37,
+ "confidence": 0,
+ "word": "view",
+ "punct": "view",
+ "index": 2880
+ },
+ {
+ "start": 2610.37,
+ "end": 2610.49,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2881
+ },
+ {
+ "start": 2610.49,
+ "end": 2610.67,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 2882
+ },
+ {
+ "start": 2610.67,
+ "end": 2611.51,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility.",
+ "index": 2883
+ }
+ ],
+ "start": 2599.96
+ }
+ },
+ {
+ "key": "7ime7",
+ "text": "And that was a big mistake.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2611.51,
+ "end": 2612.23,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 2884
+ },
+ {
+ "start": 2612.23,
+ "end": 2612.41,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2885
+ },
+ {
+ "start": 2612.41,
+ "end": 2612.57,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 2886
+ },
+ {
+ "start": 2612.57,
+ "end": 2612.65,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2887
+ },
+ {
+ "start": 2612.65,
+ "end": 2612.93,
+ "confidence": 0,
+ "word": "big",
+ "punct": "big",
+ "index": 2888
+ },
+ {
+ "start": 2612.93,
+ "end": 2613.35,
+ "confidence": 0,
+ "word": "mistake",
+ "punct": "mistake.",
+ "index": 2889
+ }
+ ],
+ "start": 2611.51
+ }
+ },
+ {
+ "key": "fdl2c",
+ "text": "And it was my mistake.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2613.35,
+ "end": 2614.21,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 2890
+ },
+ {
+ "start": 2614.21,
+ "end": 2614.31,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 2891
+ },
+ {
+ "start": 2614.31,
+ "end": 2614.45,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 2892
+ },
+ {
+ "start": 2614.45,
+ "end": 2614.65,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 2893
+ },
+ {
+ "start": 2614.65,
+ "end": 2615.05,
+ "confidence": 0,
+ "word": "mistake",
+ "punct": "mistake.",
+ "index": 2894
+ }
+ ],
+ "start": 2613.35
+ }
+ },
+ {
+ "key": "a8dei",
+ "text": "And I'm sorry, I started Facebook, I run it and I'm responsible for what happens here.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2615.05,
+ "end": 2615.69,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 2895
+ },
+ {
+ "start": 2615.69,
+ "end": 2615.85,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 2896
+ },
+ {
+ "start": 2615.85,
+ "end": 2616.92,
+ "confidence": 0,
+ "word": "sorry,",
+ "punct": "sorry,",
+ "index": 2897
+ },
+ {
+ "start": 2616.92,
+ "end": 2616.96,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2898
+ },
+ {
+ "start": 2616.96,
+ "end": 2618.12,
+ "confidence": 0,
+ "word": "started",
+ "punct": "started",
+ "index": 2899
+ },
+ {
+ "start": 2618.12,
+ "end": 2618.56,
+ "confidence": 0,
+ "word": "facebook,",
+ "punct": "Facebook,",
+ "index": 2900
+ },
+ {
+ "start": 2618.56,
+ "end": 2619.54,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2901
+ },
+ {
+ "start": 2619.54,
+ "end": 2619.76,
+ "confidence": 0,
+ "word": "run",
+ "punct": "run",
+ "index": 2902
+ },
+ {
+ "start": 2619.76,
+ "end": 2619.9,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 2903
+ },
+ {
+ "start": 2619.9,
+ "end": 2620.68,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2904
+ },
+ {
+ "start": 2620.68,
+ "end": 2620.86,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 2905
+ },
+ {
+ "start": 2620.86,
+ "end": 2621.48,
+ "confidence": 0,
+ "word": "responsible",
+ "punct": "responsible",
+ "index": 2906
+ },
+ {
+ "start": 2621.48,
+ "end": 2621.64,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2907
+ },
+ {
+ "start": 2621.64,
+ "end": 2621.78,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 2908
+ },
+ {
+ "start": 2621.78,
+ "end": 2622.1,
+ "confidence": 0,
+ "word": "happens",
+ "punct": "happens",
+ "index": 2909
+ },
+ {
+ "start": 2622.1,
+ "end": 2623.28,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here.",
+ "index": 2910
+ }
+ ],
+ "start": 2615.05
+ }
+ },
+ {
+ "key": "7g6a6",
+ "text": "So now we have to go through all of our relationship with people and make sure that we're taking a broad enough for you of our responsibility it's not enough to just connect people.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2623.28,
+ "end": 2624.32,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 2911
+ },
+ {
+ "start": 2624.32,
+ "end": 2624.58,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 2912
+ },
+ {
+ "start": 2624.58,
+ "end": 2625.3,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2913
+ },
+ {
+ "start": 2625.3,
+ "end": 2625.48,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2914
+ },
+ {
+ "start": 2625.48,
+ "end": 2625.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2915
+ },
+ {
+ "start": 2625.58,
+ "end": 2625.68,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 2916
+ },
+ {
+ "start": 2625.68,
+ "end": 2626.74,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 2917
+ },
+ {
+ "start": 2626.74,
+ "end": 2627.7,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 2918
+ },
+ {
+ "start": 2627.7,
+ "end": 2627.78,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2919
+ },
+ {
+ "start": 2627.78,
+ "end": 2627.92,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 2920
+ },
+ {
+ "start": 2627.92,
+ "end": 2628.48,
+ "confidence": 0,
+ "word": "relationship",
+ "punct": "relationship",
+ "index": 2921
+ },
+ {
+ "start": 2628.48,
+ "end": 2628.68,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 2922
+ },
+ {
+ "start": 2628.68,
+ "end": 2628.94,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 2923
+ },
+ {
+ "start": 2628.94,
+ "end": 2629.18,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2924
+ },
+ {
+ "start": 2629.18,
+ "end": 2630.1,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 2925
+ },
+ {
+ "start": 2630.1,
+ "end": 2630.26,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 2926
+ },
+ {
+ "start": 2630.26,
+ "end": 2630.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2927
+ },
+ {
+ "start": 2630.38,
+ "end": 2630.54,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 2928
+ },
+ {
+ "start": 2630.54,
+ "end": 2630.76,
+ "confidence": 0,
+ "word": "taking",
+ "punct": "taking",
+ "index": 2929
+ },
+ {
+ "start": 2630.76,
+ "end": 2630.82,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2930
+ },
+ {
+ "start": 2630.82,
+ "end": 2631.06,
+ "confidence": 0,
+ "word": "broad",
+ "punct": "broad",
+ "index": 2931
+ },
+ {
+ "start": 2631.06,
+ "end": 2631.28,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough",
+ "index": 2932
+ },
+ {
+ "start": 2631.28,
+ "end": 2631.44,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 2933
+ },
+ {
+ "start": 2631.44,
+ "end": 2631.66,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 2934
+ },
+ {
+ "start": 2631.66,
+ "end": 2631.86,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 2935
+ },
+ {
+ "start": 2631.86,
+ "end": 2632.02,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 2936
+ },
+ {
+ "start": 2632.02,
+ "end": 2633.5,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 2937
+ },
+ {
+ "start": 2633.5,
+ "end": 2634.4,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 2938
+ },
+ {
+ "start": 2634.4,
+ "end": 2634.6,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 2939
+ },
+ {
+ "start": 2634.6,
+ "end": 2634.88,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough",
+ "index": 2940
+ },
+ {
+ "start": 2634.88,
+ "end": 2635,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2941
+ },
+ {
+ "start": 2635,
+ "end": 2635.16,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 2942
+ },
+ {
+ "start": 2635.16,
+ "end": 2635.44,
+ "confidence": 0,
+ "word": "connect",
+ "punct": "connect",
+ "index": 2943
+ },
+ {
+ "start": 2635.44,
+ "end": 2635.7,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people.",
+ "index": 2944
+ }
+ ],
+ "start": 2623.28
+ }
+ },
+ {
+ "key": "2s3dv",
+ "text": "We have to make sure that those connections are positive it's not enough to just give people a voice, we need to make sure that people aren't using it to harm other people or to spread misinformation and it's.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2635.7,
+ "end": 2636.2,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 2945
+ },
+ {
+ "start": 2636.2,
+ "end": 2636.36,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 2946
+ },
+ {
+ "start": 2636.36,
+ "end": 2636.44,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2947
+ },
+ {
+ "start": 2636.44,
+ "end": 2636.58,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 2948
+ },
+ {
+ "start": 2636.58,
+ "end": 2636.74,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 2949
+ },
+ {
+ "start": 2636.74,
+ "end": 2636.9,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2950
+ },
+ {
+ "start": 2636.9,
+ "end": 2637.08,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 2951
+ },
+ {
+ "start": 2637.08,
+ "end": 2637.5,
+ "confidence": 0,
+ "word": "connections",
+ "punct": "connections",
+ "index": 2952
+ },
+ {
+ "start": 2637.5,
+ "end": 2637.66,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 2953
+ },
+ {
+ "start": 2637.66,
+ "end": 2638.12,
+ "confidence": 0,
+ "word": "positive",
+ "punct": "positive",
+ "index": 2954
+ },
+ {
+ "start": 2638.12,
+ "end": 2639.22,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 2955
+ },
+ {
+ "start": 2639.22,
+ "end": 2639.4,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 2956
+ },
+ {
+ "start": 2639.4,
+ "end": 2639.66,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough",
+ "index": 2957
+ },
+ {
+ "start": 2639.66,
+ "end": 2639.82,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2958
+ },
+ {
+ "start": 2639.82,
+ "end": 2639.98,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 2959
+ },
+ {
+ "start": 2639.98,
+ "end": 2640.18,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 2960
+ },
+ {
+ "start": 2640.18,
+ "end": 2640.4,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 2961
+ },
+ {
+ "start": 2640.4,
+ "end": 2640.46,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 2962
+ },
+ {
+ "start": 2640.46,
+ "end": 2640.8,
+ "confidence": 0,
+ "word": "voice,",
+ "punct": "voice,",
+ "index": 2963
+ },
+ {
+ "start": 2640.8,
+ "end": 2641.46,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 2964
+ },
+ {
+ "start": 2641.46,
+ "end": 2641.66,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 2965
+ },
+ {
+ "start": 2641.66,
+ "end": 2641.74,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2966
+ },
+ {
+ "start": 2641.74,
+ "end": 2641.88,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 2967
+ },
+ {
+ "start": 2641.88,
+ "end": 2642.1,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 2968
+ },
+ {
+ "start": 2642.1,
+ "end": 2642.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2969
+ },
+ {
+ "start": 2642.32,
+ "end": 2642.54,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 2970
+ },
+ {
+ "start": 2642.54,
+ "end": 2642.76,
+ "confidence": 0,
+ "word": "aren't",
+ "punct": "aren't",
+ "index": 2971
+ },
+ {
+ "start": 2642.76,
+ "end": 2643.02,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 2972
+ },
+ {
+ "start": 2643.02,
+ "end": 2643.12,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 2973
+ },
+ {
+ "start": 2643.12,
+ "end": 2643.22,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2974
+ },
+ {
+ "start": 2643.22,
+ "end": 2643.5,
+ "confidence": 0,
+ "word": "harm",
+ "punct": "harm",
+ "index": 2975
+ },
+ {
+ "start": 2643.5,
+ "end": 2643.74,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 2976
+ },
+ {
+ "start": 2643.74,
+ "end": 2644.24,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 2977
+ },
+ {
+ "start": 2644.24,
+ "end": 2644.98,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 2978
+ },
+ {
+ "start": 2644.98,
+ "end": 2645.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2979
+ },
+ {
+ "start": 2645.12,
+ "end": 2645.4,
+ "confidence": 0,
+ "word": "spread",
+ "punct": "spread",
+ "index": 2980
+ },
+ {
+ "start": 2645.4,
+ "end": 2646.14,
+ "confidence": 0,
+ "word": "misinformation",
+ "punct": "misinformation",
+ "index": 2981
+ },
+ {
+ "start": 2646.14,
+ "end": 2647,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 2982
+ },
+ {
+ "start": 2647,
+ "end": 2647.16,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's.",
+ "index": 2983
+ }
+ ],
+ "start": 2635.7
+ }
+ },
+ {
+ "key": "cpcnt",
+ "text": "Not enough to just give people control over their information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2647.16,
+ "end": 2647.34,
+ "confidence": 0,
+ "word": "not",
+ "punct": "Not",
+ "index": 2984
+ },
+ {
+ "start": 2647.34,
+ "end": 2647.6,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough",
+ "index": 2985
+ },
+ {
+ "start": 2647.6,
+ "end": 2647.74,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2986
+ },
+ {
+ "start": 2647.74,
+ "end": 2647.92,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 2987
+ },
+ {
+ "start": 2647.92,
+ "end": 2648.12,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 2988
+ },
+ {
+ "start": 2648.12,
+ "end": 2648.36,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 2989
+ },
+ {
+ "start": 2648.36,
+ "end": 2648.8,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 2990
+ },
+ {
+ "start": 2648.8,
+ "end": 2648.98,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 2991
+ },
+ {
+ "start": 2648.98,
+ "end": 2649.16,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 2992
+ },
+ {
+ "start": 2649.16,
+ "end": 2649.68,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 2993
+ }
+ ],
+ "start": 2647.16
+ }
+ },
+ {
+ "key": "6r5h9",
+ "text": "We need to make sure that the developers they share it with protect their information too across the board.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2649.68,
+ "end": 2650.54,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 2994
+ },
+ {
+ "start": 2650.54,
+ "end": 2650.72,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 2995
+ },
+ {
+ "start": 2650.72,
+ "end": 2650.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 2996
+ },
+ {
+ "start": 2650.8,
+ "end": 2650.96,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 2997
+ },
+ {
+ "start": 2650.96,
+ "end": 2651.22,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 2998
+ },
+ {
+ "start": 2651.22,
+ "end": 2651.42,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 2999
+ },
+ {
+ "start": 2651.42,
+ "end": 2651.54,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3000
+ },
+ {
+ "start": 2651.54,
+ "end": 2652.04,
+ "confidence": 0,
+ "word": "developers",
+ "punct": "developers",
+ "index": 3001
+ },
+ {
+ "start": 2652.04,
+ "end": 2652.2,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 3002
+ },
+ {
+ "start": 2652.2,
+ "end": 2652.46,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 3003
+ },
+ {
+ "start": 2652.46,
+ "end": 2652.56,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 3004
+ },
+ {
+ "start": 2652.56,
+ "end": 2652.76,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 3005
+ },
+ {
+ "start": 2652.76,
+ "end": 2653.42,
+ "confidence": 0,
+ "word": "protect",
+ "punct": "protect",
+ "index": 3006
+ },
+ {
+ "start": 2653.42,
+ "end": 2653.62,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 3007
+ },
+ {
+ "start": 2653.62,
+ "end": 2654.12,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 3008
+ },
+ {
+ "start": 2654.12,
+ "end": 2654.98,
+ "confidence": 0,
+ "word": "too",
+ "punct": "too",
+ "index": 3009
+ },
+ {
+ "start": 2654.98,
+ "end": 2656,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 3010
+ },
+ {
+ "start": 2656,
+ "end": 2656.16,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3011
+ },
+ {
+ "start": 2656.16,
+ "end": 2656.42,
+ "confidence": 0,
+ "word": "board",
+ "punct": "board.",
+ "index": 3012
+ }
+ ],
+ "start": 2649.68
+ }
+ },
+ {
+ "key": "bb58s",
+ "text": "We have a responsibility to not just build tools but to make sure that they are used for good.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2656.42,
+ "end": 2657.18,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 3013
+ },
+ {
+ "start": 2657.18,
+ "end": 2657.34,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3014
+ },
+ {
+ "start": 2657.34,
+ "end": 2657.38,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3015
+ },
+ {
+ "start": 2657.38,
+ "end": 2658.14,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 3016
+ },
+ {
+ "start": 2658.14,
+ "end": 2658.3,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3017
+ },
+ {
+ "start": 2658.3,
+ "end": 2658.52,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 3018
+ },
+ {
+ "start": 2658.52,
+ "end": 2658.68,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 3019
+ },
+ {
+ "start": 2658.68,
+ "end": 2658.94,
+ "confidence": 0,
+ "word": "build",
+ "punct": "build",
+ "index": 3020
+ },
+ {
+ "start": 2658.94,
+ "end": 2659.4,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 3021
+ },
+ {
+ "start": 2659.4,
+ "end": 2660.1,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 3022
+ },
+ {
+ "start": 2660.1,
+ "end": 2660.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3023
+ },
+ {
+ "start": 2660.28,
+ "end": 2660.46,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 3024
+ },
+ {
+ "start": 2660.46,
+ "end": 2660.66,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 3025
+ },
+ {
+ "start": 2660.66,
+ "end": 2660.84,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3026
+ },
+ {
+ "start": 2660.84,
+ "end": 2660.96,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 3027
+ },
+ {
+ "start": 2660.96,
+ "end": 2661.06,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 3028
+ },
+ {
+ "start": 2661.06,
+ "end": 2661.32,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 3029
+ },
+ {
+ "start": 2661.32,
+ "end": 2661.52,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 3030
+ },
+ {
+ "start": 2661.52,
+ "end": 2662.66,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good.",
+ "index": 3031
+ }
+ ],
+ "start": 2656.42
+ }
+ },
+ {
+ "key": "foabu",
+ "text": "It will take some time to work through all the changes.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2662.66,
+ "end": 2663.62,
+ "confidence": 0,
+ "word": "it",
+ "punct": "It",
+ "index": 3032
+ },
+ {
+ "start": 2663.62,
+ "end": 2663.82,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 3033
+ },
+ {
+ "start": 2663.82,
+ "end": 2663.98,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 3034
+ },
+ {
+ "start": 2663.98,
+ "end": 2664.2,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 3035
+ },
+ {
+ "start": 2664.2,
+ "end": 2664.46,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 3036
+ },
+ {
+ "start": 2664.46,
+ "end": 2664.6,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3037
+ },
+ {
+ "start": 2664.6,
+ "end": 2664.76,
+ "confidence": 0,
+ "word": "work",
+ "punct": "work",
+ "index": 3038
+ },
+ {
+ "start": 2664.76,
+ "end": 2664.98,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 3039
+ },
+ {
+ "start": 2664.98,
+ "end": 2665.1,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 3040
+ },
+ {
+ "start": 2665.1,
+ "end": 2665.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3041
+ },
+ {
+ "start": 2665.22,
+ "end": 2665.56,
+ "confidence": 0,
+ "word": "changes",
+ "punct": "changes.",
+ "index": 3042
+ }
+ ],
+ "start": 2662.66
+ }
+ },
+ {
+ "key": "509m",
+ "text": "We need to make across the company, but I'm committed to getting this right.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2665.56,
+ "end": 2665.72,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 3043
+ },
+ {
+ "start": 2665.72,
+ "end": 2665.9,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 3044
+ },
+ {
+ "start": 2665.9,
+ "end": 2665.98,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3045
+ },
+ {
+ "start": 2665.98,
+ "end": 2666.16,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 3046
+ },
+ {
+ "start": 2666.16,
+ "end": 2666.44,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 3047
+ },
+ {
+ "start": 2666.44,
+ "end": 2666.62,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3048
+ },
+ {
+ "start": 2666.62,
+ "end": 2666.94,
+ "confidence": 0,
+ "word": "company,",
+ "punct": "company,",
+ "index": 3049
+ },
+ {
+ "start": 2666.94,
+ "end": 2667.62,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 3050
+ },
+ {
+ "start": 2667.62,
+ "end": 2667.88,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 3051
+ },
+ {
+ "start": 2667.88,
+ "end": 2668.26,
+ "confidence": 0,
+ "word": "committed",
+ "punct": "committed",
+ "index": 3052
+ },
+ {
+ "start": 2668.26,
+ "end": 2668.4,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3053
+ },
+ {
+ "start": 2668.4,
+ "end": 2668.68,
+ "confidence": 0,
+ "word": "getting",
+ "punct": "getting",
+ "index": 3054
+ },
+ {
+ "start": 2668.68,
+ "end": 2668.88,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 3055
+ },
+ {
+ "start": 2668.88,
+ "end": 2669.94,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right.",
+ "index": 3056
+ }
+ ],
+ "start": 2665.56
+ }
+ },
+ {
+ "key": "a5hf4",
+ "text": "This includes the basic responsibility of protecting people's information which we failed to do with Cambridge Analytica so here are a few things that we are doing to address this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2669.94,
+ "end": 2670.88,
+ "confidence": 0,
+ "word": "this",
+ "punct": "This",
+ "index": 3057
+ },
+ {
+ "start": 2670.88,
+ "end": 2671.28,
+ "confidence": 0,
+ "word": "includes",
+ "punct": "includes",
+ "index": 3058
+ },
+ {
+ "start": 2671.28,
+ "end": 2671.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3059
+ },
+ {
+ "start": 2671.44,
+ "end": 2671.76,
+ "confidence": 0,
+ "word": "basic",
+ "punct": "basic",
+ "index": 3060
+ },
+ {
+ "start": 2671.76,
+ "end": 2672.58,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 3061
+ },
+ {
+ "start": 2672.58,
+ "end": 2673.14,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3062
+ },
+ {
+ "start": 2673.14,
+ "end": 2673.66,
+ "confidence": 0,
+ "word": "protecting",
+ "punct": "protecting",
+ "index": 3063
+ },
+ {
+ "start": 2673.66,
+ "end": 2673.98,
+ "confidence": 0,
+ "word": "people's",
+ "punct": "people's",
+ "index": 3064
+ },
+ {
+ "start": 2673.98,
+ "end": 2674.56,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 3065
+ },
+ {
+ "start": 2674.56,
+ "end": 2675.24,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 3066
+ },
+ {
+ "start": 2675.24,
+ "end": 2675.36,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3067
+ },
+ {
+ "start": 2675.36,
+ "end": 2675.74,
+ "confidence": 0,
+ "word": "failed",
+ "punct": "failed",
+ "index": 3068
+ },
+ {
+ "start": 2675.74,
+ "end": 2675.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3069
+ },
+ {
+ "start": 2675.88,
+ "end": 2676,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 3070
+ },
+ {
+ "start": 2676,
+ "end": 2676.28,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 3071
+ },
+ {
+ "start": 2676.28,
+ "end": 2676.68,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 3072
+ },
+ {
+ "start": 2676.68,
+ "end": 2677.36,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 3073
+ },
+ {
+ "start": 2677.36,
+ "end": 2678.46,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 3074
+ },
+ {
+ "start": 2678.46,
+ "end": 2678.92,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 3075
+ },
+ {
+ "start": 2678.92,
+ "end": 2679.18,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 3076
+ },
+ {
+ "start": 2679.18,
+ "end": 2679.3,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3077
+ },
+ {
+ "start": 2679.3,
+ "end": 2679.6,
+ "confidence": 0,
+ "word": "few",
+ "punct": "few",
+ "index": 3078
+ },
+ {
+ "start": 2679.6,
+ "end": 2679.92,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 3079
+ },
+ {
+ "start": 2679.92,
+ "end": 2680.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3080
+ },
+ {
+ "start": 2680.2,
+ "end": 2680.3,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3081
+ },
+ {
+ "start": 2680.3,
+ "end": 2680.46,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 3082
+ },
+ {
+ "start": 2680.46,
+ "end": 2681.18,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 3083
+ },
+ {
+ "start": 2681.18,
+ "end": 2681.76,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3084
+ },
+ {
+ "start": 2681.76,
+ "end": 2682.24,
+ "confidence": 0,
+ "word": "address",
+ "punct": "address",
+ "index": 3085
+ },
+ {
+ "start": 2682.24,
+ "end": 2682.46,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 3086
+ }
+ ],
+ "start": 2669.94
+ }
+ },
+ {
+ "key": "e3k8k",
+ "text": "And to prevent it from happening again first we're getting to the bottom of exactly what Cambridge Analytica did and telling everyone affected.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2682.46,
+ "end": 2682.8,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3087
+ },
+ {
+ "start": 2682.8,
+ "end": 2682.92,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3088
+ },
+ {
+ "start": 2682.92,
+ "end": 2683.3,
+ "confidence": 0,
+ "word": "prevent",
+ "punct": "prevent",
+ "index": 3089
+ },
+ {
+ "start": 2683.3,
+ "end": 2683.46,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 3090
+ },
+ {
+ "start": 2683.46,
+ "end": 2683.64,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 3091
+ },
+ {
+ "start": 2683.64,
+ "end": 2684.02,
+ "confidence": 0,
+ "word": "happening",
+ "punct": "happening",
+ "index": 3092
+ },
+ {
+ "start": 2684.02,
+ "end": 2684.56,
+ "confidence": 0,
+ "word": "again",
+ "punct": "again",
+ "index": 3093
+ },
+ {
+ "start": 2684.56,
+ "end": 2685.56,
+ "confidence": 0,
+ "word": "first",
+ "punct": "first",
+ "index": 3094
+ },
+ {
+ "start": 2685.56,
+ "end": 2686.54,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 3095
+ },
+ {
+ "start": 2686.54,
+ "end": 2686.76,
+ "confidence": 0,
+ "word": "getting",
+ "punct": "getting",
+ "index": 3096
+ },
+ {
+ "start": 2686.76,
+ "end": 2686.84,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3097
+ },
+ {
+ "start": 2686.84,
+ "end": 2686.96,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3098
+ },
+ {
+ "start": 2686.96,
+ "end": 2687.24,
+ "confidence": 0,
+ "word": "bottom",
+ "punct": "bottom",
+ "index": 3099
+ },
+ {
+ "start": 2687.24,
+ "end": 2687.5,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3100
+ },
+ {
+ "start": 2687.5,
+ "end": 2688.04,
+ "confidence": 0,
+ "word": "exactly",
+ "punct": "exactly",
+ "index": 3101
+ },
+ {
+ "start": 2688.04,
+ "end": 2688.24,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 3102
+ },
+ {
+ "start": 2688.24,
+ "end": 2688.68,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 3103
+ },
+ {
+ "start": 2688.68,
+ "end": 2689.1,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 3104
+ },
+ {
+ "start": 2689.1,
+ "end": 2689.4,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 3105
+ },
+ {
+ "start": 2689.4,
+ "end": 2690.22,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3106
+ },
+ {
+ "start": 2690.22,
+ "end": 2690.52,
+ "confidence": 0,
+ "word": "telling",
+ "punct": "telling",
+ "index": 3107
+ },
+ {
+ "start": 2690.52,
+ "end": 2690.88,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 3108
+ },
+ {
+ "start": 2690.88,
+ "end": 2691.72,
+ "confidence": 0,
+ "word": "affected",
+ "punct": "affected.",
+ "index": 3109
+ }
+ ],
+ "start": 2682.46
+ }
+ },
+ {
+ "key": "3hiqk",
+ "text": "What we know now is that Cambridge Analytica improperly accessed some information about millions of Facebook members by buying it from an app developer, that information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2691.72,
+ "end": 2692.34,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 3110
+ },
+ {
+ "start": 2692.34,
+ "end": 2692.48,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3111
+ },
+ {
+ "start": 2692.48,
+ "end": 2692.62,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 3112
+ },
+ {
+ "start": 2692.62,
+ "end": 2692.82,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 3113
+ },
+ {
+ "start": 2692.82,
+ "end": 2693.34,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 3114
+ },
+ {
+ "start": 2693.34,
+ "end": 2693.52,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3115
+ },
+ {
+ "start": 2693.52,
+ "end": 2693.88,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 3116
+ },
+ {
+ "start": 2693.88,
+ "end": 2694.26,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 3117
+ },
+ {
+ "start": 2694.26,
+ "end": 2695.1,
+ "confidence": 0,
+ "word": "improperly",
+ "punct": "improperly",
+ "index": 3118
+ },
+ {
+ "start": 2695.1,
+ "end": 2695.6,
+ "confidence": 0,
+ "word": "accessed",
+ "punct": "accessed",
+ "index": 3119
+ },
+ {
+ "start": 2695.6,
+ "end": 2696.14,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 3120
+ },
+ {
+ "start": 2696.14,
+ "end": 2696.68,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 3121
+ },
+ {
+ "start": 2696.68,
+ "end": 2697.04,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 3122
+ },
+ {
+ "start": 2697.04,
+ "end": 2697.52,
+ "confidence": 0,
+ "word": "millions",
+ "punct": "millions",
+ "index": 3123
+ },
+ {
+ "start": 2697.52,
+ "end": 2697.66,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3124
+ },
+ {
+ "start": 2697.66,
+ "end": 2698.08,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 3125
+ },
+ {
+ "start": 2698.08,
+ "end": 2698.44,
+ "confidence": 0,
+ "word": "members",
+ "punct": "members",
+ "index": 3126
+ },
+ {
+ "start": 2698.44,
+ "end": 2699.2,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 3127
+ },
+ {
+ "start": 2699.2,
+ "end": 2699.54,
+ "confidence": 0,
+ "word": "buying",
+ "punct": "buying",
+ "index": 3128
+ },
+ {
+ "start": 2699.54,
+ "end": 2699.68,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 3129
+ },
+ {
+ "start": 2699.68,
+ "end": 2700.28,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 3130
+ },
+ {
+ "start": 2700.28,
+ "end": 2700.38,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 3131
+ },
+ {
+ "start": 2700.38,
+ "end": 2700.54,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 3132
+ },
+ {
+ "start": 2700.54,
+ "end": 2701.72,
+ "confidence": 0,
+ "word": "developer,",
+ "punct": "developer,",
+ "index": 3133
+ },
+ {
+ "start": 2701.72,
+ "end": 2702.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3134
+ },
+ {
+ "start": 2702.6,
+ "end": 2704.14,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 3135
+ }
+ ],
+ "start": 2691.72
+ }
+ },
+ {
+ "key": "fef18",
+ "text": "This was information that people generally share publicly on their Facebook pages, like names and profile picture and the pages they follow.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2704.14,
+ "end": 2705.12,
+ "confidence": 0,
+ "word": "this",
+ "punct": "This",
+ "index": 3136
+ },
+ {
+ "start": 2705.12,
+ "end": 2705.3,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 3137
+ },
+ {
+ "start": 2705.3,
+ "end": 2705.76,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 3138
+ },
+ {
+ "start": 2705.76,
+ "end": 2705.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3139
+ },
+ {
+ "start": 2705.94,
+ "end": 2706.22,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 3140
+ },
+ {
+ "start": 2706.22,
+ "end": 2706.68,
+ "confidence": 0,
+ "word": "generally",
+ "punct": "generally",
+ "index": 3141
+ },
+ {
+ "start": 2706.68,
+ "end": 2706.92,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 3142
+ },
+ {
+ "start": 2706.92,
+ "end": 2707.42,
+ "confidence": 0,
+ "word": "publicly",
+ "punct": "publicly",
+ "index": 3143
+ },
+ {
+ "start": 2707.42,
+ "end": 2707.68,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 3144
+ },
+ {
+ "start": 2707.68,
+ "end": 2707.88,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 3145
+ },
+ {
+ "start": 2707.88,
+ "end": 2708.24,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 3146
+ },
+ {
+ "start": 2708.24,
+ "end": 2708.62,
+ "confidence": 0,
+ "word": "pages,",
+ "punct": "pages,",
+ "index": 3147
+ },
+ {
+ "start": 2708.62,
+ "end": 2708.84,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 3148
+ },
+ {
+ "start": 2708.84,
+ "end": 2709.28,
+ "confidence": 0,
+ "word": "names",
+ "punct": "names",
+ "index": 3149
+ },
+ {
+ "start": 2709.28,
+ "end": 2710.16,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3150
+ },
+ {
+ "start": 2710.16,
+ "end": 2710.8,
+ "confidence": 0,
+ "word": "profile",
+ "punct": "profile",
+ "index": 3151
+ },
+ {
+ "start": 2710.8,
+ "end": 2711.14,
+ "confidence": 0,
+ "word": "picture",
+ "punct": "picture",
+ "index": 3152
+ },
+ {
+ "start": 2711.14,
+ "end": 2711.44,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3153
+ },
+ {
+ "start": 2711.44,
+ "end": 2711.56,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3154
+ },
+ {
+ "start": 2711.56,
+ "end": 2711.9,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages",
+ "index": 3155
+ },
+ {
+ "start": 2711.9,
+ "end": 2712.12,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 3156
+ },
+ {
+ "start": 2712.12,
+ "end": 2713.16,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow.",
+ "index": 3157
+ }
+ ],
+ "start": 2704.14
+ }
+ },
+ {
+ "key": "a02o4",
+ "text": "When we first contacted Cambridge Analytica.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2713.16,
+ "end": 2714.02,
+ "confidence": 0,
+ "word": "when",
+ "punct": "When",
+ "index": 3158
+ },
+ {
+ "start": 2714.02,
+ "end": 2714.12,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3159
+ },
+ {
+ "start": 2714.12,
+ "end": 2714.38,
+ "confidence": 0,
+ "word": "first",
+ "punct": "first",
+ "index": 3160
+ },
+ {
+ "start": 2714.38,
+ "end": 2714.98,
+ "confidence": 0,
+ "word": "contacted",
+ "punct": "contacted",
+ "index": 3161
+ },
+ {
+ "start": 2714.98,
+ "end": 2715.34,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 3162
+ },
+ {
+ "start": 2715.34,
+ "end": 2715.74,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica.",
+ "index": 3163
+ }
+ ],
+ "start": 2713.16
+ }
+ },
+ {
+ "key": "h9bg",
+ "text": "They told us that they had deleted the data about a month ago.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2715.74,
+ "end": 2716.72,
+ "confidence": 0,
+ "word": "they",
+ "punct": "They",
+ "index": 3164
+ },
+ {
+ "start": 2716.72,
+ "end": 2716.94,
+ "confidence": 0,
+ "word": "told",
+ "punct": "told",
+ "index": 3165
+ },
+ {
+ "start": 2716.94,
+ "end": 2717.08,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 3166
+ },
+ {
+ "start": 2717.08,
+ "end": 2717.24,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3167
+ },
+ {
+ "start": 2717.24,
+ "end": 2717.38,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 3168
+ },
+ {
+ "start": 2717.38,
+ "end": 2717.48,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 3169
+ },
+ {
+ "start": 2717.48,
+ "end": 2717.8,
+ "confidence": 0,
+ "word": "deleted",
+ "punct": "deleted",
+ "index": 3170
+ },
+ {
+ "start": 2717.8,
+ "end": 2717.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3171
+ },
+ {
+ "start": 2717.92,
+ "end": 2718.44,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 3172
+ },
+ {
+ "start": 2718.44,
+ "end": 2719.4,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 3173
+ },
+ {
+ "start": 2719.4,
+ "end": 2719.48,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3174
+ },
+ {
+ "start": 2719.48,
+ "end": 2719.68,
+ "confidence": 0,
+ "word": "month",
+ "punct": "month",
+ "index": 3175
+ },
+ {
+ "start": 2719.68,
+ "end": 2719.86,
+ "confidence": 0,
+ "word": "ago",
+ "punct": "ago.",
+ "index": 3176
+ }
+ ],
+ "start": 2715.74
+ }
+ },
+ {
+ "key": "1nc3b",
+ "text": "We heard new reports that suggested that wasn't true.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2719.86,
+ "end": 2720.28,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 3177
+ },
+ {
+ "start": 2720.28,
+ "end": 2720.48,
+ "confidence": 0,
+ "word": "heard",
+ "punct": "heard",
+ "index": 3178
+ },
+ {
+ "start": 2720.48,
+ "end": 2720.68,
+ "confidence": 0,
+ "word": "new",
+ "punct": "new",
+ "index": 3179
+ },
+ {
+ "start": 2720.68,
+ "end": 2721.12,
+ "confidence": 0,
+ "word": "reports",
+ "punct": "reports",
+ "index": 3180
+ },
+ {
+ "start": 2721.12,
+ "end": 2721.56,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3181
+ },
+ {
+ "start": 2721.56,
+ "end": 2722.04,
+ "confidence": 0,
+ "word": "suggested",
+ "punct": "suggested",
+ "index": 3182
+ },
+ {
+ "start": 2722.04,
+ "end": 2722.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3183
+ },
+ {
+ "start": 2722.18,
+ "end": 2722.44,
+ "confidence": 0,
+ "word": "wasn't",
+ "punct": "wasn't",
+ "index": 3184
+ },
+ {
+ "start": 2722.44,
+ "end": 2722.72,
+ "confidence": 0,
+ "word": "true",
+ "punct": "true.",
+ "index": 3185
+ }
+ ],
+ "start": 2719.86
+ }
+ },
+ {
+ "key": "4s19m",
+ "text": "And now we're working with governments in the U s the UK and around the world to do a full audit of what they've done.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2722.72,
+ "end": 2723.68,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3186
+ },
+ {
+ "start": 2723.68,
+ "end": 2724,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 3187
+ },
+ {
+ "start": 2724,
+ "end": 2724.32,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 3188
+ },
+ {
+ "start": 2724.32,
+ "end": 2724.56,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 3189
+ },
+ {
+ "start": 2724.56,
+ "end": 2724.7,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 3190
+ },
+ {
+ "start": 2724.7,
+ "end": 2725.12,
+ "confidence": 0,
+ "word": "governments",
+ "punct": "governments",
+ "index": 3191
+ },
+ {
+ "start": 2725.12,
+ "end": 2725.24,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 3192
+ },
+ {
+ "start": 2725.24,
+ "end": 2725.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3193
+ },
+ {
+ "start": 2725.36,
+ "end": 2725.48,
+ "confidence": 0,
+ "word": "u",
+ "punct": "U",
+ "index": 3194
+ },
+ {
+ "start": 2725.48,
+ "end": 2725.6,
+ "confidence": 0,
+ "word": "s",
+ "punct": "s",
+ "index": 3195
+ },
+ {
+ "start": 2725.6,
+ "end": 2725.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3196
+ },
+ {
+ "start": 2725.88,
+ "end": 2726.34,
+ "confidence": 0,
+ "word": "uk",
+ "punct": "UK",
+ "index": 3197
+ },
+ {
+ "start": 2726.34,
+ "end": 2727,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3198
+ },
+ {
+ "start": 2727,
+ "end": 2727.26,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 3199
+ },
+ {
+ "start": 2727.26,
+ "end": 2727.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3200
+ },
+ {
+ "start": 2727.38,
+ "end": 2727.62,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 3201
+ },
+ {
+ "start": 2727.62,
+ "end": 2727.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3202
+ },
+ {
+ "start": 2727.86,
+ "end": 2728,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 3203
+ },
+ {
+ "start": 2728,
+ "end": 2728.08,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3204
+ },
+ {
+ "start": 2728.08,
+ "end": 2728.36,
+ "confidence": 0,
+ "word": "full",
+ "punct": "full",
+ "index": 3205
+ },
+ {
+ "start": 2728.36,
+ "end": 2728.66,
+ "confidence": 0,
+ "word": "audit",
+ "punct": "audit",
+ "index": 3206
+ },
+ {
+ "start": 2728.66,
+ "end": 2728.88,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3207
+ },
+ {
+ "start": 2728.88,
+ "end": 2729.04,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 3208
+ },
+ {
+ "start": 2729.04,
+ "end": 2729.3,
+ "confidence": 0,
+ "word": "they've",
+ "punct": "they've",
+ "index": 3209
+ },
+ {
+ "start": 2729.3,
+ "end": 2729.52,
+ "confidence": 0,
+ "word": "done",
+ "punct": "done.",
+ "index": 3210
+ }
+ ],
+ "start": 2722.72
+ }
+ },
+ {
+ "key": "cs1br",
+ "text": "And to make sure they get rid of any data they may still have second to make sure no other app developers out there are misusing data.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2729.52,
+ "end": 2729.98,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3211
+ },
+ {
+ "start": 2729.98,
+ "end": 2730.08,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3212
+ },
+ {
+ "start": 2730.08,
+ "end": 2730.26,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 3213
+ },
+ {
+ "start": 2730.26,
+ "end": 2730.44,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 3214
+ },
+ {
+ "start": 2730.44,
+ "end": 2730.64,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 3215
+ },
+ {
+ "start": 2730.64,
+ "end": 2730.78,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 3216
+ },
+ {
+ "start": 2730.78,
+ "end": 2730.94,
+ "confidence": 0,
+ "word": "rid",
+ "punct": "rid",
+ "index": 3217
+ },
+ {
+ "start": 2730.94,
+ "end": 2731.02,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3218
+ },
+ {
+ "start": 2731.02,
+ "end": 2731.36,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 3219
+ },
+ {
+ "start": 2731.36,
+ "end": 2731.62,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 3220
+ },
+ {
+ "start": 2731.62,
+ "end": 2731.8,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 3221
+ },
+ {
+ "start": 2731.8,
+ "end": 2732.02,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 3222
+ },
+ {
+ "start": 2732.02,
+ "end": 2732.26,
+ "confidence": 0,
+ "word": "still",
+ "punct": "still",
+ "index": 3223
+ },
+ {
+ "start": 2732.26,
+ "end": 2733.16,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3224
+ },
+ {
+ "start": 2733.16,
+ "end": 2734.38,
+ "confidence": 0,
+ "word": "second",
+ "punct": "second",
+ "index": 3225
+ },
+ {
+ "start": 2734.38,
+ "end": 2735.36,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3226
+ },
+ {
+ "start": 2735.36,
+ "end": 2735.52,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 3227
+ },
+ {
+ "start": 2735.52,
+ "end": 2735.7,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 3228
+ },
+ {
+ "start": 2735.7,
+ "end": 2735.92,
+ "confidence": 0,
+ "word": "no",
+ "punct": "no",
+ "index": 3229
+ },
+ {
+ "start": 2735.92,
+ "end": 2736.24,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 3230
+ },
+ {
+ "start": 2736.24,
+ "end": 2736.46,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 3231
+ },
+ {
+ "start": 2736.46,
+ "end": 2736.94,
+ "confidence": 0,
+ "word": "developers",
+ "punct": "developers",
+ "index": 3232
+ },
+ {
+ "start": 2736.94,
+ "end": 2737.08,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 3233
+ },
+ {
+ "start": 2737.08,
+ "end": 2737.28,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 3234
+ },
+ {
+ "start": 2737.28,
+ "end": 2737.38,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 3235
+ },
+ {
+ "start": 2737.38,
+ "end": 2737.88,
+ "confidence": 0,
+ "word": "misusing",
+ "punct": "misusing",
+ "index": 3236
+ },
+ {
+ "start": 2737.88,
+ "end": 2738.2,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data.",
+ "index": 3237
+ }
+ ],
+ "start": 2729.52
+ }
+ },
+ {
+ "key": "54oj5",
+ "text": "We are now investigating every single app that had access to a large amount of information in the past.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2738.2,
+ "end": 2738.82,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 3238
+ },
+ {
+ "start": 2738.82,
+ "end": 2738.94,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 3239
+ },
+ {
+ "start": 2738.94,
+ "end": 2739.08,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 3240
+ },
+ {
+ "start": 2739.08,
+ "end": 2739.74,
+ "confidence": 0,
+ "word": "investigating",
+ "punct": "investigating",
+ "index": 3241
+ },
+ {
+ "start": 2739.74,
+ "end": 2740.28,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 3242
+ },
+ {
+ "start": 2740.28,
+ "end": 2740.6,
+ "confidence": 0,
+ "word": "single",
+ "punct": "single",
+ "index": 3243
+ },
+ {
+ "start": 2740.6,
+ "end": 2740.84,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 3244
+ },
+ {
+ "start": 2740.84,
+ "end": 2741.08,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3245
+ },
+ {
+ "start": 2741.08,
+ "end": 2741.28,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 3246
+ },
+ {
+ "start": 2741.28,
+ "end": 2741.68,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access",
+ "index": 3247
+ },
+ {
+ "start": 2741.68,
+ "end": 2741.84,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3248
+ },
+ {
+ "start": 2741.84,
+ "end": 2741.92,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3249
+ },
+ {
+ "start": 2741.92,
+ "end": 2742.2,
+ "confidence": 0,
+ "word": "large",
+ "punct": "large",
+ "index": 3250
+ },
+ {
+ "start": 2742.2,
+ "end": 2742.44,
+ "confidence": 0,
+ "word": "amount",
+ "punct": "amount",
+ "index": 3251
+ },
+ {
+ "start": 2742.44,
+ "end": 2742.54,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3252
+ },
+ {
+ "start": 2742.54,
+ "end": 2743,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 3253
+ },
+ {
+ "start": 2743,
+ "end": 2743.12,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 3254
+ },
+ {
+ "start": 2743.12,
+ "end": 2743.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3255
+ },
+ {
+ "start": 2743.24,
+ "end": 2744.06,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past.",
+ "index": 3256
+ }
+ ],
+ "start": 2738.2
+ }
+ },
+ {
+ "key": "15gml",
+ "text": "And if we find that someone improperly used data we're going to ban them from Facebook and tell everyone affected third to prevent this from ever happening again, going forward we're making sure that developers can access as much information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2744.06,
+ "end": 2744.8,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3257
+ },
+ {
+ "start": 2744.8,
+ "end": 2745.1,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 3258
+ },
+ {
+ "start": 2745.1,
+ "end": 2745.22,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3259
+ },
+ {
+ "start": 2745.22,
+ "end": 2745.52,
+ "confidence": 0,
+ "word": "find",
+ "punct": "find",
+ "index": 3260
+ },
+ {
+ "start": 2745.52,
+ "end": 2745.68,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3261
+ },
+ {
+ "start": 2745.68,
+ "end": 2745.98,
+ "confidence": 0,
+ "word": "someone",
+ "punct": "someone",
+ "index": 3262
+ },
+ {
+ "start": 2745.98,
+ "end": 2746.54,
+ "confidence": 0,
+ "word": "improperly",
+ "punct": "improperly",
+ "index": 3263
+ },
+ {
+ "start": 2746.54,
+ "end": 2746.76,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 3264
+ },
+ {
+ "start": 2746.76,
+ "end": 2747.08,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 3265
+ },
+ {
+ "start": 2747.08,
+ "end": 2747.84,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 3266
+ },
+ {
+ "start": 2747.84,
+ "end": 2747.98,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 3267
+ },
+ {
+ "start": 2747.98,
+ "end": 2748.06,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3268
+ },
+ {
+ "start": 2748.06,
+ "end": 2748.26,
+ "confidence": 0,
+ "word": "ban",
+ "punct": "ban",
+ "index": 3269
+ },
+ {
+ "start": 2748.26,
+ "end": 2748.42,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 3270
+ },
+ {
+ "start": 2748.42,
+ "end": 2748.62,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 3271
+ },
+ {
+ "start": 2748.62,
+ "end": 2749.06,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 3272
+ },
+ {
+ "start": 2749.06,
+ "end": 2749.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3273
+ },
+ {
+ "start": 2749.26,
+ "end": 2749.44,
+ "confidence": 0,
+ "word": "tell",
+ "punct": "tell",
+ "index": 3274
+ },
+ {
+ "start": 2749.44,
+ "end": 2749.76,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 3275
+ },
+ {
+ "start": 2749.76,
+ "end": 2750.68,
+ "confidence": 0,
+ "word": "affected",
+ "punct": "affected",
+ "index": 3276
+ },
+ {
+ "start": 2750.68,
+ "end": 2751.52,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 3277
+ },
+ {
+ "start": 2751.52,
+ "end": 2752.5,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3278
+ },
+ {
+ "start": 2752.5,
+ "end": 2752.8,
+ "confidence": 0,
+ "word": "prevent",
+ "punct": "prevent",
+ "index": 3279
+ },
+ {
+ "start": 2752.8,
+ "end": 2752.96,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 3280
+ },
+ {
+ "start": 2752.96,
+ "end": 2753.14,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 3281
+ },
+ {
+ "start": 2753.14,
+ "end": 2753.38,
+ "confidence": 0,
+ "word": "ever",
+ "punct": "ever",
+ "index": 3282
+ },
+ {
+ "start": 2753.38,
+ "end": 2753.82,
+ "confidence": 0,
+ "word": "happening",
+ "punct": "happening",
+ "index": 3283
+ },
+ {
+ "start": 2753.82,
+ "end": 2754.1,
+ "confidence": 0,
+ "word": "again,",
+ "punct": "again,",
+ "index": 3284
+ },
+ {
+ "start": 2754.1,
+ "end": 2754.48,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 3285
+ },
+ {
+ "start": 2754.48,
+ "end": 2754.9,
+ "confidence": 0,
+ "word": "forward",
+ "punct": "forward",
+ "index": 3286
+ },
+ {
+ "start": 2754.9,
+ "end": 2755.54,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 3287
+ },
+ {
+ "start": 2755.54,
+ "end": 2755.78,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 3288
+ },
+ {
+ "start": 2755.78,
+ "end": 2755.96,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 3289
+ },
+ {
+ "start": 2755.96,
+ "end": 2756.12,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3290
+ },
+ {
+ "start": 2756.12,
+ "end": 2756.58,
+ "confidence": 0,
+ "word": "developers",
+ "punct": "developers",
+ "index": 3291
+ },
+ {
+ "start": 2756.58,
+ "end": 2756.8,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 3292
+ },
+ {
+ "start": 2756.8,
+ "end": 2757.2,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access",
+ "index": 3293
+ },
+ {
+ "start": 2757.2,
+ "end": 2757.36,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 3294
+ },
+ {
+ "start": 2757.36,
+ "end": 2757.56,
+ "confidence": 0,
+ "word": "much",
+ "punct": "much",
+ "index": 3295
+ },
+ {
+ "start": 2757.56,
+ "end": 2758.1,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 3296
+ }
+ ],
+ "start": 2744.06
+ }
+ },
+ {
+ "key": "11gks",
+ "text": "Now, the good news here is that we already made big changes to our platform.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2758.1,
+ "end": 2758.36,
+ "confidence": 0,
+ "word": "now,",
+ "punct": "Now,",
+ "index": 3297
+ },
+ {
+ "start": 2758.36,
+ "end": 2759.46,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3298
+ },
+ {
+ "start": 2759.46,
+ "end": 2759.64,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 3299
+ },
+ {
+ "start": 2759.64,
+ "end": 2759.86,
+ "confidence": 0,
+ "word": "news",
+ "punct": "news",
+ "index": 3300
+ },
+ {
+ "start": 2759.86,
+ "end": 2760.16,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 3301
+ },
+ {
+ "start": 2760.16,
+ "end": 2760.56,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 3302
+ },
+ {
+ "start": 2760.56,
+ "end": 2760.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3303
+ },
+ {
+ "start": 2760.72,
+ "end": 2760.82,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3304
+ },
+ {
+ "start": 2760.82,
+ "end": 2761.34,
+ "confidence": 0,
+ "word": "already",
+ "punct": "already",
+ "index": 3305
+ },
+ {
+ "start": 2761.34,
+ "end": 2761.54,
+ "confidence": 0,
+ "word": "made",
+ "punct": "made",
+ "index": 3306
+ },
+ {
+ "start": 2761.54,
+ "end": 2761.92,
+ "confidence": 0,
+ "word": "big",
+ "punct": "big",
+ "index": 3307
+ },
+ {
+ "start": 2761.92,
+ "end": 2762.28,
+ "confidence": 0,
+ "word": "changes",
+ "punct": "changes",
+ "index": 3308
+ },
+ {
+ "start": 2762.28,
+ "end": 2762.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3309
+ },
+ {
+ "start": 2762.38,
+ "end": 2762.54,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 3310
+ },
+ {
+ "start": 2762.54,
+ "end": 2763.04,
+ "confidence": 0,
+ "word": "platform",
+ "punct": "platform.",
+ "index": 3311
+ }
+ ],
+ "start": 2758.1
+ }
+ },
+ {
+ "key": "5b2ns",
+ "text": "And that would have prevented this specific situation with Cambridge Analytica from occurring again today.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2763.04,
+ "end": 2763.63,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3312
+ },
+ {
+ "start": 2763.63,
+ "end": 2764.59,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3313
+ },
+ {
+ "start": 2764.59,
+ "end": 2764.77,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 3314
+ },
+ {
+ "start": 2764.77,
+ "end": 2764.89,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3315
+ },
+ {
+ "start": 2764.89,
+ "end": 2765.35,
+ "confidence": 0,
+ "word": "prevented",
+ "punct": "prevented",
+ "index": 3316
+ },
+ {
+ "start": 2765.35,
+ "end": 2765.55,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 3317
+ },
+ {
+ "start": 2765.55,
+ "end": 2766.53,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 3318
+ },
+ {
+ "start": 2766.53,
+ "end": 2767.13,
+ "confidence": 0,
+ "word": "situation",
+ "punct": "situation",
+ "index": 3319
+ },
+ {
+ "start": 2767.13,
+ "end": 2767.85,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 3320
+ },
+ {
+ "start": 2767.85,
+ "end": 2768.15,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 3321
+ },
+ {
+ "start": 2768.15,
+ "end": 2768.57,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 3322
+ },
+ {
+ "start": 2768.57,
+ "end": 2769.03,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 3323
+ },
+ {
+ "start": 2769.03,
+ "end": 2769.39,
+ "confidence": 0,
+ "word": "occurring",
+ "punct": "occurring",
+ "index": 3324
+ },
+ {
+ "start": 2769.39,
+ "end": 2769.65,
+ "confidence": 0,
+ "word": "again",
+ "punct": "again",
+ "index": 3325
+ },
+ {
+ "start": 2769.65,
+ "end": 2770.09,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today.",
+ "index": 3326
+ }
+ ],
+ "start": 2763.04
+ }
+ },
+ {
+ "key": "2uf4a",
+ "text": "But there's more to do.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2770.09,
+ "end": 2771.03,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 3327
+ },
+ {
+ "start": 2771.03,
+ "end": 2771.29,
+ "confidence": 0,
+ "word": "there's",
+ "punct": "there's",
+ "index": 3328
+ },
+ {
+ "start": 2771.29,
+ "end": 2771.45,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 3329
+ },
+ {
+ "start": 2771.45,
+ "end": 2771.55,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3330
+ },
+ {
+ "start": 2771.55,
+ "end": 2771.77,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do.",
+ "index": 3331
+ }
+ ],
+ "start": 2770.09
+ }
+ },
+ {
+ "key": "1tg7c",
+ "text": "And you can find more details on the steps we're taking in my written statement, my top priority has always been our social mission of connecting people building community and bringing the world closer together, advertisers and developers will never take priority over that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2771.77,
+ "end": 2772.33,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3332
+ },
+ {
+ "start": 2772.33,
+ "end": 2772.47,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 3333
+ },
+ {
+ "start": 2772.47,
+ "end": 2772.63,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 3334
+ },
+ {
+ "start": 2772.63,
+ "end": 2772.99,
+ "confidence": 0,
+ "word": "find",
+ "punct": "find",
+ "index": 3335
+ },
+ {
+ "start": 2772.99,
+ "end": 2773.23,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 3336
+ },
+ {
+ "start": 2773.23,
+ "end": 2773.65,
+ "confidence": 0,
+ "word": "details",
+ "punct": "details",
+ "index": 3337
+ },
+ {
+ "start": 2773.65,
+ "end": 2773.83,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 3338
+ },
+ {
+ "start": 2773.83,
+ "end": 2773.95,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3339
+ },
+ {
+ "start": 2773.95,
+ "end": 2774.21,
+ "confidence": 0,
+ "word": "steps",
+ "punct": "steps",
+ "index": 3340
+ },
+ {
+ "start": 2774.21,
+ "end": 2774.41,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 3341
+ },
+ {
+ "start": 2774.41,
+ "end": 2774.69,
+ "confidence": 0,
+ "word": "taking",
+ "punct": "taking",
+ "index": 3342
+ },
+ {
+ "start": 2774.69,
+ "end": 2774.89,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 3343
+ },
+ {
+ "start": 2774.89,
+ "end": 2775.05,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 3344
+ },
+ {
+ "start": 2775.05,
+ "end": 2775.31,
+ "confidence": 0,
+ "word": "written",
+ "punct": "written",
+ "index": 3345
+ },
+ {
+ "start": 2775.31,
+ "end": 2776.58,
+ "confidence": 0,
+ "word": "statement,",
+ "punct": "statement,",
+ "index": 3346
+ },
+ {
+ "start": 2776.58,
+ "end": 2777.52,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 3347
+ },
+ {
+ "start": 2777.52,
+ "end": 2777.78,
+ "confidence": 0,
+ "word": "top",
+ "punct": "top",
+ "index": 3348
+ },
+ {
+ "start": 2777.78,
+ "end": 2778.36,
+ "confidence": 0,
+ "word": "priority",
+ "punct": "priority",
+ "index": 3349
+ },
+ {
+ "start": 2778.36,
+ "end": 2778.96,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 3350
+ },
+ {
+ "start": 2778.96,
+ "end": 2779.38,
+ "confidence": 0,
+ "word": "always",
+ "punct": "always",
+ "index": 3351
+ },
+ {
+ "start": 2779.38,
+ "end": 2779.64,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 3352
+ },
+ {
+ "start": 2779.64,
+ "end": 2779.9,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 3353
+ },
+ {
+ "start": 2779.9,
+ "end": 2780.36,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 3354
+ },
+ {
+ "start": 2780.36,
+ "end": 2780.66,
+ "confidence": 0,
+ "word": "mission",
+ "punct": "mission",
+ "index": 3355
+ },
+ {
+ "start": 2780.66,
+ "end": 2781.28,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3356
+ },
+ {
+ "start": 2781.28,
+ "end": 2781.74,
+ "confidence": 0,
+ "word": "connecting",
+ "punct": "connecting",
+ "index": 3357
+ },
+ {
+ "start": 2781.74,
+ "end": 2782.04,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 3358
+ },
+ {
+ "start": 2782.04,
+ "end": 2782.9,
+ "confidence": 0,
+ "word": "building",
+ "punct": "building",
+ "index": 3359
+ },
+ {
+ "start": 2782.9,
+ "end": 2783.34,
+ "confidence": 0,
+ "word": "community",
+ "punct": "community",
+ "index": 3360
+ },
+ {
+ "start": 2783.34,
+ "end": 2783.9,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3361
+ },
+ {
+ "start": 2783.9,
+ "end": 2784.2,
+ "confidence": 0,
+ "word": "bringing",
+ "punct": "bringing",
+ "index": 3362
+ },
+ {
+ "start": 2784.2,
+ "end": 2784.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3363
+ },
+ {
+ "start": 2784.32,
+ "end": 2784.56,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 3364
+ },
+ {
+ "start": 2784.56,
+ "end": 2784.96,
+ "confidence": 0,
+ "word": "closer",
+ "punct": "closer",
+ "index": 3365
+ },
+ {
+ "start": 2784.96,
+ "end": 2786,
+ "confidence": 0,
+ "word": "together,",
+ "punct": "together,",
+ "index": 3366
+ },
+ {
+ "start": 2786,
+ "end": 2786.98,
+ "confidence": 0,
+ "word": "advertisers",
+ "punct": "advertisers",
+ "index": 3367
+ },
+ {
+ "start": 2786.98,
+ "end": 2787.12,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3368
+ },
+ {
+ "start": 2787.12,
+ "end": 2787.7,
+ "confidence": 0,
+ "word": "developers",
+ "punct": "developers",
+ "index": 3369
+ },
+ {
+ "start": 2787.7,
+ "end": 2788.16,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 3370
+ },
+ {
+ "start": 2788.16,
+ "end": 2788.5,
+ "confidence": 0,
+ "word": "never",
+ "punct": "never",
+ "index": 3371
+ },
+ {
+ "start": 2788.5,
+ "end": 2788.78,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 3372
+ },
+ {
+ "start": 2788.78,
+ "end": 2789.26,
+ "confidence": 0,
+ "word": "priority",
+ "punct": "priority",
+ "index": 3373
+ },
+ {
+ "start": 2789.26,
+ "end": 2789.56,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 3374
+ },
+ {
+ "start": 2789.56,
+ "end": 2789.82,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 3375
+ }
+ ],
+ "start": 2771.77
+ }
+ },
+ {
+ "key": "fk1dl",
+ "text": "As long as I'm running Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2789.82,
+ "end": 2790.24,
+ "confidence": 0,
+ "word": "as",
+ "punct": "As",
+ "index": 3376
+ },
+ {
+ "start": 2790.24,
+ "end": 2790.46,
+ "confidence": 0,
+ "word": "long",
+ "punct": "long",
+ "index": 3377
+ },
+ {
+ "start": 2790.46,
+ "end": 2790.6,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 3378
+ },
+ {
+ "start": 2790.6,
+ "end": 2790.88,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 3379
+ },
+ {
+ "start": 2790.88,
+ "end": 2791.2,
+ "confidence": 0,
+ "word": "running",
+ "punct": "running",
+ "index": 3380
+ },
+ {
+ "start": 2791.2,
+ "end": 2792.46,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 3381
+ }
+ ],
+ "start": 2789.82
+ }
+ },
+ {
+ "key": "1be1h",
+ "text": "I started Facebook when I was in college we've come a long way since then.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2792.46,
+ "end": 2792.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3382
+ },
+ {
+ "start": 2792.74,
+ "end": 2793.72,
+ "confidence": 0,
+ "word": "started",
+ "punct": "started",
+ "index": 3383
+ },
+ {
+ "start": 2793.72,
+ "end": 2794.1,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 3384
+ },
+ {
+ "start": 2794.1,
+ "end": 2794.22,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 3385
+ },
+ {
+ "start": 2794.22,
+ "end": 2794.28,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3386
+ },
+ {
+ "start": 2794.28,
+ "end": 2794.38,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 3387
+ },
+ {
+ "start": 2794.38,
+ "end": 2794.5,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 3388
+ },
+ {
+ "start": 2794.5,
+ "end": 2795.12,
+ "confidence": 0,
+ "word": "college",
+ "punct": "college",
+ "index": 3389
+ },
+ {
+ "start": 2795.12,
+ "end": 2796.1,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 3390
+ },
+ {
+ "start": 2796.1,
+ "end": 2796.22,
+ "confidence": 0,
+ "word": "come",
+ "punct": "come",
+ "index": 3391
+ },
+ {
+ "start": 2796.22,
+ "end": 2796.28,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3392
+ },
+ {
+ "start": 2796.28,
+ "end": 2796.44,
+ "confidence": 0,
+ "word": "long",
+ "punct": "long",
+ "index": 3393
+ },
+ {
+ "start": 2796.44,
+ "end": 2796.62,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 3394
+ },
+ {
+ "start": 2796.62,
+ "end": 2796.86,
+ "confidence": 0,
+ "word": "since",
+ "punct": "since",
+ "index": 3395
+ },
+ {
+ "start": 2796.86,
+ "end": 2797.02,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then.",
+ "index": 3396
+ }
+ ],
+ "start": 2792.46
+ }
+ },
+ {
+ "key": "3plif",
+ "text": "We now serve more than 2,000,000,000 people around the world.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2797.02,
+ "end": 2798.2,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 3397
+ },
+ {
+ "start": 2798.2,
+ "end": 2798.44,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 3398
+ },
+ {
+ "start": 2798.44,
+ "end": 2798.8,
+ "confidence": 0,
+ "word": "serve",
+ "punct": "serve",
+ "index": 3399
+ },
+ {
+ "start": 2798.8,
+ "end": 2799,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 3400
+ },
+ {
+ "start": 2799,
+ "end": 2799.14,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 3401
+ },
+ {
+ "start": 2799.14,
+ "end": 2799.78,
+ "confidence": 0,
+ "word": "2,000,000,000",
+ "punct": "2,000,000,000",
+ "index": 3402
+ },
+ {
+ "start": 2799.78,
+ "end": 2800.06,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 3403
+ },
+ {
+ "start": 2800.06,
+ "end": 2800.6,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 3404
+ },
+ {
+ "start": 2800.6,
+ "end": 2800.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3405
+ },
+ {
+ "start": 2800.7,
+ "end": 2801,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world.",
+ "index": 3406
+ }
+ ],
+ "start": 2797.02
+ }
+ },
+ {
+ "key": "5ovbq",
+ "text": "And every day, people use our services to stay connected with the people that matter to them most, I believe deeply in what we're doing.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2801,
+ "end": 2801.9,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3407
+ },
+ {
+ "start": 2801.9,
+ "end": 2802.14,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 3408
+ },
+ {
+ "start": 2802.14,
+ "end": 2802.36,
+ "confidence": 0,
+ "word": "day,",
+ "punct": "day,",
+ "index": 3409
+ },
+ {
+ "start": 2802.36,
+ "end": 2803.34,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 3410
+ },
+ {
+ "start": 2803.34,
+ "end": 2803.56,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 3411
+ },
+ {
+ "start": 2803.56,
+ "end": 2803.76,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 3412
+ },
+ {
+ "start": 2803.76,
+ "end": 2804.28,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 3413
+ },
+ {
+ "start": 2804.28,
+ "end": 2804.44,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3414
+ },
+ {
+ "start": 2804.44,
+ "end": 2804.66,
+ "confidence": 0,
+ "word": "stay",
+ "punct": "stay",
+ "index": 3415
+ },
+ {
+ "start": 2804.66,
+ "end": 2805.02,
+ "confidence": 0,
+ "word": "connected",
+ "punct": "connected",
+ "index": 3416
+ },
+ {
+ "start": 2805.02,
+ "end": 2805.16,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 3417
+ },
+ {
+ "start": 2805.16,
+ "end": 2805.26,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3418
+ },
+ {
+ "start": 2805.26,
+ "end": 2805.48,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 3419
+ },
+ {
+ "start": 2805.48,
+ "end": 2805.64,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3420
+ },
+ {
+ "start": 2805.64,
+ "end": 2805.9,
+ "confidence": 0,
+ "word": "matter",
+ "punct": "matter",
+ "index": 3421
+ },
+ {
+ "start": 2805.9,
+ "end": 2806,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3422
+ },
+ {
+ "start": 2806,
+ "end": 2806.18,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 3423
+ },
+ {
+ "start": 2806.18,
+ "end": 2807.26,
+ "confidence": 0,
+ "word": "most,",
+ "punct": "most,",
+ "index": 3424
+ },
+ {
+ "start": 2807.26,
+ "end": 2808.16,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3425
+ },
+ {
+ "start": 2808.16,
+ "end": 2808.54,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 3426
+ },
+ {
+ "start": 2808.54,
+ "end": 2808.92,
+ "confidence": 0,
+ "word": "deeply",
+ "punct": "deeply",
+ "index": 3427
+ },
+ {
+ "start": 2808.92,
+ "end": 2809.1,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 3428
+ },
+ {
+ "start": 2809.1,
+ "end": 2809.28,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 3429
+ },
+ {
+ "start": 2809.28,
+ "end": 2809.52,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 3430
+ },
+ {
+ "start": 2809.52,
+ "end": 2809.78,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing.",
+ "index": 3431
+ }
+ ],
+ "start": 2801
+ }
+ },
+ {
+ "key": "8n3i5",
+ "text": "And I know that when we address these challenges we'll look back and view, helping people connect and giving more people a voice positive force in the world.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2809.78,
+ "end": 2810.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3432
+ },
+ {
+ "start": 2810.62,
+ "end": 2810.76,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3433
+ },
+ {
+ "start": 2810.76,
+ "end": 2810.94,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 3434
+ },
+ {
+ "start": 2810.94,
+ "end": 2811.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3435
+ },
+ {
+ "start": 2811.96,
+ "end": 2812.08,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 3436
+ },
+ {
+ "start": 2812.08,
+ "end": 2812.2,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3437
+ },
+ {
+ "start": 2812.2,
+ "end": 2812.5,
+ "confidence": 0,
+ "word": "address",
+ "punct": "address",
+ "index": 3438
+ },
+ {
+ "start": 2812.5,
+ "end": 2812.72,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 3439
+ },
+ {
+ "start": 2812.72,
+ "end": 2813.2,
+ "confidence": 0,
+ "word": "challenges",
+ "punct": "challenges",
+ "index": 3440
+ },
+ {
+ "start": 2813.2,
+ "end": 2813.98,
+ "confidence": 0,
+ "word": "we'll",
+ "punct": "we'll",
+ "index": 3441
+ },
+ {
+ "start": 2813.98,
+ "end": 2814.16,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 3442
+ },
+ {
+ "start": 2814.16,
+ "end": 2814.44,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 3443
+ },
+ {
+ "start": 2814.44,
+ "end": 2814.72,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3444
+ },
+ {
+ "start": 2814.72,
+ "end": 2814.94,
+ "confidence": 0,
+ "word": "view,",
+ "punct": "view,",
+ "index": 3445
+ },
+ {
+ "start": 2814.94,
+ "end": 2815.26,
+ "confidence": 0,
+ "word": "helping",
+ "punct": "helping",
+ "index": 3446
+ },
+ {
+ "start": 2815.26,
+ "end": 2815.52,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 3447
+ },
+ {
+ "start": 2815.52,
+ "end": 2815.88,
+ "confidence": 0,
+ "word": "connect",
+ "punct": "connect",
+ "index": 3448
+ },
+ {
+ "start": 2815.88,
+ "end": 2816.04,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3449
+ },
+ {
+ "start": 2816.04,
+ "end": 2816.3,
+ "confidence": 0,
+ "word": "giving",
+ "punct": "giving",
+ "index": 3450
+ },
+ {
+ "start": 2816.3,
+ "end": 2816.5,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 3451
+ },
+ {
+ "start": 2816.5,
+ "end": 2816.74,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 3452
+ },
+ {
+ "start": 2816.74,
+ "end": 2816.86,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3453
+ },
+ {
+ "start": 2816.86,
+ "end": 2817.87,
+ "confidence": 0,
+ "word": "voice",
+ "punct": "voice",
+ "index": 3454
+ },
+ {
+ "start": 2817.87,
+ "end": 2818.33,
+ "confidence": 0,
+ "word": "positive",
+ "punct": "positive",
+ "index": 3455
+ },
+ {
+ "start": 2818.33,
+ "end": 2818.57,
+ "confidence": 0,
+ "word": "force",
+ "punct": "force",
+ "index": 3456
+ },
+ {
+ "start": 2818.57,
+ "end": 2818.69,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 3457
+ },
+ {
+ "start": 2818.69,
+ "end": 2818.81,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3458
+ },
+ {
+ "start": 2818.81,
+ "end": 2819.01,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world.",
+ "index": 3459
+ }
+ ],
+ "start": 2809.78
+ }
+ },
+ {
+ "key": "7levl",
+ "text": "I realized the issues we're talking about today aren't just issues for Facebook and our community, their issues and challenges for all of us as Americans.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2819.01,
+ "end": 2820.77,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3460
+ },
+ {
+ "start": 2820.77,
+ "end": 2821.11,
+ "confidence": 0,
+ "word": "realized",
+ "punct": "realized",
+ "index": 3461
+ },
+ {
+ "start": 2821.11,
+ "end": 2821.23,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3462
+ },
+ {
+ "start": 2821.23,
+ "end": 2821.51,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues",
+ "index": 3463
+ },
+ {
+ "start": 2821.51,
+ "end": 2821.71,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 3464
+ },
+ {
+ "start": 2821.71,
+ "end": 2821.95,
+ "confidence": 0,
+ "word": "talking",
+ "punct": "talking",
+ "index": 3465
+ },
+ {
+ "start": 2821.95,
+ "end": 2822.13,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 3466
+ },
+ {
+ "start": 2822.13,
+ "end": 2822.33,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 3467
+ },
+ {
+ "start": 2822.33,
+ "end": 2822.61,
+ "confidence": 0,
+ "word": "aren't",
+ "punct": "aren't",
+ "index": 3468
+ },
+ {
+ "start": 2822.61,
+ "end": 2822.77,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 3469
+ },
+ {
+ "start": 2822.77,
+ "end": 2823.11,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues",
+ "index": 3470
+ },
+ {
+ "start": 2823.11,
+ "end": 2823.29,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 3471
+ },
+ {
+ "start": 2823.29,
+ "end": 2823.71,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 3472
+ },
+ {
+ "start": 2823.71,
+ "end": 2823.81,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3473
+ },
+ {
+ "start": 2823.81,
+ "end": 2823.95,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 3474
+ },
+ {
+ "start": 2823.95,
+ "end": 2824.43,
+ "confidence": 0,
+ "word": "community,",
+ "punct": "community,",
+ "index": 3475
+ },
+ {
+ "start": 2824.43,
+ "end": 2825.27,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 3476
+ },
+ {
+ "start": 2825.27,
+ "end": 2825.63,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues",
+ "index": 3477
+ },
+ {
+ "start": 2825.63,
+ "end": 2825.95,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3478
+ },
+ {
+ "start": 2825.95,
+ "end": 2826.45,
+ "confidence": 0,
+ "word": "challenges",
+ "punct": "challenges",
+ "index": 3479
+ },
+ {
+ "start": 2826.45,
+ "end": 2826.65,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 3480
+ },
+ {
+ "start": 2826.65,
+ "end": 2826.83,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 3481
+ },
+ {
+ "start": 2826.83,
+ "end": 2826.91,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3482
+ },
+ {
+ "start": 2826.91,
+ "end": 2827.11,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 3483
+ },
+ {
+ "start": 2827.11,
+ "end": 2827.35,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 3484
+ },
+ {
+ "start": 2827.35,
+ "end": 2828.48,
+ "confidence": 0,
+ "word": "americans",
+ "punct": "Americans.",
+ "index": 3485
+ }
+ ],
+ "start": 2819.01
+ }
+ },
+ {
+ "key": "egl",
+ "text": "Thank you for having me here today.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2828.48,
+ "end": 2829.26,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 3486
+ },
+ {
+ "start": 2829.26,
+ "end": 2829.38,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 3487
+ },
+ {
+ "start": 2829.38,
+ "end": 2829.54,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 3488
+ },
+ {
+ "start": 2829.54,
+ "end": 2829.8,
+ "confidence": 0,
+ "word": "having",
+ "punct": "having",
+ "index": 3489
+ },
+ {
+ "start": 2829.8,
+ "end": 2829.9,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 3490
+ },
+ {
+ "start": 2829.9,
+ "end": 2830.1,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 3491
+ },
+ {
+ "start": 2830.1,
+ "end": 2830.36,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today.",
+ "index": 3492
+ }
+ ],
+ "start": 2828.48
+ }
+ },
+ {
+ "key": "ftmgt",
+ "text": "And I'm ready to take your questions I'll remind members that maybe weren't here.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2830.36,
+ "end": 2831.22,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3493
+ },
+ {
+ "start": 2831.22,
+ "end": 2831.38,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 3494
+ },
+ {
+ "start": 2831.38,
+ "end": 2831.58,
+ "confidence": 0,
+ "word": "ready",
+ "punct": "ready",
+ "index": 3495
+ },
+ {
+ "start": 2831.58,
+ "end": 2831.7,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3496
+ },
+ {
+ "start": 2831.7,
+ "end": 2831.88,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 3497
+ },
+ {
+ "start": 2831.88,
+ "end": 2832.02,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 3498
+ },
+ {
+ "start": 2832.02,
+ "end": 2833.9,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 3499
+ },
+ {
+ "start": 2833.9,
+ "end": 2834.88,
+ "confidence": 0,
+ "word": "i'll",
+ "punct": "I'll",
+ "index": 3500
+ },
+ {
+ "start": 2834.88,
+ "end": 2835.28,
+ "confidence": 0,
+ "word": "remind",
+ "punct": "remind",
+ "index": 3501
+ },
+ {
+ "start": 2835.28,
+ "end": 2835.78,
+ "confidence": 0,
+ "word": "members",
+ "punct": "members",
+ "index": 3502
+ },
+ {
+ "start": 2835.78,
+ "end": 2836.12,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3503
+ },
+ {
+ "start": 2836.12,
+ "end": 2836.48,
+ "confidence": 0,
+ "word": "maybe",
+ "punct": "maybe",
+ "index": 3504
+ },
+ {
+ "start": 2836.48,
+ "end": 2836.82,
+ "confidence": 0,
+ "word": "weren't",
+ "punct": "weren't",
+ "index": 3505
+ },
+ {
+ "start": 2836.82,
+ "end": 2837,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here.",
+ "index": 3506
+ }
+ ],
+ "start": 2830.36
+ }
+ },
+ {
+ "key": "davs0",
+ "text": "When I had my opening comments that we are operating under the five minute rule.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2837,
+ "end": 2837.2,
+ "confidence": 0,
+ "word": "when",
+ "punct": "When",
+ "index": 3507
+ },
+ {
+ "start": 2837.2,
+ "end": 2837.32,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3508
+ },
+ {
+ "start": 2837.32,
+ "end": 2837.52,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 3509
+ },
+ {
+ "start": 2837.52,
+ "end": 2837.68,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 3510
+ },
+ {
+ "start": 2837.68,
+ "end": 2838.16,
+ "confidence": 0,
+ "word": "opening",
+ "punct": "opening",
+ "index": 3511
+ },
+ {
+ "start": 2838.16,
+ "end": 2838.74,
+ "confidence": 0,
+ "word": "comments",
+ "punct": "comments",
+ "index": 3512
+ },
+ {
+ "start": 2838.74,
+ "end": 2839.5,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3513
+ },
+ {
+ "start": 2839.5,
+ "end": 2839.66,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3514
+ },
+ {
+ "start": 2839.66,
+ "end": 2839.9,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 3515
+ },
+ {
+ "start": 2839.9,
+ "end": 2840.52,
+ "confidence": 0,
+ "word": "operating",
+ "punct": "operating",
+ "index": 3516
+ },
+ {
+ "start": 2840.52,
+ "end": 2840.82,
+ "confidence": 0,
+ "word": "under",
+ "punct": "under",
+ "index": 3517
+ },
+ {
+ "start": 2840.82,
+ "end": 2840.96,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3518
+ },
+ {
+ "start": 2840.96,
+ "end": 2842.1,
+ "confidence": 0,
+ "word": "five",
+ "punct": "five",
+ "index": 3519
+ },
+ {
+ "start": 2842.1,
+ "end": 2842.36,
+ "confidence": 0,
+ "word": "minute",
+ "punct": "minute",
+ "index": 3520
+ },
+ {
+ "start": 2842.36,
+ "end": 2842.56,
+ "confidence": 0,
+ "word": "rule",
+ "punct": "rule.",
+ "index": 3521
+ }
+ ],
+ "start": 2837
+ }
+ },
+ {
+ "key": "f3h11",
+ "text": "And that applies to the five minute rule.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2842.56,
+ "end": 2842.72,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3522
+ },
+ {
+ "start": 2842.72,
+ "end": 2842.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3523
+ },
+ {
+ "start": 2842.94,
+ "end": 2843.42,
+ "confidence": 0,
+ "word": "applies",
+ "punct": "applies",
+ "index": 3524
+ },
+ {
+ "start": 2843.42,
+ "end": 2845.26,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3525
+ },
+ {
+ "start": 2845.26,
+ "end": 2846.26,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3526
+ },
+ {
+ "start": 2846.26,
+ "end": 2846.58,
+ "confidence": 0,
+ "word": "five",
+ "punct": "five",
+ "index": 3527
+ },
+ {
+ "start": 2846.58,
+ "end": 2846.94,
+ "confidence": 0,
+ "word": "minute",
+ "punct": "minute",
+ "index": 3528
+ },
+ {
+ "start": 2846.94,
+ "end": 2847.2,
+ "confidence": 0,
+ "word": "rule",
+ "punct": "rule.",
+ "index": 3529
+ }
+ ],
+ "start": 2842.56
+ }
+ },
+ {
+ "key": "cmdg9",
+ "text": "And that applies to those of us who are chairing the committee as well.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2847.2,
+ "end": 2847.58,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3530
+ },
+ {
+ "start": 2847.58,
+ "end": 2847.76,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3531
+ },
+ {
+ "start": 2847.76,
+ "end": 2848.18,
+ "confidence": 0,
+ "word": "applies",
+ "punct": "applies",
+ "index": 3532
+ },
+ {
+ "start": 2848.18,
+ "end": 2848.34,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3533
+ },
+ {
+ "start": 2848.34,
+ "end": 2848.64,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 3534
+ },
+ {
+ "start": 2848.64,
+ "end": 2848.8,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3535
+ },
+ {
+ "start": 2848.8,
+ "end": 2848.98,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 3536
+ },
+ {
+ "start": 2848.98,
+ "end": 2849.16,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 3537
+ },
+ {
+ "start": 2849.16,
+ "end": 2849.76,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 3538
+ },
+ {
+ "start": 2849.76,
+ "end": 2850.1,
+ "confidence": 0,
+ "word": "chairing",
+ "punct": "chairing",
+ "index": 3539
+ },
+ {
+ "start": 2850.1,
+ "end": 2850.26,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3540
+ },
+ {
+ "start": 2850.26,
+ "end": 2850.64,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "committee",
+ "index": 3541
+ },
+ {
+ "start": 2850.64,
+ "end": 2850.76,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 3542
+ },
+ {
+ "start": 2850.76,
+ "end": 2853.34,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well.",
+ "index": 3543
+ }
+ ],
+ "start": 2847.2
+ }
+ },
+ {
+ "key": "efobh",
+ "text": "Start with you, Facebook handles extensive amounts of personal data for billions of users as significant amount of that data is shared with third party developers who utilize your platform.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2853.34,
+ "end": 2854.36,
+ "confidence": 0,
+ "word": "start",
+ "punct": "Start",
+ "index": 3544
+ },
+ {
+ "start": 2854.36,
+ "end": 2854.74,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 3545
+ },
+ {
+ "start": 2854.74,
+ "end": 2854.98,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 3546
+ },
+ {
+ "start": 2854.98,
+ "end": 2856.16,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 3547
+ },
+ {
+ "start": 2856.16,
+ "end": 2856.64,
+ "confidence": 0,
+ "word": "handles",
+ "punct": "handles",
+ "index": 3548
+ },
+ {
+ "start": 2856.64,
+ "end": 2857.34,
+ "confidence": 0,
+ "word": "extensive",
+ "punct": "extensive",
+ "index": 3549
+ },
+ {
+ "start": 2857.34,
+ "end": 2857.72,
+ "confidence": 0,
+ "word": "amounts",
+ "punct": "amounts",
+ "index": 3550
+ },
+ {
+ "start": 2857.72,
+ "end": 2857.88,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3551
+ },
+ {
+ "start": 2857.88,
+ "end": 2858.38,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 3552
+ },
+ {
+ "start": 2858.38,
+ "end": 2858.8,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 3553
+ },
+ {
+ "start": 2858.8,
+ "end": 2859.1,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 3554
+ },
+ {
+ "start": 2859.1,
+ "end": 2859.58,
+ "confidence": 0,
+ "word": "billions",
+ "punct": "billions",
+ "index": 3555
+ },
+ {
+ "start": 2859.58,
+ "end": 2859.72,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3556
+ },
+ {
+ "start": 2859.72,
+ "end": 2860.22,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 3557
+ },
+ {
+ "start": 2860.22,
+ "end": 2861.38,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 3558
+ },
+ {
+ "start": 2861.38,
+ "end": 2862.44,
+ "confidence": 0,
+ "word": "significant",
+ "punct": "significant",
+ "index": 3559
+ },
+ {
+ "start": 2862.44,
+ "end": 2862.78,
+ "confidence": 0,
+ "word": "amount",
+ "punct": "amount",
+ "index": 3560
+ },
+ {
+ "start": 2862.78,
+ "end": 2862.86,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3561
+ },
+ {
+ "start": 2862.86,
+ "end": 2863.04,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3562
+ },
+ {
+ "start": 2863.04,
+ "end": 2863.34,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 3563
+ },
+ {
+ "start": 2863.34,
+ "end": 2863.54,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 3564
+ },
+ {
+ "start": 2863.54,
+ "end": 2863.96,
+ "confidence": 0,
+ "word": "shared",
+ "punct": "shared",
+ "index": 3565
+ },
+ {
+ "start": 2863.96,
+ "end": 2864.74,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 3566
+ },
+ {
+ "start": 2864.74,
+ "end": 2865.12,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 3567
+ },
+ {
+ "start": 2865.12,
+ "end": 2865.58,
+ "confidence": 0,
+ "word": "party",
+ "punct": "party",
+ "index": 3568
+ },
+ {
+ "start": 2865.58,
+ "end": 2866.42,
+ "confidence": 0,
+ "word": "developers",
+ "punct": "developers",
+ "index": 3569
+ },
+ {
+ "start": 2866.42,
+ "end": 2866.56,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 3570
+ },
+ {
+ "start": 2866.56,
+ "end": 2867.7,
+ "confidence": 0,
+ "word": "utilize",
+ "punct": "utilize",
+ "index": 3571
+ },
+ {
+ "start": 2867.7,
+ "end": 2867.9,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 3572
+ },
+ {
+ "start": 2867.9,
+ "end": 2868.46,
+ "confidence": 0,
+ "word": "platform",
+ "punct": "platform.",
+ "index": 3573
+ }
+ ],
+ "start": 2853.34
+ }
+ },
+ {
+ "key": "4go3k",
+ "text": "As of this early this year, you did not actively monitor whether that data was transferred by such developers to other parties.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2868.46,
+ "end": 2869.3,
+ "confidence": 0,
+ "word": "as",
+ "punct": "As",
+ "index": 3574
+ },
+ {
+ "start": 2869.3,
+ "end": 2869.44,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3575
+ },
+ {
+ "start": 2869.44,
+ "end": 2870.08,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 3576
+ },
+ {
+ "start": 2870.08,
+ "end": 2870.78,
+ "confidence": 0,
+ "word": "early",
+ "punct": "early",
+ "index": 3577
+ },
+ {
+ "start": 2870.78,
+ "end": 2871,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 3578
+ },
+ {
+ "start": 2871,
+ "end": 2871.22,
+ "confidence": 0,
+ "word": "year,",
+ "punct": "year,",
+ "index": 3579
+ },
+ {
+ "start": 2871.22,
+ "end": 2872.28,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 3580
+ },
+ {
+ "start": 2872.28,
+ "end": 2872.52,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 3581
+ },
+ {
+ "start": 2872.52,
+ "end": 2872.76,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 3582
+ },
+ {
+ "start": 2872.76,
+ "end": 2873.38,
+ "confidence": 0,
+ "word": "actively",
+ "punct": "actively",
+ "index": 3583
+ },
+ {
+ "start": 2873.38,
+ "end": 2874.04,
+ "confidence": 0,
+ "word": "monitor",
+ "punct": "monitor",
+ "index": 3584
+ },
+ {
+ "start": 2874.04,
+ "end": 2874.9,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 3585
+ },
+ {
+ "start": 2874.9,
+ "end": 2875.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3586
+ },
+ {
+ "start": 2875.18,
+ "end": 2875.52,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 3587
+ },
+ {
+ "start": 2875.52,
+ "end": 2875.72,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 3588
+ },
+ {
+ "start": 2875.72,
+ "end": 2876.38,
+ "confidence": 0,
+ "word": "transferred",
+ "punct": "transferred",
+ "index": 3589
+ },
+ {
+ "start": 2876.38,
+ "end": 2876.6,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 3590
+ },
+ {
+ "start": 2876.6,
+ "end": 2877.04,
+ "confidence": 0,
+ "word": "such",
+ "punct": "such",
+ "index": 3591
+ },
+ {
+ "start": 2877.04,
+ "end": 2877.78,
+ "confidence": 0,
+ "word": "developers",
+ "punct": "developers",
+ "index": 3592
+ },
+ {
+ "start": 2877.78,
+ "end": 2878.46,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3593
+ },
+ {
+ "start": 2878.46,
+ "end": 2878.76,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 3594
+ },
+ {
+ "start": 2878.76,
+ "end": 2879.2,
+ "confidence": 0,
+ "word": "parties",
+ "punct": "parties.",
+ "index": 3595
+ }
+ ],
+ "start": 2868.46
+ }
+ },
+ {
+ "key": "4mjjt",
+ "text": "Moreover your policies only prohibit by developers to parties seeking to profit from such data.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2879.2,
+ "end": 2879.88,
+ "confidence": 0,
+ "word": "moreover",
+ "punct": "Moreover",
+ "index": 3596
+ },
+ {
+ "start": 2879.88,
+ "end": 2880.14,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 3597
+ },
+ {
+ "start": 2880.14,
+ "end": 2880.76,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies",
+ "index": 3598
+ },
+ {
+ "start": 2880.76,
+ "end": 2881.48,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 3599
+ },
+ {
+ "start": 2881.48,
+ "end": 2882.44,
+ "confidence": 0,
+ "word": "prohibit",
+ "punct": "prohibit",
+ "index": 3600
+ },
+ {
+ "start": 2882.44,
+ "end": 2883.42,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 3601
+ },
+ {
+ "start": 2883.42,
+ "end": 2884.14,
+ "confidence": 0,
+ "word": "developers",
+ "punct": "developers",
+ "index": 3602
+ },
+ {
+ "start": 2884.14,
+ "end": 2884.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3603
+ },
+ {
+ "start": 2884.38,
+ "end": 2884.84,
+ "confidence": 0,
+ "word": "parties",
+ "punct": "parties",
+ "index": 3604
+ },
+ {
+ "start": 2884.84,
+ "end": 2885.3,
+ "confidence": 0,
+ "word": "seeking",
+ "punct": "seeking",
+ "index": 3605
+ },
+ {
+ "start": 2885.3,
+ "end": 2885.44,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3606
+ },
+ {
+ "start": 2885.44,
+ "end": 2885.92,
+ "confidence": 0,
+ "word": "profit",
+ "punct": "profit",
+ "index": 3607
+ },
+ {
+ "start": 2885.92,
+ "end": 2886.56,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 3608
+ },
+ {
+ "start": 2886.56,
+ "end": 2886.86,
+ "confidence": 0,
+ "word": "such",
+ "punct": "such",
+ "index": 3609
+ },
+ {
+ "start": 2886.86,
+ "end": 2887.34,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data.",
+ "index": 3610
+ }
+ ],
+ "start": 2879.2
+ }
+ },
+ {
+ "key": "15smm",
+ "text": "Number one, besides professor Cogan transfer and now potentially cube.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2887.34,
+ "end": 2888.52,
+ "confidence": 0,
+ "word": "number",
+ "punct": "Number",
+ "index": 3611
+ },
+ {
+ "start": 2888.52,
+ "end": 2888.8,
+ "confidence": 0,
+ "word": "one,",
+ "punct": "one,",
+ "index": 3612
+ },
+ {
+ "start": 2888.8,
+ "end": 2889.44,
+ "confidence": 0,
+ "word": "besides",
+ "punct": "besides",
+ "index": 3613
+ },
+ {
+ "start": 2889.44,
+ "end": 2890.22,
+ "confidence": 0,
+ "word": "professor",
+ "punct": "professor",
+ "index": 3614
+ },
+ {
+ "start": 2890.22,
+ "end": 2890.94,
+ "confidence": 0,
+ "word": "cogan",
+ "punct": "Cogan",
+ "index": 3615
+ },
+ {
+ "start": 2890.94,
+ "end": 2891.76,
+ "confidence": 0,
+ "word": "transfer",
+ "punct": "transfer",
+ "index": 3616
+ },
+ {
+ "start": 2891.76,
+ "end": 2892.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3617
+ },
+ {
+ "start": 2892.54,
+ "end": 2892.8,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 3618
+ },
+ {
+ "start": 2892.8,
+ "end": 2893.42,
+ "confidence": 0,
+ "word": "potentially",
+ "punct": "potentially",
+ "index": 3619
+ },
+ {
+ "start": 2893.42,
+ "end": 2894.8,
+ "confidence": 0,
+ "word": "cube",
+ "punct": "cube.",
+ "index": 3620
+ }
+ ],
+ "start": 2887.34
+ }
+ },
+ {
+ "key": "6oet0",
+ "text": "Do you know of any instances where user data was improperly transferred to third party in breach of Facebook's terms.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2894.8,
+ "end": 2895.46,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 3621
+ },
+ {
+ "start": 2895.46,
+ "end": 2895.6,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 3622
+ },
+ {
+ "start": 2895.6,
+ "end": 2895.76,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 3623
+ },
+ {
+ "start": 2895.76,
+ "end": 2895.94,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3624
+ },
+ {
+ "start": 2895.94,
+ "end": 2896.2,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 3625
+ },
+ {
+ "start": 2896.2,
+ "end": 2896.96,
+ "confidence": 0,
+ "word": "instances",
+ "punct": "instances",
+ "index": 3626
+ },
+ {
+ "start": 2896.96,
+ "end": 2897.84,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 3627
+ },
+ {
+ "start": 2897.84,
+ "end": 2898.26,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 3628
+ },
+ {
+ "start": 2898.26,
+ "end": 2898.64,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 3629
+ },
+ {
+ "start": 2898.64,
+ "end": 2898.92,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 3630
+ },
+ {
+ "start": 2898.92,
+ "end": 2899.6,
+ "confidence": 0,
+ "word": "improperly",
+ "punct": "improperly",
+ "index": 3631
+ },
+ {
+ "start": 2899.6,
+ "end": 2900.28,
+ "confidence": 0,
+ "word": "transferred",
+ "punct": "transferred",
+ "index": 3632
+ },
+ {
+ "start": 2900.28,
+ "end": 2900.82,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3633
+ },
+ {
+ "start": 2900.82,
+ "end": 2901.24,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 3634
+ },
+ {
+ "start": 2901.24,
+ "end": 2901.68,
+ "confidence": 0,
+ "word": "party",
+ "punct": "party",
+ "index": 3635
+ },
+ {
+ "start": 2901.68,
+ "end": 2901.9,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 3636
+ },
+ {
+ "start": 2901.9,
+ "end": 2902.24,
+ "confidence": 0,
+ "word": "breach",
+ "punct": "breach",
+ "index": 3637
+ },
+ {
+ "start": 2902.24,
+ "end": 2902.4,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3638
+ },
+ {
+ "start": 2902.4,
+ "end": 2903.04,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 3639
+ },
+ {
+ "start": 2903.04,
+ "end": 2903.64,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms.",
+ "index": 3640
+ }
+ ],
+ "start": 2894.8
+ }
+ },
+ {
+ "key": "950o9",
+ "text": "If so, how many times does that happen?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2903.64,
+ "end": 2904.44,
+ "confidence": 0,
+ "word": "if",
+ "punct": "If",
+ "index": 3641
+ },
+ {
+ "start": 2904.44,
+ "end": 2904.9,
+ "confidence": 0,
+ "word": "so,",
+ "punct": "so,",
+ "index": 3642
+ },
+ {
+ "start": 2904.9,
+ "end": 2905.44,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 3643
+ },
+ {
+ "start": 2905.44,
+ "end": 2905.66,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 3644
+ },
+ {
+ "start": 2905.66,
+ "end": 2906.04,
+ "confidence": 0,
+ "word": "times",
+ "punct": "times",
+ "index": 3645
+ },
+ {
+ "start": 2906.04,
+ "end": 2906.24,
+ "confidence": 0,
+ "word": "does",
+ "punct": "does",
+ "index": 3646
+ },
+ {
+ "start": 2906.24,
+ "end": 2906.48,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3647
+ },
+ {
+ "start": 2906.48,
+ "end": 2906.96,
+ "confidence": 0,
+ "word": "happen",
+ "punct": "happen?",
+ "index": 3648
+ }
+ ],
+ "start": 2903.64
+ }
+ },
+ {
+ "key": "bd6v2",
+ "text": "And was Facebook only made aware of that transfer by some third party.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2906.96,
+ "end": 2907.64,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3649
+ },
+ {
+ "start": 2907.64,
+ "end": 2907.88,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 3650
+ },
+ {
+ "start": 2907.88,
+ "end": 2908.46,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 3651
+ },
+ {
+ "start": 2908.46,
+ "end": 2908.8,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 3652
+ },
+ {
+ "start": 2908.8,
+ "end": 2909.04,
+ "confidence": 0,
+ "word": "made",
+ "punct": "made",
+ "index": 3653
+ },
+ {
+ "start": 2909.04,
+ "end": 2909.42,
+ "confidence": 0,
+ "word": "aware",
+ "punct": "aware",
+ "index": 3654
+ },
+ {
+ "start": 2909.42,
+ "end": 2909.5,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3655
+ },
+ {
+ "start": 2909.5,
+ "end": 2909.74,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3656
+ },
+ {
+ "start": 2909.74,
+ "end": 2910.38,
+ "confidence": 0,
+ "word": "transfer",
+ "punct": "transfer",
+ "index": 3657
+ },
+ {
+ "start": 2910.38,
+ "end": 2911,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 3658
+ },
+ {
+ "start": 2911,
+ "end": 2911.3,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 3659
+ },
+ {
+ "start": 2911.3,
+ "end": 2911.66,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 3660
+ },
+ {
+ "start": 2911.66,
+ "end": 2913.66,
+ "confidence": 0,
+ "word": "party",
+ "punct": "party.",
+ "index": 3661
+ }
+ ],
+ "start": 2906.96
+ }
+ },
+ {
+ "key": "c5grb",
+ "text": "Mr Chairman, thank you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2913.66,
+ "end": 2914.64,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 3662
+ },
+ {
+ "start": 2914.64,
+ "end": 2914.94,
+ "confidence": 0,
+ "word": "chairman,",
+ "punct": "Chairman,",
+ "index": 3663
+ },
+ {
+ "start": 2914.94,
+ "end": 2915.2,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 3664
+ },
+ {
+ "start": 2915.2,
+ "end": 2915.6,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 3665
+ }
+ ],
+ "start": 2913.66
+ }
+ },
+ {
+ "key": "39nb8",
+ "text": "As I mentioned, we're now conducting a full investigation into every single app that had a access to a large amount of information before we locked down platform to prevent developers from accessing this information around 20 14 we believe that we're going to be investigating many apps, tens of thousands of apps.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2915.6,
+ "end": 2917.14,
+ "confidence": 0,
+ "word": "as",
+ "punct": "As",
+ "index": 3666
+ },
+ {
+ "start": 2917.14,
+ "end": 2917.24,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3667
+ },
+ {
+ "start": 2917.24,
+ "end": 2917.64,
+ "confidence": 0,
+ "word": "mentioned,",
+ "punct": "mentioned,",
+ "index": 3668
+ },
+ {
+ "start": 2917.64,
+ "end": 2918.06,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 3669
+ },
+ {
+ "start": 2918.06,
+ "end": 2918.24,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 3670
+ },
+ {
+ "start": 2918.24,
+ "end": 2918.8,
+ "confidence": 0,
+ "word": "conducting",
+ "punct": "conducting",
+ "index": 3671
+ },
+ {
+ "start": 2918.8,
+ "end": 2918.84,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3672
+ },
+ {
+ "start": 2918.84,
+ "end": 2919.16,
+ "confidence": 0,
+ "word": "full",
+ "punct": "full",
+ "index": 3673
+ },
+ {
+ "start": 2919.16,
+ "end": 2919.88,
+ "confidence": 0,
+ "word": "investigation",
+ "punct": "investigation",
+ "index": 3674
+ },
+ {
+ "start": 2919.88,
+ "end": 2920.3,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 3675
+ },
+ {
+ "start": 2920.3,
+ "end": 2920.72,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 3676
+ },
+ {
+ "start": 2920.72,
+ "end": 2921.02,
+ "confidence": 0,
+ "word": "single",
+ "punct": "single",
+ "index": 3677
+ },
+ {
+ "start": 2921.02,
+ "end": 2921.26,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 3678
+ },
+ {
+ "start": 2921.26,
+ "end": 2921.56,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3679
+ },
+ {
+ "start": 2921.56,
+ "end": 2921.88,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 3680
+ },
+ {
+ "start": 2921.88,
+ "end": 2922.02,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3681
+ },
+ {
+ "start": 2922.02,
+ "end": 2922.68,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access",
+ "index": 3682
+ },
+ {
+ "start": 2922.68,
+ "end": 2922.78,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3683
+ },
+ {
+ "start": 2922.78,
+ "end": 2922.88,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3684
+ },
+ {
+ "start": 2922.88,
+ "end": 2923.14,
+ "confidence": 0,
+ "word": "large",
+ "punct": "large",
+ "index": 3685
+ },
+ {
+ "start": 2923.14,
+ "end": 2923.34,
+ "confidence": 0,
+ "word": "amount",
+ "punct": "amount",
+ "index": 3686
+ },
+ {
+ "start": 2923.34,
+ "end": 2923.4,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3687
+ },
+ {
+ "start": 2923.4,
+ "end": 2923.96,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 3688
+ },
+ {
+ "start": 2923.96,
+ "end": 2924.9,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 3689
+ },
+ {
+ "start": 2924.9,
+ "end": 2925,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3690
+ },
+ {
+ "start": 2925,
+ "end": 2925.3,
+ "confidence": 0,
+ "word": "locked",
+ "punct": "locked",
+ "index": 3691
+ },
+ {
+ "start": 2925.3,
+ "end": 2925.6,
+ "confidence": 0,
+ "word": "down",
+ "punct": "down",
+ "index": 3692
+ },
+ {
+ "start": 2925.6,
+ "end": 2926.18,
+ "confidence": 0,
+ "word": "platform",
+ "punct": "platform",
+ "index": 3693
+ },
+ {
+ "start": 2926.18,
+ "end": 2926.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3694
+ },
+ {
+ "start": 2926.88,
+ "end": 2927.16,
+ "confidence": 0,
+ "word": "prevent",
+ "punct": "prevent",
+ "index": 3695
+ },
+ {
+ "start": 2927.16,
+ "end": 2927.64,
+ "confidence": 0,
+ "word": "developers",
+ "punct": "developers",
+ "index": 3696
+ },
+ {
+ "start": 2927.64,
+ "end": 2927.82,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 3697
+ },
+ {
+ "start": 2927.82,
+ "end": 2928.26,
+ "confidence": 0,
+ "word": "accessing",
+ "punct": "accessing",
+ "index": 3698
+ },
+ {
+ "start": 2928.26,
+ "end": 2928.42,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 3699
+ },
+ {
+ "start": 2928.42,
+ "end": 2928.96,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 3700
+ },
+ {
+ "start": 2928.96,
+ "end": 2929.42,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 3701
+ },
+ {
+ "start": 2929.42,
+ "end": 2929.7,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 3702
+ },
+ {
+ "start": 2929.7,
+ "end": 2930.62,
+ "confidence": 0,
+ "word": "14",
+ "punct": "14",
+ "index": 3703
+ },
+ {
+ "start": 2930.62,
+ "end": 2931.24,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3704
+ },
+ {
+ "start": 2931.24,
+ "end": 2931.76,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 3705
+ },
+ {
+ "start": 2931.76,
+ "end": 2931.88,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3706
+ },
+ {
+ "start": 2931.88,
+ "end": 2932.02,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 3707
+ },
+ {
+ "start": 2932.02,
+ "end": 2932.16,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 3708
+ },
+ {
+ "start": 2932.16,
+ "end": 2932.22,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3709
+ },
+ {
+ "start": 2932.22,
+ "end": 2932.28,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 3710
+ },
+ {
+ "start": 2932.28,
+ "end": 2932.82,
+ "confidence": 0,
+ "word": "investigating",
+ "punct": "investigating",
+ "index": 3711
+ },
+ {
+ "start": 2932.82,
+ "end": 2933.64,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 3712
+ },
+ {
+ "start": 2933.64,
+ "end": 2933.88,
+ "confidence": 0,
+ "word": "apps,",
+ "punct": "apps,",
+ "index": 3713
+ },
+ {
+ "start": 2933.88,
+ "end": 2934.24,
+ "confidence": 0,
+ "word": "tens",
+ "punct": "tens",
+ "index": 3714
+ },
+ {
+ "start": 2934.24,
+ "end": 2934.34,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3715
+ },
+ {
+ "start": 2934.34,
+ "end": 2934.72,
+ "confidence": 0,
+ "word": "thousands",
+ "punct": "thousands",
+ "index": 3716
+ },
+ {
+ "start": 2934.72,
+ "end": 2934.82,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3717
+ },
+ {
+ "start": 2934.82,
+ "end": 2935.08,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps.",
+ "index": 3718
+ }
+ ],
+ "start": 2915.6
+ }
+ },
+ {
+ "key": "3rvmf",
+ "text": "And if we find any suspicious activity we're going to conduct a full audit of those apps to understand how they're using their data and if they're doing anything improper, if we find that they're doing anything improper will ban them from Facebook and we will tell everyone affected.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2935.08,
+ "end": 2935.72,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3719
+ },
+ {
+ "start": 2935.72,
+ "end": 2935.82,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 3720
+ },
+ {
+ "start": 2935.82,
+ "end": 2935.92,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3721
+ },
+ {
+ "start": 2935.92,
+ "end": 2936.18,
+ "confidence": 0,
+ "word": "find",
+ "punct": "find",
+ "index": 3722
+ },
+ {
+ "start": 2936.18,
+ "end": 2936.44,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 3723
+ },
+ {
+ "start": 2936.44,
+ "end": 2937,
+ "confidence": 0,
+ "word": "suspicious",
+ "punct": "suspicious",
+ "index": 3724
+ },
+ {
+ "start": 2937,
+ "end": 2937.44,
+ "confidence": 0,
+ "word": "activity",
+ "punct": "activity",
+ "index": 3725
+ },
+ {
+ "start": 2937.44,
+ "end": 2938.12,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 3726
+ },
+ {
+ "start": 2938.12,
+ "end": 2938.32,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 3727
+ },
+ {
+ "start": 2938.32,
+ "end": 2938.44,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3728
+ },
+ {
+ "start": 2938.44,
+ "end": 2938.8,
+ "confidence": 0,
+ "word": "conduct",
+ "punct": "conduct",
+ "index": 3729
+ },
+ {
+ "start": 2938.8,
+ "end": 2938.86,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3730
+ },
+ {
+ "start": 2938.86,
+ "end": 2939.24,
+ "confidence": 0,
+ "word": "full",
+ "punct": "full",
+ "index": 3731
+ },
+ {
+ "start": 2939.24,
+ "end": 2939.54,
+ "confidence": 0,
+ "word": "audit",
+ "punct": "audit",
+ "index": 3732
+ },
+ {
+ "start": 2939.54,
+ "end": 2939.8,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3733
+ },
+ {
+ "start": 2939.8,
+ "end": 2940.04,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 3734
+ },
+ {
+ "start": 2940.04,
+ "end": 2940.32,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 3735
+ },
+ {
+ "start": 2940.32,
+ "end": 2940.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3736
+ },
+ {
+ "start": 2940.8,
+ "end": 2941.18,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 3737
+ },
+ {
+ "start": 2941.18,
+ "end": 2941.34,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 3738
+ },
+ {
+ "start": 2941.34,
+ "end": 2941.58,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 3739
+ },
+ {
+ "start": 2941.58,
+ "end": 2941.82,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 3740
+ },
+ {
+ "start": 2941.82,
+ "end": 2942,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 3741
+ },
+ {
+ "start": 2942,
+ "end": 2942.3,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 3742
+ },
+ {
+ "start": 2942.3,
+ "end": 2942.56,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3743
+ },
+ {
+ "start": 2942.56,
+ "end": 2942.66,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 3744
+ },
+ {
+ "start": 2942.66,
+ "end": 2942.86,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 3745
+ },
+ {
+ "start": 2942.86,
+ "end": 2943.02,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 3746
+ },
+ {
+ "start": 2943.02,
+ "end": 2943.28,
+ "confidence": 0,
+ "word": "anything",
+ "punct": "anything",
+ "index": 3747
+ },
+ {
+ "start": 2943.28,
+ "end": 2944.31,
+ "confidence": 0,
+ "word": "improper,",
+ "punct": "improper,",
+ "index": 3748
+ },
+ {
+ "start": 2944.31,
+ "end": 2944.51,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 3749
+ },
+ {
+ "start": 2944.51,
+ "end": 2944.61,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3750
+ },
+ {
+ "start": 2944.61,
+ "end": 2944.81,
+ "confidence": 0,
+ "word": "find",
+ "punct": "find",
+ "index": 3751
+ },
+ {
+ "start": 2944.81,
+ "end": 2944.91,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3752
+ },
+ {
+ "start": 2944.91,
+ "end": 2945.11,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 3753
+ },
+ {
+ "start": 2945.11,
+ "end": 2945.25,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 3754
+ },
+ {
+ "start": 2945.25,
+ "end": 2945.51,
+ "confidence": 0,
+ "word": "anything",
+ "punct": "anything",
+ "index": 3755
+ },
+ {
+ "start": 2945.51,
+ "end": 2945.93,
+ "confidence": 0,
+ "word": "improper",
+ "punct": "improper",
+ "index": 3756
+ },
+ {
+ "start": 2945.93,
+ "end": 2946.15,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 3757
+ },
+ {
+ "start": 2946.15,
+ "end": 2946.37,
+ "confidence": 0,
+ "word": "ban",
+ "punct": "ban",
+ "index": 3758
+ },
+ {
+ "start": 2946.37,
+ "end": 2946.51,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 3759
+ },
+ {
+ "start": 2946.51,
+ "end": 2946.69,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 3760
+ },
+ {
+ "start": 2946.69,
+ "end": 2947.15,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 3761
+ },
+ {
+ "start": 2947.15,
+ "end": 2947.89,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3762
+ },
+ {
+ "start": 2947.89,
+ "end": 2948.05,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3763
+ },
+ {
+ "start": 2948.05,
+ "end": 2948.21,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 3764
+ },
+ {
+ "start": 2948.21,
+ "end": 2948.39,
+ "confidence": 0,
+ "word": "tell",
+ "punct": "tell",
+ "index": 3765
+ },
+ {
+ "start": 2948.39,
+ "end": 2948.73,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 3766
+ },
+ {
+ "start": 2948.73,
+ "end": 2949.13,
+ "confidence": 0,
+ "word": "affected",
+ "punct": "affected.",
+ "index": 3767
+ }
+ ],
+ "start": 2935.08
+ }
+ },
+ {
+ "key": "38ilk",
+ "text": "As for past activity, I don't have all the examples of apps that we've banned here.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2949.13,
+ "end": 2950.11,
+ "confidence": 0,
+ "word": "as",
+ "punct": "As",
+ "index": 3768
+ },
+ {
+ "start": 2950.11,
+ "end": 2950.29,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 3769
+ },
+ {
+ "start": 2950.29,
+ "end": 2950.57,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past",
+ "index": 3770
+ },
+ {
+ "start": 2950.57,
+ "end": 2951.09,
+ "confidence": 0,
+ "word": "activity,",
+ "punct": "activity,",
+ "index": 3771
+ },
+ {
+ "start": 2951.09,
+ "end": 2951.57,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3772
+ },
+ {
+ "start": 2951.57,
+ "end": 2951.81,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 3773
+ },
+ {
+ "start": 2951.81,
+ "end": 2952.11,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3774
+ },
+ {
+ "start": 2952.11,
+ "end": 2952.97,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 3775
+ },
+ {
+ "start": 2952.97,
+ "end": 2953.13,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3776
+ },
+ {
+ "start": 2953.13,
+ "end": 2953.57,
+ "confidence": 0,
+ "word": "examples",
+ "punct": "examples",
+ "index": 3777
+ },
+ {
+ "start": 2953.57,
+ "end": 2953.65,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3778
+ },
+ {
+ "start": 2953.65,
+ "end": 2953.89,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 3779
+ },
+ {
+ "start": 2953.89,
+ "end": 2954.01,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3780
+ },
+ {
+ "start": 2954.01,
+ "end": 2954.19,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 3781
+ },
+ {
+ "start": 2954.19,
+ "end": 2954.49,
+ "confidence": 0,
+ "word": "banned",
+ "punct": "banned",
+ "index": 3782
+ },
+ {
+ "start": 2954.49,
+ "end": 2954.77,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here.",
+ "index": 3783
+ }
+ ],
+ "start": 2949.13
+ }
+ },
+ {
+ "key": "82a27",
+ "text": "But if you'd like, I can have my team follow up with you after this have you ever required an audit to ensure the deletion of improperly transfer data?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2954.77,
+ "end": 2955.45,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 3784
+ },
+ {
+ "start": 2955.45,
+ "end": 2955.55,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 3785
+ },
+ {
+ "start": 2955.55,
+ "end": 2955.79,
+ "confidence": 0,
+ "word": "you'd",
+ "punct": "you'd",
+ "index": 3786
+ },
+ {
+ "start": 2955.79,
+ "end": 2955.93,
+ "confidence": 0,
+ "word": "like,",
+ "punct": "like,",
+ "index": 3787
+ },
+ {
+ "start": 2955.93,
+ "end": 2956.03,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3788
+ },
+ {
+ "start": 2956.03,
+ "end": 2956.15,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 3789
+ },
+ {
+ "start": 2956.15,
+ "end": 2956.31,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3790
+ },
+ {
+ "start": 2956.31,
+ "end": 2956.41,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 3791
+ },
+ {
+ "start": 2956.41,
+ "end": 2956.59,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 3792
+ },
+ {
+ "start": 2956.59,
+ "end": 2956.85,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 3793
+ },
+ {
+ "start": 2956.85,
+ "end": 2956.95,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 3794
+ },
+ {
+ "start": 2956.95,
+ "end": 2957.07,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 3795
+ },
+ {
+ "start": 2957.07,
+ "end": 2957.17,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 3796
+ },
+ {
+ "start": 2957.17,
+ "end": 2957.41,
+ "confidence": 0,
+ "word": "after",
+ "punct": "after",
+ "index": 3797
+ },
+ {
+ "start": 2957.41,
+ "end": 2958,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 3798
+ },
+ {
+ "start": 2958,
+ "end": 2958.66,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3799
+ },
+ {
+ "start": 2958.66,
+ "end": 2958.82,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 3800
+ },
+ {
+ "start": 2958.82,
+ "end": 2959.58,
+ "confidence": 0,
+ "word": "ever",
+ "punct": "ever",
+ "index": 3801
+ },
+ {
+ "start": 2959.58,
+ "end": 2960.28,
+ "confidence": 0,
+ "word": "required",
+ "punct": "required",
+ "index": 3802
+ },
+ {
+ "start": 2960.28,
+ "end": 2960.48,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 3803
+ },
+ {
+ "start": 2960.48,
+ "end": 2960.86,
+ "confidence": 0,
+ "word": "audit",
+ "punct": "audit",
+ "index": 3804
+ },
+ {
+ "start": 2960.86,
+ "end": 2961.06,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3805
+ },
+ {
+ "start": 2961.06,
+ "end": 2961.5,
+ "confidence": 0,
+ "word": "ensure",
+ "punct": "ensure",
+ "index": 3806
+ },
+ {
+ "start": 2961.5,
+ "end": 2961.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3807
+ },
+ {
+ "start": 2961.7,
+ "end": 2962.32,
+ "confidence": 0,
+ "word": "deletion",
+ "punct": "deletion",
+ "index": 3808
+ },
+ {
+ "start": 2962.32,
+ "end": 2962.54,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3809
+ },
+ {
+ "start": 2962.54,
+ "end": 2963.24,
+ "confidence": 0,
+ "word": "improperly",
+ "punct": "improperly",
+ "index": 3810
+ },
+ {
+ "start": 2963.24,
+ "end": 2963.82,
+ "confidence": 0,
+ "word": "transfer",
+ "punct": "transfer",
+ "index": 3811
+ },
+ {
+ "start": 2963.82,
+ "end": 2964.26,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data?",
+ "index": 3812
+ }
+ ],
+ "start": 2954.77
+ }
+ },
+ {
+ "key": "8mhbg",
+ "text": "And if so, how many times, Mr Chairman?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2964.26,
+ "end": 2964.76,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3813
+ },
+ {
+ "start": 2964.76,
+ "end": 2964.94,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 3814
+ },
+ {
+ "start": 2964.94,
+ "end": 2965.16,
+ "confidence": 0,
+ "word": "so,",
+ "punct": "so,",
+ "index": 3815
+ },
+ {
+ "start": 2965.16,
+ "end": 2965.28,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 3816
+ },
+ {
+ "start": 2965.28,
+ "end": 2965.5,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 3817
+ },
+ {
+ "start": 2965.5,
+ "end": 2966.28,
+ "confidence": 0,
+ "word": "times,",
+ "punct": "times,",
+ "index": 3818
+ },
+ {
+ "start": 2966.28,
+ "end": 2967.26,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 3819
+ },
+ {
+ "start": 2967.26,
+ "end": 2968.01,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman?",
+ "index": 3820
+ }
+ ],
+ "start": 2964.26
+ }
+ },
+ {
+ "key": "c0773",
+ "text": "Yes, we have.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2968.01,
+ "end": 2968.69,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 3821
+ },
+ {
+ "start": 2968.69,
+ "end": 2968.87,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3822
+ },
+ {
+ "start": 2968.87,
+ "end": 2969.19,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have.",
+ "index": 3823
+ }
+ ],
+ "start": 2968.01
+ }
+ },
+ {
+ "key": "f77jv",
+ "text": "I don't have the exact figure on how many times we have.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2969.19,
+ "end": 2969.77,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3824
+ },
+ {
+ "start": 2969.77,
+ "end": 2969.99,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 3825
+ },
+ {
+ "start": 2969.99,
+ "end": 2970.13,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3826
+ },
+ {
+ "start": 2970.13,
+ "end": 2970.23,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3827
+ },
+ {
+ "start": 2970.23,
+ "end": 2970.59,
+ "confidence": 0,
+ "word": "exact",
+ "punct": "exact",
+ "index": 3828
+ },
+ {
+ "start": 2970.59,
+ "end": 2970.91,
+ "confidence": 0,
+ "word": "figure",
+ "punct": "figure",
+ "index": 3829
+ },
+ {
+ "start": 2970.91,
+ "end": 2971.05,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 3830
+ },
+ {
+ "start": 2971.05,
+ "end": 2971.25,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 3831
+ },
+ {
+ "start": 2971.25,
+ "end": 2971.41,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 3832
+ },
+ {
+ "start": 2971.41,
+ "end": 2971.69,
+ "confidence": 0,
+ "word": "times",
+ "punct": "times",
+ "index": 3833
+ },
+ {
+ "start": 2971.69,
+ "end": 2971.89,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3834
+ },
+ {
+ "start": 2971.89,
+ "end": 2972.19,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have.",
+ "index": 3835
+ }
+ ],
+ "start": 2969.19
+ }
+ },
+ {
+ "key": "2biqk",
+ "text": "But overall the way we've enforced our platform policies in the past.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2972.19,
+ "end": 2973.07,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 3836
+ },
+ {
+ "start": 2973.07,
+ "end": 2974.03,
+ "confidence": 0,
+ "word": "overall",
+ "punct": "overall",
+ "index": 3837
+ },
+ {
+ "start": 2974.03,
+ "end": 2974.27,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3838
+ },
+ {
+ "start": 2974.27,
+ "end": 2974.43,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 3839
+ },
+ {
+ "start": 2974.43,
+ "end": 2974.63,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 3840
+ },
+ {
+ "start": 2974.63,
+ "end": 2975.13,
+ "confidence": 0,
+ "word": "enforced",
+ "punct": "enforced",
+ "index": 3841
+ },
+ {
+ "start": 2975.13,
+ "end": 2975.33,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 3842
+ },
+ {
+ "start": 2975.33,
+ "end": 2975.79,
+ "confidence": 0,
+ "word": "platform",
+ "punct": "platform",
+ "index": 3843
+ },
+ {
+ "start": 2975.79,
+ "end": 2976.37,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies",
+ "index": 3844
+ },
+ {
+ "start": 2976.37,
+ "end": 2976.95,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 3845
+ },
+ {
+ "start": 2976.95,
+ "end": 2977.07,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3846
+ },
+ {
+ "start": 2977.07,
+ "end": 2978.02,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past.",
+ "index": 3847
+ }
+ ],
+ "start": 2972.19
+ }
+ },
+ {
+ "key": "6lsnd",
+ "text": "As we have looked at patterns of how apps have used our API's and access to information as well as looked into reports that people have made us about apps that might be doing sketchy things going forward.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2978.02,
+ "end": 2978.84,
+ "confidence": 0,
+ "word": "as",
+ "punct": "As",
+ "index": 3848
+ },
+ {
+ "start": 2978.84,
+ "end": 2979.06,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3849
+ },
+ {
+ "start": 2979.06,
+ "end": 2979.4,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3850
+ },
+ {
+ "start": 2979.4,
+ "end": 2979.94,
+ "confidence": 0,
+ "word": "looked",
+ "punct": "looked",
+ "index": 3851
+ },
+ {
+ "start": 2979.94,
+ "end": 2980.24,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 3852
+ },
+ {
+ "start": 2980.24,
+ "end": 2980.86,
+ "confidence": 0,
+ "word": "patterns",
+ "punct": "patterns",
+ "index": 3853
+ },
+ {
+ "start": 2980.86,
+ "end": 2981.04,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3854
+ },
+ {
+ "start": 2981.04,
+ "end": 2981.22,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 3855
+ },
+ {
+ "start": 2981.22,
+ "end": 2981.48,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 3856
+ },
+ {
+ "start": 2981.48,
+ "end": 2981.94,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3857
+ },
+ {
+ "start": 2981.94,
+ "end": 2982.14,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 3858
+ },
+ {
+ "start": 2982.14,
+ "end": 2982.3,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 3859
+ },
+ {
+ "start": 2982.3,
+ "end": 2982.76,
+ "confidence": 0,
+ "word": "api's",
+ "punct": "API's",
+ "index": 3860
+ },
+ {
+ "start": 2982.76,
+ "end": 2982.88,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3861
+ },
+ {
+ "start": 2982.88,
+ "end": 2983.22,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access",
+ "index": 3862
+ },
+ {
+ "start": 2983.22,
+ "end": 2983.3,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3863
+ },
+ {
+ "start": 2983.3,
+ "end": 2983.82,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 3864
+ },
+ {
+ "start": 2983.82,
+ "end": 2984.44,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 3865
+ },
+ {
+ "start": 2984.44,
+ "end": 2984.7,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well",
+ "index": 3866
+ },
+ {
+ "start": 2984.7,
+ "end": 2984.92,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 3867
+ },
+ {
+ "start": 2984.92,
+ "end": 2985.2,
+ "confidence": 0,
+ "word": "looked",
+ "punct": "looked",
+ "index": 3868
+ },
+ {
+ "start": 2985.2,
+ "end": 2985.64,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 3869
+ },
+ {
+ "start": 2985.64,
+ "end": 2986.48,
+ "confidence": 0,
+ "word": "reports",
+ "punct": "reports",
+ "index": 3870
+ },
+ {
+ "start": 2986.48,
+ "end": 2986.66,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3871
+ },
+ {
+ "start": 2986.66,
+ "end": 2986.88,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 3872
+ },
+ {
+ "start": 2986.88,
+ "end": 2987.04,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3873
+ },
+ {
+ "start": 2987.04,
+ "end": 2987.2,
+ "confidence": 0,
+ "word": "made",
+ "punct": "made",
+ "index": 3874
+ },
+ {
+ "start": 2987.2,
+ "end": 2987.46,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 3875
+ },
+ {
+ "start": 2987.46,
+ "end": 2987.64,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 3876
+ },
+ {
+ "start": 2987.64,
+ "end": 2987.88,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 3877
+ },
+ {
+ "start": 2987.88,
+ "end": 2988.02,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3878
+ },
+ {
+ "start": 2988.02,
+ "end": 2988.2,
+ "confidence": 0,
+ "word": "might",
+ "punct": "might",
+ "index": 3879
+ },
+ {
+ "start": 2988.2,
+ "end": 2988.3,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 3880
+ },
+ {
+ "start": 2988.3,
+ "end": 2988.52,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 3881
+ },
+ {
+ "start": 2988.52,
+ "end": 2988.94,
+ "confidence": 0,
+ "word": "sketchy",
+ "punct": "sketchy",
+ "index": 3882
+ },
+ {
+ "start": 2988.94,
+ "end": 2989.24,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 3883
+ },
+ {
+ "start": 2989.24,
+ "end": 2990.14,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 3884
+ },
+ {
+ "start": 2990.14,
+ "end": 2990.54,
+ "confidence": 0,
+ "word": "forward",
+ "punct": "forward.",
+ "index": 3885
+ }
+ ],
+ "start": 2978.02
+ }
+ },
+ {
+ "key": "9qsgb",
+ "text": "We're going to take a more proactive position on this and do much more regular spot checks and other reviews of apps as well as increasing the amount of audits that we do and again, I can make sure that our team up with you on anything about the specific past stats.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 2990.54,
+ "end": 2991.1,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "We're",
+ "index": 3886
+ },
+ {
+ "start": 2991.1,
+ "end": 2991.3,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 3887
+ },
+ {
+ "start": 2991.3,
+ "end": 2991.4,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3888
+ },
+ {
+ "start": 2991.4,
+ "end": 2991.56,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 3889
+ },
+ {
+ "start": 2991.56,
+ "end": 2991.64,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 3890
+ },
+ {
+ "start": 2991.64,
+ "end": 2991.84,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 3891
+ },
+ {
+ "start": 2991.84,
+ "end": 2992.4,
+ "confidence": 0,
+ "word": "proactive",
+ "punct": "proactive",
+ "index": 3892
+ },
+ {
+ "start": 2992.4,
+ "end": 2992.94,
+ "confidence": 0,
+ "word": "position",
+ "punct": "position",
+ "index": 3893
+ },
+ {
+ "start": 2992.94,
+ "end": 2993.1,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 3894
+ },
+ {
+ "start": 2993.1,
+ "end": 2993.82,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 3895
+ },
+ {
+ "start": 2993.82,
+ "end": 2994.48,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3896
+ },
+ {
+ "start": 2994.48,
+ "end": 2994.84,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 3897
+ },
+ {
+ "start": 2994.84,
+ "end": 2995.64,
+ "confidence": 0,
+ "word": "much",
+ "punct": "much",
+ "index": 3898
+ },
+ {
+ "start": 2995.64,
+ "end": 2995.82,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 3899
+ },
+ {
+ "start": 2995.82,
+ "end": 2996.16,
+ "confidence": 0,
+ "word": "regular",
+ "punct": "regular",
+ "index": 3900
+ },
+ {
+ "start": 2996.16,
+ "end": 2996.5,
+ "confidence": 0,
+ "word": "spot",
+ "punct": "spot",
+ "index": 3901
+ },
+ {
+ "start": 2996.5,
+ "end": 2996.78,
+ "confidence": 0,
+ "word": "checks",
+ "punct": "checks",
+ "index": 3902
+ },
+ {
+ "start": 2996.78,
+ "end": 2996.92,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3903
+ },
+ {
+ "start": 2996.92,
+ "end": 2997.14,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 3904
+ },
+ {
+ "start": 2997.14,
+ "end": 2997.62,
+ "confidence": 0,
+ "word": "reviews",
+ "punct": "reviews",
+ "index": 3905
+ },
+ {
+ "start": 2997.62,
+ "end": 2997.78,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3906
+ },
+ {
+ "start": 2997.78,
+ "end": 2998.06,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 3907
+ },
+ {
+ "start": 2998.06,
+ "end": 2999.04,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 3908
+ },
+ {
+ "start": 2999.04,
+ "end": 2999.32,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well",
+ "index": 3909
+ },
+ {
+ "start": 2999.32,
+ "end": 2999.62,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 3910
+ },
+ {
+ "start": 2999.62,
+ "end": 3000.1,
+ "confidence": 0,
+ "word": "increasing",
+ "punct": "increasing",
+ "index": 3911
+ },
+ {
+ "start": 3000.1,
+ "end": 3000.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3912
+ },
+ {
+ "start": 3000.2,
+ "end": 3000.44,
+ "confidence": 0,
+ "word": "amount",
+ "punct": "amount",
+ "index": 3913
+ },
+ {
+ "start": 3000.44,
+ "end": 3000.62,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3914
+ },
+ {
+ "start": 3000.62,
+ "end": 3001.04,
+ "confidence": 0,
+ "word": "audits",
+ "punct": "audits",
+ "index": 3915
+ },
+ {
+ "start": 3001.04,
+ "end": 3001.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3916
+ },
+ {
+ "start": 3001.2,
+ "end": 3001.32,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3917
+ },
+ {
+ "start": 3001.32,
+ "end": 3001.52,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 3918
+ },
+ {
+ "start": 3001.52,
+ "end": 3002.28,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 3919
+ },
+ {
+ "start": 3002.28,
+ "end": 3002.72,
+ "confidence": 0,
+ "word": "again,",
+ "punct": "again,",
+ "index": 3920
+ },
+ {
+ "start": 3002.72,
+ "end": 3002.84,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3921
+ },
+ {
+ "start": 3002.84,
+ "end": 3003.04,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 3922
+ },
+ {
+ "start": 3003.04,
+ "end": 3003.38,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 3923
+ },
+ {
+ "start": 3003.38,
+ "end": 3003.52,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 3924
+ },
+ {
+ "start": 3003.52,
+ "end": 3003.66,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3925
+ },
+ {
+ "start": 3003.66,
+ "end": 3003.76,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 3926
+ },
+ {
+ "start": 3003.76,
+ "end": 3004.07,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 3927
+ },
+ {
+ "start": 3004.07,
+ "end": 3004.47,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 3928
+ },
+ {
+ "start": 3004.47,
+ "end": 3004.61,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 3929
+ },
+ {
+ "start": 3004.61,
+ "end": 3004.77,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 3930
+ },
+ {
+ "start": 3004.77,
+ "end": 3005.15,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 3931
+ },
+ {
+ "start": 3005.15,
+ "end": 3005.53,
+ "confidence": 0,
+ "word": "anything",
+ "punct": "anything",
+ "index": 3932
+ },
+ {
+ "start": 3005.53,
+ "end": 3005.77,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 3933
+ },
+ {
+ "start": 3005.77,
+ "end": 3006.25,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 3934
+ },
+ {
+ "start": 3006.25,
+ "end": 3007.01,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 3935
+ },
+ {
+ "start": 3007.01,
+ "end": 3007.25,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past",
+ "index": 3936
+ },
+ {
+ "start": 3007.25,
+ "end": 3007.55,
+ "confidence": 0,
+ "word": "stats",
+ "punct": "stats.",
+ "index": 3937
+ }
+ ],
+ "start": 2990.54
+ }
+ },
+ {
+ "key": "b3ffa",
+ "text": "That would be interesting.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3007.55,
+ "end": 3007.67,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 3938
+ },
+ {
+ "start": 3007.67,
+ "end": 3007.83,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 3939
+ },
+ {
+ "start": 3007.83,
+ "end": 3007.91,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 3940
+ },
+ {
+ "start": 3007.91,
+ "end": 3008.29,
+ "confidence": 0,
+ "word": "interesting",
+ "punct": "interesting.",
+ "index": 3941
+ }
+ ],
+ "start": 3007.55
+ }
+ },
+ {
+ "key": "3kkbg",
+ "text": "I was going to assume that sitting here today, you have no idea.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3008.29,
+ "end": 3009.33,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3942
+ },
+ {
+ "start": 3009.33,
+ "end": 3009.51,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 3943
+ },
+ {
+ "start": 3009.51,
+ "end": 3009.79,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 3944
+ },
+ {
+ "start": 3009.79,
+ "end": 3009.95,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3945
+ },
+ {
+ "start": 3009.95,
+ "end": 3010.79,
+ "confidence": 0,
+ "word": "assume",
+ "punct": "assume",
+ "index": 3946
+ },
+ {
+ "start": 3010.79,
+ "end": 3011.03,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3947
+ },
+ {
+ "start": 3011.03,
+ "end": 3012.05,
+ "confidence": 0,
+ "word": "sitting",
+ "punct": "sitting",
+ "index": 3948
+ },
+ {
+ "start": 3012.05,
+ "end": 3012.25,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 3949
+ },
+ {
+ "start": 3012.25,
+ "end": 3012.63,
+ "confidence": 0,
+ "word": "today,",
+ "punct": "today,",
+ "index": 3950
+ },
+ {
+ "start": 3012.63,
+ "end": 3012.83,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 3951
+ },
+ {
+ "start": 3012.83,
+ "end": 3013.01,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3952
+ },
+ {
+ "start": 3013.01,
+ "end": 3013.21,
+ "confidence": 0,
+ "word": "no",
+ "punct": "no",
+ "index": 3953
+ },
+ {
+ "start": 3013.21,
+ "end": 3014.32,
+ "confidence": 0,
+ "word": "idea",
+ "punct": "idea.",
+ "index": 3954
+ }
+ ],
+ "start": 3008.29
+ }
+ },
+ {
+ "key": "6s6an",
+ "text": "And if I'm wrong on that you're telling me, I think that you're able to supply those figures to us, at least as of this point, Mr Chairman, I will have my team follow up with you on what information we have.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3014.32,
+ "end": 3015.12,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 3955
+ },
+ {
+ "start": 3015.12,
+ "end": 3015.52,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 3956
+ },
+ {
+ "start": 3015.52,
+ "end": 3015.86,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 3957
+ },
+ {
+ "start": 3015.86,
+ "end": 3016.14,
+ "confidence": 0,
+ "word": "wrong",
+ "punct": "wrong",
+ "index": 3958
+ },
+ {
+ "start": 3016.14,
+ "end": 3016.34,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 3959
+ },
+ {
+ "start": 3016.34,
+ "end": 3016.64,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3960
+ },
+ {
+ "start": 3016.64,
+ "end": 3018.1,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 3961
+ },
+ {
+ "start": 3018.1,
+ "end": 3018.5,
+ "confidence": 0,
+ "word": "telling",
+ "punct": "telling",
+ "index": 3962
+ },
+ {
+ "start": 3018.5,
+ "end": 3018.64,
+ "confidence": 0,
+ "word": "me,",
+ "punct": "me,",
+ "index": 3963
+ },
+ {
+ "start": 3018.64,
+ "end": 3018.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3964
+ },
+ {
+ "start": 3018.74,
+ "end": 3019.06,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 3965
+ },
+ {
+ "start": 3019.06,
+ "end": 3019.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 3966
+ },
+ {
+ "start": 3019.28,
+ "end": 3019.54,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 3967
+ },
+ {
+ "start": 3019.54,
+ "end": 3019.78,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 3968
+ },
+ {
+ "start": 3019.78,
+ "end": 3019.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3969
+ },
+ {
+ "start": 3019.88,
+ "end": 3020.28,
+ "confidence": 0,
+ "word": "supply",
+ "punct": "supply",
+ "index": 3970
+ },
+ {
+ "start": 3020.28,
+ "end": 3020.66,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 3971
+ },
+ {
+ "start": 3020.66,
+ "end": 3021.18,
+ "confidence": 0,
+ "word": "figures",
+ "punct": "figures",
+ "index": 3972
+ },
+ {
+ "start": 3021.18,
+ "end": 3021.42,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 3973
+ },
+ {
+ "start": 3021.42,
+ "end": 3021.66,
+ "confidence": 0,
+ "word": "us,",
+ "punct": "us,",
+ "index": 3974
+ },
+ {
+ "start": 3021.66,
+ "end": 3022.82,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 3975
+ },
+ {
+ "start": 3022.82,
+ "end": 3023.1,
+ "confidence": 0,
+ "word": "least",
+ "punct": "least",
+ "index": 3976
+ },
+ {
+ "start": 3023.1,
+ "end": 3023.36,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 3977
+ },
+ {
+ "start": 3023.36,
+ "end": 3023.52,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 3978
+ },
+ {
+ "start": 3023.52,
+ "end": 3023.76,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 3979
+ },
+ {
+ "start": 3023.76,
+ "end": 3024.78,
+ "confidence": 0,
+ "word": "point,",
+ "punct": "point,",
+ "index": 3980
+ },
+ {
+ "start": 3024.78,
+ "end": 3025.7,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 3981
+ },
+ {
+ "start": 3025.7,
+ "end": 3026.02,
+ "confidence": 0,
+ "word": "chairman,",
+ "punct": "Chairman,",
+ "index": 3982
+ },
+ {
+ "start": 3026.02,
+ "end": 3026.48,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 3983
+ },
+ {
+ "start": 3026.48,
+ "end": 3026.76,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 3984
+ },
+ {
+ "start": 3026.76,
+ "end": 3026.9,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 3985
+ },
+ {
+ "start": 3026.9,
+ "end": 3027.02,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 3986
+ },
+ {
+ "start": 3027.02,
+ "end": 3027.26,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 3987
+ },
+ {
+ "start": 3027.26,
+ "end": 3027.66,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 3988
+ },
+ {
+ "start": 3027.66,
+ "end": 3027.78,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 3989
+ },
+ {
+ "start": 3027.78,
+ "end": 3027.94,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 3990
+ },
+ {
+ "start": 3027.94,
+ "end": 3028.04,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 3991
+ },
+ {
+ "start": 3028.04,
+ "end": 3028.2,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 3992
+ },
+ {
+ "start": 3028.2,
+ "end": 3028.34,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 3993
+ },
+ {
+ "start": 3028.34,
+ "end": 3028.82,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 3994
+ },
+ {
+ "start": 3028.82,
+ "end": 3028.98,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 3995
+ },
+ {
+ "start": 3028.98,
+ "end": 3029.16,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have.",
+ "index": 3996
+ }
+ ],
+ "start": 3014.32
+ }
+ },
+ {
+ "key": "104u",
+ "text": "Okay, but right now, you have no certainty of whether or not how much of that's going on, right, okay.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3029.16,
+ "end": 3029.68,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "Okay,",
+ "index": 3997
+ },
+ {
+ "start": 3029.68,
+ "end": 3029.84,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 3998
+ },
+ {
+ "start": 3029.84,
+ "end": 3030.08,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 3999
+ },
+ {
+ "start": 3030.08,
+ "end": 3030.24,
+ "confidence": 0,
+ "word": "now,",
+ "punct": "now,",
+ "index": 4000
+ },
+ {
+ "start": 3030.24,
+ "end": 3030.44,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4001
+ },
+ {
+ "start": 3030.44,
+ "end": 3030.6,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 4002
+ },
+ {
+ "start": 3030.6,
+ "end": 3030.82,
+ "confidence": 0,
+ "word": "no",
+ "punct": "no",
+ "index": 4003
+ },
+ {
+ "start": 3030.82,
+ "end": 3031.3,
+ "confidence": 0,
+ "word": "certainty",
+ "punct": "certainty",
+ "index": 4004
+ },
+ {
+ "start": 3031.3,
+ "end": 3031.44,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4005
+ },
+ {
+ "start": 3031.44,
+ "end": 3031.76,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 4006
+ },
+ {
+ "start": 3031.76,
+ "end": 3031.9,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 4007
+ },
+ {
+ "start": 3031.9,
+ "end": 3032.14,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 4008
+ },
+ {
+ "start": 3032.14,
+ "end": 3033.34,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 4009
+ },
+ {
+ "start": 3033.34,
+ "end": 3033.54,
+ "confidence": 0,
+ "word": "much",
+ "punct": "much",
+ "index": 4010
+ },
+ {
+ "start": 3033.54,
+ "end": 3033.7,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4011
+ },
+ {
+ "start": 3033.7,
+ "end": 3034,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 4012
+ },
+ {
+ "start": 3034,
+ "end": 3034.66,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 4013
+ },
+ {
+ "start": 3034.66,
+ "end": 3034.94,
+ "confidence": 0,
+ "word": "on,",
+ "punct": "on,",
+ "index": 4014
+ },
+ {
+ "start": 3034.94,
+ "end": 3036.08,
+ "confidence": 0,
+ "word": "right,",
+ "punct": "right,",
+ "index": 4015
+ },
+ {
+ "start": 3036.08,
+ "end": 3037.22,
+ "confidence": 0,
+ "word": "okay",
+ "punct": "okay.",
+ "index": 4016
+ }
+ ],
+ "start": 3029.16
+ }
+ },
+ {
+ "key": "bdent",
+ "text": "Facebook collects massive amounts of data from consumers, including content networks contact lists device information location and information from third parties yet.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3037.22,
+ "end": 3038.2,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 4017
+ },
+ {
+ "start": 3038.2,
+ "end": 3038.64,
+ "confidence": 0,
+ "word": "collects",
+ "punct": "collects",
+ "index": 4018
+ },
+ {
+ "start": 3038.64,
+ "end": 3039.26,
+ "confidence": 0,
+ "word": "massive",
+ "punct": "massive",
+ "index": 4019
+ },
+ {
+ "start": 3039.26,
+ "end": 3039.66,
+ "confidence": 0,
+ "word": "amounts",
+ "punct": "amounts",
+ "index": 4020
+ },
+ {
+ "start": 3039.66,
+ "end": 3039.84,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4021
+ },
+ {
+ "start": 3039.84,
+ "end": 3040.18,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 4022
+ },
+ {
+ "start": 3040.18,
+ "end": 3040.4,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 4023
+ },
+ {
+ "start": 3040.4,
+ "end": 3041,
+ "confidence": 0,
+ "word": "consumers,",
+ "punct": "consumers,",
+ "index": 4024
+ },
+ {
+ "start": 3041,
+ "end": 3041.56,
+ "confidence": 0,
+ "word": "including",
+ "punct": "including",
+ "index": 4025
+ },
+ {
+ "start": 3041.56,
+ "end": 3042.54,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 4026
+ },
+ {
+ "start": 3042.54,
+ "end": 3043.96,
+ "confidence": 0,
+ "word": "networks",
+ "punct": "networks",
+ "index": 4027
+ },
+ {
+ "start": 3043.96,
+ "end": 3044.98,
+ "confidence": 0,
+ "word": "contact",
+ "punct": "contact",
+ "index": 4028
+ },
+ {
+ "start": 3044.98,
+ "end": 3045.5,
+ "confidence": 0,
+ "word": "lists",
+ "punct": "lists",
+ "index": 4029
+ },
+ {
+ "start": 3045.5,
+ "end": 3046.16,
+ "confidence": 0,
+ "word": "device",
+ "punct": "device",
+ "index": 4030
+ },
+ {
+ "start": 3046.16,
+ "end": 3047,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 4031
+ },
+ {
+ "start": 3047,
+ "end": 3047.98,
+ "confidence": 0,
+ "word": "location",
+ "punct": "location",
+ "index": 4032
+ },
+ {
+ "start": 3047.98,
+ "end": 3048.18,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4033
+ },
+ {
+ "start": 3048.18,
+ "end": 3048.88,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 4034
+ },
+ {
+ "start": 3048.88,
+ "end": 3049.06,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 4035
+ },
+ {
+ "start": 3049.06,
+ "end": 3049.4,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 4036
+ },
+ {
+ "start": 3049.4,
+ "end": 3049.84,
+ "confidence": 0,
+ "word": "parties",
+ "punct": "parties",
+ "index": 4037
+ },
+ {
+ "start": 3049.84,
+ "end": 3050.66,
+ "confidence": 0,
+ "word": "yet",
+ "punct": "yet.",
+ "index": 4038
+ }
+ ],
+ "start": 3037.22
+ }
+ },
+ {
+ "key": "24btt",
+ "text": "Your data policy is only a few pages long and provide consumers with only a few examples of what is collected and how it might be used.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3050.66,
+ "end": 3050.88,
+ "confidence": 0,
+ "word": "your",
+ "punct": "Your",
+ "index": 4039
+ },
+ {
+ "start": 3050.88,
+ "end": 3051.24,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 4040
+ },
+ {
+ "start": 3051.24,
+ "end": 3051.78,
+ "confidence": 0,
+ "word": "policy",
+ "punct": "policy",
+ "index": 4041
+ },
+ {
+ "start": 3051.78,
+ "end": 3051.98,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4042
+ },
+ {
+ "start": 3051.98,
+ "end": 3052.34,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 4043
+ },
+ {
+ "start": 3052.34,
+ "end": 3052.44,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4044
+ },
+ {
+ "start": 3052.44,
+ "end": 3052.68,
+ "confidence": 0,
+ "word": "few",
+ "punct": "few",
+ "index": 4045
+ },
+ {
+ "start": 3052.68,
+ "end": 3053.12,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages",
+ "index": 4046
+ },
+ {
+ "start": 3053.12,
+ "end": 3053.46,
+ "confidence": 0,
+ "word": "long",
+ "punct": "long",
+ "index": 4047
+ },
+ {
+ "start": 3053.46,
+ "end": 3053.6,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4048
+ },
+ {
+ "start": 3053.6,
+ "end": 3054.02,
+ "confidence": 0,
+ "word": "provide",
+ "punct": "provide",
+ "index": 4049
+ },
+ {
+ "start": 3054.02,
+ "end": 3054.66,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 4050
+ },
+ {
+ "start": 3054.66,
+ "end": 3055.18,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 4051
+ },
+ {
+ "start": 3055.18,
+ "end": 3055.42,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 4052
+ },
+ {
+ "start": 3055.42,
+ "end": 3055.48,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4053
+ },
+ {
+ "start": 3055.48,
+ "end": 3055.7,
+ "confidence": 0,
+ "word": "few",
+ "punct": "few",
+ "index": 4054
+ },
+ {
+ "start": 3055.7,
+ "end": 3056.3,
+ "confidence": 0,
+ "word": "examples",
+ "punct": "examples",
+ "index": 4055
+ },
+ {
+ "start": 3056.3,
+ "end": 3056.46,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4056
+ },
+ {
+ "start": 3056.46,
+ "end": 3056.62,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 4057
+ },
+ {
+ "start": 3056.62,
+ "end": 3056.82,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4058
+ },
+ {
+ "start": 3056.82,
+ "end": 3057.32,
+ "confidence": 0,
+ "word": "collected",
+ "punct": "collected",
+ "index": 4059
+ },
+ {
+ "start": 3057.32,
+ "end": 3057.82,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4060
+ },
+ {
+ "start": 3057.82,
+ "end": 3058.3,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 4061
+ },
+ {
+ "start": 3058.3,
+ "end": 3058.48,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4062
+ },
+ {
+ "start": 3058.48,
+ "end": 3058.78,
+ "confidence": 0,
+ "word": "might",
+ "punct": "might",
+ "index": 4063
+ },
+ {
+ "start": 3058.78,
+ "end": 3058.94,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 4064
+ },
+ {
+ "start": 3058.94,
+ "end": 3059.32,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used.",
+ "index": 4065
+ }
+ ],
+ "start": 3050.66
+ }
+ },
+ {
+ "key": "2h0ad",
+ "text": "The examples given emphasized benign uses such as connecting with friends.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3059.32,
+ "end": 3060.16,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 4066
+ },
+ {
+ "start": 3060.16,
+ "end": 3060.74,
+ "confidence": 0,
+ "word": "examples",
+ "punct": "examples",
+ "index": 4067
+ },
+ {
+ "start": 3060.74,
+ "end": 3061.14,
+ "confidence": 0,
+ "word": "given",
+ "punct": "given",
+ "index": 4068
+ },
+ {
+ "start": 3061.14,
+ "end": 3061.94,
+ "confidence": 0,
+ "word": "emphasized",
+ "punct": "emphasized",
+ "index": 4069
+ },
+ {
+ "start": 3061.94,
+ "end": 3062.52,
+ "confidence": 0,
+ "word": "benign",
+ "punct": "benign",
+ "index": 4070
+ },
+ {
+ "start": 3062.52,
+ "end": 3062.98,
+ "confidence": 0,
+ "word": "uses",
+ "punct": "uses",
+ "index": 4071
+ },
+ {
+ "start": 3062.98,
+ "end": 3063.8,
+ "confidence": 0,
+ "word": "such",
+ "punct": "such",
+ "index": 4072
+ },
+ {
+ "start": 3063.8,
+ "end": 3064,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 4073
+ },
+ {
+ "start": 3064,
+ "end": 3064.54,
+ "confidence": 0,
+ "word": "connecting",
+ "punct": "connecting",
+ "index": 4074
+ },
+ {
+ "start": 3064.54,
+ "end": 3064.74,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 4075
+ },
+ {
+ "start": 3064.74,
+ "end": 3065.5,
+ "confidence": 0,
+ "word": "friends",
+ "punct": "friends.",
+ "index": 4076
+ }
+ ],
+ "start": 3059.32
+ }
+ },
+ {
+ "key": "a2a0t",
+ "text": "But your policy does not give any indication for more controversial issues.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3065.5,
+ "end": 3065.94,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 4077
+ },
+ {
+ "start": 3065.94,
+ "end": 3066.16,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 4078
+ },
+ {
+ "start": 3066.16,
+ "end": 3066.64,
+ "confidence": 0,
+ "word": "policy",
+ "punct": "policy",
+ "index": 4079
+ },
+ {
+ "start": 3066.64,
+ "end": 3066.92,
+ "confidence": 0,
+ "word": "does",
+ "punct": "does",
+ "index": 4080
+ },
+ {
+ "start": 3066.92,
+ "end": 3067.2,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 4081
+ },
+ {
+ "start": 3067.2,
+ "end": 3067.42,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 4082
+ },
+ {
+ "start": 3067.42,
+ "end": 3067.74,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 4083
+ },
+ {
+ "start": 3067.74,
+ "end": 3068.46,
+ "confidence": 0,
+ "word": "indication",
+ "punct": "indication",
+ "index": 4084
+ },
+ {
+ "start": 3068.46,
+ "end": 3069.28,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 4085
+ },
+ {
+ "start": 3069.28,
+ "end": 3069.72,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 4086
+ },
+ {
+ "start": 3069.72,
+ "end": 3070.54,
+ "confidence": 0,
+ "word": "controversial",
+ "punct": "controversial",
+ "index": 4087
+ },
+ {
+ "start": 3070.54,
+ "end": 3071.04,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues.",
+ "index": 4088
+ }
+ ],
+ "start": 3065.5
+ }
+ },
+ {
+ "key": "bb0kc",
+ "text": "Of such data, my question why doesn't Facebook disclose to accusers all the ways the data might be used by Facebook and other third parties.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3071.04,
+ "end": 3071.24,
+ "confidence": 0,
+ "word": "of",
+ "punct": "Of",
+ "index": 4089
+ },
+ {
+ "start": 3071.24,
+ "end": 3071.52,
+ "confidence": 0,
+ "word": "such",
+ "punct": "such",
+ "index": 4090
+ },
+ {
+ "start": 3071.52,
+ "end": 3072.04,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 4091
+ },
+ {
+ "start": 3072.04,
+ "end": 3072.68,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 4092
+ },
+ {
+ "start": 3072.68,
+ "end": 3073.14,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question",
+ "index": 4093
+ },
+ {
+ "start": 3073.14,
+ "end": 3073.74,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 4094
+ },
+ {
+ "start": 3073.74,
+ "end": 3074.2,
+ "confidence": 0,
+ "word": "doesn't",
+ "punct": "doesn't",
+ "index": 4095
+ },
+ {
+ "start": 3074.2,
+ "end": 3074.78,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 4096
+ },
+ {
+ "start": 3074.78,
+ "end": 3075.5,
+ "confidence": 0,
+ "word": "disclose",
+ "punct": "disclose",
+ "index": 4097
+ },
+ {
+ "start": 3075.5,
+ "end": 3075.7,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4098
+ },
+ {
+ "start": 3075.7,
+ "end": 3076.76,
+ "confidence": 0,
+ "word": "accusers",
+ "punct": "accusers",
+ "index": 4099
+ },
+ {
+ "start": 3076.76,
+ "end": 3077.24,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 4100
+ },
+ {
+ "start": 3077.24,
+ "end": 3077.4,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4101
+ },
+ {
+ "start": 3077.4,
+ "end": 3077.78,
+ "confidence": 0,
+ "word": "ways",
+ "punct": "ways",
+ "index": 4102
+ },
+ {
+ "start": 3077.78,
+ "end": 3078.04,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4103
+ },
+ {
+ "start": 3078.04,
+ "end": 3078.4,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 4104
+ },
+ {
+ "start": 3078.4,
+ "end": 3078.64,
+ "confidence": 0,
+ "word": "might",
+ "punct": "might",
+ "index": 4105
+ },
+ {
+ "start": 3078.64,
+ "end": 3078.8,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 4106
+ },
+ {
+ "start": 3078.8,
+ "end": 3079.12,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 4107
+ },
+ {
+ "start": 3079.12,
+ "end": 3079.26,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 4108
+ },
+ {
+ "start": 3079.26,
+ "end": 3079.84,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 4109
+ },
+ {
+ "start": 3079.84,
+ "end": 3080.4,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4110
+ },
+ {
+ "start": 3080.4,
+ "end": 3080.82,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 4111
+ },
+ {
+ "start": 3080.82,
+ "end": 3081.32,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 4112
+ },
+ {
+ "start": 3081.32,
+ "end": 3081.76,
+ "confidence": 0,
+ "word": "parties",
+ "punct": "parties.",
+ "index": 4113
+ }
+ ],
+ "start": 3071.04
+ }
+ },
+ {
+ "key": "et6jf",
+ "text": "And what is Facebook's responsibility to inform users about that information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3081.76,
+ "end": 3082.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 4114
+ },
+ {
+ "start": 3082.3,
+ "end": 3082.54,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 4115
+ },
+ {
+ "start": 3082.54,
+ "end": 3082.72,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4116
+ },
+ {
+ "start": 3082.72,
+ "end": 3083.34,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 4117
+ },
+ {
+ "start": 3083.34,
+ "end": 3084.38,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 4118
+ },
+ {
+ "start": 3084.38,
+ "end": 3084.64,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4119
+ },
+ {
+ "start": 3084.64,
+ "end": 3085.12,
+ "confidence": 0,
+ "word": "inform",
+ "punct": "inform",
+ "index": 4120
+ },
+ {
+ "start": 3085.12,
+ "end": 3085.58,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 4121
+ },
+ {
+ "start": 3085.58,
+ "end": 3086.24,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 4122
+ },
+ {
+ "start": 3086.24,
+ "end": 3086.5,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4123
+ },
+ {
+ "start": 3086.5,
+ "end": 3088.02,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 4124
+ }
+ ],
+ "start": 3081.76
+ }
+ },
+ {
+ "key": "c6751",
+ "text": "Mr Chairman, I believe it's important to tell people exactly how the information that they Share On Facebook is going to be used that's why every single time you go to share something on Facebook, whether it's a photo and Facebook or a message and Messenger or WhatsApp every single time there's a control right there about who you're going to be sharing it with whether it's your friends or public or a specific group and you can change that and control that in line to your broader point about the privacy policy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3088.02,
+ "end": 3089.12,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 4125
+ },
+ {
+ "start": 3089.12,
+ "end": 3089.5,
+ "confidence": 0,
+ "word": "chairman,",
+ "punct": "Chairman,",
+ "index": 4126
+ },
+ {
+ "start": 3089.5,
+ "end": 3090.54,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4127
+ },
+ {
+ "start": 3090.54,
+ "end": 3090.94,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 4128
+ },
+ {
+ "start": 3090.94,
+ "end": 3091.12,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 4129
+ },
+ {
+ "start": 3091.12,
+ "end": 3091.58,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 4130
+ },
+ {
+ "start": 3091.58,
+ "end": 3091.7,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4131
+ },
+ {
+ "start": 3091.7,
+ "end": 3091.96,
+ "confidence": 0,
+ "word": "tell",
+ "punct": "tell",
+ "index": 4132
+ },
+ {
+ "start": 3091.96,
+ "end": 3092.22,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4133
+ },
+ {
+ "start": 3092.22,
+ "end": 3092.88,
+ "confidence": 0,
+ "word": "exactly",
+ "punct": "exactly",
+ "index": 4134
+ },
+ {
+ "start": 3092.88,
+ "end": 3093.04,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 4135
+ },
+ {
+ "start": 3093.04,
+ "end": 3093.16,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4136
+ },
+ {
+ "start": 3093.16,
+ "end": 3093.72,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 4137
+ },
+ {
+ "start": 3093.72,
+ "end": 3093.9,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4138
+ },
+ {
+ "start": 3093.9,
+ "end": 3094.08,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 4139
+ },
+ {
+ "start": 3094.08,
+ "end": 3094.88,
+ "confidence": 0,
+ "word": "share",
+ "punct": "Share",
+ "index": 4140
+ },
+ {
+ "start": 3094.88,
+ "end": 3095.02,
+ "confidence": 0,
+ "word": "on",
+ "punct": "On",
+ "index": 4141
+ },
+ {
+ "start": 3095.02,
+ "end": 3095.44,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 4142
+ },
+ {
+ "start": 3095.44,
+ "end": 3095.58,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4143
+ },
+ {
+ "start": 3095.58,
+ "end": 3095.78,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 4144
+ },
+ {
+ "start": 3095.78,
+ "end": 3095.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4145
+ },
+ {
+ "start": 3095.88,
+ "end": 3096,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 4146
+ },
+ {
+ "start": 3096,
+ "end": 3096.28,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 4147
+ },
+ {
+ "start": 3096.28,
+ "end": 3096.98,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 4148
+ },
+ {
+ "start": 3096.98,
+ "end": 3097.1,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 4149
+ },
+ {
+ "start": 3097.1,
+ "end": 3097.5,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 4150
+ },
+ {
+ "start": 3097.5,
+ "end": 3097.78,
+ "confidence": 0,
+ "word": "single",
+ "punct": "single",
+ "index": 4151
+ },
+ {
+ "start": 3097.78,
+ "end": 3098.14,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 4152
+ },
+ {
+ "start": 3098.14,
+ "end": 3098.32,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4153
+ },
+ {
+ "start": 3098.32,
+ "end": 3098.48,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 4154
+ },
+ {
+ "start": 3098.48,
+ "end": 3098.64,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4155
+ },
+ {
+ "start": 3098.64,
+ "end": 3098.88,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 4156
+ },
+ {
+ "start": 3098.88,
+ "end": 3099.2,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 4157
+ },
+ {
+ "start": 3099.2,
+ "end": 3099.34,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 4158
+ },
+ {
+ "start": 3099.34,
+ "end": 3099.74,
+ "confidence": 0,
+ "word": "facebook,",
+ "punct": "Facebook,",
+ "index": 4159
+ },
+ {
+ "start": 3099.74,
+ "end": 3099.98,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 4160
+ },
+ {
+ "start": 3099.98,
+ "end": 3100.14,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 4161
+ },
+ {
+ "start": 3100.14,
+ "end": 3100.2,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4162
+ },
+ {
+ "start": 3100.2,
+ "end": 3100.62,
+ "confidence": 0,
+ "word": "photo",
+ "punct": "photo",
+ "index": 4163
+ },
+ {
+ "start": 3100.62,
+ "end": 3100.78,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4164
+ },
+ {
+ "start": 3100.78,
+ "end": 3101.32,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 4165
+ },
+ {
+ "start": 3101.32,
+ "end": 3102.36,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 4166
+ },
+ {
+ "start": 3102.36,
+ "end": 3102.58,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4167
+ },
+ {
+ "start": 3102.58,
+ "end": 3103.04,
+ "confidence": 0,
+ "word": "message",
+ "punct": "message",
+ "index": 4168
+ },
+ {
+ "start": 3103.04,
+ "end": 3103.5,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4169
+ },
+ {
+ "start": 3103.5,
+ "end": 3103.98,
+ "confidence": 0,
+ "word": "messenger",
+ "punct": "Messenger",
+ "index": 4170
+ },
+ {
+ "start": 3103.98,
+ "end": 3104.1,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 4171
+ },
+ {
+ "start": 3104.1,
+ "end": 3104.56,
+ "confidence": 0,
+ "word": "whatsapp",
+ "punct": "WhatsApp",
+ "index": 4172
+ },
+ {
+ "start": 3104.56,
+ "end": 3105.38,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 4173
+ },
+ {
+ "start": 3105.38,
+ "end": 3105.62,
+ "confidence": 0,
+ "word": "single",
+ "punct": "single",
+ "index": 4174
+ },
+ {
+ "start": 3105.62,
+ "end": 3105.9,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 4175
+ },
+ {
+ "start": 3105.9,
+ "end": 3106.54,
+ "confidence": 0,
+ "word": "there's",
+ "punct": "there's",
+ "index": 4176
+ },
+ {
+ "start": 3106.54,
+ "end": 3106.6,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4177
+ },
+ {
+ "start": 3106.6,
+ "end": 3107,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 4178
+ },
+ {
+ "start": 3107,
+ "end": 3107.26,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 4179
+ },
+ {
+ "start": 3107.26,
+ "end": 3107.56,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 4180
+ },
+ {
+ "start": 3107.56,
+ "end": 3108.24,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 4181
+ },
+ {
+ "start": 3108.24,
+ "end": 3108.46,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 4182
+ },
+ {
+ "start": 3108.46,
+ "end": 3108.7,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 4183
+ },
+ {
+ "start": 3108.7,
+ "end": 3108.86,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 4184
+ },
+ {
+ "start": 3108.86,
+ "end": 3108.92,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4185
+ },
+ {
+ "start": 3108.92,
+ "end": 3109,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 4186
+ },
+ {
+ "start": 3109,
+ "end": 3109.24,
+ "confidence": 0,
+ "word": "sharing",
+ "punct": "sharing",
+ "index": 4187
+ },
+ {
+ "start": 3109.24,
+ "end": 3109.32,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4188
+ },
+ {
+ "start": 3109.32,
+ "end": 3109.5,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 4189
+ },
+ {
+ "start": 3109.5,
+ "end": 3109.78,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 4190
+ },
+ {
+ "start": 3109.78,
+ "end": 3109.94,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 4191
+ },
+ {
+ "start": 3109.94,
+ "end": 3110.14,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 4192
+ },
+ {
+ "start": 3110.14,
+ "end": 3110.86,
+ "confidence": 0,
+ "word": "friends",
+ "punct": "friends",
+ "index": 4193
+ },
+ {
+ "start": 3110.86,
+ "end": 3111.1,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 4194
+ },
+ {
+ "start": 3111.1,
+ "end": 3111.52,
+ "confidence": 0,
+ "word": "public",
+ "punct": "public",
+ "index": 4195
+ },
+ {
+ "start": 3111.52,
+ "end": 3111.72,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 4196
+ },
+ {
+ "start": 3111.72,
+ "end": 3111.78,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4197
+ },
+ {
+ "start": 3111.78,
+ "end": 3112.3,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 4198
+ },
+ {
+ "start": 3112.3,
+ "end": 3112.56,
+ "confidence": 0,
+ "word": "group",
+ "punct": "group",
+ "index": 4199
+ },
+ {
+ "start": 3112.56,
+ "end": 3113.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4200
+ },
+ {
+ "start": 3113.3,
+ "end": 3113.46,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4201
+ },
+ {
+ "start": 3113.46,
+ "end": 3113.9,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 4202
+ },
+ {
+ "start": 3113.9,
+ "end": 3114.14,
+ "confidence": 0,
+ "word": "change",
+ "punct": "change",
+ "index": 4203
+ },
+ {
+ "start": 3114.14,
+ "end": 3114.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4204
+ },
+ {
+ "start": 3114.28,
+ "end": 3114.4,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4205
+ },
+ {
+ "start": 3114.4,
+ "end": 3114.68,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 4206
+ },
+ {
+ "start": 3114.68,
+ "end": 3114.84,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4207
+ },
+ {
+ "start": 3114.84,
+ "end": 3114.96,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4208
+ },
+ {
+ "start": 3114.96,
+ "end": 3115.24,
+ "confidence": 0,
+ "word": "line",
+ "punct": "line",
+ "index": 4209
+ },
+ {
+ "start": 3115.24,
+ "end": 3115.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4210
+ },
+ {
+ "start": 3115.9,
+ "end": 3116.04,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 4211
+ },
+ {
+ "start": 3116.04,
+ "end": 3116.42,
+ "confidence": 0,
+ "word": "broader",
+ "punct": "broader",
+ "index": 4212
+ },
+ {
+ "start": 3116.42,
+ "end": 3116.7,
+ "confidence": 0,
+ "word": "point",
+ "punct": "point",
+ "index": 4213
+ },
+ {
+ "start": 3116.7,
+ "end": 3117.02,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 4214
+ },
+ {
+ "start": 3117.02,
+ "end": 3117.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4215
+ },
+ {
+ "start": 3117.22,
+ "end": 3117.8,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 4216
+ },
+ {
+ "start": 3117.8,
+ "end": 3118.98,
+ "confidence": 0,
+ "word": "policy",
+ "punct": "policy.",
+ "index": 4217
+ }
+ ],
+ "start": 3088.02
+ }
+ },
+ {
+ "key": "ikoq",
+ "text": "This gets into an issue that I think we and others in the tech industry of found challenging, which is that long.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3118.98,
+ "end": 3119.82,
+ "confidence": 0,
+ "word": "this",
+ "punct": "This",
+ "index": 4218
+ },
+ {
+ "start": 3119.82,
+ "end": 3120.02,
+ "confidence": 0,
+ "word": "gets",
+ "punct": "gets",
+ "index": 4219
+ },
+ {
+ "start": 3120.02,
+ "end": 3120.3,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 4220
+ },
+ {
+ "start": 3120.3,
+ "end": 3120.78,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 4221
+ },
+ {
+ "start": 3120.78,
+ "end": 3121.08,
+ "confidence": 0,
+ "word": "issue",
+ "punct": "issue",
+ "index": 4222
+ },
+ {
+ "start": 3121.08,
+ "end": 3121.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4223
+ },
+ {
+ "start": 3121.4,
+ "end": 3121.92,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4224
+ },
+ {
+ "start": 3121.92,
+ "end": 3122.22,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 4225
+ },
+ {
+ "start": 3122.22,
+ "end": 3122.44,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4226
+ },
+ {
+ "start": 3122.44,
+ "end": 3123,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4227
+ },
+ {
+ "start": 3123,
+ "end": 3123.48,
+ "confidence": 0,
+ "word": "others",
+ "punct": "others",
+ "index": 4228
+ },
+ {
+ "start": 3123.48,
+ "end": 3123.68,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4229
+ },
+ {
+ "start": 3123.68,
+ "end": 3123.82,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4230
+ },
+ {
+ "start": 3123.82,
+ "end": 3124,
+ "confidence": 0,
+ "word": "tech",
+ "punct": "tech",
+ "index": 4231
+ },
+ {
+ "start": 3124,
+ "end": 3124.36,
+ "confidence": 0,
+ "word": "industry",
+ "punct": "industry",
+ "index": 4232
+ },
+ {
+ "start": 3124.36,
+ "end": 3124.52,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4233
+ },
+ {
+ "start": 3124.52,
+ "end": 3124.76,
+ "confidence": 0,
+ "word": "found",
+ "punct": "found",
+ "index": 4234
+ },
+ {
+ "start": 3124.76,
+ "end": 3125.3,
+ "confidence": 0,
+ "word": "challenging,",
+ "punct": "challenging,",
+ "index": 4235
+ },
+ {
+ "start": 3125.3,
+ "end": 3125.94,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 4236
+ },
+ {
+ "start": 3125.94,
+ "end": 3126.08,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4237
+ },
+ {
+ "start": 3126.08,
+ "end": 3126.68,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4238
+ },
+ {
+ "start": 3126.68,
+ "end": 3127.3,
+ "confidence": 0,
+ "word": "long",
+ "punct": "long.",
+ "index": 4239
+ }
+ ],
+ "start": 3118.98
+ }
+ },
+ {
+ "key": "7i127",
+ "text": "Privacy policies are very confusing.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3127.3,
+ "end": 3127.8,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "Privacy",
+ "index": 4240
+ },
+ {
+ "start": 3127.8,
+ "end": 3128.26,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies",
+ "index": 4241
+ },
+ {
+ "start": 3128.26,
+ "end": 3128.44,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 4242
+ },
+ {
+ "start": 3128.44,
+ "end": 3128.78,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 4243
+ },
+ {
+ "start": 3128.78,
+ "end": 3129.38,
+ "confidence": 0,
+ "word": "confusing",
+ "punct": "confusing.",
+ "index": 4244
+ }
+ ],
+ "start": 3127.3
+ }
+ },
+ {
+ "key": "71jvg",
+ "text": "And if you make it long and spell out all the detail, then you're probably going to reduce the percent of people who read it and make it accessible to them.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3129.38,
+ "end": 3129.8,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 4245
+ },
+ {
+ "start": 3129.8,
+ "end": 3129.98,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 4246
+ },
+ {
+ "start": 3129.98,
+ "end": 3130.12,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4247
+ },
+ {
+ "start": 3130.12,
+ "end": 3130.32,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 4248
+ },
+ {
+ "start": 3130.32,
+ "end": 3130.44,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4249
+ },
+ {
+ "start": 3130.44,
+ "end": 3131.08,
+ "confidence": 0,
+ "word": "long",
+ "punct": "long",
+ "index": 4250
+ },
+ {
+ "start": 3131.08,
+ "end": 3131.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4251
+ },
+ {
+ "start": 3131.26,
+ "end": 3131.86,
+ "confidence": 0,
+ "word": "spell",
+ "punct": "spell",
+ "index": 4252
+ },
+ {
+ "start": 3131.86,
+ "end": 3131.98,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 4253
+ },
+ {
+ "start": 3131.98,
+ "end": 3132.1,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 4254
+ },
+ {
+ "start": 3132.1,
+ "end": 3132.26,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4255
+ },
+ {
+ "start": 3132.26,
+ "end": 3132.6,
+ "confidence": 0,
+ "word": "detail,",
+ "punct": "detail,",
+ "index": 4256
+ },
+ {
+ "start": 3132.6,
+ "end": 3133.2,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 4257
+ },
+ {
+ "start": 3133.2,
+ "end": 3133.42,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 4258
+ },
+ {
+ "start": 3133.42,
+ "end": 3133.84,
+ "confidence": 0,
+ "word": "probably",
+ "punct": "probably",
+ "index": 4259
+ },
+ {
+ "start": 3133.84,
+ "end": 3134,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 4260
+ },
+ {
+ "start": 3134,
+ "end": 3134.08,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4261
+ },
+ {
+ "start": 3134.08,
+ "end": 3134.36,
+ "confidence": 0,
+ "word": "reduce",
+ "punct": "reduce",
+ "index": 4262
+ },
+ {
+ "start": 3134.36,
+ "end": 3134.6,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4263
+ },
+ {
+ "start": 3134.6,
+ "end": 3135.08,
+ "confidence": 0,
+ "word": "percent",
+ "punct": "percent",
+ "index": 4264
+ },
+ {
+ "start": 3135.08,
+ "end": 3135.2,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4265
+ },
+ {
+ "start": 3135.2,
+ "end": 3135.46,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4266
+ },
+ {
+ "start": 3135.46,
+ "end": 3135.62,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 4267
+ },
+ {
+ "start": 3135.62,
+ "end": 3135.88,
+ "confidence": 0,
+ "word": "read",
+ "punct": "read",
+ "index": 4268
+ },
+ {
+ "start": 3135.88,
+ "end": 3136,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4269
+ },
+ {
+ "start": 3136,
+ "end": 3136.38,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4270
+ },
+ {
+ "start": 3136.38,
+ "end": 3136.56,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 4271
+ },
+ {
+ "start": 3136.56,
+ "end": 3136.64,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4272
+ },
+ {
+ "start": 3136.64,
+ "end": 3137.14,
+ "confidence": 0,
+ "word": "accessible",
+ "punct": "accessible",
+ "index": 4273
+ },
+ {
+ "start": 3137.14,
+ "end": 3137.26,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4274
+ },
+ {
+ "start": 3137.26,
+ "end": 3137.46,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them.",
+ "index": 4275
+ }
+ ],
+ "start": 3129.38
+ }
+ },
+ {
+ "key": "1vgp6",
+ "text": "So one of the things that that we've struggled with over time is to make something that is as simple as possible.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3137.46,
+ "end": 3138.16,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 4276
+ },
+ {
+ "start": 3138.16,
+ "end": 3138.52,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 4277
+ },
+ {
+ "start": 3138.52,
+ "end": 3138.6,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4278
+ },
+ {
+ "start": 3138.6,
+ "end": 3138.72,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4279
+ },
+ {
+ "start": 3138.72,
+ "end": 3138.92,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 4280
+ },
+ {
+ "start": 3138.92,
+ "end": 3139.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4281
+ },
+ {
+ "start": 3139.2,
+ "end": 3139.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4282
+ },
+ {
+ "start": 3139.36,
+ "end": 3139.62,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 4283
+ },
+ {
+ "start": 3139.62,
+ "end": 3140,
+ "confidence": 0,
+ "word": "struggled",
+ "punct": "struggled",
+ "index": 4284
+ },
+ {
+ "start": 3140,
+ "end": 3140.18,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 4285
+ },
+ {
+ "start": 3140.18,
+ "end": 3140.44,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 4286
+ },
+ {
+ "start": 3140.44,
+ "end": 3140.78,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 4287
+ },
+ {
+ "start": 3140.78,
+ "end": 3141.26,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4288
+ },
+ {
+ "start": 3141.26,
+ "end": 3141.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4289
+ },
+ {
+ "start": 3141.38,
+ "end": 3141.56,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 4290
+ },
+ {
+ "start": 3141.56,
+ "end": 3141.84,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 4291
+ },
+ {
+ "start": 3141.84,
+ "end": 3141.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4292
+ },
+ {
+ "start": 3141.96,
+ "end": 3142.12,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4293
+ },
+ {
+ "start": 3142.12,
+ "end": 3142.3,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 4294
+ },
+ {
+ "start": 3142.3,
+ "end": 3142.61,
+ "confidence": 0,
+ "word": "simple",
+ "punct": "simple",
+ "index": 4295
+ },
+ {
+ "start": 3142.61,
+ "end": 3142.73,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 4296
+ },
+ {
+ "start": 3142.73,
+ "end": 3143.15,
+ "confidence": 0,
+ "word": "possible",
+ "punct": "possible.",
+ "index": 4297
+ }
+ ],
+ "start": 3137.46
+ }
+ },
+ {
+ "key": "1mjte",
+ "text": "So people can understand it as well as giving them controls in line in the product in the context of when they're trying to actually use them taking into account that we don't expect that most people will want to go through and read a full legal document.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3143.15,
+ "end": 3143.33,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 4298
+ },
+ {
+ "start": 3143.33,
+ "end": 3143.61,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4299
+ },
+ {
+ "start": 3143.61,
+ "end": 3143.81,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 4300
+ },
+ {
+ "start": 3143.81,
+ "end": 3144.27,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 4301
+ },
+ {
+ "start": 3144.27,
+ "end": 3144.41,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4302
+ },
+ {
+ "start": 3144.41,
+ "end": 3145.01,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 4303
+ },
+ {
+ "start": 3145.01,
+ "end": 3145.29,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well",
+ "index": 4304
+ },
+ {
+ "start": 3145.29,
+ "end": 3145.47,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 4305
+ },
+ {
+ "start": 3145.47,
+ "end": 3145.71,
+ "confidence": 0,
+ "word": "giving",
+ "punct": "giving",
+ "index": 4306
+ },
+ {
+ "start": 3145.71,
+ "end": 3145.85,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 4307
+ },
+ {
+ "start": 3145.85,
+ "end": 3146.25,
+ "confidence": 0,
+ "word": "controls",
+ "punct": "controls",
+ "index": 4308
+ },
+ {
+ "start": 3146.25,
+ "end": 3146.43,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4309
+ },
+ {
+ "start": 3146.43,
+ "end": 3146.67,
+ "confidence": 0,
+ "word": "line",
+ "punct": "line",
+ "index": 4310
+ },
+ {
+ "start": 3146.67,
+ "end": 3146.77,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4311
+ },
+ {
+ "start": 3146.77,
+ "end": 3146.89,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4312
+ },
+ {
+ "start": 3146.89,
+ "end": 3147.25,
+ "confidence": 0,
+ "word": "product",
+ "punct": "product",
+ "index": 4313
+ },
+ {
+ "start": 3147.25,
+ "end": 3147.59,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4314
+ },
+ {
+ "start": 3147.59,
+ "end": 3147.71,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4315
+ },
+ {
+ "start": 3147.71,
+ "end": 3148.13,
+ "confidence": 0,
+ "word": "context",
+ "punct": "context",
+ "index": 4316
+ },
+ {
+ "start": 3148.13,
+ "end": 3148.25,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4317
+ },
+ {
+ "start": 3148.25,
+ "end": 3148.39,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 4318
+ },
+ {
+ "start": 3148.39,
+ "end": 3148.63,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 4319
+ },
+ {
+ "start": 3148.63,
+ "end": 3148.87,
+ "confidence": 0,
+ "word": "trying",
+ "punct": "trying",
+ "index": 4320
+ },
+ {
+ "start": 3148.87,
+ "end": 3148.97,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4321
+ },
+ {
+ "start": 3148.97,
+ "end": 3149.25,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 4322
+ },
+ {
+ "start": 3149.25,
+ "end": 3149.47,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 4323
+ },
+ {
+ "start": 3149.47,
+ "end": 3149.69,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 4324
+ },
+ {
+ "start": 3149.69,
+ "end": 3150.79,
+ "confidence": 0,
+ "word": "taking",
+ "punct": "taking",
+ "index": 4325
+ },
+ {
+ "start": 3150.79,
+ "end": 3150.95,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 4326
+ },
+ {
+ "start": 3150.95,
+ "end": 3151.25,
+ "confidence": 0,
+ "word": "account",
+ "punct": "account",
+ "index": 4327
+ },
+ {
+ "start": 3151.25,
+ "end": 3151.49,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4328
+ },
+ {
+ "start": 3151.49,
+ "end": 3152.07,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4329
+ },
+ {
+ "start": 3152.07,
+ "end": 3152.25,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 4330
+ },
+ {
+ "start": 3152.25,
+ "end": 3152.57,
+ "confidence": 0,
+ "word": "expect",
+ "punct": "expect",
+ "index": 4331
+ },
+ {
+ "start": 3152.57,
+ "end": 3152.71,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4332
+ },
+ {
+ "start": 3152.71,
+ "end": 3152.93,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 4333
+ },
+ {
+ "start": 3152.93,
+ "end": 3153.23,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4334
+ },
+ {
+ "start": 3153.23,
+ "end": 3153.47,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 4335
+ },
+ {
+ "start": 3153.47,
+ "end": 3153.63,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 4336
+ },
+ {
+ "start": 3153.63,
+ "end": 3153.71,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4337
+ },
+ {
+ "start": 3153.71,
+ "end": 3153.81,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 4338
+ },
+ {
+ "start": 3153.81,
+ "end": 3154.45,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 4339
+ },
+ {
+ "start": 3154.45,
+ "end": 3154.59,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4340
+ },
+ {
+ "start": 3154.59,
+ "end": 3154.81,
+ "confidence": 0,
+ "word": "read",
+ "punct": "read",
+ "index": 4341
+ },
+ {
+ "start": 3154.81,
+ "end": 3154.87,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4342
+ },
+ {
+ "start": 3154.87,
+ "end": 3155.09,
+ "confidence": 0,
+ "word": "full",
+ "punct": "full",
+ "index": 4343
+ },
+ {
+ "start": 3155.09,
+ "end": 3155.37,
+ "confidence": 0,
+ "word": "legal",
+ "punct": "legal",
+ "index": 4344
+ },
+ {
+ "start": 3155.37,
+ "end": 3156.51,
+ "confidence": 0,
+ "word": "document",
+ "punct": "document.",
+ "index": 4345
+ }
+ ],
+ "start": 3143.15
+ }
+ },
+ {
+ "key": "566g4",
+ "text": "Senator Nelson, thank you Mr Chairman yesterday when we talked, I gave the relatively harmless example that I'm communicating with my friends on Facebook and indicate that I love a certain kind of chocolate and all of a sudden I start receiving advertisements for chocolate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3156.51,
+ "end": 3157.51,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 4346
+ },
+ {
+ "start": 3157.51,
+ "end": 3158.54,
+ "confidence": 0,
+ "word": "nelson,",
+ "punct": "Nelson,",
+ "index": 4347
+ },
+ {
+ "start": 3158.54,
+ "end": 3159.36,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 4348
+ },
+ {
+ "start": 3159.36,
+ "end": 3159.5,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4349
+ },
+ {
+ "start": 3159.5,
+ "end": 3159.74,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 4350
+ },
+ {
+ "start": 3159.74,
+ "end": 3161.2,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman",
+ "index": 4351
+ },
+ {
+ "start": 3161.2,
+ "end": 3162.18,
+ "confidence": 0,
+ "word": "yesterday",
+ "punct": "yesterday",
+ "index": 4352
+ },
+ {
+ "start": 3162.18,
+ "end": 3162.42,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 4353
+ },
+ {
+ "start": 3162.42,
+ "end": 3162.54,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4354
+ },
+ {
+ "start": 3162.54,
+ "end": 3162.94,
+ "confidence": 0,
+ "word": "talked,",
+ "punct": "talked,",
+ "index": 4355
+ },
+ {
+ "start": 3162.94,
+ "end": 3163.08,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4356
+ },
+ {
+ "start": 3163.08,
+ "end": 3163.48,
+ "confidence": 0,
+ "word": "gave",
+ "punct": "gave",
+ "index": 4357
+ },
+ {
+ "start": 3163.48,
+ "end": 3163.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4358
+ },
+ {
+ "start": 3163.92,
+ "end": 3164.9,
+ "confidence": 0,
+ "word": "relatively",
+ "punct": "relatively",
+ "index": 4359
+ },
+ {
+ "start": 3164.9,
+ "end": 3165.84,
+ "confidence": 0,
+ "word": "harmless",
+ "punct": "harmless",
+ "index": 4360
+ },
+ {
+ "start": 3165.84,
+ "end": 3166.52,
+ "confidence": 0,
+ "word": "example",
+ "punct": "example",
+ "index": 4361
+ },
+ {
+ "start": 3166.52,
+ "end": 3167.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4362
+ },
+ {
+ "start": 3167.38,
+ "end": 3168.16,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 4363
+ },
+ {
+ "start": 3168.16,
+ "end": 3169.2,
+ "confidence": 0,
+ "word": "communicating",
+ "punct": "communicating",
+ "index": 4364
+ },
+ {
+ "start": 3169.2,
+ "end": 3169.44,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 4365
+ },
+ {
+ "start": 3169.44,
+ "end": 3169.68,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 4366
+ },
+ {
+ "start": 3169.68,
+ "end": 3170.2,
+ "confidence": 0,
+ "word": "friends",
+ "punct": "friends",
+ "index": 4367
+ },
+ {
+ "start": 3170.2,
+ "end": 3170.56,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 4368
+ },
+ {
+ "start": 3170.56,
+ "end": 3171.32,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 4369
+ },
+ {
+ "start": 3171.32,
+ "end": 3172.36,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4370
+ },
+ {
+ "start": 3172.36,
+ "end": 3173.36,
+ "confidence": 0,
+ "word": "indicate",
+ "punct": "indicate",
+ "index": 4371
+ },
+ {
+ "start": 3173.36,
+ "end": 3174.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4372
+ },
+ {
+ "start": 3174.38,
+ "end": 3174.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4373
+ },
+ {
+ "start": 3174.74,
+ "end": 3175.7,
+ "confidence": 0,
+ "word": "love",
+ "punct": "love",
+ "index": 4374
+ },
+ {
+ "start": 3175.7,
+ "end": 3175.76,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4375
+ },
+ {
+ "start": 3175.76,
+ "end": 3176.24,
+ "confidence": 0,
+ "word": "certain",
+ "punct": "certain",
+ "index": 4376
+ },
+ {
+ "start": 3176.24,
+ "end": 3176.56,
+ "confidence": 0,
+ "word": "kind",
+ "punct": "kind",
+ "index": 4377
+ },
+ {
+ "start": 3176.56,
+ "end": 3176.74,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4378
+ },
+ {
+ "start": 3176.74,
+ "end": 3177.4,
+ "confidence": 0,
+ "word": "chocolate",
+ "punct": "chocolate",
+ "index": 4379
+ },
+ {
+ "start": 3177.4,
+ "end": 3179.18,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4380
+ },
+ {
+ "start": 3179.18,
+ "end": 3180.16,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 4381
+ },
+ {
+ "start": 3180.16,
+ "end": 3180.26,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4382
+ },
+ {
+ "start": 3180.26,
+ "end": 3180.3,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4383
+ },
+ {
+ "start": 3180.3,
+ "end": 3180.7,
+ "confidence": 0,
+ "word": "sudden",
+ "punct": "sudden",
+ "index": 4384
+ },
+ {
+ "start": 3180.7,
+ "end": 3180.92,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4385
+ },
+ {
+ "start": 3180.92,
+ "end": 3181.54,
+ "confidence": 0,
+ "word": "start",
+ "punct": "start",
+ "index": 4386
+ },
+ {
+ "start": 3181.54,
+ "end": 3183.04,
+ "confidence": 0,
+ "word": "receiving",
+ "punct": "receiving",
+ "index": 4387
+ },
+ {
+ "start": 3183.04,
+ "end": 3184.04,
+ "confidence": 0,
+ "word": "advertisements",
+ "punct": "advertisements",
+ "index": 4388
+ },
+ {
+ "start": 3184.04,
+ "end": 3184.64,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 4389
+ },
+ {
+ "start": 3184.64,
+ "end": 3186.24,
+ "confidence": 0,
+ "word": "chocolate",
+ "punct": "chocolate.",
+ "index": 4390
+ }
+ ],
+ "start": 3156.51
+ }
+ },
+ {
+ "key": "bpc6h",
+ "text": "What if I don't want to receive those commercial advertisements?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3186.24,
+ "end": 3187.44,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 4391
+ },
+ {
+ "start": 3187.44,
+ "end": 3187.58,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 4392
+ },
+ {
+ "start": 3187.58,
+ "end": 3187.7,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4393
+ },
+ {
+ "start": 3187.7,
+ "end": 3188.1,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 4394
+ },
+ {
+ "start": 3188.1,
+ "end": 3188.5,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 4395
+ },
+ {
+ "start": 3188.5,
+ "end": 3189.2,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4396
+ },
+ {
+ "start": 3189.2,
+ "end": 3189.94,
+ "confidence": 0,
+ "word": "receive",
+ "punct": "receive",
+ "index": 4397
+ },
+ {
+ "start": 3189.94,
+ "end": 3190.8,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 4398
+ },
+ {
+ "start": 3190.8,
+ "end": 3191.46,
+ "confidence": 0,
+ "word": "commercial",
+ "punct": "commercial",
+ "index": 4399
+ },
+ {
+ "start": 3191.46,
+ "end": 3192.66,
+ "confidence": 0,
+ "word": "advertisements",
+ "punct": "advertisements?",
+ "index": 4400
+ }
+ ],
+ "start": 3186.24
+ }
+ },
+ {
+ "key": "e3106",
+ "text": "So your chief operating officer, miss Sandberg suggested on the Today show that Facebook users who do not want their personal information used for advertising might have to pay for that protection pay for.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3192.66,
+ "end": 3193.66,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 4401
+ },
+ {
+ "start": 3193.66,
+ "end": 3195,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 4402
+ },
+ {
+ "start": 3195,
+ "end": 3195.94,
+ "confidence": 0,
+ "word": "chief",
+ "punct": "chief",
+ "index": 4403
+ },
+ {
+ "start": 3195.94,
+ "end": 3196.64,
+ "confidence": 0,
+ "word": "operating",
+ "punct": "operating",
+ "index": 4404
+ },
+ {
+ "start": 3196.64,
+ "end": 3197.3,
+ "confidence": 0,
+ "word": "officer,",
+ "punct": "officer,",
+ "index": 4405
+ },
+ {
+ "start": 3197.3,
+ "end": 3197.78,
+ "confidence": 0,
+ "word": "miss",
+ "punct": "miss",
+ "index": 4406
+ },
+ {
+ "start": 3197.78,
+ "end": 3198.58,
+ "confidence": 0,
+ "word": "sandberg",
+ "punct": "Sandberg",
+ "index": 4407
+ },
+ {
+ "start": 3198.58,
+ "end": 3199.64,
+ "confidence": 0,
+ "word": "suggested",
+ "punct": "suggested",
+ "index": 4408
+ },
+ {
+ "start": 3199.64,
+ "end": 3200.18,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 4409
+ },
+ {
+ "start": 3200.18,
+ "end": 3200.86,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4410
+ },
+ {
+ "start": 3200.86,
+ "end": 3201.82,
+ "confidence": 0,
+ "word": "today",
+ "punct": "Today",
+ "index": 4411
+ },
+ {
+ "start": 3201.82,
+ "end": 3202.3,
+ "confidence": 0,
+ "word": "show",
+ "punct": "show",
+ "index": 4412
+ },
+ {
+ "start": 3202.3,
+ "end": 3203.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4413
+ },
+ {
+ "start": 3203.38,
+ "end": 3204.46,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 4414
+ },
+ {
+ "start": 3204.46,
+ "end": 3205.08,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 4415
+ },
+ {
+ "start": 3205.08,
+ "end": 3205.58,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 4416
+ },
+ {
+ "start": 3205.58,
+ "end": 3205.8,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 4417
+ },
+ {
+ "start": 3205.8,
+ "end": 3206.26,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 4418
+ },
+ {
+ "start": 3206.26,
+ "end": 3206.56,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 4419
+ },
+ {
+ "start": 3206.56,
+ "end": 3206.86,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 4420
+ },
+ {
+ "start": 3206.86,
+ "end": 3207.44,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 4421
+ },
+ {
+ "start": 3207.44,
+ "end": 3208.42,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 4422
+ },
+ {
+ "start": 3208.42,
+ "end": 3208.86,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 4423
+ },
+ {
+ "start": 3208.86,
+ "end": 3209.1,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 4424
+ },
+ {
+ "start": 3209.1,
+ "end": 3210.04,
+ "confidence": 0,
+ "word": "advertising",
+ "punct": "advertising",
+ "index": 4425
+ },
+ {
+ "start": 3210.04,
+ "end": 3211.06,
+ "confidence": 0,
+ "word": "might",
+ "punct": "might",
+ "index": 4426
+ },
+ {
+ "start": 3211.06,
+ "end": 3211.38,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 4427
+ },
+ {
+ "start": 3211.38,
+ "end": 3211.62,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4428
+ },
+ {
+ "start": 3211.62,
+ "end": 3212.18,
+ "confidence": 0,
+ "word": "pay",
+ "punct": "pay",
+ "index": 4429
+ },
+ {
+ "start": 3212.18,
+ "end": 3213.1,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 4430
+ },
+ {
+ "start": 3213.1,
+ "end": 3213.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4431
+ },
+ {
+ "start": 3213.36,
+ "end": 3214.04,
+ "confidence": 0,
+ "word": "protection",
+ "punct": "protection",
+ "index": 4432
+ },
+ {
+ "start": 3214.04,
+ "end": 3214.54,
+ "confidence": 0,
+ "word": "pay",
+ "punct": "pay",
+ "index": 4433
+ },
+ {
+ "start": 3214.54,
+ "end": 3215.48,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for.",
+ "index": 4434
+ }
+ ],
+ "start": 3192.66
+ }
+ },
+ {
+ "key": "fsb0n",
+ "text": "Are you actually considering having Facebook users pay for you not to use that information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3215.48,
+ "end": 3216.28,
+ "confidence": 0,
+ "word": "are",
+ "punct": "Are",
+ "index": 4435
+ },
+ {
+ "start": 3216.28,
+ "end": 3216.42,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4436
+ },
+ {
+ "start": 3216.42,
+ "end": 3217.92,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 4437
+ },
+ {
+ "start": 3217.92,
+ "end": 3218.9,
+ "confidence": 0,
+ "word": "considering",
+ "punct": "considering",
+ "index": 4438
+ },
+ {
+ "start": 3218.9,
+ "end": 3220.04,
+ "confidence": 0,
+ "word": "having",
+ "punct": "having",
+ "index": 4439
+ },
+ {
+ "start": 3220.04,
+ "end": 3220.74,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 4440
+ },
+ {
+ "start": 3220.74,
+ "end": 3222.24,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 4441
+ },
+ {
+ "start": 3222.24,
+ "end": 3223.44,
+ "confidence": 0,
+ "word": "pay",
+ "punct": "pay",
+ "index": 4442
+ },
+ {
+ "start": 3223.44,
+ "end": 3224.16,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 4443
+ },
+ {
+ "start": 3224.16,
+ "end": 3224.36,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4444
+ },
+ {
+ "start": 3224.36,
+ "end": 3224.7,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 4445
+ },
+ {
+ "start": 3224.7,
+ "end": 3224.92,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4446
+ },
+ {
+ "start": 3224.92,
+ "end": 3225.3,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 4447
+ },
+ {
+ "start": 3225.3,
+ "end": 3225.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4448
+ },
+ {
+ "start": 3225.58,
+ "end": 3227.92,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 4449
+ }
+ ],
+ "start": 3215.48
+ }
+ },
+ {
+ "key": "5d63q",
+ "text": "Senator people have a control over how their information is used in ads in the product today, so if you want to have an experience where your ads aren't you aren't targeted using all the information that we have available, you can turn off third party information, what we found is that even though some people don't like ads, people really don't like, ads that aren't relevant.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3227.92,
+ "end": 3228.94,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 4450
+ },
+ {
+ "start": 3228.94,
+ "end": 3230.06,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4451
+ },
+ {
+ "start": 3230.06,
+ "end": 3230.3,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 4452
+ },
+ {
+ "start": 3230.3,
+ "end": 3230.36,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4453
+ },
+ {
+ "start": 3230.36,
+ "end": 3230.84,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 4454
+ },
+ {
+ "start": 3230.84,
+ "end": 3231.12,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 4455
+ },
+ {
+ "start": 3231.12,
+ "end": 3231.3,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 4456
+ },
+ {
+ "start": 3231.3,
+ "end": 3231.5,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 4457
+ },
+ {
+ "start": 3231.5,
+ "end": 3232,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 4458
+ },
+ {
+ "start": 3232,
+ "end": 3232.18,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4459
+ },
+ {
+ "start": 3232.18,
+ "end": 3232.4,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 4460
+ },
+ {
+ "start": 3232.4,
+ "end": 3232.52,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4461
+ },
+ {
+ "start": 3232.52,
+ "end": 3232.88,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 4462
+ },
+ {
+ "start": 3232.88,
+ "end": 3233.02,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4463
+ },
+ {
+ "start": 3233.02,
+ "end": 3233.14,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4464
+ },
+ {
+ "start": 3233.14,
+ "end": 3233.46,
+ "confidence": 0,
+ "word": "product",
+ "punct": "product",
+ "index": 4465
+ },
+ {
+ "start": 3233.46,
+ "end": 3233.82,
+ "confidence": 0,
+ "word": "today,",
+ "punct": "today,",
+ "index": 4466
+ },
+ {
+ "start": 3233.82,
+ "end": 3234.46,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 4467
+ },
+ {
+ "start": 3234.46,
+ "end": 3234.56,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 4468
+ },
+ {
+ "start": 3234.56,
+ "end": 3234.74,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4469
+ },
+ {
+ "start": 3234.74,
+ "end": 3234.96,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 4470
+ },
+ {
+ "start": 3234.96,
+ "end": 3235.1,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4471
+ },
+ {
+ "start": 3235.1,
+ "end": 3235.28,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 4472
+ },
+ {
+ "start": 3235.28,
+ "end": 3235.36,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 4473
+ },
+ {
+ "start": 3235.36,
+ "end": 3235.98,
+ "confidence": 0,
+ "word": "experience",
+ "punct": "experience",
+ "index": 4474
+ },
+ {
+ "start": 3235.98,
+ "end": 3236.88,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 4475
+ },
+ {
+ "start": 3236.88,
+ "end": 3237.36,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 4476
+ },
+ {
+ "start": 3237.36,
+ "end": 3237.72,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 4477
+ },
+ {
+ "start": 3237.72,
+ "end": 3238.7,
+ "confidence": 0,
+ "word": "aren't",
+ "punct": "aren't",
+ "index": 4478
+ },
+ {
+ "start": 3238.7,
+ "end": 3239.1,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4479
+ },
+ {
+ "start": 3239.1,
+ "end": 3239.4,
+ "confidence": 0,
+ "word": "aren't",
+ "punct": "aren't",
+ "index": 4480
+ },
+ {
+ "start": 3239.4,
+ "end": 3239.86,
+ "confidence": 0,
+ "word": "targeted",
+ "punct": "targeted",
+ "index": 4481
+ },
+ {
+ "start": 3239.86,
+ "end": 3240.28,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 4482
+ },
+ {
+ "start": 3240.28,
+ "end": 3241.04,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 4483
+ },
+ {
+ "start": 3241.04,
+ "end": 3241.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4484
+ },
+ {
+ "start": 3241.18,
+ "end": 3241.6,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 4485
+ },
+ {
+ "start": 3241.6,
+ "end": 3241.76,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4486
+ },
+ {
+ "start": 3241.76,
+ "end": 3241.84,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4487
+ },
+ {
+ "start": 3241.84,
+ "end": 3241.96,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 4488
+ },
+ {
+ "start": 3241.96,
+ "end": 3242.36,
+ "confidence": 0,
+ "word": "available,",
+ "punct": "available,",
+ "index": 4489
+ },
+ {
+ "start": 3242.36,
+ "end": 3243.08,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4490
+ },
+ {
+ "start": 3243.08,
+ "end": 3243.2,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 4491
+ },
+ {
+ "start": 3243.2,
+ "end": 3243.4,
+ "confidence": 0,
+ "word": "turn",
+ "punct": "turn",
+ "index": 4492
+ },
+ {
+ "start": 3243.4,
+ "end": 3243.6,
+ "confidence": 0,
+ "word": "off",
+ "punct": "off",
+ "index": 4493
+ },
+ {
+ "start": 3243.6,
+ "end": 3243.9,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 4494
+ },
+ {
+ "start": 3243.9,
+ "end": 3244.14,
+ "confidence": 0,
+ "word": "party",
+ "punct": "party",
+ "index": 4495
+ },
+ {
+ "start": 3244.14,
+ "end": 3244.68,
+ "confidence": 0,
+ "word": "information,",
+ "punct": "information,",
+ "index": 4496
+ },
+ {
+ "start": 3244.68,
+ "end": 3245.5,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 4497
+ },
+ {
+ "start": 3245.5,
+ "end": 3245.6,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4498
+ },
+ {
+ "start": 3245.6,
+ "end": 3246.16,
+ "confidence": 0,
+ "word": "found",
+ "punct": "found",
+ "index": 4499
+ },
+ {
+ "start": 3246.16,
+ "end": 3246.88,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4500
+ },
+ {
+ "start": 3246.88,
+ "end": 3247.16,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4501
+ },
+ {
+ "start": 3247.16,
+ "end": 3248.02,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 4502
+ },
+ {
+ "start": 3248.02,
+ "end": 3248.2,
+ "confidence": 0,
+ "word": "though",
+ "punct": "though",
+ "index": 4503
+ },
+ {
+ "start": 3248.2,
+ "end": 3248.44,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 4504
+ },
+ {
+ "start": 3248.44,
+ "end": 3248.64,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4505
+ },
+ {
+ "start": 3248.64,
+ "end": 3248.94,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 4506
+ },
+ {
+ "start": 3248.94,
+ "end": 3249.14,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 4507
+ },
+ {
+ "start": 3249.14,
+ "end": 3249.96,
+ "confidence": 0,
+ "word": "ads,",
+ "punct": "ads,",
+ "index": 4508
+ },
+ {
+ "start": 3249.96,
+ "end": 3250.62,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4509
+ },
+ {
+ "start": 3250.62,
+ "end": 3251.16,
+ "confidence": 0,
+ "word": "really",
+ "punct": "really",
+ "index": 4510
+ },
+ {
+ "start": 3251.16,
+ "end": 3251.38,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 4511
+ },
+ {
+ "start": 3251.38,
+ "end": 3251.56,
+ "confidence": 0,
+ "word": "like,",
+ "punct": "like,",
+ "index": 4512
+ },
+ {
+ "start": 3251.56,
+ "end": 3251.8,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 4513
+ },
+ {
+ "start": 3251.8,
+ "end": 3251.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4514
+ },
+ {
+ "start": 3251.94,
+ "end": 3252.14,
+ "confidence": 0,
+ "word": "aren't",
+ "punct": "aren't",
+ "index": 4515
+ },
+ {
+ "start": 3252.14,
+ "end": 3252.5,
+ "confidence": 0,
+ "word": "relevant",
+ "punct": "relevant.",
+ "index": 4516
+ }
+ ],
+ "start": 3227.92
+ }
+ },
+ {
+ "key": "ag1mq",
+ "text": "And while there is some discomfort for sure with using information in making ads more relevant.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3252.5,
+ "end": 3253.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 4517
+ },
+ {
+ "start": 3253.3,
+ "end": 3254.12,
+ "confidence": 0,
+ "word": "while",
+ "punct": "while",
+ "index": 4518
+ },
+ {
+ "start": 3254.12,
+ "end": 3254.4,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 4519
+ },
+ {
+ "start": 3254.4,
+ "end": 3254.52,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4520
+ },
+ {
+ "start": 3254.52,
+ "end": 3254.82,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 4521
+ },
+ {
+ "start": 3254.82,
+ "end": 3255.5,
+ "confidence": 0,
+ "word": "discomfort",
+ "punct": "discomfort",
+ "index": 4522
+ },
+ {
+ "start": 3255.5,
+ "end": 3255.88,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 4523
+ },
+ {
+ "start": 3255.88,
+ "end": 3256.28,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 4524
+ },
+ {
+ "start": 3256.28,
+ "end": 3256.68,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 4525
+ },
+ {
+ "start": 3256.68,
+ "end": 3257.4,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 4526
+ },
+ {
+ "start": 3257.4,
+ "end": 3257.94,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 4527
+ },
+ {
+ "start": 3257.94,
+ "end": 3258.12,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4528
+ },
+ {
+ "start": 3258.12,
+ "end": 3258.4,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 4529
+ },
+ {
+ "start": 3258.4,
+ "end": 3259.06,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 4530
+ },
+ {
+ "start": 3259.06,
+ "end": 3260.04,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 4531
+ },
+ {
+ "start": 3260.04,
+ "end": 3261.28,
+ "confidence": 0,
+ "word": "relevant",
+ "punct": "relevant.",
+ "index": 4532
+ }
+ ],
+ "start": 3252.5
+ }
+ },
+ {
+ "key": "b8lju",
+ "text": "Overwhelming feedback that we get from our community is that people would rather have us show relevant content there than not so we offer this control that you're referencing.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3261.28,
+ "end": 3261.8,
+ "confidence": 0,
+ "word": "overwhelming",
+ "punct": "Overwhelming",
+ "index": 4533
+ },
+ {
+ "start": 3261.8,
+ "end": 3262.18,
+ "confidence": 0,
+ "word": "feedback",
+ "punct": "feedback",
+ "index": 4534
+ },
+ {
+ "start": 3262.18,
+ "end": 3262.34,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4535
+ },
+ {
+ "start": 3262.34,
+ "end": 3262.46,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4536
+ },
+ {
+ "start": 3262.46,
+ "end": 3262.7,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 4537
+ },
+ {
+ "start": 3262.7,
+ "end": 3262.92,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 4538
+ },
+ {
+ "start": 3262.92,
+ "end": 3263.08,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 4539
+ },
+ {
+ "start": 3263.08,
+ "end": 3263.56,
+ "confidence": 0,
+ "word": "community",
+ "punct": "community",
+ "index": 4540
+ },
+ {
+ "start": 3263.56,
+ "end": 3264.14,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4541
+ },
+ {
+ "start": 3264.14,
+ "end": 3264.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4542
+ },
+ {
+ "start": 3264.3,
+ "end": 3264.56,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4543
+ },
+ {
+ "start": 3264.56,
+ "end": 3264.76,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 4544
+ },
+ {
+ "start": 3264.76,
+ "end": 3265.1,
+ "confidence": 0,
+ "word": "rather",
+ "punct": "rather",
+ "index": 4545
+ },
+ {
+ "start": 3265.1,
+ "end": 3265.38,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 4546
+ },
+ {
+ "start": 3265.38,
+ "end": 3265.6,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 4547
+ },
+ {
+ "start": 3265.6,
+ "end": 3266.48,
+ "confidence": 0,
+ "word": "show",
+ "punct": "show",
+ "index": 4548
+ },
+ {
+ "start": 3266.48,
+ "end": 3266.9,
+ "confidence": 0,
+ "word": "relevant",
+ "punct": "relevant",
+ "index": 4549
+ },
+ {
+ "start": 3266.9,
+ "end": 3267.32,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 4550
+ },
+ {
+ "start": 3267.32,
+ "end": 3267.68,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 4551
+ },
+ {
+ "start": 3267.68,
+ "end": 3268.72,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 4552
+ },
+ {
+ "start": 3268.72,
+ "end": 3269,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 4553
+ },
+ {
+ "start": 3269,
+ "end": 3269.78,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 4554
+ },
+ {
+ "start": 3269.78,
+ "end": 3269.92,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4555
+ },
+ {
+ "start": 3269.92,
+ "end": 3270.2,
+ "confidence": 0,
+ "word": "offer",
+ "punct": "offer",
+ "index": 4556
+ },
+ {
+ "start": 3270.2,
+ "end": 3270.36,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 4557
+ },
+ {
+ "start": 3270.36,
+ "end": 3270.78,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 4558
+ },
+ {
+ "start": 3270.78,
+ "end": 3271.02,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4559
+ },
+ {
+ "start": 3271.02,
+ "end": 3271.44,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 4560
+ },
+ {
+ "start": 3271.44,
+ "end": 3272.6,
+ "confidence": 0,
+ "word": "referencing",
+ "punct": "referencing.",
+ "index": 4561
+ }
+ ],
+ "start": 3261.28
+ }
+ },
+ {
+ "key": "ffou3",
+ "text": "Some people use it it's not the majority of people on Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3272.6,
+ "end": 3273.44,
+ "confidence": 0,
+ "word": "some",
+ "punct": "Some",
+ "index": 4562
+ },
+ {
+ "start": 3273.44,
+ "end": 3273.64,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4563
+ },
+ {
+ "start": 3273.64,
+ "end": 3273.86,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 4564
+ },
+ {
+ "start": 3273.86,
+ "end": 3274,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4565
+ },
+ {
+ "start": 3274,
+ "end": 3274.88,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 4566
+ },
+ {
+ "start": 3274.88,
+ "end": 3274.98,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 4567
+ },
+ {
+ "start": 3274.98,
+ "end": 3275.1,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4568
+ },
+ {
+ "start": 3275.1,
+ "end": 3275.5,
+ "confidence": 0,
+ "word": "majority",
+ "punct": "majority",
+ "index": 4569
+ },
+ {
+ "start": 3275.5,
+ "end": 3275.62,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4570
+ },
+ {
+ "start": 3275.62,
+ "end": 3275.84,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4571
+ },
+ {
+ "start": 3275.84,
+ "end": 3275.98,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 4572
+ },
+ {
+ "start": 3275.98,
+ "end": 3276.84,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 4573
+ }
+ ],
+ "start": 3272.6
+ }
+ },
+ {
+ "key": "8d4a5",
+ "text": "And I think that that's a good level of control to offer.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3276.84,
+ "end": 3277.84,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 4574
+ },
+ {
+ "start": 3277.84,
+ "end": 3278.16,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4575
+ },
+ {
+ "start": 3278.16,
+ "end": 3278.34,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 4576
+ },
+ {
+ "start": 3278.34,
+ "end": 3278.46,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4577
+ },
+ {
+ "start": 3278.46,
+ "end": 3280.08,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 4578
+ },
+ {
+ "start": 3280.08,
+ "end": 3280.48,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4579
+ },
+ {
+ "start": 3280.48,
+ "end": 3280.7,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 4580
+ },
+ {
+ "start": 3280.7,
+ "end": 3280.92,
+ "confidence": 0,
+ "word": "level",
+ "punct": "level",
+ "index": 4581
+ },
+ {
+ "start": 3280.92,
+ "end": 3281.02,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4582
+ },
+ {
+ "start": 3281.02,
+ "end": 3281.34,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 4583
+ },
+ {
+ "start": 3281.34,
+ "end": 3281.5,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4584
+ },
+ {
+ "start": 3281.5,
+ "end": 3281.82,
+ "confidence": 0,
+ "word": "offer",
+ "punct": "offer.",
+ "index": 4585
+ }
+ ],
+ "start": 3276.84
+ }
+ },
+ {
+ "key": "ca6qn",
+ "text": "I think what Cheryl was saying was that in order to not run ads at all.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3281.82,
+ "end": 3282.16,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4586
+ },
+ {
+ "start": 3282.16,
+ "end": 3282.32,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 4587
+ },
+ {
+ "start": 3282.32,
+ "end": 3282.48,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 4588
+ },
+ {
+ "start": 3282.48,
+ "end": 3282.78,
+ "confidence": 0,
+ "word": "cheryl",
+ "punct": "Cheryl",
+ "index": 4589
+ },
+ {
+ "start": 3282.78,
+ "end": 3282.94,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 4590
+ },
+ {
+ "start": 3282.94,
+ "end": 3283.26,
+ "confidence": 0,
+ "word": "saying",
+ "punct": "saying",
+ "index": 4591
+ },
+ {
+ "start": 3283.26,
+ "end": 3283.62,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 4592
+ },
+ {
+ "start": 3283.62,
+ "end": 3283.92,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4593
+ },
+ {
+ "start": 3283.92,
+ "end": 3284.4,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4594
+ },
+ {
+ "start": 3284.4,
+ "end": 3284.62,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 4595
+ },
+ {
+ "start": 3284.62,
+ "end": 3284.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4596
+ },
+ {
+ "start": 3284.72,
+ "end": 3284.92,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 4597
+ },
+ {
+ "start": 3284.92,
+ "end": 3285.14,
+ "confidence": 0,
+ "word": "run",
+ "punct": "run",
+ "index": 4598
+ },
+ {
+ "start": 3285.14,
+ "end": 3285.38,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 4599
+ },
+ {
+ "start": 3285.38,
+ "end": 3285.5,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 4600
+ },
+ {
+ "start": 3285.5,
+ "end": 3285.78,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all.",
+ "index": 4601
+ }
+ ],
+ "start": 3281.82
+ }
+ },
+ {
+ "key": "2f1fc",
+ "text": "We would still need some sort of business model and that is your business model.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3285.78,
+ "end": 3286,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 4602
+ },
+ {
+ "start": 3286,
+ "end": 3286.16,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 4603
+ },
+ {
+ "start": 3286.16,
+ "end": 3286.34,
+ "confidence": 0,
+ "word": "still",
+ "punct": "still",
+ "index": 4604
+ },
+ {
+ "start": 3286.34,
+ "end": 3286.5,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 4605
+ },
+ {
+ "start": 3286.5,
+ "end": 3286.7,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 4606
+ },
+ {
+ "start": 3286.7,
+ "end": 3286.9,
+ "confidence": 0,
+ "word": "sort",
+ "punct": "sort",
+ "index": 4607
+ },
+ {
+ "start": 3286.9,
+ "end": 3287,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4608
+ },
+ {
+ "start": 3287,
+ "end": 3287.34,
+ "confidence": 0,
+ "word": "business",
+ "punct": "business",
+ "index": 4609
+ },
+ {
+ "start": 3287.34,
+ "end": 3288.42,
+ "confidence": 0,
+ "word": "model",
+ "punct": "model",
+ "index": 4610
+ },
+ {
+ "start": 3288.42,
+ "end": 3289.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4611
+ },
+ {
+ "start": 3289.42,
+ "end": 3289.64,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4612
+ },
+ {
+ "start": 3289.64,
+ "end": 3289.88,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4613
+ },
+ {
+ "start": 3289.88,
+ "end": 3290.12,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 4614
+ },
+ {
+ "start": 3290.12,
+ "end": 3290.58,
+ "confidence": 0,
+ "word": "business",
+ "punct": "business",
+ "index": 4615
+ },
+ {
+ "start": 3290.58,
+ "end": 3290.92,
+ "confidence": 0,
+ "word": "model",
+ "punct": "model.",
+ "index": 4616
+ }
+ ],
+ "start": 3285.78
+ }
+ },
+ {
+ "key": "arm9o",
+ "text": "So I take it that and I use the harmless example of chocolate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3290.92,
+ "end": 3291.3,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 4617
+ },
+ {
+ "start": 3291.3,
+ "end": 3291.72,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4618
+ },
+ {
+ "start": 3291.72,
+ "end": 3292.14,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 4619
+ },
+ {
+ "start": 3292.14,
+ "end": 3292.24,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4620
+ },
+ {
+ "start": 3292.24,
+ "end": 3293.42,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4621
+ },
+ {
+ "start": 3293.42,
+ "end": 3294.38,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4622
+ },
+ {
+ "start": 3294.38,
+ "end": 3294.48,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4623
+ },
+ {
+ "start": 3294.48,
+ "end": 3294.78,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 4624
+ },
+ {
+ "start": 3294.78,
+ "end": 3294.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4625
+ },
+ {
+ "start": 3294.98,
+ "end": 3295.48,
+ "confidence": 0,
+ "word": "harmless",
+ "punct": "harmless",
+ "index": 4626
+ },
+ {
+ "start": 3295.48,
+ "end": 3296.1,
+ "confidence": 0,
+ "word": "example",
+ "punct": "example",
+ "index": 4627
+ },
+ {
+ "start": 3296.1,
+ "end": 3296.24,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4628
+ },
+ {
+ "start": 3296.24,
+ "end": 3296.84,
+ "confidence": 0,
+ "word": "chocolate",
+ "punct": "chocolate.",
+ "index": 4629
+ }
+ ],
+ "start": 3290.92
+ }
+ },
+ {
+ "key": "pegf",
+ "text": "But if it got into more personal thing communicating with friends and I want to cut it off I'm going to have to pay you in order, not to send me using my personal information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3296.84,
+ "end": 3297.04,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 4630
+ },
+ {
+ "start": 3297.04,
+ "end": 3297.16,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 4631
+ },
+ {
+ "start": 3297.16,
+ "end": 3297.34,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4632
+ },
+ {
+ "start": 3297.34,
+ "end": 3297.56,
+ "confidence": 0,
+ "word": "got",
+ "punct": "got",
+ "index": 4633
+ },
+ {
+ "start": 3297.56,
+ "end": 3297.98,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 4634
+ },
+ {
+ "start": 3297.98,
+ "end": 3298.28,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 4635
+ },
+ {
+ "start": 3298.28,
+ "end": 3298.94,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 4636
+ },
+ {
+ "start": 3298.94,
+ "end": 3299.36,
+ "confidence": 0,
+ "word": "thing",
+ "punct": "thing",
+ "index": 4637
+ },
+ {
+ "start": 3299.36,
+ "end": 3300.28,
+ "confidence": 0,
+ "word": "communicating",
+ "punct": "communicating",
+ "index": 4638
+ },
+ {
+ "start": 3300.28,
+ "end": 3300.66,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 4639
+ },
+ {
+ "start": 3300.66,
+ "end": 3301.64,
+ "confidence": 0,
+ "word": "friends",
+ "punct": "friends",
+ "index": 4640
+ },
+ {
+ "start": 3301.64,
+ "end": 3302.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4641
+ },
+ {
+ "start": 3302.62,
+ "end": 3302.8,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4642
+ },
+ {
+ "start": 3302.8,
+ "end": 3303.02,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 4643
+ },
+ {
+ "start": 3303.02,
+ "end": 3303.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4644
+ },
+ {
+ "start": 3303.12,
+ "end": 3303.34,
+ "confidence": 0,
+ "word": "cut",
+ "punct": "cut",
+ "index": 4645
+ },
+ {
+ "start": 3303.34,
+ "end": 3303.48,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4646
+ },
+ {
+ "start": 3303.48,
+ "end": 3304.48,
+ "confidence": 0,
+ "word": "off",
+ "punct": "off",
+ "index": 4647
+ },
+ {
+ "start": 3304.48,
+ "end": 3305.3,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 4648
+ },
+ {
+ "start": 3305.3,
+ "end": 3305.52,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 4649
+ },
+ {
+ "start": 3305.52,
+ "end": 3305.6,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4650
+ },
+ {
+ "start": 3305.6,
+ "end": 3305.82,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 4651
+ },
+ {
+ "start": 3305.82,
+ "end": 3305.96,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4652
+ },
+ {
+ "start": 3305.96,
+ "end": 3306.18,
+ "confidence": 0,
+ "word": "pay",
+ "punct": "pay",
+ "index": 4653
+ },
+ {
+ "start": 3306.18,
+ "end": 3307.34,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4654
+ },
+ {
+ "start": 3307.34,
+ "end": 3308.36,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4655
+ },
+ {
+ "start": 3308.36,
+ "end": 3309.06,
+ "confidence": 0,
+ "word": "order,",
+ "punct": "order,",
+ "index": 4656
+ },
+ {
+ "start": 3309.06,
+ "end": 3309.5,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 4657
+ },
+ {
+ "start": 3309.5,
+ "end": 3309.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4658
+ },
+ {
+ "start": 3309.86,
+ "end": 3310.32,
+ "confidence": 0,
+ "word": "send",
+ "punct": "send",
+ "index": 4659
+ },
+ {
+ "start": 3310.32,
+ "end": 3311.26,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 4660
+ },
+ {
+ "start": 3311.26,
+ "end": 3312.22,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 4661
+ },
+ {
+ "start": 3312.22,
+ "end": 3312.56,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 4662
+ },
+ {
+ "start": 3312.56,
+ "end": 3313.02,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 4663
+ },
+ {
+ "start": 3313.02,
+ "end": 3313.86,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 4664
+ }
+ ],
+ "start": 3296.84
+ }
+ },
+ {
+ "key": "ejuo2",
+ "text": "Something that I don't want that in essence is what I understood miss Sandberg to say, is that correct?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3313.86,
+ "end": 3315.02,
+ "confidence": 0,
+ "word": "something",
+ "punct": "Something",
+ "index": 4665
+ },
+ {
+ "start": 3315.02,
+ "end": 3315.22,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4666
+ },
+ {
+ "start": 3315.22,
+ "end": 3315.36,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4667
+ },
+ {
+ "start": 3315.36,
+ "end": 3315.64,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 4668
+ },
+ {
+ "start": 3315.64,
+ "end": 3316.2,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 4669
+ },
+ {
+ "start": 3316.2,
+ "end": 3317.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4670
+ },
+ {
+ "start": 3317.18,
+ "end": 3317.62,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4671
+ },
+ {
+ "start": 3317.62,
+ "end": 3318.04,
+ "confidence": 0,
+ "word": "essence",
+ "punct": "essence",
+ "index": 4672
+ },
+ {
+ "start": 3318.04,
+ "end": 3318.24,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4673
+ },
+ {
+ "start": 3318.24,
+ "end": 3318.46,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 4674
+ },
+ {
+ "start": 3318.46,
+ "end": 3318.54,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 4675
+ },
+ {
+ "start": 3318.54,
+ "end": 3319.3,
+ "confidence": 0,
+ "word": "understood",
+ "punct": "understood",
+ "index": 4676
+ },
+ {
+ "start": 3319.3,
+ "end": 3319.6,
+ "confidence": 0,
+ "word": "miss",
+ "punct": "miss",
+ "index": 4677
+ },
+ {
+ "start": 3319.6,
+ "end": 3320.12,
+ "confidence": 0,
+ "word": "sandberg",
+ "punct": "Sandberg",
+ "index": 4678
+ },
+ {
+ "start": 3320.12,
+ "end": 3320.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4679
+ },
+ {
+ "start": 3320.28,
+ "end": 3320.56,
+ "confidence": 0,
+ "word": "say,",
+ "punct": "say,",
+ "index": 4680
+ },
+ {
+ "start": 3320.56,
+ "end": 3320.72,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4681
+ },
+ {
+ "start": 3320.72,
+ "end": 3320.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4682
+ },
+ {
+ "start": 3320.94,
+ "end": 3321.96,
+ "confidence": 0,
+ "word": "correct",
+ "punct": "correct?",
+ "index": 4683
+ }
+ ],
+ "start": 3313.86
+ }
+ },
+ {
+ "key": "7v775",
+ "text": "Yes, Senator, although to be clear, we don't offer an option today for people to pay to not show ads, we think offering an ad supported service is the most aligned with our mission of trying to help connect everyone in the world.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3321.96,
+ "end": 3322.74,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 4684
+ },
+ {
+ "start": 3322.74,
+ "end": 3323.24,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 4685
+ },
+ {
+ "start": 3323.24,
+ "end": 3323.66,
+ "confidence": 0,
+ "word": "although",
+ "punct": "although",
+ "index": 4686
+ },
+ {
+ "start": 3323.66,
+ "end": 3323.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4687
+ },
+ {
+ "start": 3323.88,
+ "end": 3324.04,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 4688
+ },
+ {
+ "start": 3324.04,
+ "end": 3324.3,
+ "confidence": 0,
+ "word": "clear,",
+ "punct": "clear,",
+ "index": 4689
+ },
+ {
+ "start": 3324.3,
+ "end": 3324.46,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4690
+ },
+ {
+ "start": 3324.46,
+ "end": 3324.72,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 4691
+ },
+ {
+ "start": 3324.72,
+ "end": 3325.08,
+ "confidence": 0,
+ "word": "offer",
+ "punct": "offer",
+ "index": 4692
+ },
+ {
+ "start": 3325.08,
+ "end": 3325.22,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 4693
+ },
+ {
+ "start": 3325.22,
+ "end": 3325.58,
+ "confidence": 0,
+ "word": "option",
+ "punct": "option",
+ "index": 4694
+ },
+ {
+ "start": 3325.58,
+ "end": 3325.94,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 4695
+ },
+ {
+ "start": 3325.94,
+ "end": 3326.22,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 4696
+ },
+ {
+ "start": 3326.22,
+ "end": 3326.46,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4697
+ },
+ {
+ "start": 3326.46,
+ "end": 3326.62,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4698
+ },
+ {
+ "start": 3326.62,
+ "end": 3326.84,
+ "confidence": 0,
+ "word": "pay",
+ "punct": "pay",
+ "index": 4699
+ },
+ {
+ "start": 3326.84,
+ "end": 3326.96,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4700
+ },
+ {
+ "start": 3326.96,
+ "end": 3327.2,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 4701
+ },
+ {
+ "start": 3327.2,
+ "end": 3327.42,
+ "confidence": 0,
+ "word": "show",
+ "punct": "show",
+ "index": 4702
+ },
+ {
+ "start": 3327.42,
+ "end": 3327.74,
+ "confidence": 0,
+ "word": "ads,",
+ "punct": "ads,",
+ "index": 4703
+ },
+ {
+ "start": 3327.74,
+ "end": 3328.32,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4704
+ },
+ {
+ "start": 3328.32,
+ "end": 3328.54,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 4705
+ },
+ {
+ "start": 3328.54,
+ "end": 3328.94,
+ "confidence": 0,
+ "word": "offering",
+ "punct": "offering",
+ "index": 4706
+ },
+ {
+ "start": 3328.94,
+ "end": 3329.02,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 4707
+ },
+ {
+ "start": 3329.02,
+ "end": 3329.2,
+ "confidence": 0,
+ "word": "ad",
+ "punct": "ad",
+ "index": 4708
+ },
+ {
+ "start": 3329.2,
+ "end": 3329.68,
+ "confidence": 0,
+ "word": "supported",
+ "punct": "supported",
+ "index": 4709
+ },
+ {
+ "start": 3329.68,
+ "end": 3330.1,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 4710
+ },
+ {
+ "start": 3330.1,
+ "end": 3330.66,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4711
+ },
+ {
+ "start": 3330.66,
+ "end": 3330.8,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4712
+ },
+ {
+ "start": 3330.8,
+ "end": 3331,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 4713
+ },
+ {
+ "start": 3331,
+ "end": 3331.36,
+ "confidence": 0,
+ "word": "aligned",
+ "punct": "aligned",
+ "index": 4714
+ },
+ {
+ "start": 3331.36,
+ "end": 3331.5,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 4715
+ },
+ {
+ "start": 3331.5,
+ "end": 3331.62,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 4716
+ },
+ {
+ "start": 3331.62,
+ "end": 3331.92,
+ "confidence": 0,
+ "word": "mission",
+ "punct": "mission",
+ "index": 4717
+ },
+ {
+ "start": 3331.92,
+ "end": 3332.06,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4718
+ },
+ {
+ "start": 3332.06,
+ "end": 3332.36,
+ "confidence": 0,
+ "word": "trying",
+ "punct": "trying",
+ "index": 4719
+ },
+ {
+ "start": 3332.36,
+ "end": 3332.46,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4720
+ },
+ {
+ "start": 3332.46,
+ "end": 3332.62,
+ "confidence": 0,
+ "word": "help",
+ "punct": "help",
+ "index": 4721
+ },
+ {
+ "start": 3332.62,
+ "end": 3332.9,
+ "confidence": 0,
+ "word": "connect",
+ "punct": "connect",
+ "index": 4722
+ },
+ {
+ "start": 3332.9,
+ "end": 3333.22,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 4723
+ },
+ {
+ "start": 3333.22,
+ "end": 3333.3,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4724
+ },
+ {
+ "start": 3333.3,
+ "end": 3333.4,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4725
+ },
+ {
+ "start": 3333.4,
+ "end": 3333.68,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world.",
+ "index": 4726
+ }
+ ],
+ "start": 3321.96
+ }
+ },
+ {
+ "key": "5f1bd",
+ "text": "Because we want to offer a free service that everyone can afford.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3333.68,
+ "end": 3334.4,
+ "confidence": 0,
+ "word": "because",
+ "punct": "Because",
+ "index": 4727
+ },
+ {
+ "start": 3334.4,
+ "end": 3334.8,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4728
+ },
+ {
+ "start": 3334.8,
+ "end": 3334.98,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 4729
+ },
+ {
+ "start": 3334.98,
+ "end": 3335.06,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4730
+ },
+ {
+ "start": 3335.06,
+ "end": 3335.36,
+ "confidence": 0,
+ "word": "offer",
+ "punct": "offer",
+ "index": 4731
+ },
+ {
+ "start": 3335.36,
+ "end": 3335.44,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4732
+ },
+ {
+ "start": 3335.44,
+ "end": 3335.82,
+ "confidence": 0,
+ "word": "free",
+ "punct": "free",
+ "index": 4733
+ },
+ {
+ "start": 3335.82,
+ "end": 3336.12,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 4734
+ },
+ {
+ "start": 3336.12,
+ "end": 3336.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4735
+ },
+ {
+ "start": 3336.32,
+ "end": 3336.62,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 4736
+ },
+ {
+ "start": 3336.62,
+ "end": 3336.78,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 4737
+ },
+ {
+ "start": 3336.78,
+ "end": 3337.12,
+ "confidence": 0,
+ "word": "afford",
+ "punct": "afford.",
+ "index": 4738
+ }
+ ],
+ "start": 3333.68
+ }
+ },
+ {
+ "key": "d3hg1",
+ "text": "OK that's the only way that we can reach billions of people.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3337.12,
+ "end": 3337.58,
+ "confidence": 0,
+ "word": "ok",
+ "punct": "OK",
+ "index": 4739
+ },
+ {
+ "start": 3337.58,
+ "end": 3337.76,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 4740
+ },
+ {
+ "start": 3337.76,
+ "end": 3337.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4741
+ },
+ {
+ "start": 3337.88,
+ "end": 3338.04,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 4742
+ },
+ {
+ "start": 3338.04,
+ "end": 3338.2,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 4743
+ },
+ {
+ "start": 3338.2,
+ "end": 3338.34,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4744
+ },
+ {
+ "start": 3338.34,
+ "end": 3338.44,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4745
+ },
+ {
+ "start": 3338.44,
+ "end": 3338.6,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 4746
+ },
+ {
+ "start": 3338.6,
+ "end": 3338.82,
+ "confidence": 0,
+ "word": "reach",
+ "punct": "reach",
+ "index": 4747
+ },
+ {
+ "start": 3338.82,
+ "end": 3339.22,
+ "confidence": 0,
+ "word": "billions",
+ "punct": "billions",
+ "index": 4748
+ },
+ {
+ "start": 3339.22,
+ "end": 3339.36,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4749
+ },
+ {
+ "start": 3339.36,
+ "end": 3339.62,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people.",
+ "index": 4750
+ }
+ ],
+ "start": 3337.12
+ }
+ },
+ {
+ "key": "b7rpa",
+ "text": "So therefore you consider my personally, identifiable data, the company's data.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3339.62,
+ "end": 3340.3,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 4751
+ },
+ {
+ "start": 3340.3,
+ "end": 3341.16,
+ "confidence": 0,
+ "word": "therefore",
+ "punct": "therefore",
+ "index": 4752
+ },
+ {
+ "start": 3341.16,
+ "end": 3341.46,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4753
+ },
+ {
+ "start": 3341.46,
+ "end": 3342.1,
+ "confidence": 0,
+ "word": "consider",
+ "punct": "consider",
+ "index": 4754
+ },
+ {
+ "start": 3342.1,
+ "end": 3342.48,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 4755
+ },
+ {
+ "start": 3342.48,
+ "end": 3343.14,
+ "confidence": 0,
+ "word": "personally,",
+ "punct": "personally,",
+ "index": 4756
+ },
+ {
+ "start": 3343.14,
+ "end": 3344.1,
+ "confidence": 0,
+ "word": "identifiable",
+ "punct": "identifiable",
+ "index": 4757
+ },
+ {
+ "start": 3344.1,
+ "end": 3345.1,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 4758
+ },
+ {
+ "start": 3345.1,
+ "end": 3345.84,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4759
+ },
+ {
+ "start": 3345.84,
+ "end": 3346.5,
+ "confidence": 0,
+ "word": "company's",
+ "punct": "company's",
+ "index": 4760
+ },
+ {
+ "start": 3346.5,
+ "end": 3347,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data.",
+ "index": 4761
+ }
+ ],
+ "start": 3339.62
+ }
+ },
+ {
+ "key": "avt0f",
+ "text": "Not my data, is that it?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3347,
+ "end": 3347.5,
+ "confidence": 0,
+ "word": "not",
+ "punct": "Not",
+ "index": 4762
+ },
+ {
+ "start": 3347.5,
+ "end": 3347.8,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 4763
+ },
+ {
+ "start": 3347.8,
+ "end": 3348.2,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 4764
+ },
+ {
+ "start": 3348.2,
+ "end": 3348.58,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4765
+ },
+ {
+ "start": 3348.58,
+ "end": 3348.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4766
+ },
+ {
+ "start": 3348.8,
+ "end": 3349.68,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it?",
+ "index": 4767
+ }
+ ],
+ "start": 3347
+ }
+ },
+ {
+ "key": "caiqf",
+ "text": "No, Senator, actually.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3349.68,
+ "end": 3350.5,
+ "confidence": 0,
+ "word": "no,",
+ "punct": "No,",
+ "index": 4768
+ },
+ {
+ "start": 3350.5,
+ "end": 3350.94,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 4769
+ },
+ {
+ "start": 3350.94,
+ "end": 3351.64,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually.",
+ "index": 4770
+ }
+ ],
+ "start": 3349.68
+ }
+ },
+ {
+ "key": "67fls",
+ "text": "At the first line of our terms of service say that you control and own the information and content that you put on Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3351.64,
+ "end": 3351.84,
+ "confidence": 0,
+ "word": "at",
+ "punct": "At",
+ "index": 4771
+ },
+ {
+ "start": 3351.84,
+ "end": 3352.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4772
+ },
+ {
+ "start": 3352.2,
+ "end": 3352.52,
+ "confidence": 0,
+ "word": "first",
+ "punct": "first",
+ "index": 4773
+ },
+ {
+ "start": 3352.52,
+ "end": 3352.9,
+ "confidence": 0,
+ "word": "line",
+ "punct": "line",
+ "index": 4774
+ },
+ {
+ "start": 3352.9,
+ "end": 3353.1,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4775
+ },
+ {
+ "start": 3353.1,
+ "end": 3353.3,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 4776
+ },
+ {
+ "start": 3353.3,
+ "end": 3353.6,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 4777
+ },
+ {
+ "start": 3353.6,
+ "end": 3353.74,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4778
+ },
+ {
+ "start": 3353.74,
+ "end": 3354.16,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 4779
+ },
+ {
+ "start": 3354.16,
+ "end": 3354.94,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 4780
+ },
+ {
+ "start": 3354.94,
+ "end": 3355.14,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4781
+ },
+ {
+ "start": 3355.14,
+ "end": 3355.3,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4782
+ },
+ {
+ "start": 3355.3,
+ "end": 3355.88,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 4783
+ },
+ {
+ "start": 3355.88,
+ "end": 3356,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4784
+ },
+ {
+ "start": 3356,
+ "end": 3356.22,
+ "confidence": 0,
+ "word": "own",
+ "punct": "own",
+ "index": 4785
+ },
+ {
+ "start": 3356.22,
+ "end": 3356.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4786
+ },
+ {
+ "start": 3356.42,
+ "end": 3357.02,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 4787
+ },
+ {
+ "start": 3357.02,
+ "end": 3357.18,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4788
+ },
+ {
+ "start": 3357.18,
+ "end": 3357.58,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 4789
+ },
+ {
+ "start": 3357.58,
+ "end": 3357.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4790
+ },
+ {
+ "start": 3357.72,
+ "end": 3357.88,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4791
+ },
+ {
+ "start": 3357.88,
+ "end": 3358.02,
+ "confidence": 0,
+ "word": "put",
+ "punct": "put",
+ "index": 4792
+ },
+ {
+ "start": 3358.02,
+ "end": 3358.18,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 4793
+ },
+ {
+ "start": 3358.18,
+ "end": 3360.62,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 4794
+ }
+ ],
+ "start": 3351.64
+ }
+ },
+ {
+ "key": "crp7a",
+ "text": "Well, the recent scandal is obviously frustrating.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3360.62,
+ "end": 3361.62,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "Well,",
+ "index": 4795
+ },
+ {
+ "start": 3361.62,
+ "end": 3361.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4796
+ },
+ {
+ "start": 3361.94,
+ "end": 3362.36,
+ "confidence": 0,
+ "word": "recent",
+ "punct": "recent",
+ "index": 4797
+ },
+ {
+ "start": 3362.36,
+ "end": 3363.14,
+ "confidence": 0,
+ "word": "scandal",
+ "punct": "scandal",
+ "index": 4798
+ },
+ {
+ "start": 3363.14,
+ "end": 3365.22,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4799
+ },
+ {
+ "start": 3365.22,
+ "end": 3365.92,
+ "confidence": 0,
+ "word": "obviously",
+ "punct": "obviously",
+ "index": 4800
+ },
+ {
+ "start": 3365.92,
+ "end": 3366.8,
+ "confidence": 0,
+ "word": "frustrating",
+ "punct": "frustrating.",
+ "index": 4801
+ }
+ ],
+ "start": 3360.62
+ }
+ },
+ {
+ "key": "baf9",
+ "text": "Not only because it affected 87,000,000 but because it seems to be part of a of lax data practices by the company going back years.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3366.8,
+ "end": 3367.7,
+ "confidence": 0,
+ "word": "not",
+ "punct": "Not",
+ "index": 4802
+ },
+ {
+ "start": 3367.7,
+ "end": 3367.96,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 4803
+ },
+ {
+ "start": 3367.96,
+ "end": 3368.38,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 4804
+ },
+ {
+ "start": 3368.38,
+ "end": 3368.58,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4805
+ },
+ {
+ "start": 3368.58,
+ "end": 3369.12,
+ "confidence": 0,
+ "word": "affected",
+ "punct": "affected",
+ "index": 4806
+ },
+ {
+ "start": 3369.12,
+ "end": 3370.44,
+ "confidence": 0,
+ "word": "87,000,000",
+ "punct": "87,000,000",
+ "index": 4807
+ },
+ {
+ "start": 3370.44,
+ "end": 3370.9,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 4808
+ },
+ {
+ "start": 3370.9,
+ "end": 3371.8,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 4809
+ },
+ {
+ "start": 3371.8,
+ "end": 3372.02,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4810
+ },
+ {
+ "start": 3372.02,
+ "end": 3372.36,
+ "confidence": 0,
+ "word": "seems",
+ "punct": "seems",
+ "index": 4811
+ },
+ {
+ "start": 3372.36,
+ "end": 3372.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4812
+ },
+ {
+ "start": 3372.52,
+ "end": 3372.66,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 4813
+ },
+ {
+ "start": 3372.66,
+ "end": 3373.04,
+ "confidence": 0,
+ "word": "part",
+ "punct": "part",
+ "index": 4814
+ },
+ {
+ "start": 3373.04,
+ "end": 3373.44,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4815
+ },
+ {
+ "start": 3373.44,
+ "end": 3373.98,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4816
+ },
+ {
+ "start": 3373.98,
+ "end": 3374.94,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4817
+ },
+ {
+ "start": 3374.94,
+ "end": 3375.8,
+ "confidence": 0,
+ "word": "lax",
+ "punct": "lax",
+ "index": 4818
+ },
+ {
+ "start": 3375.8,
+ "end": 3376.22,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 4819
+ },
+ {
+ "start": 3376.22,
+ "end": 3377.02,
+ "confidence": 0,
+ "word": "practices",
+ "punct": "practices",
+ "index": 4820
+ },
+ {
+ "start": 3377.02,
+ "end": 3377.36,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 4821
+ },
+ {
+ "start": 3377.36,
+ "end": 3377.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4822
+ },
+ {
+ "start": 3377.5,
+ "end": 3377.96,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 4823
+ },
+ {
+ "start": 3377.96,
+ "end": 3378.28,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 4824
+ },
+ {
+ "start": 3378.28,
+ "end": 3378.6,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 4825
+ },
+ {
+ "start": 3378.6,
+ "end": 3378.96,
+ "confidence": 0,
+ "word": "years",
+ "punct": "years.",
+ "index": 4826
+ }
+ ],
+ "start": 3366.8
+ }
+ },
+ {
+ "key": "282h",
+ "text": "So back in 20 11 it was a settlement with the FTC.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3378.96,
+ "end": 3379.62,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 4827
+ },
+ {
+ "start": 3379.62,
+ "end": 3379.96,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 4828
+ },
+ {
+ "start": 3379.96,
+ "end": 3380.22,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4829
+ },
+ {
+ "start": 3380.22,
+ "end": 3380.74,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 4830
+ },
+ {
+ "start": 3380.74,
+ "end": 3381.4,
+ "confidence": 0,
+ "word": "11",
+ "punct": "11",
+ "index": 4831
+ },
+ {
+ "start": 3381.4,
+ "end": 3381.78,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4832
+ },
+ {
+ "start": 3381.78,
+ "end": 3381.92,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 4833
+ },
+ {
+ "start": 3381.92,
+ "end": 3382.06,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4834
+ },
+ {
+ "start": 3382.06,
+ "end": 3382.64,
+ "confidence": 0,
+ "word": "settlement",
+ "punct": "settlement",
+ "index": 4835
+ },
+ {
+ "start": 3382.64,
+ "end": 3382.82,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 4836
+ },
+ {
+ "start": 3382.82,
+ "end": 3382.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4837
+ },
+ {
+ "start": 3382.94,
+ "end": 3383.76,
+ "confidence": 0,
+ "word": "ftc",
+ "punct": "FTC.",
+ "index": 4838
+ }
+ ],
+ "start": 3378.96
+ }
+ },
+ {
+ "key": "39kce",
+ "text": "And now we discover yet another incidence where the data was failed to be protected.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3383.76,
+ "end": 3383.94,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 4839
+ },
+ {
+ "start": 3383.94,
+ "end": 3384.34,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 4840
+ },
+ {
+ "start": 3384.34,
+ "end": 3385.2,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4841
+ },
+ {
+ "start": 3385.2,
+ "end": 3385.74,
+ "confidence": 0,
+ "word": "discover",
+ "punct": "discover",
+ "index": 4842
+ },
+ {
+ "start": 3385.74,
+ "end": 3385.96,
+ "confidence": 0,
+ "word": "yet",
+ "punct": "yet",
+ "index": 4843
+ },
+ {
+ "start": 3385.96,
+ "end": 3386.38,
+ "confidence": 0,
+ "word": "another",
+ "punct": "another",
+ "index": 4844
+ },
+ {
+ "start": 3386.38,
+ "end": 3387.34,
+ "confidence": 0,
+ "word": "incidence",
+ "punct": "incidence",
+ "index": 4845
+ },
+ {
+ "start": 3387.34,
+ "end": 3388,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 4846
+ },
+ {
+ "start": 3388,
+ "end": 3388.68,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4847
+ },
+ {
+ "start": 3388.68,
+ "end": 3389.38,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 4848
+ },
+ {
+ "start": 3389.38,
+ "end": 3389.86,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 4849
+ },
+ {
+ "start": 3389.86,
+ "end": 3390.68,
+ "confidence": 0,
+ "word": "failed",
+ "punct": "failed",
+ "index": 4850
+ },
+ {
+ "start": 3390.68,
+ "end": 3390.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4851
+ },
+ {
+ "start": 3390.88,
+ "end": 3391.08,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 4852
+ },
+ {
+ "start": 3391.08,
+ "end": 3391.74,
+ "confidence": 0,
+ "word": "protected",
+ "punct": "protected.",
+ "index": 4853
+ }
+ ],
+ "start": 3383.76
+ }
+ },
+ {
+ "key": "cqlpn",
+ "text": "When you discovered the Cambridge Analytica that had fraud only obtained all of this information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3391.74,
+ "end": 3392.3,
+ "confidence": 0,
+ "word": "when",
+ "punct": "When",
+ "index": 4854
+ },
+ {
+ "start": 3392.3,
+ "end": 3392.48,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4855
+ },
+ {
+ "start": 3392.48,
+ "end": 3393.3,
+ "confidence": 0,
+ "word": "discovered",
+ "punct": "discovered",
+ "index": 4856
+ },
+ {
+ "start": 3393.3,
+ "end": 3393.54,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4857
+ },
+ {
+ "start": 3393.54,
+ "end": 3394.24,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 4858
+ },
+ {
+ "start": 3394.24,
+ "end": 3395.22,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 4859
+ },
+ {
+ "start": 3395.22,
+ "end": 3395.78,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4860
+ },
+ {
+ "start": 3395.78,
+ "end": 3396.1,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 4861
+ },
+ {
+ "start": 3396.1,
+ "end": 3396.52,
+ "confidence": 0,
+ "word": "fraud",
+ "punct": "fraud",
+ "index": 4862
+ },
+ {
+ "start": 3396.52,
+ "end": 3396.9,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 4863
+ },
+ {
+ "start": 3396.9,
+ "end": 3397.7,
+ "confidence": 0,
+ "word": "obtained",
+ "punct": "obtained",
+ "index": 4864
+ },
+ {
+ "start": 3397.7,
+ "end": 3397.96,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 4865
+ },
+ {
+ "start": 3397.96,
+ "end": 3398.06,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 4866
+ },
+ {
+ "start": 3398.06,
+ "end": 3398.26,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 4867
+ },
+ {
+ "start": 3398.26,
+ "end": 3399.42,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 4868
+ }
+ ],
+ "start": 3391.74
+ }
+ },
+ {
+ "key": "9ndt",
+ "text": "Why didn't you inform those 87,000,000 when we learned in 20 15 that Cambridge Analytica had bought data from an app developer on Facebook that people had shared it with.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3399.42,
+ "end": 3400.48,
+ "confidence": 0,
+ "word": "why",
+ "punct": "Why",
+ "index": 4869
+ },
+ {
+ "start": 3400.48,
+ "end": 3400.82,
+ "confidence": 0,
+ "word": "didn't",
+ "punct": "didn't",
+ "index": 4870
+ },
+ {
+ "start": 3400.82,
+ "end": 3401.04,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4871
+ },
+ {
+ "start": 3401.04,
+ "end": 3401.82,
+ "confidence": 0,
+ "word": "inform",
+ "punct": "inform",
+ "index": 4872
+ },
+ {
+ "start": 3401.82,
+ "end": 3402.46,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 4873
+ },
+ {
+ "start": 3402.46,
+ "end": 3405,
+ "confidence": 0,
+ "word": "87,000,000",
+ "punct": "87,000,000",
+ "index": 4874
+ },
+ {
+ "start": 3405,
+ "end": 3406.1,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 4875
+ },
+ {
+ "start": 3406.1,
+ "end": 3406.24,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4876
+ },
+ {
+ "start": 3406.24,
+ "end": 3406.58,
+ "confidence": 0,
+ "word": "learned",
+ "punct": "learned",
+ "index": 4877
+ },
+ {
+ "start": 3406.58,
+ "end": 3406.84,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 4878
+ },
+ {
+ "start": 3406.84,
+ "end": 3407.16,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 4879
+ },
+ {
+ "start": 3407.16,
+ "end": 3407.7,
+ "confidence": 0,
+ "word": "15",
+ "punct": "15",
+ "index": 4880
+ },
+ {
+ "start": 3407.7,
+ "end": 3408.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4881
+ },
+ {
+ "start": 3408.7,
+ "end": 3409.1,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 4882
+ },
+ {
+ "start": 3409.1,
+ "end": 3409.58,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 4883
+ },
+ {
+ "start": 3409.58,
+ "end": 3410.3,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 4884
+ },
+ {
+ "start": 3410.3,
+ "end": 3411.36,
+ "confidence": 0,
+ "word": "bought",
+ "punct": "bought",
+ "index": 4885
+ },
+ {
+ "start": 3411.36,
+ "end": 3411.86,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 4886
+ },
+ {
+ "start": 3411.86,
+ "end": 3412.28,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 4887
+ },
+ {
+ "start": 3412.28,
+ "end": 3412.38,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 4888
+ },
+ {
+ "start": 3412.38,
+ "end": 3412.58,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 4889
+ },
+ {
+ "start": 3412.58,
+ "end": 3413.04,
+ "confidence": 0,
+ "word": "developer",
+ "punct": "developer",
+ "index": 4890
+ },
+ {
+ "start": 3413.04,
+ "end": 3413.18,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 4891
+ },
+ {
+ "start": 3413.18,
+ "end": 3413.64,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 4892
+ },
+ {
+ "start": 3413.64,
+ "end": 3413.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4893
+ },
+ {
+ "start": 3413.8,
+ "end": 3414.12,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 4894
+ },
+ {
+ "start": 3414.12,
+ "end": 3414.3,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 4895
+ },
+ {
+ "start": 3414.3,
+ "end": 3414.54,
+ "confidence": 0,
+ "word": "shared",
+ "punct": "shared",
+ "index": 4896
+ },
+ {
+ "start": 3414.54,
+ "end": 3414.64,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4897
+ },
+ {
+ "start": 3414.64,
+ "end": 3414.82,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with.",
+ "index": 4898
+ }
+ ],
+ "start": 3399.42
+ }
+ },
+ {
+ "key": "b0m90",
+ "text": "We did take action, we took down the app and we demanded that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3414.82,
+ "end": 3415.92,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 4899
+ },
+ {
+ "start": 3415.92,
+ "end": 3416.12,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 4900
+ },
+ {
+ "start": 3416.12,
+ "end": 3416.32,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 4901
+ },
+ {
+ "start": 3416.32,
+ "end": 3416.72,
+ "confidence": 0,
+ "word": "action,",
+ "punct": "action,",
+ "index": 4902
+ },
+ {
+ "start": 3416.72,
+ "end": 3417.02,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4903
+ },
+ {
+ "start": 3417.02,
+ "end": 3417.22,
+ "confidence": 0,
+ "word": "took",
+ "punct": "took",
+ "index": 4904
+ },
+ {
+ "start": 3417.22,
+ "end": 3417.42,
+ "confidence": 0,
+ "word": "down",
+ "punct": "down",
+ "index": 4905
+ },
+ {
+ "start": 3417.42,
+ "end": 3417.6,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4906
+ },
+ {
+ "start": 3417.6,
+ "end": 3417.82,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 4907
+ },
+ {
+ "start": 3417.82,
+ "end": 3418.92,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4908
+ },
+ {
+ "start": 3418.92,
+ "end": 3419.3,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4909
+ },
+ {
+ "start": 3419.3,
+ "end": 3420.2,
+ "confidence": 0,
+ "word": "demanded",
+ "punct": "demanded",
+ "index": 4910
+ },
+ {
+ "start": 3420.2,
+ "end": 3420.54,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 4911
+ }
+ ],
+ "start": 3414.82
+ }
+ },
+ {
+ "key": "bebic",
+ "text": "Both the app developer and Cambridge Analytica delete and stop using any data that they had.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3420.54,
+ "end": 3420.74,
+ "confidence": 0,
+ "word": "both",
+ "punct": "Both",
+ "index": 4912
+ },
+ {
+ "start": 3420.74,
+ "end": 3420.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 4913
+ },
+ {
+ "start": 3420.88,
+ "end": 3421.08,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 4914
+ },
+ {
+ "start": 3421.08,
+ "end": 3421.52,
+ "confidence": 0,
+ "word": "developer",
+ "punct": "developer",
+ "index": 4915
+ },
+ {
+ "start": 3421.52,
+ "end": 3421.86,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4916
+ },
+ {
+ "start": 3421.86,
+ "end": 3422.22,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 4917
+ },
+ {
+ "start": 3422.22,
+ "end": 3422.68,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 4918
+ },
+ {
+ "start": 3422.68,
+ "end": 3423.5,
+ "confidence": 0,
+ "word": "delete",
+ "punct": "delete",
+ "index": 4919
+ },
+ {
+ "start": 3423.5,
+ "end": 3423.68,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4920
+ },
+ {
+ "start": 3423.68,
+ "end": 3424,
+ "confidence": 0,
+ "word": "stop",
+ "punct": "stop",
+ "index": 4921
+ },
+ {
+ "start": 3424,
+ "end": 3424.34,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 4922
+ },
+ {
+ "start": 3424.34,
+ "end": 3424.66,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 4923
+ },
+ {
+ "start": 3424.66,
+ "end": 3425.08,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 4924
+ },
+ {
+ "start": 3425.08,
+ "end": 3425.24,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4925
+ },
+ {
+ "start": 3425.24,
+ "end": 3425.4,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 4926
+ },
+ {
+ "start": 3425.4,
+ "end": 3425.7,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had.",
+ "index": 4927
+ }
+ ],
+ "start": 3420.54
+ }
+ },
+ {
+ "key": "8j1nr",
+ "text": "They told us that they did this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3425.7,
+ "end": 3426.62,
+ "confidence": 0,
+ "word": "they",
+ "punct": "They",
+ "index": 4928
+ },
+ {
+ "start": 3426.62,
+ "end": 3426.8,
+ "confidence": 0,
+ "word": "told",
+ "punct": "told",
+ "index": 4929
+ },
+ {
+ "start": 3426.8,
+ "end": 3426.92,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 4930
+ },
+ {
+ "start": 3426.92,
+ "end": 3427.1,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4931
+ },
+ {
+ "start": 3427.1,
+ "end": 3427.24,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 4932
+ },
+ {
+ "start": 3427.24,
+ "end": 3427.46,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 4933
+ },
+ {
+ "start": 3427.46,
+ "end": 3427.64,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 4934
+ }
+ ],
+ "start": 3425.7
+ }
+ },
+ {
+ "key": "1753r",
+ "text": "In retrospect.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3427.64,
+ "end": 3428.44,
+ "confidence": 0,
+ "word": "in",
+ "punct": "In",
+ "index": 4935
+ },
+ {
+ "start": 3428.44,
+ "end": 3429,
+ "confidence": 0,
+ "word": "retrospect",
+ "punct": "retrospect.",
+ "index": 4936
+ }
+ ],
+ "start": 3427.64
+ }
+ },
+ {
+ "key": "aqc3k",
+ "text": "It was clearly a mistake to believe them and we should have followed up and done a full out it then and that is not a mistake that we will make.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3429,
+ "end": 3429.26,
+ "confidence": 0,
+ "word": "it",
+ "punct": "It",
+ "index": 4937
+ },
+ {
+ "start": 3429.26,
+ "end": 3429.42,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 4938
+ },
+ {
+ "start": 3429.42,
+ "end": 3429.82,
+ "confidence": 0,
+ "word": "clearly",
+ "punct": "clearly",
+ "index": 4939
+ },
+ {
+ "start": 3429.82,
+ "end": 3429.9,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4940
+ },
+ {
+ "start": 3429.9,
+ "end": 3430.32,
+ "confidence": 0,
+ "word": "mistake",
+ "punct": "mistake",
+ "index": 4941
+ },
+ {
+ "start": 3430.32,
+ "end": 3430.46,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4942
+ },
+ {
+ "start": 3430.46,
+ "end": 3430.8,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 4943
+ },
+ {
+ "start": 3430.8,
+ "end": 3431,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 4944
+ },
+ {
+ "start": 3431,
+ "end": 3431.36,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4945
+ },
+ {
+ "start": 3431.36,
+ "end": 3431.48,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4946
+ },
+ {
+ "start": 3431.48,
+ "end": 3431.68,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 4947
+ },
+ {
+ "start": 3431.68,
+ "end": 3431.8,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 4948
+ },
+ {
+ "start": 3431.8,
+ "end": 3432.1,
+ "confidence": 0,
+ "word": "followed",
+ "punct": "followed",
+ "index": 4949
+ },
+ {
+ "start": 3432.1,
+ "end": 3432.24,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 4950
+ },
+ {
+ "start": 3432.24,
+ "end": 3432.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4951
+ },
+ {
+ "start": 3432.42,
+ "end": 3432.6,
+ "confidence": 0,
+ "word": "done",
+ "punct": "done",
+ "index": 4952
+ },
+ {
+ "start": 3432.6,
+ "end": 3432.66,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4953
+ },
+ {
+ "start": 3432.66,
+ "end": 3432.88,
+ "confidence": 0,
+ "word": "full",
+ "punct": "full",
+ "index": 4954
+ },
+ {
+ "start": 3432.88,
+ "end": 3433.04,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 4955
+ },
+ {
+ "start": 3433.04,
+ "end": 3433.14,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 4956
+ },
+ {
+ "start": 3433.14,
+ "end": 3433.42,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 4957
+ },
+ {
+ "start": 3433.42,
+ "end": 3434.12,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 4958
+ },
+ {
+ "start": 3434.12,
+ "end": 3434.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4959
+ },
+ {
+ "start": 3434.4,
+ "end": 3434.56,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 4960
+ },
+ {
+ "start": 3434.56,
+ "end": 3434.74,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 4961
+ },
+ {
+ "start": 3434.74,
+ "end": 3434.82,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 4962
+ },
+ {
+ "start": 3434.82,
+ "end": 3435.22,
+ "confidence": 0,
+ "word": "mistake",
+ "punct": "mistake",
+ "index": 4963
+ },
+ {
+ "start": 3435.22,
+ "end": 3435.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4964
+ },
+ {
+ "start": 3435.36,
+ "end": 3435.48,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4965
+ },
+ {
+ "start": 3435.48,
+ "end": 3435.66,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 4966
+ },
+ {
+ "start": 3435.66,
+ "end": 3435.84,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make.",
+ "index": 4967
+ }
+ ],
+ "start": 3429
+ }
+ },
+ {
+ "key": "9lir8",
+ "text": "Yes, you did that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3435.84,
+ "end": 3436.26,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 4968
+ },
+ {
+ "start": 3436.26,
+ "end": 3436.52,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4969
+ },
+ {
+ "start": 3436.52,
+ "end": 3436.76,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 4970
+ },
+ {
+ "start": 3436.76,
+ "end": 3437.06,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 4971
+ }
+ ],
+ "start": 3435.84
+ }
+ },
+ {
+ "key": "n97a",
+ "text": "And you apologize for it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3437.06,
+ "end": 3437.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 4972
+ },
+ {
+ "start": 3437.3,
+ "end": 3438.36,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4973
+ },
+ {
+ "start": 3438.36,
+ "end": 3439.34,
+ "confidence": 0,
+ "word": "apologize",
+ "punct": "apologize",
+ "index": 4974
+ },
+ {
+ "start": 3439.34,
+ "end": 3439.66,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 4975
+ },
+ {
+ "start": 3439.66,
+ "end": 3439.82,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 4976
+ }
+ ],
+ "start": 3437.06
+ }
+ },
+ {
+ "key": "3fq73",
+ "text": "But you didn't notify them.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3439.82,
+ "end": 3440.66,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 4977
+ },
+ {
+ "start": 3440.66,
+ "end": 3440.96,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4978
+ },
+ {
+ "start": 3440.96,
+ "end": 3441.8,
+ "confidence": 0,
+ "word": "didn't",
+ "punct": "didn't",
+ "index": 4979
+ },
+ {
+ "start": 3441.8,
+ "end": 3442.8,
+ "confidence": 0,
+ "word": "notify",
+ "punct": "notify",
+ "index": 4980
+ },
+ {
+ "start": 3442.8,
+ "end": 3445.72,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them.",
+ "index": 4981
+ }
+ ],
+ "start": 3439.82
+ }
+ },
+ {
+ "key": "20qk8",
+ "text": "Do you think that you have an ethical obligation to notify 87,000,000 Facebook users Senator, when we heard back from Cambridge Analytica that they had told us that they weren't using the data and deleted it we considered it a closed case.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3445.72,
+ "end": 3446.72,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 4982
+ },
+ {
+ "start": 3446.72,
+ "end": 3446.9,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4983
+ },
+ {
+ "start": 3446.9,
+ "end": 3447.18,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 4984
+ },
+ {
+ "start": 3447.18,
+ "end": 3447.42,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 4985
+ },
+ {
+ "start": 3447.42,
+ "end": 3447.58,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 4986
+ },
+ {
+ "start": 3447.58,
+ "end": 3447.86,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 4987
+ },
+ {
+ "start": 3447.86,
+ "end": 3448,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 4988
+ },
+ {
+ "start": 3448,
+ "end": 3448.58,
+ "confidence": 0,
+ "word": "ethical",
+ "punct": "ethical",
+ "index": 4989
+ },
+ {
+ "start": 3448.58,
+ "end": 3449.58,
+ "confidence": 0,
+ "word": "obligation",
+ "punct": "obligation",
+ "index": 4990
+ },
+ {
+ "start": 3449.58,
+ "end": 3449.98,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 4991
+ },
+ {
+ "start": 3449.98,
+ "end": 3450.58,
+ "confidence": 0,
+ "word": "notify",
+ "punct": "notify",
+ "index": 4992
+ },
+ {
+ "start": 3450.58,
+ "end": 3451.86,
+ "confidence": 0,
+ "word": "87,000,000",
+ "punct": "87,000,000",
+ "index": 4993
+ },
+ {
+ "start": 3451.86,
+ "end": 3452.62,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 4994
+ },
+ {
+ "start": 3452.62,
+ "end": 3455.58,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 4995
+ },
+ {
+ "start": 3455.58,
+ "end": 3456.58,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 4996
+ },
+ {
+ "start": 3456.58,
+ "end": 3456.9,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 4997
+ },
+ {
+ "start": 3456.9,
+ "end": 3457.06,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 4998
+ },
+ {
+ "start": 3457.06,
+ "end": 3457.4,
+ "confidence": 0,
+ "word": "heard",
+ "punct": "heard",
+ "index": 4999
+ },
+ {
+ "start": 3457.4,
+ "end": 3457.74,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 5000
+ },
+ {
+ "start": 3457.74,
+ "end": 3458.04,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 5001
+ },
+ {
+ "start": 3458.04,
+ "end": 3458.38,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 5002
+ },
+ {
+ "start": 3458.38,
+ "end": 3458.78,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 5003
+ },
+ {
+ "start": 3458.78,
+ "end": 3459.04,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5004
+ },
+ {
+ "start": 3459.04,
+ "end": 3459.16,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 5005
+ },
+ {
+ "start": 3459.16,
+ "end": 3459.28,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 5006
+ },
+ {
+ "start": 3459.28,
+ "end": 3459.46,
+ "confidence": 0,
+ "word": "told",
+ "punct": "told",
+ "index": 5007
+ },
+ {
+ "start": 3459.46,
+ "end": 3459.6,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 5008
+ },
+ {
+ "start": 3459.6,
+ "end": 3459.82,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5009
+ },
+ {
+ "start": 3459.82,
+ "end": 3460,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 5010
+ },
+ {
+ "start": 3460,
+ "end": 3460.82,
+ "confidence": 0,
+ "word": "weren't",
+ "punct": "weren't",
+ "index": 5011
+ },
+ {
+ "start": 3460.82,
+ "end": 3461.08,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 5012
+ },
+ {
+ "start": 3461.08,
+ "end": 3461.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5013
+ },
+ {
+ "start": 3461.2,
+ "end": 3461.46,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 5014
+ },
+ {
+ "start": 3461.46,
+ "end": 3461.58,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5015
+ },
+ {
+ "start": 3461.58,
+ "end": 3462.06,
+ "confidence": 0,
+ "word": "deleted",
+ "punct": "deleted",
+ "index": 5016
+ },
+ {
+ "start": 3462.06,
+ "end": 3462.2,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5017
+ },
+ {
+ "start": 3462.2,
+ "end": 3462.74,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5018
+ },
+ {
+ "start": 3462.74,
+ "end": 3463.2,
+ "confidence": 0,
+ "word": "considered",
+ "punct": "considered",
+ "index": 5019
+ },
+ {
+ "start": 3463.2,
+ "end": 3463.3,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5020
+ },
+ {
+ "start": 3463.3,
+ "end": 3463.38,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5021
+ },
+ {
+ "start": 3463.38,
+ "end": 3463.78,
+ "confidence": 0,
+ "word": "closed",
+ "punct": "closed",
+ "index": 5022
+ },
+ {
+ "start": 3463.78,
+ "end": 3464.08,
+ "confidence": 0,
+ "word": "case",
+ "punct": "case.",
+ "index": 5023
+ }
+ ],
+ "start": 3445.72
+ }
+ },
+ {
+ "key": "30dp8",
+ "text": "In retrospect, that was clearly a mistake.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3464.08,
+ "end": 3464.7,
+ "confidence": 0,
+ "word": "in",
+ "punct": "In",
+ "index": 5024
+ },
+ {
+ "start": 3464.7,
+ "end": 3465.2,
+ "confidence": 0,
+ "word": "retrospect,",
+ "punct": "retrospect,",
+ "index": 5025
+ },
+ {
+ "start": 3465.2,
+ "end": 3465.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5026
+ },
+ {
+ "start": 3465.38,
+ "end": 3465.59,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 5027
+ },
+ {
+ "start": 3465.59,
+ "end": 3465.95,
+ "confidence": 0,
+ "word": "clearly",
+ "punct": "clearly",
+ "index": 5028
+ },
+ {
+ "start": 3465.95,
+ "end": 3466.01,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5029
+ },
+ {
+ "start": 3466.01,
+ "end": 3466.37,
+ "confidence": 0,
+ "word": "mistake",
+ "punct": "mistake.",
+ "index": 5030
+ }
+ ],
+ "start": 3464.08
+ }
+ },
+ {
+ "key": "em6mf",
+ "text": "We shouldn't have taken their word for it and we've updated our policies.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3466.37,
+ "end": 3466.65,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 5031
+ },
+ {
+ "start": 3466.65,
+ "end": 3466.93,
+ "confidence": 0,
+ "word": "shouldn't",
+ "punct": "shouldn't",
+ "index": 5032
+ },
+ {
+ "start": 3466.93,
+ "end": 3467.05,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 5033
+ },
+ {
+ "start": 3467.05,
+ "end": 3467.25,
+ "confidence": 0,
+ "word": "taken",
+ "punct": "taken",
+ "index": 5034
+ },
+ {
+ "start": 3467.25,
+ "end": 3467.43,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 5035
+ },
+ {
+ "start": 3467.43,
+ "end": 3467.65,
+ "confidence": 0,
+ "word": "word",
+ "punct": "word",
+ "index": 5036
+ },
+ {
+ "start": 3467.65,
+ "end": 3467.83,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 5037
+ },
+ {
+ "start": 3467.83,
+ "end": 3467.97,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5038
+ },
+ {
+ "start": 3467.97,
+ "end": 3468.35,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5039
+ },
+ {
+ "start": 3468.35,
+ "end": 3468.57,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 5040
+ },
+ {
+ "start": 3468.57,
+ "end": 3468.97,
+ "confidence": 0,
+ "word": "updated",
+ "punct": "updated",
+ "index": 5041
+ },
+ {
+ "start": 3468.97,
+ "end": 3469.13,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5042
+ },
+ {
+ "start": 3469.13,
+ "end": 3469.71,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies.",
+ "index": 5043
+ }
+ ],
+ "start": 3466.37
+ }
+ },
+ {
+ "key": "3kstp",
+ "text": "And how we're going to operate the company to make sure that we don't make that mistake again.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3469.71,
+ "end": 3469.85,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 5044
+ },
+ {
+ "start": 3469.85,
+ "end": 3469.97,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 5045
+ },
+ {
+ "start": 3469.97,
+ "end": 3470.15,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 5046
+ },
+ {
+ "start": 3470.15,
+ "end": 3470.27,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 5047
+ },
+ {
+ "start": 3470.27,
+ "end": 3470.35,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5048
+ },
+ {
+ "start": 3470.35,
+ "end": 3470.63,
+ "confidence": 0,
+ "word": "operate",
+ "punct": "operate",
+ "index": 5049
+ },
+ {
+ "start": 3470.63,
+ "end": 3470.75,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5050
+ },
+ {
+ "start": 3470.75,
+ "end": 3471.11,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 5051
+ },
+ {
+ "start": 3471.11,
+ "end": 3471.23,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5052
+ },
+ {
+ "start": 3471.23,
+ "end": 3471.37,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 5053
+ },
+ {
+ "start": 3471.37,
+ "end": 3471.51,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 5054
+ },
+ {
+ "start": 3471.51,
+ "end": 3471.65,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5055
+ },
+ {
+ "start": 3471.65,
+ "end": 3471.71,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5056
+ },
+ {
+ "start": 3471.71,
+ "end": 3471.89,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 5057
+ },
+ {
+ "start": 3471.89,
+ "end": 3472.03,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 5058
+ },
+ {
+ "start": 3472.03,
+ "end": 3472.19,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5059
+ },
+ {
+ "start": 3472.19,
+ "end": 3472.53,
+ "confidence": 0,
+ "word": "mistake",
+ "punct": "mistake",
+ "index": 5060
+ },
+ {
+ "start": 3472.53,
+ "end": 3472.79,
+ "confidence": 0,
+ "word": "again",
+ "punct": "again.",
+ "index": 5061
+ }
+ ],
+ "start": 3469.71
+ }
+ },
+ {
+ "key": "f8puu",
+ "text": "Did anybody notify the FTC?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3472.79,
+ "end": 3473.29,
+ "confidence": 0,
+ "word": "did",
+ "punct": "Did",
+ "index": 5062
+ },
+ {
+ "start": 3473.29,
+ "end": 3473.81,
+ "confidence": 0,
+ "word": "anybody",
+ "punct": "anybody",
+ "index": 5063
+ },
+ {
+ "start": 3473.81,
+ "end": 3474.39,
+ "confidence": 0,
+ "word": "notify",
+ "punct": "notify",
+ "index": 5064
+ },
+ {
+ "start": 3474.39,
+ "end": 3474.53,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5065
+ },
+ {
+ "start": 3474.53,
+ "end": 3476.34,
+ "confidence": 0,
+ "word": "ftc",
+ "punct": "FTC?",
+ "index": 5066
+ }
+ ],
+ "start": 3472.79
+ }
+ },
+ {
+ "key": "nkt7",
+ "text": "No Senator, for the same reason that we considered it a closed closed case Senator zone and Mr Zuckerberg would do that differently today.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3476.34,
+ "end": 3477.36,
+ "confidence": 0,
+ "word": "no",
+ "punct": "No",
+ "index": 5067
+ },
+ {
+ "start": 3477.36,
+ "end": 3477.82,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 5068
+ },
+ {
+ "start": 3477.82,
+ "end": 3478.1,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 5069
+ },
+ {
+ "start": 3478.1,
+ "end": 3478.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5070
+ },
+ {
+ "start": 3478.22,
+ "end": 3478.4,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 5071
+ },
+ {
+ "start": 3478.4,
+ "end": 3478.7,
+ "confidence": 0,
+ "word": "reason",
+ "punct": "reason",
+ "index": 5072
+ },
+ {
+ "start": 3478.7,
+ "end": 3478.86,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5073
+ },
+ {
+ "start": 3478.86,
+ "end": 3478.94,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5074
+ },
+ {
+ "start": 3478.94,
+ "end": 3479.44,
+ "confidence": 0,
+ "word": "considered",
+ "punct": "considered",
+ "index": 5075
+ },
+ {
+ "start": 3479.44,
+ "end": 3479.56,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5076
+ },
+ {
+ "start": 3479.56,
+ "end": 3479.64,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5077
+ },
+ {
+ "start": 3479.64,
+ "end": 3480.52,
+ "confidence": 0,
+ "word": "closed",
+ "punct": "closed",
+ "index": 5078
+ },
+ {
+ "start": 3480.52,
+ "end": 3480.82,
+ "confidence": 0,
+ "word": "closed",
+ "punct": "closed",
+ "index": 5079
+ },
+ {
+ "start": 3480.82,
+ "end": 3481.28,
+ "confidence": 0,
+ "word": "case",
+ "punct": "case",
+ "index": 5080
+ },
+ {
+ "start": 3481.28,
+ "end": 3482.3,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 5081
+ },
+ {
+ "start": 3482.3,
+ "end": 3482.82,
+ "confidence": 0,
+ "word": "zone",
+ "punct": "zone",
+ "index": 5082
+ },
+ {
+ "start": 3482.82,
+ "end": 3483.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5083
+ },
+ {
+ "start": 3483.3,
+ "end": 3483.54,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 5084
+ },
+ {
+ "start": 3483.54,
+ "end": 3483.86,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg",
+ "index": 5085
+ },
+ {
+ "start": 3483.86,
+ "end": 3483.98,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 5086
+ },
+ {
+ "start": 3483.98,
+ "end": 3484.06,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 5087
+ },
+ {
+ "start": 3484.06,
+ "end": 3484.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5088
+ },
+ {
+ "start": 3484.4,
+ "end": 3485.06,
+ "confidence": 0,
+ "word": "differently",
+ "punct": "differently",
+ "index": 5089
+ },
+ {
+ "start": 3485.06,
+ "end": 3485.4,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today.",
+ "index": 5090
+ }
+ ],
+ "start": 3476.34
+ }
+ },
+ {
+ "key": "5u7mj",
+ "text": "Presumably that in response to Senator Nelson's question.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3485.4,
+ "end": 3486.06,
+ "confidence": 0,
+ "word": "presumably",
+ "punct": "Presumably",
+ "index": 5091
+ },
+ {
+ "start": 3486.06,
+ "end": 3487.24,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5092
+ },
+ {
+ "start": 3487.24,
+ "end": 3487.56,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5093
+ },
+ {
+ "start": 3487.56,
+ "end": 3487.96,
+ "confidence": 0,
+ "word": "response",
+ "punct": "response",
+ "index": 5094
+ },
+ {
+ "start": 3487.96,
+ "end": 3488.06,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5095
+ },
+ {
+ "start": 3488.06,
+ "end": 3488.3,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 5096
+ },
+ {
+ "start": 3488.3,
+ "end": 3488.78,
+ "confidence": 0,
+ "word": "nelson's",
+ "punct": "Nelson's",
+ "index": 5097
+ },
+ {
+ "start": 3488.78,
+ "end": 3489.2,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question.",
+ "index": 5098
+ }
+ ],
+ "start": 3485.4
+ }
+ },
+ {
+ "key": "7qgqo",
+ "text": "Yes, having to do it over this may be your first appearance before Congress, but it's not the first time that Facebook is faced tough questions about its privacy policies.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3489.2,
+ "end": 3489.7,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 5099
+ },
+ {
+ "start": 3489.7,
+ "end": 3490.12,
+ "confidence": 0,
+ "word": "having",
+ "punct": "having",
+ "index": 5100
+ },
+ {
+ "start": 3490.12,
+ "end": 3490.22,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5101
+ },
+ {
+ "start": 3490.22,
+ "end": 3490.32,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 5102
+ },
+ {
+ "start": 3490.32,
+ "end": 3490.42,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5103
+ },
+ {
+ "start": 3490.42,
+ "end": 3492.02,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 5104
+ },
+ {
+ "start": 3492.02,
+ "end": 3493.02,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 5105
+ },
+ {
+ "start": 3493.02,
+ "end": 3493.24,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 5106
+ },
+ {
+ "start": 3493.24,
+ "end": 3493.38,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 5107
+ },
+ {
+ "start": 3493.38,
+ "end": 3493.68,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 5108
+ },
+ {
+ "start": 3493.68,
+ "end": 3494.22,
+ "confidence": 0,
+ "word": "first",
+ "punct": "first",
+ "index": 5109
+ },
+ {
+ "start": 3494.22,
+ "end": 3494.68,
+ "confidence": 0,
+ "word": "appearance",
+ "punct": "appearance",
+ "index": 5110
+ },
+ {
+ "start": 3494.68,
+ "end": 3495.02,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 5111
+ },
+ {
+ "start": 3495.02,
+ "end": 3495.56,
+ "confidence": 0,
+ "word": "congress,",
+ "punct": "Congress,",
+ "index": 5112
+ },
+ {
+ "start": 3495.56,
+ "end": 3495.78,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 5113
+ },
+ {
+ "start": 3495.78,
+ "end": 3495.94,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 5114
+ },
+ {
+ "start": 3495.94,
+ "end": 3496.08,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 5115
+ },
+ {
+ "start": 3496.08,
+ "end": 3496.26,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5116
+ },
+ {
+ "start": 3496.26,
+ "end": 3496.48,
+ "confidence": 0,
+ "word": "first",
+ "punct": "first",
+ "index": 5117
+ },
+ {
+ "start": 3496.48,
+ "end": 3496.68,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 5118
+ },
+ {
+ "start": 3496.68,
+ "end": 3496.86,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5119
+ },
+ {
+ "start": 3496.86,
+ "end": 3497.34,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 5120
+ },
+ {
+ "start": 3497.34,
+ "end": 3497.5,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 5121
+ },
+ {
+ "start": 3497.5,
+ "end": 3497.84,
+ "confidence": 0,
+ "word": "faced",
+ "punct": "faced",
+ "index": 5122
+ },
+ {
+ "start": 3497.84,
+ "end": 3498.7,
+ "confidence": 0,
+ "word": "tough",
+ "punct": "tough",
+ "index": 5123
+ },
+ {
+ "start": 3498.7,
+ "end": 3499.22,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 5124
+ },
+ {
+ "start": 3499.22,
+ "end": 3499.5,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 5125
+ },
+ {
+ "start": 3499.5,
+ "end": 3499.68,
+ "confidence": 0,
+ "word": "its",
+ "punct": "its",
+ "index": 5126
+ },
+ {
+ "start": 3499.68,
+ "end": 3500.22,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 5127
+ },
+ {
+ "start": 3500.22,
+ "end": 3501.08,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies.",
+ "index": 5128
+ }
+ ],
+ "start": 3489.2
+ }
+ },
+ {
+ "key": "18h9a",
+ "text": "Wired magazine noted that you have a 14 year history of apologizing for ill advised decisions regarding user privacy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3501.08,
+ "end": 3502.08,
+ "confidence": 0,
+ "word": "wired",
+ "punct": "Wired",
+ "index": 5129
+ },
+ {
+ "start": 3502.08,
+ "end": 3502.92,
+ "confidence": 0,
+ "word": "magazine",
+ "punct": "magazine",
+ "index": 5130
+ },
+ {
+ "start": 3502.92,
+ "end": 3503.62,
+ "confidence": 0,
+ "word": "noted",
+ "punct": "noted",
+ "index": 5131
+ },
+ {
+ "start": 3503.62,
+ "end": 3504.02,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5132
+ },
+ {
+ "start": 3504.02,
+ "end": 3504.18,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 5133
+ },
+ {
+ "start": 3504.18,
+ "end": 3504.32,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 5134
+ },
+ {
+ "start": 3504.32,
+ "end": 3504.38,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5135
+ },
+ {
+ "start": 3504.38,
+ "end": 3504.78,
+ "confidence": 0,
+ "word": "14",
+ "punct": "14",
+ "index": 5136
+ },
+ {
+ "start": 3504.78,
+ "end": 3504.92,
+ "confidence": 0,
+ "word": "year",
+ "punct": "year",
+ "index": 5137
+ },
+ {
+ "start": 3504.92,
+ "end": 3505.36,
+ "confidence": 0,
+ "word": "history",
+ "punct": "history",
+ "index": 5138
+ },
+ {
+ "start": 3505.36,
+ "end": 3505.46,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5139
+ },
+ {
+ "start": 3505.46,
+ "end": 3506.3,
+ "confidence": 0,
+ "word": "apologizing",
+ "punct": "apologizing",
+ "index": 5140
+ },
+ {
+ "start": 3506.3,
+ "end": 3506.46,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 5141
+ },
+ {
+ "start": 3506.46,
+ "end": 3506.7,
+ "confidence": 0,
+ "word": "ill",
+ "punct": "ill",
+ "index": 5142
+ },
+ {
+ "start": 3506.7,
+ "end": 3507.06,
+ "confidence": 0,
+ "word": "advised",
+ "punct": "advised",
+ "index": 5143
+ },
+ {
+ "start": 3507.06,
+ "end": 3507.62,
+ "confidence": 0,
+ "word": "decisions",
+ "punct": "decisions",
+ "index": 5144
+ },
+ {
+ "start": 3507.62,
+ "end": 3508.62,
+ "confidence": 0,
+ "word": "regarding",
+ "punct": "regarding",
+ "index": 5145
+ },
+ {
+ "start": 3508.62,
+ "end": 3508.98,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 5146
+ },
+ {
+ "start": 3508.98,
+ "end": 3509.52,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy.",
+ "index": 5147
+ }
+ ],
+ "start": 3501.08
+ }
+ },
+ {
+ "key": "e601r",
+ "text": "Not unlike the one that you made just now in your opening statement after more than a decade of promises to do better.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3509.52,
+ "end": 3509.72,
+ "confidence": 0,
+ "word": "not",
+ "punct": "Not",
+ "index": 5148
+ },
+ {
+ "start": 3509.72,
+ "end": 3510.02,
+ "confidence": 0,
+ "word": "unlike",
+ "punct": "unlike",
+ "index": 5149
+ },
+ {
+ "start": 3510.02,
+ "end": 3510.14,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5150
+ },
+ {
+ "start": 3510.14,
+ "end": 3510.32,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 5151
+ },
+ {
+ "start": 3510.32,
+ "end": 3510.46,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5152
+ },
+ {
+ "start": 3510.46,
+ "end": 3510.74,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 5153
+ },
+ {
+ "start": 3510.74,
+ "end": 3511.26,
+ "confidence": 0,
+ "word": "made",
+ "punct": "made",
+ "index": 5154
+ },
+ {
+ "start": 3511.26,
+ "end": 3512.26,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 5155
+ },
+ {
+ "start": 3512.26,
+ "end": 3512.4,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 5156
+ },
+ {
+ "start": 3512.4,
+ "end": 3512.54,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5157
+ },
+ {
+ "start": 3512.54,
+ "end": 3512.72,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 5158
+ },
+ {
+ "start": 3512.72,
+ "end": 3513.08,
+ "confidence": 0,
+ "word": "opening",
+ "punct": "opening",
+ "index": 5159
+ },
+ {
+ "start": 3513.08,
+ "end": 3514.12,
+ "confidence": 0,
+ "word": "statement",
+ "punct": "statement",
+ "index": 5160
+ },
+ {
+ "start": 3514.12,
+ "end": 3515,
+ "confidence": 0,
+ "word": "after",
+ "punct": "after",
+ "index": 5161
+ },
+ {
+ "start": 3515,
+ "end": 3515.34,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 5162
+ },
+ {
+ "start": 3515.34,
+ "end": 3516.18,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 5163
+ },
+ {
+ "start": 3516.18,
+ "end": 3516.58,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5164
+ },
+ {
+ "start": 3516.58,
+ "end": 3517.56,
+ "confidence": 0,
+ "word": "decade",
+ "punct": "decade",
+ "index": 5165
+ },
+ {
+ "start": 3517.56,
+ "end": 3517.66,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5166
+ },
+ {
+ "start": 3517.66,
+ "end": 3518.18,
+ "confidence": 0,
+ "word": "promises",
+ "punct": "promises",
+ "index": 5167
+ },
+ {
+ "start": 3518.18,
+ "end": 3518.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5168
+ },
+ {
+ "start": 3518.32,
+ "end": 3518.44,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 5169
+ },
+ {
+ "start": 3518.44,
+ "end": 3518.82,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better.",
+ "index": 5170
+ }
+ ],
+ "start": 3509.52
+ }
+ },
+ {
+ "key": "8uhgo",
+ "text": "How is today's apology different and why should we trust Facebook to make the necessary changes to ensure user privacy?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3518.82,
+ "end": 3519.48,
+ "confidence": 0,
+ "word": "how",
+ "punct": "How",
+ "index": 5171
+ },
+ {
+ "start": 3519.48,
+ "end": 3519.74,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 5172
+ },
+ {
+ "start": 3519.74,
+ "end": 3520.82,
+ "confidence": 0,
+ "word": "today's",
+ "punct": "today's",
+ "index": 5173
+ },
+ {
+ "start": 3520.82,
+ "end": 3521.8,
+ "confidence": 0,
+ "word": "apology",
+ "punct": "apology",
+ "index": 5174
+ },
+ {
+ "start": 3521.8,
+ "end": 3522.2,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 5175
+ },
+ {
+ "start": 3522.2,
+ "end": 3522.34,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5176
+ },
+ {
+ "start": 3522.34,
+ "end": 3522.64,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 5177
+ },
+ {
+ "start": 3522.64,
+ "end": 3522.88,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 5178
+ },
+ {
+ "start": 3522.88,
+ "end": 3523.02,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5179
+ },
+ {
+ "start": 3523.02,
+ "end": 3523.88,
+ "confidence": 0,
+ "word": "trust",
+ "punct": "trust",
+ "index": 5180
+ },
+ {
+ "start": 3523.88,
+ "end": 3524.84,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 5181
+ },
+ {
+ "start": 3524.84,
+ "end": 3525,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5182
+ },
+ {
+ "start": 3525,
+ "end": 3525.18,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 5183
+ },
+ {
+ "start": 3525.18,
+ "end": 3525.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5184
+ },
+ {
+ "start": 3525.32,
+ "end": 3525.9,
+ "confidence": 0,
+ "word": "necessary",
+ "punct": "necessary",
+ "index": 5185
+ },
+ {
+ "start": 3525.9,
+ "end": 3526.4,
+ "confidence": 0,
+ "word": "changes",
+ "punct": "changes",
+ "index": 5186
+ },
+ {
+ "start": 3526.4,
+ "end": 3526.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5187
+ },
+ {
+ "start": 3526.58,
+ "end": 3527.08,
+ "confidence": 0,
+ "word": "ensure",
+ "punct": "ensure",
+ "index": 5188
+ },
+ {
+ "start": 3527.08,
+ "end": 3527.48,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 5189
+ },
+ {
+ "start": 3527.48,
+ "end": 3528.02,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy?",
+ "index": 5190
+ }
+ ],
+ "start": 3518.82
+ }
+ },
+ {
+ "key": "59bb0",
+ "text": "And give people a clearer picture of your privacy policies.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3528.02,
+ "end": 3528.22,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 5191
+ },
+ {
+ "start": 3528.22,
+ "end": 3528.44,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 5192
+ },
+ {
+ "start": 3528.44,
+ "end": 3528.72,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 5193
+ },
+ {
+ "start": 3528.72,
+ "end": 3528.92,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5194
+ },
+ {
+ "start": 3528.92,
+ "end": 3529.4,
+ "confidence": 0,
+ "word": "clearer",
+ "punct": "clearer",
+ "index": 5195
+ },
+ {
+ "start": 3529.4,
+ "end": 3529.86,
+ "confidence": 0,
+ "word": "picture",
+ "punct": "picture",
+ "index": 5196
+ },
+ {
+ "start": 3529.86,
+ "end": 3530.64,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5197
+ },
+ {
+ "start": 3530.64,
+ "end": 3530.82,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 5198
+ },
+ {
+ "start": 3530.82,
+ "end": 3531.28,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 5199
+ },
+ {
+ "start": 3531.28,
+ "end": 3533.14,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies.",
+ "index": 5200
+ }
+ ],
+ "start": 3528.02
+ }
+ },
+ {
+ "key": "83ll6",
+ "text": "Thank you, Mr Chairman.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3533.14,
+ "end": 3534.1,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 5201
+ },
+ {
+ "start": 3534.1,
+ "end": 3534.2,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 5202
+ },
+ {
+ "start": 3534.2,
+ "end": 3534.46,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 5203
+ },
+ {
+ "start": 3534.46,
+ "end": 3535.12,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman.",
+ "index": 5204
+ }
+ ],
+ "start": 3533.14
+ }
+ },
+ {
+ "key": "b7v58",
+ "text": "So we have made a lot of mistakes in running the company.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3535.12,
+ "end": 3536.24,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 5205
+ },
+ {
+ "start": 3536.24,
+ "end": 3536.42,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5206
+ },
+ {
+ "start": 3536.42,
+ "end": 3536.64,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 5207
+ },
+ {
+ "start": 3536.64,
+ "end": 3536.84,
+ "confidence": 0,
+ "word": "made",
+ "punct": "made",
+ "index": 5208
+ },
+ {
+ "start": 3536.84,
+ "end": 3536.88,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5209
+ },
+ {
+ "start": 3536.88,
+ "end": 3537.04,
+ "confidence": 0,
+ "word": "lot",
+ "punct": "lot",
+ "index": 5210
+ },
+ {
+ "start": 3537.04,
+ "end": 3537.14,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5211
+ },
+ {
+ "start": 3537.14,
+ "end": 3537.46,
+ "confidence": 0,
+ "word": "mistakes",
+ "punct": "mistakes",
+ "index": 5212
+ },
+ {
+ "start": 3537.46,
+ "end": 3537.58,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5213
+ },
+ {
+ "start": 3537.58,
+ "end": 3537.82,
+ "confidence": 0,
+ "word": "running",
+ "punct": "running",
+ "index": 5214
+ },
+ {
+ "start": 3537.82,
+ "end": 3537.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5215
+ },
+ {
+ "start": 3537.94,
+ "end": 3538.24,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company.",
+ "index": 5216
+ }
+ ],
+ "start": 3535.12
+ }
+ },
+ {
+ "key": "at0v5",
+ "text": "I think it's pretty much impossible, I believe.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3538.24,
+ "end": 3538.48,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 5217
+ },
+ {
+ "start": 3538.48,
+ "end": 3538.66,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 5218
+ },
+ {
+ "start": 3538.66,
+ "end": 3539.18,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 5219
+ },
+ {
+ "start": 3539.18,
+ "end": 3539.56,
+ "confidence": 0,
+ "word": "pretty",
+ "punct": "pretty",
+ "index": 5220
+ },
+ {
+ "start": 3539.56,
+ "end": 3539.74,
+ "confidence": 0,
+ "word": "much",
+ "punct": "much",
+ "index": 5221
+ },
+ {
+ "start": 3539.74,
+ "end": 3540.4,
+ "confidence": 0,
+ "word": "impossible,",
+ "punct": "impossible,",
+ "index": 5222
+ },
+ {
+ "start": 3540.4,
+ "end": 3540.76,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 5223
+ },
+ {
+ "start": 3540.76,
+ "end": 3541.1,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe.",
+ "index": 5224
+ }
+ ],
+ "start": 3538.24
+ }
+ },
+ {
+ "key": "86ech",
+ "text": "To start a company in your dorm room and then grow it to be at the scale.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3541.1,
+ "end": 3541.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "To",
+ "index": 5225
+ },
+ {
+ "start": 3541.28,
+ "end": 3541.6,
+ "confidence": 0,
+ "word": "start",
+ "punct": "start",
+ "index": 5226
+ },
+ {
+ "start": 3541.6,
+ "end": 3541.68,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5227
+ },
+ {
+ "start": 3541.68,
+ "end": 3542.04,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 5228
+ },
+ {
+ "start": 3542.04,
+ "end": 3542.18,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5229
+ },
+ {
+ "start": 3542.18,
+ "end": 3542.36,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 5230
+ },
+ {
+ "start": 3542.36,
+ "end": 3542.66,
+ "confidence": 0,
+ "word": "dorm",
+ "punct": "dorm",
+ "index": 5231
+ },
+ {
+ "start": 3542.66,
+ "end": 3542.88,
+ "confidence": 0,
+ "word": "room",
+ "punct": "room",
+ "index": 5232
+ },
+ {
+ "start": 3542.88,
+ "end": 3543.02,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5233
+ },
+ {
+ "start": 3543.02,
+ "end": 3543.18,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 5234
+ },
+ {
+ "start": 3543.18,
+ "end": 3543.46,
+ "confidence": 0,
+ "word": "grow",
+ "punct": "grow",
+ "index": 5235
+ },
+ {
+ "start": 3543.46,
+ "end": 3543.58,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5236
+ },
+ {
+ "start": 3543.58,
+ "end": 3543.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5237
+ },
+ {
+ "start": 3543.72,
+ "end": 3543.86,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 5238
+ },
+ {
+ "start": 3543.86,
+ "end": 3543.94,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 5239
+ },
+ {
+ "start": 3543.94,
+ "end": 3544.06,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5240
+ },
+ {
+ "start": 3544.06,
+ "end": 3544.32,
+ "confidence": 0,
+ "word": "scale",
+ "punct": "scale.",
+ "index": 5241
+ }
+ ],
+ "start": 3541.1
+ }
+ },
+ {
+ "key": "59i4e",
+ "text": "That we're at now without making some mistakes and because our service is about helping people connect and information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3544.32,
+ "end": 3544.46,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 5242
+ },
+ {
+ "start": 3544.46,
+ "end": 3544.62,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 5243
+ },
+ {
+ "start": 3544.62,
+ "end": 3544.74,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 5244
+ },
+ {
+ "start": 3544.74,
+ "end": 3545,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 5245
+ },
+ {
+ "start": 3545,
+ "end": 3545.4,
+ "confidence": 0,
+ "word": "without",
+ "punct": "without",
+ "index": 5246
+ },
+ {
+ "start": 3545.4,
+ "end": 3546.16,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 5247
+ },
+ {
+ "start": 3546.16,
+ "end": 3546.36,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 5248
+ },
+ {
+ "start": 3546.36,
+ "end": 3546.78,
+ "confidence": 0,
+ "word": "mistakes",
+ "punct": "mistakes",
+ "index": 5249
+ },
+ {
+ "start": 3546.78,
+ "end": 3546.96,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5250
+ },
+ {
+ "start": 3546.96,
+ "end": 3547.26,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 5251
+ },
+ {
+ "start": 3547.26,
+ "end": 3547.48,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5252
+ },
+ {
+ "start": 3547.48,
+ "end": 3547.9,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 5253
+ },
+ {
+ "start": 3547.9,
+ "end": 3548.42,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 5254
+ },
+ {
+ "start": 3548.42,
+ "end": 3549.06,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 5255
+ },
+ {
+ "start": 3549.06,
+ "end": 3550.02,
+ "confidence": 0,
+ "word": "helping",
+ "punct": "helping",
+ "index": 5256
+ },
+ {
+ "start": 3550.02,
+ "end": 3550.28,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 5257
+ },
+ {
+ "start": 3550.28,
+ "end": 3550.66,
+ "confidence": 0,
+ "word": "connect",
+ "punct": "connect",
+ "index": 5258
+ },
+ {
+ "start": 3550.66,
+ "end": 3550.78,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5259
+ },
+ {
+ "start": 3550.78,
+ "end": 3551.96,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 5260
+ }
+ ],
+ "start": 3544.32
+ }
+ },
+ {
+ "key": "7sb0j",
+ "text": "Those mistakes have been different and how we try not to make the same mistake.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3551.96,
+ "end": 3552.78,
+ "confidence": 0,
+ "word": "those",
+ "punct": "Those",
+ "index": 5261
+ },
+ {
+ "start": 3552.78,
+ "end": 3553.22,
+ "confidence": 0,
+ "word": "mistakes",
+ "punct": "mistakes",
+ "index": 5262
+ },
+ {
+ "start": 3553.22,
+ "end": 3553.74,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 5263
+ },
+ {
+ "start": 3553.74,
+ "end": 3553.9,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 5264
+ },
+ {
+ "start": 3553.9,
+ "end": 3554.24,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 5265
+ },
+ {
+ "start": 3554.24,
+ "end": 3554.72,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5266
+ },
+ {
+ "start": 3554.72,
+ "end": 3554.94,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 5267
+ },
+ {
+ "start": 3554.94,
+ "end": 3555.8,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5268
+ },
+ {
+ "start": 3555.8,
+ "end": 3555.96,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 5269
+ },
+ {
+ "start": 3555.96,
+ "end": 3556.1,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 5270
+ },
+ {
+ "start": 3556.1,
+ "end": 3556.18,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5271
+ },
+ {
+ "start": 3556.18,
+ "end": 3556.32,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 5272
+ },
+ {
+ "start": 3556.32,
+ "end": 3556.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5273
+ },
+ {
+ "start": 3556.42,
+ "end": 3556.58,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 5274
+ },
+ {
+ "start": 3556.58,
+ "end": 3556.88,
+ "confidence": 0,
+ "word": "mistake",
+ "punct": "mistake.",
+ "index": 5275
+ }
+ ],
+ "start": 3551.96
+ }
+ },
+ {
+ "key": "5dlli",
+ "text": "Multiple times but in general, a lot of the mistakes are around how people connect to each other.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3556.88,
+ "end": 3557.26,
+ "confidence": 0,
+ "word": "multiple",
+ "punct": "Multiple",
+ "index": 5276
+ },
+ {
+ "start": 3557.26,
+ "end": 3557.62,
+ "confidence": 0,
+ "word": "times",
+ "punct": "times",
+ "index": 5277
+ },
+ {
+ "start": 3557.62,
+ "end": 3558.24,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 5278
+ },
+ {
+ "start": 3558.24,
+ "end": 3558.42,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5279
+ },
+ {
+ "start": 3558.42,
+ "end": 3558.8,
+ "confidence": 0,
+ "word": "general,",
+ "punct": "general,",
+ "index": 5280
+ },
+ {
+ "start": 3558.8,
+ "end": 3558.88,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5281
+ },
+ {
+ "start": 3558.88,
+ "end": 3559.02,
+ "confidence": 0,
+ "word": "lot",
+ "punct": "lot",
+ "index": 5282
+ },
+ {
+ "start": 3559.02,
+ "end": 3559.1,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5283
+ },
+ {
+ "start": 3559.1,
+ "end": 3559.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5284
+ },
+ {
+ "start": 3559.2,
+ "end": 3559.56,
+ "confidence": 0,
+ "word": "mistakes",
+ "punct": "mistakes",
+ "index": 5285
+ },
+ {
+ "start": 3559.56,
+ "end": 3559.86,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 5286
+ },
+ {
+ "start": 3559.86,
+ "end": 3560.36,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 5287
+ },
+ {
+ "start": 3560.36,
+ "end": 3561.18,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 5288
+ },
+ {
+ "start": 3561.18,
+ "end": 3561.4,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 5289
+ },
+ {
+ "start": 3561.4,
+ "end": 3561.64,
+ "confidence": 0,
+ "word": "connect",
+ "punct": "connect",
+ "index": 5290
+ },
+ {
+ "start": 3561.64,
+ "end": 3561.74,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5291
+ },
+ {
+ "start": 3561.74,
+ "end": 3561.9,
+ "confidence": 0,
+ "word": "each",
+ "punct": "each",
+ "index": 5292
+ },
+ {
+ "start": 3561.9,
+ "end": 3562.12,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other.",
+ "index": 5293
+ }
+ ],
+ "start": 3556.88
+ }
+ },
+ {
+ "key": "253ce",
+ "text": "Just because of the nature of the service overall, I would say that we're going through a broader philosophical shift in how we approach our responsibility of the company for the first 10 or 12 years of the company.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3562.12,
+ "end": 3562.3,
+ "confidence": 0,
+ "word": "just",
+ "punct": "Just",
+ "index": 5294
+ },
+ {
+ "start": 3562.3,
+ "end": 3562.54,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 5295
+ },
+ {
+ "start": 3562.54,
+ "end": 3562.68,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5296
+ },
+ {
+ "start": 3562.68,
+ "end": 3562.82,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5297
+ },
+ {
+ "start": 3562.82,
+ "end": 3563.14,
+ "confidence": 0,
+ "word": "nature",
+ "punct": "nature",
+ "index": 5298
+ },
+ {
+ "start": 3563.14,
+ "end": 3563.24,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5299
+ },
+ {
+ "start": 3563.24,
+ "end": 3563.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5300
+ },
+ {
+ "start": 3563.38,
+ "end": 3564.3,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 5301
+ },
+ {
+ "start": 3564.3,
+ "end": 3565.34,
+ "confidence": 0,
+ "word": "overall,",
+ "punct": "overall,",
+ "index": 5302
+ },
+ {
+ "start": 3565.34,
+ "end": 3566.02,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 5303
+ },
+ {
+ "start": 3566.02,
+ "end": 3566.2,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 5304
+ },
+ {
+ "start": 3566.2,
+ "end": 3566.32,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 5305
+ },
+ {
+ "start": 3566.32,
+ "end": 3566.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5306
+ },
+ {
+ "start": 3566.44,
+ "end": 3566.6,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 5307
+ },
+ {
+ "start": 3566.6,
+ "end": 3566.78,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 5308
+ },
+ {
+ "start": 3566.78,
+ "end": 3567.02,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 5309
+ },
+ {
+ "start": 3567.02,
+ "end": 3567.08,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5310
+ },
+ {
+ "start": 3567.08,
+ "end": 3567.52,
+ "confidence": 0,
+ "word": "broader",
+ "punct": "broader",
+ "index": 5311
+ },
+ {
+ "start": 3567.52,
+ "end": 3568.3,
+ "confidence": 0,
+ "word": "philosophical",
+ "punct": "philosophical",
+ "index": 5312
+ },
+ {
+ "start": 3568.3,
+ "end": 3568.74,
+ "confidence": 0,
+ "word": "shift",
+ "punct": "shift",
+ "index": 5313
+ },
+ {
+ "start": 3568.74,
+ "end": 3569.04,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5314
+ },
+ {
+ "start": 3569.04,
+ "end": 3569.28,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 5315
+ },
+ {
+ "start": 3569.28,
+ "end": 3569.48,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5316
+ },
+ {
+ "start": 3569.48,
+ "end": 3569.92,
+ "confidence": 0,
+ "word": "approach",
+ "punct": "approach",
+ "index": 5317
+ },
+ {
+ "start": 3569.92,
+ "end": 3570.06,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5318
+ },
+ {
+ "start": 3570.06,
+ "end": 3570.78,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 5319
+ },
+ {
+ "start": 3570.78,
+ "end": 3570.88,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5320
+ },
+ {
+ "start": 3570.88,
+ "end": 3570.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5321
+ },
+ {
+ "start": 3570.98,
+ "end": 3571.36,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 5322
+ },
+ {
+ "start": 3571.36,
+ "end": 3572.1,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 5323
+ },
+ {
+ "start": 3572.1,
+ "end": 3572.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5324
+ },
+ {
+ "start": 3572.22,
+ "end": 3572.5,
+ "confidence": 0,
+ "word": "first",
+ "punct": "first",
+ "index": 5325
+ },
+ {
+ "start": 3572.5,
+ "end": 3573.2,
+ "confidence": 0,
+ "word": "10",
+ "punct": "10",
+ "index": 5326
+ },
+ {
+ "start": 3573.2,
+ "end": 3573.34,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 5327
+ },
+ {
+ "start": 3573.34,
+ "end": 3573.64,
+ "confidence": 0,
+ "word": "12",
+ "punct": "12",
+ "index": 5328
+ },
+ {
+ "start": 3573.64,
+ "end": 3573.86,
+ "confidence": 0,
+ "word": "years",
+ "punct": "years",
+ "index": 5329
+ },
+ {
+ "start": 3573.86,
+ "end": 3574,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5330
+ },
+ {
+ "start": 3574,
+ "end": 3574.1,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5331
+ },
+ {
+ "start": 3574.1,
+ "end": 3574.46,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company.",
+ "index": 5332
+ }
+ ],
+ "start": 3562.12
+ }
+ },
+ {
+ "key": "3a5c4",
+ "text": "I viewed our responsibility is primarily building tools that if we could put those tools in people's hands, then that would empower people to do good things.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3574.46,
+ "end": 3575.42,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 5333
+ },
+ {
+ "start": 3575.42,
+ "end": 3575.72,
+ "confidence": 0,
+ "word": "viewed",
+ "punct": "viewed",
+ "index": 5334
+ },
+ {
+ "start": 3575.72,
+ "end": 3575.86,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5335
+ },
+ {
+ "start": 3575.86,
+ "end": 3576.6,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 5336
+ },
+ {
+ "start": 3576.6,
+ "end": 3576.72,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 5337
+ },
+ {
+ "start": 3576.72,
+ "end": 3577.32,
+ "confidence": 0,
+ "word": "primarily",
+ "punct": "primarily",
+ "index": 5338
+ },
+ {
+ "start": 3577.32,
+ "end": 3577.66,
+ "confidence": 0,
+ "word": "building",
+ "punct": "building",
+ "index": 5339
+ },
+ {
+ "start": 3577.66,
+ "end": 3578.08,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 5340
+ },
+ {
+ "start": 3578.08,
+ "end": 3578.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5341
+ },
+ {
+ "start": 3578.58,
+ "end": 3578.68,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 5342
+ },
+ {
+ "start": 3578.68,
+ "end": 3578.76,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5343
+ },
+ {
+ "start": 3578.76,
+ "end": 3578.92,
+ "confidence": 0,
+ "word": "could",
+ "punct": "could",
+ "index": 5344
+ },
+ {
+ "start": 3578.92,
+ "end": 3579.04,
+ "confidence": 0,
+ "word": "put",
+ "punct": "put",
+ "index": 5345
+ },
+ {
+ "start": 3579.04,
+ "end": 3579.28,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 5346
+ },
+ {
+ "start": 3579.28,
+ "end": 3579.6,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 5347
+ },
+ {
+ "start": 3579.6,
+ "end": 3579.76,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5348
+ },
+ {
+ "start": 3579.76,
+ "end": 3580.08,
+ "confidence": 0,
+ "word": "people's",
+ "punct": "people's",
+ "index": 5349
+ },
+ {
+ "start": 3580.08,
+ "end": 3580.44,
+ "confidence": 0,
+ "word": "hands,",
+ "punct": "hands,",
+ "index": 5350
+ },
+ {
+ "start": 3580.44,
+ "end": 3581.18,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 5351
+ },
+ {
+ "start": 3581.18,
+ "end": 3581.54,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5352
+ },
+ {
+ "start": 3581.54,
+ "end": 3581.7,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 5353
+ },
+ {
+ "start": 3581.7,
+ "end": 3582.1,
+ "confidence": 0,
+ "word": "empower",
+ "punct": "empower",
+ "index": 5354
+ },
+ {
+ "start": 3582.1,
+ "end": 3582.4,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 5355
+ },
+ {
+ "start": 3582.4,
+ "end": 3582.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5356
+ },
+ {
+ "start": 3582.52,
+ "end": 3582.68,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 5357
+ },
+ {
+ "start": 3582.68,
+ "end": 3582.94,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 5358
+ },
+ {
+ "start": 3582.94,
+ "end": 3583.52,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things.",
+ "index": 5359
+ }
+ ],
+ "start": 3574.46
+ }
+ },
+ {
+ "key": "dp2et",
+ "text": "What I think we've learned now across a number of issues, not just data privacy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3583.52,
+ "end": 3583.96,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 5360
+ },
+ {
+ "start": 3583.96,
+ "end": 3584.02,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 5361
+ },
+ {
+ "start": 3584.02,
+ "end": 3584.22,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 5362
+ },
+ {
+ "start": 3584.22,
+ "end": 3584.44,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 5363
+ },
+ {
+ "start": 3584.44,
+ "end": 3584.66,
+ "confidence": 0,
+ "word": "learned",
+ "punct": "learned",
+ "index": 5364
+ },
+ {
+ "start": 3584.66,
+ "end": 3584.9,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 5365
+ },
+ {
+ "start": 3584.9,
+ "end": 3585.38,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 5366
+ },
+ {
+ "start": 3585.38,
+ "end": 3585.48,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5367
+ },
+ {
+ "start": 3585.48,
+ "end": 3585.76,
+ "confidence": 0,
+ "word": "number",
+ "punct": "number",
+ "index": 5368
+ },
+ {
+ "start": 3585.76,
+ "end": 3585.84,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5369
+ },
+ {
+ "start": 3585.84,
+ "end": 3586.18,
+ "confidence": 0,
+ "word": "issues,",
+ "punct": "issues,",
+ "index": 5370
+ },
+ {
+ "start": 3586.18,
+ "end": 3586.46,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 5371
+ },
+ {
+ "start": 3586.46,
+ "end": 3586.64,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 5372
+ },
+ {
+ "start": 3586.64,
+ "end": 3586.9,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 5373
+ },
+ {
+ "start": 3586.9,
+ "end": 3587.36,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy.",
+ "index": 5374
+ }
+ ],
+ "start": 3583.52
+ }
+ },
+ {
+ "key": "34rdj",
+ "text": "But also Fake News and foreign interference in elections is that we need to take a more proactive role.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3587.36,
+ "end": 3587.52,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 5375
+ },
+ {
+ "start": 3587.52,
+ "end": 3587.76,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 5376
+ },
+ {
+ "start": 3587.76,
+ "end": 3588.06,
+ "confidence": 0,
+ "word": "fake",
+ "punct": "Fake",
+ "index": 5377
+ },
+ {
+ "start": 3588.06,
+ "end": 3588.36,
+ "confidence": 0,
+ "word": "news",
+ "punct": "News",
+ "index": 5378
+ },
+ {
+ "start": 3588.36,
+ "end": 3588.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5379
+ },
+ {
+ "start": 3588.54,
+ "end": 3588.82,
+ "confidence": 0,
+ "word": "foreign",
+ "punct": "foreign",
+ "index": 5380
+ },
+ {
+ "start": 3588.82,
+ "end": 3589.34,
+ "confidence": 0,
+ "word": "interference",
+ "punct": "interference",
+ "index": 5381
+ },
+ {
+ "start": 3589.34,
+ "end": 3589.42,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5382
+ },
+ {
+ "start": 3589.42,
+ "end": 3589.92,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections",
+ "index": 5383
+ },
+ {
+ "start": 3589.92,
+ "end": 3590.52,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 5384
+ },
+ {
+ "start": 3590.52,
+ "end": 3590.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5385
+ },
+ {
+ "start": 3590.7,
+ "end": 3590.82,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5386
+ },
+ {
+ "start": 3590.82,
+ "end": 3591.02,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 5387
+ },
+ {
+ "start": 3591.02,
+ "end": 3591.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5388
+ },
+ {
+ "start": 3591.12,
+ "end": 3591.32,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 5389
+ },
+ {
+ "start": 3591.32,
+ "end": 3591.38,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5390
+ },
+ {
+ "start": 3591.38,
+ "end": 3591.6,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 5391
+ },
+ {
+ "start": 3591.6,
+ "end": 3592.14,
+ "confidence": 0,
+ "word": "proactive",
+ "punct": "proactive",
+ "index": 5392
+ },
+ {
+ "start": 3592.14,
+ "end": 3592.4,
+ "confidence": 0,
+ "word": "role",
+ "punct": "role.",
+ "index": 5393
+ }
+ ],
+ "start": 3587.36
+ }
+ },
+ {
+ "key": "dqprq",
+ "text": "In a broader view of our responsibility it's not enough to just build tools.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3592.4,
+ "end": 3592.54,
+ "confidence": 0,
+ "word": "in",
+ "punct": "In",
+ "index": 5394
+ },
+ {
+ "start": 3592.54,
+ "end": 3592.64,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5395
+ },
+ {
+ "start": 3592.64,
+ "end": 3592.98,
+ "confidence": 0,
+ "word": "broader",
+ "punct": "broader",
+ "index": 5396
+ },
+ {
+ "start": 3592.98,
+ "end": 3593.18,
+ "confidence": 0,
+ "word": "view",
+ "punct": "view",
+ "index": 5397
+ },
+ {
+ "start": 3593.18,
+ "end": 3593.28,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5398
+ },
+ {
+ "start": 3593.28,
+ "end": 3593.46,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5399
+ },
+ {
+ "start": 3593.46,
+ "end": 3594.24,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 5400
+ },
+ {
+ "start": 3594.24,
+ "end": 3594.84,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 5401
+ },
+ {
+ "start": 3594.84,
+ "end": 3595,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 5402
+ },
+ {
+ "start": 3595,
+ "end": 3595.22,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough",
+ "index": 5403
+ },
+ {
+ "start": 3595.22,
+ "end": 3595.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5404
+ },
+ {
+ "start": 3595.32,
+ "end": 3595.48,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 5405
+ },
+ {
+ "start": 3595.48,
+ "end": 3595.7,
+ "confidence": 0,
+ "word": "build",
+ "punct": "build",
+ "index": 5406
+ },
+ {
+ "start": 3595.7,
+ "end": 3596,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools.",
+ "index": 5407
+ }
+ ],
+ "start": 3592.4
+ }
+ },
+ {
+ "key": "9atdk",
+ "text": "We need to make sure that they're used for good.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3596,
+ "end": 3596.62,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 5408
+ },
+ {
+ "start": 3596.62,
+ "end": 3596.8,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 5409
+ },
+ {
+ "start": 3596.8,
+ "end": 3596.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5410
+ },
+ {
+ "start": 3596.88,
+ "end": 3597.04,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 5411
+ },
+ {
+ "start": 3597.04,
+ "end": 3597.22,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 5412
+ },
+ {
+ "start": 3597.22,
+ "end": 3597.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5413
+ },
+ {
+ "start": 3597.38,
+ "end": 3597.62,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 5414
+ },
+ {
+ "start": 3597.62,
+ "end": 3597.88,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 5415
+ },
+ {
+ "start": 3597.88,
+ "end": 3598.06,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 5416
+ },
+ {
+ "start": 3598.06,
+ "end": 3598.32,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good.",
+ "index": 5417
+ }
+ ],
+ "start": 3596
+ }
+ },
+ {
+ "key": "7b3oq",
+ "text": "And that means that we need to now take a more active view in policing.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3598.32,
+ "end": 3599.17,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 5418
+ },
+ {
+ "start": 3599.17,
+ "end": 3599.41,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5419
+ },
+ {
+ "start": 3599.41,
+ "end": 3599.69,
+ "confidence": 0,
+ "word": "means",
+ "punct": "means",
+ "index": 5420
+ },
+ {
+ "start": 3599.69,
+ "end": 3599.95,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5421
+ },
+ {
+ "start": 3599.95,
+ "end": 3600.11,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5422
+ },
+ {
+ "start": 3600.11,
+ "end": 3600.33,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 5423
+ },
+ {
+ "start": 3600.33,
+ "end": 3600.43,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5424
+ },
+ {
+ "start": 3600.43,
+ "end": 3600.73,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 5425
+ },
+ {
+ "start": 3600.73,
+ "end": 3600.99,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 5426
+ },
+ {
+ "start": 3600.99,
+ "end": 3601.03,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5427
+ },
+ {
+ "start": 3601.03,
+ "end": 3601.23,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 5428
+ },
+ {
+ "start": 3601.23,
+ "end": 3601.59,
+ "confidence": 0,
+ "word": "active",
+ "punct": "active",
+ "index": 5429
+ },
+ {
+ "start": 3601.59,
+ "end": 3601.75,
+ "confidence": 0,
+ "word": "view",
+ "punct": "view",
+ "index": 5430
+ },
+ {
+ "start": 3601.75,
+ "end": 3602.47,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5431
+ },
+ {
+ "start": 3602.47,
+ "end": 3602.93,
+ "confidence": 0,
+ "word": "policing",
+ "punct": "policing.",
+ "index": 5432
+ }
+ ],
+ "start": 3598.32
+ }
+ },
+ {
+ "key": "e1vjs",
+ "text": "The ecosystem and in watching and kind of looking out and making sure that all of the members in our community are using these tools in a way that's going to be good and healthy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3602.93,
+ "end": 3603.05,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 5433
+ },
+ {
+ "start": 3603.05,
+ "end": 3603.63,
+ "confidence": 0,
+ "word": "ecosystem",
+ "punct": "ecosystem",
+ "index": 5434
+ },
+ {
+ "start": 3603.63,
+ "end": 3604.67,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5435
+ },
+ {
+ "start": 3604.67,
+ "end": 3604.99,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5436
+ },
+ {
+ "start": 3604.99,
+ "end": 3605.53,
+ "confidence": 0,
+ "word": "watching",
+ "punct": "watching",
+ "index": 5437
+ },
+ {
+ "start": 3605.53,
+ "end": 3605.95,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5438
+ },
+ {
+ "start": 3605.95,
+ "end": 3606.23,
+ "confidence": 0,
+ "word": "kind",
+ "punct": "kind",
+ "index": 5439
+ },
+ {
+ "start": 3606.23,
+ "end": 3606.33,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5440
+ },
+ {
+ "start": 3606.33,
+ "end": 3606.61,
+ "confidence": 0,
+ "word": "looking",
+ "punct": "looking",
+ "index": 5441
+ },
+ {
+ "start": 3606.61,
+ "end": 3606.85,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 5442
+ },
+ {
+ "start": 3606.85,
+ "end": 3607.19,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5443
+ },
+ {
+ "start": 3607.19,
+ "end": 3607.45,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 5444
+ },
+ {
+ "start": 3607.45,
+ "end": 3607.61,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 5445
+ },
+ {
+ "start": 3607.61,
+ "end": 3607.77,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5446
+ },
+ {
+ "start": 3607.77,
+ "end": 3607.93,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 5447
+ },
+ {
+ "start": 3607.93,
+ "end": 3608.01,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5448
+ },
+ {
+ "start": 3608.01,
+ "end": 3608.15,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5449
+ },
+ {
+ "start": 3608.15,
+ "end": 3608.75,
+ "confidence": 0,
+ "word": "members",
+ "punct": "members",
+ "index": 5450
+ },
+ {
+ "start": 3608.75,
+ "end": 3608.87,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5451
+ },
+ {
+ "start": 3608.87,
+ "end": 3609.03,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5452
+ },
+ {
+ "start": 3609.03,
+ "end": 3609.41,
+ "confidence": 0,
+ "word": "community",
+ "punct": "community",
+ "index": 5453
+ },
+ {
+ "start": 3609.41,
+ "end": 3609.57,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 5454
+ },
+ {
+ "start": 3609.57,
+ "end": 3609.83,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 5455
+ },
+ {
+ "start": 3609.83,
+ "end": 3610.07,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 5456
+ },
+ {
+ "start": 3610.07,
+ "end": 3610.43,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 5457
+ },
+ {
+ "start": 3610.43,
+ "end": 3610.85,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5458
+ },
+ {
+ "start": 3610.85,
+ "end": 3610.91,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5459
+ },
+ {
+ "start": 3610.91,
+ "end": 3611.05,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 5460
+ },
+ {
+ "start": 3611.05,
+ "end": 3611.25,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 5461
+ },
+ {
+ "start": 3611.25,
+ "end": 3611.41,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 5462
+ },
+ {
+ "start": 3611.41,
+ "end": 3611.47,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5463
+ },
+ {
+ "start": 3611.47,
+ "end": 3611.55,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 5464
+ },
+ {
+ "start": 3611.55,
+ "end": 3611.69,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 5465
+ },
+ {
+ "start": 3611.69,
+ "end": 3611.81,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5466
+ },
+ {
+ "start": 3611.81,
+ "end": 3612.17,
+ "confidence": 0,
+ "word": "healthy",
+ "punct": "healthy.",
+ "index": 5467
+ }
+ ],
+ "start": 3602.93
+ }
+ },
+ {
+ "key": "4sgaf",
+ "text": "So at the end of the day, this is going to be something where people will measure us by our results on this it's not that I expect that anything I say here today to necessarily change people's view.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3612.17,
+ "end": 3612.77,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 5468
+ },
+ {
+ "start": 3612.77,
+ "end": 3613.59,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 5469
+ },
+ {
+ "start": 3613.59,
+ "end": 3613.73,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5470
+ },
+ {
+ "start": 3613.73,
+ "end": 3613.85,
+ "confidence": 0,
+ "word": "end",
+ "punct": "end",
+ "index": 5471
+ },
+ {
+ "start": 3613.85,
+ "end": 3613.91,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5472
+ },
+ {
+ "start": 3613.91,
+ "end": 3614.01,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5473
+ },
+ {
+ "start": 3614.01,
+ "end": 3614.82,
+ "confidence": 0,
+ "word": "day,",
+ "punct": "day,",
+ "index": 5474
+ },
+ {
+ "start": 3614.82,
+ "end": 3615.6,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 5475
+ },
+ {
+ "start": 3615.6,
+ "end": 3615.72,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 5476
+ },
+ {
+ "start": 3615.72,
+ "end": 3615.88,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 5477
+ },
+ {
+ "start": 3615.88,
+ "end": 3615.96,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5478
+ },
+ {
+ "start": 3615.96,
+ "end": 3616.02,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 5479
+ },
+ {
+ "start": 3616.02,
+ "end": 3616.24,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 5480
+ },
+ {
+ "start": 3616.24,
+ "end": 3616.4,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 5481
+ },
+ {
+ "start": 3616.4,
+ "end": 3616.6,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 5482
+ },
+ {
+ "start": 3616.6,
+ "end": 3616.78,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 5483
+ },
+ {
+ "start": 3616.78,
+ "end": 3617.04,
+ "confidence": 0,
+ "word": "measure",
+ "punct": "measure",
+ "index": 5484
+ },
+ {
+ "start": 3617.04,
+ "end": 3617.18,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 5485
+ },
+ {
+ "start": 3617.18,
+ "end": 3617.36,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 5486
+ },
+ {
+ "start": 3617.36,
+ "end": 3617.5,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5487
+ },
+ {
+ "start": 3617.5,
+ "end": 3617.88,
+ "confidence": 0,
+ "word": "results",
+ "punct": "results",
+ "index": 5488
+ },
+ {
+ "start": 3617.88,
+ "end": 3618.78,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 5489
+ },
+ {
+ "start": 3618.78,
+ "end": 3618.98,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 5490
+ },
+ {
+ "start": 3618.98,
+ "end": 3619.84,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 5491
+ },
+ {
+ "start": 3619.84,
+ "end": 3619.96,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 5492
+ },
+ {
+ "start": 3619.96,
+ "end": 3620.1,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5493
+ },
+ {
+ "start": 3620.1,
+ "end": 3620.16,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 5494
+ },
+ {
+ "start": 3620.16,
+ "end": 3620.46,
+ "confidence": 0,
+ "word": "expect",
+ "punct": "expect",
+ "index": 5495
+ },
+ {
+ "start": 3620.46,
+ "end": 3620.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5496
+ },
+ {
+ "start": 3620.6,
+ "end": 3620.92,
+ "confidence": 0,
+ "word": "anything",
+ "punct": "anything",
+ "index": 5497
+ },
+ {
+ "start": 3620.92,
+ "end": 3620.98,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 5498
+ },
+ {
+ "start": 3620.98,
+ "end": 3621.24,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 5499
+ },
+ {
+ "start": 3621.24,
+ "end": 3621.46,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 5500
+ },
+ {
+ "start": 3621.46,
+ "end": 3621.84,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 5501
+ },
+ {
+ "start": 3621.84,
+ "end": 3622.6,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5502
+ },
+ {
+ "start": 3622.6,
+ "end": 3623.18,
+ "confidence": 0,
+ "word": "necessarily",
+ "punct": "necessarily",
+ "index": 5503
+ },
+ {
+ "start": 3623.18,
+ "end": 3623.44,
+ "confidence": 0,
+ "word": "change",
+ "punct": "change",
+ "index": 5504
+ },
+ {
+ "start": 3623.44,
+ "end": 3623.78,
+ "confidence": 0,
+ "word": "people's",
+ "punct": "people's",
+ "index": 5505
+ },
+ {
+ "start": 3623.78,
+ "end": 3624.1,
+ "confidence": 0,
+ "word": "view",
+ "punct": "view.",
+ "index": 5506
+ }
+ ],
+ "start": 3612.17
+ }
+ },
+ {
+ "key": "b157i",
+ "text": "But I'm committed to getting this right.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3624.1,
+ "end": 3624.98,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 5507
+ },
+ {
+ "start": 3624.98,
+ "end": 3625.12,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 5508
+ },
+ {
+ "start": 3625.12,
+ "end": 3625.42,
+ "confidence": 0,
+ "word": "committed",
+ "punct": "committed",
+ "index": 5509
+ },
+ {
+ "start": 3625.42,
+ "end": 3625.5,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5510
+ },
+ {
+ "start": 3625.5,
+ "end": 3625.72,
+ "confidence": 0,
+ "word": "getting",
+ "punct": "getting",
+ "index": 5511
+ },
+ {
+ "start": 3625.72,
+ "end": 3625.86,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 5512
+ },
+ {
+ "start": 3625.86,
+ "end": 3626.31,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right.",
+ "index": 5513
+ }
+ ],
+ "start": 3624.1
+ }
+ },
+ {
+ "key": "e1r6q",
+ "text": "And I believe that over the coming years, once we fully work, all these solutions through people will see real differences and I'm glad that you all have gotten that message as we discussed in my office yesterday.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3626.31,
+ "end": 3626.45,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 5514
+ },
+ {
+ "start": 3626.45,
+ "end": 3626.55,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 5515
+ },
+ {
+ "start": 3626.55,
+ "end": 3626.87,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 5516
+ },
+ {
+ "start": 3626.87,
+ "end": 3627.17,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5517
+ },
+ {
+ "start": 3627.17,
+ "end": 3627.61,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 5518
+ },
+ {
+ "start": 3627.61,
+ "end": 3627.73,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5519
+ },
+ {
+ "start": 3627.73,
+ "end": 3627.97,
+ "confidence": 0,
+ "word": "coming",
+ "punct": "coming",
+ "index": 5520
+ },
+ {
+ "start": 3627.97,
+ "end": 3628.21,
+ "confidence": 0,
+ "word": "years,",
+ "punct": "years,",
+ "index": 5521
+ },
+ {
+ "start": 3628.21,
+ "end": 3628.47,
+ "confidence": 0,
+ "word": "once",
+ "punct": "once",
+ "index": 5522
+ },
+ {
+ "start": 3628.47,
+ "end": 3628.63,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5523
+ },
+ {
+ "start": 3628.63,
+ "end": 3629.23,
+ "confidence": 0,
+ "word": "fully",
+ "punct": "fully",
+ "index": 5524
+ },
+ {
+ "start": 3629.23,
+ "end": 3629.45,
+ "confidence": 0,
+ "word": "work,",
+ "punct": "work,",
+ "index": 5525
+ },
+ {
+ "start": 3629.45,
+ "end": 3629.71,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 5526
+ },
+ {
+ "start": 3629.71,
+ "end": 3629.95,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 5527
+ },
+ {
+ "start": 3629.95,
+ "end": 3630.43,
+ "confidence": 0,
+ "word": "solutions",
+ "punct": "solutions",
+ "index": 5528
+ },
+ {
+ "start": 3630.43,
+ "end": 3630.83,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 5529
+ },
+ {
+ "start": 3630.83,
+ "end": 3631.69,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 5530
+ },
+ {
+ "start": 3631.69,
+ "end": 3631.93,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 5531
+ },
+ {
+ "start": 3631.93,
+ "end": 3632.09,
+ "confidence": 0,
+ "word": "see",
+ "punct": "see",
+ "index": 5532
+ },
+ {
+ "start": 3632.09,
+ "end": 3632.59,
+ "confidence": 0,
+ "word": "real",
+ "punct": "real",
+ "index": 5533
+ },
+ {
+ "start": 3632.59,
+ "end": 3633.03,
+ "confidence": 0,
+ "word": "differences",
+ "punct": "differences",
+ "index": 5534
+ },
+ {
+ "start": 3633.03,
+ "end": 3634.21,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5535
+ },
+ {
+ "start": 3634.21,
+ "end": 3634.65,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 5536
+ },
+ {
+ "start": 3634.65,
+ "end": 3635.11,
+ "confidence": 0,
+ "word": "glad",
+ "punct": "glad",
+ "index": 5537
+ },
+ {
+ "start": 3635.11,
+ "end": 3635.31,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5538
+ },
+ {
+ "start": 3635.31,
+ "end": 3635.77,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 5539
+ },
+ {
+ "start": 3635.77,
+ "end": 3635.93,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 5540
+ },
+ {
+ "start": 3635.93,
+ "end": 3636.09,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 5541
+ },
+ {
+ "start": 3636.09,
+ "end": 3636.37,
+ "confidence": 0,
+ "word": "gotten",
+ "punct": "gotten",
+ "index": 5542
+ },
+ {
+ "start": 3636.37,
+ "end": 3636.59,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5543
+ },
+ {
+ "start": 3636.59,
+ "end": 3637.8,
+ "confidence": 0,
+ "word": "message",
+ "punct": "message",
+ "index": 5544
+ },
+ {
+ "start": 3637.8,
+ "end": 3638.76,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 5545
+ },
+ {
+ "start": 3638.76,
+ "end": 3638.88,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5546
+ },
+ {
+ "start": 3638.88,
+ "end": 3639.34,
+ "confidence": 0,
+ "word": "discussed",
+ "punct": "discussed",
+ "index": 5547
+ },
+ {
+ "start": 3639.34,
+ "end": 3639.44,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5548
+ },
+ {
+ "start": 3639.44,
+ "end": 3639.62,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 5549
+ },
+ {
+ "start": 3639.62,
+ "end": 3639.96,
+ "confidence": 0,
+ "word": "office",
+ "punct": "office",
+ "index": 5550
+ },
+ {
+ "start": 3639.96,
+ "end": 3640.98,
+ "confidence": 0,
+ "word": "yesterday",
+ "punct": "yesterday.",
+ "index": 5551
+ }
+ ],
+ "start": 3626.31
+ }
+ },
+ {
+ "key": "6iesk",
+ "text": "The line between legitimate political discourse and hate speech can sometimes be hard to identify and especially when your relying on artificial intelligence and other technologies for the initial discovery, can you discuss what steps that Facebook currently takes when making these evaluations?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3640.98,
+ "end": 3641.74,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 5552
+ },
+ {
+ "start": 3641.74,
+ "end": 3642.06,
+ "confidence": 0,
+ "word": "line",
+ "punct": "line",
+ "index": 5553
+ },
+ {
+ "start": 3642.06,
+ "end": 3643.04,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 5554
+ },
+ {
+ "start": 3643.04,
+ "end": 3644.02,
+ "confidence": 0,
+ "word": "legitimate",
+ "punct": "legitimate",
+ "index": 5555
+ },
+ {
+ "start": 3644.02,
+ "end": 3644.46,
+ "confidence": 0,
+ "word": "political",
+ "punct": "political",
+ "index": 5556
+ },
+ {
+ "start": 3644.46,
+ "end": 3645.08,
+ "confidence": 0,
+ "word": "discourse",
+ "punct": "discourse",
+ "index": 5557
+ },
+ {
+ "start": 3645.08,
+ "end": 3645.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5558
+ },
+ {
+ "start": 3645.26,
+ "end": 3645.52,
+ "confidence": 0,
+ "word": "hate",
+ "punct": "hate",
+ "index": 5559
+ },
+ {
+ "start": 3645.52,
+ "end": 3645.88,
+ "confidence": 0,
+ "word": "speech",
+ "punct": "speech",
+ "index": 5560
+ },
+ {
+ "start": 3645.88,
+ "end": 3646.08,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 5561
+ },
+ {
+ "start": 3646.08,
+ "end": 3646.52,
+ "confidence": 0,
+ "word": "sometimes",
+ "punct": "sometimes",
+ "index": 5562
+ },
+ {
+ "start": 3646.52,
+ "end": 3646.7,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 5563
+ },
+ {
+ "start": 3646.7,
+ "end": 3646.9,
+ "confidence": 0,
+ "word": "hard",
+ "punct": "hard",
+ "index": 5564
+ },
+ {
+ "start": 3646.9,
+ "end": 3647,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5565
+ },
+ {
+ "start": 3647,
+ "end": 3647.5,
+ "confidence": 0,
+ "word": "identify",
+ "punct": "identify",
+ "index": 5566
+ },
+ {
+ "start": 3647.5,
+ "end": 3647.8,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5567
+ },
+ {
+ "start": 3647.8,
+ "end": 3648.56,
+ "confidence": 0,
+ "word": "especially",
+ "punct": "especially",
+ "index": 5568
+ },
+ {
+ "start": 3648.56,
+ "end": 3648.68,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 5569
+ },
+ {
+ "start": 3648.68,
+ "end": 3648.78,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 5570
+ },
+ {
+ "start": 3648.78,
+ "end": 3649.08,
+ "confidence": 0,
+ "word": "relying",
+ "punct": "relying",
+ "index": 5571
+ },
+ {
+ "start": 3649.08,
+ "end": 3649.24,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 5572
+ },
+ {
+ "start": 3649.24,
+ "end": 3649.82,
+ "confidence": 0,
+ "word": "artificial",
+ "punct": "artificial",
+ "index": 5573
+ },
+ {
+ "start": 3649.82,
+ "end": 3650.32,
+ "confidence": 0,
+ "word": "intelligence",
+ "punct": "intelligence",
+ "index": 5574
+ },
+ {
+ "start": 3650.32,
+ "end": 3650.44,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5575
+ },
+ {
+ "start": 3650.44,
+ "end": 3650.64,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 5576
+ },
+ {
+ "start": 3650.64,
+ "end": 3651.28,
+ "confidence": 0,
+ "word": "technologies",
+ "punct": "technologies",
+ "index": 5577
+ },
+ {
+ "start": 3651.28,
+ "end": 3651.42,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 5578
+ },
+ {
+ "start": 3651.42,
+ "end": 3651.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5579
+ },
+ {
+ "start": 3651.52,
+ "end": 3651.8,
+ "confidence": 0,
+ "word": "initial",
+ "punct": "initial",
+ "index": 5580
+ },
+ {
+ "start": 3651.8,
+ "end": 3653.1,
+ "confidence": 0,
+ "word": "discovery,",
+ "punct": "discovery,",
+ "index": 5581
+ },
+ {
+ "start": 3653.1,
+ "end": 3654.06,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 5582
+ },
+ {
+ "start": 3654.06,
+ "end": 3654.2,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 5583
+ },
+ {
+ "start": 3654.2,
+ "end": 3654.74,
+ "confidence": 0,
+ "word": "discuss",
+ "punct": "discuss",
+ "index": 5584
+ },
+ {
+ "start": 3654.74,
+ "end": 3655,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 5585
+ },
+ {
+ "start": 3655,
+ "end": 3655.48,
+ "confidence": 0,
+ "word": "steps",
+ "punct": "steps",
+ "index": 5586
+ },
+ {
+ "start": 3655.48,
+ "end": 3656.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5587
+ },
+ {
+ "start": 3656.28,
+ "end": 3656.78,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 5588
+ },
+ {
+ "start": 3656.78,
+ "end": 3657.2,
+ "confidence": 0,
+ "word": "currently",
+ "punct": "currently",
+ "index": 5589
+ },
+ {
+ "start": 3657.2,
+ "end": 3657.52,
+ "confidence": 0,
+ "word": "takes",
+ "punct": "takes",
+ "index": 5590
+ },
+ {
+ "start": 3657.52,
+ "end": 3657.72,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 5591
+ },
+ {
+ "start": 3657.72,
+ "end": 3658.06,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 5592
+ },
+ {
+ "start": 3658.06,
+ "end": 3658.26,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 5593
+ },
+ {
+ "start": 3658.26,
+ "end": 3659.02,
+ "confidence": 0,
+ "word": "evaluations",
+ "punct": "evaluations?",
+ "index": 5594
+ }
+ ],
+ "start": 3640.98
+ }
+ },
+ {
+ "key": "3be0r",
+ "text": "The challenges that you face in any examples of where you may draw the line between what is?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3659.02,
+ "end": 3659.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 5595
+ },
+ {
+ "start": 3659.2,
+ "end": 3659.56,
+ "confidence": 0,
+ "word": "challenges",
+ "punct": "challenges",
+ "index": 5596
+ },
+ {
+ "start": 3659.56,
+ "end": 3659.76,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5597
+ },
+ {
+ "start": 3659.76,
+ "end": 3659.92,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 5598
+ },
+ {
+ "start": 3659.92,
+ "end": 3660.14,
+ "confidence": 0,
+ "word": "face",
+ "punct": "face",
+ "index": 5599
+ },
+ {
+ "start": 3660.14,
+ "end": 3660.28,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5600
+ },
+ {
+ "start": 3660.28,
+ "end": 3660.44,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 5601
+ },
+ {
+ "start": 3660.44,
+ "end": 3661.02,
+ "confidence": 0,
+ "word": "examples",
+ "punct": "examples",
+ "index": 5602
+ },
+ {
+ "start": 3661.02,
+ "end": 3661.72,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5603
+ },
+ {
+ "start": 3661.72,
+ "end": 3662.14,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 5604
+ },
+ {
+ "start": 3662.14,
+ "end": 3662.44,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 5605
+ },
+ {
+ "start": 3662.44,
+ "end": 3662.68,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 5606
+ },
+ {
+ "start": 3662.68,
+ "end": 3662.92,
+ "confidence": 0,
+ "word": "draw",
+ "punct": "draw",
+ "index": 5607
+ },
+ {
+ "start": 3662.92,
+ "end": 3663.08,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5608
+ },
+ {
+ "start": 3663.08,
+ "end": 3663.3,
+ "confidence": 0,
+ "word": "line",
+ "punct": "line",
+ "index": 5609
+ },
+ {
+ "start": 3663.3,
+ "end": 3663.6,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 5610
+ },
+ {
+ "start": 3663.6,
+ "end": 3663.82,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 5611
+ },
+ {
+ "start": 3663.82,
+ "end": 3664.06,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is?",
+ "index": 5612
+ }
+ ],
+ "start": 3659.02
+ }
+ },
+ {
+ "key": "4od5m",
+ "text": "And what is not hate speech?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3664.06,
+ "end": 3664.2,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 5613
+ },
+ {
+ "start": 3664.2,
+ "end": 3664.36,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 5614
+ },
+ {
+ "start": 3664.36,
+ "end": 3664.56,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 5615
+ },
+ {
+ "start": 3664.56,
+ "end": 3664.86,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 5616
+ },
+ {
+ "start": 3664.86,
+ "end": 3665.22,
+ "confidence": 0,
+ "word": "hate",
+ "punct": "hate",
+ "index": 5617
+ },
+ {
+ "start": 3665.22,
+ "end": 3666.58,
+ "confidence": 0,
+ "word": "speech",
+ "punct": "speech?",
+ "index": 5618
+ }
+ ],
+ "start": 3664.06
+ }
+ },
+ {
+ "key": "16q72",
+ "text": "Yes, Mr Chairman I'll speak to hate speech and then I'll talk about enforcing our content policies more broadly, actually, maybe if you're okay, with it I'll go in the other order.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3666.58,
+ "end": 3667.86,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 5619
+ },
+ {
+ "start": 3667.86,
+ "end": 3668.16,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 5620
+ },
+ {
+ "start": 3668.16,
+ "end": 3668.46,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman",
+ "index": 5621
+ },
+ {
+ "start": 3668.46,
+ "end": 3668.82,
+ "confidence": 0,
+ "word": "i'll",
+ "punct": "I'll",
+ "index": 5622
+ },
+ {
+ "start": 3668.82,
+ "end": 3669.02,
+ "confidence": 0,
+ "word": "speak",
+ "punct": "speak",
+ "index": 5623
+ },
+ {
+ "start": 3669.02,
+ "end": 3669.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5624
+ },
+ {
+ "start": 3669.14,
+ "end": 3669.42,
+ "confidence": 0,
+ "word": "hate",
+ "punct": "hate",
+ "index": 5625
+ },
+ {
+ "start": 3669.42,
+ "end": 3669.8,
+ "confidence": 0,
+ "word": "speech",
+ "punct": "speech",
+ "index": 5626
+ },
+ {
+ "start": 3669.8,
+ "end": 3670.06,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5627
+ },
+ {
+ "start": 3670.06,
+ "end": 3670.46,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 5628
+ },
+ {
+ "start": 3670.46,
+ "end": 3671.38,
+ "confidence": 0,
+ "word": "i'll",
+ "punct": "I'll",
+ "index": 5629
+ },
+ {
+ "start": 3671.38,
+ "end": 3671.56,
+ "confidence": 0,
+ "word": "talk",
+ "punct": "talk",
+ "index": 5630
+ },
+ {
+ "start": 3671.56,
+ "end": 3672.14,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 5631
+ },
+ {
+ "start": 3672.14,
+ "end": 3672.76,
+ "confidence": 0,
+ "word": "enforcing",
+ "punct": "enforcing",
+ "index": 5632
+ },
+ {
+ "start": 3672.76,
+ "end": 3672.88,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5633
+ },
+ {
+ "start": 3672.88,
+ "end": 3673.18,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 5634
+ },
+ {
+ "start": 3673.18,
+ "end": 3673.64,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies",
+ "index": 5635
+ },
+ {
+ "start": 3673.64,
+ "end": 3673.82,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 5636
+ },
+ {
+ "start": 3673.82,
+ "end": 3675.98,
+ "confidence": 0,
+ "word": "broadly,",
+ "punct": "broadly,",
+ "index": 5637
+ },
+ {
+ "start": 3675.98,
+ "end": 3677.02,
+ "confidence": 0,
+ "word": "actually,",
+ "punct": "actually,",
+ "index": 5638
+ },
+ {
+ "start": 3677.02,
+ "end": 3677.24,
+ "confidence": 0,
+ "word": "maybe",
+ "punct": "maybe",
+ "index": 5639
+ },
+ {
+ "start": 3677.24,
+ "end": 3677.92,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 5640
+ },
+ {
+ "start": 3677.92,
+ "end": 3678.1,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 5641
+ },
+ {
+ "start": 3678.1,
+ "end": 3678.28,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "okay,",
+ "index": 5642
+ },
+ {
+ "start": 3678.28,
+ "end": 3678.42,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 5643
+ },
+ {
+ "start": 3678.42,
+ "end": 3678.52,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5644
+ },
+ {
+ "start": 3678.52,
+ "end": 3678.7,
+ "confidence": 0,
+ "word": "i'll",
+ "punct": "I'll",
+ "index": 5645
+ },
+ {
+ "start": 3678.7,
+ "end": 3678.78,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 5646
+ },
+ {
+ "start": 3678.78,
+ "end": 3678.88,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5647
+ },
+ {
+ "start": 3678.88,
+ "end": 3678.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5648
+ },
+ {
+ "start": 3678.98,
+ "end": 3679.16,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 5649
+ },
+ {
+ "start": 3679.16,
+ "end": 3679.4,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order.",
+ "index": 5650
+ }
+ ],
+ "start": 3666.58
+ }
+ },
+ {
+ "key": "kkek",
+ "text": "So from the beginning of the company and 2,004 I started it in my dorm room.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3679.4,
+ "end": 3680.56,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 5651
+ },
+ {
+ "start": 3680.56,
+ "end": 3681.52,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 5652
+ },
+ {
+ "start": 3681.52,
+ "end": 3681.66,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5653
+ },
+ {
+ "start": 3681.66,
+ "end": 3681.98,
+ "confidence": 0,
+ "word": "beginning",
+ "punct": "beginning",
+ "index": 5654
+ },
+ {
+ "start": 3681.98,
+ "end": 3682.06,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5655
+ },
+ {
+ "start": 3682.06,
+ "end": 3682.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5656
+ },
+ {
+ "start": 3682.2,
+ "end": 3682.5,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 5657
+ },
+ {
+ "start": 3682.5,
+ "end": 3682.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5658
+ },
+ {
+ "start": 3682.62,
+ "end": 3683.32,
+ "confidence": 0,
+ "word": "2,004",
+ "punct": "2,004",
+ "index": 5659
+ },
+ {
+ "start": 3683.32,
+ "end": 3683.5,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 5660
+ },
+ {
+ "start": 3683.5,
+ "end": 3683.86,
+ "confidence": 0,
+ "word": "started",
+ "punct": "started",
+ "index": 5661
+ },
+ {
+ "start": 3683.86,
+ "end": 3683.96,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5662
+ },
+ {
+ "start": 3683.96,
+ "end": 3684.08,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5663
+ },
+ {
+ "start": 3684.08,
+ "end": 3684.2,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 5664
+ },
+ {
+ "start": 3684.2,
+ "end": 3684.42,
+ "confidence": 0,
+ "word": "dorm",
+ "punct": "dorm",
+ "index": 5665
+ },
+ {
+ "start": 3684.42,
+ "end": 3684.68,
+ "confidence": 0,
+ "word": "room",
+ "punct": "room.",
+ "index": 5666
+ }
+ ],
+ "start": 3679.4
+ }
+ },
+ {
+ "key": "4t4f4",
+ "text": "It was me and my roommate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3684.68,
+ "end": 3685.74,
+ "confidence": 0,
+ "word": "it",
+ "punct": "It",
+ "index": 5667
+ },
+ {
+ "start": 3685.74,
+ "end": 3685.88,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 5668
+ },
+ {
+ "start": 3685.88,
+ "end": 3685.98,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 5669
+ },
+ {
+ "start": 3685.98,
+ "end": 3686.08,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5670
+ },
+ {
+ "start": 3686.08,
+ "end": 3686.2,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 5671
+ },
+ {
+ "start": 3686.2,
+ "end": 3686.58,
+ "confidence": 0,
+ "word": "roommate",
+ "punct": "roommate.",
+ "index": 5672
+ }
+ ],
+ "start": 3684.68
+ }
+ },
+ {
+ "key": "39mi2",
+ "text": "We didn't have AI technology.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3686.58,
+ "end": 3687.3,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 5673
+ },
+ {
+ "start": 3687.3,
+ "end": 3687.52,
+ "confidence": 0,
+ "word": "didn't",
+ "punct": "didn't",
+ "index": 5674
+ },
+ {
+ "start": 3687.52,
+ "end": 3687.66,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 5675
+ },
+ {
+ "start": 3687.66,
+ "end": 3687.96,
+ "confidence": 0,
+ "word": "ai",
+ "punct": "AI",
+ "index": 5676
+ },
+ {
+ "start": 3687.96,
+ "end": 3688.52,
+ "confidence": 0,
+ "word": "technology",
+ "punct": "technology.",
+ "index": 5677
+ }
+ ],
+ "start": 3686.58
+ }
+ },
+ {
+ "key": "7gr04",
+ "text": "That could look at the content that people were sharing.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3688.52,
+ "end": 3688.68,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 5678
+ },
+ {
+ "start": 3688.68,
+ "end": 3688.88,
+ "confidence": 0,
+ "word": "could",
+ "punct": "could",
+ "index": 5679
+ },
+ {
+ "start": 3688.88,
+ "end": 3689.08,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 5680
+ },
+ {
+ "start": 3689.08,
+ "end": 3689.16,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 5681
+ },
+ {
+ "start": 3689.16,
+ "end": 3689.26,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5682
+ },
+ {
+ "start": 3689.26,
+ "end": 3689.6,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 5683
+ },
+ {
+ "start": 3689.6,
+ "end": 3689.74,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5684
+ },
+ {
+ "start": 3689.74,
+ "end": 3689.94,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 5685
+ },
+ {
+ "start": 3689.94,
+ "end": 3690.14,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 5686
+ },
+ {
+ "start": 3690.14,
+ "end": 3691.6,
+ "confidence": 0,
+ "word": "sharing",
+ "punct": "sharing.",
+ "index": 5687
+ }
+ ],
+ "start": 3688.52
+ }
+ },
+ {
+ "key": "8pgg7",
+ "text": "So we basically had to enforce our content policies.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3691.6,
+ "end": 3692.5,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 5688
+ },
+ {
+ "start": 3692.5,
+ "end": 3693.14,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5689
+ },
+ {
+ "start": 3693.14,
+ "end": 3693.86,
+ "confidence": 0,
+ "word": "basically",
+ "punct": "basically",
+ "index": 5690
+ },
+ {
+ "start": 3693.86,
+ "end": 3694.12,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 5691
+ },
+ {
+ "start": 3694.12,
+ "end": 3695.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5692
+ },
+ {
+ "start": 3695.58,
+ "end": 3696.56,
+ "confidence": 0,
+ "word": "enforce",
+ "punct": "enforce",
+ "index": 5693
+ },
+ {
+ "start": 3696.56,
+ "end": 3696.74,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5694
+ },
+ {
+ "start": 3696.74,
+ "end": 3697.1,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 5695
+ },
+ {
+ "start": 3697.1,
+ "end": 3697.52,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies.",
+ "index": 5696
+ }
+ ],
+ "start": 3691.6
+ }
+ },
+ {
+ "key": "41c5t",
+ "text": "Reactively people could share what they wanted.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3697.52,
+ "end": 3698.08,
+ "confidence": 0,
+ "word": "reactively",
+ "punct": "Reactively",
+ "index": 5697
+ },
+ {
+ "start": 3698.08,
+ "end": 3698.38,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 5698
+ },
+ {
+ "start": 3698.38,
+ "end": 3698.56,
+ "confidence": 0,
+ "word": "could",
+ "punct": "could",
+ "index": 5699
+ },
+ {
+ "start": 3698.56,
+ "end": 3698.76,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 5700
+ },
+ {
+ "start": 3698.76,
+ "end": 3698.88,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 5701
+ },
+ {
+ "start": 3698.88,
+ "end": 3699.02,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 5702
+ },
+ {
+ "start": 3699.02,
+ "end": 3699.32,
+ "confidence": 0,
+ "word": "wanted",
+ "punct": "wanted.",
+ "index": 5703
+ }
+ ],
+ "start": 3697.52
+ }
+ },
+ {
+ "key": "98j4o",
+ "text": "And and then if someone in the community found it to be offensive or against our policies.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3699.32,
+ "end": 3700.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 5704
+ },
+ {
+ "start": 3700.54,
+ "end": 3701.32,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5705
+ },
+ {
+ "start": 3701.32,
+ "end": 3701.5,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 5706
+ },
+ {
+ "start": 3701.5,
+ "end": 3701.82,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 5707
+ },
+ {
+ "start": 3701.82,
+ "end": 3702.1,
+ "confidence": 0,
+ "word": "someone",
+ "punct": "someone",
+ "index": 5708
+ },
+ {
+ "start": 3702.1,
+ "end": 3702.18,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5709
+ },
+ {
+ "start": 3702.18,
+ "end": 3702.28,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5710
+ },
+ {
+ "start": 3702.28,
+ "end": 3702.64,
+ "confidence": 0,
+ "word": "community",
+ "punct": "community",
+ "index": 5711
+ },
+ {
+ "start": 3702.64,
+ "end": 3702.9,
+ "confidence": 0,
+ "word": "found",
+ "punct": "found",
+ "index": 5712
+ },
+ {
+ "start": 3702.9,
+ "end": 3703.02,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5713
+ },
+ {
+ "start": 3703.02,
+ "end": 3703.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5714
+ },
+ {
+ "start": 3703.14,
+ "end": 3703.28,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 5715
+ },
+ {
+ "start": 3703.28,
+ "end": 3704.34,
+ "confidence": 0,
+ "word": "offensive",
+ "punct": "offensive",
+ "index": 5716
+ },
+ {
+ "start": 3704.34,
+ "end": 3704.54,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 5717
+ },
+ {
+ "start": 3704.54,
+ "end": 3704.82,
+ "confidence": 0,
+ "word": "against",
+ "punct": "against",
+ "index": 5718
+ },
+ {
+ "start": 3704.82,
+ "end": 3704.98,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5719
+ },
+ {
+ "start": 3704.98,
+ "end": 3705.4,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies.",
+ "index": 5720
+ }
+ ],
+ "start": 3699.32
+ }
+ },
+ {
+ "key": "88grs",
+ "text": "They'd flag it for us and we'd look at it reactively now increasingly.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3705.4,
+ "end": 3705.64,
+ "confidence": 0,
+ "word": "they'd",
+ "punct": "They'd",
+ "index": 5721
+ },
+ {
+ "start": 3705.64,
+ "end": 3705.86,
+ "confidence": 0,
+ "word": "flag",
+ "punct": "flag",
+ "index": 5722
+ },
+ {
+ "start": 3705.86,
+ "end": 3705.96,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5723
+ },
+ {
+ "start": 3705.96,
+ "end": 3706.08,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 5724
+ },
+ {
+ "start": 3706.08,
+ "end": 3706.16,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 5725
+ },
+ {
+ "start": 3706.16,
+ "end": 3706.32,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5726
+ },
+ {
+ "start": 3706.32,
+ "end": 3706.48,
+ "confidence": 0,
+ "word": "we'd",
+ "punct": "we'd",
+ "index": 5727
+ },
+ {
+ "start": 3706.48,
+ "end": 3706.7,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 5728
+ },
+ {
+ "start": 3706.7,
+ "end": 3706.78,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 5729
+ },
+ {
+ "start": 3706.78,
+ "end": 3706.88,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5730
+ },
+ {
+ "start": 3706.88,
+ "end": 3707.46,
+ "confidence": 0,
+ "word": "reactively",
+ "punct": "reactively",
+ "index": 5731
+ },
+ {
+ "start": 3707.46,
+ "end": 3708.52,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 5732
+ },
+ {
+ "start": 3708.52,
+ "end": 3709.34,
+ "confidence": 0,
+ "word": "increasingly",
+ "punct": "increasingly.",
+ "index": 5733
+ }
+ ],
+ "start": 3705.4
+ }
+ },
+ {
+ "key": "997rp",
+ "text": "We are developing AI tools that can identify certain classes of bad activity proactively and flag it for our team at Facebook by the end of this year.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3709.34,
+ "end": 3709.82,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 5734
+ },
+ {
+ "start": 3709.82,
+ "end": 3709.94,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 5735
+ },
+ {
+ "start": 3709.94,
+ "end": 3710.4,
+ "confidence": 0,
+ "word": "developing",
+ "punct": "developing",
+ "index": 5736
+ },
+ {
+ "start": 3710.4,
+ "end": 3710.82,
+ "confidence": 0,
+ "word": "ai",
+ "punct": "AI",
+ "index": 5737
+ },
+ {
+ "start": 3710.82,
+ "end": 3711.2,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 5738
+ },
+ {
+ "start": 3711.2,
+ "end": 3711.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5739
+ },
+ {
+ "start": 3711.94,
+ "end": 3712.28,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 5740
+ },
+ {
+ "start": 3712.28,
+ "end": 3713,
+ "confidence": 0,
+ "word": "identify",
+ "punct": "identify",
+ "index": 5741
+ },
+ {
+ "start": 3713,
+ "end": 3713.4,
+ "confidence": 0,
+ "word": "certain",
+ "punct": "certain",
+ "index": 5742
+ },
+ {
+ "start": 3713.4,
+ "end": 3714.02,
+ "confidence": 0,
+ "word": "classes",
+ "punct": "classes",
+ "index": 5743
+ },
+ {
+ "start": 3714.02,
+ "end": 3714.22,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5744
+ },
+ {
+ "start": 3714.22,
+ "end": 3714.5,
+ "confidence": 0,
+ "word": "bad",
+ "punct": "bad",
+ "index": 5745
+ },
+ {
+ "start": 3714.5,
+ "end": 3715.08,
+ "confidence": 0,
+ "word": "activity",
+ "punct": "activity",
+ "index": 5746
+ },
+ {
+ "start": 3715.08,
+ "end": 3716.34,
+ "confidence": 0,
+ "word": "proactively",
+ "punct": "proactively",
+ "index": 5747
+ },
+ {
+ "start": 3716.34,
+ "end": 3716.5,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5748
+ },
+ {
+ "start": 3716.5,
+ "end": 3716.76,
+ "confidence": 0,
+ "word": "flag",
+ "punct": "flag",
+ "index": 5749
+ },
+ {
+ "start": 3716.76,
+ "end": 3716.86,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5750
+ },
+ {
+ "start": 3716.86,
+ "end": 3717,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 5751
+ },
+ {
+ "start": 3717,
+ "end": 3717.12,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5752
+ },
+ {
+ "start": 3717.12,
+ "end": 3717.36,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 5753
+ },
+ {
+ "start": 3717.36,
+ "end": 3717.54,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 5754
+ },
+ {
+ "start": 3717.54,
+ "end": 3717.96,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 5755
+ },
+ {
+ "start": 3717.96,
+ "end": 3718.56,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 5756
+ },
+ {
+ "start": 3718.56,
+ "end": 3718.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5757
+ },
+ {
+ "start": 3718.7,
+ "end": 3718.8,
+ "confidence": 0,
+ "word": "end",
+ "punct": "end",
+ "index": 5758
+ },
+ {
+ "start": 3718.8,
+ "end": 3718.88,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5759
+ },
+ {
+ "start": 3718.88,
+ "end": 3718.98,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 5760
+ },
+ {
+ "start": 3718.98,
+ "end": 3719.1,
+ "confidence": 0,
+ "word": "year",
+ "punct": "year.",
+ "index": 5761
+ }
+ ],
+ "start": 3709.34
+ }
+ },
+ {
+ "key": "10mhs",
+ "text": "By the way we're going to have more than 20,000 people working on security and content review working across all these things.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3719.1,
+ "end": 3719.22,
+ "confidence": 0,
+ "word": "by",
+ "punct": "By",
+ "index": 5762
+ },
+ {
+ "start": 3719.22,
+ "end": 3719.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5763
+ },
+ {
+ "start": 3719.32,
+ "end": 3719.4,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 5764
+ },
+ {
+ "start": 3719.4,
+ "end": 3719.56,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 5765
+ },
+ {
+ "start": 3719.56,
+ "end": 3719.7,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 5766
+ },
+ {
+ "start": 3719.7,
+ "end": 3719.76,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5767
+ },
+ {
+ "start": 3719.76,
+ "end": 3719.94,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 5768
+ },
+ {
+ "start": 3719.94,
+ "end": 3720.64,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 5769
+ },
+ {
+ "start": 3720.64,
+ "end": 3720.78,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 5770
+ },
+ {
+ "start": 3720.78,
+ "end": 3721.54,
+ "confidence": 0,
+ "word": "20,000",
+ "punct": "20,000",
+ "index": 5771
+ },
+ {
+ "start": 3721.54,
+ "end": 3721.8,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 5772
+ },
+ {
+ "start": 3721.8,
+ "end": 3722.16,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 5773
+ },
+ {
+ "start": 3722.16,
+ "end": 3722.28,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 5774
+ },
+ {
+ "start": 3722.28,
+ "end": 3722.88,
+ "confidence": 0,
+ "word": "security",
+ "punct": "security",
+ "index": 5775
+ },
+ {
+ "start": 3722.88,
+ "end": 3723.1,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5776
+ },
+ {
+ "start": 3723.1,
+ "end": 3723.54,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 5777
+ },
+ {
+ "start": 3723.54,
+ "end": 3723.92,
+ "confidence": 0,
+ "word": "review",
+ "punct": "review",
+ "index": 5778
+ },
+ {
+ "start": 3723.92,
+ "end": 3724.88,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 5779
+ },
+ {
+ "start": 3724.88,
+ "end": 3725.2,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 5780
+ },
+ {
+ "start": 3725.2,
+ "end": 3725.34,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 5781
+ },
+ {
+ "start": 3725.34,
+ "end": 3725.52,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 5782
+ },
+ {
+ "start": 3725.52,
+ "end": 3725.68,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things.",
+ "index": 5783
+ }
+ ],
+ "start": 3719.1
+ }
+ },
+ {
+ "key": "4ln3v",
+ "text": "So when content gets flagged us, we have those people look at it and if it violates our policies, then we take it down some problems lend themselves more easily to AI solutions than others.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3725.68,
+ "end": 3725.82,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 5784
+ },
+ {
+ "start": 3725.82,
+ "end": 3726.26,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 5785
+ },
+ {
+ "start": 3726.26,
+ "end": 3726.6,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 5786
+ },
+ {
+ "start": 3726.6,
+ "end": 3726.8,
+ "confidence": 0,
+ "word": "gets",
+ "punct": "gets",
+ "index": 5787
+ },
+ {
+ "start": 3726.8,
+ "end": 3727.1,
+ "confidence": 0,
+ "word": "flagged",
+ "punct": "flagged",
+ "index": 5788
+ },
+ {
+ "start": 3727.1,
+ "end": 3727.34,
+ "confidence": 0,
+ "word": "us,",
+ "punct": "us,",
+ "index": 5789
+ },
+ {
+ "start": 3727.34,
+ "end": 3727.82,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5790
+ },
+ {
+ "start": 3727.82,
+ "end": 3727.96,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 5791
+ },
+ {
+ "start": 3727.96,
+ "end": 3728.48,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 5792
+ },
+ {
+ "start": 3728.48,
+ "end": 3728.7,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 5793
+ },
+ {
+ "start": 3728.7,
+ "end": 3728.94,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 5794
+ },
+ {
+ "start": 3728.94,
+ "end": 3729.04,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 5795
+ },
+ {
+ "start": 3729.04,
+ "end": 3729.14,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5796
+ },
+ {
+ "start": 3729.14,
+ "end": 3729.36,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5797
+ },
+ {
+ "start": 3729.36,
+ "end": 3729.44,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 5798
+ },
+ {
+ "start": 3729.44,
+ "end": 3729.58,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5799
+ },
+ {
+ "start": 3729.58,
+ "end": 3729.92,
+ "confidence": 0,
+ "word": "violates",
+ "punct": "violates",
+ "index": 5800
+ },
+ {
+ "start": 3729.92,
+ "end": 3730.08,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5801
+ },
+ {
+ "start": 3730.08,
+ "end": 3730.56,
+ "confidence": 0,
+ "word": "policies,",
+ "punct": "policies,",
+ "index": 5802
+ },
+ {
+ "start": 3730.56,
+ "end": 3730.74,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 5803
+ },
+ {
+ "start": 3730.74,
+ "end": 3730.9,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5804
+ },
+ {
+ "start": 3730.9,
+ "end": 3731.08,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 5805
+ },
+ {
+ "start": 3731.08,
+ "end": 3731.18,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5806
+ },
+ {
+ "start": 3731.18,
+ "end": 3732.14,
+ "confidence": 0,
+ "word": "down",
+ "punct": "down",
+ "index": 5807
+ },
+ {
+ "start": 3732.14,
+ "end": 3733.02,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 5808
+ },
+ {
+ "start": 3733.02,
+ "end": 3733.68,
+ "confidence": 0,
+ "word": "problems",
+ "punct": "problems",
+ "index": 5809
+ },
+ {
+ "start": 3733.68,
+ "end": 3733.98,
+ "confidence": 0,
+ "word": "lend",
+ "punct": "lend",
+ "index": 5810
+ },
+ {
+ "start": 3733.98,
+ "end": 3734.5,
+ "confidence": 0,
+ "word": "themselves",
+ "punct": "themselves",
+ "index": 5811
+ },
+ {
+ "start": 3734.5,
+ "end": 3734.78,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 5812
+ },
+ {
+ "start": 3734.78,
+ "end": 3735.16,
+ "confidence": 0,
+ "word": "easily",
+ "punct": "easily",
+ "index": 5813
+ },
+ {
+ "start": 3735.16,
+ "end": 3735.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5814
+ },
+ {
+ "start": 3735.38,
+ "end": 3735.9,
+ "confidence": 0,
+ "word": "ai",
+ "punct": "AI",
+ "index": 5815
+ },
+ {
+ "start": 3735.9,
+ "end": 3736.5,
+ "confidence": 0,
+ "word": "solutions",
+ "punct": "solutions",
+ "index": 5816
+ },
+ {
+ "start": 3736.5,
+ "end": 3736.66,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 5817
+ },
+ {
+ "start": 3736.66,
+ "end": 3736.92,
+ "confidence": 0,
+ "word": "others",
+ "punct": "others.",
+ "index": 5818
+ }
+ ],
+ "start": 3725.68
+ }
+ },
+ {
+ "key": "dleor",
+ "text": "So hate speech is one of the hardest because determining if something as hate speech is very linguistically nuanced, right, you need to understand, you know, what is a slur?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3736.92,
+ "end": 3737.5,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 5819
+ },
+ {
+ "start": 3737.5,
+ "end": 3738.16,
+ "confidence": 0,
+ "word": "hate",
+ "punct": "hate",
+ "index": 5820
+ },
+ {
+ "start": 3738.16,
+ "end": 3738.48,
+ "confidence": 0,
+ "word": "speech",
+ "punct": "speech",
+ "index": 5821
+ },
+ {
+ "start": 3738.48,
+ "end": 3739.16,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 5822
+ },
+ {
+ "start": 3739.16,
+ "end": 3739.9,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 5823
+ },
+ {
+ "start": 3739.9,
+ "end": 3739.98,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5824
+ },
+ {
+ "start": 3739.98,
+ "end": 3740.1,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5825
+ },
+ {
+ "start": 3740.1,
+ "end": 3740.46,
+ "confidence": 0,
+ "word": "hardest",
+ "punct": "hardest",
+ "index": 5826
+ },
+ {
+ "start": 3740.46,
+ "end": 3741.4,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 5827
+ },
+ {
+ "start": 3741.4,
+ "end": 3742.08,
+ "confidence": 0,
+ "word": "determining",
+ "punct": "determining",
+ "index": 5828
+ },
+ {
+ "start": 3742.08,
+ "end": 3742.18,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 5829
+ },
+ {
+ "start": 3742.18,
+ "end": 3742.46,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 5830
+ },
+ {
+ "start": 3742.46,
+ "end": 3742.58,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 5831
+ },
+ {
+ "start": 3742.58,
+ "end": 3742.82,
+ "confidence": 0,
+ "word": "hate",
+ "punct": "hate",
+ "index": 5832
+ },
+ {
+ "start": 3742.82,
+ "end": 3743.12,
+ "confidence": 0,
+ "word": "speech",
+ "punct": "speech",
+ "index": 5833
+ },
+ {
+ "start": 3743.12,
+ "end": 3743.68,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 5834
+ },
+ {
+ "start": 3743.68,
+ "end": 3744.02,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 5835
+ },
+ {
+ "start": 3744.02,
+ "end": 3744.74,
+ "confidence": 0,
+ "word": "linguistically",
+ "punct": "linguistically",
+ "index": 5836
+ },
+ {
+ "start": 3744.74,
+ "end": 3745.18,
+ "confidence": 0,
+ "word": "nuanced,",
+ "punct": "nuanced,",
+ "index": 5837
+ },
+ {
+ "start": 3745.18,
+ "end": 3746.58,
+ "confidence": 0,
+ "word": "right,",
+ "punct": "right,",
+ "index": 5838
+ },
+ {
+ "start": 3746.58,
+ "end": 3746.7,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 5839
+ },
+ {
+ "start": 3746.7,
+ "end": 3746.88,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 5840
+ },
+ {
+ "start": 3746.88,
+ "end": 3747.04,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5841
+ },
+ {
+ "start": 3747.04,
+ "end": 3747.98,
+ "confidence": 0,
+ "word": "understand,",
+ "punct": "understand,",
+ "index": 5842
+ },
+ {
+ "start": 3747.98,
+ "end": 3748.68,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 5843
+ },
+ {
+ "start": 3748.68,
+ "end": 3748.82,
+ "confidence": 0,
+ "word": "know,",
+ "punct": "know,",
+ "index": 5844
+ },
+ {
+ "start": 3748.82,
+ "end": 3748.94,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 5845
+ },
+ {
+ "start": 3748.94,
+ "end": 3749.06,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 5846
+ },
+ {
+ "start": 3749.06,
+ "end": 3749.16,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5847
+ },
+ {
+ "start": 3749.16,
+ "end": 3749.72,
+ "confidence": 0,
+ "word": "slur",
+ "punct": "slur?",
+ "index": 5848
+ }
+ ],
+ "start": 3736.92
+ }
+ },
+ {
+ "key": "drrd4",
+ "text": "And what whether something is hateful?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3749.72,
+ "end": 3749.94,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 5849
+ },
+ {
+ "start": 3749.94,
+ "end": 3751.5,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 5850
+ },
+ {
+ "start": 3751.5,
+ "end": 3752.46,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 5851
+ },
+ {
+ "start": 3752.46,
+ "end": 3752.78,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 5852
+ },
+ {
+ "start": 3752.78,
+ "end": 3752.88,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 5853
+ },
+ {
+ "start": 3752.88,
+ "end": 3753.26,
+ "confidence": 0,
+ "word": "hateful",
+ "punct": "hateful?",
+ "index": 5854
+ }
+ ],
+ "start": 3749.72
+ }
+ },
+ {
+ "key": "46g3k",
+ "text": "Not just in English, but the majority of people on Facebook use it in languages that are different across the world can trust that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3753.26,
+ "end": 3753.86,
+ "confidence": 0,
+ "word": "not",
+ "punct": "Not",
+ "index": 5855
+ },
+ {
+ "start": 3753.86,
+ "end": 3754,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 5856
+ },
+ {
+ "start": 3754,
+ "end": 3754.12,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5857
+ },
+ {
+ "start": 3754.12,
+ "end": 3754.42,
+ "confidence": 0,
+ "word": "english,",
+ "punct": "English,",
+ "index": 5858
+ },
+ {
+ "start": 3754.42,
+ "end": 3754.58,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 5859
+ },
+ {
+ "start": 3754.58,
+ "end": 3754.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5860
+ },
+ {
+ "start": 3754.7,
+ "end": 3755.02,
+ "confidence": 0,
+ "word": "majority",
+ "punct": "majority",
+ "index": 5861
+ },
+ {
+ "start": 3755.02,
+ "end": 3755.14,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5862
+ },
+ {
+ "start": 3755.14,
+ "end": 3755.34,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 5863
+ },
+ {
+ "start": 3755.34,
+ "end": 3755.48,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 5864
+ },
+ {
+ "start": 3755.48,
+ "end": 3755.92,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 5865
+ },
+ {
+ "start": 3755.92,
+ "end": 3756.12,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 5866
+ },
+ {
+ "start": 3756.12,
+ "end": 3756.24,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 5867
+ },
+ {
+ "start": 3756.24,
+ "end": 3756.38,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5868
+ },
+ {
+ "start": 3756.38,
+ "end": 3756.94,
+ "confidence": 0,
+ "word": "languages",
+ "punct": "languages",
+ "index": 5869
+ },
+ {
+ "start": 3756.94,
+ "end": 3757.1,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5870
+ },
+ {
+ "start": 3757.1,
+ "end": 3757.22,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 5871
+ },
+ {
+ "start": 3757.22,
+ "end": 3757.5,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 5872
+ },
+ {
+ "start": 3757.5,
+ "end": 3757.84,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 5873
+ },
+ {
+ "start": 3757.84,
+ "end": 3757.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5874
+ },
+ {
+ "start": 3757.98,
+ "end": 3759.02,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 5875
+ },
+ {
+ "start": 3759.02,
+ "end": 3759.74,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 5876
+ },
+ {
+ "start": 3759.74,
+ "end": 3759.98,
+ "confidence": 0,
+ "word": "trust",
+ "punct": "trust",
+ "index": 5877
+ },
+ {
+ "start": 3759.98,
+ "end": 3760.26,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 5878
+ }
+ ],
+ "start": 3753.26
+ }
+ },
+ {
+ "key": "9tmq4",
+ "text": "For example, with an area like finding terrorist propaganda which we've actually been very successful at deploying.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3760.26,
+ "end": 3760.44,
+ "confidence": 0,
+ "word": "for",
+ "punct": "For",
+ "index": 5879
+ },
+ {
+ "start": 3760.44,
+ "end": 3760.88,
+ "confidence": 0,
+ "word": "example,",
+ "punct": "example,",
+ "index": 5880
+ },
+ {
+ "start": 3760.88,
+ "end": 3761.32,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 5881
+ },
+ {
+ "start": 3761.32,
+ "end": 3761.72,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 5882
+ },
+ {
+ "start": 3761.72,
+ "end": 3761.98,
+ "confidence": 0,
+ "word": "area",
+ "punct": "area",
+ "index": 5883
+ },
+ {
+ "start": 3761.98,
+ "end": 3762.5,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 5884
+ },
+ {
+ "start": 3762.5,
+ "end": 3763.06,
+ "confidence": 0,
+ "word": "finding",
+ "punct": "finding",
+ "index": 5885
+ },
+ {
+ "start": 3763.06,
+ "end": 3763.42,
+ "confidence": 0,
+ "word": "terrorist",
+ "punct": "terrorist",
+ "index": 5886
+ },
+ {
+ "start": 3763.42,
+ "end": 3764.1,
+ "confidence": 0,
+ "word": "propaganda",
+ "punct": "propaganda",
+ "index": 5887
+ },
+ {
+ "start": 3764.1,
+ "end": 3764.64,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 5888
+ },
+ {
+ "start": 3764.64,
+ "end": 3764.86,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 5889
+ },
+ {
+ "start": 3764.86,
+ "end": 3765.18,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 5890
+ },
+ {
+ "start": 3765.18,
+ "end": 3765.46,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 5891
+ },
+ {
+ "start": 3765.46,
+ "end": 3765.94,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 5892
+ },
+ {
+ "start": 3765.94,
+ "end": 3766.44,
+ "confidence": 0,
+ "word": "successful",
+ "punct": "successful",
+ "index": 5893
+ },
+ {
+ "start": 3766.44,
+ "end": 3766.56,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 5894
+ },
+ {
+ "start": 3766.56,
+ "end": 3766.92,
+ "confidence": 0,
+ "word": "deploying",
+ "punct": "deploying.",
+ "index": 5895
+ }
+ ],
+ "start": 3760.26
+ }
+ },
+ {
+ "key": "1l5rt",
+ "text": "AI, tools on already today as we sit here.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3766.92,
+ "end": 3767.22,
+ "confidence": 0,
+ "word": "ai,",
+ "punct": "AI,",
+ "index": 5896
+ },
+ {
+ "start": 3767.22,
+ "end": 3767.48,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 5897
+ },
+ {
+ "start": 3767.48,
+ "end": 3767.64,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 5898
+ },
+ {
+ "start": 3767.64,
+ "end": 3768.28,
+ "confidence": 0,
+ "word": "already",
+ "punct": "already",
+ "index": 5899
+ },
+ {
+ "start": 3768.28,
+ "end": 3768.78,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 5900
+ },
+ {
+ "start": 3768.78,
+ "end": 3769.38,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 5901
+ },
+ {
+ "start": 3769.38,
+ "end": 3769.48,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5902
+ },
+ {
+ "start": 3769.48,
+ "end": 3769.7,
+ "confidence": 0,
+ "word": "sit",
+ "punct": "sit",
+ "index": 5903
+ },
+ {
+ "start": 3769.7,
+ "end": 3769.88,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here.",
+ "index": 5904
+ }
+ ],
+ "start": 3766.92
+ }
+ },
+ {
+ "key": "1l8c7",
+ "text": "90 of the ISIS and Al Qaeda content that we take down on Facebook, our AI systems flagged before any human see it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3769.88,
+ "end": 3770.84,
+ "confidence": 0,
+ "word": "90",
+ "punct": "90",
+ "index": 5905
+ },
+ {
+ "start": 3770.84,
+ "end": 3771.58,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5906
+ },
+ {
+ "start": 3771.58,
+ "end": 3771.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5907
+ },
+ {
+ "start": 3771.7,
+ "end": 3772.06,
+ "confidence": 0,
+ "word": "isis",
+ "punct": "ISIS",
+ "index": 5908
+ },
+ {
+ "start": 3772.06,
+ "end": 3772.18,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5909
+ },
+ {
+ "start": 3772.18,
+ "end": 3772.36,
+ "confidence": 0,
+ "word": "al",
+ "punct": "Al",
+ "index": 5910
+ },
+ {
+ "start": 3772.36,
+ "end": 3772.6,
+ "confidence": 0,
+ "word": "qaeda",
+ "punct": "Qaeda",
+ "index": 5911
+ },
+ {
+ "start": 3772.6,
+ "end": 3773.04,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 5912
+ },
+ {
+ "start": 3773.04,
+ "end": 3773.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5913
+ },
+ {
+ "start": 3773.2,
+ "end": 3773.36,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5914
+ },
+ {
+ "start": 3773.36,
+ "end": 3773.54,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 5915
+ },
+ {
+ "start": 3773.54,
+ "end": 3773.78,
+ "confidence": 0,
+ "word": "down",
+ "punct": "down",
+ "index": 5916
+ },
+ {
+ "start": 3773.78,
+ "end": 3773.92,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 5917
+ },
+ {
+ "start": 3773.92,
+ "end": 3774.38,
+ "confidence": 0,
+ "word": "facebook,",
+ "punct": "Facebook,",
+ "index": 5918
+ },
+ {
+ "start": 3774.38,
+ "end": 3774.98,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5919
+ },
+ {
+ "start": 3774.98,
+ "end": 3775.3,
+ "confidence": 0,
+ "word": "ai",
+ "punct": "AI",
+ "index": 5920
+ },
+ {
+ "start": 3775.3,
+ "end": 3775.66,
+ "confidence": 0,
+ "word": "systems",
+ "punct": "systems",
+ "index": 5921
+ },
+ {
+ "start": 3775.66,
+ "end": 3776,
+ "confidence": 0,
+ "word": "flagged",
+ "punct": "flagged",
+ "index": 5922
+ },
+ {
+ "start": 3776,
+ "end": 3776.24,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 5923
+ },
+ {
+ "start": 3776.24,
+ "end": 3776.44,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 5924
+ },
+ {
+ "start": 3776.44,
+ "end": 3776.72,
+ "confidence": 0,
+ "word": "human",
+ "punct": "human",
+ "index": 5925
+ },
+ {
+ "start": 3776.72,
+ "end": 3777,
+ "confidence": 0,
+ "word": "see",
+ "punct": "see",
+ "index": 5926
+ },
+ {
+ "start": 3777,
+ "end": 3777.32,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 5927
+ }
+ ],
+ "start": 3769.88
+ }
+ },
+ {
+ "key": "5j2nu",
+ "text": "So that's a success in terms of rolling out AI tools that that can proactively police and enforce safety across the community hate speech.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3777.32,
+ "end": 3777.66,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 5928
+ },
+ {
+ "start": 3777.66,
+ "end": 3778.22,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 5929
+ },
+ {
+ "start": 3778.22,
+ "end": 3778.26,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5930
+ },
+ {
+ "start": 3778.26,
+ "end": 3778.98,
+ "confidence": 0,
+ "word": "success",
+ "punct": "success",
+ "index": 5931
+ },
+ {
+ "start": 3778.98,
+ "end": 3779.2,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 5932
+ },
+ {
+ "start": 3779.2,
+ "end": 3779.48,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 5933
+ },
+ {
+ "start": 3779.48,
+ "end": 3779.68,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5934
+ },
+ {
+ "start": 3779.68,
+ "end": 3780.22,
+ "confidence": 0,
+ "word": "rolling",
+ "punct": "rolling",
+ "index": 5935
+ },
+ {
+ "start": 3780.22,
+ "end": 3780.38,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 5936
+ },
+ {
+ "start": 3780.38,
+ "end": 3780.7,
+ "confidence": 0,
+ "word": "ai",
+ "punct": "AI",
+ "index": 5937
+ },
+ {
+ "start": 3780.7,
+ "end": 3781.04,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 5938
+ },
+ {
+ "start": 3781.04,
+ "end": 3781.88,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5939
+ },
+ {
+ "start": 3781.88,
+ "end": 3782.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5940
+ },
+ {
+ "start": 3782.3,
+ "end": 3782.48,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 5941
+ },
+ {
+ "start": 3782.48,
+ "end": 3783.24,
+ "confidence": 0,
+ "word": "proactively",
+ "punct": "proactively",
+ "index": 5942
+ },
+ {
+ "start": 3783.24,
+ "end": 3784.24,
+ "confidence": 0,
+ "word": "police",
+ "punct": "police",
+ "index": 5943
+ },
+ {
+ "start": 3784.24,
+ "end": 3784.38,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5944
+ },
+ {
+ "start": 3784.38,
+ "end": 3784.76,
+ "confidence": 0,
+ "word": "enforce",
+ "punct": "enforce",
+ "index": 5945
+ },
+ {
+ "start": 3784.76,
+ "end": 3785.14,
+ "confidence": 0,
+ "word": "safety",
+ "punct": "safety",
+ "index": 5946
+ },
+ {
+ "start": 3785.14,
+ "end": 3785.46,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 5947
+ },
+ {
+ "start": 3785.46,
+ "end": 3785.6,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5948
+ },
+ {
+ "start": 3785.6,
+ "end": 3786.36,
+ "confidence": 0,
+ "word": "community",
+ "punct": "community",
+ "index": 5949
+ },
+ {
+ "start": 3786.36,
+ "end": 3787.36,
+ "confidence": 0,
+ "word": "hate",
+ "punct": "hate",
+ "index": 5950
+ },
+ {
+ "start": 3787.36,
+ "end": 3787.66,
+ "confidence": 0,
+ "word": "speech",
+ "punct": "speech.",
+ "index": 5951
+ }
+ ],
+ "start": 3777.32
+ }
+ },
+ {
+ "key": "48rps",
+ "text": "I am optimistic that over a five to 10 year period we will have AI tools that can get into some of the nuances, the linguistic nuances of different types of content to be more accurate and flagging things for our systems.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3787.66,
+ "end": 3787.82,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 5952
+ },
+ {
+ "start": 3787.82,
+ "end": 3787.94,
+ "confidence": 0,
+ "word": "am",
+ "punct": "am",
+ "index": 5953
+ },
+ {
+ "start": 3787.94,
+ "end": 3788.6,
+ "confidence": 0,
+ "word": "optimistic",
+ "punct": "optimistic",
+ "index": 5954
+ },
+ {
+ "start": 3788.6,
+ "end": 3789.04,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5955
+ },
+ {
+ "start": 3789.04,
+ "end": 3789.44,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 5956
+ },
+ {
+ "start": 3789.44,
+ "end": 3789.64,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 5957
+ },
+ {
+ "start": 3789.64,
+ "end": 3790,
+ "confidence": 0,
+ "word": "five",
+ "punct": "five",
+ "index": 5958
+ },
+ {
+ "start": 3790,
+ "end": 3790.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5959
+ },
+ {
+ "start": 3790.32,
+ "end": 3790.52,
+ "confidence": 0,
+ "word": "10",
+ "punct": "10",
+ "index": 5960
+ },
+ {
+ "start": 3790.52,
+ "end": 3790.68,
+ "confidence": 0,
+ "word": "year",
+ "punct": "year",
+ "index": 5961
+ },
+ {
+ "start": 3790.68,
+ "end": 3791.06,
+ "confidence": 0,
+ "word": "period",
+ "punct": "period",
+ "index": 5962
+ },
+ {
+ "start": 3791.06,
+ "end": 3791.42,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 5963
+ },
+ {
+ "start": 3791.42,
+ "end": 3791.58,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 5964
+ },
+ {
+ "start": 3791.58,
+ "end": 3791.72,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 5965
+ },
+ {
+ "start": 3791.72,
+ "end": 3792.02,
+ "confidence": 0,
+ "word": "ai",
+ "punct": "AI",
+ "index": 5966
+ },
+ {
+ "start": 3792.02,
+ "end": 3792.34,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 5967
+ },
+ {
+ "start": 3792.34,
+ "end": 3792.56,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 5968
+ },
+ {
+ "start": 3792.56,
+ "end": 3793.4,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 5969
+ },
+ {
+ "start": 3793.4,
+ "end": 3794.22,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 5970
+ },
+ {
+ "start": 3794.22,
+ "end": 3794.44,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 5971
+ },
+ {
+ "start": 3794.44,
+ "end": 3794.6,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 5972
+ },
+ {
+ "start": 3794.6,
+ "end": 3794.68,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5973
+ },
+ {
+ "start": 3794.68,
+ "end": 3794.76,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5974
+ },
+ {
+ "start": 3794.76,
+ "end": 3795.2,
+ "confidence": 0,
+ "word": "nuances,",
+ "punct": "nuances,",
+ "index": 5975
+ },
+ {
+ "start": 3795.2,
+ "end": 3795.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 5976
+ },
+ {
+ "start": 3795.38,
+ "end": 3795.86,
+ "confidence": 0,
+ "word": "linguistic",
+ "punct": "linguistic",
+ "index": 5977
+ },
+ {
+ "start": 3795.86,
+ "end": 3796.4,
+ "confidence": 0,
+ "word": "nuances",
+ "punct": "nuances",
+ "index": 5978
+ },
+ {
+ "start": 3796.4,
+ "end": 3796.64,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5979
+ },
+ {
+ "start": 3796.64,
+ "end": 3797.66,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 5980
+ },
+ {
+ "start": 3797.66,
+ "end": 3797.84,
+ "confidence": 0,
+ "word": "types",
+ "punct": "types",
+ "index": 5981
+ },
+ {
+ "start": 3797.84,
+ "end": 3797.96,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 5982
+ },
+ {
+ "start": 3797.96,
+ "end": 3798.3,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 5983
+ },
+ {
+ "start": 3798.3,
+ "end": 3798.4,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 5984
+ },
+ {
+ "start": 3798.4,
+ "end": 3798.5,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 5985
+ },
+ {
+ "start": 3798.5,
+ "end": 3798.68,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 5986
+ },
+ {
+ "start": 3798.68,
+ "end": 3799.04,
+ "confidence": 0,
+ "word": "accurate",
+ "punct": "accurate",
+ "index": 5987
+ },
+ {
+ "start": 3799.04,
+ "end": 3799.16,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 5988
+ },
+ {
+ "start": 3799.16,
+ "end": 3799.54,
+ "confidence": 0,
+ "word": "flagging",
+ "punct": "flagging",
+ "index": 5989
+ },
+ {
+ "start": 3799.54,
+ "end": 3799.76,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 5990
+ },
+ {
+ "start": 3799.76,
+ "end": 3799.92,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 5991
+ },
+ {
+ "start": 3799.92,
+ "end": 3800.04,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 5992
+ },
+ {
+ "start": 3800.04,
+ "end": 3800.44,
+ "confidence": 0,
+ "word": "systems",
+ "punct": "systems.",
+ "index": 5993
+ }
+ ],
+ "start": 3787.66
+ }
+ },
+ {
+ "key": "3pqis",
+ "text": "But today we're just not there on that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3800.44,
+ "end": 3801.02,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 5994
+ },
+ {
+ "start": 3801.02,
+ "end": 3801.32,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 5995
+ },
+ {
+ "start": 3801.32,
+ "end": 3801.56,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 5996
+ },
+ {
+ "start": 3801.56,
+ "end": 3801.74,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 5997
+ },
+ {
+ "start": 3801.74,
+ "end": 3801.92,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 5998
+ },
+ {
+ "start": 3801.92,
+ "end": 3802.16,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 5999
+ },
+ {
+ "start": 3802.16,
+ "end": 3802.32,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 6000
+ },
+ {
+ "start": 3802.32,
+ "end": 3802.56,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 6001
+ }
+ ],
+ "start": 3800.44
+ }
+ },
+ {
+ "key": "97c93",
+ "text": "So a lot of this is still reactive people flag at us.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3802.56,
+ "end": 3803,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 6002
+ },
+ {
+ "start": 3803,
+ "end": 3803.06,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 6003
+ },
+ {
+ "start": 3803.06,
+ "end": 3803.22,
+ "confidence": 0,
+ "word": "lot",
+ "punct": "lot",
+ "index": 6004
+ },
+ {
+ "start": 3803.22,
+ "end": 3803.3,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6005
+ },
+ {
+ "start": 3803.3,
+ "end": 3803.42,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6006
+ },
+ {
+ "start": 3803.42,
+ "end": 3803.58,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6007
+ },
+ {
+ "start": 3803.58,
+ "end": 3803.78,
+ "confidence": 0,
+ "word": "still",
+ "punct": "still",
+ "index": 6008
+ },
+ {
+ "start": 3803.78,
+ "end": 3804.26,
+ "confidence": 0,
+ "word": "reactive",
+ "punct": "reactive",
+ "index": 6009
+ },
+ {
+ "start": 3804.26,
+ "end": 3804.56,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 6010
+ },
+ {
+ "start": 3804.56,
+ "end": 3804.8,
+ "confidence": 0,
+ "word": "flag",
+ "punct": "flag",
+ "index": 6011
+ },
+ {
+ "start": 3804.8,
+ "end": 3804.9,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 6012
+ },
+ {
+ "start": 3804.9,
+ "end": 3805.82,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us.",
+ "index": 6013
+ }
+ ],
+ "start": 3802.56
+ }
+ },
+ {
+ "key": "dhtd4",
+ "text": "We have people look at it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3805.82,
+ "end": 3806.36,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 6014
+ },
+ {
+ "start": 3806.36,
+ "end": 3806.86,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 6015
+ },
+ {
+ "start": 3806.86,
+ "end": 3807.12,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 6016
+ },
+ {
+ "start": 3807.12,
+ "end": 3807.4,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 6017
+ },
+ {
+ "start": 3807.4,
+ "end": 3807.52,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 6018
+ },
+ {
+ "start": 3807.52,
+ "end": 3807.64,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 6019
+ }
+ ],
+ "start": 3805.82
+ }
+ },
+ {
+ "key": "6lege",
+ "text": "We have policies to try to make it as not subjective as possible, but until we get it more automated there's a higher error rate than I am happy with.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3807.64,
+ "end": 3808.78,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 6020
+ },
+ {
+ "start": 3808.78,
+ "end": 3808.92,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 6021
+ },
+ {
+ "start": 3808.92,
+ "end": 3809.42,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies",
+ "index": 6022
+ },
+ {
+ "start": 3809.42,
+ "end": 3809.54,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6023
+ },
+ {
+ "start": 3809.54,
+ "end": 3809.7,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 6024
+ },
+ {
+ "start": 3809.7,
+ "end": 3809.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6025
+ },
+ {
+ "start": 3809.8,
+ "end": 3809.92,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 6026
+ },
+ {
+ "start": 3809.92,
+ "end": 3810,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 6027
+ },
+ {
+ "start": 3810,
+ "end": 3810.12,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6028
+ },
+ {
+ "start": 3810.12,
+ "end": 3810.28,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 6029
+ },
+ {
+ "start": 3810.28,
+ "end": 3810.76,
+ "confidence": 0,
+ "word": "subjective",
+ "punct": "subjective",
+ "index": 6030
+ },
+ {
+ "start": 3810.76,
+ "end": 3810.88,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6031
+ },
+ {
+ "start": 3810.88,
+ "end": 3811.34,
+ "confidence": 0,
+ "word": "possible,",
+ "punct": "possible,",
+ "index": 6032
+ },
+ {
+ "start": 3811.34,
+ "end": 3811.86,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 6033
+ },
+ {
+ "start": 3811.86,
+ "end": 3812.14,
+ "confidence": 0,
+ "word": "until",
+ "punct": "until",
+ "index": 6034
+ },
+ {
+ "start": 3812.14,
+ "end": 3812.26,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6035
+ },
+ {
+ "start": 3812.26,
+ "end": 3812.38,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 6036
+ },
+ {
+ "start": 3812.38,
+ "end": 3812.48,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 6037
+ },
+ {
+ "start": 3812.48,
+ "end": 3812.64,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 6038
+ },
+ {
+ "start": 3812.64,
+ "end": 3813.08,
+ "confidence": 0,
+ "word": "automated",
+ "punct": "automated",
+ "index": 6039
+ },
+ {
+ "start": 3813.08,
+ "end": 3813.4,
+ "confidence": 0,
+ "word": "there's",
+ "punct": "there's",
+ "index": 6040
+ },
+ {
+ "start": 3813.4,
+ "end": 3813.44,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 6041
+ },
+ {
+ "start": 3813.44,
+ "end": 3813.76,
+ "confidence": 0,
+ "word": "higher",
+ "punct": "higher",
+ "index": 6042
+ },
+ {
+ "start": 3813.76,
+ "end": 3814,
+ "confidence": 0,
+ "word": "error",
+ "punct": "error",
+ "index": 6043
+ },
+ {
+ "start": 3814,
+ "end": 3814.2,
+ "confidence": 0,
+ "word": "rate",
+ "punct": "rate",
+ "index": 6044
+ },
+ {
+ "start": 3814.2,
+ "end": 3814.38,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 6045
+ },
+ {
+ "start": 3814.38,
+ "end": 3814.48,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 6046
+ },
+ {
+ "start": 3814.48,
+ "end": 3814.62,
+ "confidence": 0,
+ "word": "am",
+ "punct": "am",
+ "index": 6047
+ },
+ {
+ "start": 3814.62,
+ "end": 3814.92,
+ "confidence": 0,
+ "word": "happy",
+ "punct": "happy",
+ "index": 6048
+ },
+ {
+ "start": 3814.92,
+ "end": 3815.08,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with.",
+ "index": 6049
+ }
+ ],
+ "start": 3807.64
+ }
+ },
+ {
+ "key": "as4fm",
+ "text": "Thank you, Senator Feinstein.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3815.08,
+ "end": 3815.5,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 6050
+ },
+ {
+ "start": 3815.5,
+ "end": 3815.62,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 6051
+ },
+ {
+ "start": 3815.62,
+ "end": 3816,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 6052
+ },
+ {
+ "start": 3816,
+ "end": 3817.4,
+ "confidence": 0,
+ "word": "feinstein",
+ "punct": "Feinstein.",
+ "index": 6053
+ }
+ ],
+ "start": 3815.08
+ }
+ },
+ {
+ "key": "aelgc",
+ "text": "Thanks, Mr Chairman, Mr Zuckerberg.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3817.4,
+ "end": 3818.08,
+ "confidence": 0,
+ "word": "thanks,",
+ "punct": "Thanks,",
+ "index": 6054
+ },
+ {
+ "start": 3818.08,
+ "end": 3818.46,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 6055
+ },
+ {
+ "start": 3818.46,
+ "end": 3820.24,
+ "confidence": 0,
+ "word": "chairman,",
+ "punct": "Chairman,",
+ "index": 6056
+ },
+ {
+ "start": 3820.24,
+ "end": 3821.36,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 6057
+ },
+ {
+ "start": 3821.36,
+ "end": 3821.82,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg.",
+ "index": 6058
+ }
+ ],
+ "start": 3817.4
+ }
+ },
+ {
+ "key": "66bhr",
+ "text": "What is Facebook doing to prevent foreign actors from interfering in U S elections.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3821.82,
+ "end": 3822.06,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 6059
+ },
+ {
+ "start": 3822.06,
+ "end": 3822.3,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6060
+ },
+ {
+ "start": 3822.3,
+ "end": 3823.1,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 6061
+ },
+ {
+ "start": 3823.1,
+ "end": 3823.64,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 6062
+ },
+ {
+ "start": 3823.64,
+ "end": 3824.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6063
+ },
+ {
+ "start": 3824.32,
+ "end": 3824.7,
+ "confidence": 0,
+ "word": "prevent",
+ "punct": "prevent",
+ "index": 6064
+ },
+ {
+ "start": 3824.7,
+ "end": 3825.22,
+ "confidence": 0,
+ "word": "foreign",
+ "punct": "foreign",
+ "index": 6065
+ },
+ {
+ "start": 3825.22,
+ "end": 3825.74,
+ "confidence": 0,
+ "word": "actors",
+ "punct": "actors",
+ "index": 6066
+ },
+ {
+ "start": 3825.74,
+ "end": 3826.06,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 6067
+ },
+ {
+ "start": 3826.06,
+ "end": 3826.86,
+ "confidence": 0,
+ "word": "interfering",
+ "punct": "interfering",
+ "index": 6068
+ },
+ {
+ "start": 3826.86,
+ "end": 3827.16,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6069
+ },
+ {
+ "start": 3827.16,
+ "end": 3827.38,
+ "confidence": 0,
+ "word": "u",
+ "punct": "U",
+ "index": 6070
+ },
+ {
+ "start": 3827.38,
+ "end": 3827.6,
+ "confidence": 0,
+ "word": "s",
+ "punct": "S",
+ "index": 6071
+ },
+ {
+ "start": 3827.6,
+ "end": 3828.98,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections.",
+ "index": 6072
+ }
+ ],
+ "start": 3821.82
+ }
+ },
+ {
+ "key": "d9p1v",
+ "text": "Thank you, Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3828.98,
+ "end": 3829.92,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 6073
+ },
+ {
+ "start": 3829.92,
+ "end": 3830.04,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 6074
+ },
+ {
+ "start": 3830.04,
+ "end": 3830.42,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 6075
+ }
+ ],
+ "start": 3828.98
+ }
+ },
+ {
+ "key": "6c5a5",
+ "text": "This is one of my top priorities in 20 18 is to get this right, one of my greatest regrets in running the company is that we were slow in identifying the Russian information operations and 20 16 we expected them to do a number of more traditional cyber attacks which we did identify and notify the campaigns that they were trying to hack into them.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3830.42,
+ "end": 3831.1,
+ "confidence": 0,
+ "word": "this",
+ "punct": "This",
+ "index": 6076
+ },
+ {
+ "start": 3831.1,
+ "end": 3831.36,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6077
+ },
+ {
+ "start": 3831.36,
+ "end": 3832.34,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 6078
+ },
+ {
+ "start": 3832.34,
+ "end": 3832.42,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6079
+ },
+ {
+ "start": 3832.42,
+ "end": 3832.58,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 6080
+ },
+ {
+ "start": 3832.58,
+ "end": 3832.78,
+ "confidence": 0,
+ "word": "top",
+ "punct": "top",
+ "index": 6081
+ },
+ {
+ "start": 3832.78,
+ "end": 3833.22,
+ "confidence": 0,
+ "word": "priorities",
+ "punct": "priorities",
+ "index": 6082
+ },
+ {
+ "start": 3833.22,
+ "end": 3833.36,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6083
+ },
+ {
+ "start": 3833.36,
+ "end": 3833.72,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 6084
+ },
+ {
+ "start": 3833.72,
+ "end": 3834.2,
+ "confidence": 0,
+ "word": "18",
+ "punct": "18",
+ "index": 6085
+ },
+ {
+ "start": 3834.2,
+ "end": 3834.9,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6086
+ },
+ {
+ "start": 3834.9,
+ "end": 3835,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6087
+ },
+ {
+ "start": 3835,
+ "end": 3835.1,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 6088
+ },
+ {
+ "start": 3835.1,
+ "end": 3835.26,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6089
+ },
+ {
+ "start": 3835.26,
+ "end": 3836.02,
+ "confidence": 0,
+ "word": "right,",
+ "punct": "right,",
+ "index": 6090
+ },
+ {
+ "start": 3836.02,
+ "end": 3836.98,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 6091
+ },
+ {
+ "start": 3836.98,
+ "end": 3837.06,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6092
+ },
+ {
+ "start": 3837.06,
+ "end": 3837.22,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 6093
+ },
+ {
+ "start": 3837.22,
+ "end": 3837.68,
+ "confidence": 0,
+ "word": "greatest",
+ "punct": "greatest",
+ "index": 6094
+ },
+ {
+ "start": 3837.68,
+ "end": 3838.14,
+ "confidence": 0,
+ "word": "regrets",
+ "punct": "regrets",
+ "index": 6095
+ },
+ {
+ "start": 3838.14,
+ "end": 3838.3,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6096
+ },
+ {
+ "start": 3838.3,
+ "end": 3838.56,
+ "confidence": 0,
+ "word": "running",
+ "punct": "running",
+ "index": 6097
+ },
+ {
+ "start": 3838.56,
+ "end": 3838.68,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6098
+ },
+ {
+ "start": 3838.68,
+ "end": 3839.08,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 6099
+ },
+ {
+ "start": 3839.08,
+ "end": 3839.28,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6100
+ },
+ {
+ "start": 3839.28,
+ "end": 3839.49,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6101
+ },
+ {
+ "start": 3839.49,
+ "end": 3839.55,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6102
+ },
+ {
+ "start": 3839.55,
+ "end": 3839.81,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 6103
+ },
+ {
+ "start": 3839.81,
+ "end": 3840.35,
+ "confidence": 0,
+ "word": "slow",
+ "punct": "slow",
+ "index": 6104
+ },
+ {
+ "start": 3840.35,
+ "end": 3840.85,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6105
+ },
+ {
+ "start": 3840.85,
+ "end": 3841.55,
+ "confidence": 0,
+ "word": "identifying",
+ "punct": "identifying",
+ "index": 6106
+ },
+ {
+ "start": 3841.55,
+ "end": 3841.81,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6107
+ },
+ {
+ "start": 3841.81,
+ "end": 3842.13,
+ "confidence": 0,
+ "word": "russian",
+ "punct": "Russian",
+ "index": 6108
+ },
+ {
+ "start": 3842.13,
+ "end": 3842.71,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 6109
+ },
+ {
+ "start": 3842.71,
+ "end": 3843.31,
+ "confidence": 0,
+ "word": "operations",
+ "punct": "operations",
+ "index": 6110
+ },
+ {
+ "start": 3843.31,
+ "end": 3843.49,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6111
+ },
+ {
+ "start": 3843.49,
+ "end": 3843.83,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 6112
+ },
+ {
+ "start": 3843.83,
+ "end": 3844.31,
+ "confidence": 0,
+ "word": "16",
+ "punct": "16",
+ "index": 6113
+ },
+ {
+ "start": 3844.31,
+ "end": 3844.51,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6114
+ },
+ {
+ "start": 3844.51,
+ "end": 3845.01,
+ "confidence": 0,
+ "word": "expected",
+ "punct": "expected",
+ "index": 6115
+ },
+ {
+ "start": 3845.01,
+ "end": 3845.25,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 6116
+ },
+ {
+ "start": 3845.25,
+ "end": 3845.93,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6117
+ },
+ {
+ "start": 3845.93,
+ "end": 3846.23,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 6118
+ },
+ {
+ "start": 3846.23,
+ "end": 3846.43,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 6119
+ },
+ {
+ "start": 3846.43,
+ "end": 3846.73,
+ "confidence": 0,
+ "word": "number",
+ "punct": "number",
+ "index": 6120
+ },
+ {
+ "start": 3846.73,
+ "end": 3846.81,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6121
+ },
+ {
+ "start": 3846.81,
+ "end": 3847.01,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 6122
+ },
+ {
+ "start": 3847.01,
+ "end": 3847.49,
+ "confidence": 0,
+ "word": "traditional",
+ "punct": "traditional",
+ "index": 6123
+ },
+ {
+ "start": 3847.49,
+ "end": 3847.81,
+ "confidence": 0,
+ "word": "cyber",
+ "punct": "cyber",
+ "index": 6124
+ },
+ {
+ "start": 3847.81,
+ "end": 3848.15,
+ "confidence": 0,
+ "word": "attacks",
+ "punct": "attacks",
+ "index": 6125
+ },
+ {
+ "start": 3848.15,
+ "end": 3848.35,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 6126
+ },
+ {
+ "start": 3848.35,
+ "end": 3848.47,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6127
+ },
+ {
+ "start": 3848.47,
+ "end": 3848.61,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 6128
+ },
+ {
+ "start": 3848.61,
+ "end": 3849.19,
+ "confidence": 0,
+ "word": "identify",
+ "punct": "identify",
+ "index": 6129
+ },
+ {
+ "start": 3849.19,
+ "end": 3849.31,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6130
+ },
+ {
+ "start": 3849.31,
+ "end": 3850,
+ "confidence": 0,
+ "word": "notify",
+ "punct": "notify",
+ "index": 6131
+ },
+ {
+ "start": 3850,
+ "end": 3850.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6132
+ },
+ {
+ "start": 3850.38,
+ "end": 3850.86,
+ "confidence": 0,
+ "word": "campaigns",
+ "punct": "campaigns",
+ "index": 6133
+ },
+ {
+ "start": 3850.86,
+ "end": 3851,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6134
+ },
+ {
+ "start": 3851,
+ "end": 3851.12,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 6135
+ },
+ {
+ "start": 3851.12,
+ "end": 3851.24,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 6136
+ },
+ {
+ "start": 3851.24,
+ "end": 3851.46,
+ "confidence": 0,
+ "word": "trying",
+ "punct": "trying",
+ "index": 6137
+ },
+ {
+ "start": 3851.46,
+ "end": 3851.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6138
+ },
+ {
+ "start": 3851.52,
+ "end": 3851.68,
+ "confidence": 0,
+ "word": "hack",
+ "punct": "hack",
+ "index": 6139
+ },
+ {
+ "start": 3851.68,
+ "end": 3851.88,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 6140
+ },
+ {
+ "start": 3851.88,
+ "end": 3852.08,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them.",
+ "index": 6141
+ }
+ ],
+ "start": 3830.42
+ }
+ },
+ {
+ "key": "8ue2e",
+ "text": "But we were slow to identifying the type of new information operations.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3852.08,
+ "end": 3852.52,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 6142
+ },
+ {
+ "start": 3852.52,
+ "end": 3852.62,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6143
+ },
+ {
+ "start": 3852.62,
+ "end": 3852.76,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 6144
+ },
+ {
+ "start": 3852.76,
+ "end": 3853,
+ "confidence": 0,
+ "word": "slow",
+ "punct": "slow",
+ "index": 6145
+ },
+ {
+ "start": 3853,
+ "end": 3853.1,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6146
+ },
+ {
+ "start": 3853.1,
+ "end": 3853.76,
+ "confidence": 0,
+ "word": "identifying",
+ "punct": "identifying",
+ "index": 6147
+ },
+ {
+ "start": 3853.76,
+ "end": 3854.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6148
+ },
+ {
+ "start": 3854.18,
+ "end": 3854.46,
+ "confidence": 0,
+ "word": "type",
+ "punct": "type",
+ "index": 6149
+ },
+ {
+ "start": 3854.46,
+ "end": 3854.6,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6150
+ },
+ {
+ "start": 3854.6,
+ "end": 3855.18,
+ "confidence": 0,
+ "word": "new",
+ "punct": "new",
+ "index": 6151
+ },
+ {
+ "start": 3855.18,
+ "end": 3855.76,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 6152
+ },
+ {
+ "start": 3855.76,
+ "end": 3856.34,
+ "confidence": 0,
+ "word": "operations",
+ "punct": "operations.",
+ "index": 6153
+ }
+ ],
+ "start": 3852.08
+ }
+ },
+ {
+ "key": "9c38q",
+ "text": "When did you identify new operations?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3856.34,
+ "end": 3856.82,
+ "confidence": 0,
+ "word": "when",
+ "punct": "When",
+ "index": 6154
+ },
+ {
+ "start": 3856.82,
+ "end": 3857,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 6155
+ },
+ {
+ "start": 3857,
+ "end": 3857.18,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 6156
+ },
+ {
+ "start": 3857.18,
+ "end": 3858.16,
+ "confidence": 0,
+ "word": "identify",
+ "punct": "identify",
+ "index": 6157
+ },
+ {
+ "start": 3858.16,
+ "end": 3858.76,
+ "confidence": 0,
+ "word": "new",
+ "punct": "new",
+ "index": 6158
+ },
+ {
+ "start": 3858.76,
+ "end": 3859.92,
+ "confidence": 0,
+ "word": "operations",
+ "punct": "operations?",
+ "index": 6159
+ }
+ ],
+ "start": 3856.34
+ }
+ },
+ {
+ "key": "d73nt",
+ "text": "It was right around the time of the 20 16 election itself.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3859.92,
+ "end": 3861,
+ "confidence": 0,
+ "word": "it",
+ "punct": "It",
+ "index": 6160
+ },
+ {
+ "start": 3861,
+ "end": 3861.16,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 6161
+ },
+ {
+ "start": 3861.16,
+ "end": 3861.44,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 6162
+ },
+ {
+ "start": 3861.44,
+ "end": 3861.8,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 6163
+ },
+ {
+ "start": 3861.8,
+ "end": 3861.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6164
+ },
+ {
+ "start": 3861.98,
+ "end": 3862.26,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 6165
+ },
+ {
+ "start": 3862.26,
+ "end": 3862.38,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6166
+ },
+ {
+ "start": 3862.38,
+ "end": 3862.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6167
+ },
+ {
+ "start": 3862.5,
+ "end": 3862.72,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 6168
+ },
+ {
+ "start": 3862.72,
+ "end": 3863.1,
+ "confidence": 0,
+ "word": "16",
+ "punct": "16",
+ "index": 6169
+ },
+ {
+ "start": 3863.1,
+ "end": 3863.46,
+ "confidence": 0,
+ "word": "election",
+ "punct": "election",
+ "index": 6170
+ },
+ {
+ "start": 3863.46,
+ "end": 3863.84,
+ "confidence": 0,
+ "word": "itself",
+ "punct": "itself.",
+ "index": 6171
+ }
+ ],
+ "start": 3859.92
+ }
+ },
+ {
+ "key": "8mmht",
+ "text": "So since then, this is an incredibly important year for elections.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3863.84,
+ "end": 3864.46,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 6172
+ },
+ {
+ "start": 3864.46,
+ "end": 3864.72,
+ "confidence": 0,
+ "word": "since",
+ "punct": "since",
+ "index": 6173
+ },
+ {
+ "start": 3864.72,
+ "end": 3866.8,
+ "confidence": 0,
+ "word": "then,",
+ "punct": "then,",
+ "index": 6174
+ },
+ {
+ "start": 3866.8,
+ "end": 3867.82,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6175
+ },
+ {
+ "start": 3867.82,
+ "end": 3867.94,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6176
+ },
+ {
+ "start": 3867.94,
+ "end": 3868.04,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 6177
+ },
+ {
+ "start": 3868.04,
+ "end": 3868.52,
+ "confidence": 0,
+ "word": "incredibly",
+ "punct": "incredibly",
+ "index": 6178
+ },
+ {
+ "start": 3868.52,
+ "end": 3868.84,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 6179
+ },
+ {
+ "start": 3868.84,
+ "end": 3869,
+ "confidence": 0,
+ "word": "year",
+ "punct": "year",
+ "index": 6180
+ },
+ {
+ "start": 3869,
+ "end": 3869.14,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 6181
+ },
+ {
+ "start": 3869.14,
+ "end": 3869.6,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections.",
+ "index": 6182
+ }
+ ],
+ "start": 3863.84
+ }
+ },
+ {
+ "key": "7ne76",
+ "text": "Not just with the U S Midterms but around the world.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3869.6,
+ "end": 3869.86,
+ "confidence": 0,
+ "word": "not",
+ "punct": "Not",
+ "index": 6183
+ },
+ {
+ "start": 3869.86,
+ "end": 3870.04,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 6184
+ },
+ {
+ "start": 3870.04,
+ "end": 3870.36,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 6185
+ },
+ {
+ "start": 3870.36,
+ "end": 3870.46,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6186
+ },
+ {
+ "start": 3870.46,
+ "end": 3870.56,
+ "confidence": 0,
+ "word": "u",
+ "punct": "U",
+ "index": 6187
+ },
+ {
+ "start": 3870.56,
+ "end": 3870.7,
+ "confidence": 0,
+ "word": "s",
+ "punct": "S",
+ "index": 6188
+ },
+ {
+ "start": 3870.7,
+ "end": 3871.18,
+ "confidence": 0,
+ "word": "midterms",
+ "punct": "Midterms",
+ "index": 6189
+ },
+ {
+ "start": 3871.18,
+ "end": 3871.74,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 6190
+ },
+ {
+ "start": 3871.74,
+ "end": 3872.04,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 6191
+ },
+ {
+ "start": 3872.04,
+ "end": 3872.16,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6192
+ },
+ {
+ "start": 3872.16,
+ "end": 3872.44,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world.",
+ "index": 6193
+ }
+ ],
+ "start": 3869.6
+ }
+ },
+ {
+ "key": "ddub0",
+ "text": "There are important elections in India in Brazil and Mexico and Pakistan and and Hungary that we want to make sure that we do everything we can to protect the integrity of those elections.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3872.44,
+ "end": 3872.64,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 6194
+ },
+ {
+ "start": 3872.64,
+ "end": 3872.76,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 6195
+ },
+ {
+ "start": 3872.76,
+ "end": 3873.14,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 6196
+ },
+ {
+ "start": 3873.14,
+ "end": 3873.64,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections",
+ "index": 6197
+ },
+ {
+ "start": 3873.64,
+ "end": 3873.9,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6198
+ },
+ {
+ "start": 3873.9,
+ "end": 3874.38,
+ "confidence": 0,
+ "word": "india",
+ "punct": "India",
+ "index": 6199
+ },
+ {
+ "start": 3874.38,
+ "end": 3874.92,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6200
+ },
+ {
+ "start": 3874.92,
+ "end": 3875.4,
+ "confidence": 0,
+ "word": "brazil",
+ "punct": "Brazil",
+ "index": 6201
+ },
+ {
+ "start": 3875.4,
+ "end": 3875.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6202
+ },
+ {
+ "start": 3875.62,
+ "end": 3876.14,
+ "confidence": 0,
+ "word": "mexico",
+ "punct": "Mexico",
+ "index": 6203
+ },
+ {
+ "start": 3876.14,
+ "end": 3876.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6204
+ },
+ {
+ "start": 3876.3,
+ "end": 3876.84,
+ "confidence": 0,
+ "word": "pakistan",
+ "punct": "Pakistan",
+ "index": 6205
+ },
+ {
+ "start": 3876.84,
+ "end": 3876.96,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6206
+ },
+ {
+ "start": 3876.96,
+ "end": 3877.08,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6207
+ },
+ {
+ "start": 3877.08,
+ "end": 3877.52,
+ "confidence": 0,
+ "word": "hungary",
+ "punct": "Hungary",
+ "index": 6208
+ },
+ {
+ "start": 3877.52,
+ "end": 3877.88,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6209
+ },
+ {
+ "start": 3877.88,
+ "end": 3877.98,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6210
+ },
+ {
+ "start": 3877.98,
+ "end": 3878.12,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 6211
+ },
+ {
+ "start": 3878.12,
+ "end": 3878.18,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6212
+ },
+ {
+ "start": 3878.18,
+ "end": 3878.32,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 6213
+ },
+ {
+ "start": 3878.32,
+ "end": 3878.54,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 6214
+ },
+ {
+ "start": 3878.54,
+ "end": 3878.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6215
+ },
+ {
+ "start": 3878.7,
+ "end": 3878.98,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6216
+ },
+ {
+ "start": 3878.98,
+ "end": 3879.36,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 6217
+ },
+ {
+ "start": 3879.36,
+ "end": 3879.74,
+ "confidence": 0,
+ "word": "everything",
+ "punct": "everything",
+ "index": 6218
+ },
+ {
+ "start": 3879.74,
+ "end": 3879.86,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6219
+ },
+ {
+ "start": 3879.86,
+ "end": 3880.13,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 6220
+ },
+ {
+ "start": 3880.13,
+ "end": 3880.19,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6221
+ },
+ {
+ "start": 3880.19,
+ "end": 3880.45,
+ "confidence": 0,
+ "word": "protect",
+ "punct": "protect",
+ "index": 6222
+ },
+ {
+ "start": 3880.45,
+ "end": 3880.59,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6223
+ },
+ {
+ "start": 3880.59,
+ "end": 3880.99,
+ "confidence": 0,
+ "word": "integrity",
+ "punct": "integrity",
+ "index": 6224
+ },
+ {
+ "start": 3880.99,
+ "end": 3881.07,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6225
+ },
+ {
+ "start": 3881.07,
+ "end": 3881.25,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 6226
+ },
+ {
+ "start": 3881.25,
+ "end": 3881.69,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections.",
+ "index": 6227
+ }
+ ],
+ "start": 3872.44
+ }
+ },
+ {
+ "key": "esg8i",
+ "text": "Now, I have more confidence that we're going to get this right because since the 20 16 election, there have been several important elections around the world where we've had a better record there's the French presidential election there's the German election.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3881.69,
+ "end": 3881.89,
+ "confidence": 0,
+ "word": "now,",
+ "punct": "Now,",
+ "index": 6228
+ },
+ {
+ "start": 3881.89,
+ "end": 3882.57,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 6229
+ },
+ {
+ "start": 3882.57,
+ "end": 3882.73,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 6230
+ },
+ {
+ "start": 3882.73,
+ "end": 3882.95,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 6231
+ },
+ {
+ "start": 3882.95,
+ "end": 3883.47,
+ "confidence": 0,
+ "word": "confidence",
+ "punct": "confidence",
+ "index": 6232
+ },
+ {
+ "start": 3883.47,
+ "end": 3883.63,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6233
+ },
+ {
+ "start": 3883.63,
+ "end": 3883.77,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 6234
+ },
+ {
+ "start": 3883.77,
+ "end": 3883.93,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 6235
+ },
+ {
+ "start": 3883.93,
+ "end": 3883.99,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6236
+ },
+ {
+ "start": 3883.99,
+ "end": 3884.07,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 6237
+ },
+ {
+ "start": 3884.07,
+ "end": 3884.21,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6238
+ },
+ {
+ "start": 3884.21,
+ "end": 3884.49,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 6239
+ },
+ {
+ "start": 3884.49,
+ "end": 3884.85,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 6240
+ },
+ {
+ "start": 3884.85,
+ "end": 3885.11,
+ "confidence": 0,
+ "word": "since",
+ "punct": "since",
+ "index": 6241
+ },
+ {
+ "start": 3885.11,
+ "end": 3885.25,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6242
+ },
+ {
+ "start": 3885.25,
+ "end": 3885.45,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 6243
+ },
+ {
+ "start": 3885.45,
+ "end": 3885.83,
+ "confidence": 0,
+ "word": "16",
+ "punct": "16",
+ "index": 6244
+ },
+ {
+ "start": 3885.83,
+ "end": 3886.19,
+ "confidence": 0,
+ "word": "election,",
+ "punct": "election,",
+ "index": 6245
+ },
+ {
+ "start": 3886.19,
+ "end": 3886.67,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 6246
+ },
+ {
+ "start": 3886.67,
+ "end": 3886.81,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 6247
+ },
+ {
+ "start": 3886.81,
+ "end": 3886.99,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 6248
+ },
+ {
+ "start": 3886.99,
+ "end": 3887.43,
+ "confidence": 0,
+ "word": "several",
+ "punct": "several",
+ "index": 6249
+ },
+ {
+ "start": 3887.43,
+ "end": 3887.85,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 6250
+ },
+ {
+ "start": 3887.85,
+ "end": 3888.31,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections",
+ "index": 6251
+ },
+ {
+ "start": 3888.31,
+ "end": 3888.59,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 6252
+ },
+ {
+ "start": 3888.59,
+ "end": 3888.71,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6253
+ },
+ {
+ "start": 3888.71,
+ "end": 3888.95,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 6254
+ },
+ {
+ "start": 3888.95,
+ "end": 3889.41,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 6255
+ },
+ {
+ "start": 3889.41,
+ "end": 3889.61,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 6256
+ },
+ {
+ "start": 3889.61,
+ "end": 3889.73,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 6257
+ },
+ {
+ "start": 3889.73,
+ "end": 3889.79,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 6258
+ },
+ {
+ "start": 3889.79,
+ "end": 3890.01,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better",
+ "index": 6259
+ },
+ {
+ "start": 3890.01,
+ "end": 3890.31,
+ "confidence": 0,
+ "word": "record",
+ "punct": "record",
+ "index": 6260
+ },
+ {
+ "start": 3890.31,
+ "end": 3890.67,
+ "confidence": 0,
+ "word": "there's",
+ "punct": "there's",
+ "index": 6261
+ },
+ {
+ "start": 3890.67,
+ "end": 3890.79,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6262
+ },
+ {
+ "start": 3890.79,
+ "end": 3891.05,
+ "confidence": 0,
+ "word": "french",
+ "punct": "French",
+ "index": 6263
+ },
+ {
+ "start": 3891.05,
+ "end": 3891.55,
+ "confidence": 0,
+ "word": "presidential",
+ "punct": "presidential",
+ "index": 6264
+ },
+ {
+ "start": 3891.55,
+ "end": 3891.91,
+ "confidence": 0,
+ "word": "election",
+ "punct": "election",
+ "index": 6265
+ },
+ {
+ "start": 3891.91,
+ "end": 3892.57,
+ "confidence": 0,
+ "word": "there's",
+ "punct": "there's",
+ "index": 6266
+ },
+ {
+ "start": 3892.57,
+ "end": 3892.67,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6267
+ },
+ {
+ "start": 3892.67,
+ "end": 3892.93,
+ "confidence": 0,
+ "word": "german",
+ "punct": "German",
+ "index": 6268
+ },
+ {
+ "start": 3892.93,
+ "end": 3893.23,
+ "confidence": 0,
+ "word": "election",
+ "punct": "election.",
+ "index": 6269
+ }
+ ],
+ "start": 3881.69
+ }
+ },
+ {
+ "key": "97p6",
+ "text": "There was the US Senate Alabama special election last year.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3893.23,
+ "end": 3893.39,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 6270
+ },
+ {
+ "start": 3893.39,
+ "end": 3893.49,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 6271
+ },
+ {
+ "start": 3893.49,
+ "end": 3893.63,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6272
+ },
+ {
+ "start": 3893.63,
+ "end": 3894.2,
+ "confidence": 0,
+ "word": "us",
+ "punct": "US",
+ "index": 6273
+ },
+ {
+ "start": 3894.2,
+ "end": 3894.8,
+ "confidence": 0,
+ "word": "senate",
+ "punct": "Senate",
+ "index": 6274
+ },
+ {
+ "start": 3894.8,
+ "end": 3895.24,
+ "confidence": 0,
+ "word": "alabama",
+ "punct": "Alabama",
+ "index": 6275
+ },
+ {
+ "start": 3895.24,
+ "end": 3895.66,
+ "confidence": 0,
+ "word": "special",
+ "punct": "special",
+ "index": 6276
+ },
+ {
+ "start": 3895.66,
+ "end": 3896,
+ "confidence": 0,
+ "word": "election",
+ "punct": "election",
+ "index": 6277
+ },
+ {
+ "start": 3896,
+ "end": 3896.26,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 6278
+ },
+ {
+ "start": 3896.26,
+ "end": 3896.42,
+ "confidence": 0,
+ "word": "year",
+ "punct": "year.",
+ "index": 6279
+ }
+ ],
+ "start": 3893.23
+ }
+ },
+ {
+ "key": "2kjub",
+ "text": "Explain what is better about the record.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3896.42,
+ "end": 3897.26,
+ "confidence": 0,
+ "word": "explain",
+ "punct": "Explain",
+ "index": 6280
+ },
+ {
+ "start": 3897.26,
+ "end": 3897.5,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 6281
+ },
+ {
+ "start": 3897.5,
+ "end": 3897.68,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6282
+ },
+ {
+ "start": 3897.68,
+ "end": 3898.02,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better",
+ "index": 6283
+ },
+ {
+ "start": 3898.02,
+ "end": 3898.3,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 6284
+ },
+ {
+ "start": 3898.3,
+ "end": 3898.48,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6285
+ },
+ {
+ "start": 3898.48,
+ "end": 3898.86,
+ "confidence": 0,
+ "word": "record",
+ "punct": "record.",
+ "index": 6286
+ }
+ ],
+ "start": 3896.42
+ }
+ },
+ {
+ "key": "cifj7",
+ "text": "So we've deployed.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3898.86,
+ "end": 3899.46,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 6287
+ },
+ {
+ "start": 3899.46,
+ "end": 3899.74,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 6288
+ },
+ {
+ "start": 3899.74,
+ "end": 3900.28,
+ "confidence": 0,
+ "word": "deployed",
+ "punct": "deployed.",
+ "index": 6289
+ }
+ ],
+ "start": 3898.86
+ }
+ },
+ {
+ "key": "59ktn",
+ "text": "New AI tools that do a better job of identifying fake accounts that may be trying to interfere in elections or spread misinformation.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3900.28,
+ "end": 3900.66,
+ "confidence": 0,
+ "word": "new",
+ "punct": "New",
+ "index": 6290
+ },
+ {
+ "start": 3900.66,
+ "end": 3901.04,
+ "confidence": 0,
+ "word": "ai",
+ "punct": "AI",
+ "index": 6291
+ },
+ {
+ "start": 3901.04,
+ "end": 3901.9,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 6292
+ },
+ {
+ "start": 3901.9,
+ "end": 3902.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6293
+ },
+ {
+ "start": 3902.58,
+ "end": 3903.24,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 6294
+ },
+ {
+ "start": 3903.24,
+ "end": 3903.34,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 6295
+ },
+ {
+ "start": 3903.34,
+ "end": 3903.64,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better",
+ "index": 6296
+ },
+ {
+ "start": 3903.64,
+ "end": 3903.96,
+ "confidence": 0,
+ "word": "job",
+ "punct": "job",
+ "index": 6297
+ },
+ {
+ "start": 3903.96,
+ "end": 3904.18,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6298
+ },
+ {
+ "start": 3904.18,
+ "end": 3904.9,
+ "confidence": 0,
+ "word": "identifying",
+ "punct": "identifying",
+ "index": 6299
+ },
+ {
+ "start": 3904.9,
+ "end": 3905.22,
+ "confidence": 0,
+ "word": "fake",
+ "punct": "fake",
+ "index": 6300
+ },
+ {
+ "start": 3905.22,
+ "end": 3905.64,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts",
+ "index": 6301
+ },
+ {
+ "start": 3905.64,
+ "end": 3906.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6302
+ },
+ {
+ "start": 3906.3,
+ "end": 3906.54,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 6303
+ },
+ {
+ "start": 3906.54,
+ "end": 3906.66,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 6304
+ },
+ {
+ "start": 3906.66,
+ "end": 3907.12,
+ "confidence": 0,
+ "word": "trying",
+ "punct": "trying",
+ "index": 6305
+ },
+ {
+ "start": 3907.12,
+ "end": 3907.34,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6306
+ },
+ {
+ "start": 3907.34,
+ "end": 3907.92,
+ "confidence": 0,
+ "word": "interfere",
+ "punct": "interfere",
+ "index": 6307
+ },
+ {
+ "start": 3907.92,
+ "end": 3907.98,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6308
+ },
+ {
+ "start": 3907.98,
+ "end": 3908.42,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections",
+ "index": 6309
+ },
+ {
+ "start": 3908.42,
+ "end": 3908.6,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 6310
+ },
+ {
+ "start": 3908.6,
+ "end": 3908.92,
+ "confidence": 0,
+ "word": "spread",
+ "punct": "spread",
+ "index": 6311
+ },
+ {
+ "start": 3908.92,
+ "end": 3909.66,
+ "confidence": 0,
+ "word": "misinformation",
+ "punct": "misinformation.",
+ "index": 6312
+ }
+ ],
+ "start": 3900.28
+ }
+ },
+ {
+ "key": "5ijif",
+ "text": "And between those three elections.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3909.66,
+ "end": 3910.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 6313
+ },
+ {
+ "start": 3910.26,
+ "end": 3910.62,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 6314
+ },
+ {
+ "start": 3910.62,
+ "end": 3910.94,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 6315
+ },
+ {
+ "start": 3910.94,
+ "end": 3911.24,
+ "confidence": 0,
+ "word": "three",
+ "punct": "three",
+ "index": 6316
+ },
+ {
+ "start": 3911.24,
+ "end": 3911.72,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections.",
+ "index": 6317
+ }
+ ],
+ "start": 3909.66
+ }
+ },
+ {
+ "key": "8ufg3",
+ "text": "We were able to proactively remove tens of thousands of accounts that before they they could contribute significant harm.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3911.72,
+ "end": 3912.22,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 6318
+ },
+ {
+ "start": 3912.22,
+ "end": 3912.4,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 6319
+ },
+ {
+ "start": 3912.4,
+ "end": 3912.6,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 6320
+ },
+ {
+ "start": 3912.6,
+ "end": 3912.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6321
+ },
+ {
+ "start": 3912.72,
+ "end": 3913.42,
+ "confidence": 0,
+ "word": "proactively",
+ "punct": "proactively",
+ "index": 6322
+ },
+ {
+ "start": 3913.42,
+ "end": 3913.84,
+ "confidence": 0,
+ "word": "remove",
+ "punct": "remove",
+ "index": 6323
+ },
+ {
+ "start": 3913.84,
+ "end": 3914.44,
+ "confidence": 0,
+ "word": "tens",
+ "punct": "tens",
+ "index": 6324
+ },
+ {
+ "start": 3914.44,
+ "end": 3914.56,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6325
+ },
+ {
+ "start": 3914.56,
+ "end": 3915,
+ "confidence": 0,
+ "word": "thousands",
+ "punct": "thousands",
+ "index": 6326
+ },
+ {
+ "start": 3915,
+ "end": 3915.14,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6327
+ },
+ {
+ "start": 3915.14,
+ "end": 3915.54,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts",
+ "index": 6328
+ },
+ {
+ "start": 3915.54,
+ "end": 3916.1,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6329
+ },
+ {
+ "start": 3916.1,
+ "end": 3916.94,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 6330
+ },
+ {
+ "start": 3916.94,
+ "end": 3917.28,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 6331
+ },
+ {
+ "start": 3917.28,
+ "end": 3917.74,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 6332
+ },
+ {
+ "start": 3917.74,
+ "end": 3918.1,
+ "confidence": 0,
+ "word": "could",
+ "punct": "could",
+ "index": 6333
+ },
+ {
+ "start": 3918.1,
+ "end": 3919.16,
+ "confidence": 0,
+ "word": "contribute",
+ "punct": "contribute",
+ "index": 6334
+ },
+ {
+ "start": 3919.16,
+ "end": 3919.66,
+ "confidence": 0,
+ "word": "significant",
+ "punct": "significant",
+ "index": 6335
+ },
+ {
+ "start": 3919.66,
+ "end": 3919.94,
+ "confidence": 0,
+ "word": "harm",
+ "punct": "harm.",
+ "index": 6336
+ }
+ ],
+ "start": 3911.72
+ }
+ },
+ {
+ "key": "atbne",
+ "text": "And the nature of his attacks, though, is that there are people in Russia whose job it is is to try to exploit our systems and other Internet systems and other systems as well.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3919.94,
+ "end": 3920.96,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 6337
+ },
+ {
+ "start": 3920.96,
+ "end": 3921.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6338
+ },
+ {
+ "start": 3921.42,
+ "end": 3921.82,
+ "confidence": 0,
+ "word": "nature",
+ "punct": "nature",
+ "index": 6339
+ },
+ {
+ "start": 3921.82,
+ "end": 3921.9,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6340
+ },
+ {
+ "start": 3921.9,
+ "end": 3922.2,
+ "confidence": 0,
+ "word": "his",
+ "punct": "his",
+ "index": 6341
+ },
+ {
+ "start": 3922.2,
+ "end": 3923.26,
+ "confidence": 0,
+ "word": "attacks,",
+ "punct": "attacks,",
+ "index": 6342
+ },
+ {
+ "start": 3923.26,
+ "end": 3923.56,
+ "confidence": 0,
+ "word": "though,",
+ "punct": "though,",
+ "index": 6343
+ },
+ {
+ "start": 3923.56,
+ "end": 3924.38,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6344
+ },
+ {
+ "start": 3924.38,
+ "end": 3924.66,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6345
+ },
+ {
+ "start": 3924.66,
+ "end": 3925.2,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 6346
+ },
+ {
+ "start": 3925.2,
+ "end": 3925.32,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 6347
+ },
+ {
+ "start": 3925.32,
+ "end": 3925.52,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 6348
+ },
+ {
+ "start": 3925.52,
+ "end": 3925.64,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6349
+ },
+ {
+ "start": 3925.64,
+ "end": 3926,
+ "confidence": 0,
+ "word": "russia",
+ "punct": "Russia",
+ "index": 6350
+ },
+ {
+ "start": 3926,
+ "end": 3926.66,
+ "confidence": 0,
+ "word": "whose",
+ "punct": "whose",
+ "index": 6351
+ },
+ {
+ "start": 3926.66,
+ "end": 3926.94,
+ "confidence": 0,
+ "word": "job",
+ "punct": "job",
+ "index": 6352
+ },
+ {
+ "start": 3926.94,
+ "end": 3927.04,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 6353
+ },
+ {
+ "start": 3927.04,
+ "end": 3927.22,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6354
+ },
+ {
+ "start": 3927.22,
+ "end": 3927.38,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6355
+ },
+ {
+ "start": 3927.38,
+ "end": 3927.5,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6356
+ },
+ {
+ "start": 3927.5,
+ "end": 3927.68,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 6357
+ },
+ {
+ "start": 3927.68,
+ "end": 3927.78,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6358
+ },
+ {
+ "start": 3927.78,
+ "end": 3928.22,
+ "confidence": 0,
+ "word": "exploit",
+ "punct": "exploit",
+ "index": 6359
+ },
+ {
+ "start": 3928.22,
+ "end": 3928.42,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 6360
+ },
+ {
+ "start": 3928.42,
+ "end": 3928.84,
+ "confidence": 0,
+ "word": "systems",
+ "punct": "systems",
+ "index": 6361
+ },
+ {
+ "start": 3928.84,
+ "end": 3929.14,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6362
+ },
+ {
+ "start": 3929.14,
+ "end": 3929.54,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 6363
+ },
+ {
+ "start": 3929.54,
+ "end": 3930.1,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 6364
+ },
+ {
+ "start": 3930.1,
+ "end": 3930.44,
+ "confidence": 0,
+ "word": "systems",
+ "punct": "systems",
+ "index": 6365
+ },
+ {
+ "start": 3930.44,
+ "end": 3930.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6366
+ },
+ {
+ "start": 3930.54,
+ "end": 3930.74,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 6367
+ },
+ {
+ "start": 3930.74,
+ "end": 3931.17,
+ "confidence": 0,
+ "word": "systems",
+ "punct": "systems",
+ "index": 6368
+ },
+ {
+ "start": 3931.17,
+ "end": 3931.29,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6369
+ },
+ {
+ "start": 3931.29,
+ "end": 3931.55,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well.",
+ "index": 6370
+ }
+ ],
+ "start": 3919.94
+ }
+ },
+ {
+ "key": "8scqh",
+ "text": "So this is an arms race they're going to keep on getting better at this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3931.55,
+ "end": 3932.09,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 6371
+ },
+ {
+ "start": 3932.09,
+ "end": 3932.23,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6372
+ },
+ {
+ "start": 3932.23,
+ "end": 3932.33,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6373
+ },
+ {
+ "start": 3932.33,
+ "end": 3932.43,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 6374
+ },
+ {
+ "start": 3932.43,
+ "end": 3932.67,
+ "confidence": 0,
+ "word": "arms",
+ "punct": "arms",
+ "index": 6375
+ },
+ {
+ "start": 3932.67,
+ "end": 3932.91,
+ "confidence": 0,
+ "word": "race",
+ "punct": "race",
+ "index": 6376
+ },
+ {
+ "start": 3932.91,
+ "end": 3933.83,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 6377
+ },
+ {
+ "start": 3933.83,
+ "end": 3933.95,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 6378
+ },
+ {
+ "start": 3933.95,
+ "end": 3934.01,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6379
+ },
+ {
+ "start": 3934.01,
+ "end": 3934.15,
+ "confidence": 0,
+ "word": "keep",
+ "punct": "keep",
+ "index": 6380
+ },
+ {
+ "start": 3934.15,
+ "end": 3934.25,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 6381
+ },
+ {
+ "start": 3934.25,
+ "end": 3934.51,
+ "confidence": 0,
+ "word": "getting",
+ "punct": "getting",
+ "index": 6382
+ },
+ {
+ "start": 3934.51,
+ "end": 3934.71,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better",
+ "index": 6383
+ },
+ {
+ "start": 3934.71,
+ "end": 3934.79,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 6384
+ },
+ {
+ "start": 3934.79,
+ "end": 3934.95,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 6385
+ }
+ ],
+ "start": 3931.55
+ }
+ },
+ {
+ "key": "3f0gg",
+ "text": "And we need to invest in keep getting better at this too.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3934.95,
+ "end": 3935.63,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 6386
+ },
+ {
+ "start": 3935.63,
+ "end": 3935.87,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6387
+ },
+ {
+ "start": 3935.87,
+ "end": 3936.03,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 6388
+ },
+ {
+ "start": 3936.03,
+ "end": 3936.15,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6389
+ },
+ {
+ "start": 3936.15,
+ "end": 3936.47,
+ "confidence": 0,
+ "word": "invest",
+ "punct": "invest",
+ "index": 6390
+ },
+ {
+ "start": 3936.47,
+ "end": 3936.61,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6391
+ },
+ {
+ "start": 3936.61,
+ "end": 3936.85,
+ "confidence": 0,
+ "word": "keep",
+ "punct": "keep",
+ "index": 6392
+ },
+ {
+ "start": 3936.85,
+ "end": 3937.39,
+ "confidence": 0,
+ "word": "getting",
+ "punct": "getting",
+ "index": 6393
+ },
+ {
+ "start": 3937.39,
+ "end": 3937.59,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better",
+ "index": 6394
+ },
+ {
+ "start": 3937.59,
+ "end": 3937.67,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 6395
+ },
+ {
+ "start": 3937.67,
+ "end": 3937.83,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6396
+ },
+ {
+ "start": 3937.83,
+ "end": 3938.11,
+ "confidence": 0,
+ "word": "too",
+ "punct": "too.",
+ "index": 6397
+ }
+ ],
+ "start": 3934.95
+ }
+ },
+ {
+ "key": "3ir55",
+ "text": "Which is why one of the things I mentioned before is we're going to have more than 20,000 people by the end of this year working on security and content review across the company.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3938.11,
+ "end": 3938.57,
+ "confidence": 0,
+ "word": "which",
+ "punct": "Which",
+ "index": 6398
+ },
+ {
+ "start": 3938.57,
+ "end": 3938.69,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6399
+ },
+ {
+ "start": 3938.69,
+ "end": 3939.05,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 6400
+ },
+ {
+ "start": 3939.05,
+ "end": 3939.41,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 6401
+ },
+ {
+ "start": 3939.41,
+ "end": 3939.49,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6402
+ },
+ {
+ "start": 3939.49,
+ "end": 3939.59,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6403
+ },
+ {
+ "start": 3939.59,
+ "end": 3939.75,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 6404
+ },
+ {
+ "start": 3939.75,
+ "end": 3939.85,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 6405
+ },
+ {
+ "start": 3939.85,
+ "end": 3940.15,
+ "confidence": 0,
+ "word": "mentioned",
+ "punct": "mentioned",
+ "index": 6406
+ },
+ {
+ "start": 3940.15,
+ "end": 3940.37,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 6407
+ },
+ {
+ "start": 3940.37,
+ "end": 3940.49,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6408
+ },
+ {
+ "start": 3940.49,
+ "end": 3940.67,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 6409
+ },
+ {
+ "start": 3940.67,
+ "end": 3940.83,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 6410
+ },
+ {
+ "start": 3940.83,
+ "end": 3940.89,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6411
+ },
+ {
+ "start": 3940.89,
+ "end": 3941.38,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 6412
+ },
+ {
+ "start": 3941.38,
+ "end": 3941.88,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 6413
+ },
+ {
+ "start": 3941.88,
+ "end": 3942,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 6414
+ },
+ {
+ "start": 3942,
+ "end": 3942.68,
+ "confidence": 0,
+ "word": "20,000",
+ "punct": "20,000",
+ "index": 6415
+ },
+ {
+ "start": 3942.68,
+ "end": 3942.92,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 6416
+ },
+ {
+ "start": 3942.92,
+ "end": 3943.08,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 6417
+ },
+ {
+ "start": 3943.08,
+ "end": 3943.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6418
+ },
+ {
+ "start": 3943.2,
+ "end": 3943.32,
+ "confidence": 0,
+ "word": "end",
+ "punct": "end",
+ "index": 6419
+ },
+ {
+ "start": 3943.32,
+ "end": 3943.4,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6420
+ },
+ {
+ "start": 3943.4,
+ "end": 3943.52,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6421
+ },
+ {
+ "start": 3943.52,
+ "end": 3943.66,
+ "confidence": 0,
+ "word": "year",
+ "punct": "year",
+ "index": 6422
+ },
+ {
+ "start": 3943.66,
+ "end": 3943.98,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 6423
+ },
+ {
+ "start": 3943.98,
+ "end": 3944.1,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 6424
+ },
+ {
+ "start": 3944.1,
+ "end": 3944.54,
+ "confidence": 0,
+ "word": "security",
+ "punct": "security",
+ "index": 6425
+ },
+ {
+ "start": 3944.54,
+ "end": 3944.66,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6426
+ },
+ {
+ "start": 3944.66,
+ "end": 3945.02,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 6427
+ },
+ {
+ "start": 3945.02,
+ "end": 3945.32,
+ "confidence": 0,
+ "word": "review",
+ "punct": "review",
+ "index": 6428
+ },
+ {
+ "start": 3945.32,
+ "end": 3946.02,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 6429
+ },
+ {
+ "start": 3946.02,
+ "end": 3946.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6430
+ },
+ {
+ "start": 3946.18,
+ "end": 3946.52,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company.",
+ "index": 6431
+ }
+ ],
+ "start": 3938.11
+ }
+ },
+ {
+ "key": "2rjk",
+ "text": "Speak for a moment about automated bots that spread disinformation.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3946.52,
+ "end": 3947.3,
+ "confidence": 0,
+ "word": "speak",
+ "punct": "Speak",
+ "index": 6432
+ },
+ {
+ "start": 3947.3,
+ "end": 3947.52,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 6433
+ },
+ {
+ "start": 3947.52,
+ "end": 3947.6,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 6434
+ },
+ {
+ "start": 3947.6,
+ "end": 3948.1,
+ "confidence": 0,
+ "word": "moment",
+ "punct": "moment",
+ "index": 6435
+ },
+ {
+ "start": 3948.1,
+ "end": 3948.88,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 6436
+ },
+ {
+ "start": 3948.88,
+ "end": 3949.74,
+ "confidence": 0,
+ "word": "automated",
+ "punct": "automated",
+ "index": 6437
+ },
+ {
+ "start": 3949.74,
+ "end": 3950.24,
+ "confidence": 0,
+ "word": "bots",
+ "punct": "bots",
+ "index": 6438
+ },
+ {
+ "start": 3950.24,
+ "end": 3950.62,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6439
+ },
+ {
+ "start": 3950.62,
+ "end": 3951.46,
+ "confidence": 0,
+ "word": "spread",
+ "punct": "spread",
+ "index": 6440
+ },
+ {
+ "start": 3951.46,
+ "end": 3952.94,
+ "confidence": 0,
+ "word": "disinformation",
+ "punct": "disinformation.",
+ "index": 6441
+ }
+ ],
+ "start": 3946.52
+ }
+ },
+ {
+ "key": "71mdq",
+ "text": "What are you doing to punish those who exploit your platform in that regard?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3952.94,
+ "end": 3953.44,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 6442
+ },
+ {
+ "start": 3953.44,
+ "end": 3953.58,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 6443
+ },
+ {
+ "start": 3953.58,
+ "end": 3953.74,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 6444
+ },
+ {
+ "start": 3953.74,
+ "end": 3954.24,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 6445
+ },
+ {
+ "start": 3954.24,
+ "end": 3954.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6446
+ },
+ {
+ "start": 3954.58,
+ "end": 3955.22,
+ "confidence": 0,
+ "word": "punish",
+ "punct": "punish",
+ "index": 6447
+ },
+ {
+ "start": 3955.22,
+ "end": 3955.62,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 6448
+ },
+ {
+ "start": 3955.62,
+ "end": 3955.86,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 6449
+ },
+ {
+ "start": 3955.86,
+ "end": 3956.78,
+ "confidence": 0,
+ "word": "exploit",
+ "punct": "exploit",
+ "index": 6450
+ },
+ {
+ "start": 3956.78,
+ "end": 3957.04,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 6451
+ },
+ {
+ "start": 3957.04,
+ "end": 3957.62,
+ "confidence": 0,
+ "word": "platform",
+ "punct": "platform",
+ "index": 6452
+ },
+ {
+ "start": 3957.62,
+ "end": 3957.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6453
+ },
+ {
+ "start": 3957.78,
+ "end": 3958.06,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6454
+ },
+ {
+ "start": 3958.06,
+ "end": 3959.6,
+ "confidence": 0,
+ "word": "regard",
+ "punct": "regard?",
+ "index": 6455
+ }
+ ],
+ "start": 3952.94
+ }
+ },
+ {
+ "key": "313v2",
+ "text": "Well you're not allowed to have a fake account on Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3959.6,
+ "end": 3961.04,
+ "confidence": 0,
+ "word": "well",
+ "punct": "Well",
+ "index": 6456
+ },
+ {
+ "start": 3961.04,
+ "end": 3961.68,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 6457
+ },
+ {
+ "start": 3961.68,
+ "end": 3961.88,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 6458
+ },
+ {
+ "start": 3961.88,
+ "end": 3962.18,
+ "confidence": 0,
+ "word": "allowed",
+ "punct": "allowed",
+ "index": 6459
+ },
+ {
+ "start": 3962.18,
+ "end": 3962.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6460
+ },
+ {
+ "start": 3962.28,
+ "end": 3962.52,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 6461
+ },
+ {
+ "start": 3962.52,
+ "end": 3962.56,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 6462
+ },
+ {
+ "start": 3962.56,
+ "end": 3962.84,
+ "confidence": 0,
+ "word": "fake",
+ "punct": "fake",
+ "index": 6463
+ },
+ {
+ "start": 3962.84,
+ "end": 3963.16,
+ "confidence": 0,
+ "word": "account",
+ "punct": "account",
+ "index": 6464
+ },
+ {
+ "start": 3963.16,
+ "end": 3963.32,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 6465
+ },
+ {
+ "start": 3963.32,
+ "end": 3963.8,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 6466
+ }
+ ],
+ "start": 3959.6
+ }
+ },
+ {
+ "key": "4n97a",
+ "text": "Your content has to be authentic.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3963.8,
+ "end": 3964.2,
+ "confidence": 0,
+ "word": "your",
+ "punct": "Your",
+ "index": 6467
+ },
+ {
+ "start": 3964.2,
+ "end": 3964.54,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 6468
+ },
+ {
+ "start": 3964.54,
+ "end": 3964.74,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 6469
+ },
+ {
+ "start": 3964.74,
+ "end": 3964.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6470
+ },
+ {
+ "start": 3964.88,
+ "end": 3964.98,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 6471
+ },
+ {
+ "start": 3964.98,
+ "end": 3965.42,
+ "confidence": 0,
+ "word": "authentic",
+ "punct": "authentic.",
+ "index": 6472
+ }
+ ],
+ "start": 3963.8
+ }
+ },
+ {
+ "key": "7nqna",
+ "text": "So we build technical tools to try to identify when people are creating fake accounts.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3965.42,
+ "end": 3966.24,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 6473
+ },
+ {
+ "start": 3966.24,
+ "end": 3966.86,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6474
+ },
+ {
+ "start": 3966.86,
+ "end": 3967.28,
+ "confidence": 0,
+ "word": "build",
+ "punct": "build",
+ "index": 6475
+ },
+ {
+ "start": 3967.28,
+ "end": 3967.8,
+ "confidence": 0,
+ "word": "technical",
+ "punct": "technical",
+ "index": 6476
+ },
+ {
+ "start": 3967.8,
+ "end": 3968.2,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 6477
+ },
+ {
+ "start": 3968.2,
+ "end": 3968.68,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6478
+ },
+ {
+ "start": 3968.68,
+ "end": 3968.86,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 6479
+ },
+ {
+ "start": 3968.86,
+ "end": 3969,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6480
+ },
+ {
+ "start": 3969,
+ "end": 3969.56,
+ "confidence": 0,
+ "word": "identify",
+ "punct": "identify",
+ "index": 6481
+ },
+ {
+ "start": 3969.56,
+ "end": 3969.84,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 6482
+ },
+ {
+ "start": 3969.84,
+ "end": 3970.1,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 6483
+ },
+ {
+ "start": 3970.1,
+ "end": 3970.24,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 6484
+ },
+ {
+ "start": 3970.24,
+ "end": 3970.62,
+ "confidence": 0,
+ "word": "creating",
+ "punct": "creating",
+ "index": 6485
+ },
+ {
+ "start": 3970.62,
+ "end": 3970.84,
+ "confidence": 0,
+ "word": "fake",
+ "punct": "fake",
+ "index": 6486
+ },
+ {
+ "start": 3970.84,
+ "end": 3971.22,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts.",
+ "index": 6487
+ }
+ ],
+ "start": 3965.42
+ }
+ },
+ {
+ "key": "erd23",
+ "text": "Especially large networks of fake accounts like the Russians have in order to remove all of that content after the 20 16 election.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3971.22,
+ "end": 3971.84,
+ "confidence": 0,
+ "word": "especially",
+ "punct": "Especially",
+ "index": 6488
+ },
+ {
+ "start": 3971.84,
+ "end": 3972.18,
+ "confidence": 0,
+ "word": "large",
+ "punct": "large",
+ "index": 6489
+ },
+ {
+ "start": 3972.18,
+ "end": 3972.54,
+ "confidence": 0,
+ "word": "networks",
+ "punct": "networks",
+ "index": 6490
+ },
+ {
+ "start": 3972.54,
+ "end": 3972.68,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6491
+ },
+ {
+ "start": 3972.68,
+ "end": 3972.9,
+ "confidence": 0,
+ "word": "fake",
+ "punct": "fake",
+ "index": 6492
+ },
+ {
+ "start": 3972.9,
+ "end": 3973.22,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts",
+ "index": 6493
+ },
+ {
+ "start": 3973.22,
+ "end": 3973.4,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 6494
+ },
+ {
+ "start": 3973.4,
+ "end": 3973.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6495
+ },
+ {
+ "start": 3973.5,
+ "end": 3973.86,
+ "confidence": 0,
+ "word": "russians",
+ "punct": "Russians",
+ "index": 6496
+ },
+ {
+ "start": 3973.86,
+ "end": 3974.12,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 6497
+ },
+ {
+ "start": 3974.12,
+ "end": 3974.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6498
+ },
+ {
+ "start": 3974.78,
+ "end": 3975.08,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 6499
+ },
+ {
+ "start": 3975.08,
+ "end": 3975.26,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6500
+ },
+ {
+ "start": 3975.26,
+ "end": 3975.74,
+ "confidence": 0,
+ "word": "remove",
+ "punct": "remove",
+ "index": 6501
+ },
+ {
+ "start": 3975.74,
+ "end": 3976.1,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 6502
+ },
+ {
+ "start": 3976.1,
+ "end": 3976.18,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6503
+ },
+ {
+ "start": 3976.18,
+ "end": 3976.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6504
+ },
+ {
+ "start": 3976.36,
+ "end": 3977.43,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 6505
+ },
+ {
+ "start": 3977.43,
+ "end": 3977.63,
+ "confidence": 0,
+ "word": "after",
+ "punct": "after",
+ "index": 6506
+ },
+ {
+ "start": 3977.63,
+ "end": 3977.79,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6507
+ },
+ {
+ "start": 3977.79,
+ "end": 3978.07,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 6508
+ },
+ {
+ "start": 3978.07,
+ "end": 3978.37,
+ "confidence": 0,
+ "word": "16",
+ "punct": "16",
+ "index": 6509
+ },
+ {
+ "start": 3978.37,
+ "end": 3978.73,
+ "confidence": 0,
+ "word": "election",
+ "punct": "election.",
+ "index": 6510
+ }
+ ],
+ "start": 3971.22
+ }
+ },
+ {
+ "key": "78f85",
+ "text": "Our top priority was protecting the integrity of other elections around the world.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3978.73,
+ "end": 3979.31,
+ "confidence": 0,
+ "word": "our",
+ "punct": "Our",
+ "index": 6511
+ },
+ {
+ "start": 3979.31,
+ "end": 3979.57,
+ "confidence": 0,
+ "word": "top",
+ "punct": "top",
+ "index": 6512
+ },
+ {
+ "start": 3979.57,
+ "end": 3979.97,
+ "confidence": 0,
+ "word": "priority",
+ "punct": "priority",
+ "index": 6513
+ },
+ {
+ "start": 3979.97,
+ "end": 3980.19,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 6514
+ },
+ {
+ "start": 3980.19,
+ "end": 3980.73,
+ "confidence": 0,
+ "word": "protecting",
+ "punct": "protecting",
+ "index": 6515
+ },
+ {
+ "start": 3980.73,
+ "end": 3980.85,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6516
+ },
+ {
+ "start": 3980.85,
+ "end": 3981.35,
+ "confidence": 0,
+ "word": "integrity",
+ "punct": "integrity",
+ "index": 6517
+ },
+ {
+ "start": 3981.35,
+ "end": 3981.89,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6518
+ },
+ {
+ "start": 3981.89,
+ "end": 3982.15,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 6519
+ },
+ {
+ "start": 3982.15,
+ "end": 3982.67,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections",
+ "index": 6520
+ },
+ {
+ "start": 3982.67,
+ "end": 3983.17,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 6521
+ },
+ {
+ "start": 3983.17,
+ "end": 3983.27,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6522
+ },
+ {
+ "start": 3983.27,
+ "end": 3983.55,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world.",
+ "index": 6523
+ }
+ ],
+ "start": 3978.73
+ }
+ },
+ {
+ "key": "3tk5v",
+ "text": "But at the same time we had a parallel effort to trace back to Russia.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3983.55,
+ "end": 3983.99,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 6524
+ },
+ {
+ "start": 3983.99,
+ "end": 3984.09,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 6525
+ },
+ {
+ "start": 3984.09,
+ "end": 3984.21,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6526
+ },
+ {
+ "start": 3984.21,
+ "end": 3984.43,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 6527
+ },
+ {
+ "start": 3984.43,
+ "end": 3984.77,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 6528
+ },
+ {
+ "start": 3984.77,
+ "end": 3985.01,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6529
+ },
+ {
+ "start": 3985.01,
+ "end": 3985.15,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 6530
+ },
+ {
+ "start": 3985.15,
+ "end": 3985.21,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 6531
+ },
+ {
+ "start": 3985.21,
+ "end": 3985.61,
+ "confidence": 0,
+ "word": "parallel",
+ "punct": "parallel",
+ "index": 6532
+ },
+ {
+ "start": 3985.61,
+ "end": 3985.87,
+ "confidence": 0,
+ "word": "effort",
+ "punct": "effort",
+ "index": 6533
+ },
+ {
+ "start": 3985.87,
+ "end": 3986.33,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6534
+ },
+ {
+ "start": 3986.33,
+ "end": 3986.67,
+ "confidence": 0,
+ "word": "trace",
+ "punct": "trace",
+ "index": 6535
+ },
+ {
+ "start": 3986.67,
+ "end": 3986.99,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 6536
+ },
+ {
+ "start": 3986.99,
+ "end": 3987.33,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6537
+ },
+ {
+ "start": 3987.33,
+ "end": 3987.87,
+ "confidence": 0,
+ "word": "russia",
+ "punct": "Russia.",
+ "index": 6538
+ }
+ ],
+ "start": 3983.55
+ }
+ },
+ {
+ "key": "6ef16",
+ "text": "The IRA activity, the Internet Research Agency activity.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3987.87,
+ "end": 3988.75,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 6539
+ },
+ {
+ "start": 3988.75,
+ "end": 3989.31,
+ "confidence": 0,
+ "word": "ira",
+ "punct": "IRA",
+ "index": 6540
+ },
+ {
+ "start": 3989.31,
+ "end": 3989.81,
+ "confidence": 0,
+ "word": "activity,",
+ "punct": "activity,",
+ "index": 6541
+ },
+ {
+ "start": 3989.81,
+ "end": 3989.97,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6542
+ },
+ {
+ "start": 3989.97,
+ "end": 3990.29,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 6543
+ },
+ {
+ "start": 3990.29,
+ "end": 3990.65,
+ "confidence": 0,
+ "word": "research",
+ "punct": "Research",
+ "index": 6544
+ },
+ {
+ "start": 3990.65,
+ "end": 3991.01,
+ "confidence": 0,
+ "word": "agency",
+ "punct": "Agency",
+ "index": 6545
+ },
+ {
+ "start": 3991.01,
+ "end": 3991.41,
+ "confidence": 0,
+ "word": "activity",
+ "punct": "activity.",
+ "index": 6546
+ }
+ ],
+ "start": 3987.87
+ }
+ },
+ {
+ "key": "b3um3",
+ "text": "That is the part of the Russian government that that did this activity in 20 16 and just last week we were able to determine that a number of Russian media organizations that were sanctioned by the Russian regulator were operated and controlled by this Internet Research agency.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 3991.41,
+ "end": 3991.55,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 6547
+ },
+ {
+ "start": 3991.55,
+ "end": 3991.65,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6548
+ },
+ {
+ "start": 3991.65,
+ "end": 3992.09,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6549
+ },
+ {
+ "start": 3992.09,
+ "end": 3992.27,
+ "confidence": 0,
+ "word": "part",
+ "punct": "part",
+ "index": 6550
+ },
+ {
+ "start": 3992.27,
+ "end": 3992.35,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6551
+ },
+ {
+ "start": 3992.35,
+ "end": 3992.45,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6552
+ },
+ {
+ "start": 3992.45,
+ "end": 3992.73,
+ "confidence": 0,
+ "word": "russian",
+ "punct": "Russian",
+ "index": 6553
+ },
+ {
+ "start": 3992.73,
+ "end": 3993.15,
+ "confidence": 0,
+ "word": "government",
+ "punct": "government",
+ "index": 6554
+ },
+ {
+ "start": 3993.15,
+ "end": 3993.82,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6555
+ },
+ {
+ "start": 3993.82,
+ "end": 3994.66,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6556
+ },
+ {
+ "start": 3994.66,
+ "end": 3995.3,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 6557
+ },
+ {
+ "start": 3995.3,
+ "end": 3995.46,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6558
+ },
+ {
+ "start": 3995.46,
+ "end": 3995.94,
+ "confidence": 0,
+ "word": "activity",
+ "punct": "activity",
+ "index": 6559
+ },
+ {
+ "start": 3995.94,
+ "end": 3996.2,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6560
+ },
+ {
+ "start": 3996.2,
+ "end": 3996.78,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 6561
+ },
+ {
+ "start": 3996.78,
+ "end": 3997.26,
+ "confidence": 0,
+ "word": "16",
+ "punct": "16",
+ "index": 6562
+ },
+ {
+ "start": 3997.26,
+ "end": 3997.8,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6563
+ },
+ {
+ "start": 3997.8,
+ "end": 3997.96,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 6564
+ },
+ {
+ "start": 3997.96,
+ "end": 3998.24,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 6565
+ },
+ {
+ "start": 3998.24,
+ "end": 3998.52,
+ "confidence": 0,
+ "word": "week",
+ "punct": "week",
+ "index": 6566
+ },
+ {
+ "start": 3998.52,
+ "end": 3999.36,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6567
+ },
+ {
+ "start": 3999.36,
+ "end": 3999.56,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 6568
+ },
+ {
+ "start": 3999.56,
+ "end": 3999.76,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 6569
+ },
+ {
+ "start": 3999.76,
+ "end": 3999.96,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6570
+ },
+ {
+ "start": 3999.96,
+ "end": 4000.98,
+ "confidence": 0,
+ "word": "determine",
+ "punct": "determine",
+ "index": 6571
+ },
+ {
+ "start": 4000.98,
+ "end": 4001.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6572
+ },
+ {
+ "start": 4001.58,
+ "end": 4002.14,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 6573
+ },
+ {
+ "start": 4002.14,
+ "end": 4002.54,
+ "confidence": 0,
+ "word": "number",
+ "punct": "number",
+ "index": 6574
+ },
+ {
+ "start": 4002.54,
+ "end": 4002.64,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6575
+ },
+ {
+ "start": 4002.64,
+ "end": 4003.06,
+ "confidence": 0,
+ "word": "russian",
+ "punct": "Russian",
+ "index": 6576
+ },
+ {
+ "start": 4003.06,
+ "end": 4003.46,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 6577
+ },
+ {
+ "start": 4003.46,
+ "end": 4004.2,
+ "confidence": 0,
+ "word": "organizations",
+ "punct": "organizations",
+ "index": 6578
+ },
+ {
+ "start": 4004.2,
+ "end": 4004.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6579
+ },
+ {
+ "start": 4004.36,
+ "end": 4004.5,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 6580
+ },
+ {
+ "start": 4004.5,
+ "end": 4004.9,
+ "confidence": 0,
+ "word": "sanctioned",
+ "punct": "sanctioned",
+ "index": 6581
+ },
+ {
+ "start": 4004.9,
+ "end": 4005.04,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 6582
+ },
+ {
+ "start": 4005.04,
+ "end": 4005.16,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6583
+ },
+ {
+ "start": 4005.16,
+ "end": 4005.42,
+ "confidence": 0,
+ "word": "russian",
+ "punct": "Russian",
+ "index": 6584
+ },
+ {
+ "start": 4005.42,
+ "end": 4005.92,
+ "confidence": 0,
+ "word": "regulator",
+ "punct": "regulator",
+ "index": 6585
+ },
+ {
+ "start": 4005.92,
+ "end": 4006.62,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 6586
+ },
+ {
+ "start": 4006.62,
+ "end": 4007.34,
+ "confidence": 0,
+ "word": "operated",
+ "punct": "operated",
+ "index": 6587
+ },
+ {
+ "start": 4007.34,
+ "end": 4007.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6588
+ },
+ {
+ "start": 4007.54,
+ "end": 4008.2,
+ "confidence": 0,
+ "word": "controlled",
+ "punct": "controlled",
+ "index": 6589
+ },
+ {
+ "start": 4008.2,
+ "end": 4008.76,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 6590
+ },
+ {
+ "start": 4008.76,
+ "end": 4009.28,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6591
+ },
+ {
+ "start": 4009.28,
+ "end": 4009.7,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 6592
+ },
+ {
+ "start": 4009.7,
+ "end": 4010.1,
+ "confidence": 0,
+ "word": "research",
+ "punct": "Research",
+ "index": 6593
+ },
+ {
+ "start": 4010.1,
+ "end": 4010.5,
+ "confidence": 0,
+ "word": "agency",
+ "punct": "agency.",
+ "index": 6594
+ }
+ ],
+ "start": 3991.41
+ }
+ },
+ {
+ "key": "dsl38",
+ "text": "So we took the step last week.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4010.5,
+ "end": 4010.76,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 6595
+ },
+ {
+ "start": 4010.76,
+ "end": 4011.12,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6596
+ },
+ {
+ "start": 4011.12,
+ "end": 4011.3,
+ "confidence": 0,
+ "word": "took",
+ "punct": "took",
+ "index": 6597
+ },
+ {
+ "start": 4011.3,
+ "end": 4011.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6598
+ },
+ {
+ "start": 4011.42,
+ "end": 4011.7,
+ "confidence": 0,
+ "word": "step",
+ "punct": "step",
+ "index": 6599
+ },
+ {
+ "start": 4011.7,
+ "end": 4011.92,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 6600
+ },
+ {
+ "start": 4011.92,
+ "end": 4012.1,
+ "confidence": 0,
+ "word": "week",
+ "punct": "week.",
+ "index": 6601
+ }
+ ],
+ "start": 4010.5
+ }
+ },
+ {
+ "key": "bn3e9",
+ "text": "The pretty big step for us of taking down sanctioned news organizations in Russia as part of an operation to remove 270 fake accounts and pages.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4012.1,
+ "end": 4012.43,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 6602
+ },
+ {
+ "start": 4012.43,
+ "end": 4012.71,
+ "confidence": 0,
+ "word": "pretty",
+ "punct": "pretty",
+ "index": 6603
+ },
+ {
+ "start": 4012.71,
+ "end": 4013.01,
+ "confidence": 0,
+ "word": "big",
+ "punct": "big",
+ "index": 6604
+ },
+ {
+ "start": 4013.01,
+ "end": 4013.21,
+ "confidence": 0,
+ "word": "step",
+ "punct": "step",
+ "index": 6605
+ },
+ {
+ "start": 4013.21,
+ "end": 4013.37,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 6606
+ },
+ {
+ "start": 4013.37,
+ "end": 4013.45,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 6607
+ },
+ {
+ "start": 4013.45,
+ "end": 4013.63,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6608
+ },
+ {
+ "start": 4013.63,
+ "end": 4013.99,
+ "confidence": 0,
+ "word": "taking",
+ "punct": "taking",
+ "index": 6609
+ },
+ {
+ "start": 4013.99,
+ "end": 4014.33,
+ "confidence": 0,
+ "word": "down",
+ "punct": "down",
+ "index": 6610
+ },
+ {
+ "start": 4014.33,
+ "end": 4015.43,
+ "confidence": 0,
+ "word": "sanctioned",
+ "punct": "sanctioned",
+ "index": 6611
+ },
+ {
+ "start": 4015.43,
+ "end": 4015.73,
+ "confidence": 0,
+ "word": "news",
+ "punct": "news",
+ "index": 6612
+ },
+ {
+ "start": 4015.73,
+ "end": 4016.43,
+ "confidence": 0,
+ "word": "organizations",
+ "punct": "organizations",
+ "index": 6613
+ },
+ {
+ "start": 4016.43,
+ "end": 4016.61,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6614
+ },
+ {
+ "start": 4016.61,
+ "end": 4016.97,
+ "confidence": 0,
+ "word": "russia",
+ "punct": "Russia",
+ "index": 6615
+ },
+ {
+ "start": 4016.97,
+ "end": 4017.45,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6616
+ },
+ {
+ "start": 4017.45,
+ "end": 4017.63,
+ "confidence": 0,
+ "word": "part",
+ "punct": "part",
+ "index": 6617
+ },
+ {
+ "start": 4017.63,
+ "end": 4017.71,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6618
+ },
+ {
+ "start": 4017.71,
+ "end": 4017.81,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 6619
+ },
+ {
+ "start": 4017.81,
+ "end": 4018.29,
+ "confidence": 0,
+ "word": "operation",
+ "punct": "operation",
+ "index": 6620
+ },
+ {
+ "start": 4018.29,
+ "end": 4018.41,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6621
+ },
+ {
+ "start": 4018.41,
+ "end": 4018.71,
+ "confidence": 0,
+ "word": "remove",
+ "punct": "remove",
+ "index": 6622
+ },
+ {
+ "start": 4018.71,
+ "end": 4020.13,
+ "confidence": 0,
+ "word": "270",
+ "punct": "270",
+ "index": 6623
+ },
+ {
+ "start": 4020.13,
+ "end": 4020.87,
+ "confidence": 0,
+ "word": "fake",
+ "punct": "fake",
+ "index": 6624
+ },
+ {
+ "start": 4020.87,
+ "end": 4021.19,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts",
+ "index": 6625
+ },
+ {
+ "start": 4021.19,
+ "end": 4021.33,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6626
+ },
+ {
+ "start": 4021.33,
+ "end": 4021.69,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages.",
+ "index": 6627
+ }
+ ],
+ "start": 4012.1
+ }
+ },
+ {
+ "key": "8bjs7",
+ "text": "Part of their broader network in Russia.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4021.69,
+ "end": 4021.87,
+ "confidence": 0,
+ "word": "part",
+ "punct": "Part",
+ "index": 6628
+ },
+ {
+ "start": 4021.87,
+ "end": 4021.93,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6629
+ },
+ {
+ "start": 4021.93,
+ "end": 4022.09,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 6630
+ },
+ {
+ "start": 4022.09,
+ "end": 4022.45,
+ "confidence": 0,
+ "word": "broader",
+ "punct": "broader",
+ "index": 6631
+ },
+ {
+ "start": 4022.45,
+ "end": 4022.77,
+ "confidence": 0,
+ "word": "network",
+ "punct": "network",
+ "index": 6632
+ },
+ {
+ "start": 4022.77,
+ "end": 4022.89,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6633
+ },
+ {
+ "start": 4022.89,
+ "end": 4023.88,
+ "confidence": 0,
+ "word": "russia",
+ "punct": "Russia.",
+ "index": 6634
+ }
+ ],
+ "start": 4021.69
+ }
+ },
+ {
+ "key": "6i6hq",
+ "text": "That was actually not targeting international interference as much as sorry.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4023.88,
+ "end": 4024.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 6635
+ },
+ {
+ "start": 4024.3,
+ "end": 4024.8,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 6636
+ },
+ {
+ "start": 4024.8,
+ "end": 4025.16,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 6637
+ },
+ {
+ "start": 4025.16,
+ "end": 4025.34,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 6638
+ },
+ {
+ "start": 4025.34,
+ "end": 4025.72,
+ "confidence": 0,
+ "word": "targeting",
+ "punct": "targeting",
+ "index": 6639
+ },
+ {
+ "start": 4025.72,
+ "end": 4026.26,
+ "confidence": 0,
+ "word": "international",
+ "punct": "international",
+ "index": 6640
+ },
+ {
+ "start": 4026.26,
+ "end": 4026.8,
+ "confidence": 0,
+ "word": "interference",
+ "punct": "interference",
+ "index": 6641
+ },
+ {
+ "start": 4026.8,
+ "end": 4026.94,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6642
+ },
+ {
+ "start": 4026.94,
+ "end": 4027.16,
+ "confidence": 0,
+ "word": "much",
+ "punct": "much",
+ "index": 6643
+ },
+ {
+ "start": 4027.16,
+ "end": 4027.32,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6644
+ },
+ {
+ "start": 4027.32,
+ "end": 4028.08,
+ "confidence": 0,
+ "word": "sorry",
+ "punct": "sorry.",
+ "index": 6645
+ }
+ ],
+ "start": 4023.88
+ }
+ },
+ {
+ "key": "b0b5k",
+ "text": "Let me correct that this is primarily targeting spreading misinformation in Russia itself as well as certain Russian speaking neighboring countries.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4028.08,
+ "end": 4028.38,
+ "confidence": 0,
+ "word": "let",
+ "punct": "Let",
+ "index": 6646
+ },
+ {
+ "start": 4028.38,
+ "end": 4028.46,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 6647
+ },
+ {
+ "start": 4028.46,
+ "end": 4028.68,
+ "confidence": 0,
+ "word": "correct",
+ "punct": "correct",
+ "index": 6648
+ },
+ {
+ "start": 4028.68,
+ "end": 4028.84,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6649
+ },
+ {
+ "start": 4028.84,
+ "end": 4029.26,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6650
+ },
+ {
+ "start": 4029.26,
+ "end": 4029.34,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6651
+ },
+ {
+ "start": 4029.34,
+ "end": 4029.92,
+ "confidence": 0,
+ "word": "primarily",
+ "punct": "primarily",
+ "index": 6652
+ },
+ {
+ "start": 4029.92,
+ "end": 4031.2,
+ "confidence": 0,
+ "word": "targeting",
+ "punct": "targeting",
+ "index": 6653
+ },
+ {
+ "start": 4031.2,
+ "end": 4031.46,
+ "confidence": 0,
+ "word": "spreading",
+ "punct": "spreading",
+ "index": 6654
+ },
+ {
+ "start": 4031.46,
+ "end": 4032.02,
+ "confidence": 0,
+ "word": "misinformation",
+ "punct": "misinformation",
+ "index": 6655
+ },
+ {
+ "start": 4032.02,
+ "end": 4032.24,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6656
+ },
+ {
+ "start": 4032.24,
+ "end": 4032.56,
+ "confidence": 0,
+ "word": "russia",
+ "punct": "Russia",
+ "index": 6657
+ },
+ {
+ "start": 4032.56,
+ "end": 4033.02,
+ "confidence": 0,
+ "word": "itself",
+ "punct": "itself",
+ "index": 6658
+ },
+ {
+ "start": 4033.02,
+ "end": 4033.26,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6659
+ },
+ {
+ "start": 4033.26,
+ "end": 4033.46,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well",
+ "index": 6660
+ },
+ {
+ "start": 4033.46,
+ "end": 4033.6,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6661
+ },
+ {
+ "start": 4033.6,
+ "end": 4033.94,
+ "confidence": 0,
+ "word": "certain",
+ "punct": "certain",
+ "index": 6662
+ },
+ {
+ "start": 4033.94,
+ "end": 4034.4,
+ "confidence": 0,
+ "word": "russian",
+ "punct": "Russian",
+ "index": 6663
+ },
+ {
+ "start": 4034.4,
+ "end": 4035.12,
+ "confidence": 0,
+ "word": "speaking",
+ "punct": "speaking",
+ "index": 6664
+ },
+ {
+ "start": 4035.12,
+ "end": 4035.54,
+ "confidence": 0,
+ "word": "neighboring",
+ "punct": "neighboring",
+ "index": 6665
+ },
+ {
+ "start": 4035.54,
+ "end": 4035.96,
+ "confidence": 0,
+ "word": "countries",
+ "punct": "countries.",
+ "index": 6666
+ }
+ ],
+ "start": 4028.08
+ }
+ },
+ {
+ "key": "fa6a8",
+ "text": "How many accounts of this type, have you taken down across in the IRA?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4035.96,
+ "end": 4036.22,
+ "confidence": 0,
+ "word": "how",
+ "punct": "How",
+ "index": 6667
+ },
+ {
+ "start": 4036.22,
+ "end": 4036.6,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 6668
+ },
+ {
+ "start": 4036.6,
+ "end": 4037.2,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts",
+ "index": 6669
+ },
+ {
+ "start": 4037.2,
+ "end": 4037.58,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6670
+ },
+ {
+ "start": 4037.58,
+ "end": 4037.86,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6671
+ },
+ {
+ "start": 4037.86,
+ "end": 4038.24,
+ "confidence": 0,
+ "word": "type,",
+ "punct": "type,",
+ "index": 6672
+ },
+ {
+ "start": 4038.24,
+ "end": 4038.58,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 6673
+ },
+ {
+ "start": 4038.58,
+ "end": 4038.78,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 6674
+ },
+ {
+ "start": 4038.78,
+ "end": 4039.18,
+ "confidence": 0,
+ "word": "taken",
+ "punct": "taken",
+ "index": 6675
+ },
+ {
+ "start": 4039.18,
+ "end": 4040.84,
+ "confidence": 0,
+ "word": "down",
+ "punct": "down",
+ "index": 6676
+ },
+ {
+ "start": 4040.84,
+ "end": 4041.84,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 6677
+ },
+ {
+ "start": 4041.84,
+ "end": 4042.2,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6678
+ },
+ {
+ "start": 4042.2,
+ "end": 4042.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6679
+ },
+ {
+ "start": 4042.32,
+ "end": 4042.76,
+ "confidence": 0,
+ "word": "ira",
+ "punct": "IRA?",
+ "index": 6680
+ }
+ ],
+ "start": 4035.96
+ }
+ },
+ {
+ "key": "8pv1j",
+ "text": "Specifically, the ones that we've pegged back to the IRA, we can identify the 470 in the American elections and the 270 that we specifically went after in Russia last week.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4042.76,
+ "end": 4043.48,
+ "confidence": 0,
+ "word": "specifically,",
+ "punct": "Specifically,",
+ "index": 6681
+ },
+ {
+ "start": 4043.48,
+ "end": 4044.06,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6682
+ },
+ {
+ "start": 4044.06,
+ "end": 4044.24,
+ "confidence": 0,
+ "word": "ones",
+ "punct": "ones",
+ "index": 6683
+ },
+ {
+ "start": 4044.24,
+ "end": 4044.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6684
+ },
+ {
+ "start": 4044.36,
+ "end": 4044.56,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 6685
+ },
+ {
+ "start": 4044.56,
+ "end": 4044.86,
+ "confidence": 0,
+ "word": "pegged",
+ "punct": "pegged",
+ "index": 6686
+ },
+ {
+ "start": 4044.86,
+ "end": 4045.06,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 6687
+ },
+ {
+ "start": 4045.06,
+ "end": 4045.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6688
+ },
+ {
+ "start": 4045.14,
+ "end": 4045.26,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6689
+ },
+ {
+ "start": 4045.26,
+ "end": 4046.44,
+ "confidence": 0,
+ "word": "ira,",
+ "punct": "IRA,",
+ "index": 6690
+ },
+ {
+ "start": 4046.44,
+ "end": 4047.3,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6691
+ },
+ {
+ "start": 4047.3,
+ "end": 4047.44,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 6692
+ },
+ {
+ "start": 4047.44,
+ "end": 4047.86,
+ "confidence": 0,
+ "word": "identify",
+ "punct": "identify",
+ "index": 6693
+ },
+ {
+ "start": 4047.86,
+ "end": 4048.04,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6694
+ },
+ {
+ "start": 4048.04,
+ "end": 4048.88,
+ "confidence": 0,
+ "word": "470",
+ "punct": "470",
+ "index": 6695
+ },
+ {
+ "start": 4048.88,
+ "end": 4049.26,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6696
+ },
+ {
+ "start": 4049.26,
+ "end": 4049.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6697
+ },
+ {
+ "start": 4049.36,
+ "end": 4049.66,
+ "confidence": 0,
+ "word": "american",
+ "punct": "American",
+ "index": 6698
+ },
+ {
+ "start": 4049.66,
+ "end": 4050.1,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections",
+ "index": 6699
+ },
+ {
+ "start": 4050.1,
+ "end": 4050.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6700
+ },
+ {
+ "start": 4050.62,
+ "end": 4050.74,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6701
+ },
+ {
+ "start": 4050.74,
+ "end": 4051.58,
+ "confidence": 0,
+ "word": "270",
+ "punct": "270",
+ "index": 6702
+ },
+ {
+ "start": 4051.58,
+ "end": 4051.78,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6703
+ },
+ {
+ "start": 4051.78,
+ "end": 4051.86,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6704
+ },
+ {
+ "start": 4051.86,
+ "end": 4052.44,
+ "confidence": 0,
+ "word": "specifically",
+ "punct": "specifically",
+ "index": 6705
+ },
+ {
+ "start": 4052.44,
+ "end": 4052.6,
+ "confidence": 0,
+ "word": "went",
+ "punct": "went",
+ "index": 6706
+ },
+ {
+ "start": 4052.6,
+ "end": 4052.88,
+ "confidence": 0,
+ "word": "after",
+ "punct": "after",
+ "index": 6707
+ },
+ {
+ "start": 4052.88,
+ "end": 4053.06,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6708
+ },
+ {
+ "start": 4053.06,
+ "end": 4053.34,
+ "confidence": 0,
+ "word": "russia",
+ "punct": "Russia",
+ "index": 6709
+ },
+ {
+ "start": 4053.34,
+ "end": 4053.6,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 6710
+ },
+ {
+ "start": 4053.6,
+ "end": 4053.84,
+ "confidence": 0,
+ "word": "week",
+ "punct": "week.",
+ "index": 6711
+ }
+ ],
+ "start": 4042.76
+ }
+ },
+ {
+ "key": "123c0",
+ "text": "There are many others that our systems catch which are more difficult to attribute specifically to Russian intelligence, but the number would be in the tens of thousands of fake accounts that we remove and I'm.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4053.84,
+ "end": 4054.68,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 6712
+ },
+ {
+ "start": 4054.68,
+ "end": 4054.82,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 6713
+ },
+ {
+ "start": 4054.82,
+ "end": 4055.02,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 6714
+ },
+ {
+ "start": 4055.02,
+ "end": 4055.34,
+ "confidence": 0,
+ "word": "others",
+ "punct": "others",
+ "index": 6715
+ },
+ {
+ "start": 4055.34,
+ "end": 4055.48,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6716
+ },
+ {
+ "start": 4055.48,
+ "end": 4055.62,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 6717
+ },
+ {
+ "start": 4055.62,
+ "end": 4056.04,
+ "confidence": 0,
+ "word": "systems",
+ "punct": "systems",
+ "index": 6718
+ },
+ {
+ "start": 4056.04,
+ "end": 4056.4,
+ "confidence": 0,
+ "word": "catch",
+ "punct": "catch",
+ "index": 6719
+ },
+ {
+ "start": 4056.4,
+ "end": 4057.08,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 6720
+ },
+ {
+ "start": 4057.08,
+ "end": 4057.84,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 6721
+ },
+ {
+ "start": 4057.84,
+ "end": 4058.84,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 6722
+ },
+ {
+ "start": 4058.84,
+ "end": 4059.18,
+ "confidence": 0,
+ "word": "difficult",
+ "punct": "difficult",
+ "index": 6723
+ },
+ {
+ "start": 4059.18,
+ "end": 4059.3,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6724
+ },
+ {
+ "start": 4059.3,
+ "end": 4060,
+ "confidence": 0,
+ "word": "attribute",
+ "punct": "attribute",
+ "index": 6725
+ },
+ {
+ "start": 4060,
+ "end": 4060.54,
+ "confidence": 0,
+ "word": "specifically",
+ "punct": "specifically",
+ "index": 6726
+ },
+ {
+ "start": 4060.54,
+ "end": 4060.76,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6727
+ },
+ {
+ "start": 4060.76,
+ "end": 4061.2,
+ "confidence": 0,
+ "word": "russian",
+ "punct": "Russian",
+ "index": 6728
+ },
+ {
+ "start": 4061.2,
+ "end": 4061.82,
+ "confidence": 0,
+ "word": "intelligence,",
+ "punct": "intelligence,",
+ "index": 6729
+ },
+ {
+ "start": 4061.82,
+ "end": 4062.66,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 6730
+ },
+ {
+ "start": 4062.66,
+ "end": 4062.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6731
+ },
+ {
+ "start": 4062.92,
+ "end": 4063.2,
+ "confidence": 0,
+ "word": "number",
+ "punct": "number",
+ "index": 6732
+ },
+ {
+ "start": 4063.2,
+ "end": 4063.46,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 6733
+ },
+ {
+ "start": 4063.46,
+ "end": 4063.58,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 6734
+ },
+ {
+ "start": 4063.58,
+ "end": 4063.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6735
+ },
+ {
+ "start": 4063.78,
+ "end": 4063.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6736
+ },
+ {
+ "start": 4063.92,
+ "end": 4064.2,
+ "confidence": 0,
+ "word": "tens",
+ "punct": "tens",
+ "index": 6737
+ },
+ {
+ "start": 4064.2,
+ "end": 4064.3,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6738
+ },
+ {
+ "start": 4064.3,
+ "end": 4064.72,
+ "confidence": 0,
+ "word": "thousands",
+ "punct": "thousands",
+ "index": 6739
+ },
+ {
+ "start": 4064.72,
+ "end": 4064.86,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6740
+ },
+ {
+ "start": 4064.86,
+ "end": 4065.06,
+ "confidence": 0,
+ "word": "fake",
+ "punct": "fake",
+ "index": 6741
+ },
+ {
+ "start": 4065.06,
+ "end": 4065.4,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts",
+ "index": 6742
+ },
+ {
+ "start": 4065.4,
+ "end": 4065.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6743
+ },
+ {
+ "start": 4065.58,
+ "end": 4065.68,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6744
+ },
+ {
+ "start": 4065.68,
+ "end": 4066.1,
+ "confidence": 0,
+ "word": "remove",
+ "punct": "remove",
+ "index": 6745
+ },
+ {
+ "start": 4066.1,
+ "end": 4066.9,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6746
+ },
+ {
+ "start": 4066.9,
+ "end": 4067.18,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm.",
+ "index": 6747
+ }
+ ],
+ "start": 4053.84
+ }
+ },
+ {
+ "key": "9up88",
+ "text": "Happy to have my team follow up with you on more information if that would be helpful, would you please?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4067.18,
+ "end": 4067.46,
+ "confidence": 0,
+ "word": "happy",
+ "punct": "Happy",
+ "index": 6748
+ },
+ {
+ "start": 4067.46,
+ "end": 4067.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6749
+ },
+ {
+ "start": 4067.58,
+ "end": 4067.74,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 6750
+ },
+ {
+ "start": 4067.74,
+ "end": 4067.84,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 6751
+ },
+ {
+ "start": 4067.84,
+ "end": 4068.02,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 6752
+ },
+ {
+ "start": 4068.02,
+ "end": 4068.32,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 6753
+ },
+ {
+ "start": 4068.32,
+ "end": 4068.42,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 6754
+ },
+ {
+ "start": 4068.42,
+ "end": 4068.56,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 6755
+ },
+ {
+ "start": 4068.56,
+ "end": 4068.66,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 6756
+ },
+ {
+ "start": 4068.66,
+ "end": 4068.78,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 6757
+ },
+ {
+ "start": 4068.78,
+ "end": 4068.92,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 6758
+ },
+ {
+ "start": 4068.92,
+ "end": 4069.36,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 6759
+ },
+ {
+ "start": 4069.36,
+ "end": 4069.46,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 6760
+ },
+ {
+ "start": 4069.46,
+ "end": 4069.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6761
+ },
+ {
+ "start": 4069.6,
+ "end": 4069.74,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 6762
+ },
+ {
+ "start": 4069.74,
+ "end": 4069.84,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 6763
+ },
+ {
+ "start": 4069.84,
+ "end": 4070.08,
+ "confidence": 0,
+ "word": "helpful,",
+ "punct": "helpful,",
+ "index": 6764
+ },
+ {
+ "start": 4070.08,
+ "end": 4070.36,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 6765
+ },
+ {
+ "start": 4070.36,
+ "end": 4070.5,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 6766
+ },
+ {
+ "start": 4070.5,
+ "end": 4070.9,
+ "confidence": 0,
+ "word": "please",
+ "punct": "please?",
+ "index": 6767
+ }
+ ],
+ "start": 4067.18
+ }
+ },
+ {
+ "key": "3qqjd",
+ "text": "I think this is very important.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4070.9,
+ "end": 4071.42,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 6768
+ },
+ {
+ "start": 4071.42,
+ "end": 4071.64,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 6769
+ },
+ {
+ "start": 4071.64,
+ "end": 4071.88,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6770
+ },
+ {
+ "start": 4071.88,
+ "end": 4072.06,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6771
+ },
+ {
+ "start": 4072.06,
+ "end": 4072.44,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 6772
+ },
+ {
+ "start": 4072.44,
+ "end": 4073.56,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important.",
+ "index": 6773
+ }
+ ],
+ "start": 4070.9
+ }
+ },
+ {
+ "key": "b2ktk",
+ "text": "If you knew in 2,015 that Cambridge analytic was using the information of Professor Cogens why didn't Facebook band Cambridge in 2,015 why'd you wait.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4073.56,
+ "end": 4074.22,
+ "confidence": 0,
+ "word": "if",
+ "punct": "If",
+ "index": 6774
+ },
+ {
+ "start": 4074.22,
+ "end": 4074.38,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 6775
+ },
+ {
+ "start": 4074.38,
+ "end": 4074.66,
+ "confidence": 0,
+ "word": "knew",
+ "punct": "knew",
+ "index": 6776
+ },
+ {
+ "start": 4074.66,
+ "end": 4074.84,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6777
+ },
+ {
+ "start": 4074.84,
+ "end": 4076.34,
+ "confidence": 0,
+ "word": "2,015",
+ "punct": "2,015",
+ "index": 6778
+ },
+ {
+ "start": 4076.34,
+ "end": 4076.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6779
+ },
+ {
+ "start": 4076.7,
+ "end": 4077.28,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 6780
+ },
+ {
+ "start": 4077.28,
+ "end": 4078.04,
+ "confidence": 0,
+ "word": "analytic",
+ "punct": "analytic",
+ "index": 6781
+ },
+ {
+ "start": 4078.04,
+ "end": 4078.92,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 6782
+ },
+ {
+ "start": 4078.92,
+ "end": 4079.42,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 6783
+ },
+ {
+ "start": 4079.42,
+ "end": 4079.6,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6784
+ },
+ {
+ "start": 4079.6,
+ "end": 4080.54,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 6785
+ },
+ {
+ "start": 4080.54,
+ "end": 4080.74,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6786
+ },
+ {
+ "start": 4080.74,
+ "end": 4081.38,
+ "confidence": 0,
+ "word": "professor",
+ "punct": "Professor",
+ "index": 6787
+ },
+ {
+ "start": 4081.38,
+ "end": 4081.96,
+ "confidence": 0,
+ "word": "cogens",
+ "punct": "Cogens",
+ "index": 6788
+ },
+ {
+ "start": 4081.96,
+ "end": 4082.82,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 6789
+ },
+ {
+ "start": 4082.82,
+ "end": 4083.18,
+ "confidence": 0,
+ "word": "didn't",
+ "punct": "didn't",
+ "index": 6790
+ },
+ {
+ "start": 4083.18,
+ "end": 4084,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 6791
+ },
+ {
+ "start": 4084,
+ "end": 4084.82,
+ "confidence": 0,
+ "word": "band",
+ "punct": "band",
+ "index": 6792
+ },
+ {
+ "start": 4084.82,
+ "end": 4085.46,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 6793
+ },
+ {
+ "start": 4085.46,
+ "end": 4085.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6794
+ },
+ {
+ "start": 4085.78,
+ "end": 4087.22,
+ "confidence": 0,
+ "word": "2,015",
+ "punct": "2,015",
+ "index": 6795
+ },
+ {
+ "start": 4087.22,
+ "end": 4088.12,
+ "confidence": 0,
+ "word": "why'd",
+ "punct": "why'd",
+ "index": 6796
+ },
+ {
+ "start": 4088.12,
+ "end": 4088.28,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 6797
+ },
+ {
+ "start": 4088.28,
+ "end": 4088.64,
+ "confidence": 0,
+ "word": "wait",
+ "punct": "wait.",
+ "index": 6798
+ }
+ ],
+ "start": 4073.56
+ }
+ },
+ {
+ "key": "9a6n",
+ "text": "So that's a great question.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4088.64,
+ "end": 4089.6,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 6799
+ },
+ {
+ "start": 4089.6,
+ "end": 4089.8,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 6800
+ },
+ {
+ "start": 4089.8,
+ "end": 4090.22,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 6801
+ },
+ {
+ "start": 4090.22,
+ "end": 4090.5,
+ "confidence": 0,
+ "word": "great",
+ "punct": "great",
+ "index": 6802
+ },
+ {
+ "start": 4090.5,
+ "end": 4092.08,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question.",
+ "index": 6803
+ }
+ ],
+ "start": 4088.64
+ }
+ },
+ {
+ "key": "55vup",
+ "text": "Cambridge Analytica wasn't using our services in 20 15 as far as we can tell.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4092.08,
+ "end": 4093.04,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 6804
+ },
+ {
+ "start": 4093.04,
+ "end": 4093.42,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 6805
+ },
+ {
+ "start": 4093.42,
+ "end": 4093.7,
+ "confidence": 0,
+ "word": "wasn't",
+ "punct": "wasn't",
+ "index": 6806
+ },
+ {
+ "start": 4093.7,
+ "end": 4094,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 6807
+ },
+ {
+ "start": 4094,
+ "end": 4094.16,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 6808
+ },
+ {
+ "start": 4094.16,
+ "end": 4094.64,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 6809
+ },
+ {
+ "start": 4094.64,
+ "end": 4094.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6810
+ },
+ {
+ "start": 4094.78,
+ "end": 4095.18,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 6811
+ },
+ {
+ "start": 4095.18,
+ "end": 4095.58,
+ "confidence": 0,
+ "word": "15",
+ "punct": "15",
+ "index": 6812
+ },
+ {
+ "start": 4095.58,
+ "end": 4095.7,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6813
+ },
+ {
+ "start": 4095.7,
+ "end": 4095.86,
+ "confidence": 0,
+ "word": "far",
+ "punct": "far",
+ "index": 6814
+ },
+ {
+ "start": 4095.86,
+ "end": 4095.98,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6815
+ },
+ {
+ "start": 4095.98,
+ "end": 4096.12,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6816
+ },
+ {
+ "start": 4096.12,
+ "end": 4096.28,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 6817
+ },
+ {
+ "start": 4096.28,
+ "end": 4096.52,
+ "confidence": 0,
+ "word": "tell",
+ "punct": "tell.",
+ "index": 6818
+ }
+ ],
+ "start": 4092.08
+ }
+ },
+ {
+ "key": "grme",
+ "text": "So this is clearly one of the questions that I asked our team.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4096.52,
+ "end": 4097.3,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 6819
+ },
+ {
+ "start": 4097.3,
+ "end": 4097.94,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6820
+ },
+ {
+ "start": 4097.94,
+ "end": 4098.06,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6821
+ },
+ {
+ "start": 4098.06,
+ "end": 4098.86,
+ "confidence": 0,
+ "word": "clearly",
+ "punct": "clearly",
+ "index": 6822
+ },
+ {
+ "start": 4098.86,
+ "end": 4098.98,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 6823
+ },
+ {
+ "start": 4098.98,
+ "end": 4099.06,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6824
+ },
+ {
+ "start": 4099.06,
+ "end": 4099.14,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6825
+ },
+ {
+ "start": 4099.14,
+ "end": 4099.42,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 6826
+ },
+ {
+ "start": 4099.42,
+ "end": 4099.56,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6827
+ },
+ {
+ "start": 4099.56,
+ "end": 4099.62,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 6828
+ },
+ {
+ "start": 4099.62,
+ "end": 4099.82,
+ "confidence": 0,
+ "word": "asked",
+ "punct": "asked",
+ "index": 6829
+ },
+ {
+ "start": 4099.82,
+ "end": 4099.96,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 6830
+ },
+ {
+ "start": 4099.96,
+ "end": 4100.16,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team.",
+ "index": 6831
+ }
+ ],
+ "start": 4096.52
+ }
+ },
+ {
+ "key": "1s5v6",
+ "text": "As soon as I learned about this is why did we wait until we found out about the reports last month to to ban them it's because as of the time that we learned about their activity and 20 15 they weren't an advertiser, they weren't running pages.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4100.16,
+ "end": 4100.28,
+ "confidence": 0,
+ "word": "as",
+ "punct": "As",
+ "index": 6832
+ },
+ {
+ "start": 4100.28,
+ "end": 4100.44,
+ "confidence": 0,
+ "word": "soon",
+ "punct": "soon",
+ "index": 6833
+ },
+ {
+ "start": 4100.44,
+ "end": 4100.52,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6834
+ },
+ {
+ "start": 4100.52,
+ "end": 4100.6,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 6835
+ },
+ {
+ "start": 4100.6,
+ "end": 4100.82,
+ "confidence": 0,
+ "word": "learned",
+ "punct": "learned",
+ "index": 6836
+ },
+ {
+ "start": 4100.82,
+ "end": 4100.98,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 6837
+ },
+ {
+ "start": 4100.98,
+ "end": 4101.12,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6838
+ },
+ {
+ "start": 4101.12,
+ "end": 4101.26,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6839
+ },
+ {
+ "start": 4101.26,
+ "end": 4101.7,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 6840
+ },
+ {
+ "start": 4101.7,
+ "end": 4101.84,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 6841
+ },
+ {
+ "start": 4101.84,
+ "end": 4101.96,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6842
+ },
+ {
+ "start": 4101.96,
+ "end": 4102.14,
+ "confidence": 0,
+ "word": "wait",
+ "punct": "wait",
+ "index": 6843
+ },
+ {
+ "start": 4102.14,
+ "end": 4102.5,
+ "confidence": 0,
+ "word": "until",
+ "punct": "until",
+ "index": 6844
+ },
+ {
+ "start": 4102.5,
+ "end": 4102.92,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6845
+ },
+ {
+ "start": 4102.92,
+ "end": 4103.1,
+ "confidence": 0,
+ "word": "found",
+ "punct": "found",
+ "index": 6846
+ },
+ {
+ "start": 4103.1,
+ "end": 4103.22,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 6847
+ },
+ {
+ "start": 4103.22,
+ "end": 4103.4,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 6848
+ },
+ {
+ "start": 4103.4,
+ "end": 4103.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6849
+ },
+ {
+ "start": 4103.52,
+ "end": 4103.88,
+ "confidence": 0,
+ "word": "reports",
+ "punct": "reports",
+ "index": 6850
+ },
+ {
+ "start": 4103.88,
+ "end": 4104.18,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 6851
+ },
+ {
+ "start": 4104.18,
+ "end": 4104.46,
+ "confidence": 0,
+ "word": "month",
+ "punct": "month",
+ "index": 6852
+ },
+ {
+ "start": 4104.46,
+ "end": 4104.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6853
+ },
+ {
+ "start": 4104.86,
+ "end": 4105.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6854
+ },
+ {
+ "start": 4105.38,
+ "end": 4105.64,
+ "confidence": 0,
+ "word": "ban",
+ "punct": "ban",
+ "index": 6855
+ },
+ {
+ "start": 4105.64,
+ "end": 4105.82,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 6856
+ },
+ {
+ "start": 4105.82,
+ "end": 4106.42,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 6857
+ },
+ {
+ "start": 4106.42,
+ "end": 4106.76,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 6858
+ },
+ {
+ "start": 4106.76,
+ "end": 4107.32,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 6859
+ },
+ {
+ "start": 4107.32,
+ "end": 4107.42,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6860
+ },
+ {
+ "start": 4107.42,
+ "end": 4107.54,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6861
+ },
+ {
+ "start": 4107.54,
+ "end": 4107.76,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 6862
+ },
+ {
+ "start": 4107.76,
+ "end": 4107.9,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6863
+ },
+ {
+ "start": 4107.9,
+ "end": 4107.98,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6864
+ },
+ {
+ "start": 4107.98,
+ "end": 4108.3,
+ "confidence": 0,
+ "word": "learned",
+ "punct": "learned",
+ "index": 6865
+ },
+ {
+ "start": 4108.3,
+ "end": 4108.48,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 6866
+ },
+ {
+ "start": 4108.48,
+ "end": 4108.68,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 6867
+ },
+ {
+ "start": 4108.68,
+ "end": 4109.06,
+ "confidence": 0,
+ "word": "activity",
+ "punct": "activity",
+ "index": 6868
+ },
+ {
+ "start": 4109.06,
+ "end": 4109.18,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6869
+ },
+ {
+ "start": 4109.18,
+ "end": 4109.42,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 6870
+ },
+ {
+ "start": 4109.42,
+ "end": 4109.84,
+ "confidence": 0,
+ "word": "15",
+ "punct": "15",
+ "index": 6871
+ },
+ {
+ "start": 4109.84,
+ "end": 4110.22,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 6872
+ },
+ {
+ "start": 4110.22,
+ "end": 4110.46,
+ "confidence": 0,
+ "word": "weren't",
+ "punct": "weren't",
+ "index": 6873
+ },
+ {
+ "start": 4110.46,
+ "end": 4110.56,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 6874
+ },
+ {
+ "start": 4110.56,
+ "end": 4111.16,
+ "confidence": 0,
+ "word": "advertiser,",
+ "punct": "advertiser,",
+ "index": 6875
+ },
+ {
+ "start": 4111.16,
+ "end": 4111.34,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 6876
+ },
+ {
+ "start": 4111.34,
+ "end": 4111.54,
+ "confidence": 0,
+ "word": "weren't",
+ "punct": "weren't",
+ "index": 6877
+ },
+ {
+ "start": 4111.54,
+ "end": 4111.8,
+ "confidence": 0,
+ "word": "running",
+ "punct": "running",
+ "index": 6878
+ },
+ {
+ "start": 4111.8,
+ "end": 4112.22,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages.",
+ "index": 6879
+ }
+ ],
+ "start": 4100.16
+ }
+ },
+ {
+ "key": "c4n5b",
+ "text": "So we actually had nothing to ban.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4112.22,
+ "end": 4112.92,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 6880
+ },
+ {
+ "start": 4112.92,
+ "end": 4113.08,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 6881
+ },
+ {
+ "start": 4113.08,
+ "end": 4113.34,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 6882
+ },
+ {
+ "start": 4113.34,
+ "end": 4113.48,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 6883
+ },
+ {
+ "start": 4113.48,
+ "end": 4113.78,
+ "confidence": 0,
+ "word": "nothing",
+ "punct": "nothing",
+ "index": 6884
+ },
+ {
+ "start": 4113.78,
+ "end": 4113.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 6885
+ },
+ {
+ "start": 4113.9,
+ "end": 4114.64,
+ "confidence": 0,
+ "word": "ban",
+ "punct": "ban.",
+ "index": 6886
+ }
+ ],
+ "start": 4112.22
+ }
+ },
+ {
+ "key": "7u15f",
+ "text": "Thank you, thank you, Mr Chairman.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4114.64,
+ "end": 4115.32,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 6887
+ },
+ {
+ "start": 4115.32,
+ "end": 4115.48,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 6888
+ },
+ {
+ "start": 4115.48,
+ "end": 4116.1,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 6889
+ },
+ {
+ "start": 4116.1,
+ "end": 4116.22,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 6890
+ },
+ {
+ "start": 4116.22,
+ "end": 4116.52,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 6891
+ },
+ {
+ "start": 4116.52,
+ "end": 4116.84,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman.",
+ "index": 6892
+ }
+ ],
+ "start": 4114.64
+ }
+ },
+ {
+ "key": "alkos",
+ "text": "Thank you, Senator Feinstein.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4116.84,
+ "end": 4117.22,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 6893
+ },
+ {
+ "start": 4117.22,
+ "end": 4117.36,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 6894
+ },
+ {
+ "start": 4117.36,
+ "end": 4117.82,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 6895
+ },
+ {
+ "start": 4117.82,
+ "end": 4118.3,
+ "confidence": 0,
+ "word": "feinstein",
+ "punct": "Feinstein.",
+ "index": 6896
+ }
+ ],
+ "start": 4116.84
+ }
+ },
+ {
+ "key": "di1iq",
+ "text": "Now, Senator Hatch.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4118.3,
+ "end": 4118.5,
+ "confidence": 0,
+ "word": "now,",
+ "punct": "Now,",
+ "index": 6897
+ },
+ {
+ "start": 4118.5,
+ "end": 4118.88,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 6898
+ },
+ {
+ "start": 4118.88,
+ "end": 4120.62,
+ "confidence": 0,
+ "word": "hatch",
+ "punct": "Hatch.",
+ "index": 6899
+ }
+ ],
+ "start": 4118.3
+ }
+ },
+ {
+ "key": "8vecb",
+ "text": "Well, this is the most intense public scrutiny I've seen for a tech related hearing since the Microsoft hearing that I shared back in the late 19 nineties.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4120.62,
+ "end": 4122.02,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "Well,",
+ "index": 6900
+ },
+ {
+ "start": 4122.02,
+ "end": 4123.02,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 6901
+ },
+ {
+ "start": 4123.02,
+ "end": 4124.78,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 6902
+ },
+ {
+ "start": 4124.78,
+ "end": 4125.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6903
+ },
+ {
+ "start": 4125.2,
+ "end": 4125.4,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 6904
+ },
+ {
+ "start": 4125.4,
+ "end": 4125.86,
+ "confidence": 0,
+ "word": "intense",
+ "punct": "intense",
+ "index": 6905
+ },
+ {
+ "start": 4125.86,
+ "end": 4126.24,
+ "confidence": 0,
+ "word": "public",
+ "punct": "public",
+ "index": 6906
+ },
+ {
+ "start": 4126.24,
+ "end": 4126.7,
+ "confidence": 0,
+ "word": "scrutiny",
+ "punct": "scrutiny",
+ "index": 6907
+ },
+ {
+ "start": 4126.7,
+ "end": 4126.9,
+ "confidence": 0,
+ "word": "i've",
+ "punct": "I've",
+ "index": 6908
+ },
+ {
+ "start": 4126.9,
+ "end": 4127.26,
+ "confidence": 0,
+ "word": "seen",
+ "punct": "seen",
+ "index": 6909
+ },
+ {
+ "start": 4127.26,
+ "end": 4128.44,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 6910
+ },
+ {
+ "start": 4128.44,
+ "end": 4128.48,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 6911
+ },
+ {
+ "start": 4128.48,
+ "end": 4128.72,
+ "confidence": 0,
+ "word": "tech",
+ "punct": "tech",
+ "index": 6912
+ },
+ {
+ "start": 4128.72,
+ "end": 4129.12,
+ "confidence": 0,
+ "word": "related",
+ "punct": "related",
+ "index": 6913
+ },
+ {
+ "start": 4129.12,
+ "end": 4129.42,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 6914
+ },
+ {
+ "start": 4129.42,
+ "end": 4129.72,
+ "confidence": 0,
+ "word": "since",
+ "punct": "since",
+ "index": 6915
+ },
+ {
+ "start": 4129.72,
+ "end": 4129.86,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6916
+ },
+ {
+ "start": 4129.86,
+ "end": 4130.46,
+ "confidence": 0,
+ "word": "microsoft",
+ "punct": "Microsoft",
+ "index": 6917
+ },
+ {
+ "start": 4130.46,
+ "end": 4130.82,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 6918
+ },
+ {
+ "start": 4130.82,
+ "end": 4131.62,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6919
+ },
+ {
+ "start": 4131.62,
+ "end": 4131.8,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 6920
+ },
+ {
+ "start": 4131.8,
+ "end": 4132.1,
+ "confidence": 0,
+ "word": "shared",
+ "punct": "shared",
+ "index": 6921
+ },
+ {
+ "start": 4132.1,
+ "end": 4132.32,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 6922
+ },
+ {
+ "start": 4132.32,
+ "end": 4132.46,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 6923
+ },
+ {
+ "start": 4132.46,
+ "end": 4132.58,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6924
+ },
+ {
+ "start": 4132.58,
+ "end": 4132.76,
+ "confidence": 0,
+ "word": "late",
+ "punct": "late",
+ "index": 6925
+ },
+ {
+ "start": 4132.76,
+ "end": 4133.12,
+ "confidence": 0,
+ "word": "19",
+ "punct": "19",
+ "index": 6926
+ },
+ {
+ "start": 4133.12,
+ "end": 4133.68,
+ "confidence": 0,
+ "word": "nineties",
+ "punct": "nineties.",
+ "index": 6927
+ }
+ ],
+ "start": 4120.62
+ }
+ },
+ {
+ "key": "dmjkr",
+ "text": "The stories about Cambridge analytic and data mining on social media have raised serious concerns about consumer privacy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4133.68,
+ "end": 4135.01,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 6928
+ },
+ {
+ "start": 4135.01,
+ "end": 4135.45,
+ "confidence": 0,
+ "word": "stories",
+ "punct": "stories",
+ "index": 6929
+ },
+ {
+ "start": 4135.45,
+ "end": 4135.73,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 6930
+ },
+ {
+ "start": 4135.73,
+ "end": 4136.21,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 6931
+ },
+ {
+ "start": 4136.21,
+ "end": 4137.01,
+ "confidence": 0,
+ "word": "analytic",
+ "punct": "analytic",
+ "index": 6932
+ },
+ {
+ "start": 4137.01,
+ "end": 4138.11,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6933
+ },
+ {
+ "start": 4138.11,
+ "end": 4138.43,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 6934
+ },
+ {
+ "start": 4138.43,
+ "end": 4138.73,
+ "confidence": 0,
+ "word": "mining",
+ "punct": "mining",
+ "index": 6935
+ },
+ {
+ "start": 4138.73,
+ "end": 4138.87,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 6936
+ },
+ {
+ "start": 4138.87,
+ "end": 4139.23,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 6937
+ },
+ {
+ "start": 4139.23,
+ "end": 4139.49,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 6938
+ },
+ {
+ "start": 4139.49,
+ "end": 4139.63,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 6939
+ },
+ {
+ "start": 4139.63,
+ "end": 4139.89,
+ "confidence": 0,
+ "word": "raised",
+ "punct": "raised",
+ "index": 6940
+ },
+ {
+ "start": 4139.89,
+ "end": 4140.23,
+ "confidence": 0,
+ "word": "serious",
+ "punct": "serious",
+ "index": 6941
+ },
+ {
+ "start": 4140.23,
+ "end": 4140.67,
+ "confidence": 0,
+ "word": "concerns",
+ "punct": "concerns",
+ "index": 6942
+ },
+ {
+ "start": 4140.67,
+ "end": 4140.93,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 6943
+ },
+ {
+ "start": 4140.93,
+ "end": 4141.49,
+ "confidence": 0,
+ "word": "consumer",
+ "punct": "consumer",
+ "index": 6944
+ },
+ {
+ "start": 4141.49,
+ "end": 4142.13,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy.",
+ "index": 6945
+ }
+ ],
+ "start": 4133.68
+ }
+ },
+ {
+ "key": "bdh0n",
+ "text": "And naturally I know you understand that at the same time, these stories touch on the very foundation of the Internet economy and the way the websites that drive our Internet economy make money some of professed themselves shocked shocked.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4142.13,
+ "end": 4143.17,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 6946
+ },
+ {
+ "start": 4143.17,
+ "end": 4143.69,
+ "confidence": 0,
+ "word": "naturally",
+ "punct": "naturally",
+ "index": 6947
+ },
+ {
+ "start": 4143.69,
+ "end": 4143.91,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 6948
+ },
+ {
+ "start": 4143.91,
+ "end": 4144.07,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 6949
+ },
+ {
+ "start": 4144.07,
+ "end": 4144.21,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 6950
+ },
+ {
+ "start": 4144.21,
+ "end": 4144.79,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 6951
+ },
+ {
+ "start": 4144.79,
+ "end": 4145.03,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6952
+ },
+ {
+ "start": 4145.03,
+ "end": 4145.15,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 6953
+ },
+ {
+ "start": 4145.15,
+ "end": 4145.33,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6954
+ },
+ {
+ "start": 4145.33,
+ "end": 4145.57,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 6955
+ },
+ {
+ "start": 4145.57,
+ "end": 4145.79,
+ "confidence": 0,
+ "word": "time,",
+ "punct": "time,",
+ "index": 6956
+ },
+ {
+ "start": 4145.79,
+ "end": 4146.05,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 6957
+ },
+ {
+ "start": 4146.05,
+ "end": 4146.37,
+ "confidence": 0,
+ "word": "stories",
+ "punct": "stories",
+ "index": 6958
+ },
+ {
+ "start": 4146.37,
+ "end": 4146.61,
+ "confidence": 0,
+ "word": "touch",
+ "punct": "touch",
+ "index": 6959
+ },
+ {
+ "start": 4146.61,
+ "end": 4146.75,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 6960
+ },
+ {
+ "start": 4146.75,
+ "end": 4146.87,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6961
+ },
+ {
+ "start": 4146.87,
+ "end": 4147.09,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 6962
+ },
+ {
+ "start": 4147.09,
+ "end": 4147.65,
+ "confidence": 0,
+ "word": "foundation",
+ "punct": "foundation",
+ "index": 6963
+ },
+ {
+ "start": 4147.65,
+ "end": 4147.77,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6964
+ },
+ {
+ "start": 4147.77,
+ "end": 4147.87,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6965
+ },
+ {
+ "start": 4147.87,
+ "end": 4148.19,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 6966
+ },
+ {
+ "start": 4148.19,
+ "end": 4149.4,
+ "confidence": 0,
+ "word": "economy",
+ "punct": "economy",
+ "index": 6967
+ },
+ {
+ "start": 4149.4,
+ "end": 4150.24,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 6968
+ },
+ {
+ "start": 4150.24,
+ "end": 4150.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6969
+ },
+ {
+ "start": 4150.98,
+ "end": 4151.32,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 6970
+ },
+ {
+ "start": 4151.32,
+ "end": 4151.84,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 6971
+ },
+ {
+ "start": 4151.84,
+ "end": 4152.4,
+ "confidence": 0,
+ "word": "websites",
+ "punct": "websites",
+ "index": 6972
+ },
+ {
+ "start": 4152.4,
+ "end": 4153.48,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 6973
+ },
+ {
+ "start": 4153.48,
+ "end": 4153.76,
+ "confidence": 0,
+ "word": "drive",
+ "punct": "drive",
+ "index": 6974
+ },
+ {
+ "start": 4153.76,
+ "end": 4153.96,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 6975
+ },
+ {
+ "start": 4153.96,
+ "end": 4154.5,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 6976
+ },
+ {
+ "start": 4154.5,
+ "end": 4154.98,
+ "confidence": 0,
+ "word": "economy",
+ "punct": "economy",
+ "index": 6977
+ },
+ {
+ "start": 4154.98,
+ "end": 4155.24,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 6978
+ },
+ {
+ "start": 4155.24,
+ "end": 4155.54,
+ "confidence": 0,
+ "word": "money",
+ "punct": "money",
+ "index": 6979
+ },
+ {
+ "start": 4155.54,
+ "end": 4156.62,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 6980
+ },
+ {
+ "start": 4156.62,
+ "end": 4156.78,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6981
+ },
+ {
+ "start": 4156.78,
+ "end": 4157.16,
+ "confidence": 0,
+ "word": "professed",
+ "punct": "professed",
+ "index": 6982
+ },
+ {
+ "start": 4157.16,
+ "end": 4157.58,
+ "confidence": 0,
+ "word": "themselves",
+ "punct": "themselves",
+ "index": 6983
+ },
+ {
+ "start": 4157.58,
+ "end": 4158.08,
+ "confidence": 0,
+ "word": "shocked",
+ "punct": "shocked",
+ "index": 6984
+ },
+ {
+ "start": 4158.08,
+ "end": 4159.68,
+ "confidence": 0,
+ "word": "shocked",
+ "punct": "shocked.",
+ "index": 6985
+ }
+ ],
+ "start": 4142.13
+ }
+ },
+ {
+ "key": "9291p",
+ "text": "The companies like Facebook Google user data with advertisers.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4159.68,
+ "end": 4160.66,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 6986
+ },
+ {
+ "start": 4160.66,
+ "end": 4161.06,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies",
+ "index": 6987
+ },
+ {
+ "start": 4161.06,
+ "end": 4161.24,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 6988
+ },
+ {
+ "start": 4161.24,
+ "end": 4161.81,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 6989
+ },
+ {
+ "start": 4161.81,
+ "end": 4162.29,
+ "confidence": 0,
+ "word": "google",
+ "punct": "Google",
+ "index": 6990
+ },
+ {
+ "start": 4162.29,
+ "end": 4163.11,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 6991
+ },
+ {
+ "start": 4163.11,
+ "end": 4163.39,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 6992
+ },
+ {
+ "start": 4163.39,
+ "end": 4163.65,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 6993
+ },
+ {
+ "start": 4163.65,
+ "end": 4164.45,
+ "confidence": 0,
+ "word": "advertisers",
+ "punct": "advertisers.",
+ "index": 6994
+ }
+ ],
+ "start": 4159.68
+ }
+ },
+ {
+ "key": "36h3e",
+ "text": "Did any of these individuals ever stopped?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4164.45,
+ "end": 4165.53,
+ "confidence": 0,
+ "word": "did",
+ "punct": "Did",
+ "index": 6995
+ },
+ {
+ "start": 4165.53,
+ "end": 4165.73,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 6996
+ },
+ {
+ "start": 4165.73,
+ "end": 4165.81,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 6997
+ },
+ {
+ "start": 4165.81,
+ "end": 4166.01,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 6998
+ },
+ {
+ "start": 4166.01,
+ "end": 4166.51,
+ "confidence": 0,
+ "word": "individuals",
+ "punct": "individuals",
+ "index": 6999
+ },
+ {
+ "start": 4166.51,
+ "end": 4166.75,
+ "confidence": 0,
+ "word": "ever",
+ "punct": "ever",
+ "index": 7000
+ },
+ {
+ "start": 4166.75,
+ "end": 4166.99,
+ "confidence": 0,
+ "word": "stopped",
+ "punct": "stopped?",
+ "index": 7001
+ }
+ ],
+ "start": 4164.45
+ }
+ },
+ {
+ "key": "aiph0",
+ "text": "Ask themselves why Facebook and Google don't don't charge for access.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4166.99,
+ "end": 4167.21,
+ "confidence": 0,
+ "word": "ask",
+ "punct": "Ask",
+ "index": 7002
+ },
+ {
+ "start": 4167.21,
+ "end": 4167.65,
+ "confidence": 0,
+ "word": "themselves",
+ "punct": "themselves",
+ "index": 7003
+ },
+ {
+ "start": 4167.65,
+ "end": 4167.95,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 7004
+ },
+ {
+ "start": 4167.95,
+ "end": 4168.43,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 7005
+ },
+ {
+ "start": 4168.43,
+ "end": 4168.57,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7006
+ },
+ {
+ "start": 4168.57,
+ "end": 4169.21,
+ "confidence": 0,
+ "word": "google",
+ "punct": "Google",
+ "index": 7007
+ },
+ {
+ "start": 4169.21,
+ "end": 4170.73,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 7008
+ },
+ {
+ "start": 4170.73,
+ "end": 4170.97,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 7009
+ },
+ {
+ "start": 4170.97,
+ "end": 4171.29,
+ "confidence": 0,
+ "word": "charge",
+ "punct": "charge",
+ "index": 7010
+ },
+ {
+ "start": 4171.29,
+ "end": 4171.45,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 7011
+ },
+ {
+ "start": 4171.45,
+ "end": 4171.93,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access.",
+ "index": 7012
+ }
+ ],
+ "start": 4166.99
+ }
+ },
+ {
+ "key": "f9rj",
+ "text": "Nothing like is free everything involves trade offs, if you want something without having to pay money for it you're going to have to pay for it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4171.93,
+ "end": 4172.79,
+ "confidence": 0,
+ "word": "nothing",
+ "punct": "Nothing",
+ "index": 7013
+ },
+ {
+ "start": 4172.79,
+ "end": 4173.13,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 7014
+ },
+ {
+ "start": 4173.13,
+ "end": 4173.33,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7015
+ },
+ {
+ "start": 4173.33,
+ "end": 4174.22,
+ "confidence": 0,
+ "word": "free",
+ "punct": "free",
+ "index": 7016
+ },
+ {
+ "start": 4174.22,
+ "end": 4175.16,
+ "confidence": 0,
+ "word": "everything",
+ "punct": "everything",
+ "index": 7017
+ },
+ {
+ "start": 4175.16,
+ "end": 4175.54,
+ "confidence": 0,
+ "word": "involves",
+ "punct": "involves",
+ "index": 7018
+ },
+ {
+ "start": 4175.54,
+ "end": 4175.86,
+ "confidence": 0,
+ "word": "trade",
+ "punct": "trade",
+ "index": 7019
+ },
+ {
+ "start": 4175.86,
+ "end": 4176.1,
+ "confidence": 0,
+ "word": "offs,",
+ "punct": "offs,",
+ "index": 7020
+ },
+ {
+ "start": 4176.1,
+ "end": 4176.26,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 7021
+ },
+ {
+ "start": 4176.26,
+ "end": 4176.38,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7022
+ },
+ {
+ "start": 4176.38,
+ "end": 4176.58,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 7023
+ },
+ {
+ "start": 4176.58,
+ "end": 4177,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 7024
+ },
+ {
+ "start": 4177,
+ "end": 4177.32,
+ "confidence": 0,
+ "word": "without",
+ "punct": "without",
+ "index": 7025
+ },
+ {
+ "start": 4177.32,
+ "end": 4177.6,
+ "confidence": 0,
+ "word": "having",
+ "punct": "having",
+ "index": 7026
+ },
+ {
+ "start": 4177.6,
+ "end": 4177.68,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7027
+ },
+ {
+ "start": 4177.68,
+ "end": 4177.86,
+ "confidence": 0,
+ "word": "pay",
+ "punct": "pay",
+ "index": 7028
+ },
+ {
+ "start": 4177.86,
+ "end": 4178.12,
+ "confidence": 0,
+ "word": "money",
+ "punct": "money",
+ "index": 7029
+ },
+ {
+ "start": 4178.12,
+ "end": 4178.32,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 7030
+ },
+ {
+ "start": 4178.32,
+ "end": 4178.46,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 7031
+ },
+ {
+ "start": 4178.46,
+ "end": 4179.4,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 7032
+ },
+ {
+ "start": 4179.4,
+ "end": 4179.56,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 7033
+ },
+ {
+ "start": 4179.56,
+ "end": 4179.62,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7034
+ },
+ {
+ "start": 4179.62,
+ "end": 4179.76,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 7035
+ },
+ {
+ "start": 4179.76,
+ "end": 4179.84,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7036
+ },
+ {
+ "start": 4179.84,
+ "end": 4180.04,
+ "confidence": 0,
+ "word": "pay",
+ "punct": "pay",
+ "index": 7037
+ },
+ {
+ "start": 4180.04,
+ "end": 4180.22,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 7038
+ },
+ {
+ "start": 4180.22,
+ "end": 4180.3,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 7039
+ }
+ ],
+ "start": 4171.93
+ }
+ },
+ {
+ "key": "580pf",
+ "text": "In some other way.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4180.3,
+ "end": 4180.46,
+ "confidence": 0,
+ "word": "in",
+ "punct": "In",
+ "index": 7040
+ },
+ {
+ "start": 4180.46,
+ "end": 4180.7,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 7041
+ },
+ {
+ "start": 4180.7,
+ "end": 4180.96,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 7042
+ },
+ {
+ "start": 4180.96,
+ "end": 4181.12,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way.",
+ "index": 7043
+ }
+ ],
+ "start": 4180.3
+ }
+ },
+ {
+ "key": "drhm9",
+ "text": "It seems to me and that's where?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4181.12,
+ "end": 4181.26,
+ "confidence": 0,
+ "word": "it",
+ "punct": "It",
+ "index": 7044
+ },
+ {
+ "start": 4181.26,
+ "end": 4181.56,
+ "confidence": 0,
+ "word": "seems",
+ "punct": "seems",
+ "index": 7045
+ },
+ {
+ "start": 4181.56,
+ "end": 4181.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7046
+ },
+ {
+ "start": 4181.72,
+ "end": 4181.84,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 7047
+ },
+ {
+ "start": 4181.84,
+ "end": 4182.52,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7048
+ },
+ {
+ "start": 4182.52,
+ "end": 4182.76,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 7049
+ },
+ {
+ "start": 4182.76,
+ "end": 4183.02,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where?",
+ "index": 7050
+ }
+ ],
+ "start": 4181.12
+ }
+ },
+ {
+ "key": "4o193",
+ "text": "What we're seeing here?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4183.02,
+ "end": 4183.34,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 7051
+ },
+ {
+ "start": 4183.34,
+ "end": 4183.52,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 7052
+ },
+ {
+ "start": 4183.52,
+ "end": 4183.78,
+ "confidence": 0,
+ "word": "seeing",
+ "punct": "seeing",
+ "index": 7053
+ },
+ {
+ "start": 4183.78,
+ "end": 4184.02,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here?",
+ "index": 7054
+ }
+ ],
+ "start": 4183.02
+ }
+ },
+ {
+ "key": "fge92",
+ "text": "And these great websites that don't charge for access.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4184.02,
+ "end": 4184.96,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 7055
+ },
+ {
+ "start": 4184.96,
+ "end": 4185.16,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 7056
+ },
+ {
+ "start": 4185.16,
+ "end": 4185.38,
+ "confidence": 0,
+ "word": "great",
+ "punct": "great",
+ "index": 7057
+ },
+ {
+ "start": 4185.38,
+ "end": 4185.9,
+ "confidence": 0,
+ "word": "websites",
+ "punct": "websites",
+ "index": 7058
+ },
+ {
+ "start": 4185.9,
+ "end": 4186.08,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7059
+ },
+ {
+ "start": 4186.08,
+ "end": 4186.32,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 7060
+ },
+ {
+ "start": 4186.32,
+ "end": 4186.66,
+ "confidence": 0,
+ "word": "charge",
+ "punct": "charge",
+ "index": 7061
+ },
+ {
+ "start": 4186.66,
+ "end": 4186.84,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 7062
+ },
+ {
+ "start": 4186.84,
+ "end": 4187.38,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access.",
+ "index": 7063
+ }
+ ],
+ "start": 4184.02
+ }
+ },
+ {
+ "key": "auln0",
+ "text": "They extract value in some other way.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4187.38,
+ "end": 4188.44,
+ "confidence": 0,
+ "word": "they",
+ "punct": "They",
+ "index": 7064
+ },
+ {
+ "start": 4188.44,
+ "end": 4188.96,
+ "confidence": 0,
+ "word": "extract",
+ "punct": "extract",
+ "index": 7065
+ },
+ {
+ "start": 4188.96,
+ "end": 4189.36,
+ "confidence": 0,
+ "word": "value",
+ "punct": "value",
+ "index": 7066
+ },
+ {
+ "start": 4189.36,
+ "end": 4189.5,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7067
+ },
+ {
+ "start": 4189.5,
+ "end": 4189.74,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 7068
+ },
+ {
+ "start": 4189.74,
+ "end": 4190,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 7069
+ },
+ {
+ "start": 4190,
+ "end": 4190.88,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way.",
+ "index": 7070
+ }
+ ],
+ "start": 4187.38
+ }
+ },
+ {
+ "key": "39ncg",
+ "text": "And there's nothing wrong with that as long as they're upfront about what they're doing to my mind.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4190.88,
+ "end": 4191.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 7071
+ },
+ {
+ "start": 4191.54,
+ "end": 4191.74,
+ "confidence": 0,
+ "word": "there's",
+ "punct": "there's",
+ "index": 7072
+ },
+ {
+ "start": 4191.74,
+ "end": 4192,
+ "confidence": 0,
+ "word": "nothing",
+ "punct": "nothing",
+ "index": 7073
+ },
+ {
+ "start": 4192,
+ "end": 4192.2,
+ "confidence": 0,
+ "word": "wrong",
+ "punct": "wrong",
+ "index": 7074
+ },
+ {
+ "start": 4192.2,
+ "end": 4192.38,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 7075
+ },
+ {
+ "start": 4192.38,
+ "end": 4192.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7076
+ },
+ {
+ "start": 4192.58,
+ "end": 4192.78,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 7077
+ },
+ {
+ "start": 4192.78,
+ "end": 4193.02,
+ "confidence": 0,
+ "word": "long",
+ "punct": "long",
+ "index": 7078
+ },
+ {
+ "start": 4193.02,
+ "end": 4193.18,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 7079
+ },
+ {
+ "start": 4193.18,
+ "end": 4193.48,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 7080
+ },
+ {
+ "start": 4193.48,
+ "end": 4193.84,
+ "confidence": 0,
+ "word": "upfront",
+ "punct": "upfront",
+ "index": 7081
+ },
+ {
+ "start": 4193.84,
+ "end": 4194.14,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 7082
+ },
+ {
+ "start": 4194.14,
+ "end": 4194.36,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 7083
+ },
+ {
+ "start": 4194.36,
+ "end": 4194.62,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 7084
+ },
+ {
+ "start": 4194.62,
+ "end": 4194.92,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 7085
+ },
+ {
+ "start": 4194.92,
+ "end": 4195.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7086
+ },
+ {
+ "start": 4195.8,
+ "end": 4196,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 7087
+ },
+ {
+ "start": 4196,
+ "end": 4196.26,
+ "confidence": 0,
+ "word": "mind",
+ "punct": "mind.",
+ "index": 7088
+ }
+ ],
+ "start": 4190.88
+ }
+ },
+ {
+ "key": "503a3",
+ "text": "The issue here is transparency it's consumer choice to users understand what they're agreeing to when they access a website or agree to terms of service, our websites, upfront about how they extract value from users who do they hide the ball?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4196.26,
+ "end": 4196.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 7089
+ },
+ {
+ "start": 4196.38,
+ "end": 4196.66,
+ "confidence": 0,
+ "word": "issue",
+ "punct": "issue",
+ "index": 7090
+ },
+ {
+ "start": 4196.66,
+ "end": 4196.88,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 7091
+ },
+ {
+ "start": 4196.88,
+ "end": 4197.04,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7092
+ },
+ {
+ "start": 4197.04,
+ "end": 4198.04,
+ "confidence": 0,
+ "word": "transparency",
+ "punct": "transparency",
+ "index": 7093
+ },
+ {
+ "start": 4198.04,
+ "end": 4198.9,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 7094
+ },
+ {
+ "start": 4198.9,
+ "end": 4199.48,
+ "confidence": 0,
+ "word": "consumer",
+ "punct": "consumer",
+ "index": 7095
+ },
+ {
+ "start": 4199.48,
+ "end": 4199.88,
+ "confidence": 0,
+ "word": "choice",
+ "punct": "choice",
+ "index": 7096
+ },
+ {
+ "start": 4199.88,
+ "end": 4201.02,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7097
+ },
+ {
+ "start": 4201.02,
+ "end": 4201.4,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 7098
+ },
+ {
+ "start": 4201.4,
+ "end": 4201.84,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 7099
+ },
+ {
+ "start": 4201.84,
+ "end": 4201.98,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 7100
+ },
+ {
+ "start": 4201.98,
+ "end": 4202.18,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 7101
+ },
+ {
+ "start": 4202.18,
+ "end": 4202.5,
+ "confidence": 0,
+ "word": "agreeing",
+ "punct": "agreeing",
+ "index": 7102
+ },
+ {
+ "start": 4202.5,
+ "end": 4203.24,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7103
+ },
+ {
+ "start": 4203.24,
+ "end": 4203.58,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 7104
+ },
+ {
+ "start": 4203.58,
+ "end": 4203.84,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 7105
+ },
+ {
+ "start": 4203.84,
+ "end": 4204.9,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access",
+ "index": 7106
+ },
+ {
+ "start": 4204.9,
+ "end": 4205.02,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7107
+ },
+ {
+ "start": 4205.02,
+ "end": 4205.5,
+ "confidence": 0,
+ "word": "website",
+ "punct": "website",
+ "index": 7108
+ },
+ {
+ "start": 4205.5,
+ "end": 4205.62,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 7109
+ },
+ {
+ "start": 4205.62,
+ "end": 4205.9,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 7110
+ },
+ {
+ "start": 4205.9,
+ "end": 4206.02,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7111
+ },
+ {
+ "start": 4206.02,
+ "end": 4206.32,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 7112
+ },
+ {
+ "start": 4206.32,
+ "end": 4206.46,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7113
+ },
+ {
+ "start": 4206.46,
+ "end": 4207.34,
+ "confidence": 0,
+ "word": "service,",
+ "punct": "service,",
+ "index": 7114
+ },
+ {
+ "start": 4207.34,
+ "end": 4207.9,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 7115
+ },
+ {
+ "start": 4207.9,
+ "end": 4208.42,
+ "confidence": 0,
+ "word": "websites,",
+ "punct": "websites,",
+ "index": 7116
+ },
+ {
+ "start": 4208.42,
+ "end": 4209.14,
+ "confidence": 0,
+ "word": "upfront",
+ "punct": "upfront",
+ "index": 7117
+ },
+ {
+ "start": 4209.14,
+ "end": 4210.06,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 7118
+ },
+ {
+ "start": 4210.06,
+ "end": 4210.3,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 7119
+ },
+ {
+ "start": 4210.3,
+ "end": 4210.48,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 7120
+ },
+ {
+ "start": 4210.48,
+ "end": 4211.1,
+ "confidence": 0,
+ "word": "extract",
+ "punct": "extract",
+ "index": 7121
+ },
+ {
+ "start": 4211.1,
+ "end": 4212.02,
+ "confidence": 0,
+ "word": "value",
+ "punct": "value",
+ "index": 7122
+ },
+ {
+ "start": 4212.02,
+ "end": 4212.2,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 7123
+ },
+ {
+ "start": 4212.2,
+ "end": 4212.56,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 7124
+ },
+ {
+ "start": 4212.56,
+ "end": 4212.74,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 7125
+ },
+ {
+ "start": 4212.74,
+ "end": 4212.86,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 7126
+ },
+ {
+ "start": 4212.86,
+ "end": 4213.02,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 7127
+ },
+ {
+ "start": 4213.02,
+ "end": 4213.28,
+ "confidence": 0,
+ "word": "hide",
+ "punct": "hide",
+ "index": 7128
+ },
+ {
+ "start": 4213.28,
+ "end": 4213.4,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7129
+ },
+ {
+ "start": 4213.4,
+ "end": 4213.78,
+ "confidence": 0,
+ "word": "ball",
+ "punct": "ball?",
+ "index": 7130
+ }
+ ],
+ "start": 4196.26
+ }
+ },
+ {
+ "key": "c1r25",
+ "text": "The consumers have the information they need to make an informed choice regarding whether or not to visit a particular website to mind to my mind.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4213.78,
+ "end": 4214.62,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 7131
+ },
+ {
+ "start": 4214.62,
+ "end": 4215.1,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 7132
+ },
+ {
+ "start": 4215.1,
+ "end": 4215.32,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 7133
+ },
+ {
+ "start": 4215.32,
+ "end": 4215.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7134
+ },
+ {
+ "start": 4215.44,
+ "end": 4215.96,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 7135
+ },
+ {
+ "start": 4215.96,
+ "end": 4216.16,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 7136
+ },
+ {
+ "start": 4216.16,
+ "end": 4216.36,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 7137
+ },
+ {
+ "start": 4216.36,
+ "end": 4216.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7138
+ },
+ {
+ "start": 4216.48,
+ "end": 4216.64,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 7139
+ },
+ {
+ "start": 4216.64,
+ "end": 4216.74,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 7140
+ },
+ {
+ "start": 4216.74,
+ "end": 4217.18,
+ "confidence": 0,
+ "word": "informed",
+ "punct": "informed",
+ "index": 7141
+ },
+ {
+ "start": 4217.18,
+ "end": 4217.56,
+ "confidence": 0,
+ "word": "choice",
+ "punct": "choice",
+ "index": 7142
+ },
+ {
+ "start": 4217.56,
+ "end": 4218.58,
+ "confidence": 0,
+ "word": "regarding",
+ "punct": "regarding",
+ "index": 7143
+ },
+ {
+ "start": 4218.58,
+ "end": 4218.9,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 7144
+ },
+ {
+ "start": 4218.9,
+ "end": 4219.04,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 7145
+ },
+ {
+ "start": 4219.04,
+ "end": 4219.22,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 7146
+ },
+ {
+ "start": 4219.22,
+ "end": 4219.36,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7147
+ },
+ {
+ "start": 4219.36,
+ "end": 4219.64,
+ "confidence": 0,
+ "word": "visit",
+ "punct": "visit",
+ "index": 7148
+ },
+ {
+ "start": 4219.64,
+ "end": 4219.72,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7149
+ },
+ {
+ "start": 4219.72,
+ "end": 4220.28,
+ "confidence": 0,
+ "word": "particular",
+ "punct": "particular",
+ "index": 7150
+ },
+ {
+ "start": 4220.28,
+ "end": 4220.92,
+ "confidence": 0,
+ "word": "website",
+ "punct": "website",
+ "index": 7151
+ },
+ {
+ "start": 4220.92,
+ "end": 4221.76,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7152
+ },
+ {
+ "start": 4221.76,
+ "end": 4222.32,
+ "confidence": 0,
+ "word": "mind",
+ "punct": "mind",
+ "index": 7153
+ },
+ {
+ "start": 4222.32,
+ "end": 4222.46,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7154
+ },
+ {
+ "start": 4222.46,
+ "end": 4222.62,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 7155
+ },
+ {
+ "start": 4222.62,
+ "end": 4222.84,
+ "confidence": 0,
+ "word": "mind",
+ "punct": "mind.",
+ "index": 7156
+ }
+ ],
+ "start": 4213.78
+ }
+ },
+ {
+ "key": "e52ma",
+ "text": "These are questions that we should ask or be focusing on now, Mr Zuckerberg, I remember well, your first visit, the Capital Hill.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4222.84,
+ "end": 4223.04,
+ "confidence": 0,
+ "word": "these",
+ "punct": "These",
+ "index": 7157
+ },
+ {
+ "start": 4223.04,
+ "end": 4223.2,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 7158
+ },
+ {
+ "start": 4223.2,
+ "end": 4223.56,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 7159
+ },
+ {
+ "start": 4223.56,
+ "end": 4223.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7160
+ },
+ {
+ "start": 4223.7,
+ "end": 4223.84,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 7161
+ },
+ {
+ "start": 4223.84,
+ "end": 4224.06,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 7162
+ },
+ {
+ "start": 4224.06,
+ "end": 4224.42,
+ "confidence": 0,
+ "word": "ask",
+ "punct": "ask",
+ "index": 7163
+ },
+ {
+ "start": 4224.42,
+ "end": 4225,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 7164
+ },
+ {
+ "start": 4225,
+ "end": 4225.18,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 7165
+ },
+ {
+ "start": 4225.18,
+ "end": 4225.66,
+ "confidence": 0,
+ "word": "focusing",
+ "punct": "focusing",
+ "index": 7166
+ },
+ {
+ "start": 4225.66,
+ "end": 4226.48,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 7167
+ },
+ {
+ "start": 4226.48,
+ "end": 4227.32,
+ "confidence": 0,
+ "word": "now,",
+ "punct": "now,",
+ "index": 7168
+ },
+ {
+ "start": 4227.32,
+ "end": 4228.34,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 7169
+ },
+ {
+ "start": 4228.34,
+ "end": 4228.76,
+ "confidence": 0,
+ "word": "zuckerberg,",
+ "punct": "Zuckerberg,",
+ "index": 7170
+ },
+ {
+ "start": 4228.76,
+ "end": 4228.98,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7171
+ },
+ {
+ "start": 4228.98,
+ "end": 4229.34,
+ "confidence": 0,
+ "word": "remember",
+ "punct": "remember",
+ "index": 7172
+ },
+ {
+ "start": 4229.34,
+ "end": 4229.62,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "well,",
+ "index": 7173
+ },
+ {
+ "start": 4229.62,
+ "end": 4229.84,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 7174
+ },
+ {
+ "start": 4229.84,
+ "end": 4230.08,
+ "confidence": 0,
+ "word": "first",
+ "punct": "first",
+ "index": 7175
+ },
+ {
+ "start": 4230.08,
+ "end": 4230.38,
+ "confidence": 0,
+ "word": "visit,",
+ "punct": "visit,",
+ "index": 7176
+ },
+ {
+ "start": 4230.38,
+ "end": 4230.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7177
+ },
+ {
+ "start": 4230.52,
+ "end": 4230.88,
+ "confidence": 0,
+ "word": "capital",
+ "punct": "Capital",
+ "index": 7178
+ },
+ {
+ "start": 4230.88,
+ "end": 4231.1,
+ "confidence": 0,
+ "word": "hill",
+ "punct": "Hill.",
+ "index": 7179
+ }
+ ],
+ "start": 4222.84
+ }
+ },
+ {
+ "key": "e21b0",
+ "text": "Back in 2,010 you spoke to the Senate Republican high tech task force, which I chair.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4231.1,
+ "end": 4231.28,
+ "confidence": 0,
+ "word": "back",
+ "punct": "Back",
+ "index": 7180
+ },
+ {
+ "start": 4231.28,
+ "end": 4231.42,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7181
+ },
+ {
+ "start": 4231.42,
+ "end": 4232.36,
+ "confidence": 0,
+ "word": "2,010",
+ "punct": "2,010",
+ "index": 7182
+ },
+ {
+ "start": 4232.36,
+ "end": 4233.44,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7183
+ },
+ {
+ "start": 4233.44,
+ "end": 4233.68,
+ "confidence": 0,
+ "word": "spoke",
+ "punct": "spoke",
+ "index": 7184
+ },
+ {
+ "start": 4233.68,
+ "end": 4233.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7185
+ },
+ {
+ "start": 4233.8,
+ "end": 4233.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7186
+ },
+ {
+ "start": 4233.94,
+ "end": 4234.24,
+ "confidence": 0,
+ "word": "senate",
+ "punct": "Senate",
+ "index": 7187
+ },
+ {
+ "start": 4234.24,
+ "end": 4234.76,
+ "confidence": 0,
+ "word": "republican",
+ "punct": "Republican",
+ "index": 7188
+ },
+ {
+ "start": 4234.76,
+ "end": 4234.94,
+ "confidence": 0,
+ "word": "high",
+ "punct": "high",
+ "index": 7189
+ },
+ {
+ "start": 4234.94,
+ "end": 4235.18,
+ "confidence": 0,
+ "word": "tech",
+ "punct": "tech",
+ "index": 7190
+ },
+ {
+ "start": 4235.18,
+ "end": 4235.48,
+ "confidence": 0,
+ "word": "task",
+ "punct": "task",
+ "index": 7191
+ },
+ {
+ "start": 4235.48,
+ "end": 4235.76,
+ "confidence": 0,
+ "word": "force,",
+ "punct": "force,",
+ "index": 7192
+ },
+ {
+ "start": 4235.76,
+ "end": 4235.96,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 7193
+ },
+ {
+ "start": 4235.96,
+ "end": 4236.2,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7194
+ },
+ {
+ "start": 4236.2,
+ "end": 4236.58,
+ "confidence": 0,
+ "word": "chair",
+ "punct": "chair.",
+ "index": 7195
+ }
+ ],
+ "start": 4231.1
+ }
+ },
+ {
+ "key": "43ft6",
+ "text": "You said back then, that Facebook would always be free.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4236.58,
+ "end": 4237.46,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 7196
+ },
+ {
+ "start": 4237.46,
+ "end": 4237.68,
+ "confidence": 0,
+ "word": "said",
+ "punct": "said",
+ "index": 7197
+ },
+ {
+ "start": 4237.68,
+ "end": 4237.92,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 7198
+ },
+ {
+ "start": 4237.92,
+ "end": 4238.22,
+ "confidence": 0,
+ "word": "then,",
+ "punct": "then,",
+ "index": 7199
+ },
+ {
+ "start": 4238.22,
+ "end": 4238.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7200
+ },
+ {
+ "start": 4238.44,
+ "end": 4239,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 7201
+ },
+ {
+ "start": 4239,
+ "end": 4239.22,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 7202
+ },
+ {
+ "start": 4239.22,
+ "end": 4239.8,
+ "confidence": 0,
+ "word": "always",
+ "punct": "always",
+ "index": 7203
+ },
+ {
+ "start": 4239.8,
+ "end": 4240.04,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 7204
+ },
+ {
+ "start": 4240.04,
+ "end": 4241.02,
+ "confidence": 0,
+ "word": "free",
+ "punct": "free.",
+ "index": 7205
+ }
+ ],
+ "start": 4236.58
+ }
+ },
+ {
+ "key": "cdtuk",
+ "text": "Is that still your objective, Senator?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4241.02,
+ "end": 4241.8,
+ "confidence": 0,
+ "word": "is",
+ "punct": "Is",
+ "index": 7206
+ },
+ {
+ "start": 4241.8,
+ "end": 4241.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7207
+ },
+ {
+ "start": 4241.96,
+ "end": 4242.2,
+ "confidence": 0,
+ "word": "still",
+ "punct": "still",
+ "index": 7208
+ },
+ {
+ "start": 4242.2,
+ "end": 4242.36,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 7209
+ },
+ {
+ "start": 4242.36,
+ "end": 4244.1,
+ "confidence": 0,
+ "word": "objective,",
+ "punct": "objective,",
+ "index": 7210
+ },
+ {
+ "start": 4244.1,
+ "end": 4245.12,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator?",
+ "index": 7211
+ }
+ ],
+ "start": 4241.02
+ }
+ },
+ {
+ "key": "7ohbj",
+ "text": "Yes, there will always be a version of Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4245.12,
+ "end": 4246.08,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 7212
+ },
+ {
+ "start": 4246.08,
+ "end": 4246.7,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 7213
+ },
+ {
+ "start": 4246.7,
+ "end": 4246.9,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 7214
+ },
+ {
+ "start": 4246.9,
+ "end": 4247.22,
+ "confidence": 0,
+ "word": "always",
+ "punct": "always",
+ "index": 7215
+ },
+ {
+ "start": 4247.22,
+ "end": 4247.36,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 7216
+ },
+ {
+ "start": 4247.36,
+ "end": 4247.46,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7217
+ },
+ {
+ "start": 4247.46,
+ "end": 4247.76,
+ "confidence": 0,
+ "word": "version",
+ "punct": "version",
+ "index": 7218
+ },
+ {
+ "start": 4247.76,
+ "end": 4247.88,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7219
+ },
+ {
+ "start": 4247.88,
+ "end": 4248.28,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 7220
+ }
+ ],
+ "start": 4245.12
+ }
+ },
+ {
+ "key": "25hkb",
+ "text": "That is free it is our mission to try to help connect everyone around the world and to bring the world closer together in order to do that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4248.28,
+ "end": 4248.42,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 7221
+ },
+ {
+ "start": 4248.42,
+ "end": 4248.58,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7222
+ },
+ {
+ "start": 4248.58,
+ "end": 4248.84,
+ "confidence": 0,
+ "word": "free",
+ "punct": "free",
+ "index": 7223
+ },
+ {
+ "start": 4248.84,
+ "end": 4249.02,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 7224
+ },
+ {
+ "start": 4249.02,
+ "end": 4249.16,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7225
+ },
+ {
+ "start": 4249.16,
+ "end": 4249.32,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 7226
+ },
+ {
+ "start": 4249.32,
+ "end": 4249.6,
+ "confidence": 0,
+ "word": "mission",
+ "punct": "mission",
+ "index": 7227
+ },
+ {
+ "start": 4249.6,
+ "end": 4249.78,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7228
+ },
+ {
+ "start": 4249.78,
+ "end": 4249.94,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 7229
+ },
+ {
+ "start": 4249.94,
+ "end": 4250.08,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7230
+ },
+ {
+ "start": 4250.08,
+ "end": 4250.28,
+ "confidence": 0,
+ "word": "help",
+ "punct": "help",
+ "index": 7231
+ },
+ {
+ "start": 4250.28,
+ "end": 4250.64,
+ "confidence": 0,
+ "word": "connect",
+ "punct": "connect",
+ "index": 7232
+ },
+ {
+ "start": 4250.64,
+ "end": 4251.06,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 7233
+ },
+ {
+ "start": 4251.06,
+ "end": 4251.28,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 7234
+ },
+ {
+ "start": 4251.28,
+ "end": 4251.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7235
+ },
+ {
+ "start": 4251.38,
+ "end": 4251.62,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 7236
+ },
+ {
+ "start": 4251.62,
+ "end": 4251.86,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7237
+ },
+ {
+ "start": 4251.86,
+ "end": 4251.96,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7238
+ },
+ {
+ "start": 4251.96,
+ "end": 4252.16,
+ "confidence": 0,
+ "word": "bring",
+ "punct": "bring",
+ "index": 7239
+ },
+ {
+ "start": 4252.16,
+ "end": 4252.28,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7240
+ },
+ {
+ "start": 4252.28,
+ "end": 4252.44,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 7241
+ },
+ {
+ "start": 4252.44,
+ "end": 4252.77,
+ "confidence": 0,
+ "word": "closer",
+ "punct": "closer",
+ "index": 7242
+ },
+ {
+ "start": 4252.77,
+ "end": 4253.59,
+ "confidence": 0,
+ "word": "together",
+ "punct": "together",
+ "index": 7243
+ },
+ {
+ "start": 4253.59,
+ "end": 4253.71,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7244
+ },
+ {
+ "start": 4253.71,
+ "end": 4253.93,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 7245
+ },
+ {
+ "start": 4253.93,
+ "end": 4254.01,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7246
+ },
+ {
+ "start": 4254.01,
+ "end": 4254.15,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 7247
+ },
+ {
+ "start": 4254.15,
+ "end": 4254.31,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 7248
+ }
+ ],
+ "start": 4248.28
+ }
+ },
+ {
+ "key": "6puem",
+ "text": "We believe that we need to offer a service that everyone can afford and we're committed to doing that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4254.31,
+ "end": 4254.55,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 7249
+ },
+ {
+ "start": 4254.55,
+ "end": 4254.89,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 7250
+ },
+ {
+ "start": 4254.89,
+ "end": 4255.11,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7251
+ },
+ {
+ "start": 4255.11,
+ "end": 4255.21,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 7252
+ },
+ {
+ "start": 4255.21,
+ "end": 4255.41,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 7253
+ },
+ {
+ "start": 4255.41,
+ "end": 4255.47,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7254
+ },
+ {
+ "start": 4255.47,
+ "end": 4255.69,
+ "confidence": 0,
+ "word": "offer",
+ "punct": "offer",
+ "index": 7255
+ },
+ {
+ "start": 4255.69,
+ "end": 4255.75,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7256
+ },
+ {
+ "start": 4255.75,
+ "end": 4256.09,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 7257
+ },
+ {
+ "start": 4256.09,
+ "end": 4256.23,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7258
+ },
+ {
+ "start": 4256.23,
+ "end": 4256.55,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 7259
+ },
+ {
+ "start": 4256.55,
+ "end": 4256.69,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 7260
+ },
+ {
+ "start": 4256.69,
+ "end": 4257.07,
+ "confidence": 0,
+ "word": "afford",
+ "punct": "afford",
+ "index": 7261
+ },
+ {
+ "start": 4257.07,
+ "end": 4257.67,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7262
+ },
+ {
+ "start": 4257.67,
+ "end": 4257.87,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 7263
+ },
+ {
+ "start": 4257.87,
+ "end": 4258.25,
+ "confidence": 0,
+ "word": "committed",
+ "punct": "committed",
+ "index": 7264
+ },
+ {
+ "start": 4258.25,
+ "end": 4258.47,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7265
+ },
+ {
+ "start": 4258.47,
+ "end": 4258.69,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 7266
+ },
+ {
+ "start": 4258.69,
+ "end": 4258.85,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 7267
+ }
+ ],
+ "start": 4254.31
+ }
+ },
+ {
+ "key": "40p14",
+ "text": "Well, if so, how do you sustain a business model in which users don't pay for your service.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4258.85,
+ "end": 4259.17,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "Well,",
+ "index": 7268
+ },
+ {
+ "start": 4259.17,
+ "end": 4259.37,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 7269
+ },
+ {
+ "start": 4259.37,
+ "end": 4259.69,
+ "confidence": 0,
+ "word": "so,",
+ "punct": "so,",
+ "index": 7270
+ },
+ {
+ "start": 4259.69,
+ "end": 4259.87,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 7271
+ },
+ {
+ "start": 4259.87,
+ "end": 4259.99,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 7272
+ },
+ {
+ "start": 4259.99,
+ "end": 4260.13,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7273
+ },
+ {
+ "start": 4260.13,
+ "end": 4260.59,
+ "confidence": 0,
+ "word": "sustain",
+ "punct": "sustain",
+ "index": 7274
+ },
+ {
+ "start": 4260.59,
+ "end": 4260.71,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7275
+ },
+ {
+ "start": 4260.71,
+ "end": 4261.03,
+ "confidence": 0,
+ "word": "business",
+ "punct": "business",
+ "index": 7276
+ },
+ {
+ "start": 4261.03,
+ "end": 4261.31,
+ "confidence": 0,
+ "word": "model",
+ "punct": "model",
+ "index": 7277
+ },
+ {
+ "start": 4261.31,
+ "end": 4261.39,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7278
+ },
+ {
+ "start": 4261.39,
+ "end": 4261.57,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 7279
+ },
+ {
+ "start": 4261.57,
+ "end": 4261.97,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 7280
+ },
+ {
+ "start": 4261.97,
+ "end": 4262.21,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 7281
+ },
+ {
+ "start": 4262.21,
+ "end": 4262.41,
+ "confidence": 0,
+ "word": "pay",
+ "punct": "pay",
+ "index": 7282
+ },
+ {
+ "start": 4262.41,
+ "end": 4262.53,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 7283
+ },
+ {
+ "start": 4262.53,
+ "end": 4262.67,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 7284
+ },
+ {
+ "start": 4262.67,
+ "end": 4265.34,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service.",
+ "index": 7285
+ }
+ ],
+ "start": 4258.85
+ }
+ },
+ {
+ "key": "7h33m",
+ "text": "Senator, we run ads.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4265.34,
+ "end": 4266.3,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 7286
+ },
+ {
+ "start": 4266.3,
+ "end": 4266.44,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 7287
+ },
+ {
+ "start": 4266.44,
+ "end": 4266.6,
+ "confidence": 0,
+ "word": "run",
+ "punct": "run",
+ "index": 7288
+ },
+ {
+ "start": 4266.6,
+ "end": 4266.88,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads.",
+ "index": 7289
+ }
+ ],
+ "start": 4265.34
+ }
+ },
+ {
+ "key": "8sjhr",
+ "text": "I see that's great.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4266.88,
+ "end": 4269.22,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7290
+ },
+ {
+ "start": 4269.22,
+ "end": 4269.78,
+ "confidence": 0,
+ "word": "see",
+ "punct": "see",
+ "index": 7291
+ },
+ {
+ "start": 4269.78,
+ "end": 4270.76,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 7292
+ },
+ {
+ "start": 4270.76,
+ "end": 4271.02,
+ "confidence": 0,
+ "word": "great",
+ "punct": "great.",
+ "index": 7293
+ }
+ ],
+ "start": 4266.88
+ }
+ },
+ {
+ "key": "63bnn",
+ "text": "Whenever a controversy like this arises there's always a danger that Congress's response will be to step in and over regulate that's the experience that I've had in my 42 years here.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4271.02,
+ "end": 4271.4,
+ "confidence": 0,
+ "word": "whenever",
+ "punct": "Whenever",
+ "index": 7294
+ },
+ {
+ "start": 4271.4,
+ "end": 4271.48,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7295
+ },
+ {
+ "start": 4271.48,
+ "end": 4272.1,
+ "confidence": 0,
+ "word": "controversy",
+ "punct": "controversy",
+ "index": 7296
+ },
+ {
+ "start": 4272.1,
+ "end": 4272.34,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 7297
+ },
+ {
+ "start": 4272.34,
+ "end": 4272.52,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 7298
+ },
+ {
+ "start": 4272.52,
+ "end": 4273.04,
+ "confidence": 0,
+ "word": "arises",
+ "punct": "arises",
+ "index": 7299
+ },
+ {
+ "start": 4273.04,
+ "end": 4273.26,
+ "confidence": 0,
+ "word": "there's",
+ "punct": "there's",
+ "index": 7300
+ },
+ {
+ "start": 4273.26,
+ "end": 4273.5,
+ "confidence": 0,
+ "word": "always",
+ "punct": "always",
+ "index": 7301
+ },
+ {
+ "start": 4273.5,
+ "end": 4273.6,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7302
+ },
+ {
+ "start": 4273.6,
+ "end": 4273.98,
+ "confidence": 0,
+ "word": "danger",
+ "punct": "danger",
+ "index": 7303
+ },
+ {
+ "start": 4273.98,
+ "end": 4274.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7304
+ },
+ {
+ "start": 4274.18,
+ "end": 4274.82,
+ "confidence": 0,
+ "word": "congress's",
+ "punct": "Congress's",
+ "index": 7305
+ },
+ {
+ "start": 4274.82,
+ "end": 4275.66,
+ "confidence": 0,
+ "word": "response",
+ "punct": "response",
+ "index": 7306
+ },
+ {
+ "start": 4275.66,
+ "end": 4276.62,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 7307
+ },
+ {
+ "start": 4276.62,
+ "end": 4276.74,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 7308
+ },
+ {
+ "start": 4276.74,
+ "end": 4276.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7309
+ },
+ {
+ "start": 4276.9,
+ "end": 4277.2,
+ "confidence": 0,
+ "word": "step",
+ "punct": "step",
+ "index": 7310
+ },
+ {
+ "start": 4277.2,
+ "end": 4277.52,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7311
+ },
+ {
+ "start": 4277.52,
+ "end": 4278.06,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7312
+ },
+ {
+ "start": 4278.06,
+ "end": 4278.36,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 7313
+ },
+ {
+ "start": 4278.36,
+ "end": 4278.88,
+ "confidence": 0,
+ "word": "regulate",
+ "punct": "regulate",
+ "index": 7314
+ },
+ {
+ "start": 4278.88,
+ "end": 4279.79,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 7315
+ },
+ {
+ "start": 4279.79,
+ "end": 4280.11,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7316
+ },
+ {
+ "start": 4280.11,
+ "end": 4280.55,
+ "confidence": 0,
+ "word": "experience",
+ "punct": "experience",
+ "index": 7317
+ },
+ {
+ "start": 4280.55,
+ "end": 4280.71,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7318
+ },
+ {
+ "start": 4280.71,
+ "end": 4280.89,
+ "confidence": 0,
+ "word": "i've",
+ "punct": "I've",
+ "index": 7319
+ },
+ {
+ "start": 4280.89,
+ "end": 4281.01,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 7320
+ },
+ {
+ "start": 4281.01,
+ "end": 4281.29,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7321
+ },
+ {
+ "start": 4281.29,
+ "end": 4281.43,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 7322
+ },
+ {
+ "start": 4281.43,
+ "end": 4281.99,
+ "confidence": 0,
+ "word": "42",
+ "punct": "42",
+ "index": 7323
+ },
+ {
+ "start": 4281.99,
+ "end": 4282.25,
+ "confidence": 0,
+ "word": "years",
+ "punct": "years",
+ "index": 7324
+ },
+ {
+ "start": 4282.25,
+ "end": 4282.49,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here.",
+ "index": 7325
+ }
+ ],
+ "start": 4271.02
+ }
+ },
+ {
+ "key": "33jbr",
+ "text": "In your view, what sorts of legislative changes would help to solve the problems the Cambridge Analytica story has revealed and what sorts of legislative changes would not help to solve this issue.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4282.49,
+ "end": 4283.27,
+ "confidence": 0,
+ "word": "in",
+ "punct": "In",
+ "index": 7326
+ },
+ {
+ "start": 4283.27,
+ "end": 4283.47,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 7327
+ },
+ {
+ "start": 4283.47,
+ "end": 4283.71,
+ "confidence": 0,
+ "word": "view,",
+ "punct": "view,",
+ "index": 7328
+ },
+ {
+ "start": 4283.71,
+ "end": 4283.93,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 7329
+ },
+ {
+ "start": 4283.93,
+ "end": 4284.17,
+ "confidence": 0,
+ "word": "sorts",
+ "punct": "sorts",
+ "index": 7330
+ },
+ {
+ "start": 4284.17,
+ "end": 4284.27,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7331
+ },
+ {
+ "start": 4284.27,
+ "end": 4284.87,
+ "confidence": 0,
+ "word": "legislative",
+ "punct": "legislative",
+ "index": 7332
+ },
+ {
+ "start": 4284.87,
+ "end": 4285.21,
+ "confidence": 0,
+ "word": "changes",
+ "punct": "changes",
+ "index": 7333
+ },
+ {
+ "start": 4285.21,
+ "end": 4285.41,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 7334
+ },
+ {
+ "start": 4285.41,
+ "end": 4285.61,
+ "confidence": 0,
+ "word": "help",
+ "punct": "help",
+ "index": 7335
+ },
+ {
+ "start": 4285.61,
+ "end": 4285.71,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7336
+ },
+ {
+ "start": 4285.71,
+ "end": 4286.03,
+ "confidence": 0,
+ "word": "solve",
+ "punct": "solve",
+ "index": 7337
+ },
+ {
+ "start": 4286.03,
+ "end": 4286.17,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7338
+ },
+ {
+ "start": 4286.17,
+ "end": 4286.59,
+ "confidence": 0,
+ "word": "problems",
+ "punct": "problems",
+ "index": 7339
+ },
+ {
+ "start": 4286.59,
+ "end": 4286.75,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7340
+ },
+ {
+ "start": 4286.75,
+ "end": 4287.21,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 7341
+ },
+ {
+ "start": 4287.21,
+ "end": 4287.69,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 7342
+ },
+ {
+ "start": 4287.69,
+ "end": 4288.11,
+ "confidence": 0,
+ "word": "story",
+ "punct": "story",
+ "index": 7343
+ },
+ {
+ "start": 4288.11,
+ "end": 4288.31,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 7344
+ },
+ {
+ "start": 4288.31,
+ "end": 4288.85,
+ "confidence": 0,
+ "word": "revealed",
+ "punct": "revealed",
+ "index": 7345
+ },
+ {
+ "start": 4288.85,
+ "end": 4289.51,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7346
+ },
+ {
+ "start": 4289.51,
+ "end": 4289.71,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 7347
+ },
+ {
+ "start": 4289.71,
+ "end": 4290.07,
+ "confidence": 0,
+ "word": "sorts",
+ "punct": "sorts",
+ "index": 7348
+ },
+ {
+ "start": 4290.07,
+ "end": 4290.21,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7349
+ },
+ {
+ "start": 4290.21,
+ "end": 4290.85,
+ "confidence": 0,
+ "word": "legislative",
+ "punct": "legislative",
+ "index": 7350
+ },
+ {
+ "start": 4290.85,
+ "end": 4291.29,
+ "confidence": 0,
+ "word": "changes",
+ "punct": "changes",
+ "index": 7351
+ },
+ {
+ "start": 4291.29,
+ "end": 4291.63,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 7352
+ },
+ {
+ "start": 4291.63,
+ "end": 4292.39,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 7353
+ },
+ {
+ "start": 4292.39,
+ "end": 4292.71,
+ "confidence": 0,
+ "word": "help",
+ "punct": "help",
+ "index": 7354
+ },
+ {
+ "start": 4292.71,
+ "end": 4292.93,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7355
+ },
+ {
+ "start": 4292.93,
+ "end": 4293.27,
+ "confidence": 0,
+ "word": "solve",
+ "punct": "solve",
+ "index": 7356
+ },
+ {
+ "start": 4293.27,
+ "end": 4293.47,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 7357
+ },
+ {
+ "start": 4293.47,
+ "end": 4295.64,
+ "confidence": 0,
+ "word": "issue",
+ "punct": "issue.",
+ "index": 7358
+ }
+ ],
+ "start": 4282.49
+ }
+ },
+ {
+ "key": "8edf1",
+ "text": "Senator, I think that there are a few categories of legislation that makes sense to consider around privacy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4295.64,
+ "end": 4296.64,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 7359
+ },
+ {
+ "start": 4296.64,
+ "end": 4296.7,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7360
+ },
+ {
+ "start": 4296.7,
+ "end": 4296.86,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 7361
+ },
+ {
+ "start": 4296.86,
+ "end": 4297,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7362
+ },
+ {
+ "start": 4297,
+ "end": 4297.14,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 7363
+ },
+ {
+ "start": 4297.14,
+ "end": 4297.26,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 7364
+ },
+ {
+ "start": 4297.26,
+ "end": 4297.32,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7365
+ },
+ {
+ "start": 4297.32,
+ "end": 4297.6,
+ "confidence": 0,
+ "word": "few",
+ "punct": "few",
+ "index": 7366
+ },
+ {
+ "start": 4297.6,
+ "end": 4298.36,
+ "confidence": 0,
+ "word": "categories",
+ "punct": "categories",
+ "index": 7367
+ },
+ {
+ "start": 4298.36,
+ "end": 4298.84,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7368
+ },
+ {
+ "start": 4298.84,
+ "end": 4299.82,
+ "confidence": 0,
+ "word": "legislation",
+ "punct": "legislation",
+ "index": 7369
+ },
+ {
+ "start": 4299.82,
+ "end": 4301.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7370
+ },
+ {
+ "start": 4301.2,
+ "end": 4301.38,
+ "confidence": 0,
+ "word": "makes",
+ "punct": "makes",
+ "index": 7371
+ },
+ {
+ "start": 4301.38,
+ "end": 4301.62,
+ "confidence": 0,
+ "word": "sense",
+ "punct": "sense",
+ "index": 7372
+ },
+ {
+ "start": 4301.62,
+ "end": 4301.78,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7373
+ },
+ {
+ "start": 4301.78,
+ "end": 4302.28,
+ "confidence": 0,
+ "word": "consider",
+ "punct": "consider",
+ "index": 7374
+ },
+ {
+ "start": 4302.28,
+ "end": 4303.04,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 7375
+ },
+ {
+ "start": 4303.04,
+ "end": 4303.58,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy.",
+ "index": 7376
+ }
+ ],
+ "start": 4295.64
+ }
+ },
+ {
+ "key": "6nnjb",
+ "text": "Specifically, there are a few principles that I think it would be useful to discuss and potentially codify into law one is around having a simple and practical set of ways that you explain what you're doing with data.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4303.58,
+ "end": 4305.18,
+ "confidence": 0,
+ "word": "specifically,",
+ "punct": "Specifically,",
+ "index": 7377
+ },
+ {
+ "start": 4305.18,
+ "end": 4306.14,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 7378
+ },
+ {
+ "start": 4306.14,
+ "end": 4306.26,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 7379
+ },
+ {
+ "start": 4306.26,
+ "end": 4306.3,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7380
+ },
+ {
+ "start": 4306.3,
+ "end": 4306.42,
+ "confidence": 0,
+ "word": "few",
+ "punct": "few",
+ "index": 7381
+ },
+ {
+ "start": 4306.42,
+ "end": 4306.96,
+ "confidence": 0,
+ "word": "principles",
+ "punct": "principles",
+ "index": 7382
+ },
+ {
+ "start": 4306.96,
+ "end": 4307.14,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7383
+ },
+ {
+ "start": 4307.14,
+ "end": 4307.2,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7384
+ },
+ {
+ "start": 4307.2,
+ "end": 4307.42,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 7385
+ },
+ {
+ "start": 4307.42,
+ "end": 4307.54,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 7386
+ },
+ {
+ "start": 4307.54,
+ "end": 4307.74,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 7387
+ },
+ {
+ "start": 4307.74,
+ "end": 4307.86,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 7388
+ },
+ {
+ "start": 4307.86,
+ "end": 4308.22,
+ "confidence": 0,
+ "word": "useful",
+ "punct": "useful",
+ "index": 7389
+ },
+ {
+ "start": 4308.22,
+ "end": 4308.74,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7390
+ },
+ {
+ "start": 4308.74,
+ "end": 4309.2,
+ "confidence": 0,
+ "word": "discuss",
+ "punct": "discuss",
+ "index": 7391
+ },
+ {
+ "start": 4309.2,
+ "end": 4310.04,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7392
+ },
+ {
+ "start": 4310.04,
+ "end": 4311,
+ "confidence": 0,
+ "word": "potentially",
+ "punct": "potentially",
+ "index": 7393
+ },
+ {
+ "start": 4311,
+ "end": 4311.46,
+ "confidence": 0,
+ "word": "codify",
+ "punct": "codify",
+ "index": 7394
+ },
+ {
+ "start": 4311.46,
+ "end": 4311.8,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 7395
+ },
+ {
+ "start": 4311.8,
+ "end": 4312.08,
+ "confidence": 0,
+ "word": "law",
+ "punct": "law",
+ "index": 7396
+ },
+ {
+ "start": 4312.08,
+ "end": 4313.14,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 7397
+ },
+ {
+ "start": 4313.14,
+ "end": 4313.64,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7398
+ },
+ {
+ "start": 4313.64,
+ "end": 4314.64,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 7399
+ },
+ {
+ "start": 4314.64,
+ "end": 4315.04,
+ "confidence": 0,
+ "word": "having",
+ "punct": "having",
+ "index": 7400
+ },
+ {
+ "start": 4315.04,
+ "end": 4315.12,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7401
+ },
+ {
+ "start": 4315.12,
+ "end": 4315.64,
+ "confidence": 0,
+ "word": "simple",
+ "punct": "simple",
+ "index": 7402
+ },
+ {
+ "start": 4315.64,
+ "end": 4315.88,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7403
+ },
+ {
+ "start": 4315.88,
+ "end": 4317.26,
+ "confidence": 0,
+ "word": "practical",
+ "punct": "practical",
+ "index": 7404
+ },
+ {
+ "start": 4317.26,
+ "end": 4318.16,
+ "confidence": 0,
+ "word": "set",
+ "punct": "set",
+ "index": 7405
+ },
+ {
+ "start": 4318.16,
+ "end": 4318.44,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7406
+ },
+ {
+ "start": 4318.44,
+ "end": 4319.44,
+ "confidence": 0,
+ "word": "ways",
+ "punct": "ways",
+ "index": 7407
+ },
+ {
+ "start": 4319.44,
+ "end": 4319.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7408
+ },
+ {
+ "start": 4319.58,
+ "end": 4319.68,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7409
+ },
+ {
+ "start": 4319.68,
+ "end": 4320.06,
+ "confidence": 0,
+ "word": "explain",
+ "punct": "explain",
+ "index": 7410
+ },
+ {
+ "start": 4320.06,
+ "end": 4320.2,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 7411
+ },
+ {
+ "start": 4320.2,
+ "end": 4320.4,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 7412
+ },
+ {
+ "start": 4320.4,
+ "end": 4320.56,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 7413
+ },
+ {
+ "start": 4320.56,
+ "end": 4320.7,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 7414
+ },
+ {
+ "start": 4320.7,
+ "end": 4320.98,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data.",
+ "index": 7415
+ }
+ ],
+ "start": 4303.58
+ }
+ },
+ {
+ "key": "eru00",
+ "text": "And we talked a little bit earlier around the complexity of laying out the it's a long privacy policy it's hard to say that people, you know, fully understand something when it's only written out in a long legal document, this the stuff needs to be implemented in a way where people can actually understand it where consumers can understand it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4320.98,
+ "end": 4321.4,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 7416
+ },
+ {
+ "start": 4321.4,
+ "end": 4321.48,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 7417
+ },
+ {
+ "start": 4321.48,
+ "end": 4321.7,
+ "confidence": 0,
+ "word": "talked",
+ "punct": "talked",
+ "index": 7418
+ },
+ {
+ "start": 4321.7,
+ "end": 4321.78,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7419
+ },
+ {
+ "start": 4321.78,
+ "end": 4321.98,
+ "confidence": 0,
+ "word": "little",
+ "punct": "little",
+ "index": 7420
+ },
+ {
+ "start": 4321.98,
+ "end": 4322.08,
+ "confidence": 0,
+ "word": "bit",
+ "punct": "bit",
+ "index": 7421
+ },
+ {
+ "start": 4322.08,
+ "end": 4322.38,
+ "confidence": 0,
+ "word": "earlier",
+ "punct": "earlier",
+ "index": 7422
+ },
+ {
+ "start": 4322.38,
+ "end": 4322.88,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 7423
+ },
+ {
+ "start": 4322.88,
+ "end": 4323.54,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7424
+ },
+ {
+ "start": 4323.54,
+ "end": 4324.22,
+ "confidence": 0,
+ "word": "complexity",
+ "punct": "complexity",
+ "index": 7425
+ },
+ {
+ "start": 4324.22,
+ "end": 4324.34,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7426
+ },
+ {
+ "start": 4324.34,
+ "end": 4324.68,
+ "confidence": 0,
+ "word": "laying",
+ "punct": "laying",
+ "index": 7427
+ },
+ {
+ "start": 4324.68,
+ "end": 4324.92,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 7428
+ },
+ {
+ "start": 4324.92,
+ "end": 4325.34,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7429
+ },
+ {
+ "start": 4325.34,
+ "end": 4325.9,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 7430
+ },
+ {
+ "start": 4325.9,
+ "end": 4325.96,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7431
+ },
+ {
+ "start": 4325.96,
+ "end": 4326.22,
+ "confidence": 0,
+ "word": "long",
+ "punct": "long",
+ "index": 7432
+ },
+ {
+ "start": 4326.22,
+ "end": 4326.74,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 7433
+ },
+ {
+ "start": 4326.74,
+ "end": 4327.18,
+ "confidence": 0,
+ "word": "policy",
+ "punct": "policy",
+ "index": 7434
+ },
+ {
+ "start": 4327.18,
+ "end": 4328.18,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 7435
+ },
+ {
+ "start": 4328.18,
+ "end": 4328.56,
+ "confidence": 0,
+ "word": "hard",
+ "punct": "hard",
+ "index": 7436
+ },
+ {
+ "start": 4328.56,
+ "end": 4328.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7437
+ },
+ {
+ "start": 4328.86,
+ "end": 4329.12,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 7438
+ },
+ {
+ "start": 4329.12,
+ "end": 4329.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7439
+ },
+ {
+ "start": 4329.28,
+ "end": 4329.7,
+ "confidence": 0,
+ "word": "people,",
+ "punct": "people,",
+ "index": 7440
+ },
+ {
+ "start": 4329.7,
+ "end": 4330.14,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7441
+ },
+ {
+ "start": 4330.14,
+ "end": 4330.26,
+ "confidence": 0,
+ "word": "know,",
+ "punct": "know,",
+ "index": 7442
+ },
+ {
+ "start": 4330.26,
+ "end": 4330.5,
+ "confidence": 0,
+ "word": "fully",
+ "punct": "fully",
+ "index": 7443
+ },
+ {
+ "start": 4330.5,
+ "end": 4330.94,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 7444
+ },
+ {
+ "start": 4330.94,
+ "end": 4331.26,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 7445
+ },
+ {
+ "start": 4331.26,
+ "end": 4331.4,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 7446
+ },
+ {
+ "start": 4331.4,
+ "end": 4331.56,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 7447
+ },
+ {
+ "start": 4331.56,
+ "end": 4331.8,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 7448
+ },
+ {
+ "start": 4331.8,
+ "end": 4332.08,
+ "confidence": 0,
+ "word": "written",
+ "punct": "written",
+ "index": 7449
+ },
+ {
+ "start": 4332.08,
+ "end": 4332.2,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 7450
+ },
+ {
+ "start": 4332.2,
+ "end": 4332.3,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7451
+ },
+ {
+ "start": 4332.3,
+ "end": 4332.4,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7452
+ },
+ {
+ "start": 4332.4,
+ "end": 4332.6,
+ "confidence": 0,
+ "word": "long",
+ "punct": "long",
+ "index": 7453
+ },
+ {
+ "start": 4332.6,
+ "end": 4332.9,
+ "confidence": 0,
+ "word": "legal",
+ "punct": "legal",
+ "index": 7454
+ },
+ {
+ "start": 4332.9,
+ "end": 4333.34,
+ "confidence": 0,
+ "word": "document,",
+ "punct": "document,",
+ "index": 7455
+ },
+ {
+ "start": 4333.34,
+ "end": 4333.58,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 7456
+ },
+ {
+ "start": 4333.58,
+ "end": 4333.9,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7457
+ },
+ {
+ "start": 4333.9,
+ "end": 4334.1,
+ "confidence": 0,
+ "word": "stuff",
+ "punct": "stuff",
+ "index": 7458
+ },
+ {
+ "start": 4334.1,
+ "end": 4334.38,
+ "confidence": 0,
+ "word": "needs",
+ "punct": "needs",
+ "index": 7459
+ },
+ {
+ "start": 4334.38,
+ "end": 4334.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7460
+ },
+ {
+ "start": 4334.52,
+ "end": 4334.74,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 7461
+ },
+ {
+ "start": 4334.74,
+ "end": 4335.72,
+ "confidence": 0,
+ "word": "implemented",
+ "punct": "implemented",
+ "index": 7462
+ },
+ {
+ "start": 4335.72,
+ "end": 4335.84,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7463
+ },
+ {
+ "start": 4335.84,
+ "end": 4335.92,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7464
+ },
+ {
+ "start": 4335.92,
+ "end": 4336.04,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 7465
+ },
+ {
+ "start": 4336.04,
+ "end": 4336.22,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 7466
+ },
+ {
+ "start": 4336.22,
+ "end": 4336.46,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 7467
+ },
+ {
+ "start": 4336.46,
+ "end": 4336.6,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 7468
+ },
+ {
+ "start": 4336.6,
+ "end": 4336.86,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 7469
+ },
+ {
+ "start": 4336.86,
+ "end": 4337.28,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 7470
+ },
+ {
+ "start": 4337.28,
+ "end": 4337.4,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 7471
+ },
+ {
+ "start": 4337.4,
+ "end": 4337.6,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 7472
+ },
+ {
+ "start": 4337.6,
+ "end": 4338.16,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 7473
+ },
+ {
+ "start": 4338.16,
+ "end": 4338.52,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 7474
+ },
+ {
+ "start": 4338.52,
+ "end": 4338.96,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 7475
+ },
+ {
+ "start": 4338.96,
+ "end": 4339.12,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 7476
+ }
+ ],
+ "start": 4320.98
+ }
+ },
+ {
+ "key": "8gt4q",
+ "text": "But that can also capture all the nuances of how these services work in a way that doesn't that's not overly restrictive on providing the services that's one.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4339.12,
+ "end": 4340.14,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 7477
+ },
+ {
+ "start": 4340.14,
+ "end": 4340.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7478
+ },
+ {
+ "start": 4340.3,
+ "end": 4340.46,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 7479
+ },
+ {
+ "start": 4340.46,
+ "end": 4341.36,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 7480
+ },
+ {
+ "start": 4341.36,
+ "end": 4342.14,
+ "confidence": 0,
+ "word": "capture",
+ "punct": "capture",
+ "index": 7481
+ },
+ {
+ "start": 4342.14,
+ "end": 4342.26,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 7482
+ },
+ {
+ "start": 4342.26,
+ "end": 4342.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7483
+ },
+ {
+ "start": 4342.36,
+ "end": 4342.82,
+ "confidence": 0,
+ "word": "nuances",
+ "punct": "nuances",
+ "index": 7484
+ },
+ {
+ "start": 4342.82,
+ "end": 4343.12,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7485
+ },
+ {
+ "start": 4343.12,
+ "end": 4343.36,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 7486
+ },
+ {
+ "start": 4343.36,
+ "end": 4344.36,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 7487
+ },
+ {
+ "start": 4344.36,
+ "end": 4344.78,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 7488
+ },
+ {
+ "start": 4344.78,
+ "end": 4345,
+ "confidence": 0,
+ "word": "work",
+ "punct": "work",
+ "index": 7489
+ },
+ {
+ "start": 4345,
+ "end": 4345.12,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7490
+ },
+ {
+ "start": 4345.12,
+ "end": 4345.2,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7491
+ },
+ {
+ "start": 4345.2,
+ "end": 4345.36,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 7492
+ },
+ {
+ "start": 4345.36,
+ "end": 4345.52,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7493
+ },
+ {
+ "start": 4345.52,
+ "end": 4345.84,
+ "confidence": 0,
+ "word": "doesn't",
+ "punct": "doesn't",
+ "index": 7494
+ },
+ {
+ "start": 4345.84,
+ "end": 4346.02,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 7495
+ },
+ {
+ "start": 4346.02,
+ "end": 4346.14,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 7496
+ },
+ {
+ "start": 4346.14,
+ "end": 4346.5,
+ "confidence": 0,
+ "word": "overly",
+ "punct": "overly",
+ "index": 7497
+ },
+ {
+ "start": 4346.5,
+ "end": 4346.98,
+ "confidence": 0,
+ "word": "restrictive",
+ "punct": "restrictive",
+ "index": 7498
+ },
+ {
+ "start": 4346.98,
+ "end": 4347.7,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 7499
+ },
+ {
+ "start": 4347.7,
+ "end": 4348.32,
+ "confidence": 0,
+ "word": "providing",
+ "punct": "providing",
+ "index": 7500
+ },
+ {
+ "start": 4348.32,
+ "end": 4348.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7501
+ },
+ {
+ "start": 4348.44,
+ "end": 4348.88,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 7502
+ },
+ {
+ "start": 4348.88,
+ "end": 4349.54,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 7503
+ },
+ {
+ "start": 4349.54,
+ "end": 4349.8,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one.",
+ "index": 7504
+ }
+ ],
+ "start": 4339.12
+ }
+ },
+ {
+ "key": "9lrmb",
+ "text": "The second is around giving people complete control, this is the most important principle for Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4349.8,
+ "end": 4350.46,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 7505
+ },
+ {
+ "start": 4350.46,
+ "end": 4350.92,
+ "confidence": 0,
+ "word": "second",
+ "punct": "second",
+ "index": 7506
+ },
+ {
+ "start": 4350.92,
+ "end": 4352.02,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7507
+ },
+ {
+ "start": 4352.02,
+ "end": 4352.36,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 7508
+ },
+ {
+ "start": 4352.36,
+ "end": 4352.62,
+ "confidence": 0,
+ "word": "giving",
+ "punct": "giving",
+ "index": 7509
+ },
+ {
+ "start": 4352.62,
+ "end": 4352.92,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 7510
+ },
+ {
+ "start": 4352.92,
+ "end": 4353.34,
+ "confidence": 0,
+ "word": "complete",
+ "punct": "complete",
+ "index": 7511
+ },
+ {
+ "start": 4353.34,
+ "end": 4353.82,
+ "confidence": 0,
+ "word": "control,",
+ "punct": "control,",
+ "index": 7512
+ },
+ {
+ "start": 4353.82,
+ "end": 4354.64,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 7513
+ },
+ {
+ "start": 4354.64,
+ "end": 4354.76,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7514
+ },
+ {
+ "start": 4354.76,
+ "end": 4354.86,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7515
+ },
+ {
+ "start": 4354.86,
+ "end": 4355.11,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 7516
+ },
+ {
+ "start": 4355.11,
+ "end": 4355.49,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 7517
+ },
+ {
+ "start": 4355.49,
+ "end": 4355.93,
+ "confidence": 0,
+ "word": "principle",
+ "punct": "principle",
+ "index": 7518
+ },
+ {
+ "start": 4355.93,
+ "end": 4356.13,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 7519
+ },
+ {
+ "start": 4356.13,
+ "end": 4356.57,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 7520
+ }
+ ],
+ "start": 4349.8
+ }
+ },
+ {
+ "key": "164ni",
+ "text": "Every piece of content that you share on Facebook, you own.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4356.57,
+ "end": 4357.39,
+ "confidence": 0,
+ "word": "every",
+ "punct": "Every",
+ "index": 7521
+ },
+ {
+ "start": 4357.39,
+ "end": 4357.61,
+ "confidence": 0,
+ "word": "piece",
+ "punct": "piece",
+ "index": 7522
+ },
+ {
+ "start": 4357.61,
+ "end": 4357.73,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7523
+ },
+ {
+ "start": 4357.73,
+ "end": 4358.15,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 7524
+ },
+ {
+ "start": 4358.15,
+ "end": 4358.39,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7525
+ },
+ {
+ "start": 4358.39,
+ "end": 4358.53,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7526
+ },
+ {
+ "start": 4358.53,
+ "end": 4358.81,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 7527
+ },
+ {
+ "start": 4358.81,
+ "end": 4359.05,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 7528
+ },
+ {
+ "start": 4359.05,
+ "end": 4359.85,
+ "confidence": 0,
+ "word": "facebook,",
+ "punct": "Facebook,",
+ "index": 7529
+ },
+ {
+ "start": 4359.85,
+ "end": 4360.87,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7530
+ },
+ {
+ "start": 4360.87,
+ "end": 4361.17,
+ "confidence": 0,
+ "word": "own",
+ "punct": "own.",
+ "index": 7531
+ }
+ ],
+ "start": 4356.57
+ }
+ },
+ {
+ "key": "hmpb",
+ "text": "And you have complete control over who sees it and how you share it and you can remove it at any time that's why every day about 100,000,000,000 times a day, people come to one of our services and either post a photo or send a message to someone.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4361.17,
+ "end": 4361.65,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 7532
+ },
+ {
+ "start": 4361.65,
+ "end": 4361.87,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7533
+ },
+ {
+ "start": 4361.87,
+ "end": 4362.03,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 7534
+ },
+ {
+ "start": 4362.03,
+ "end": 4362.39,
+ "confidence": 0,
+ "word": "complete",
+ "punct": "complete",
+ "index": 7535
+ },
+ {
+ "start": 4362.39,
+ "end": 4362.71,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 7536
+ },
+ {
+ "start": 4362.71,
+ "end": 4362.97,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 7537
+ },
+ {
+ "start": 4362.97,
+ "end": 4363.11,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 7538
+ },
+ {
+ "start": 4363.11,
+ "end": 4363.51,
+ "confidence": 0,
+ "word": "sees",
+ "punct": "sees",
+ "index": 7539
+ },
+ {
+ "start": 4363.51,
+ "end": 4363.65,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 7540
+ },
+ {
+ "start": 4363.65,
+ "end": 4364.29,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7541
+ },
+ {
+ "start": 4364.29,
+ "end": 4364.59,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 7542
+ },
+ {
+ "start": 4364.59,
+ "end": 4364.75,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7543
+ },
+ {
+ "start": 4364.75,
+ "end": 4364.97,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 7544
+ },
+ {
+ "start": 4364.97,
+ "end": 4365.07,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 7545
+ },
+ {
+ "start": 4365.07,
+ "end": 4365.23,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7546
+ },
+ {
+ "start": 4365.23,
+ "end": 4365.33,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7547
+ },
+ {
+ "start": 4365.33,
+ "end": 4365.47,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 7548
+ },
+ {
+ "start": 4365.47,
+ "end": 4365.77,
+ "confidence": 0,
+ "word": "remove",
+ "punct": "remove",
+ "index": 7549
+ },
+ {
+ "start": 4365.77,
+ "end": 4365.89,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 7550
+ },
+ {
+ "start": 4365.89,
+ "end": 4366.11,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 7551
+ },
+ {
+ "start": 4366.11,
+ "end": 4366.35,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 7552
+ },
+ {
+ "start": 4366.35,
+ "end": 4366.69,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 7553
+ },
+ {
+ "start": 4366.69,
+ "end": 4367.51,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 7554
+ },
+ {
+ "start": 4367.51,
+ "end": 4367.71,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 7555
+ },
+ {
+ "start": 4367.71,
+ "end": 4368.23,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 7556
+ },
+ {
+ "start": 4368.23,
+ "end": 4368.86,
+ "confidence": 0,
+ "word": "day",
+ "punct": "day",
+ "index": 7557
+ },
+ {
+ "start": 4368.86,
+ "end": 4369.42,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 7558
+ },
+ {
+ "start": 4369.42,
+ "end": 4370.3,
+ "confidence": 0,
+ "word": "100,000,000,000",
+ "punct": "100,000,000,000",
+ "index": 7559
+ },
+ {
+ "start": 4370.3,
+ "end": 4370.68,
+ "confidence": 0,
+ "word": "times",
+ "punct": "times",
+ "index": 7560
+ },
+ {
+ "start": 4370.68,
+ "end": 4370.8,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7561
+ },
+ {
+ "start": 4370.8,
+ "end": 4371,
+ "confidence": 0,
+ "word": "day,",
+ "punct": "day,",
+ "index": 7562
+ },
+ {
+ "start": 4371,
+ "end": 4371.94,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 7563
+ },
+ {
+ "start": 4371.94,
+ "end": 4372.2,
+ "confidence": 0,
+ "word": "come",
+ "punct": "come",
+ "index": 7564
+ },
+ {
+ "start": 4372.2,
+ "end": 4372.36,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7565
+ },
+ {
+ "start": 4372.36,
+ "end": 4372.56,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 7566
+ },
+ {
+ "start": 4372.56,
+ "end": 4372.64,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7567
+ },
+ {
+ "start": 4372.64,
+ "end": 4372.76,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 7568
+ },
+ {
+ "start": 4372.76,
+ "end": 4373.28,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 7569
+ },
+ {
+ "start": 4373.28,
+ "end": 4373.8,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7570
+ },
+ {
+ "start": 4373.8,
+ "end": 4374.52,
+ "confidence": 0,
+ "word": "either",
+ "punct": "either",
+ "index": 7571
+ },
+ {
+ "start": 4374.52,
+ "end": 4374.8,
+ "confidence": 0,
+ "word": "post",
+ "punct": "post",
+ "index": 7572
+ },
+ {
+ "start": 4374.8,
+ "end": 4374.9,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7573
+ },
+ {
+ "start": 4374.9,
+ "end": 4375.28,
+ "confidence": 0,
+ "word": "photo",
+ "punct": "photo",
+ "index": 7574
+ },
+ {
+ "start": 4375.28,
+ "end": 4375.5,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 7575
+ },
+ {
+ "start": 4375.5,
+ "end": 4375.74,
+ "confidence": 0,
+ "word": "send",
+ "punct": "send",
+ "index": 7576
+ },
+ {
+ "start": 4375.74,
+ "end": 4375.82,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7577
+ },
+ {
+ "start": 4375.82,
+ "end": 4376.18,
+ "confidence": 0,
+ "word": "message",
+ "punct": "message",
+ "index": 7578
+ },
+ {
+ "start": 4376.18,
+ "end": 4376.3,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7579
+ },
+ {
+ "start": 4376.3,
+ "end": 4376.66,
+ "confidence": 0,
+ "word": "someone",
+ "punct": "someone.",
+ "index": 7580
+ }
+ ],
+ "start": 4361.17
+ }
+ },
+ {
+ "key": "6v1tk",
+ "text": "Because they know that they have that control and that who they say it's going to go to is going to be who sees the content and I think that that control is something that's important that I think should apply to every service and go ahead, the third point is just around enabling innovation because some of these use cases that that are very sensitive, like face recognition, for example.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4376.66,
+ "end": 4377.26,
+ "confidence": 0,
+ "word": "because",
+ "punct": "Because",
+ "index": 7581
+ },
+ {
+ "start": 4377.26,
+ "end": 4377.4,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 7582
+ },
+ {
+ "start": 4377.4,
+ "end": 4377.62,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 7583
+ },
+ {
+ "start": 4377.62,
+ "end": 4378.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7584
+ },
+ {
+ "start": 4378.18,
+ "end": 4378.32,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 7585
+ },
+ {
+ "start": 4378.32,
+ "end": 4378.48,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 7586
+ },
+ {
+ "start": 4378.48,
+ "end": 4378.66,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7587
+ },
+ {
+ "start": 4378.66,
+ "end": 4379.14,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 7588
+ },
+ {
+ "start": 4379.14,
+ "end": 4380.02,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7589
+ },
+ {
+ "start": 4380.02,
+ "end": 4380.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7590
+ },
+ {
+ "start": 4380.2,
+ "end": 4380.52,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 7591
+ },
+ {
+ "start": 4380.52,
+ "end": 4380.68,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 7592
+ },
+ {
+ "start": 4380.68,
+ "end": 4380.8,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 7593
+ },
+ {
+ "start": 4380.8,
+ "end": 4381,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 7594
+ },
+ {
+ "start": 4381,
+ "end": 4381.14,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 7595
+ },
+ {
+ "start": 4381.14,
+ "end": 4381.22,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7596
+ },
+ {
+ "start": 4381.22,
+ "end": 4381.32,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 7597
+ },
+ {
+ "start": 4381.32,
+ "end": 4381.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7598
+ },
+ {
+ "start": 4381.48,
+ "end": 4381.68,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7599
+ },
+ {
+ "start": 4381.68,
+ "end": 4381.84,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 7600
+ },
+ {
+ "start": 4381.84,
+ "end": 4381.92,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7601
+ },
+ {
+ "start": 4381.92,
+ "end": 4383.05,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 7602
+ },
+ {
+ "start": 4383.05,
+ "end": 4383.15,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 7603
+ },
+ {
+ "start": 4383.15,
+ "end": 4383.45,
+ "confidence": 0,
+ "word": "sees",
+ "punct": "sees",
+ "index": 7604
+ },
+ {
+ "start": 4383.45,
+ "end": 4383.57,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7605
+ },
+ {
+ "start": 4383.57,
+ "end": 4383.89,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 7606
+ },
+ {
+ "start": 4383.89,
+ "end": 4384.03,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7607
+ },
+ {
+ "start": 4384.03,
+ "end": 4384.07,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7608
+ },
+ {
+ "start": 4384.07,
+ "end": 4384.25,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 7609
+ },
+ {
+ "start": 4384.25,
+ "end": 4384.35,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7610
+ },
+ {
+ "start": 4384.35,
+ "end": 4384.55,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7611
+ },
+ {
+ "start": 4384.55,
+ "end": 4384.99,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 7612
+ },
+ {
+ "start": 4384.99,
+ "end": 4385.09,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7613
+ },
+ {
+ "start": 4385.09,
+ "end": 4385.35,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 7614
+ },
+ {
+ "start": 4385.35,
+ "end": 4385.53,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 7615
+ },
+ {
+ "start": 4385.53,
+ "end": 4385.93,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 7616
+ },
+ {
+ "start": 4385.93,
+ "end": 4386.17,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7617
+ },
+ {
+ "start": 4386.17,
+ "end": 4386.53,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7618
+ },
+ {
+ "start": 4386.53,
+ "end": 4386.71,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 7619
+ },
+ {
+ "start": 4386.71,
+ "end": 4386.93,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 7620
+ },
+ {
+ "start": 4386.93,
+ "end": 4387.35,
+ "confidence": 0,
+ "word": "apply",
+ "punct": "apply",
+ "index": 7621
+ },
+ {
+ "start": 4387.35,
+ "end": 4387.57,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7622
+ },
+ {
+ "start": 4387.57,
+ "end": 4388.67,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 7623
+ },
+ {
+ "start": 4388.67,
+ "end": 4389.01,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 7624
+ },
+ {
+ "start": 4389.01,
+ "end": 4390.09,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7625
+ },
+ {
+ "start": 4390.09,
+ "end": 4390.83,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 7626
+ },
+ {
+ "start": 4390.83,
+ "end": 4391.01,
+ "confidence": 0,
+ "word": "ahead,",
+ "punct": "ahead,",
+ "index": 7627
+ },
+ {
+ "start": 4391.01,
+ "end": 4391.73,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7628
+ },
+ {
+ "start": 4391.73,
+ "end": 4391.97,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 7629
+ },
+ {
+ "start": 4391.97,
+ "end": 4392.27,
+ "confidence": 0,
+ "word": "point",
+ "punct": "point",
+ "index": 7630
+ },
+ {
+ "start": 4392.27,
+ "end": 4392.85,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7631
+ },
+ {
+ "start": 4392.85,
+ "end": 4393.03,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 7632
+ },
+ {
+ "start": 4393.03,
+ "end": 4393.35,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 7633
+ },
+ {
+ "start": 4393.35,
+ "end": 4393.77,
+ "confidence": 0,
+ "word": "enabling",
+ "punct": "enabling",
+ "index": 7634
+ },
+ {
+ "start": 4393.77,
+ "end": 4394.29,
+ "confidence": 0,
+ "word": "innovation",
+ "punct": "innovation",
+ "index": 7635
+ },
+ {
+ "start": 4394.29,
+ "end": 4394.91,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 7636
+ },
+ {
+ "start": 4394.91,
+ "end": 4395.09,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 7637
+ },
+ {
+ "start": 4395.09,
+ "end": 4395.17,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7638
+ },
+ {
+ "start": 4395.17,
+ "end": 4395.39,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 7639
+ },
+ {
+ "start": 4395.39,
+ "end": 4395.63,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 7640
+ },
+ {
+ "start": 4395.63,
+ "end": 4396.09,
+ "confidence": 0,
+ "word": "cases",
+ "punct": "cases",
+ "index": 7641
+ },
+ {
+ "start": 4396.09,
+ "end": 4397.24,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7642
+ },
+ {
+ "start": 4397.24,
+ "end": 4398.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7643
+ },
+ {
+ "start": 4398.3,
+ "end": 4398.7,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 7644
+ },
+ {
+ "start": 4398.7,
+ "end": 4398.92,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 7645
+ },
+ {
+ "start": 4398.92,
+ "end": 4399.36,
+ "confidence": 0,
+ "word": "sensitive,",
+ "punct": "sensitive,",
+ "index": 7646
+ },
+ {
+ "start": 4399.36,
+ "end": 4399.54,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 7647
+ },
+ {
+ "start": 4399.54,
+ "end": 4399.82,
+ "confidence": 0,
+ "word": "face",
+ "punct": "face",
+ "index": 7648
+ },
+ {
+ "start": 4399.82,
+ "end": 4400.38,
+ "confidence": 0,
+ "word": "recognition,",
+ "punct": "recognition,",
+ "index": 7649
+ },
+ {
+ "start": 4400.38,
+ "end": 4400.58,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 7650
+ },
+ {
+ "start": 4400.58,
+ "end": 4400.98,
+ "confidence": 0,
+ "word": "example",
+ "punct": "example.",
+ "index": 7651
+ }
+ ],
+ "start": 4376.66
+ }
+ },
+ {
+ "key": "evr9r",
+ "text": "And I think that there's a balance that's extremely important to strike here where you obtain special consent for sensitive features like face recognition.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4400.98,
+ "end": 4401.68,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 7652
+ },
+ {
+ "start": 4401.68,
+ "end": 4401.86,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7653
+ },
+ {
+ "start": 4401.86,
+ "end": 4402.02,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 7654
+ },
+ {
+ "start": 4402.02,
+ "end": 4402.16,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7655
+ },
+ {
+ "start": 4402.16,
+ "end": 4402.38,
+ "confidence": 0,
+ "word": "there's",
+ "punct": "there's",
+ "index": 7656
+ },
+ {
+ "start": 4402.38,
+ "end": 4402.46,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7657
+ },
+ {
+ "start": 4402.46,
+ "end": 4402.84,
+ "confidence": 0,
+ "word": "balance",
+ "punct": "balance",
+ "index": 7658
+ },
+ {
+ "start": 4402.84,
+ "end": 4403.1,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 7659
+ },
+ {
+ "start": 4403.1,
+ "end": 4403.6,
+ "confidence": 0,
+ "word": "extremely",
+ "punct": "extremely",
+ "index": 7660
+ },
+ {
+ "start": 4403.6,
+ "end": 4403.96,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 7661
+ },
+ {
+ "start": 4403.96,
+ "end": 4404.06,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7662
+ },
+ {
+ "start": 4404.06,
+ "end": 4404.36,
+ "confidence": 0,
+ "word": "strike",
+ "punct": "strike",
+ "index": 7663
+ },
+ {
+ "start": 4404.36,
+ "end": 4404.6,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 7664
+ },
+ {
+ "start": 4404.6,
+ "end": 4405.28,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 7665
+ },
+ {
+ "start": 4405.28,
+ "end": 4405.5,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7666
+ },
+ {
+ "start": 4405.5,
+ "end": 4406.62,
+ "confidence": 0,
+ "word": "obtain",
+ "punct": "obtain",
+ "index": 7667
+ },
+ {
+ "start": 4406.62,
+ "end": 4407.34,
+ "confidence": 0,
+ "word": "special",
+ "punct": "special",
+ "index": 7668
+ },
+ {
+ "start": 4407.34,
+ "end": 4407.86,
+ "confidence": 0,
+ "word": "consent",
+ "punct": "consent",
+ "index": 7669
+ },
+ {
+ "start": 4407.86,
+ "end": 4408.7,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 7670
+ },
+ {
+ "start": 4408.7,
+ "end": 4409.6,
+ "confidence": 0,
+ "word": "sensitive",
+ "punct": "sensitive",
+ "index": 7671
+ },
+ {
+ "start": 4409.6,
+ "end": 4410.04,
+ "confidence": 0,
+ "word": "features",
+ "punct": "features",
+ "index": 7672
+ },
+ {
+ "start": 4410.04,
+ "end": 4410.28,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 7673
+ },
+ {
+ "start": 4410.28,
+ "end": 4410.54,
+ "confidence": 0,
+ "word": "face",
+ "punct": "face",
+ "index": 7674
+ },
+ {
+ "start": 4410.54,
+ "end": 4411.14,
+ "confidence": 0,
+ "word": "recognition",
+ "punct": "recognition.",
+ "index": 7675
+ }
+ ],
+ "start": 4400.98
+ }
+ },
+ {
+ "key": "8cal2",
+ "text": "But don't but we still need to make it so that American companies can innovate in those areas or else we're going to fall behind Chinese competitors and others around the world who have different regimes for for different new features like that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4411.14,
+ "end": 4411.86,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 7676
+ },
+ {
+ "start": 4411.86,
+ "end": 4412.92,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 7677
+ },
+ {
+ "start": 4412.92,
+ "end": 4413.5,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 7678
+ },
+ {
+ "start": 4413.5,
+ "end": 4413.78,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 7679
+ },
+ {
+ "start": 4413.78,
+ "end": 4414,
+ "confidence": 0,
+ "word": "still",
+ "punct": "still",
+ "index": 7680
+ },
+ {
+ "start": 4414,
+ "end": 4414.16,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 7681
+ },
+ {
+ "start": 4414.16,
+ "end": 4414.24,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7682
+ },
+ {
+ "start": 4414.24,
+ "end": 4414.42,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 7683
+ },
+ {
+ "start": 4414.42,
+ "end": 4414.52,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 7684
+ },
+ {
+ "start": 4414.52,
+ "end": 4414.66,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 7685
+ },
+ {
+ "start": 4414.66,
+ "end": 4414.82,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7686
+ },
+ {
+ "start": 4414.82,
+ "end": 4415.24,
+ "confidence": 0,
+ "word": "american",
+ "punct": "American",
+ "index": 7687
+ },
+ {
+ "start": 4415.24,
+ "end": 4415.7,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies",
+ "index": 7688
+ },
+ {
+ "start": 4415.7,
+ "end": 4415.92,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 7689
+ },
+ {
+ "start": 4415.92,
+ "end": 4416.26,
+ "confidence": 0,
+ "word": "innovate",
+ "punct": "innovate",
+ "index": 7690
+ },
+ {
+ "start": 4416.26,
+ "end": 4416.34,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7691
+ },
+ {
+ "start": 4416.34,
+ "end": 4416.58,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 7692
+ },
+ {
+ "start": 4416.58,
+ "end": 4416.96,
+ "confidence": 0,
+ "word": "areas",
+ "punct": "areas",
+ "index": 7693
+ },
+ {
+ "start": 4416.96,
+ "end": 4417.52,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 7694
+ },
+ {
+ "start": 4417.52,
+ "end": 4417.72,
+ "confidence": 0,
+ "word": "else",
+ "punct": "else",
+ "index": 7695
+ },
+ {
+ "start": 4417.72,
+ "end": 4417.92,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 7696
+ },
+ {
+ "start": 4417.92,
+ "end": 4418.08,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 7697
+ },
+ {
+ "start": 4418.08,
+ "end": 4418.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7698
+ },
+ {
+ "start": 4418.14,
+ "end": 4418.38,
+ "confidence": 0,
+ "word": "fall",
+ "punct": "fall",
+ "index": 7699
+ },
+ {
+ "start": 4418.38,
+ "end": 4418.72,
+ "confidence": 0,
+ "word": "behind",
+ "punct": "behind",
+ "index": 7700
+ },
+ {
+ "start": 4418.72,
+ "end": 4419.16,
+ "confidence": 0,
+ "word": "chinese",
+ "punct": "Chinese",
+ "index": 7701
+ },
+ {
+ "start": 4419.16,
+ "end": 4419.8,
+ "confidence": 0,
+ "word": "competitors",
+ "punct": "competitors",
+ "index": 7702
+ },
+ {
+ "start": 4419.8,
+ "end": 4420.64,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7703
+ },
+ {
+ "start": 4420.64,
+ "end": 4420.94,
+ "confidence": 0,
+ "word": "others",
+ "punct": "others",
+ "index": 7704
+ },
+ {
+ "start": 4420.94,
+ "end": 4421.22,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 7705
+ },
+ {
+ "start": 4421.22,
+ "end": 4421.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7706
+ },
+ {
+ "start": 4421.36,
+ "end": 4421.66,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 7707
+ },
+ {
+ "start": 4421.66,
+ "end": 4422.12,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 7708
+ },
+ {
+ "start": 4422.12,
+ "end": 4422.36,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 7709
+ },
+ {
+ "start": 4422.36,
+ "end": 4422.76,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 7710
+ },
+ {
+ "start": 4422.76,
+ "end": 4423.44,
+ "confidence": 0,
+ "word": "regimes",
+ "punct": "regimes",
+ "index": 7711
+ },
+ {
+ "start": 4423.44,
+ "end": 4424.4,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 7712
+ },
+ {
+ "start": 4424.4,
+ "end": 4424.6,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 7713
+ },
+ {
+ "start": 4424.6,
+ "end": 4424.98,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 7714
+ },
+ {
+ "start": 4424.98,
+ "end": 4425.4,
+ "confidence": 0,
+ "word": "new",
+ "punct": "new",
+ "index": 7715
+ },
+ {
+ "start": 4425.4,
+ "end": 4426.28,
+ "confidence": 0,
+ "word": "features",
+ "punct": "features",
+ "index": 7716
+ },
+ {
+ "start": 4426.28,
+ "end": 4426.46,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 7717
+ },
+ {
+ "start": 4426.46,
+ "end": 4426.68,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 7718
+ }
+ ],
+ "start": 4411.14
+ }
+ },
+ {
+ "key": "nl5k",
+ "text": "So, under grant.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4426.68,
+ "end": 4427.08,
+ "confidence": 0,
+ "word": "so,",
+ "punct": "So,",
+ "index": 7719
+ },
+ {
+ "start": 4427.08,
+ "end": 4427.4,
+ "confidence": 0,
+ "word": "under",
+ "punct": "under",
+ "index": 7720
+ },
+ {
+ "start": 4427.4,
+ "end": 4427.62,
+ "confidence": 0,
+ "word": "grant",
+ "punct": "grant.",
+ "index": 7721
+ }
+ ],
+ "start": 4426.68
+ }
+ },
+ {
+ "key": "8hpv",
+ "text": "Well, thank you, Mr Chairman.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4427.62,
+ "end": 4428.56,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "Well,",
+ "index": 7722
+ },
+ {
+ "start": 4428.56,
+ "end": 4429.46,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 7723
+ },
+ {
+ "start": 4429.46,
+ "end": 4429.56,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 7724
+ },
+ {
+ "start": 4429.56,
+ "end": 4429.82,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 7725
+ },
+ {
+ "start": 4429.82,
+ "end": 4430.2,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman.",
+ "index": 7726
+ }
+ ],
+ "start": 4427.62
+ }
+ },
+ {
+ "key": "1vi6q",
+ "text": "Welcome Mr Zuckerberg.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4430.2,
+ "end": 4430.56,
+ "confidence": 0,
+ "word": "welcome",
+ "punct": "Welcome",
+ "index": 7727
+ },
+ {
+ "start": 4430.56,
+ "end": 4430.84,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 7728
+ },
+ {
+ "start": 4430.84,
+ "end": 4431.98,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg.",
+ "index": 7729
+ }
+ ],
+ "start": 4430.2
+ }
+ },
+ {
+ "key": "39f3m",
+ "text": "Do you know who Palantir is I do?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4431.98,
+ "end": 4432.96,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 7730
+ },
+ {
+ "start": 4432.96,
+ "end": 4433.06,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7731
+ },
+ {
+ "start": 4433.06,
+ "end": 4433.2,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 7732
+ },
+ {
+ "start": 4433.2,
+ "end": 4433.32,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 7733
+ },
+ {
+ "start": 4433.32,
+ "end": 4433.98,
+ "confidence": 0,
+ "word": "palantir",
+ "punct": "Palantir",
+ "index": 7734
+ },
+ {
+ "start": 4433.98,
+ "end": 4435.22,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7735
+ },
+ {
+ "start": 4435.22,
+ "end": 4436.22,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7736
+ },
+ {
+ "start": 4436.22,
+ "end": 4438.5,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do?",
+ "index": 7737
+ }
+ ],
+ "start": 4431.98
+ }
+ },
+ {
+ "key": "dehkd",
+ "text": "Some people have referred to them as a Stanford analytic.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4438.5,
+ "end": 4439.5,
+ "confidence": 0,
+ "word": "some",
+ "punct": "Some",
+ "index": 7738
+ },
+ {
+ "start": 4439.5,
+ "end": 4439.72,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 7739
+ },
+ {
+ "start": 4439.72,
+ "end": 4439.88,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 7740
+ },
+ {
+ "start": 4439.88,
+ "end": 4440.2,
+ "confidence": 0,
+ "word": "referred",
+ "punct": "referred",
+ "index": 7741
+ },
+ {
+ "start": 4440.2,
+ "end": 4440.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7742
+ },
+ {
+ "start": 4440.28,
+ "end": 4440.48,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 7743
+ },
+ {
+ "start": 4440.48,
+ "end": 4440.68,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 7744
+ },
+ {
+ "start": 4440.68,
+ "end": 4440.82,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7745
+ },
+ {
+ "start": 4440.82,
+ "end": 4441.64,
+ "confidence": 0,
+ "word": "stanford",
+ "punct": "Stanford",
+ "index": 7746
+ },
+ {
+ "start": 4441.64,
+ "end": 4444.08,
+ "confidence": 0,
+ "word": "analytic",
+ "punct": "analytic.",
+ "index": 7747
+ }
+ ],
+ "start": 4438.5
+ }
+ },
+ {
+ "key": "9fvla",
+ "text": "Do you agree, Senator?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4444.08,
+ "end": 4445.82,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 7748
+ },
+ {
+ "start": 4445.82,
+ "end": 4445.94,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7749
+ },
+ {
+ "start": 4445.94,
+ "end": 4446.68,
+ "confidence": 0,
+ "word": "agree,",
+ "punct": "agree,",
+ "index": 7750
+ },
+ {
+ "start": 4446.68,
+ "end": 4447.66,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator?",
+ "index": 7751
+ }
+ ],
+ "start": 4444.08
+ }
+ },
+ {
+ "key": "36mks",
+ "text": "I have not heard that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4447.66,
+ "end": 4447.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7752
+ },
+ {
+ "start": 4447.74,
+ "end": 4447.9,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 7753
+ },
+ {
+ "start": 4447.9,
+ "end": 4448.04,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 7754
+ },
+ {
+ "start": 4448.04,
+ "end": 4448.24,
+ "confidence": 0,
+ "word": "heard",
+ "punct": "heard",
+ "index": 7755
+ },
+ {
+ "start": 4448.24,
+ "end": 4448.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 7756
+ }
+ ],
+ "start": 4447.66
+ }
+ },
+ {
+ "key": "e65ko",
+ "text": "Okay, do you think Palantir taught Cambridge Analytica press reports are saying how to do these tactics, Senator, I don't know, do you think that Palantir has ever scrape data from Facebook?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4448.44,
+ "end": 4449.2,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "Okay,",
+ "index": 7757
+ },
+ {
+ "start": 4449.2,
+ "end": 4449.52,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 7758
+ },
+ {
+ "start": 4449.52,
+ "end": 4449.62,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7759
+ },
+ {
+ "start": 4449.62,
+ "end": 4449.82,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 7760
+ },
+ {
+ "start": 4449.82,
+ "end": 4450.54,
+ "confidence": 0,
+ "word": "palantir",
+ "punct": "Palantir",
+ "index": 7761
+ },
+ {
+ "start": 4450.54,
+ "end": 4451.24,
+ "confidence": 0,
+ "word": "taught",
+ "punct": "taught",
+ "index": 7762
+ },
+ {
+ "start": 4451.24,
+ "end": 4452.24,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 7763
+ },
+ {
+ "start": 4452.24,
+ "end": 4452.9,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 7764
+ },
+ {
+ "start": 4452.9,
+ "end": 4453.3,
+ "confidence": 0,
+ "word": "press",
+ "punct": "press",
+ "index": 7765
+ },
+ {
+ "start": 4453.3,
+ "end": 4453.66,
+ "confidence": 0,
+ "word": "reports",
+ "punct": "reports",
+ "index": 7766
+ },
+ {
+ "start": 4453.66,
+ "end": 4453.86,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 7767
+ },
+ {
+ "start": 4453.86,
+ "end": 4454.18,
+ "confidence": 0,
+ "word": "saying",
+ "punct": "saying",
+ "index": 7768
+ },
+ {
+ "start": 4454.18,
+ "end": 4455.18,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 7769
+ },
+ {
+ "start": 4455.18,
+ "end": 4455.3,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7770
+ },
+ {
+ "start": 4455.3,
+ "end": 4455.46,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 7771
+ },
+ {
+ "start": 4455.46,
+ "end": 4455.66,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 7772
+ },
+ {
+ "start": 4455.66,
+ "end": 4457.56,
+ "confidence": 0,
+ "word": "tactics,",
+ "punct": "tactics,",
+ "index": 7773
+ },
+ {
+ "start": 4457.56,
+ "end": 4458.54,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 7774
+ },
+ {
+ "start": 4458.54,
+ "end": 4458.6,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7775
+ },
+ {
+ "start": 4458.6,
+ "end": 4458.8,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 7776
+ },
+ {
+ "start": 4458.8,
+ "end": 4460,
+ "confidence": 0,
+ "word": "know,",
+ "punct": "know,",
+ "index": 7777
+ },
+ {
+ "start": 4460,
+ "end": 4460.98,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 7778
+ },
+ {
+ "start": 4460.98,
+ "end": 4461.12,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7779
+ },
+ {
+ "start": 4461.12,
+ "end": 4461.52,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 7780
+ },
+ {
+ "start": 4461.52,
+ "end": 4461.88,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7781
+ },
+ {
+ "start": 4461.88,
+ "end": 4462.46,
+ "confidence": 0,
+ "word": "palantir",
+ "punct": "Palantir",
+ "index": 7782
+ },
+ {
+ "start": 4462.46,
+ "end": 4462.58,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 7783
+ },
+ {
+ "start": 4462.58,
+ "end": 4462.84,
+ "confidence": 0,
+ "word": "ever",
+ "punct": "ever",
+ "index": 7784
+ },
+ {
+ "start": 4462.84,
+ "end": 4463.12,
+ "confidence": 0,
+ "word": "scrape",
+ "punct": "scrape",
+ "index": 7785
+ },
+ {
+ "start": 4463.12,
+ "end": 4463.52,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 7786
+ },
+ {
+ "start": 4463.52,
+ "end": 4463.94,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 7787
+ },
+ {
+ "start": 4463.94,
+ "end": 4465.58,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook?",
+ "index": 7788
+ }
+ ],
+ "start": 4448.44
+ }
+ },
+ {
+ "key": "3ta5",
+ "text": "Senator I'm not aware of that, okay?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4465.58,
+ "end": 4466.56,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 7789
+ },
+ {
+ "start": 4466.56,
+ "end": 4466.7,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 7790
+ },
+ {
+ "start": 4466.7,
+ "end": 4466.84,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 7791
+ },
+ {
+ "start": 4466.84,
+ "end": 4467.08,
+ "confidence": 0,
+ "word": "aware",
+ "punct": "aware",
+ "index": 7792
+ },
+ {
+ "start": 4467.08,
+ "end": 4467.18,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7793
+ },
+ {
+ "start": 4467.18,
+ "end": 4469.26,
+ "confidence": 0,
+ "word": "that,",
+ "punct": "that,",
+ "index": 7794
+ },
+ {
+ "start": 4469.26,
+ "end": 4471.14,
+ "confidence": 0,
+ "word": "okay",
+ "punct": "okay?",
+ "index": 7795
+ }
+ ],
+ "start": 4465.58
+ }
+ },
+ {
+ "key": "a89m6",
+ "text": "Do you think that during the 20 16 campaign as Cambridge Analytica is providing support to the Trump campaign under project Alamo.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4471.14,
+ "end": 4471.98,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 7796
+ },
+ {
+ "start": 4471.98,
+ "end": 4472.14,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7797
+ },
+ {
+ "start": 4472.14,
+ "end": 4472.58,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 7798
+ },
+ {
+ "start": 4472.58,
+ "end": 4473.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7799
+ },
+ {
+ "start": 4473.3,
+ "end": 4474.24,
+ "confidence": 0,
+ "word": "during",
+ "punct": "during",
+ "index": 7800
+ },
+ {
+ "start": 4474.24,
+ "end": 4474.82,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7801
+ },
+ {
+ "start": 4474.82,
+ "end": 4475.8,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 7802
+ },
+ {
+ "start": 4475.8,
+ "end": 4476.44,
+ "confidence": 0,
+ "word": "16",
+ "punct": "16",
+ "index": 7803
+ },
+ {
+ "start": 4476.44,
+ "end": 4477.1,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign",
+ "index": 7804
+ },
+ {
+ "start": 4477.1,
+ "end": 4477.96,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 7805
+ },
+ {
+ "start": 4477.96,
+ "end": 4478.4,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 7806
+ },
+ {
+ "start": 4478.4,
+ "end": 4478.92,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 7807
+ },
+ {
+ "start": 4478.92,
+ "end": 4479.14,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 7808
+ },
+ {
+ "start": 4479.14,
+ "end": 4479.58,
+ "confidence": 0,
+ "word": "providing",
+ "punct": "providing",
+ "index": 7809
+ },
+ {
+ "start": 4479.58,
+ "end": 4480,
+ "confidence": 0,
+ "word": "support",
+ "punct": "support",
+ "index": 7810
+ },
+ {
+ "start": 4480,
+ "end": 4480.22,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7811
+ },
+ {
+ "start": 4480.22,
+ "end": 4480.34,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7812
+ },
+ {
+ "start": 4480.34,
+ "end": 4480.58,
+ "confidence": 0,
+ "word": "trump",
+ "punct": "Trump",
+ "index": 7813
+ },
+ {
+ "start": 4480.58,
+ "end": 4481.18,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign",
+ "index": 7814
+ },
+ {
+ "start": 4481.18,
+ "end": 4481.84,
+ "confidence": 0,
+ "word": "under",
+ "punct": "under",
+ "index": 7815
+ },
+ {
+ "start": 4481.84,
+ "end": 4482.3,
+ "confidence": 0,
+ "word": "project",
+ "punct": "project",
+ "index": 7816
+ },
+ {
+ "start": 4482.3,
+ "end": 4482.92,
+ "confidence": 0,
+ "word": "alamo",
+ "punct": "Alamo.",
+ "index": 7817
+ }
+ ],
+ "start": 4471.14
+ }
+ },
+ {
+ "key": "7nd1h",
+ "text": "Were there any Facebook people involved in that sharing of technique and information, Senator, we provided support to the Trump Campaign similar to what we provide to any advertiser or campaign.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4482.92,
+ "end": 4483.5,
+ "confidence": 0,
+ "word": "were",
+ "punct": "Were",
+ "index": 7818
+ },
+ {
+ "start": 4483.5,
+ "end": 4483.64,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 7819
+ },
+ {
+ "start": 4483.64,
+ "end": 4483.96,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 7820
+ },
+ {
+ "start": 4483.96,
+ "end": 4484.56,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 7821
+ },
+ {
+ "start": 4484.56,
+ "end": 4484.96,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 7822
+ },
+ {
+ "start": 4484.96,
+ "end": 4485.48,
+ "confidence": 0,
+ "word": "involved",
+ "punct": "involved",
+ "index": 7823
+ },
+ {
+ "start": 4485.48,
+ "end": 4485.72,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7824
+ },
+ {
+ "start": 4485.72,
+ "end": 4486.02,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7825
+ },
+ {
+ "start": 4486.02,
+ "end": 4486.64,
+ "confidence": 0,
+ "word": "sharing",
+ "punct": "sharing",
+ "index": 7826
+ },
+ {
+ "start": 4486.64,
+ "end": 4486.84,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7827
+ },
+ {
+ "start": 4486.84,
+ "end": 4487.8,
+ "confidence": 0,
+ "word": "technique",
+ "punct": "technique",
+ "index": 7828
+ },
+ {
+ "start": 4487.8,
+ "end": 4487.92,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7829
+ },
+ {
+ "start": 4487.92,
+ "end": 4489.8,
+ "confidence": 0,
+ "word": "information,",
+ "punct": "information,",
+ "index": 7830
+ },
+ {
+ "start": 4489.8,
+ "end": 4490.76,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 7831
+ },
+ {
+ "start": 4490.76,
+ "end": 4490.94,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 7832
+ },
+ {
+ "start": 4490.94,
+ "end": 4491.48,
+ "confidence": 0,
+ "word": "provided",
+ "punct": "provided",
+ "index": 7833
+ },
+ {
+ "start": 4491.48,
+ "end": 4492,
+ "confidence": 0,
+ "word": "support",
+ "punct": "support",
+ "index": 7834
+ },
+ {
+ "start": 4492,
+ "end": 4492.34,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7835
+ },
+ {
+ "start": 4492.34,
+ "end": 4492.54,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7836
+ },
+ {
+ "start": 4492.54,
+ "end": 4492.86,
+ "confidence": 0,
+ "word": "trump",
+ "punct": "Trump",
+ "index": 7837
+ },
+ {
+ "start": 4492.86,
+ "end": 4493.36,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "Campaign",
+ "index": 7838
+ },
+ {
+ "start": 4493.36,
+ "end": 4494.3,
+ "confidence": 0,
+ "word": "similar",
+ "punct": "similar",
+ "index": 7839
+ },
+ {
+ "start": 4494.3,
+ "end": 4494.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7840
+ },
+ {
+ "start": 4494.48,
+ "end": 4494.72,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 7841
+ },
+ {
+ "start": 4494.72,
+ "end": 4494.92,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 7842
+ },
+ {
+ "start": 4494.92,
+ "end": 4495.52,
+ "confidence": 0,
+ "word": "provide",
+ "punct": "provide",
+ "index": 7843
+ },
+ {
+ "start": 4495.52,
+ "end": 4495.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7844
+ },
+ {
+ "start": 4495.8,
+ "end": 4496.64,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 7845
+ },
+ {
+ "start": 4496.64,
+ "end": 4497.42,
+ "confidence": 0,
+ "word": "advertiser",
+ "punct": "advertiser",
+ "index": 7846
+ },
+ {
+ "start": 4497.42,
+ "end": 4497.78,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 7847
+ },
+ {
+ "start": 4497.78,
+ "end": 4498.44,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign.",
+ "index": 7848
+ }
+ ],
+ "start": 4482.92
+ }
+ },
+ {
+ "key": "2lk9d",
+ "text": "Who asks for it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4498.44,
+ "end": 4499.64,
+ "confidence": 0,
+ "word": "who",
+ "punct": "Who",
+ "index": 7849
+ },
+ {
+ "start": 4499.64,
+ "end": 4499.92,
+ "confidence": 0,
+ "word": "asks",
+ "punct": "asks",
+ "index": 7850
+ },
+ {
+ "start": 4499.92,
+ "end": 4500.1,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 7851
+ },
+ {
+ "start": 4500.1,
+ "end": 4500.22,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 7852
+ }
+ ],
+ "start": 4498.44
+ }
+ },
+ {
+ "key": "9mtjv",
+ "text": "So that was a yes.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4500.22,
+ "end": 4500.74,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 7853
+ },
+ {
+ "start": 4500.74,
+ "end": 4500.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7854
+ },
+ {
+ "start": 4500.94,
+ "end": 4501.1,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 7855
+ },
+ {
+ "start": 4501.1,
+ "end": 4501.16,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 7856
+ },
+ {
+ "start": 4501.16,
+ "end": 4502.06,
+ "confidence": 0,
+ "word": "yes",
+ "punct": "yes.",
+ "index": 7857
+ }
+ ],
+ "start": 4500.22
+ }
+ },
+ {
+ "key": "4ib4p",
+ "text": "Is that yes, Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4502.06,
+ "end": 4502.78,
+ "confidence": 0,
+ "word": "is",
+ "punct": "Is",
+ "index": 7858
+ },
+ {
+ "start": 4502.78,
+ "end": 4502.92,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7859
+ },
+ {
+ "start": 4502.92,
+ "end": 4503.52,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "yes,",
+ "index": 7860
+ },
+ {
+ "start": 4503.52,
+ "end": 4504.5,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 7861
+ }
+ ],
+ "start": 4502.06
+ }
+ },
+ {
+ "key": "af98i",
+ "text": "Can you repeat the specific question?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4504.5,
+ "end": 4504.62,
+ "confidence": 0,
+ "word": "can",
+ "punct": "Can",
+ "index": 7862
+ },
+ {
+ "start": 4504.62,
+ "end": 4504.72,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7863
+ },
+ {
+ "start": 4504.72,
+ "end": 4504.96,
+ "confidence": 0,
+ "word": "repeat",
+ "punct": "repeat",
+ "index": 7864
+ },
+ {
+ "start": 4504.96,
+ "end": 4505.08,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7865
+ },
+ {
+ "start": 4505.08,
+ "end": 4505.5,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 7866
+ },
+ {
+ "start": 4505.5,
+ "end": 4505.82,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question?",
+ "index": 7867
+ }
+ ],
+ "start": 4504.5
+ }
+ },
+ {
+ "key": "63cud",
+ "text": "I just want to make sure I get specifically what you're asking during the 20 16 campaign.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4505.82,
+ "end": 4505.96,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7868
+ },
+ {
+ "start": 4505.96,
+ "end": 4506.18,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 7869
+ },
+ {
+ "start": 4506.18,
+ "end": 4506.3,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 7870
+ },
+ {
+ "start": 4506.3,
+ "end": 4506.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7871
+ },
+ {
+ "start": 4506.38,
+ "end": 4506.48,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 7872
+ },
+ {
+ "start": 4506.48,
+ "end": 4506.6,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 7873
+ },
+ {
+ "start": 4506.6,
+ "end": 4506.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7874
+ },
+ {
+ "start": 4506.74,
+ "end": 4507.38,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 7875
+ },
+ {
+ "start": 4507.38,
+ "end": 4507.88,
+ "confidence": 0,
+ "word": "specifically",
+ "punct": "specifically",
+ "index": 7876
+ },
+ {
+ "start": 4507.88,
+ "end": 4507.98,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 7877
+ },
+ {
+ "start": 4507.98,
+ "end": 4508.14,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 7878
+ },
+ {
+ "start": 4508.14,
+ "end": 4508.38,
+ "confidence": 0,
+ "word": "asking",
+ "punct": "asking",
+ "index": 7879
+ },
+ {
+ "start": 4508.38,
+ "end": 4508.88,
+ "confidence": 0,
+ "word": "during",
+ "punct": "during",
+ "index": 7880
+ },
+ {
+ "start": 4508.88,
+ "end": 4509.02,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7881
+ },
+ {
+ "start": 4509.02,
+ "end": 4509.38,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 7882
+ },
+ {
+ "start": 4509.38,
+ "end": 4510.06,
+ "confidence": 0,
+ "word": "16",
+ "punct": "16",
+ "index": 7883
+ },
+ {
+ "start": 4510.06,
+ "end": 4510.84,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign.",
+ "index": 7884
+ }
+ ],
+ "start": 4505.82
+ }
+ },
+ {
+ "key": "dvckg",
+ "text": "Cambridge Analytica worked with the Trump campaign to refine tactics and were Facebook employees in that, Senator, I don't know that our employees were involved with Cambridge Analytica.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4510.84,
+ "end": 4511.96,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 7885
+ },
+ {
+ "start": 4511.96,
+ "end": 4512.72,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 7886
+ },
+ {
+ "start": 4512.72,
+ "end": 4513.06,
+ "confidence": 0,
+ "word": "worked",
+ "punct": "worked",
+ "index": 7887
+ },
+ {
+ "start": 4513.06,
+ "end": 4513.24,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 7888
+ },
+ {
+ "start": 4513.24,
+ "end": 4513.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7889
+ },
+ {
+ "start": 4513.36,
+ "end": 4513.66,
+ "confidence": 0,
+ "word": "trump",
+ "punct": "Trump",
+ "index": 7890
+ },
+ {
+ "start": 4513.66,
+ "end": 4514.32,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign",
+ "index": 7891
+ },
+ {
+ "start": 4514.32,
+ "end": 4514.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7892
+ },
+ {
+ "start": 4514.8,
+ "end": 4515.34,
+ "confidence": 0,
+ "word": "refine",
+ "punct": "refine",
+ "index": 7893
+ },
+ {
+ "start": 4515.34,
+ "end": 4516.1,
+ "confidence": 0,
+ "word": "tactics",
+ "punct": "tactics",
+ "index": 7894
+ },
+ {
+ "start": 4516.1,
+ "end": 4516.58,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7895
+ },
+ {
+ "start": 4516.58,
+ "end": 4516.94,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 7896
+ },
+ {
+ "start": 4516.94,
+ "end": 4517.5,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 7897
+ },
+ {
+ "start": 4517.5,
+ "end": 4518.33,
+ "confidence": 0,
+ "word": "employees",
+ "punct": "employees",
+ "index": 7898
+ },
+ {
+ "start": 4518.33,
+ "end": 4518.61,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7899
+ },
+ {
+ "start": 4518.61,
+ "end": 4519.97,
+ "confidence": 0,
+ "word": "that,",
+ "punct": "that,",
+ "index": 7900
+ },
+ {
+ "start": 4519.97,
+ "end": 4520.95,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 7901
+ },
+ {
+ "start": 4520.95,
+ "end": 4521.29,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7902
+ },
+ {
+ "start": 4521.29,
+ "end": 4521.53,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 7903
+ },
+ {
+ "start": 4521.53,
+ "end": 4521.69,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 7904
+ },
+ {
+ "start": 4521.69,
+ "end": 4521.99,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7905
+ },
+ {
+ "start": 4521.99,
+ "end": 4522.15,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 7906
+ },
+ {
+ "start": 4522.15,
+ "end": 4522.55,
+ "confidence": 0,
+ "word": "employees",
+ "punct": "employees",
+ "index": 7907
+ },
+ {
+ "start": 4522.55,
+ "end": 4522.75,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 7908
+ },
+ {
+ "start": 4522.75,
+ "end": 4523.05,
+ "confidence": 0,
+ "word": "involved",
+ "punct": "involved",
+ "index": 7909
+ },
+ {
+ "start": 4523.05,
+ "end": 4523.25,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 7910
+ },
+ {
+ "start": 4523.25,
+ "end": 4523.71,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 7911
+ },
+ {
+ "start": 4523.71,
+ "end": 4524.11,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica.",
+ "index": 7912
+ }
+ ],
+ "start": 4510.84
+ }
+ },
+ {
+ "key": "284ib",
+ "text": "Although.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4524.11,
+ "end": 4524.59,
+ "confidence": 0,
+ "word": "although",
+ "punct": "Although.",
+ "index": 7913
+ }
+ ],
+ "start": 4524.11
+ }
+ },
+ {
+ "key": "1q6vt",
+ "text": "I know that we did help out the Trump Campaign overall and sales support in the same way that we do with other campaigns.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4524.59,
+ "end": 4524.65,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7914
+ },
+ {
+ "start": 4524.65,
+ "end": 4524.83,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 7915
+ },
+ {
+ "start": 4524.83,
+ "end": 4524.97,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7916
+ },
+ {
+ "start": 4524.97,
+ "end": 4525.09,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 7917
+ },
+ {
+ "start": 4525.09,
+ "end": 4525.37,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 7918
+ },
+ {
+ "start": 4525.37,
+ "end": 4525.83,
+ "confidence": 0,
+ "word": "help",
+ "punct": "help",
+ "index": 7919
+ },
+ {
+ "start": 4525.83,
+ "end": 4525.97,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 7920
+ },
+ {
+ "start": 4525.97,
+ "end": 4526.15,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7921
+ },
+ {
+ "start": 4526.15,
+ "end": 4526.37,
+ "confidence": 0,
+ "word": "trump",
+ "punct": "Trump",
+ "index": 7922
+ },
+ {
+ "start": 4526.37,
+ "end": 4526.75,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "Campaign",
+ "index": 7923
+ },
+ {
+ "start": 4526.75,
+ "end": 4527.35,
+ "confidence": 0,
+ "word": "overall",
+ "punct": "overall",
+ "index": 7924
+ },
+ {
+ "start": 4527.35,
+ "end": 4527.61,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 7925
+ },
+ {
+ "start": 4527.61,
+ "end": 4528.01,
+ "confidence": 0,
+ "word": "sales",
+ "punct": "sales",
+ "index": 7926
+ },
+ {
+ "start": 4528.01,
+ "end": 4528.35,
+ "confidence": 0,
+ "word": "support",
+ "punct": "support",
+ "index": 7927
+ },
+ {
+ "start": 4528.35,
+ "end": 4528.43,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7928
+ },
+ {
+ "start": 4528.43,
+ "end": 4528.55,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 7929
+ },
+ {
+ "start": 4528.55,
+ "end": 4528.73,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 7930
+ },
+ {
+ "start": 4528.73,
+ "end": 4528.83,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 7931
+ },
+ {
+ "start": 4528.83,
+ "end": 4528.97,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7932
+ },
+ {
+ "start": 4528.97,
+ "end": 4529.05,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 7933
+ },
+ {
+ "start": 4529.05,
+ "end": 4529.17,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 7934
+ },
+ {
+ "start": 4529.17,
+ "end": 4529.31,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 7935
+ },
+ {
+ "start": 4529.31,
+ "end": 4529.53,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 7936
+ },
+ {
+ "start": 4529.53,
+ "end": 4529.97,
+ "confidence": 0,
+ "word": "campaigns",
+ "punct": "campaigns.",
+ "index": 7937
+ }
+ ],
+ "start": 4524.59
+ }
+ },
+ {
+ "key": "9snsp",
+ "text": "So they may have been involved in all working together during that time period.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4529.97,
+ "end": 4530.85,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 7938
+ },
+ {
+ "start": 4530.85,
+ "end": 4531.43,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 7939
+ },
+ {
+ "start": 4531.43,
+ "end": 4531.59,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 7940
+ },
+ {
+ "start": 4531.59,
+ "end": 4531.73,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 7941
+ },
+ {
+ "start": 4531.73,
+ "end": 4531.87,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 7942
+ },
+ {
+ "start": 4531.87,
+ "end": 4532.15,
+ "confidence": 0,
+ "word": "involved",
+ "punct": "involved",
+ "index": 7943
+ },
+ {
+ "start": 4532.15,
+ "end": 4532.29,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 7944
+ },
+ {
+ "start": 4532.29,
+ "end": 4532.47,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 7945
+ },
+ {
+ "start": 4532.47,
+ "end": 4532.83,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 7946
+ },
+ {
+ "start": 4532.83,
+ "end": 4533.17,
+ "confidence": 0,
+ "word": "together",
+ "punct": "together",
+ "index": 7947
+ },
+ {
+ "start": 4533.17,
+ "end": 4533.41,
+ "confidence": 0,
+ "word": "during",
+ "punct": "during",
+ "index": 7948
+ },
+ {
+ "start": 4533.41,
+ "end": 4533.55,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7949
+ },
+ {
+ "start": 4533.55,
+ "end": 4533.79,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 7950
+ },
+ {
+ "start": 4533.79,
+ "end": 4534.6,
+ "confidence": 0,
+ "word": "period",
+ "punct": "period.",
+ "index": 7951
+ }
+ ],
+ "start": 4529.97
+ }
+ },
+ {
+ "key": "4pptv",
+ "text": "Maybe that's something your investigation will find out.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4534.6,
+ "end": 4535.28,
+ "confidence": 0,
+ "word": "maybe",
+ "punct": "Maybe",
+ "index": 7952
+ },
+ {
+ "start": 4535.28,
+ "end": 4535.5,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 7953
+ },
+ {
+ "start": 4535.5,
+ "end": 4535.74,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 7954
+ },
+ {
+ "start": 4535.74,
+ "end": 4535.9,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 7955
+ },
+ {
+ "start": 4535.9,
+ "end": 4536.46,
+ "confidence": 0,
+ "word": "investigation",
+ "punct": "investigation",
+ "index": 7956
+ },
+ {
+ "start": 4536.46,
+ "end": 4536.7,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 7957
+ },
+ {
+ "start": 4536.7,
+ "end": 4536.86,
+ "confidence": 0,
+ "word": "find",
+ "punct": "find",
+ "index": 7958
+ },
+ {
+ "start": 4536.86,
+ "end": 4537.4,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out.",
+ "index": 7959
+ }
+ ],
+ "start": 4534.6
+ }
+ },
+ {
+ "key": "eo8rm",
+ "text": "Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4537.4,
+ "end": 4538.38,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 7960
+ }
+ ],
+ "start": 4537.4
+ }
+ },
+ {
+ "key": "c2i3q",
+ "text": "I can certainly have my team get back to you on any specifics.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4538.38,
+ "end": 4538.84,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7961
+ },
+ {
+ "start": 4538.84,
+ "end": 4539.02,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 7962
+ },
+ {
+ "start": 4539.02,
+ "end": 4539.36,
+ "confidence": 0,
+ "word": "certainly",
+ "punct": "certainly",
+ "index": 7963
+ },
+ {
+ "start": 4539.36,
+ "end": 4539.52,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 7964
+ },
+ {
+ "start": 4539.52,
+ "end": 4539.64,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 7965
+ },
+ {
+ "start": 4539.64,
+ "end": 4539.84,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 7966
+ },
+ {
+ "start": 4539.84,
+ "end": 4540.02,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 7967
+ },
+ {
+ "start": 4540.02,
+ "end": 4540.2,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 7968
+ },
+ {
+ "start": 4540.2,
+ "end": 4540.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 7969
+ },
+ {
+ "start": 4540.32,
+ "end": 4540.58,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7970
+ },
+ {
+ "start": 4540.58,
+ "end": 4541.06,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 7971
+ },
+ {
+ "start": 4541.06,
+ "end": 4541.32,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 7972
+ },
+ {
+ "start": 4541.32,
+ "end": 4541.8,
+ "confidence": 0,
+ "word": "specifics",
+ "punct": "specifics.",
+ "index": 7973
+ }
+ ],
+ "start": 4538.38
+ }
+ },
+ {
+ "key": "augu1",
+ "text": "There that I don't know sitting here today.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4541.8,
+ "end": 4542.04,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 7974
+ },
+ {
+ "start": 4542.04,
+ "end": 4542.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7975
+ },
+ {
+ "start": 4542.18,
+ "end": 4542.24,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7976
+ },
+ {
+ "start": 4542.24,
+ "end": 4542.44,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 7977
+ },
+ {
+ "start": 4542.44,
+ "end": 4542.68,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 7978
+ },
+ {
+ "start": 4542.68,
+ "end": 4543.26,
+ "confidence": 0,
+ "word": "sitting",
+ "punct": "sitting",
+ "index": 7979
+ },
+ {
+ "start": 4543.26,
+ "end": 4543.42,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 7980
+ },
+ {
+ "start": 4543.42,
+ "end": 4543.68,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today.",
+ "index": 7981
+ }
+ ],
+ "start": 4541.8
+ }
+ },
+ {
+ "key": "5udm",
+ "text": "Have you heard of total Information awareness?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4543.68,
+ "end": 4544.14,
+ "confidence": 0,
+ "word": "have",
+ "punct": "Have",
+ "index": 7982
+ },
+ {
+ "start": 4544.14,
+ "end": 4544.26,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7983
+ },
+ {
+ "start": 4544.26,
+ "end": 4544.48,
+ "confidence": 0,
+ "word": "heard",
+ "punct": "heard",
+ "index": 7984
+ },
+ {
+ "start": 4544.48,
+ "end": 4544.58,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 7985
+ },
+ {
+ "start": 4544.58,
+ "end": 4545.08,
+ "confidence": 0,
+ "word": "total",
+ "punct": "total",
+ "index": 7986
+ },
+ {
+ "start": 4545.08,
+ "end": 4545.72,
+ "confidence": 0,
+ "word": "information",
+ "punct": "Information",
+ "index": 7987
+ },
+ {
+ "start": 4545.72,
+ "end": 4546.16,
+ "confidence": 0,
+ "word": "awareness",
+ "punct": "awareness?",
+ "index": 7988
+ }
+ ],
+ "start": 4543.68
+ }
+ },
+ {
+ "key": "c9gfm",
+ "text": "Do you know what I'm talking about?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4546.16,
+ "end": 4546.46,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 7989
+ },
+ {
+ "start": 4546.46,
+ "end": 4546.56,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 7990
+ },
+ {
+ "start": 4546.56,
+ "end": 4546.66,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 7991
+ },
+ {
+ "start": 4546.66,
+ "end": 4546.78,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 7992
+ },
+ {
+ "start": 4546.78,
+ "end": 4546.86,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 7993
+ },
+ {
+ "start": 4546.86,
+ "end": 4547.12,
+ "confidence": 0,
+ "word": "talking",
+ "punct": "talking",
+ "index": 7994
+ },
+ {
+ "start": 4547.12,
+ "end": 4547.88,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about?",
+ "index": 7995
+ }
+ ],
+ "start": 4546.16
+ }
+ },
+ {
+ "key": "uovp",
+ "text": "No, I do not.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4547.88,
+ "end": 4548.54,
+ "confidence": 0,
+ "word": "no,",
+ "punct": "No,",
+ "index": 7996
+ },
+ {
+ "start": 4548.54,
+ "end": 4548.6,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 7997
+ },
+ {
+ "start": 4548.6,
+ "end": 4548.72,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 7998
+ },
+ {
+ "start": 4548.72,
+ "end": 4548.92,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not.",
+ "index": 7999
+ }
+ ],
+ "start": 4547.88
+ }
+ },
+ {
+ "key": "fqnns",
+ "text": "Okay, total Information awareness was 2,003 John Ashcroft and other is trying to do similar things to what I think is behind all of this geopolitical forces trying to get data information to influence a process, so when I look at volunteer and what they're doing?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4548.92,
+ "end": 4549.84,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "Okay,",
+ "index": 8000
+ },
+ {
+ "start": 4549.84,
+ "end": 4550.82,
+ "confidence": 0,
+ "word": "total",
+ "punct": "total",
+ "index": 8001
+ },
+ {
+ "start": 4550.82,
+ "end": 4551.38,
+ "confidence": 0,
+ "word": "information",
+ "punct": "Information",
+ "index": 8002
+ },
+ {
+ "start": 4551.38,
+ "end": 4551.98,
+ "confidence": 0,
+ "word": "awareness",
+ "punct": "awareness",
+ "index": 8003
+ },
+ {
+ "start": 4551.98,
+ "end": 4552.9,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 8004
+ },
+ {
+ "start": 4552.9,
+ "end": 4554.76,
+ "confidence": 0,
+ "word": "2,003",
+ "punct": "2,003",
+ "index": 8005
+ },
+ {
+ "start": 4554.76,
+ "end": 4555.7,
+ "confidence": 0,
+ "word": "john",
+ "punct": "John",
+ "index": 8006
+ },
+ {
+ "start": 4555.7,
+ "end": 4556.1,
+ "confidence": 0,
+ "word": "ashcroft",
+ "punct": "Ashcroft",
+ "index": 8007
+ },
+ {
+ "start": 4556.1,
+ "end": 4556.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8008
+ },
+ {
+ "start": 4556.26,
+ "end": 4556.42,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 8009
+ },
+ {
+ "start": 4556.42,
+ "end": 4556.56,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8010
+ },
+ {
+ "start": 4556.56,
+ "end": 4556.76,
+ "confidence": 0,
+ "word": "trying",
+ "punct": "trying",
+ "index": 8011
+ },
+ {
+ "start": 4556.76,
+ "end": 4556.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8012
+ },
+ {
+ "start": 4556.86,
+ "end": 4557.1,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 8013
+ },
+ {
+ "start": 4557.1,
+ "end": 4557.7,
+ "confidence": 0,
+ "word": "similar",
+ "punct": "similar",
+ "index": 8014
+ },
+ {
+ "start": 4557.7,
+ "end": 4558.14,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 8015
+ },
+ {
+ "start": 4558.14,
+ "end": 4558.3,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8016
+ },
+ {
+ "start": 4558.3,
+ "end": 4558.46,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 8017
+ },
+ {
+ "start": 4558.46,
+ "end": 4558.58,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8018
+ },
+ {
+ "start": 4558.58,
+ "end": 4558.8,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8019
+ },
+ {
+ "start": 4558.8,
+ "end": 4559.06,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8020
+ },
+ {
+ "start": 4559.06,
+ "end": 4559.94,
+ "confidence": 0,
+ "word": "behind",
+ "punct": "behind",
+ "index": 8021
+ },
+ {
+ "start": 4559.94,
+ "end": 4560.14,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 8022
+ },
+ {
+ "start": 4560.14,
+ "end": 4560.24,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8023
+ },
+ {
+ "start": 4560.24,
+ "end": 4560.96,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 8024
+ },
+ {
+ "start": 4560.96,
+ "end": 4561.96,
+ "confidence": 0,
+ "word": "geopolitical",
+ "punct": "geopolitical",
+ "index": 8025
+ },
+ {
+ "start": 4561.96,
+ "end": 4562.48,
+ "confidence": 0,
+ "word": "forces",
+ "punct": "forces",
+ "index": 8026
+ },
+ {
+ "start": 4562.48,
+ "end": 4562.78,
+ "confidence": 0,
+ "word": "trying",
+ "punct": "trying",
+ "index": 8027
+ },
+ {
+ "start": 4562.78,
+ "end": 4562.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8028
+ },
+ {
+ "start": 4562.88,
+ "end": 4563.04,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 8029
+ },
+ {
+ "start": 4563.04,
+ "end": 4563.53,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 8030
+ },
+ {
+ "start": 4563.53,
+ "end": 4564.23,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 8031
+ },
+ {
+ "start": 4564.23,
+ "end": 4564.45,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8032
+ },
+ {
+ "start": 4564.45,
+ "end": 4565.33,
+ "confidence": 0,
+ "word": "influence",
+ "punct": "influence",
+ "index": 8033
+ },
+ {
+ "start": 4565.33,
+ "end": 4565.81,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 8034
+ },
+ {
+ "start": 4565.81,
+ "end": 4566.41,
+ "confidence": 0,
+ "word": "process,",
+ "punct": "process,",
+ "index": 8035
+ },
+ {
+ "start": 4566.41,
+ "end": 4567.35,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 8036
+ },
+ {
+ "start": 4567.35,
+ "end": 4567.73,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 8037
+ },
+ {
+ "start": 4567.73,
+ "end": 4567.81,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8038
+ },
+ {
+ "start": 4567.81,
+ "end": 4568.03,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 8039
+ },
+ {
+ "start": 4568.03,
+ "end": 4568.23,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 8040
+ },
+ {
+ "start": 4568.23,
+ "end": 4569.41,
+ "confidence": 0,
+ "word": "volunteer",
+ "punct": "volunteer",
+ "index": 8041
+ },
+ {
+ "start": 4569.41,
+ "end": 4569.55,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8042
+ },
+ {
+ "start": 4569.55,
+ "end": 4569.69,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 8043
+ },
+ {
+ "start": 4569.69,
+ "end": 4569.97,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 8044
+ },
+ {
+ "start": 4569.97,
+ "end": 4570.31,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing?",
+ "index": 8045
+ }
+ ],
+ "start": 4548.92
+ }
+ },
+ {
+ "key": "alc6o",
+ "text": "And I look at what app, which is another acquisition.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4570.31,
+ "end": 4570.71,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 8046
+ },
+ {
+ "start": 4570.71,
+ "end": 4570.83,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8047
+ },
+ {
+ "start": 4570.83,
+ "end": 4571.01,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 8048
+ },
+ {
+ "start": 4571.01,
+ "end": 4571.15,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 8049
+ },
+ {
+ "start": 4571.15,
+ "end": 4571.39,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 8050
+ },
+ {
+ "start": 4571.39,
+ "end": 4571.85,
+ "confidence": 0,
+ "word": "app,",
+ "punct": "app,",
+ "index": 8051
+ },
+ {
+ "start": 4571.85,
+ "end": 4572.41,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 8052
+ },
+ {
+ "start": 4572.41,
+ "end": 4572.55,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8053
+ },
+ {
+ "start": 4572.55,
+ "end": 4572.87,
+ "confidence": 0,
+ "word": "another",
+ "punct": "another",
+ "index": 8054
+ },
+ {
+ "start": 4572.87,
+ "end": 4574.16,
+ "confidence": 0,
+ "word": "acquisition",
+ "punct": "acquisition.",
+ "index": 8055
+ }
+ ],
+ "start": 4570.31
+ }
+ },
+ {
+ "key": "3q5b6",
+ "text": "And I look at where you are from the 2,011 consent decree and where you are today.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4574.16,
+ "end": 4574.82,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 8056
+ },
+ {
+ "start": 4574.82,
+ "end": 4574.9,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8057
+ },
+ {
+ "start": 4574.9,
+ "end": 4575.12,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 8058
+ },
+ {
+ "start": 4575.12,
+ "end": 4575.28,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 8059
+ },
+ {
+ "start": 4575.28,
+ "end": 4575.56,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 8060
+ },
+ {
+ "start": 4575.56,
+ "end": 4576.34,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8061
+ },
+ {
+ "start": 4576.34,
+ "end": 4576.58,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8062
+ },
+ {
+ "start": 4576.58,
+ "end": 4576.98,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 8063
+ },
+ {
+ "start": 4576.98,
+ "end": 4577.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8064
+ },
+ {
+ "start": 4577.24,
+ "end": 4578.74,
+ "confidence": 0,
+ "word": "2,011",
+ "punct": "2,011",
+ "index": 8065
+ },
+ {
+ "start": 4578.74,
+ "end": 4579.72,
+ "confidence": 0,
+ "word": "consent",
+ "punct": "consent",
+ "index": 8066
+ },
+ {
+ "start": 4579.72,
+ "end": 4580.14,
+ "confidence": 0,
+ "word": "decree",
+ "punct": "decree",
+ "index": 8067
+ },
+ {
+ "start": 4580.14,
+ "end": 4580.98,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8068
+ },
+ {
+ "start": 4580.98,
+ "end": 4581.2,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 8069
+ },
+ {
+ "start": 4581.2,
+ "end": 4581.36,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8070
+ },
+ {
+ "start": 4581.36,
+ "end": 4581.52,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8071
+ },
+ {
+ "start": 4581.52,
+ "end": 4581.92,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today.",
+ "index": 8072
+ }
+ ],
+ "start": 4574.16
+ }
+ },
+ {
+ "key": "d34fq",
+ "text": "I'm thinking is this guy Outfoxing the foxes or is he going along with what is a major trend in an information age to try to harvest information for political forces.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4581.92,
+ "end": 4582.74,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 8073
+ },
+ {
+ "start": 4582.74,
+ "end": 4583.68,
+ "confidence": 0,
+ "word": "thinking",
+ "punct": "thinking",
+ "index": 8074
+ },
+ {
+ "start": 4583.68,
+ "end": 4584.26,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8075
+ },
+ {
+ "start": 4584.26,
+ "end": 4584.52,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 8076
+ },
+ {
+ "start": 4584.52,
+ "end": 4584.7,
+ "confidence": 0,
+ "word": "guy",
+ "punct": "guy",
+ "index": 8077
+ },
+ {
+ "start": 4584.7,
+ "end": 4585.64,
+ "confidence": 0,
+ "word": "outfoxing",
+ "punct": "Outfoxing",
+ "index": 8078
+ },
+ {
+ "start": 4585.64,
+ "end": 4585.76,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8079
+ },
+ {
+ "start": 4585.76,
+ "end": 4586.36,
+ "confidence": 0,
+ "word": "foxes",
+ "punct": "foxes",
+ "index": 8080
+ },
+ {
+ "start": 4586.36,
+ "end": 4586.74,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 8081
+ },
+ {
+ "start": 4586.74,
+ "end": 4587.1,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8082
+ },
+ {
+ "start": 4587.1,
+ "end": 4587.54,
+ "confidence": 0,
+ "word": "he",
+ "punct": "he",
+ "index": 8083
+ },
+ {
+ "start": 4587.54,
+ "end": 4588.6,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 8084
+ },
+ {
+ "start": 4588.6,
+ "end": 4589.14,
+ "confidence": 0,
+ "word": "along",
+ "punct": "along",
+ "index": 8085
+ },
+ {
+ "start": 4589.14,
+ "end": 4589.36,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 8086
+ },
+ {
+ "start": 4589.36,
+ "end": 4589.56,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 8087
+ },
+ {
+ "start": 4589.56,
+ "end": 4589.96,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8088
+ },
+ {
+ "start": 4589.96,
+ "end": 4590.24,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 8089
+ },
+ {
+ "start": 4590.24,
+ "end": 4590.88,
+ "confidence": 0,
+ "word": "major",
+ "punct": "major",
+ "index": 8090
+ },
+ {
+ "start": 4590.88,
+ "end": 4591.3,
+ "confidence": 0,
+ "word": "trend",
+ "punct": "trend",
+ "index": 8091
+ },
+ {
+ "start": 4591.3,
+ "end": 4591.44,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 8092
+ },
+ {
+ "start": 4591.44,
+ "end": 4591.56,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 8093
+ },
+ {
+ "start": 4591.56,
+ "end": 4592.16,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 8094
+ },
+ {
+ "start": 4592.16,
+ "end": 4592.54,
+ "confidence": 0,
+ "word": "age",
+ "punct": "age",
+ "index": 8095
+ },
+ {
+ "start": 4592.54,
+ "end": 4592.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8096
+ },
+ {
+ "start": 4592.72,
+ "end": 4592.96,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 8097
+ },
+ {
+ "start": 4592.96,
+ "end": 4593.08,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8098
+ },
+ {
+ "start": 4593.08,
+ "end": 4593.58,
+ "confidence": 0,
+ "word": "harvest",
+ "punct": "harvest",
+ "index": 8099
+ },
+ {
+ "start": 4593.58,
+ "end": 4594.5,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 8100
+ },
+ {
+ "start": 4594.5,
+ "end": 4595.36,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 8101
+ },
+ {
+ "start": 4595.36,
+ "end": 4595.88,
+ "confidence": 0,
+ "word": "political",
+ "punct": "political",
+ "index": 8102
+ },
+ {
+ "start": 4595.88,
+ "end": 4598.23,
+ "confidence": 0,
+ "word": "forces",
+ "punct": "forces.",
+ "index": 8103
+ }
+ ],
+ "start": 4581.92
+ }
+ },
+ {
+ "key": "d5cto",
+ "text": "Question to you is do you see that those applications that those companies volunteer and even what's app are going to fall into the same situation that you've just fallen into over the last several years.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4598.23,
+ "end": 4598.99,
+ "confidence": 0,
+ "word": "question",
+ "punct": "Question",
+ "index": 8104
+ },
+ {
+ "start": 4598.99,
+ "end": 4599.17,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8105
+ },
+ {
+ "start": 4599.17,
+ "end": 4599.35,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8106
+ },
+ {
+ "start": 4599.35,
+ "end": 4599.99,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8107
+ },
+ {
+ "start": 4599.99,
+ "end": 4600.83,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 8108
+ },
+ {
+ "start": 4600.83,
+ "end": 4600.97,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8109
+ },
+ {
+ "start": 4600.97,
+ "end": 4601.39,
+ "confidence": 0,
+ "word": "see",
+ "punct": "see",
+ "index": 8110
+ },
+ {
+ "start": 4601.39,
+ "end": 4601.59,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8111
+ },
+ {
+ "start": 4601.59,
+ "end": 4601.87,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 8112
+ },
+ {
+ "start": 4601.87,
+ "end": 4602.79,
+ "confidence": 0,
+ "word": "applications",
+ "punct": "applications",
+ "index": 8113
+ },
+ {
+ "start": 4602.79,
+ "end": 4603.09,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8114
+ },
+ {
+ "start": 4603.09,
+ "end": 4603.43,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 8115
+ },
+ {
+ "start": 4603.43,
+ "end": 4604.13,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies",
+ "index": 8116
+ },
+ {
+ "start": 4604.13,
+ "end": 4604.81,
+ "confidence": 0,
+ "word": "volunteer",
+ "punct": "volunteer",
+ "index": 8117
+ },
+ {
+ "start": 4604.81,
+ "end": 4605.45,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8118
+ },
+ {
+ "start": 4605.45,
+ "end": 4605.79,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 8119
+ },
+ {
+ "start": 4605.79,
+ "end": 4606.11,
+ "confidence": 0,
+ "word": "what's",
+ "punct": "what's",
+ "index": 8120
+ },
+ {
+ "start": 4606.11,
+ "end": 4606.35,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 8121
+ },
+ {
+ "start": 4606.35,
+ "end": 4606.49,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8122
+ },
+ {
+ "start": 4606.49,
+ "end": 4606.67,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 8123
+ },
+ {
+ "start": 4606.67,
+ "end": 4606.77,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8124
+ },
+ {
+ "start": 4606.77,
+ "end": 4607.05,
+ "confidence": 0,
+ "word": "fall",
+ "punct": "fall",
+ "index": 8125
+ },
+ {
+ "start": 4607.05,
+ "end": 4607.25,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 8126
+ },
+ {
+ "start": 4607.25,
+ "end": 4607.39,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8127
+ },
+ {
+ "start": 4607.39,
+ "end": 4607.67,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 8128
+ },
+ {
+ "start": 4607.67,
+ "end": 4608.45,
+ "confidence": 0,
+ "word": "situation",
+ "punct": "situation",
+ "index": 8129
+ },
+ {
+ "start": 4608.45,
+ "end": 4609.05,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8130
+ },
+ {
+ "start": 4609.05,
+ "end": 4609.31,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 8131
+ },
+ {
+ "start": 4609.31,
+ "end": 4609.47,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 8132
+ },
+ {
+ "start": 4609.47,
+ "end": 4609.85,
+ "confidence": 0,
+ "word": "fallen",
+ "punct": "fallen",
+ "index": 8133
+ },
+ {
+ "start": 4609.85,
+ "end": 4610.15,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 8134
+ },
+ {
+ "start": 4610.15,
+ "end": 4610.35,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 8135
+ },
+ {
+ "start": 4610.35,
+ "end": 4610.47,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8136
+ },
+ {
+ "start": 4610.47,
+ "end": 4610.69,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 8137
+ },
+ {
+ "start": 4610.69,
+ "end": 4611.05,
+ "confidence": 0,
+ "word": "several",
+ "punct": "several",
+ "index": 8138
+ },
+ {
+ "start": 4611.05,
+ "end": 4613.64,
+ "confidence": 0,
+ "word": "years",
+ "punct": "years.",
+ "index": 8139
+ }
+ ],
+ "start": 4598.23
+ }
+ },
+ {
+ "key": "2ocps",
+ "text": "Senator I'm not I'm not sure, specifically.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4613.64,
+ "end": 4614.62,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 8140
+ },
+ {
+ "start": 4614.62,
+ "end": 4614.86,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 8141
+ },
+ {
+ "start": 4614.86,
+ "end": 4615.66,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 8142
+ },
+ {
+ "start": 4615.66,
+ "end": 4616.64,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 8143
+ },
+ {
+ "start": 4616.64,
+ "end": 4616.84,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 8144
+ },
+ {
+ "start": 4616.84,
+ "end": 4617.1,
+ "confidence": 0,
+ "word": "sure,",
+ "punct": "sure,",
+ "index": 8145
+ },
+ {
+ "start": 4617.1,
+ "end": 4617.8,
+ "confidence": 0,
+ "word": "specifically",
+ "punct": "specifically.",
+ "index": 8146
+ }
+ ],
+ "start": 4613.64
+ }
+ },
+ {
+ "key": "8v3b",
+ "text": "Overall, I do think that these issues around information access are challenging to the specifics about those apps I'm not really that familiar with what planter does.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4617.8,
+ "end": 4618.94,
+ "confidence": 0,
+ "word": "overall,",
+ "punct": "Overall,",
+ "index": 8147
+ },
+ {
+ "start": 4618.94,
+ "end": 4619.4,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8148
+ },
+ {
+ "start": 4619.4,
+ "end": 4619.72,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 8149
+ },
+ {
+ "start": 4619.72,
+ "end": 4619.94,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8150
+ },
+ {
+ "start": 4619.94,
+ "end": 4620.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8151
+ },
+ {
+ "start": 4620.32,
+ "end": 4621.02,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 8152
+ },
+ {
+ "start": 4621.02,
+ "end": 4621.44,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues",
+ "index": 8153
+ },
+ {
+ "start": 4621.44,
+ "end": 4621.7,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 8154
+ },
+ {
+ "start": 4621.7,
+ "end": 4622.3,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 8155
+ },
+ {
+ "start": 4622.3,
+ "end": 4623,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access",
+ "index": 8156
+ },
+ {
+ "start": 4623,
+ "end": 4624.04,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8157
+ },
+ {
+ "start": 4624.04,
+ "end": 4624.68,
+ "confidence": 0,
+ "word": "challenging",
+ "punct": "challenging",
+ "index": 8158
+ },
+ {
+ "start": 4624.68,
+ "end": 4625.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8159
+ },
+ {
+ "start": 4625.38,
+ "end": 4625.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8160
+ },
+ {
+ "start": 4625.5,
+ "end": 4626.12,
+ "confidence": 0,
+ "word": "specifics",
+ "punct": "specifics",
+ "index": 8161
+ },
+ {
+ "start": 4626.12,
+ "end": 4626.38,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 8162
+ },
+ {
+ "start": 4626.38,
+ "end": 4626.78,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 8163
+ },
+ {
+ "start": 4626.78,
+ "end": 4627.18,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 8164
+ },
+ {
+ "start": 4627.18,
+ "end": 4627.88,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 8165
+ },
+ {
+ "start": 4627.88,
+ "end": 4628.18,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 8166
+ },
+ {
+ "start": 4628.18,
+ "end": 4628.48,
+ "confidence": 0,
+ "word": "really",
+ "punct": "really",
+ "index": 8167
+ },
+ {
+ "start": 4628.48,
+ "end": 4628.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8168
+ },
+ {
+ "start": 4628.7,
+ "end": 4629.16,
+ "confidence": 0,
+ "word": "familiar",
+ "punct": "familiar",
+ "index": 8169
+ },
+ {
+ "start": 4629.16,
+ "end": 4629.34,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 8170
+ },
+ {
+ "start": 4629.34,
+ "end": 4629.52,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 8171
+ },
+ {
+ "start": 4629.52,
+ "end": 4630.08,
+ "confidence": 0,
+ "word": "planter",
+ "punct": "planter",
+ "index": 8172
+ },
+ {
+ "start": 4630.08,
+ "end": 4630.96,
+ "confidence": 0,
+ "word": "does",
+ "punct": "does.",
+ "index": 8173
+ }
+ ],
+ "start": 4617.8
+ }
+ },
+ {
+ "key": "3dd42",
+ "text": "WhatsApp collects very little information and I think is less likely to have the kind of issues because of the way that the services architected but certainly I think that these are broad issues across the tech industry.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4630.96,
+ "end": 4632.02,
+ "confidence": 0,
+ "word": "whatsapp",
+ "punct": "WhatsApp",
+ "index": 8174
+ },
+ {
+ "start": 4632.02,
+ "end": 4632.98,
+ "confidence": 0,
+ "word": "collects",
+ "punct": "collects",
+ "index": 8175
+ },
+ {
+ "start": 4632.98,
+ "end": 4633.26,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 8176
+ },
+ {
+ "start": 4633.26,
+ "end": 4633.5,
+ "confidence": 0,
+ "word": "little",
+ "punct": "little",
+ "index": 8177
+ },
+ {
+ "start": 4633.5,
+ "end": 4634.3,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 8178
+ },
+ {
+ "start": 4634.3,
+ "end": 4635.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8179
+ },
+ {
+ "start": 4635.3,
+ "end": 4635.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8180
+ },
+ {
+ "start": 4635.74,
+ "end": 4635.92,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8181
+ },
+ {
+ "start": 4635.92,
+ "end": 4636.1,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8182
+ },
+ {
+ "start": 4636.1,
+ "end": 4636.34,
+ "confidence": 0,
+ "word": "less",
+ "punct": "less",
+ "index": 8183
+ },
+ {
+ "start": 4636.34,
+ "end": 4636.68,
+ "confidence": 0,
+ "word": "likely",
+ "punct": "likely",
+ "index": 8184
+ },
+ {
+ "start": 4636.68,
+ "end": 4636.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8185
+ },
+ {
+ "start": 4636.8,
+ "end": 4637.12,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 8186
+ },
+ {
+ "start": 4637.12,
+ "end": 4637.68,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8187
+ },
+ {
+ "start": 4637.68,
+ "end": 4637.82,
+ "confidence": 0,
+ "word": "kind",
+ "punct": "kind",
+ "index": 8188
+ },
+ {
+ "start": 4637.82,
+ "end": 4637.92,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8189
+ },
+ {
+ "start": 4637.92,
+ "end": 4638.28,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues",
+ "index": 8190
+ },
+ {
+ "start": 4638.28,
+ "end": 4638.54,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 8191
+ },
+ {
+ "start": 4638.54,
+ "end": 4638.66,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8192
+ },
+ {
+ "start": 4638.66,
+ "end": 4638.78,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8193
+ },
+ {
+ "start": 4638.78,
+ "end": 4638.86,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 8194
+ },
+ {
+ "start": 4638.86,
+ "end": 4639,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8195
+ },
+ {
+ "start": 4639,
+ "end": 4639.12,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8196
+ },
+ {
+ "start": 4639.12,
+ "end": 4639.56,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 8197
+ },
+ {
+ "start": 4639.56,
+ "end": 4640.18,
+ "confidence": 0,
+ "word": "architected",
+ "punct": "architected",
+ "index": 8198
+ },
+ {
+ "start": 4640.18,
+ "end": 4640.36,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 8199
+ },
+ {
+ "start": 4640.36,
+ "end": 4640.72,
+ "confidence": 0,
+ "word": "certainly",
+ "punct": "certainly",
+ "index": 8200
+ },
+ {
+ "start": 4640.72,
+ "end": 4640.8,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8201
+ },
+ {
+ "start": 4640.8,
+ "end": 4640.96,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8202
+ },
+ {
+ "start": 4640.96,
+ "end": 4641.1,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8203
+ },
+ {
+ "start": 4641.1,
+ "end": 4641.34,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 8204
+ },
+ {
+ "start": 4641.34,
+ "end": 4641.5,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8205
+ },
+ {
+ "start": 4641.5,
+ "end": 4641.8,
+ "confidence": 0,
+ "word": "broad",
+ "punct": "broad",
+ "index": 8206
+ },
+ {
+ "start": 4641.8,
+ "end": 4642.16,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues",
+ "index": 8207
+ },
+ {
+ "start": 4642.16,
+ "end": 4642.58,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 8208
+ },
+ {
+ "start": 4642.58,
+ "end": 4642.72,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8209
+ },
+ {
+ "start": 4642.72,
+ "end": 4642.9,
+ "confidence": 0,
+ "word": "tech",
+ "punct": "tech",
+ "index": 8210
+ },
+ {
+ "start": 4642.9,
+ "end": 4643.94,
+ "confidence": 0,
+ "word": "industry",
+ "punct": "industry.",
+ "index": 8211
+ }
+ ],
+ "start": 4630.96
+ }
+ },
+ {
+ "key": "epaqp",
+ "text": "Well, I guess given the track record of where Facebook is and why you're here today, I guess people would say that they didn't act boldly enough.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4643.94,
+ "end": 4644.78,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "Well,",
+ "index": 8212
+ },
+ {
+ "start": 4644.78,
+ "end": 4644.9,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8213
+ },
+ {
+ "start": 4644.9,
+ "end": 4645.2,
+ "confidence": 0,
+ "word": "guess",
+ "punct": "guess",
+ "index": 8214
+ },
+ {
+ "start": 4645.2,
+ "end": 4646.14,
+ "confidence": 0,
+ "word": "given",
+ "punct": "given",
+ "index": 8215
+ },
+ {
+ "start": 4646.14,
+ "end": 4646.6,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8216
+ },
+ {
+ "start": 4646.6,
+ "end": 4646.94,
+ "confidence": 0,
+ "word": "track",
+ "punct": "track",
+ "index": 8217
+ },
+ {
+ "start": 4646.94,
+ "end": 4647.26,
+ "confidence": 0,
+ "word": "record",
+ "punct": "record",
+ "index": 8218
+ },
+ {
+ "start": 4647.26,
+ "end": 4647.36,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8219
+ },
+ {
+ "start": 4647.36,
+ "end": 4647.54,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 8220
+ },
+ {
+ "start": 4647.54,
+ "end": 4648.02,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 8221
+ },
+ {
+ "start": 4648.02,
+ "end": 4648.18,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8222
+ },
+ {
+ "start": 4648.18,
+ "end": 4648.32,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8223
+ },
+ {
+ "start": 4648.32,
+ "end": 4648.46,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 8224
+ },
+ {
+ "start": 4648.46,
+ "end": 4648.66,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 8225
+ },
+ {
+ "start": 4648.66,
+ "end": 4648.86,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 8226
+ },
+ {
+ "start": 4648.86,
+ "end": 4649.4,
+ "confidence": 0,
+ "word": "today,",
+ "punct": "today,",
+ "index": 8227
+ },
+ {
+ "start": 4649.4,
+ "end": 4649.86,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8228
+ },
+ {
+ "start": 4649.86,
+ "end": 4650.16,
+ "confidence": 0,
+ "word": "guess",
+ "punct": "guess",
+ "index": 8229
+ },
+ {
+ "start": 4650.16,
+ "end": 4650.46,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 8230
+ },
+ {
+ "start": 4650.46,
+ "end": 4650.66,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 8231
+ },
+ {
+ "start": 4650.66,
+ "end": 4650.82,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 8232
+ },
+ {
+ "start": 4650.82,
+ "end": 4650.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8233
+ },
+ {
+ "start": 4650.98,
+ "end": 4651.1,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 8234
+ },
+ {
+ "start": 4651.1,
+ "end": 4651.34,
+ "confidence": 0,
+ "word": "didn't",
+ "punct": "didn't",
+ "index": 8235
+ },
+ {
+ "start": 4651.34,
+ "end": 4651.68,
+ "confidence": 0,
+ "word": "act",
+ "punct": "act",
+ "index": 8236
+ },
+ {
+ "start": 4651.68,
+ "end": 4652.76,
+ "confidence": 0,
+ "word": "boldly",
+ "punct": "boldly",
+ "index": 8237
+ },
+ {
+ "start": 4652.76,
+ "end": 4653.1,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough.",
+ "index": 8238
+ }
+ ],
+ "start": 4643.94
+ }
+ },
+ {
+ "key": "fbnuo",
+ "text": "And the fact that people like John Bolton basically was an investor in New York Times article earlier.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4653.1,
+ "end": 4654.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 8239
+ },
+ {
+ "start": 4654.3,
+ "end": 4655.04,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8240
+ },
+ {
+ "start": 4655.04,
+ "end": 4655.42,
+ "confidence": 0,
+ "word": "fact",
+ "punct": "fact",
+ "index": 8241
+ },
+ {
+ "start": 4655.42,
+ "end": 4657.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8242
+ },
+ {
+ "start": 4657.4,
+ "end": 4658.38,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 8243
+ },
+ {
+ "start": 4658.38,
+ "end": 4658.64,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 8244
+ },
+ {
+ "start": 4658.64,
+ "end": 4658.94,
+ "confidence": 0,
+ "word": "john",
+ "punct": "John",
+ "index": 8245
+ },
+ {
+ "start": 4658.94,
+ "end": 4659.78,
+ "confidence": 0,
+ "word": "bolton",
+ "punct": "Bolton",
+ "index": 8246
+ },
+ {
+ "start": 4659.78,
+ "end": 4660.76,
+ "confidence": 0,
+ "word": "basically",
+ "punct": "basically",
+ "index": 8247
+ },
+ {
+ "start": 4660.76,
+ "end": 4661.12,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 8248
+ },
+ {
+ "start": 4661.12,
+ "end": 4661.4,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 8249
+ },
+ {
+ "start": 4661.4,
+ "end": 4662,
+ "confidence": 0,
+ "word": "investor",
+ "punct": "investor",
+ "index": 8250
+ },
+ {
+ "start": 4662,
+ "end": 4663.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 8251
+ },
+ {
+ "start": 4663.78,
+ "end": 4664.94,
+ "confidence": 0,
+ "word": "new",
+ "punct": "New",
+ "index": 8252
+ },
+ {
+ "start": 4664.94,
+ "end": 4665.14,
+ "confidence": 0,
+ "word": "york",
+ "punct": "York",
+ "index": 8253
+ },
+ {
+ "start": 4665.14,
+ "end": 4665.5,
+ "confidence": 0,
+ "word": "times",
+ "punct": "Times",
+ "index": 8254
+ },
+ {
+ "start": 4665.5,
+ "end": 4666,
+ "confidence": 0,
+ "word": "article",
+ "punct": "article",
+ "index": 8255
+ },
+ {
+ "start": 4666,
+ "end": 4666.5,
+ "confidence": 0,
+ "word": "earlier",
+ "punct": "earlier.",
+ "index": 8256
+ }
+ ],
+ "start": 4653.1
+ }
+ },
+ {
+ "key": "5ng18",
+ "text": "I guess it was actually last month that the Bolton pack was obsessed with how America was becoming limp, rested and spineless and had wanted research and messaging for national security issues.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4666.5,
+ "end": 4667.18,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8257
+ },
+ {
+ "start": 4667.18,
+ "end": 4667.38,
+ "confidence": 0,
+ "word": "guess",
+ "punct": "guess",
+ "index": 8258
+ },
+ {
+ "start": 4667.38,
+ "end": 4667.5,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 8259
+ },
+ {
+ "start": 4667.5,
+ "end": 4667.64,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 8260
+ },
+ {
+ "start": 4667.64,
+ "end": 4668.12,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 8261
+ },
+ {
+ "start": 4668.12,
+ "end": 4668.52,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 8262
+ },
+ {
+ "start": 4668.52,
+ "end": 4669.46,
+ "confidence": 0,
+ "word": "month",
+ "punct": "month",
+ "index": 8263
+ },
+ {
+ "start": 4669.46,
+ "end": 4670.22,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8264
+ },
+ {
+ "start": 4670.22,
+ "end": 4670.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8265
+ },
+ {
+ "start": 4670.36,
+ "end": 4670.72,
+ "confidence": 0,
+ "word": "bolton",
+ "punct": "Bolton",
+ "index": 8266
+ },
+ {
+ "start": 4670.72,
+ "end": 4670.96,
+ "confidence": 0,
+ "word": "pack",
+ "punct": "pack",
+ "index": 8267
+ },
+ {
+ "start": 4670.96,
+ "end": 4671.12,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 8268
+ },
+ {
+ "start": 4671.12,
+ "end": 4671.58,
+ "confidence": 0,
+ "word": "obsessed",
+ "punct": "obsessed",
+ "index": 8269
+ },
+ {
+ "start": 4671.58,
+ "end": 4671.72,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 8270
+ },
+ {
+ "start": 4671.72,
+ "end": 4671.86,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 8271
+ },
+ {
+ "start": 4671.86,
+ "end": 4672.28,
+ "confidence": 0,
+ "word": "america",
+ "punct": "America",
+ "index": 8272
+ },
+ {
+ "start": 4672.28,
+ "end": 4672.44,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 8273
+ },
+ {
+ "start": 4672.44,
+ "end": 4672.82,
+ "confidence": 0,
+ "word": "becoming",
+ "punct": "becoming",
+ "index": 8274
+ },
+ {
+ "start": 4672.82,
+ "end": 4673.18,
+ "confidence": 0,
+ "word": "limp,",
+ "punct": "limp,",
+ "index": 8275
+ },
+ {
+ "start": 4673.18,
+ "end": 4673.54,
+ "confidence": 0,
+ "word": "rested",
+ "punct": "rested",
+ "index": 8276
+ },
+ {
+ "start": 4673.54,
+ "end": 4673.72,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8277
+ },
+ {
+ "start": 4673.72,
+ "end": 4674.34,
+ "confidence": 0,
+ "word": "spineless",
+ "punct": "spineless",
+ "index": 8278
+ },
+ {
+ "start": 4674.34,
+ "end": 4674.46,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8279
+ },
+ {
+ "start": 4674.46,
+ "end": 4674.6,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 8280
+ },
+ {
+ "start": 4674.6,
+ "end": 4674.9,
+ "confidence": 0,
+ "word": "wanted",
+ "punct": "wanted",
+ "index": 8281
+ },
+ {
+ "start": 4674.9,
+ "end": 4675.3,
+ "confidence": 0,
+ "word": "research",
+ "punct": "research",
+ "index": 8282
+ },
+ {
+ "start": 4675.3,
+ "end": 4675.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8283
+ },
+ {
+ "start": 4675.42,
+ "end": 4675.94,
+ "confidence": 0,
+ "word": "messaging",
+ "punct": "messaging",
+ "index": 8284
+ },
+ {
+ "start": 4675.94,
+ "end": 4676.12,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 8285
+ },
+ {
+ "start": 4676.12,
+ "end": 4676.58,
+ "confidence": 0,
+ "word": "national",
+ "punct": "national",
+ "index": 8286
+ },
+ {
+ "start": 4676.58,
+ "end": 4677.08,
+ "confidence": 0,
+ "word": "security",
+ "punct": "security",
+ "index": 8287
+ },
+ {
+ "start": 4677.08,
+ "end": 4677.5,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues.",
+ "index": 8288
+ }
+ ],
+ "start": 4666.5
+ }
+ },
+ {
+ "key": "3mj4p",
+ "text": "So the fact that you know, there are a lot of people who are interested in this larger effort.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4677.5,
+ "end": 4678.8,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 8289
+ },
+ {
+ "start": 4678.8,
+ "end": 4679.14,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8290
+ },
+ {
+ "start": 4679.14,
+ "end": 4679.46,
+ "confidence": 0,
+ "word": "fact",
+ "punct": "fact",
+ "index": 8291
+ },
+ {
+ "start": 4679.46,
+ "end": 4679.92,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8292
+ },
+ {
+ "start": 4679.92,
+ "end": 4681.1,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8293
+ },
+ {
+ "start": 4681.1,
+ "end": 4681.26,
+ "confidence": 0,
+ "word": "know,",
+ "punct": "know,",
+ "index": 8294
+ },
+ {
+ "start": 4681.26,
+ "end": 4681.42,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 8295
+ },
+ {
+ "start": 4681.42,
+ "end": 4681.58,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8296
+ },
+ {
+ "start": 4681.58,
+ "end": 4681.64,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 8297
+ },
+ {
+ "start": 4681.64,
+ "end": 4681.96,
+ "confidence": 0,
+ "word": "lot",
+ "punct": "lot",
+ "index": 8298
+ },
+ {
+ "start": 4681.96,
+ "end": 4682.14,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8299
+ },
+ {
+ "start": 4682.14,
+ "end": 4683.03,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 8300
+ },
+ {
+ "start": 4683.03,
+ "end": 4683.13,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 8301
+ },
+ {
+ "start": 4683.13,
+ "end": 4683.35,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8302
+ },
+ {
+ "start": 4683.35,
+ "end": 4684.11,
+ "confidence": 0,
+ "word": "interested",
+ "punct": "interested",
+ "index": 8303
+ },
+ {
+ "start": 4684.11,
+ "end": 4684.27,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 8304
+ },
+ {
+ "start": 4684.27,
+ "end": 4684.51,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 8305
+ },
+ {
+ "start": 4684.51,
+ "end": 4685.57,
+ "confidence": 0,
+ "word": "larger",
+ "punct": "larger",
+ "index": 8306
+ },
+ {
+ "start": 4685.57,
+ "end": 4685.99,
+ "confidence": 0,
+ "word": "effort",
+ "punct": "effort.",
+ "index": 8307
+ }
+ ],
+ "start": 4677.5
+ }
+ },
+ {
+ "key": "6sb9g",
+ "text": "And what I think my constituents want to know is was this discussed at your board meetings and what are the applications and interests that are being discussed without putting real teeth into this?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4685.99,
+ "end": 4686.59,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 8308
+ },
+ {
+ "start": 4686.59,
+ "end": 4687.15,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 8309
+ },
+ {
+ "start": 4687.15,
+ "end": 4687.23,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8310
+ },
+ {
+ "start": 4687.23,
+ "end": 4687.47,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8311
+ },
+ {
+ "start": 4687.47,
+ "end": 4687.75,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 8312
+ },
+ {
+ "start": 4687.75,
+ "end": 4688.55,
+ "confidence": 0,
+ "word": "constituents",
+ "punct": "constituents",
+ "index": 8313
+ },
+ {
+ "start": 4688.55,
+ "end": 4688.81,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 8314
+ },
+ {
+ "start": 4688.81,
+ "end": 4688.93,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8315
+ },
+ {
+ "start": 4688.93,
+ "end": 4689.13,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 8316
+ },
+ {
+ "start": 4689.13,
+ "end": 4689.43,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8317
+ },
+ {
+ "start": 4689.43,
+ "end": 4689.67,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 8318
+ },
+ {
+ "start": 4689.67,
+ "end": 4689.89,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 8319
+ },
+ {
+ "start": 4689.89,
+ "end": 4690.37,
+ "confidence": 0,
+ "word": "discussed",
+ "punct": "discussed",
+ "index": 8320
+ },
+ {
+ "start": 4690.37,
+ "end": 4690.51,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 8321
+ },
+ {
+ "start": 4690.51,
+ "end": 4690.69,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 8322
+ },
+ {
+ "start": 4690.69,
+ "end": 4690.97,
+ "confidence": 0,
+ "word": "board",
+ "punct": "board",
+ "index": 8323
+ },
+ {
+ "start": 4690.97,
+ "end": 4691.43,
+ "confidence": 0,
+ "word": "meetings",
+ "punct": "meetings",
+ "index": 8324
+ },
+ {
+ "start": 4691.43,
+ "end": 4692.33,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8325
+ },
+ {
+ "start": 4692.33,
+ "end": 4692.95,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 8326
+ },
+ {
+ "start": 4692.95,
+ "end": 4693.09,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8327
+ },
+ {
+ "start": 4693.09,
+ "end": 4693.29,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8328
+ },
+ {
+ "start": 4693.29,
+ "end": 4694.31,
+ "confidence": 0,
+ "word": "applications",
+ "punct": "applications",
+ "index": 8329
+ },
+ {
+ "start": 4694.31,
+ "end": 4694.61,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8330
+ },
+ {
+ "start": 4694.61,
+ "end": 4695.13,
+ "confidence": 0,
+ "word": "interests",
+ "punct": "interests",
+ "index": 8331
+ },
+ {
+ "start": 4695.13,
+ "end": 4695.49,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8332
+ },
+ {
+ "start": 4695.49,
+ "end": 4696.6,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8333
+ },
+ {
+ "start": 4696.6,
+ "end": 4697.42,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 8334
+ },
+ {
+ "start": 4697.42,
+ "end": 4698,
+ "confidence": 0,
+ "word": "discussed",
+ "punct": "discussed",
+ "index": 8335
+ },
+ {
+ "start": 4698,
+ "end": 4698.4,
+ "confidence": 0,
+ "word": "without",
+ "punct": "without",
+ "index": 8336
+ },
+ {
+ "start": 4698.4,
+ "end": 4698.82,
+ "confidence": 0,
+ "word": "putting",
+ "punct": "putting",
+ "index": 8337
+ },
+ {
+ "start": 4698.82,
+ "end": 4699.38,
+ "confidence": 0,
+ "word": "real",
+ "punct": "real",
+ "index": 8338
+ },
+ {
+ "start": 4699.38,
+ "end": 4699.8,
+ "confidence": 0,
+ "word": "teeth",
+ "punct": "teeth",
+ "index": 8339
+ },
+ {
+ "start": 4699.8,
+ "end": 4700.1,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 8340
+ },
+ {
+ "start": 4700.1,
+ "end": 4700.26,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this?",
+ "index": 8341
+ }
+ ],
+ "start": 4685.99
+ }
+ },
+ {
+ "key": "8da0d",
+ "text": "We don't want to come back to this situation again.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4700.26,
+ "end": 4700.46,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 8342
+ },
+ {
+ "start": 4700.46,
+ "end": 4700.68,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 8343
+ },
+ {
+ "start": 4700.68,
+ "end": 4701.06,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 8344
+ },
+ {
+ "start": 4701.06,
+ "end": 4701.2,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8345
+ },
+ {
+ "start": 4701.2,
+ "end": 4701.38,
+ "confidence": 0,
+ "word": "come",
+ "punct": "come",
+ "index": 8346
+ },
+ {
+ "start": 4701.38,
+ "end": 4701.56,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 8347
+ },
+ {
+ "start": 4701.56,
+ "end": 4701.7,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8348
+ },
+ {
+ "start": 4701.7,
+ "end": 4701.88,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 8349
+ },
+ {
+ "start": 4701.88,
+ "end": 4702.4,
+ "confidence": 0,
+ "word": "situation",
+ "punct": "situation",
+ "index": 8350
+ },
+ {
+ "start": 4702.4,
+ "end": 4702.72,
+ "confidence": 0,
+ "word": "again",
+ "punct": "again.",
+ "index": 8351
+ }
+ ],
+ "start": 4700.26
+ }
+ },
+ {
+ "key": "ak41",
+ "text": "I believe you have all the talent.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4702.72,
+ "end": 4703.42,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8352
+ },
+ {
+ "start": 4703.42,
+ "end": 4703.7,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 8353
+ },
+ {
+ "start": 4703.7,
+ "end": 4703.82,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8354
+ },
+ {
+ "start": 4703.82,
+ "end": 4703.96,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 8355
+ },
+ {
+ "start": 4703.96,
+ "end": 4704.08,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 8356
+ },
+ {
+ "start": 4704.08,
+ "end": 4704.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8357
+ },
+ {
+ "start": 4704.22,
+ "end": 4704.68,
+ "confidence": 0,
+ "word": "talent",
+ "punct": "talent.",
+ "index": 8358
+ }
+ ],
+ "start": 4702.72
+ }
+ },
+ {
+ "key": "70vrb",
+ "text": "My question is whether you have all the will to help us solve this problem.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4704.68,
+ "end": 4704.96,
+ "confidence": 0,
+ "word": "my",
+ "punct": "My",
+ "index": 8359
+ },
+ {
+ "start": 4704.96,
+ "end": 4705.32,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question",
+ "index": 8360
+ },
+ {
+ "start": 4705.32,
+ "end": 4705.48,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8361
+ },
+ {
+ "start": 4705.48,
+ "end": 4705.74,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 8362
+ },
+ {
+ "start": 4705.74,
+ "end": 4705.84,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8363
+ },
+ {
+ "start": 4705.84,
+ "end": 4706,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 8364
+ },
+ {
+ "start": 4706,
+ "end": 4706.16,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 8365
+ },
+ {
+ "start": 4706.16,
+ "end": 4706.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8366
+ },
+ {
+ "start": 4706.32,
+ "end": 4706.76,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 8367
+ },
+ {
+ "start": 4706.76,
+ "end": 4707.16,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8368
+ },
+ {
+ "start": 4707.16,
+ "end": 4707.38,
+ "confidence": 0,
+ "word": "help",
+ "punct": "help",
+ "index": 8369
+ },
+ {
+ "start": 4707.38,
+ "end": 4707.56,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 8370
+ },
+ {
+ "start": 4707.56,
+ "end": 4707.84,
+ "confidence": 0,
+ "word": "solve",
+ "punct": "solve",
+ "index": 8371
+ },
+ {
+ "start": 4707.84,
+ "end": 4708.04,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 8372
+ },
+ {
+ "start": 4708.04,
+ "end": 4709.38,
+ "confidence": 0,
+ "word": "problem",
+ "punct": "problem.",
+ "index": 8373
+ }
+ ],
+ "start": 4704.68
+ }
+ },
+ {
+ "key": "49pn2",
+ "text": "Yes, Senator, so data, privacy and foreign interference in elections are certainly topics that we have discussed at the board meeting.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4709.38,
+ "end": 4710.4,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 8374
+ },
+ {
+ "start": 4710.4,
+ "end": 4710.86,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 8375
+ },
+ {
+ "start": 4710.86,
+ "end": 4711.32,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 8376
+ },
+ {
+ "start": 4711.32,
+ "end": 4711.94,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 8377
+ },
+ {
+ "start": 4711.94,
+ "end": 4712.46,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 8378
+ },
+ {
+ "start": 4712.46,
+ "end": 4713.44,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8379
+ },
+ {
+ "start": 4713.44,
+ "end": 4714.18,
+ "confidence": 0,
+ "word": "foreign",
+ "punct": "foreign",
+ "index": 8380
+ },
+ {
+ "start": 4714.18,
+ "end": 4714.68,
+ "confidence": 0,
+ "word": "interference",
+ "punct": "interference",
+ "index": 8381
+ },
+ {
+ "start": 4714.68,
+ "end": 4714.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 8382
+ },
+ {
+ "start": 4714.78,
+ "end": 4715.24,
+ "confidence": 0,
+ "word": "elections",
+ "punct": "elections",
+ "index": 8383
+ },
+ {
+ "start": 4715.24,
+ "end": 4715.5,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8384
+ },
+ {
+ "start": 4715.5,
+ "end": 4715.9,
+ "confidence": 0,
+ "word": "certainly",
+ "punct": "certainly",
+ "index": 8385
+ },
+ {
+ "start": 4715.9,
+ "end": 4716.36,
+ "confidence": 0,
+ "word": "topics",
+ "punct": "topics",
+ "index": 8386
+ },
+ {
+ "start": 4716.36,
+ "end": 4716.52,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8387
+ },
+ {
+ "start": 4716.52,
+ "end": 4716.62,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 8388
+ },
+ {
+ "start": 4716.62,
+ "end": 4716.78,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 8389
+ },
+ {
+ "start": 4716.78,
+ "end": 4717.18,
+ "confidence": 0,
+ "word": "discussed",
+ "punct": "discussed",
+ "index": 8390
+ },
+ {
+ "start": 4717.18,
+ "end": 4717.28,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 8391
+ },
+ {
+ "start": 4717.28,
+ "end": 4717.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8392
+ },
+ {
+ "start": 4717.38,
+ "end": 4717.62,
+ "confidence": 0,
+ "word": "board",
+ "punct": "board",
+ "index": 8393
+ },
+ {
+ "start": 4717.62,
+ "end": 4717.9,
+ "confidence": 0,
+ "word": "meeting",
+ "punct": "meeting.",
+ "index": 8394
+ }
+ ],
+ "start": 4709.38
+ }
+ },
+ {
+ "key": "4memg",
+ "text": "These are some of the biggest issues that the company has faced and we feel a huge responsibility to get these right.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4717.9,
+ "end": 4718.14,
+ "confidence": 0,
+ "word": "these",
+ "punct": "These",
+ "index": 8395
+ },
+ {
+ "start": 4718.14,
+ "end": 4718.32,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8396
+ },
+ {
+ "start": 4718.32,
+ "end": 4718.48,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 8397
+ },
+ {
+ "start": 4718.48,
+ "end": 4718.56,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8398
+ },
+ {
+ "start": 4718.56,
+ "end": 4718.66,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8399
+ },
+ {
+ "start": 4718.66,
+ "end": 4718.9,
+ "confidence": 0,
+ "word": "biggest",
+ "punct": "biggest",
+ "index": 8400
+ },
+ {
+ "start": 4718.9,
+ "end": 4719.24,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues",
+ "index": 8401
+ },
+ {
+ "start": 4719.24,
+ "end": 4719.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8402
+ },
+ {
+ "start": 4719.38,
+ "end": 4719.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8403
+ },
+ {
+ "start": 4719.52,
+ "end": 4719.84,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 8404
+ },
+ {
+ "start": 4719.84,
+ "end": 4720.04,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 8405
+ },
+ {
+ "start": 4720.04,
+ "end": 4720.36,
+ "confidence": 0,
+ "word": "faced",
+ "punct": "faced",
+ "index": 8406
+ },
+ {
+ "start": 4720.36,
+ "end": 4720.58,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8407
+ },
+ {
+ "start": 4720.58,
+ "end": 4720.78,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 8408
+ },
+ {
+ "start": 4720.78,
+ "end": 4720.96,
+ "confidence": 0,
+ "word": "feel",
+ "punct": "feel",
+ "index": 8409
+ },
+ {
+ "start": 4720.96,
+ "end": 4721.08,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 8410
+ },
+ {
+ "start": 4721.08,
+ "end": 4721.62,
+ "confidence": 0,
+ "word": "huge",
+ "punct": "huge",
+ "index": 8411
+ },
+ {
+ "start": 4721.62,
+ "end": 4722.42,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 8412
+ },
+ {
+ "start": 4722.42,
+ "end": 4722.94,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8413
+ },
+ {
+ "start": 4722.94,
+ "end": 4723.06,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 8414
+ },
+ {
+ "start": 4723.06,
+ "end": 4723.34,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 8415
+ },
+ {
+ "start": 4723.34,
+ "end": 4724.54,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right.",
+ "index": 8416
+ }
+ ],
+ "start": 4717.9
+ }
+ },
+ {
+ "key": "5dghi",
+ "text": "Do you believe the European regulation should be applied here in the U S Senator?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4724.54,
+ "end": 4725.54,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 8417
+ },
+ {
+ "start": 4725.54,
+ "end": 4725.66,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8418
+ },
+ {
+ "start": 4725.66,
+ "end": 4725.88,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 8419
+ },
+ {
+ "start": 4725.88,
+ "end": 4725.96,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8420
+ },
+ {
+ "start": 4725.96,
+ "end": 4726.42,
+ "confidence": 0,
+ "word": "european",
+ "punct": "European",
+ "index": 8421
+ },
+ {
+ "start": 4726.42,
+ "end": 4726.94,
+ "confidence": 0,
+ "word": "regulation",
+ "punct": "regulation",
+ "index": 8422
+ },
+ {
+ "start": 4726.94,
+ "end": 4727.2,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 8423
+ },
+ {
+ "start": 4727.2,
+ "end": 4727.28,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8424
+ },
+ {
+ "start": 4727.28,
+ "end": 4727.58,
+ "confidence": 0,
+ "word": "applied",
+ "punct": "applied",
+ "index": 8425
+ },
+ {
+ "start": 4727.58,
+ "end": 4727.76,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 8426
+ },
+ {
+ "start": 4727.76,
+ "end": 4727.86,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 8427
+ },
+ {
+ "start": 4727.86,
+ "end": 4727.96,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8428
+ },
+ {
+ "start": 4727.96,
+ "end": 4728.02,
+ "confidence": 0,
+ "word": "u",
+ "punct": "U",
+ "index": 8429
+ },
+ {
+ "start": 4728.02,
+ "end": 4729.68,
+ "confidence": 0,
+ "word": "s",
+ "punct": "S",
+ "index": 8430
+ },
+ {
+ "start": 4729.68,
+ "end": 4730.66,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator?",
+ "index": 8431
+ }
+ ],
+ "start": 4724.54
+ }
+ },
+ {
+ "key": "blas7",
+ "text": "I think everyone in the world deserves good privacy protection.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4730.66,
+ "end": 4730.76,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8432
+ },
+ {
+ "start": 4730.76,
+ "end": 4730.96,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8433
+ },
+ {
+ "start": 4730.96,
+ "end": 4731.42,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 8434
+ },
+ {
+ "start": 4731.42,
+ "end": 4731.5,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 8435
+ },
+ {
+ "start": 4731.5,
+ "end": 4731.62,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8436
+ },
+ {
+ "start": 4731.62,
+ "end": 4731.9,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 8437
+ },
+ {
+ "start": 4731.9,
+ "end": 4732.52,
+ "confidence": 0,
+ "word": "deserves",
+ "punct": "deserves",
+ "index": 8438
+ },
+ {
+ "start": 4732.52,
+ "end": 4732.86,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 8439
+ },
+ {
+ "start": 4732.86,
+ "end": 4733.36,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 8440
+ },
+ {
+ "start": 4733.36,
+ "end": 4733.8,
+ "confidence": 0,
+ "word": "protection",
+ "punct": "protection.",
+ "index": 8441
+ }
+ ],
+ "start": 4730.66
+ }
+ },
+ {
+ "key": "d6ap6",
+ "text": "And regardless of whether we implement the exact same regulation, I would guess that it would be somewhat different because we have somewhat different sensibilities in the US as other countries we're committed to rolling out the controls and the affirmative consent.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4733.8,
+ "end": 4735.96,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 8442
+ },
+ {
+ "start": 4735.96,
+ "end": 4736.96,
+ "confidence": 0,
+ "word": "regardless",
+ "punct": "regardless",
+ "index": 8443
+ },
+ {
+ "start": 4736.96,
+ "end": 4737.12,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8444
+ },
+ {
+ "start": 4737.12,
+ "end": 4737.44,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 8445
+ },
+ {
+ "start": 4737.44,
+ "end": 4737.94,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 8446
+ },
+ {
+ "start": 4737.94,
+ "end": 4738.32,
+ "confidence": 0,
+ "word": "implement",
+ "punct": "implement",
+ "index": 8447
+ },
+ {
+ "start": 4738.32,
+ "end": 4738.48,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8448
+ },
+ {
+ "start": 4738.48,
+ "end": 4738.82,
+ "confidence": 0,
+ "word": "exact",
+ "punct": "exact",
+ "index": 8449
+ },
+ {
+ "start": 4738.82,
+ "end": 4739.04,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 8450
+ },
+ {
+ "start": 4739.04,
+ "end": 4739.58,
+ "confidence": 0,
+ "word": "regulation,",
+ "punct": "regulation,",
+ "index": 8451
+ },
+ {
+ "start": 4739.58,
+ "end": 4739.64,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8452
+ },
+ {
+ "start": 4739.64,
+ "end": 4739.92,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 8453
+ },
+ {
+ "start": 4739.92,
+ "end": 4740.92,
+ "confidence": 0,
+ "word": "guess",
+ "punct": "guess",
+ "index": 8454
+ },
+ {
+ "start": 4740.92,
+ "end": 4741.08,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8455
+ },
+ {
+ "start": 4741.08,
+ "end": 4741.16,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 8456
+ },
+ {
+ "start": 4741.16,
+ "end": 4741.3,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 8457
+ },
+ {
+ "start": 4741.3,
+ "end": 4741.4,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8458
+ },
+ {
+ "start": 4741.4,
+ "end": 4741.68,
+ "confidence": 0,
+ "word": "somewhat",
+ "punct": "somewhat",
+ "index": 8459
+ },
+ {
+ "start": 4741.68,
+ "end": 4741.96,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 8460
+ },
+ {
+ "start": 4741.96,
+ "end": 4742.16,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 8461
+ },
+ {
+ "start": 4742.16,
+ "end": 4742.24,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 8462
+ },
+ {
+ "start": 4742.24,
+ "end": 4742.36,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 8463
+ },
+ {
+ "start": 4742.36,
+ "end": 4742.64,
+ "confidence": 0,
+ "word": "somewhat",
+ "punct": "somewhat",
+ "index": 8464
+ },
+ {
+ "start": 4742.64,
+ "end": 4742.9,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 8465
+ },
+ {
+ "start": 4742.9,
+ "end": 4743.56,
+ "confidence": 0,
+ "word": "sensibilities",
+ "punct": "sensibilities",
+ "index": 8466
+ },
+ {
+ "start": 4743.56,
+ "end": 4743.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 8467
+ },
+ {
+ "start": 4743.78,
+ "end": 4743.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8468
+ },
+ {
+ "start": 4743.92,
+ "end": 4744.24,
+ "confidence": 0,
+ "word": "us",
+ "punct": "US",
+ "index": 8469
+ },
+ {
+ "start": 4744.24,
+ "end": 4744.54,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 8470
+ },
+ {
+ "start": 4744.54,
+ "end": 4745.24,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 8471
+ },
+ {
+ "start": 4745.24,
+ "end": 4746.94,
+ "confidence": 0,
+ "word": "countries",
+ "punct": "countries",
+ "index": 8472
+ },
+ {
+ "start": 4746.94,
+ "end": 4747.92,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 8473
+ },
+ {
+ "start": 4747.92,
+ "end": 4748.32,
+ "confidence": 0,
+ "word": "committed",
+ "punct": "committed",
+ "index": 8474
+ },
+ {
+ "start": 4748.32,
+ "end": 4748.56,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8475
+ },
+ {
+ "start": 4748.56,
+ "end": 4749.58,
+ "confidence": 0,
+ "word": "rolling",
+ "punct": "rolling",
+ "index": 8476
+ },
+ {
+ "start": 4749.58,
+ "end": 4749.72,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 8477
+ },
+ {
+ "start": 4749.72,
+ "end": 4749.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8478
+ },
+ {
+ "start": 4749.92,
+ "end": 4750.58,
+ "confidence": 0,
+ "word": "controls",
+ "punct": "controls",
+ "index": 8479
+ },
+ {
+ "start": 4750.58,
+ "end": 4751.4,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8480
+ },
+ {
+ "start": 4751.4,
+ "end": 4751.64,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8481
+ },
+ {
+ "start": 4751.64,
+ "end": 4752.32,
+ "confidence": 0,
+ "word": "affirmative",
+ "punct": "affirmative",
+ "index": 8482
+ },
+ {
+ "start": 4752.32,
+ "end": 4752.74,
+ "confidence": 0,
+ "word": "consent",
+ "punct": "consent.",
+ "index": 8483
+ }
+ ],
+ "start": 4733.8
+ }
+ },
+ {
+ "key": "42u6e",
+ "text": "And the special controls around sensitive types of technology like face recognition.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4752.74,
+ "end": 4753.96,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 8484
+ },
+ {
+ "start": 4753.96,
+ "end": 4755.04,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8485
+ },
+ {
+ "start": 4755.04,
+ "end": 4756.04,
+ "confidence": 0,
+ "word": "special",
+ "punct": "special",
+ "index": 8486
+ },
+ {
+ "start": 4756.04,
+ "end": 4756.46,
+ "confidence": 0,
+ "word": "controls",
+ "punct": "controls",
+ "index": 8487
+ },
+ {
+ "start": 4756.46,
+ "end": 4756.76,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 8488
+ },
+ {
+ "start": 4756.76,
+ "end": 4758.04,
+ "confidence": 0,
+ "word": "sensitive",
+ "punct": "sensitive",
+ "index": 8489
+ },
+ {
+ "start": 4758.04,
+ "end": 4759.04,
+ "confidence": 0,
+ "word": "types",
+ "punct": "types",
+ "index": 8490
+ },
+ {
+ "start": 4759.04,
+ "end": 4759.16,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8491
+ },
+ {
+ "start": 4759.16,
+ "end": 4759.68,
+ "confidence": 0,
+ "word": "technology",
+ "punct": "technology",
+ "index": 8492
+ },
+ {
+ "start": 4759.68,
+ "end": 4759.86,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 8493
+ },
+ {
+ "start": 4759.86,
+ "end": 4760.1,
+ "confidence": 0,
+ "word": "face",
+ "punct": "face",
+ "index": 8494
+ },
+ {
+ "start": 4760.1,
+ "end": 4760.64,
+ "confidence": 0,
+ "word": "recognition",
+ "punct": "recognition.",
+ "index": 8495
+ }
+ ],
+ "start": 4752.74
+ }
+ },
+ {
+ "key": "2big3",
+ "text": "That are required in GDPR we're doing that around the world.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4760.64,
+ "end": 4761.76,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 8496
+ },
+ {
+ "start": 4761.76,
+ "end": 4762.02,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8497
+ },
+ {
+ "start": 4762.02,
+ "end": 4762.5,
+ "confidence": 0,
+ "word": "required",
+ "punct": "required",
+ "index": 8498
+ },
+ {
+ "start": 4762.5,
+ "end": 4762.62,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 8499
+ },
+ {
+ "start": 4762.62,
+ "end": 4763.18,
+ "confidence": 0,
+ "word": "gdpr",
+ "punct": "GDPR",
+ "index": 8500
+ },
+ {
+ "start": 4763.18,
+ "end": 4763.4,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 8501
+ },
+ {
+ "start": 4763.4,
+ "end": 4763.6,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 8502
+ },
+ {
+ "start": 4763.6,
+ "end": 4763.74,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8503
+ },
+ {
+ "start": 4763.74,
+ "end": 4764,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 8504
+ },
+ {
+ "start": 4764,
+ "end": 4764.12,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8505
+ },
+ {
+ "start": 4764.12,
+ "end": 4764.88,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world.",
+ "index": 8506
+ }
+ ],
+ "start": 4760.64
+ }
+ },
+ {
+ "key": "clcst",
+ "text": "So I think, it's certainly worth discussing whether we should have something similar in the US.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4764.88,
+ "end": 4765.42,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 8507
+ },
+ {
+ "start": 4765.42,
+ "end": 4765.92,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8508
+ },
+ {
+ "start": 4765.92,
+ "end": 4766.12,
+ "confidence": 0,
+ "word": "think,",
+ "punct": "think,",
+ "index": 8509
+ },
+ {
+ "start": 4766.12,
+ "end": 4766.28,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 8510
+ },
+ {
+ "start": 4766.28,
+ "end": 4766.58,
+ "confidence": 0,
+ "word": "certainly",
+ "punct": "certainly",
+ "index": 8511
+ },
+ {
+ "start": 4766.58,
+ "end": 4766.84,
+ "confidence": 0,
+ "word": "worth",
+ "punct": "worth",
+ "index": 8512
+ },
+ {
+ "start": 4766.84,
+ "end": 4767.38,
+ "confidence": 0,
+ "word": "discussing",
+ "punct": "discussing",
+ "index": 8513
+ },
+ {
+ "start": 4767.38,
+ "end": 4767.72,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 8514
+ },
+ {
+ "start": 4767.72,
+ "end": 4767.88,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 8515
+ },
+ {
+ "start": 4767.88,
+ "end": 4768.14,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 8516
+ },
+ {
+ "start": 4768.14,
+ "end": 4768.72,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 8517
+ },
+ {
+ "start": 4768.72,
+ "end": 4769.04,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 8518
+ },
+ {
+ "start": 4769.04,
+ "end": 4769.44,
+ "confidence": 0,
+ "word": "similar",
+ "punct": "similar",
+ "index": 8519
+ },
+ {
+ "start": 4769.44,
+ "end": 4769.72,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 8520
+ },
+ {
+ "start": 4769.72,
+ "end": 4769.86,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8521
+ },
+ {
+ "start": 4769.86,
+ "end": 4770.16,
+ "confidence": 0,
+ "word": "us",
+ "punct": "US.",
+ "index": 8522
+ }
+ ],
+ "start": 4764.88
+ }
+ },
+ {
+ "key": "6pe3l",
+ "text": "But what I would like to say today is that we're going to go forward and implement that regardless of what the regulatory outcome is, Senator wicker.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4770.16,
+ "end": 4771.1,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 8523
+ },
+ {
+ "start": 4771.1,
+ "end": 4771.24,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 8524
+ },
+ {
+ "start": 4771.24,
+ "end": 4771.32,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8525
+ },
+ {
+ "start": 4771.32,
+ "end": 4771.48,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 8526
+ },
+ {
+ "start": 4771.48,
+ "end": 4771.6,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 8527
+ },
+ {
+ "start": 4771.6,
+ "end": 4771.7,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8528
+ },
+ {
+ "start": 4771.7,
+ "end": 4771.84,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 8529
+ },
+ {
+ "start": 4771.84,
+ "end": 4772.08,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 8530
+ },
+ {
+ "start": 4772.08,
+ "end": 4772.26,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8531
+ },
+ {
+ "start": 4772.26,
+ "end": 4772.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8532
+ },
+ {
+ "start": 4772.44,
+ "end": 4772.68,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 8533
+ },
+ {
+ "start": 4772.68,
+ "end": 4772.9,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 8534
+ },
+ {
+ "start": 4772.9,
+ "end": 4773.04,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8535
+ },
+ {
+ "start": 4773.04,
+ "end": 4773.46,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 8536
+ },
+ {
+ "start": 4773.46,
+ "end": 4773.8,
+ "confidence": 0,
+ "word": "forward",
+ "punct": "forward",
+ "index": 8537
+ },
+ {
+ "start": 4773.8,
+ "end": 4774,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8538
+ },
+ {
+ "start": 4774,
+ "end": 4774.7,
+ "confidence": 0,
+ "word": "implement",
+ "punct": "implement",
+ "index": 8539
+ },
+ {
+ "start": 4774.7,
+ "end": 4774.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8540
+ },
+ {
+ "start": 4774.96,
+ "end": 4775.76,
+ "confidence": 0,
+ "word": "regardless",
+ "punct": "regardless",
+ "index": 8541
+ },
+ {
+ "start": 4775.76,
+ "end": 4775.86,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8542
+ },
+ {
+ "start": 4775.86,
+ "end": 4776.02,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 8543
+ },
+ {
+ "start": 4776.02,
+ "end": 4776.14,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8544
+ },
+ {
+ "start": 4776.14,
+ "end": 4776.66,
+ "confidence": 0,
+ "word": "regulatory",
+ "punct": "regulatory",
+ "index": 8545
+ },
+ {
+ "start": 4776.66,
+ "end": 4776.96,
+ "confidence": 0,
+ "word": "outcome",
+ "punct": "outcome",
+ "index": 8546
+ },
+ {
+ "start": 4776.96,
+ "end": 4777.08,
+ "confidence": 0,
+ "word": "is,",
+ "punct": "is,",
+ "index": 8547
+ },
+ {
+ "start": 4777.08,
+ "end": 4778.14,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 8548
+ },
+ {
+ "start": 4778.14,
+ "end": 4778.92,
+ "confidence": 0,
+ "word": "wicker",
+ "punct": "wicker.",
+ "index": 8549
+ }
+ ],
+ "start": 4770.16
+ }
+ },
+ {
+ "key": "bt4cq",
+ "text": "Senator tone well, chair next, Senator wicker, thank you, Mr Chairman and Mr Zuckerberg.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4778.92,
+ "end": 4779.7,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 8550
+ },
+ {
+ "start": 4779.7,
+ "end": 4780.4,
+ "confidence": 0,
+ "word": "tone",
+ "punct": "tone",
+ "index": 8551
+ },
+ {
+ "start": 4780.4,
+ "end": 4780.78,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "well,",
+ "index": 8552
+ },
+ {
+ "start": 4780.78,
+ "end": 4782.7,
+ "confidence": 0,
+ "word": "chair",
+ "punct": "chair",
+ "index": 8553
+ },
+ {
+ "start": 4782.7,
+ "end": 4784.08,
+ "confidence": 0,
+ "word": "next,",
+ "punct": "next,",
+ "index": 8554
+ },
+ {
+ "start": 4784.08,
+ "end": 4785.06,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 8555
+ },
+ {
+ "start": 4785.06,
+ "end": 4785.4,
+ "confidence": 0,
+ "word": "wicker,",
+ "punct": "wicker,",
+ "index": 8556
+ },
+ {
+ "start": 4785.4,
+ "end": 4785.6,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 8557
+ },
+ {
+ "start": 4785.6,
+ "end": 4785.78,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 8558
+ },
+ {
+ "start": 4785.78,
+ "end": 4786.06,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 8559
+ },
+ {
+ "start": 4786.06,
+ "end": 4786.38,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman",
+ "index": 8560
+ },
+ {
+ "start": 4786.38,
+ "end": 4786.56,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8561
+ },
+ {
+ "start": 4786.56,
+ "end": 4786.82,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 8562
+ },
+ {
+ "start": 4786.82,
+ "end": 4787.24,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg.",
+ "index": 8563
+ }
+ ],
+ "start": 4778.92
+ }
+ },
+ {
+ "key": "2l1ub",
+ "text": "Thank you for being with us.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4787.24,
+ "end": 4787.44,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 8564
+ },
+ {
+ "start": 4787.44,
+ "end": 4787.54,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8565
+ },
+ {
+ "start": 4787.54,
+ "end": 4787.7,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 8566
+ },
+ {
+ "start": 4787.7,
+ "end": 4787.9,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 8567
+ },
+ {
+ "start": 4787.9,
+ "end": 4788.12,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 8568
+ },
+ {
+ "start": 4788.12,
+ "end": 4788.28,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us.",
+ "index": 8569
+ }
+ ],
+ "start": 4787.24
+ }
+ },
+ {
+ "key": "be7du",
+ "text": "My question is going to be sort of a follow up on what Senator Hatch was talking about and let me agree with, basically his vice that we don't want to over regulate to the point where we're stifling innovation and investment.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4788.28,
+ "end": 4789.24,
+ "confidence": 0,
+ "word": "my",
+ "punct": "My",
+ "index": 8570
+ },
+ {
+ "start": 4789.24,
+ "end": 4789.6,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question",
+ "index": 8571
+ },
+ {
+ "start": 4789.6,
+ "end": 4789.8,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8572
+ },
+ {
+ "start": 4789.8,
+ "end": 4790.04,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 8573
+ },
+ {
+ "start": 4790.04,
+ "end": 4790.1,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8574
+ },
+ {
+ "start": 4790.1,
+ "end": 4790.22,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8575
+ },
+ {
+ "start": 4790.22,
+ "end": 4790.44,
+ "confidence": 0,
+ "word": "sort",
+ "punct": "sort",
+ "index": 8576
+ },
+ {
+ "start": 4790.44,
+ "end": 4790.54,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8577
+ },
+ {
+ "start": 4790.54,
+ "end": 4790.62,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 8578
+ },
+ {
+ "start": 4790.62,
+ "end": 4791.08,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 8579
+ },
+ {
+ "start": 4791.08,
+ "end": 4791.26,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 8580
+ },
+ {
+ "start": 4791.26,
+ "end": 4791.68,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 8581
+ },
+ {
+ "start": 4791.68,
+ "end": 4791.86,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 8582
+ },
+ {
+ "start": 4791.86,
+ "end": 4792.28,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 8583
+ },
+ {
+ "start": 4792.28,
+ "end": 4792.56,
+ "confidence": 0,
+ "word": "hatch",
+ "punct": "Hatch",
+ "index": 8584
+ },
+ {
+ "start": 4792.56,
+ "end": 4792.76,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 8585
+ },
+ {
+ "start": 4792.76,
+ "end": 4793.12,
+ "confidence": 0,
+ "word": "talking",
+ "punct": "talking",
+ "index": 8586
+ },
+ {
+ "start": 4793.12,
+ "end": 4793.4,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 8587
+ },
+ {
+ "start": 4793.4,
+ "end": 4793.94,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8588
+ },
+ {
+ "start": 4793.94,
+ "end": 4794.28,
+ "confidence": 0,
+ "word": "let",
+ "punct": "let",
+ "index": 8589
+ },
+ {
+ "start": 4794.28,
+ "end": 4794.62,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 8590
+ },
+ {
+ "start": 4794.62,
+ "end": 4795.32,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 8591
+ },
+ {
+ "start": 4795.32,
+ "end": 4796.04,
+ "confidence": 0,
+ "word": "with,",
+ "punct": "with,",
+ "index": 8592
+ },
+ {
+ "start": 4796.04,
+ "end": 4797.18,
+ "confidence": 0,
+ "word": "basically",
+ "punct": "basically",
+ "index": 8593
+ },
+ {
+ "start": 4797.18,
+ "end": 4799.38,
+ "confidence": 0,
+ "word": "his",
+ "punct": "his",
+ "index": 8594
+ },
+ {
+ "start": 4799.38,
+ "end": 4799.74,
+ "confidence": 0,
+ "word": "vice",
+ "punct": "vice",
+ "index": 8595
+ },
+ {
+ "start": 4799.74,
+ "end": 4799.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8596
+ },
+ {
+ "start": 4799.96,
+ "end": 4800.2,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 8597
+ },
+ {
+ "start": 4800.2,
+ "end": 4800.42,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 8598
+ },
+ {
+ "start": 4800.42,
+ "end": 4800.72,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 8599
+ },
+ {
+ "start": 4800.72,
+ "end": 4800.84,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8600
+ },
+ {
+ "start": 4800.84,
+ "end": 4801.28,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 8601
+ },
+ {
+ "start": 4801.28,
+ "end": 4801.78,
+ "confidence": 0,
+ "word": "regulate",
+ "punct": "regulate",
+ "index": 8602
+ },
+ {
+ "start": 4801.78,
+ "end": 4801.94,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8603
+ },
+ {
+ "start": 4801.94,
+ "end": 4802.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8604
+ },
+ {
+ "start": 4802.7,
+ "end": 4803.08,
+ "confidence": 0,
+ "word": "point",
+ "punct": "point",
+ "index": 8605
+ },
+ {
+ "start": 4803.08,
+ "end": 4803.74,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 8606
+ },
+ {
+ "start": 4803.74,
+ "end": 4803.96,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 8607
+ },
+ {
+ "start": 4803.96,
+ "end": 4804.68,
+ "confidence": 0,
+ "word": "stifling",
+ "punct": "stifling",
+ "index": 8608
+ },
+ {
+ "start": 4804.68,
+ "end": 4805.54,
+ "confidence": 0,
+ "word": "innovation",
+ "punct": "innovation",
+ "index": 8609
+ },
+ {
+ "start": 4805.54,
+ "end": 4806.16,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8610
+ },
+ {
+ "start": 4806.16,
+ "end": 4806.78,
+ "confidence": 0,
+ "word": "investment",
+ "punct": "investment.",
+ "index": 8611
+ }
+ ],
+ "start": 4788.28
+ }
+ },
+ {
+ "key": "1rfnh",
+ "text": "I understand with regard to suggested rules or suggested legislation there at least two schools of thought out there.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4806.78,
+ "end": 4807.66,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8612
+ },
+ {
+ "start": 4807.66,
+ "end": 4808.28,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 8613
+ },
+ {
+ "start": 4808.28,
+ "end": 4808.48,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 8614
+ },
+ {
+ "start": 4808.48,
+ "end": 4809.02,
+ "confidence": 0,
+ "word": "regard",
+ "punct": "regard",
+ "index": 8615
+ },
+ {
+ "start": 4809.02,
+ "end": 4809.98,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8616
+ },
+ {
+ "start": 4809.98,
+ "end": 4810.98,
+ "confidence": 0,
+ "word": "suggested",
+ "punct": "suggested",
+ "index": 8617
+ },
+ {
+ "start": 4810.98,
+ "end": 4811.82,
+ "confidence": 0,
+ "word": "rules",
+ "punct": "rules",
+ "index": 8618
+ },
+ {
+ "start": 4811.82,
+ "end": 4812.2,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 8619
+ },
+ {
+ "start": 4812.2,
+ "end": 4812.86,
+ "confidence": 0,
+ "word": "suggested",
+ "punct": "suggested",
+ "index": 8620
+ },
+ {
+ "start": 4812.86,
+ "end": 4813.7,
+ "confidence": 0,
+ "word": "legislation",
+ "punct": "legislation",
+ "index": 8621
+ },
+ {
+ "start": 4813.7,
+ "end": 4814.14,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 8622
+ },
+ {
+ "start": 4814.14,
+ "end": 4814.28,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 8623
+ },
+ {
+ "start": 4814.28,
+ "end": 4814.48,
+ "confidence": 0,
+ "word": "least",
+ "punct": "least",
+ "index": 8624
+ },
+ {
+ "start": 4814.48,
+ "end": 4814.78,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two",
+ "index": 8625
+ },
+ {
+ "start": 4814.78,
+ "end": 4815.2,
+ "confidence": 0,
+ "word": "schools",
+ "punct": "schools",
+ "index": 8626
+ },
+ {
+ "start": 4815.2,
+ "end": 4815.36,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8627
+ },
+ {
+ "start": 4815.36,
+ "end": 4816.52,
+ "confidence": 0,
+ "word": "thought",
+ "punct": "thought",
+ "index": 8628
+ },
+ {
+ "start": 4816.52,
+ "end": 4817.28,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 8629
+ },
+ {
+ "start": 4817.28,
+ "end": 4817.64,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there.",
+ "index": 8630
+ }
+ ],
+ "start": 4806.78
+ }
+ },
+ {
+ "key": "4qsbf",
+ "text": "One would be the ISPs.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4817.64,
+ "end": 4818.48,
+ "confidence": 0,
+ "word": "one",
+ "punct": "One",
+ "index": 8631
+ },
+ {
+ "start": 4818.48,
+ "end": 4818.72,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 8632
+ },
+ {
+ "start": 4818.72,
+ "end": 4818.84,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8633
+ },
+ {
+ "start": 4818.84,
+ "end": 4819.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8634
+ },
+ {
+ "start": 4819.18,
+ "end": 4819.92,
+ "confidence": 0,
+ "word": "isps",
+ "punct": "ISPs.",
+ "index": 8635
+ }
+ ],
+ "start": 4817.64
+ }
+ },
+ {
+ "key": "5hbua",
+ "text": "The Internet service providers who are advocating for privacy protections for consumers that apply to all online entities equally across the entire Internet ecosystem.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4819.92,
+ "end": 4820.06,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 8636
+ },
+ {
+ "start": 4820.06,
+ "end": 4820.84,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 8637
+ },
+ {
+ "start": 4820.84,
+ "end": 4821.34,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 8638
+ },
+ {
+ "start": 4821.34,
+ "end": 4822.44,
+ "confidence": 0,
+ "word": "providers",
+ "punct": "providers",
+ "index": 8639
+ },
+ {
+ "start": 4822.44,
+ "end": 4823.32,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 8640
+ },
+ {
+ "start": 4823.32,
+ "end": 4823.48,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8641
+ },
+ {
+ "start": 4823.48,
+ "end": 4824.04,
+ "confidence": 0,
+ "word": "advocating",
+ "punct": "advocating",
+ "index": 8642
+ },
+ {
+ "start": 4824.04,
+ "end": 4824.24,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 8643
+ },
+ {
+ "start": 4824.24,
+ "end": 4824.78,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 8644
+ },
+ {
+ "start": 4824.78,
+ "end": 4825.46,
+ "confidence": 0,
+ "word": "protections",
+ "punct": "protections",
+ "index": 8645
+ },
+ {
+ "start": 4825.46,
+ "end": 4826.2,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 8646
+ },
+ {
+ "start": 4826.2,
+ "end": 4826.9,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 8647
+ },
+ {
+ "start": 4826.9,
+ "end": 4827.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8648
+ },
+ {
+ "start": 4827.18,
+ "end": 4827.86,
+ "confidence": 0,
+ "word": "apply",
+ "punct": "apply",
+ "index": 8649
+ },
+ {
+ "start": 4827.86,
+ "end": 4828.06,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8650
+ },
+ {
+ "start": 4828.06,
+ "end": 4828.6,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 8651
+ },
+ {
+ "start": 4828.6,
+ "end": 4829.28,
+ "confidence": 0,
+ "word": "online",
+ "punct": "online",
+ "index": 8652
+ },
+ {
+ "start": 4829.28,
+ "end": 4829.88,
+ "confidence": 0,
+ "word": "entities",
+ "punct": "entities",
+ "index": 8653
+ },
+ {
+ "start": 4829.88,
+ "end": 4830.94,
+ "confidence": 0,
+ "word": "equally",
+ "punct": "equally",
+ "index": 8654
+ },
+ {
+ "start": 4830.94,
+ "end": 4831.96,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 8655
+ },
+ {
+ "start": 4831.96,
+ "end": 4832.14,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8656
+ },
+ {
+ "start": 4832.14,
+ "end": 4832.58,
+ "confidence": 0,
+ "word": "entire",
+ "punct": "entire",
+ "index": 8657
+ },
+ {
+ "start": 4832.58,
+ "end": 4833.08,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 8658
+ },
+ {
+ "start": 4833.08,
+ "end": 4835.38,
+ "confidence": 0,
+ "word": "ecosystem",
+ "punct": "ecosystem.",
+ "index": 8659
+ }
+ ],
+ "start": 4819.92
+ }
+ },
+ {
+ "key": "5t2em",
+ "text": "Facebook is an edge provider on the other hand it's my understanding that many edge providers such as Facebook may not support that effort because edge providers have different business models.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4835.38,
+ "end": 4836.38,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 8660
+ },
+ {
+ "start": 4836.38,
+ "end": 4836.54,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8661
+ },
+ {
+ "start": 4836.54,
+ "end": 4836.68,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 8662
+ },
+ {
+ "start": 4836.68,
+ "end": 4837.18,
+ "confidence": 0,
+ "word": "edge",
+ "punct": "edge",
+ "index": 8663
+ },
+ {
+ "start": 4837.18,
+ "end": 4837.94,
+ "confidence": 0,
+ "word": "provider",
+ "punct": "provider",
+ "index": 8664
+ },
+ {
+ "start": 4837.94,
+ "end": 4838.08,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 8665
+ },
+ {
+ "start": 4838.08,
+ "end": 4838.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8666
+ },
+ {
+ "start": 4838.22,
+ "end": 4838.44,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 8667
+ },
+ {
+ "start": 4838.44,
+ "end": 4838.68,
+ "confidence": 0,
+ "word": "hand",
+ "punct": "hand",
+ "index": 8668
+ },
+ {
+ "start": 4838.68,
+ "end": 4838.9,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 8669
+ },
+ {
+ "start": 4838.9,
+ "end": 4839.06,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 8670
+ },
+ {
+ "start": 4839.06,
+ "end": 4839.58,
+ "confidence": 0,
+ "word": "understanding",
+ "punct": "understanding",
+ "index": 8671
+ },
+ {
+ "start": 4839.58,
+ "end": 4839.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8672
+ },
+ {
+ "start": 4839.8,
+ "end": 4840.1,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 8673
+ },
+ {
+ "start": 4840.1,
+ "end": 4840.92,
+ "confidence": 0,
+ "word": "edge",
+ "punct": "edge",
+ "index": 8674
+ },
+ {
+ "start": 4840.92,
+ "end": 4841.42,
+ "confidence": 0,
+ "word": "providers",
+ "punct": "providers",
+ "index": 8675
+ },
+ {
+ "start": 4841.42,
+ "end": 4841.62,
+ "confidence": 0,
+ "word": "such",
+ "punct": "such",
+ "index": 8676
+ },
+ {
+ "start": 4841.62,
+ "end": 4841.74,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 8677
+ },
+ {
+ "start": 4841.74,
+ "end": 4842.28,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 8678
+ },
+ {
+ "start": 4842.28,
+ "end": 4842.5,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 8679
+ },
+ {
+ "start": 4842.5,
+ "end": 4842.72,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 8680
+ },
+ {
+ "start": 4842.72,
+ "end": 4843.24,
+ "confidence": 0,
+ "word": "support",
+ "punct": "support",
+ "index": 8681
+ },
+ {
+ "start": 4843.24,
+ "end": 4843.52,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8682
+ },
+ {
+ "start": 4843.52,
+ "end": 4844,
+ "confidence": 0,
+ "word": "effort",
+ "punct": "effort",
+ "index": 8683
+ },
+ {
+ "start": 4844,
+ "end": 4845,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 8684
+ },
+ {
+ "start": 4845,
+ "end": 4845.28,
+ "confidence": 0,
+ "word": "edge",
+ "punct": "edge",
+ "index": 8685
+ },
+ {
+ "start": 4845.28,
+ "end": 4845.68,
+ "confidence": 0,
+ "word": "providers",
+ "punct": "providers",
+ "index": 8686
+ },
+ {
+ "start": 4845.68,
+ "end": 4845.84,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 8687
+ },
+ {
+ "start": 4845.84,
+ "end": 4846.18,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 8688
+ },
+ {
+ "start": 4846.18,
+ "end": 4846.7,
+ "confidence": 0,
+ "word": "business",
+ "punct": "business",
+ "index": 8689
+ },
+ {
+ "start": 4846.7,
+ "end": 4847.86,
+ "confidence": 0,
+ "word": "models",
+ "punct": "models.",
+ "index": 8690
+ }
+ ],
+ "start": 4835.38
+ }
+ },
+ {
+ "key": "7nl60",
+ "text": "Then the ISPs and should not be considered like services so do you think we need consistent privacy protections for consumers across the entire Internet ecosystem that are based on the type of consumer information being collected?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4847.86,
+ "end": 4848.72,
+ "confidence": 0,
+ "word": "then",
+ "punct": "Then",
+ "index": 8691
+ },
+ {
+ "start": 4848.72,
+ "end": 4848.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8692
+ },
+ {
+ "start": 4848.92,
+ "end": 4849.78,
+ "confidence": 0,
+ "word": "isps",
+ "punct": "ISPs",
+ "index": 8693
+ },
+ {
+ "start": 4849.78,
+ "end": 4850.28,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8694
+ },
+ {
+ "start": 4850.28,
+ "end": 4850.58,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 8695
+ },
+ {
+ "start": 4850.58,
+ "end": 4850.76,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 8696
+ },
+ {
+ "start": 4850.76,
+ "end": 4850.88,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8697
+ },
+ {
+ "start": 4850.88,
+ "end": 4851.34,
+ "confidence": 0,
+ "word": "considered",
+ "punct": "considered",
+ "index": 8698
+ },
+ {
+ "start": 4851.34,
+ "end": 4851.7,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 8699
+ },
+ {
+ "start": 4851.7,
+ "end": 4852.38,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 8700
+ },
+ {
+ "start": 4852.38,
+ "end": 4853.34,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 8701
+ },
+ {
+ "start": 4853.34,
+ "end": 4854,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 8702
+ },
+ {
+ "start": 4854,
+ "end": 4854.14,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8703
+ },
+ {
+ "start": 4854.14,
+ "end": 4854.36,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8704
+ },
+ {
+ "start": 4854.36,
+ "end": 4854.5,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 8705
+ },
+ {
+ "start": 4854.5,
+ "end": 4854.92,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 8706
+ },
+ {
+ "start": 4854.92,
+ "end": 4855.62,
+ "confidence": 0,
+ "word": "consistent",
+ "punct": "consistent",
+ "index": 8707
+ },
+ {
+ "start": 4855.62,
+ "end": 4856.16,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 8708
+ },
+ {
+ "start": 4856.16,
+ "end": 4856.88,
+ "confidence": 0,
+ "word": "protections",
+ "punct": "protections",
+ "index": 8709
+ },
+ {
+ "start": 4856.88,
+ "end": 4857.46,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 8710
+ },
+ {
+ "start": 4857.46,
+ "end": 4858,
+ "confidence": 0,
+ "word": "consumers",
+ "punct": "consumers",
+ "index": 8711
+ },
+ {
+ "start": 4858,
+ "end": 4858.4,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 8712
+ },
+ {
+ "start": 4858.4,
+ "end": 4858.64,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8713
+ },
+ {
+ "start": 4858.64,
+ "end": 4859.91,
+ "confidence": 0,
+ "word": "entire",
+ "punct": "entire",
+ "index": 8714
+ },
+ {
+ "start": 4859.91,
+ "end": 4860.47,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 8715
+ },
+ {
+ "start": 4860.47,
+ "end": 4861.45,
+ "confidence": 0,
+ "word": "ecosystem",
+ "punct": "ecosystem",
+ "index": 8716
+ },
+ {
+ "start": 4861.45,
+ "end": 4862.09,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8717
+ },
+ {
+ "start": 4862.09,
+ "end": 4862.23,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8718
+ },
+ {
+ "start": 4862.23,
+ "end": 4862.45,
+ "confidence": 0,
+ "word": "based",
+ "punct": "based",
+ "index": 8719
+ },
+ {
+ "start": 4862.45,
+ "end": 4862.57,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 8720
+ },
+ {
+ "start": 4862.57,
+ "end": 4862.69,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8721
+ },
+ {
+ "start": 4862.69,
+ "end": 4862.89,
+ "confidence": 0,
+ "word": "type",
+ "punct": "type",
+ "index": 8722
+ },
+ {
+ "start": 4862.89,
+ "end": 4862.99,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8723
+ },
+ {
+ "start": 4862.99,
+ "end": 4863.49,
+ "confidence": 0,
+ "word": "consumer",
+ "punct": "consumer",
+ "index": 8724
+ },
+ {
+ "start": 4863.49,
+ "end": 4864.45,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 8725
+ },
+ {
+ "start": 4864.45,
+ "end": 4864.73,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 8726
+ },
+ {
+ "start": 4864.73,
+ "end": 4865.17,
+ "confidence": 0,
+ "word": "collected",
+ "punct": "collected?",
+ "index": 8727
+ }
+ ],
+ "start": 4847.86
+ }
+ },
+ {
+ "key": "8edqd",
+ "text": "Used or shared, regardless of the entity doing the collecting or using or sharing Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4865.17,
+ "end": 4865.73,
+ "confidence": 0,
+ "word": "used",
+ "punct": "Used",
+ "index": 8728
+ },
+ {
+ "start": 4865.73,
+ "end": 4865.95,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 8729
+ },
+ {
+ "start": 4865.95,
+ "end": 4866.43,
+ "confidence": 0,
+ "word": "shared,",
+ "punct": "shared,",
+ "index": 8730
+ },
+ {
+ "start": 4866.43,
+ "end": 4867.55,
+ "confidence": 0,
+ "word": "regardless",
+ "punct": "regardless",
+ "index": 8731
+ },
+ {
+ "start": 4867.55,
+ "end": 4868.05,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8732
+ },
+ {
+ "start": 4868.05,
+ "end": 4868.21,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8733
+ },
+ {
+ "start": 4868.21,
+ "end": 4868.85,
+ "confidence": 0,
+ "word": "entity",
+ "punct": "entity",
+ "index": 8734
+ },
+ {
+ "start": 4868.85,
+ "end": 4869.67,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 8735
+ },
+ {
+ "start": 4869.67,
+ "end": 4869.83,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8736
+ },
+ {
+ "start": 4869.83,
+ "end": 4870.27,
+ "confidence": 0,
+ "word": "collecting",
+ "punct": "collecting",
+ "index": 8737
+ },
+ {
+ "start": 4870.27,
+ "end": 4870.47,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 8738
+ },
+ {
+ "start": 4870.47,
+ "end": 4870.77,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 8739
+ },
+ {
+ "start": 4870.77,
+ "end": 4870.91,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 8740
+ },
+ {
+ "start": 4870.91,
+ "end": 4871.96,
+ "confidence": 0,
+ "word": "sharing",
+ "punct": "sharing",
+ "index": 8741
+ },
+ {
+ "start": 4871.96,
+ "end": 4873,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 8742
+ }
+ ],
+ "start": 4865.17
+ }
+ },
+ {
+ "key": "4vqjn",
+ "text": "This is an important question.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4873,
+ "end": 4873.14,
+ "confidence": 0,
+ "word": "this",
+ "punct": "This",
+ "index": 8743
+ },
+ {
+ "start": 4873.14,
+ "end": 4873.26,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8744
+ },
+ {
+ "start": 4873.26,
+ "end": 4873.36,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 8745
+ },
+ {
+ "start": 4873.36,
+ "end": 4873.84,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 8746
+ },
+ {
+ "start": 4873.84,
+ "end": 4874.26,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question.",
+ "index": 8747
+ }
+ ],
+ "start": 4873
+ }
+ },
+ {
+ "key": "emjoa",
+ "text": "I would differentiate between ISPs which I consider to be the pipes of the Internet and the platforms like Facebook or Google or Twitter YouTube that are the apps or platforms on top of that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4874.26,
+ "end": 4874.84,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8748
+ },
+ {
+ "start": 4874.84,
+ "end": 4875.04,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 8749
+ },
+ {
+ "start": 4875.04,
+ "end": 4875.74,
+ "confidence": 0,
+ "word": "differentiate",
+ "punct": "differentiate",
+ "index": 8750
+ },
+ {
+ "start": 4875.74,
+ "end": 4876.14,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 8751
+ },
+ {
+ "start": 4876.14,
+ "end": 4876.96,
+ "confidence": 0,
+ "word": "isps",
+ "punct": "ISPs",
+ "index": 8752
+ },
+ {
+ "start": 4876.96,
+ "end": 4877.56,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 8753
+ },
+ {
+ "start": 4877.56,
+ "end": 4877.7,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8754
+ },
+ {
+ "start": 4877.7,
+ "end": 4878.08,
+ "confidence": 0,
+ "word": "consider",
+ "punct": "consider",
+ "index": 8755
+ },
+ {
+ "start": 4878.08,
+ "end": 4878.18,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8756
+ },
+ {
+ "start": 4878.18,
+ "end": 4878.28,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8757
+ },
+ {
+ "start": 4878.28,
+ "end": 4878.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8758
+ },
+ {
+ "start": 4878.42,
+ "end": 4878.72,
+ "confidence": 0,
+ "word": "pipes",
+ "punct": "pipes",
+ "index": 8759
+ },
+ {
+ "start": 4878.72,
+ "end": 4878.86,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8760
+ },
+ {
+ "start": 4878.86,
+ "end": 4878.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8761
+ },
+ {
+ "start": 4878.98,
+ "end": 4879.42,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 8762
+ },
+ {
+ "start": 4879.42,
+ "end": 4880.22,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8763
+ },
+ {
+ "start": 4880.22,
+ "end": 4880.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8764
+ },
+ {
+ "start": 4880.44,
+ "end": 4881.16,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms",
+ "index": 8765
+ },
+ {
+ "start": 4881.16,
+ "end": 4881.58,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 8766
+ },
+ {
+ "start": 4881.58,
+ "end": 4882.16,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 8767
+ },
+ {
+ "start": 4882.16,
+ "end": 4882.44,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 8768
+ },
+ {
+ "start": 4882.44,
+ "end": 4882.75,
+ "confidence": 0,
+ "word": "google",
+ "punct": "Google",
+ "index": 8769
+ },
+ {
+ "start": 4882.75,
+ "end": 4883.63,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 8770
+ },
+ {
+ "start": 4883.63,
+ "end": 4884.15,
+ "confidence": 0,
+ "word": "twitter",
+ "punct": "Twitter",
+ "index": 8771
+ },
+ {
+ "start": 4884.15,
+ "end": 4885.05,
+ "confidence": 0,
+ "word": "youtube",
+ "punct": "YouTube",
+ "index": 8772
+ },
+ {
+ "start": 4885.05,
+ "end": 4885.35,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8773
+ },
+ {
+ "start": 4885.35,
+ "end": 4885.83,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8774
+ },
+ {
+ "start": 4885.83,
+ "end": 4886.17,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8775
+ },
+ {
+ "start": 4886.17,
+ "end": 4886.95,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 8776
+ },
+ {
+ "start": 4886.95,
+ "end": 4887.37,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 8777
+ },
+ {
+ "start": 4887.37,
+ "end": 4887.87,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms",
+ "index": 8778
+ },
+ {
+ "start": 4887.87,
+ "end": 4888.03,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 8779
+ },
+ {
+ "start": 4888.03,
+ "end": 4888.27,
+ "confidence": 0,
+ "word": "top",
+ "punct": "top",
+ "index": 8780
+ },
+ {
+ "start": 4888.27,
+ "end": 4888.39,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8781
+ },
+ {
+ "start": 4888.39,
+ "end": 4888.59,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 8782
+ }
+ ],
+ "start": 4874.26
+ }
+ },
+ {
+ "key": "c5hgc",
+ "text": "I think in general the expectations that people have of the pipes are somewhat different from the platforms.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4888.59,
+ "end": 4889.33,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8783
+ },
+ {
+ "start": 4889.33,
+ "end": 4889.51,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8784
+ },
+ {
+ "start": 4889.51,
+ "end": 4889.67,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 8785
+ },
+ {
+ "start": 4889.67,
+ "end": 4890.13,
+ "confidence": 0,
+ "word": "general",
+ "punct": "general",
+ "index": 8786
+ },
+ {
+ "start": 4890.13,
+ "end": 4890.61,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8787
+ },
+ {
+ "start": 4890.61,
+ "end": 4891.57,
+ "confidence": 0,
+ "word": "expectations",
+ "punct": "expectations",
+ "index": 8788
+ },
+ {
+ "start": 4891.57,
+ "end": 4891.77,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8789
+ },
+ {
+ "start": 4891.77,
+ "end": 4892.07,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 8790
+ },
+ {
+ "start": 4892.07,
+ "end": 4892.37,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 8791
+ },
+ {
+ "start": 4892.37,
+ "end": 4892.63,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8792
+ },
+ {
+ "start": 4892.63,
+ "end": 4892.77,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8793
+ },
+ {
+ "start": 4892.77,
+ "end": 4893.54,
+ "confidence": 0,
+ "word": "pipes",
+ "punct": "pipes",
+ "index": 8794
+ },
+ {
+ "start": 4893.54,
+ "end": 4894.14,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8795
+ },
+ {
+ "start": 4894.14,
+ "end": 4894.4,
+ "confidence": 0,
+ "word": "somewhat",
+ "punct": "somewhat",
+ "index": 8796
+ },
+ {
+ "start": 4894.4,
+ "end": 4894.72,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 8797
+ },
+ {
+ "start": 4894.72,
+ "end": 4895.02,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 8798
+ },
+ {
+ "start": 4895.02,
+ "end": 4895.14,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8799
+ },
+ {
+ "start": 4895.14,
+ "end": 4895.64,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms.",
+ "index": 8800
+ }
+ ],
+ "start": 4888.59
+ }
+ },
+ {
+ "key": "euotr",
+ "text": "So there might be areas where there needs to be more regulation.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4895.64,
+ "end": 4896.2,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 8801
+ },
+ {
+ "start": 4896.2,
+ "end": 4896.4,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 8802
+ },
+ {
+ "start": 4896.4,
+ "end": 4896.58,
+ "confidence": 0,
+ "word": "might",
+ "punct": "might",
+ "index": 8803
+ },
+ {
+ "start": 4896.58,
+ "end": 4896.68,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8804
+ },
+ {
+ "start": 4896.68,
+ "end": 4896.98,
+ "confidence": 0,
+ "word": "areas",
+ "punct": "areas",
+ "index": 8805
+ },
+ {
+ "start": 4896.98,
+ "end": 4897.24,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 8806
+ },
+ {
+ "start": 4897.24,
+ "end": 4897.46,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 8807
+ },
+ {
+ "start": 4897.46,
+ "end": 4897.72,
+ "confidence": 0,
+ "word": "needs",
+ "punct": "needs",
+ "index": 8808
+ },
+ {
+ "start": 4897.72,
+ "end": 4897.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8809
+ },
+ {
+ "start": 4897.86,
+ "end": 4898.06,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8810
+ },
+ {
+ "start": 4898.06,
+ "end": 4898.68,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 8811
+ },
+ {
+ "start": 4898.68,
+ "end": 4899.2,
+ "confidence": 0,
+ "word": "regulation",
+ "punct": "regulation.",
+ "index": 8812
+ }
+ ],
+ "start": 4895.64
+ }
+ },
+ {
+ "key": "7jjfm",
+ "text": "And one and less than the other.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4899.2,
+ "end": 4899.36,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 8813
+ },
+ {
+ "start": 4899.36,
+ "end": 4899.66,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 8814
+ },
+ {
+ "start": 4899.66,
+ "end": 4899.86,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8815
+ },
+ {
+ "start": 4899.86,
+ "end": 4900.04,
+ "confidence": 0,
+ "word": "less",
+ "punct": "less",
+ "index": 8816
+ },
+ {
+ "start": 4900.04,
+ "end": 4900.16,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 8817
+ },
+ {
+ "start": 4900.16,
+ "end": 4900.28,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8818
+ },
+ {
+ "start": 4900.28,
+ "end": 4900.46,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other.",
+ "index": 8819
+ }
+ ],
+ "start": 4899.2
+ }
+ },
+ {
+ "key": "3rjat",
+ "text": "But I think there are going to be other places where there needs to be more regulation of the other type specifically, though.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4900.46,
+ "end": 4900.56,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 8820
+ },
+ {
+ "start": 4900.56,
+ "end": 4900.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8821
+ },
+ {
+ "start": 4900.74,
+ "end": 4900.88,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8822
+ },
+ {
+ "start": 4900.88,
+ "end": 4901.36,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 8823
+ },
+ {
+ "start": 4901.36,
+ "end": 4901.46,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 8824
+ },
+ {
+ "start": 4901.46,
+ "end": 4901.58,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 8825
+ },
+ {
+ "start": 4901.58,
+ "end": 4901.64,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8826
+ },
+ {
+ "start": 4901.64,
+ "end": 4901.7,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8827
+ },
+ {
+ "start": 4901.7,
+ "end": 4901.86,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 8828
+ },
+ {
+ "start": 4901.86,
+ "end": 4902.14,
+ "confidence": 0,
+ "word": "places",
+ "punct": "places",
+ "index": 8829
+ },
+ {
+ "start": 4902.14,
+ "end": 4902.3,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 8830
+ },
+ {
+ "start": 4902.3,
+ "end": 4902.44,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 8831
+ },
+ {
+ "start": 4902.44,
+ "end": 4902.6,
+ "confidence": 0,
+ "word": "needs",
+ "punct": "needs",
+ "index": 8832
+ },
+ {
+ "start": 4902.6,
+ "end": 4902.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8833
+ },
+ {
+ "start": 4902.66,
+ "end": 4902.74,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8834
+ },
+ {
+ "start": 4902.74,
+ "end": 4902.88,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 8835
+ },
+ {
+ "start": 4902.88,
+ "end": 4903.32,
+ "confidence": 0,
+ "word": "regulation",
+ "punct": "regulation",
+ "index": 8836
+ },
+ {
+ "start": 4903.32,
+ "end": 4903.46,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8837
+ },
+ {
+ "start": 4903.46,
+ "end": 4903.72,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8838
+ },
+ {
+ "start": 4903.72,
+ "end": 4903.94,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 8839
+ },
+ {
+ "start": 4903.94,
+ "end": 4905.68,
+ "confidence": 0,
+ "word": "type",
+ "punct": "type",
+ "index": 8840
+ },
+ {
+ "start": 4905.68,
+ "end": 4906.64,
+ "confidence": 0,
+ "word": "specifically,",
+ "punct": "specifically,",
+ "index": 8841
+ },
+ {
+ "start": 4906.64,
+ "end": 4906.88,
+ "confidence": 0,
+ "word": "though",
+ "punct": "though.",
+ "index": 8842
+ }
+ ],
+ "start": 4900.46
+ }
+ },
+ {
+ "key": "51tki",
+ "text": "On the pipes one of the important issues that I think we face and I debated is when you say pipe, you man is pipe and I know net neutrality has been a hotly debated topic.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4906.88,
+ "end": 4907.96,
+ "confidence": 0,
+ "word": "on",
+ "punct": "On",
+ "index": 8843
+ },
+ {
+ "start": 4907.96,
+ "end": 4908.82,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8844
+ },
+ {
+ "start": 4908.82,
+ "end": 4909.44,
+ "confidence": 0,
+ "word": "pipes",
+ "punct": "pipes",
+ "index": 8845
+ },
+ {
+ "start": 4909.44,
+ "end": 4910.4,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 8846
+ },
+ {
+ "start": 4910.4,
+ "end": 4910.5,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8847
+ },
+ {
+ "start": 4910.5,
+ "end": 4910.62,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8848
+ },
+ {
+ "start": 4910.62,
+ "end": 4911.14,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 8849
+ },
+ {
+ "start": 4911.14,
+ "end": 4911.52,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues",
+ "index": 8850
+ },
+ {
+ "start": 4911.52,
+ "end": 4912.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8851
+ },
+ {
+ "start": 4912.8,
+ "end": 4912.86,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8852
+ },
+ {
+ "start": 4912.86,
+ "end": 4913.06,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8853
+ },
+ {
+ "start": 4913.06,
+ "end": 4913.22,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 8854
+ },
+ {
+ "start": 4913.22,
+ "end": 4913.52,
+ "confidence": 0,
+ "word": "face",
+ "punct": "face",
+ "index": 8855
+ },
+ {
+ "start": 4913.52,
+ "end": 4913.92,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8856
+ },
+ {
+ "start": 4913.92,
+ "end": 4914.06,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8857
+ },
+ {
+ "start": 4914.06,
+ "end": 4914.4,
+ "confidence": 0,
+ "word": "debated",
+ "punct": "debated",
+ "index": 8858
+ },
+ {
+ "start": 4914.4,
+ "end": 4914.58,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8859
+ },
+ {
+ "start": 4914.58,
+ "end": 4915.16,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 8860
+ },
+ {
+ "start": 4915.16,
+ "end": 4915.32,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8861
+ },
+ {
+ "start": 4915.32,
+ "end": 4915.5,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 8862
+ },
+ {
+ "start": 4915.5,
+ "end": 4915.86,
+ "confidence": 0,
+ "word": "pipe,",
+ "punct": "pipe,",
+ "index": 8863
+ },
+ {
+ "start": 4915.86,
+ "end": 4916.04,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8864
+ },
+ {
+ "start": 4916.04,
+ "end": 4916.56,
+ "confidence": 0,
+ "word": "man",
+ "punct": "man",
+ "index": 8865
+ },
+ {
+ "start": 4916.56,
+ "end": 4916.86,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8866
+ },
+ {
+ "start": 4916.86,
+ "end": 4918.62,
+ "confidence": 0,
+ "word": "pipe",
+ "punct": "pipe",
+ "index": 8867
+ },
+ {
+ "start": 4918.62,
+ "end": 4919.46,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8868
+ },
+ {
+ "start": 4919.46,
+ "end": 4919.5,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8869
+ },
+ {
+ "start": 4919.5,
+ "end": 4919.64,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 8870
+ },
+ {
+ "start": 4919.64,
+ "end": 4919.82,
+ "confidence": 0,
+ "word": "net",
+ "punct": "net",
+ "index": 8871
+ },
+ {
+ "start": 4919.82,
+ "end": 4920.34,
+ "confidence": 0,
+ "word": "neutrality",
+ "punct": "neutrality",
+ "index": 8872
+ },
+ {
+ "start": 4920.34,
+ "end": 4920.6,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 8873
+ },
+ {
+ "start": 4920.6,
+ "end": 4920.78,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 8874
+ },
+ {
+ "start": 4920.78,
+ "end": 4921.22,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 8875
+ },
+ {
+ "start": 4921.22,
+ "end": 4921.88,
+ "confidence": 0,
+ "word": "hotly",
+ "punct": "hotly",
+ "index": 8876
+ },
+ {
+ "start": 4921.88,
+ "end": 4922.26,
+ "confidence": 0,
+ "word": "debated",
+ "punct": "debated",
+ "index": 8877
+ },
+ {
+ "start": 4922.26,
+ "end": 4922.74,
+ "confidence": 0,
+ "word": "topic",
+ "punct": "topic.",
+ "index": 8878
+ }
+ ],
+ "start": 4906.88
+ }
+ },
+ {
+ "key": "1h52m",
+ "text": "And one of the reasons why I have been out there saying that I think that that should be the case is because I look at my own story of when I was getting started building Facebook at Harvard.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4922.74,
+ "end": 4923.32,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 8879
+ },
+ {
+ "start": 4923.32,
+ "end": 4923.56,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 8880
+ },
+ {
+ "start": 4923.56,
+ "end": 4923.64,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8881
+ },
+ {
+ "start": 4923.64,
+ "end": 4923.74,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8882
+ },
+ {
+ "start": 4923.74,
+ "end": 4924.04,
+ "confidence": 0,
+ "word": "reasons",
+ "punct": "reasons",
+ "index": 8883
+ },
+ {
+ "start": 4924.04,
+ "end": 4924.34,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 8884
+ },
+ {
+ "start": 4924.34,
+ "end": 4924.58,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8885
+ },
+ {
+ "start": 4924.58,
+ "end": 4924.76,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 8886
+ },
+ {
+ "start": 4924.76,
+ "end": 4925.08,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 8887
+ },
+ {
+ "start": 4925.08,
+ "end": 4925.62,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 8888
+ },
+ {
+ "start": 4925.62,
+ "end": 4925.86,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 8889
+ },
+ {
+ "start": 4925.86,
+ "end": 4926.84,
+ "confidence": 0,
+ "word": "saying",
+ "punct": "saying",
+ "index": 8890
+ },
+ {
+ "start": 4926.84,
+ "end": 4926.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8891
+ },
+ {
+ "start": 4926.96,
+ "end": 4927.02,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8892
+ },
+ {
+ "start": 4927.02,
+ "end": 4927.16,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8893
+ },
+ {
+ "start": 4927.16,
+ "end": 4927.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8894
+ },
+ {
+ "start": 4927.28,
+ "end": 4927.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8895
+ },
+ {
+ "start": 4927.44,
+ "end": 4927.68,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 8896
+ },
+ {
+ "start": 4927.68,
+ "end": 4927.76,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8897
+ },
+ {
+ "start": 4927.76,
+ "end": 4927.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8898
+ },
+ {
+ "start": 4927.88,
+ "end": 4928.1,
+ "confidence": 0,
+ "word": "case",
+ "punct": "case",
+ "index": 8899
+ },
+ {
+ "start": 4928.1,
+ "end": 4928.3,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8900
+ },
+ {
+ "start": 4928.3,
+ "end": 4928.64,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 8901
+ },
+ {
+ "start": 4928.64,
+ "end": 4929.26,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8902
+ },
+ {
+ "start": 4929.26,
+ "end": 4929.42,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 8903
+ },
+ {
+ "start": 4929.42,
+ "end": 4929.5,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 8904
+ },
+ {
+ "start": 4929.5,
+ "end": 4929.62,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 8905
+ },
+ {
+ "start": 4929.62,
+ "end": 4929.8,
+ "confidence": 0,
+ "word": "own",
+ "punct": "own",
+ "index": 8906
+ },
+ {
+ "start": 4929.8,
+ "end": 4930.28,
+ "confidence": 0,
+ "word": "story",
+ "punct": "story",
+ "index": 8907
+ },
+ {
+ "start": 4930.28,
+ "end": 4930.58,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8908
+ },
+ {
+ "start": 4930.58,
+ "end": 4930.74,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 8909
+ },
+ {
+ "start": 4930.74,
+ "end": 4930.8,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8910
+ },
+ {
+ "start": 4930.8,
+ "end": 4930.94,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 8911
+ },
+ {
+ "start": 4930.94,
+ "end": 4931.18,
+ "confidence": 0,
+ "word": "getting",
+ "punct": "getting",
+ "index": 8912
+ },
+ {
+ "start": 4931.18,
+ "end": 4931.54,
+ "confidence": 0,
+ "word": "started",
+ "punct": "started",
+ "index": 8913
+ },
+ {
+ "start": 4931.54,
+ "end": 4931.86,
+ "confidence": 0,
+ "word": "building",
+ "punct": "building",
+ "index": 8914
+ },
+ {
+ "start": 4931.86,
+ "end": 4932.36,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 8915
+ },
+ {
+ "start": 4932.36,
+ "end": 4932.64,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 8916
+ },
+ {
+ "start": 4932.64,
+ "end": 4933.7,
+ "confidence": 0,
+ "word": "harvard",
+ "punct": "Harvard.",
+ "index": 8917
+ }
+ ],
+ "start": 4922.74
+ }
+ },
+ {
+ "key": "84m33",
+ "text": "I only had one option for an ISP to us.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4933.7,
+ "end": 4934.04,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8918
+ },
+ {
+ "start": 4934.04,
+ "end": 4934.66,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 8919
+ },
+ {
+ "start": 4934.66,
+ "end": 4934.78,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 8920
+ },
+ {
+ "start": 4934.78,
+ "end": 4934.94,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 8921
+ },
+ {
+ "start": 4934.94,
+ "end": 4935.32,
+ "confidence": 0,
+ "word": "option",
+ "punct": "option",
+ "index": 8922
+ },
+ {
+ "start": 4935.32,
+ "end": 4935.64,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 8923
+ },
+ {
+ "start": 4935.64,
+ "end": 4935.74,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 8924
+ },
+ {
+ "start": 4935.74,
+ "end": 4936.2,
+ "confidence": 0,
+ "word": "isp",
+ "punct": "ISP",
+ "index": 8925
+ },
+ {
+ "start": 4936.2,
+ "end": 4936.3,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8926
+ },
+ {
+ "start": 4936.3,
+ "end": 4936.58,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us.",
+ "index": 8927
+ }
+ ],
+ "start": 4933.7
+ }
+ },
+ {
+ "key": "b2kqm",
+ "text": "And if I had to pay extra in order to make it that my app could potentially be seen or used by other people, then we probably here today.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4936.58,
+ "end": 4937.4,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 8928
+ },
+ {
+ "start": 4937.4,
+ "end": 4937.56,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 8929
+ },
+ {
+ "start": 4937.56,
+ "end": 4937.68,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8930
+ },
+ {
+ "start": 4937.68,
+ "end": 4937.84,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 8931
+ },
+ {
+ "start": 4937.84,
+ "end": 4937.94,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8932
+ },
+ {
+ "start": 4937.94,
+ "end": 4938.14,
+ "confidence": 0,
+ "word": "pay",
+ "punct": "pay",
+ "index": 8933
+ },
+ {
+ "start": 4938.14,
+ "end": 4938.62,
+ "confidence": 0,
+ "word": "extra",
+ "punct": "extra",
+ "index": 8934
+ },
+ {
+ "start": 4938.62,
+ "end": 4938.76,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 8935
+ },
+ {
+ "start": 4938.76,
+ "end": 4939.02,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 8936
+ },
+ {
+ "start": 4939.02,
+ "end": 4939.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8937
+ },
+ {
+ "start": 4939.38,
+ "end": 4940.4,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 8938
+ },
+ {
+ "start": 4940.4,
+ "end": 4940.54,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 8939
+ },
+ {
+ "start": 4940.54,
+ "end": 4940.78,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 8940
+ },
+ {
+ "start": 4940.78,
+ "end": 4940.96,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 8941
+ },
+ {
+ "start": 4940.96,
+ "end": 4941.18,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 8942
+ },
+ {
+ "start": 4941.18,
+ "end": 4941.38,
+ "confidence": 0,
+ "word": "could",
+ "punct": "could",
+ "index": 8943
+ },
+ {
+ "start": 4941.38,
+ "end": 4941.82,
+ "confidence": 0,
+ "word": "potentially",
+ "punct": "potentially",
+ "index": 8944
+ },
+ {
+ "start": 4941.82,
+ "end": 4942.1,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8945
+ },
+ {
+ "start": 4942.1,
+ "end": 4942.46,
+ "confidence": 0,
+ "word": "seen",
+ "punct": "seen",
+ "index": 8946
+ },
+ {
+ "start": 4942.46,
+ "end": 4942.62,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 8947
+ },
+ {
+ "start": 4942.62,
+ "end": 4942.82,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 8948
+ },
+ {
+ "start": 4942.82,
+ "end": 4942.94,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 8949
+ },
+ {
+ "start": 4942.94,
+ "end": 4943.2,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 8950
+ },
+ {
+ "start": 4943.2,
+ "end": 4943.54,
+ "confidence": 0,
+ "word": "people,",
+ "punct": "people,",
+ "index": 8951
+ },
+ {
+ "start": 4943.54,
+ "end": 4944.62,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 8952
+ },
+ {
+ "start": 4944.62,
+ "end": 4944.7,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 8953
+ },
+ {
+ "start": 4944.7,
+ "end": 4945.03,
+ "confidence": 0,
+ "word": "probably",
+ "punct": "probably",
+ "index": 8954
+ },
+ {
+ "start": 4945.03,
+ "end": 4945.37,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 8955
+ },
+ {
+ "start": 4945.37,
+ "end": 4945.59,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today.",
+ "index": 8956
+ }
+ ],
+ "start": 4936.58
+ }
+ },
+ {
+ "key": "bb7fh",
+ "text": "Okay, but we're talking about privacy concerns and let me just say, we'll have to follow up on this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4945.59,
+ "end": 4946.81,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "Okay,",
+ "index": 8957
+ },
+ {
+ "start": 4946.81,
+ "end": 4946.97,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 8958
+ },
+ {
+ "start": 4946.97,
+ "end": 4947.17,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 8959
+ },
+ {
+ "start": 4947.17,
+ "end": 4947.47,
+ "confidence": 0,
+ "word": "talking",
+ "punct": "talking",
+ "index": 8960
+ },
+ {
+ "start": 4947.47,
+ "end": 4947.71,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 8961
+ },
+ {
+ "start": 4947.71,
+ "end": 4948.23,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 8962
+ },
+ {
+ "start": 4948.23,
+ "end": 4948.73,
+ "confidence": 0,
+ "word": "concerns",
+ "punct": "concerns",
+ "index": 8963
+ },
+ {
+ "start": 4948.73,
+ "end": 4949.45,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8964
+ },
+ {
+ "start": 4949.45,
+ "end": 4949.59,
+ "confidence": 0,
+ "word": "let",
+ "punct": "let",
+ "index": 8965
+ },
+ {
+ "start": 4949.59,
+ "end": 4949.73,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 8966
+ },
+ {
+ "start": 4949.73,
+ "end": 4949.87,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 8967
+ },
+ {
+ "start": 4949.87,
+ "end": 4950.05,
+ "confidence": 0,
+ "word": "say,",
+ "punct": "say,",
+ "index": 8968
+ },
+ {
+ "start": 4950.05,
+ "end": 4950.63,
+ "confidence": 0,
+ "word": "we'll",
+ "punct": "we'll",
+ "index": 8969
+ },
+ {
+ "start": 4950.63,
+ "end": 4950.79,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 8970
+ },
+ {
+ "start": 4950.79,
+ "end": 4950.93,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8971
+ },
+ {
+ "start": 4950.93,
+ "end": 4951.27,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 8972
+ },
+ {
+ "start": 4951.27,
+ "end": 4951.41,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 8973
+ },
+ {
+ "start": 4951.41,
+ "end": 4951.55,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 8974
+ },
+ {
+ "start": 4951.55,
+ "end": 4951.73,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 8975
+ }
+ ],
+ "start": 4945.59
+ }
+ },
+ {
+ "key": "1og1c",
+ "text": "But I think you and I agree this is going to be one of the major items of debate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4951.73,
+ "end": 4951.89,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 8976
+ },
+ {
+ "start": 4951.89,
+ "end": 4952.77,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8977
+ },
+ {
+ "start": 4952.77,
+ "end": 4952.99,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 8978
+ },
+ {
+ "start": 4952.99,
+ "end": 4953.13,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 8979
+ },
+ {
+ "start": 4953.13,
+ "end": 4953.29,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 8980
+ },
+ {
+ "start": 4953.29,
+ "end": 4953.39,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 8981
+ },
+ {
+ "start": 4953.39,
+ "end": 4953.63,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 8982
+ },
+ {
+ "start": 4953.63,
+ "end": 4953.81,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 8983
+ },
+ {
+ "start": 4953.81,
+ "end": 4953.95,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 8984
+ },
+ {
+ "start": 4953.95,
+ "end": 4954.11,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 8985
+ },
+ {
+ "start": 4954.11,
+ "end": 4954.19,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8986
+ },
+ {
+ "start": 4954.19,
+ "end": 4954.31,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 8987
+ },
+ {
+ "start": 4954.31,
+ "end": 4954.67,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 8988
+ },
+ {
+ "start": 4954.67,
+ "end": 4955.17,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8989
+ },
+ {
+ "start": 4955.17,
+ "end": 4955.31,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 8990
+ },
+ {
+ "start": 4955.31,
+ "end": 4956.36,
+ "confidence": 0,
+ "word": "major",
+ "punct": "major",
+ "index": 8991
+ },
+ {
+ "start": 4956.36,
+ "end": 4957.24,
+ "confidence": 0,
+ "word": "items",
+ "punct": "items",
+ "index": 8992
+ },
+ {
+ "start": 4957.24,
+ "end": 4957.52,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 8993
+ },
+ {
+ "start": 4957.52,
+ "end": 4958.02,
+ "confidence": 0,
+ "word": "debate",
+ "punct": "debate.",
+ "index": 8994
+ }
+ ],
+ "start": 4951.73
+ }
+ },
+ {
+ "key": "1vu7d",
+ "text": "If we have to go forward and do this from a governmental standpoint.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4958.02,
+ "end": 4958.86,
+ "confidence": 0,
+ "word": "if",
+ "punct": "If",
+ "index": 8995
+ },
+ {
+ "start": 4958.86,
+ "end": 4958.98,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 8996
+ },
+ {
+ "start": 4958.98,
+ "end": 4959.18,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 8997
+ },
+ {
+ "start": 4959.18,
+ "end": 4959.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 8998
+ },
+ {
+ "start": 4959.28,
+ "end": 4959.44,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 8999
+ },
+ {
+ "start": 4959.44,
+ "end": 4959.94,
+ "confidence": 0,
+ "word": "forward",
+ "punct": "forward",
+ "index": 9000
+ },
+ {
+ "start": 4959.94,
+ "end": 4960.64,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9001
+ },
+ {
+ "start": 4960.64,
+ "end": 4960.82,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 9002
+ },
+ {
+ "start": 4960.82,
+ "end": 4960.98,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 9003
+ },
+ {
+ "start": 4960.98,
+ "end": 4961.16,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 9004
+ },
+ {
+ "start": 4961.16,
+ "end": 4961.22,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9005
+ },
+ {
+ "start": 4961.22,
+ "end": 4961.76,
+ "confidence": 0,
+ "word": "governmental",
+ "punct": "governmental",
+ "index": 9006
+ },
+ {
+ "start": 4961.76,
+ "end": 4962.34,
+ "confidence": 0,
+ "word": "standpoint",
+ "punct": "standpoint.",
+ "index": 9007
+ }
+ ],
+ "start": 4958.02
+ }
+ },
+ {
+ "key": "86pgh",
+ "text": "Let me just move on to another couple of items is it true that as was recently publicized that Facebook collects the call and text histories of its users that use Android phones.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4962.34,
+ "end": 4962.68,
+ "confidence": 0,
+ "word": "let",
+ "punct": "Let",
+ "index": 9008
+ },
+ {
+ "start": 4962.68,
+ "end": 4962.84,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 9009
+ },
+ {
+ "start": 4962.84,
+ "end": 4963.02,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 9010
+ },
+ {
+ "start": 4963.02,
+ "end": 4963.74,
+ "confidence": 0,
+ "word": "move",
+ "punct": "move",
+ "index": 9011
+ },
+ {
+ "start": 4963.74,
+ "end": 4963.88,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 9012
+ },
+ {
+ "start": 4963.88,
+ "end": 4964.04,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9013
+ },
+ {
+ "start": 4964.04,
+ "end": 4964.44,
+ "confidence": 0,
+ "word": "another",
+ "punct": "another",
+ "index": 9014
+ },
+ {
+ "start": 4964.44,
+ "end": 4964.72,
+ "confidence": 0,
+ "word": "couple",
+ "punct": "couple",
+ "index": 9015
+ },
+ {
+ "start": 4964.72,
+ "end": 4964.84,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9016
+ },
+ {
+ "start": 4964.84,
+ "end": 4965.66,
+ "confidence": 0,
+ "word": "items",
+ "punct": "items",
+ "index": 9017
+ },
+ {
+ "start": 4965.66,
+ "end": 4965.82,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9018
+ },
+ {
+ "start": 4965.82,
+ "end": 4965.96,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 9019
+ },
+ {
+ "start": 4965.96,
+ "end": 4967.32,
+ "confidence": 0,
+ "word": "true",
+ "punct": "true",
+ "index": 9020
+ },
+ {
+ "start": 4967.32,
+ "end": 4968.04,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9021
+ },
+ {
+ "start": 4968.04,
+ "end": 4969.28,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 9022
+ },
+ {
+ "start": 4969.28,
+ "end": 4969.48,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 9023
+ },
+ {
+ "start": 4969.48,
+ "end": 4969.88,
+ "confidence": 0,
+ "word": "recently",
+ "punct": "recently",
+ "index": 9024
+ },
+ {
+ "start": 4969.88,
+ "end": 4970.48,
+ "confidence": 0,
+ "word": "publicized",
+ "punct": "publicized",
+ "index": 9025
+ },
+ {
+ "start": 4970.48,
+ "end": 4970.64,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9026
+ },
+ {
+ "start": 4970.64,
+ "end": 4971.16,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 9027
+ },
+ {
+ "start": 4971.16,
+ "end": 4971.58,
+ "confidence": 0,
+ "word": "collects",
+ "punct": "collects",
+ "index": 9028
+ },
+ {
+ "start": 4971.58,
+ "end": 4971.74,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9029
+ },
+ {
+ "start": 4971.74,
+ "end": 4972.16,
+ "confidence": 0,
+ "word": "call",
+ "punct": "call",
+ "index": 9030
+ },
+ {
+ "start": 4972.16,
+ "end": 4972.48,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9031
+ },
+ {
+ "start": 4972.48,
+ "end": 4973.14,
+ "confidence": 0,
+ "word": "text",
+ "punct": "text",
+ "index": 9032
+ },
+ {
+ "start": 4973.14,
+ "end": 4974.16,
+ "confidence": 0,
+ "word": "histories",
+ "punct": "histories",
+ "index": 9033
+ },
+ {
+ "start": 4974.16,
+ "end": 4974.94,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9034
+ },
+ {
+ "start": 4974.94,
+ "end": 4975.3,
+ "confidence": 0,
+ "word": "its",
+ "punct": "its",
+ "index": 9035
+ },
+ {
+ "start": 4975.3,
+ "end": 4975.94,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 9036
+ },
+ {
+ "start": 4975.94,
+ "end": 4976.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9037
+ },
+ {
+ "start": 4976.18,
+ "end": 4976.42,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 9038
+ },
+ {
+ "start": 4976.42,
+ "end": 4977.04,
+ "confidence": 0,
+ "word": "android",
+ "punct": "Android",
+ "index": 9039
+ },
+ {
+ "start": 4977.04,
+ "end": 4978.28,
+ "confidence": 0,
+ "word": "phones",
+ "punct": "phones.",
+ "index": 9040
+ }
+ ],
+ "start": 4962.34
+ }
+ },
+ {
+ "key": "5obg5",
+ "text": "Senator, we have an app called Messenger for sending messages to your Facebook friends.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4978.28,
+ "end": 4979.26,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 9041
+ },
+ {
+ "start": 4979.26,
+ "end": 4979.78,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 9042
+ },
+ {
+ "start": 4979.78,
+ "end": 4979.94,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9043
+ },
+ {
+ "start": 4979.94,
+ "end": 4980.02,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 9044
+ },
+ {
+ "start": 4980.02,
+ "end": 4980.22,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 9045
+ },
+ {
+ "start": 4980.22,
+ "end": 4980.48,
+ "confidence": 0,
+ "word": "called",
+ "punct": "called",
+ "index": 9046
+ },
+ {
+ "start": 4980.48,
+ "end": 4981,
+ "confidence": 0,
+ "word": "messenger",
+ "punct": "Messenger",
+ "index": 9047
+ },
+ {
+ "start": 4981,
+ "end": 4981.96,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 9048
+ },
+ {
+ "start": 4981.96,
+ "end": 4982.26,
+ "confidence": 0,
+ "word": "sending",
+ "punct": "sending",
+ "index": 9049
+ },
+ {
+ "start": 4982.26,
+ "end": 4982.84,
+ "confidence": 0,
+ "word": "messages",
+ "punct": "messages",
+ "index": 9050
+ },
+ {
+ "start": 4982.84,
+ "end": 4983,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9051
+ },
+ {
+ "start": 4983,
+ "end": 4983.16,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 9052
+ },
+ {
+ "start": 4983.16,
+ "end": 4983.54,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 9053
+ },
+ {
+ "start": 4983.54,
+ "end": 4983.88,
+ "confidence": 0,
+ "word": "friends",
+ "punct": "friends.",
+ "index": 9054
+ }
+ ],
+ "start": 4978.28
+ }
+ },
+ {
+ "key": "63g6h",
+ "text": "And that app offers people an option to sync their text messages into the messaging app and to make it so that basically, so you can have one app where it has both your texts.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4983.88,
+ "end": 4984.66,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 9055
+ },
+ {
+ "start": 4984.66,
+ "end": 4984.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9056
+ },
+ {
+ "start": 4984.94,
+ "end": 4985.22,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 9057
+ },
+ {
+ "start": 4985.22,
+ "end": 4985.66,
+ "confidence": 0,
+ "word": "offers",
+ "punct": "offers",
+ "index": 9058
+ },
+ {
+ "start": 4985.66,
+ "end": 4985.94,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 9059
+ },
+ {
+ "start": 4985.94,
+ "end": 4986.06,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 9060
+ },
+ {
+ "start": 4986.06,
+ "end": 4986.54,
+ "confidence": 0,
+ "word": "option",
+ "punct": "option",
+ "index": 9061
+ },
+ {
+ "start": 4986.54,
+ "end": 4987.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9062
+ },
+ {
+ "start": 4987.14,
+ "end": 4988.35,
+ "confidence": 0,
+ "word": "sync",
+ "punct": "sync",
+ "index": 9063
+ },
+ {
+ "start": 4988.35,
+ "end": 4989.51,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 9064
+ },
+ {
+ "start": 4989.51,
+ "end": 4989.95,
+ "confidence": 0,
+ "word": "text",
+ "punct": "text",
+ "index": 9065
+ },
+ {
+ "start": 4989.95,
+ "end": 4990.51,
+ "confidence": 0,
+ "word": "messages",
+ "punct": "messages",
+ "index": 9066
+ },
+ {
+ "start": 4990.51,
+ "end": 4991.25,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 9067
+ },
+ {
+ "start": 4991.25,
+ "end": 4991.37,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9068
+ },
+ {
+ "start": 4991.37,
+ "end": 4991.77,
+ "confidence": 0,
+ "word": "messaging",
+ "punct": "messaging",
+ "index": 9069
+ },
+ {
+ "start": 4991.77,
+ "end": 4992.01,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 9070
+ },
+ {
+ "start": 4992.01,
+ "end": 4992.71,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9071
+ },
+ {
+ "start": 4992.71,
+ "end": 4992.99,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9072
+ },
+ {
+ "start": 4992.99,
+ "end": 4993.17,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 9073
+ },
+ {
+ "start": 4993.17,
+ "end": 4993.27,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 9074
+ },
+ {
+ "start": 4993.27,
+ "end": 4993.47,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 9075
+ },
+ {
+ "start": 4993.47,
+ "end": 4993.71,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9076
+ },
+ {
+ "start": 4993.71,
+ "end": 4994.63,
+ "confidence": 0,
+ "word": "basically,",
+ "punct": "basically,",
+ "index": 9077
+ },
+ {
+ "start": 4994.63,
+ "end": 4994.79,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 9078
+ },
+ {
+ "start": 4994.79,
+ "end": 4994.89,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9079
+ },
+ {
+ "start": 4994.89,
+ "end": 4995.01,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 9080
+ },
+ {
+ "start": 4995.01,
+ "end": 4995.15,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9081
+ },
+ {
+ "start": 4995.15,
+ "end": 4995.29,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 9082
+ },
+ {
+ "start": 4995.29,
+ "end": 4995.53,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 9083
+ },
+ {
+ "start": 4995.53,
+ "end": 4995.99,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 9084
+ },
+ {
+ "start": 4995.99,
+ "end": 4996.15,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 9085
+ },
+ {
+ "start": 4996.15,
+ "end": 4996.37,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 9086
+ },
+ {
+ "start": 4996.37,
+ "end": 4996.67,
+ "confidence": 0,
+ "word": "both",
+ "punct": "both",
+ "index": 9087
+ },
+ {
+ "start": 4996.67,
+ "end": 4996.99,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 9088
+ },
+ {
+ "start": 4996.99,
+ "end": 4997.33,
+ "confidence": 0,
+ "word": "texts",
+ "punct": "texts.",
+ "index": 9089
+ }
+ ],
+ "start": 4983.88
+ }
+ },
+ {
+ "key": "ajmo9",
+ "text": "And and your Facebook messages in one place.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 4997.33,
+ "end": 4998.84,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 9090
+ },
+ {
+ "start": 4998.84,
+ "end": 4999.8,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9091
+ },
+ {
+ "start": 4999.8,
+ "end": 5000.06,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 9092
+ },
+ {
+ "start": 5000.06,
+ "end": 5000.44,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 9093
+ },
+ {
+ "start": 5000.44,
+ "end": 5000.8,
+ "confidence": 0,
+ "word": "messages",
+ "punct": "messages",
+ "index": 9094
+ },
+ {
+ "start": 5000.8,
+ "end": 5000.98,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9095
+ },
+ {
+ "start": 5000.98,
+ "end": 5001.2,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 9096
+ },
+ {
+ "start": 5001.2,
+ "end": 5001.74,
+ "confidence": 0,
+ "word": "place",
+ "punct": "place.",
+ "index": 9097
+ }
+ ],
+ "start": 4997.33
+ }
+ },
+ {
+ "key": "86it8",
+ "text": "We also allow people the option you can opt in around that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5001.74,
+ "end": 5002.74,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 9098
+ },
+ {
+ "start": 5002.74,
+ "end": 5003.22,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 9099
+ },
+ {
+ "start": 5003.22,
+ "end": 5003.58,
+ "confidence": 0,
+ "word": "allow",
+ "punct": "allow",
+ "index": 9100
+ },
+ {
+ "start": 5003.58,
+ "end": 5003.84,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 9101
+ },
+ {
+ "start": 5003.84,
+ "end": 5004.04,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9102
+ },
+ {
+ "start": 5004.04,
+ "end": 5004.42,
+ "confidence": 0,
+ "word": "option",
+ "punct": "option",
+ "index": 9103
+ },
+ {
+ "start": 5004.42,
+ "end": 5005.14,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9104
+ },
+ {
+ "start": 5005.14,
+ "end": 5005.3,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 9105
+ },
+ {
+ "start": 5005.3,
+ "end": 5005.54,
+ "confidence": 0,
+ "word": "opt",
+ "punct": "opt",
+ "index": 9106
+ },
+ {
+ "start": 5005.54,
+ "end": 5005.72,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9107
+ },
+ {
+ "start": 5005.72,
+ "end": 5006,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 9108
+ },
+ {
+ "start": 5006,
+ "end": 5006.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 9109
+ }
+ ],
+ "start": 5001.74
+ }
+ },
+ {
+ "key": "eu053",
+ "text": "Yes, it is.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5006.4,
+ "end": 5006.82,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 9110
+ },
+ {
+ "start": 5006.82,
+ "end": 5007.14,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 9111
+ },
+ {
+ "start": 5007.14,
+ "end": 5007.28,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is.",
+ "index": 9112
+ }
+ ],
+ "start": 5006.4
+ }
+ },
+ {
+ "key": "74ipa",
+ "text": "It is in.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5007.28,
+ "end": 5008.1,
+ "confidence": 0,
+ "word": "it",
+ "punct": "It",
+ "index": 9113
+ },
+ {
+ "start": 5008.1,
+ "end": 5008.36,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9114
+ },
+ {
+ "start": 5008.36,
+ "end": 5009.38,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in.",
+ "index": 9115
+ }
+ ],
+ "start": 5007.28
+ }
+ },
+ {
+ "key": "45l11",
+ "text": "You have to affirmatively say that you want to sync that information before we get access.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5009.38,
+ "end": 5010.16,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 9116
+ },
+ {
+ "start": 5010.16,
+ "end": 5010.36,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9117
+ },
+ {
+ "start": 5010.36,
+ "end": 5010.76,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9118
+ },
+ {
+ "start": 5010.76,
+ "end": 5011.72,
+ "confidence": 0,
+ "word": "affirmatively",
+ "punct": "affirmatively",
+ "index": 9119
+ },
+ {
+ "start": 5011.72,
+ "end": 5012,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 9120
+ },
+ {
+ "start": 5012,
+ "end": 5012.22,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9121
+ },
+ {
+ "start": 5012.22,
+ "end": 5012.36,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9122
+ },
+ {
+ "start": 5012.36,
+ "end": 5012.52,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 9123
+ },
+ {
+ "start": 5012.52,
+ "end": 5012.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9124
+ },
+ {
+ "start": 5012.66,
+ "end": 5012.98,
+ "confidence": 0,
+ "word": "sync",
+ "punct": "sync",
+ "index": 9125
+ },
+ {
+ "start": 5012.98,
+ "end": 5013.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9126
+ },
+ {
+ "start": 5013.28,
+ "end": 5013.86,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 9127
+ },
+ {
+ "start": 5013.86,
+ "end": 5014.5,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 9128
+ },
+ {
+ "start": 5014.5,
+ "end": 5014.62,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 9129
+ },
+ {
+ "start": 5014.62,
+ "end": 5014.76,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 9130
+ },
+ {
+ "start": 5014.76,
+ "end": 5015.02,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access.",
+ "index": 9131
+ }
+ ],
+ "start": 5009.38
+ }
+ },
+ {
+ "key": "84leh",
+ "text": "Unless you opt in you don't collect that college history that is correct.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5015.02,
+ "end": 5015.76,
+ "confidence": 0,
+ "word": "unless",
+ "punct": "Unless",
+ "index": 9132
+ },
+ {
+ "start": 5015.76,
+ "end": 5015.88,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9133
+ },
+ {
+ "start": 5015.88,
+ "end": 5016.18,
+ "confidence": 0,
+ "word": "opt",
+ "punct": "opt",
+ "index": 9134
+ },
+ {
+ "start": 5016.18,
+ "end": 5016.56,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9135
+ },
+ {
+ "start": 5016.56,
+ "end": 5017.44,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9136
+ },
+ {
+ "start": 5017.44,
+ "end": 5017.86,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 9137
+ },
+ {
+ "start": 5017.86,
+ "end": 5018.36,
+ "confidence": 0,
+ "word": "collect",
+ "punct": "collect",
+ "index": 9138
+ },
+ {
+ "start": 5018.36,
+ "end": 5019.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9139
+ },
+ {
+ "start": 5019.3,
+ "end": 5019.74,
+ "confidence": 0,
+ "word": "college",
+ "punct": "college",
+ "index": 9140
+ },
+ {
+ "start": 5019.74,
+ "end": 5020.54,
+ "confidence": 0,
+ "word": "history",
+ "punct": "history",
+ "index": 9141
+ },
+ {
+ "start": 5020.54,
+ "end": 5020.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9142
+ },
+ {
+ "start": 5020.94,
+ "end": 5021.1,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9143
+ },
+ {
+ "start": 5021.1,
+ "end": 5021.38,
+ "confidence": 0,
+ "word": "correct",
+ "punct": "correct.",
+ "index": 9144
+ }
+ ],
+ "start": 5015.02
+ }
+ },
+ {
+ "key": "d2cr0",
+ "text": "And is that true?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5021.38,
+ "end": 5021.5,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 9145
+ },
+ {
+ "start": 5021.5,
+ "end": 5021.66,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9146
+ },
+ {
+ "start": 5021.66,
+ "end": 5021.84,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9147
+ },
+ {
+ "start": 5021.84,
+ "end": 5022.18,
+ "confidence": 0,
+ "word": "true",
+ "punct": "true?",
+ "index": 9148
+ }
+ ],
+ "start": 5021.38
+ }
+ },
+ {
+ "key": "1vc9m",
+ "text": "Or is this practice done at all with minors?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5022.18,
+ "end": 5022.68,
+ "confidence": 0,
+ "word": "or",
+ "punct": "Or",
+ "index": 9149
+ },
+ {
+ "start": 5022.68,
+ "end": 5023.84,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9150
+ },
+ {
+ "start": 5023.84,
+ "end": 5024.02,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 9151
+ },
+ {
+ "start": 5024.02,
+ "end": 5024.42,
+ "confidence": 0,
+ "word": "practice",
+ "punct": "practice",
+ "index": 9152
+ },
+ {
+ "start": 5024.42,
+ "end": 5024.68,
+ "confidence": 0,
+ "word": "done",
+ "punct": "done",
+ "index": 9153
+ },
+ {
+ "start": 5024.68,
+ "end": 5024.78,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 9154
+ },
+ {
+ "start": 5024.78,
+ "end": 5025,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 9155
+ },
+ {
+ "start": 5025,
+ "end": 5025.16,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 9156
+ },
+ {
+ "start": 5025.16,
+ "end": 5025.64,
+ "confidence": 0,
+ "word": "minors",
+ "punct": "minors?",
+ "index": 9157
+ }
+ ],
+ "start": 5022.18
+ }
+ },
+ {
+ "key": "bs85m",
+ "text": "Or do you make an exception?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5025.64,
+ "end": 5025.76,
+ "confidence": 0,
+ "word": "or",
+ "punct": "Or",
+ "index": 9158
+ },
+ {
+ "start": 5025.76,
+ "end": 5025.86,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 9159
+ },
+ {
+ "start": 5025.86,
+ "end": 5025.98,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9160
+ },
+ {
+ "start": 5025.98,
+ "end": 5026.12,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 9161
+ },
+ {
+ "start": 5026.12,
+ "end": 5026.22,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 9162
+ },
+ {
+ "start": 5026.22,
+ "end": 5026.7,
+ "confidence": 0,
+ "word": "exception",
+ "punct": "exception?",
+ "index": 9163
+ }
+ ],
+ "start": 5025.64
+ }
+ },
+ {
+ "key": "d7568",
+ "text": "There for persons age 13 to 17 I do not know we can follow up.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5026.7,
+ "end": 5026.92,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 9164
+ },
+ {
+ "start": 5026.92,
+ "end": 5027.1,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 9165
+ },
+ {
+ "start": 5027.1,
+ "end": 5027.98,
+ "confidence": 0,
+ "word": "persons",
+ "punct": "persons",
+ "index": 9166
+ },
+ {
+ "start": 5027.98,
+ "end": 5028.4,
+ "confidence": 0,
+ "word": "age",
+ "punct": "age",
+ "index": 9167
+ },
+ {
+ "start": 5028.4,
+ "end": 5028.8,
+ "confidence": 0,
+ "word": "13",
+ "punct": "13",
+ "index": 9168
+ },
+ {
+ "start": 5028.8,
+ "end": 5028.94,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9169
+ },
+ {
+ "start": 5028.94,
+ "end": 5030.1,
+ "confidence": 0,
+ "word": "17",
+ "punct": "17",
+ "index": 9170
+ },
+ {
+ "start": 5030.1,
+ "end": 5030.58,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9171
+ },
+ {
+ "start": 5030.58,
+ "end": 5031.08,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 9172
+ },
+ {
+ "start": 5031.08,
+ "end": 5031.28,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 9173
+ },
+ {
+ "start": 5031.28,
+ "end": 5031.44,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 9174
+ },
+ {
+ "start": 5031.44,
+ "end": 5031.66,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 9175
+ },
+ {
+ "start": 5031.66,
+ "end": 5031.84,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 9176
+ },
+ {
+ "start": 5031.84,
+ "end": 5032.08,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 9177
+ },
+ {
+ "start": 5032.08,
+ "end": 5032.18,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up.",
+ "index": 9178
+ }
+ ],
+ "start": 5026.7
+ }
+ },
+ {
+ "key": "590bk",
+ "text": "Okay, do that let's do that one other thing there have been reports that Facebook can track users Internet browsing activity even after that user has logged off of the Facebook platform.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5032.18,
+ "end": 5032.46,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "Okay,",
+ "index": 9179
+ },
+ {
+ "start": 5032.46,
+ "end": 5032.7,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 9180
+ },
+ {
+ "start": 5032.7,
+ "end": 5032.84,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9181
+ },
+ {
+ "start": 5032.84,
+ "end": 5033.06,
+ "confidence": 0,
+ "word": "let's",
+ "punct": "let's",
+ "index": 9182
+ },
+ {
+ "start": 5033.06,
+ "end": 5033.18,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 9183
+ },
+ {
+ "start": 5033.18,
+ "end": 5033.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9184
+ },
+ {
+ "start": 5033.32,
+ "end": 5033.52,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 9185
+ },
+ {
+ "start": 5033.52,
+ "end": 5033.78,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 9186
+ },
+ {
+ "start": 5033.78,
+ "end": 5034.04,
+ "confidence": 0,
+ "word": "thing",
+ "punct": "thing",
+ "index": 9187
+ },
+ {
+ "start": 5034.04,
+ "end": 5034.94,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 9188
+ },
+ {
+ "start": 5034.94,
+ "end": 5035.06,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9189
+ },
+ {
+ "start": 5035.06,
+ "end": 5035.22,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 9190
+ },
+ {
+ "start": 5035.22,
+ "end": 5035.6,
+ "confidence": 0,
+ "word": "reports",
+ "punct": "reports",
+ "index": 9191
+ },
+ {
+ "start": 5035.6,
+ "end": 5035.76,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9192
+ },
+ {
+ "start": 5035.76,
+ "end": 5036.26,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 9193
+ },
+ {
+ "start": 5036.26,
+ "end": 5036.48,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 9194
+ },
+ {
+ "start": 5036.48,
+ "end": 5036.92,
+ "confidence": 0,
+ "word": "track",
+ "punct": "track",
+ "index": 9195
+ },
+ {
+ "start": 5036.92,
+ "end": 5038.08,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 9196
+ },
+ {
+ "start": 5038.08,
+ "end": 5038.74,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 9197
+ },
+ {
+ "start": 5038.74,
+ "end": 5039.42,
+ "confidence": 0,
+ "word": "browsing",
+ "punct": "browsing",
+ "index": 9198
+ },
+ {
+ "start": 5039.42,
+ "end": 5040.31,
+ "confidence": 0,
+ "word": "activity",
+ "punct": "activity",
+ "index": 9199
+ },
+ {
+ "start": 5040.31,
+ "end": 5040.85,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 9200
+ },
+ {
+ "start": 5040.85,
+ "end": 5041.23,
+ "confidence": 0,
+ "word": "after",
+ "punct": "after",
+ "index": 9201
+ },
+ {
+ "start": 5041.23,
+ "end": 5041.45,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9202
+ },
+ {
+ "start": 5041.45,
+ "end": 5041.83,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 9203
+ },
+ {
+ "start": 5041.83,
+ "end": 5042.43,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 9204
+ },
+ {
+ "start": 5042.43,
+ "end": 5043.05,
+ "confidence": 0,
+ "word": "logged",
+ "punct": "logged",
+ "index": 9205
+ },
+ {
+ "start": 5043.05,
+ "end": 5043.49,
+ "confidence": 0,
+ "word": "off",
+ "punct": "off",
+ "index": 9206
+ },
+ {
+ "start": 5043.49,
+ "end": 5044.45,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9207
+ },
+ {
+ "start": 5044.45,
+ "end": 5044.59,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9208
+ },
+ {
+ "start": 5044.59,
+ "end": 5045.23,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 9209
+ },
+ {
+ "start": 5045.23,
+ "end": 5045.89,
+ "confidence": 0,
+ "word": "platform",
+ "punct": "platform.",
+ "index": 9210
+ }
+ ],
+ "start": 5032.18
+ }
+ },
+ {
+ "key": "4b5n",
+ "text": "Can you confirm whether or not this is true?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5045.89,
+ "end": 5046.43,
+ "confidence": 0,
+ "word": "can",
+ "punct": "Can",
+ "index": 9211
+ },
+ {
+ "start": 5046.43,
+ "end": 5046.55,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9212
+ },
+ {
+ "start": 5046.55,
+ "end": 5046.93,
+ "confidence": 0,
+ "word": "confirm",
+ "punct": "confirm",
+ "index": 9213
+ },
+ {
+ "start": 5046.93,
+ "end": 5047.29,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 9214
+ },
+ {
+ "start": 5047.29,
+ "end": 5047.51,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 9215
+ },
+ {
+ "start": 5047.51,
+ "end": 5047.79,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 9216
+ },
+ {
+ "start": 5047.79,
+ "end": 5048.63,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 9217
+ },
+ {
+ "start": 5048.63,
+ "end": 5048.83,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9218
+ },
+ {
+ "start": 5048.83,
+ "end": 5051.14,
+ "confidence": 0,
+ "word": "true",
+ "punct": "true?",
+ "index": 9219
+ }
+ ],
+ "start": 5045.89
+ }
+ },
+ {
+ "key": "b1lu1",
+ "text": "Senator?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5051.14,
+ "end": 5052.18,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator?",
+ "index": 9220
+ }
+ ],
+ "start": 5051.14
+ }
+ },
+ {
+ "key": "735ij",
+ "text": "I want to make sure I get this accurate?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5052.18,
+ "end": 5053.14,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9221
+ },
+ {
+ "start": 5053.14,
+ "end": 5053.36,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 9222
+ },
+ {
+ "start": 5053.36,
+ "end": 5053.44,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9223
+ },
+ {
+ "start": 5053.44,
+ "end": 5053.56,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 9224
+ },
+ {
+ "start": 5053.56,
+ "end": 5053.68,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 9225
+ },
+ {
+ "start": 5053.68,
+ "end": 5053.72,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9226
+ },
+ {
+ "start": 5053.72,
+ "end": 5053.86,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 9227
+ },
+ {
+ "start": 5053.86,
+ "end": 5054,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 9228
+ },
+ {
+ "start": 5054,
+ "end": 5054.46,
+ "confidence": 0,
+ "word": "accurate",
+ "punct": "accurate?",
+ "index": 9229
+ }
+ ],
+ "start": 5052.18
+ }
+ },
+ {
+ "key": "ar2og",
+ "text": "So probably better to have my team follow up.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5054.46,
+ "end": 5054.6,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 9230
+ },
+ {
+ "start": 5054.6,
+ "end": 5055.12,
+ "confidence": 0,
+ "word": "probably",
+ "punct": "probably",
+ "index": 9231
+ },
+ {
+ "start": 5055.12,
+ "end": 5055.46,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better",
+ "index": 9232
+ },
+ {
+ "start": 5055.46,
+ "end": 5055.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9233
+ },
+ {
+ "start": 5055.58,
+ "end": 5055.9,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9234
+ },
+ {
+ "start": 5055.9,
+ "end": 5056.26,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 9235
+ },
+ {
+ "start": 5056.26,
+ "end": 5056.54,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 9236
+ },
+ {
+ "start": 5056.54,
+ "end": 5056.88,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 9237
+ },
+ {
+ "start": 5056.88,
+ "end": 5056.98,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up.",
+ "index": 9238
+ }
+ ],
+ "start": 5054.46
+ }
+ },
+ {
+ "key": "29ncf",
+ "text": "So you don't know it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5056.98,
+ "end": 5057.24,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 9239
+ },
+ {
+ "start": 5057.24,
+ "end": 5057.34,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9240
+ },
+ {
+ "start": 5057.34,
+ "end": 5057.5,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 9241
+ },
+ {
+ "start": 5057.5,
+ "end": 5057.64,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 9242
+ },
+ {
+ "start": 5057.64,
+ "end": 5058.04,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 9243
+ }
+ ],
+ "start": 5056.98
+ }
+ },
+ {
+ "key": "ah8u8",
+ "text": "I know that people use cookies on the Internet and that you can probably correlate activity between between sessions.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5058.04,
+ "end": 5059.02,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9244
+ },
+ {
+ "start": 5059.02,
+ "end": 5059.2,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 9245
+ },
+ {
+ "start": 5059.2,
+ "end": 5059.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9246
+ },
+ {
+ "start": 5059.38,
+ "end": 5059.96,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 9247
+ },
+ {
+ "start": 5059.96,
+ "end": 5060.96,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 9248
+ },
+ {
+ "start": 5060.96,
+ "end": 5061.44,
+ "confidence": 0,
+ "word": "cookies",
+ "punct": "cookies",
+ "index": 9249
+ },
+ {
+ "start": 5061.44,
+ "end": 5061.72,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 9250
+ },
+ {
+ "start": 5061.72,
+ "end": 5061.82,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9251
+ },
+ {
+ "start": 5061.82,
+ "end": 5062.24,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 9252
+ },
+ {
+ "start": 5062.24,
+ "end": 5062.84,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9253
+ },
+ {
+ "start": 5062.84,
+ "end": 5063.06,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9254
+ },
+ {
+ "start": 5063.06,
+ "end": 5063.16,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9255
+ },
+ {
+ "start": 5063.16,
+ "end": 5063.34,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 9256
+ },
+ {
+ "start": 5063.34,
+ "end": 5063.76,
+ "confidence": 0,
+ "word": "probably",
+ "punct": "probably",
+ "index": 9257
+ },
+ {
+ "start": 5063.76,
+ "end": 5064.18,
+ "confidence": 0,
+ "word": "correlate",
+ "punct": "correlate",
+ "index": 9258
+ },
+ {
+ "start": 5064.18,
+ "end": 5064.7,
+ "confidence": 0,
+ "word": "activity",
+ "punct": "activity",
+ "index": 9259
+ },
+ {
+ "start": 5064.7,
+ "end": 5065.9,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 9260
+ },
+ {
+ "start": 5065.9,
+ "end": 5066.98,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 9261
+ },
+ {
+ "start": 5066.98,
+ "end": 5067.74,
+ "confidence": 0,
+ "word": "sessions",
+ "punct": "sessions.",
+ "index": 9262
+ }
+ ],
+ "start": 5058.04
+ }
+ },
+ {
+ "key": "95hj0",
+ "text": "We do that for a number of reasons, including security and including measuring ads to make sure that the ad experiences are the most effective which, of course, people can opt out of.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5067.74,
+ "end": 5068.72,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 9263
+ },
+ {
+ "start": 5068.72,
+ "end": 5068.88,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 9264
+ },
+ {
+ "start": 5068.88,
+ "end": 5069.08,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9265
+ },
+ {
+ "start": 5069.08,
+ "end": 5069.28,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 9266
+ },
+ {
+ "start": 5069.28,
+ "end": 5069.32,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9267
+ },
+ {
+ "start": 5069.32,
+ "end": 5069.64,
+ "confidence": 0,
+ "word": "number",
+ "punct": "number",
+ "index": 9268
+ },
+ {
+ "start": 5069.64,
+ "end": 5069.74,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9269
+ },
+ {
+ "start": 5069.74,
+ "end": 5070.16,
+ "confidence": 0,
+ "word": "reasons,",
+ "punct": "reasons,",
+ "index": 9270
+ },
+ {
+ "start": 5070.16,
+ "end": 5070.94,
+ "confidence": 0,
+ "word": "including",
+ "punct": "including",
+ "index": 9271
+ },
+ {
+ "start": 5070.94,
+ "end": 5071.82,
+ "confidence": 0,
+ "word": "security",
+ "punct": "security",
+ "index": 9272
+ },
+ {
+ "start": 5071.82,
+ "end": 5072.56,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9273
+ },
+ {
+ "start": 5072.56,
+ "end": 5073.2,
+ "confidence": 0,
+ "word": "including",
+ "punct": "including",
+ "index": 9274
+ },
+ {
+ "start": 5073.2,
+ "end": 5074.14,
+ "confidence": 0,
+ "word": "measuring",
+ "punct": "measuring",
+ "index": 9275
+ },
+ {
+ "start": 5074.14,
+ "end": 5074.5,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 9276
+ },
+ {
+ "start": 5074.5,
+ "end": 5074.68,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9277
+ },
+ {
+ "start": 5074.68,
+ "end": 5074.84,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 9278
+ },
+ {
+ "start": 5074.84,
+ "end": 5074.98,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 9279
+ },
+ {
+ "start": 5074.98,
+ "end": 5075.1,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9280
+ },
+ {
+ "start": 5075.1,
+ "end": 5075.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9281
+ },
+ {
+ "start": 5075.22,
+ "end": 5075.46,
+ "confidence": 0,
+ "word": "ad",
+ "punct": "ad",
+ "index": 9282
+ },
+ {
+ "start": 5075.46,
+ "end": 5076.04,
+ "confidence": 0,
+ "word": "experiences",
+ "punct": "experiences",
+ "index": 9283
+ },
+ {
+ "start": 5076.04,
+ "end": 5076.18,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 9284
+ },
+ {
+ "start": 5076.18,
+ "end": 5076.28,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9285
+ },
+ {
+ "start": 5076.28,
+ "end": 5076.44,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 9286
+ },
+ {
+ "start": 5076.44,
+ "end": 5076.9,
+ "confidence": 0,
+ "word": "effective",
+ "punct": "effective",
+ "index": 9287
+ },
+ {
+ "start": 5076.9,
+ "end": 5077.12,
+ "confidence": 0,
+ "word": "which,",
+ "punct": "which,",
+ "index": 9288
+ },
+ {
+ "start": 5077.12,
+ "end": 5077.58,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9289
+ },
+ {
+ "start": 5077.58,
+ "end": 5077.78,
+ "confidence": 0,
+ "word": "course,",
+ "punct": "course,",
+ "index": 9290
+ },
+ {
+ "start": 5077.78,
+ "end": 5078.04,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 9291
+ },
+ {
+ "start": 5078.04,
+ "end": 5078.2,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 9292
+ },
+ {
+ "start": 5078.2,
+ "end": 5078.38,
+ "confidence": 0,
+ "word": "opt",
+ "punct": "opt",
+ "index": 9293
+ },
+ {
+ "start": 5078.38,
+ "end": 5078.56,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 9294
+ },
+ {
+ "start": 5078.56,
+ "end": 5078.74,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of.",
+ "index": 9295
+ }
+ ],
+ "start": 5067.74
+ }
+ },
+ {
+ "key": "bke4h",
+ "text": "But I want to make sure that precisely that to me.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5078.74,
+ "end": 5079.38,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 9296
+ },
+ {
+ "start": 5079.38,
+ "end": 5079.44,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9297
+ },
+ {
+ "start": 5079.44,
+ "end": 5079.58,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 9298
+ },
+ {
+ "start": 5079.58,
+ "end": 5079.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9299
+ },
+ {
+ "start": 5079.66,
+ "end": 5079.76,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 9300
+ },
+ {
+ "start": 5079.76,
+ "end": 5079.88,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 9301
+ },
+ {
+ "start": 5079.88,
+ "end": 5079.99,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9302
+ },
+ {
+ "start": 5079.99,
+ "end": 5081.99,
+ "confidence": 0,
+ "word": "precisely",
+ "punct": "precisely",
+ "index": 9303
+ },
+ {
+ "start": 5081.99,
+ "end": 5082.99,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9304
+ },
+ {
+ "start": 5082.99,
+ "end": 5083.13,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9305
+ },
+ {
+ "start": 5083.13,
+ "end": 5084.59,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me.",
+ "index": 9306
+ }
+ ],
+ "start": 5078.74
+ }
+ },
+ {
+ "key": "f24b9",
+ "text": "Would you also, let us know how Facebook discloses to its users that engaging in this type of tracking gives us that result.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5084.59,
+ "end": 5084.75,
+ "confidence": 0,
+ "word": "would",
+ "punct": "Would",
+ "index": 9307
+ },
+ {
+ "start": 5084.75,
+ "end": 5084.89,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9308
+ },
+ {
+ "start": 5084.89,
+ "end": 5085.45,
+ "confidence": 0,
+ "word": "also,",
+ "punct": "also,",
+ "index": 9309
+ },
+ {
+ "start": 5085.45,
+ "end": 5085.87,
+ "confidence": 0,
+ "word": "let",
+ "punct": "let",
+ "index": 9310
+ },
+ {
+ "start": 5085.87,
+ "end": 5086.01,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 9311
+ },
+ {
+ "start": 5086.01,
+ "end": 5086.21,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 9312
+ },
+ {
+ "start": 5086.21,
+ "end": 5086.45,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 9313
+ },
+ {
+ "start": 5086.45,
+ "end": 5087.19,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 9314
+ },
+ {
+ "start": 5087.19,
+ "end": 5088.19,
+ "confidence": 0,
+ "word": "discloses",
+ "punct": "discloses",
+ "index": 9315
+ },
+ {
+ "start": 5088.19,
+ "end": 5088.97,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9316
+ },
+ {
+ "start": 5088.97,
+ "end": 5089.15,
+ "confidence": 0,
+ "word": "its",
+ "punct": "its",
+ "index": 9317
+ },
+ {
+ "start": 5089.15,
+ "end": 5089.87,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 9318
+ },
+ {
+ "start": 5089.87,
+ "end": 5090.09,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9319
+ },
+ {
+ "start": 5090.09,
+ "end": 5090.83,
+ "confidence": 0,
+ "word": "engaging",
+ "punct": "engaging",
+ "index": 9320
+ },
+ {
+ "start": 5090.83,
+ "end": 5091.69,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9321
+ },
+ {
+ "start": 5091.69,
+ "end": 5091.95,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 9322
+ },
+ {
+ "start": 5091.95,
+ "end": 5092.53,
+ "confidence": 0,
+ "word": "type",
+ "punct": "type",
+ "index": 9323
+ },
+ {
+ "start": 5092.53,
+ "end": 5092.67,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9324
+ },
+ {
+ "start": 5092.67,
+ "end": 5094.08,
+ "confidence": 0,
+ "word": "tracking",
+ "punct": "tracking",
+ "index": 9325
+ },
+ {
+ "start": 5094.08,
+ "end": 5095.18,
+ "confidence": 0,
+ "word": "gives",
+ "punct": "gives",
+ "index": 9326
+ },
+ {
+ "start": 5095.18,
+ "end": 5095.3,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 9327
+ },
+ {
+ "start": 5095.3,
+ "end": 5095.52,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9328
+ },
+ {
+ "start": 5095.52,
+ "end": 5096.46,
+ "confidence": 0,
+ "word": "result",
+ "punct": "result.",
+ "index": 9329
+ }
+ ],
+ "start": 5084.59
+ }
+ },
+ {
+ "key": "7vkiu",
+ "text": "And thank you very much.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5096.46,
+ "end": 5097.44,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 9330
+ },
+ {
+ "start": 5097.44,
+ "end": 5097.62,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 9331
+ },
+ {
+ "start": 5097.62,
+ "end": 5097.74,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9332
+ },
+ {
+ "start": 5097.74,
+ "end": 5097.94,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 9333
+ },
+ {
+ "start": 5097.94,
+ "end": 5098.12,
+ "confidence": 0,
+ "word": "much",
+ "punct": "much.",
+ "index": 9334
+ }
+ ],
+ "start": 5096.46
+ }
+ },
+ {
+ "key": "607et",
+ "text": "Thank you, Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5098.12,
+ "end": 5098.44,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 9335
+ },
+ {
+ "start": 5098.44,
+ "end": 5098.58,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 9336
+ },
+ {
+ "start": 5098.58,
+ "end": 5098.88,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 9337
+ }
+ ],
+ "start": 5098.12
+ }
+ },
+ {
+ "key": "96g4b",
+ "text": "Wicker Senator LA he's.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5098.88,
+ "end": 5099.2,
+ "confidence": 0,
+ "word": "wicker",
+ "punct": "Wicker",
+ "index": 9338
+ },
+ {
+ "start": 5099.2,
+ "end": 5099.48,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 9339
+ },
+ {
+ "start": 5099.48,
+ "end": 5099.68,
+ "confidence": 0,
+ "word": "la",
+ "punct": "LA",
+ "index": 9340
+ },
+ {
+ "start": 5099.68,
+ "end": 5099.86,
+ "confidence": 0,
+ "word": "he's",
+ "punct": "he's.",
+ "index": 9341
+ }
+ ],
+ "start": 5098.88
+ }
+ },
+ {
+ "key": "2p0m7",
+ "text": "Up next, thank you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5099.86,
+ "end": 5100.04,
+ "confidence": 0,
+ "word": "up",
+ "punct": "Up",
+ "index": 9342
+ },
+ {
+ "start": 5100.04,
+ "end": 5101.04,
+ "confidence": 0,
+ "word": "next,",
+ "punct": "next,",
+ "index": 9343
+ },
+ {
+ "start": 5101.04,
+ "end": 5102.12,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 9344
+ },
+ {
+ "start": 5102.12,
+ "end": 5102.28,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 9345
+ }
+ ],
+ "start": 5099.86
+ }
+ },
+ {
+ "key": "250tn",
+ "text": "I I assume Facebook been served with subpoenas for the special counsel moles office is that quick?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5102.28,
+ "end": 5104,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9346
+ },
+ {
+ "start": 5104,
+ "end": 5105.62,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9347
+ },
+ {
+ "start": 5105.62,
+ "end": 5107.18,
+ "confidence": 0,
+ "word": "assume",
+ "punct": "assume",
+ "index": 9348
+ },
+ {
+ "start": 5107.18,
+ "end": 5108.14,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 9349
+ },
+ {
+ "start": 5108.14,
+ "end": 5108.46,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 9350
+ },
+ {
+ "start": 5108.46,
+ "end": 5108.78,
+ "confidence": 0,
+ "word": "served",
+ "punct": "served",
+ "index": 9351
+ },
+ {
+ "start": 5108.78,
+ "end": 5108.96,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 9352
+ },
+ {
+ "start": 5108.96,
+ "end": 5110.06,
+ "confidence": 0,
+ "word": "subpoenas",
+ "punct": "subpoenas",
+ "index": 9353
+ },
+ {
+ "start": 5110.06,
+ "end": 5111.04,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 9354
+ },
+ {
+ "start": 5111.04,
+ "end": 5111.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9355
+ },
+ {
+ "start": 5111.18,
+ "end": 5111.54,
+ "confidence": 0,
+ "word": "special",
+ "punct": "special",
+ "index": 9356
+ },
+ {
+ "start": 5111.54,
+ "end": 5111.96,
+ "confidence": 0,
+ "word": "counsel",
+ "punct": "counsel",
+ "index": 9357
+ },
+ {
+ "start": 5111.96,
+ "end": 5112.34,
+ "confidence": 0,
+ "word": "moles",
+ "punct": "moles",
+ "index": 9358
+ },
+ {
+ "start": 5112.34,
+ "end": 5112.66,
+ "confidence": 0,
+ "word": "office",
+ "punct": "office",
+ "index": 9359
+ },
+ {
+ "start": 5112.66,
+ "end": 5112.76,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9360
+ },
+ {
+ "start": 5112.76,
+ "end": 5112.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9361
+ },
+ {
+ "start": 5112.98,
+ "end": 5114.3,
+ "confidence": 0,
+ "word": "quick",
+ "punct": "quick?",
+ "index": 9362
+ }
+ ],
+ "start": 5102.28
+ }
+ },
+ {
+ "key": "5op5e",
+ "text": "Yes, have you or anyone Facebook but interviewed by the special counsels office?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5114.3,
+ "end": 5116.28,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 9363
+ },
+ {
+ "start": 5116.28,
+ "end": 5117.26,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9364
+ },
+ {
+ "start": 5117.26,
+ "end": 5117.44,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9365
+ },
+ {
+ "start": 5117.44,
+ "end": 5117.64,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 9366
+ },
+ {
+ "start": 5117.64,
+ "end": 5117.98,
+ "confidence": 0,
+ "word": "anyone",
+ "punct": "anyone",
+ "index": 9367
+ },
+ {
+ "start": 5117.98,
+ "end": 5118.6,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 9368
+ },
+ {
+ "start": 5118.6,
+ "end": 5118.82,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 9369
+ },
+ {
+ "start": 5118.82,
+ "end": 5119.32,
+ "confidence": 0,
+ "word": "interviewed",
+ "punct": "interviewed",
+ "index": 9370
+ },
+ {
+ "start": 5119.32,
+ "end": 5119.52,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 9371
+ },
+ {
+ "start": 5119.52,
+ "end": 5119.62,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9372
+ },
+ {
+ "start": 5119.62,
+ "end": 5120,
+ "confidence": 0,
+ "word": "special",
+ "punct": "special",
+ "index": 9373
+ },
+ {
+ "start": 5120,
+ "end": 5120.5,
+ "confidence": 0,
+ "word": "counsels",
+ "punct": "counsels",
+ "index": 9374
+ },
+ {
+ "start": 5120.5,
+ "end": 5121.86,
+ "confidence": 0,
+ "word": "office",
+ "punct": "office?",
+ "index": 9375
+ }
+ ],
+ "start": 5114.3
+ }
+ },
+ {
+ "key": "1sr5g",
+ "text": "Yes, have you been interview?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5121.86,
+ "end": 5123.04,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 9376
+ },
+ {
+ "start": 5123.04,
+ "end": 5123.7,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9377
+ },
+ {
+ "start": 5123.7,
+ "end": 5123.82,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9378
+ },
+ {
+ "start": 5123.82,
+ "end": 5124.06,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 9379
+ },
+ {
+ "start": 5124.06,
+ "end": 5124.4,
+ "confidence": 0,
+ "word": "interview",
+ "punct": "interview?",
+ "index": 9380
+ }
+ ],
+ "start": 5121.86
+ }
+ },
+ {
+ "key": "buadv",
+ "text": "I have not, I have not others.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5124.4,
+ "end": 5124.56,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9381
+ },
+ {
+ "start": 5124.56,
+ "end": 5124.78,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9382
+ },
+ {
+ "start": 5124.78,
+ "end": 5125.9,
+ "confidence": 0,
+ "word": "not,",
+ "punct": "not,",
+ "index": 9383
+ },
+ {
+ "start": 5125.9,
+ "end": 5127.72,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9384
+ },
+ {
+ "start": 5127.72,
+ "end": 5127.86,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9385
+ },
+ {
+ "start": 5127.86,
+ "end": 5128.04,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 9386
+ },
+ {
+ "start": 5128.04,
+ "end": 5128.44,
+ "confidence": 0,
+ "word": "others",
+ "punct": "others.",
+ "index": 9387
+ }
+ ],
+ "start": 5124.4
+ }
+ },
+ {
+ "key": "10bej",
+ "text": "Am I believe so?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5128.44,
+ "end": 5129.12,
+ "confidence": 0,
+ "word": "am",
+ "punct": "Am",
+ "index": 9388
+ },
+ {
+ "start": 5129.12,
+ "end": 5129.42,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9389
+ },
+ {
+ "start": 5129.42,
+ "end": 5129.7,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 9390
+ },
+ {
+ "start": 5129.7,
+ "end": 5130.04,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so?",
+ "index": 9391
+ }
+ ],
+ "start": 5128.44
+ }
+ },
+ {
+ "key": "59kn4",
+ "text": "And I want to be careful here because that our work with the special counsel is confidential.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5130.04,
+ "end": 5130.18,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 9392
+ },
+ {
+ "start": 5130.18,
+ "end": 5130.32,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9393
+ },
+ {
+ "start": 5130.32,
+ "end": 5130.54,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 9394
+ },
+ {
+ "start": 5130.54,
+ "end": 5130.64,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9395
+ },
+ {
+ "start": 5130.64,
+ "end": 5130.78,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 9396
+ },
+ {
+ "start": 5130.78,
+ "end": 5131.38,
+ "confidence": 0,
+ "word": "careful",
+ "punct": "careful",
+ "index": 9397
+ },
+ {
+ "start": 5131.38,
+ "end": 5131.7,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 9398
+ },
+ {
+ "start": 5131.7,
+ "end": 5132.2,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 9399
+ },
+ {
+ "start": 5132.2,
+ "end": 5133.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9400
+ },
+ {
+ "start": 5133.36,
+ "end": 5134.44,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 9401
+ },
+ {
+ "start": 5134.44,
+ "end": 5135.42,
+ "confidence": 0,
+ "word": "work",
+ "punct": "work",
+ "index": 9402
+ },
+ {
+ "start": 5135.42,
+ "end": 5135.6,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 9403
+ },
+ {
+ "start": 5135.6,
+ "end": 5135.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9404
+ },
+ {
+ "start": 5135.7,
+ "end": 5136.04,
+ "confidence": 0,
+ "word": "special",
+ "punct": "special",
+ "index": 9405
+ },
+ {
+ "start": 5136.04,
+ "end": 5136.46,
+ "confidence": 0,
+ "word": "counsel",
+ "punct": "counsel",
+ "index": 9406
+ },
+ {
+ "start": 5136.46,
+ "end": 5136.82,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9407
+ },
+ {
+ "start": 5136.82,
+ "end": 5137.88,
+ "confidence": 0,
+ "word": "confidential",
+ "punct": "confidential.",
+ "index": 9408
+ }
+ ],
+ "start": 5130.04
+ }
+ },
+ {
+ "key": "921om",
+ "text": "And I want to make sure that in an open session I'm not revealing something Confidential I understand that's why I made clear that you have been contacted.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5137.88,
+ "end": 5138.12,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 9409
+ },
+ {
+ "start": 5138.12,
+ "end": 5138.18,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9410
+ },
+ {
+ "start": 5138.18,
+ "end": 5138.34,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 9411
+ },
+ {
+ "start": 5138.34,
+ "end": 5138.42,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9412
+ },
+ {
+ "start": 5138.42,
+ "end": 5138.54,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 9413
+ },
+ {
+ "start": 5138.54,
+ "end": 5138.72,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 9414
+ },
+ {
+ "start": 5138.72,
+ "end": 5138.9,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9415
+ },
+ {
+ "start": 5138.9,
+ "end": 5139.06,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9416
+ },
+ {
+ "start": 5139.06,
+ "end": 5139.18,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 9417
+ },
+ {
+ "start": 5139.18,
+ "end": 5139.42,
+ "confidence": 0,
+ "word": "open",
+ "punct": "open",
+ "index": 9418
+ },
+ {
+ "start": 5139.42,
+ "end": 5139.84,
+ "confidence": 0,
+ "word": "session",
+ "punct": "session",
+ "index": 9419
+ },
+ {
+ "start": 5139.84,
+ "end": 5140.04,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 9420
+ },
+ {
+ "start": 5140.04,
+ "end": 5140.24,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 9421
+ },
+ {
+ "start": 5140.24,
+ "end": 5140.7,
+ "confidence": 0,
+ "word": "revealing",
+ "punct": "revealing",
+ "index": 9422
+ },
+ {
+ "start": 5140.7,
+ "end": 5141.02,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 9423
+ },
+ {
+ "start": 5141.02,
+ "end": 5142.1,
+ "confidence": 0,
+ "word": "confidential",
+ "punct": "Confidential",
+ "index": 9424
+ },
+ {
+ "start": 5142.1,
+ "end": 5142.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9425
+ },
+ {
+ "start": 5142.74,
+ "end": 5143.44,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 9426
+ },
+ {
+ "start": 5143.44,
+ "end": 5144.42,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 9427
+ },
+ {
+ "start": 5144.42,
+ "end": 5144.56,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 9428
+ },
+ {
+ "start": 5144.56,
+ "end": 5144.62,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9429
+ },
+ {
+ "start": 5144.62,
+ "end": 5144.84,
+ "confidence": 0,
+ "word": "made",
+ "punct": "made",
+ "index": 9430
+ },
+ {
+ "start": 5144.84,
+ "end": 5145.16,
+ "confidence": 0,
+ "word": "clear",
+ "punct": "clear",
+ "index": 9431
+ },
+ {
+ "start": 5145.16,
+ "end": 5145.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9432
+ },
+ {
+ "start": 5145.32,
+ "end": 5145.5,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9433
+ },
+ {
+ "start": 5145.5,
+ "end": 5145.72,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9434
+ },
+ {
+ "start": 5145.72,
+ "end": 5145.92,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 9435
+ },
+ {
+ "start": 5145.92,
+ "end": 5146.6,
+ "confidence": 0,
+ "word": "contacted",
+ "punct": "contacted.",
+ "index": 9436
+ }
+ ],
+ "start": 5137.88
+ }
+ },
+ {
+ "key": "8k6nc",
+ "text": "You have an subpoenas, actually.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5146.6,
+ "end": 5146.76,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 9437
+ },
+ {
+ "start": 5146.76,
+ "end": 5146.94,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9438
+ },
+ {
+ "start": 5146.94,
+ "end": 5147.2,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 9439
+ },
+ {
+ "start": 5147.2,
+ "end": 5148.26,
+ "confidence": 0,
+ "word": "subpoenas,",
+ "punct": "subpoenas,",
+ "index": 9440
+ },
+ {
+ "start": 5148.26,
+ "end": 5149.12,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually.",
+ "index": 9441
+ }
+ ],
+ "start": 5146.6
+ }
+ },
+ {
+ "key": "5v13c",
+ "text": "Let me clarify that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5149.12,
+ "end": 5149.26,
+ "confidence": 0,
+ "word": "let",
+ "punct": "Let",
+ "index": 9442
+ },
+ {
+ "start": 5149.26,
+ "end": 5149.34,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 9443
+ },
+ {
+ "start": 5149.34,
+ "end": 5149.68,
+ "confidence": 0,
+ "word": "clarify",
+ "punct": "clarify",
+ "index": 9444
+ },
+ {
+ "start": 5149.68,
+ "end": 5149.9,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 9445
+ }
+ ],
+ "start": 5149.12
+ }
+ },
+ {
+ "key": "7gihj",
+ "text": "I actually am not aware of a subpoena.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5149.9,
+ "end": 5150.14,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9446
+ },
+ {
+ "start": 5150.14,
+ "end": 5150.62,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 9447
+ },
+ {
+ "start": 5150.62,
+ "end": 5150.78,
+ "confidence": 0,
+ "word": "am",
+ "punct": "am",
+ "index": 9448
+ },
+ {
+ "start": 5150.78,
+ "end": 5150.96,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 9449
+ },
+ {
+ "start": 5150.96,
+ "end": 5151.26,
+ "confidence": 0,
+ "word": "aware",
+ "punct": "aware",
+ "index": 9450
+ },
+ {
+ "start": 5151.26,
+ "end": 5151.9,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9451
+ },
+ {
+ "start": 5151.9,
+ "end": 5152.22,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9452
+ },
+ {
+ "start": 5152.22,
+ "end": 5152.62,
+ "confidence": 0,
+ "word": "subpoena",
+ "punct": "subpoena.",
+ "index": 9453
+ }
+ ],
+ "start": 5149.9
+ }
+ },
+ {
+ "key": "1v502",
+ "text": "I believe that there may be but I know we're working with them, thank you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5152.62,
+ "end": 5152.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9454
+ },
+ {
+ "start": 5152.74,
+ "end": 5153.04,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 9455
+ },
+ {
+ "start": 5153.04,
+ "end": 5153.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9456
+ },
+ {
+ "start": 5153.2,
+ "end": 5153.4,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 9457
+ },
+ {
+ "start": 5153.4,
+ "end": 5153.58,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 9458
+ },
+ {
+ "start": 5153.58,
+ "end": 5153.8,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 9459
+ },
+ {
+ "start": 5153.8,
+ "end": 5154.42,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 9460
+ },
+ {
+ "start": 5154.42,
+ "end": 5154.62,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9461
+ },
+ {
+ "start": 5154.62,
+ "end": 5154.78,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 9462
+ },
+ {
+ "start": 5154.78,
+ "end": 5155.02,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 9463
+ },
+ {
+ "start": 5155.02,
+ "end": 5155.3,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 9464
+ },
+ {
+ "start": 5155.3,
+ "end": 5155.46,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 9465
+ },
+ {
+ "start": 5155.46,
+ "end": 5155.62,
+ "confidence": 0,
+ "word": "them,",
+ "punct": "them,",
+ "index": 9466
+ },
+ {
+ "start": 5155.62,
+ "end": 5156.26,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 9467
+ },
+ {
+ "start": 5156.26,
+ "end": 5159.12,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 9468
+ }
+ ],
+ "start": 5152.62
+ }
+ },
+ {
+ "key": "bihb5",
+ "text": "Six months ago, Council promises you are taking steps to prevent Facebook for serving what is called unwitting cold Conspira and Russian interference.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5159.12,
+ "end": 5160.14,
+ "confidence": 0,
+ "word": "six",
+ "punct": "Six",
+ "index": 9469
+ },
+ {
+ "start": 5160.14,
+ "end": 5160.34,
+ "confidence": 0,
+ "word": "months",
+ "punct": "months",
+ "index": 9470
+ },
+ {
+ "start": 5160.34,
+ "end": 5160.88,
+ "confidence": 0,
+ "word": "ago,",
+ "punct": "ago,",
+ "index": 9471
+ },
+ {
+ "start": 5160.88,
+ "end": 5161.74,
+ "confidence": 0,
+ "word": "council",
+ "punct": "Council",
+ "index": 9472
+ },
+ {
+ "start": 5161.74,
+ "end": 5162.6,
+ "confidence": 0,
+ "word": "promises",
+ "punct": "promises",
+ "index": 9473
+ },
+ {
+ "start": 5162.6,
+ "end": 5162.88,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9474
+ },
+ {
+ "start": 5162.88,
+ "end": 5163.04,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 9475
+ },
+ {
+ "start": 5163.04,
+ "end": 5163.4,
+ "confidence": 0,
+ "word": "taking",
+ "punct": "taking",
+ "index": 9476
+ },
+ {
+ "start": 5163.4,
+ "end": 5163.8,
+ "confidence": 0,
+ "word": "steps",
+ "punct": "steps",
+ "index": 9477
+ },
+ {
+ "start": 5163.8,
+ "end": 5164,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9478
+ },
+ {
+ "start": 5164,
+ "end": 5164.86,
+ "confidence": 0,
+ "word": "prevent",
+ "punct": "prevent",
+ "index": 9479
+ },
+ {
+ "start": 5164.86,
+ "end": 5165.86,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 9480
+ },
+ {
+ "start": 5165.86,
+ "end": 5166.08,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 9481
+ },
+ {
+ "start": 5166.08,
+ "end": 5166.62,
+ "confidence": 0,
+ "word": "serving",
+ "punct": "serving",
+ "index": 9482
+ },
+ {
+ "start": 5166.62,
+ "end": 5167.16,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 9483
+ },
+ {
+ "start": 5167.16,
+ "end": 5167.62,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9484
+ },
+ {
+ "start": 5167.62,
+ "end": 5167.92,
+ "confidence": 0,
+ "word": "called",
+ "punct": "called",
+ "index": 9485
+ },
+ {
+ "start": 5167.92,
+ "end": 5168.58,
+ "confidence": 0,
+ "word": "unwitting",
+ "punct": "unwitting",
+ "index": 9486
+ },
+ {
+ "start": 5168.58,
+ "end": 5168.88,
+ "confidence": 0,
+ "word": "cold",
+ "punct": "cold",
+ "index": 9487
+ },
+ {
+ "start": 5168.88,
+ "end": 5169.5,
+ "confidence": 0,
+ "word": "conspira",
+ "punct": "Conspira",
+ "index": 9488
+ },
+ {
+ "start": 5169.5,
+ "end": 5169.68,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9489
+ },
+ {
+ "start": 5169.68,
+ "end": 5170.06,
+ "confidence": 0,
+ "word": "russian",
+ "punct": "Russian",
+ "index": 9490
+ },
+ {
+ "start": 5170.06,
+ "end": 5170.92,
+ "confidence": 0,
+ "word": "interference",
+ "punct": "interference.",
+ "index": 9491
+ }
+ ],
+ "start": 5159.12
+ }
+ },
+ {
+ "key": "46pcj",
+ "text": "But these these unverified device of pages are on Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5170.92,
+ "end": 5171.94,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 9492
+ },
+ {
+ "start": 5171.94,
+ "end": 5174.22,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 9493
+ },
+ {
+ "start": 5174.22,
+ "end": 5176.56,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 9494
+ },
+ {
+ "start": 5176.56,
+ "end": 5177.52,
+ "confidence": 0,
+ "word": "unverified",
+ "punct": "unverified",
+ "index": 9495
+ },
+ {
+ "start": 5177.52,
+ "end": 5178.06,
+ "confidence": 0,
+ "word": "device",
+ "punct": "device",
+ "index": 9496
+ },
+ {
+ "start": 5178.06,
+ "end": 5178.2,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9497
+ },
+ {
+ "start": 5178.2,
+ "end": 5178.62,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages",
+ "index": 9498
+ },
+ {
+ "start": 5178.62,
+ "end": 5178.8,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 9499
+ },
+ {
+ "start": 5178.8,
+ "end": 5178.92,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 9500
+ },
+ {
+ "start": 5178.92,
+ "end": 5179.48,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 9501
+ }
+ ],
+ "start": 5170.92
+ }
+ },
+ {
+ "key": "blqt4",
+ "text": "Today.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5179.48,
+ "end": 5179.96,
+ "confidence": 0,
+ "word": "today",
+ "punct": "Today.",
+ "index": 9502
+ }
+ ],
+ "start": 5179.48
+ }
+ },
+ {
+ "key": "5f64v",
+ "text": "They look a lot like the anonymous group of Russian agency use this print propaganda during the 20 16 election.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5179.96,
+ "end": 5181.12,
+ "confidence": 0,
+ "word": "they",
+ "punct": "They",
+ "index": 9503
+ },
+ {
+ "start": 5181.12,
+ "end": 5181.34,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 9504
+ },
+ {
+ "start": 5181.34,
+ "end": 5181.4,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9505
+ },
+ {
+ "start": 5181.4,
+ "end": 5181.76,
+ "confidence": 0,
+ "word": "lot",
+ "punct": "lot",
+ "index": 9506
+ },
+ {
+ "start": 5181.76,
+ "end": 5181.94,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 9507
+ },
+ {
+ "start": 5181.94,
+ "end": 5182.08,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9508
+ },
+ {
+ "start": 5182.08,
+ "end": 5182.62,
+ "confidence": 0,
+ "word": "anonymous",
+ "punct": "anonymous",
+ "index": 9509
+ },
+ {
+ "start": 5182.62,
+ "end": 5182.86,
+ "confidence": 0,
+ "word": "group",
+ "punct": "group",
+ "index": 9510
+ },
+ {
+ "start": 5182.86,
+ "end": 5182.96,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9511
+ },
+ {
+ "start": 5182.96,
+ "end": 5183.46,
+ "confidence": 0,
+ "word": "russian",
+ "punct": "Russian",
+ "index": 9512
+ },
+ {
+ "start": 5183.46,
+ "end": 5184.06,
+ "confidence": 0,
+ "word": "agency",
+ "punct": "agency",
+ "index": 9513
+ },
+ {
+ "start": 5184.06,
+ "end": 5185.04,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 9514
+ },
+ {
+ "start": 5185.04,
+ "end": 5186.14,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 9515
+ },
+ {
+ "start": 5186.14,
+ "end": 5186.52,
+ "confidence": 0,
+ "word": "print",
+ "punct": "print",
+ "index": 9516
+ },
+ {
+ "start": 5186.52,
+ "end": 5187.18,
+ "confidence": 0,
+ "word": "propaganda",
+ "punct": "propaganda",
+ "index": 9517
+ },
+ {
+ "start": 5187.18,
+ "end": 5187.48,
+ "confidence": 0,
+ "word": "during",
+ "punct": "during",
+ "index": 9518
+ },
+ {
+ "start": 5187.48,
+ "end": 5187.58,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9519
+ },
+ {
+ "start": 5187.58,
+ "end": 5187.84,
+ "confidence": 0,
+ "word": "20",
+ "punct": "20",
+ "index": 9520
+ },
+ {
+ "start": 5187.84,
+ "end": 5188.26,
+ "confidence": 0,
+ "word": "16",
+ "punct": "16",
+ "index": 9521
+ },
+ {
+ "start": 5188.26,
+ "end": 5189.68,
+ "confidence": 0,
+ "word": "election",
+ "punct": "election.",
+ "index": 9522
+ }
+ ],
+ "start": 5179.96
+ }
+ },
+ {
+ "key": "1mbbp",
+ "text": "You ever confirm with their Russian create groups, yes or no Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5189.68,
+ "end": 5190.88,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 9523
+ },
+ {
+ "start": 5190.88,
+ "end": 5191.18,
+ "confidence": 0,
+ "word": "ever",
+ "punct": "ever",
+ "index": 9524
+ },
+ {
+ "start": 5191.18,
+ "end": 5191.68,
+ "confidence": 0,
+ "word": "confirm",
+ "punct": "confirm",
+ "index": 9525
+ },
+ {
+ "start": 5191.68,
+ "end": 5192.1,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 9526
+ },
+ {
+ "start": 5192.1,
+ "end": 5192.48,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 9527
+ },
+ {
+ "start": 5192.48,
+ "end": 5193.4,
+ "confidence": 0,
+ "word": "russian",
+ "punct": "Russian",
+ "index": 9528
+ },
+ {
+ "start": 5193.4,
+ "end": 5193.78,
+ "confidence": 0,
+ "word": "create",
+ "punct": "create",
+ "index": 9529
+ },
+ {
+ "start": 5193.78,
+ "end": 5194.08,
+ "confidence": 0,
+ "word": "groups,",
+ "punct": "groups,",
+ "index": 9530
+ },
+ {
+ "start": 5194.08,
+ "end": 5194.76,
+ "confidence": 0,
+ "word": "yes",
+ "punct": "yes",
+ "index": 9531
+ },
+ {
+ "start": 5194.76,
+ "end": 5194.92,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 9532
+ },
+ {
+ "start": 5194.92,
+ "end": 5196.08,
+ "confidence": 0,
+ "word": "no",
+ "punct": "no",
+ "index": 9533
+ },
+ {
+ "start": 5196.08,
+ "end": 5197.06,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 9534
+ }
+ ],
+ "start": 5189.68
+ }
+ },
+ {
+ "key": "4upk",
+ "text": "Are you asking about those specifically yes, Senator, last week we actually announced a major change to our ads and pages.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5197.06,
+ "end": 5197.14,
+ "confidence": 0,
+ "word": "are",
+ "punct": "Are",
+ "index": 9535
+ },
+ {
+ "start": 5197.14,
+ "end": 5197.22,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9536
+ },
+ {
+ "start": 5197.22,
+ "end": 5197.5,
+ "confidence": 0,
+ "word": "asking",
+ "punct": "asking",
+ "index": 9537
+ },
+ {
+ "start": 5197.5,
+ "end": 5197.64,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 9538
+ },
+ {
+ "start": 5197.64,
+ "end": 5197.84,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 9539
+ },
+ {
+ "start": 5197.84,
+ "end": 5198.42,
+ "confidence": 0,
+ "word": "specifically",
+ "punct": "specifically",
+ "index": 9540
+ },
+ {
+ "start": 5198.42,
+ "end": 5199.62,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "yes,",
+ "index": 9541
+ },
+ {
+ "start": 5199.62,
+ "end": 5200.6,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 9542
+ },
+ {
+ "start": 5200.6,
+ "end": 5201.04,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 9543
+ },
+ {
+ "start": 5201.04,
+ "end": 5201.48,
+ "confidence": 0,
+ "word": "week",
+ "punct": "week",
+ "index": 9544
+ },
+ {
+ "start": 5201.48,
+ "end": 5201.88,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 9545
+ },
+ {
+ "start": 5201.88,
+ "end": 5202.32,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 9546
+ },
+ {
+ "start": 5202.32,
+ "end": 5202.8,
+ "confidence": 0,
+ "word": "announced",
+ "punct": "announced",
+ "index": 9547
+ },
+ {
+ "start": 5202.8,
+ "end": 5203.42,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9548
+ },
+ {
+ "start": 5203.42,
+ "end": 5203.82,
+ "confidence": 0,
+ "word": "major",
+ "punct": "major",
+ "index": 9549
+ },
+ {
+ "start": 5203.82,
+ "end": 5204.2,
+ "confidence": 0,
+ "word": "change",
+ "punct": "change",
+ "index": 9550
+ },
+ {
+ "start": 5204.2,
+ "end": 5204.4,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9551
+ },
+ {
+ "start": 5204.4,
+ "end": 5204.54,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 9552
+ },
+ {
+ "start": 5204.54,
+ "end": 5204.92,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 9553
+ },
+ {
+ "start": 5204.92,
+ "end": 5205.08,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9554
+ },
+ {
+ "start": 5205.08,
+ "end": 5205.5,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages.",
+ "index": 9555
+ }
+ ],
+ "start": 5197.06
+ }
+ },
+ {
+ "key": "9g12h",
+ "text": "Policy Y that we will be verifying the identity of every single Advertiser specific ones, you know what they are?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5205.5,
+ "end": 5205.88,
+ "confidence": 0,
+ "word": "policy",
+ "punct": "Policy",
+ "index": 9556
+ },
+ {
+ "start": 5205.88,
+ "end": 5205.94,
+ "confidence": 0,
+ "word": "y",
+ "punct": "Y",
+ "index": 9557
+ },
+ {
+ "start": 5205.94,
+ "end": 5206.66,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9558
+ },
+ {
+ "start": 5206.66,
+ "end": 5206.8,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 9559
+ },
+ {
+ "start": 5206.8,
+ "end": 5207,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 9560
+ },
+ {
+ "start": 5207,
+ "end": 5207.12,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 9561
+ },
+ {
+ "start": 5207.12,
+ "end": 5207.7,
+ "confidence": 0,
+ "word": "verifying",
+ "punct": "verifying",
+ "index": 9562
+ },
+ {
+ "start": 5207.7,
+ "end": 5207.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9563
+ },
+ {
+ "start": 5207.88,
+ "end": 5208.48,
+ "confidence": 0,
+ "word": "identity",
+ "punct": "identity",
+ "index": 9564
+ },
+ {
+ "start": 5208.48,
+ "end": 5209.46,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9565
+ },
+ {
+ "start": 5209.46,
+ "end": 5210.6,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 9566
+ },
+ {
+ "start": 5210.6,
+ "end": 5210.88,
+ "confidence": 0,
+ "word": "single",
+ "punct": "single",
+ "index": 9567
+ },
+ {
+ "start": 5210.88,
+ "end": 5211.72,
+ "confidence": 0,
+ "word": "advertiser",
+ "punct": "Advertiser",
+ "index": 9568
+ },
+ {
+ "start": 5211.72,
+ "end": 5212.36,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 9569
+ },
+ {
+ "start": 5212.36,
+ "end": 5212.54,
+ "confidence": 0,
+ "word": "ones,",
+ "punct": "ones,",
+ "index": 9570
+ },
+ {
+ "start": 5212.54,
+ "end": 5212.82,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9571
+ },
+ {
+ "start": 5212.82,
+ "end": 5212.98,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 9572
+ },
+ {
+ "start": 5212.98,
+ "end": 5213.36,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 9573
+ },
+ {
+ "start": 5213.36,
+ "end": 5213.52,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 9574
+ },
+ {
+ "start": 5213.52,
+ "end": 5213.78,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are?",
+ "index": 9575
+ }
+ ],
+ "start": 5205.5
+ }
+ },
+ {
+ "key": "4g7l7",
+ "text": "I am not familiar with this piece of content specifically.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5213.78,
+ "end": 5214.14,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9576
+ },
+ {
+ "start": 5214.14,
+ "end": 5214.28,
+ "confidence": 0,
+ "word": "am",
+ "punct": "am",
+ "index": 9577
+ },
+ {
+ "start": 5214.28,
+ "end": 5214.52,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 9578
+ },
+ {
+ "start": 5214.52,
+ "end": 5215.02,
+ "confidence": 0,
+ "word": "familiar",
+ "punct": "familiar",
+ "index": 9579
+ },
+ {
+ "start": 5215.02,
+ "end": 5215.18,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 9580
+ },
+ {
+ "start": 5215.18,
+ "end": 5216.02,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 9581
+ },
+ {
+ "start": 5216.02,
+ "end": 5216.7,
+ "confidence": 0,
+ "word": "piece",
+ "punct": "piece",
+ "index": 9582
+ },
+ {
+ "start": 5216.7,
+ "end": 5216.86,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9583
+ },
+ {
+ "start": 5216.86,
+ "end": 5217.24,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 9584
+ },
+ {
+ "start": 5217.24,
+ "end": 5217.84,
+ "confidence": 0,
+ "word": "specifically",
+ "punct": "specifically.",
+ "index": 9585
+ }
+ ],
+ "start": 5213.78
+ }
+ },
+ {
+ "key": "2s4hr",
+ "text": "But if you decide this policy of a week ago you'd be able to verify them, we are working on that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5217.84,
+ "end": 5218.76,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 9586
+ },
+ {
+ "start": 5218.76,
+ "end": 5218.88,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 9587
+ },
+ {
+ "start": 5218.88,
+ "end": 5219,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9588
+ },
+ {
+ "start": 5219,
+ "end": 5219.44,
+ "confidence": 0,
+ "word": "decide",
+ "punct": "decide",
+ "index": 9589
+ },
+ {
+ "start": 5219.44,
+ "end": 5219.68,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 9590
+ },
+ {
+ "start": 5219.68,
+ "end": 5220.2,
+ "confidence": 0,
+ "word": "policy",
+ "punct": "policy",
+ "index": 9591
+ },
+ {
+ "start": 5220.2,
+ "end": 5220.3,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9592
+ },
+ {
+ "start": 5220.3,
+ "end": 5220.44,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9593
+ },
+ {
+ "start": 5220.44,
+ "end": 5220.64,
+ "confidence": 0,
+ "word": "week",
+ "punct": "week",
+ "index": 9594
+ },
+ {
+ "start": 5220.64,
+ "end": 5221.2,
+ "confidence": 0,
+ "word": "ago",
+ "punct": "ago",
+ "index": 9595
+ },
+ {
+ "start": 5221.2,
+ "end": 5221.92,
+ "confidence": 0,
+ "word": "you'd",
+ "punct": "you'd",
+ "index": 9596
+ },
+ {
+ "start": 5221.92,
+ "end": 5222.06,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 9597
+ },
+ {
+ "start": 5222.06,
+ "end": 5222.26,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 9598
+ },
+ {
+ "start": 5222.26,
+ "end": 5222.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9599
+ },
+ {
+ "start": 5222.38,
+ "end": 5222.94,
+ "confidence": 0,
+ "word": "verify",
+ "punct": "verify",
+ "index": 9600
+ },
+ {
+ "start": 5222.94,
+ "end": 5223.12,
+ "confidence": 0,
+ "word": "them,",
+ "punct": "them,",
+ "index": 9601
+ },
+ {
+ "start": 5223.12,
+ "end": 5224.24,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 9602
+ },
+ {
+ "start": 5224.24,
+ "end": 5224.58,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 9603
+ },
+ {
+ "start": 5224.58,
+ "end": 5225.04,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 9604
+ },
+ {
+ "start": 5225.04,
+ "end": 5225.16,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 9605
+ },
+ {
+ "start": 5225.16,
+ "end": 5225.34,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 9606
+ }
+ ],
+ "start": 5217.84
+ }
+ },
+ {
+ "key": "e1isn",
+ "text": "Now, what we're doing is we're going to verify the identity of any advertiser who's running a political or issue related ad, this is basically what the honest ads act is proposing and we're following that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5225.34,
+ "end": 5225.64,
+ "confidence": 0,
+ "word": "now,",
+ "punct": "Now,",
+ "index": 9607
+ },
+ {
+ "start": 5225.64,
+ "end": 5226.16,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 9608
+ },
+ {
+ "start": 5226.16,
+ "end": 5226.32,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 9609
+ },
+ {
+ "start": 5226.32,
+ "end": 5226.6,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 9610
+ },
+ {
+ "start": 5226.6,
+ "end": 5226.92,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9611
+ },
+ {
+ "start": 5226.92,
+ "end": 5227.3,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 9612
+ },
+ {
+ "start": 5227.3,
+ "end": 5227.48,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 9613
+ },
+ {
+ "start": 5227.48,
+ "end": 5227.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9614
+ },
+ {
+ "start": 5227.72,
+ "end": 5228.24,
+ "confidence": 0,
+ "word": "verify",
+ "punct": "verify",
+ "index": 9615
+ },
+ {
+ "start": 5228.24,
+ "end": 5228.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9616
+ },
+ {
+ "start": 5228.36,
+ "end": 5228.86,
+ "confidence": 0,
+ "word": "identity",
+ "punct": "identity",
+ "index": 9617
+ },
+ {
+ "start": 5228.86,
+ "end": 5229.42,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9618
+ },
+ {
+ "start": 5229.42,
+ "end": 5229.74,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 9619
+ },
+ {
+ "start": 5229.74,
+ "end": 5230.38,
+ "confidence": 0,
+ "word": "advertiser",
+ "punct": "advertiser",
+ "index": 9620
+ },
+ {
+ "start": 5230.38,
+ "end": 5230.62,
+ "confidence": 0,
+ "word": "who's",
+ "punct": "who's",
+ "index": 9621
+ },
+ {
+ "start": 5230.62,
+ "end": 5230.88,
+ "confidence": 0,
+ "word": "running",
+ "punct": "running",
+ "index": 9622
+ },
+ {
+ "start": 5230.88,
+ "end": 5230.94,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9623
+ },
+ {
+ "start": 5230.94,
+ "end": 5231.48,
+ "confidence": 0,
+ "word": "political",
+ "punct": "political",
+ "index": 9624
+ },
+ {
+ "start": 5231.48,
+ "end": 5232.64,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 9625
+ },
+ {
+ "start": 5232.64,
+ "end": 5233.06,
+ "confidence": 0,
+ "word": "issue",
+ "punct": "issue",
+ "index": 9626
+ },
+ {
+ "start": 5233.06,
+ "end": 5233.6,
+ "confidence": 0,
+ "word": "related",
+ "punct": "related",
+ "index": 9627
+ },
+ {
+ "start": 5233.6,
+ "end": 5234.38,
+ "confidence": 0,
+ "word": "ad,",
+ "punct": "ad,",
+ "index": 9628
+ },
+ {
+ "start": 5234.38,
+ "end": 5235.16,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 9629
+ },
+ {
+ "start": 5235.16,
+ "end": 5235.3,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9630
+ },
+ {
+ "start": 5235.3,
+ "end": 5235.74,
+ "confidence": 0,
+ "word": "basically",
+ "punct": "basically",
+ "index": 9631
+ },
+ {
+ "start": 5235.74,
+ "end": 5235.96,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 9632
+ },
+ {
+ "start": 5235.96,
+ "end": 5236.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9633
+ },
+ {
+ "start": 5236.32,
+ "end": 5236.62,
+ "confidence": 0,
+ "word": "honest",
+ "punct": "honest",
+ "index": 9634
+ },
+ {
+ "start": 5236.62,
+ "end": 5236.88,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 9635
+ },
+ {
+ "start": 5236.88,
+ "end": 5237.16,
+ "confidence": 0,
+ "word": "act",
+ "punct": "act",
+ "index": 9636
+ },
+ {
+ "start": 5237.16,
+ "end": 5237.36,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9637
+ },
+ {
+ "start": 5237.36,
+ "end": 5238.04,
+ "confidence": 0,
+ "word": "proposing",
+ "punct": "proposing",
+ "index": 9638
+ },
+ {
+ "start": 5238.04,
+ "end": 5238.74,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9639
+ },
+ {
+ "start": 5238.74,
+ "end": 5238.94,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 9640
+ },
+ {
+ "start": 5238.94,
+ "end": 5239.3,
+ "confidence": 0,
+ "word": "following",
+ "punct": "following",
+ "index": 9641
+ },
+ {
+ "start": 5239.3,
+ "end": 5240.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 9642
+ }
+ ],
+ "start": 5225.34
+ }
+ },
+ {
+ "key": "4mv2d",
+ "text": "And we're also going to do that for pages.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5240.58,
+ "end": 5241.52,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 9643
+ },
+ {
+ "start": 5241.52,
+ "end": 5241.9,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 9644
+ },
+ {
+ "start": 5241.9,
+ "end": 5242.08,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 9645
+ },
+ {
+ "start": 5242.08,
+ "end": 5242.26,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 9646
+ },
+ {
+ "start": 5242.26,
+ "end": 5242.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9647
+ },
+ {
+ "start": 5242.32,
+ "end": 5242.38,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 9648
+ },
+ {
+ "start": 5242.38,
+ "end": 5242.5,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9649
+ },
+ {
+ "start": 5242.5,
+ "end": 5242.62,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 9650
+ },
+ {
+ "start": 5242.62,
+ "end": 5242.98,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages.",
+ "index": 9651
+ }
+ ],
+ "start": 5240.58
+ }
+ },
+ {
+ "key": "1o6mb",
+ "text": "Would you get on these I'm not familiar with those specific.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5242.98,
+ "end": 5243.28,
+ "confidence": 0,
+ "word": "would",
+ "punct": "Would",
+ "index": 9652
+ },
+ {
+ "start": 5243.28,
+ "end": 5243.38,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9653
+ },
+ {
+ "start": 5243.38,
+ "end": 5243.52,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 9654
+ },
+ {
+ "start": 5243.52,
+ "end": 5244.14,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 9655
+ },
+ {
+ "start": 5244.14,
+ "end": 5244.42,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 9656
+ },
+ {
+ "start": 5244.42,
+ "end": 5245.54,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 9657
+ },
+ {
+ "start": 5245.54,
+ "end": 5245.7,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 9658
+ },
+ {
+ "start": 5245.7,
+ "end": 5246.04,
+ "confidence": 0,
+ "word": "familiar",
+ "punct": "familiar",
+ "index": 9659
+ },
+ {
+ "start": 5246.04,
+ "end": 5246.2,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 9660
+ },
+ {
+ "start": 5246.2,
+ "end": 5246.38,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 9661
+ },
+ {
+ "start": 5246.38,
+ "end": 5246.82,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific.",
+ "index": 9662
+ }
+ ],
+ "start": 5242.98
+ }
+ },
+ {
+ "key": "dig2",
+ "text": "I will you find out the answer and get back to me.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5246.82,
+ "end": 5247.3,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9663
+ },
+ {
+ "start": 5247.3,
+ "end": 5247.52,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 9664
+ },
+ {
+ "start": 5247.52,
+ "end": 5247.72,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9665
+ },
+ {
+ "start": 5247.72,
+ "end": 5248.06,
+ "confidence": 0,
+ "word": "find",
+ "punct": "find",
+ "index": 9666
+ },
+ {
+ "start": 5248.06,
+ "end": 5248.26,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 9667
+ },
+ {
+ "start": 5248.26,
+ "end": 5248.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9668
+ },
+ {
+ "start": 5248.42,
+ "end": 5248.72,
+ "confidence": 0,
+ "word": "answer",
+ "punct": "answer",
+ "index": 9669
+ },
+ {
+ "start": 5248.72,
+ "end": 5248.88,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9670
+ },
+ {
+ "start": 5248.88,
+ "end": 5249.02,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 9671
+ },
+ {
+ "start": 5249.02,
+ "end": 5249.28,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 9672
+ },
+ {
+ "start": 5249.28,
+ "end": 5249.44,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9673
+ },
+ {
+ "start": 5249.44,
+ "end": 5249.62,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me.",
+ "index": 9674
+ }
+ ],
+ "start": 5246.82
+ }
+ },
+ {
+ "key": "338s6",
+ "text": "I'll have my team get back to you?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5249.62,
+ "end": 5250.12,
+ "confidence": 0,
+ "word": "i'll",
+ "punct": "I'll",
+ "index": 9675
+ },
+ {
+ "start": 5250.12,
+ "end": 5250.26,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9676
+ },
+ {
+ "start": 5250.26,
+ "end": 5250.36,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 9677
+ },
+ {
+ "start": 5250.36,
+ "end": 5250.54,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 9678
+ },
+ {
+ "start": 5250.54,
+ "end": 5250.7,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 9679
+ },
+ {
+ "start": 5250.7,
+ "end": 5250.86,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 9680
+ },
+ {
+ "start": 5250.86,
+ "end": 5250.96,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9681
+ },
+ {
+ "start": 5250.96,
+ "end": 5251.66,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you?",
+ "index": 9682
+ }
+ ],
+ "start": 5249.62
+ }
+ },
+ {
+ "key": "9f3kh",
+ "text": "I do think it's worth adding, though.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5251.66,
+ "end": 5251.82,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9683
+ },
+ {
+ "start": 5251.82,
+ "end": 5252.46,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 9684
+ },
+ {
+ "start": 5252.46,
+ "end": 5252.66,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 9685
+ },
+ {
+ "start": 5252.66,
+ "end": 5252.8,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 9686
+ },
+ {
+ "start": 5252.8,
+ "end": 5253.68,
+ "confidence": 0,
+ "word": "worth",
+ "punct": "worth",
+ "index": 9687
+ },
+ {
+ "start": 5253.68,
+ "end": 5254.64,
+ "confidence": 0,
+ "word": "adding,",
+ "punct": "adding,",
+ "index": 9688
+ },
+ {
+ "start": 5254.64,
+ "end": 5254.84,
+ "confidence": 0,
+ "word": "though",
+ "punct": "though.",
+ "index": 9689
+ }
+ ],
+ "start": 5251.66
+ }
+ },
+ {
+ "key": "55kaj",
+ "text": "That we're going to do the same verification of the identity and location of admins who are running large pages.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5254.84,
+ "end": 5255.5,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 9690
+ },
+ {
+ "start": 5255.5,
+ "end": 5256.4,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 9691
+ },
+ {
+ "start": 5256.4,
+ "end": 5256.6,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 9692
+ },
+ {
+ "start": 5256.6,
+ "end": 5256.7,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9693
+ },
+ {
+ "start": 5256.7,
+ "end": 5256.8,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 9694
+ },
+ {
+ "start": 5256.8,
+ "end": 5256.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9695
+ },
+ {
+ "start": 5256.94,
+ "end": 5257.24,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 9696
+ },
+ {
+ "start": 5257.24,
+ "end": 5258,
+ "confidence": 0,
+ "word": "verification",
+ "punct": "verification",
+ "index": 9697
+ },
+ {
+ "start": 5258,
+ "end": 5258.76,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9698
+ },
+ {
+ "start": 5258.76,
+ "end": 5259.04,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9699
+ },
+ {
+ "start": 5259.04,
+ "end": 5259.74,
+ "confidence": 0,
+ "word": "identity",
+ "punct": "identity",
+ "index": 9700
+ },
+ {
+ "start": 5259.74,
+ "end": 5259.9,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9701
+ },
+ {
+ "start": 5259.9,
+ "end": 5260.48,
+ "confidence": 0,
+ "word": "location",
+ "punct": "location",
+ "index": 9702
+ },
+ {
+ "start": 5260.48,
+ "end": 5261,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9703
+ },
+ {
+ "start": 5261,
+ "end": 5261.48,
+ "confidence": 0,
+ "word": "admins",
+ "punct": "admins",
+ "index": 9704
+ },
+ {
+ "start": 5261.48,
+ "end": 5261.62,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 9705
+ },
+ {
+ "start": 5261.62,
+ "end": 5261.76,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 9706
+ },
+ {
+ "start": 5261.76,
+ "end": 5262.08,
+ "confidence": 0,
+ "word": "running",
+ "punct": "running",
+ "index": 9707
+ },
+ {
+ "start": 5262.08,
+ "end": 5262.46,
+ "confidence": 0,
+ "word": "large",
+ "punct": "large",
+ "index": 9708
+ },
+ {
+ "start": 5262.46,
+ "end": 5262.9,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages.",
+ "index": 9709
+ }
+ ],
+ "start": 5254.84
+ }
+ },
+ {
+ "key": "7h1on",
+ "text": "So that way, even if they aren't going to be buying ads in our system.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5262.9,
+ "end": 5263.34,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 9710
+ },
+ {
+ "start": 5263.34,
+ "end": 5263.48,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9711
+ },
+ {
+ "start": 5263.48,
+ "end": 5263.66,
+ "confidence": 0,
+ "word": "way,",
+ "punct": "way,",
+ "index": 9712
+ },
+ {
+ "start": 5263.66,
+ "end": 5263.88,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 9713
+ },
+ {
+ "start": 5263.88,
+ "end": 5264,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 9714
+ },
+ {
+ "start": 5264,
+ "end": 5264.26,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 9715
+ },
+ {
+ "start": 5264.26,
+ "end": 5264.56,
+ "confidence": 0,
+ "word": "aren't",
+ "punct": "aren't",
+ "index": 9716
+ },
+ {
+ "start": 5264.56,
+ "end": 5264.76,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 9717
+ },
+ {
+ "start": 5264.76,
+ "end": 5264.84,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9718
+ },
+ {
+ "start": 5264.84,
+ "end": 5264.92,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 9719
+ },
+ {
+ "start": 5264.92,
+ "end": 5265.42,
+ "confidence": 0,
+ "word": "buying",
+ "punct": "buying",
+ "index": 9720
+ },
+ {
+ "start": 5265.42,
+ "end": 5265.72,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 9721
+ },
+ {
+ "start": 5265.72,
+ "end": 5265.82,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9722
+ },
+ {
+ "start": 5265.82,
+ "end": 5266,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 9723
+ },
+ {
+ "start": 5266,
+ "end": 5266.8,
+ "confidence": 0,
+ "word": "system",
+ "punct": "system.",
+ "index": 9724
+ }
+ ],
+ "start": 5262.9
+ }
+ },
+ {
+ "key": "39vlq",
+ "text": "That will make it significantly harder for Russian interference, efforts or other in authentic efforts to try to spread misinformation through the network surprise it's been going on for some some might say that's about time six months ago.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5266.8,
+ "end": 5267.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 9725
+ },
+ {
+ "start": 5267.38,
+ "end": 5267.58,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 9726
+ },
+ {
+ "start": 5267.58,
+ "end": 5267.74,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 9727
+ },
+ {
+ "start": 5267.74,
+ "end": 5267.84,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 9728
+ },
+ {
+ "start": 5267.84,
+ "end": 5268.48,
+ "confidence": 0,
+ "word": "significantly",
+ "punct": "significantly",
+ "index": 9729
+ },
+ {
+ "start": 5268.48,
+ "end": 5268.82,
+ "confidence": 0,
+ "word": "harder",
+ "punct": "harder",
+ "index": 9730
+ },
+ {
+ "start": 5268.82,
+ "end": 5269.38,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 9731
+ },
+ {
+ "start": 5269.38,
+ "end": 5270.66,
+ "confidence": 0,
+ "word": "russian",
+ "punct": "Russian",
+ "index": 9732
+ },
+ {
+ "start": 5270.66,
+ "end": 5271.62,
+ "confidence": 0,
+ "word": "interference,",
+ "punct": "interference,",
+ "index": 9733
+ },
+ {
+ "start": 5271.62,
+ "end": 5272,
+ "confidence": 0,
+ "word": "efforts",
+ "punct": "efforts",
+ "index": 9734
+ },
+ {
+ "start": 5272,
+ "end": 5272.24,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 9735
+ },
+ {
+ "start": 5272.24,
+ "end": 5272.62,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 9736
+ },
+ {
+ "start": 5272.62,
+ "end": 5272.74,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9737
+ },
+ {
+ "start": 5272.74,
+ "end": 5273.2,
+ "confidence": 0,
+ "word": "authentic",
+ "punct": "authentic",
+ "index": 9738
+ },
+ {
+ "start": 5273.2,
+ "end": 5273.54,
+ "confidence": 0,
+ "word": "efforts",
+ "punct": "efforts",
+ "index": 9739
+ },
+ {
+ "start": 5273.54,
+ "end": 5274.36,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9740
+ },
+ {
+ "start": 5274.36,
+ "end": 5274.5,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 9741
+ },
+ {
+ "start": 5274.5,
+ "end": 5274.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9742
+ },
+ {
+ "start": 5274.58,
+ "end": 5274.8,
+ "confidence": 0,
+ "word": "spread",
+ "punct": "spread",
+ "index": 9743
+ },
+ {
+ "start": 5274.8,
+ "end": 5275.42,
+ "confidence": 0,
+ "word": "misinformation",
+ "punct": "misinformation",
+ "index": 9744
+ },
+ {
+ "start": 5275.42,
+ "end": 5275.66,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 9745
+ },
+ {
+ "start": 5275.66,
+ "end": 5275.76,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9746
+ },
+ {
+ "start": 5275.76,
+ "end": 5276.04,
+ "confidence": 0,
+ "word": "network",
+ "punct": "network",
+ "index": 9747
+ },
+ {
+ "start": 5276.04,
+ "end": 5276.84,
+ "confidence": 0,
+ "word": "surprise",
+ "punct": "surprise",
+ "index": 9748
+ },
+ {
+ "start": 5276.84,
+ "end": 5277,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 9749
+ },
+ {
+ "start": 5277,
+ "end": 5277.16,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 9750
+ },
+ {
+ "start": 5277.16,
+ "end": 5277.36,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 9751
+ },
+ {
+ "start": 5277.36,
+ "end": 5277.56,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 9752
+ },
+ {
+ "start": 5277.56,
+ "end": 5277.74,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 9753
+ },
+ {
+ "start": 5277.74,
+ "end": 5278.09,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 9754
+ },
+ {
+ "start": 5278.09,
+ "end": 5278.65,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 9755
+ },
+ {
+ "start": 5278.65,
+ "end": 5278.87,
+ "confidence": 0,
+ "word": "might",
+ "punct": "might",
+ "index": 9756
+ },
+ {
+ "start": 5278.87,
+ "end": 5279.05,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 9757
+ },
+ {
+ "start": 5279.05,
+ "end": 5279.27,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 9758
+ },
+ {
+ "start": 5279.27,
+ "end": 5279.55,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 9759
+ },
+ {
+ "start": 5279.55,
+ "end": 5279.87,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 9760
+ },
+ {
+ "start": 5279.87,
+ "end": 5280.73,
+ "confidence": 0,
+ "word": "six",
+ "punct": "six",
+ "index": 9761
+ },
+ {
+ "start": 5280.73,
+ "end": 5280.97,
+ "confidence": 0,
+ "word": "months",
+ "punct": "months",
+ "index": 9762
+ },
+ {
+ "start": 5280.97,
+ "end": 5281.15,
+ "confidence": 0,
+ "word": "ago",
+ "punct": "ago.",
+ "index": 9763
+ }
+ ],
+ "start": 5266.8
+ }
+ },
+ {
+ "key": "cs38t",
+ "text": "I asked you general counsel about Facebook's roles, a breeding ground for hate speech against in refugees.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5281.15,
+ "end": 5281.31,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9764
+ },
+ {
+ "start": 5281.31,
+ "end": 5281.53,
+ "confidence": 0,
+ "word": "asked",
+ "punct": "asked",
+ "index": 9765
+ },
+ {
+ "start": 5281.53,
+ "end": 5281.69,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9766
+ },
+ {
+ "start": 5281.69,
+ "end": 5282.05,
+ "confidence": 0,
+ "word": "general",
+ "punct": "general",
+ "index": 9767
+ },
+ {
+ "start": 5282.05,
+ "end": 5282.41,
+ "confidence": 0,
+ "word": "counsel",
+ "punct": "counsel",
+ "index": 9768
+ },
+ {
+ "start": 5282.41,
+ "end": 5282.75,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 9769
+ },
+ {
+ "start": 5282.75,
+ "end": 5283.89,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 9770
+ },
+ {
+ "start": 5283.89,
+ "end": 5284.35,
+ "confidence": 0,
+ "word": "roles,",
+ "punct": "roles,",
+ "index": 9771
+ },
+ {
+ "start": 5284.35,
+ "end": 5284.49,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9772
+ },
+ {
+ "start": 5284.49,
+ "end": 5284.85,
+ "confidence": 0,
+ "word": "breeding",
+ "punct": "breeding",
+ "index": 9773
+ },
+ {
+ "start": 5284.85,
+ "end": 5285.21,
+ "confidence": 0,
+ "word": "ground",
+ "punct": "ground",
+ "index": 9774
+ },
+ {
+ "start": 5285.21,
+ "end": 5285.39,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 9775
+ },
+ {
+ "start": 5285.39,
+ "end": 5285.75,
+ "confidence": 0,
+ "word": "hate",
+ "punct": "hate",
+ "index": 9776
+ },
+ {
+ "start": 5285.75,
+ "end": 5286.13,
+ "confidence": 0,
+ "word": "speech",
+ "punct": "speech",
+ "index": 9777
+ },
+ {
+ "start": 5286.13,
+ "end": 5287.13,
+ "confidence": 0,
+ "word": "against",
+ "punct": "against",
+ "index": 9778
+ },
+ {
+ "start": 5287.13,
+ "end": 5288.17,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9779
+ },
+ {
+ "start": 5288.17,
+ "end": 5289.38,
+ "confidence": 0,
+ "word": "refugees",
+ "punct": "refugees.",
+ "index": 9780
+ }
+ ],
+ "start": 5281.15
+ }
+ },
+ {
+ "key": "9qtso",
+ "text": "Recently UN investigators blamed Facebook for playing a role in citing possible genocide.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5289.38,
+ "end": 5290.48,
+ "confidence": 0,
+ "word": "recently",
+ "punct": "Recently",
+ "index": 9781
+ },
+ {
+ "start": 5290.48,
+ "end": 5290.94,
+ "confidence": 0,
+ "word": "un",
+ "punct": "UN",
+ "index": 9782
+ },
+ {
+ "start": 5290.94,
+ "end": 5291.72,
+ "confidence": 0,
+ "word": "investigators",
+ "punct": "investigators",
+ "index": 9783
+ },
+ {
+ "start": 5291.72,
+ "end": 5292.28,
+ "confidence": 0,
+ "word": "blamed",
+ "punct": "blamed",
+ "index": 9784
+ },
+ {
+ "start": 5292.28,
+ "end": 5293.6,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 9785
+ },
+ {
+ "start": 5293.6,
+ "end": 5294.58,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 9786
+ },
+ {
+ "start": 5294.58,
+ "end": 5294.92,
+ "confidence": 0,
+ "word": "playing",
+ "punct": "playing",
+ "index": 9787
+ },
+ {
+ "start": 5294.92,
+ "end": 5294.98,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9788
+ },
+ {
+ "start": 5294.98,
+ "end": 5295.24,
+ "confidence": 0,
+ "word": "role",
+ "punct": "role",
+ "index": 9789
+ },
+ {
+ "start": 5295.24,
+ "end": 5295.4,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9790
+ },
+ {
+ "start": 5295.4,
+ "end": 5295.78,
+ "confidence": 0,
+ "word": "citing",
+ "punct": "citing",
+ "index": 9791
+ },
+ {
+ "start": 5295.78,
+ "end": 5296.3,
+ "confidence": 0,
+ "word": "possible",
+ "punct": "possible",
+ "index": 9792
+ },
+ {
+ "start": 5296.3,
+ "end": 5297.06,
+ "confidence": 0,
+ "word": "genocide",
+ "punct": "genocide.",
+ "index": 9793
+ }
+ ],
+ "start": 5289.38
+ }
+ },
+ {
+ "key": "ar98v",
+ "text": "Emma and has been genocide there.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5297.06,
+ "end": 5298.22,
+ "confidence": 0,
+ "word": "emma",
+ "punct": "Emma",
+ "index": 9794
+ },
+ {
+ "start": 5298.22,
+ "end": 5298.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9795
+ },
+ {
+ "start": 5298.42,
+ "end": 5298.8,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 9796
+ },
+ {
+ "start": 5298.8,
+ "end": 5299,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 9797
+ },
+ {
+ "start": 5299,
+ "end": 5299.66,
+ "confidence": 0,
+ "word": "genocide",
+ "punct": "genocide",
+ "index": 9798
+ },
+ {
+ "start": 5299.66,
+ "end": 5300.59,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there.",
+ "index": 9799
+ }
+ ],
+ "start": 5297.06
+ }
+ },
+ {
+ "key": "eq9uh",
+ "text": "You say you use AI to find this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5300.59,
+ "end": 5301.21,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 9800
+ },
+ {
+ "start": 5301.21,
+ "end": 5301.37,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 9801
+ },
+ {
+ "start": 5301.37,
+ "end": 5301.51,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9802
+ },
+ {
+ "start": 5301.51,
+ "end": 5301.81,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 9803
+ },
+ {
+ "start": 5301.81,
+ "end": 5302.89,
+ "confidence": 0,
+ "word": "ai",
+ "punct": "AI",
+ "index": 9804
+ },
+ {
+ "start": 5302.89,
+ "end": 5303.15,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9805
+ },
+ {
+ "start": 5303.15,
+ "end": 5303.53,
+ "confidence": 0,
+ "word": "find",
+ "punct": "find",
+ "index": 9806
+ },
+ {
+ "start": 5303.53,
+ "end": 5303.77,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 9807
+ }
+ ],
+ "start": 5300.59
+ }
+ },
+ {
+ "key": "7nv56",
+ "text": "This is a type of content referring to it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5303.77,
+ "end": 5304.83,
+ "confidence": 0,
+ "word": "this",
+ "punct": "This",
+ "index": 9808
+ },
+ {
+ "start": 5304.83,
+ "end": 5304.99,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9809
+ },
+ {
+ "start": 5304.99,
+ "end": 5305.09,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9810
+ },
+ {
+ "start": 5305.09,
+ "end": 5305.41,
+ "confidence": 0,
+ "word": "type",
+ "punct": "type",
+ "index": 9811
+ },
+ {
+ "start": 5305.41,
+ "end": 5305.69,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9812
+ },
+ {
+ "start": 5305.69,
+ "end": 5306.85,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 9813
+ },
+ {
+ "start": 5306.85,
+ "end": 5307.31,
+ "confidence": 0,
+ "word": "referring",
+ "punct": "referring",
+ "index": 9814
+ },
+ {
+ "start": 5307.31,
+ "end": 5307.41,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9815
+ },
+ {
+ "start": 5307.41,
+ "end": 5308.15,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 9816
+ }
+ ],
+ "start": 5303.77
+ }
+ },
+ {
+ "key": "215g1",
+ "text": "Calls for the death of a Muslim journalists that threat went straight through your detection systems, I spread very quickly and then it took attempt after attempt after attempt and the involvement of civil society groups to get you to remove it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5308.15,
+ "end": 5308.53,
+ "confidence": 0,
+ "word": "calls",
+ "punct": "Calls",
+ "index": 9817
+ },
+ {
+ "start": 5308.53,
+ "end": 5308.73,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 9818
+ },
+ {
+ "start": 5308.73,
+ "end": 5308.87,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9819
+ },
+ {
+ "start": 5308.87,
+ "end": 5309.23,
+ "confidence": 0,
+ "word": "death",
+ "punct": "death",
+ "index": 9820
+ },
+ {
+ "start": 5309.23,
+ "end": 5309.65,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9821
+ },
+ {
+ "start": 5309.65,
+ "end": 5309.75,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9822
+ },
+ {
+ "start": 5309.75,
+ "end": 5310.25,
+ "confidence": 0,
+ "word": "muslim",
+ "punct": "Muslim",
+ "index": 9823
+ },
+ {
+ "start": 5310.25,
+ "end": 5311.8,
+ "confidence": 0,
+ "word": "journalists",
+ "punct": "journalists",
+ "index": 9824
+ },
+ {
+ "start": 5311.8,
+ "end": 5312.86,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9825
+ },
+ {
+ "start": 5312.86,
+ "end": 5313.48,
+ "confidence": 0,
+ "word": "threat",
+ "punct": "threat",
+ "index": 9826
+ },
+ {
+ "start": 5313.48,
+ "end": 5313.78,
+ "confidence": 0,
+ "word": "went",
+ "punct": "went",
+ "index": 9827
+ },
+ {
+ "start": 5313.78,
+ "end": 5314.22,
+ "confidence": 0,
+ "word": "straight",
+ "punct": "straight",
+ "index": 9828
+ },
+ {
+ "start": 5314.22,
+ "end": 5314.52,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 9829
+ },
+ {
+ "start": 5314.52,
+ "end": 5314.8,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 9830
+ },
+ {
+ "start": 5314.8,
+ "end": 5315.38,
+ "confidence": 0,
+ "word": "detection",
+ "punct": "detection",
+ "index": 9831
+ },
+ {
+ "start": 5315.38,
+ "end": 5315.88,
+ "confidence": 0,
+ "word": "systems,",
+ "punct": "systems,",
+ "index": 9832
+ },
+ {
+ "start": 5315.88,
+ "end": 5316.5,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 9833
+ },
+ {
+ "start": 5316.5,
+ "end": 5316.84,
+ "confidence": 0,
+ "word": "spread",
+ "punct": "spread",
+ "index": 9834
+ },
+ {
+ "start": 5316.84,
+ "end": 5317.2,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 9835
+ },
+ {
+ "start": 5317.2,
+ "end": 5317.86,
+ "confidence": 0,
+ "word": "quickly",
+ "punct": "quickly",
+ "index": 9836
+ },
+ {
+ "start": 5317.86,
+ "end": 5318.86,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9837
+ },
+ {
+ "start": 5318.86,
+ "end": 5319.32,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 9838
+ },
+ {
+ "start": 5319.32,
+ "end": 5319.58,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 9839
+ },
+ {
+ "start": 5319.58,
+ "end": 5319.86,
+ "confidence": 0,
+ "word": "took",
+ "punct": "took",
+ "index": 9840
+ },
+ {
+ "start": 5319.86,
+ "end": 5320.44,
+ "confidence": 0,
+ "word": "attempt",
+ "punct": "attempt",
+ "index": 9841
+ },
+ {
+ "start": 5320.44,
+ "end": 5320.76,
+ "confidence": 0,
+ "word": "after",
+ "punct": "after",
+ "index": 9842
+ },
+ {
+ "start": 5320.76,
+ "end": 5321.14,
+ "confidence": 0,
+ "word": "attempt",
+ "punct": "attempt",
+ "index": 9843
+ },
+ {
+ "start": 5321.14,
+ "end": 5321.46,
+ "confidence": 0,
+ "word": "after",
+ "punct": "after",
+ "index": 9844
+ },
+ {
+ "start": 5321.46,
+ "end": 5321.96,
+ "confidence": 0,
+ "word": "attempt",
+ "punct": "attempt",
+ "index": 9845
+ },
+ {
+ "start": 5321.96,
+ "end": 5322.86,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9846
+ },
+ {
+ "start": 5322.86,
+ "end": 5322.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9847
+ },
+ {
+ "start": 5322.98,
+ "end": 5323.6,
+ "confidence": 0,
+ "word": "involvement",
+ "punct": "involvement",
+ "index": 9848
+ },
+ {
+ "start": 5323.6,
+ "end": 5323.96,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9849
+ },
+ {
+ "start": 5323.96,
+ "end": 5324.34,
+ "confidence": 0,
+ "word": "civil",
+ "punct": "civil",
+ "index": 9850
+ },
+ {
+ "start": 5324.34,
+ "end": 5324.98,
+ "confidence": 0,
+ "word": "society",
+ "punct": "society",
+ "index": 9851
+ },
+ {
+ "start": 5324.98,
+ "end": 5325.3,
+ "confidence": 0,
+ "word": "groups",
+ "punct": "groups",
+ "index": 9852
+ },
+ {
+ "start": 5325.3,
+ "end": 5326.08,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9853
+ },
+ {
+ "start": 5326.08,
+ "end": 5326.26,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 9854
+ },
+ {
+ "start": 5326.26,
+ "end": 5326.44,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9855
+ },
+ {
+ "start": 5326.44,
+ "end": 5326.6,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9856
+ },
+ {
+ "start": 5326.6,
+ "end": 5327.26,
+ "confidence": 0,
+ "word": "remove",
+ "punct": "remove",
+ "index": 9857
+ },
+ {
+ "start": 5327.26,
+ "end": 5329.86,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 9858
+ }
+ ],
+ "start": 5308.15
+ }
+ },
+ {
+ "key": "35mim",
+ "text": "Why couldn't it be removed within 24 hours.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5329.86,
+ "end": 5330.82,
+ "confidence": 0,
+ "word": "why",
+ "punct": "Why",
+ "index": 9859
+ },
+ {
+ "start": 5330.82,
+ "end": 5331.12,
+ "confidence": 0,
+ "word": "couldn't",
+ "punct": "couldn't",
+ "index": 9860
+ },
+ {
+ "start": 5331.12,
+ "end": 5331.24,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 9861
+ },
+ {
+ "start": 5331.24,
+ "end": 5331.36,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 9862
+ },
+ {
+ "start": 5331.36,
+ "end": 5331.72,
+ "confidence": 0,
+ "word": "removed",
+ "punct": "removed",
+ "index": 9863
+ },
+ {
+ "start": 5331.72,
+ "end": 5332.04,
+ "confidence": 0,
+ "word": "within",
+ "punct": "within",
+ "index": 9864
+ },
+ {
+ "start": 5332.04,
+ "end": 5332.48,
+ "confidence": 0,
+ "word": "24",
+ "punct": "24",
+ "index": 9865
+ },
+ {
+ "start": 5332.48,
+ "end": 5333.72,
+ "confidence": 0,
+ "word": "hours",
+ "punct": "hours.",
+ "index": 9866
+ }
+ ],
+ "start": 5329.86
+ }
+ },
+ {
+ "key": "4ljcg",
+ "text": "Senator what's happening in Myanmar is a terrible tragedy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5333.72,
+ "end": 5334.72,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 9867
+ },
+ {
+ "start": 5334.72,
+ "end": 5335.26,
+ "confidence": 0,
+ "word": "what's",
+ "punct": "what's",
+ "index": 9868
+ },
+ {
+ "start": 5335.26,
+ "end": 5335.58,
+ "confidence": 0,
+ "word": "happening",
+ "punct": "happening",
+ "index": 9869
+ },
+ {
+ "start": 5335.58,
+ "end": 5335.68,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9870
+ },
+ {
+ "start": 5335.68,
+ "end": 5336.28,
+ "confidence": 0,
+ "word": "myanmar",
+ "punct": "Myanmar",
+ "index": 9871
+ },
+ {
+ "start": 5336.28,
+ "end": 5336.46,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9872
+ },
+ {
+ "start": 5336.46,
+ "end": 5336.56,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9873
+ },
+ {
+ "start": 5336.56,
+ "end": 5337.12,
+ "confidence": 0,
+ "word": "terrible",
+ "punct": "terrible",
+ "index": 9874
+ },
+ {
+ "start": 5337.12,
+ "end": 5337.64,
+ "confidence": 0,
+ "word": "tragedy",
+ "punct": "tragedy.",
+ "index": 9875
+ }
+ ],
+ "start": 5333.72
+ }
+ },
+ {
+ "key": "67a4",
+ "text": "And we need to do more.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5337.64,
+ "end": 5338.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 9876
+ },
+ {
+ "start": 5338.3,
+ "end": 5338.42,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 9877
+ },
+ {
+ "start": 5338.42,
+ "end": 5338.62,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 9878
+ },
+ {
+ "start": 5338.62,
+ "end": 5338.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9879
+ },
+ {
+ "start": 5338.72,
+ "end": 5338.88,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 9880
+ },
+ {
+ "start": 5338.88,
+ "end": 5339.2,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more.",
+ "index": 9881
+ }
+ ],
+ "start": 5337.64
+ }
+ },
+ {
+ "key": "f1te3",
+ "text": "We all agree with that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5339.2,
+ "end": 5339.38,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 9882
+ },
+ {
+ "start": 5339.38,
+ "end": 5339.58,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 9883
+ },
+ {
+ "start": 5339.58,
+ "end": 5339.86,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 9884
+ },
+ {
+ "start": 5339.86,
+ "end": 5340.02,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 9885
+ },
+ {
+ "start": 5340.02,
+ "end": 5340.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 9886
+ }
+ ],
+ "start": 5339.2
+ }
+ },
+ {
+ "key": "ci1go",
+ "text": "Okay?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5340.28,
+ "end": 5340.7,
+ "confidence": 0,
+ "word": "okay",
+ "punct": "Okay?",
+ "index": 9887
+ }
+ ],
+ "start": 5340.28
+ }
+ },
+ {
+ "key": "2o712",
+ "text": "But you and investigators have blamed you blame Facebook we're playing a role in the genocide.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5340.7,
+ "end": 5342.12,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 9888
+ },
+ {
+ "start": 5342.12,
+ "end": 5342.98,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9889
+ },
+ {
+ "start": 5342.98,
+ "end": 5343.16,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 9890
+ },
+ {
+ "start": 5343.16,
+ "end": 5344.06,
+ "confidence": 0,
+ "word": "investigators",
+ "punct": "investigators",
+ "index": 9891
+ },
+ {
+ "start": 5344.06,
+ "end": 5344.36,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 9892
+ },
+ {
+ "start": 5344.36,
+ "end": 5345.2,
+ "confidence": 0,
+ "word": "blamed",
+ "punct": "blamed",
+ "index": 9893
+ },
+ {
+ "start": 5345.2,
+ "end": 5346.46,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9894
+ },
+ {
+ "start": 5346.46,
+ "end": 5346.86,
+ "confidence": 0,
+ "word": "blame",
+ "punct": "blame",
+ "index": 9895
+ },
+ {
+ "start": 5346.86,
+ "end": 5347.4,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 9896
+ },
+ {
+ "start": 5347.4,
+ "end": 5348.14,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 9897
+ },
+ {
+ "start": 5348.14,
+ "end": 5348.44,
+ "confidence": 0,
+ "word": "playing",
+ "punct": "playing",
+ "index": 9898
+ },
+ {
+ "start": 5348.44,
+ "end": 5348.54,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 9899
+ },
+ {
+ "start": 5348.54,
+ "end": 5348.78,
+ "confidence": 0,
+ "word": "role",
+ "punct": "role",
+ "index": 9900
+ },
+ {
+ "start": 5348.78,
+ "end": 5348.84,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9901
+ },
+ {
+ "start": 5348.84,
+ "end": 5349.06,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9902
+ },
+ {
+ "start": 5349.06,
+ "end": 5349.56,
+ "confidence": 0,
+ "word": "genocide",
+ "punct": "genocide.",
+ "index": 9903
+ }
+ ],
+ "start": 5340.7
+ }
+ },
+ {
+ "key": "413hp",
+ "text": "We all agree is terrible.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5349.56,
+ "end": 5349.86,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 9904
+ },
+ {
+ "start": 5349.86,
+ "end": 5350.02,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 9905
+ },
+ {
+ "start": 5350.02,
+ "end": 5350.26,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 9906
+ },
+ {
+ "start": 5350.26,
+ "end": 5350.38,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9907
+ },
+ {
+ "start": 5350.38,
+ "end": 5352.18,
+ "confidence": 0,
+ "word": "terrible",
+ "punct": "terrible.",
+ "index": 9908
+ }
+ ],
+ "start": 5349.56
+ }
+ },
+ {
+ "key": "6dtpg",
+ "text": "How can you dedicate the?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5352.18,
+ "end": 5353.16,
+ "confidence": 0,
+ "word": "how",
+ "punct": "How",
+ "index": 9909
+ },
+ {
+ "start": 5353.16,
+ "end": 5353.4,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 9910
+ },
+ {
+ "start": 5353.4,
+ "end": 5353.56,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9911
+ },
+ {
+ "start": 5353.56,
+ "end": 5354.12,
+ "confidence": 0,
+ "word": "dedicate",
+ "punct": "dedicate",
+ "index": 9912
+ },
+ {
+ "start": 5354.12,
+ "end": 5354.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the?",
+ "index": 9913
+ }
+ ],
+ "start": 5352.18
+ }
+ },
+ {
+ "key": "1u6ae",
+ "text": "Will you dedicate resources make sure such hate speech is taken down within 24 Yes we're working on this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5354.3,
+ "end": 5354.48,
+ "confidence": 0,
+ "word": "will",
+ "punct": "Will",
+ "index": 9914
+ },
+ {
+ "start": 5354.48,
+ "end": 5354.62,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 9915
+ },
+ {
+ "start": 5354.62,
+ "end": 5356.16,
+ "confidence": 0,
+ "word": "dedicate",
+ "punct": "dedicate",
+ "index": 9916
+ },
+ {
+ "start": 5356.16,
+ "end": 5357.14,
+ "confidence": 0,
+ "word": "resources",
+ "punct": "resources",
+ "index": 9917
+ },
+ {
+ "start": 5357.14,
+ "end": 5357.36,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 9918
+ },
+ {
+ "start": 5357.36,
+ "end": 5358.1,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 9919
+ },
+ {
+ "start": 5358.1,
+ "end": 5358.44,
+ "confidence": 0,
+ "word": "such",
+ "punct": "such",
+ "index": 9920
+ },
+ {
+ "start": 5358.44,
+ "end": 5358.74,
+ "confidence": 0,
+ "word": "hate",
+ "punct": "hate",
+ "index": 9921
+ },
+ {
+ "start": 5358.74,
+ "end": 5359.04,
+ "confidence": 0,
+ "word": "speech",
+ "punct": "speech",
+ "index": 9922
+ },
+ {
+ "start": 5359.04,
+ "end": 5359.2,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9923
+ },
+ {
+ "start": 5359.2,
+ "end": 5359.48,
+ "confidence": 0,
+ "word": "taken",
+ "punct": "taken",
+ "index": 9924
+ },
+ {
+ "start": 5359.48,
+ "end": 5359.66,
+ "confidence": 0,
+ "word": "down",
+ "punct": "down",
+ "index": 9925
+ },
+ {
+ "start": 5359.66,
+ "end": 5359.96,
+ "confidence": 0,
+ "word": "within",
+ "punct": "within",
+ "index": 9926
+ },
+ {
+ "start": 5359.96,
+ "end": 5361.34,
+ "confidence": 0,
+ "word": "24",
+ "punct": "24",
+ "index": 9927
+ },
+ {
+ "start": 5361.34,
+ "end": 5362.26,
+ "confidence": 0,
+ "word": "yes",
+ "punct": "Yes",
+ "index": 9928
+ },
+ {
+ "start": 5362.26,
+ "end": 5362.56,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 9929
+ },
+ {
+ "start": 5362.56,
+ "end": 5362.84,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 9930
+ },
+ {
+ "start": 5362.84,
+ "end": 5362.96,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 9931
+ },
+ {
+ "start": 5362.96,
+ "end": 5363.12,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 9932
+ }
+ ],
+ "start": 5354.3
+ }
+ },
+ {
+ "key": "9l247",
+ "text": "And there are three specific things that we're doing.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5363.12,
+ "end": 5363.66,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 9933
+ },
+ {
+ "start": 5363.66,
+ "end": 5363.92,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 9934
+ },
+ {
+ "start": 5363.92,
+ "end": 5364.04,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 9935
+ },
+ {
+ "start": 5364.04,
+ "end": 5364.32,
+ "confidence": 0,
+ "word": "three",
+ "punct": "three",
+ "index": 9936
+ },
+ {
+ "start": 5364.32,
+ "end": 5364.88,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 9937
+ },
+ {
+ "start": 5364.88,
+ "end": 5365.22,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 9938
+ },
+ {
+ "start": 5365.22,
+ "end": 5365.42,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 9939
+ },
+ {
+ "start": 5365.42,
+ "end": 5365.6,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 9940
+ },
+ {
+ "start": 5365.6,
+ "end": 5365.86,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing.",
+ "index": 9941
+ }
+ ],
+ "start": 5363.12
+ }
+ },
+ {
+ "key": "bb14s",
+ "text": "One is we're hiring dozens of more Burmese language content reviewers, because hate speech is very language.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5365.86,
+ "end": 5366.66,
+ "confidence": 0,
+ "word": "one",
+ "punct": "One",
+ "index": 9942
+ },
+ {
+ "start": 5366.66,
+ "end": 5367.02,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9943
+ },
+ {
+ "start": 5367.02,
+ "end": 5367.24,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 9944
+ },
+ {
+ "start": 5367.24,
+ "end": 5367.68,
+ "confidence": 0,
+ "word": "hiring",
+ "punct": "hiring",
+ "index": 9945
+ },
+ {
+ "start": 5367.68,
+ "end": 5368.14,
+ "confidence": 0,
+ "word": "dozens",
+ "punct": "dozens",
+ "index": 9946
+ },
+ {
+ "start": 5368.14,
+ "end": 5368.28,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 9947
+ },
+ {
+ "start": 5368.28,
+ "end": 5368.54,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 9948
+ },
+ {
+ "start": 5368.54,
+ "end": 5369.08,
+ "confidence": 0,
+ "word": "burmese",
+ "punct": "Burmese",
+ "index": 9949
+ },
+ {
+ "start": 5369.08,
+ "end": 5369.58,
+ "confidence": 0,
+ "word": "language",
+ "punct": "language",
+ "index": 9950
+ },
+ {
+ "start": 5369.58,
+ "end": 5370.6,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 9951
+ },
+ {
+ "start": 5370.6,
+ "end": 5371.06,
+ "confidence": 0,
+ "word": "reviewers,",
+ "punct": "reviewers,",
+ "index": 9952
+ },
+ {
+ "start": 5371.06,
+ "end": 5371.72,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 9953
+ },
+ {
+ "start": 5371.72,
+ "end": 5372.44,
+ "confidence": 0,
+ "word": "hate",
+ "punct": "hate",
+ "index": 9954
+ },
+ {
+ "start": 5372.44,
+ "end": 5372.72,
+ "confidence": 0,
+ "word": "speech",
+ "punct": "speech",
+ "index": 9955
+ },
+ {
+ "start": 5372.72,
+ "end": 5372.84,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9956
+ },
+ {
+ "start": 5372.84,
+ "end": 5373.1,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 9957
+ },
+ {
+ "start": 5373.1,
+ "end": 5373.46,
+ "confidence": 0,
+ "word": "language",
+ "punct": "language.",
+ "index": 9958
+ }
+ ],
+ "start": 5365.86
+ }
+ },
+ {
+ "key": "6lrge",
+ "text": "Specific had to do it without people who speak the local language.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5373.46,
+ "end": 5374.42,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "Specific",
+ "index": 9959
+ },
+ {
+ "start": 5374.42,
+ "end": 5374.68,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 9960
+ },
+ {
+ "start": 5374.68,
+ "end": 5374.76,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9961
+ },
+ {
+ "start": 5374.76,
+ "end": 5374.88,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 9962
+ },
+ {
+ "start": 5374.88,
+ "end": 5375,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 9963
+ },
+ {
+ "start": 5375,
+ "end": 5375.38,
+ "confidence": 0,
+ "word": "without",
+ "punct": "without",
+ "index": 9964
+ },
+ {
+ "start": 5375.38,
+ "end": 5375.62,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 9965
+ },
+ {
+ "start": 5375.62,
+ "end": 5375.72,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 9966
+ },
+ {
+ "start": 5375.72,
+ "end": 5375.98,
+ "confidence": 0,
+ "word": "speak",
+ "punct": "speak",
+ "index": 9967
+ },
+ {
+ "start": 5375.98,
+ "end": 5376.1,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 9968
+ },
+ {
+ "start": 5376.1,
+ "end": 5376.34,
+ "confidence": 0,
+ "word": "local",
+ "punct": "local",
+ "index": 9969
+ },
+ {
+ "start": 5376.34,
+ "end": 5376.72,
+ "confidence": 0,
+ "word": "language",
+ "punct": "language.",
+ "index": 9970
+ }
+ ],
+ "start": 5373.46
+ }
+ },
+ {
+ "key": "ct83o",
+ "text": "And we need to ramp up our effort there dramatically, second is we're working with civil society in Myanmar to identify specific hate figures.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5376.72,
+ "end": 5377.2,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 9971
+ },
+ {
+ "start": 5377.2,
+ "end": 5377.32,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 9972
+ },
+ {
+ "start": 5377.32,
+ "end": 5377.5,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 9973
+ },
+ {
+ "start": 5377.5,
+ "end": 5377.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9974
+ },
+ {
+ "start": 5377.58,
+ "end": 5377.84,
+ "confidence": 0,
+ "word": "ramp",
+ "punct": "ramp",
+ "index": 9975
+ },
+ {
+ "start": 5377.84,
+ "end": 5377.96,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 9976
+ },
+ {
+ "start": 5377.96,
+ "end": 5378.12,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 9977
+ },
+ {
+ "start": 5378.12,
+ "end": 5378.38,
+ "confidence": 0,
+ "word": "effort",
+ "punct": "effort",
+ "index": 9978
+ },
+ {
+ "start": 5378.38,
+ "end": 5378.62,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 9979
+ },
+ {
+ "start": 5378.62,
+ "end": 5379.16,
+ "confidence": 0,
+ "word": "dramatically,",
+ "punct": "dramatically,",
+ "index": 9980
+ },
+ {
+ "start": 5379.16,
+ "end": 5380.04,
+ "confidence": 0,
+ "word": "second",
+ "punct": "second",
+ "index": 9981
+ },
+ {
+ "start": 5380.04,
+ "end": 5380.16,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 9982
+ },
+ {
+ "start": 5380.16,
+ "end": 5380.34,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 9983
+ },
+ {
+ "start": 5380.34,
+ "end": 5380.6,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 9984
+ },
+ {
+ "start": 5380.6,
+ "end": 5380.74,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 9985
+ },
+ {
+ "start": 5380.74,
+ "end": 5381.08,
+ "confidence": 0,
+ "word": "civil",
+ "punct": "civil",
+ "index": 9986
+ },
+ {
+ "start": 5381.08,
+ "end": 5381.68,
+ "confidence": 0,
+ "word": "society",
+ "punct": "society",
+ "index": 9987
+ },
+ {
+ "start": 5381.68,
+ "end": 5382.2,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 9988
+ },
+ {
+ "start": 5382.2,
+ "end": 5382.72,
+ "confidence": 0,
+ "word": "myanmar",
+ "punct": "Myanmar",
+ "index": 9989
+ },
+ {
+ "start": 5382.72,
+ "end": 5383.24,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 9990
+ },
+ {
+ "start": 5383.24,
+ "end": 5383.9,
+ "confidence": 0,
+ "word": "identify",
+ "punct": "identify",
+ "index": 9991
+ },
+ {
+ "start": 5383.9,
+ "end": 5384.78,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 9992
+ },
+ {
+ "start": 5384.78,
+ "end": 5385.04,
+ "confidence": 0,
+ "word": "hate",
+ "punct": "hate",
+ "index": 9993
+ },
+ {
+ "start": 5385.04,
+ "end": 5385.54,
+ "confidence": 0,
+ "word": "figures",
+ "punct": "figures.",
+ "index": 9994
+ }
+ ],
+ "start": 5376.72
+ }
+ },
+ {
+ "key": "1b5i3",
+ "text": "So we can take down their accounts rather than specific pieces of content and third is we are standing up a product team to do specific product changes in Myanmar and other countries that may have similar issues in the future to prevent this from from happening in Santa Cruz and I sent a letter to Apple asking what they're going to do about Chinese censorship.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5385.54,
+ "end": 5385.84,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 9995
+ },
+ {
+ "start": 5385.84,
+ "end": 5385.96,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 9996
+ },
+ {
+ "start": 5385.96,
+ "end": 5386.1,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 9997
+ },
+ {
+ "start": 5386.1,
+ "end": 5386.3,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 9998
+ },
+ {
+ "start": 5386.3,
+ "end": 5386.5,
+ "confidence": 0,
+ "word": "down",
+ "punct": "down",
+ "index": 9999
+ },
+ {
+ "start": 5386.5,
+ "end": 5386.7,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 10000
+ },
+ {
+ "start": 5386.7,
+ "end": 5387.5,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts",
+ "index": 10001
+ },
+ {
+ "start": 5387.5,
+ "end": 5388.14,
+ "confidence": 0,
+ "word": "rather",
+ "punct": "rather",
+ "index": 10002
+ },
+ {
+ "start": 5388.14,
+ "end": 5388.34,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 10003
+ },
+ {
+ "start": 5388.34,
+ "end": 5388.9,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 10004
+ },
+ {
+ "start": 5388.9,
+ "end": 5389.18,
+ "confidence": 0,
+ "word": "pieces",
+ "punct": "pieces",
+ "index": 10005
+ },
+ {
+ "start": 5389.18,
+ "end": 5389.3,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10006
+ },
+ {
+ "start": 5389.3,
+ "end": 5389.68,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 10007
+ },
+ {
+ "start": 5389.68,
+ "end": 5390.22,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 10008
+ },
+ {
+ "start": 5390.22,
+ "end": 5390.64,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 10009
+ },
+ {
+ "start": 5390.64,
+ "end": 5391.12,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10010
+ },
+ {
+ "start": 5391.12,
+ "end": 5391.22,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10011
+ },
+ {
+ "start": 5391.22,
+ "end": 5391.32,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 10012
+ },
+ {
+ "start": 5391.32,
+ "end": 5391.68,
+ "confidence": 0,
+ "word": "standing",
+ "punct": "standing",
+ "index": 10013
+ },
+ {
+ "start": 5391.68,
+ "end": 5391.8,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 10014
+ },
+ {
+ "start": 5391.8,
+ "end": 5392,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10015
+ },
+ {
+ "start": 5392,
+ "end": 5392.38,
+ "confidence": 0,
+ "word": "product",
+ "punct": "product",
+ "index": 10016
+ },
+ {
+ "start": 5392.38,
+ "end": 5392.72,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 10017
+ },
+ {
+ "start": 5392.72,
+ "end": 5393.46,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10018
+ },
+ {
+ "start": 5393.46,
+ "end": 5393.9,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 10019
+ },
+ {
+ "start": 5393.9,
+ "end": 5394.54,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 10020
+ },
+ {
+ "start": 5394.54,
+ "end": 5394.92,
+ "confidence": 0,
+ "word": "product",
+ "punct": "product",
+ "index": 10021
+ },
+ {
+ "start": 5394.92,
+ "end": 5395.38,
+ "confidence": 0,
+ "word": "changes",
+ "punct": "changes",
+ "index": 10022
+ },
+ {
+ "start": 5395.38,
+ "end": 5395.66,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10023
+ },
+ {
+ "start": 5395.66,
+ "end": 5396.2,
+ "confidence": 0,
+ "word": "myanmar",
+ "punct": "Myanmar",
+ "index": 10024
+ },
+ {
+ "start": 5396.2,
+ "end": 5396.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 10025
+ },
+ {
+ "start": 5396.62,
+ "end": 5396.9,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 10026
+ },
+ {
+ "start": 5396.9,
+ "end": 5397.36,
+ "confidence": 0,
+ "word": "countries",
+ "punct": "countries",
+ "index": 10027
+ },
+ {
+ "start": 5397.36,
+ "end": 5397.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10028
+ },
+ {
+ "start": 5397.8,
+ "end": 5398.02,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 10029
+ },
+ {
+ "start": 5398.02,
+ "end": 5398.24,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 10030
+ },
+ {
+ "start": 5398.24,
+ "end": 5398.84,
+ "confidence": 0,
+ "word": "similar",
+ "punct": "similar",
+ "index": 10031
+ },
+ {
+ "start": 5398.84,
+ "end": 5399.18,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues",
+ "index": 10032
+ },
+ {
+ "start": 5399.18,
+ "end": 5399.3,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10033
+ },
+ {
+ "start": 5399.3,
+ "end": 5399.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10034
+ },
+ {
+ "start": 5399.42,
+ "end": 5399.78,
+ "confidence": 0,
+ "word": "future",
+ "punct": "future",
+ "index": 10035
+ },
+ {
+ "start": 5399.78,
+ "end": 5400.62,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10036
+ },
+ {
+ "start": 5400.62,
+ "end": 5400.96,
+ "confidence": 0,
+ "word": "prevent",
+ "punct": "prevent",
+ "index": 10037
+ },
+ {
+ "start": 5400.96,
+ "end": 5401.14,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 10038
+ },
+ {
+ "start": 5401.14,
+ "end": 5401.48,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 10039
+ },
+ {
+ "start": 5401.48,
+ "end": 5401.7,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 10040
+ },
+ {
+ "start": 5401.7,
+ "end": 5402.06,
+ "confidence": 0,
+ "word": "happening",
+ "punct": "happening",
+ "index": 10041
+ },
+ {
+ "start": 5402.06,
+ "end": 5402.9,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10042
+ },
+ {
+ "start": 5402.9,
+ "end": 5403.36,
+ "confidence": 0,
+ "word": "santa",
+ "punct": "Santa",
+ "index": 10043
+ },
+ {
+ "start": 5403.36,
+ "end": 5403.66,
+ "confidence": 0,
+ "word": "cruz",
+ "punct": "Cruz",
+ "index": 10044
+ },
+ {
+ "start": 5403.66,
+ "end": 5403.82,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 10045
+ },
+ {
+ "start": 5403.82,
+ "end": 5404.8,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10046
+ },
+ {
+ "start": 5404.8,
+ "end": 5405.72,
+ "confidence": 0,
+ "word": "sent",
+ "punct": "sent",
+ "index": 10047
+ },
+ {
+ "start": 5405.72,
+ "end": 5405.82,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10048
+ },
+ {
+ "start": 5405.82,
+ "end": 5406.34,
+ "confidence": 0,
+ "word": "letter",
+ "punct": "letter",
+ "index": 10049
+ },
+ {
+ "start": 5406.34,
+ "end": 5406.62,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10050
+ },
+ {
+ "start": 5406.62,
+ "end": 5408.7,
+ "confidence": 0,
+ "word": "apple",
+ "punct": "Apple",
+ "index": 10051
+ },
+ {
+ "start": 5408.7,
+ "end": 5409.68,
+ "confidence": 0,
+ "word": "asking",
+ "punct": "asking",
+ "index": 10052
+ },
+ {
+ "start": 5409.68,
+ "end": 5409.8,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 10053
+ },
+ {
+ "start": 5409.8,
+ "end": 5410,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 10054
+ },
+ {
+ "start": 5410,
+ "end": 5410.14,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 10055
+ },
+ {
+ "start": 5410.14,
+ "end": 5410.2,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10056
+ },
+ {
+ "start": 5410.2,
+ "end": 5410.28,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 10057
+ },
+ {
+ "start": 5410.28,
+ "end": 5410.5,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 10058
+ },
+ {
+ "start": 5410.5,
+ "end": 5411.04,
+ "confidence": 0,
+ "word": "chinese",
+ "punct": "Chinese",
+ "index": 10059
+ },
+ {
+ "start": 5411.04,
+ "end": 5413.34,
+ "confidence": 0,
+ "word": "censorship",
+ "punct": "censorship.",
+ "index": 10060
+ }
+ ],
+ "start": 5385.54
+ }
+ },
+ {
+ "key": "16bab",
+ "text": "My question I place that would be great.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5413.34,
+ "end": 5414.46,
+ "confidence": 0,
+ "word": "my",
+ "punct": "My",
+ "index": 10061
+ },
+ {
+ "start": 5414.46,
+ "end": 5414.86,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question",
+ "index": 10062
+ },
+ {
+ "start": 5414.86,
+ "end": 5415.02,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10063
+ },
+ {
+ "start": 5415.02,
+ "end": 5415.32,
+ "confidence": 0,
+ "word": "place",
+ "punct": "place",
+ "index": 10064
+ },
+ {
+ "start": 5415.32,
+ "end": 5415.66,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10065
+ },
+ {
+ "start": 5415.66,
+ "end": 5415.8,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 10066
+ },
+ {
+ "start": 5415.8,
+ "end": 5415.86,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 10067
+ },
+ {
+ "start": 5415.86,
+ "end": 5416.04,
+ "confidence": 0,
+ "word": "great",
+ "punct": "great.",
+ "index": 10068
+ }
+ ],
+ "start": 5413.34
+ }
+ },
+ {
+ "key": "7mkbi",
+ "text": "Thank you, sir.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5416.04,
+ "end": 5416.22,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 10069
+ },
+ {
+ "start": 5416.22,
+ "end": 5416.36,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 10070
+ },
+ {
+ "start": 5416.36,
+ "end": 5417.02,
+ "confidence": 0,
+ "word": "sir",
+ "punct": "sir.",
+ "index": 10071
+ }
+ ],
+ "start": 5416.04
+ }
+ },
+ {
+ "key": "8nvsl",
+ "text": "For the record, I want to know what you do about Chinese censorship when they come to you Seagrams up next, thank you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5417.02,
+ "end": 5417.16,
+ "confidence": 0,
+ "word": "for",
+ "punct": "For",
+ "index": 10072
+ },
+ {
+ "start": 5417.16,
+ "end": 5417.28,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10073
+ },
+ {
+ "start": 5417.28,
+ "end": 5417.56,
+ "confidence": 0,
+ "word": "record,",
+ "punct": "record,",
+ "index": 10074
+ },
+ {
+ "start": 5417.56,
+ "end": 5417.62,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10075
+ },
+ {
+ "start": 5417.62,
+ "end": 5417.8,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 10076
+ },
+ {
+ "start": 5417.8,
+ "end": 5417.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10077
+ },
+ {
+ "start": 5417.86,
+ "end": 5417.98,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 10078
+ },
+ {
+ "start": 5417.98,
+ "end": 5418.14,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 10079
+ },
+ {
+ "start": 5418.14,
+ "end": 5418.3,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10080
+ },
+ {
+ "start": 5418.3,
+ "end": 5418.66,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 10081
+ },
+ {
+ "start": 5418.66,
+ "end": 5419.28,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 10082
+ },
+ {
+ "start": 5419.28,
+ "end": 5420.26,
+ "confidence": 0,
+ "word": "chinese",
+ "punct": "Chinese",
+ "index": 10083
+ },
+ {
+ "start": 5420.26,
+ "end": 5420.84,
+ "confidence": 0,
+ "word": "censorship",
+ "punct": "censorship",
+ "index": 10084
+ },
+ {
+ "start": 5420.84,
+ "end": 5421.02,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 10085
+ },
+ {
+ "start": 5421.02,
+ "end": 5421.22,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 10086
+ },
+ {
+ "start": 5421.22,
+ "end": 5421.42,
+ "confidence": 0,
+ "word": "come",
+ "punct": "come",
+ "index": 10087
+ },
+ {
+ "start": 5421.42,
+ "end": 5421.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10088
+ },
+ {
+ "start": 5421.52,
+ "end": 5422.32,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10089
+ },
+ {
+ "start": 5422.32,
+ "end": 5423.3,
+ "confidence": 0,
+ "word": "seagrams",
+ "punct": "Seagrams",
+ "index": 10090
+ },
+ {
+ "start": 5423.3,
+ "end": 5423.44,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 10091
+ },
+ {
+ "start": 5423.44,
+ "end": 5424.42,
+ "confidence": 0,
+ "word": "next,",
+ "punct": "next,",
+ "index": 10092
+ },
+ {
+ "start": 5424.42,
+ "end": 5425.32,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 10093
+ },
+ {
+ "start": 5425.32,
+ "end": 5425.7,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 10094
+ }
+ ],
+ "start": 5417.02
+ }
+ },
+ {
+ "key": "cl2ku",
+ "text": "Are you familiar with Andrew Bosworth?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5425.7,
+ "end": 5426.68,
+ "confidence": 0,
+ "word": "are",
+ "punct": "Are",
+ "index": 10095
+ },
+ {
+ "start": 5426.68,
+ "end": 5426.78,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10096
+ },
+ {
+ "start": 5426.78,
+ "end": 5427.16,
+ "confidence": 0,
+ "word": "familiar",
+ "punct": "familiar",
+ "index": 10097
+ },
+ {
+ "start": 5427.16,
+ "end": 5427.38,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10098
+ },
+ {
+ "start": 5427.38,
+ "end": 5427.8,
+ "confidence": 0,
+ "word": "andrew",
+ "punct": "Andrew",
+ "index": 10099
+ },
+ {
+ "start": 5427.8,
+ "end": 5430.2,
+ "confidence": 0,
+ "word": "bosworth",
+ "punct": "Bosworth?",
+ "index": 10100
+ }
+ ],
+ "start": 5425.7
+ }
+ },
+ {
+ "key": "8o0nf",
+ "text": "Yes, Senator, I am.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5430.2,
+ "end": 5431.18,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 10101
+ },
+ {
+ "start": 5431.18,
+ "end": 5431.62,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 10102
+ },
+ {
+ "start": 5431.62,
+ "end": 5431.68,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10103
+ },
+ {
+ "start": 5431.68,
+ "end": 5431.9,
+ "confidence": 0,
+ "word": "am",
+ "punct": "am.",
+ "index": 10104
+ }
+ ],
+ "start": 5430.2
+ }
+ },
+ {
+ "key": "8s98",
+ "text": "He said so we connect more people.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5431.9,
+ "end": 5432.96,
+ "confidence": 0,
+ "word": "he",
+ "punct": "He",
+ "index": 10105
+ },
+ {
+ "start": 5432.96,
+ "end": 5433.38,
+ "confidence": 0,
+ "word": "said",
+ "punct": "said",
+ "index": 10106
+ },
+ {
+ "start": 5433.38,
+ "end": 5434.18,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 10107
+ },
+ {
+ "start": 5434.18,
+ "end": 5434.3,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10108
+ },
+ {
+ "start": 5434.3,
+ "end": 5434.7,
+ "confidence": 0,
+ "word": "connect",
+ "punct": "connect",
+ "index": 10109
+ },
+ {
+ "start": 5434.7,
+ "end": 5434.94,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 10110
+ },
+ {
+ "start": 5434.94,
+ "end": 5435.3,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people.",
+ "index": 10111
+ }
+ ],
+ "start": 5431.9
+ }
+ },
+ {
+ "key": "3qbeh",
+ "text": "Maybe someone dies in a terrorist attack coordinated on our tools, the ugly truth is that we believe in connecting people so deeply that anything that allows us to connect more people more often is to fact.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5435.3,
+ "end": 5435.88,
+ "confidence": 0,
+ "word": "maybe",
+ "punct": "Maybe",
+ "index": 10112
+ },
+ {
+ "start": 5435.88,
+ "end": 5436.32,
+ "confidence": 0,
+ "word": "someone",
+ "punct": "someone",
+ "index": 10113
+ },
+ {
+ "start": 5436.32,
+ "end": 5436.64,
+ "confidence": 0,
+ "word": "dies",
+ "punct": "dies",
+ "index": 10114
+ },
+ {
+ "start": 5436.64,
+ "end": 5436.8,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10115
+ },
+ {
+ "start": 5436.8,
+ "end": 5436.94,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10116
+ },
+ {
+ "start": 5436.94,
+ "end": 5437.28,
+ "confidence": 0,
+ "word": "terrorist",
+ "punct": "terrorist",
+ "index": 10117
+ },
+ {
+ "start": 5437.28,
+ "end": 5437.96,
+ "confidence": 0,
+ "word": "attack",
+ "punct": "attack",
+ "index": 10118
+ },
+ {
+ "start": 5437.96,
+ "end": 5438.94,
+ "confidence": 0,
+ "word": "coordinated",
+ "punct": "coordinated",
+ "index": 10119
+ },
+ {
+ "start": 5438.94,
+ "end": 5439.18,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 10120
+ },
+ {
+ "start": 5439.18,
+ "end": 5439.66,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 10121
+ },
+ {
+ "start": 5439.66,
+ "end": 5441.56,
+ "confidence": 0,
+ "word": "tools,",
+ "punct": "tools,",
+ "index": 10122
+ },
+ {
+ "start": 5441.56,
+ "end": 5441.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10123
+ },
+ {
+ "start": 5441.88,
+ "end": 5442.24,
+ "confidence": 0,
+ "word": "ugly",
+ "punct": "ugly",
+ "index": 10124
+ },
+ {
+ "start": 5442.24,
+ "end": 5442.52,
+ "confidence": 0,
+ "word": "truth",
+ "punct": "truth",
+ "index": 10125
+ },
+ {
+ "start": 5442.52,
+ "end": 5442.72,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10126
+ },
+ {
+ "start": 5442.72,
+ "end": 5442.92,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10127
+ },
+ {
+ "start": 5442.92,
+ "end": 5443.04,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10128
+ },
+ {
+ "start": 5443.04,
+ "end": 5443.42,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 10129
+ },
+ {
+ "start": 5443.42,
+ "end": 5443.58,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10130
+ },
+ {
+ "start": 5443.58,
+ "end": 5444.12,
+ "confidence": 0,
+ "word": "connecting",
+ "punct": "connecting",
+ "index": 10131
+ },
+ {
+ "start": 5444.12,
+ "end": 5444.44,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 10132
+ },
+ {
+ "start": 5444.44,
+ "end": 5444.78,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 10133
+ },
+ {
+ "start": 5444.78,
+ "end": 5445.22,
+ "confidence": 0,
+ "word": "deeply",
+ "punct": "deeply",
+ "index": 10134
+ },
+ {
+ "start": 5445.22,
+ "end": 5446.24,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10135
+ },
+ {
+ "start": 5446.24,
+ "end": 5446.74,
+ "confidence": 0,
+ "word": "anything",
+ "punct": "anything",
+ "index": 10136
+ },
+ {
+ "start": 5446.74,
+ "end": 5446.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10137
+ },
+ {
+ "start": 5446.96,
+ "end": 5447.38,
+ "confidence": 0,
+ "word": "allows",
+ "punct": "allows",
+ "index": 10138
+ },
+ {
+ "start": 5447.38,
+ "end": 5447.58,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 10139
+ },
+ {
+ "start": 5447.58,
+ "end": 5447.74,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10140
+ },
+ {
+ "start": 5447.74,
+ "end": 5448.16,
+ "confidence": 0,
+ "word": "connect",
+ "punct": "connect",
+ "index": 10141
+ },
+ {
+ "start": 5448.16,
+ "end": 5448.38,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 10142
+ },
+ {
+ "start": 5448.38,
+ "end": 5448.74,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 10143
+ },
+ {
+ "start": 5448.74,
+ "end": 5449.02,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 10144
+ },
+ {
+ "start": 5449.02,
+ "end": 5449.4,
+ "confidence": 0,
+ "word": "often",
+ "punct": "often",
+ "index": 10145
+ },
+ {
+ "start": 5449.4,
+ "end": 5450.2,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10146
+ },
+ {
+ "start": 5450.2,
+ "end": 5450.34,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10147
+ },
+ {
+ "start": 5450.34,
+ "end": 5450.64,
+ "confidence": 0,
+ "word": "fact",
+ "punct": "fact.",
+ "index": 10148
+ }
+ ],
+ "start": 5435.3
+ }
+ },
+ {
+ "key": "6df74",
+ "text": "Do good, do you agree with that?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5450.64,
+ "end": 5450.9,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 10149
+ },
+ {
+ "start": 5450.9,
+ "end": 5451.26,
+ "confidence": 0,
+ "word": "good,",
+ "punct": "good,",
+ "index": 10150
+ },
+ {
+ "start": 5451.26,
+ "end": 5451.94,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 10151
+ },
+ {
+ "start": 5451.94,
+ "end": 5452.12,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10152
+ },
+ {
+ "start": 5452.12,
+ "end": 5452.34,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 10153
+ },
+ {
+ "start": 5452.34,
+ "end": 5452.48,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10154
+ },
+ {
+ "start": 5452.48,
+ "end": 5453.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that?",
+ "index": 10155
+ }
+ ],
+ "start": 5450.64
+ }
+ },
+ {
+ "key": "4fl4m",
+ "text": "No, Senator, I do not.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5453.38,
+ "end": 5454.22,
+ "confidence": 0,
+ "word": "no,",
+ "punct": "No,",
+ "index": 10156
+ },
+ {
+ "start": 5454.22,
+ "end": 5454.64,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 10157
+ },
+ {
+ "start": 5454.64,
+ "end": 5454.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10158
+ },
+ {
+ "start": 5454.74,
+ "end": 5454.88,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 10159
+ },
+ {
+ "start": 5454.88,
+ "end": 5455.14,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not.",
+ "index": 10160
+ }
+ ],
+ "start": 5453.38
+ }
+ },
+ {
+ "key": "e9stn",
+ "text": "And as context, Boz wrote that bus is what we call them internally.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5455.14,
+ "end": 5455.9,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 10161
+ },
+ {
+ "start": 5455.9,
+ "end": 5456.5,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 10162
+ },
+ {
+ "start": 5456.5,
+ "end": 5457.36,
+ "confidence": 0,
+ "word": "context,",
+ "punct": "context,",
+ "index": 10163
+ },
+ {
+ "start": 5457.36,
+ "end": 5458.34,
+ "confidence": 0,
+ "word": "boz",
+ "punct": "Boz",
+ "index": 10164
+ },
+ {
+ "start": 5458.34,
+ "end": 5458.6,
+ "confidence": 0,
+ "word": "wrote",
+ "punct": "wrote",
+ "index": 10165
+ },
+ {
+ "start": 5458.6,
+ "end": 5458.86,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10166
+ },
+ {
+ "start": 5458.86,
+ "end": 5459.18,
+ "confidence": 0,
+ "word": "bus",
+ "punct": "bus",
+ "index": 10167
+ },
+ {
+ "start": 5459.18,
+ "end": 5459.3,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10168
+ },
+ {
+ "start": 5459.3,
+ "end": 5459.42,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 10169
+ },
+ {
+ "start": 5459.42,
+ "end": 5459.52,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10170
+ },
+ {
+ "start": 5459.52,
+ "end": 5459.68,
+ "confidence": 0,
+ "word": "call",
+ "punct": "call",
+ "index": 10171
+ },
+ {
+ "start": 5459.68,
+ "end": 5459.8,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 10172
+ },
+ {
+ "start": 5459.8,
+ "end": 5461.02,
+ "confidence": 0,
+ "word": "internally",
+ "punct": "internally.",
+ "index": 10173
+ }
+ ],
+ "start": 5455.14
+ }
+ },
+ {
+ "key": "3ld6r",
+ "text": "He wrote that as an internal note we have a lot of discussion internally.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5461.02,
+ "end": 5461.9,
+ "confidence": 0,
+ "word": "he",
+ "punct": "He",
+ "index": 10174
+ },
+ {
+ "start": 5461.9,
+ "end": 5462.1,
+ "confidence": 0,
+ "word": "wrote",
+ "punct": "wrote",
+ "index": 10175
+ },
+ {
+ "start": 5462.1,
+ "end": 5462.22,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10176
+ },
+ {
+ "start": 5462.22,
+ "end": 5462.34,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 10177
+ },
+ {
+ "start": 5462.34,
+ "end": 5462.44,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 10178
+ },
+ {
+ "start": 5462.44,
+ "end": 5463,
+ "confidence": 0,
+ "word": "internal",
+ "punct": "internal",
+ "index": 10179
+ },
+ {
+ "start": 5463,
+ "end": 5464.98,
+ "confidence": 0,
+ "word": "note",
+ "punct": "note",
+ "index": 10180
+ },
+ {
+ "start": 5464.98,
+ "end": 5465.96,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10181
+ },
+ {
+ "start": 5465.96,
+ "end": 5466.1,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 10182
+ },
+ {
+ "start": 5466.1,
+ "end": 5466.14,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10183
+ },
+ {
+ "start": 5466.14,
+ "end": 5466.26,
+ "confidence": 0,
+ "word": "lot",
+ "punct": "lot",
+ "index": 10184
+ },
+ {
+ "start": 5466.26,
+ "end": 5466.34,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10185
+ },
+ {
+ "start": 5466.34,
+ "end": 5466.76,
+ "confidence": 0,
+ "word": "discussion",
+ "punct": "discussion",
+ "index": 10186
+ },
+ {
+ "start": 5466.76,
+ "end": 5467.26,
+ "confidence": 0,
+ "word": "internally",
+ "punct": "internally.",
+ "index": 10187
+ }
+ ],
+ "start": 5461.02
+ }
+ },
+ {
+ "key": "1ai5o",
+ "text": "I disagreed with it at the time that he wrote it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5467.26,
+ "end": 5467.94,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10188
+ },
+ {
+ "start": 5467.94,
+ "end": 5468.46,
+ "confidence": 0,
+ "word": "disagreed",
+ "punct": "disagreed",
+ "index": 10189
+ },
+ {
+ "start": 5468.46,
+ "end": 5468.62,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10190
+ },
+ {
+ "start": 5468.62,
+ "end": 5468.74,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 10191
+ },
+ {
+ "start": 5468.74,
+ "end": 5468.96,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 10192
+ },
+ {
+ "start": 5468.96,
+ "end": 5469.08,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10193
+ },
+ {
+ "start": 5469.08,
+ "end": 5469.28,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 10194
+ },
+ {
+ "start": 5469.28,
+ "end": 5469.42,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10195
+ },
+ {
+ "start": 5469.42,
+ "end": 5469.5,
+ "confidence": 0,
+ "word": "he",
+ "punct": "he",
+ "index": 10196
+ },
+ {
+ "start": 5469.5,
+ "end": 5469.7,
+ "confidence": 0,
+ "word": "wrote",
+ "punct": "wrote",
+ "index": 10197
+ },
+ {
+ "start": 5469.7,
+ "end": 5469.8,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 10198
+ }
+ ],
+ "start": 5467.26
+ }
+ },
+ {
+ "key": "2bgns",
+ "text": "If you looked at the comments on the internal discussion the Georgia internally did too.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5469.8,
+ "end": 5470.1,
+ "confidence": 0,
+ "word": "if",
+ "punct": "If",
+ "index": 10199
+ },
+ {
+ "start": 5470.1,
+ "end": 5470.22,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10200
+ },
+ {
+ "start": 5470.22,
+ "end": 5470.42,
+ "confidence": 0,
+ "word": "looked",
+ "punct": "looked",
+ "index": 10201
+ },
+ {
+ "start": 5470.42,
+ "end": 5470.5,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 10202
+ },
+ {
+ "start": 5470.5,
+ "end": 5470.6,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10203
+ },
+ {
+ "start": 5470.6,
+ "end": 5470.9,
+ "confidence": 0,
+ "word": "comments",
+ "punct": "comments",
+ "index": 10204
+ },
+ {
+ "start": 5470.9,
+ "end": 5471,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 10205
+ },
+ {
+ "start": 5471,
+ "end": 5471.12,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10206
+ },
+ {
+ "start": 5471.12,
+ "end": 5471.44,
+ "confidence": 0,
+ "word": "internal",
+ "punct": "internal",
+ "index": 10207
+ },
+ {
+ "start": 5471.44,
+ "end": 5471.84,
+ "confidence": 0,
+ "word": "discussion",
+ "punct": "discussion",
+ "index": 10208
+ },
+ {
+ "start": 5471.84,
+ "end": 5472,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10209
+ },
+ {
+ "start": 5472,
+ "end": 5472.89,
+ "confidence": 0,
+ "word": "georgia",
+ "punct": "Georgia",
+ "index": 10210
+ },
+ {
+ "start": 5472.89,
+ "end": 5473.47,
+ "confidence": 0,
+ "word": "internally",
+ "punct": "internally",
+ "index": 10211
+ },
+ {
+ "start": 5473.47,
+ "end": 5473.67,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 10212
+ },
+ {
+ "start": 5473.67,
+ "end": 5473.91,
+ "confidence": 0,
+ "word": "too",
+ "punct": "too.",
+ "index": 10213
+ }
+ ],
+ "start": 5469.8
+ }
+ },
+ {
+ "key": "8p2vf",
+ "text": "That you did a four job as CEO communicating your displeasure with such thoughts.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5473.91,
+ "end": 5474.21,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 10214
+ },
+ {
+ "start": 5474.21,
+ "end": 5474.37,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10215
+ },
+ {
+ "start": 5474.37,
+ "end": 5474.53,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 10216
+ },
+ {
+ "start": 5474.53,
+ "end": 5474.67,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10217
+ },
+ {
+ "start": 5474.67,
+ "end": 5474.99,
+ "confidence": 0,
+ "word": "four",
+ "punct": "four",
+ "index": 10218
+ },
+ {
+ "start": 5474.99,
+ "end": 5475.27,
+ "confidence": 0,
+ "word": "job",
+ "punct": "job",
+ "index": 10219
+ },
+ {
+ "start": 5475.27,
+ "end": 5475.49,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 10220
+ },
+ {
+ "start": 5475.49,
+ "end": 5475.99,
+ "confidence": 0,
+ "word": "ceo",
+ "punct": "CEO",
+ "index": 10221
+ },
+ {
+ "start": 5475.99,
+ "end": 5476.79,
+ "confidence": 0,
+ "word": "communicating",
+ "punct": "communicating",
+ "index": 10222
+ },
+ {
+ "start": 5476.79,
+ "end": 5477.71,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 10223
+ },
+ {
+ "start": 5477.71,
+ "end": 5478.43,
+ "confidence": 0,
+ "word": "displeasure",
+ "punct": "displeasure",
+ "index": 10224
+ },
+ {
+ "start": 5478.43,
+ "end": 5478.61,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10225
+ },
+ {
+ "start": 5478.61,
+ "end": 5478.87,
+ "confidence": 0,
+ "word": "such",
+ "punct": "such",
+ "index": 10226
+ },
+ {
+ "start": 5478.87,
+ "end": 5479.29,
+ "confidence": 0,
+ "word": "thoughts",
+ "punct": "thoughts.",
+ "index": 10227
+ }
+ ],
+ "start": 5473.91
+ }
+ },
+ {
+ "key": "5fft3",
+ "text": "Because if he had understood where you're at he would never said it to begin with.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5479.29,
+ "end": 5480.13,
+ "confidence": 0,
+ "word": "because",
+ "punct": "Because",
+ "index": 10228
+ },
+ {
+ "start": 5480.13,
+ "end": 5480.31,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 10229
+ },
+ {
+ "start": 5480.31,
+ "end": 5480.45,
+ "confidence": 0,
+ "word": "he",
+ "punct": "he",
+ "index": 10230
+ },
+ {
+ "start": 5480.45,
+ "end": 5480.61,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 10231
+ },
+ {
+ "start": 5480.61,
+ "end": 5481.09,
+ "confidence": 0,
+ "word": "understood",
+ "punct": "understood",
+ "index": 10232
+ },
+ {
+ "start": 5481.09,
+ "end": 5482.13,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 10233
+ },
+ {
+ "start": 5482.13,
+ "end": 5482.39,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 10234
+ },
+ {
+ "start": 5482.39,
+ "end": 5482.57,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 10235
+ },
+ {
+ "start": 5482.57,
+ "end": 5482.69,
+ "confidence": 0,
+ "word": "he",
+ "punct": "he",
+ "index": 10236
+ },
+ {
+ "start": 5482.69,
+ "end": 5482.85,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 10237
+ },
+ {
+ "start": 5482.85,
+ "end": 5483.05,
+ "confidence": 0,
+ "word": "never",
+ "punct": "never",
+ "index": 10238
+ },
+ {
+ "start": 5483.05,
+ "end": 5483.23,
+ "confidence": 0,
+ "word": "said",
+ "punct": "said",
+ "index": 10239
+ },
+ {
+ "start": 5483.23,
+ "end": 5483.31,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 10240
+ },
+ {
+ "start": 5483.31,
+ "end": 5483.43,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10241
+ },
+ {
+ "start": 5483.43,
+ "end": 5483.71,
+ "confidence": 0,
+ "word": "begin",
+ "punct": "begin",
+ "index": 10242
+ },
+ {
+ "start": 5483.71,
+ "end": 5484.76,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with.",
+ "index": 10243
+ }
+ ],
+ "start": 5479.29
+ }
+ },
+ {
+ "key": "dd1s0",
+ "text": "Well, Senator, we try to run our company in a way where people can express different opinions internally.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5484.76,
+ "end": 5485.86,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "Well,",
+ "index": 10244
+ },
+ {
+ "start": 5485.86,
+ "end": 5486.3,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 10245
+ },
+ {
+ "start": 5486.3,
+ "end": 5487.02,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10246
+ },
+ {
+ "start": 5487.02,
+ "end": 5487.22,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 10247
+ },
+ {
+ "start": 5487.22,
+ "end": 5487.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10248
+ },
+ {
+ "start": 5487.32,
+ "end": 5487.52,
+ "confidence": 0,
+ "word": "run",
+ "punct": "run",
+ "index": 10249
+ },
+ {
+ "start": 5487.52,
+ "end": 5487.68,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 10250
+ },
+ {
+ "start": 5487.68,
+ "end": 5488.1,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 10251
+ },
+ {
+ "start": 5488.1,
+ "end": 5488.3,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10252
+ },
+ {
+ "start": 5488.3,
+ "end": 5488.38,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10253
+ },
+ {
+ "start": 5488.38,
+ "end": 5488.58,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 10254
+ },
+ {
+ "start": 5488.58,
+ "end": 5488.8,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 10255
+ },
+ {
+ "start": 5488.8,
+ "end": 5489.1,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 10256
+ },
+ {
+ "start": 5489.1,
+ "end": 5489.26,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 10257
+ },
+ {
+ "start": 5489.26,
+ "end": 5489.7,
+ "confidence": 0,
+ "word": "express",
+ "punct": "express",
+ "index": 10258
+ },
+ {
+ "start": 5489.7,
+ "end": 5490.04,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 10259
+ },
+ {
+ "start": 5490.04,
+ "end": 5490.44,
+ "confidence": 0,
+ "word": "opinions",
+ "punct": "opinions",
+ "index": 10260
+ },
+ {
+ "start": 5490.44,
+ "end": 5491,
+ "confidence": 0,
+ "word": "internally",
+ "punct": "internally.",
+ "index": 10261
+ }
+ ],
+ "start": 5484.76
+ }
+ },
+ {
+ "key": "3pp45",
+ "text": "Well, this is an opinion that really disturbs me.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5491,
+ "end": 5491.46,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "Well,",
+ "index": 10262
+ },
+ {
+ "start": 5491.46,
+ "end": 5491.64,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 10263
+ },
+ {
+ "start": 5491.64,
+ "end": 5491.82,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10264
+ },
+ {
+ "start": 5491.82,
+ "end": 5491.92,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 10265
+ },
+ {
+ "start": 5491.92,
+ "end": 5492.42,
+ "confidence": 0,
+ "word": "opinion",
+ "punct": "opinion",
+ "index": 10266
+ },
+ {
+ "start": 5492.42,
+ "end": 5492.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10267
+ },
+ {
+ "start": 5492.6,
+ "end": 5492.9,
+ "confidence": 0,
+ "word": "really",
+ "punct": "really",
+ "index": 10268
+ },
+ {
+ "start": 5492.9,
+ "end": 5493.4,
+ "confidence": 0,
+ "word": "disturbs",
+ "punct": "disturbs",
+ "index": 10269
+ },
+ {
+ "start": 5493.4,
+ "end": 5493.6,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me.",
+ "index": 10270
+ }
+ ],
+ "start": 5491
+ }
+ },
+ {
+ "key": "cnrfg",
+ "text": "And if somebody work for me, that said this I'd fire who's your biggest competitor, Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5493.6,
+ "end": 5494.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 10271
+ },
+ {
+ "start": 5494.54,
+ "end": 5494.7,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 10272
+ },
+ {
+ "start": 5494.7,
+ "end": 5495.16,
+ "confidence": 0,
+ "word": "somebody",
+ "punct": "somebody",
+ "index": 10273
+ },
+ {
+ "start": 5495.16,
+ "end": 5495.54,
+ "confidence": 0,
+ "word": "work",
+ "punct": "work",
+ "index": 10274
+ },
+ {
+ "start": 5495.54,
+ "end": 5495.72,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 10275
+ },
+ {
+ "start": 5495.72,
+ "end": 5495.92,
+ "confidence": 0,
+ "word": "me,",
+ "punct": "me,",
+ "index": 10276
+ },
+ {
+ "start": 5495.92,
+ "end": 5496.16,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10277
+ },
+ {
+ "start": 5496.16,
+ "end": 5496.42,
+ "confidence": 0,
+ "word": "said",
+ "punct": "said",
+ "index": 10278
+ },
+ {
+ "start": 5496.42,
+ "end": 5496.64,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 10279
+ },
+ {
+ "start": 5496.64,
+ "end": 5496.94,
+ "confidence": 0,
+ "word": "i'd",
+ "punct": "I'd",
+ "index": 10280
+ },
+ {
+ "start": 5496.94,
+ "end": 5498.04,
+ "confidence": 0,
+ "word": "fire",
+ "punct": "fire",
+ "index": 10281
+ },
+ {
+ "start": 5498.04,
+ "end": 5498.96,
+ "confidence": 0,
+ "word": "who's",
+ "punct": "who's",
+ "index": 10282
+ },
+ {
+ "start": 5498.96,
+ "end": 5499.12,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 10283
+ },
+ {
+ "start": 5499.12,
+ "end": 5499.42,
+ "confidence": 0,
+ "word": "biggest",
+ "punct": "biggest",
+ "index": 10284
+ },
+ {
+ "start": 5499.42,
+ "end": 5500.82,
+ "confidence": 0,
+ "word": "competitor,",
+ "punct": "competitor,",
+ "index": 10285
+ },
+ {
+ "start": 5500.82,
+ "end": 5502,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 10286
+ }
+ ],
+ "start": 5493.6
+ }
+ },
+ {
+ "key": "7nell",
+ "text": "We have a lot of competitors who's your biggest I think the categories you want just one I'm not sure I can give one.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5502,
+ "end": 5502.1,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 10287
+ },
+ {
+ "start": 5502.1,
+ "end": 5502.24,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 10288
+ },
+ {
+ "start": 5502.24,
+ "end": 5502.28,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10289
+ },
+ {
+ "start": 5502.28,
+ "end": 5502.42,
+ "confidence": 0,
+ "word": "lot",
+ "punct": "lot",
+ "index": 10290
+ },
+ {
+ "start": 5502.42,
+ "end": 5502.52,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10291
+ },
+ {
+ "start": 5502.52,
+ "end": 5503.04,
+ "confidence": 0,
+ "word": "competitors",
+ "punct": "competitors",
+ "index": 10292
+ },
+ {
+ "start": 5503.04,
+ "end": 5503.58,
+ "confidence": 0,
+ "word": "who's",
+ "punct": "who's",
+ "index": 10293
+ },
+ {
+ "start": 5503.58,
+ "end": 5503.74,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 10294
+ },
+ {
+ "start": 5503.74,
+ "end": 5504.08,
+ "confidence": 0,
+ "word": "biggest",
+ "punct": "biggest",
+ "index": 10295
+ },
+ {
+ "start": 5504.08,
+ "end": 5505.66,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10296
+ },
+ {
+ "start": 5505.66,
+ "end": 5505.9,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10297
+ },
+ {
+ "start": 5505.9,
+ "end": 5506.62,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10298
+ },
+ {
+ "start": 5506.62,
+ "end": 5507.16,
+ "confidence": 0,
+ "word": "categories",
+ "punct": "categories",
+ "index": 10299
+ },
+ {
+ "start": 5507.16,
+ "end": 5508,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10300
+ },
+ {
+ "start": 5508,
+ "end": 5508.14,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 10301
+ },
+ {
+ "start": 5508.14,
+ "end": 5508.28,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 10302
+ },
+ {
+ "start": 5508.28,
+ "end": 5508.5,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 10303
+ },
+ {
+ "start": 5508.5,
+ "end": 5508.78,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 10304
+ },
+ {
+ "start": 5508.78,
+ "end": 5508.88,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 10305
+ },
+ {
+ "start": 5508.88,
+ "end": 5509.04,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 10306
+ },
+ {
+ "start": 5509.04,
+ "end": 5509.08,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10307
+ },
+ {
+ "start": 5509.08,
+ "end": 5509.2,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 10308
+ },
+ {
+ "start": 5509.2,
+ "end": 5509.34,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 10309
+ },
+ {
+ "start": 5509.34,
+ "end": 5509.5,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one.",
+ "index": 10310
+ }
+ ],
+ "start": 5502
+ }
+ },
+ {
+ "key": "a8i5a",
+ "text": "But can I give a bunch here are three categories that I would focus on one are the other tech platforms.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5509.5,
+ "end": 5509.62,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 10311
+ },
+ {
+ "start": 5509.62,
+ "end": 5509.76,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 10312
+ },
+ {
+ "start": 5509.76,
+ "end": 5509.84,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10313
+ },
+ {
+ "start": 5509.84,
+ "end": 5510,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 10314
+ },
+ {
+ "start": 5510,
+ "end": 5510.58,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10315
+ },
+ {
+ "start": 5510.58,
+ "end": 5512.41,
+ "confidence": 0,
+ "word": "bunch",
+ "punct": "bunch",
+ "index": 10316
+ },
+ {
+ "start": 5512.41,
+ "end": 5512.51,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 10317
+ },
+ {
+ "start": 5512.51,
+ "end": 5512.63,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 10318
+ },
+ {
+ "start": 5512.63,
+ "end": 5512.83,
+ "confidence": 0,
+ "word": "three",
+ "punct": "three",
+ "index": 10319
+ },
+ {
+ "start": 5512.83,
+ "end": 5513.37,
+ "confidence": 0,
+ "word": "categories",
+ "punct": "categories",
+ "index": 10320
+ },
+ {
+ "start": 5513.37,
+ "end": 5513.55,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10321
+ },
+ {
+ "start": 5513.55,
+ "end": 5513.63,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10322
+ },
+ {
+ "start": 5513.63,
+ "end": 5513.85,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 10323
+ },
+ {
+ "start": 5513.85,
+ "end": 5514.47,
+ "confidence": 0,
+ "word": "focus",
+ "punct": "focus",
+ "index": 10324
+ },
+ {
+ "start": 5514.47,
+ "end": 5514.67,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 10325
+ },
+ {
+ "start": 5514.67,
+ "end": 5515.35,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 10326
+ },
+ {
+ "start": 5515.35,
+ "end": 5515.77,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 10327
+ },
+ {
+ "start": 5515.77,
+ "end": 5515.91,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10328
+ },
+ {
+ "start": 5515.91,
+ "end": 5516.15,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 10329
+ },
+ {
+ "start": 5516.15,
+ "end": 5516.35,
+ "confidence": 0,
+ "word": "tech",
+ "punct": "tech",
+ "index": 10330
+ },
+ {
+ "start": 5516.35,
+ "end": 5516.89,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms.",
+ "index": 10331
+ }
+ ],
+ "start": 5509.5
+ }
+ },
+ {
+ "key": "cfbg6",
+ "text": "So Google, Apple, Amazon Microsoft.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5516.89,
+ "end": 5517.15,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 10332
+ },
+ {
+ "start": 5517.15,
+ "end": 5517.89,
+ "confidence": 0,
+ "word": "google,",
+ "punct": "Google,",
+ "index": 10333
+ },
+ {
+ "start": 5517.89,
+ "end": 5518.37,
+ "confidence": 0,
+ "word": "apple,",
+ "punct": "Apple,",
+ "index": 10334
+ },
+ {
+ "start": 5518.37,
+ "end": 5518.95,
+ "confidence": 0,
+ "word": "amazon",
+ "punct": "Amazon",
+ "index": 10335
+ },
+ {
+ "start": 5518.95,
+ "end": 5519.53,
+ "confidence": 0,
+ "word": "microsoft",
+ "punct": "Microsoft.",
+ "index": 10336
+ }
+ ],
+ "start": 5516.89
+ }
+ },
+ {
+ "key": "9ismu",
+ "text": "We overlap with them in different.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5519.53,
+ "end": 5519.69,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 10337
+ },
+ {
+ "start": 5519.69,
+ "end": 5520.05,
+ "confidence": 0,
+ "word": "overlap",
+ "punct": "overlap",
+ "index": 10338
+ },
+ {
+ "start": 5520.05,
+ "end": 5520.19,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10339
+ },
+ {
+ "start": 5520.19,
+ "end": 5520.31,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 10340
+ },
+ {
+ "start": 5520.31,
+ "end": 5520.39,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10341
+ },
+ {
+ "start": 5520.39,
+ "end": 5520.87,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different.",
+ "index": 10342
+ }
+ ],
+ "start": 5519.53
+ }
+ },
+ {
+ "key": "78d3h",
+ "text": "They do.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5520.87,
+ "end": 5521.07,
+ "confidence": 0,
+ "word": "they",
+ "punct": "They",
+ "index": 10343
+ },
+ {
+ "start": 5521.07,
+ "end": 5521.39,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do.",
+ "index": 10344
+ }
+ ],
+ "start": 5520.87
+ }
+ },
+ {
+ "key": "1ogbp",
+ "text": "Do they provide the same service?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5521.39,
+ "end": 5521.51,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 10345
+ },
+ {
+ "start": 5521.51,
+ "end": 5521.69,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 10346
+ },
+ {
+ "start": 5521.69,
+ "end": 5521.99,
+ "confidence": 0,
+ "word": "provide",
+ "punct": "provide",
+ "index": 10347
+ },
+ {
+ "start": 5521.99,
+ "end": 5522.13,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10348
+ },
+ {
+ "start": 5522.13,
+ "end": 5522.35,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 10349
+ },
+ {
+ "start": 5522.35,
+ "end": 5522.67,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service?",
+ "index": 10350
+ }
+ ],
+ "start": 5521.39
+ }
+ },
+ {
+ "key": "de6dl",
+ "text": "She provide in different ways, different in this way, if I buy it forward and it doesn't work well.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5522.67,
+ "end": 5522.83,
+ "confidence": 0,
+ "word": "she",
+ "punct": "She",
+ "index": 10351
+ },
+ {
+ "start": 5522.83,
+ "end": 5524,
+ "confidence": 0,
+ "word": "provide",
+ "punct": "provide",
+ "index": 10352
+ },
+ {
+ "start": 5524,
+ "end": 5524.92,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10353
+ },
+ {
+ "start": 5524.92,
+ "end": 5525.32,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 10354
+ },
+ {
+ "start": 5525.32,
+ "end": 5525.64,
+ "confidence": 0,
+ "word": "ways,",
+ "punct": "ways,",
+ "index": 10355
+ },
+ {
+ "start": 5525.64,
+ "end": 5526.38,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 10356
+ },
+ {
+ "start": 5526.38,
+ "end": 5526.98,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10357
+ },
+ {
+ "start": 5526.98,
+ "end": 5527.18,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 10358
+ },
+ {
+ "start": 5527.18,
+ "end": 5527.44,
+ "confidence": 0,
+ "word": "way,",
+ "punct": "way,",
+ "index": 10359
+ },
+ {
+ "start": 5527.44,
+ "end": 5527.56,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 10360
+ },
+ {
+ "start": 5527.56,
+ "end": 5527.76,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10361
+ },
+ {
+ "start": 5527.76,
+ "end": 5527.96,
+ "confidence": 0,
+ "word": "buy",
+ "punct": "buy",
+ "index": 10362
+ },
+ {
+ "start": 5527.96,
+ "end": 5528.06,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 10363
+ },
+ {
+ "start": 5528.06,
+ "end": 5528.54,
+ "confidence": 0,
+ "word": "forward",
+ "punct": "forward",
+ "index": 10364
+ },
+ {
+ "start": 5528.54,
+ "end": 5528.76,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 10365
+ },
+ {
+ "start": 5528.76,
+ "end": 5528.92,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 10366
+ },
+ {
+ "start": 5528.92,
+ "end": 5529.26,
+ "confidence": 0,
+ "word": "doesn't",
+ "punct": "doesn't",
+ "index": 10367
+ },
+ {
+ "start": 5529.26,
+ "end": 5529.62,
+ "confidence": 0,
+ "word": "work",
+ "punct": "work",
+ "index": 10368
+ },
+ {
+ "start": 5529.62,
+ "end": 5529.92,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well.",
+ "index": 10369
+ }
+ ],
+ "start": 5522.67
+ }
+ },
+ {
+ "key": "49mhn",
+ "text": "And I don't like it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5529.92,
+ "end": 5530.08,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 10370
+ },
+ {
+ "start": 5530.08,
+ "end": 5530.18,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10371
+ },
+ {
+ "start": 5530.18,
+ "end": 5530.4,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 10372
+ },
+ {
+ "start": 5530.4,
+ "end": 5530.64,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 10373
+ },
+ {
+ "start": 5530.64,
+ "end": 5530.78,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 10374
+ }
+ ],
+ "start": 5529.92
+ }
+ },
+ {
+ "key": "ej3ju",
+ "text": "I can buy a shitty.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5530.78,
+ "end": 5530.94,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10375
+ },
+ {
+ "start": 5530.94,
+ "end": 5531.1,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 10376
+ },
+ {
+ "start": 5531.1,
+ "end": 5531.3,
+ "confidence": 0,
+ "word": "buy",
+ "punct": "buy",
+ "index": 10377
+ },
+ {
+ "start": 5531.3,
+ "end": 5531.36,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10378
+ },
+ {
+ "start": 5531.36,
+ "end": 5532.5,
+ "confidence": 0,
+ "word": "shitty",
+ "punct": "shitty.",
+ "index": 10379
+ }
+ ],
+ "start": 5530.78
+ }
+ },
+ {
+ "key": "3sg75",
+ "text": "If I'm upset with Facebook what's the equivalent product that I can go sign up for.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5532.5,
+ "end": 5532.64,
+ "confidence": 0,
+ "word": "if",
+ "punct": "If",
+ "index": 10380
+ },
+ {
+ "start": 5532.64,
+ "end": 5532.82,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 10381
+ },
+ {
+ "start": 5532.82,
+ "end": 5533.26,
+ "confidence": 0,
+ "word": "upset",
+ "punct": "upset",
+ "index": 10382
+ },
+ {
+ "start": 5533.26,
+ "end": 5533.48,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10383
+ },
+ {
+ "start": 5533.48,
+ "end": 5534.12,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 10384
+ },
+ {
+ "start": 5534.12,
+ "end": 5534.84,
+ "confidence": 0,
+ "word": "what's",
+ "punct": "what's",
+ "index": 10385
+ },
+ {
+ "start": 5534.84,
+ "end": 5535.02,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10386
+ },
+ {
+ "start": 5535.02,
+ "end": 5535.58,
+ "confidence": 0,
+ "word": "equivalent",
+ "punct": "equivalent",
+ "index": 10387
+ },
+ {
+ "start": 5535.58,
+ "end": 5535.98,
+ "confidence": 0,
+ "word": "product",
+ "punct": "product",
+ "index": 10388
+ },
+ {
+ "start": 5535.98,
+ "end": 5536.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10389
+ },
+ {
+ "start": 5536.18,
+ "end": 5536.28,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10390
+ },
+ {
+ "start": 5536.28,
+ "end": 5536.48,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 10391
+ },
+ {
+ "start": 5536.48,
+ "end": 5536.72,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 10392
+ },
+ {
+ "start": 5536.72,
+ "end": 5537.66,
+ "confidence": 0,
+ "word": "sign",
+ "punct": "sign",
+ "index": 10393
+ },
+ {
+ "start": 5537.66,
+ "end": 5537.78,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 10394
+ },
+ {
+ "start": 5537.78,
+ "end": 5538.74,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for.",
+ "index": 10395
+ }
+ ],
+ "start": 5532.5
+ }
+ },
+ {
+ "key": "4vsdd",
+ "text": "Well, the the second category that I was going to talk about, er, not song that categories I'm talking about is a real competition.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5538.74,
+ "end": 5539.68,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "Well,",
+ "index": 10396
+ },
+ {
+ "start": 5539.68,
+ "end": 5539.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10397
+ },
+ {
+ "start": 5539.92,
+ "end": 5540.16,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10398
+ },
+ {
+ "start": 5540.16,
+ "end": 5540.46,
+ "confidence": 0,
+ "word": "second",
+ "punct": "second",
+ "index": 10399
+ },
+ {
+ "start": 5540.46,
+ "end": 5540.88,
+ "confidence": 0,
+ "word": "category",
+ "punct": "category",
+ "index": 10400
+ },
+ {
+ "start": 5540.88,
+ "end": 5541.02,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10401
+ },
+ {
+ "start": 5541.02,
+ "end": 5541.08,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10402
+ },
+ {
+ "start": 5541.08,
+ "end": 5541.2,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 10403
+ },
+ {
+ "start": 5541.2,
+ "end": 5541.34,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 10404
+ },
+ {
+ "start": 5541.34,
+ "end": 5541.4,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10405
+ },
+ {
+ "start": 5541.4,
+ "end": 5541.56,
+ "confidence": 0,
+ "word": "talk",
+ "punct": "talk",
+ "index": 10406
+ },
+ {
+ "start": 5541.56,
+ "end": 5541.72,
+ "confidence": 0,
+ "word": "about,",
+ "punct": "about,",
+ "index": 10407
+ },
+ {
+ "start": 5541.72,
+ "end": 5541.88,
+ "confidence": 0,
+ "word": "er,",
+ "punct": "er,",
+ "index": 10408
+ },
+ {
+ "start": 5541.88,
+ "end": 5542.12,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 10409
+ },
+ {
+ "start": 5542.12,
+ "end": 5542.32,
+ "confidence": 0,
+ "word": "song",
+ "punct": "song",
+ "index": 10410
+ },
+ {
+ "start": 5542.32,
+ "end": 5542.46,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10411
+ },
+ {
+ "start": 5542.46,
+ "end": 5542.92,
+ "confidence": 0,
+ "word": "categories",
+ "punct": "categories",
+ "index": 10412
+ },
+ {
+ "start": 5542.92,
+ "end": 5543.1,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 10413
+ },
+ {
+ "start": 5543.1,
+ "end": 5543.36,
+ "confidence": 0,
+ "word": "talking",
+ "punct": "talking",
+ "index": 10414
+ },
+ {
+ "start": 5543.36,
+ "end": 5543.6,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 10415
+ },
+ {
+ "start": 5543.6,
+ "end": 5543.84,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10416
+ },
+ {
+ "start": 5543.84,
+ "end": 5543.98,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10417
+ },
+ {
+ "start": 5543.98,
+ "end": 5544.26,
+ "confidence": 0,
+ "word": "real",
+ "punct": "real",
+ "index": 10418
+ },
+ {
+ "start": 5544.26,
+ "end": 5544.94,
+ "confidence": 0,
+ "word": "competition",
+ "punct": "competition.",
+ "index": 10419
+ }
+ ],
+ "start": 5538.74
+ }
+ },
+ {
+ "key": "cbacl",
+ "text": "You face because car companies face a lot of competition.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5544.94,
+ "end": 5545.16,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 10420
+ },
+ {
+ "start": 5545.16,
+ "end": 5545.46,
+ "confidence": 0,
+ "word": "face",
+ "punct": "face",
+ "index": 10421
+ },
+ {
+ "start": 5545.46,
+ "end": 5546.2,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 10422
+ },
+ {
+ "start": 5546.2,
+ "end": 5546.52,
+ "confidence": 0,
+ "word": "car",
+ "punct": "car",
+ "index": 10423
+ },
+ {
+ "start": 5546.52,
+ "end": 5546.94,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies",
+ "index": 10424
+ },
+ {
+ "start": 5546.94,
+ "end": 5547.18,
+ "confidence": 0,
+ "word": "face",
+ "punct": "face",
+ "index": 10425
+ },
+ {
+ "start": 5547.18,
+ "end": 5547.26,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10426
+ },
+ {
+ "start": 5547.26,
+ "end": 5547.44,
+ "confidence": 0,
+ "word": "lot",
+ "punct": "lot",
+ "index": 10427
+ },
+ {
+ "start": 5547.44,
+ "end": 5547.52,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10428
+ },
+ {
+ "start": 5547.52,
+ "end": 5548.1,
+ "confidence": 0,
+ "word": "competition",
+ "punct": "competition.",
+ "index": 10429
+ }
+ ],
+ "start": 5544.94
+ }
+ },
+ {
+ "key": "858p6",
+ "text": "If they make a defective car, it gets out in the world people stop buying that car they buy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5548.1,
+ "end": 5548.28,
+ "confidence": 0,
+ "word": "if",
+ "punct": "If",
+ "index": 10430
+ },
+ {
+ "start": 5548.28,
+ "end": 5548.48,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 10431
+ },
+ {
+ "start": 5548.48,
+ "end": 5548.64,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 10432
+ },
+ {
+ "start": 5548.64,
+ "end": 5548.72,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10433
+ },
+ {
+ "start": 5548.72,
+ "end": 5549.2,
+ "confidence": 0,
+ "word": "defective",
+ "punct": "defective",
+ "index": 10434
+ },
+ {
+ "start": 5549.2,
+ "end": 5549.98,
+ "confidence": 0,
+ "word": "car,",
+ "punct": "car,",
+ "index": 10435
+ },
+ {
+ "start": 5549.98,
+ "end": 5550.1,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 10436
+ },
+ {
+ "start": 5550.1,
+ "end": 5550.3,
+ "confidence": 0,
+ "word": "gets",
+ "punct": "gets",
+ "index": 10437
+ },
+ {
+ "start": 5550.3,
+ "end": 5550.52,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 10438
+ },
+ {
+ "start": 5550.52,
+ "end": 5550.66,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10439
+ },
+ {
+ "start": 5550.66,
+ "end": 5550.76,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10440
+ },
+ {
+ "start": 5550.76,
+ "end": 5551.08,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 10441
+ },
+ {
+ "start": 5551.08,
+ "end": 5551.42,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 10442
+ },
+ {
+ "start": 5551.42,
+ "end": 5551.68,
+ "confidence": 0,
+ "word": "stop",
+ "punct": "stop",
+ "index": 10443
+ },
+ {
+ "start": 5551.68,
+ "end": 5551.92,
+ "confidence": 0,
+ "word": "buying",
+ "punct": "buying",
+ "index": 10444
+ },
+ {
+ "start": 5551.92,
+ "end": 5552.1,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10445
+ },
+ {
+ "start": 5552.1,
+ "end": 5552.34,
+ "confidence": 0,
+ "word": "car",
+ "punct": "car",
+ "index": 10446
+ },
+ {
+ "start": 5552.34,
+ "end": 5552.58,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 10447
+ },
+ {
+ "start": 5552.58,
+ "end": 5552.72,
+ "confidence": 0,
+ "word": "buy",
+ "punct": "buy.",
+ "index": 10448
+ }
+ ],
+ "start": 5548.1
+ }
+ },
+ {
+ "key": "bo6lt",
+ "text": "Another one is in an alternative to Facebook in the private sector.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5552.72,
+ "end": 5553.06,
+ "confidence": 0,
+ "word": "another",
+ "punct": "Another",
+ "index": 10449
+ },
+ {
+ "start": 5553.06,
+ "end": 5553.2,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 10450
+ },
+ {
+ "start": 5553.2,
+ "end": 5553.64,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10451
+ },
+ {
+ "start": 5553.64,
+ "end": 5553.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10452
+ },
+ {
+ "start": 5553.78,
+ "end": 5553.86,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 10453
+ },
+ {
+ "start": 5553.86,
+ "end": 5554.72,
+ "confidence": 0,
+ "word": "alternative",
+ "punct": "alternative",
+ "index": 10454
+ },
+ {
+ "start": 5554.72,
+ "end": 5554.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10455
+ },
+ {
+ "start": 5554.88,
+ "end": 5555.44,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 10456
+ },
+ {
+ "start": 5555.44,
+ "end": 5555.58,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10457
+ },
+ {
+ "start": 5555.58,
+ "end": 5555.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10458
+ },
+ {
+ "start": 5555.7,
+ "end": 5556.08,
+ "confidence": 0,
+ "word": "private",
+ "punct": "private",
+ "index": 10459
+ },
+ {
+ "start": 5556.08,
+ "end": 5557.06,
+ "confidence": 0,
+ "word": "sector",
+ "punct": "sector.",
+ "index": 10460
+ }
+ ],
+ "start": 5552.72
+ }
+ },
+ {
+ "key": "1dpm0",
+ "text": "Yes, Senator, the average American uses eight different apps, okay, communicate with their friends and stay in touch with people, ranging from Technic apps to email to serve as you provide.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5557.06,
+ "end": 5557.82,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 10461
+ },
+ {
+ "start": 5557.82,
+ "end": 5558.24,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 10462
+ },
+ {
+ "start": 5558.24,
+ "end": 5558.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10463
+ },
+ {
+ "start": 5558.44,
+ "end": 5558.78,
+ "confidence": 0,
+ "word": "average",
+ "punct": "average",
+ "index": 10464
+ },
+ {
+ "start": 5558.78,
+ "end": 5559.24,
+ "confidence": 0,
+ "word": "american",
+ "punct": "American",
+ "index": 10465
+ },
+ {
+ "start": 5559.24,
+ "end": 5559.58,
+ "confidence": 0,
+ "word": "uses",
+ "punct": "uses",
+ "index": 10466
+ },
+ {
+ "start": 5559.58,
+ "end": 5559.86,
+ "confidence": 0,
+ "word": "eight",
+ "punct": "eight",
+ "index": 10467
+ },
+ {
+ "start": 5559.86,
+ "end": 5560.26,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 10468
+ },
+ {
+ "start": 5560.26,
+ "end": 5560.58,
+ "confidence": 0,
+ "word": "apps,",
+ "punct": "apps,",
+ "index": 10469
+ },
+ {
+ "start": 5560.58,
+ "end": 5561.22,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "okay,",
+ "index": 10470
+ },
+ {
+ "start": 5561.22,
+ "end": 5561.72,
+ "confidence": 0,
+ "word": "communicate",
+ "punct": "communicate",
+ "index": 10471
+ },
+ {
+ "start": 5561.72,
+ "end": 5561.88,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10472
+ },
+ {
+ "start": 5561.88,
+ "end": 5562.06,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 10473
+ },
+ {
+ "start": 5562.06,
+ "end": 5562.42,
+ "confidence": 0,
+ "word": "friends",
+ "punct": "friends",
+ "index": 10474
+ },
+ {
+ "start": 5562.42,
+ "end": 5562.58,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 10475
+ },
+ {
+ "start": 5562.58,
+ "end": 5562.82,
+ "confidence": 0,
+ "word": "stay",
+ "punct": "stay",
+ "index": 10476
+ },
+ {
+ "start": 5562.82,
+ "end": 5562.9,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10477
+ },
+ {
+ "start": 5562.9,
+ "end": 5563.12,
+ "confidence": 0,
+ "word": "touch",
+ "punct": "touch",
+ "index": 10478
+ },
+ {
+ "start": 5563.12,
+ "end": 5563.3,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10479
+ },
+ {
+ "start": 5563.3,
+ "end": 5563.58,
+ "confidence": 0,
+ "word": "people,",
+ "punct": "people,",
+ "index": 10480
+ },
+ {
+ "start": 5563.58,
+ "end": 5564.34,
+ "confidence": 0,
+ "word": "ranging",
+ "punct": "ranging",
+ "index": 10481
+ },
+ {
+ "start": 5564.34,
+ "end": 5564.52,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 10482
+ },
+ {
+ "start": 5564.52,
+ "end": 5565.06,
+ "confidence": 0,
+ "word": "technic",
+ "punct": "Technic",
+ "index": 10483
+ },
+ {
+ "start": 5565.06,
+ "end": 5565.28,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 10484
+ },
+ {
+ "start": 5565.28,
+ "end": 5565.46,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10485
+ },
+ {
+ "start": 5565.46,
+ "end": 5565.84,
+ "confidence": 0,
+ "word": "email",
+ "punct": "email",
+ "index": 10486
+ },
+ {
+ "start": 5565.84,
+ "end": 5566.24,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10487
+ },
+ {
+ "start": 5566.24,
+ "end": 5566.46,
+ "confidence": 0,
+ "word": "serve",
+ "punct": "serve",
+ "index": 10488
+ },
+ {
+ "start": 5566.46,
+ "end": 5566.58,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 10489
+ },
+ {
+ "start": 5566.58,
+ "end": 5566.76,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10490
+ },
+ {
+ "start": 5566.76,
+ "end": 5567.2,
+ "confidence": 0,
+ "word": "provide",
+ "punct": "provide.",
+ "index": 10491
+ }
+ ],
+ "start": 5557.06
+ }
+ },
+ {
+ "key": "90mje",
+ "text": "Well, we provide a number of difference is Twitter the same as what you do.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5567.2,
+ "end": 5567.76,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "Well,",
+ "index": 10492
+ },
+ {
+ "start": 5567.76,
+ "end": 5567.94,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10493
+ },
+ {
+ "start": 5567.94,
+ "end": 5568.22,
+ "confidence": 0,
+ "word": "provide",
+ "punct": "provide",
+ "index": 10494
+ },
+ {
+ "start": 5568.22,
+ "end": 5568.28,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10495
+ },
+ {
+ "start": 5568.28,
+ "end": 5568.48,
+ "confidence": 0,
+ "word": "number",
+ "punct": "number",
+ "index": 10496
+ },
+ {
+ "start": 5568.48,
+ "end": 5568.56,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10497
+ },
+ {
+ "start": 5568.56,
+ "end": 5568.86,
+ "confidence": 0,
+ "word": "difference",
+ "punct": "difference",
+ "index": 10498
+ },
+ {
+ "start": 5568.86,
+ "end": 5569.14,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10499
+ },
+ {
+ "start": 5569.14,
+ "end": 5569.52,
+ "confidence": 0,
+ "word": "twitter",
+ "punct": "Twitter",
+ "index": 10500
+ },
+ {
+ "start": 5569.52,
+ "end": 5569.78,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10501
+ },
+ {
+ "start": 5569.78,
+ "end": 5570.04,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 10502
+ },
+ {
+ "start": 5570.04,
+ "end": 5570.2,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 10503
+ },
+ {
+ "start": 5570.2,
+ "end": 5570.38,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 10504
+ },
+ {
+ "start": 5570.38,
+ "end": 5570.52,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10505
+ },
+ {
+ "start": 5570.52,
+ "end": 5570.7,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do.",
+ "index": 10506
+ }
+ ],
+ "start": 5567.2
+ }
+ },
+ {
+ "key": "k3ll",
+ "text": "It overlaps of the course.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5570.7,
+ "end": 5571.28,
+ "confidence": 0,
+ "word": "it",
+ "punct": "It",
+ "index": 10507
+ },
+ {
+ "start": 5571.28,
+ "end": 5571.84,
+ "confidence": 0,
+ "word": "overlaps",
+ "punct": "overlaps",
+ "index": 10508
+ },
+ {
+ "start": 5571.84,
+ "end": 5571.96,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10509
+ },
+ {
+ "start": 5571.96,
+ "end": 5572.16,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10510
+ },
+ {
+ "start": 5572.16,
+ "end": 5572.36,
+ "confidence": 0,
+ "word": "course",
+ "punct": "course.",
+ "index": 10511
+ }
+ ],
+ "start": 5570.7
+ }
+ },
+ {
+ "key": "5o2f",
+ "text": "You don't you have a monopoly.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5572.36,
+ "end": 5572.46,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 10512
+ },
+ {
+ "start": 5572.46,
+ "end": 5572.92,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 10513
+ },
+ {
+ "start": 5572.92,
+ "end": 5573.06,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10514
+ },
+ {
+ "start": 5573.06,
+ "end": 5573.2,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 10515
+ },
+ {
+ "start": 5573.2,
+ "end": 5573.26,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10516
+ },
+ {
+ "start": 5573.26,
+ "end": 5574.8,
+ "confidence": 0,
+ "word": "monopoly",
+ "punct": "monopoly.",
+ "index": 10517
+ }
+ ],
+ "start": 5572.36
+ }
+ },
+ {
+ "key": "b9pb1",
+ "text": "It certainly doesn't feel like that to me.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5574.8,
+ "end": 5576.06,
+ "confidence": 0,
+ "word": "it",
+ "punct": "It",
+ "index": 10518
+ },
+ {
+ "start": 5576.06,
+ "end": 5576.34,
+ "confidence": 0,
+ "word": "certainly",
+ "punct": "certainly",
+ "index": 10519
+ },
+ {
+ "start": 5576.34,
+ "end": 5576.6,
+ "confidence": 0,
+ "word": "doesn't",
+ "punct": "doesn't",
+ "index": 10520
+ },
+ {
+ "start": 5576.6,
+ "end": 5576.76,
+ "confidence": 0,
+ "word": "feel",
+ "punct": "feel",
+ "index": 10521
+ },
+ {
+ "start": 5576.76,
+ "end": 5576.9,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 10522
+ },
+ {
+ "start": 5576.9,
+ "end": 5577.06,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10523
+ },
+ {
+ "start": 5577.06,
+ "end": 5577.18,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10524
+ },
+ {
+ "start": 5577.18,
+ "end": 5577.4,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me.",
+ "index": 10525
+ }
+ ],
+ "start": 5574.8
+ }
+ },
+ {
+ "key": "e8v26",
+ "text": "Okay, so it doesn't Instagram.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5577.4,
+ "end": 5579.28,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "Okay,",
+ "index": 10526
+ },
+ {
+ "start": 5579.28,
+ "end": 5580.64,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 10527
+ },
+ {
+ "start": 5580.64,
+ "end": 5580.8,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 10528
+ },
+ {
+ "start": 5580.8,
+ "end": 5583.74,
+ "confidence": 0,
+ "word": "doesn't",
+ "punct": "doesn't",
+ "index": 10529
+ },
+ {
+ "start": 5583.74,
+ "end": 5584.78,
+ "confidence": 0,
+ "word": "instagram",
+ "punct": "Instagram.",
+ "index": 10530
+ }
+ ],
+ "start": 5577.4
+ }
+ },
+ {
+ "key": "b6ci1",
+ "text": "You bought an Instagram hear.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5584.78,
+ "end": 5584.96,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 10531
+ },
+ {
+ "start": 5584.96,
+ "end": 5585.16,
+ "confidence": 0,
+ "word": "bought",
+ "punct": "bought",
+ "index": 10532
+ },
+ {
+ "start": 5585.16,
+ "end": 5585.22,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 10533
+ },
+ {
+ "start": 5585.22,
+ "end": 5585.68,
+ "confidence": 0,
+ "word": "instagram",
+ "punct": "Instagram",
+ "index": 10534
+ },
+ {
+ "start": 5585.68,
+ "end": 5585.84,
+ "confidence": 0,
+ "word": "hear",
+ "punct": "hear.",
+ "index": 10535
+ }
+ ],
+ "start": 5584.78
+ }
+ },
+ {
+ "key": "edld3",
+ "text": "Did you buy Instagram because they were very talented app developers who are making good use of our platform and understood our values as a good bus decision.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5585.84,
+ "end": 5586,
+ "confidence": 0,
+ "word": "did",
+ "punct": "Did",
+ "index": 10536
+ },
+ {
+ "start": 5586,
+ "end": 5586.1,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10537
+ },
+ {
+ "start": 5586.1,
+ "end": 5586.26,
+ "confidence": 0,
+ "word": "buy",
+ "punct": "buy",
+ "index": 10538
+ },
+ {
+ "start": 5586.26,
+ "end": 5587.34,
+ "confidence": 0,
+ "word": "instagram",
+ "punct": "Instagram",
+ "index": 10539
+ },
+ {
+ "start": 5587.34,
+ "end": 5588.34,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 10540
+ },
+ {
+ "start": 5588.34,
+ "end": 5588.78,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 10541
+ },
+ {
+ "start": 5588.78,
+ "end": 5589.82,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 10542
+ },
+ {
+ "start": 5589.82,
+ "end": 5590.08,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 10543
+ },
+ {
+ "start": 5590.08,
+ "end": 5590.52,
+ "confidence": 0,
+ "word": "talented",
+ "punct": "talented",
+ "index": 10544
+ },
+ {
+ "start": 5590.52,
+ "end": 5591.04,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 10545
+ },
+ {
+ "start": 5591.04,
+ "end": 5591.58,
+ "confidence": 0,
+ "word": "developers",
+ "punct": "developers",
+ "index": 10546
+ },
+ {
+ "start": 5591.58,
+ "end": 5591.78,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 10547
+ },
+ {
+ "start": 5591.78,
+ "end": 5591.92,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 10548
+ },
+ {
+ "start": 5591.92,
+ "end": 5592.16,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 10549
+ },
+ {
+ "start": 5592.16,
+ "end": 5592.38,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 10550
+ },
+ {
+ "start": 5592.38,
+ "end": 5592.58,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 10551
+ },
+ {
+ "start": 5592.58,
+ "end": 5592.7,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10552
+ },
+ {
+ "start": 5592.7,
+ "end": 5592.86,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 10553
+ },
+ {
+ "start": 5592.86,
+ "end": 5593.38,
+ "confidence": 0,
+ "word": "platform",
+ "punct": "platform",
+ "index": 10554
+ },
+ {
+ "start": 5593.38,
+ "end": 5593.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 10555
+ },
+ {
+ "start": 5593.54,
+ "end": 5594.02,
+ "confidence": 0,
+ "word": "understood",
+ "punct": "understood",
+ "index": 10556
+ },
+ {
+ "start": 5594.02,
+ "end": 5594.16,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 10557
+ },
+ {
+ "start": 5594.16,
+ "end": 5594.64,
+ "confidence": 0,
+ "word": "values",
+ "punct": "values",
+ "index": 10558
+ },
+ {
+ "start": 5594.64,
+ "end": 5595.04,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 10559
+ },
+ {
+ "start": 5595.04,
+ "end": 5595.14,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10560
+ },
+ {
+ "start": 5595.14,
+ "end": 5595.34,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 10561
+ },
+ {
+ "start": 5595.34,
+ "end": 5595.58,
+ "confidence": 0,
+ "word": "bus",
+ "punct": "bus",
+ "index": 10562
+ },
+ {
+ "start": 5595.58,
+ "end": 5595.96,
+ "confidence": 0,
+ "word": "decision",
+ "punct": "decision.",
+ "index": 10563
+ }
+ ],
+ "start": 5585.84
+ }
+ },
+ {
+ "key": "60pj6",
+ "text": "My point is that one way to regulate a companies through competition through government regulation here's the question that all of us got an answer.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5595.96,
+ "end": 5596.22,
+ "confidence": 0,
+ "word": "my",
+ "punct": "My",
+ "index": 10564
+ },
+ {
+ "start": 5596.22,
+ "end": 5596.52,
+ "confidence": 0,
+ "word": "point",
+ "punct": "point",
+ "index": 10565
+ },
+ {
+ "start": 5596.52,
+ "end": 5596.78,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10566
+ },
+ {
+ "start": 5596.78,
+ "end": 5598.52,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10567
+ },
+ {
+ "start": 5598.52,
+ "end": 5599.32,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 10568
+ },
+ {
+ "start": 5599.32,
+ "end": 5599.48,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 10569
+ },
+ {
+ "start": 5599.48,
+ "end": 5599.62,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10570
+ },
+ {
+ "start": 5599.62,
+ "end": 5600.08,
+ "confidence": 0,
+ "word": "regulate",
+ "punct": "regulate",
+ "index": 10571
+ },
+ {
+ "start": 5600.08,
+ "end": 5600.16,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10572
+ },
+ {
+ "start": 5600.16,
+ "end": 5600.58,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies",
+ "index": 10573
+ },
+ {
+ "start": 5600.58,
+ "end": 5600.8,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 10574
+ },
+ {
+ "start": 5600.8,
+ "end": 5601.44,
+ "confidence": 0,
+ "word": "competition",
+ "punct": "competition",
+ "index": 10575
+ },
+ {
+ "start": 5601.44,
+ "end": 5602.48,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 10576
+ },
+ {
+ "start": 5602.48,
+ "end": 5602.94,
+ "confidence": 0,
+ "word": "government",
+ "punct": "government",
+ "index": 10577
+ },
+ {
+ "start": 5602.94,
+ "end": 5603.62,
+ "confidence": 0,
+ "word": "regulation",
+ "punct": "regulation",
+ "index": 10578
+ },
+ {
+ "start": 5603.62,
+ "end": 5604.52,
+ "confidence": 0,
+ "word": "here's",
+ "punct": "here's",
+ "index": 10579
+ },
+ {
+ "start": 5604.52,
+ "end": 5604.66,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10580
+ },
+ {
+ "start": 5604.66,
+ "end": 5605.04,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question",
+ "index": 10581
+ },
+ {
+ "start": 5605.04,
+ "end": 5605.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10582
+ },
+ {
+ "start": 5605.3,
+ "end": 5605.66,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 10583
+ },
+ {
+ "start": 5605.66,
+ "end": 5605.74,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10584
+ },
+ {
+ "start": 5605.74,
+ "end": 5605.88,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 10585
+ },
+ {
+ "start": 5605.88,
+ "end": 5606.04,
+ "confidence": 0,
+ "word": "got",
+ "punct": "got",
+ "index": 10586
+ },
+ {
+ "start": 5606.04,
+ "end": 5606.16,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 10587
+ },
+ {
+ "start": 5606.16,
+ "end": 5606.52,
+ "confidence": 0,
+ "word": "answer",
+ "punct": "answer.",
+ "index": 10588
+ }
+ ],
+ "start": 5595.96
+ }
+ },
+ {
+ "key": "3s5jp",
+ "text": "What do we tell our constituents?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5606.52,
+ "end": 5606.96,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 10589
+ },
+ {
+ "start": 5606.96,
+ "end": 5607.06,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 10590
+ },
+ {
+ "start": 5607.06,
+ "end": 5607.2,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10591
+ },
+ {
+ "start": 5607.2,
+ "end": 5607.42,
+ "confidence": 0,
+ "word": "tell",
+ "punct": "tell",
+ "index": 10592
+ },
+ {
+ "start": 5607.42,
+ "end": 5607.58,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 10593
+ },
+ {
+ "start": 5607.58,
+ "end": 5608.42,
+ "confidence": 0,
+ "word": "constituents",
+ "punct": "constituents?",
+ "index": 10594
+ }
+ ],
+ "start": 5606.52
+ }
+ },
+ {
+ "key": "fno15",
+ "text": "Given what's happened here, why we should let you self regulate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5608.42,
+ "end": 5609.38,
+ "confidence": 0,
+ "word": "given",
+ "punct": "Given",
+ "index": 10595
+ },
+ {
+ "start": 5609.38,
+ "end": 5609.68,
+ "confidence": 0,
+ "word": "what's",
+ "punct": "what's",
+ "index": 10596
+ },
+ {
+ "start": 5609.68,
+ "end": 5610.14,
+ "confidence": 0,
+ "word": "happened",
+ "punct": "happened",
+ "index": 10597
+ },
+ {
+ "start": 5610.14,
+ "end": 5610.96,
+ "confidence": 0,
+ "word": "here,",
+ "punct": "here,",
+ "index": 10598
+ },
+ {
+ "start": 5610.96,
+ "end": 5611.56,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 10599
+ },
+ {
+ "start": 5611.56,
+ "end": 5611.8,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10600
+ },
+ {
+ "start": 5611.8,
+ "end": 5612.1,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 10601
+ },
+ {
+ "start": 5612.1,
+ "end": 5612.32,
+ "confidence": 0,
+ "word": "let",
+ "punct": "let",
+ "index": 10602
+ },
+ {
+ "start": 5612.32,
+ "end": 5612.48,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10603
+ },
+ {
+ "start": 5612.48,
+ "end": 5612.82,
+ "confidence": 0,
+ "word": "self",
+ "punct": "self",
+ "index": 10604
+ },
+ {
+ "start": 5612.82,
+ "end": 5613.4,
+ "confidence": 0,
+ "word": "regulate",
+ "punct": "regulate.",
+ "index": 10605
+ }
+ ],
+ "start": 5608.42
+ }
+ },
+ {
+ "key": "30fhf",
+ "text": "What would you tell people in South Carolina that given all the things we just discovered here it's a good idea for us to rely upon you to regulate your own business practices.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5613.4,
+ "end": 5614.4,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 10606
+ },
+ {
+ "start": 5614.4,
+ "end": 5614.6,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 10607
+ },
+ {
+ "start": 5614.6,
+ "end": 5614.74,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10608
+ },
+ {
+ "start": 5614.74,
+ "end": 5615.12,
+ "confidence": 0,
+ "word": "tell",
+ "punct": "tell",
+ "index": 10609
+ },
+ {
+ "start": 5615.12,
+ "end": 5615.46,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 10610
+ },
+ {
+ "start": 5615.46,
+ "end": 5615.6,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10611
+ },
+ {
+ "start": 5615.6,
+ "end": 5615.94,
+ "confidence": 0,
+ "word": "south",
+ "punct": "South",
+ "index": 10612
+ },
+ {
+ "start": 5615.94,
+ "end": 5616.46,
+ "confidence": 0,
+ "word": "carolina",
+ "punct": "Carolina",
+ "index": 10613
+ },
+ {
+ "start": 5616.46,
+ "end": 5616.76,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10614
+ },
+ {
+ "start": 5616.76,
+ "end": 5616.98,
+ "confidence": 0,
+ "word": "given",
+ "punct": "given",
+ "index": 10615
+ },
+ {
+ "start": 5616.98,
+ "end": 5617.16,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 10616
+ },
+ {
+ "start": 5617.16,
+ "end": 5617.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10617
+ },
+ {
+ "start": 5617.3,
+ "end": 5617.54,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 10618
+ },
+ {
+ "start": 5617.54,
+ "end": 5617.68,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10619
+ },
+ {
+ "start": 5617.68,
+ "end": 5617.96,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 10620
+ },
+ {
+ "start": 5617.96,
+ "end": 5618.5,
+ "confidence": 0,
+ "word": "discovered",
+ "punct": "discovered",
+ "index": 10621
+ },
+ {
+ "start": 5618.5,
+ "end": 5618.76,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 10622
+ },
+ {
+ "start": 5618.76,
+ "end": 5619.56,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 10623
+ },
+ {
+ "start": 5619.56,
+ "end": 5619.66,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10624
+ },
+ {
+ "start": 5619.66,
+ "end": 5619.88,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 10625
+ },
+ {
+ "start": 5619.88,
+ "end": 5620.3,
+ "confidence": 0,
+ "word": "idea",
+ "punct": "idea",
+ "index": 10626
+ },
+ {
+ "start": 5620.3,
+ "end": 5620.52,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 10627
+ },
+ {
+ "start": 5620.52,
+ "end": 5620.86,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 10628
+ },
+ {
+ "start": 5620.86,
+ "end": 5621.26,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10629
+ },
+ {
+ "start": 5621.26,
+ "end": 5621.62,
+ "confidence": 0,
+ "word": "rely",
+ "punct": "rely",
+ "index": 10630
+ },
+ {
+ "start": 5621.62,
+ "end": 5622.02,
+ "confidence": 0,
+ "word": "upon",
+ "punct": "upon",
+ "index": 10631
+ },
+ {
+ "start": 5622.02,
+ "end": 5622.26,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10632
+ },
+ {
+ "start": 5622.26,
+ "end": 5622.42,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10633
+ },
+ {
+ "start": 5622.42,
+ "end": 5623.02,
+ "confidence": 0,
+ "word": "regulate",
+ "punct": "regulate",
+ "index": 10634
+ },
+ {
+ "start": 5623.02,
+ "end": 5623.28,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 10635
+ },
+ {
+ "start": 5623.28,
+ "end": 5623.56,
+ "confidence": 0,
+ "word": "own",
+ "punct": "own",
+ "index": 10636
+ },
+ {
+ "start": 5623.56,
+ "end": 5624.34,
+ "confidence": 0,
+ "word": "business",
+ "punct": "business",
+ "index": 10637
+ },
+ {
+ "start": 5624.34,
+ "end": 5625.42,
+ "confidence": 0,
+ "word": "practices",
+ "punct": "practices.",
+ "index": 10638
+ }
+ ],
+ "start": 5613.4
+ }
+ },
+ {
+ "key": "dpkvu",
+ "text": "Well, Senator, my position is not that there should be no regulation.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5625.42,
+ "end": 5626.18,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "Well,",
+ "index": 10639
+ },
+ {
+ "start": 5626.18,
+ "end": 5626.68,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 10640
+ },
+ {
+ "start": 5626.68,
+ "end": 5627.08,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 10641
+ },
+ {
+ "start": 5627.08,
+ "end": 5627.5,
+ "confidence": 0,
+ "word": "position",
+ "punct": "position",
+ "index": 10642
+ },
+ {
+ "start": 5627.5,
+ "end": 5627.68,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10643
+ },
+ {
+ "start": 5627.68,
+ "end": 5627.94,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 10644
+ },
+ {
+ "start": 5627.94,
+ "end": 5628.08,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10645
+ },
+ {
+ "start": 5628.08,
+ "end": 5628.24,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 10646
+ },
+ {
+ "start": 5628.24,
+ "end": 5628.48,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 10647
+ },
+ {
+ "start": 5628.48,
+ "end": 5628.58,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 10648
+ },
+ {
+ "start": 5628.58,
+ "end": 5628.72,
+ "confidence": 0,
+ "word": "no",
+ "punct": "no",
+ "index": 10649
+ },
+ {
+ "start": 5628.72,
+ "end": 5629.36,
+ "confidence": 0,
+ "word": "regulation",
+ "punct": "regulation.",
+ "index": 10650
+ }
+ ],
+ "start": 5625.42
+ }
+ },
+ {
+ "key": "7qujp",
+ "text": "I think the Internet is increasingly embrace regulation.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5629.36,
+ "end": 5629.98,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10651
+ },
+ {
+ "start": 5629.98,
+ "end": 5630.14,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10652
+ },
+ {
+ "start": 5630.14,
+ "end": 5630.28,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10653
+ },
+ {
+ "start": 5630.28,
+ "end": 5630.64,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 10654
+ },
+ {
+ "start": 5630.64,
+ "end": 5630.76,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10655
+ },
+ {
+ "start": 5630.76,
+ "end": 5631.32,
+ "confidence": 0,
+ "word": "increasingly",
+ "punct": "increasingly",
+ "index": 10656
+ },
+ {
+ "start": 5631.32,
+ "end": 5631.76,
+ "confidence": 0,
+ "word": "embrace",
+ "punct": "embrace",
+ "index": 10657
+ },
+ {
+ "start": 5631.76,
+ "end": 5632.46,
+ "confidence": 0,
+ "word": "regulation",
+ "punct": "regulation.",
+ "index": 10658
+ }
+ ],
+ "start": 5629.36
+ }
+ },
+ {
+ "key": "eb3v6",
+ "text": "I think the real question as the Internet becomes more important in people's lives is what is the regulation?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5632.46,
+ "end": 5633.52,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10659
+ },
+ {
+ "start": 5633.52,
+ "end": 5633.7,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10660
+ },
+ {
+ "start": 5633.7,
+ "end": 5633.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10661
+ },
+ {
+ "start": 5633.88,
+ "end": 5634.14,
+ "confidence": 0,
+ "word": "real",
+ "punct": "real",
+ "index": 10662
+ },
+ {
+ "start": 5634.14,
+ "end": 5634.54,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question",
+ "index": 10663
+ },
+ {
+ "start": 5634.54,
+ "end": 5635.1,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 10664
+ },
+ {
+ "start": 5635.1,
+ "end": 5635.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10665
+ },
+ {
+ "start": 5635.22,
+ "end": 5635.58,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 10666
+ },
+ {
+ "start": 5635.58,
+ "end": 5635.88,
+ "confidence": 0,
+ "word": "becomes",
+ "punct": "becomes",
+ "index": 10667
+ },
+ {
+ "start": 5635.88,
+ "end": 5636.1,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 10668
+ },
+ {
+ "start": 5636.1,
+ "end": 5636.44,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 10669
+ },
+ {
+ "start": 5636.44,
+ "end": 5636.52,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10670
+ },
+ {
+ "start": 5636.52,
+ "end": 5636.84,
+ "confidence": 0,
+ "word": "people's",
+ "punct": "people's",
+ "index": 10671
+ },
+ {
+ "start": 5636.84,
+ "end": 5637.2,
+ "confidence": 0,
+ "word": "lives",
+ "punct": "lives",
+ "index": 10672
+ },
+ {
+ "start": 5637.2,
+ "end": 5637.76,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10673
+ },
+ {
+ "start": 5637.76,
+ "end": 5637.94,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 10674
+ },
+ {
+ "start": 5637.94,
+ "end": 5638.04,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10675
+ },
+ {
+ "start": 5638.04,
+ "end": 5638.29,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10676
+ },
+ {
+ "start": 5638.29,
+ "end": 5639.05,
+ "confidence": 0,
+ "word": "regulation",
+ "punct": "regulation?",
+ "index": 10677
+ }
+ ],
+ "start": 5632.46
+ }
+ },
+ {
+ "key": "eru5q",
+ "text": "Not whether there should be or you as a company.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5639.05,
+ "end": 5639.29,
+ "confidence": 0,
+ "word": "not",
+ "punct": "Not",
+ "index": 10678
+ },
+ {
+ "start": 5639.29,
+ "end": 5639.51,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 10679
+ },
+ {
+ "start": 5639.51,
+ "end": 5639.71,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 10680
+ },
+ {
+ "start": 5639.71,
+ "end": 5639.95,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 10681
+ },
+ {
+ "start": 5639.95,
+ "end": 5640.07,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 10682
+ },
+ {
+ "start": 5640.07,
+ "end": 5640.23,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 10683
+ },
+ {
+ "start": 5640.23,
+ "end": 5640.35,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10684
+ },
+ {
+ "start": 5640.35,
+ "end": 5640.53,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 10685
+ },
+ {
+ "start": 5640.53,
+ "end": 5640.65,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10686
+ },
+ {
+ "start": 5640.65,
+ "end": 5641.17,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company.",
+ "index": 10687
+ }
+ ],
+ "start": 5639.05
+ }
+ },
+ {
+ "key": "e27gf",
+ "text": "Welcome regulation, I think.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5641.17,
+ "end": 5641.69,
+ "confidence": 0,
+ "word": "welcome",
+ "punct": "Welcome",
+ "index": 10688
+ },
+ {
+ "start": 5641.69,
+ "end": 5642.27,
+ "confidence": 0,
+ "word": "regulation,",
+ "punct": "regulation,",
+ "index": 10689
+ },
+ {
+ "start": 5642.27,
+ "end": 5642.99,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10690
+ },
+ {
+ "start": 5642.99,
+ "end": 5643.15,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think.",
+ "index": 10691
+ }
+ ],
+ "start": 5641.17
+ }
+ },
+ {
+ "key": "6nemg",
+ "text": "If it's the right regulation, then you think the Europeans had it right.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5643.15,
+ "end": 5643.27,
+ "confidence": 0,
+ "word": "if",
+ "punct": "If",
+ "index": 10692
+ },
+ {
+ "start": 5643.27,
+ "end": 5643.49,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 10693
+ },
+ {
+ "start": 5643.49,
+ "end": 5643.65,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10694
+ },
+ {
+ "start": 5643.65,
+ "end": 5643.93,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 10695
+ },
+ {
+ "start": 5643.93,
+ "end": 5644.45,
+ "confidence": 0,
+ "word": "regulation,",
+ "punct": "regulation,",
+ "index": 10696
+ },
+ {
+ "start": 5644.45,
+ "end": 5644.65,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 10697
+ },
+ {
+ "start": 5644.65,
+ "end": 5644.81,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10698
+ },
+ {
+ "start": 5644.81,
+ "end": 5645.03,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10699
+ },
+ {
+ "start": 5645.03,
+ "end": 5645.15,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10700
+ },
+ {
+ "start": 5645.15,
+ "end": 5645.67,
+ "confidence": 0,
+ "word": "europeans",
+ "punct": "Europeans",
+ "index": 10701
+ },
+ {
+ "start": 5645.67,
+ "end": 5645.85,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 10702
+ },
+ {
+ "start": 5645.85,
+ "end": 5646.03,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 10703
+ },
+ {
+ "start": 5646.03,
+ "end": 5646.31,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right.",
+ "index": 10704
+ }
+ ],
+ "start": 5643.15
+ }
+ },
+ {
+ "key": "372b1",
+ "text": "I think that they get things right.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5646.31,
+ "end": 5647.25,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10705
+ },
+ {
+ "start": 5647.25,
+ "end": 5647.43,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10706
+ },
+ {
+ "start": 5647.43,
+ "end": 5647.57,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10707
+ },
+ {
+ "start": 5647.57,
+ "end": 5647.85,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 10708
+ },
+ {
+ "start": 5647.85,
+ "end": 5648.29,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 10709
+ },
+ {
+ "start": 5648.29,
+ "end": 5648.77,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 10710
+ },
+ {
+ "start": 5648.77,
+ "end": 5649.07,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right.",
+ "index": 10711
+ }
+ ],
+ "start": 5646.31
+ }
+ },
+ {
+ "key": "evu03",
+ "text": "Have you ever submitted that's true.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5649.07,
+ "end": 5649.31,
+ "confidence": 0,
+ "word": "have",
+ "punct": "Have",
+ "index": 10712
+ },
+ {
+ "start": 5649.31,
+ "end": 5649.43,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10713
+ },
+ {
+ "start": 5649.43,
+ "end": 5649.69,
+ "confidence": 0,
+ "word": "ever",
+ "punct": "ever",
+ "index": 10714
+ },
+ {
+ "start": 5649.69,
+ "end": 5651.16,
+ "confidence": 0,
+ "word": "submitted",
+ "punct": "submitted",
+ "index": 10715
+ },
+ {
+ "start": 5651.16,
+ "end": 5652.34,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 10716
+ },
+ {
+ "start": 5652.34,
+ "end": 5653.24,
+ "confidence": 0,
+ "word": "true",
+ "punct": "true.",
+ "index": 10717
+ }
+ ],
+ "start": 5649.07
+ }
+ },
+ {
+ "key": "c6bve",
+ "text": "So, would you work with us in terms of what regulations you think are necessary in your industry, absolutely, okay, would you submit some proposed regulations?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5653.24,
+ "end": 5654.38,
+ "confidence": 0,
+ "word": "so,",
+ "punct": "So,",
+ "index": 10718
+ },
+ {
+ "start": 5654.38,
+ "end": 5654.64,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 10719
+ },
+ {
+ "start": 5654.64,
+ "end": 5654.78,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10720
+ },
+ {
+ "start": 5654.78,
+ "end": 5655.04,
+ "confidence": 0,
+ "word": "work",
+ "punct": "work",
+ "index": 10721
+ },
+ {
+ "start": 5655.04,
+ "end": 5655.24,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10722
+ },
+ {
+ "start": 5655.24,
+ "end": 5655.52,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 10723
+ },
+ {
+ "start": 5655.52,
+ "end": 5655.7,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10724
+ },
+ {
+ "start": 5655.7,
+ "end": 5656,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 10725
+ },
+ {
+ "start": 5656,
+ "end": 5656.14,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10726
+ },
+ {
+ "start": 5656.14,
+ "end": 5656.32,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 10727
+ },
+ {
+ "start": 5656.32,
+ "end": 5657.02,
+ "confidence": 0,
+ "word": "regulations",
+ "punct": "regulations",
+ "index": 10728
+ },
+ {
+ "start": 5657.02,
+ "end": 5657.24,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10729
+ },
+ {
+ "start": 5657.24,
+ "end": 5657.44,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10730
+ },
+ {
+ "start": 5657.44,
+ "end": 5657.6,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 10731
+ },
+ {
+ "start": 5657.6,
+ "end": 5658.16,
+ "confidence": 0,
+ "word": "necessary",
+ "punct": "necessary",
+ "index": 10732
+ },
+ {
+ "start": 5658.16,
+ "end": 5658.26,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10733
+ },
+ {
+ "start": 5658.26,
+ "end": 5658.44,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 10734
+ },
+ {
+ "start": 5658.44,
+ "end": 5658.86,
+ "confidence": 0,
+ "word": "industry,",
+ "punct": "industry,",
+ "index": 10735
+ },
+ {
+ "start": 5658.86,
+ "end": 5659.86,
+ "confidence": 0,
+ "word": "absolutely,",
+ "punct": "absolutely,",
+ "index": 10736
+ },
+ {
+ "start": 5659.86,
+ "end": 5660.3,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "okay,",
+ "index": 10737
+ },
+ {
+ "start": 5660.3,
+ "end": 5660.5,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 10738
+ },
+ {
+ "start": 5660.5,
+ "end": 5660.64,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10739
+ },
+ {
+ "start": 5660.64,
+ "end": 5661.02,
+ "confidence": 0,
+ "word": "submit",
+ "punct": "submit",
+ "index": 10740
+ },
+ {
+ "start": 5661.02,
+ "end": 5661.52,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 10741
+ },
+ {
+ "start": 5661.52,
+ "end": 5661.9,
+ "confidence": 0,
+ "word": "proposed",
+ "punct": "proposed",
+ "index": 10742
+ },
+ {
+ "start": 5661.9,
+ "end": 5662.56,
+ "confidence": 0,
+ "word": "regulations",
+ "punct": "regulations?",
+ "index": 10743
+ }
+ ],
+ "start": 5653.24
+ }
+ },
+ {
+ "key": "7l2jo",
+ "text": "Yes, and I'll have my team follow up with you?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5662.56,
+ "end": 5663.46,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 10744
+ },
+ {
+ "start": 5663.46,
+ "end": 5663.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 10745
+ },
+ {
+ "start": 5663.62,
+ "end": 5663.82,
+ "confidence": 0,
+ "word": "i'll",
+ "punct": "I'll",
+ "index": 10746
+ },
+ {
+ "start": 5663.82,
+ "end": 5663.96,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 10747
+ },
+ {
+ "start": 5663.96,
+ "end": 5664.12,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 10748
+ },
+ {
+ "start": 5664.12,
+ "end": 5664.42,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 10749
+ },
+ {
+ "start": 5664.42,
+ "end": 5664.72,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 10750
+ },
+ {
+ "start": 5664.72,
+ "end": 5664.84,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 10751
+ },
+ {
+ "start": 5664.84,
+ "end": 5665.08,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10752
+ },
+ {
+ "start": 5665.08,
+ "end": 5665.3,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you?",
+ "index": 10753
+ }
+ ],
+ "start": 5662.56
+ }
+ },
+ {
+ "key": "1edvj",
+ "text": "So that way we can have this discussion across the different categories where I think that this discussion needs to forward to?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5665.3,
+ "end": 5665.64,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 10754
+ },
+ {
+ "start": 5665.64,
+ "end": 5665.78,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10755
+ },
+ {
+ "start": 5665.78,
+ "end": 5665.94,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 10756
+ },
+ {
+ "start": 5665.94,
+ "end": 5666.1,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10757
+ },
+ {
+ "start": 5666.1,
+ "end": 5666.34,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 10758
+ },
+ {
+ "start": 5666.34,
+ "end": 5666.96,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 10759
+ },
+ {
+ "start": 5666.96,
+ "end": 5667.12,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 10760
+ },
+ {
+ "start": 5667.12,
+ "end": 5667.52,
+ "confidence": 0,
+ "word": "discussion",
+ "punct": "discussion",
+ "index": 10761
+ },
+ {
+ "start": 5667.52,
+ "end": 5667.8,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 10762
+ },
+ {
+ "start": 5667.8,
+ "end": 5667.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10763
+ },
+ {
+ "start": 5667.94,
+ "end": 5668.22,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 10764
+ },
+ {
+ "start": 5668.22,
+ "end": 5668.76,
+ "confidence": 0,
+ "word": "categories",
+ "punct": "categories",
+ "index": 10765
+ },
+ {
+ "start": 5668.76,
+ "end": 5669.06,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 10766
+ },
+ {
+ "start": 5669.06,
+ "end": 5669.42,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10767
+ },
+ {
+ "start": 5669.42,
+ "end": 5669.58,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10768
+ },
+ {
+ "start": 5669.58,
+ "end": 5669.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10769
+ },
+ {
+ "start": 5669.7,
+ "end": 5669.88,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 10770
+ },
+ {
+ "start": 5669.88,
+ "end": 5670.26,
+ "confidence": 0,
+ "word": "discussion",
+ "punct": "discussion",
+ "index": 10771
+ },
+ {
+ "start": 5670.26,
+ "end": 5670.46,
+ "confidence": 0,
+ "word": "needs",
+ "punct": "needs",
+ "index": 10772
+ },
+ {
+ "start": 5670.46,
+ "end": 5670.56,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10773
+ },
+ {
+ "start": 5670.56,
+ "end": 5671.1,
+ "confidence": 0,
+ "word": "forward",
+ "punct": "forward",
+ "index": 10774
+ },
+ {
+ "start": 5671.1,
+ "end": 5671.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to?",
+ "index": 10775
+ }
+ ],
+ "start": 5665.3
+ }
+ },
+ {
+ "key": "csipj",
+ "text": "When you sign up for Facebook, you sign up for terms of service, are you familiar with that?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5671.28,
+ "end": 5671.5,
+ "confidence": 0,
+ "word": "when",
+ "punct": "When",
+ "index": 10776
+ },
+ {
+ "start": 5671.5,
+ "end": 5671.64,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10777
+ },
+ {
+ "start": 5671.64,
+ "end": 5671.88,
+ "confidence": 0,
+ "word": "sign",
+ "punct": "sign",
+ "index": 10778
+ },
+ {
+ "start": 5671.88,
+ "end": 5671.98,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 10779
+ },
+ {
+ "start": 5671.98,
+ "end": 5672.16,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 10780
+ },
+ {
+ "start": 5672.16,
+ "end": 5672.74,
+ "confidence": 0,
+ "word": "facebook,",
+ "punct": "Facebook,",
+ "index": 10781
+ },
+ {
+ "start": 5672.74,
+ "end": 5673.52,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10782
+ },
+ {
+ "start": 5673.52,
+ "end": 5673.94,
+ "confidence": 0,
+ "word": "sign",
+ "punct": "sign",
+ "index": 10783
+ },
+ {
+ "start": 5673.94,
+ "end": 5674.2,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 10784
+ },
+ {
+ "start": 5674.2,
+ "end": 5674.82,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 10785
+ },
+ {
+ "start": 5674.82,
+ "end": 5675.18,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 10786
+ },
+ {
+ "start": 5675.18,
+ "end": 5675.32,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10787
+ },
+ {
+ "start": 5675.32,
+ "end": 5675.68,
+ "confidence": 0,
+ "word": "service,",
+ "punct": "service,",
+ "index": 10788
+ },
+ {
+ "start": 5675.68,
+ "end": 5675.84,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 10789
+ },
+ {
+ "start": 5675.84,
+ "end": 5675.96,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10790
+ },
+ {
+ "start": 5675.96,
+ "end": 5676.26,
+ "confidence": 0,
+ "word": "familiar",
+ "punct": "familiar",
+ "index": 10791
+ },
+ {
+ "start": 5676.26,
+ "end": 5676.38,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10792
+ },
+ {
+ "start": 5676.38,
+ "end": 5676.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that?",
+ "index": 10793
+ }
+ ],
+ "start": 5671.28
+ }
+ },
+ {
+ "key": "f0eso",
+ "text": "Yes, okay, it says the terms govern our use of Facebook and the products features app services technology software.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5676.58,
+ "end": 5677.44,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 10794
+ },
+ {
+ "start": 5677.44,
+ "end": 5678.52,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "okay,",
+ "index": 10795
+ },
+ {
+ "start": 5678.52,
+ "end": 5679.18,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 10796
+ },
+ {
+ "start": 5679.18,
+ "end": 5679.62,
+ "confidence": 0,
+ "word": "says",
+ "punct": "says",
+ "index": 10797
+ },
+ {
+ "start": 5679.62,
+ "end": 5680.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10798
+ },
+ {
+ "start": 5680.38,
+ "end": 5680.76,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 10799
+ },
+ {
+ "start": 5680.76,
+ "end": 5681.12,
+ "confidence": 0,
+ "word": "govern",
+ "punct": "govern",
+ "index": 10800
+ },
+ {
+ "start": 5681.12,
+ "end": 5681.34,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 10801
+ },
+ {
+ "start": 5681.34,
+ "end": 5681.56,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 10802
+ },
+ {
+ "start": 5681.56,
+ "end": 5681.7,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10803
+ },
+ {
+ "start": 5681.7,
+ "end": 5682.24,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 10804
+ },
+ {
+ "start": 5682.24,
+ "end": 5682.4,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 10805
+ },
+ {
+ "start": 5682.4,
+ "end": 5682.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10806
+ },
+ {
+ "start": 5682.52,
+ "end": 5682.96,
+ "confidence": 0,
+ "word": "products",
+ "punct": "products",
+ "index": 10807
+ },
+ {
+ "start": 5682.96,
+ "end": 5683.6,
+ "confidence": 0,
+ "word": "features",
+ "punct": "features",
+ "index": 10808
+ },
+ {
+ "start": 5683.6,
+ "end": 5684.02,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 10809
+ },
+ {
+ "start": 5684.02,
+ "end": 5684.52,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 10810
+ },
+ {
+ "start": 5684.52,
+ "end": 5685.18,
+ "confidence": 0,
+ "word": "technology",
+ "punct": "technology",
+ "index": 10811
+ },
+ {
+ "start": 5685.18,
+ "end": 5685.74,
+ "confidence": 0,
+ "word": "software",
+ "punct": "software.",
+ "index": 10812
+ }
+ ],
+ "start": 5676.58
+ }
+ },
+ {
+ "key": "c2gdp",
+ "text": "We offer Facebook's products or products, except where we expressly state that separate terms and not these apply I'm a lawyer.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5685.74,
+ "end": 5685.92,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 10813
+ },
+ {
+ "start": 5685.92,
+ "end": 5686.28,
+ "confidence": 0,
+ "word": "offer",
+ "punct": "offer",
+ "index": 10814
+ },
+ {
+ "start": 5686.28,
+ "end": 5687.26,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 10815
+ },
+ {
+ "start": 5687.26,
+ "end": 5687.7,
+ "confidence": 0,
+ "word": "products",
+ "punct": "products",
+ "index": 10816
+ },
+ {
+ "start": 5687.7,
+ "end": 5687.88,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 10817
+ },
+ {
+ "start": 5687.88,
+ "end": 5688.72,
+ "confidence": 0,
+ "word": "products,",
+ "punct": "products,",
+ "index": 10818
+ },
+ {
+ "start": 5688.72,
+ "end": 5689.06,
+ "confidence": 0,
+ "word": "except",
+ "punct": "except",
+ "index": 10819
+ },
+ {
+ "start": 5689.06,
+ "end": 5689.28,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 10820
+ },
+ {
+ "start": 5689.28,
+ "end": 5689.38,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10821
+ },
+ {
+ "start": 5689.38,
+ "end": 5690,
+ "confidence": 0,
+ "word": "expressly",
+ "punct": "expressly",
+ "index": 10822
+ },
+ {
+ "start": 5690,
+ "end": 5690.36,
+ "confidence": 0,
+ "word": "state",
+ "punct": "state",
+ "index": 10823
+ },
+ {
+ "start": 5690.36,
+ "end": 5690.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10824
+ },
+ {
+ "start": 5690.6,
+ "end": 5691,
+ "confidence": 0,
+ "word": "separate",
+ "punct": "separate",
+ "index": 10825
+ },
+ {
+ "start": 5691,
+ "end": 5691.36,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 10826
+ },
+ {
+ "start": 5691.36,
+ "end": 5691.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 10827
+ },
+ {
+ "start": 5691.62,
+ "end": 5691.84,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 10828
+ },
+ {
+ "start": 5691.84,
+ "end": 5692.1,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 10829
+ },
+ {
+ "start": 5692.1,
+ "end": 5692.62,
+ "confidence": 0,
+ "word": "apply",
+ "punct": "apply",
+ "index": 10830
+ },
+ {
+ "start": 5692.62,
+ "end": 5693.32,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 10831
+ },
+ {
+ "start": 5693.32,
+ "end": 5693.42,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10832
+ },
+ {
+ "start": 5693.42,
+ "end": 5693.68,
+ "confidence": 0,
+ "word": "lawyer",
+ "punct": "lawyer.",
+ "index": 10833
+ }
+ ],
+ "start": 5685.74
+ }
+ },
+ {
+ "key": "9udnv",
+ "text": "I have no idea what that means.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5693.68,
+ "end": 5693.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10834
+ },
+ {
+ "start": 5693.74,
+ "end": 5693.88,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 10835
+ },
+ {
+ "start": 5693.88,
+ "end": 5694,
+ "confidence": 0,
+ "word": "no",
+ "punct": "no",
+ "index": 10836
+ },
+ {
+ "start": 5694,
+ "end": 5694.22,
+ "confidence": 0,
+ "word": "idea",
+ "punct": "idea",
+ "index": 10837
+ },
+ {
+ "start": 5694.22,
+ "end": 5694.38,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 10838
+ },
+ {
+ "start": 5694.38,
+ "end": 5694.54,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10839
+ },
+ {
+ "start": 5694.54,
+ "end": 5694.82,
+ "confidence": 0,
+ "word": "means",
+ "punct": "means.",
+ "index": 10840
+ }
+ ],
+ "start": 5693.68
+ }
+ },
+ {
+ "key": "6r5oi",
+ "text": "But when you look at terms of service, this is what you get.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5694.82,
+ "end": 5695.48,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 10841
+ },
+ {
+ "start": 5695.48,
+ "end": 5695.62,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 10842
+ },
+ {
+ "start": 5695.62,
+ "end": 5695.78,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10843
+ },
+ {
+ "start": 5695.78,
+ "end": 5695.98,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 10844
+ },
+ {
+ "start": 5695.98,
+ "end": 5696.1,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 10845
+ },
+ {
+ "start": 5696.1,
+ "end": 5696.48,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 10846
+ },
+ {
+ "start": 5696.48,
+ "end": 5696.62,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10847
+ },
+ {
+ "start": 5696.62,
+ "end": 5697.02,
+ "confidence": 0,
+ "word": "service,",
+ "punct": "service,",
+ "index": 10848
+ },
+ {
+ "start": 5697.02,
+ "end": 5697.64,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 10849
+ },
+ {
+ "start": 5697.64,
+ "end": 5697.78,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10850
+ },
+ {
+ "start": 5697.78,
+ "end": 5697.96,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 10851
+ },
+ {
+ "start": 5697.96,
+ "end": 5698.14,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10852
+ },
+ {
+ "start": 5698.14,
+ "end": 5698.92,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get.",
+ "index": 10853
+ }
+ ],
+ "start": 5694.82
+ }
+ },
+ {
+ "key": "20isn",
+ "text": "Do you think the average consumer understands what they're signing up for?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5698.92,
+ "end": 5699.46,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 10854
+ },
+ {
+ "start": 5699.46,
+ "end": 5699.6,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10855
+ },
+ {
+ "start": 5699.6,
+ "end": 5699.76,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10856
+ },
+ {
+ "start": 5699.76,
+ "end": 5699.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10857
+ },
+ {
+ "start": 5699.92,
+ "end": 5700.38,
+ "confidence": 0,
+ "word": "average",
+ "punct": "average",
+ "index": 10858
+ },
+ {
+ "start": 5700.38,
+ "end": 5701.06,
+ "confidence": 0,
+ "word": "consumer",
+ "punct": "consumer",
+ "index": 10859
+ },
+ {
+ "start": 5701.06,
+ "end": 5702.2,
+ "confidence": 0,
+ "word": "understands",
+ "punct": "understands",
+ "index": 10860
+ },
+ {
+ "start": 5702.2,
+ "end": 5702.4,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 10861
+ },
+ {
+ "start": 5702.4,
+ "end": 5702.62,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 10862
+ },
+ {
+ "start": 5702.62,
+ "end": 5702.98,
+ "confidence": 0,
+ "word": "signing",
+ "punct": "signing",
+ "index": 10863
+ },
+ {
+ "start": 5702.98,
+ "end": 5703.14,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 10864
+ },
+ {
+ "start": 5703.14,
+ "end": 5704.38,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for?",
+ "index": 10865
+ }
+ ],
+ "start": 5698.92
+ }
+ },
+ {
+ "key": "2iql0",
+ "text": "I don't think that the average person likely reads that whole document, but I think that there are different ways that we can communicate that and have a responsibility to do.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5704.38,
+ "end": 5704.6,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10866
+ },
+ {
+ "start": 5704.6,
+ "end": 5705.62,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 10867
+ },
+ {
+ "start": 5705.62,
+ "end": 5705.84,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10868
+ },
+ {
+ "start": 5705.84,
+ "end": 5705.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10869
+ },
+ {
+ "start": 5705.98,
+ "end": 5706.12,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10870
+ },
+ {
+ "start": 5706.12,
+ "end": 5706.5,
+ "confidence": 0,
+ "word": "average",
+ "punct": "average",
+ "index": 10871
+ },
+ {
+ "start": 5706.5,
+ "end": 5706.94,
+ "confidence": 0,
+ "word": "person",
+ "punct": "person",
+ "index": 10872
+ },
+ {
+ "start": 5706.94,
+ "end": 5707.58,
+ "confidence": 0,
+ "word": "likely",
+ "punct": "likely",
+ "index": 10873
+ },
+ {
+ "start": 5707.58,
+ "end": 5707.92,
+ "confidence": 0,
+ "word": "reads",
+ "punct": "reads",
+ "index": 10874
+ },
+ {
+ "start": 5707.92,
+ "end": 5708.16,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10875
+ },
+ {
+ "start": 5708.16,
+ "end": 5708.38,
+ "confidence": 0,
+ "word": "whole",
+ "punct": "whole",
+ "index": 10876
+ },
+ {
+ "start": 5708.38,
+ "end": 5708.84,
+ "confidence": 0,
+ "word": "document,",
+ "punct": "document,",
+ "index": 10877
+ },
+ {
+ "start": 5708.84,
+ "end": 5709.2,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 10878
+ },
+ {
+ "start": 5709.2,
+ "end": 5709.24,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10879
+ },
+ {
+ "start": 5709.24,
+ "end": 5709.4,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10880
+ },
+ {
+ "start": 5709.4,
+ "end": 5709.5,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10881
+ },
+ {
+ "start": 5709.5,
+ "end": 5709.64,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 10882
+ },
+ {
+ "start": 5709.64,
+ "end": 5709.74,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 10883
+ },
+ {
+ "start": 5709.74,
+ "end": 5710.04,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 10884
+ },
+ {
+ "start": 5710.04,
+ "end": 5710.32,
+ "confidence": 0,
+ "word": "ways",
+ "punct": "ways",
+ "index": 10885
+ },
+ {
+ "start": 5710.32,
+ "end": 5710.56,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10886
+ },
+ {
+ "start": 5710.56,
+ "end": 5710.66,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10887
+ },
+ {
+ "start": 5710.66,
+ "end": 5710.86,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 10888
+ },
+ {
+ "start": 5710.86,
+ "end": 5711.42,
+ "confidence": 0,
+ "word": "communicate",
+ "punct": "communicate",
+ "index": 10889
+ },
+ {
+ "start": 5711.42,
+ "end": 5711.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10890
+ },
+ {
+ "start": 5711.58,
+ "end": 5711.72,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 10891
+ },
+ {
+ "start": 5711.72,
+ "end": 5711.88,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 10892
+ },
+ {
+ "start": 5711.88,
+ "end": 5711.94,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10893
+ },
+ {
+ "start": 5711.94,
+ "end": 5712.7,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 10894
+ },
+ {
+ "start": 5712.7,
+ "end": 5712.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10895
+ },
+ {
+ "start": 5712.8,
+ "end": 5712.96,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do.",
+ "index": 10896
+ }
+ ],
+ "start": 5704.38
+ }
+ },
+ {
+ "key": "2rr4q",
+ "text": "So do you agree with me?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5712.96,
+ "end": 5713.2,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 10897
+ },
+ {
+ "start": 5713.2,
+ "end": 5713.38,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 10898
+ },
+ {
+ "start": 5713.38,
+ "end": 5713.9,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10899
+ },
+ {
+ "start": 5713.9,
+ "end": 5714.14,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 10900
+ },
+ {
+ "start": 5714.14,
+ "end": 5714.28,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10901
+ },
+ {
+ "start": 5714.28,
+ "end": 5714.4,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me?",
+ "index": 10902
+ }
+ ],
+ "start": 5712.96
+ }
+ },
+ {
+ "key": "fue5j",
+ "text": "That you better come up with different ways because this I ain't working well, Senator, I think in certain areas that is true.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5714.4,
+ "end": 5714.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 10903
+ },
+ {
+ "start": 5714.6,
+ "end": 5714.72,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10904
+ },
+ {
+ "start": 5714.72,
+ "end": 5715.02,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better",
+ "index": 10905
+ },
+ {
+ "start": 5715.02,
+ "end": 5715.18,
+ "confidence": 0,
+ "word": "come",
+ "punct": "come",
+ "index": 10906
+ },
+ {
+ "start": 5715.18,
+ "end": 5715.3,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 10907
+ },
+ {
+ "start": 5715.3,
+ "end": 5715.44,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10908
+ },
+ {
+ "start": 5715.44,
+ "end": 5715.76,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 10909
+ },
+ {
+ "start": 5715.76,
+ "end": 5716.06,
+ "confidence": 0,
+ "word": "ways",
+ "punct": "ways",
+ "index": 10910
+ },
+ {
+ "start": 5716.06,
+ "end": 5716.38,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 10911
+ },
+ {
+ "start": 5716.38,
+ "end": 5716.6,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 10912
+ },
+ {
+ "start": 5716.6,
+ "end": 5716.68,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10913
+ },
+ {
+ "start": 5716.68,
+ "end": 5716.92,
+ "confidence": 0,
+ "word": "ain't",
+ "punct": "ain't",
+ "index": 10914
+ },
+ {
+ "start": 5716.92,
+ "end": 5718.86,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 10915
+ },
+ {
+ "start": 5718.86,
+ "end": 5719.86,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "well,",
+ "index": 10916
+ },
+ {
+ "start": 5719.86,
+ "end": 5720.26,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 10917
+ },
+ {
+ "start": 5720.26,
+ "end": 5720.34,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10918
+ },
+ {
+ "start": 5720.34,
+ "end": 5720.52,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10919
+ },
+ {
+ "start": 5720.52,
+ "end": 5720.68,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10920
+ },
+ {
+ "start": 5720.68,
+ "end": 5721.04,
+ "confidence": 0,
+ "word": "certain",
+ "punct": "certain",
+ "index": 10921
+ },
+ {
+ "start": 5721.04,
+ "end": 5721.46,
+ "confidence": 0,
+ "word": "areas",
+ "punct": "areas",
+ "index": 10922
+ },
+ {
+ "start": 5721.46,
+ "end": 5722.24,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10923
+ },
+ {
+ "start": 5722.24,
+ "end": 5722.76,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 10924
+ },
+ {
+ "start": 5722.76,
+ "end": 5723.26,
+ "confidence": 0,
+ "word": "true",
+ "punct": "true.",
+ "index": 10925
+ }
+ ],
+ "start": 5714.4
+ }
+ },
+ {
+ "key": "bi8ke",
+ "text": "And I think in other areas like the core part of what we do.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5723.26,
+ "end": 5723.7,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 10926
+ },
+ {
+ "start": 5723.7,
+ "end": 5723.76,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10927
+ },
+ {
+ "start": 5723.76,
+ "end": 5723.94,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10928
+ },
+ {
+ "start": 5723.94,
+ "end": 5724.06,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10929
+ },
+ {
+ "start": 5724.06,
+ "end": 5724.3,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 10930
+ },
+ {
+ "start": 5724.3,
+ "end": 5724.62,
+ "confidence": 0,
+ "word": "areas",
+ "punct": "areas",
+ "index": 10931
+ },
+ {
+ "start": 5724.62,
+ "end": 5724.8,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 10932
+ },
+ {
+ "start": 5724.8,
+ "end": 5724.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10933
+ },
+ {
+ "start": 5724.92,
+ "end": 5725.24,
+ "confidence": 0,
+ "word": "core",
+ "punct": "core",
+ "index": 10934
+ },
+ {
+ "start": 5725.24,
+ "end": 5725.48,
+ "confidence": 0,
+ "word": "part",
+ "punct": "part",
+ "index": 10935
+ },
+ {
+ "start": 5725.48,
+ "end": 5725.56,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10936
+ },
+ {
+ "start": 5725.56,
+ "end": 5725.72,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 10937
+ },
+ {
+ "start": 5725.72,
+ "end": 5725.82,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10938
+ },
+ {
+ "start": 5725.82,
+ "end": 5726.04,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do.",
+ "index": 10939
+ }
+ ],
+ "start": 5723.26
+ }
+ },
+ {
+ "key": "53rga",
+ "text": "But if you think about just at the most basic level, people come to Facebook Instagram what's that Messenger about 100,000,000,000 times a day to share a piece of content or a message with a specific set of people.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5726.04,
+ "end": 5726.48,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 10940
+ },
+ {
+ "start": 5726.48,
+ "end": 5726.56,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 10941
+ },
+ {
+ "start": 5726.56,
+ "end": 5726.84,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 10942
+ },
+ {
+ "start": 5726.84,
+ "end": 5726.98,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10943
+ },
+ {
+ "start": 5726.98,
+ "end": 5727.18,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 10944
+ },
+ {
+ "start": 5727.18,
+ "end": 5727.32,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 10945
+ },
+ {
+ "start": 5727.32,
+ "end": 5727.46,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 10946
+ },
+ {
+ "start": 5727.46,
+ "end": 5727.56,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10947
+ },
+ {
+ "start": 5727.56,
+ "end": 5727.76,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 10948
+ },
+ {
+ "start": 5727.76,
+ "end": 5728.12,
+ "confidence": 0,
+ "word": "basic",
+ "punct": "basic",
+ "index": 10949
+ },
+ {
+ "start": 5728.12,
+ "end": 5728.4,
+ "confidence": 0,
+ "word": "level,",
+ "punct": "level,",
+ "index": 10950
+ },
+ {
+ "start": 5728.4,
+ "end": 5729.24,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 10951
+ },
+ {
+ "start": 5729.24,
+ "end": 5729.48,
+ "confidence": 0,
+ "word": "come",
+ "punct": "come",
+ "index": 10952
+ },
+ {
+ "start": 5729.48,
+ "end": 5729.64,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10953
+ },
+ {
+ "start": 5729.64,
+ "end": 5730.2,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 10954
+ },
+ {
+ "start": 5730.2,
+ "end": 5730.72,
+ "confidence": 0,
+ "word": "instagram",
+ "punct": "Instagram",
+ "index": 10955
+ },
+ {
+ "start": 5730.72,
+ "end": 5730.96,
+ "confidence": 0,
+ "word": "what's",
+ "punct": "what's",
+ "index": 10956
+ },
+ {
+ "start": 5730.96,
+ "end": 5731.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10957
+ },
+ {
+ "start": 5731.2,
+ "end": 5732.02,
+ "confidence": 0,
+ "word": "messenger",
+ "punct": "Messenger",
+ "index": 10958
+ },
+ {
+ "start": 5732.02,
+ "end": 5732.66,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 10959
+ },
+ {
+ "start": 5732.66,
+ "end": 5733.54,
+ "confidence": 0,
+ "word": "100,000,000,000",
+ "punct": "100,000,000,000",
+ "index": 10960
+ },
+ {
+ "start": 5733.54,
+ "end": 5733.92,
+ "confidence": 0,
+ "word": "times",
+ "punct": "times",
+ "index": 10961
+ },
+ {
+ "start": 5733.92,
+ "end": 5734.02,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10962
+ },
+ {
+ "start": 5734.02,
+ "end": 5734.2,
+ "confidence": 0,
+ "word": "day",
+ "punct": "day",
+ "index": 10963
+ },
+ {
+ "start": 5734.2,
+ "end": 5734.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 10964
+ },
+ {
+ "start": 5734.8,
+ "end": 5735.12,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 10965
+ },
+ {
+ "start": 5735.12,
+ "end": 5735.18,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10966
+ },
+ {
+ "start": 5735.18,
+ "end": 5735.48,
+ "confidence": 0,
+ "word": "piece",
+ "punct": "piece",
+ "index": 10967
+ },
+ {
+ "start": 5735.48,
+ "end": 5735.6,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10968
+ },
+ {
+ "start": 5735.6,
+ "end": 5736,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 10969
+ },
+ {
+ "start": 5736,
+ "end": 5736.12,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 10970
+ },
+ {
+ "start": 5736.12,
+ "end": 5736.22,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10971
+ },
+ {
+ "start": 5736.22,
+ "end": 5736.66,
+ "confidence": 0,
+ "word": "message",
+ "punct": "message",
+ "index": 10972
+ },
+ {
+ "start": 5736.66,
+ "end": 5737.14,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 10973
+ },
+ {
+ "start": 5737.14,
+ "end": 5737.24,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 10974
+ },
+ {
+ "start": 5737.24,
+ "end": 5737.78,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 10975
+ },
+ {
+ "start": 5737.78,
+ "end": 5737.98,
+ "confidence": 0,
+ "word": "set",
+ "punct": "set",
+ "index": 10976
+ },
+ {
+ "start": 5737.98,
+ "end": 5738.08,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 10977
+ },
+ {
+ "start": 5738.08,
+ "end": 5738.36,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people.",
+ "index": 10978
+ }
+ ],
+ "start": 5726.04
+ }
+ },
+ {
+ "key": "4f4i9",
+ "text": "And I think that that basic functionality, people understand because we have the controls in line every time and given the volume of the activity and the value that people tell us that they're getting from that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5738.36,
+ "end": 5739.22,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 10979
+ },
+ {
+ "start": 5739.22,
+ "end": 5739.66,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10980
+ },
+ {
+ "start": 5739.66,
+ "end": 5739.86,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 10981
+ },
+ {
+ "start": 5739.86,
+ "end": 5740,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10982
+ },
+ {
+ "start": 5740,
+ "end": 5740.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 10983
+ },
+ {
+ "start": 5740.28,
+ "end": 5740.76,
+ "confidence": 0,
+ "word": "basic",
+ "punct": "basic",
+ "index": 10984
+ },
+ {
+ "start": 5740.76,
+ "end": 5741.46,
+ "confidence": 0,
+ "word": "functionality,",
+ "punct": "functionality,",
+ "index": 10985
+ },
+ {
+ "start": 5741.46,
+ "end": 5742.16,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 10986
+ },
+ {
+ "start": 5742.16,
+ "end": 5742.68,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 10987
+ },
+ {
+ "start": 5742.68,
+ "end": 5742.96,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 10988
+ },
+ {
+ "start": 5742.96,
+ "end": 5743.06,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 10989
+ },
+ {
+ "start": 5743.06,
+ "end": 5743.18,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 10990
+ },
+ {
+ "start": 5743.18,
+ "end": 5743.28,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10991
+ },
+ {
+ "start": 5743.28,
+ "end": 5743.68,
+ "confidence": 0,
+ "word": "controls",
+ "punct": "controls",
+ "index": 10992
+ },
+ {
+ "start": 5743.68,
+ "end": 5743.84,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 10993
+ },
+ {
+ "start": 5743.84,
+ "end": 5744.06,
+ "confidence": 0,
+ "word": "line",
+ "punct": "line",
+ "index": 10994
+ },
+ {
+ "start": 5744.06,
+ "end": 5744.3,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 10995
+ },
+ {
+ "start": 5744.3,
+ "end": 5744.58,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 10996
+ },
+ {
+ "start": 5744.58,
+ "end": 5745.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 10997
+ },
+ {
+ "start": 5745.3,
+ "end": 5745.8,
+ "confidence": 0,
+ "word": "given",
+ "punct": "given",
+ "index": 10998
+ },
+ {
+ "start": 5745.8,
+ "end": 5746.48,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 10999
+ },
+ {
+ "start": 5746.48,
+ "end": 5746.96,
+ "confidence": 0,
+ "word": "volume",
+ "punct": "volume",
+ "index": 11000
+ },
+ {
+ "start": 5746.96,
+ "end": 5747.36,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11001
+ },
+ {
+ "start": 5747.36,
+ "end": 5748.16,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11002
+ },
+ {
+ "start": 5748.16,
+ "end": 5748.62,
+ "confidence": 0,
+ "word": "activity",
+ "punct": "activity",
+ "index": 11003
+ },
+ {
+ "start": 5748.62,
+ "end": 5748.82,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11004
+ },
+ {
+ "start": 5748.82,
+ "end": 5748.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11005
+ },
+ {
+ "start": 5748.94,
+ "end": 5749.28,
+ "confidence": 0,
+ "word": "value",
+ "punct": "value",
+ "index": 11006
+ },
+ {
+ "start": 5749.28,
+ "end": 5749.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11007
+ },
+ {
+ "start": 5749.44,
+ "end": 5749.76,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 11008
+ },
+ {
+ "start": 5749.76,
+ "end": 5750.16,
+ "confidence": 0,
+ "word": "tell",
+ "punct": "tell",
+ "index": 11009
+ },
+ {
+ "start": 5750.16,
+ "end": 5750.26,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 11010
+ },
+ {
+ "start": 5750.26,
+ "end": 5750.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11011
+ },
+ {
+ "start": 5750.4,
+ "end": 5750.58,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 11012
+ },
+ {
+ "start": 5750.58,
+ "end": 5750.8,
+ "confidence": 0,
+ "word": "getting",
+ "punct": "getting",
+ "index": 11013
+ },
+ {
+ "start": 5750.8,
+ "end": 5750.96,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 11014
+ },
+ {
+ "start": 5750.96,
+ "end": 5751.56,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 11015
+ }
+ ],
+ "start": 5738.36
+ }
+ },
+ {
+ "key": "848tr",
+ "text": "I think that that control in line does seem to be working fairly well.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5751.56,
+ "end": 5751.9,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11016
+ },
+ {
+ "start": 5751.9,
+ "end": 5752.26,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 11017
+ },
+ {
+ "start": 5752.26,
+ "end": 5752.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11018
+ },
+ {
+ "start": 5752.4,
+ "end": 5752.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11019
+ },
+ {
+ "start": 5752.72,
+ "end": 5753.32,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 11020
+ },
+ {
+ "start": 5753.32,
+ "end": 5753.54,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11021
+ },
+ {
+ "start": 5753.54,
+ "end": 5753.86,
+ "confidence": 0,
+ "word": "line",
+ "punct": "line",
+ "index": 11022
+ },
+ {
+ "start": 5753.86,
+ "end": 5754.32,
+ "confidence": 0,
+ "word": "does",
+ "punct": "does",
+ "index": 11023
+ },
+ {
+ "start": 5754.32,
+ "end": 5754.58,
+ "confidence": 0,
+ "word": "seem",
+ "punct": "seem",
+ "index": 11024
+ },
+ {
+ "start": 5754.58,
+ "end": 5754.7,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11025
+ },
+ {
+ "start": 5754.7,
+ "end": 5754.82,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 11026
+ },
+ {
+ "start": 5754.82,
+ "end": 5755.1,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 11027
+ },
+ {
+ "start": 5755.1,
+ "end": 5755.48,
+ "confidence": 0,
+ "word": "fairly",
+ "punct": "fairly",
+ "index": 11028
+ },
+ {
+ "start": 5755.48,
+ "end": 5755.7,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well.",
+ "index": 11029
+ }
+ ],
+ "start": 5751.56
+ }
+ },
+ {
+ "key": "ai52e",
+ "text": "Now we can always do better and there are other services are complex and there is more to it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5755.7,
+ "end": 5756.2,
+ "confidence": 0,
+ "word": "now",
+ "punct": "Now",
+ "index": 11030
+ },
+ {
+ "start": 5756.2,
+ "end": 5756.3,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11031
+ },
+ {
+ "start": 5756.3,
+ "end": 5756.44,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 11032
+ },
+ {
+ "start": 5756.44,
+ "end": 5756.7,
+ "confidence": 0,
+ "word": "always",
+ "punct": "always",
+ "index": 11033
+ },
+ {
+ "start": 5756.7,
+ "end": 5756.8,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 11034
+ },
+ {
+ "start": 5756.8,
+ "end": 5757.06,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better",
+ "index": 11035
+ },
+ {
+ "start": 5757.06,
+ "end": 5757.64,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11036
+ },
+ {
+ "start": 5757.64,
+ "end": 5757.8,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 11037
+ },
+ {
+ "start": 5757.8,
+ "end": 5757.92,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 11038
+ },
+ {
+ "start": 5757.92,
+ "end": 5758.16,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 11039
+ },
+ {
+ "start": 5758.16,
+ "end": 5759.14,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 11040
+ },
+ {
+ "start": 5759.14,
+ "end": 5759.32,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 11041
+ },
+ {
+ "start": 5759.32,
+ "end": 5759.74,
+ "confidence": 0,
+ "word": "complex",
+ "punct": "complex",
+ "index": 11042
+ },
+ {
+ "start": 5759.74,
+ "end": 5759.9,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11043
+ },
+ {
+ "start": 5759.9,
+ "end": 5760.04,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 11044
+ },
+ {
+ "start": 5760.04,
+ "end": 5760.6,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11045
+ },
+ {
+ "start": 5760.6,
+ "end": 5760.88,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 11046
+ },
+ {
+ "start": 5760.88,
+ "end": 5761.04,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11047
+ },
+ {
+ "start": 5761.04,
+ "end": 5761.14,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 11048
+ }
+ ],
+ "start": 5755.7
+ }
+ },
+ {
+ "key": "7sfok",
+ "text": "Than just you go and you post a photo.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5761.14,
+ "end": 5761.38,
+ "confidence": 0,
+ "word": "than",
+ "punct": "Than",
+ "index": 11049
+ },
+ {
+ "start": 5761.38,
+ "end": 5762.4,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 11050
+ },
+ {
+ "start": 5762.4,
+ "end": 5763.54,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11051
+ },
+ {
+ "start": 5763.54,
+ "end": 5763.66,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 11052
+ },
+ {
+ "start": 5763.66,
+ "end": 5763.82,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11053
+ },
+ {
+ "start": 5763.82,
+ "end": 5763.94,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11054
+ },
+ {
+ "start": 5763.94,
+ "end": 5764.14,
+ "confidence": 0,
+ "word": "post",
+ "punct": "post",
+ "index": 11055
+ },
+ {
+ "start": 5764.14,
+ "end": 5764.24,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11056
+ },
+ {
+ "start": 5764.24,
+ "end": 5764.52,
+ "confidence": 0,
+ "word": "photo",
+ "punct": "photo.",
+ "index": 11057
+ }
+ ],
+ "start": 5761.14
+ }
+ },
+ {
+ "key": "1cbc7",
+ "text": "So I agree that in many places we could do better.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5764.52,
+ "end": 5765.64,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 11058
+ },
+ {
+ "start": 5765.64,
+ "end": 5766.54,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11059
+ },
+ {
+ "start": 5766.54,
+ "end": 5766.84,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 11060
+ },
+ {
+ "start": 5766.84,
+ "end": 5767.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11061
+ },
+ {
+ "start": 5767.36,
+ "end": 5767.48,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11062
+ },
+ {
+ "start": 5767.48,
+ "end": 5767.68,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 11063
+ },
+ {
+ "start": 5767.68,
+ "end": 5768,
+ "confidence": 0,
+ "word": "places",
+ "punct": "places",
+ "index": 11064
+ },
+ {
+ "start": 5768,
+ "end": 5768.1,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11065
+ },
+ {
+ "start": 5768.1,
+ "end": 5768.24,
+ "confidence": 0,
+ "word": "could",
+ "punct": "could",
+ "index": 11066
+ },
+ {
+ "start": 5768.24,
+ "end": 5768.32,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 11067
+ },
+ {
+ "start": 5768.32,
+ "end": 5768.52,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better.",
+ "index": 11068
+ }
+ ],
+ "start": 5764.52
+ }
+ },
+ {
+ "key": "54lms",
+ "text": "But I think for the core of the service it actually is quite clear.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5768.52,
+ "end": 5768.62,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 11069
+ },
+ {
+ "start": 5768.62,
+ "end": 5768.66,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11070
+ },
+ {
+ "start": 5768.66,
+ "end": 5768.82,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 11071
+ },
+ {
+ "start": 5768.82,
+ "end": 5768.92,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 11072
+ },
+ {
+ "start": 5768.92,
+ "end": 5769.04,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11073
+ },
+ {
+ "start": 5769.04,
+ "end": 5769.24,
+ "confidence": 0,
+ "word": "core",
+ "punct": "core",
+ "index": 11074
+ },
+ {
+ "start": 5769.24,
+ "end": 5769.32,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11075
+ },
+ {
+ "start": 5769.32,
+ "end": 5769.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11076
+ },
+ {
+ "start": 5769.44,
+ "end": 5769.8,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 11077
+ },
+ {
+ "start": 5769.8,
+ "end": 5770.06,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 11078
+ },
+ {
+ "start": 5770.06,
+ "end": 5770.46,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 11079
+ },
+ {
+ "start": 5770.46,
+ "end": 5770.7,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11080
+ },
+ {
+ "start": 5770.7,
+ "end": 5771.46,
+ "confidence": 0,
+ "word": "quite",
+ "punct": "quite",
+ "index": 11081
+ },
+ {
+ "start": 5771.46,
+ "end": 5771.74,
+ "confidence": 0,
+ "word": "clear",
+ "punct": "clear.",
+ "index": 11082
+ }
+ ],
+ "start": 5768.52
+ }
+ },
+ {
+ "key": "puso",
+ "text": "Thank you, Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5771.74,
+ "end": 5772.42,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 11083
+ },
+ {
+ "start": 5772.42,
+ "end": 5772.52,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 11084
+ },
+ {
+ "start": 5772.52,
+ "end": 5772.82,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 11085
+ }
+ ],
+ "start": 5771.74
+ }
+ },
+ {
+ "key": "13fe",
+ "text": "Graham center kosher.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5772.82,
+ "end": 5773.04,
+ "confidence": 0,
+ "word": "graham",
+ "punct": "Graham",
+ "index": 11086
+ },
+ {
+ "start": 5773.04,
+ "end": 5773.24,
+ "confidence": 0,
+ "word": "center",
+ "punct": "center",
+ "index": 11087
+ },
+ {
+ "start": 5773.24,
+ "end": 5774.26,
+ "confidence": 0,
+ "word": "kosher",
+ "punct": "kosher.",
+ "index": 11088
+ }
+ ],
+ "start": 5772.82
+ }
+ },
+ {
+ "key": "d7tc",
+ "text": "Thank you, Mr Mr Zuckerberg.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5774.26,
+ "end": 5774.44,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 11089
+ },
+ {
+ "start": 5774.44,
+ "end": 5774.56,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 11090
+ },
+ {
+ "start": 5774.56,
+ "end": 5775,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 11091
+ },
+ {
+ "start": 5775,
+ "end": 5775.52,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 11092
+ },
+ {
+ "start": 5775.52,
+ "end": 5776,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg.",
+ "index": 11093
+ }
+ ],
+ "start": 5774.26
+ }
+ },
+ {
+ "key": "b5485",
+ "text": "I think we all agree that what happened here was bad you acknowledge it was a breach of trust and the way I explained it to my constituents.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5776,
+ "end": 5776.28,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11094
+ },
+ {
+ "start": 5776.28,
+ "end": 5776.46,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 11095
+ },
+ {
+ "start": 5776.46,
+ "end": 5776.58,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11096
+ },
+ {
+ "start": 5776.58,
+ "end": 5776.74,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 11097
+ },
+ {
+ "start": 5776.74,
+ "end": 5777.06,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 11098
+ },
+ {
+ "start": 5777.06,
+ "end": 5777.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11099
+ },
+ {
+ "start": 5777.28,
+ "end": 5777.48,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 11100
+ },
+ {
+ "start": 5777.48,
+ "end": 5777.82,
+ "confidence": 0,
+ "word": "happened",
+ "punct": "happened",
+ "index": 11101
+ },
+ {
+ "start": 5777.82,
+ "end": 5777.96,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 11102
+ },
+ {
+ "start": 5777.96,
+ "end": 5778.14,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 11103
+ },
+ {
+ "start": 5778.14,
+ "end": 5778.46,
+ "confidence": 0,
+ "word": "bad",
+ "punct": "bad",
+ "index": 11104
+ },
+ {
+ "start": 5778.46,
+ "end": 5778.64,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11105
+ },
+ {
+ "start": 5778.64,
+ "end": 5779.14,
+ "confidence": 0,
+ "word": "acknowledge",
+ "punct": "acknowledge",
+ "index": 11106
+ },
+ {
+ "start": 5779.14,
+ "end": 5779.28,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 11107
+ },
+ {
+ "start": 5779.28,
+ "end": 5779.42,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 11108
+ },
+ {
+ "start": 5779.42,
+ "end": 5779.5,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11109
+ },
+ {
+ "start": 5779.5,
+ "end": 5779.8,
+ "confidence": 0,
+ "word": "breach",
+ "punct": "breach",
+ "index": 11110
+ },
+ {
+ "start": 5779.8,
+ "end": 5779.92,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11111
+ },
+ {
+ "start": 5779.92,
+ "end": 5780.34,
+ "confidence": 0,
+ "word": "trust",
+ "punct": "trust",
+ "index": 11112
+ },
+ {
+ "start": 5780.34,
+ "end": 5780.56,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11113
+ },
+ {
+ "start": 5780.56,
+ "end": 5780.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11114
+ },
+ {
+ "start": 5780.94,
+ "end": 5781.06,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 11115
+ },
+ {
+ "start": 5781.06,
+ "end": 5781.14,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11116
+ },
+ {
+ "start": 5781.14,
+ "end": 5781.52,
+ "confidence": 0,
+ "word": "explained",
+ "punct": "explained",
+ "index": 11117
+ },
+ {
+ "start": 5781.52,
+ "end": 5781.62,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 11118
+ },
+ {
+ "start": 5781.62,
+ "end": 5781.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11119
+ },
+ {
+ "start": 5781.72,
+ "end": 5781.88,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 11120
+ },
+ {
+ "start": 5781.88,
+ "end": 5782.6,
+ "confidence": 0,
+ "word": "constituents",
+ "punct": "constituents.",
+ "index": 11121
+ }
+ ],
+ "start": 5776
+ }
+ },
+ {
+ "key": "crj0u",
+ "text": "Is that if someone breaks into my apartment with a crowbar and they take my stuff it's just like if the manager gave them the keys or if they didn't have any locks on the doors it's still a breach I'd still a break in and I believe we need to have laws and rules that are sophisticated as the brilliant products that you've developed here.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5782.6,
+ "end": 5782.76,
+ "confidence": 0,
+ "word": "is",
+ "punct": "Is",
+ "index": 11122
+ },
+ {
+ "start": 5782.76,
+ "end": 5782.92,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11123
+ },
+ {
+ "start": 5782.92,
+ "end": 5783.04,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 11124
+ },
+ {
+ "start": 5783.04,
+ "end": 5783.4,
+ "confidence": 0,
+ "word": "someone",
+ "punct": "someone",
+ "index": 11125
+ },
+ {
+ "start": 5783.4,
+ "end": 5783.96,
+ "confidence": 0,
+ "word": "breaks",
+ "punct": "breaks",
+ "index": 11126
+ },
+ {
+ "start": 5783.96,
+ "end": 5784.22,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 11127
+ },
+ {
+ "start": 5784.22,
+ "end": 5784.36,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 11128
+ },
+ {
+ "start": 5784.36,
+ "end": 5784.76,
+ "confidence": 0,
+ "word": "apartment",
+ "punct": "apartment",
+ "index": 11129
+ },
+ {
+ "start": 5784.76,
+ "end": 5784.92,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 11130
+ },
+ {
+ "start": 5784.92,
+ "end": 5785.04,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11131
+ },
+ {
+ "start": 5785.04,
+ "end": 5785.58,
+ "confidence": 0,
+ "word": "crowbar",
+ "punct": "crowbar",
+ "index": 11132
+ },
+ {
+ "start": 5785.58,
+ "end": 5786.22,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11133
+ },
+ {
+ "start": 5786.22,
+ "end": 5786.46,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 11134
+ },
+ {
+ "start": 5786.46,
+ "end": 5786.74,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 11135
+ },
+ {
+ "start": 5786.74,
+ "end": 5787,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 11136
+ },
+ {
+ "start": 5787,
+ "end": 5787.6,
+ "confidence": 0,
+ "word": "stuff",
+ "punct": "stuff",
+ "index": 11137
+ },
+ {
+ "start": 5787.6,
+ "end": 5788.14,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 11138
+ },
+ {
+ "start": 5788.14,
+ "end": 5788.36,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 11139
+ },
+ {
+ "start": 5788.36,
+ "end": 5788.58,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 11140
+ },
+ {
+ "start": 5788.58,
+ "end": 5788.72,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 11141
+ },
+ {
+ "start": 5788.72,
+ "end": 5788.86,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11142
+ },
+ {
+ "start": 5788.86,
+ "end": 5789.28,
+ "confidence": 0,
+ "word": "manager",
+ "punct": "manager",
+ "index": 11143
+ },
+ {
+ "start": 5789.28,
+ "end": 5789.46,
+ "confidence": 0,
+ "word": "gave",
+ "punct": "gave",
+ "index": 11144
+ },
+ {
+ "start": 5789.46,
+ "end": 5789.64,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 11145
+ },
+ {
+ "start": 5789.64,
+ "end": 5789.76,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11146
+ },
+ {
+ "start": 5789.76,
+ "end": 5790.14,
+ "confidence": 0,
+ "word": "keys",
+ "punct": "keys",
+ "index": 11147
+ },
+ {
+ "start": 5790.14,
+ "end": 5790.32,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 11148
+ },
+ {
+ "start": 5790.32,
+ "end": 5790.46,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 11149
+ },
+ {
+ "start": 5790.46,
+ "end": 5790.6,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 11150
+ },
+ {
+ "start": 5790.6,
+ "end": 5790.84,
+ "confidence": 0,
+ "word": "didn't",
+ "punct": "didn't",
+ "index": 11151
+ },
+ {
+ "start": 5790.84,
+ "end": 5791,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11152
+ },
+ {
+ "start": 5791,
+ "end": 5791.22,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 11153
+ },
+ {
+ "start": 5791.22,
+ "end": 5791.54,
+ "confidence": 0,
+ "word": "locks",
+ "punct": "locks",
+ "index": 11154
+ },
+ {
+ "start": 5791.54,
+ "end": 5791.7,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11155
+ },
+ {
+ "start": 5791.7,
+ "end": 5791.84,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11156
+ },
+ {
+ "start": 5791.84,
+ "end": 5792.22,
+ "confidence": 0,
+ "word": "doors",
+ "punct": "doors",
+ "index": 11157
+ },
+ {
+ "start": 5792.22,
+ "end": 5792.44,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 11158
+ },
+ {
+ "start": 5792.44,
+ "end": 5792.72,
+ "confidence": 0,
+ "word": "still",
+ "punct": "still",
+ "index": 11159
+ },
+ {
+ "start": 5792.72,
+ "end": 5792.8,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11160
+ },
+ {
+ "start": 5792.8,
+ "end": 5793.18,
+ "confidence": 0,
+ "word": "breach",
+ "punct": "breach",
+ "index": 11161
+ },
+ {
+ "start": 5793.18,
+ "end": 5793.76,
+ "confidence": 0,
+ "word": "i'd",
+ "punct": "I'd",
+ "index": 11162
+ },
+ {
+ "start": 5793.76,
+ "end": 5794,
+ "confidence": 0,
+ "word": "still",
+ "punct": "still",
+ "index": 11163
+ },
+ {
+ "start": 5794,
+ "end": 5794.08,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11164
+ },
+ {
+ "start": 5794.08,
+ "end": 5794.38,
+ "confidence": 0,
+ "word": "break",
+ "punct": "break",
+ "index": 11165
+ },
+ {
+ "start": 5794.38,
+ "end": 5794.62,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11166
+ },
+ {
+ "start": 5794.62,
+ "end": 5795.28,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11167
+ },
+ {
+ "start": 5795.28,
+ "end": 5795.86,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11168
+ },
+ {
+ "start": 5795.86,
+ "end": 5796.18,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 11169
+ },
+ {
+ "start": 5796.18,
+ "end": 5796.32,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11170
+ },
+ {
+ "start": 5796.32,
+ "end": 5796.52,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 11171
+ },
+ {
+ "start": 5796.52,
+ "end": 5796.6,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11172
+ },
+ {
+ "start": 5796.6,
+ "end": 5796.78,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11173
+ },
+ {
+ "start": 5796.78,
+ "end": 5797.2,
+ "confidence": 0,
+ "word": "laws",
+ "punct": "laws",
+ "index": 11174
+ },
+ {
+ "start": 5797.2,
+ "end": 5797.36,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11175
+ },
+ {
+ "start": 5797.36,
+ "end": 5797.8,
+ "confidence": 0,
+ "word": "rules",
+ "punct": "rules",
+ "index": 11176
+ },
+ {
+ "start": 5797.8,
+ "end": 5798.24,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11177
+ },
+ {
+ "start": 5798.24,
+ "end": 5798.4,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 11178
+ },
+ {
+ "start": 5798.4,
+ "end": 5799.32,
+ "confidence": 0,
+ "word": "sophisticated",
+ "punct": "sophisticated",
+ "index": 11179
+ },
+ {
+ "start": 5799.32,
+ "end": 5799.64,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 11180
+ },
+ {
+ "start": 5799.64,
+ "end": 5799.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11181
+ },
+ {
+ "start": 5799.98,
+ "end": 5801.21,
+ "confidence": 0,
+ "word": "brilliant",
+ "punct": "brilliant",
+ "index": 11182
+ },
+ {
+ "start": 5801.21,
+ "end": 5801.63,
+ "confidence": 0,
+ "word": "products",
+ "punct": "products",
+ "index": 11183
+ },
+ {
+ "start": 5801.63,
+ "end": 5801.85,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11184
+ },
+ {
+ "start": 5801.85,
+ "end": 5802.05,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 11185
+ },
+ {
+ "start": 5802.05,
+ "end": 5802.47,
+ "confidence": 0,
+ "word": "developed",
+ "punct": "developed",
+ "index": 11186
+ },
+ {
+ "start": 5802.47,
+ "end": 5802.71,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here.",
+ "index": 11187
+ }
+ ],
+ "start": 5782.6
+ }
+ },
+ {
+ "key": "cjkcf",
+ "text": "And we just haven't done that yet and one of the areas that I focused on is the election.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5802.71,
+ "end": 5803.13,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 11188
+ },
+ {
+ "start": 5803.13,
+ "end": 5803.27,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11189
+ },
+ {
+ "start": 5803.27,
+ "end": 5803.45,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 11190
+ },
+ {
+ "start": 5803.45,
+ "end": 5803.75,
+ "confidence": 0,
+ "word": "haven't",
+ "punct": "haven't",
+ "index": 11191
+ },
+ {
+ "start": 5803.75,
+ "end": 5803.95,
+ "confidence": 0,
+ "word": "done",
+ "punct": "done",
+ "index": 11192
+ },
+ {
+ "start": 5803.95,
+ "end": 5804.17,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11193
+ },
+ {
+ "start": 5804.17,
+ "end": 5804.39,
+ "confidence": 0,
+ "word": "yet",
+ "punct": "yet",
+ "index": 11194
+ },
+ {
+ "start": 5804.39,
+ "end": 5804.95,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11195
+ },
+ {
+ "start": 5804.95,
+ "end": 5805.25,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 11196
+ },
+ {
+ "start": 5805.25,
+ "end": 5805.35,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11197
+ },
+ {
+ "start": 5805.35,
+ "end": 5805.49,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11198
+ },
+ {
+ "start": 5805.49,
+ "end": 5805.91,
+ "confidence": 0,
+ "word": "areas",
+ "punct": "areas",
+ "index": 11199
+ },
+ {
+ "start": 5805.91,
+ "end": 5806.09,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11200
+ },
+ {
+ "start": 5806.09,
+ "end": 5806.17,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11201
+ },
+ {
+ "start": 5806.17,
+ "end": 5806.69,
+ "confidence": 0,
+ "word": "focused",
+ "punct": "focused",
+ "index": 11202
+ },
+ {
+ "start": 5806.69,
+ "end": 5806.89,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11203
+ },
+ {
+ "start": 5806.89,
+ "end": 5807.11,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11204
+ },
+ {
+ "start": 5807.11,
+ "end": 5807.27,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11205
+ },
+ {
+ "start": 5807.27,
+ "end": 5807.77,
+ "confidence": 0,
+ "word": "election",
+ "punct": "election.",
+ "index": 11206
+ }
+ ],
+ "start": 5802.71
+ }
+ },
+ {
+ "key": "102c",
+ "text": "And I appreciate the support that you and Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5807.77,
+ "end": 5808.03,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 11207
+ },
+ {
+ "start": 5808.03,
+ "end": 5808.13,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11208
+ },
+ {
+ "start": 5808.13,
+ "end": 5808.73,
+ "confidence": 0,
+ "word": "appreciate",
+ "punct": "appreciate",
+ "index": 11209
+ },
+ {
+ "start": 5808.73,
+ "end": 5809.13,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11210
+ },
+ {
+ "start": 5809.13,
+ "end": 5809.53,
+ "confidence": 0,
+ "word": "support",
+ "punct": "support",
+ "index": 11211
+ },
+ {
+ "start": 5809.53,
+ "end": 5809.71,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11212
+ },
+ {
+ "start": 5809.71,
+ "end": 5809.83,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11213
+ },
+ {
+ "start": 5809.83,
+ "end": 5810.01,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11214
+ },
+ {
+ "start": 5810.01,
+ "end": 5810.55,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 11215
+ }
+ ],
+ "start": 5807.77
+ }
+ },
+ {
+ "key": "1aef9",
+ "text": "And now Twitter actually have given to the honest ads act.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5810.55,
+ "end": 5811.13,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 11216
+ },
+ {
+ "start": 5811.13,
+ "end": 5811.35,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 11217
+ },
+ {
+ "start": 5811.35,
+ "end": 5811.77,
+ "confidence": 0,
+ "word": "twitter",
+ "punct": "Twitter",
+ "index": 11218
+ },
+ {
+ "start": 5811.77,
+ "end": 5812.29,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 11219
+ },
+ {
+ "start": 5812.29,
+ "end": 5812.51,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11220
+ },
+ {
+ "start": 5812.51,
+ "end": 5812.85,
+ "confidence": 0,
+ "word": "given",
+ "punct": "given",
+ "index": 11221
+ },
+ {
+ "start": 5812.85,
+ "end": 5813.05,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11222
+ },
+ {
+ "start": 5813.05,
+ "end": 5813.17,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11223
+ },
+ {
+ "start": 5813.17,
+ "end": 5813.55,
+ "confidence": 0,
+ "word": "honest",
+ "punct": "honest",
+ "index": 11224
+ },
+ {
+ "start": 5813.55,
+ "end": 5813.85,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 11225
+ },
+ {
+ "start": 5813.85,
+ "end": 5814.21,
+ "confidence": 0,
+ "word": "act",
+ "punct": "act.",
+ "index": 11226
+ }
+ ],
+ "start": 5810.55
+ }
+ },
+ {
+ "key": "dnnep",
+ "text": "A bill that you mentioned that I'm leading with Senator McCain and Senator Warner.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5814.21,
+ "end": 5814.33,
+ "confidence": 0,
+ "word": "a",
+ "punct": "A",
+ "index": 11227
+ },
+ {
+ "start": 5814.33,
+ "end": 5814.82,
+ "confidence": 0,
+ "word": "bill",
+ "punct": "bill",
+ "index": 11228
+ },
+ {
+ "start": 5814.82,
+ "end": 5815.22,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11229
+ },
+ {
+ "start": 5815.22,
+ "end": 5815.36,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11230
+ },
+ {
+ "start": 5815.36,
+ "end": 5815.78,
+ "confidence": 0,
+ "word": "mentioned",
+ "punct": "mentioned",
+ "index": 11231
+ },
+ {
+ "start": 5815.78,
+ "end": 5815.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11232
+ },
+ {
+ "start": 5815.98,
+ "end": 5816.14,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 11233
+ },
+ {
+ "start": 5816.14,
+ "end": 5816.48,
+ "confidence": 0,
+ "word": "leading",
+ "punct": "leading",
+ "index": 11234
+ },
+ {
+ "start": 5816.48,
+ "end": 5816.68,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 11235
+ },
+ {
+ "start": 5816.68,
+ "end": 5817.18,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 11236
+ },
+ {
+ "start": 5817.18,
+ "end": 5818.06,
+ "confidence": 0,
+ "word": "mccain",
+ "punct": "McCain",
+ "index": 11237
+ },
+ {
+ "start": 5818.06,
+ "end": 5818.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11238
+ },
+ {
+ "start": 5818.26,
+ "end": 5818.68,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 11239
+ },
+ {
+ "start": 5818.68,
+ "end": 5819.1,
+ "confidence": 0,
+ "word": "warner",
+ "punct": "Warner.",
+ "index": 11240
+ }
+ ],
+ "start": 5814.21
+ }
+ },
+ {
+ "key": "bv0cc",
+ "text": "And I just want to be clear as we work to pass this law so that we have the same rules in place to disclose political ads and issue ads as we do for TV and radio as well as disclaimers that you're going to take early action as soon as June.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5819.1,
+ "end": 5819.66,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 11241
+ },
+ {
+ "start": 5819.66,
+ "end": 5819.78,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11242
+ },
+ {
+ "start": 5819.78,
+ "end": 5819.96,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 11243
+ },
+ {
+ "start": 5819.96,
+ "end": 5820.14,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 11244
+ },
+ {
+ "start": 5820.14,
+ "end": 5820.2,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11245
+ },
+ {
+ "start": 5820.2,
+ "end": 5820.32,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 11246
+ },
+ {
+ "start": 5820.32,
+ "end": 5820.56,
+ "confidence": 0,
+ "word": "clear",
+ "punct": "clear",
+ "index": 11247
+ },
+ {
+ "start": 5820.56,
+ "end": 5820.86,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 11248
+ },
+ {
+ "start": 5820.86,
+ "end": 5820.96,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11249
+ },
+ {
+ "start": 5820.96,
+ "end": 5821.24,
+ "confidence": 0,
+ "word": "work",
+ "punct": "work",
+ "index": 11250
+ },
+ {
+ "start": 5821.24,
+ "end": 5821.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11251
+ },
+ {
+ "start": 5821.38,
+ "end": 5821.8,
+ "confidence": 0,
+ "word": "pass",
+ "punct": "pass",
+ "index": 11252
+ },
+ {
+ "start": 5821.8,
+ "end": 5822.08,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 11253
+ },
+ {
+ "start": 5822.08,
+ "end": 5822.36,
+ "confidence": 0,
+ "word": "law",
+ "punct": "law",
+ "index": 11254
+ },
+ {
+ "start": 5822.36,
+ "end": 5822.92,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 11255
+ },
+ {
+ "start": 5822.92,
+ "end": 5823.08,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11256
+ },
+ {
+ "start": 5823.08,
+ "end": 5823.2,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11257
+ },
+ {
+ "start": 5823.2,
+ "end": 5823.32,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11258
+ },
+ {
+ "start": 5823.32,
+ "end": 5823.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11259
+ },
+ {
+ "start": 5823.44,
+ "end": 5823.66,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 11260
+ },
+ {
+ "start": 5823.66,
+ "end": 5823.88,
+ "confidence": 0,
+ "word": "rules",
+ "punct": "rules",
+ "index": 11261
+ },
+ {
+ "start": 5823.88,
+ "end": 5824.08,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11262
+ },
+ {
+ "start": 5824.08,
+ "end": 5824.44,
+ "confidence": 0,
+ "word": "place",
+ "punct": "place",
+ "index": 11263
+ },
+ {
+ "start": 5824.44,
+ "end": 5824.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11264
+ },
+ {
+ "start": 5824.66,
+ "end": 5825.26,
+ "confidence": 0,
+ "word": "disclose",
+ "punct": "disclose",
+ "index": 11265
+ },
+ {
+ "start": 5825.26,
+ "end": 5826.1,
+ "confidence": 0,
+ "word": "political",
+ "punct": "political",
+ "index": 11266
+ },
+ {
+ "start": 5826.1,
+ "end": 5826.48,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 11267
+ },
+ {
+ "start": 5826.48,
+ "end": 5826.88,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11268
+ },
+ {
+ "start": 5826.88,
+ "end": 5827.32,
+ "confidence": 0,
+ "word": "issue",
+ "punct": "issue",
+ "index": 11269
+ },
+ {
+ "start": 5827.32,
+ "end": 5828,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 11270
+ },
+ {
+ "start": 5828,
+ "end": 5828.56,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 11271
+ },
+ {
+ "start": 5828.56,
+ "end": 5828.7,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11272
+ },
+ {
+ "start": 5828.7,
+ "end": 5828.9,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 11273
+ },
+ {
+ "start": 5828.9,
+ "end": 5829.2,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 11274
+ },
+ {
+ "start": 5829.2,
+ "end": 5829.6,
+ "confidence": 0,
+ "word": "tv",
+ "punct": "TV",
+ "index": 11275
+ },
+ {
+ "start": 5829.6,
+ "end": 5829.72,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11276
+ },
+ {
+ "start": 5829.72,
+ "end": 5830.16,
+ "confidence": 0,
+ "word": "radio",
+ "punct": "radio",
+ "index": 11277
+ },
+ {
+ "start": 5830.16,
+ "end": 5830.52,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 11278
+ },
+ {
+ "start": 5830.52,
+ "end": 5830.7,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well",
+ "index": 11279
+ },
+ {
+ "start": 5830.7,
+ "end": 5830.8,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 11280
+ },
+ {
+ "start": 5830.8,
+ "end": 5831.46,
+ "confidence": 0,
+ "word": "disclaimers",
+ "punct": "disclaimers",
+ "index": 11281
+ },
+ {
+ "start": 5831.46,
+ "end": 5831.82,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11282
+ },
+ {
+ "start": 5831.82,
+ "end": 5832.02,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 11283
+ },
+ {
+ "start": 5832.02,
+ "end": 5832.16,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 11284
+ },
+ {
+ "start": 5832.16,
+ "end": 5832.24,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11285
+ },
+ {
+ "start": 5832.24,
+ "end": 5832.4,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 11286
+ },
+ {
+ "start": 5832.4,
+ "end": 5832.8,
+ "confidence": 0,
+ "word": "early",
+ "punct": "early",
+ "index": 11287
+ },
+ {
+ "start": 5832.8,
+ "end": 5833.3,
+ "confidence": 0,
+ "word": "action",
+ "punct": "action",
+ "index": 11288
+ },
+ {
+ "start": 5833.3,
+ "end": 5833.48,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 11289
+ },
+ {
+ "start": 5833.48,
+ "end": 5833.7,
+ "confidence": 0,
+ "word": "soon",
+ "punct": "soon",
+ "index": 11290
+ },
+ {
+ "start": 5833.7,
+ "end": 5833.86,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 11291
+ },
+ {
+ "start": 5833.86,
+ "end": 5834.24,
+ "confidence": 0,
+ "word": "june",
+ "punct": "June.",
+ "index": 11292
+ }
+ ],
+ "start": 5819.1
+ }
+ },
+ {
+ "key": "cqk7i",
+ "text": "I heard before this election so that people can view these ads, including issue ads.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5834.24,
+ "end": 5834.4,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11293
+ },
+ {
+ "start": 5834.4,
+ "end": 5834.68,
+ "confidence": 0,
+ "word": "heard",
+ "punct": "heard",
+ "index": 11294
+ },
+ {
+ "start": 5834.68,
+ "end": 5835.52,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 11295
+ },
+ {
+ "start": 5835.52,
+ "end": 5835.72,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 11296
+ },
+ {
+ "start": 5835.72,
+ "end": 5836.2,
+ "confidence": 0,
+ "word": "election",
+ "punct": "election",
+ "index": 11297
+ },
+ {
+ "start": 5836.2,
+ "end": 5836.62,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 11298
+ },
+ {
+ "start": 5836.62,
+ "end": 5836.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11299
+ },
+ {
+ "start": 5836.8,
+ "end": 5837.06,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 11300
+ },
+ {
+ "start": 5837.06,
+ "end": 5837.24,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 11301
+ },
+ {
+ "start": 5837.24,
+ "end": 5837.46,
+ "confidence": 0,
+ "word": "view",
+ "punct": "view",
+ "index": 11302
+ },
+ {
+ "start": 5837.46,
+ "end": 5837.68,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 11303
+ },
+ {
+ "start": 5837.68,
+ "end": 5838.02,
+ "confidence": 0,
+ "word": "ads,",
+ "punct": "ads,",
+ "index": 11304
+ },
+ {
+ "start": 5838.02,
+ "end": 5838.54,
+ "confidence": 0,
+ "word": "including",
+ "punct": "including",
+ "index": 11305
+ },
+ {
+ "start": 5838.54,
+ "end": 5838.98,
+ "confidence": 0,
+ "word": "issue",
+ "punct": "issue",
+ "index": 11306
+ },
+ {
+ "start": 5838.98,
+ "end": 5839.22,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads.",
+ "index": 11307
+ }
+ ],
+ "start": 5834.24
+ }
+ },
+ {
+ "key": "f8996",
+ "text": "Is that correct, that is correct, Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5839.22,
+ "end": 5839.4,
+ "confidence": 0,
+ "word": "is",
+ "punct": "Is",
+ "index": 11308
+ },
+ {
+ "start": 5839.4,
+ "end": 5839.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11309
+ },
+ {
+ "start": 5839.6,
+ "end": 5839.96,
+ "confidence": 0,
+ "word": "correct,",
+ "punct": "correct,",
+ "index": 11310
+ },
+ {
+ "start": 5839.96,
+ "end": 5841.08,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11311
+ },
+ {
+ "start": 5841.08,
+ "end": 5841.22,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11312
+ },
+ {
+ "start": 5841.22,
+ "end": 5841.48,
+ "confidence": 0,
+ "word": "correct,",
+ "punct": "correct,",
+ "index": 11313
+ },
+ {
+ "start": 5841.48,
+ "end": 5841.94,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 11314
+ }
+ ],
+ "start": 5839.22
+ }
+ },
+ {
+ "key": "1gdik",
+ "text": "And I just want to take a moment before I go into this in more detail to thank you for your leadership on this this I think is an important area for the whole industry to move on.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5841.94,
+ "end": 5842.32,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 11315
+ },
+ {
+ "start": 5842.32,
+ "end": 5842.98,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11316
+ },
+ {
+ "start": 5842.98,
+ "end": 5843.14,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 11317
+ },
+ {
+ "start": 5843.14,
+ "end": 5843.28,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 11318
+ },
+ {
+ "start": 5843.28,
+ "end": 5843.36,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11319
+ },
+ {
+ "start": 5843.36,
+ "end": 5843.5,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 11320
+ },
+ {
+ "start": 5843.5,
+ "end": 5843.56,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11321
+ },
+ {
+ "start": 5843.56,
+ "end": 5843.8,
+ "confidence": 0,
+ "word": "moment",
+ "punct": "moment",
+ "index": 11322
+ },
+ {
+ "start": 5843.8,
+ "end": 5844.02,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 11323
+ },
+ {
+ "start": 5844.02,
+ "end": 5844.12,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11324
+ },
+ {
+ "start": 5844.12,
+ "end": 5844.22,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 11325
+ },
+ {
+ "start": 5844.22,
+ "end": 5844.38,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 11326
+ },
+ {
+ "start": 5844.38,
+ "end": 5844.5,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 11327
+ },
+ {
+ "start": 5844.5,
+ "end": 5844.6,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11328
+ },
+ {
+ "start": 5844.6,
+ "end": 5844.76,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 11329
+ },
+ {
+ "start": 5844.76,
+ "end": 5845.02,
+ "confidence": 0,
+ "word": "detail",
+ "punct": "detail",
+ "index": 11330
+ },
+ {
+ "start": 5845.02,
+ "end": 5845.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11331
+ },
+ {
+ "start": 5845.14,
+ "end": 5845.32,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 11332
+ },
+ {
+ "start": 5845.32,
+ "end": 5845.46,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11333
+ },
+ {
+ "start": 5845.46,
+ "end": 5845.6,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 11334
+ },
+ {
+ "start": 5845.6,
+ "end": 5845.76,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 11335
+ },
+ {
+ "start": 5845.76,
+ "end": 5846.22,
+ "confidence": 0,
+ "word": "leadership",
+ "punct": "leadership",
+ "index": 11336
+ },
+ {
+ "start": 5846.22,
+ "end": 5846.4,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11337
+ },
+ {
+ "start": 5846.4,
+ "end": 5847.3,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 11338
+ },
+ {
+ "start": 5847.3,
+ "end": 5848.22,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 11339
+ },
+ {
+ "start": 5848.22,
+ "end": 5848.32,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11340
+ },
+ {
+ "start": 5848.32,
+ "end": 5848.48,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 11341
+ },
+ {
+ "start": 5848.48,
+ "end": 5848.64,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11342
+ },
+ {
+ "start": 5848.64,
+ "end": 5848.74,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 11343
+ },
+ {
+ "start": 5848.74,
+ "end": 5849.2,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 11344
+ },
+ {
+ "start": 5849.2,
+ "end": 5850.02,
+ "confidence": 0,
+ "word": "area",
+ "punct": "area",
+ "index": 11345
+ },
+ {
+ "start": 5850.02,
+ "end": 5850.48,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 11346
+ },
+ {
+ "start": 5850.48,
+ "end": 5850.64,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11347
+ },
+ {
+ "start": 5850.64,
+ "end": 5850.84,
+ "confidence": 0,
+ "word": "whole",
+ "punct": "whole",
+ "index": 11348
+ },
+ {
+ "start": 5850.84,
+ "end": 5851.3,
+ "confidence": 0,
+ "word": "industry",
+ "punct": "industry",
+ "index": 11349
+ },
+ {
+ "start": 5851.3,
+ "end": 5851.5,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11350
+ },
+ {
+ "start": 5851.5,
+ "end": 5851.72,
+ "confidence": 0,
+ "word": "move",
+ "punct": "move",
+ "index": 11351
+ },
+ {
+ "start": 5851.72,
+ "end": 5851.92,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on.",
+ "index": 11352
+ }
+ ],
+ "start": 5841.94
+ }
+ },
+ {
+ "key": "e4r1e",
+ "text": "The two specific things that we're doing are one is around transparency.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5851.92,
+ "end": 5852.92,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 11353
+ },
+ {
+ "start": 5852.92,
+ "end": 5853.16,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two",
+ "index": 11354
+ },
+ {
+ "start": 5853.16,
+ "end": 5853.74,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 11355
+ },
+ {
+ "start": 5853.74,
+ "end": 5854,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 11356
+ },
+ {
+ "start": 5854,
+ "end": 5854.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11357
+ },
+ {
+ "start": 5854.2,
+ "end": 5854.46,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 11358
+ },
+ {
+ "start": 5854.46,
+ "end": 5854.74,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 11359
+ },
+ {
+ "start": 5854.74,
+ "end": 5855.56,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 11360
+ },
+ {
+ "start": 5855.56,
+ "end": 5855.84,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 11361
+ },
+ {
+ "start": 5855.84,
+ "end": 5855.96,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11362
+ },
+ {
+ "start": 5855.96,
+ "end": 5856.22,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 11363
+ },
+ {
+ "start": 5856.22,
+ "end": 5856.98,
+ "confidence": 0,
+ "word": "transparency",
+ "punct": "transparency.",
+ "index": 11364
+ }
+ ],
+ "start": 5851.92
+ }
+ },
+ {
+ "key": "c8dj6",
+ "text": "So now you're going to be able to go and click on any advertiser, any page on Facebook and see all of the ads that they're running.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5856.98,
+ "end": 5858.04,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 11365
+ },
+ {
+ "start": 5858.04,
+ "end": 5858.92,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 11366
+ },
+ {
+ "start": 5858.92,
+ "end": 5859.12,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 11367
+ },
+ {
+ "start": 5859.12,
+ "end": 5859.32,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 11368
+ },
+ {
+ "start": 5859.32,
+ "end": 5859.42,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11369
+ },
+ {
+ "start": 5859.42,
+ "end": 5859.5,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 11370
+ },
+ {
+ "start": 5859.5,
+ "end": 5859.64,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 11371
+ },
+ {
+ "start": 5859.64,
+ "end": 5859.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11372
+ },
+ {
+ "start": 5859.72,
+ "end": 5860,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 11373
+ },
+ {
+ "start": 5860,
+ "end": 5860.52,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11374
+ },
+ {
+ "start": 5860.52,
+ "end": 5860.8,
+ "confidence": 0,
+ "word": "click",
+ "punct": "click",
+ "index": 11375
+ },
+ {
+ "start": 5860.8,
+ "end": 5861.04,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11376
+ },
+ {
+ "start": 5861.04,
+ "end": 5861.52,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 11377
+ },
+ {
+ "start": 5861.52,
+ "end": 5862.08,
+ "confidence": 0,
+ "word": "advertiser,",
+ "punct": "advertiser,",
+ "index": 11378
+ },
+ {
+ "start": 5862.08,
+ "end": 5862.4,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 11379
+ },
+ {
+ "start": 5862.4,
+ "end": 5862.76,
+ "confidence": 0,
+ "word": "page",
+ "punct": "page",
+ "index": 11380
+ },
+ {
+ "start": 5862.76,
+ "end": 5863.28,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11381
+ },
+ {
+ "start": 5863.28,
+ "end": 5863.76,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 11382
+ },
+ {
+ "start": 5863.76,
+ "end": 5864.04,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11383
+ },
+ {
+ "start": 5864.04,
+ "end": 5864.34,
+ "confidence": 0,
+ "word": "see",
+ "punct": "see",
+ "index": 11384
+ },
+ {
+ "start": 5864.34,
+ "end": 5864.56,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 11385
+ },
+ {
+ "start": 5864.56,
+ "end": 5864.64,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11386
+ },
+ {
+ "start": 5864.64,
+ "end": 5864.78,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11387
+ },
+ {
+ "start": 5864.78,
+ "end": 5865,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 11388
+ },
+ {
+ "start": 5865,
+ "end": 5865.14,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11389
+ },
+ {
+ "start": 5865.14,
+ "end": 5865.36,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 11390
+ },
+ {
+ "start": 5865.36,
+ "end": 5865.88,
+ "confidence": 0,
+ "word": "running",
+ "punct": "running.",
+ "index": 11391
+ }
+ ],
+ "start": 5856.98
+ }
+ },
+ {
+ "key": "cgdu3",
+ "text": "So that actually brings advertising online on Facebook to an even higher standard than what you would have on TV or print media.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5865.88,
+ "end": 5866.28,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 11392
+ },
+ {
+ "start": 5866.28,
+ "end": 5866.46,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11393
+ },
+ {
+ "start": 5866.46,
+ "end": 5866.76,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 11394
+ },
+ {
+ "start": 5866.76,
+ "end": 5867.12,
+ "confidence": 0,
+ "word": "brings",
+ "punct": "brings",
+ "index": 11395
+ },
+ {
+ "start": 5867.12,
+ "end": 5867.86,
+ "confidence": 0,
+ "word": "advertising",
+ "punct": "advertising",
+ "index": 11396
+ },
+ {
+ "start": 5867.86,
+ "end": 5868.36,
+ "confidence": 0,
+ "word": "online",
+ "punct": "online",
+ "index": 11397
+ },
+ {
+ "start": 5868.36,
+ "end": 5869.02,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11398
+ },
+ {
+ "start": 5869.02,
+ "end": 5869.44,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 11399
+ },
+ {
+ "start": 5869.44,
+ "end": 5869.54,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11400
+ },
+ {
+ "start": 5869.54,
+ "end": 5869.68,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 11401
+ },
+ {
+ "start": 5869.68,
+ "end": 5869.86,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 11402
+ },
+ {
+ "start": 5869.86,
+ "end": 5870.16,
+ "confidence": 0,
+ "word": "higher",
+ "punct": "higher",
+ "index": 11403
+ },
+ {
+ "start": 5870.16,
+ "end": 5870.68,
+ "confidence": 0,
+ "word": "standard",
+ "punct": "standard",
+ "index": 11404
+ },
+ {
+ "start": 5870.68,
+ "end": 5870.9,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 11405
+ },
+ {
+ "start": 5870.9,
+ "end": 5871.02,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 11406
+ },
+ {
+ "start": 5871.02,
+ "end": 5871.12,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11407
+ },
+ {
+ "start": 5871.12,
+ "end": 5871.28,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 11408
+ },
+ {
+ "start": 5871.28,
+ "end": 5871.44,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11409
+ },
+ {
+ "start": 5871.44,
+ "end": 5871.56,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11410
+ },
+ {
+ "start": 5871.56,
+ "end": 5872.06,
+ "confidence": 0,
+ "word": "tv",
+ "punct": "TV",
+ "index": 11411
+ },
+ {
+ "start": 5872.06,
+ "end": 5872.22,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 11412
+ },
+ {
+ "start": 5872.22,
+ "end": 5872.5,
+ "confidence": 0,
+ "word": "print",
+ "punct": "print",
+ "index": 11413
+ },
+ {
+ "start": 5872.5,
+ "end": 5872.84,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media.",
+ "index": 11414
+ }
+ ],
+ "start": 5865.88
+ }
+ },
+ {
+ "key": "6ha66",
+ "text": "Because there's nowhere where you can see all of the TV ads that someone is running, for example, where you will be able to see now on Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5872.84,
+ "end": 5873.64,
+ "confidence": 0,
+ "word": "because",
+ "punct": "Because",
+ "index": 11415
+ },
+ {
+ "start": 5873.64,
+ "end": 5874.36,
+ "confidence": 0,
+ "word": "there's",
+ "punct": "there's",
+ "index": 11416
+ },
+ {
+ "start": 5874.36,
+ "end": 5874.7,
+ "confidence": 0,
+ "word": "nowhere",
+ "punct": "nowhere",
+ "index": 11417
+ },
+ {
+ "start": 5874.7,
+ "end": 5874.9,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 11418
+ },
+ {
+ "start": 5874.9,
+ "end": 5875.02,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11419
+ },
+ {
+ "start": 5875.02,
+ "end": 5875.16,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 11420
+ },
+ {
+ "start": 5875.16,
+ "end": 5875.36,
+ "confidence": 0,
+ "word": "see",
+ "punct": "see",
+ "index": 11421
+ },
+ {
+ "start": 5875.36,
+ "end": 5875.56,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 11422
+ },
+ {
+ "start": 5875.56,
+ "end": 5875.64,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11423
+ },
+ {
+ "start": 5875.64,
+ "end": 5875.78,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11424
+ },
+ {
+ "start": 5875.78,
+ "end": 5876.12,
+ "confidence": 0,
+ "word": "tv",
+ "punct": "TV",
+ "index": 11425
+ },
+ {
+ "start": 5876.12,
+ "end": 5876.38,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 11426
+ },
+ {
+ "start": 5876.38,
+ "end": 5876.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11427
+ },
+ {
+ "start": 5876.58,
+ "end": 5876.86,
+ "confidence": 0,
+ "word": "someone",
+ "punct": "someone",
+ "index": 11428
+ },
+ {
+ "start": 5876.86,
+ "end": 5877,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11429
+ },
+ {
+ "start": 5877,
+ "end": 5877.26,
+ "confidence": 0,
+ "word": "running,",
+ "punct": "running,",
+ "index": 11430
+ },
+ {
+ "start": 5877.26,
+ "end": 5877.44,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 11431
+ },
+ {
+ "start": 5877.44,
+ "end": 5877.84,
+ "confidence": 0,
+ "word": "example,",
+ "punct": "example,",
+ "index": 11432
+ },
+ {
+ "start": 5877.84,
+ "end": 5878.02,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 11433
+ },
+ {
+ "start": 5878.02,
+ "end": 5878.2,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11434
+ },
+ {
+ "start": 5878.2,
+ "end": 5878.42,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 11435
+ },
+ {
+ "start": 5878.42,
+ "end": 5878.52,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 11436
+ },
+ {
+ "start": 5878.52,
+ "end": 5878.66,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 11437
+ },
+ {
+ "start": 5878.66,
+ "end": 5878.76,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11438
+ },
+ {
+ "start": 5878.76,
+ "end": 5879.08,
+ "confidence": 0,
+ "word": "see",
+ "punct": "see",
+ "index": 11439
+ },
+ {
+ "start": 5879.08,
+ "end": 5879.62,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 11440
+ },
+ {
+ "start": 5879.62,
+ "end": 5879.86,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11441
+ },
+ {
+ "start": 5879.86,
+ "end": 5880.36,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 11442
+ }
+ ],
+ "start": 5872.84
+ }
+ },
+ {
+ "key": "912v0",
+ "text": "Whether this campaign or third party is saying different messages to different types of people in that that's a really important element of transparency.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5880.36,
+ "end": 5881.24,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "Whether",
+ "index": 11443
+ },
+ {
+ "start": 5881.24,
+ "end": 5882.04,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 11444
+ },
+ {
+ "start": 5882.04,
+ "end": 5883.1,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign",
+ "index": 11445
+ },
+ {
+ "start": 5883.1,
+ "end": 5883.76,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 11446
+ },
+ {
+ "start": 5883.76,
+ "end": 5884.2,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 11447
+ },
+ {
+ "start": 5884.2,
+ "end": 5884.54,
+ "confidence": 0,
+ "word": "party",
+ "punct": "party",
+ "index": 11448
+ },
+ {
+ "start": 5884.54,
+ "end": 5884.72,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11449
+ },
+ {
+ "start": 5884.72,
+ "end": 5885.22,
+ "confidence": 0,
+ "word": "saying",
+ "punct": "saying",
+ "index": 11450
+ },
+ {
+ "start": 5885.22,
+ "end": 5885.5,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 11451
+ },
+ {
+ "start": 5885.5,
+ "end": 5885.92,
+ "confidence": 0,
+ "word": "messages",
+ "punct": "messages",
+ "index": 11452
+ },
+ {
+ "start": 5885.92,
+ "end": 5886.06,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11453
+ },
+ {
+ "start": 5886.06,
+ "end": 5886.36,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 11454
+ },
+ {
+ "start": 5886.36,
+ "end": 5886.62,
+ "confidence": 0,
+ "word": "types",
+ "punct": "types",
+ "index": 11455
+ },
+ {
+ "start": 5886.62,
+ "end": 5886.76,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11456
+ },
+ {
+ "start": 5886.76,
+ "end": 5887.02,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 11457
+ },
+ {
+ "start": 5887.02,
+ "end": 5887.54,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11458
+ },
+ {
+ "start": 5887.54,
+ "end": 5887.66,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11459
+ },
+ {
+ "start": 5887.66,
+ "end": 5887.86,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 11460
+ },
+ {
+ "start": 5887.86,
+ "end": 5887.92,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11461
+ },
+ {
+ "start": 5887.92,
+ "end": 5888.2,
+ "confidence": 0,
+ "word": "really",
+ "punct": "really",
+ "index": 11462
+ },
+ {
+ "start": 5888.2,
+ "end": 5888.58,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 11463
+ },
+ {
+ "start": 5888.58,
+ "end": 5888.9,
+ "confidence": 0,
+ "word": "element",
+ "punct": "element",
+ "index": 11464
+ },
+ {
+ "start": 5888.9,
+ "end": 5889,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11465
+ },
+ {
+ "start": 5889,
+ "end": 5889.7,
+ "confidence": 0,
+ "word": "transparency",
+ "punct": "transparency.",
+ "index": 11466
+ }
+ ],
+ "start": 5880.36
+ }
+ },
+ {
+ "key": "163sh",
+ "text": "Then the other really important piece is around verifying every single Advertiser who's going to be running political or issue ads.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5889.7,
+ "end": 5890.2,
+ "confidence": 0,
+ "word": "then",
+ "punct": "Then",
+ "index": 11467
+ },
+ {
+ "start": 5890.2,
+ "end": 5890.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11468
+ },
+ {
+ "start": 5890.3,
+ "end": 5890.5,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 11469
+ },
+ {
+ "start": 5890.5,
+ "end": 5890.76,
+ "confidence": 0,
+ "word": "really",
+ "punct": "really",
+ "index": 11470
+ },
+ {
+ "start": 5890.76,
+ "end": 5891.14,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 11471
+ },
+ {
+ "start": 5891.14,
+ "end": 5891.38,
+ "confidence": 0,
+ "word": "piece",
+ "punct": "piece",
+ "index": 11472
+ },
+ {
+ "start": 5891.38,
+ "end": 5891.54,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11473
+ },
+ {
+ "start": 5891.54,
+ "end": 5891.82,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 11474
+ },
+ {
+ "start": 5891.82,
+ "end": 5892.4,
+ "confidence": 0,
+ "word": "verifying",
+ "punct": "verifying",
+ "index": 11475
+ },
+ {
+ "start": 5892.4,
+ "end": 5892.76,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 11476
+ },
+ {
+ "start": 5892.76,
+ "end": 5893.4,
+ "confidence": 0,
+ "word": "single",
+ "punct": "single",
+ "index": 11477
+ },
+ {
+ "start": 5893.4,
+ "end": 5894.42,
+ "confidence": 0,
+ "word": "advertiser",
+ "punct": "Advertiser",
+ "index": 11478
+ },
+ {
+ "start": 5894.42,
+ "end": 5894.86,
+ "confidence": 0,
+ "word": "who's",
+ "punct": "who's",
+ "index": 11479
+ },
+ {
+ "start": 5894.86,
+ "end": 5895.02,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 11480
+ },
+ {
+ "start": 5895.02,
+ "end": 5895.08,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11481
+ },
+ {
+ "start": 5895.08,
+ "end": 5895.14,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 11482
+ },
+ {
+ "start": 5895.14,
+ "end": 5895.38,
+ "confidence": 0,
+ "word": "running",
+ "punct": "running",
+ "index": 11483
+ },
+ {
+ "start": 5895.38,
+ "end": 5895.88,
+ "confidence": 0,
+ "word": "political",
+ "punct": "political",
+ "index": 11484
+ },
+ {
+ "start": 5895.88,
+ "end": 5896.8,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 11485
+ },
+ {
+ "start": 5896.8,
+ "end": 5897.08,
+ "confidence": 0,
+ "word": "issue",
+ "punct": "issue",
+ "index": 11486
+ },
+ {
+ "start": 5897.08,
+ "end": 5897.32,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads.",
+ "index": 11487
+ }
+ ],
+ "start": 5889.7
+ }
+ },
+ {
+ "key": "8d5n0",
+ "text": "I appreciate that in center Warner and I called on Google and the other platforms to do the same.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5897.32,
+ "end": 5897.66,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11488
+ },
+ {
+ "start": 5897.66,
+ "end": 5898.12,
+ "confidence": 0,
+ "word": "appreciate",
+ "punct": "appreciate",
+ "index": 11489
+ },
+ {
+ "start": 5898.12,
+ "end": 5898.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11490
+ },
+ {
+ "start": 5898.3,
+ "end": 5898.5,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11491
+ },
+ {
+ "start": 5898.5,
+ "end": 5898.78,
+ "confidence": 0,
+ "word": "center",
+ "punct": "center",
+ "index": 11492
+ },
+ {
+ "start": 5898.78,
+ "end": 5899.04,
+ "confidence": 0,
+ "word": "warner",
+ "punct": "Warner",
+ "index": 11493
+ },
+ {
+ "start": 5899.04,
+ "end": 5899.14,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11494
+ },
+ {
+ "start": 5899.14,
+ "end": 5899.49,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11495
+ },
+ {
+ "start": 5899.49,
+ "end": 5899.91,
+ "confidence": 0,
+ "word": "called",
+ "punct": "called",
+ "index": 11496
+ },
+ {
+ "start": 5899.91,
+ "end": 5900.05,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11497
+ },
+ {
+ "start": 5900.05,
+ "end": 5900.51,
+ "confidence": 0,
+ "word": "google",
+ "punct": "Google",
+ "index": 11498
+ },
+ {
+ "start": 5900.51,
+ "end": 5900.67,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11499
+ },
+ {
+ "start": 5900.67,
+ "end": 5900.79,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11500
+ },
+ {
+ "start": 5900.79,
+ "end": 5901.01,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 11501
+ },
+ {
+ "start": 5901.01,
+ "end": 5901.61,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms",
+ "index": 11502
+ },
+ {
+ "start": 5901.61,
+ "end": 5901.79,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11503
+ },
+ {
+ "start": 5901.79,
+ "end": 5901.93,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 11504
+ },
+ {
+ "start": 5901.93,
+ "end": 5902.07,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11505
+ },
+ {
+ "start": 5902.07,
+ "end": 5902.41,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same.",
+ "index": 11506
+ }
+ ],
+ "start": 5897.32
+ }
+ },
+ {
+ "key": "bq2hg",
+ "text": "So memo to the rest of you we have to get this done or we're going to have a patchwork of ads.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5902.41,
+ "end": 5902.63,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 11507
+ },
+ {
+ "start": 5902.63,
+ "end": 5903.37,
+ "confidence": 0,
+ "word": "memo",
+ "punct": "memo",
+ "index": 11508
+ },
+ {
+ "start": 5903.37,
+ "end": 5903.51,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11509
+ },
+ {
+ "start": 5903.51,
+ "end": 5903.69,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11510
+ },
+ {
+ "start": 5903.69,
+ "end": 5903.93,
+ "confidence": 0,
+ "word": "rest",
+ "punct": "rest",
+ "index": 11511
+ },
+ {
+ "start": 5903.93,
+ "end": 5904.05,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11512
+ },
+ {
+ "start": 5904.05,
+ "end": 5904.29,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11513
+ },
+ {
+ "start": 5904.29,
+ "end": 5904.99,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11514
+ },
+ {
+ "start": 5904.99,
+ "end": 5905.17,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11515
+ },
+ {
+ "start": 5905.17,
+ "end": 5905.29,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11516
+ },
+ {
+ "start": 5905.29,
+ "end": 5905.41,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 11517
+ },
+ {
+ "start": 5905.41,
+ "end": 5905.63,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 11518
+ },
+ {
+ "start": 5905.63,
+ "end": 5905.83,
+ "confidence": 0,
+ "word": "done",
+ "punct": "done",
+ "index": 11519
+ },
+ {
+ "start": 5905.83,
+ "end": 5905.93,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 11520
+ },
+ {
+ "start": 5905.93,
+ "end": 5906.11,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 11521
+ },
+ {
+ "start": 5906.11,
+ "end": 5906.25,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 11522
+ },
+ {
+ "start": 5906.25,
+ "end": 5906.33,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11523
+ },
+ {
+ "start": 5906.33,
+ "end": 5906.55,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11524
+ },
+ {
+ "start": 5906.55,
+ "end": 5906.63,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11525
+ },
+ {
+ "start": 5906.63,
+ "end": 5907.25,
+ "confidence": 0,
+ "word": "patchwork",
+ "punct": "patchwork",
+ "index": 11526
+ },
+ {
+ "start": 5907.25,
+ "end": 5907.37,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11527
+ },
+ {
+ "start": 5907.37,
+ "end": 5907.67,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads.",
+ "index": 11528
+ }
+ ],
+ "start": 5902.41
+ }
+ },
+ {
+ "key": "2k5vu",
+ "text": "And I hope that you'll be working with us to pass this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5907.67,
+ "end": 5907.85,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 11529
+ },
+ {
+ "start": 5907.85,
+ "end": 5908.07,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11530
+ },
+ {
+ "start": 5908.07,
+ "end": 5908.83,
+ "confidence": 0,
+ "word": "hope",
+ "punct": "hope",
+ "index": 11531
+ },
+ {
+ "start": 5908.83,
+ "end": 5908.99,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11532
+ },
+ {
+ "start": 5908.99,
+ "end": 5909.21,
+ "confidence": 0,
+ "word": "you'll",
+ "punct": "you'll",
+ "index": 11533
+ },
+ {
+ "start": 5909.21,
+ "end": 5909.31,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 11534
+ },
+ {
+ "start": 5909.31,
+ "end": 5909.63,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 11535
+ },
+ {
+ "start": 5909.63,
+ "end": 5909.79,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 11536
+ },
+ {
+ "start": 5909.79,
+ "end": 5910.01,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 11537
+ },
+ {
+ "start": 5910.01,
+ "end": 5910.17,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11538
+ },
+ {
+ "start": 5910.17,
+ "end": 5910.51,
+ "confidence": 0,
+ "word": "pass",
+ "punct": "pass",
+ "index": 11539
+ },
+ {
+ "start": 5910.51,
+ "end": 5910.71,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 11540
+ }
+ ],
+ "start": 5907.67
+ }
+ },
+ {
+ "key": "3ok1v",
+ "text": "Bill is that right, we will.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5910.71,
+ "end": 5910.99,
+ "confidence": 0,
+ "word": "bill",
+ "punct": "Bill",
+ "index": 11541
+ },
+ {
+ "start": 5910.99,
+ "end": 5911.23,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11542
+ },
+ {
+ "start": 5911.23,
+ "end": 5911.39,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11543
+ },
+ {
+ "start": 5911.39,
+ "end": 5911.61,
+ "confidence": 0,
+ "word": "right,",
+ "punct": "right,",
+ "index": 11544
+ },
+ {
+ "start": 5911.61,
+ "end": 5912.03,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11545
+ },
+ {
+ "start": 5912.03,
+ "end": 5912.29,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will.",
+ "index": 11546
+ }
+ ],
+ "start": 5910.71
+ }
+ },
+ {
+ "key": "7pu4i",
+ "text": "Okay, thank you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5912.29,
+ "end": 5912.85,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "Okay,",
+ "index": 11547
+ },
+ {
+ "start": 5912.85,
+ "end": 5913.09,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 11548
+ },
+ {
+ "start": 5913.09,
+ "end": 5913.29,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 11549
+ }
+ ],
+ "start": 5912.29
+ }
+ },
+ {
+ "key": "8opgf",
+ "text": "Now, on the subject of Cambridge Analytica, were these people that 87,000,000 people users concentrated in certain states.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5913.29,
+ "end": 5914.33,
+ "confidence": 0,
+ "word": "now,",
+ "punct": "Now,",
+ "index": 11550
+ },
+ {
+ "start": 5914.33,
+ "end": 5914.49,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11551
+ },
+ {
+ "start": 5914.49,
+ "end": 5914.65,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11552
+ },
+ {
+ "start": 5914.65,
+ "end": 5915.03,
+ "confidence": 0,
+ "word": "subject",
+ "punct": "subject",
+ "index": 11553
+ },
+ {
+ "start": 5915.03,
+ "end": 5915.15,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11554
+ },
+ {
+ "start": 5915.15,
+ "end": 5915.57,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 11555
+ },
+ {
+ "start": 5915.57,
+ "end": 5916.94,
+ "confidence": 0,
+ "word": "analytica,",
+ "punct": "Analytica,",
+ "index": 11556
+ },
+ {
+ "start": 5916.94,
+ "end": 5917.86,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 11557
+ },
+ {
+ "start": 5917.86,
+ "end": 5918.22,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 11558
+ },
+ {
+ "start": 5918.22,
+ "end": 5918.54,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 11559
+ },
+ {
+ "start": 5918.54,
+ "end": 5919.12,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11560
+ },
+ {
+ "start": 5919.12,
+ "end": 5920.16,
+ "confidence": 0,
+ "word": "87,000,000",
+ "punct": "87,000,000",
+ "index": 11561
+ },
+ {
+ "start": 5920.16,
+ "end": 5920.56,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 11562
+ },
+ {
+ "start": 5920.56,
+ "end": 5922.4,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 11563
+ },
+ {
+ "start": 5922.4,
+ "end": 5923.38,
+ "confidence": 0,
+ "word": "concentrated",
+ "punct": "concentrated",
+ "index": 11564
+ },
+ {
+ "start": 5923.38,
+ "end": 5923.54,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11565
+ },
+ {
+ "start": 5923.54,
+ "end": 5923.88,
+ "confidence": 0,
+ "word": "certain",
+ "punct": "certain",
+ "index": 11566
+ },
+ {
+ "start": 5923.88,
+ "end": 5924.2,
+ "confidence": 0,
+ "word": "states",
+ "punct": "states.",
+ "index": 11567
+ }
+ ],
+ "start": 5913.29
+ }
+ },
+ {
+ "key": "edlnm",
+ "text": "Are you able to figure out where they're from.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5924.2,
+ "end": 5924.34,
+ "confidence": 0,
+ "word": "are",
+ "punct": "Are",
+ "index": 11568
+ },
+ {
+ "start": 5924.34,
+ "end": 5924.44,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11569
+ },
+ {
+ "start": 5924.44,
+ "end": 5924.76,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 11570
+ },
+ {
+ "start": 5924.76,
+ "end": 5924.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11571
+ },
+ {
+ "start": 5924.88,
+ "end": 5925.18,
+ "confidence": 0,
+ "word": "figure",
+ "punct": "figure",
+ "index": 11572
+ },
+ {
+ "start": 5925.18,
+ "end": 5925.42,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 11573
+ },
+ {
+ "start": 5925.42,
+ "end": 5925.84,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 11574
+ },
+ {
+ "start": 5925.84,
+ "end": 5926.2,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 11575
+ },
+ {
+ "start": 5926.2,
+ "end": 5927.14,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from.",
+ "index": 11576
+ }
+ ],
+ "start": 5924.2
+ }
+ },
+ {
+ "key": "5eh3m",
+ "text": "I do not have that information with me, but we can follow up with your office.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5927.14,
+ "end": 5927.92,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11577
+ },
+ {
+ "start": 5927.92,
+ "end": 5928.06,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 11578
+ },
+ {
+ "start": 5928.06,
+ "end": 5928.42,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 11579
+ },
+ {
+ "start": 5928.42,
+ "end": 5928.78,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11580
+ },
+ {
+ "start": 5928.78,
+ "end": 5929.06,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11581
+ },
+ {
+ "start": 5929.06,
+ "end": 5929.74,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 11582
+ },
+ {
+ "start": 5929.74,
+ "end": 5930.78,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 11583
+ },
+ {
+ "start": 5930.78,
+ "end": 5930.92,
+ "confidence": 0,
+ "word": "me,",
+ "punct": "me,",
+ "index": 11584
+ },
+ {
+ "start": 5930.92,
+ "end": 5932.04,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 11585
+ },
+ {
+ "start": 5932.04,
+ "end": 5932.26,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11586
+ },
+ {
+ "start": 5932.26,
+ "end": 5932.44,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 11587
+ },
+ {
+ "start": 5932.44,
+ "end": 5932.74,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 11588
+ },
+ {
+ "start": 5932.74,
+ "end": 5932.88,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 11589
+ },
+ {
+ "start": 5932.88,
+ "end": 5933.04,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 11590
+ },
+ {
+ "start": 5933.04,
+ "end": 5933.42,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 11591
+ },
+ {
+ "start": 5933.42,
+ "end": 5933.82,
+ "confidence": 0,
+ "word": "office",
+ "punct": "office.",
+ "index": 11592
+ }
+ ],
+ "start": 5927.14
+ }
+ },
+ {
+ "key": "3lm4t",
+ "text": "Okay, because as we know the election was close and it was only thousands of votes in certain states.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5933.82,
+ "end": 5934.28,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "Okay,",
+ "index": 11593
+ },
+ {
+ "start": 5934.28,
+ "end": 5934.5,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 11594
+ },
+ {
+ "start": 5934.5,
+ "end": 5934.68,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 11595
+ },
+ {
+ "start": 5934.68,
+ "end": 5934.84,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11596
+ },
+ {
+ "start": 5934.84,
+ "end": 5935,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 11597
+ },
+ {
+ "start": 5935,
+ "end": 5935.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11598
+ },
+ {
+ "start": 5935.24,
+ "end": 5935.8,
+ "confidence": 0,
+ "word": "election",
+ "punct": "election",
+ "index": 11599
+ },
+ {
+ "start": 5935.8,
+ "end": 5935.98,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 11600
+ },
+ {
+ "start": 5935.98,
+ "end": 5936.3,
+ "confidence": 0,
+ "word": "close",
+ "punct": "close",
+ "index": 11601
+ },
+ {
+ "start": 5936.3,
+ "end": 5936.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11602
+ },
+ {
+ "start": 5936.62,
+ "end": 5936.84,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 11603
+ },
+ {
+ "start": 5936.84,
+ "end": 5937,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 11604
+ },
+ {
+ "start": 5937,
+ "end": 5937.34,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 11605
+ },
+ {
+ "start": 5937.34,
+ "end": 5938.08,
+ "confidence": 0,
+ "word": "thousands",
+ "punct": "thousands",
+ "index": 11606
+ },
+ {
+ "start": 5938.08,
+ "end": 5938.18,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11607
+ },
+ {
+ "start": 5938.18,
+ "end": 5938.44,
+ "confidence": 0,
+ "word": "votes",
+ "punct": "votes",
+ "index": 11608
+ },
+ {
+ "start": 5938.44,
+ "end": 5938.62,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11609
+ },
+ {
+ "start": 5938.62,
+ "end": 5939.04,
+ "confidence": 0,
+ "word": "certain",
+ "punct": "certain",
+ "index": 11610
+ },
+ {
+ "start": 5939.04,
+ "end": 5939.38,
+ "confidence": 0,
+ "word": "states",
+ "punct": "states.",
+ "index": 11611
+ }
+ ],
+ "start": 5933.82
+ }
+ },
+ {
+ "key": "4fdaq",
+ "text": "You've also estimated that roughly 126,000,000 people may have been shown content from a Facebook page associated with the Internet Research Agency, have you determined whether any of those people were the same Facebook users whose data was shared with Cambridge Analytica?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5939.38,
+ "end": 5940.32,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "You've",
+ "index": 11612
+ },
+ {
+ "start": 5940.32,
+ "end": 5940.6,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 11613
+ },
+ {
+ "start": 5940.6,
+ "end": 5941.14,
+ "confidence": 0,
+ "word": "estimated",
+ "punct": "estimated",
+ "index": 11614
+ },
+ {
+ "start": 5941.14,
+ "end": 5941.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11615
+ },
+ {
+ "start": 5941.32,
+ "end": 5941.76,
+ "confidence": 0,
+ "word": "roughly",
+ "punct": "roughly",
+ "index": 11616
+ },
+ {
+ "start": 5941.76,
+ "end": 5944.09,
+ "confidence": 0,
+ "word": "126,000,000",
+ "punct": "126,000,000",
+ "index": 11617
+ },
+ {
+ "start": 5944.09,
+ "end": 5944.39,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 11618
+ },
+ {
+ "start": 5944.39,
+ "end": 5944.63,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 11619
+ },
+ {
+ "start": 5944.63,
+ "end": 5944.77,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11620
+ },
+ {
+ "start": 5944.77,
+ "end": 5944.99,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 11621
+ },
+ {
+ "start": 5944.99,
+ "end": 5945.27,
+ "confidence": 0,
+ "word": "shown",
+ "punct": "shown",
+ "index": 11622
+ },
+ {
+ "start": 5945.27,
+ "end": 5945.79,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 11623
+ },
+ {
+ "start": 5945.79,
+ "end": 5946.01,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 11624
+ },
+ {
+ "start": 5946.01,
+ "end": 5946.09,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11625
+ },
+ {
+ "start": 5946.09,
+ "end": 5946.53,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 11626
+ },
+ {
+ "start": 5946.53,
+ "end": 5946.79,
+ "confidence": 0,
+ "word": "page",
+ "punct": "page",
+ "index": 11627
+ },
+ {
+ "start": 5946.79,
+ "end": 5947.81,
+ "confidence": 0,
+ "word": "associated",
+ "punct": "associated",
+ "index": 11628
+ },
+ {
+ "start": 5947.81,
+ "end": 5947.97,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 11629
+ },
+ {
+ "start": 5947.97,
+ "end": 5948.09,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11630
+ },
+ {
+ "start": 5948.09,
+ "end": 5948.53,
+ "confidence": 0,
+ "word": "internet",
+ "punct": "Internet",
+ "index": 11631
+ },
+ {
+ "start": 5948.53,
+ "end": 5948.97,
+ "confidence": 0,
+ "word": "research",
+ "punct": "Research",
+ "index": 11632
+ },
+ {
+ "start": 5948.97,
+ "end": 5949.63,
+ "confidence": 0,
+ "word": "agency,",
+ "punct": "Agency,",
+ "index": 11633
+ },
+ {
+ "start": 5949.63,
+ "end": 5950.21,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11634
+ },
+ {
+ "start": 5950.21,
+ "end": 5950.37,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11635
+ },
+ {
+ "start": 5950.37,
+ "end": 5950.91,
+ "confidence": 0,
+ "word": "determined",
+ "punct": "determined",
+ "index": 11636
+ },
+ {
+ "start": 5950.91,
+ "end": 5951.77,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 11637
+ },
+ {
+ "start": 5951.77,
+ "end": 5951.99,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 11638
+ },
+ {
+ "start": 5951.99,
+ "end": 5952.07,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11639
+ },
+ {
+ "start": 5952.07,
+ "end": 5952.43,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 11640
+ },
+ {
+ "start": 5952.43,
+ "end": 5952.77,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 11641
+ },
+ {
+ "start": 5952.77,
+ "end": 5953.25,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 11642
+ },
+ {
+ "start": 5953.25,
+ "end": 5953.37,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11643
+ },
+ {
+ "start": 5953.37,
+ "end": 5953.77,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 11644
+ },
+ {
+ "start": 5953.77,
+ "end": 5954.21,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 11645
+ },
+ {
+ "start": 5954.21,
+ "end": 5954.57,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 11646
+ },
+ {
+ "start": 5954.57,
+ "end": 5954.79,
+ "confidence": 0,
+ "word": "whose",
+ "punct": "whose",
+ "index": 11647
+ },
+ {
+ "start": 5954.79,
+ "end": 5955.07,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 11648
+ },
+ {
+ "start": 5955.07,
+ "end": 5955.23,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 11649
+ },
+ {
+ "start": 5955.23,
+ "end": 5955.51,
+ "confidence": 0,
+ "word": "shared",
+ "punct": "shared",
+ "index": 11650
+ },
+ {
+ "start": 5955.51,
+ "end": 5955.69,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 11651
+ },
+ {
+ "start": 5955.69,
+ "end": 5956.17,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 11652
+ },
+ {
+ "start": 5956.17,
+ "end": 5956.75,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica?",
+ "index": 11653
+ }
+ ],
+ "start": 5939.38
+ }
+ },
+ {
+ "key": "a4l59",
+ "text": "Are you able to make that determination, Senator we're investigating that now we believe that it is entirely possible that there will be a connection there.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5956.75,
+ "end": 5957.29,
+ "confidence": 0,
+ "word": "are",
+ "punct": "Are",
+ "index": 11654
+ },
+ {
+ "start": 5957.29,
+ "end": 5957.43,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11655
+ },
+ {
+ "start": 5957.43,
+ "end": 5957.65,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 11656
+ },
+ {
+ "start": 5957.65,
+ "end": 5957.75,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11657
+ },
+ {
+ "start": 5957.75,
+ "end": 5957.89,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 11658
+ },
+ {
+ "start": 5957.89,
+ "end": 5958.09,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11659
+ },
+ {
+ "start": 5958.09,
+ "end": 5959.16,
+ "confidence": 0,
+ "word": "determination,",
+ "punct": "determination,",
+ "index": 11660
+ },
+ {
+ "start": 5959.16,
+ "end": 5959.82,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 11661
+ },
+ {
+ "start": 5959.82,
+ "end": 5960.04,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 11662
+ },
+ {
+ "start": 5960.04,
+ "end": 5960.64,
+ "confidence": 0,
+ "word": "investigating",
+ "punct": "investigating",
+ "index": 11663
+ },
+ {
+ "start": 5960.64,
+ "end": 5960.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11664
+ },
+ {
+ "start": 5960.8,
+ "end": 5961.54,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 11665
+ },
+ {
+ "start": 5961.54,
+ "end": 5962.14,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11666
+ },
+ {
+ "start": 5962.14,
+ "end": 5962.76,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 11667
+ },
+ {
+ "start": 5962.76,
+ "end": 5962.92,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11668
+ },
+ {
+ "start": 5962.92,
+ "end": 5963,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 11669
+ },
+ {
+ "start": 5963,
+ "end": 5963.12,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11670
+ },
+ {
+ "start": 5963.12,
+ "end": 5963.68,
+ "confidence": 0,
+ "word": "entirely",
+ "punct": "entirely",
+ "index": 11671
+ },
+ {
+ "start": 5963.68,
+ "end": 5964.16,
+ "confidence": 0,
+ "word": "possible",
+ "punct": "possible",
+ "index": 11672
+ },
+ {
+ "start": 5964.16,
+ "end": 5964.34,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11673
+ },
+ {
+ "start": 5964.34,
+ "end": 5964.52,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 11674
+ },
+ {
+ "start": 5964.52,
+ "end": 5964.72,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 11675
+ },
+ {
+ "start": 5964.72,
+ "end": 5964.84,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 11676
+ },
+ {
+ "start": 5964.84,
+ "end": 5964.92,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11677
+ },
+ {
+ "start": 5964.92,
+ "end": 5965.34,
+ "confidence": 0,
+ "word": "connection",
+ "punct": "connection",
+ "index": 11678
+ },
+ {
+ "start": 5965.34,
+ "end": 5965.56,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there.",
+ "index": 11679
+ }
+ ],
+ "start": 5956.75
+ }
+ },
+ {
+ "key": "7h5if",
+ "text": "Okay, that seems like a big deal.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5965.56,
+ "end": 5966.56,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "Okay,",
+ "index": 11680
+ },
+ {
+ "start": 5966.56,
+ "end": 5966.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11681
+ },
+ {
+ "start": 5966.8,
+ "end": 5967.1,
+ "confidence": 0,
+ "word": "seems",
+ "punct": "seems",
+ "index": 11682
+ },
+ {
+ "start": 5967.1,
+ "end": 5967.28,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 11683
+ },
+ {
+ "start": 5967.28,
+ "end": 5967.4,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11684
+ },
+ {
+ "start": 5967.4,
+ "end": 5967.68,
+ "confidence": 0,
+ "word": "big",
+ "punct": "big",
+ "index": 11685
+ },
+ {
+ "start": 5967.68,
+ "end": 5967.9,
+ "confidence": 0,
+ "word": "deal",
+ "punct": "deal.",
+ "index": 11686
+ }
+ ],
+ "start": 5965.56
+ }
+ },
+ {
+ "key": "859p2",
+ "text": "As we look back at that last election, former Cambridge Analytica employee Christopher Wiley said that the data that it improperly obtained that Cambridge analytic and properly obtained from Facebook users could be stored in Russia.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5967.9,
+ "end": 5968.1,
+ "confidence": 0,
+ "word": "as",
+ "punct": "As",
+ "index": 11687
+ },
+ {
+ "start": 5968.1,
+ "end": 5968.22,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11688
+ },
+ {
+ "start": 5968.22,
+ "end": 5968.48,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 11689
+ },
+ {
+ "start": 5968.48,
+ "end": 5968.74,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 11690
+ },
+ {
+ "start": 5968.74,
+ "end": 5968.88,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 11691
+ },
+ {
+ "start": 5968.88,
+ "end": 5969.1,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11692
+ },
+ {
+ "start": 5969.1,
+ "end": 5969.38,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 11693
+ },
+ {
+ "start": 5969.38,
+ "end": 5969.92,
+ "confidence": 0,
+ "word": "election,",
+ "punct": "election,",
+ "index": 11694
+ },
+ {
+ "start": 5969.92,
+ "end": 5970.88,
+ "confidence": 0,
+ "word": "former",
+ "punct": "former",
+ "index": 11695
+ },
+ {
+ "start": 5970.88,
+ "end": 5971.34,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 11696
+ },
+ {
+ "start": 5971.34,
+ "end": 5971.88,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 11697
+ },
+ {
+ "start": 5971.88,
+ "end": 5972.46,
+ "confidence": 0,
+ "word": "employee",
+ "punct": "employee",
+ "index": 11698
+ },
+ {
+ "start": 5972.46,
+ "end": 5973.04,
+ "confidence": 0,
+ "word": "christopher",
+ "punct": "Christopher",
+ "index": 11699
+ },
+ {
+ "start": 5973.04,
+ "end": 5974,
+ "confidence": 0,
+ "word": "wiley",
+ "punct": "Wiley",
+ "index": 11700
+ },
+ {
+ "start": 5974,
+ "end": 5974.28,
+ "confidence": 0,
+ "word": "said",
+ "punct": "said",
+ "index": 11701
+ },
+ {
+ "start": 5974.28,
+ "end": 5974.5,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11702
+ },
+ {
+ "start": 5974.5,
+ "end": 5974.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11703
+ },
+ {
+ "start": 5974.7,
+ "end": 5975.2,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 11704
+ },
+ {
+ "start": 5975.2,
+ "end": 5975.86,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11705
+ },
+ {
+ "start": 5975.86,
+ "end": 5976.02,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 11706
+ },
+ {
+ "start": 5976.02,
+ "end": 5976.96,
+ "confidence": 0,
+ "word": "improperly",
+ "punct": "improperly",
+ "index": 11707
+ },
+ {
+ "start": 5976.96,
+ "end": 5977.56,
+ "confidence": 0,
+ "word": "obtained",
+ "punct": "obtained",
+ "index": 11708
+ },
+ {
+ "start": 5977.56,
+ "end": 5977.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11709
+ },
+ {
+ "start": 5977.72,
+ "end": 5978.12,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 11710
+ },
+ {
+ "start": 5978.12,
+ "end": 5978.62,
+ "confidence": 0,
+ "word": "analytic",
+ "punct": "analytic",
+ "index": 11711
+ },
+ {
+ "start": 5978.62,
+ "end": 5978.94,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11712
+ },
+ {
+ "start": 5978.94,
+ "end": 5979.42,
+ "confidence": 0,
+ "word": "properly",
+ "punct": "properly",
+ "index": 11713
+ },
+ {
+ "start": 5979.42,
+ "end": 5979.84,
+ "confidence": 0,
+ "word": "obtained",
+ "punct": "obtained",
+ "index": 11714
+ },
+ {
+ "start": 5979.84,
+ "end": 5980.02,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 11715
+ },
+ {
+ "start": 5980.02,
+ "end": 5980.46,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 11716
+ },
+ {
+ "start": 5980.46,
+ "end": 5980.9,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 11717
+ },
+ {
+ "start": 5980.9,
+ "end": 5981.46,
+ "confidence": 0,
+ "word": "could",
+ "punct": "could",
+ "index": 11718
+ },
+ {
+ "start": 5981.46,
+ "end": 5981.62,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 11719
+ },
+ {
+ "start": 5981.62,
+ "end": 5982.04,
+ "confidence": 0,
+ "word": "stored",
+ "punct": "stored",
+ "index": 11720
+ },
+ {
+ "start": 5982.04,
+ "end": 5982.2,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11721
+ },
+ {
+ "start": 5982.2,
+ "end": 5982.64,
+ "confidence": 0,
+ "word": "russia",
+ "punct": "Russia.",
+ "index": 11722
+ }
+ ],
+ "start": 5967.9
+ }
+ },
+ {
+ "key": "6ighv",
+ "text": "Do you agree that that's a possibility?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5982.64,
+ "end": 5983.18,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 11723
+ },
+ {
+ "start": 5983.18,
+ "end": 5983.32,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11724
+ },
+ {
+ "start": 5983.32,
+ "end": 5983.62,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 11725
+ },
+ {
+ "start": 5983.62,
+ "end": 5983.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11726
+ },
+ {
+ "start": 5983.8,
+ "end": 5984.06,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 11727
+ },
+ {
+ "start": 5984.06,
+ "end": 5984.16,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11728
+ },
+ {
+ "start": 5984.16,
+ "end": 5987.28,
+ "confidence": 0,
+ "word": "possibility",
+ "punct": "possibility?",
+ "index": 11729
+ }
+ ],
+ "start": 5982.64
+ }
+ },
+ {
+ "key": "90cnm",
+ "text": "Sorry, are you asking if Cambridge analytics data could be stored in Russia?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5987.28,
+ "end": 5988.26,
+ "confidence": 0,
+ "word": "sorry,",
+ "punct": "Sorry,",
+ "index": 11730
+ },
+ {
+ "start": 5988.26,
+ "end": 5988.66,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 11731
+ },
+ {
+ "start": 5988.66,
+ "end": 5988.76,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11732
+ },
+ {
+ "start": 5988.76,
+ "end": 5989.14,
+ "confidence": 0,
+ "word": "asking",
+ "punct": "asking",
+ "index": 11733
+ },
+ {
+ "start": 5989.14,
+ "end": 5989.42,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 11734
+ },
+ {
+ "start": 5989.42,
+ "end": 5990.14,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 11735
+ },
+ {
+ "start": 5990.14,
+ "end": 5990.58,
+ "confidence": 0,
+ "word": "analytics",
+ "punct": "analytics",
+ "index": 11736
+ },
+ {
+ "start": 5990.58,
+ "end": 5991.18,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 11737
+ },
+ {
+ "start": 5991.18,
+ "end": 5991.36,
+ "confidence": 0,
+ "word": "could",
+ "punct": "could",
+ "index": 11738
+ },
+ {
+ "start": 5991.36,
+ "end": 5991.46,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 11739
+ },
+ {
+ "start": 5991.46,
+ "end": 5991.68,
+ "confidence": 0,
+ "word": "stored",
+ "punct": "stored",
+ "index": 11740
+ },
+ {
+ "start": 5991.68,
+ "end": 5991.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11741
+ },
+ {
+ "start": 5991.78,
+ "end": 5992.12,
+ "confidence": 0,
+ "word": "russia",
+ "punct": "Russia?",
+ "index": 11742
+ }
+ ],
+ "start": 5987.28
+ }
+ },
+ {
+ "key": "1ra09",
+ "text": "That's what he said this weekend on a Sunday show, Senator, I don't have any specific knowledge that would suggest that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 5992.12,
+ "end": 5992.66,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "That's",
+ "index": 11743
+ },
+ {
+ "start": 5992.66,
+ "end": 5992.8,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 11744
+ },
+ {
+ "start": 5992.8,
+ "end": 5992.94,
+ "confidence": 0,
+ "word": "he",
+ "punct": "he",
+ "index": 11745
+ },
+ {
+ "start": 5992.94,
+ "end": 5993.18,
+ "confidence": 0,
+ "word": "said",
+ "punct": "said",
+ "index": 11746
+ },
+ {
+ "start": 5993.18,
+ "end": 5993.38,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 11747
+ },
+ {
+ "start": 5993.38,
+ "end": 5993.76,
+ "confidence": 0,
+ "word": "weekend",
+ "punct": "weekend",
+ "index": 11748
+ },
+ {
+ "start": 5993.76,
+ "end": 5993.9,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11749
+ },
+ {
+ "start": 5993.9,
+ "end": 5994,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11750
+ },
+ {
+ "start": 5994,
+ "end": 5994.34,
+ "confidence": 0,
+ "word": "sunday",
+ "punct": "Sunday",
+ "index": 11751
+ },
+ {
+ "start": 5994.34,
+ "end": 5995.76,
+ "confidence": 0,
+ "word": "show,",
+ "punct": "show,",
+ "index": 11752
+ },
+ {
+ "start": 5995.76,
+ "end": 5996.78,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 11753
+ },
+ {
+ "start": 5996.78,
+ "end": 5997.12,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11754
+ },
+ {
+ "start": 5997.12,
+ "end": 5997.32,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 11755
+ },
+ {
+ "start": 5997.32,
+ "end": 5997.52,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11756
+ },
+ {
+ "start": 5997.52,
+ "end": 5997.76,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 11757
+ },
+ {
+ "start": 5997.76,
+ "end": 5998.88,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 11758
+ },
+ {
+ "start": 5998.88,
+ "end": 5999.16,
+ "confidence": 0,
+ "word": "knowledge",
+ "punct": "knowledge",
+ "index": 11759
+ },
+ {
+ "start": 5999.16,
+ "end": 5999.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11760
+ },
+ {
+ "start": 5999.28,
+ "end": 5999.46,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 11761
+ },
+ {
+ "start": 5999.46,
+ "end": 5999.82,
+ "confidence": 0,
+ "word": "suggest",
+ "punct": "suggest",
+ "index": 11762
+ },
+ {
+ "start": 5999.82,
+ "end": 6000.08,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 11763
+ }
+ ],
+ "start": 5992.12
+ }
+ },
+ {
+ "key": "6hph7",
+ "text": "But one of the steps that we need to take now is go to a full audit of all of Cambridge analytical systems to understand what they're doing.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6000.08,
+ "end": 6000.28,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 11764
+ },
+ {
+ "start": 6000.28,
+ "end": 6000.74,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 11765
+ },
+ {
+ "start": 6000.74,
+ "end": 6000.84,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11766
+ },
+ {
+ "start": 6000.84,
+ "end": 6000.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11767
+ },
+ {
+ "start": 6000.94,
+ "end": 6001.36,
+ "confidence": 0,
+ "word": "steps",
+ "punct": "steps",
+ "index": 11768
+ },
+ {
+ "start": 6001.36,
+ "end": 6001.52,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11769
+ },
+ {
+ "start": 6001.52,
+ "end": 6001.62,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11770
+ },
+ {
+ "start": 6001.62,
+ "end": 6001.8,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 11771
+ },
+ {
+ "start": 6001.8,
+ "end": 6001.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11772
+ },
+ {
+ "start": 6001.88,
+ "end": 6002.08,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 11773
+ },
+ {
+ "start": 6002.08,
+ "end": 6002.34,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 11774
+ },
+ {
+ "start": 6002.34,
+ "end": 6002.88,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11775
+ },
+ {
+ "start": 6002.88,
+ "end": 6003.02,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 11776
+ },
+ {
+ "start": 6003.02,
+ "end": 6003.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11777
+ },
+ {
+ "start": 6003.14,
+ "end": 6003.22,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11778
+ },
+ {
+ "start": 6003.22,
+ "end": 6003.52,
+ "confidence": 0,
+ "word": "full",
+ "punct": "full",
+ "index": 11779
+ },
+ {
+ "start": 6003.52,
+ "end": 6003.84,
+ "confidence": 0,
+ "word": "audit",
+ "punct": "audit",
+ "index": 11780
+ },
+ {
+ "start": 6003.84,
+ "end": 6004,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11781
+ },
+ {
+ "start": 6004,
+ "end": 6004.24,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 11782
+ },
+ {
+ "start": 6004.24,
+ "end": 6004.36,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11783
+ },
+ {
+ "start": 6004.36,
+ "end": 6004.74,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 11784
+ },
+ {
+ "start": 6004.74,
+ "end": 6005.2,
+ "confidence": 0,
+ "word": "analytical",
+ "punct": "analytical",
+ "index": 11785
+ },
+ {
+ "start": 6005.2,
+ "end": 6005.64,
+ "confidence": 0,
+ "word": "systems",
+ "punct": "systems",
+ "index": 11786
+ },
+ {
+ "start": 6005.64,
+ "end": 6005.74,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11787
+ },
+ {
+ "start": 6005.74,
+ "end": 6006.28,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 11788
+ },
+ {
+ "start": 6006.28,
+ "end": 6006.96,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 11789
+ },
+ {
+ "start": 6006.96,
+ "end": 6007.2,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 11790
+ },
+ {
+ "start": 6007.2,
+ "end": 6007.44,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing.",
+ "index": 11791
+ }
+ ],
+ "start": 6000.08
+ }
+ },
+ {
+ "key": "c94et",
+ "text": "Whether they still have any data to make sure they remove all the data if they don't we're going to take legal action against them to do so that audit.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6007.44,
+ "end": 6007.94,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "Whether",
+ "index": 11792
+ },
+ {
+ "start": 6007.94,
+ "end": 6008.08,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 11793
+ },
+ {
+ "start": 6008.08,
+ "end": 6008.3,
+ "confidence": 0,
+ "word": "still",
+ "punct": "still",
+ "index": 11794
+ },
+ {
+ "start": 6008.3,
+ "end": 6008.42,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11795
+ },
+ {
+ "start": 6008.42,
+ "end": 6008.58,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 11796
+ },
+ {
+ "start": 6008.58,
+ "end": 6008.88,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 11797
+ },
+ {
+ "start": 6008.88,
+ "end": 6009.34,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11798
+ },
+ {
+ "start": 6009.34,
+ "end": 6009.48,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 11799
+ },
+ {
+ "start": 6009.48,
+ "end": 6009.6,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 11800
+ },
+ {
+ "start": 6009.6,
+ "end": 6009.86,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 11801
+ },
+ {
+ "start": 6009.86,
+ "end": 6010.12,
+ "confidence": 0,
+ "word": "remove",
+ "punct": "remove",
+ "index": 11802
+ },
+ {
+ "start": 6010.12,
+ "end": 6010.24,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 11803
+ },
+ {
+ "start": 6010.24,
+ "end": 6010.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11804
+ },
+ {
+ "start": 6010.36,
+ "end": 6010.56,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 11805
+ },
+ {
+ "start": 6010.56,
+ "end": 6010.62,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 11806
+ },
+ {
+ "start": 6010.62,
+ "end": 6010.76,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 11807
+ },
+ {
+ "start": 6010.76,
+ "end": 6010.94,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 11808
+ },
+ {
+ "start": 6010.94,
+ "end": 6011.1,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 11809
+ },
+ {
+ "start": 6011.1,
+ "end": 6011.24,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 11810
+ },
+ {
+ "start": 6011.24,
+ "end": 6011.3,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11811
+ },
+ {
+ "start": 6011.3,
+ "end": 6011.42,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 11812
+ },
+ {
+ "start": 6011.42,
+ "end": 6011.68,
+ "confidence": 0,
+ "word": "legal",
+ "punct": "legal",
+ "index": 11813
+ },
+ {
+ "start": 6011.68,
+ "end": 6011.94,
+ "confidence": 0,
+ "word": "action",
+ "punct": "action",
+ "index": 11814
+ },
+ {
+ "start": 6011.94,
+ "end": 6012.22,
+ "confidence": 0,
+ "word": "against",
+ "punct": "against",
+ "index": 11815
+ },
+ {
+ "start": 6012.22,
+ "end": 6012.42,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 11816
+ },
+ {
+ "start": 6012.42,
+ "end": 6012.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11817
+ },
+ {
+ "start": 6012.52,
+ "end": 6012.68,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 11818
+ },
+ {
+ "start": 6012.68,
+ "end": 6012.92,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 11819
+ },
+ {
+ "start": 6012.92,
+ "end": 6013.86,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11820
+ },
+ {
+ "start": 6013.86,
+ "end": 6014.82,
+ "confidence": 0,
+ "word": "audit",
+ "punct": "audit.",
+ "index": 11821
+ }
+ ],
+ "start": 6007.44
+ }
+ },
+ {
+ "key": "ap3f8",
+ "text": "We have temporarily seated that in order to let the UK Government complete their government investigation first, because, of course, the government investigation takes precedence over a company doing that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6014.82,
+ "end": 6015.44,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 11822
+ },
+ {
+ "start": 6015.44,
+ "end": 6015.6,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11823
+ },
+ {
+ "start": 6015.6,
+ "end": 6016.26,
+ "confidence": 0,
+ "word": "temporarily",
+ "punct": "temporarily",
+ "index": 11824
+ },
+ {
+ "start": 6016.26,
+ "end": 6017.38,
+ "confidence": 0,
+ "word": "seated",
+ "punct": "seated",
+ "index": 11825
+ },
+ {
+ "start": 6017.38,
+ "end": 6017.64,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11826
+ },
+ {
+ "start": 6017.64,
+ "end": 6017.8,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 11827
+ },
+ {
+ "start": 6017.8,
+ "end": 6018.04,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 11828
+ },
+ {
+ "start": 6018.04,
+ "end": 6018.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11829
+ },
+ {
+ "start": 6018.14,
+ "end": 6018.34,
+ "confidence": 0,
+ "word": "let",
+ "punct": "let",
+ "index": 11830
+ },
+ {
+ "start": 6018.34,
+ "end": 6018.54,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11831
+ },
+ {
+ "start": 6018.54,
+ "end": 6018.92,
+ "confidence": 0,
+ "word": "uk",
+ "punct": "UK",
+ "index": 11832
+ },
+ {
+ "start": 6018.92,
+ "end": 6019.4,
+ "confidence": 0,
+ "word": "government",
+ "punct": "Government",
+ "index": 11833
+ },
+ {
+ "start": 6019.4,
+ "end": 6019.88,
+ "confidence": 0,
+ "word": "complete",
+ "punct": "complete",
+ "index": 11834
+ },
+ {
+ "start": 6019.88,
+ "end": 6020.18,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 11835
+ },
+ {
+ "start": 6020.18,
+ "end": 6020.62,
+ "confidence": 0,
+ "word": "government",
+ "punct": "government",
+ "index": 11836
+ },
+ {
+ "start": 6020.62,
+ "end": 6021.3,
+ "confidence": 0,
+ "word": "investigation",
+ "punct": "investigation",
+ "index": 11837
+ },
+ {
+ "start": 6021.3,
+ "end": 6021.56,
+ "confidence": 0,
+ "word": "first,",
+ "punct": "first,",
+ "index": 11838
+ },
+ {
+ "start": 6021.56,
+ "end": 6021.78,
+ "confidence": 0,
+ "word": "because,",
+ "punct": "because,",
+ "index": 11839
+ },
+ {
+ "start": 6021.78,
+ "end": 6021.88,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11840
+ },
+ {
+ "start": 6021.88,
+ "end": 6022.06,
+ "confidence": 0,
+ "word": "course,",
+ "punct": "course,",
+ "index": 11841
+ },
+ {
+ "start": 6022.06,
+ "end": 6022.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11842
+ },
+ {
+ "start": 6022.18,
+ "end": 6022.52,
+ "confidence": 0,
+ "word": "government",
+ "punct": "government",
+ "index": 11843
+ },
+ {
+ "start": 6022.52,
+ "end": 6023.08,
+ "confidence": 0,
+ "word": "investigation",
+ "punct": "investigation",
+ "index": 11844
+ },
+ {
+ "start": 6023.08,
+ "end": 6023.32,
+ "confidence": 0,
+ "word": "takes",
+ "punct": "takes",
+ "index": 11845
+ },
+ {
+ "start": 6023.32,
+ "end": 6023.86,
+ "confidence": 0,
+ "word": "precedence",
+ "punct": "precedence",
+ "index": 11846
+ },
+ {
+ "start": 6023.86,
+ "end": 6024.16,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 11847
+ },
+ {
+ "start": 6024.16,
+ "end": 6024.58,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11848
+ },
+ {
+ "start": 6024.58,
+ "end": 6024.98,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 11849
+ },
+ {
+ "start": 6024.98,
+ "end": 6025.22,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 11850
+ },
+ {
+ "start": 6025.22,
+ "end": 6025.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 11851
+ }
+ ],
+ "start": 6014.82
+ }
+ },
+ {
+ "key": "1irb0",
+ "text": "But we are committed to completing this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6025.72,
+ "end": 6026.04,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 11852
+ },
+ {
+ "start": 6026.04,
+ "end": 6026.42,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11853
+ },
+ {
+ "start": 6026.42,
+ "end": 6026.54,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 11854
+ },
+ {
+ "start": 6026.54,
+ "end": 6026.98,
+ "confidence": 0,
+ "word": "committed",
+ "punct": "committed",
+ "index": 11855
+ },
+ {
+ "start": 6026.98,
+ "end": 6027.2,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11856
+ },
+ {
+ "start": 6027.2,
+ "end": 6027.92,
+ "confidence": 0,
+ "word": "completing",
+ "punct": "completing",
+ "index": 11857
+ },
+ {
+ "start": 6027.92,
+ "end": 6028.08,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 11858
+ }
+ ],
+ "start": 6025.72
+ }
+ },
+ {
+ "key": "9cemu",
+ "text": "Full audit and getting to the bottom of what's going on here.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6028.08,
+ "end": 6028.32,
+ "confidence": 0,
+ "word": "full",
+ "punct": "Full",
+ "index": 11859
+ },
+ {
+ "start": 6028.32,
+ "end": 6028.56,
+ "confidence": 0,
+ "word": "audit",
+ "punct": "audit",
+ "index": 11860
+ },
+ {
+ "start": 6028.56,
+ "end": 6028.7,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11861
+ },
+ {
+ "start": 6028.7,
+ "end": 6028.94,
+ "confidence": 0,
+ "word": "getting",
+ "punct": "getting",
+ "index": 11862
+ },
+ {
+ "start": 6028.94,
+ "end": 6029,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11863
+ },
+ {
+ "start": 6029,
+ "end": 6029.12,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11864
+ },
+ {
+ "start": 6029.12,
+ "end": 6029.34,
+ "confidence": 0,
+ "word": "bottom",
+ "punct": "bottom",
+ "index": 11865
+ },
+ {
+ "start": 6029.34,
+ "end": 6029.44,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11866
+ },
+ {
+ "start": 6029.44,
+ "end": 6029.66,
+ "confidence": 0,
+ "word": "what's",
+ "punct": "what's",
+ "index": 11867
+ },
+ {
+ "start": 6029.66,
+ "end": 6029.86,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 11868
+ },
+ {
+ "start": 6029.86,
+ "end": 6029.98,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 11869
+ },
+ {
+ "start": 6029.98,
+ "end": 6030.2,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here.",
+ "index": 11870
+ }
+ ],
+ "start": 6028.08
+ }
+ },
+ {
+ "key": "63b65",
+ "text": "So that way, we can have more answers to this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6030.2,
+ "end": 6030.7,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 11871
+ },
+ {
+ "start": 6030.7,
+ "end": 6030.86,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11872
+ },
+ {
+ "start": 6030.86,
+ "end": 6031,
+ "confidence": 0,
+ "word": "way,",
+ "punct": "way,",
+ "index": 11873
+ },
+ {
+ "start": 6031,
+ "end": 6031.12,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11874
+ },
+ {
+ "start": 6031.12,
+ "end": 6031.24,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 11875
+ },
+ {
+ "start": 6031.24,
+ "end": 6031.4,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11876
+ },
+ {
+ "start": 6031.4,
+ "end": 6031.54,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 11877
+ },
+ {
+ "start": 6031.54,
+ "end": 6031.88,
+ "confidence": 0,
+ "word": "answers",
+ "punct": "answers",
+ "index": 11878
+ },
+ {
+ "start": 6031.88,
+ "end": 6031.98,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11879
+ },
+ {
+ "start": 6031.98,
+ "end": 6032.14,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 11880
+ }
+ ],
+ "start": 6030.2
+ }
+ },
+ {
+ "key": "fviiq",
+ "text": "Okay?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6032.14,
+ "end": 6032.84,
+ "confidence": 0,
+ "word": "okay",
+ "punct": "Okay?",
+ "index": 11881
+ }
+ ],
+ "start": 6032.14
+ }
+ },
+ {
+ "key": "358dd",
+ "text": "You earlier stated publicly and here that you would support some privacy rules so that everyone is playing by the same rules here and you also said here that you should have notified customers earlier.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6032.84,
+ "end": 6033.2,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 11882
+ },
+ {
+ "start": 6033.2,
+ "end": 6034.08,
+ "confidence": 0,
+ "word": "earlier",
+ "punct": "earlier",
+ "index": 11883
+ },
+ {
+ "start": 6034.08,
+ "end": 6034.78,
+ "confidence": 0,
+ "word": "stated",
+ "punct": "stated",
+ "index": 11884
+ },
+ {
+ "start": 6034.78,
+ "end": 6035.66,
+ "confidence": 0,
+ "word": "publicly",
+ "punct": "publicly",
+ "index": 11885
+ },
+ {
+ "start": 6035.66,
+ "end": 6035.92,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11886
+ },
+ {
+ "start": 6035.92,
+ "end": 6036.62,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 11887
+ },
+ {
+ "start": 6036.62,
+ "end": 6037.16,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11888
+ },
+ {
+ "start": 6037.16,
+ "end": 6037.34,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11889
+ },
+ {
+ "start": 6037.34,
+ "end": 6037.52,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 11890
+ },
+ {
+ "start": 6037.52,
+ "end": 6037.92,
+ "confidence": 0,
+ "word": "support",
+ "punct": "support",
+ "index": 11891
+ },
+ {
+ "start": 6037.92,
+ "end": 6038.18,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 11892
+ },
+ {
+ "start": 6038.18,
+ "end": 6038.7,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 11893
+ },
+ {
+ "start": 6038.7,
+ "end": 6039.12,
+ "confidence": 0,
+ "word": "rules",
+ "punct": "rules",
+ "index": 11894
+ },
+ {
+ "start": 6039.12,
+ "end": 6039.78,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 11895
+ },
+ {
+ "start": 6039.78,
+ "end": 6039.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11896
+ },
+ {
+ "start": 6039.98,
+ "end": 6040.3,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 11897
+ },
+ {
+ "start": 6040.3,
+ "end": 6040.38,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 11898
+ },
+ {
+ "start": 6040.38,
+ "end": 6041.4,
+ "confidence": 0,
+ "word": "playing",
+ "punct": "playing",
+ "index": 11899
+ },
+ {
+ "start": 6041.4,
+ "end": 6041.52,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 11900
+ },
+ {
+ "start": 6041.52,
+ "end": 6041.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11901
+ },
+ {
+ "start": 6041.7,
+ "end": 6041.94,
+ "confidence": 0,
+ "word": "same",
+ "punct": "same",
+ "index": 11902
+ },
+ {
+ "start": 6041.94,
+ "end": 6042.24,
+ "confidence": 0,
+ "word": "rules",
+ "punct": "rules",
+ "index": 11903
+ },
+ {
+ "start": 6042.24,
+ "end": 6042.58,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 11904
+ },
+ {
+ "start": 6042.58,
+ "end": 6043.48,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 11905
+ },
+ {
+ "start": 6043.48,
+ "end": 6043.58,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11906
+ },
+ {
+ "start": 6043.58,
+ "end": 6043.86,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 11907
+ },
+ {
+ "start": 6043.86,
+ "end": 6044.12,
+ "confidence": 0,
+ "word": "said",
+ "punct": "said",
+ "index": 11908
+ },
+ {
+ "start": 6044.12,
+ "end": 6044.38,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 11909
+ },
+ {
+ "start": 6044.38,
+ "end": 6044.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11910
+ },
+ {
+ "start": 6044.58,
+ "end": 6044.7,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11911
+ },
+ {
+ "start": 6044.7,
+ "end": 6044.9,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 11912
+ },
+ {
+ "start": 6044.9,
+ "end": 6045.02,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11913
+ },
+ {
+ "start": 6045.02,
+ "end": 6045.52,
+ "confidence": 0,
+ "word": "notified",
+ "punct": "notified",
+ "index": 11914
+ },
+ {
+ "start": 6045.52,
+ "end": 6046.1,
+ "confidence": 0,
+ "word": "customers",
+ "punct": "customers",
+ "index": 11915
+ },
+ {
+ "start": 6046.1,
+ "end": 6046.56,
+ "confidence": 0,
+ "word": "earlier",
+ "punct": "earlier.",
+ "index": 11916
+ }
+ ],
+ "start": 6032.84
+ }
+ },
+ {
+ "key": "lpiv",
+ "text": "Would you support a rule that would require you to notify your users of a breach within 72 hours.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6046.56,
+ "end": 6047.32,
+ "confidence": 0,
+ "word": "would",
+ "punct": "Would",
+ "index": 11917
+ },
+ {
+ "start": 6047.32,
+ "end": 6047.44,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11918
+ },
+ {
+ "start": 6047.44,
+ "end": 6047.88,
+ "confidence": 0,
+ "word": "support",
+ "punct": "support",
+ "index": 11919
+ },
+ {
+ "start": 6047.88,
+ "end": 6048,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11920
+ },
+ {
+ "start": 6048,
+ "end": 6048.5,
+ "confidence": 0,
+ "word": "rule",
+ "punct": "rule",
+ "index": 11921
+ },
+ {
+ "start": 6048.5,
+ "end": 6049.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11922
+ },
+ {
+ "start": 6049.18,
+ "end": 6049.4,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 11923
+ },
+ {
+ "start": 6049.4,
+ "end": 6049.82,
+ "confidence": 0,
+ "word": "require",
+ "punct": "require",
+ "index": 11924
+ },
+ {
+ "start": 6049.82,
+ "end": 6050.02,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 11925
+ },
+ {
+ "start": 6050.02,
+ "end": 6050.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11926
+ },
+ {
+ "start": 6050.14,
+ "end": 6050.56,
+ "confidence": 0,
+ "word": "notify",
+ "punct": "notify",
+ "index": 11927
+ },
+ {
+ "start": 6050.56,
+ "end": 6050.88,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 11928
+ },
+ {
+ "start": 6050.88,
+ "end": 6051.32,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 11929
+ },
+ {
+ "start": 6051.32,
+ "end": 6051.54,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11930
+ },
+ {
+ "start": 6051.54,
+ "end": 6051.64,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11931
+ },
+ {
+ "start": 6051.64,
+ "end": 6051.94,
+ "confidence": 0,
+ "word": "breach",
+ "punct": "breach",
+ "index": 11932
+ },
+ {
+ "start": 6051.94,
+ "end": 6052.3,
+ "confidence": 0,
+ "word": "within",
+ "punct": "within",
+ "index": 11933
+ },
+ {
+ "start": 6052.3,
+ "end": 6052.96,
+ "confidence": 0,
+ "word": "72",
+ "punct": "72",
+ "index": 11934
+ },
+ {
+ "start": 6052.96,
+ "end": 6054.18,
+ "confidence": 0,
+ "word": "hours",
+ "punct": "hours.",
+ "index": 11935
+ }
+ ],
+ "start": 6046.56
+ }
+ },
+ {
+ "key": "b789b",
+ "text": "Senator, that makes sense to me.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6054.18,
+ "end": 6055.34,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 11936
+ },
+ {
+ "start": 6055.34,
+ "end": 6055.78,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11937
+ },
+ {
+ "start": 6055.78,
+ "end": 6056.04,
+ "confidence": 0,
+ "word": "makes",
+ "punct": "makes",
+ "index": 11938
+ },
+ {
+ "start": 6056.04,
+ "end": 6056.36,
+ "confidence": 0,
+ "word": "sense",
+ "punct": "sense",
+ "index": 11939
+ },
+ {
+ "start": 6056.36,
+ "end": 6056.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11940
+ },
+ {
+ "start": 6056.52,
+ "end": 6056.64,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me.",
+ "index": 11941
+ }
+ ],
+ "start": 6054.18
+ }
+ },
+ {
+ "key": "3i2e3",
+ "text": "And I think we should have our team follow up with yours to discuss the details around that more.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6056.64,
+ "end": 6057.4,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 11942
+ },
+ {
+ "start": 6057.4,
+ "end": 6057.84,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11943
+ },
+ {
+ "start": 6057.84,
+ "end": 6058.14,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 11944
+ },
+ {
+ "start": 6058.14,
+ "end": 6058.34,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11945
+ },
+ {
+ "start": 6058.34,
+ "end": 6059.54,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 11946
+ },
+ {
+ "start": 6059.54,
+ "end": 6060.5,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 11947
+ },
+ {
+ "start": 6060.5,
+ "end": 6060.64,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 11948
+ },
+ {
+ "start": 6060.64,
+ "end": 6060.88,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 11949
+ },
+ {
+ "start": 6060.88,
+ "end": 6061.42,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 11950
+ },
+ {
+ "start": 6061.42,
+ "end": 6061.56,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 11951
+ },
+ {
+ "start": 6061.56,
+ "end": 6061.96,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 11952
+ },
+ {
+ "start": 6061.96,
+ "end": 6062.24,
+ "confidence": 0,
+ "word": "yours",
+ "punct": "yours",
+ "index": 11953
+ },
+ {
+ "start": 6062.24,
+ "end": 6062.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11954
+ },
+ {
+ "start": 6062.8,
+ "end": 6063.12,
+ "confidence": 0,
+ "word": "discuss",
+ "punct": "discuss",
+ "index": 11955
+ },
+ {
+ "start": 6063.12,
+ "end": 6063.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 11956
+ },
+ {
+ "start": 6063.38,
+ "end": 6063.78,
+ "confidence": 0,
+ "word": "details",
+ "punct": "details",
+ "index": 11957
+ },
+ {
+ "start": 6063.78,
+ "end": 6064.02,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 11958
+ },
+ {
+ "start": 6064.02,
+ "end": 6064.16,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11959
+ },
+ {
+ "start": 6064.16,
+ "end": 6064.54,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more.",
+ "index": 11960
+ }
+ ],
+ "start": 6056.64
+ }
+ },
+ {
+ "key": "cu0l8",
+ "text": "Thank you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6064.54,
+ "end": 6065.04,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 11961
+ },
+ {
+ "start": 6065.04,
+ "end": 6065.18,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 11962
+ }
+ ],
+ "start": 6064.54
+ }
+ },
+ {
+ "key": "fhi24",
+ "text": "I just think part of this was when people don't even know that their dad has been breached that's a huge problem.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6065.18,
+ "end": 6065.36,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11963
+ },
+ {
+ "start": 6065.36,
+ "end": 6065.56,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 11964
+ },
+ {
+ "start": 6065.56,
+ "end": 6065.74,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 11965
+ },
+ {
+ "start": 6065.74,
+ "end": 6066.12,
+ "confidence": 0,
+ "word": "part",
+ "punct": "part",
+ "index": 11966
+ },
+ {
+ "start": 6066.12,
+ "end": 6066.22,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 11967
+ },
+ {
+ "start": 6066.22,
+ "end": 6066.4,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 11968
+ },
+ {
+ "start": 6066.4,
+ "end": 6066.68,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 11969
+ },
+ {
+ "start": 6066.68,
+ "end": 6067.12,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 11970
+ },
+ {
+ "start": 6067.12,
+ "end": 6067.34,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 11971
+ },
+ {
+ "start": 6067.34,
+ "end": 6067.58,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 11972
+ },
+ {
+ "start": 6067.58,
+ "end": 6067.82,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 11973
+ },
+ {
+ "start": 6067.82,
+ "end": 6068.02,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 11974
+ },
+ {
+ "start": 6068.02,
+ "end": 6068.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11975
+ },
+ {
+ "start": 6068.3,
+ "end": 6068.52,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 11976
+ },
+ {
+ "start": 6068.52,
+ "end": 6068.68,
+ "confidence": 0,
+ "word": "dad",
+ "punct": "dad",
+ "index": 11977
+ },
+ {
+ "start": 6068.68,
+ "end": 6068.84,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 11978
+ },
+ {
+ "start": 6068.84,
+ "end": 6069,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 11979
+ },
+ {
+ "start": 6069,
+ "end": 6069.34,
+ "confidence": 0,
+ "word": "breached",
+ "punct": "breached",
+ "index": 11980
+ },
+ {
+ "start": 6069.34,
+ "end": 6070.06,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 11981
+ },
+ {
+ "start": 6070.06,
+ "end": 6070.16,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 11982
+ },
+ {
+ "start": 6070.16,
+ "end": 6070.46,
+ "confidence": 0,
+ "word": "huge",
+ "punct": "huge",
+ "index": 11983
+ },
+ {
+ "start": 6070.46,
+ "end": 6070.82,
+ "confidence": 0,
+ "word": "problem",
+ "punct": "problem.",
+ "index": 11984
+ }
+ ],
+ "start": 6065.18
+ }
+ },
+ {
+ "key": "d1dht",
+ "text": "And I also think we get to solutions faster when we get that information out there, thank you, and we look forward to passing this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6070.82,
+ "end": 6070.96,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 11985
+ },
+ {
+ "start": 6070.96,
+ "end": 6071,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 11986
+ },
+ {
+ "start": 6071,
+ "end": 6071.28,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 11987
+ },
+ {
+ "start": 6071.28,
+ "end": 6071.48,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 11988
+ },
+ {
+ "start": 6071.48,
+ "end": 6071.66,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11989
+ },
+ {
+ "start": 6071.66,
+ "end": 6071.78,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 11990
+ },
+ {
+ "start": 6071.78,
+ "end": 6071.92,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 11991
+ },
+ {
+ "start": 6071.92,
+ "end": 6072.48,
+ "confidence": 0,
+ "word": "solutions",
+ "punct": "solutions",
+ "index": 11992
+ },
+ {
+ "start": 6072.48,
+ "end": 6072.9,
+ "confidence": 0,
+ "word": "faster",
+ "punct": "faster",
+ "index": 11993
+ },
+ {
+ "start": 6072.9,
+ "end": 6073.08,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 11994
+ },
+ {
+ "start": 6073.08,
+ "end": 6073.22,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 11995
+ },
+ {
+ "start": 6073.22,
+ "end": 6073.38,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 11996
+ },
+ {
+ "start": 6073.38,
+ "end": 6073.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 11997
+ },
+ {
+ "start": 6073.6,
+ "end": 6074.16,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 11998
+ },
+ {
+ "start": 6074.16,
+ "end": 6074.34,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 11999
+ },
+ {
+ "start": 6074.34,
+ "end": 6074.9,
+ "confidence": 0,
+ "word": "there,",
+ "punct": "there,",
+ "index": 12000
+ },
+ {
+ "start": 6074.9,
+ "end": 6075.44,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 12001
+ },
+ {
+ "start": 6075.44,
+ "end": 6075.62,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 12002
+ },
+ {
+ "start": 6075.62,
+ "end": 6075.82,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12003
+ },
+ {
+ "start": 6075.82,
+ "end": 6075.9,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12004
+ },
+ {
+ "start": 6075.9,
+ "end": 6076.1,
+ "confidence": 0,
+ "word": "look",
+ "punct": "look",
+ "index": 12005
+ },
+ {
+ "start": 6076.1,
+ "end": 6076.36,
+ "confidence": 0,
+ "word": "forward",
+ "punct": "forward",
+ "index": 12006
+ },
+ {
+ "start": 6076.36,
+ "end": 6076.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12007
+ },
+ {
+ "start": 6076.48,
+ "end": 6076.88,
+ "confidence": 0,
+ "word": "passing",
+ "punct": "passing",
+ "index": 12008
+ },
+ {
+ "start": 6076.88,
+ "end": 6077.04,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 12009
+ }
+ ],
+ "start": 6070.82
+ }
+ },
+ {
+ "key": "b6k2",
+ "text": "Bill we'd love to pass it before the election on the honest ads and looking forward to better disclosure this election.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6077.04,
+ "end": 6077.26,
+ "confidence": 0,
+ "word": "bill",
+ "punct": "Bill",
+ "index": 12010
+ },
+ {
+ "start": 6077.26,
+ "end": 6077.5,
+ "confidence": 0,
+ "word": "we'd",
+ "punct": "we'd",
+ "index": 12011
+ },
+ {
+ "start": 6077.5,
+ "end": 6077.64,
+ "confidence": 0,
+ "word": "love",
+ "punct": "love",
+ "index": 12012
+ },
+ {
+ "start": 6077.64,
+ "end": 6077.76,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12013
+ },
+ {
+ "start": 6077.76,
+ "end": 6078,
+ "confidence": 0,
+ "word": "pass",
+ "punct": "pass",
+ "index": 12014
+ },
+ {
+ "start": 6078,
+ "end": 6078.14,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 12015
+ },
+ {
+ "start": 6078.14,
+ "end": 6078.58,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 12016
+ },
+ {
+ "start": 6078.58,
+ "end": 6078.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12017
+ },
+ {
+ "start": 6078.94,
+ "end": 6079.34,
+ "confidence": 0,
+ "word": "election",
+ "punct": "election",
+ "index": 12018
+ },
+ {
+ "start": 6079.34,
+ "end": 6079.52,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 12019
+ },
+ {
+ "start": 6079.52,
+ "end": 6079.64,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12020
+ },
+ {
+ "start": 6079.64,
+ "end": 6079.98,
+ "confidence": 0,
+ "word": "honest",
+ "punct": "honest",
+ "index": 12021
+ },
+ {
+ "start": 6079.98,
+ "end": 6080.34,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 12022
+ },
+ {
+ "start": 6080.34,
+ "end": 6080.76,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12023
+ },
+ {
+ "start": 6080.76,
+ "end": 6081.66,
+ "confidence": 0,
+ "word": "looking",
+ "punct": "looking",
+ "index": 12024
+ },
+ {
+ "start": 6081.66,
+ "end": 6082.04,
+ "confidence": 0,
+ "word": "forward",
+ "punct": "forward",
+ "index": 12025
+ },
+ {
+ "start": 6082.04,
+ "end": 6082.22,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12026
+ },
+ {
+ "start": 6082.22,
+ "end": 6082.84,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better",
+ "index": 12027
+ },
+ {
+ "start": 6082.84,
+ "end": 6083.5,
+ "confidence": 0,
+ "word": "disclosure",
+ "punct": "disclosure",
+ "index": 12028
+ },
+ {
+ "start": 6083.5,
+ "end": 6084.12,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 12029
+ },
+ {
+ "start": 6084.12,
+ "end": 6084.6,
+ "confidence": 0,
+ "word": "election",
+ "punct": "election.",
+ "index": 12030
+ }
+ ],
+ "start": 6077.04
+ }
+ },
+ {
+ "key": "bcp50",
+ "text": "Thank you, thank you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6084.6,
+ "end": 6084.96,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 12031
+ },
+ {
+ "start": 6084.96,
+ "end": 6085.14,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 12032
+ },
+ {
+ "start": 6085.14,
+ "end": 6085.54,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 12033
+ },
+ {
+ "start": 6085.54,
+ "end": 6085.66,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 12034
+ }
+ ],
+ "start": 6084.6
+ }
+ },
+ {
+ "key": "c8nj6",
+ "text": "Senator Kobe Shar center blown.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6085.66,
+ "end": 6085.94,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 12035
+ },
+ {
+ "start": 6085.94,
+ "end": 6086.2,
+ "confidence": 0,
+ "word": "kobe",
+ "punct": "Kobe",
+ "index": 12036
+ },
+ {
+ "start": 6086.2,
+ "end": 6086.48,
+ "confidence": 0,
+ "word": "shar",
+ "punct": "Shar",
+ "index": 12037
+ },
+ {
+ "start": 6086.48,
+ "end": 6086.72,
+ "confidence": 0,
+ "word": "center",
+ "punct": "center",
+ "index": 12038
+ },
+ {
+ "start": 6086.72,
+ "end": 6086.92,
+ "confidence": 0,
+ "word": "blown",
+ "punct": "blown.",
+ "index": 12039
+ }
+ ],
+ "start": 6085.66
+ }
+ },
+ {
+ "key": "1m0qq",
+ "text": "So next, thank you, Mr Chairman, Mr Berg, nice to see you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6086.92,
+ "end": 6087.1,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 12040
+ },
+ {
+ "start": 6087.1,
+ "end": 6087.68,
+ "confidence": 0,
+ "word": "next,",
+ "punct": "next,",
+ "index": 12041
+ },
+ {
+ "start": 6087.68,
+ "end": 6088.26,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 12042
+ },
+ {
+ "start": 6088.26,
+ "end": 6088.34,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 12043
+ },
+ {
+ "start": 6088.34,
+ "end": 6088.52,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 12044
+ },
+ {
+ "start": 6088.52,
+ "end": 6088.88,
+ "confidence": 0,
+ "word": "chairman,",
+ "punct": "Chairman,",
+ "index": 12045
+ },
+ {
+ "start": 6088.88,
+ "end": 6089.62,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 12046
+ },
+ {
+ "start": 6089.62,
+ "end": 6089.82,
+ "confidence": 0,
+ "word": "berg,",
+ "punct": "Berg,",
+ "index": 12047
+ },
+ {
+ "start": 6089.82,
+ "end": 6090.1,
+ "confidence": 0,
+ "word": "nice",
+ "punct": "nice",
+ "index": 12048
+ },
+ {
+ "start": 6090.1,
+ "end": 6090.24,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12049
+ },
+ {
+ "start": 6090.24,
+ "end": 6090.42,
+ "confidence": 0,
+ "word": "see",
+ "punct": "see",
+ "index": 12050
+ },
+ {
+ "start": 6090.42,
+ "end": 6090.56,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 12051
+ }
+ ],
+ "start": 6086.92
+ }
+ },
+ {
+ "key": "2g8f5",
+ "text": "When I saw you not too long after I entered the Senate in 2,011 I told you when I sent my business cards down to be printed, they came back from the Senate print shop with the message.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6090.56,
+ "end": 6090.96,
+ "confidence": 0,
+ "word": "when",
+ "punct": "When",
+ "index": 12052
+ },
+ {
+ "start": 6090.96,
+ "end": 6091.18,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12053
+ },
+ {
+ "start": 6091.18,
+ "end": 6091.44,
+ "confidence": 0,
+ "word": "saw",
+ "punct": "saw",
+ "index": 12054
+ },
+ {
+ "start": 6091.44,
+ "end": 6091.62,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12055
+ },
+ {
+ "start": 6091.62,
+ "end": 6091.88,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 12056
+ },
+ {
+ "start": 6091.88,
+ "end": 6092.12,
+ "confidence": 0,
+ "word": "too",
+ "punct": "too",
+ "index": 12057
+ },
+ {
+ "start": 6092.12,
+ "end": 6092.42,
+ "confidence": 0,
+ "word": "long",
+ "punct": "long",
+ "index": 12058
+ },
+ {
+ "start": 6092.42,
+ "end": 6092.96,
+ "confidence": 0,
+ "word": "after",
+ "punct": "after",
+ "index": 12059
+ },
+ {
+ "start": 6092.96,
+ "end": 6093.34,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12060
+ },
+ {
+ "start": 6093.34,
+ "end": 6093.66,
+ "confidence": 0,
+ "word": "entered",
+ "punct": "entered",
+ "index": 12061
+ },
+ {
+ "start": 6093.66,
+ "end": 6093.8,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12062
+ },
+ {
+ "start": 6093.8,
+ "end": 6094.14,
+ "confidence": 0,
+ "word": "senate",
+ "punct": "Senate",
+ "index": 12063
+ },
+ {
+ "start": 6094.14,
+ "end": 6094.26,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12064
+ },
+ {
+ "start": 6094.26,
+ "end": 6095.34,
+ "confidence": 0,
+ "word": "2,011",
+ "punct": "2,011",
+ "index": 12065
+ },
+ {
+ "start": 6095.34,
+ "end": 6095.46,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12066
+ },
+ {
+ "start": 6095.46,
+ "end": 6095.7,
+ "confidence": 0,
+ "word": "told",
+ "punct": "told",
+ "index": 12067
+ },
+ {
+ "start": 6095.7,
+ "end": 6095.84,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12068
+ },
+ {
+ "start": 6095.84,
+ "end": 6096.04,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 12069
+ },
+ {
+ "start": 6096.04,
+ "end": 6096.6,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12070
+ },
+ {
+ "start": 6096.6,
+ "end": 6097.22,
+ "confidence": 0,
+ "word": "sent",
+ "punct": "sent",
+ "index": 12071
+ },
+ {
+ "start": 6097.22,
+ "end": 6097.5,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 12072
+ },
+ {
+ "start": 6097.5,
+ "end": 6098.28,
+ "confidence": 0,
+ "word": "business",
+ "punct": "business",
+ "index": 12073
+ },
+ {
+ "start": 6098.28,
+ "end": 6098.7,
+ "confidence": 0,
+ "word": "cards",
+ "punct": "cards",
+ "index": 12074
+ },
+ {
+ "start": 6098.7,
+ "end": 6099.1,
+ "confidence": 0,
+ "word": "down",
+ "punct": "down",
+ "index": 12075
+ },
+ {
+ "start": 6099.1,
+ "end": 6099.26,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12076
+ },
+ {
+ "start": 6099.26,
+ "end": 6099.4,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 12077
+ },
+ {
+ "start": 6099.4,
+ "end": 6099.78,
+ "confidence": 0,
+ "word": "printed,",
+ "punct": "printed,",
+ "index": 12078
+ },
+ {
+ "start": 6099.78,
+ "end": 6100,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 12079
+ },
+ {
+ "start": 6100,
+ "end": 6100.3,
+ "confidence": 0,
+ "word": "came",
+ "punct": "came",
+ "index": 12080
+ },
+ {
+ "start": 6100.3,
+ "end": 6100.56,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 12081
+ },
+ {
+ "start": 6100.56,
+ "end": 6100.76,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 12082
+ },
+ {
+ "start": 6100.76,
+ "end": 6100.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12083
+ },
+ {
+ "start": 6100.88,
+ "end": 6101.22,
+ "confidence": 0,
+ "word": "senate",
+ "punct": "Senate",
+ "index": 12084
+ },
+ {
+ "start": 6101.22,
+ "end": 6101.5,
+ "confidence": 0,
+ "word": "print",
+ "punct": "print",
+ "index": 12085
+ },
+ {
+ "start": 6101.5,
+ "end": 6101.8,
+ "confidence": 0,
+ "word": "shop",
+ "punct": "shop",
+ "index": 12086
+ },
+ {
+ "start": 6101.8,
+ "end": 6101.96,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 12087
+ },
+ {
+ "start": 6101.96,
+ "end": 6102.08,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12088
+ },
+ {
+ "start": 6102.08,
+ "end": 6102.54,
+ "confidence": 0,
+ "word": "message",
+ "punct": "message.",
+ "index": 12089
+ }
+ ],
+ "start": 6090.56
+ }
+ },
+ {
+ "key": "14c30",
+ "text": "That was the first business card, they ever printed a Facebook address on there are days when I've regretted that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6102.54,
+ "end": 6103.14,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 12090
+ },
+ {
+ "start": 6103.14,
+ "end": 6103.28,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 12091
+ },
+ {
+ "start": 6103.28,
+ "end": 6103.4,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12092
+ },
+ {
+ "start": 6103.4,
+ "end": 6103.64,
+ "confidence": 0,
+ "word": "first",
+ "punct": "first",
+ "index": 12093
+ },
+ {
+ "start": 6103.64,
+ "end": 6104.32,
+ "confidence": 0,
+ "word": "business",
+ "punct": "business",
+ "index": 12094
+ },
+ {
+ "start": 6104.32,
+ "end": 6104.6,
+ "confidence": 0,
+ "word": "card,",
+ "punct": "card,",
+ "index": 12095
+ },
+ {
+ "start": 6104.6,
+ "end": 6104.76,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 12096
+ },
+ {
+ "start": 6104.76,
+ "end": 6105.32,
+ "confidence": 0,
+ "word": "ever",
+ "punct": "ever",
+ "index": 12097
+ },
+ {
+ "start": 6105.32,
+ "end": 6106.1,
+ "confidence": 0,
+ "word": "printed",
+ "punct": "printed",
+ "index": 12098
+ },
+ {
+ "start": 6106.1,
+ "end": 6106.4,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 12099
+ },
+ {
+ "start": 6106.4,
+ "end": 6107.1,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12100
+ },
+ {
+ "start": 6107.1,
+ "end": 6108.32,
+ "confidence": 0,
+ "word": "address",
+ "punct": "address",
+ "index": 12101
+ },
+ {
+ "start": 6108.32,
+ "end": 6109.28,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 12102
+ },
+ {
+ "start": 6109.28,
+ "end": 6110,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 12103
+ },
+ {
+ "start": 6110,
+ "end": 6110.14,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 12104
+ },
+ {
+ "start": 6110.14,
+ "end": 6110.42,
+ "confidence": 0,
+ "word": "days",
+ "punct": "days",
+ "index": 12105
+ },
+ {
+ "start": 6110.42,
+ "end": 6110.62,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 12106
+ },
+ {
+ "start": 6110.62,
+ "end": 6110.84,
+ "confidence": 0,
+ "word": "i've",
+ "punct": "I've",
+ "index": 12107
+ },
+ {
+ "start": 6110.84,
+ "end": 6111.34,
+ "confidence": 0,
+ "word": "regretted",
+ "punct": "regretted",
+ "index": 12108
+ },
+ {
+ "start": 6111.34,
+ "end": 6111.64,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 12109
+ }
+ ],
+ "start": 6102.54
+ }
+ },
+ {
+ "key": "35gqc",
+ "text": "But more days when we get lots of information that we need to get there are days when I wonder if Facebook friends is a little misstated that doesn't seem like I have those every single day.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6111.64,
+ "end": 6111.92,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 12110
+ },
+ {
+ "start": 6111.92,
+ "end": 6112.14,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 12111
+ },
+ {
+ "start": 6112.14,
+ "end": 6112.42,
+ "confidence": 0,
+ "word": "days",
+ "punct": "days",
+ "index": 12112
+ },
+ {
+ "start": 6112.42,
+ "end": 6112.62,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 12113
+ },
+ {
+ "start": 6112.62,
+ "end": 6112.72,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12114
+ },
+ {
+ "start": 6112.72,
+ "end": 6112.96,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 12115
+ },
+ {
+ "start": 6112.96,
+ "end": 6113.22,
+ "confidence": 0,
+ "word": "lots",
+ "punct": "lots",
+ "index": 12116
+ },
+ {
+ "start": 6113.22,
+ "end": 6113.34,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12117
+ },
+ {
+ "start": 6113.34,
+ "end": 6114,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 12118
+ },
+ {
+ "start": 6114,
+ "end": 6114.26,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12119
+ },
+ {
+ "start": 6114.26,
+ "end": 6114.4,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12120
+ },
+ {
+ "start": 6114.4,
+ "end": 6115.2,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 12121
+ },
+ {
+ "start": 6115.2,
+ "end": 6115.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12122
+ },
+ {
+ "start": 6115.32,
+ "end": 6115.46,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 12123
+ },
+ {
+ "start": 6115.46,
+ "end": 6115.7,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 12124
+ },
+ {
+ "start": 6115.7,
+ "end": 6115.8,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 12125
+ },
+ {
+ "start": 6115.8,
+ "end": 6116.04,
+ "confidence": 0,
+ "word": "days",
+ "punct": "days",
+ "index": 12126
+ },
+ {
+ "start": 6116.04,
+ "end": 6116.2,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 12127
+ },
+ {
+ "start": 6116.2,
+ "end": 6116.28,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12128
+ },
+ {
+ "start": 6116.28,
+ "end": 6116.58,
+ "confidence": 0,
+ "word": "wonder",
+ "punct": "wonder",
+ "index": 12129
+ },
+ {
+ "start": 6116.58,
+ "end": 6116.68,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 12130
+ },
+ {
+ "start": 6116.68,
+ "end": 6117.38,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12131
+ },
+ {
+ "start": 6117.38,
+ "end": 6117.76,
+ "confidence": 0,
+ "word": "friends",
+ "punct": "friends",
+ "index": 12132
+ },
+ {
+ "start": 6117.76,
+ "end": 6117.94,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12133
+ },
+ {
+ "start": 6117.94,
+ "end": 6118.02,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 12134
+ },
+ {
+ "start": 6118.02,
+ "end": 6118.28,
+ "confidence": 0,
+ "word": "little",
+ "punct": "little",
+ "index": 12135
+ },
+ {
+ "start": 6118.28,
+ "end": 6118.92,
+ "confidence": 0,
+ "word": "misstated",
+ "punct": "misstated",
+ "index": 12136
+ },
+ {
+ "start": 6118.92,
+ "end": 6119.22,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12137
+ },
+ {
+ "start": 6119.22,
+ "end": 6119.48,
+ "confidence": 0,
+ "word": "doesn't",
+ "punct": "doesn't",
+ "index": 12138
+ },
+ {
+ "start": 6119.48,
+ "end": 6119.7,
+ "confidence": 0,
+ "word": "seem",
+ "punct": "seem",
+ "index": 12139
+ },
+ {
+ "start": 6119.7,
+ "end": 6119.9,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 12140
+ },
+ {
+ "start": 6119.9,
+ "end": 6120.04,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12141
+ },
+ {
+ "start": 6120.04,
+ "end": 6120.24,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 12142
+ },
+ {
+ "start": 6120.24,
+ "end": 6120.5,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 12143
+ },
+ {
+ "start": 6120.5,
+ "end": 6120.98,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 12144
+ },
+ {
+ "start": 6120.98,
+ "end": 6121.38,
+ "confidence": 0,
+ "word": "single",
+ "punct": "single",
+ "index": 12145
+ },
+ {
+ "start": 6121.38,
+ "end": 6121.67,
+ "confidence": 0,
+ "word": "day",
+ "punct": "day.",
+ "index": 12146
+ }
+ ],
+ "start": 6111.64
+ }
+ },
+ {
+ "key": "q12e",
+ "text": "But you know, the platform you've created is really important.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6121.67,
+ "end": 6122.57,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 12147
+ },
+ {
+ "start": 6122.57,
+ "end": 6122.93,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12148
+ },
+ {
+ "start": 6122.93,
+ "end": 6123.11,
+ "confidence": 0,
+ "word": "know,",
+ "punct": "know,",
+ "index": 12149
+ },
+ {
+ "start": 6123.11,
+ "end": 6123.61,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12150
+ },
+ {
+ "start": 6123.61,
+ "end": 6124.35,
+ "confidence": 0,
+ "word": "platform",
+ "punct": "platform",
+ "index": 12151
+ },
+ {
+ "start": 6124.35,
+ "end": 6124.77,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 12152
+ },
+ {
+ "start": 6124.77,
+ "end": 6125.15,
+ "confidence": 0,
+ "word": "created",
+ "punct": "created",
+ "index": 12153
+ },
+ {
+ "start": 6125.15,
+ "end": 6125.59,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12154
+ },
+ {
+ "start": 6125.59,
+ "end": 6126.33,
+ "confidence": 0,
+ "word": "really",
+ "punct": "really",
+ "index": 12155
+ },
+ {
+ "start": 6126.33,
+ "end": 6126.69,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important.",
+ "index": 12156
+ }
+ ],
+ "start": 6121.67
+ }
+ },
+ {
+ "key": "3j5io",
+ "text": "And my son, Charlie who's 13 is dedicated to Instagram.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6126.69,
+ "end": 6126.85,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 12157
+ },
+ {
+ "start": 6126.85,
+ "end": 6127.01,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 12158
+ },
+ {
+ "start": 6127.01,
+ "end": 6127.29,
+ "confidence": 0,
+ "word": "son,",
+ "punct": "son,",
+ "index": 12159
+ },
+ {
+ "start": 6127.29,
+ "end": 6127.69,
+ "confidence": 0,
+ "word": "charlie",
+ "punct": "Charlie",
+ "index": 12160
+ },
+ {
+ "start": 6127.69,
+ "end": 6127.93,
+ "confidence": 0,
+ "word": "who's",
+ "punct": "who's",
+ "index": 12161
+ },
+ {
+ "start": 6127.93,
+ "end": 6128.47,
+ "confidence": 0,
+ "word": "13",
+ "punct": "13",
+ "index": 12162
+ },
+ {
+ "start": 6128.47,
+ "end": 6128.69,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12163
+ },
+ {
+ "start": 6128.69,
+ "end": 6129.39,
+ "confidence": 0,
+ "word": "dedicated",
+ "punct": "dedicated",
+ "index": 12164
+ },
+ {
+ "start": 6129.39,
+ "end": 6129.47,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12165
+ },
+ {
+ "start": 6129.47,
+ "end": 6130.25,
+ "confidence": 0,
+ "word": "instagram",
+ "punct": "Instagram.",
+ "index": 12166
+ }
+ ],
+ "start": 6126.69
+ }
+ },
+ {
+ "key": "580nk",
+ "text": "So he'd want to be sure.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6130.25,
+ "end": 6130.53,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 12167
+ },
+ {
+ "start": 6130.53,
+ "end": 6131.31,
+ "confidence": 0,
+ "word": "he'd",
+ "punct": "he'd",
+ "index": 12168
+ },
+ {
+ "start": 6131.31,
+ "end": 6131.47,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 12169
+ },
+ {
+ "start": 6131.47,
+ "end": 6131.53,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12170
+ },
+ {
+ "start": 6131.53,
+ "end": 6131.65,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 12171
+ },
+ {
+ "start": 6131.65,
+ "end": 6131.83,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure.",
+ "index": 12172
+ }
+ ],
+ "start": 6130.25
+ }
+ },
+ {
+ "key": "clb1t",
+ "text": "I mentioned him while I was here.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6131.83,
+ "end": 6131.95,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12173
+ },
+ {
+ "start": 6131.95,
+ "end": 6132.31,
+ "confidence": 0,
+ "word": "mentioned",
+ "punct": "mentioned",
+ "index": 12174
+ },
+ {
+ "start": 6132.31,
+ "end": 6132.49,
+ "confidence": 0,
+ "word": "him",
+ "punct": "him",
+ "index": 12175
+ },
+ {
+ "start": 6132.49,
+ "end": 6132.71,
+ "confidence": 0,
+ "word": "while",
+ "punct": "while",
+ "index": 12176
+ },
+ {
+ "start": 6132.71,
+ "end": 6132.79,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12177
+ },
+ {
+ "start": 6132.79,
+ "end": 6133.01,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 12178
+ },
+ {
+ "start": 6133.01,
+ "end": 6133.29,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here.",
+ "index": 12179
+ }
+ ],
+ "start": 6131.83
+ }
+ },
+ {
+ "key": "atld4",
+ "text": "With with you, I haven't printed that on my card yet.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6133.29,
+ "end": 6134.06,
+ "confidence": 0,
+ "word": "with",
+ "punct": "With",
+ "index": 12180
+ },
+ {
+ "start": 6134.06,
+ "end": 6135.02,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 12181
+ },
+ {
+ "start": 6135.02,
+ "end": 6135.18,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 12182
+ },
+ {
+ "start": 6135.18,
+ "end": 6135.46,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12183
+ },
+ {
+ "start": 6135.46,
+ "end": 6135.86,
+ "confidence": 0,
+ "word": "haven't",
+ "punct": "haven't",
+ "index": 12184
+ },
+ {
+ "start": 6135.86,
+ "end": 6136.18,
+ "confidence": 0,
+ "word": "printed",
+ "punct": "printed",
+ "index": 12185
+ },
+ {
+ "start": 6136.18,
+ "end": 6136.34,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12186
+ },
+ {
+ "start": 6136.34,
+ "end": 6136.5,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 12187
+ },
+ {
+ "start": 6136.5,
+ "end": 6136.7,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 12188
+ },
+ {
+ "start": 6136.7,
+ "end": 6136.98,
+ "confidence": 0,
+ "word": "card",
+ "punct": "card",
+ "index": 12189
+ },
+ {
+ "start": 6136.98,
+ "end": 6137.2,
+ "confidence": 0,
+ "word": "yet",
+ "punct": "yet.",
+ "index": 12190
+ }
+ ],
+ "start": 6133.29
+ }
+ },
+ {
+ "key": "6i0ik",
+ "text": "I will say that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6137.2,
+ "end": 6137.54,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12191
+ },
+ {
+ "start": 6137.54,
+ "end": 6138.22,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 12192
+ },
+ {
+ "start": 6138.22,
+ "end": 6138.44,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 12193
+ },
+ {
+ "start": 6138.44,
+ "end": 6138.64,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 12194
+ }
+ ],
+ "start": 6137.2
+ }
+ },
+ {
+ "key": "ec3l6",
+ "text": "But I think we have that account as well.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6138.64,
+ "end": 6138.78,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 12195
+ },
+ {
+ "start": 6138.78,
+ "end": 6138.84,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12196
+ },
+ {
+ "start": 6138.84,
+ "end": 6139.04,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 12197
+ },
+ {
+ "start": 6139.04,
+ "end": 6139.18,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12198
+ },
+ {
+ "start": 6139.18,
+ "end": 6139.38,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 12199
+ },
+ {
+ "start": 6139.38,
+ "end": 6139.56,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12200
+ },
+ {
+ "start": 6139.56,
+ "end": 6139.96,
+ "confidence": 0,
+ "word": "account",
+ "punct": "account",
+ "index": 12201
+ },
+ {
+ "start": 6139.96,
+ "end": 6140.26,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 12202
+ },
+ {
+ "start": 6140.26,
+ "end": 6140.58,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well.",
+ "index": 12203
+ }
+ ],
+ "start": 6138.64
+ }
+ },
+ {
+ "key": "bstai",
+ "text": "Lots of ways to connect people and the the information obviously is an important commodity and it's what makes your business work?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6140.58,
+ "end": 6141.06,
+ "confidence": 0,
+ "word": "lots",
+ "punct": "Lots",
+ "index": 12204
+ },
+ {
+ "start": 6141.06,
+ "end": 6141.2,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12205
+ },
+ {
+ "start": 6141.2,
+ "end": 6141.52,
+ "confidence": 0,
+ "word": "ways",
+ "punct": "ways",
+ "index": 12206
+ },
+ {
+ "start": 6141.52,
+ "end": 6141.68,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12207
+ },
+ {
+ "start": 6141.68,
+ "end": 6142.08,
+ "confidence": 0,
+ "word": "connect",
+ "punct": "connect",
+ "index": 12208
+ },
+ {
+ "start": 6142.08,
+ "end": 6142.42,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 12209
+ },
+ {
+ "start": 6142.42,
+ "end": 6143.32,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12210
+ },
+ {
+ "start": 6143.32,
+ "end": 6143.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12211
+ },
+ {
+ "start": 6143.98,
+ "end": 6144.78,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12212
+ },
+ {
+ "start": 6144.78,
+ "end": 6145.46,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 12213
+ },
+ {
+ "start": 6145.46,
+ "end": 6146.36,
+ "confidence": 0,
+ "word": "obviously",
+ "punct": "obviously",
+ "index": 12214
+ },
+ {
+ "start": 6146.36,
+ "end": 6146.58,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12215
+ },
+ {
+ "start": 6146.58,
+ "end": 6146.7,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 12216
+ },
+ {
+ "start": 6146.7,
+ "end": 6147.2,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 12217
+ },
+ {
+ "start": 6147.2,
+ "end": 6147.8,
+ "confidence": 0,
+ "word": "commodity",
+ "punct": "commodity",
+ "index": 12218
+ },
+ {
+ "start": 6147.8,
+ "end": 6148.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12219
+ },
+ {
+ "start": 6148.26,
+ "end": 6149.26,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 12220
+ },
+ {
+ "start": 6149.26,
+ "end": 6149.5,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 12221
+ },
+ {
+ "start": 6149.5,
+ "end": 6149.82,
+ "confidence": 0,
+ "word": "makes",
+ "punct": "makes",
+ "index": 12222
+ },
+ {
+ "start": 6149.82,
+ "end": 6150.6,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 12223
+ },
+ {
+ "start": 6150.6,
+ "end": 6151.32,
+ "confidence": 0,
+ "word": "business",
+ "punct": "business",
+ "index": 12224
+ },
+ {
+ "start": 6151.32,
+ "end": 6151.72,
+ "confidence": 0,
+ "word": "work",
+ "punct": "work?",
+ "index": 12225
+ }
+ ],
+ "start": 6140.58
+ }
+ },
+ {
+ "key": "2furc",
+ "text": "I get that, however.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6151.72,
+ "end": 6152,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12226
+ },
+ {
+ "start": 6152,
+ "end": 6152.2,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 12227
+ },
+ {
+ "start": 6152.2,
+ "end": 6152.5,
+ "confidence": 0,
+ "word": "that,",
+ "punct": "that,",
+ "index": 12228
+ },
+ {
+ "start": 6152.5,
+ "end": 6153.14,
+ "confidence": 0,
+ "word": "however",
+ "punct": "however.",
+ "index": 12229
+ }
+ ],
+ "start": 6151.72
+ }
+ },
+ {
+ "key": "bqo8o",
+ "text": "I wonder about some of the collection efforts and maybe we can go through largely seven.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6153.14,
+ "end": 6153.98,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12230
+ },
+ {
+ "start": 6153.98,
+ "end": 6154.32,
+ "confidence": 0,
+ "word": "wonder",
+ "punct": "wonder",
+ "index": 12231
+ },
+ {
+ "start": 6154.32,
+ "end": 6154.54,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 12232
+ },
+ {
+ "start": 6154.54,
+ "end": 6154.78,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 12233
+ },
+ {
+ "start": 6154.78,
+ "end": 6154.86,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12234
+ },
+ {
+ "start": 6154.86,
+ "end": 6155,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12235
+ },
+ {
+ "start": 6155,
+ "end": 6155.56,
+ "confidence": 0,
+ "word": "collection",
+ "punct": "collection",
+ "index": 12236
+ },
+ {
+ "start": 6155.56,
+ "end": 6156.08,
+ "confidence": 0,
+ "word": "efforts",
+ "punct": "efforts",
+ "index": 12237
+ },
+ {
+ "start": 6156.08,
+ "end": 6156.28,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12238
+ },
+ {
+ "start": 6156.28,
+ "end": 6156.48,
+ "confidence": 0,
+ "word": "maybe",
+ "punct": "maybe",
+ "index": 12239
+ },
+ {
+ "start": 6156.48,
+ "end": 6156.6,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12240
+ },
+ {
+ "start": 6156.6,
+ "end": 6156.74,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 12241
+ },
+ {
+ "start": 6156.74,
+ "end": 6156.82,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 12242
+ },
+ {
+ "start": 6156.82,
+ "end": 6157.27,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 12243
+ },
+ {
+ "start": 6157.27,
+ "end": 6157.89,
+ "confidence": 0,
+ "word": "largely",
+ "punct": "largely",
+ "index": 12244
+ },
+ {
+ "start": 6157.89,
+ "end": 6158.61,
+ "confidence": 0,
+ "word": "seven",
+ "punct": "seven.",
+ "index": 12245
+ }
+ ],
+ "start": 6153.14
+ }
+ },
+ {
+ "key": "ohbh",
+ "text": "Yes, and now and then we'll get back to more expensive discussion of this.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6158.61,
+ "end": 6158.85,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 12246
+ },
+ {
+ "start": 6158.85,
+ "end": 6158.99,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12247
+ },
+ {
+ "start": 6158.99,
+ "end": 6159.13,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 12248
+ },
+ {
+ "start": 6159.13,
+ "end": 6159.25,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12249
+ },
+ {
+ "start": 6159.25,
+ "end": 6159.37,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 12250
+ },
+ {
+ "start": 6159.37,
+ "end": 6159.53,
+ "confidence": 0,
+ "word": "we'll",
+ "punct": "we'll",
+ "index": 12251
+ },
+ {
+ "start": 6159.53,
+ "end": 6159.65,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 12252
+ },
+ {
+ "start": 6159.65,
+ "end": 6159.85,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 12253
+ },
+ {
+ "start": 6159.85,
+ "end": 6160.03,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12254
+ },
+ {
+ "start": 6160.03,
+ "end": 6160.91,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 12255
+ },
+ {
+ "start": 6160.91,
+ "end": 6161.87,
+ "confidence": 0,
+ "word": "expensive",
+ "punct": "expensive",
+ "index": 12256
+ },
+ {
+ "start": 6161.87,
+ "end": 6162.37,
+ "confidence": 0,
+ "word": "discussion",
+ "punct": "discussion",
+ "index": 12257
+ },
+ {
+ "start": 6162.37,
+ "end": 6162.47,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12258
+ },
+ {
+ "start": 6162.47,
+ "end": 6163.01,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this.",
+ "index": 12259
+ }
+ ],
+ "start": 6158.61
+ }
+ },
+ {
+ "key": "8b420",
+ "text": "But do you collect user data through cross device tracking Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6163.01,
+ "end": 6164.31,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 12260
+ },
+ {
+ "start": 6164.31,
+ "end": 6164.95,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 12261
+ },
+ {
+ "start": 6164.95,
+ "end": 6165.31,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12262
+ },
+ {
+ "start": 6165.31,
+ "end": 6166.37,
+ "confidence": 0,
+ "word": "collect",
+ "punct": "collect",
+ "index": 12263
+ },
+ {
+ "start": 6166.37,
+ "end": 6166.77,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 12264
+ },
+ {
+ "start": 6166.77,
+ "end": 6167.11,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 12265
+ },
+ {
+ "start": 6167.11,
+ "end": 6167.65,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 12266
+ },
+ {
+ "start": 6167.65,
+ "end": 6168.13,
+ "confidence": 0,
+ "word": "cross",
+ "punct": "cross",
+ "index": 12267
+ },
+ {
+ "start": 6168.13,
+ "end": 6168.55,
+ "confidence": 0,
+ "word": "device",
+ "punct": "device",
+ "index": 12268
+ },
+ {
+ "start": 6168.55,
+ "end": 6171.36,
+ "confidence": 0,
+ "word": "tracking",
+ "punct": "tracking",
+ "index": 12269
+ },
+ {
+ "start": 6171.36,
+ "end": 6172.34,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 12270
+ }
+ ],
+ "start": 6163.01
+ }
+ },
+ {
+ "key": "1mgb7",
+ "text": "I believe we do link people's accounts between devices in order to make sure that their Facebook and Instagram and there are other experiences can be synced between their devices and that would also include offline.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6172.34,
+ "end": 6172.44,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12271
+ },
+ {
+ "start": 6172.44,
+ "end": 6172.72,
+ "confidence": 0,
+ "word": "believe",
+ "punct": "believe",
+ "index": 12272
+ },
+ {
+ "start": 6172.72,
+ "end": 6172.86,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12273
+ },
+ {
+ "start": 6172.86,
+ "end": 6173.08,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 12274
+ },
+ {
+ "start": 6173.08,
+ "end": 6173.58,
+ "confidence": 0,
+ "word": "link",
+ "punct": "link",
+ "index": 12275
+ },
+ {
+ "start": 6173.58,
+ "end": 6174.18,
+ "confidence": 0,
+ "word": "people's",
+ "punct": "people's",
+ "index": 12276
+ },
+ {
+ "start": 6174.18,
+ "end": 6174.62,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts",
+ "index": 12277
+ },
+ {
+ "start": 6174.62,
+ "end": 6175.24,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 12278
+ },
+ {
+ "start": 6175.24,
+ "end": 6175.88,
+ "confidence": 0,
+ "word": "devices",
+ "punct": "devices",
+ "index": 12279
+ },
+ {
+ "start": 6175.88,
+ "end": 6176.1,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12280
+ },
+ {
+ "start": 6176.1,
+ "end": 6176.38,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 12281
+ },
+ {
+ "start": 6176.38,
+ "end": 6176.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12282
+ },
+ {
+ "start": 6176.66,
+ "end": 6176.94,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 12283
+ },
+ {
+ "start": 6176.94,
+ "end": 6177.18,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 12284
+ },
+ {
+ "start": 6177.18,
+ "end": 6177.48,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12285
+ },
+ {
+ "start": 6177.48,
+ "end": 6177.82,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 12286
+ },
+ {
+ "start": 6177.82,
+ "end": 6178.4,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12287
+ },
+ {
+ "start": 6178.4,
+ "end": 6178.52,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12288
+ },
+ {
+ "start": 6178.52,
+ "end": 6179,
+ "confidence": 0,
+ "word": "instagram",
+ "punct": "Instagram",
+ "index": 12289
+ },
+ {
+ "start": 6179,
+ "end": 6179.14,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12290
+ },
+ {
+ "start": 6179.14,
+ "end": 6179.28,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 12291
+ },
+ {
+ "start": 6179.28,
+ "end": 6179.38,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 12292
+ },
+ {
+ "start": 6179.38,
+ "end": 6179.54,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 12293
+ },
+ {
+ "start": 6179.54,
+ "end": 6180.06,
+ "confidence": 0,
+ "word": "experiences",
+ "punct": "experiences",
+ "index": 12294
+ },
+ {
+ "start": 6180.06,
+ "end": 6180.22,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 12295
+ },
+ {
+ "start": 6180.22,
+ "end": 6180.34,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 12296
+ },
+ {
+ "start": 6180.34,
+ "end": 6180.64,
+ "confidence": 0,
+ "word": "synced",
+ "punct": "synced",
+ "index": 12297
+ },
+ {
+ "start": 6180.64,
+ "end": 6180.98,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 12298
+ },
+ {
+ "start": 6180.98,
+ "end": 6181.18,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 12299
+ },
+ {
+ "start": 6181.18,
+ "end": 6181.7,
+ "confidence": 0,
+ "word": "devices",
+ "punct": "devices",
+ "index": 12300
+ },
+ {
+ "start": 6181.7,
+ "end": 6181.86,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12301
+ },
+ {
+ "start": 6181.86,
+ "end": 6181.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12302
+ },
+ {
+ "start": 6181.98,
+ "end": 6182.16,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 12303
+ },
+ {
+ "start": 6182.16,
+ "end": 6182.46,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 12304
+ },
+ {
+ "start": 6182.46,
+ "end": 6182.96,
+ "confidence": 0,
+ "word": "include",
+ "punct": "include",
+ "index": 12305
+ },
+ {
+ "start": 6182.96,
+ "end": 6183.72,
+ "confidence": 0,
+ "word": "offline",
+ "punct": "offline.",
+ "index": 12306
+ }
+ ],
+ "start": 6172.34
+ }
+ },
+ {
+ "key": "2445f",
+ "text": "Data data that's tracking that's not necessarily linked to Facebook but linked to some device.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6183.72,
+ "end": 6184.38,
+ "confidence": 0,
+ "word": "data",
+ "punct": "Data",
+ "index": 12307
+ },
+ {
+ "start": 6184.38,
+ "end": 6184.78,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 12308
+ },
+ {
+ "start": 6184.78,
+ "end": 6185.02,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 12309
+ },
+ {
+ "start": 6185.02,
+ "end": 6185.7,
+ "confidence": 0,
+ "word": "tracking",
+ "punct": "tracking",
+ "index": 12310
+ },
+ {
+ "start": 6185.7,
+ "end": 6185.98,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 12311
+ },
+ {
+ "start": 6185.98,
+ "end": 6186.16,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 12312
+ },
+ {
+ "start": 6186.16,
+ "end": 6186.94,
+ "confidence": 0,
+ "word": "necessarily",
+ "punct": "necessarily",
+ "index": 12313
+ },
+ {
+ "start": 6186.94,
+ "end": 6187.34,
+ "confidence": 0,
+ "word": "linked",
+ "punct": "linked",
+ "index": 12314
+ },
+ {
+ "start": 6187.34,
+ "end": 6187.5,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12315
+ },
+ {
+ "start": 6187.5,
+ "end": 6188.2,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12316
+ },
+ {
+ "start": 6188.2,
+ "end": 6188.44,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 12317
+ },
+ {
+ "start": 6188.44,
+ "end": 6188.76,
+ "confidence": 0,
+ "word": "linked",
+ "punct": "linked",
+ "index": 12318
+ },
+ {
+ "start": 6188.76,
+ "end": 6189.24,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12319
+ },
+ {
+ "start": 6189.24,
+ "end": 6189.64,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 12320
+ },
+ {
+ "start": 6189.64,
+ "end": 6190.02,
+ "confidence": 0,
+ "word": "device",
+ "punct": "device.",
+ "index": 12321
+ }
+ ],
+ "start": 6183.72
+ }
+ },
+ {
+ "key": "d1lpb",
+ "text": "They went through Facebook on is that right, Senator?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6190.02,
+ "end": 6190.32,
+ "confidence": 0,
+ "word": "they",
+ "punct": "They",
+ "index": 12322
+ },
+ {
+ "start": 6190.32,
+ "end": 6190.68,
+ "confidence": 0,
+ "word": "went",
+ "punct": "went",
+ "index": 12323
+ },
+ {
+ "start": 6190.68,
+ "end": 6191.06,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 12324
+ },
+ {
+ "start": 6191.06,
+ "end": 6191.7,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12325
+ },
+ {
+ "start": 6191.7,
+ "end": 6191.98,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 12326
+ },
+ {
+ "start": 6191.98,
+ "end": 6192.14,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12327
+ },
+ {
+ "start": 6192.14,
+ "end": 6192.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12328
+ },
+ {
+ "start": 6192.32,
+ "end": 6192.84,
+ "confidence": 0,
+ "word": "right,",
+ "punct": "right,",
+ "index": 12329
+ },
+ {
+ "start": 6192.84,
+ "end": 6193.46,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator?",
+ "index": 12330
+ }
+ ],
+ "start": 6190.02
+ }
+ },
+ {
+ "key": "27ikv",
+ "text": "I want to make sure we get this right.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6193.46,
+ "end": 6193.5,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12331
+ },
+ {
+ "start": 6193.5,
+ "end": 6193.66,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 12332
+ },
+ {
+ "start": 6193.66,
+ "end": 6193.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12333
+ },
+ {
+ "start": 6193.72,
+ "end": 6193.86,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 12334
+ },
+ {
+ "start": 6193.86,
+ "end": 6194,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 12335
+ },
+ {
+ "start": 6194,
+ "end": 6194.14,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12336
+ },
+ {
+ "start": 6194.14,
+ "end": 6194.72,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 12337
+ },
+ {
+ "start": 6194.72,
+ "end": 6194.94,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 12338
+ },
+ {
+ "start": 6194.94,
+ "end": 6195.26,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right.",
+ "index": 12339
+ }
+ ],
+ "start": 6193.46
+ }
+ },
+ {
+ "key": "al6nu",
+ "text": "So I want to have my team.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6195.26,
+ "end": 6195.72,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 12340
+ },
+ {
+ "start": 6195.72,
+ "end": 6196.62,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12341
+ },
+ {
+ "start": 6196.62,
+ "end": 6196.78,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 12342
+ },
+ {
+ "start": 6196.78,
+ "end": 6196.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12343
+ },
+ {
+ "start": 6196.9,
+ "end": 6197.18,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 12344
+ },
+ {
+ "start": 6197.18,
+ "end": 6197.3,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 12345
+ },
+ {
+ "start": 6197.3,
+ "end": 6197.48,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team.",
+ "index": 12346
+ }
+ ],
+ "start": 6195.26
+ }
+ },
+ {
+ "key": "540qf",
+ "text": "Follow up with you on that afterwards.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6197.48,
+ "end": 6197.78,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "Follow",
+ "index": 12347
+ },
+ {
+ "start": 6197.78,
+ "end": 6197.86,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 12348
+ },
+ {
+ "start": 6197.86,
+ "end": 6198,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 12349
+ },
+ {
+ "start": 6198,
+ "end": 6198.12,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12350
+ },
+ {
+ "start": 6198.12,
+ "end": 6198.24,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 12351
+ },
+ {
+ "start": 6198.24,
+ "end": 6198.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12352
+ },
+ {
+ "start": 6198.38,
+ "end": 6199.38,
+ "confidence": 0,
+ "word": "afterwards",
+ "punct": "afterwards.",
+ "index": 12353
+ }
+ ],
+ "start": 6197.48
+ }
+ },
+ {
+ "key": "3iaai",
+ "text": "That doesn't seem that complicated to me.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6199.38,
+ "end": 6200.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 12354
+ },
+ {
+ "start": 6200.36,
+ "end": 6200.62,
+ "confidence": 0,
+ "word": "doesn't",
+ "punct": "doesn't",
+ "index": 12355
+ },
+ {
+ "start": 6200.62,
+ "end": 6200.84,
+ "confidence": 0,
+ "word": "seem",
+ "punct": "seem",
+ "index": 12356
+ },
+ {
+ "start": 6200.84,
+ "end": 6201.06,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12357
+ },
+ {
+ "start": 6201.06,
+ "end": 6201.7,
+ "confidence": 0,
+ "word": "complicated",
+ "punct": "complicated",
+ "index": 12358
+ },
+ {
+ "start": 6201.7,
+ "end": 6201.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12359
+ },
+ {
+ "start": 6201.8,
+ "end": 6201.94,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me.",
+ "index": 12360
+ }
+ ],
+ "start": 6199.38
+ }
+ },
+ {
+ "key": "172p9",
+ "text": "You understand this than I do.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6201.94,
+ "end": 6202.46,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 12361
+ },
+ {
+ "start": 6202.46,
+ "end": 6202.86,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 12362
+ },
+ {
+ "start": 6202.86,
+ "end": 6203.19,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 12363
+ },
+ {
+ "start": 6203.19,
+ "end": 6203.53,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 12364
+ },
+ {
+ "start": 6203.53,
+ "end": 6203.63,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12365
+ },
+ {
+ "start": 6203.63,
+ "end": 6203.85,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do.",
+ "index": 12366
+ }
+ ],
+ "start": 6201.94
+ }
+ },
+ {
+ "key": "78tvu",
+ "text": "But maybe you can explain to me why that why that's complicated.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6203.85,
+ "end": 6203.99,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 12367
+ },
+ {
+ "start": 6203.99,
+ "end": 6205.09,
+ "confidence": 0,
+ "word": "maybe",
+ "punct": "maybe",
+ "index": 12368
+ },
+ {
+ "start": 6205.09,
+ "end": 6205.21,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12369
+ },
+ {
+ "start": 6205.21,
+ "end": 6205.37,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 12370
+ },
+ {
+ "start": 6205.37,
+ "end": 6205.65,
+ "confidence": 0,
+ "word": "explain",
+ "punct": "explain",
+ "index": 12371
+ },
+ {
+ "start": 6205.65,
+ "end": 6205.77,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12372
+ },
+ {
+ "start": 6205.77,
+ "end": 6205.89,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 12373
+ },
+ {
+ "start": 6205.89,
+ "end": 6206.15,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 12374
+ },
+ {
+ "start": 6206.15,
+ "end": 6207.05,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12375
+ },
+ {
+ "start": 6207.05,
+ "end": 6207.23,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 12376
+ },
+ {
+ "start": 6207.23,
+ "end": 6207.45,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 12377
+ },
+ {
+ "start": 6207.45,
+ "end": 6208.05,
+ "confidence": 0,
+ "word": "complicated",
+ "punct": "complicated.",
+ "index": 12378
+ }
+ ],
+ "start": 6203.85
+ }
+ },
+ {
+ "key": "cdf01",
+ "text": "Do you track devices that an individual who uses Facebook as that is connected to the device that they use for their Facebook connection.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6208.05,
+ "end": 6208.35,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 12379
+ },
+ {
+ "start": 6208.35,
+ "end": 6208.55,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12380
+ },
+ {
+ "start": 6208.55,
+ "end": 6209.01,
+ "confidence": 0,
+ "word": "track",
+ "punct": "track",
+ "index": 12381
+ },
+ {
+ "start": 6209.01,
+ "end": 6209.95,
+ "confidence": 0,
+ "word": "devices",
+ "punct": "devices",
+ "index": 12382
+ },
+ {
+ "start": 6209.95,
+ "end": 6210.77,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12383
+ },
+ {
+ "start": 6210.77,
+ "end": 6210.85,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 12384
+ },
+ {
+ "start": 6210.85,
+ "end": 6211.51,
+ "confidence": 0,
+ "word": "individual",
+ "punct": "individual",
+ "index": 12385
+ },
+ {
+ "start": 6211.51,
+ "end": 6211.73,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 12386
+ },
+ {
+ "start": 6211.73,
+ "end": 6212.15,
+ "confidence": 0,
+ "word": "uses",
+ "punct": "uses",
+ "index": 12387
+ },
+ {
+ "start": 6212.15,
+ "end": 6213.54,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12388
+ },
+ {
+ "start": 6213.54,
+ "end": 6214.98,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 12389
+ },
+ {
+ "start": 6214.98,
+ "end": 6215.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12390
+ },
+ {
+ "start": 6215.94,
+ "end": 6217.06,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12391
+ },
+ {
+ "start": 6217.06,
+ "end": 6217.66,
+ "confidence": 0,
+ "word": "connected",
+ "punct": "connected",
+ "index": 12392
+ },
+ {
+ "start": 6217.66,
+ "end": 6217.82,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12393
+ },
+ {
+ "start": 6217.82,
+ "end": 6218.02,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12394
+ },
+ {
+ "start": 6218.02,
+ "end": 6218.38,
+ "confidence": 0,
+ "word": "device",
+ "punct": "device",
+ "index": 12395
+ },
+ {
+ "start": 6218.38,
+ "end": 6218.54,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12396
+ },
+ {
+ "start": 6218.54,
+ "end": 6218.76,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 12397
+ },
+ {
+ "start": 6218.76,
+ "end": 6219,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 12398
+ },
+ {
+ "start": 6219,
+ "end": 6219.18,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 12399
+ },
+ {
+ "start": 6219.18,
+ "end": 6219.4,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 12400
+ },
+ {
+ "start": 6219.4,
+ "end": 6219.92,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12401
+ },
+ {
+ "start": 6219.92,
+ "end": 6220.44,
+ "confidence": 0,
+ "word": "connection",
+ "punct": "connection.",
+ "index": 12402
+ }
+ ],
+ "start": 6208.05
+ }
+ },
+ {
+ "key": "s91p",
+ "text": "But not necessarily connected to Facebook I'm not sure the answer to that question, really.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6220.44,
+ "end": 6220.6,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 12403
+ },
+ {
+ "start": 6220.6,
+ "end": 6220.84,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 12404
+ },
+ {
+ "start": 6220.84,
+ "end": 6221.64,
+ "confidence": 0,
+ "word": "necessarily",
+ "punct": "necessarily",
+ "index": 12405
+ },
+ {
+ "start": 6221.64,
+ "end": 6222.16,
+ "confidence": 0,
+ "word": "connected",
+ "punct": "connected",
+ "index": 12406
+ },
+ {
+ "start": 6222.16,
+ "end": 6222.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12407
+ },
+ {
+ "start": 6222.28,
+ "end": 6223.86,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12408
+ },
+ {
+ "start": 6223.86,
+ "end": 6224.58,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 12409
+ },
+ {
+ "start": 6224.58,
+ "end": 6225.62,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 12410
+ },
+ {
+ "start": 6225.62,
+ "end": 6225.88,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 12411
+ },
+ {
+ "start": 6225.88,
+ "end": 6226.08,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12412
+ },
+ {
+ "start": 6226.08,
+ "end": 6226.4,
+ "confidence": 0,
+ "word": "answer",
+ "punct": "answer",
+ "index": 12413
+ },
+ {
+ "start": 6226.4,
+ "end": 6226.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12414
+ },
+ {
+ "start": 6226.52,
+ "end": 6226.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12415
+ },
+ {
+ "start": 6226.72,
+ "end": 6227.1,
+ "confidence": 0,
+ "word": "question,",
+ "punct": "question,",
+ "index": 12416
+ },
+ {
+ "start": 6227.1,
+ "end": 6227.42,
+ "confidence": 0,
+ "word": "really",
+ "punct": "really.",
+ "index": 12417
+ }
+ ],
+ "start": 6220.44
+ }
+ },
+ {
+ "key": "dvabs",
+ "text": "Yes, there may be some data that is necessary to provide the service that we do.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6227.42,
+ "end": 6228.14,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 12418
+ },
+ {
+ "start": 6228.14,
+ "end": 6229.08,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 12419
+ },
+ {
+ "start": 6229.08,
+ "end": 6229.24,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 12420
+ },
+ {
+ "start": 6229.24,
+ "end": 6229.36,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 12421
+ },
+ {
+ "start": 6229.36,
+ "end": 6229.78,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 12422
+ },
+ {
+ "start": 6229.78,
+ "end": 6230.2,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 12423
+ },
+ {
+ "start": 6230.2,
+ "end": 6230.54,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12424
+ },
+ {
+ "start": 6230.54,
+ "end": 6231.44,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12425
+ },
+ {
+ "start": 6231.44,
+ "end": 6232.04,
+ "confidence": 0,
+ "word": "necessary",
+ "punct": "necessary",
+ "index": 12426
+ },
+ {
+ "start": 6232.04,
+ "end": 6232.16,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12427
+ },
+ {
+ "start": 6232.16,
+ "end": 6232.46,
+ "confidence": 0,
+ "word": "provide",
+ "punct": "provide",
+ "index": 12428
+ },
+ {
+ "start": 6232.46,
+ "end": 6232.58,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12429
+ },
+ {
+ "start": 6232.58,
+ "end": 6232.96,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 12430
+ },
+ {
+ "start": 6232.96,
+ "end": 6233.12,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12431
+ },
+ {
+ "start": 6233.12,
+ "end": 6233.22,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12432
+ },
+ {
+ "start": 6233.22,
+ "end": 6234.18,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do.",
+ "index": 12433
+ }
+ ],
+ "start": 6227.42
+ }
+ },
+ {
+ "key": "dof4k",
+ "text": "But I don't have that sitting here.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6234.18,
+ "end": 6235.02,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 12434
+ },
+ {
+ "start": 6235.02,
+ "end": 6235.22,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12435
+ },
+ {
+ "start": 6235.22,
+ "end": 6236.08,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 12436
+ },
+ {
+ "start": 6236.08,
+ "end": 6236.24,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 12437
+ },
+ {
+ "start": 6236.24,
+ "end": 6236.86,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12438
+ },
+ {
+ "start": 6236.86,
+ "end": 6237.82,
+ "confidence": 0,
+ "word": "sitting",
+ "punct": "sitting",
+ "index": 12439
+ },
+ {
+ "start": 6237.82,
+ "end": 6237.96,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here.",
+ "index": 12440
+ }
+ ],
+ "start": 6234.18
+ }
+ },
+ {
+ "key": "4l72g",
+ "text": "Today, so that's something that I would want to follow now.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6237.96,
+ "end": 6238.22,
+ "confidence": 0,
+ "word": "today,",
+ "punct": "Today,",
+ "index": 12441
+ },
+ {
+ "start": 6238.22,
+ "end": 6238.62,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 12442
+ },
+ {
+ "start": 6238.62,
+ "end": 6238.96,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 12443
+ },
+ {
+ "start": 6238.96,
+ "end": 6239.3,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 12444
+ },
+ {
+ "start": 6239.3,
+ "end": 6239.42,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12445
+ },
+ {
+ "start": 6239.42,
+ "end": 6239.46,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12446
+ },
+ {
+ "start": 6239.46,
+ "end": 6239.62,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 12447
+ },
+ {
+ "start": 6239.62,
+ "end": 6239.74,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 12448
+ },
+ {
+ "start": 6239.74,
+ "end": 6239.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12449
+ },
+ {
+ "start": 6239.8,
+ "end": 6239.98,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 12450
+ },
+ {
+ "start": 6239.98,
+ "end": 6240.16,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now.",
+ "index": 12451
+ }
+ ],
+ "start": 6237.96
+ }
+ },
+ {
+ "key": "7nsjn",
+ "text": "The FTC last year flag cross device tracking as one of their concerns.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6240.16,
+ "end": 6240.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 12452
+ },
+ {
+ "start": 6240.3,
+ "end": 6241.06,
+ "confidence": 0,
+ "word": "ftc",
+ "punct": "FTC",
+ "index": 12453
+ },
+ {
+ "start": 6241.06,
+ "end": 6241.44,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 12454
+ },
+ {
+ "start": 6241.44,
+ "end": 6241.82,
+ "confidence": 0,
+ "word": "year",
+ "punct": "year",
+ "index": 12455
+ },
+ {
+ "start": 6241.82,
+ "end": 6242.76,
+ "confidence": 0,
+ "word": "flag",
+ "punct": "flag",
+ "index": 12456
+ },
+ {
+ "start": 6242.76,
+ "end": 6243.12,
+ "confidence": 0,
+ "word": "cross",
+ "punct": "cross",
+ "index": 12457
+ },
+ {
+ "start": 6243.12,
+ "end": 6243.64,
+ "confidence": 0,
+ "word": "device",
+ "punct": "device",
+ "index": 12458
+ },
+ {
+ "start": 6243.64,
+ "end": 6244.32,
+ "confidence": 0,
+ "word": "tracking",
+ "punct": "tracking",
+ "index": 12459
+ },
+ {
+ "start": 6244.32,
+ "end": 6244.8,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 12460
+ },
+ {
+ "start": 6244.8,
+ "end": 6245.02,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 12461
+ },
+ {
+ "start": 6245.02,
+ "end": 6245.12,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12462
+ },
+ {
+ "start": 6245.12,
+ "end": 6245.36,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 12463
+ },
+ {
+ "start": 6245.36,
+ "end": 6246.64,
+ "confidence": 0,
+ "word": "concerns",
+ "punct": "concerns.",
+ "index": 12464
+ }
+ ],
+ "start": 6240.16
+ }
+ },
+ {
+ "key": "36f88",
+ "text": "Generally that people are tracking devices that the users of something like Facebook don't know that are being tracked.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6246.64,
+ "end": 6247.72,
+ "confidence": 0,
+ "word": "generally",
+ "punct": "Generally",
+ "index": 12465
+ },
+ {
+ "start": 6247.72,
+ "end": 6248.04,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12466
+ },
+ {
+ "start": 6248.04,
+ "end": 6248.42,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 12467
+ },
+ {
+ "start": 6248.42,
+ "end": 6248.78,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 12468
+ },
+ {
+ "start": 6248.78,
+ "end": 6249.38,
+ "confidence": 0,
+ "word": "tracking",
+ "punct": "tracking",
+ "index": 12469
+ },
+ {
+ "start": 6249.38,
+ "end": 6250.06,
+ "confidence": 0,
+ "word": "devices",
+ "punct": "devices",
+ "index": 12470
+ },
+ {
+ "start": 6250.06,
+ "end": 6250.34,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12471
+ },
+ {
+ "start": 6250.34,
+ "end": 6251.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12472
+ },
+ {
+ "start": 6251.2,
+ "end": 6251.62,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 12473
+ },
+ {
+ "start": 6251.62,
+ "end": 6251.8,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12474
+ },
+ {
+ "start": 6251.8,
+ "end": 6252.16,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 12475
+ },
+ {
+ "start": 6252.16,
+ "end": 6252.5,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 12476
+ },
+ {
+ "start": 6252.5,
+ "end": 6253.08,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12477
+ },
+ {
+ "start": 6253.08,
+ "end": 6253.46,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 12478
+ },
+ {
+ "start": 6253.46,
+ "end": 6253.7,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 12479
+ },
+ {
+ "start": 6253.7,
+ "end": 6254.82,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12480
+ },
+ {
+ "start": 6254.82,
+ "end": 6254.96,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 12481
+ },
+ {
+ "start": 6254.96,
+ "end": 6255.26,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 12482
+ },
+ {
+ "start": 6255.26,
+ "end": 6255.68,
+ "confidence": 0,
+ "word": "tracked",
+ "punct": "tracked.",
+ "index": 12483
+ }
+ ],
+ "start": 6246.64
+ }
+ },
+ {
+ "key": "48tgo",
+ "text": "How do you disclose your collected collection methods is at all in this document that I would see and agree to before I entered into a Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6255.68,
+ "end": 6255.92,
+ "confidence": 0,
+ "word": "how",
+ "punct": "How",
+ "index": 12484
+ },
+ {
+ "start": 6255.92,
+ "end": 6256.04,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 12485
+ },
+ {
+ "start": 6256.04,
+ "end": 6256.18,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12486
+ },
+ {
+ "start": 6256.18,
+ "end": 6256.9,
+ "confidence": 0,
+ "word": "disclose",
+ "punct": "disclose",
+ "index": 12487
+ },
+ {
+ "start": 6256.9,
+ "end": 6258.12,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 12488
+ },
+ {
+ "start": 6258.12,
+ "end": 6259.14,
+ "confidence": 0,
+ "word": "collected",
+ "punct": "collected",
+ "index": 12489
+ },
+ {
+ "start": 6259.14,
+ "end": 6260.02,
+ "confidence": 0,
+ "word": "collection",
+ "punct": "collection",
+ "index": 12490
+ },
+ {
+ "start": 6260.02,
+ "end": 6260.8,
+ "confidence": 0,
+ "word": "methods",
+ "punct": "methods",
+ "index": 12491
+ },
+ {
+ "start": 6260.8,
+ "end": 6260.96,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12492
+ },
+ {
+ "start": 6260.96,
+ "end": 6261.16,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 12493
+ },
+ {
+ "start": 6261.16,
+ "end": 6261.42,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 12494
+ },
+ {
+ "start": 6261.42,
+ "end": 6261.68,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12495
+ },
+ {
+ "start": 6261.68,
+ "end": 6262.3,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 12496
+ },
+ {
+ "start": 6262.3,
+ "end": 6263.18,
+ "confidence": 0,
+ "word": "document",
+ "punct": "document",
+ "index": 12497
+ },
+ {
+ "start": 6263.18,
+ "end": 6263.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12498
+ },
+ {
+ "start": 6263.36,
+ "end": 6263.48,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12499
+ },
+ {
+ "start": 6263.48,
+ "end": 6263.7,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 12500
+ },
+ {
+ "start": 6263.7,
+ "end": 6263.96,
+ "confidence": 0,
+ "word": "see",
+ "punct": "see",
+ "index": 12501
+ },
+ {
+ "start": 6263.96,
+ "end": 6264.08,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12502
+ },
+ {
+ "start": 6264.08,
+ "end": 6264.46,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 12503
+ },
+ {
+ "start": 6264.46,
+ "end": 6264.6,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12504
+ },
+ {
+ "start": 6264.6,
+ "end": 6265.1,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 12505
+ },
+ {
+ "start": 6265.1,
+ "end": 6265.84,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12506
+ },
+ {
+ "start": 6265.84,
+ "end": 6266.6,
+ "confidence": 0,
+ "word": "entered",
+ "punct": "entered",
+ "index": 12507
+ },
+ {
+ "start": 6266.6,
+ "end": 6266.88,
+ "confidence": 0,
+ "word": "into",
+ "punct": "into",
+ "index": 12508
+ },
+ {
+ "start": 6266.88,
+ "end": 6267.14,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 12509
+ },
+ {
+ "start": 6267.14,
+ "end": 6268,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 12510
+ }
+ ],
+ "start": 6255.68
+ }
+ },
+ {
+ "key": "2q59m",
+ "text": "Yes, Senator, so there are two ways that we do.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6268,
+ "end": 6269,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 12511
+ },
+ {
+ "start": 6269,
+ "end": 6269.34,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 12512
+ },
+ {
+ "start": 6269.34,
+ "end": 6269.5,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 12513
+ },
+ {
+ "start": 6269.5,
+ "end": 6269.98,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 12514
+ },
+ {
+ "start": 6269.98,
+ "end": 6270.08,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 12515
+ },
+ {
+ "start": 6270.08,
+ "end": 6270.32,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two",
+ "index": 12516
+ },
+ {
+ "start": 6270.32,
+ "end": 6270.66,
+ "confidence": 0,
+ "word": "ways",
+ "punct": "ways",
+ "index": 12517
+ },
+ {
+ "start": 6270.66,
+ "end": 6270.84,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12518
+ },
+ {
+ "start": 6270.84,
+ "end": 6270.96,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12519
+ },
+ {
+ "start": 6270.96,
+ "end": 6271.1,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do.",
+ "index": 12520
+ }
+ ],
+ "start": 6268
+ }
+ },
+ {
+ "key": "b33b7",
+ "text": "This one is we try to be exhaustive in the legal documents around the terms of service and privacy policies.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6271.1,
+ "end": 6271.28,
+ "confidence": 0,
+ "word": "this",
+ "punct": "This",
+ "index": 12521
+ },
+ {
+ "start": 6271.28,
+ "end": 6271.8,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 12522
+ },
+ {
+ "start": 6271.8,
+ "end": 6271.94,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12523
+ },
+ {
+ "start": 6271.94,
+ "end": 6272.1,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12524
+ },
+ {
+ "start": 6272.1,
+ "end": 6272.32,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 12525
+ },
+ {
+ "start": 6272.32,
+ "end": 6272.42,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12526
+ },
+ {
+ "start": 6272.42,
+ "end": 6272.54,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 12527
+ },
+ {
+ "start": 6272.54,
+ "end": 6273.24,
+ "confidence": 0,
+ "word": "exhaustive",
+ "punct": "exhaustive",
+ "index": 12528
+ },
+ {
+ "start": 6273.24,
+ "end": 6273.78,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12529
+ },
+ {
+ "start": 6273.78,
+ "end": 6273.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12530
+ },
+ {
+ "start": 6273.88,
+ "end": 6274.2,
+ "confidence": 0,
+ "word": "legal",
+ "punct": "legal",
+ "index": 12531
+ },
+ {
+ "start": 6274.2,
+ "end": 6274.64,
+ "confidence": 0,
+ "word": "documents",
+ "punct": "documents",
+ "index": 12532
+ },
+ {
+ "start": 6274.64,
+ "end": 6274.9,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 12533
+ },
+ {
+ "start": 6274.9,
+ "end": 6275,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12534
+ },
+ {
+ "start": 6275,
+ "end": 6275.24,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 12535
+ },
+ {
+ "start": 6275.24,
+ "end": 6275.36,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12536
+ },
+ {
+ "start": 6275.36,
+ "end": 6275.72,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 12537
+ },
+ {
+ "start": 6275.72,
+ "end": 6275.84,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12538
+ },
+ {
+ "start": 6275.84,
+ "end": 6276.3,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 12539
+ },
+ {
+ "start": 6276.3,
+ "end": 6276.8,
+ "confidence": 0,
+ "word": "policies",
+ "punct": "policies.",
+ "index": 12540
+ }
+ ],
+ "start": 6271.1
+ }
+ },
+ {
+ "key": "ai6ua",
+ "text": "But more importantly, we try to provide inline controls.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6276.8,
+ "end": 6277.44,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 12541
+ },
+ {
+ "start": 6277.44,
+ "end": 6277.66,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 12542
+ },
+ {
+ "start": 6277.66,
+ "end": 6278.24,
+ "confidence": 0,
+ "word": "importantly,",
+ "punct": "importantly,",
+ "index": 12543
+ },
+ {
+ "start": 6278.24,
+ "end": 6279.08,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12544
+ },
+ {
+ "start": 6279.08,
+ "end": 6279.32,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 12545
+ },
+ {
+ "start": 6279.32,
+ "end": 6279.44,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12546
+ },
+ {
+ "start": 6279.44,
+ "end": 6279.74,
+ "confidence": 0,
+ "word": "provide",
+ "punct": "provide",
+ "index": 12547
+ },
+ {
+ "start": 6279.74,
+ "end": 6280.26,
+ "confidence": 0,
+ "word": "inline",
+ "punct": "inline",
+ "index": 12548
+ },
+ {
+ "start": 6280.26,
+ "end": 6280.94,
+ "confidence": 0,
+ "word": "controls",
+ "punct": "controls.",
+ "index": 12549
+ }
+ ],
+ "start": 6276.8
+ }
+ },
+ {
+ "key": "4s1qu",
+ "text": "So people that are in plain English that people can understand.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6280.94,
+ "end": 6281.78,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 12550
+ },
+ {
+ "start": 6281.78,
+ "end": 6282.1,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 12551
+ },
+ {
+ "start": 6282.1,
+ "end": 6282.22,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12552
+ },
+ {
+ "start": 6282.22,
+ "end": 6282.42,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 12553
+ },
+ {
+ "start": 6282.42,
+ "end": 6282.68,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12554
+ },
+ {
+ "start": 6282.68,
+ "end": 6282.98,
+ "confidence": 0,
+ "word": "plain",
+ "punct": "plain",
+ "index": 12555
+ },
+ {
+ "start": 6282.98,
+ "end": 6283.22,
+ "confidence": 0,
+ "word": "english",
+ "punct": "English",
+ "index": 12556
+ },
+ {
+ "start": 6283.22,
+ "end": 6283.46,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12557
+ },
+ {
+ "start": 6283.46,
+ "end": 6283.72,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 12558
+ },
+ {
+ "start": 6283.72,
+ "end": 6283.88,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 12559
+ },
+ {
+ "start": 6283.88,
+ "end": 6284.44,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand.",
+ "index": 12560
+ }
+ ],
+ "start": 6280.94
+ }
+ },
+ {
+ "key": "dd4lg",
+ "text": "They can either go to settings or we can show them at the top of the app periodically is that people understand all the controls and settings they have and can configure their experience the way that they want.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6284.44,
+ "end": 6285.28,
+ "confidence": 0,
+ "word": "they",
+ "punct": "They",
+ "index": 12561
+ },
+ {
+ "start": 6285.28,
+ "end": 6285.44,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 12562
+ },
+ {
+ "start": 6285.44,
+ "end": 6285.86,
+ "confidence": 0,
+ "word": "either",
+ "punct": "either",
+ "index": 12563
+ },
+ {
+ "start": 6285.86,
+ "end": 6285.98,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 12564
+ },
+ {
+ "start": 6285.98,
+ "end": 6286.08,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12565
+ },
+ {
+ "start": 6286.08,
+ "end": 6286.42,
+ "confidence": 0,
+ "word": "settings",
+ "punct": "settings",
+ "index": 12566
+ },
+ {
+ "start": 6286.42,
+ "end": 6286.58,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 12567
+ },
+ {
+ "start": 6286.58,
+ "end": 6286.7,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12568
+ },
+ {
+ "start": 6286.7,
+ "end": 6286.84,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 12569
+ },
+ {
+ "start": 6286.84,
+ "end": 6287.02,
+ "confidence": 0,
+ "word": "show",
+ "punct": "show",
+ "index": 12570
+ },
+ {
+ "start": 6287.02,
+ "end": 6287.16,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 12571
+ },
+ {
+ "start": 6287.16,
+ "end": 6287.24,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 12572
+ },
+ {
+ "start": 6287.24,
+ "end": 6287.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12573
+ },
+ {
+ "start": 6287.36,
+ "end": 6287.5,
+ "confidence": 0,
+ "word": "top",
+ "punct": "top",
+ "index": 12574
+ },
+ {
+ "start": 6287.5,
+ "end": 6287.62,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12575
+ },
+ {
+ "start": 6287.62,
+ "end": 6287.74,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12576
+ },
+ {
+ "start": 6287.74,
+ "end": 6287.98,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 12577
+ },
+ {
+ "start": 6287.98,
+ "end": 6289.08,
+ "confidence": 0,
+ "word": "periodically",
+ "punct": "periodically",
+ "index": 12578
+ },
+ {
+ "start": 6289.08,
+ "end": 6289.64,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12579
+ },
+ {
+ "start": 6289.64,
+ "end": 6289.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12580
+ },
+ {
+ "start": 6289.8,
+ "end": 6290.04,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 12581
+ },
+ {
+ "start": 6290.04,
+ "end": 6290.62,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 12582
+ },
+ {
+ "start": 6290.62,
+ "end": 6290.86,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 12583
+ },
+ {
+ "start": 6290.86,
+ "end": 6291.02,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12584
+ },
+ {
+ "start": 6291.02,
+ "end": 6291.44,
+ "confidence": 0,
+ "word": "controls",
+ "punct": "controls",
+ "index": 12585
+ },
+ {
+ "start": 6291.44,
+ "end": 6291.58,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12586
+ },
+ {
+ "start": 6291.58,
+ "end": 6291.94,
+ "confidence": 0,
+ "word": "settings",
+ "punct": "settings",
+ "index": 12587
+ },
+ {
+ "start": 6291.94,
+ "end": 6292.14,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 12588
+ },
+ {
+ "start": 6292.14,
+ "end": 6292.46,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 12589
+ },
+ {
+ "start": 6292.46,
+ "end": 6293.5,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12590
+ },
+ {
+ "start": 6293.5,
+ "end": 6294.4,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 12591
+ },
+ {
+ "start": 6294.4,
+ "end": 6294.92,
+ "confidence": 0,
+ "word": "configure",
+ "punct": "configure",
+ "index": 12592
+ },
+ {
+ "start": 6294.92,
+ "end": 6295.1,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 12593
+ },
+ {
+ "start": 6295.1,
+ "end": 6295.5,
+ "confidence": 0,
+ "word": "experience",
+ "punct": "experience",
+ "index": 12594
+ },
+ {
+ "start": 6295.5,
+ "end": 6295.64,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12595
+ },
+ {
+ "start": 6295.64,
+ "end": 6295.74,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 12596
+ },
+ {
+ "start": 6295.74,
+ "end": 6295.86,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12597
+ },
+ {
+ "start": 6295.86,
+ "end": 6295.98,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 12598
+ },
+ {
+ "start": 6295.98,
+ "end": 6296.22,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want.",
+ "index": 12599
+ }
+ ],
+ "start": 6284.44
+ }
+ },
+ {
+ "key": "fghtg",
+ "text": "So the people people now give you permission to track specific devices in their contract.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6296.22,
+ "end": 6297.36,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 12600
+ },
+ {
+ "start": 6297.36,
+ "end": 6298.06,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12601
+ },
+ {
+ "start": 6298.06,
+ "end": 6299,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 12602
+ },
+ {
+ "start": 6299,
+ "end": 6299.7,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 12603
+ },
+ {
+ "start": 6299.7,
+ "end": 6299.98,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 12604
+ },
+ {
+ "start": 6299.98,
+ "end": 6300.24,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 12605
+ },
+ {
+ "start": 6300.24,
+ "end": 6300.38,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12606
+ },
+ {
+ "start": 6300.38,
+ "end": 6301.18,
+ "confidence": 0,
+ "word": "permission",
+ "punct": "permission",
+ "index": 12607
+ },
+ {
+ "start": 6301.18,
+ "end": 6301.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12608
+ },
+ {
+ "start": 6301.66,
+ "end": 6302.06,
+ "confidence": 0,
+ "word": "track",
+ "punct": "track",
+ "index": 12609
+ },
+ {
+ "start": 6302.06,
+ "end": 6302.8,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 12610
+ },
+ {
+ "start": 6302.8,
+ "end": 6303.44,
+ "confidence": 0,
+ "word": "devices",
+ "punct": "devices",
+ "index": 12611
+ },
+ {
+ "start": 6303.44,
+ "end": 6303.72,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12612
+ },
+ {
+ "start": 6303.72,
+ "end": 6303.96,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 12613
+ },
+ {
+ "start": 6303.96,
+ "end": 6304.48,
+ "confidence": 0,
+ "word": "contract",
+ "punct": "contract.",
+ "index": 12614
+ }
+ ],
+ "start": 6296.22
+ }
+ },
+ {
+ "key": "bj7sp",
+ "text": "And if they do, is that a relatively new addition to what you do, Senator or able to opt out and I will say, it's okay, for you to track what I'm saying on Facebook?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6304.48,
+ "end": 6304.66,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 12615
+ },
+ {
+ "start": 6304.66,
+ "end": 6304.8,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 12616
+ },
+ {
+ "start": 6304.8,
+ "end": 6304.98,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 12617
+ },
+ {
+ "start": 6304.98,
+ "end": 6305.16,
+ "confidence": 0,
+ "word": "do,",
+ "punct": "do,",
+ "index": 12618
+ },
+ {
+ "start": 6305.16,
+ "end": 6305.4,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12619
+ },
+ {
+ "start": 6305.4,
+ "end": 6305.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12620
+ },
+ {
+ "start": 6305.6,
+ "end": 6305.78,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 12621
+ },
+ {
+ "start": 6305.78,
+ "end": 6306.88,
+ "confidence": 0,
+ "word": "relatively",
+ "punct": "relatively",
+ "index": 12622
+ },
+ {
+ "start": 6306.88,
+ "end": 6307.16,
+ "confidence": 0,
+ "word": "new",
+ "punct": "new",
+ "index": 12623
+ },
+ {
+ "start": 6307.16,
+ "end": 6307.64,
+ "confidence": 0,
+ "word": "addition",
+ "punct": "addition",
+ "index": 12624
+ },
+ {
+ "start": 6307.64,
+ "end": 6307.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12625
+ },
+ {
+ "start": 6307.8,
+ "end": 6308,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 12626
+ },
+ {
+ "start": 6308,
+ "end": 6308.14,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12627
+ },
+ {
+ "start": 6308.14,
+ "end": 6309.52,
+ "confidence": 0,
+ "word": "do,",
+ "punct": "do,",
+ "index": 12628
+ },
+ {
+ "start": 6309.52,
+ "end": 6310.52,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 12629
+ },
+ {
+ "start": 6310.52,
+ "end": 6311.3,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 12630
+ },
+ {
+ "start": 6311.3,
+ "end": 6312.44,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 12631
+ },
+ {
+ "start": 6312.44,
+ "end": 6312.54,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12632
+ },
+ {
+ "start": 6312.54,
+ "end": 6312.84,
+ "confidence": 0,
+ "word": "opt",
+ "punct": "opt",
+ "index": 12633
+ },
+ {
+ "start": 6312.84,
+ "end": 6313.04,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 12634
+ },
+ {
+ "start": 6313.04,
+ "end": 6313.18,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12635
+ },
+ {
+ "start": 6313.18,
+ "end": 6313.28,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12636
+ },
+ {
+ "start": 6313.28,
+ "end": 6313.5,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 12637
+ },
+ {
+ "start": 6313.5,
+ "end": 6313.66,
+ "confidence": 0,
+ "word": "say,",
+ "punct": "say,",
+ "index": 12638
+ },
+ {
+ "start": 6313.66,
+ "end": 6313.84,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 12639
+ },
+ {
+ "start": 6313.84,
+ "end": 6314.3,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "okay,",
+ "index": 12640
+ },
+ {
+ "start": 6314.3,
+ "end": 6314.52,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 12641
+ },
+ {
+ "start": 6314.52,
+ "end": 6314.72,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12642
+ },
+ {
+ "start": 6314.72,
+ "end": 6315.78,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12643
+ },
+ {
+ "start": 6315.78,
+ "end": 6316.9,
+ "confidence": 0,
+ "word": "track",
+ "punct": "track",
+ "index": 12644
+ },
+ {
+ "start": 6316.9,
+ "end": 6317.1,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 12645
+ },
+ {
+ "start": 6317.1,
+ "end": 6317.3,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 12646
+ },
+ {
+ "start": 6317.3,
+ "end": 6317.74,
+ "confidence": 0,
+ "word": "saying",
+ "punct": "saying",
+ "index": 12647
+ },
+ {
+ "start": 6317.74,
+ "end": 6318.1,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 12648
+ },
+ {
+ "start": 6318.1,
+ "end": 6318.72,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook?",
+ "index": 12649
+ }
+ ],
+ "start": 6304.48
+ }
+ },
+ {
+ "key": "bnvfd",
+ "text": "But I don't want you to track what I'm texting to somebody else off Facebook on an Android.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6318.72,
+ "end": 6318.88,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 12650
+ },
+ {
+ "start": 6318.88,
+ "end": 6318.98,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12651
+ },
+ {
+ "start": 6318.98,
+ "end": 6319.18,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 12652
+ },
+ {
+ "start": 6319.18,
+ "end": 6319.34,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 12653
+ },
+ {
+ "start": 6319.34,
+ "end": 6319.5,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12654
+ },
+ {
+ "start": 6319.5,
+ "end": 6319.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12655
+ },
+ {
+ "start": 6319.58,
+ "end": 6320.06,
+ "confidence": 0,
+ "word": "track",
+ "punct": "track",
+ "index": 12656
+ },
+ {
+ "start": 6320.06,
+ "end": 6320.46,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 12657
+ },
+ {
+ "start": 6320.46,
+ "end": 6320.7,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 12658
+ },
+ {
+ "start": 6320.7,
+ "end": 6321.36,
+ "confidence": 0,
+ "word": "texting",
+ "punct": "texting",
+ "index": 12659
+ },
+ {
+ "start": 6321.36,
+ "end": 6321.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12660
+ },
+ {
+ "start": 6321.72,
+ "end": 6322.22,
+ "confidence": 0,
+ "word": "somebody",
+ "punct": "somebody",
+ "index": 12661
+ },
+ {
+ "start": 6322.22,
+ "end": 6322.48,
+ "confidence": 0,
+ "word": "else",
+ "punct": "else",
+ "index": 12662
+ },
+ {
+ "start": 6322.48,
+ "end": 6322.82,
+ "confidence": 0,
+ "word": "off",
+ "punct": "off",
+ "index": 12663
+ },
+ {
+ "start": 6322.82,
+ "end": 6323.66,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12664
+ },
+ {
+ "start": 6323.66,
+ "end": 6323.98,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 12665
+ },
+ {
+ "start": 6323.98,
+ "end": 6324.48,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 12666
+ },
+ {
+ "start": 6324.48,
+ "end": 6324.92,
+ "confidence": 0,
+ "word": "android",
+ "punct": "Android.",
+ "index": 12667
+ }
+ ],
+ "start": 6318.72
+ }
+ },
+ {
+ "key": "9o5ej",
+ "text": "Okay, yes, Senator, in general, Facebook is not collecting data from other apps that you use.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6324.92,
+ "end": 6326.1,
+ "confidence": 0,
+ "word": "okay,",
+ "punct": "Okay,",
+ "index": 12668
+ },
+ {
+ "start": 6326.1,
+ "end": 6327.14,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "yes,",
+ "index": 12669
+ },
+ {
+ "start": 6327.14,
+ "end": 6328.32,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 12670
+ },
+ {
+ "start": 6328.32,
+ "end": 6329.3,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12671
+ },
+ {
+ "start": 6329.3,
+ "end": 6329.72,
+ "confidence": 0,
+ "word": "general,",
+ "punct": "general,",
+ "index": 12672
+ },
+ {
+ "start": 6329.72,
+ "end": 6330.42,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12673
+ },
+ {
+ "start": 6330.42,
+ "end": 6330.56,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12674
+ },
+ {
+ "start": 6330.56,
+ "end": 6330.92,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 12675
+ },
+ {
+ "start": 6330.92,
+ "end": 6331.52,
+ "confidence": 0,
+ "word": "collecting",
+ "punct": "collecting",
+ "index": 12676
+ },
+ {
+ "start": 6331.52,
+ "end": 6331.86,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 12677
+ },
+ {
+ "start": 6331.86,
+ "end": 6332.08,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 12678
+ },
+ {
+ "start": 6332.08,
+ "end": 6332.36,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 12679
+ },
+ {
+ "start": 6332.36,
+ "end": 6332.6,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 12680
+ },
+ {
+ "start": 6332.6,
+ "end": 6332.78,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12681
+ },
+ {
+ "start": 6332.78,
+ "end": 6332.9,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12682
+ },
+ {
+ "start": 6332.9,
+ "end": 6333.3,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use.",
+ "index": 12683
+ }
+ ],
+ "start": 6324.92
+ }
+ },
+ {
+ "key": "fup0j",
+ "text": "There may be some specific things about the device that you're using that Facebook needs to understand in order to offer the service.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6333.3,
+ "end": 6334.02,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 12684
+ },
+ {
+ "start": 6334.02,
+ "end": 6334.24,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 12685
+ },
+ {
+ "start": 6334.24,
+ "end": 6334.38,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 12686
+ },
+ {
+ "start": 6334.38,
+ "end": 6334.64,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 12687
+ },
+ {
+ "start": 6334.64,
+ "end": 6335.24,
+ "confidence": 0,
+ "word": "specific",
+ "punct": "specific",
+ "index": 12688
+ },
+ {
+ "start": 6335.24,
+ "end": 6335.52,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 12689
+ },
+ {
+ "start": 6335.52,
+ "end": 6335.78,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 12690
+ },
+ {
+ "start": 6335.78,
+ "end": 6335.9,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12691
+ },
+ {
+ "start": 6335.9,
+ "end": 6336.26,
+ "confidence": 0,
+ "word": "device",
+ "punct": "device",
+ "index": 12692
+ },
+ {
+ "start": 6336.26,
+ "end": 6336.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12693
+ },
+ {
+ "start": 6336.44,
+ "end": 6336.64,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 12694
+ },
+ {
+ "start": 6336.64,
+ "end": 6337.04,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 12695
+ },
+ {
+ "start": 6337.04,
+ "end": 6337.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12696
+ },
+ {
+ "start": 6337.72,
+ "end": 6338.58,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12697
+ },
+ {
+ "start": 6338.58,
+ "end": 6338.94,
+ "confidence": 0,
+ "word": "needs",
+ "punct": "needs",
+ "index": 12698
+ },
+ {
+ "start": 6338.94,
+ "end": 6339.04,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12699
+ },
+ {
+ "start": 6339.04,
+ "end": 6339.54,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 12700
+ },
+ {
+ "start": 6339.54,
+ "end": 6339.68,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12701
+ },
+ {
+ "start": 6339.68,
+ "end": 6339.9,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 12702
+ },
+ {
+ "start": 6339.9,
+ "end": 6340,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12703
+ },
+ {
+ "start": 6340,
+ "end": 6340.28,
+ "confidence": 0,
+ "word": "offer",
+ "punct": "offer",
+ "index": 12704
+ },
+ {
+ "start": 6340.28,
+ "end": 6340.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12705
+ },
+ {
+ "start": 6340.42,
+ "end": 6340.82,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service.",
+ "index": 12706
+ }
+ ],
+ "start": 6333.3
+ }
+ },
+ {
+ "key": "ass59",
+ "text": "But if you're using Google or you're using some texting app unless you specifically opt in that you want to share the texting app information, Facebook won't see that?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6340.82,
+ "end": 6341.54,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 12707
+ },
+ {
+ "start": 6341.54,
+ "end": 6341.76,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 12708
+ },
+ {
+ "start": 6341.76,
+ "end": 6342.06,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 12709
+ },
+ {
+ "start": 6342.06,
+ "end": 6342.5,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 12710
+ },
+ {
+ "start": 6342.5,
+ "end": 6342.86,
+ "confidence": 0,
+ "word": "google",
+ "punct": "Google",
+ "index": 12711
+ },
+ {
+ "start": 6342.86,
+ "end": 6343.16,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 12712
+ },
+ {
+ "start": 6343.16,
+ "end": 6343.4,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 12713
+ },
+ {
+ "start": 6343.4,
+ "end": 6344.62,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 12714
+ },
+ {
+ "start": 6344.62,
+ "end": 6345.6,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 12715
+ },
+ {
+ "start": 6345.6,
+ "end": 6346.12,
+ "confidence": 0,
+ "word": "texting",
+ "punct": "texting",
+ "index": 12716
+ },
+ {
+ "start": 6346.12,
+ "end": 6346.62,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 12717
+ },
+ {
+ "start": 6346.62,
+ "end": 6347.78,
+ "confidence": 0,
+ "word": "unless",
+ "punct": "unless",
+ "index": 12718
+ },
+ {
+ "start": 6347.78,
+ "end": 6347.92,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12719
+ },
+ {
+ "start": 6347.92,
+ "end": 6348.66,
+ "confidence": 0,
+ "word": "specifically",
+ "punct": "specifically",
+ "index": 12720
+ },
+ {
+ "start": 6348.66,
+ "end": 6349,
+ "confidence": 0,
+ "word": "opt",
+ "punct": "opt",
+ "index": 12721
+ },
+ {
+ "start": 6349,
+ "end": 6349.28,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12722
+ },
+ {
+ "start": 6349.28,
+ "end": 6349.76,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12723
+ },
+ {
+ "start": 6349.76,
+ "end": 6349.86,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12724
+ },
+ {
+ "start": 6349.86,
+ "end": 6350.02,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 12725
+ },
+ {
+ "start": 6350.02,
+ "end": 6350.1,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12726
+ },
+ {
+ "start": 6350.1,
+ "end": 6350.36,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 12727
+ },
+ {
+ "start": 6350.36,
+ "end": 6350.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12728
+ },
+ {
+ "start": 6350.94,
+ "end": 6351.46,
+ "confidence": 0,
+ "word": "texting",
+ "punct": "texting",
+ "index": 12729
+ },
+ {
+ "start": 6351.46,
+ "end": 6351.66,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 12730
+ },
+ {
+ "start": 6351.66,
+ "end": 6352.98,
+ "confidence": 0,
+ "word": "information,",
+ "punct": "information,",
+ "index": 12731
+ },
+ {
+ "start": 6352.98,
+ "end": 6354,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12732
+ },
+ {
+ "start": 6354,
+ "end": 6354.26,
+ "confidence": 0,
+ "word": "won't",
+ "punct": "won't",
+ "index": 12733
+ },
+ {
+ "start": 6354.26,
+ "end": 6354.44,
+ "confidence": 0,
+ "word": "see",
+ "punct": "see",
+ "index": 12734
+ },
+ {
+ "start": 6354.44,
+ "end": 6354.64,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that?",
+ "index": 12735
+ }
+ ],
+ "start": 6340.82
+ }
+ },
+ {
+ "key": "ci6k3",
+ "text": "Has it always been that way?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6354.64,
+ "end": 6355.4,
+ "confidence": 0,
+ "word": "has",
+ "punct": "Has",
+ "index": 12736
+ },
+ {
+ "start": 6355.4,
+ "end": 6355.58,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 12737
+ },
+ {
+ "start": 6355.58,
+ "end": 6355.98,
+ "confidence": 0,
+ "word": "always",
+ "punct": "always",
+ "index": 12738
+ },
+ {
+ "start": 6355.98,
+ "end": 6356.18,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 12739
+ },
+ {
+ "start": 6356.18,
+ "end": 6356.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12740
+ },
+ {
+ "start": 6356.38,
+ "end": 6357.16,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way?",
+ "index": 12741
+ }
+ ],
+ "start": 6354.64
+ }
+ },
+ {
+ "key": "fqlmb",
+ "text": "That a recent addition to how you deal with those other ways that might communicate, Senator, my understanding is that that is how the mobile operating systems are architected so you don't have bundled permissions for how I can agree to what devices I may use that you may have contact with, did you?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6357.16,
+ "end": 6358.14,
+ "confidence": 0,
+ "word": "that",
+ "punct": "That",
+ "index": 12742
+ },
+ {
+ "start": 6358.14,
+ "end": 6358.24,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 12743
+ },
+ {
+ "start": 6358.24,
+ "end": 6359.6,
+ "confidence": 0,
+ "word": "recent",
+ "punct": "recent",
+ "index": 12744
+ },
+ {
+ "start": 6359.6,
+ "end": 6360.64,
+ "confidence": 0,
+ "word": "addition",
+ "punct": "addition",
+ "index": 12745
+ },
+ {
+ "start": 6360.64,
+ "end": 6361,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12746
+ },
+ {
+ "start": 6361,
+ "end": 6361.22,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 12747
+ },
+ {
+ "start": 6361.22,
+ "end": 6361.44,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12748
+ },
+ {
+ "start": 6361.44,
+ "end": 6361.7,
+ "confidence": 0,
+ "word": "deal",
+ "punct": "deal",
+ "index": 12749
+ },
+ {
+ "start": 6361.7,
+ "end": 6361.88,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 12750
+ },
+ {
+ "start": 6361.88,
+ "end": 6362.1,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 12751
+ },
+ {
+ "start": 6362.1,
+ "end": 6363.98,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 12752
+ },
+ {
+ "start": 6363.98,
+ "end": 6364.96,
+ "confidence": 0,
+ "word": "ways",
+ "punct": "ways",
+ "index": 12753
+ },
+ {
+ "start": 6364.96,
+ "end": 6365.38,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12754
+ },
+ {
+ "start": 6365.38,
+ "end": 6365.76,
+ "confidence": 0,
+ "word": "might",
+ "punct": "might",
+ "index": 12755
+ },
+ {
+ "start": 6365.76,
+ "end": 6366.4,
+ "confidence": 0,
+ "word": "communicate,",
+ "punct": "communicate,",
+ "index": 12756
+ },
+ {
+ "start": 6366.4,
+ "end": 6367.56,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 12757
+ },
+ {
+ "start": 6367.56,
+ "end": 6367.72,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 12758
+ },
+ {
+ "start": 6367.72,
+ "end": 6368.4,
+ "confidence": 0,
+ "word": "understanding",
+ "punct": "understanding",
+ "index": 12759
+ },
+ {
+ "start": 6368.4,
+ "end": 6368.66,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12760
+ },
+ {
+ "start": 6368.66,
+ "end": 6368.9,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12761
+ },
+ {
+ "start": 6368.9,
+ "end": 6369.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12762
+ },
+ {
+ "start": 6369.3,
+ "end": 6369.46,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12763
+ },
+ {
+ "start": 6369.46,
+ "end": 6369.74,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 12764
+ },
+ {
+ "start": 6369.74,
+ "end": 6369.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12765
+ },
+ {
+ "start": 6369.94,
+ "end": 6370.28,
+ "confidence": 0,
+ "word": "mobile",
+ "punct": "mobile",
+ "index": 12766
+ },
+ {
+ "start": 6370.28,
+ "end": 6370.68,
+ "confidence": 0,
+ "word": "operating",
+ "punct": "operating",
+ "index": 12767
+ },
+ {
+ "start": 6370.68,
+ "end": 6371.06,
+ "confidence": 0,
+ "word": "systems",
+ "punct": "systems",
+ "index": 12768
+ },
+ {
+ "start": 6371.06,
+ "end": 6371.24,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 12769
+ },
+ {
+ "start": 6371.24,
+ "end": 6375.32,
+ "confidence": 0,
+ "word": "architected",
+ "punct": "architected",
+ "index": 12770
+ },
+ {
+ "start": 6375.32,
+ "end": 6379.06,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 12771
+ },
+ {
+ "start": 6379.06,
+ "end": 6380.26,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12772
+ },
+ {
+ "start": 6380.26,
+ "end": 6380.46,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 12773
+ },
+ {
+ "start": 6380.46,
+ "end": 6380.64,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 12774
+ },
+ {
+ "start": 6380.64,
+ "end": 6381.24,
+ "confidence": 0,
+ "word": "bundled",
+ "punct": "bundled",
+ "index": 12775
+ },
+ {
+ "start": 6381.24,
+ "end": 6382,
+ "confidence": 0,
+ "word": "permissions",
+ "punct": "permissions",
+ "index": 12776
+ },
+ {
+ "start": 6382,
+ "end": 6382.82,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 12777
+ },
+ {
+ "start": 6382.82,
+ "end": 6383.18,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 12778
+ },
+ {
+ "start": 6383.18,
+ "end": 6383.52,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12779
+ },
+ {
+ "start": 6383.52,
+ "end": 6384.58,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 12780
+ },
+ {
+ "start": 6384.58,
+ "end": 6385.32,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 12781
+ },
+ {
+ "start": 6385.32,
+ "end": 6385.74,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12782
+ },
+ {
+ "start": 6385.74,
+ "end": 6386.74,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 12783
+ },
+ {
+ "start": 6386.74,
+ "end": 6387.4,
+ "confidence": 0,
+ "word": "devices",
+ "punct": "devices",
+ "index": 12784
+ },
+ {
+ "start": 6387.4,
+ "end": 6387.58,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12785
+ },
+ {
+ "start": 6387.58,
+ "end": 6387.8,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 12786
+ },
+ {
+ "start": 6387.8,
+ "end": 6388.1,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 12787
+ },
+ {
+ "start": 6388.1,
+ "end": 6388.26,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12788
+ },
+ {
+ "start": 6388.26,
+ "end": 6388.42,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12789
+ },
+ {
+ "start": 6388.42,
+ "end": 6388.64,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 12790
+ },
+ {
+ "start": 6388.64,
+ "end": 6388.8,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 12791
+ },
+ {
+ "start": 6388.8,
+ "end": 6389.34,
+ "confidence": 0,
+ "word": "contact",
+ "punct": "contact",
+ "index": 12792
+ },
+ {
+ "start": 6389.34,
+ "end": 6391.76,
+ "confidence": 0,
+ "word": "with,",
+ "punct": "with,",
+ "index": 12793
+ },
+ {
+ "start": 6391.76,
+ "end": 6392.86,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 12794
+ },
+ {
+ "start": 6392.86,
+ "end": 6393,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you?",
+ "index": 12795
+ }
+ ],
+ "start": 6357.16
+ }
+ },
+ {
+ "key": "fmnqf",
+ "text": "You bundle that permission.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6393,
+ "end": 6393.36,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 12796
+ },
+ {
+ "start": 6393.36,
+ "end": 6393.78,
+ "confidence": 0,
+ "word": "bundle",
+ "punct": "bundle",
+ "index": 12797
+ },
+ {
+ "start": 6393.78,
+ "end": 6393.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12798
+ },
+ {
+ "start": 6393.98,
+ "end": 6394.52,
+ "confidence": 0,
+ "word": "permission",
+ "punct": "permission.",
+ "index": 12799
+ }
+ ],
+ "start": 6393
+ }
+ },
+ {
+ "key": "f7ds5",
+ "text": "Or am I able to want individually say what I'm willing for you to to watch and what I don't want you to watch.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6394.52,
+ "end": 6394.72,
+ "confidence": 0,
+ "word": "or",
+ "punct": "Or",
+ "index": 12800
+ },
+ {
+ "start": 6394.72,
+ "end": 6395.02,
+ "confidence": 0,
+ "word": "am",
+ "punct": "am",
+ "index": 12801
+ },
+ {
+ "start": 6395.02,
+ "end": 6395.2,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12802
+ },
+ {
+ "start": 6395.2,
+ "end": 6395.44,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 12803
+ },
+ {
+ "start": 6395.44,
+ "end": 6395.58,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12804
+ },
+ {
+ "start": 6395.58,
+ "end": 6395.82,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 12805
+ },
+ {
+ "start": 6395.82,
+ "end": 6397.58,
+ "confidence": 0,
+ "word": "individually",
+ "punct": "individually",
+ "index": 12806
+ },
+ {
+ "start": 6397.58,
+ "end": 6398.6,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 12807
+ },
+ {
+ "start": 6398.6,
+ "end": 6399.06,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 12808
+ },
+ {
+ "start": 6399.06,
+ "end": 6399.44,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 12809
+ },
+ {
+ "start": 6399.44,
+ "end": 6399.9,
+ "confidence": 0,
+ "word": "willing",
+ "punct": "willing",
+ "index": 12810
+ },
+ {
+ "start": 6399.9,
+ "end": 6400.06,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 12811
+ },
+ {
+ "start": 6400.06,
+ "end": 6400.2,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12812
+ },
+ {
+ "start": 6400.2,
+ "end": 6400.6,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12813
+ },
+ {
+ "start": 6400.6,
+ "end": 6401.7,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12814
+ },
+ {
+ "start": 6401.7,
+ "end": 6402.3,
+ "confidence": 0,
+ "word": "watch",
+ "punct": "watch",
+ "index": 12815
+ },
+ {
+ "start": 6402.3,
+ "end": 6402.46,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12816
+ },
+ {
+ "start": 6402.46,
+ "end": 6402.66,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 12817
+ },
+ {
+ "start": 6402.66,
+ "end": 6402.78,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12818
+ },
+ {
+ "start": 6402.78,
+ "end": 6403,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 12819
+ },
+ {
+ "start": 6403,
+ "end": 6403.16,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 12820
+ },
+ {
+ "start": 6403.16,
+ "end": 6403.3,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12821
+ },
+ {
+ "start": 6403.3,
+ "end": 6403.42,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12822
+ },
+ {
+ "start": 6403.42,
+ "end": 6403.7,
+ "confidence": 0,
+ "word": "watch",
+ "punct": "watch.",
+ "index": 12823
+ }
+ ],
+ "start": 6394.52
+ }
+ },
+ {
+ "key": "tape",
+ "text": "And I think we may have to take that for the record based on everybody else's time.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6403.7,
+ "end": 6403.92,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 12824
+ },
+ {
+ "start": 6403.92,
+ "end": 6404.36,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12825
+ },
+ {
+ "start": 6404.36,
+ "end": 6404.72,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 12826
+ },
+ {
+ "start": 6404.72,
+ "end": 6404.88,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 12827
+ },
+ {
+ "start": 6404.88,
+ "end": 6405.04,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 12828
+ },
+ {
+ "start": 6405.04,
+ "end": 6405.18,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 12829
+ },
+ {
+ "start": 6405.18,
+ "end": 6405.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12830
+ },
+ {
+ "start": 6405.28,
+ "end": 6405.48,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 12831
+ },
+ {
+ "start": 6405.48,
+ "end": 6405.68,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12832
+ },
+ {
+ "start": 6405.68,
+ "end": 6405.84,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 12833
+ },
+ {
+ "start": 6405.84,
+ "end": 6405.96,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12834
+ },
+ {
+ "start": 6405.96,
+ "end": 6406.3,
+ "confidence": 0,
+ "word": "record",
+ "punct": "record",
+ "index": 12835
+ },
+ {
+ "start": 6406.3,
+ "end": 6406.56,
+ "confidence": 0,
+ "word": "based",
+ "punct": "based",
+ "index": 12836
+ },
+ {
+ "start": 6406.56,
+ "end": 6406.7,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 12837
+ },
+ {
+ "start": 6406.7,
+ "end": 6407.16,
+ "confidence": 0,
+ "word": "everybody",
+ "punct": "everybody",
+ "index": 12838
+ },
+ {
+ "start": 6407.16,
+ "end": 6407.54,
+ "confidence": 0,
+ "word": "else's",
+ "punct": "else's",
+ "index": 12839
+ },
+ {
+ "start": 6407.54,
+ "end": 6409.26,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time.",
+ "index": 12840
+ }
+ ],
+ "start": 6403.7
+ }
+ },
+ {
+ "key": "cl3i8",
+ "text": "Thank you, Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6409.26,
+ "end": 6410.22,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 12841
+ },
+ {
+ "start": 6410.22,
+ "end": 6410.34,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 12842
+ },
+ {
+ "start": 6410.34,
+ "end": 6410.6,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 12843
+ }
+ ],
+ "start": 6409.26
+ }
+ },
+ {
+ "key": "8imp0",
+ "text": "Blunt.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6410.6,
+ "end": 6410.82,
+ "confidence": 0,
+ "word": "blunt",
+ "punct": "Blunt.",
+ "index": 12844
+ }
+ ],
+ "start": 6410.6
+ }
+ },
+ {
+ "key": "9veqr",
+ "text": "Next up Senator Durbin, thank very much, Mr Chairman, Mr Zuckerberg, would you be comfortable sharing with us?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6410.82,
+ "end": 6411.5,
+ "confidence": 0,
+ "word": "next",
+ "punct": "Next",
+ "index": 12845
+ },
+ {
+ "start": 6411.5,
+ "end": 6411.64,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 12846
+ },
+ {
+ "start": 6411.64,
+ "end": 6411.9,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 12847
+ },
+ {
+ "start": 6411.9,
+ "end": 6412.18,
+ "confidence": 0,
+ "word": "durbin,",
+ "punct": "Durbin,",
+ "index": 12848
+ },
+ {
+ "start": 6412.18,
+ "end": 6413.18,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 12849
+ },
+ {
+ "start": 6413.18,
+ "end": 6413.42,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 12850
+ },
+ {
+ "start": 6413.42,
+ "end": 6413.58,
+ "confidence": 0,
+ "word": "much,",
+ "punct": "much,",
+ "index": 12851
+ },
+ {
+ "start": 6413.58,
+ "end": 6413.82,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 12852
+ },
+ {
+ "start": 6413.82,
+ "end": 6414.18,
+ "confidence": 0,
+ "word": "chairman,",
+ "punct": "Chairman,",
+ "index": 12853
+ },
+ {
+ "start": 6414.18,
+ "end": 6414.64,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 12854
+ },
+ {
+ "start": 6414.64,
+ "end": 6415.08,
+ "confidence": 0,
+ "word": "zuckerberg,",
+ "punct": "Zuckerberg,",
+ "index": 12855
+ },
+ {
+ "start": 6415.08,
+ "end": 6415.84,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 12856
+ },
+ {
+ "start": 6415.84,
+ "end": 6415.96,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12857
+ },
+ {
+ "start": 6415.96,
+ "end": 6416.08,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 12858
+ },
+ {
+ "start": 6416.08,
+ "end": 6416.5,
+ "confidence": 0,
+ "word": "comfortable",
+ "punct": "comfortable",
+ "index": 12859
+ },
+ {
+ "start": 6416.5,
+ "end": 6416.84,
+ "confidence": 0,
+ "word": "sharing",
+ "punct": "sharing",
+ "index": 12860
+ },
+ {
+ "start": 6416.84,
+ "end": 6416.98,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 12861
+ },
+ {
+ "start": 6416.98,
+ "end": 6417.12,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us?",
+ "index": 12862
+ }
+ ],
+ "start": 6410.82
+ }
+ },
+ {
+ "key": "e0ng",
+ "text": "The name of the hotel you stayed in last night?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6417.12,
+ "end": 6417.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 12863
+ },
+ {
+ "start": 6417.3,
+ "end": 6417.48,
+ "confidence": 0,
+ "word": "name",
+ "punct": "name",
+ "index": 12864
+ },
+ {
+ "start": 6417.48,
+ "end": 6417.56,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12865
+ },
+ {
+ "start": 6417.56,
+ "end": 6417.68,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12866
+ },
+ {
+ "start": 6417.68,
+ "end": 6418,
+ "confidence": 0,
+ "word": "hotel",
+ "punct": "hotel",
+ "index": 12867
+ },
+ {
+ "start": 6418,
+ "end": 6418.12,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12868
+ },
+ {
+ "start": 6418.12,
+ "end": 6418.38,
+ "confidence": 0,
+ "word": "stayed",
+ "punct": "stayed",
+ "index": 12869
+ },
+ {
+ "start": 6418.38,
+ "end": 6418.5,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12870
+ },
+ {
+ "start": 6418.5,
+ "end": 6418.7,
+ "confidence": 0,
+ "word": "last",
+ "punct": "last",
+ "index": 12871
+ },
+ {
+ "start": 6418.7,
+ "end": 6424.24,
+ "confidence": 0,
+ "word": "night",
+ "punct": "night?",
+ "index": 12872
+ }
+ ],
+ "start": 6417.12
+ }
+ },
+ {
+ "key": "dafcq",
+ "text": "No, if you've messaged anybody this week?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6424.24,
+ "end": 6427.76,
+ "confidence": 0,
+ "word": "no,",
+ "punct": "No,",
+ "index": 12873
+ },
+ {
+ "start": 6427.76,
+ "end": 6428.76,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 12874
+ },
+ {
+ "start": 6428.76,
+ "end": 6429.02,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 12875
+ },
+ {
+ "start": 6429.02,
+ "end": 6429.5,
+ "confidence": 0,
+ "word": "messaged",
+ "punct": "messaged",
+ "index": 12876
+ },
+ {
+ "start": 6429.5,
+ "end": 6429.96,
+ "confidence": 0,
+ "word": "anybody",
+ "punct": "anybody",
+ "index": 12877
+ },
+ {
+ "start": 6429.96,
+ "end": 6430.16,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 12878
+ },
+ {
+ "start": 6430.16,
+ "end": 6430.38,
+ "confidence": 0,
+ "word": "week",
+ "punct": "week?",
+ "index": 12879
+ }
+ ],
+ "start": 6424.24
+ }
+ },
+ {
+ "key": "7er19",
+ "text": "Would you share with us?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6430.38,
+ "end": 6430.58,
+ "confidence": 0,
+ "word": "would",
+ "punct": "Would",
+ "index": 12880
+ },
+ {
+ "start": 6430.58,
+ "end": 6430.76,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12881
+ },
+ {
+ "start": 6430.76,
+ "end": 6431.42,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 12882
+ },
+ {
+ "start": 6431.42,
+ "end": 6431.58,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 12883
+ },
+ {
+ "start": 6431.58,
+ "end": 6431.74,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us?",
+ "index": 12884
+ }
+ ],
+ "start": 6430.38
+ }
+ },
+ {
+ "key": "1do69",
+ "text": "The names of the people you've messaged Senator?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6431.74,
+ "end": 6432.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 12885
+ },
+ {
+ "start": 6432.18,
+ "end": 6432.46,
+ "confidence": 0,
+ "word": "names",
+ "punct": "names",
+ "index": 12886
+ },
+ {
+ "start": 6432.46,
+ "end": 6432.66,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12887
+ },
+ {
+ "start": 6432.66,
+ "end": 6432.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12888
+ },
+ {
+ "start": 6432.98,
+ "end": 6433.18,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 12889
+ },
+ {
+ "start": 6433.18,
+ "end": 6433.42,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 12890
+ },
+ {
+ "start": 6433.42,
+ "end": 6434.46,
+ "confidence": 0,
+ "word": "messaged",
+ "punct": "messaged",
+ "index": 12891
+ },
+ {
+ "start": 6434.46,
+ "end": 6435.64,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator?",
+ "index": 12892
+ }
+ ],
+ "start": 6431.74
+ }
+ },
+ {
+ "key": "2ue9g",
+ "text": "No, I would probably not choose to do that publicly here.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6435.64,
+ "end": 6435.8,
+ "confidence": 0,
+ "word": "no,",
+ "punct": "No,",
+ "index": 12893
+ },
+ {
+ "start": 6435.8,
+ "end": 6435.86,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12894
+ },
+ {
+ "start": 6435.86,
+ "end": 6436.08,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 12895
+ },
+ {
+ "start": 6436.08,
+ "end": 6436.78,
+ "confidence": 0,
+ "word": "probably",
+ "punct": "probably",
+ "index": 12896
+ },
+ {
+ "start": 6436.78,
+ "end": 6436.98,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 12897
+ },
+ {
+ "start": 6436.98,
+ "end": 6437.22,
+ "confidence": 0,
+ "word": "choose",
+ "punct": "choose",
+ "index": 12898
+ },
+ {
+ "start": 6437.22,
+ "end": 6437.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12899
+ },
+ {
+ "start": 6437.32,
+ "end": 6437.42,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 12900
+ },
+ {
+ "start": 6437.42,
+ "end": 6437.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12901
+ },
+ {
+ "start": 6437.6,
+ "end": 6438.02,
+ "confidence": 0,
+ "word": "publicly",
+ "punct": "publicly",
+ "index": 12902
+ },
+ {
+ "start": 6438.02,
+ "end": 6438.28,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here.",
+ "index": 12903
+ }
+ ],
+ "start": 6435.64
+ }
+ },
+ {
+ "key": "2esoc",
+ "text": "I think that might be what this is all about your right to privacy the limits of your right to privacy and how much you give away in modern America, in the name of quote, connecting people around the world question basically of what information Facebook is collecting who they're sending it to and whether they were ask me in advance, my permission to do that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6438.28,
+ "end": 6438.7,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12904
+ },
+ {
+ "start": 6438.7,
+ "end": 6438.9,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 12905
+ },
+ {
+ "start": 6438.9,
+ "end": 6439.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12906
+ },
+ {
+ "start": 6439.18,
+ "end": 6439.4,
+ "confidence": 0,
+ "word": "might",
+ "punct": "might",
+ "index": 12907
+ },
+ {
+ "start": 6439.4,
+ "end": 6439.5,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 12908
+ },
+ {
+ "start": 6439.5,
+ "end": 6439.64,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 12909
+ },
+ {
+ "start": 6439.64,
+ "end": 6439.86,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 12910
+ },
+ {
+ "start": 6439.86,
+ "end": 6440.24,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12911
+ },
+ {
+ "start": 6440.24,
+ "end": 6440.4,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 12912
+ },
+ {
+ "start": 6440.4,
+ "end": 6441.6,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 12913
+ },
+ {
+ "start": 6441.6,
+ "end": 6442.58,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 12914
+ },
+ {
+ "start": 6442.58,
+ "end": 6442.86,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 12915
+ },
+ {
+ "start": 6442.86,
+ "end": 6442.96,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12916
+ },
+ {
+ "start": 6442.96,
+ "end": 6443.46,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 12917
+ },
+ {
+ "start": 6443.46,
+ "end": 6444.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12918
+ },
+ {
+ "start": 6444.38,
+ "end": 6444.72,
+ "confidence": 0,
+ "word": "limits",
+ "punct": "limits",
+ "index": 12919
+ },
+ {
+ "start": 6444.72,
+ "end": 6444.94,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12920
+ },
+ {
+ "start": 6444.94,
+ "end": 6445.08,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 12921
+ },
+ {
+ "start": 6445.08,
+ "end": 6445.3,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 12922
+ },
+ {
+ "start": 6445.3,
+ "end": 6445.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12923
+ },
+ {
+ "start": 6445.38,
+ "end": 6445.86,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 12924
+ },
+ {
+ "start": 6445.86,
+ "end": 6446.48,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12925
+ },
+ {
+ "start": 6446.48,
+ "end": 6446.66,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 12926
+ },
+ {
+ "start": 6446.66,
+ "end": 6446.84,
+ "confidence": 0,
+ "word": "much",
+ "punct": "much",
+ "index": 12927
+ },
+ {
+ "start": 6446.84,
+ "end": 6447.02,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 12928
+ },
+ {
+ "start": 6447.02,
+ "end": 6447.28,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 12929
+ },
+ {
+ "start": 6447.28,
+ "end": 6447.7,
+ "confidence": 0,
+ "word": "away",
+ "punct": "away",
+ "index": 12930
+ },
+ {
+ "start": 6447.7,
+ "end": 6448.4,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12931
+ },
+ {
+ "start": 6448.4,
+ "end": 6448.72,
+ "confidence": 0,
+ "word": "modern",
+ "punct": "modern",
+ "index": 12932
+ },
+ {
+ "start": 6448.72,
+ "end": 6449.18,
+ "confidence": 0,
+ "word": "america,",
+ "punct": "America,",
+ "index": 12933
+ },
+ {
+ "start": 6449.18,
+ "end": 6449.84,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12934
+ },
+ {
+ "start": 6449.84,
+ "end": 6449.96,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12935
+ },
+ {
+ "start": 6449.96,
+ "end": 6450.18,
+ "confidence": 0,
+ "word": "name",
+ "punct": "name",
+ "index": 12936
+ },
+ {
+ "start": 6450.18,
+ "end": 6450.38,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12937
+ },
+ {
+ "start": 6450.38,
+ "end": 6450.84,
+ "confidence": 0,
+ "word": "quote,",
+ "punct": "quote,",
+ "index": 12938
+ },
+ {
+ "start": 6450.84,
+ "end": 6451.42,
+ "confidence": 0,
+ "word": "connecting",
+ "punct": "connecting",
+ "index": 12939
+ },
+ {
+ "start": 6451.42,
+ "end": 6451.72,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 12940
+ },
+ {
+ "start": 6451.72,
+ "end": 6452.04,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 12941
+ },
+ {
+ "start": 6452.04,
+ "end": 6452.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 12942
+ },
+ {
+ "start": 6452.18,
+ "end": 6453.46,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 12943
+ },
+ {
+ "start": 6453.46,
+ "end": 6454.46,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question",
+ "index": 12944
+ },
+ {
+ "start": 6454.46,
+ "end": 6455.18,
+ "confidence": 0,
+ "word": "basically",
+ "punct": "basically",
+ "index": 12945
+ },
+ {
+ "start": 6455.18,
+ "end": 6455.98,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12946
+ },
+ {
+ "start": 6455.98,
+ "end": 6456.98,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 12947
+ },
+ {
+ "start": 6456.98,
+ "end": 6457.5,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 12948
+ },
+ {
+ "start": 6457.5,
+ "end": 6457.98,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12949
+ },
+ {
+ "start": 6457.98,
+ "end": 6458.04,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12950
+ },
+ {
+ "start": 6458.04,
+ "end": 6458.48,
+ "confidence": 0,
+ "word": "collecting",
+ "punct": "collecting",
+ "index": 12951
+ },
+ {
+ "start": 6458.48,
+ "end": 6459.34,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 12952
+ },
+ {
+ "start": 6459.34,
+ "end": 6459.58,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 12953
+ },
+ {
+ "start": 6459.58,
+ "end": 6459.86,
+ "confidence": 0,
+ "word": "sending",
+ "punct": "sending",
+ "index": 12954
+ },
+ {
+ "start": 6459.86,
+ "end": 6459.96,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 12955
+ },
+ {
+ "start": 6459.96,
+ "end": 6460.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12956
+ },
+ {
+ "start": 6460.12,
+ "end": 6460.46,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 12957
+ },
+ {
+ "start": 6460.46,
+ "end": 6460.74,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 12958
+ },
+ {
+ "start": 6460.74,
+ "end": 6460.9,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 12959
+ },
+ {
+ "start": 6460.9,
+ "end": 6461.08,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 12960
+ },
+ {
+ "start": 6461.08,
+ "end": 6461.42,
+ "confidence": 0,
+ "word": "ask",
+ "punct": "ask",
+ "index": 12961
+ },
+ {
+ "start": 6461.42,
+ "end": 6461.64,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 12962
+ },
+ {
+ "start": 6461.64,
+ "end": 6461.88,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 12963
+ },
+ {
+ "start": 6461.88,
+ "end": 6462.36,
+ "confidence": 0,
+ "word": "advance,",
+ "punct": "advance,",
+ "index": 12964
+ },
+ {
+ "start": 6462.36,
+ "end": 6462.8,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 12965
+ },
+ {
+ "start": 6462.8,
+ "end": 6463.22,
+ "confidence": 0,
+ "word": "permission",
+ "punct": "permission",
+ "index": 12966
+ },
+ {
+ "start": 6463.22,
+ "end": 6463.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12967
+ },
+ {
+ "start": 6463.32,
+ "end": 6463.46,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 12968
+ },
+ {
+ "start": 6463.46,
+ "end": 6463.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 12969
+ }
+ ],
+ "start": 6438.28
+ }
+ },
+ {
+ "key": "bnfbj",
+ "text": "Is that a fair thing for a user of Facebook to expect?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6463.7,
+ "end": 6464.44,
+ "confidence": 0,
+ "word": "is",
+ "punct": "Is",
+ "index": 12970
+ },
+ {
+ "start": 6464.44,
+ "end": 6464.6,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 12971
+ },
+ {
+ "start": 6464.6,
+ "end": 6464.66,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 12972
+ },
+ {
+ "start": 6464.66,
+ "end": 6464.98,
+ "confidence": 0,
+ "word": "fair",
+ "punct": "fair",
+ "index": 12973
+ },
+ {
+ "start": 6464.98,
+ "end": 6465.3,
+ "confidence": 0,
+ "word": "thing",
+ "punct": "thing",
+ "index": 12974
+ },
+ {
+ "start": 6465.3,
+ "end": 6465.68,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 12975
+ },
+ {
+ "start": 6465.68,
+ "end": 6465.84,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 12976
+ },
+ {
+ "start": 6465.84,
+ "end": 6466.14,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 12977
+ },
+ {
+ "start": 6466.14,
+ "end": 6466.22,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 12978
+ },
+ {
+ "start": 6466.22,
+ "end": 6466.7,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 12979
+ },
+ {
+ "start": 6466.7,
+ "end": 6466.84,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 12980
+ },
+ {
+ "start": 6466.84,
+ "end": 6467.88,
+ "confidence": 0,
+ "word": "expect",
+ "punct": "expect?",
+ "index": 12981
+ }
+ ],
+ "start": 6463.7
+ }
+ },
+ {
+ "key": "2gf7p",
+ "text": "Yes, Senator, I think everyone should have control over how their information is used.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6467.88,
+ "end": 6468.66,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 12982
+ },
+ {
+ "start": 6468.66,
+ "end": 6469.08,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 12983
+ },
+ {
+ "start": 6469.08,
+ "end": 6469.22,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 12984
+ },
+ {
+ "start": 6469.22,
+ "end": 6469.42,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 12985
+ },
+ {
+ "start": 6469.42,
+ "end": 6469.82,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 12986
+ },
+ {
+ "start": 6469.82,
+ "end": 6470.06,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 12987
+ },
+ {
+ "start": 6470.06,
+ "end": 6470.18,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 12988
+ },
+ {
+ "start": 6470.18,
+ "end": 6470.54,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 12989
+ },
+ {
+ "start": 6470.54,
+ "end": 6470.88,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 12990
+ },
+ {
+ "start": 6470.88,
+ "end": 6471.02,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 12991
+ },
+ {
+ "start": 6471.02,
+ "end": 6471.22,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 12992
+ },
+ {
+ "start": 6471.22,
+ "end": 6471.7,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 12993
+ },
+ {
+ "start": 6471.7,
+ "end": 6471.86,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 12994
+ },
+ {
+ "start": 6471.86,
+ "end": 6472.16,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used.",
+ "index": 12995
+ }
+ ],
+ "start": 6467.88
+ }
+ },
+ {
+ "key": "b62le",
+ "text": "And as we've talked about in some of the other questions, I think that that is laid out in some of the documents.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6472.16,
+ "end": 6473.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 12996
+ },
+ {
+ "start": 6473.42,
+ "end": 6474.2,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 12997
+ },
+ {
+ "start": 6474.2,
+ "end": 6474.44,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 12998
+ },
+ {
+ "start": 6474.44,
+ "end": 6474.68,
+ "confidence": 0,
+ "word": "talked",
+ "punct": "talked",
+ "index": 12999
+ },
+ {
+ "start": 6474.68,
+ "end": 6474.9,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 13000
+ },
+ {
+ "start": 6474.9,
+ "end": 6475.1,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13001
+ },
+ {
+ "start": 6475.1,
+ "end": 6475.5,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 13002
+ },
+ {
+ "start": 6475.5,
+ "end": 6475.58,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13003
+ },
+ {
+ "start": 6475.58,
+ "end": 6475.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13004
+ },
+ {
+ "start": 6475.7,
+ "end": 6476.08,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 13005
+ },
+ {
+ "start": 6476.08,
+ "end": 6476.52,
+ "confidence": 0,
+ "word": "questions,",
+ "punct": "questions,",
+ "index": 13006
+ },
+ {
+ "start": 6476.52,
+ "end": 6476.56,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13007
+ },
+ {
+ "start": 6476.56,
+ "end": 6476.82,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 13008
+ },
+ {
+ "start": 6476.82,
+ "end": 6476.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13009
+ },
+ {
+ "start": 6476.94,
+ "end": 6477.42,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13010
+ },
+ {
+ "start": 6477.42,
+ "end": 6478.42,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13011
+ },
+ {
+ "start": 6478.42,
+ "end": 6478.7,
+ "confidence": 0,
+ "word": "laid",
+ "punct": "laid",
+ "index": 13012
+ },
+ {
+ "start": 6478.7,
+ "end": 6478.9,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 13013
+ },
+ {
+ "start": 6478.9,
+ "end": 6479.62,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13014
+ },
+ {
+ "start": 6479.62,
+ "end": 6479.8,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 13015
+ },
+ {
+ "start": 6479.8,
+ "end": 6479.88,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13016
+ },
+ {
+ "start": 6479.88,
+ "end": 6479.98,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13017
+ },
+ {
+ "start": 6479.98,
+ "end": 6480.44,
+ "confidence": 0,
+ "word": "documents",
+ "punct": "documents.",
+ "index": 13018
+ }
+ ],
+ "start": 6472.16
+ }
+ },
+ {
+ "key": "2h0ed",
+ "text": "But more importantly, you want to give people control in the product itself.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6480.44,
+ "end": 6480.66,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 13019
+ },
+ {
+ "start": 6480.66,
+ "end": 6481,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 13020
+ },
+ {
+ "start": 6481,
+ "end": 6481.52,
+ "confidence": 0,
+ "word": "importantly,",
+ "punct": "importantly,",
+ "index": 13021
+ },
+ {
+ "start": 6481.52,
+ "end": 6481.76,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 13022
+ },
+ {
+ "start": 6481.76,
+ "end": 6481.9,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 13023
+ },
+ {
+ "start": 6481.9,
+ "end": 6481.98,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13024
+ },
+ {
+ "start": 6481.98,
+ "end": 6482.12,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 13025
+ },
+ {
+ "start": 6482.12,
+ "end": 6482.32,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 13026
+ },
+ {
+ "start": 6482.32,
+ "end": 6482.74,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 13027
+ },
+ {
+ "start": 6482.74,
+ "end": 6482.88,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13028
+ },
+ {
+ "start": 6482.88,
+ "end": 6483,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13029
+ },
+ {
+ "start": 6483,
+ "end": 6483.36,
+ "confidence": 0,
+ "word": "product",
+ "punct": "product",
+ "index": 13030
+ },
+ {
+ "start": 6483.36,
+ "end": 6483.78,
+ "confidence": 0,
+ "word": "itself",
+ "punct": "itself.",
+ "index": 13031
+ }
+ ],
+ "start": 6480.44
+ }
+ },
+ {
+ "key": "3s14n",
+ "text": "So most important way that this happens across our services is that every day?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6483.78,
+ "end": 6485.08,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 13032
+ },
+ {
+ "start": 6485.08,
+ "end": 6485.26,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 13033
+ },
+ {
+ "start": 6485.26,
+ "end": 6485.6,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 13034
+ },
+ {
+ "start": 6485.6,
+ "end": 6485.74,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 13035
+ },
+ {
+ "start": 6485.74,
+ "end": 6485.88,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13036
+ },
+ {
+ "start": 6485.88,
+ "end": 6486.04,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 13037
+ },
+ {
+ "start": 6486.04,
+ "end": 6486.36,
+ "confidence": 0,
+ "word": "happens",
+ "punct": "happens",
+ "index": 13038
+ },
+ {
+ "start": 6486.36,
+ "end": 6486.68,
+ "confidence": 0,
+ "word": "across",
+ "punct": "across",
+ "index": 13039
+ },
+ {
+ "start": 6486.68,
+ "end": 6486.9,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 13040
+ },
+ {
+ "start": 6486.9,
+ "end": 6487.42,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 13041
+ },
+ {
+ "start": 6487.42,
+ "end": 6488.62,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13042
+ },
+ {
+ "start": 6488.62,
+ "end": 6489.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13043
+ },
+ {
+ "start": 6489.58,
+ "end": 6489.82,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 13044
+ },
+ {
+ "start": 6489.82,
+ "end": 6490.08,
+ "confidence": 0,
+ "word": "day",
+ "punct": "day?",
+ "index": 13045
+ }
+ ],
+ "start": 6483.78
+ }
+ },
+ {
+ "key": "d9s1l",
+ "text": "People come to our services to choose to share photos or send messages and every single time they choose to share something.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6490.08,
+ "end": 6490.4,
+ "confidence": 0,
+ "word": "people",
+ "punct": "People",
+ "index": 13046
+ },
+ {
+ "start": 6490.4,
+ "end": 6490.58,
+ "confidence": 0,
+ "word": "come",
+ "punct": "come",
+ "index": 13047
+ },
+ {
+ "start": 6490.58,
+ "end": 6490.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13048
+ },
+ {
+ "start": 6490.66,
+ "end": 6490.8,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 13049
+ },
+ {
+ "start": 6490.8,
+ "end": 6491.24,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 13050
+ },
+ {
+ "start": 6491.24,
+ "end": 6491.34,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13051
+ },
+ {
+ "start": 6491.34,
+ "end": 6491.7,
+ "confidence": 0,
+ "word": "choose",
+ "punct": "choose",
+ "index": 13052
+ },
+ {
+ "start": 6491.7,
+ "end": 6491.84,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13053
+ },
+ {
+ "start": 6491.84,
+ "end": 6492.06,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 13054
+ },
+ {
+ "start": 6492.06,
+ "end": 6492.5,
+ "confidence": 0,
+ "word": "photos",
+ "punct": "photos",
+ "index": 13055
+ },
+ {
+ "start": 6492.5,
+ "end": 6492.66,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13056
+ },
+ {
+ "start": 6492.66,
+ "end": 6492.86,
+ "confidence": 0,
+ "word": "send",
+ "punct": "send",
+ "index": 13057
+ },
+ {
+ "start": 6492.86,
+ "end": 6493.34,
+ "confidence": 0,
+ "word": "messages",
+ "punct": "messages",
+ "index": 13058
+ },
+ {
+ "start": 6493.34,
+ "end": 6493.86,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13059
+ },
+ {
+ "start": 6493.86,
+ "end": 6494.2,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 13060
+ },
+ {
+ "start": 6494.2,
+ "end": 6494.52,
+ "confidence": 0,
+ "word": "single",
+ "punct": "single",
+ "index": 13061
+ },
+ {
+ "start": 6494.52,
+ "end": 6494.82,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 13062
+ },
+ {
+ "start": 6494.82,
+ "end": 6495.04,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 13063
+ },
+ {
+ "start": 6495.04,
+ "end": 6495.28,
+ "confidence": 0,
+ "word": "choose",
+ "punct": "choose",
+ "index": 13064
+ },
+ {
+ "start": 6495.28,
+ "end": 6495.4,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13065
+ },
+ {
+ "start": 6495.4,
+ "end": 6495.64,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 13066
+ },
+ {
+ "start": 6495.64,
+ "end": 6496.74,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something.",
+ "index": 13067
+ }
+ ],
+ "start": 6490.08
+ }
+ },
+ {
+ "key": "ca57c",
+ "text": "They have a control right there about who they want to share it with, but that level of control is extremely important.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6496.74,
+ "end": 6497.6,
+ "confidence": 0,
+ "word": "they",
+ "punct": "They",
+ "index": 13068
+ },
+ {
+ "start": 6497.6,
+ "end": 6497.7,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 13069
+ },
+ {
+ "start": 6497.7,
+ "end": 6497.76,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13070
+ },
+ {
+ "start": 6497.76,
+ "end": 6498.1,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 13071
+ },
+ {
+ "start": 6498.1,
+ "end": 6498.36,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 13072
+ },
+ {
+ "start": 6498.36,
+ "end": 6498.58,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 13073
+ },
+ {
+ "start": 6498.58,
+ "end": 6498.76,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 13074
+ },
+ {
+ "start": 6498.76,
+ "end": 6498.9,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 13075
+ },
+ {
+ "start": 6498.9,
+ "end": 6499.08,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 13076
+ },
+ {
+ "start": 6499.08,
+ "end": 6499.2,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 13077
+ },
+ {
+ "start": 6499.2,
+ "end": 6499.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13078
+ },
+ {
+ "start": 6499.28,
+ "end": 6499.44,
+ "confidence": 0,
+ "word": "share",
+ "punct": "share",
+ "index": 13079
+ },
+ {
+ "start": 6499.44,
+ "end": 6499.52,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 13080
+ },
+ {
+ "start": 6499.52,
+ "end": 6499.7,
+ "confidence": 0,
+ "word": "with,",
+ "punct": "with,",
+ "index": 13081
+ },
+ {
+ "start": 6499.7,
+ "end": 6500.18,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 13082
+ },
+ {
+ "start": 6500.18,
+ "end": 6500.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13083
+ },
+ {
+ "start": 6500.36,
+ "end": 6500.64,
+ "confidence": 0,
+ "word": "level",
+ "punct": "level",
+ "index": 13084
+ },
+ {
+ "start": 6500.64,
+ "end": 6500.74,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13085
+ },
+ {
+ "start": 6500.74,
+ "end": 6501.08,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 13086
+ },
+ {
+ "start": 6501.08,
+ "end": 6501.2,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13087
+ },
+ {
+ "start": 6501.2,
+ "end": 6501.74,
+ "confidence": 0,
+ "word": "extremely",
+ "punct": "extremely",
+ "index": 13088
+ },
+ {
+ "start": 6501.74,
+ "end": 6502.12,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important.",
+ "index": 13089
+ }
+ ],
+ "start": 6496.74
+ }
+ },
+ {
+ "key": "cb4kl",
+ "text": "They certainly know within the Facebook pages who their friends are but they may not know as has happened and you've conceded this point in the past that sometimes that information is going way beyond their friends.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6502.12,
+ "end": 6502.42,
+ "confidence": 0,
+ "word": "they",
+ "punct": "They",
+ "index": 13090
+ },
+ {
+ "start": 6502.42,
+ "end": 6502.72,
+ "confidence": 0,
+ "word": "certainly",
+ "punct": "certainly",
+ "index": 13091
+ },
+ {
+ "start": 6502.72,
+ "end": 6502.88,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 13092
+ },
+ {
+ "start": 6502.88,
+ "end": 6503.62,
+ "confidence": 0,
+ "word": "within",
+ "punct": "within",
+ "index": 13093
+ },
+ {
+ "start": 6503.62,
+ "end": 6503.74,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13094
+ },
+ {
+ "start": 6503.74,
+ "end": 6504.2,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 13095
+ },
+ {
+ "start": 6504.2,
+ "end": 6504.6,
+ "confidence": 0,
+ "word": "pages",
+ "punct": "pages",
+ "index": 13096
+ },
+ {
+ "start": 6504.6,
+ "end": 6504.78,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 13097
+ },
+ {
+ "start": 6504.78,
+ "end": 6504.98,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 13098
+ },
+ {
+ "start": 6504.98,
+ "end": 6505.32,
+ "confidence": 0,
+ "word": "friends",
+ "punct": "friends",
+ "index": 13099
+ },
+ {
+ "start": 6505.32,
+ "end": 6505.74,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 13100
+ },
+ {
+ "start": 6505.74,
+ "end": 6506.46,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 13101
+ },
+ {
+ "start": 6506.46,
+ "end": 6506.62,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 13102
+ },
+ {
+ "start": 6506.62,
+ "end": 6506.78,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 13103
+ },
+ {
+ "start": 6506.78,
+ "end": 6506.98,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 13104
+ },
+ {
+ "start": 6506.98,
+ "end": 6507.54,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 13105
+ },
+ {
+ "start": 6507.54,
+ "end": 6507.76,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 13106
+ },
+ {
+ "start": 6507.76,
+ "end": 6507.96,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 13107
+ },
+ {
+ "start": 6507.96,
+ "end": 6508.38,
+ "confidence": 0,
+ "word": "happened",
+ "punct": "happened",
+ "index": 13108
+ },
+ {
+ "start": 6508.38,
+ "end": 6508.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13109
+ },
+ {
+ "start": 6508.62,
+ "end": 6508.94,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 13110
+ },
+ {
+ "start": 6508.94,
+ "end": 6509.4,
+ "confidence": 0,
+ "word": "conceded",
+ "punct": "conceded",
+ "index": 13111
+ },
+ {
+ "start": 6509.4,
+ "end": 6509.6,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 13112
+ },
+ {
+ "start": 6509.6,
+ "end": 6509.9,
+ "confidence": 0,
+ "word": "point",
+ "punct": "point",
+ "index": 13113
+ },
+ {
+ "start": 6509.9,
+ "end": 6510.54,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13114
+ },
+ {
+ "start": 6510.54,
+ "end": 6510.66,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13115
+ },
+ {
+ "start": 6510.66,
+ "end": 6511.06,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past",
+ "index": 13116
+ },
+ {
+ "start": 6511.06,
+ "end": 6511.48,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13117
+ },
+ {
+ "start": 6511.48,
+ "end": 6511.92,
+ "confidence": 0,
+ "word": "sometimes",
+ "punct": "sometimes",
+ "index": 13118
+ },
+ {
+ "start": 6511.92,
+ "end": 6512.1,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13119
+ },
+ {
+ "start": 6512.1,
+ "end": 6512.64,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 13120
+ },
+ {
+ "start": 6512.64,
+ "end": 6512.86,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13121
+ },
+ {
+ "start": 6512.86,
+ "end": 6513.22,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 13122
+ },
+ {
+ "start": 6513.22,
+ "end": 6513.46,
+ "confidence": 0,
+ "word": "way",
+ "punct": "way",
+ "index": 13123
+ },
+ {
+ "start": 6513.46,
+ "end": 6513.72,
+ "confidence": 0,
+ "word": "beyond",
+ "punct": "beyond",
+ "index": 13124
+ },
+ {
+ "start": 6513.72,
+ "end": 6513.9,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 13125
+ },
+ {
+ "start": 6513.9,
+ "end": 6514.32,
+ "confidence": 0,
+ "word": "friends",
+ "punct": "friends.",
+ "index": 13126
+ }
+ ],
+ "start": 6502.12
+ }
+ },
+ {
+ "key": "83p9l",
+ "text": "And sometimes people have made money off of sharing that information, correct, Senator you're referring, I think to our developer platform and it may be useful for me to give some background on how we set that up.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6514.32,
+ "end": 6514.52,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 13127
+ },
+ {
+ "start": 6514.52,
+ "end": 6515.08,
+ "confidence": 0,
+ "word": "sometimes",
+ "punct": "sometimes",
+ "index": 13128
+ },
+ {
+ "start": 6515.08,
+ "end": 6515.54,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 13129
+ },
+ {
+ "start": 6515.54,
+ "end": 6515.72,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 13130
+ },
+ {
+ "start": 6515.72,
+ "end": 6515.94,
+ "confidence": 0,
+ "word": "made",
+ "punct": "made",
+ "index": 13131
+ },
+ {
+ "start": 6515.94,
+ "end": 6516.42,
+ "confidence": 0,
+ "word": "money",
+ "punct": "money",
+ "index": 13132
+ },
+ {
+ "start": 6516.42,
+ "end": 6516.64,
+ "confidence": 0,
+ "word": "off",
+ "punct": "off",
+ "index": 13133
+ },
+ {
+ "start": 6516.64,
+ "end": 6516.76,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13134
+ },
+ {
+ "start": 6516.76,
+ "end": 6517.12,
+ "confidence": 0,
+ "word": "sharing",
+ "punct": "sharing",
+ "index": 13135
+ },
+ {
+ "start": 6517.12,
+ "end": 6517.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13136
+ },
+ {
+ "start": 6517.32,
+ "end": 6518.34,
+ "confidence": 0,
+ "word": "information,",
+ "punct": "information,",
+ "index": 13137
+ },
+ {
+ "start": 6518.34,
+ "end": 6520.46,
+ "confidence": 0,
+ "word": "correct,",
+ "punct": "correct,",
+ "index": 13138
+ },
+ {
+ "start": 6520.46,
+ "end": 6521.42,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 13139
+ },
+ {
+ "start": 6521.42,
+ "end": 6521.7,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 13140
+ },
+ {
+ "start": 6521.7,
+ "end": 6522.12,
+ "confidence": 0,
+ "word": "referring,",
+ "punct": "referring,",
+ "index": 13141
+ },
+ {
+ "start": 6522.12,
+ "end": 6522.16,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13142
+ },
+ {
+ "start": 6522.16,
+ "end": 6522.42,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 13143
+ },
+ {
+ "start": 6522.42,
+ "end": 6522.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13144
+ },
+ {
+ "start": 6522.66,
+ "end": 6522.98,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 13145
+ },
+ {
+ "start": 6522.98,
+ "end": 6523.5,
+ "confidence": 0,
+ "word": "developer",
+ "punct": "developer",
+ "index": 13146
+ },
+ {
+ "start": 6523.5,
+ "end": 6523.98,
+ "confidence": 0,
+ "word": "platform",
+ "punct": "platform",
+ "index": 13147
+ },
+ {
+ "start": 6523.98,
+ "end": 6525.02,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13148
+ },
+ {
+ "start": 6525.02,
+ "end": 6525.2,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 13149
+ },
+ {
+ "start": 6525.2,
+ "end": 6525.38,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 13150
+ },
+ {
+ "start": 6525.38,
+ "end": 6525.56,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 13151
+ },
+ {
+ "start": 6525.56,
+ "end": 6526.2,
+ "confidence": 0,
+ "word": "useful",
+ "punct": "useful",
+ "index": 13152
+ },
+ {
+ "start": 6526.2,
+ "end": 6526.34,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 13153
+ },
+ {
+ "start": 6526.34,
+ "end": 6526.44,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 13154
+ },
+ {
+ "start": 6526.44,
+ "end": 6526.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13155
+ },
+ {
+ "start": 6526.52,
+ "end": 6526.66,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 13156
+ },
+ {
+ "start": 6526.66,
+ "end": 6526.82,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 13157
+ },
+ {
+ "start": 6526.82,
+ "end": 6527.2,
+ "confidence": 0,
+ "word": "background",
+ "punct": "background",
+ "index": 13158
+ },
+ {
+ "start": 6527.2,
+ "end": 6527.32,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 13159
+ },
+ {
+ "start": 6527.32,
+ "end": 6527.48,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 13160
+ },
+ {
+ "start": 6527.48,
+ "end": 6527.58,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 13161
+ },
+ {
+ "start": 6527.58,
+ "end": 6527.84,
+ "confidence": 0,
+ "word": "set",
+ "punct": "set",
+ "index": 13162
+ },
+ {
+ "start": 6527.84,
+ "end": 6527.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13163
+ },
+ {
+ "start": 6527.98,
+ "end": 6528.1,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up.",
+ "index": 13164
+ }
+ ],
+ "start": 6514.32
+ }
+ },
+ {
+ "key": "6avk0",
+ "text": "If that's useful I have three minutes left.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6528.1,
+ "end": 6528.24,
+ "confidence": 0,
+ "word": "if",
+ "punct": "If",
+ "index": 13165
+ },
+ {
+ "start": 6528.24,
+ "end": 6528.44,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 13166
+ },
+ {
+ "start": 6528.44,
+ "end": 6528.8,
+ "confidence": 0,
+ "word": "useful",
+ "punct": "useful",
+ "index": 13167
+ },
+ {
+ "start": 6528.8,
+ "end": 6529.84,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13168
+ },
+ {
+ "start": 6529.84,
+ "end": 6530,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 13169
+ },
+ {
+ "start": 6530,
+ "end": 6530.28,
+ "confidence": 0,
+ "word": "three",
+ "punct": "three",
+ "index": 13170
+ },
+ {
+ "start": 6530.28,
+ "end": 6530.56,
+ "confidence": 0,
+ "word": "minutes",
+ "punct": "minutes",
+ "index": 13171
+ },
+ {
+ "start": 6530.56,
+ "end": 6530.86,
+ "confidence": 0,
+ "word": "left",
+ "punct": "left.",
+ "index": 13172
+ }
+ ],
+ "start": 6528.1
+ }
+ },
+ {
+ "key": "dr0as",
+ "text": "So maybe you can do that for the record because I have a couple of the questions I'd like to ask you have recently announced something that is called Messenger Kids Facebook created.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6530.86,
+ "end": 6531.5,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 13173
+ },
+ {
+ "start": 6531.5,
+ "end": 6531.94,
+ "confidence": 0,
+ "word": "maybe",
+ "punct": "maybe",
+ "index": 13174
+ },
+ {
+ "start": 6531.94,
+ "end": 6532.08,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 13175
+ },
+ {
+ "start": 6532.08,
+ "end": 6532.4,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 13176
+ },
+ {
+ "start": 6532.4,
+ "end": 6532.52,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 13177
+ },
+ {
+ "start": 6532.52,
+ "end": 6532.74,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13178
+ },
+ {
+ "start": 6532.74,
+ "end": 6532.9,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 13179
+ },
+ {
+ "start": 6532.9,
+ "end": 6533.02,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13180
+ },
+ {
+ "start": 6533.02,
+ "end": 6533.36,
+ "confidence": 0,
+ "word": "record",
+ "punct": "record",
+ "index": 13181
+ },
+ {
+ "start": 6533.36,
+ "end": 6533.7,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 13182
+ },
+ {
+ "start": 6533.7,
+ "end": 6533.78,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13183
+ },
+ {
+ "start": 6533.78,
+ "end": 6533.92,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 13184
+ },
+ {
+ "start": 6533.92,
+ "end": 6533.98,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13185
+ },
+ {
+ "start": 6533.98,
+ "end": 6534.18,
+ "confidence": 0,
+ "word": "couple",
+ "punct": "couple",
+ "index": 13186
+ },
+ {
+ "start": 6534.18,
+ "end": 6534.28,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13187
+ },
+ {
+ "start": 6534.28,
+ "end": 6534.4,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13188
+ },
+ {
+ "start": 6534.4,
+ "end": 6534.76,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 13189
+ },
+ {
+ "start": 6534.76,
+ "end": 6534.96,
+ "confidence": 0,
+ "word": "i'd",
+ "punct": "I'd",
+ "index": 13190
+ },
+ {
+ "start": 6534.96,
+ "end": 6535.1,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 13191
+ },
+ {
+ "start": 6535.1,
+ "end": 6535.22,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13192
+ },
+ {
+ "start": 6535.22,
+ "end": 6536.34,
+ "confidence": 0,
+ "word": "ask",
+ "punct": "ask",
+ "index": 13193
+ },
+ {
+ "start": 6536.34,
+ "end": 6537.4,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 13194
+ },
+ {
+ "start": 6537.4,
+ "end": 6537.82,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 13195
+ },
+ {
+ "start": 6537.82,
+ "end": 6538.28,
+ "confidence": 0,
+ "word": "recently",
+ "punct": "recently",
+ "index": 13196
+ },
+ {
+ "start": 6538.28,
+ "end": 6538.68,
+ "confidence": 0,
+ "word": "announced",
+ "punct": "announced",
+ "index": 13197
+ },
+ {
+ "start": 6538.68,
+ "end": 6539.56,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 13198
+ },
+ {
+ "start": 6539.56,
+ "end": 6540.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13199
+ },
+ {
+ "start": 6540.58,
+ "end": 6540.86,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13200
+ },
+ {
+ "start": 6540.86,
+ "end": 6543,
+ "confidence": 0,
+ "word": "called",
+ "punct": "called",
+ "index": 13201
+ },
+ {
+ "start": 6543,
+ "end": 6543.98,
+ "confidence": 0,
+ "word": "messenger",
+ "punct": "Messenger",
+ "index": 13202
+ },
+ {
+ "start": 6543.98,
+ "end": 6545.3,
+ "confidence": 0,
+ "word": "kids",
+ "punct": "Kids",
+ "index": 13203
+ },
+ {
+ "start": 6545.3,
+ "end": 6546.28,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 13204
+ },
+ {
+ "start": 6546.28,
+ "end": 6546.58,
+ "confidence": 0,
+ "word": "created",
+ "punct": "created.",
+ "index": 13205
+ }
+ ],
+ "start": 6530.86
+ }
+ },
+ {
+ "key": "9j6lc",
+ "text": "An app allowing kids between the ages of six and 12 to send video and text messages through Facebook as an extension of their parents account.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6546.58,
+ "end": 6546.7,
+ "confidence": 0,
+ "word": "an",
+ "punct": "An",
+ "index": 13206
+ },
+ {
+ "start": 6546.7,
+ "end": 6546.96,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 13207
+ },
+ {
+ "start": 6546.96,
+ "end": 6547.36,
+ "confidence": 0,
+ "word": "allowing",
+ "punct": "allowing",
+ "index": 13208
+ },
+ {
+ "start": 6547.36,
+ "end": 6547.8,
+ "confidence": 0,
+ "word": "kids",
+ "punct": "kids",
+ "index": 13209
+ },
+ {
+ "start": 6547.8,
+ "end": 6548.24,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 13210
+ },
+ {
+ "start": 6548.24,
+ "end": 6548.34,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13211
+ },
+ {
+ "start": 6548.34,
+ "end": 6548.64,
+ "confidence": 0,
+ "word": "ages",
+ "punct": "ages",
+ "index": 13212
+ },
+ {
+ "start": 6548.64,
+ "end": 6548.76,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13213
+ },
+ {
+ "start": 6548.76,
+ "end": 6549.16,
+ "confidence": 0,
+ "word": "six",
+ "punct": "six",
+ "index": 13214
+ },
+ {
+ "start": 6549.16,
+ "end": 6549.44,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13215
+ },
+ {
+ "start": 6549.44,
+ "end": 6550.02,
+ "confidence": 0,
+ "word": "12",
+ "punct": "12",
+ "index": 13216
+ },
+ {
+ "start": 6550.02,
+ "end": 6550.94,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13217
+ },
+ {
+ "start": 6550.94,
+ "end": 6551.14,
+ "confidence": 0,
+ "word": "send",
+ "punct": "send",
+ "index": 13218
+ },
+ {
+ "start": 6551.14,
+ "end": 6551.44,
+ "confidence": 0,
+ "word": "video",
+ "punct": "video",
+ "index": 13219
+ },
+ {
+ "start": 6551.44,
+ "end": 6551.56,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13220
+ },
+ {
+ "start": 6551.56,
+ "end": 6551.82,
+ "confidence": 0,
+ "word": "text",
+ "punct": "text",
+ "index": 13221
+ },
+ {
+ "start": 6551.82,
+ "end": 6552.28,
+ "confidence": 0,
+ "word": "messages",
+ "punct": "messages",
+ "index": 13222
+ },
+ {
+ "start": 6552.28,
+ "end": 6552.56,
+ "confidence": 0,
+ "word": "through",
+ "punct": "through",
+ "index": 13223
+ },
+ {
+ "start": 6552.56,
+ "end": 6553.02,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 13224
+ },
+ {
+ "start": 6553.02,
+ "end": 6553.18,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 13225
+ },
+ {
+ "start": 6553.18,
+ "end": 6553.28,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 13226
+ },
+ {
+ "start": 6553.28,
+ "end": 6553.74,
+ "confidence": 0,
+ "word": "extension",
+ "punct": "extension",
+ "index": 13227
+ },
+ {
+ "start": 6553.74,
+ "end": 6553.84,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13228
+ },
+ {
+ "start": 6553.84,
+ "end": 6553.98,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 13229
+ },
+ {
+ "start": 6553.98,
+ "end": 6554.28,
+ "confidence": 0,
+ "word": "parents",
+ "punct": "parents",
+ "index": 13230
+ },
+ {
+ "start": 6554.28,
+ "end": 6554.68,
+ "confidence": 0,
+ "word": "account",
+ "punct": "account.",
+ "index": 13231
+ }
+ ],
+ "start": 6546.58
+ }
+ },
+ {
+ "key": "4r7jm",
+ "text": "You have cartoon like stickers and other features designed to appeal to little kids first graders kindergarteners on January thirtieth campaign.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6554.68,
+ "end": 6555.8,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 13232
+ },
+ {
+ "start": 6555.8,
+ "end": 6555.94,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 13233
+ },
+ {
+ "start": 6555.94,
+ "end": 6556.38,
+ "confidence": 0,
+ "word": "cartoon",
+ "punct": "cartoon",
+ "index": 13234
+ },
+ {
+ "start": 6556.38,
+ "end": 6556.56,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 13235
+ },
+ {
+ "start": 6556.56,
+ "end": 6557,
+ "confidence": 0,
+ "word": "stickers",
+ "punct": "stickers",
+ "index": 13236
+ },
+ {
+ "start": 6557,
+ "end": 6557.14,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13237
+ },
+ {
+ "start": 6557.14,
+ "end": 6557.38,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 13238
+ },
+ {
+ "start": 6557.38,
+ "end": 6557.78,
+ "confidence": 0,
+ "word": "features",
+ "punct": "features",
+ "index": 13239
+ },
+ {
+ "start": 6557.78,
+ "end": 6558.22,
+ "confidence": 0,
+ "word": "designed",
+ "punct": "designed",
+ "index": 13240
+ },
+ {
+ "start": 6558.22,
+ "end": 6558.3,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13241
+ },
+ {
+ "start": 6558.3,
+ "end": 6558.66,
+ "confidence": 0,
+ "word": "appeal",
+ "punct": "appeal",
+ "index": 13242
+ },
+ {
+ "start": 6558.66,
+ "end": 6558.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13243
+ },
+ {
+ "start": 6558.9,
+ "end": 6559.44,
+ "confidence": 0,
+ "word": "little",
+ "punct": "little",
+ "index": 13244
+ },
+ {
+ "start": 6559.44,
+ "end": 6559.74,
+ "confidence": 0,
+ "word": "kids",
+ "punct": "kids",
+ "index": 13245
+ },
+ {
+ "start": 6559.74,
+ "end": 6560.22,
+ "confidence": 0,
+ "word": "first",
+ "punct": "first",
+ "index": 13246
+ },
+ {
+ "start": 6560.22,
+ "end": 6560.58,
+ "confidence": 0,
+ "word": "graders",
+ "punct": "graders",
+ "index": 13247
+ },
+ {
+ "start": 6560.58,
+ "end": 6562.28,
+ "confidence": 0,
+ "word": "kindergarteners",
+ "punct": "kindergarteners",
+ "index": 13248
+ },
+ {
+ "start": 6562.28,
+ "end": 6563.24,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 13249
+ },
+ {
+ "start": 6563.24,
+ "end": 6563.6,
+ "confidence": 0,
+ "word": "january",
+ "punct": "January",
+ "index": 13250
+ },
+ {
+ "start": 6563.6,
+ "end": 6564.04,
+ "confidence": 0,
+ "word": "thirtieth",
+ "punct": "thirtieth",
+ "index": 13251
+ },
+ {
+ "start": 6564.04,
+ "end": 6564.5,
+ "confidence": 0,
+ "word": "campaign",
+ "punct": "campaign.",
+ "index": 13252
+ }
+ ],
+ "start": 6554.68
+ }
+ },
+ {
+ "key": "971d6",
+ "text": "For commercial free childhood and lots of other child development organizations, Warren Facebook, they pointed to a wealth of research demonstrating the excessive use of digital devices and social media is harmful to kids and argued that young children simply are not ready to handle social media accounts at age six in addition.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6564.5,
+ "end": 6564.66,
+ "confidence": 0,
+ "word": "for",
+ "punct": "For",
+ "index": 13253
+ },
+ {
+ "start": 6564.66,
+ "end": 6565.08,
+ "confidence": 0,
+ "word": "commercial",
+ "punct": "commercial",
+ "index": 13254
+ },
+ {
+ "start": 6565.08,
+ "end": 6565.34,
+ "confidence": 0,
+ "word": "free",
+ "punct": "free",
+ "index": 13255
+ },
+ {
+ "start": 6565.34,
+ "end": 6565.92,
+ "confidence": 0,
+ "word": "childhood",
+ "punct": "childhood",
+ "index": 13256
+ },
+ {
+ "start": 6565.92,
+ "end": 6566.14,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13257
+ },
+ {
+ "start": 6566.14,
+ "end": 6566.46,
+ "confidence": 0,
+ "word": "lots",
+ "punct": "lots",
+ "index": 13258
+ },
+ {
+ "start": 6566.46,
+ "end": 6566.54,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13259
+ },
+ {
+ "start": 6566.54,
+ "end": 6566.76,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 13260
+ },
+ {
+ "start": 6566.76,
+ "end": 6567.02,
+ "confidence": 0,
+ "word": "child",
+ "punct": "child",
+ "index": 13261
+ },
+ {
+ "start": 6567.02,
+ "end": 6567.44,
+ "confidence": 0,
+ "word": "development",
+ "punct": "development",
+ "index": 13262
+ },
+ {
+ "start": 6567.44,
+ "end": 6568.14,
+ "confidence": 0,
+ "word": "organizations,",
+ "punct": "organizations,",
+ "index": 13263
+ },
+ {
+ "start": 6568.14,
+ "end": 6568.58,
+ "confidence": 0,
+ "word": "warren",
+ "punct": "Warren",
+ "index": 13264
+ },
+ {
+ "start": 6568.58,
+ "end": 6569.2,
+ "confidence": 0,
+ "word": "facebook,",
+ "punct": "Facebook,",
+ "index": 13265
+ },
+ {
+ "start": 6569.2,
+ "end": 6570.3,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 13266
+ },
+ {
+ "start": 6570.3,
+ "end": 6570.6,
+ "confidence": 0,
+ "word": "pointed",
+ "punct": "pointed",
+ "index": 13267
+ },
+ {
+ "start": 6570.6,
+ "end": 6570.74,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13268
+ },
+ {
+ "start": 6570.74,
+ "end": 6570.82,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13269
+ },
+ {
+ "start": 6570.82,
+ "end": 6571.14,
+ "confidence": 0,
+ "word": "wealth",
+ "punct": "wealth",
+ "index": 13270
+ },
+ {
+ "start": 6571.14,
+ "end": 6571.26,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13271
+ },
+ {
+ "start": 6571.26,
+ "end": 6571.78,
+ "confidence": 0,
+ "word": "research",
+ "punct": "research",
+ "index": 13272
+ },
+ {
+ "start": 6571.78,
+ "end": 6572.4,
+ "confidence": 0,
+ "word": "demonstrating",
+ "punct": "demonstrating",
+ "index": 13273
+ },
+ {
+ "start": 6572.4,
+ "end": 6572.69,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13274
+ },
+ {
+ "start": 6572.69,
+ "end": 6573.09,
+ "confidence": 0,
+ "word": "excessive",
+ "punct": "excessive",
+ "index": 13275
+ },
+ {
+ "start": 6573.09,
+ "end": 6573.31,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 13276
+ },
+ {
+ "start": 6573.31,
+ "end": 6573.45,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13277
+ },
+ {
+ "start": 6573.45,
+ "end": 6573.85,
+ "confidence": 0,
+ "word": "digital",
+ "punct": "digital",
+ "index": 13278
+ },
+ {
+ "start": 6573.85,
+ "end": 6574.37,
+ "confidence": 0,
+ "word": "devices",
+ "punct": "devices",
+ "index": 13279
+ },
+ {
+ "start": 6574.37,
+ "end": 6574.51,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13280
+ },
+ {
+ "start": 6574.51,
+ "end": 6574.89,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 13281
+ },
+ {
+ "start": 6574.89,
+ "end": 6575.23,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 13282
+ },
+ {
+ "start": 6575.23,
+ "end": 6575.85,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13283
+ },
+ {
+ "start": 6575.85,
+ "end": 6576.27,
+ "confidence": 0,
+ "word": "harmful",
+ "punct": "harmful",
+ "index": 13284
+ },
+ {
+ "start": 6576.27,
+ "end": 6576.35,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13285
+ },
+ {
+ "start": 6576.35,
+ "end": 6576.65,
+ "confidence": 0,
+ "word": "kids",
+ "punct": "kids",
+ "index": 13286
+ },
+ {
+ "start": 6576.65,
+ "end": 6577.41,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13287
+ },
+ {
+ "start": 6577.41,
+ "end": 6577.79,
+ "confidence": 0,
+ "word": "argued",
+ "punct": "argued",
+ "index": 13288
+ },
+ {
+ "start": 6577.79,
+ "end": 6577.95,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13289
+ },
+ {
+ "start": 6577.95,
+ "end": 6578.23,
+ "confidence": 0,
+ "word": "young",
+ "punct": "young",
+ "index": 13290
+ },
+ {
+ "start": 6578.23,
+ "end": 6578.65,
+ "confidence": 0,
+ "word": "children",
+ "punct": "children",
+ "index": 13291
+ },
+ {
+ "start": 6578.65,
+ "end": 6579.07,
+ "confidence": 0,
+ "word": "simply",
+ "punct": "simply",
+ "index": 13292
+ },
+ {
+ "start": 6579.07,
+ "end": 6579.21,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 13293
+ },
+ {
+ "start": 6579.21,
+ "end": 6579.45,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 13294
+ },
+ {
+ "start": 6579.45,
+ "end": 6579.81,
+ "confidence": 0,
+ "word": "ready",
+ "punct": "ready",
+ "index": 13295
+ },
+ {
+ "start": 6579.81,
+ "end": 6579.95,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13296
+ },
+ {
+ "start": 6579.95,
+ "end": 6580.33,
+ "confidence": 0,
+ "word": "handle",
+ "punct": "handle",
+ "index": 13297
+ },
+ {
+ "start": 6580.33,
+ "end": 6580.81,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 13298
+ },
+ {
+ "start": 6580.81,
+ "end": 6581.13,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 13299
+ },
+ {
+ "start": 6581.13,
+ "end": 6581.63,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts",
+ "index": 13300
+ },
+ {
+ "start": 6581.63,
+ "end": 6581.79,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 13301
+ },
+ {
+ "start": 6581.79,
+ "end": 6582.03,
+ "confidence": 0,
+ "word": "age",
+ "punct": "age",
+ "index": 13302
+ },
+ {
+ "start": 6582.03,
+ "end": 6583.1,
+ "confidence": 0,
+ "word": "six",
+ "punct": "six",
+ "index": 13303
+ },
+ {
+ "start": 6583.1,
+ "end": 6583.86,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13304
+ },
+ {
+ "start": 6583.86,
+ "end": 6584.16,
+ "confidence": 0,
+ "word": "addition",
+ "punct": "addition.",
+ "index": 13305
+ }
+ ],
+ "start": 6564.5
+ }
+ },
+ {
+ "key": "aii8k",
+ "text": "There are concerns about data that's being gathered about these kids now.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6584.16,
+ "end": 6584.36,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 13306
+ },
+ {
+ "start": 6584.36,
+ "end": 6584.46,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 13307
+ },
+ {
+ "start": 6584.46,
+ "end": 6584.84,
+ "confidence": 0,
+ "word": "concerns",
+ "punct": "concerns",
+ "index": 13308
+ },
+ {
+ "start": 6584.84,
+ "end": 6585.06,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 13309
+ },
+ {
+ "start": 6585.06,
+ "end": 6585.84,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 13310
+ },
+ {
+ "start": 6585.84,
+ "end": 6586.1,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 13311
+ },
+ {
+ "start": 6586.1,
+ "end": 6586.34,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 13312
+ },
+ {
+ "start": 6586.34,
+ "end": 6586.9,
+ "confidence": 0,
+ "word": "gathered",
+ "punct": "gathered",
+ "index": 13313
+ },
+ {
+ "start": 6586.9,
+ "end": 6587.64,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 13314
+ },
+ {
+ "start": 6587.64,
+ "end": 6587.98,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 13315
+ },
+ {
+ "start": 6587.98,
+ "end": 6588.36,
+ "confidence": 0,
+ "word": "kids",
+ "punct": "kids",
+ "index": 13316
+ },
+ {
+ "start": 6588.36,
+ "end": 6589.32,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now.",
+ "index": 13317
+ }
+ ],
+ "start": 6584.16
+ }
+ },
+ {
+ "key": "9p5dr",
+ "text": "There are certain limits in the law.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6589.32,
+ "end": 6589.48,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 13318
+ },
+ {
+ "start": 6589.48,
+ "end": 6589.58,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 13319
+ },
+ {
+ "start": 6589.58,
+ "end": 6589.8,
+ "confidence": 0,
+ "word": "certain",
+ "punct": "certain",
+ "index": 13320
+ },
+ {
+ "start": 6589.8,
+ "end": 6590.12,
+ "confidence": 0,
+ "word": "limits",
+ "punct": "limits",
+ "index": 13321
+ },
+ {
+ "start": 6590.12,
+ "end": 6590.24,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13322
+ },
+ {
+ "start": 6590.24,
+ "end": 6590.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13323
+ },
+ {
+ "start": 6590.36,
+ "end": 6590.54,
+ "confidence": 0,
+ "word": "law",
+ "punct": "law.",
+ "index": 13324
+ }
+ ],
+ "start": 6589.32
+ }
+ },
+ {
+ "key": "c9tj7",
+ "text": "We know the children's online privacy at what guarantees can you give us that?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6590.54,
+ "end": 6591.02,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 13325
+ },
+ {
+ "start": 6591.02,
+ "end": 6591.2,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 13326
+ },
+ {
+ "start": 6591.2,
+ "end": 6592,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13327
+ },
+ {
+ "start": 6592,
+ "end": 6592.38,
+ "confidence": 0,
+ "word": "children's",
+ "punct": "children's",
+ "index": 13328
+ },
+ {
+ "start": 6592.38,
+ "end": 6592.82,
+ "confidence": 0,
+ "word": "online",
+ "punct": "online",
+ "index": 13329
+ },
+ {
+ "start": 6592.82,
+ "end": 6593.62,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 13330
+ },
+ {
+ "start": 6593.62,
+ "end": 6595.06,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 13331
+ },
+ {
+ "start": 6595.06,
+ "end": 6595.24,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 13332
+ },
+ {
+ "start": 6595.24,
+ "end": 6595.86,
+ "confidence": 0,
+ "word": "guarantees",
+ "punct": "guarantees",
+ "index": 13333
+ },
+ {
+ "start": 6595.86,
+ "end": 6596.06,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 13334
+ },
+ {
+ "start": 6596.06,
+ "end": 6596.26,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 13335
+ },
+ {
+ "start": 6596.26,
+ "end": 6596.44,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 13336
+ },
+ {
+ "start": 6596.44,
+ "end": 6596.62,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 13337
+ },
+ {
+ "start": 6596.62,
+ "end": 6596.84,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that?",
+ "index": 13338
+ }
+ ],
+ "start": 6590.54
+ }
+ },
+ {
+ "key": "c228h",
+ "text": "No, data for Messenger kids is or will be collected or shared with those that might violate that law.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6596.84,
+ "end": 6597.14,
+ "confidence": 0,
+ "word": "no,",
+ "punct": "No,",
+ "index": 13339
+ },
+ {
+ "start": 6597.14,
+ "end": 6597.6,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 13340
+ },
+ {
+ "start": 6597.6,
+ "end": 6597.8,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 13341
+ },
+ {
+ "start": 6597.8,
+ "end": 6598.42,
+ "confidence": 0,
+ "word": "messenger",
+ "punct": "Messenger",
+ "index": 13342
+ },
+ {
+ "start": 6598.42,
+ "end": 6598.74,
+ "confidence": 0,
+ "word": "kids",
+ "punct": "kids",
+ "index": 13343
+ },
+ {
+ "start": 6598.74,
+ "end": 6599.16,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13344
+ },
+ {
+ "start": 6599.16,
+ "end": 6599.5,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13345
+ },
+ {
+ "start": 6599.5,
+ "end": 6599.74,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 13346
+ },
+ {
+ "start": 6599.74,
+ "end": 6599.9,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 13347
+ },
+ {
+ "start": 6599.9,
+ "end": 6600.34,
+ "confidence": 0,
+ "word": "collected",
+ "punct": "collected",
+ "index": 13348
+ },
+ {
+ "start": 6600.34,
+ "end": 6600.46,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13349
+ },
+ {
+ "start": 6600.46,
+ "end": 6600.86,
+ "confidence": 0,
+ "word": "shared",
+ "punct": "shared",
+ "index": 13350
+ },
+ {
+ "start": 6600.86,
+ "end": 6601.9,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 13351
+ },
+ {
+ "start": 6601.9,
+ "end": 6602.14,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 13352
+ },
+ {
+ "start": 6602.14,
+ "end": 6602.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13353
+ },
+ {
+ "start": 6602.3,
+ "end": 6602.52,
+ "confidence": 0,
+ "word": "might",
+ "punct": "might",
+ "index": 13354
+ },
+ {
+ "start": 6602.52,
+ "end": 6602.92,
+ "confidence": 0,
+ "word": "violate",
+ "punct": "violate",
+ "index": 13355
+ },
+ {
+ "start": 6602.92,
+ "end": 6603.12,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13356
+ },
+ {
+ "start": 6603.12,
+ "end": 6604.14,
+ "confidence": 0,
+ "word": "law",
+ "punct": "law.",
+ "index": 13357
+ }
+ ],
+ "start": 6596.84
+ }
+ },
+ {
+ "key": "7p3n2",
+ "text": "All right, Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6604.14,
+ "end": 6605.04,
+ "confidence": 0,
+ "word": "all",
+ "punct": "All",
+ "index": 13358
+ },
+ {
+ "start": 6605.04,
+ "end": 6605.2,
+ "confidence": 0,
+ "word": "right,",
+ "punct": "right,",
+ "index": 13359
+ },
+ {
+ "start": 6605.2,
+ "end": 6605.62,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 13360
+ }
+ ],
+ "start": 6604.14
+ }
+ },
+ {
+ "key": "3o181",
+ "text": "So a number of things I think are important here, the background on Messenger kids is we heard feedback from thousands of parents that they want to be able to stay in touch with their kids and call them use apps like FaceTime when they're working late or not around and want to communicate with their kids.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6605.62,
+ "end": 6605.84,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 13361
+ },
+ {
+ "start": 6605.84,
+ "end": 6605.9,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13362
+ },
+ {
+ "start": 6605.9,
+ "end": 6606.22,
+ "confidence": 0,
+ "word": "number",
+ "punct": "number",
+ "index": 13363
+ },
+ {
+ "start": 6606.22,
+ "end": 6606.32,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13364
+ },
+ {
+ "start": 6606.32,
+ "end": 6606.66,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 13365
+ },
+ {
+ "start": 6606.66,
+ "end": 6606.7,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13366
+ },
+ {
+ "start": 6606.7,
+ "end": 6606.98,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 13367
+ },
+ {
+ "start": 6606.98,
+ "end": 6607.4,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 13368
+ },
+ {
+ "start": 6607.4,
+ "end": 6607.84,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 13369
+ },
+ {
+ "start": 6607.84,
+ "end": 6608.08,
+ "confidence": 0,
+ "word": "here,",
+ "punct": "here,",
+ "index": 13370
+ },
+ {
+ "start": 6608.08,
+ "end": 6608.8,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13371
+ },
+ {
+ "start": 6608.8,
+ "end": 6609.12,
+ "confidence": 0,
+ "word": "background",
+ "punct": "background",
+ "index": 13372
+ },
+ {
+ "start": 6609.12,
+ "end": 6609.2,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 13373
+ },
+ {
+ "start": 6609.2,
+ "end": 6609.62,
+ "confidence": 0,
+ "word": "messenger",
+ "punct": "Messenger",
+ "index": 13374
+ },
+ {
+ "start": 6609.62,
+ "end": 6609.9,
+ "confidence": 0,
+ "word": "kids",
+ "punct": "kids",
+ "index": 13375
+ },
+ {
+ "start": 6609.9,
+ "end": 6610.66,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13376
+ },
+ {
+ "start": 6610.66,
+ "end": 6611.32,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 13377
+ },
+ {
+ "start": 6611.32,
+ "end": 6611.54,
+ "confidence": 0,
+ "word": "heard",
+ "punct": "heard",
+ "index": 13378
+ },
+ {
+ "start": 6611.54,
+ "end": 6611.98,
+ "confidence": 0,
+ "word": "feedback",
+ "punct": "feedback",
+ "index": 13379
+ },
+ {
+ "start": 6611.98,
+ "end": 6612.14,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 13380
+ },
+ {
+ "start": 6612.14,
+ "end": 6612.68,
+ "confidence": 0,
+ "word": "thousands",
+ "punct": "thousands",
+ "index": 13381
+ },
+ {
+ "start": 6612.68,
+ "end": 6612.82,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13382
+ },
+ {
+ "start": 6612.82,
+ "end": 6613.24,
+ "confidence": 0,
+ "word": "parents",
+ "punct": "parents",
+ "index": 13383
+ },
+ {
+ "start": 6613.24,
+ "end": 6614.16,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13384
+ },
+ {
+ "start": 6614.16,
+ "end": 6615.24,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 13385
+ },
+ {
+ "start": 6615.24,
+ "end": 6615.42,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 13386
+ },
+ {
+ "start": 6615.42,
+ "end": 6615.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13387
+ },
+ {
+ "start": 6615.52,
+ "end": 6615.64,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 13388
+ },
+ {
+ "start": 6615.64,
+ "end": 6615.82,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 13389
+ },
+ {
+ "start": 6615.82,
+ "end": 6615.92,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13390
+ },
+ {
+ "start": 6615.92,
+ "end": 6616.14,
+ "confidence": 0,
+ "word": "stay",
+ "punct": "stay",
+ "index": 13391
+ },
+ {
+ "start": 6616.14,
+ "end": 6616.24,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13392
+ },
+ {
+ "start": 6616.24,
+ "end": 6616.46,
+ "confidence": 0,
+ "word": "touch",
+ "punct": "touch",
+ "index": 13393
+ },
+ {
+ "start": 6616.46,
+ "end": 6616.62,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 13394
+ },
+ {
+ "start": 6616.62,
+ "end": 6616.8,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 13395
+ },
+ {
+ "start": 6616.8,
+ "end": 6617.04,
+ "confidence": 0,
+ "word": "kids",
+ "punct": "kids",
+ "index": 13396
+ },
+ {
+ "start": 6617.04,
+ "end": 6617.22,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13397
+ },
+ {
+ "start": 6617.22,
+ "end": 6617.46,
+ "confidence": 0,
+ "word": "call",
+ "punct": "call",
+ "index": 13398
+ },
+ {
+ "start": 6617.46,
+ "end": 6617.7,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 13399
+ },
+ {
+ "start": 6617.7,
+ "end": 6617.98,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 13400
+ },
+ {
+ "start": 6617.98,
+ "end": 6618.24,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 13401
+ },
+ {
+ "start": 6618.24,
+ "end": 6618.44,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 13402
+ },
+ {
+ "start": 6618.44,
+ "end": 6619.1,
+ "confidence": 0,
+ "word": "facetime",
+ "punct": "FaceTime",
+ "index": 13403
+ },
+ {
+ "start": 6619.1,
+ "end": 6619.78,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 13404
+ },
+ {
+ "start": 6619.78,
+ "end": 6620.03,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 13405
+ },
+ {
+ "start": 6620.03,
+ "end": 6620.33,
+ "confidence": 0,
+ "word": "working",
+ "punct": "working",
+ "index": 13406
+ },
+ {
+ "start": 6620.33,
+ "end": 6620.61,
+ "confidence": 0,
+ "word": "late",
+ "punct": "late",
+ "index": 13407
+ },
+ {
+ "start": 6620.61,
+ "end": 6620.81,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13408
+ },
+ {
+ "start": 6620.81,
+ "end": 6621.01,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 13409
+ },
+ {
+ "start": 6621.01,
+ "end": 6621.33,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 13410
+ },
+ {
+ "start": 6621.33,
+ "end": 6621.49,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13411
+ },
+ {
+ "start": 6621.49,
+ "end": 6621.65,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 13412
+ },
+ {
+ "start": 6621.65,
+ "end": 6621.73,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13413
+ },
+ {
+ "start": 6621.73,
+ "end": 6622.09,
+ "confidence": 0,
+ "word": "communicate",
+ "punct": "communicate",
+ "index": 13414
+ },
+ {
+ "start": 6622.09,
+ "end": 6622.21,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 13415
+ },
+ {
+ "start": 6622.21,
+ "end": 6622.35,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 13416
+ },
+ {
+ "start": 6622.35,
+ "end": 6622.47,
+ "confidence": 0,
+ "word": "kids",
+ "punct": "kids.",
+ "index": 13417
+ }
+ ],
+ "start": 6605.62
+ }
+ },
+ {
+ "key": "99ipn",
+ "text": "But they want to have complete control over that so I think we can all agree that when your kid is six or 7 even if they have access to a phone, you want to be able to control everyone who they can contact and there wasn't an app out there that did that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6622.47,
+ "end": 6622.59,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 13418
+ },
+ {
+ "start": 6622.59,
+ "end": 6622.71,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 13419
+ },
+ {
+ "start": 6622.71,
+ "end": 6622.85,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 13420
+ },
+ {
+ "start": 6622.85,
+ "end": 6622.91,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13421
+ },
+ {
+ "start": 6622.91,
+ "end": 6623.03,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 13422
+ },
+ {
+ "start": 6623.03,
+ "end": 6623.35,
+ "confidence": 0,
+ "word": "complete",
+ "punct": "complete",
+ "index": 13423
+ },
+ {
+ "start": 6623.35,
+ "end": 6623.65,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 13424
+ },
+ {
+ "start": 6623.65,
+ "end": 6623.85,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 13425
+ },
+ {
+ "start": 6623.85,
+ "end": 6624.01,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13426
+ },
+ {
+ "start": 6624.01,
+ "end": 6624.21,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 13427
+ },
+ {
+ "start": 6624.21,
+ "end": 6624.27,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13428
+ },
+ {
+ "start": 6624.27,
+ "end": 6624.43,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 13429
+ },
+ {
+ "start": 6624.43,
+ "end": 6624.51,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 13430
+ },
+ {
+ "start": 6624.51,
+ "end": 6624.65,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 13431
+ },
+ {
+ "start": 6624.65,
+ "end": 6624.79,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 13432
+ },
+ {
+ "start": 6624.79,
+ "end": 6625.11,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 13433
+ },
+ {
+ "start": 6625.11,
+ "end": 6625.81,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13434
+ },
+ {
+ "start": 6625.81,
+ "end": 6626.29,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 13435
+ },
+ {
+ "start": 6626.29,
+ "end": 6626.45,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 13436
+ },
+ {
+ "start": 6626.45,
+ "end": 6626.61,
+ "confidence": 0,
+ "word": "kid",
+ "punct": "kid",
+ "index": 13437
+ },
+ {
+ "start": 6626.61,
+ "end": 6626.77,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13438
+ },
+ {
+ "start": 6626.77,
+ "end": 6627.01,
+ "confidence": 0,
+ "word": "six",
+ "punct": "six",
+ "index": 13439
+ },
+ {
+ "start": 6627.01,
+ "end": 6627.19,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13440
+ },
+ {
+ "start": 6627.19,
+ "end": 6627.47,
+ "confidence": 0,
+ "word": "7",
+ "punct": "7",
+ "index": 13441
+ },
+ {
+ "start": 6627.47,
+ "end": 6627.71,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 13442
+ },
+ {
+ "start": 6627.71,
+ "end": 6627.81,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 13443
+ },
+ {
+ "start": 6627.81,
+ "end": 6628.01,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 13444
+ },
+ {
+ "start": 6628.01,
+ "end": 6628.49,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 13445
+ },
+ {
+ "start": 6628.49,
+ "end": 6628.85,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access",
+ "index": 13446
+ },
+ {
+ "start": 6628.85,
+ "end": 6628.97,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13447
+ },
+ {
+ "start": 6628.97,
+ "end": 6629.05,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13448
+ },
+ {
+ "start": 6629.05,
+ "end": 6629.29,
+ "confidence": 0,
+ "word": "phone,",
+ "punct": "phone,",
+ "index": 13449
+ },
+ {
+ "start": 6629.29,
+ "end": 6629.41,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 13450
+ },
+ {
+ "start": 6629.41,
+ "end": 6629.53,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 13451
+ },
+ {
+ "start": 6629.53,
+ "end": 6629.61,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13452
+ },
+ {
+ "start": 6629.61,
+ "end": 6629.67,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 13453
+ },
+ {
+ "start": 6629.67,
+ "end": 6629.79,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 13454
+ },
+ {
+ "start": 6629.79,
+ "end": 6629.87,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13455
+ },
+ {
+ "start": 6629.87,
+ "end": 6630.17,
+ "confidence": 0,
+ "word": "control",
+ "punct": "control",
+ "index": 13456
+ },
+ {
+ "start": 6630.17,
+ "end": 6630.57,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 13457
+ },
+ {
+ "start": 6630.57,
+ "end": 6630.73,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 13458
+ },
+ {
+ "start": 6630.73,
+ "end": 6630.91,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 13459
+ },
+ {
+ "start": 6630.91,
+ "end": 6631.07,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 13460
+ },
+ {
+ "start": 6631.07,
+ "end": 6631.53,
+ "confidence": 0,
+ "word": "contact",
+ "punct": "contact",
+ "index": 13461
+ },
+ {
+ "start": 6631.53,
+ "end": 6632.01,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13462
+ },
+ {
+ "start": 6632.01,
+ "end": 6632.17,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 13463
+ },
+ {
+ "start": 6632.17,
+ "end": 6632.43,
+ "confidence": 0,
+ "word": "wasn't",
+ "punct": "wasn't",
+ "index": 13464
+ },
+ {
+ "start": 6632.43,
+ "end": 6632.51,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 13465
+ },
+ {
+ "start": 6632.51,
+ "end": 6632.75,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 13466
+ },
+ {
+ "start": 6632.75,
+ "end": 6632.95,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 13467
+ },
+ {
+ "start": 6632.95,
+ "end": 6633.13,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 13468
+ },
+ {
+ "start": 6633.13,
+ "end": 6633.31,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13469
+ },
+ {
+ "start": 6633.31,
+ "end": 6633.51,
+ "confidence": 0,
+ "word": "did",
+ "punct": "did",
+ "index": 13470
+ },
+ {
+ "start": 6633.51,
+ "end": 6633.71,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 13471
+ }
+ ],
+ "start": 6622.47
+ }
+ },
+ {
+ "key": "90h16",
+ "text": "So we built this service to do that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6633.71,
+ "end": 6634.27,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 13472
+ },
+ {
+ "start": 6634.27,
+ "end": 6634.43,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 13473
+ },
+ {
+ "start": 6634.43,
+ "end": 6634.65,
+ "confidence": 0,
+ "word": "built",
+ "punct": "built",
+ "index": 13474
+ },
+ {
+ "start": 6634.65,
+ "end": 6634.83,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 13475
+ },
+ {
+ "start": 6634.83,
+ "end": 6635.21,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 13476
+ },
+ {
+ "start": 6635.21,
+ "end": 6635.31,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13477
+ },
+ {
+ "start": 6635.31,
+ "end": 6635.45,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 13478
+ },
+ {
+ "start": 6635.45,
+ "end": 6635.92,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 13479
+ }
+ ],
+ "start": 6633.71
+ }
+ },
+ {
+ "key": "bl929",
+ "text": "The app collects a minimum amount of information that is necessary to operate the service.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6635.92,
+ "end": 6636.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 13480
+ },
+ {
+ "start": 6636.36,
+ "end": 6636.62,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 13481
+ },
+ {
+ "start": 6636.62,
+ "end": 6637.5,
+ "confidence": 0,
+ "word": "collects",
+ "punct": "collects",
+ "index": 13482
+ },
+ {
+ "start": 6637.5,
+ "end": 6637.6,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13483
+ },
+ {
+ "start": 6637.6,
+ "end": 6638,
+ "confidence": 0,
+ "word": "minimum",
+ "punct": "minimum",
+ "index": 13484
+ },
+ {
+ "start": 6638,
+ "end": 6638.3,
+ "confidence": 0,
+ "word": "amount",
+ "punct": "amount",
+ "index": 13485
+ },
+ {
+ "start": 6638.3,
+ "end": 6638.4,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13486
+ },
+ {
+ "start": 6638.4,
+ "end": 6638.96,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 13487
+ },
+ {
+ "start": 6638.96,
+ "end": 6639.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13488
+ },
+ {
+ "start": 6639.7,
+ "end": 6639.84,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13489
+ },
+ {
+ "start": 6639.84,
+ "end": 6640.36,
+ "confidence": 0,
+ "word": "necessary",
+ "punct": "necessary",
+ "index": 13490
+ },
+ {
+ "start": 6640.36,
+ "end": 6640.56,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13491
+ },
+ {
+ "start": 6640.56,
+ "end": 6641.24,
+ "confidence": 0,
+ "word": "operate",
+ "punct": "operate",
+ "index": 13492
+ },
+ {
+ "start": 6641.24,
+ "end": 6641.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13493
+ },
+ {
+ "start": 6641.38,
+ "end": 6641.7,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service.",
+ "index": 13494
+ }
+ ],
+ "start": 6635.92
+ }
+ },
+ {
+ "key": "c2qlp",
+ "text": "So, for example, the messages that people send is something that we collect in order to operate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6641.7,
+ "end": 6642.06,
+ "confidence": 0,
+ "word": "so,",
+ "punct": "So,",
+ "index": 13495
+ },
+ {
+ "start": 6642.06,
+ "end": 6642.24,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 13496
+ },
+ {
+ "start": 6642.24,
+ "end": 6642.56,
+ "confidence": 0,
+ "word": "example,",
+ "punct": "example,",
+ "index": 13497
+ },
+ {
+ "start": 6642.56,
+ "end": 6642.72,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13498
+ },
+ {
+ "start": 6642.72,
+ "end": 6643.14,
+ "confidence": 0,
+ "word": "messages",
+ "punct": "messages",
+ "index": 13499
+ },
+ {
+ "start": 6643.14,
+ "end": 6643.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13500
+ },
+ {
+ "start": 6643.3,
+ "end": 6643.52,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 13501
+ },
+ {
+ "start": 6643.52,
+ "end": 6643.86,
+ "confidence": 0,
+ "word": "send",
+ "punct": "send",
+ "index": 13502
+ },
+ {
+ "start": 6643.86,
+ "end": 6644.44,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13503
+ },
+ {
+ "start": 6644.44,
+ "end": 6644.72,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 13504
+ },
+ {
+ "start": 6644.72,
+ "end": 6644.84,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13505
+ },
+ {
+ "start": 6644.84,
+ "end": 6644.96,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 13506
+ },
+ {
+ "start": 6644.96,
+ "end": 6645.22,
+ "confidence": 0,
+ "word": "collect",
+ "punct": "collect",
+ "index": 13507
+ },
+ {
+ "start": 6645.22,
+ "end": 6645.34,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13508
+ },
+ {
+ "start": 6645.34,
+ "end": 6645.52,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 13509
+ },
+ {
+ "start": 6645.52,
+ "end": 6645.6,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13510
+ },
+ {
+ "start": 6645.6,
+ "end": 6645.88,
+ "confidence": 0,
+ "word": "operate",
+ "punct": "operate.",
+ "index": 13511
+ }
+ ],
+ "start": 6641.7
+ }
+ },
+ {
+ "key": "7ca0s",
+ "text": "The service but in general, that data is not going to be shared with third parties.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6645.88,
+ "end": 6646,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 13512
+ },
+ {
+ "start": 6646,
+ "end": 6646.36,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 13513
+ },
+ {
+ "start": 6646.36,
+ "end": 6647.43,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 13514
+ },
+ {
+ "start": 6647.43,
+ "end": 6647.95,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13515
+ },
+ {
+ "start": 6647.95,
+ "end": 6648.31,
+ "confidence": 0,
+ "word": "general,",
+ "punct": "general,",
+ "index": 13516
+ },
+ {
+ "start": 6648.31,
+ "end": 6648.59,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13517
+ },
+ {
+ "start": 6648.59,
+ "end": 6648.85,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 13518
+ },
+ {
+ "start": 6648.85,
+ "end": 6649.09,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13519
+ },
+ {
+ "start": 6649.09,
+ "end": 6649.41,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 13520
+ },
+ {
+ "start": 6649.41,
+ "end": 6649.71,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 13521
+ },
+ {
+ "start": 6649.71,
+ "end": 6649.79,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13522
+ },
+ {
+ "start": 6649.79,
+ "end": 6649.87,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 13523
+ },
+ {
+ "start": 6649.87,
+ "end": 6650.09,
+ "confidence": 0,
+ "word": "shared",
+ "punct": "shared",
+ "index": 13524
+ },
+ {
+ "start": 6650.09,
+ "end": 6650.23,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 13525
+ },
+ {
+ "start": 6650.23,
+ "end": 6650.45,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 13526
+ },
+ {
+ "start": 6650.45,
+ "end": 6650.81,
+ "confidence": 0,
+ "word": "parties",
+ "punct": "parties.",
+ "index": 13527
+ }
+ ],
+ "start": 6645.88
+ }
+ },
+ {
+ "key": "3lsrj",
+ "text": "It is not connected to the broader Facebook.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6650.81,
+ "end": 6651.49,
+ "confidence": 0,
+ "word": "it",
+ "punct": "It",
+ "index": 13528
+ },
+ {
+ "start": 6651.49,
+ "end": 6651.61,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13529
+ },
+ {
+ "start": 6651.61,
+ "end": 6651.87,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 13530
+ },
+ {
+ "start": 6651.87,
+ "end": 6652.35,
+ "confidence": 0,
+ "word": "connected",
+ "punct": "connected",
+ "index": 13531
+ },
+ {
+ "start": 6652.35,
+ "end": 6652.55,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13532
+ },
+ {
+ "start": 6652.55,
+ "end": 6653.39,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13533
+ },
+ {
+ "start": 6653.39,
+ "end": 6653.65,
+ "confidence": 0,
+ "word": "broader",
+ "punct": "broader",
+ "index": 13534
+ },
+ {
+ "start": 6653.65,
+ "end": 6654.07,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook.",
+ "index": 13535
+ }
+ ],
+ "start": 6650.81
+ }
+ },
+ {
+ "key": "bo4n3",
+ "text": "Excuse me as a lawyer, I picked up on the word in general, the phrase in general, it seems to suggest that in some circumstances, it will be shared with third parties.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6654.07,
+ "end": 6654.39,
+ "confidence": 0,
+ "word": "excuse",
+ "punct": "Excuse",
+ "index": 13536
+ },
+ {
+ "start": 6654.39,
+ "end": 6654.49,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 13537
+ },
+ {
+ "start": 6654.49,
+ "end": 6655.23,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 13538
+ },
+ {
+ "start": 6655.23,
+ "end": 6655.31,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13539
+ },
+ {
+ "start": 6655.31,
+ "end": 6655.67,
+ "confidence": 0,
+ "word": "lawyer,",
+ "punct": "lawyer,",
+ "index": 13540
+ },
+ {
+ "start": 6655.67,
+ "end": 6655.83,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13541
+ },
+ {
+ "start": 6655.83,
+ "end": 6656.05,
+ "confidence": 0,
+ "word": "picked",
+ "punct": "picked",
+ "index": 13542
+ },
+ {
+ "start": 6656.05,
+ "end": 6656.15,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 13543
+ },
+ {
+ "start": 6656.15,
+ "end": 6656.29,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 13544
+ },
+ {
+ "start": 6656.29,
+ "end": 6656.43,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13545
+ },
+ {
+ "start": 6656.43,
+ "end": 6656.65,
+ "confidence": 0,
+ "word": "word",
+ "punct": "word",
+ "index": 13546
+ },
+ {
+ "start": 6656.65,
+ "end": 6656.81,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13547
+ },
+ {
+ "start": 6656.81,
+ "end": 6657.29,
+ "confidence": 0,
+ "word": "general,",
+ "punct": "general,",
+ "index": 13548
+ },
+ {
+ "start": 6657.29,
+ "end": 6657.61,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13549
+ },
+ {
+ "start": 6657.61,
+ "end": 6657.93,
+ "confidence": 0,
+ "word": "phrase",
+ "punct": "phrase",
+ "index": 13550
+ },
+ {
+ "start": 6657.93,
+ "end": 6658.13,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13551
+ },
+ {
+ "start": 6658.13,
+ "end": 6658.94,
+ "confidence": 0,
+ "word": "general,",
+ "punct": "general,",
+ "index": 13552
+ },
+ {
+ "start": 6658.94,
+ "end": 6659.44,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 13553
+ },
+ {
+ "start": 6659.44,
+ "end": 6659.8,
+ "confidence": 0,
+ "word": "seems",
+ "punct": "seems",
+ "index": 13554
+ },
+ {
+ "start": 6659.8,
+ "end": 6659.92,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13555
+ },
+ {
+ "start": 6659.92,
+ "end": 6660.28,
+ "confidence": 0,
+ "word": "suggest",
+ "punct": "suggest",
+ "index": 13556
+ },
+ {
+ "start": 6660.28,
+ "end": 6660.46,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13557
+ },
+ {
+ "start": 6660.46,
+ "end": 6660.56,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13558
+ },
+ {
+ "start": 6660.56,
+ "end": 6660.78,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 13559
+ },
+ {
+ "start": 6660.78,
+ "end": 6661.48,
+ "confidence": 0,
+ "word": "circumstances,",
+ "punct": "circumstances,",
+ "index": 13560
+ },
+ {
+ "start": 6661.48,
+ "end": 6661.62,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 13561
+ },
+ {
+ "start": 6661.62,
+ "end": 6661.94,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 13562
+ },
+ {
+ "start": 6661.94,
+ "end": 6662.08,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 13563
+ },
+ {
+ "start": 6662.08,
+ "end": 6662.4,
+ "confidence": 0,
+ "word": "shared",
+ "punct": "shared",
+ "index": 13564
+ },
+ {
+ "start": 6662.4,
+ "end": 6662.56,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 13565
+ },
+ {
+ "start": 6662.56,
+ "end": 6662.82,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 13566
+ },
+ {
+ "start": 6662.82,
+ "end": 6663.14,
+ "confidence": 0,
+ "word": "parties",
+ "punct": "parties.",
+ "index": 13567
+ }
+ ],
+ "start": 6654.07
+ }
+ },
+ {
+ "key": "3qpo1",
+ "text": "No, it will not alright, would you be open to the idea that someone having reached at old age having grown up with Messenger?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6663.14,
+ "end": 6663.48,
+ "confidence": 0,
+ "word": "no,",
+ "punct": "No,",
+ "index": 13568
+ },
+ {
+ "start": 6663.48,
+ "end": 6664.3,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 13569
+ },
+ {
+ "start": 6664.3,
+ "end": 6664.48,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 13570
+ },
+ {
+ "start": 6664.48,
+ "end": 6664.68,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 13571
+ },
+ {
+ "start": 6664.68,
+ "end": 6666.02,
+ "confidence": 0,
+ "word": "alright,",
+ "punct": "alright,",
+ "index": 13572
+ },
+ {
+ "start": 6666.02,
+ "end": 6667.08,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 13573
+ },
+ {
+ "start": 6667.08,
+ "end": 6667.22,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 13574
+ },
+ {
+ "start": 6667.22,
+ "end": 6667.34,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 13575
+ },
+ {
+ "start": 6667.34,
+ "end": 6667.76,
+ "confidence": 0,
+ "word": "open",
+ "punct": "open",
+ "index": 13576
+ },
+ {
+ "start": 6667.76,
+ "end": 6667.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13577
+ },
+ {
+ "start": 6667.9,
+ "end": 6668.02,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13578
+ },
+ {
+ "start": 6668.02,
+ "end": 6668.38,
+ "confidence": 0,
+ "word": "idea",
+ "punct": "idea",
+ "index": 13579
+ },
+ {
+ "start": 6668.38,
+ "end": 6668.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13580
+ },
+ {
+ "start": 6668.7,
+ "end": 6669.22,
+ "confidence": 0,
+ "word": "someone",
+ "punct": "someone",
+ "index": 13581
+ },
+ {
+ "start": 6669.22,
+ "end": 6669.54,
+ "confidence": 0,
+ "word": "having",
+ "punct": "having",
+ "index": 13582
+ },
+ {
+ "start": 6669.54,
+ "end": 6669.8,
+ "confidence": 0,
+ "word": "reached",
+ "punct": "reached",
+ "index": 13583
+ },
+ {
+ "start": 6669.8,
+ "end": 6669.98,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 13584
+ },
+ {
+ "start": 6669.98,
+ "end": 6670.2,
+ "confidence": 0,
+ "word": "old",
+ "punct": "old",
+ "index": 13585
+ },
+ {
+ "start": 6670.2,
+ "end": 6670.58,
+ "confidence": 0,
+ "word": "age",
+ "punct": "age",
+ "index": 13586
+ },
+ {
+ "start": 6670.58,
+ "end": 6670.88,
+ "confidence": 0,
+ "word": "having",
+ "punct": "having",
+ "index": 13587
+ },
+ {
+ "start": 6670.88,
+ "end": 6671.14,
+ "confidence": 0,
+ "word": "grown",
+ "punct": "grown",
+ "index": 13588
+ },
+ {
+ "start": 6671.14,
+ "end": 6671.26,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 13589
+ },
+ {
+ "start": 6671.26,
+ "end": 6671.42,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 13590
+ },
+ {
+ "start": 6671.42,
+ "end": 6671.96,
+ "confidence": 0,
+ "word": "messenger",
+ "punct": "Messenger?",
+ "index": 13591
+ }
+ ],
+ "start": 6663.14
+ }
+ },
+ {
+ "key": "c13u9",
+ "text": "Kids should be allowed to delete the data that you've collected, Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6671.96,
+ "end": 6672.26,
+ "confidence": 0,
+ "word": "kids",
+ "punct": "Kids",
+ "index": 13592
+ },
+ {
+ "start": 6672.26,
+ "end": 6672.92,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 13593
+ },
+ {
+ "start": 6672.92,
+ "end": 6673.02,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 13594
+ },
+ {
+ "start": 6673.02,
+ "end": 6673.34,
+ "confidence": 0,
+ "word": "allowed",
+ "punct": "allowed",
+ "index": 13595
+ },
+ {
+ "start": 6673.34,
+ "end": 6673.68,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13596
+ },
+ {
+ "start": 6673.68,
+ "end": 6674.22,
+ "confidence": 0,
+ "word": "delete",
+ "punct": "delete",
+ "index": 13597
+ },
+ {
+ "start": 6674.22,
+ "end": 6674.38,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13598
+ },
+ {
+ "start": 6674.38,
+ "end": 6674.66,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 13599
+ },
+ {
+ "start": 6674.66,
+ "end": 6674.82,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13600
+ },
+ {
+ "start": 6674.82,
+ "end": 6675.06,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 13601
+ },
+ {
+ "start": 6675.06,
+ "end": 6677.5,
+ "confidence": 0,
+ "word": "collected,",
+ "punct": "collected,",
+ "index": 13602
+ },
+ {
+ "start": 6677.5,
+ "end": 6678.46,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 13603
+ }
+ ],
+ "start": 6671.96
+ }
+ },
+ {
+ "key": "fnbf0",
+ "text": "Yes, as a matter of fact, when you become 13 which is our legal limit or limited.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6678.46,
+ "end": 6678.76,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 13604
+ },
+ {
+ "start": 6678.76,
+ "end": 6679.24,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 13605
+ },
+ {
+ "start": 6679.24,
+ "end": 6679.3,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13606
+ },
+ {
+ "start": 6679.3,
+ "end": 6679.54,
+ "confidence": 0,
+ "word": "matter",
+ "punct": "matter",
+ "index": 13607
+ },
+ {
+ "start": 6679.54,
+ "end": 6679.62,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13608
+ },
+ {
+ "start": 6679.62,
+ "end": 6679.88,
+ "confidence": 0,
+ "word": "fact,",
+ "punct": "fact,",
+ "index": 13609
+ },
+ {
+ "start": 6679.88,
+ "end": 6680.68,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 13610
+ },
+ {
+ "start": 6680.68,
+ "end": 6680.8,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 13611
+ },
+ {
+ "start": 6680.8,
+ "end": 6681.26,
+ "confidence": 0,
+ "word": "become",
+ "punct": "become",
+ "index": 13612
+ },
+ {
+ "start": 6681.26,
+ "end": 6682.12,
+ "confidence": 0,
+ "word": "13",
+ "punct": "13",
+ "index": 13613
+ },
+ {
+ "start": 6682.12,
+ "end": 6682.38,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 13614
+ },
+ {
+ "start": 6682.38,
+ "end": 6682.5,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13615
+ },
+ {
+ "start": 6682.5,
+ "end": 6682.74,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 13616
+ },
+ {
+ "start": 6682.74,
+ "end": 6683.14,
+ "confidence": 0,
+ "word": "legal",
+ "punct": "legal",
+ "index": 13617
+ },
+ {
+ "start": 6683.14,
+ "end": 6683.42,
+ "confidence": 0,
+ "word": "limit",
+ "punct": "limit",
+ "index": 13618
+ },
+ {
+ "start": 6683.42,
+ "end": 6683.68,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13619
+ },
+ {
+ "start": 6683.68,
+ "end": 6684.04,
+ "confidence": 0,
+ "word": "limited",
+ "punct": "limited.",
+ "index": 13620
+ }
+ ],
+ "start": 6678.46
+ }
+ },
+ {
+ "key": "4sedq",
+ "text": "We don't allow people under the age of 13 to use Facebook, you don't automatically go from having a Messenger.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6684.04,
+ "end": 6684.38,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 13621
+ },
+ {
+ "start": 6684.38,
+ "end": 6684.54,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 13622
+ },
+ {
+ "start": 6684.54,
+ "end": 6684.72,
+ "confidence": 0,
+ "word": "allow",
+ "punct": "allow",
+ "index": 13623
+ },
+ {
+ "start": 6684.72,
+ "end": 6684.92,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 13624
+ },
+ {
+ "start": 6684.92,
+ "end": 6685.12,
+ "confidence": 0,
+ "word": "under",
+ "punct": "under",
+ "index": 13625
+ },
+ {
+ "start": 6685.12,
+ "end": 6685.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13626
+ },
+ {
+ "start": 6685.24,
+ "end": 6685.34,
+ "confidence": 0,
+ "word": "age",
+ "punct": "age",
+ "index": 13627
+ },
+ {
+ "start": 6685.34,
+ "end": 6685.42,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13628
+ },
+ {
+ "start": 6685.42,
+ "end": 6685.74,
+ "confidence": 0,
+ "word": "13",
+ "punct": "13",
+ "index": 13629
+ },
+ {
+ "start": 6685.74,
+ "end": 6685.84,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13630
+ },
+ {
+ "start": 6685.84,
+ "end": 6686,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 13631
+ },
+ {
+ "start": 6686,
+ "end": 6687.28,
+ "confidence": 0,
+ "word": "facebook,",
+ "punct": "Facebook,",
+ "index": 13632
+ },
+ {
+ "start": 6687.28,
+ "end": 6688.24,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 13633
+ },
+ {
+ "start": 6688.24,
+ "end": 6688.56,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 13634
+ },
+ {
+ "start": 6688.56,
+ "end": 6689.2,
+ "confidence": 0,
+ "word": "automatically",
+ "punct": "automatically",
+ "index": 13635
+ },
+ {
+ "start": 6689.2,
+ "end": 6689.32,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 13636
+ },
+ {
+ "start": 6689.32,
+ "end": 6689.56,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 13637
+ },
+ {
+ "start": 6689.56,
+ "end": 6689.82,
+ "confidence": 0,
+ "word": "having",
+ "punct": "having",
+ "index": 13638
+ },
+ {
+ "start": 6689.82,
+ "end": 6689.86,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13639
+ },
+ {
+ "start": 6689.86,
+ "end": 6690.26,
+ "confidence": 0,
+ "word": "messenger",
+ "punct": "Messenger.",
+ "index": 13640
+ }
+ ],
+ "start": 6684.04
+ }
+ },
+ {
+ "key": "4iipt",
+ "text": "Kids account to a Facebook account.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6690.26,
+ "end": 6690.5,
+ "confidence": 0,
+ "word": "kids",
+ "punct": "Kids",
+ "index": 13641
+ },
+ {
+ "start": 6690.5,
+ "end": 6691.26,
+ "confidence": 0,
+ "word": "account",
+ "punct": "account",
+ "index": 13642
+ },
+ {
+ "start": 6691.26,
+ "end": 6691.44,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13643
+ },
+ {
+ "start": 6691.44,
+ "end": 6691.5,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13644
+ },
+ {
+ "start": 6691.5,
+ "end": 6691.9,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 13645
+ },
+ {
+ "start": 6691.9,
+ "end": 6692.18,
+ "confidence": 0,
+ "word": "account",
+ "punct": "account.",
+ "index": 13646
+ }
+ ],
+ "start": 6690.26
+ }
+ },
+ {
+ "key": "6ckdu",
+ "text": "You have to start over and get a Facebook account.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6692.18,
+ "end": 6692.32,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 13647
+ },
+ {
+ "start": 6692.32,
+ "end": 6692.46,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 13648
+ },
+ {
+ "start": 6692.46,
+ "end": 6692.54,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13649
+ },
+ {
+ "start": 6692.54,
+ "end": 6692.78,
+ "confidence": 0,
+ "word": "start",
+ "punct": "start",
+ "index": 13650
+ },
+ {
+ "start": 6692.78,
+ "end": 6693.06,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 13651
+ },
+ {
+ "start": 6693.06,
+ "end": 6693.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13652
+ },
+ {
+ "start": 6693.26,
+ "end": 6693.4,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 13653
+ },
+ {
+ "start": 6693.4,
+ "end": 6693.46,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13654
+ },
+ {
+ "start": 6693.46,
+ "end": 6693.84,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 13655
+ },
+ {
+ "start": 6693.84,
+ "end": 6694.14,
+ "confidence": 0,
+ "word": "account",
+ "punct": "account.",
+ "index": 13656
+ }
+ ],
+ "start": 6692.18
+ }
+ },
+ {
+ "key": "9vpef",
+ "text": "So so I think it's a good idea to consider making sure that all that information is deleted.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6694.14,
+ "end": 6694.94,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 13657
+ },
+ {
+ "start": 6694.94,
+ "end": 6695.84,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 13658
+ },
+ {
+ "start": 6695.84,
+ "end": 6695.88,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13659
+ },
+ {
+ "start": 6695.88,
+ "end": 6696.02,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 13660
+ },
+ {
+ "start": 6696.02,
+ "end": 6696.16,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 13661
+ },
+ {
+ "start": 6696.16,
+ "end": 6696.48,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13662
+ },
+ {
+ "start": 6696.48,
+ "end": 6696.62,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good",
+ "index": 13663
+ },
+ {
+ "start": 6696.62,
+ "end": 6696.8,
+ "confidence": 0,
+ "word": "idea",
+ "punct": "idea",
+ "index": 13664
+ },
+ {
+ "start": 6696.8,
+ "end": 6697.02,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13665
+ },
+ {
+ "start": 6697.02,
+ "end": 6697.36,
+ "confidence": 0,
+ "word": "consider",
+ "punct": "consider",
+ "index": 13666
+ },
+ {
+ "start": 6697.36,
+ "end": 6697.68,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 13667
+ },
+ {
+ "start": 6697.68,
+ "end": 6697.86,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 13668
+ },
+ {
+ "start": 6697.86,
+ "end": 6698,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13669
+ },
+ {
+ "start": 6698,
+ "end": 6698.12,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 13670
+ },
+ {
+ "start": 6698.12,
+ "end": 6698.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13671
+ },
+ {
+ "start": 6698.3,
+ "end": 6698.72,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 13672
+ },
+ {
+ "start": 6698.72,
+ "end": 6698.9,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13673
+ },
+ {
+ "start": 6698.9,
+ "end": 6699.22,
+ "confidence": 0,
+ "word": "deleted",
+ "punct": "deleted.",
+ "index": 13674
+ }
+ ],
+ "start": 6694.14
+ }
+ },
+ {
+ "key": "b4q02",
+ "text": "And in general, people are going to be starting over when they get their their Facebook or other accounts.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6699.22,
+ "end": 6699.36,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 13675
+ },
+ {
+ "start": 6699.36,
+ "end": 6699.5,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13676
+ },
+ {
+ "start": 6699.5,
+ "end": 6699.86,
+ "confidence": 0,
+ "word": "general,",
+ "punct": "general,",
+ "index": 13677
+ },
+ {
+ "start": 6699.86,
+ "end": 6700.06,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 13678
+ },
+ {
+ "start": 6700.06,
+ "end": 6700.18,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 13679
+ },
+ {
+ "start": 6700.18,
+ "end": 6700.32,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 13680
+ },
+ {
+ "start": 6700.32,
+ "end": 6700.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13681
+ },
+ {
+ "start": 6700.38,
+ "end": 6700.44,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 13682
+ },
+ {
+ "start": 6700.44,
+ "end": 6700.72,
+ "confidence": 0,
+ "word": "starting",
+ "punct": "starting",
+ "index": 13683
+ },
+ {
+ "start": 6700.72,
+ "end": 6700.94,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 13684
+ },
+ {
+ "start": 6700.94,
+ "end": 6701.1,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 13685
+ },
+ {
+ "start": 6701.1,
+ "end": 6701.24,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 13686
+ },
+ {
+ "start": 6701.24,
+ "end": 6701.36,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 13687
+ },
+ {
+ "start": 6701.36,
+ "end": 6701.6,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 13688
+ },
+ {
+ "start": 6701.6,
+ "end": 6702.02,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 13689
+ },
+ {
+ "start": 6702.02,
+ "end": 6702.4,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 13690
+ },
+ {
+ "start": 6702.4,
+ "end": 6702.48,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13691
+ },
+ {
+ "start": 6702.48,
+ "end": 6702.7,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 13692
+ },
+ {
+ "start": 6702.7,
+ "end": 6703,
+ "confidence": 0,
+ "word": "accounts",
+ "punct": "accounts.",
+ "index": 13693
+ }
+ ],
+ "start": 6699.22
+ }
+ },
+ {
+ "key": "ume8",
+ "text": "A close because they just have a few seconds.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6703,
+ "end": 6703.42,
+ "confidence": 0,
+ "word": "a",
+ "punct": "A",
+ "index": 13694
+ },
+ {
+ "start": 6703.42,
+ "end": 6703.82,
+ "confidence": 0,
+ "word": "close",
+ "punct": "close",
+ "index": 13695
+ },
+ {
+ "start": 6703.82,
+ "end": 6704.06,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 13696
+ },
+ {
+ "start": 6704.06,
+ "end": 6704.22,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 13697
+ },
+ {
+ "start": 6704.22,
+ "end": 6704.36,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 13698
+ },
+ {
+ "start": 6704.36,
+ "end": 6704.54,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 13699
+ },
+ {
+ "start": 6704.54,
+ "end": 6704.6,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13700
+ },
+ {
+ "start": 6704.6,
+ "end": 6704.8,
+ "confidence": 0,
+ "word": "few",
+ "punct": "few",
+ "index": 13701
+ },
+ {
+ "start": 6704.8,
+ "end": 6705.16,
+ "confidence": 0,
+ "word": "seconds",
+ "punct": "seconds.",
+ "index": 13702
+ }
+ ],
+ "start": 6703
+ }
+ },
+ {
+ "key": "78kv3",
+ "text": "Illinois has a biometric information, Privacy Act.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6705.16,
+ "end": 6705.62,
+ "confidence": 0,
+ "word": "illinois",
+ "punct": "Illinois",
+ "index": 13703
+ },
+ {
+ "start": 6705.62,
+ "end": 6705.78,
+ "confidence": 0,
+ "word": "has",
+ "punct": "has",
+ "index": 13704
+ },
+ {
+ "start": 6705.78,
+ "end": 6705.86,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13705
+ },
+ {
+ "start": 6705.86,
+ "end": 6706.84,
+ "confidence": 0,
+ "word": "biometric",
+ "punct": "biometric",
+ "index": 13706
+ },
+ {
+ "start": 6706.84,
+ "end": 6707.52,
+ "confidence": 0,
+ "word": "information,",
+ "punct": "information,",
+ "index": 13707
+ },
+ {
+ "start": 6707.52,
+ "end": 6708.14,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "Privacy",
+ "index": 13708
+ },
+ {
+ "start": 6708.14,
+ "end": 6708.42,
+ "confidence": 0,
+ "word": "act",
+ "punct": "Act.",
+ "index": 13709
+ }
+ ],
+ "start": 6705.16
+ }
+ },
+ {
+ "key": "cllet",
+ "text": "Our state does, which is to regulate the commercial use of facial, voice finger and Iris scans and the like we're now in a fulsome debate on that and I'm afraid.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6708.42,
+ "end": 6709.28,
+ "confidence": 0,
+ "word": "our",
+ "punct": "Our",
+ "index": 13710
+ },
+ {
+ "start": 6709.28,
+ "end": 6709.6,
+ "confidence": 0,
+ "word": "state",
+ "punct": "state",
+ "index": 13711
+ },
+ {
+ "start": 6709.6,
+ "end": 6710.24,
+ "confidence": 0,
+ "word": "does,",
+ "punct": "does,",
+ "index": 13712
+ },
+ {
+ "start": 6710.24,
+ "end": 6710.8,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 13713
+ },
+ {
+ "start": 6710.8,
+ "end": 6710.94,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13714
+ },
+ {
+ "start": 6710.94,
+ "end": 6711.3,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13715
+ },
+ {
+ "start": 6711.3,
+ "end": 6711.8,
+ "confidence": 0,
+ "word": "regulate",
+ "punct": "regulate",
+ "index": 13716
+ },
+ {
+ "start": 6711.8,
+ "end": 6712.48,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13717
+ },
+ {
+ "start": 6712.48,
+ "end": 6712.96,
+ "confidence": 0,
+ "word": "commercial",
+ "punct": "commercial",
+ "index": 13718
+ },
+ {
+ "start": 6712.96,
+ "end": 6713.18,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 13719
+ },
+ {
+ "start": 6713.18,
+ "end": 6713.3,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13720
+ },
+ {
+ "start": 6713.3,
+ "end": 6713.8,
+ "confidence": 0,
+ "word": "facial,",
+ "punct": "facial,",
+ "index": 13721
+ },
+ {
+ "start": 6713.8,
+ "end": 6714.2,
+ "confidence": 0,
+ "word": "voice",
+ "punct": "voice",
+ "index": 13722
+ },
+ {
+ "start": 6714.2,
+ "end": 6714.68,
+ "confidence": 0,
+ "word": "finger",
+ "punct": "finger",
+ "index": 13723
+ },
+ {
+ "start": 6714.68,
+ "end": 6714.82,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13724
+ },
+ {
+ "start": 6714.82,
+ "end": 6715.22,
+ "confidence": 0,
+ "word": "iris",
+ "punct": "Iris",
+ "index": 13725
+ },
+ {
+ "start": 6715.22,
+ "end": 6715.64,
+ "confidence": 0,
+ "word": "scans",
+ "punct": "scans",
+ "index": 13726
+ },
+ {
+ "start": 6715.64,
+ "end": 6715.78,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13727
+ },
+ {
+ "start": 6715.78,
+ "end": 6715.9,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13728
+ },
+ {
+ "start": 6715.9,
+ "end": 6716.16,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 13729
+ },
+ {
+ "start": 6716.16,
+ "end": 6717.04,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 13730
+ },
+ {
+ "start": 6717.04,
+ "end": 6717.22,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 13731
+ },
+ {
+ "start": 6717.22,
+ "end": 6717.34,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13732
+ },
+ {
+ "start": 6717.34,
+ "end": 6717.4,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13733
+ },
+ {
+ "start": 6717.4,
+ "end": 6717.8,
+ "confidence": 0,
+ "word": "fulsome",
+ "punct": "fulsome",
+ "index": 13734
+ },
+ {
+ "start": 6717.8,
+ "end": 6718.1,
+ "confidence": 0,
+ "word": "debate",
+ "punct": "debate",
+ "index": 13735
+ },
+ {
+ "start": 6718.1,
+ "end": 6718.24,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 13736
+ },
+ {
+ "start": 6718.24,
+ "end": 6718.48,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13737
+ },
+ {
+ "start": 6718.48,
+ "end": 6718.66,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13738
+ },
+ {
+ "start": 6718.66,
+ "end": 6718.8,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 13739
+ },
+ {
+ "start": 6718.8,
+ "end": 6719.16,
+ "confidence": 0,
+ "word": "afraid",
+ "punct": "afraid.",
+ "index": 13740
+ }
+ ],
+ "start": 6708.42
+ }
+ },
+ {
+ "key": "cp686",
+ "text": "Facebook is the position trying to carve out exceptions to that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6719.16,
+ "end": 6720.12,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 13741
+ },
+ {
+ "start": 6720.12,
+ "end": 6720.44,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13742
+ },
+ {
+ "start": 6720.44,
+ "end": 6720.8,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13743
+ },
+ {
+ "start": 6720.8,
+ "end": 6721.22,
+ "confidence": 0,
+ "word": "position",
+ "punct": "position",
+ "index": 13744
+ },
+ {
+ "start": 6721.22,
+ "end": 6721.5,
+ "confidence": 0,
+ "word": "trying",
+ "punct": "trying",
+ "index": 13745
+ },
+ {
+ "start": 6721.5,
+ "end": 6721.6,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13746
+ },
+ {
+ "start": 6721.6,
+ "end": 6721.86,
+ "confidence": 0,
+ "word": "carve",
+ "punct": "carve",
+ "index": 13747
+ },
+ {
+ "start": 6721.86,
+ "end": 6722.02,
+ "confidence": 0,
+ "word": "out",
+ "punct": "out",
+ "index": 13748
+ },
+ {
+ "start": 6722.02,
+ "end": 6722.64,
+ "confidence": 0,
+ "word": "exceptions",
+ "punct": "exceptions",
+ "index": 13749
+ },
+ {
+ "start": 6722.64,
+ "end": 6722.82,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13750
+ },
+ {
+ "start": 6722.82,
+ "end": 6723.06,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 13751
+ }
+ ],
+ "start": 6719.16
+ }
+ },
+ {
+ "key": "5o1ng",
+ "text": "I hope you'll fill me in on how that is consistent with protecting privacy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6723.06,
+ "end": 6723.64,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13752
+ },
+ {
+ "start": 6723.64,
+ "end": 6723.82,
+ "confidence": 0,
+ "word": "hope",
+ "punct": "hope",
+ "index": 13753
+ },
+ {
+ "start": 6723.82,
+ "end": 6724.04,
+ "confidence": 0,
+ "word": "you'll",
+ "punct": "you'll",
+ "index": 13754
+ },
+ {
+ "start": 6724.04,
+ "end": 6724.28,
+ "confidence": 0,
+ "word": "fill",
+ "punct": "fill",
+ "index": 13755
+ },
+ {
+ "start": 6724.28,
+ "end": 6724.38,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 13756
+ },
+ {
+ "start": 6724.38,
+ "end": 6724.56,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13757
+ },
+ {
+ "start": 6724.56,
+ "end": 6724.74,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 13758
+ },
+ {
+ "start": 6724.74,
+ "end": 6724.92,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 13759
+ },
+ {
+ "start": 6724.92,
+ "end": 6725.08,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13760
+ },
+ {
+ "start": 6725.08,
+ "end": 6725.22,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13761
+ },
+ {
+ "start": 6725.22,
+ "end": 6725.76,
+ "confidence": 0,
+ "word": "consistent",
+ "punct": "consistent",
+ "index": 13762
+ },
+ {
+ "start": 6725.76,
+ "end": 6725.92,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 13763
+ },
+ {
+ "start": 6725.92,
+ "end": 6726.44,
+ "confidence": 0,
+ "word": "protecting",
+ "punct": "protecting",
+ "index": 13764
+ },
+ {
+ "start": 6726.44,
+ "end": 6727.34,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy.",
+ "index": 13765
+ }
+ ],
+ "start": 6723.06
+ }
+ },
+ {
+ "key": "309td",
+ "text": "Thank you, thank you.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6727.34,
+ "end": 6728.3,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 13766
+ },
+ {
+ "start": 6728.3,
+ "end": 6728.48,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 13767
+ },
+ {
+ "start": 6728.48,
+ "end": 6728.86,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 13768
+ },
+ {
+ "start": 6728.86,
+ "end": 6728.96,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you.",
+ "index": 13769
+ }
+ ],
+ "start": 6727.34
+ }
+ },
+ {
+ "key": "d0emv",
+ "text": "Senator Durbin center corny.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6728.96,
+ "end": 6729.2,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 13770
+ },
+ {
+ "start": 6729.2,
+ "end": 6729.5,
+ "confidence": 0,
+ "word": "durbin",
+ "punct": "Durbin",
+ "index": 13771
+ },
+ {
+ "start": 6729.5,
+ "end": 6729.7,
+ "confidence": 0,
+ "word": "center",
+ "punct": "center",
+ "index": 13772
+ },
+ {
+ "start": 6729.7,
+ "end": 6730.64,
+ "confidence": 0,
+ "word": "corny",
+ "punct": "corny.",
+ "index": 13773
+ }
+ ],
+ "start": 6728.96
+ }
+ },
+ {
+ "key": "86k5u",
+ "text": "Thank you, Mr Zuckerberg for being here.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6730.64,
+ "end": 6731.44,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 13774
+ },
+ {
+ "start": 6731.44,
+ "end": 6731.56,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 13775
+ },
+ {
+ "start": 6731.56,
+ "end": 6731.82,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 13776
+ },
+ {
+ "start": 6731.82,
+ "end": 6732.3,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg",
+ "index": 13777
+ },
+ {
+ "start": 6732.3,
+ "end": 6732.52,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 13778
+ },
+ {
+ "start": 6732.52,
+ "end": 6732.76,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 13779
+ },
+ {
+ "start": 6732.76,
+ "end": 6733.96,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here.",
+ "index": 13780
+ }
+ ],
+ "start": 6730.64
+ }
+ },
+ {
+ "key": "emdmt",
+ "text": "Up until 2,014 the mantra or motto.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6733.96,
+ "end": 6734.92,
+ "confidence": 0,
+ "word": "up",
+ "punct": "Up",
+ "index": 13781
+ },
+ {
+ "start": 6734.92,
+ "end": 6735.22,
+ "confidence": 0,
+ "word": "until",
+ "punct": "until",
+ "index": 13782
+ },
+ {
+ "start": 6735.22,
+ "end": 6737.6,
+ "confidence": 0,
+ "word": "2,014",
+ "punct": "2,014",
+ "index": 13783
+ },
+ {
+ "start": 6737.6,
+ "end": 6738.72,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13784
+ },
+ {
+ "start": 6738.72,
+ "end": 6739.24,
+ "confidence": 0,
+ "word": "mantra",
+ "punct": "mantra",
+ "index": 13785
+ },
+ {
+ "start": 6739.24,
+ "end": 6739.42,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13786
+ },
+ {
+ "start": 6739.42,
+ "end": 6739.92,
+ "confidence": 0,
+ "word": "motto",
+ "punct": "motto.",
+ "index": 13787
+ }
+ ],
+ "start": 6733.96
+ }
+ },
+ {
+ "key": "5ekua",
+ "text": "A Facebook was move fast and break things, is that correct?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6739.92,
+ "end": 6740.58,
+ "confidence": 0,
+ "word": "a",
+ "punct": "A",
+ "index": 13788
+ },
+ {
+ "start": 6740.58,
+ "end": 6741.1,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 13789
+ },
+ {
+ "start": 6741.1,
+ "end": 6741.32,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 13790
+ },
+ {
+ "start": 6741.32,
+ "end": 6741.7,
+ "confidence": 0,
+ "word": "move",
+ "punct": "move",
+ "index": 13791
+ },
+ {
+ "start": 6741.7,
+ "end": 6742.14,
+ "confidence": 0,
+ "word": "fast",
+ "punct": "fast",
+ "index": 13792
+ },
+ {
+ "start": 6742.14,
+ "end": 6742.32,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13793
+ },
+ {
+ "start": 6742.32,
+ "end": 6742.64,
+ "confidence": 0,
+ "word": "break",
+ "punct": "break",
+ "index": 13794
+ },
+ {
+ "start": 6742.64,
+ "end": 6743,
+ "confidence": 0,
+ "word": "things,",
+ "punct": "things,",
+ "index": 13795
+ },
+ {
+ "start": 6743,
+ "end": 6743.78,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13796
+ },
+ {
+ "start": 6743.78,
+ "end": 6743.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13797
+ },
+ {
+ "start": 6743.96,
+ "end": 6744.86,
+ "confidence": 0,
+ "word": "correct",
+ "punct": "correct?",
+ "index": 13798
+ }
+ ],
+ "start": 6739.92
+ }
+ },
+ {
+ "key": "fce9i",
+ "text": "I don't know when we changed it, but the mantra is currently move fast with stable infrastructure, which is a much less sexy.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6744.86,
+ "end": 6744.9,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13799
+ },
+ {
+ "start": 6744.9,
+ "end": 6745.76,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 13800
+ },
+ {
+ "start": 6745.76,
+ "end": 6745.88,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 13801
+ },
+ {
+ "start": 6745.88,
+ "end": 6746.02,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 13802
+ },
+ {
+ "start": 6746.02,
+ "end": 6746.14,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 13803
+ },
+ {
+ "start": 6746.14,
+ "end": 6746.5,
+ "confidence": 0,
+ "word": "changed",
+ "punct": "changed",
+ "index": 13804
+ },
+ {
+ "start": 6746.5,
+ "end": 6746.66,
+ "confidence": 0,
+ "word": "it,",
+ "punct": "it,",
+ "index": 13805
+ },
+ {
+ "start": 6746.66,
+ "end": 6747.46,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 13806
+ },
+ {
+ "start": 6747.46,
+ "end": 6747.62,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13807
+ },
+ {
+ "start": 6747.62,
+ "end": 6748,
+ "confidence": 0,
+ "word": "mantra",
+ "punct": "mantra",
+ "index": 13808
+ },
+ {
+ "start": 6748,
+ "end": 6748.14,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13809
+ },
+ {
+ "start": 6748.14,
+ "end": 6748.6,
+ "confidence": 0,
+ "word": "currently",
+ "punct": "currently",
+ "index": 13810
+ },
+ {
+ "start": 6748.6,
+ "end": 6748.92,
+ "confidence": 0,
+ "word": "move",
+ "punct": "move",
+ "index": 13811
+ },
+ {
+ "start": 6748.92,
+ "end": 6749.28,
+ "confidence": 0,
+ "word": "fast",
+ "punct": "fast",
+ "index": 13812
+ },
+ {
+ "start": 6749.28,
+ "end": 6749.46,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 13813
+ },
+ {
+ "start": 6749.46,
+ "end": 6749.9,
+ "confidence": 0,
+ "word": "stable",
+ "punct": "stable",
+ "index": 13814
+ },
+ {
+ "start": 6749.9,
+ "end": 6750.66,
+ "confidence": 0,
+ "word": "infrastructure,",
+ "punct": "infrastructure,",
+ "index": 13815
+ },
+ {
+ "start": 6750.66,
+ "end": 6751.1,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 13816
+ },
+ {
+ "start": 6751.1,
+ "end": 6751.26,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13817
+ },
+ {
+ "start": 6751.26,
+ "end": 6751.42,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13818
+ },
+ {
+ "start": 6751.42,
+ "end": 6751.76,
+ "confidence": 0,
+ "word": "much",
+ "punct": "much",
+ "index": 13819
+ },
+ {
+ "start": 6751.76,
+ "end": 6752.06,
+ "confidence": 0,
+ "word": "less",
+ "punct": "less",
+ "index": 13820
+ },
+ {
+ "start": 6752.06,
+ "end": 6752.6,
+ "confidence": 0,
+ "word": "sexy",
+ "punct": "sexy.",
+ "index": 13821
+ }
+ ],
+ "start": 6744.86
+ }
+ },
+ {
+ "key": "cci9g",
+ "text": "Mantra sounds much more boring.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6752.6,
+ "end": 6753.04,
+ "confidence": 0,
+ "word": "mantra",
+ "punct": "Mantra",
+ "index": 13822
+ },
+ {
+ "start": 6753.04,
+ "end": 6753.54,
+ "confidence": 0,
+ "word": "sounds",
+ "punct": "sounds",
+ "index": 13823
+ },
+ {
+ "start": 6753.54,
+ "end": 6753.82,
+ "confidence": 0,
+ "word": "much",
+ "punct": "much",
+ "index": 13824
+ },
+ {
+ "start": 6753.82,
+ "end": 6754.08,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 13825
+ },
+ {
+ "start": 6754.08,
+ "end": 6754.48,
+ "confidence": 0,
+ "word": "boring",
+ "punct": "boring.",
+ "index": 13826
+ }
+ ],
+ "start": 6752.6
+ }
+ },
+ {
+ "key": "f36ib",
+ "text": "But my question is during the time it was Facebook, mantra or motto to move fast and break things.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6754.48,
+ "end": 6754.66,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 13827
+ },
+ {
+ "start": 6754.66,
+ "end": 6755.14,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 13828
+ },
+ {
+ "start": 6755.14,
+ "end": 6755.56,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question",
+ "index": 13829
+ },
+ {
+ "start": 6755.56,
+ "end": 6755.76,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13830
+ },
+ {
+ "start": 6755.76,
+ "end": 6756.38,
+ "confidence": 0,
+ "word": "during",
+ "punct": "during",
+ "index": 13831
+ },
+ {
+ "start": 6756.38,
+ "end": 6756.48,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13832
+ },
+ {
+ "start": 6756.48,
+ "end": 6756.76,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 13833
+ },
+ {
+ "start": 6756.76,
+ "end": 6757.08,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 13834
+ },
+ {
+ "start": 6757.08,
+ "end": 6757.34,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 13835
+ },
+ {
+ "start": 6757.34,
+ "end": 6758.04,
+ "confidence": 0,
+ "word": "facebook,",
+ "punct": "Facebook,",
+ "index": 13836
+ },
+ {
+ "start": 6758.04,
+ "end": 6759.02,
+ "confidence": 0,
+ "word": "mantra",
+ "punct": "mantra",
+ "index": 13837
+ },
+ {
+ "start": 6759.02,
+ "end": 6759.2,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13838
+ },
+ {
+ "start": 6759.2,
+ "end": 6759.68,
+ "confidence": 0,
+ "word": "motto",
+ "punct": "motto",
+ "index": 13839
+ },
+ {
+ "start": 6759.68,
+ "end": 6759.78,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13840
+ },
+ {
+ "start": 6759.78,
+ "end": 6760.08,
+ "confidence": 0,
+ "word": "move",
+ "punct": "move",
+ "index": 13841
+ },
+ {
+ "start": 6760.08,
+ "end": 6760.42,
+ "confidence": 0,
+ "word": "fast",
+ "punct": "fast",
+ "index": 13842
+ },
+ {
+ "start": 6760.42,
+ "end": 6760.58,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13843
+ },
+ {
+ "start": 6760.58,
+ "end": 6760.86,
+ "confidence": 0,
+ "word": "break",
+ "punct": "break",
+ "index": 13844
+ },
+ {
+ "start": 6760.86,
+ "end": 6761.16,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things.",
+ "index": 13845
+ }
+ ],
+ "start": 6754.48
+ }
+ },
+ {
+ "key": "7a626",
+ "text": "Do you think some of the misjudgments perhaps mistakes that you've admitted to here where as a result of that culture or that attitude, particularly as regards to personal privacy of information of your subscribers.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6761.16,
+ "end": 6761.82,
+ "confidence": 0,
+ "word": "do",
+ "punct": "Do",
+ "index": 13846
+ },
+ {
+ "start": 6761.82,
+ "end": 6761.96,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 13847
+ },
+ {
+ "start": 6761.96,
+ "end": 6762.16,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 13848
+ },
+ {
+ "start": 6762.16,
+ "end": 6762.42,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 13849
+ },
+ {
+ "start": 6762.42,
+ "end": 6762.5,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13850
+ },
+ {
+ "start": 6762.5,
+ "end": 6763.54,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13851
+ },
+ {
+ "start": 6763.54,
+ "end": 6765.58,
+ "confidence": 0,
+ "word": "misjudgments",
+ "punct": "misjudgments",
+ "index": 13852
+ },
+ {
+ "start": 6765.58,
+ "end": 6765.98,
+ "confidence": 0,
+ "word": "perhaps",
+ "punct": "perhaps",
+ "index": 13853
+ },
+ {
+ "start": 6765.98,
+ "end": 6766.66,
+ "confidence": 0,
+ "word": "mistakes",
+ "punct": "mistakes",
+ "index": 13854
+ },
+ {
+ "start": 6766.66,
+ "end": 6766.92,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13855
+ },
+ {
+ "start": 6766.92,
+ "end": 6767.9,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 13856
+ },
+ {
+ "start": 6767.9,
+ "end": 6768.98,
+ "confidence": 0,
+ "word": "admitted",
+ "punct": "admitted",
+ "index": 13857
+ },
+ {
+ "start": 6768.98,
+ "end": 6769.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13858
+ },
+ {
+ "start": 6769.14,
+ "end": 6769.54,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 13859
+ },
+ {
+ "start": 6769.54,
+ "end": 6770.14,
+ "confidence": 0,
+ "word": "where",
+ "punct": "where",
+ "index": 13860
+ },
+ {
+ "start": 6770.14,
+ "end": 6770.3,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 13861
+ },
+ {
+ "start": 6770.3,
+ "end": 6770.36,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13862
+ },
+ {
+ "start": 6770.36,
+ "end": 6770.72,
+ "confidence": 0,
+ "word": "result",
+ "punct": "result",
+ "index": 13863
+ },
+ {
+ "start": 6770.72,
+ "end": 6770.84,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13864
+ },
+ {
+ "start": 6770.84,
+ "end": 6771.04,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13865
+ },
+ {
+ "start": 6771.04,
+ "end": 6771.72,
+ "confidence": 0,
+ "word": "culture",
+ "punct": "culture",
+ "index": 13866
+ },
+ {
+ "start": 6771.72,
+ "end": 6771.9,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13867
+ },
+ {
+ "start": 6771.9,
+ "end": 6772.16,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13868
+ },
+ {
+ "start": 6772.16,
+ "end": 6772.76,
+ "confidence": 0,
+ "word": "attitude,",
+ "punct": "attitude,",
+ "index": 13869
+ },
+ {
+ "start": 6772.76,
+ "end": 6773.3,
+ "confidence": 0,
+ "word": "particularly",
+ "punct": "particularly",
+ "index": 13870
+ },
+ {
+ "start": 6773.3,
+ "end": 6773.48,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 13871
+ },
+ {
+ "start": 6773.48,
+ "end": 6773.9,
+ "confidence": 0,
+ "word": "regards",
+ "punct": "regards",
+ "index": 13872
+ },
+ {
+ "start": 6773.9,
+ "end": 6774.24,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 13873
+ },
+ {
+ "start": 6774.24,
+ "end": 6774.94,
+ "confidence": 0,
+ "word": "personal",
+ "punct": "personal",
+ "index": 13874
+ },
+ {
+ "start": 6774.94,
+ "end": 6775.48,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 13875
+ },
+ {
+ "start": 6775.48,
+ "end": 6775.66,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13876
+ },
+ {
+ "start": 6775.66,
+ "end": 6776.28,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 13877
+ },
+ {
+ "start": 6776.28,
+ "end": 6776.38,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13878
+ },
+ {
+ "start": 6776.38,
+ "end": 6776.54,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 13879
+ },
+ {
+ "start": 6776.54,
+ "end": 6778.28,
+ "confidence": 0,
+ "word": "subscribers",
+ "punct": "subscribers.",
+ "index": 13880
+ }
+ ],
+ "start": 6761.16
+ }
+ },
+ {
+ "key": "e64r6",
+ "text": "Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6778.28,
+ "end": 6779.3,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 13881
+ }
+ ],
+ "start": 6778.28
+ }
+ },
+ {
+ "key": "7rnal",
+ "text": "I do think that we made mistakes because of that but the broadest mistakes that we made here are not taking a broad enough view of our responsibility.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6779.3,
+ "end": 6780.14,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13882
+ },
+ {
+ "start": 6780.14,
+ "end": 6780.32,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 13883
+ },
+ {
+ "start": 6780.32,
+ "end": 6780.52,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 13884
+ },
+ {
+ "start": 6780.52,
+ "end": 6780.66,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13885
+ },
+ {
+ "start": 6780.66,
+ "end": 6780.76,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 13886
+ },
+ {
+ "start": 6780.76,
+ "end": 6781.04,
+ "confidence": 0,
+ "word": "made",
+ "punct": "made",
+ "index": 13887
+ },
+ {
+ "start": 6781.04,
+ "end": 6781.56,
+ "confidence": 0,
+ "word": "mistakes",
+ "punct": "mistakes",
+ "index": 13888
+ },
+ {
+ "start": 6781.56,
+ "end": 6782,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 13889
+ },
+ {
+ "start": 6782,
+ "end": 6782.14,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13890
+ },
+ {
+ "start": 6782.14,
+ "end": 6782.42,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13891
+ },
+ {
+ "start": 6782.42,
+ "end": 6784.48,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 13892
+ },
+ {
+ "start": 6784.48,
+ "end": 6785.46,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13893
+ },
+ {
+ "start": 6785.46,
+ "end": 6786.02,
+ "confidence": 0,
+ "word": "broadest",
+ "punct": "broadest",
+ "index": 13894
+ },
+ {
+ "start": 6786.02,
+ "end": 6786.52,
+ "confidence": 0,
+ "word": "mistakes",
+ "punct": "mistakes",
+ "index": 13895
+ },
+ {
+ "start": 6786.52,
+ "end": 6786.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13896
+ },
+ {
+ "start": 6786.72,
+ "end": 6786.8,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 13897
+ },
+ {
+ "start": 6786.8,
+ "end": 6787.04,
+ "confidence": 0,
+ "word": "made",
+ "punct": "made",
+ "index": 13898
+ },
+ {
+ "start": 6787.04,
+ "end": 6787.28,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 13899
+ },
+ {
+ "start": 6787.28,
+ "end": 6788.06,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 13900
+ },
+ {
+ "start": 6788.06,
+ "end": 6788.28,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 13901
+ },
+ {
+ "start": 6788.28,
+ "end": 6788.64,
+ "confidence": 0,
+ "word": "taking",
+ "punct": "taking",
+ "index": 13902
+ },
+ {
+ "start": 6788.64,
+ "end": 6788.72,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13903
+ },
+ {
+ "start": 6788.72,
+ "end": 6788.96,
+ "confidence": 0,
+ "word": "broad",
+ "punct": "broad",
+ "index": 13904
+ },
+ {
+ "start": 6788.96,
+ "end": 6789.18,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough",
+ "index": 13905
+ },
+ {
+ "start": 6789.18,
+ "end": 6789.4,
+ "confidence": 0,
+ "word": "view",
+ "punct": "view",
+ "index": 13906
+ },
+ {
+ "start": 6789.4,
+ "end": 6789.5,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 13907
+ },
+ {
+ "start": 6789.5,
+ "end": 6789.64,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 13908
+ },
+ {
+ "start": 6789.64,
+ "end": 6790.48,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility.",
+ "index": 13909
+ }
+ ],
+ "start": 6779.3
+ }
+ },
+ {
+ "key": "732ip",
+ "text": "And that wasn't a matter.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6790.48,
+ "end": 6791.22,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 13910
+ },
+ {
+ "start": 6791.22,
+ "end": 6791.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13911
+ },
+ {
+ "start": 6791.8,
+ "end": 6792.08,
+ "confidence": 0,
+ "word": "wasn't",
+ "punct": "wasn't",
+ "index": 13912
+ },
+ {
+ "start": 6792.08,
+ "end": 6792.16,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 13913
+ },
+ {
+ "start": 6792.16,
+ "end": 6792.46,
+ "confidence": 0,
+ "word": "matter",
+ "punct": "matter.",
+ "index": 13914
+ }
+ ],
+ "start": 6790.48
+ }
+ },
+ {
+ "key": "djekl",
+ "text": "The move fast cultural value is more tactical around whether engineers can ship things and different ways that we operate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6792.46,
+ "end": 6793.02,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 13915
+ },
+ {
+ "start": 6793.02,
+ "end": 6793.22,
+ "confidence": 0,
+ "word": "move",
+ "punct": "move",
+ "index": 13916
+ },
+ {
+ "start": 6793.22,
+ "end": 6794.58,
+ "confidence": 0,
+ "word": "fast",
+ "punct": "fast",
+ "index": 13917
+ },
+ {
+ "start": 6794.58,
+ "end": 6795.56,
+ "confidence": 0,
+ "word": "cultural",
+ "punct": "cultural",
+ "index": 13918
+ },
+ {
+ "start": 6795.56,
+ "end": 6795.94,
+ "confidence": 0,
+ "word": "value",
+ "punct": "value",
+ "index": 13919
+ },
+ {
+ "start": 6795.94,
+ "end": 6796.08,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13920
+ },
+ {
+ "start": 6796.08,
+ "end": 6797,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 13921
+ },
+ {
+ "start": 6797,
+ "end": 6797.98,
+ "confidence": 0,
+ "word": "tactical",
+ "punct": "tactical",
+ "index": 13922
+ },
+ {
+ "start": 6797.98,
+ "end": 6798.3,
+ "confidence": 0,
+ "word": "around",
+ "punct": "around",
+ "index": 13923
+ },
+ {
+ "start": 6798.3,
+ "end": 6798.56,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 13924
+ },
+ {
+ "start": 6798.56,
+ "end": 6799.06,
+ "confidence": 0,
+ "word": "engineers",
+ "punct": "engineers",
+ "index": 13925
+ },
+ {
+ "start": 6799.06,
+ "end": 6799.28,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 13926
+ },
+ {
+ "start": 6799.28,
+ "end": 6799.46,
+ "confidence": 0,
+ "word": "ship",
+ "punct": "ship",
+ "index": 13927
+ },
+ {
+ "start": 6799.46,
+ "end": 6799.88,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 13928
+ },
+ {
+ "start": 6799.88,
+ "end": 6800.88,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 13929
+ },
+ {
+ "start": 6800.88,
+ "end": 6801.48,
+ "confidence": 0,
+ "word": "different",
+ "punct": "different",
+ "index": 13930
+ },
+ {
+ "start": 6801.48,
+ "end": 6801.62,
+ "confidence": 0,
+ "word": "ways",
+ "punct": "ways",
+ "index": 13931
+ },
+ {
+ "start": 6801.62,
+ "end": 6801.76,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13932
+ },
+ {
+ "start": 6801.76,
+ "end": 6801.84,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 13933
+ },
+ {
+ "start": 6801.84,
+ "end": 6802.26,
+ "confidence": 0,
+ "word": "operate",
+ "punct": "operate.",
+ "index": 13934
+ }
+ ],
+ "start": 6792.46
+ }
+ },
+ {
+ "key": "a98d6",
+ "text": "But I think the big mistake that we've made looking back on this viewing our responsibility as just building tools rather than viewing, our whole responsibility is making sure that those tools are used for good.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6802.26,
+ "end": 6802.88,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 13935
+ },
+ {
+ "start": 6802.88,
+ "end": 6802.94,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13936
+ },
+ {
+ "start": 6802.94,
+ "end": 6803.12,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 13937
+ },
+ {
+ "start": 6803.12,
+ "end": 6803.3,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13938
+ },
+ {
+ "start": 6803.3,
+ "end": 6803.54,
+ "confidence": 0,
+ "word": "big",
+ "punct": "big",
+ "index": 13939
+ },
+ {
+ "start": 6803.54,
+ "end": 6804.1,
+ "confidence": 0,
+ "word": "mistake",
+ "punct": "mistake",
+ "index": 13940
+ },
+ {
+ "start": 6804.1,
+ "end": 6804.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13941
+ },
+ {
+ "start": 6804.28,
+ "end": 6804.54,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 13942
+ },
+ {
+ "start": 6804.54,
+ "end": 6804.78,
+ "confidence": 0,
+ "word": "made",
+ "punct": "made",
+ "index": 13943
+ },
+ {
+ "start": 6804.78,
+ "end": 6805.14,
+ "confidence": 0,
+ "word": "looking",
+ "punct": "looking",
+ "index": 13944
+ },
+ {
+ "start": 6805.14,
+ "end": 6805.34,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 13945
+ },
+ {
+ "start": 6805.34,
+ "end": 6805.46,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 13946
+ },
+ {
+ "start": 6805.46,
+ "end": 6806.31,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 13947
+ },
+ {
+ "start": 6806.31,
+ "end": 6806.93,
+ "confidence": 0,
+ "word": "viewing",
+ "punct": "viewing",
+ "index": 13948
+ },
+ {
+ "start": 6806.93,
+ "end": 6807.11,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 13949
+ },
+ {
+ "start": 6807.11,
+ "end": 6807.89,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 13950
+ },
+ {
+ "start": 6807.89,
+ "end": 6808.17,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 13951
+ },
+ {
+ "start": 6808.17,
+ "end": 6808.45,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 13952
+ },
+ {
+ "start": 6808.45,
+ "end": 6808.87,
+ "confidence": 0,
+ "word": "building",
+ "punct": "building",
+ "index": 13953
+ },
+ {
+ "start": 6808.87,
+ "end": 6809.27,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 13954
+ },
+ {
+ "start": 6809.27,
+ "end": 6810.21,
+ "confidence": 0,
+ "word": "rather",
+ "punct": "rather",
+ "index": 13955
+ },
+ {
+ "start": 6810.21,
+ "end": 6810.47,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 13956
+ },
+ {
+ "start": 6810.47,
+ "end": 6811.21,
+ "confidence": 0,
+ "word": "viewing,",
+ "punct": "viewing,",
+ "index": 13957
+ },
+ {
+ "start": 6811.21,
+ "end": 6811.37,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 13958
+ },
+ {
+ "start": 6811.37,
+ "end": 6811.57,
+ "confidence": 0,
+ "word": "whole",
+ "punct": "whole",
+ "index": 13959
+ },
+ {
+ "start": 6811.57,
+ "end": 6812.25,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 13960
+ },
+ {
+ "start": 6812.25,
+ "end": 6812.37,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 13961
+ },
+ {
+ "start": 6812.37,
+ "end": 6812.73,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 13962
+ },
+ {
+ "start": 6812.73,
+ "end": 6812.97,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 13963
+ },
+ {
+ "start": 6812.97,
+ "end": 6813.11,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13964
+ },
+ {
+ "start": 6813.11,
+ "end": 6813.33,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 13965
+ },
+ {
+ "start": 6813.33,
+ "end": 6813.65,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 13966
+ },
+ {
+ "start": 6813.65,
+ "end": 6813.97,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 13967
+ },
+ {
+ "start": 6813.97,
+ "end": 6814.25,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 13968
+ },
+ {
+ "start": 6814.25,
+ "end": 6814.43,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 13969
+ },
+ {
+ "start": 6814.43,
+ "end": 6815.03,
+ "confidence": 0,
+ "word": "good",
+ "punct": "good.",
+ "index": 13970
+ }
+ ],
+ "start": 6802.26
+ }
+ },
+ {
+ "key": "bdsqt",
+ "text": "And I appreciate that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6815.03,
+ "end": 6816.01,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 13971
+ },
+ {
+ "start": 6816.01,
+ "end": 6816.13,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13972
+ },
+ {
+ "start": 6816.13,
+ "end": 6816.67,
+ "confidence": 0,
+ "word": "appreciate",
+ "punct": "appreciate",
+ "index": 13973
+ },
+ {
+ "start": 6816.67,
+ "end": 6816.91,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 13974
+ }
+ ],
+ "start": 6815.03
+ }
+ },
+ {
+ "key": "aidul",
+ "text": "Because previously or earlier in the past, we've been told that platforms like Facebook, Twitter, Instagram, the like or neutral platforms.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6816.91,
+ "end": 6818.26,
+ "confidence": 0,
+ "word": "because",
+ "punct": "Because",
+ "index": 13975
+ },
+ {
+ "start": 6818.26,
+ "end": 6819.2,
+ "confidence": 0,
+ "word": "previously",
+ "punct": "previously",
+ "index": 13976
+ },
+ {
+ "start": 6819.2,
+ "end": 6819.74,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13977
+ },
+ {
+ "start": 6819.74,
+ "end": 6820.72,
+ "confidence": 0,
+ "word": "earlier",
+ "punct": "earlier",
+ "index": 13978
+ },
+ {
+ "start": 6820.72,
+ "end": 6821.56,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 13979
+ },
+ {
+ "start": 6821.56,
+ "end": 6821.72,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13980
+ },
+ {
+ "start": 6821.72,
+ "end": 6822.1,
+ "confidence": 0,
+ "word": "past,",
+ "punct": "past,",
+ "index": 13981
+ },
+ {
+ "start": 6822.1,
+ "end": 6823.08,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 13982
+ },
+ {
+ "start": 6823.08,
+ "end": 6823.26,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 13983
+ },
+ {
+ "start": 6823.26,
+ "end": 6823.52,
+ "confidence": 0,
+ "word": "told",
+ "punct": "told",
+ "index": 13984
+ },
+ {
+ "start": 6823.52,
+ "end": 6824.34,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 13985
+ },
+ {
+ "start": 6824.34,
+ "end": 6825.34,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms",
+ "index": 13986
+ },
+ {
+ "start": 6825.34,
+ "end": 6826.24,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 13987
+ },
+ {
+ "start": 6826.24,
+ "end": 6827.16,
+ "confidence": 0,
+ "word": "facebook,",
+ "punct": "Facebook,",
+ "index": 13988
+ },
+ {
+ "start": 6827.16,
+ "end": 6827.96,
+ "confidence": 0,
+ "word": "twitter,",
+ "punct": "Twitter,",
+ "index": 13989
+ },
+ {
+ "start": 6827.96,
+ "end": 6828.8,
+ "confidence": 0,
+ "word": "instagram,",
+ "punct": "Instagram,",
+ "index": 13990
+ },
+ {
+ "start": 6828.8,
+ "end": 6829,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13991
+ },
+ {
+ "start": 6829,
+ "end": 6829.2,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 13992
+ },
+ {
+ "start": 6829.2,
+ "end": 6829.36,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 13993
+ },
+ {
+ "start": 6829.36,
+ "end": 6829.84,
+ "confidence": 0,
+ "word": "neutral",
+ "punct": "neutral",
+ "index": 13994
+ },
+ {
+ "start": 6829.84,
+ "end": 6830.52,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms.",
+ "index": 13995
+ }
+ ],
+ "start": 6816.91
+ }
+ },
+ {
+ "key": "403k0",
+ "text": "And the people who own and run those for profit and I'm not criticizing doing something for profit in this country.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6830.52,
+ "end": 6831.2,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 13996
+ },
+ {
+ "start": 6831.2,
+ "end": 6831.36,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 13997
+ },
+ {
+ "start": 6831.36,
+ "end": 6831.7,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 13998
+ },
+ {
+ "start": 6831.7,
+ "end": 6831.94,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 13999
+ },
+ {
+ "start": 6831.94,
+ "end": 6832.3,
+ "confidence": 0,
+ "word": "own",
+ "punct": "own",
+ "index": 14000
+ },
+ {
+ "start": 6832.3,
+ "end": 6832.46,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14001
+ },
+ {
+ "start": 6832.46,
+ "end": 6832.72,
+ "confidence": 0,
+ "word": "run",
+ "punct": "run",
+ "index": 14002
+ },
+ {
+ "start": 6832.72,
+ "end": 6833.54,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 14003
+ },
+ {
+ "start": 6833.54,
+ "end": 6834.24,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14004
+ },
+ {
+ "start": 6834.24,
+ "end": 6834.64,
+ "confidence": 0,
+ "word": "profit",
+ "punct": "profit",
+ "index": 14005
+ },
+ {
+ "start": 6834.64,
+ "end": 6834.84,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14006
+ },
+ {
+ "start": 6834.84,
+ "end": 6835,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 14007
+ },
+ {
+ "start": 6835,
+ "end": 6835.2,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 14008
+ },
+ {
+ "start": 6835.2,
+ "end": 6835.88,
+ "confidence": 0,
+ "word": "criticizing",
+ "punct": "criticizing",
+ "index": 14009
+ },
+ {
+ "start": 6835.88,
+ "end": 6836.72,
+ "confidence": 0,
+ "word": "doing",
+ "punct": "doing",
+ "index": 14010
+ },
+ {
+ "start": 6836.72,
+ "end": 6837.04,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 14011
+ },
+ {
+ "start": 6837.04,
+ "end": 6837.18,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14012
+ },
+ {
+ "start": 6837.18,
+ "end": 6837.56,
+ "confidence": 0,
+ "word": "profit",
+ "punct": "profit",
+ "index": 14013
+ },
+ {
+ "start": 6837.56,
+ "end": 6837.66,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 14014
+ },
+ {
+ "start": 6837.66,
+ "end": 6837.86,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 14015
+ },
+ {
+ "start": 6837.86,
+ "end": 6839.12,
+ "confidence": 0,
+ "word": "country",
+ "punct": "country.",
+ "index": 14016
+ }
+ ],
+ "start": 6830.52
+ }
+ },
+ {
+ "key": "cpc20",
+ "text": "But they bore no responsibility for the content.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6839.12,
+ "end": 6840.08,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 14017
+ },
+ {
+ "start": 6840.08,
+ "end": 6840.24,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 14018
+ },
+ {
+ "start": 6840.24,
+ "end": 6840.76,
+ "confidence": 0,
+ "word": "bore",
+ "punct": "bore",
+ "index": 14019
+ },
+ {
+ "start": 6840.76,
+ "end": 6840.92,
+ "confidence": 0,
+ "word": "no",
+ "punct": "no",
+ "index": 14020
+ },
+ {
+ "start": 6840.92,
+ "end": 6841.84,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 14021
+ },
+ {
+ "start": 6841.84,
+ "end": 6842,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14022
+ },
+ {
+ "start": 6842,
+ "end": 6842.14,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14023
+ },
+ {
+ "start": 6842.14,
+ "end": 6842.72,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content.",
+ "index": 14024
+ }
+ ],
+ "start": 6839.12
+ }
+ },
+ {
+ "key": "9apme",
+ "text": "You agree that Facebook and other social media platforms are not neutral platforms, but bear some responsibility for the content.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6842.72,
+ "end": 6843.56,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 14025
+ },
+ {
+ "start": 6843.56,
+ "end": 6845.08,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 14026
+ },
+ {
+ "start": 6845.08,
+ "end": 6845.86,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14027
+ },
+ {
+ "start": 6845.86,
+ "end": 6846.38,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14028
+ },
+ {
+ "start": 6846.38,
+ "end": 6846.78,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14029
+ },
+ {
+ "start": 6846.78,
+ "end": 6847.46,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 14030
+ },
+ {
+ "start": 6847.46,
+ "end": 6847.9,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 14031
+ },
+ {
+ "start": 6847.9,
+ "end": 6848.22,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 14032
+ },
+ {
+ "start": 6848.22,
+ "end": 6848.8,
+ "confidence": 0,
+ "word": "platforms",
+ "punct": "platforms",
+ "index": 14033
+ },
+ {
+ "start": 6848.8,
+ "end": 6848.96,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 14034
+ },
+ {
+ "start": 6848.96,
+ "end": 6849.14,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 14035
+ },
+ {
+ "start": 6849.14,
+ "end": 6849.52,
+ "confidence": 0,
+ "word": "neutral",
+ "punct": "neutral",
+ "index": 14036
+ },
+ {
+ "start": 6849.52,
+ "end": 6850.04,
+ "confidence": 0,
+ "word": "platforms,",
+ "punct": "platforms,",
+ "index": 14037
+ },
+ {
+ "start": 6850.04,
+ "end": 6850.26,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 14038
+ },
+ {
+ "start": 6850.26,
+ "end": 6850.52,
+ "confidence": 0,
+ "word": "bear",
+ "punct": "bear",
+ "index": 14039
+ },
+ {
+ "start": 6850.52,
+ "end": 6850.78,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 14040
+ },
+ {
+ "start": 6850.78,
+ "end": 6851.7,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 14041
+ },
+ {
+ "start": 6851.7,
+ "end": 6852.5,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14042
+ },
+ {
+ "start": 6852.5,
+ "end": 6852.66,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14043
+ },
+ {
+ "start": 6852.66,
+ "end": 6853.12,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content.",
+ "index": 14044
+ }
+ ],
+ "start": 6842.72
+ }
+ },
+ {
+ "key": "ecb7v",
+ "text": "I agree that we're responsible for the content and I think that there is one of the big societal questions I think we're going to need to answer is the current framework that we have is based on this reactive model that assumed that there weren't AI tools that could proactively tell whether something was terrorist content or something bad.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6853.12,
+ "end": 6854.02,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14045
+ },
+ {
+ "start": 6854.02,
+ "end": 6854.3,
+ "confidence": 0,
+ "word": "agree",
+ "punct": "agree",
+ "index": 14046
+ },
+ {
+ "start": 6854.3,
+ "end": 6854.42,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14047
+ },
+ {
+ "start": 6854.42,
+ "end": 6854.62,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 14048
+ },
+ {
+ "start": 6854.62,
+ "end": 6855.22,
+ "confidence": 0,
+ "word": "responsible",
+ "punct": "responsible",
+ "index": 14049
+ },
+ {
+ "start": 6855.22,
+ "end": 6855.38,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14050
+ },
+ {
+ "start": 6855.38,
+ "end": 6855.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14051
+ },
+ {
+ "start": 6855.52,
+ "end": 6856.62,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 14052
+ },
+ {
+ "start": 6856.62,
+ "end": 6857.5,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14053
+ },
+ {
+ "start": 6857.5,
+ "end": 6857.56,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14054
+ },
+ {
+ "start": 6857.56,
+ "end": 6857.74,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 14055
+ },
+ {
+ "start": 6857.74,
+ "end": 6857.86,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14056
+ },
+ {
+ "start": 6857.86,
+ "end": 6858,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 14057
+ },
+ {
+ "start": 6858,
+ "end": 6858.08,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14058
+ },
+ {
+ "start": 6858.08,
+ "end": 6858.38,
+ "confidence": 0,
+ "word": "one",
+ "punct": "one",
+ "index": 14059
+ },
+ {
+ "start": 6858.38,
+ "end": 6858.46,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14060
+ },
+ {
+ "start": 6858.46,
+ "end": 6858.56,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14061
+ },
+ {
+ "start": 6858.56,
+ "end": 6858.9,
+ "confidence": 0,
+ "word": "big",
+ "punct": "big",
+ "index": 14062
+ },
+ {
+ "start": 6858.9,
+ "end": 6860.04,
+ "confidence": 0,
+ "word": "societal",
+ "punct": "societal",
+ "index": 14063
+ },
+ {
+ "start": 6860.04,
+ "end": 6860.5,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 14064
+ },
+ {
+ "start": 6860.5,
+ "end": 6860.6,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14065
+ },
+ {
+ "start": 6860.6,
+ "end": 6860.9,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 14066
+ },
+ {
+ "start": 6860.9,
+ "end": 6861.08,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 14067
+ },
+ {
+ "start": 6861.08,
+ "end": 6861.24,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 14068
+ },
+ {
+ "start": 6861.24,
+ "end": 6861.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14069
+ },
+ {
+ "start": 6861.32,
+ "end": 6861.48,
+ "confidence": 0,
+ "word": "need",
+ "punct": "need",
+ "index": 14070
+ },
+ {
+ "start": 6861.48,
+ "end": 6861.56,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14071
+ },
+ {
+ "start": 6861.56,
+ "end": 6861.98,
+ "confidence": 0,
+ "word": "answer",
+ "punct": "answer",
+ "index": 14072
+ },
+ {
+ "start": 6861.98,
+ "end": 6863.24,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14073
+ },
+ {
+ "start": 6863.24,
+ "end": 6864.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14074
+ },
+ {
+ "start": 6864.22,
+ "end": 6864.56,
+ "confidence": 0,
+ "word": "current",
+ "punct": "current",
+ "index": 14075
+ },
+ {
+ "start": 6864.56,
+ "end": 6865.18,
+ "confidence": 0,
+ "word": "framework",
+ "punct": "framework",
+ "index": 14076
+ },
+ {
+ "start": 6865.18,
+ "end": 6865.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14077
+ },
+ {
+ "start": 6865.32,
+ "end": 6865.44,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14078
+ },
+ {
+ "start": 6865.44,
+ "end": 6866.38,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 14079
+ },
+ {
+ "start": 6866.38,
+ "end": 6867.26,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14080
+ },
+ {
+ "start": 6867.26,
+ "end": 6867.6,
+ "confidence": 0,
+ "word": "based",
+ "punct": "based",
+ "index": 14081
+ },
+ {
+ "start": 6867.6,
+ "end": 6867.74,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 14082
+ },
+ {
+ "start": 6867.74,
+ "end": 6867.92,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 14083
+ },
+ {
+ "start": 6867.92,
+ "end": 6868.46,
+ "confidence": 0,
+ "word": "reactive",
+ "punct": "reactive",
+ "index": 14084
+ },
+ {
+ "start": 6868.46,
+ "end": 6868.74,
+ "confidence": 0,
+ "word": "model",
+ "punct": "model",
+ "index": 14085
+ },
+ {
+ "start": 6868.74,
+ "end": 6869.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14086
+ },
+ {
+ "start": 6869.44,
+ "end": 6869.92,
+ "confidence": 0,
+ "word": "assumed",
+ "punct": "assumed",
+ "index": 14087
+ },
+ {
+ "start": 6869.92,
+ "end": 6870.06,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14088
+ },
+ {
+ "start": 6870.06,
+ "end": 6870.26,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 14089
+ },
+ {
+ "start": 6870.26,
+ "end": 6870.5,
+ "confidence": 0,
+ "word": "weren't",
+ "punct": "weren't",
+ "index": 14090
+ },
+ {
+ "start": 6870.5,
+ "end": 6870.84,
+ "confidence": 0,
+ "word": "ai",
+ "punct": "AI",
+ "index": 14091
+ },
+ {
+ "start": 6870.84,
+ "end": 6871.2,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 14092
+ },
+ {
+ "start": 6871.2,
+ "end": 6871.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14093
+ },
+ {
+ "start": 6871.72,
+ "end": 6871.9,
+ "confidence": 0,
+ "word": "could",
+ "punct": "could",
+ "index": 14094
+ },
+ {
+ "start": 6871.9,
+ "end": 6872.58,
+ "confidence": 0,
+ "word": "proactively",
+ "punct": "proactively",
+ "index": 14095
+ },
+ {
+ "start": 6872.58,
+ "end": 6873.54,
+ "confidence": 0,
+ "word": "tell",
+ "punct": "tell",
+ "index": 14096
+ },
+ {
+ "start": 6873.54,
+ "end": 6874.48,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 14097
+ },
+ {
+ "start": 6874.48,
+ "end": 6874.82,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 14098
+ },
+ {
+ "start": 6874.82,
+ "end": 6874.96,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 14099
+ },
+ {
+ "start": 6874.96,
+ "end": 6875.34,
+ "confidence": 0,
+ "word": "terrorist",
+ "punct": "terrorist",
+ "index": 14100
+ },
+ {
+ "start": 6875.34,
+ "end": 6875.7,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 14101
+ },
+ {
+ "start": 6875.7,
+ "end": 6875.84,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 14102
+ },
+ {
+ "start": 6875.84,
+ "end": 6876.12,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 14103
+ },
+ {
+ "start": 6876.12,
+ "end": 6876.4,
+ "confidence": 0,
+ "word": "bad",
+ "punct": "bad.",
+ "index": 14104
+ }
+ ],
+ "start": 6853.12
+ }
+ },
+ {
+ "key": "49f7m",
+ "text": "So it naturally relied on requiring people to flag for a company.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6876.4,
+ "end": 6876.88,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 14105
+ },
+ {
+ "start": 6876.88,
+ "end": 6877.04,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 14106
+ },
+ {
+ "start": 6877.04,
+ "end": 6877.56,
+ "confidence": 0,
+ "word": "naturally",
+ "punct": "naturally",
+ "index": 14107
+ },
+ {
+ "start": 6877.56,
+ "end": 6878.14,
+ "confidence": 0,
+ "word": "relied",
+ "punct": "relied",
+ "index": 14108
+ },
+ {
+ "start": 6878.14,
+ "end": 6878.58,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 14109
+ },
+ {
+ "start": 6878.58,
+ "end": 6879.66,
+ "confidence": 0,
+ "word": "requiring",
+ "punct": "requiring",
+ "index": 14110
+ },
+ {
+ "start": 6879.66,
+ "end": 6880.1,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 14111
+ },
+ {
+ "start": 6880.1,
+ "end": 6880.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14112
+ },
+ {
+ "start": 6880.38,
+ "end": 6880.96,
+ "confidence": 0,
+ "word": "flag",
+ "punct": "flag",
+ "index": 14113
+ },
+ {
+ "start": 6880.96,
+ "end": 6881.12,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14114
+ },
+ {
+ "start": 6881.12,
+ "end": 6881.18,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14115
+ },
+ {
+ "start": 6881.18,
+ "end": 6881.5,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company.",
+ "index": 14116
+ }
+ ],
+ "start": 6876.4
+ }
+ },
+ {
+ "key": "7h51n",
+ "text": "And then the company being to take reasonable action in the future we're going to have tools that are going to be able to identify more types of bad content.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6881.5,
+ "end": 6881.6,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 14117
+ },
+ {
+ "start": 6881.6,
+ "end": 6881.7,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 14118
+ },
+ {
+ "start": 6881.7,
+ "end": 6881.8,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14119
+ },
+ {
+ "start": 6881.8,
+ "end": 6882.08,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company",
+ "index": 14120
+ },
+ {
+ "start": 6882.08,
+ "end": 6882.38,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 14121
+ },
+ {
+ "start": 6882.38,
+ "end": 6882.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14122
+ },
+ {
+ "start": 6882.48,
+ "end": 6882.64,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 14123
+ },
+ {
+ "start": 6882.64,
+ "end": 6883.12,
+ "confidence": 0,
+ "word": "reasonable",
+ "punct": "reasonable",
+ "index": 14124
+ },
+ {
+ "start": 6883.12,
+ "end": 6883.46,
+ "confidence": 0,
+ "word": "action",
+ "punct": "action",
+ "index": 14125
+ },
+ {
+ "start": 6883.46,
+ "end": 6884.08,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 14126
+ },
+ {
+ "start": 6884.08,
+ "end": 6884.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14127
+ },
+ {
+ "start": 6884.18,
+ "end": 6884.54,
+ "confidence": 0,
+ "word": "future",
+ "punct": "future",
+ "index": 14128
+ },
+ {
+ "start": 6884.54,
+ "end": 6884.76,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 14129
+ },
+ {
+ "start": 6884.76,
+ "end": 6884.9,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 14130
+ },
+ {
+ "start": 6884.9,
+ "end": 6884.96,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14131
+ },
+ {
+ "start": 6884.96,
+ "end": 6885.1,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 14132
+ },
+ {
+ "start": 6885.1,
+ "end": 6885.54,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 14133
+ },
+ {
+ "start": 6885.54,
+ "end": 6886.2,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14134
+ },
+ {
+ "start": 6886.2,
+ "end": 6886.36,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 14135
+ },
+ {
+ "start": 6886.36,
+ "end": 6886.62,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 14136
+ },
+ {
+ "start": 6886.62,
+ "end": 6886.78,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14137
+ },
+ {
+ "start": 6886.78,
+ "end": 6886.92,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 14138
+ },
+ {
+ "start": 6886.92,
+ "end": 6887.18,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 14139
+ },
+ {
+ "start": 6887.18,
+ "end": 6887.42,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14140
+ },
+ {
+ "start": 6887.42,
+ "end": 6888.02,
+ "confidence": 0,
+ "word": "identify",
+ "punct": "identify",
+ "index": 14141
+ },
+ {
+ "start": 6888.02,
+ "end": 6888.28,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 14142
+ },
+ {
+ "start": 6888.28,
+ "end": 6888.52,
+ "confidence": 0,
+ "word": "types",
+ "punct": "types",
+ "index": 14143
+ },
+ {
+ "start": 6888.52,
+ "end": 6888.66,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14144
+ },
+ {
+ "start": 6888.66,
+ "end": 6888.92,
+ "confidence": 0,
+ "word": "bad",
+ "punct": "bad",
+ "index": 14145
+ },
+ {
+ "start": 6888.92,
+ "end": 6889.38,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content.",
+ "index": 14146
+ }
+ ],
+ "start": 6881.5
+ }
+ },
+ {
+ "key": "3mnbs",
+ "text": "And I think that there are moral and legal obligation questions that I think we'll have to wrestle with as a society about when we want to require companies to take action.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6889.38,
+ "end": 6889.9,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 14147
+ },
+ {
+ "start": 6889.9,
+ "end": 6889.98,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14148
+ },
+ {
+ "start": 6889.98,
+ "end": 6890.18,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 14149
+ },
+ {
+ "start": 6890.18,
+ "end": 6890.3,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14150
+ },
+ {
+ "start": 6890.3,
+ "end": 6891.22,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 14151
+ },
+ {
+ "start": 6891.22,
+ "end": 6891.34,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 14152
+ },
+ {
+ "start": 6891.34,
+ "end": 6891.78,
+ "confidence": 0,
+ "word": "moral",
+ "punct": "moral",
+ "index": 14153
+ },
+ {
+ "start": 6891.78,
+ "end": 6891.94,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14154
+ },
+ {
+ "start": 6891.94,
+ "end": 6892.22,
+ "confidence": 0,
+ "word": "legal",
+ "punct": "legal",
+ "index": 14155
+ },
+ {
+ "start": 6892.22,
+ "end": 6892.86,
+ "confidence": 0,
+ "word": "obligation",
+ "punct": "obligation",
+ "index": 14156
+ },
+ {
+ "start": 6892.86,
+ "end": 6893.82,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 14157
+ },
+ {
+ "start": 6893.82,
+ "end": 6894.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14158
+ },
+ {
+ "start": 6894.4,
+ "end": 6894.46,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14159
+ },
+ {
+ "start": 6894.46,
+ "end": 6894.62,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 14160
+ },
+ {
+ "start": 6894.62,
+ "end": 6894.84,
+ "confidence": 0,
+ "word": "we'll",
+ "punct": "we'll",
+ "index": 14161
+ },
+ {
+ "start": 6894.84,
+ "end": 6894.98,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 14162
+ },
+ {
+ "start": 6894.98,
+ "end": 6895.08,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14163
+ },
+ {
+ "start": 6895.08,
+ "end": 6895.4,
+ "confidence": 0,
+ "word": "wrestle",
+ "punct": "wrestle",
+ "index": 14164
+ },
+ {
+ "start": 6895.4,
+ "end": 6895.56,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 14165
+ },
+ {
+ "start": 6895.56,
+ "end": 6895.72,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 14166
+ },
+ {
+ "start": 6895.72,
+ "end": 6895.82,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14167
+ },
+ {
+ "start": 6895.82,
+ "end": 6896.38,
+ "confidence": 0,
+ "word": "society",
+ "punct": "society",
+ "index": 14168
+ },
+ {
+ "start": 6896.38,
+ "end": 6896.94,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 14169
+ },
+ {
+ "start": 6896.94,
+ "end": 6897.22,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 14170
+ },
+ {
+ "start": 6897.22,
+ "end": 6897.34,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14171
+ },
+ {
+ "start": 6897.34,
+ "end": 6897.58,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 14172
+ },
+ {
+ "start": 6897.58,
+ "end": 6897.78,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14173
+ },
+ {
+ "start": 6897.78,
+ "end": 6898.5,
+ "confidence": 0,
+ "word": "require",
+ "punct": "require",
+ "index": 14174
+ },
+ {
+ "start": 6898.5,
+ "end": 6899.02,
+ "confidence": 0,
+ "word": "companies",
+ "punct": "companies",
+ "index": 14175
+ },
+ {
+ "start": 6899.02,
+ "end": 6899.16,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14176
+ },
+ {
+ "start": 6899.16,
+ "end": 6899.38,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 14177
+ },
+ {
+ "start": 6899.38,
+ "end": 6899.8,
+ "confidence": 0,
+ "word": "action",
+ "punct": "action.",
+ "index": 14178
+ }
+ ],
+ "start": 6889.38
+ }
+ },
+ {
+ "key": "akset",
+ "text": "Proactively uncertain of those things when that gets in the way, I appreciate that I have two minutes left.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6899.8,
+ "end": 6900.5,
+ "confidence": 0,
+ "word": "proactively",
+ "punct": "Proactively",
+ "index": 14179
+ },
+ {
+ "start": 6900.5,
+ "end": 6900.94,
+ "confidence": 0,
+ "word": "uncertain",
+ "punct": "uncertain",
+ "index": 14180
+ },
+ {
+ "start": 6900.94,
+ "end": 6901.04,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14181
+ },
+ {
+ "start": 6901.04,
+ "end": 6901.26,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 14182
+ },
+ {
+ "start": 6901.26,
+ "end": 6901.58,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 14183
+ },
+ {
+ "start": 6901.58,
+ "end": 6902.4,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 14184
+ },
+ {
+ "start": 6902.4,
+ "end": 6902.56,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14185
+ },
+ {
+ "start": 6902.56,
+ "end": 6902.72,
+ "confidence": 0,
+ "word": "gets",
+ "punct": "gets",
+ "index": 14186
+ },
+ {
+ "start": 6902.72,
+ "end": 6902.84,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 14187
+ },
+ {
+ "start": 6902.84,
+ "end": 6902.94,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14188
+ },
+ {
+ "start": 6902.94,
+ "end": 6903.12,
+ "confidence": 0,
+ "word": "way,",
+ "punct": "way,",
+ "index": 14189
+ },
+ {
+ "start": 6903.12,
+ "end": 6903.18,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14190
+ },
+ {
+ "start": 6903.18,
+ "end": 6903.82,
+ "confidence": 0,
+ "word": "appreciate",
+ "punct": "appreciate",
+ "index": 14191
+ },
+ {
+ "start": 6903.82,
+ "end": 6903.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14192
+ },
+ {
+ "start": 6903.98,
+ "end": 6904.08,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14193
+ },
+ {
+ "start": 6904.08,
+ "end": 6904.24,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 14194
+ },
+ {
+ "start": 6904.24,
+ "end": 6904.66,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two",
+ "index": 14195
+ },
+ {
+ "start": 6904.66,
+ "end": 6904.94,
+ "confidence": 0,
+ "word": "minutes",
+ "punct": "minutes",
+ "index": 14196
+ },
+ {
+ "start": 6904.94,
+ "end": 6905.26,
+ "confidence": 0,
+ "word": "left",
+ "punct": "left.",
+ "index": 14197
+ }
+ ],
+ "start": 6899.8
+ }
+ },
+ {
+ "key": "fp9au",
+ "text": "All right to ask you questions.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6905.26,
+ "end": 6905.48,
+ "confidence": 0,
+ "word": "all",
+ "punct": "All",
+ "index": 14198
+ },
+ {
+ "start": 6905.48,
+ "end": 6905.62,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 14199
+ },
+ {
+ "start": 6905.62,
+ "end": 6905.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14200
+ },
+ {
+ "start": 6905.72,
+ "end": 6905.9,
+ "confidence": 0,
+ "word": "ask",
+ "punct": "ask",
+ "index": 14201
+ },
+ {
+ "start": 6905.9,
+ "end": 6906.06,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14202
+ },
+ {
+ "start": 6906.06,
+ "end": 6906.48,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions.",
+ "index": 14203
+ }
+ ],
+ "start": 6905.26
+ }
+ },
+ {
+ "key": "2ljck",
+ "text": "So you interestingly the terms of what do you call it?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6906.48,
+ "end": 6907.32,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 14204
+ },
+ {
+ "start": 6907.32,
+ "end": 6908.4,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14205
+ },
+ {
+ "start": 6908.4,
+ "end": 6909.4,
+ "confidence": 0,
+ "word": "interestingly",
+ "punct": "interestingly",
+ "index": 14206
+ },
+ {
+ "start": 6909.4,
+ "end": 6909.58,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14207
+ },
+ {
+ "start": 6909.58,
+ "end": 6909.96,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 14208
+ },
+ {
+ "start": 6909.96,
+ "end": 6911.02,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14209
+ },
+ {
+ "start": 6911.02,
+ "end": 6911.98,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 14210
+ },
+ {
+ "start": 6911.98,
+ "end": 6912.06,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 14211
+ },
+ {
+ "start": 6912.06,
+ "end": 6912.18,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14212
+ },
+ {
+ "start": 6912.18,
+ "end": 6912.36,
+ "confidence": 0,
+ "word": "call",
+ "punct": "call",
+ "index": 14213
+ },
+ {
+ "start": 6912.36,
+ "end": 6912.46,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it?",
+ "index": 14214
+ }
+ ],
+ "start": 6906.48
+ }
+ },
+ {
+ "key": "21sov",
+ "text": "The terms of service is a legal document which discloses to your subscribers.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6912.46,
+ "end": 6912.58,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 14215
+ },
+ {
+ "start": 6912.58,
+ "end": 6912.96,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 14216
+ },
+ {
+ "start": 6912.96,
+ "end": 6913.12,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14217
+ },
+ {
+ "start": 6913.12,
+ "end": 6913.62,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 14218
+ },
+ {
+ "start": 6913.62,
+ "end": 6914.3,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14219
+ },
+ {
+ "start": 6914.3,
+ "end": 6914.38,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14220
+ },
+ {
+ "start": 6914.38,
+ "end": 6914.74,
+ "confidence": 0,
+ "word": "legal",
+ "punct": "legal",
+ "index": 14221
+ },
+ {
+ "start": 6914.74,
+ "end": 6915.28,
+ "confidence": 0,
+ "word": "document",
+ "punct": "document",
+ "index": 14222
+ },
+ {
+ "start": 6915.28,
+ "end": 6915.58,
+ "confidence": 0,
+ "word": "which",
+ "punct": "which",
+ "index": 14223
+ },
+ {
+ "start": 6915.58,
+ "end": 6916.3,
+ "confidence": 0,
+ "word": "discloses",
+ "punct": "discloses",
+ "index": 14224
+ },
+ {
+ "start": 6916.3,
+ "end": 6916.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14225
+ },
+ {
+ "start": 6916.48,
+ "end": 6916.7,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 14226
+ },
+ {
+ "start": 6916.7,
+ "end": 6917.46,
+ "confidence": 0,
+ "word": "subscribers",
+ "punct": "subscribers.",
+ "index": 14227
+ }
+ ],
+ "start": 6912.46
+ }
+ },
+ {
+ "key": "91plf",
+ "text": "How their information is going to be used.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6917.46,
+ "end": 6917.8,
+ "confidence": 0,
+ "word": "how",
+ "punct": "How",
+ "index": 14228
+ },
+ {
+ "start": 6917.8,
+ "end": 6918.04,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 14229
+ },
+ {
+ "start": 6918.04,
+ "end": 6918.56,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 14230
+ },
+ {
+ "start": 6918.56,
+ "end": 6918.74,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14231
+ },
+ {
+ "start": 6918.74,
+ "end": 6918.9,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 14232
+ },
+ {
+ "start": 6918.9,
+ "end": 6918.98,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14233
+ },
+ {
+ "start": 6918.98,
+ "end": 6919.08,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 14234
+ },
+ {
+ "start": 6919.08,
+ "end": 6919.34,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used.",
+ "index": 14235
+ }
+ ],
+ "start": 6917.46
+ }
+ },
+ {
+ "key": "15auv",
+ "text": "How Facebook is going to operate but you can see that you doubt.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6919.34,
+ "end": 6919.58,
+ "confidence": 0,
+ "word": "how",
+ "punct": "How",
+ "index": 14236
+ },
+ {
+ "start": 6919.58,
+ "end": 6920.14,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14237
+ },
+ {
+ "start": 6920.14,
+ "end": 6920.58,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14238
+ },
+ {
+ "start": 6920.58,
+ "end": 6920.74,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 14239
+ },
+ {
+ "start": 6920.74,
+ "end": 6920.82,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14240
+ },
+ {
+ "start": 6920.82,
+ "end": 6921.96,
+ "confidence": 0,
+ "word": "operate",
+ "punct": "operate",
+ "index": 14241
+ },
+ {
+ "start": 6921.96,
+ "end": 6922.94,
+ "confidence": 0,
+ "word": "but",
+ "punct": "but",
+ "index": 14242
+ },
+ {
+ "start": 6922.94,
+ "end": 6923.18,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14243
+ },
+ {
+ "start": 6923.18,
+ "end": 6923.4,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 14244
+ },
+ {
+ "start": 6923.4,
+ "end": 6923.7,
+ "confidence": 0,
+ "word": "see",
+ "punct": "see",
+ "index": 14245
+ },
+ {
+ "start": 6923.7,
+ "end": 6923.92,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14246
+ },
+ {
+ "start": 6923.92,
+ "end": 6924.96,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14247
+ },
+ {
+ "start": 6924.96,
+ "end": 6925.9,
+ "confidence": 0,
+ "word": "doubt",
+ "punct": "doubt.",
+ "index": 14248
+ }
+ ],
+ "start": 6919.34
+ }
+ },
+ {
+ "key": "c5ls8",
+ "text": "Everybody reads or understands that legalese those terms of service.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6925.9,
+ "end": 6926.94,
+ "confidence": 0,
+ "word": "everybody",
+ "punct": "Everybody",
+ "index": 14249
+ },
+ {
+ "start": 6926.94,
+ "end": 6928,
+ "confidence": 0,
+ "word": "reads",
+ "punct": "reads",
+ "index": 14250
+ },
+ {
+ "start": 6928,
+ "end": 6928.4,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 14251
+ },
+ {
+ "start": 6928.4,
+ "end": 6929.82,
+ "confidence": 0,
+ "word": "understands",
+ "punct": "understands",
+ "index": 14252
+ },
+ {
+ "start": 6929.82,
+ "end": 6930.68,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14253
+ },
+ {
+ "start": 6930.68,
+ "end": 6931.32,
+ "confidence": 0,
+ "word": "legalese",
+ "punct": "legalese",
+ "index": 14254
+ },
+ {
+ "start": 6931.32,
+ "end": 6931.6,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 14255
+ },
+ {
+ "start": 6931.6,
+ "end": 6931.92,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 14256
+ },
+ {
+ "start": 6931.92,
+ "end": 6932.06,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14257
+ },
+ {
+ "start": 6932.06,
+ "end": 6932.5,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service.",
+ "index": 14258
+ }
+ ],
+ "start": 6925.9
+ }
+ },
+ {
+ "key": "d20ri",
+ "text": "So is that to suggest that the consent that people give subject to that terms of service is not informed consent.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6932.5,
+ "end": 6933.44,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 14259
+ },
+ {
+ "start": 6933.44,
+ "end": 6934.5,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14260
+ },
+ {
+ "start": 6934.5,
+ "end": 6934.66,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14261
+ },
+ {
+ "start": 6934.66,
+ "end": 6934.82,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14262
+ },
+ {
+ "start": 6934.82,
+ "end": 6935.3,
+ "confidence": 0,
+ "word": "suggest",
+ "punct": "suggest",
+ "index": 14263
+ },
+ {
+ "start": 6935.3,
+ "end": 6935.5,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14264
+ },
+ {
+ "start": 6935.5,
+ "end": 6935.76,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14265
+ },
+ {
+ "start": 6935.76,
+ "end": 6936.46,
+ "confidence": 0,
+ "word": "consent",
+ "punct": "consent",
+ "index": 14266
+ },
+ {
+ "start": 6936.46,
+ "end": 6937.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14267
+ },
+ {
+ "start": 6937.32,
+ "end": 6937.66,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 14268
+ },
+ {
+ "start": 6937.66,
+ "end": 6938.64,
+ "confidence": 0,
+ "word": "give",
+ "punct": "give",
+ "index": 14269
+ },
+ {
+ "start": 6938.64,
+ "end": 6939.66,
+ "confidence": 0,
+ "word": "subject",
+ "punct": "subject",
+ "index": 14270
+ },
+ {
+ "start": 6939.66,
+ "end": 6939.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14271
+ },
+ {
+ "start": 6939.8,
+ "end": 6939.96,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14272
+ },
+ {
+ "start": 6939.96,
+ "end": 6940.32,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 14273
+ },
+ {
+ "start": 6940.32,
+ "end": 6940.44,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14274
+ },
+ {
+ "start": 6940.44,
+ "end": 6940.78,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 14275
+ },
+ {
+ "start": 6940.78,
+ "end": 6940.92,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14276
+ },
+ {
+ "start": 6940.92,
+ "end": 6941.18,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 14277
+ },
+ {
+ "start": 6941.18,
+ "end": 6941.84,
+ "confidence": 0,
+ "word": "informed",
+ "punct": "informed",
+ "index": 14278
+ },
+ {
+ "start": 6941.84,
+ "end": 6942.94,
+ "confidence": 0,
+ "word": "consent",
+ "punct": "consent.",
+ "index": 14279
+ }
+ ],
+ "start": 6932.5
+ }
+ },
+ {
+ "key": "2teju",
+ "text": "In other words, they may not read it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6942.94,
+ "end": 6943.06,
+ "confidence": 0,
+ "word": "in",
+ "punct": "In",
+ "index": 14280
+ },
+ {
+ "start": 6943.06,
+ "end": 6943.24,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 14281
+ },
+ {
+ "start": 6943.24,
+ "end": 6943.44,
+ "confidence": 0,
+ "word": "words,",
+ "punct": "words,",
+ "index": 14282
+ },
+ {
+ "start": 6943.44,
+ "end": 6944.04,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 14283
+ },
+ {
+ "start": 6944.04,
+ "end": 6944.2,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 14284
+ },
+ {
+ "start": 6944.2,
+ "end": 6944.36,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 14285
+ },
+ {
+ "start": 6944.36,
+ "end": 6944.56,
+ "confidence": 0,
+ "word": "read",
+ "punct": "read",
+ "index": 14286
+ },
+ {
+ "start": 6944.56,
+ "end": 6944.68,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 14287
+ }
+ ],
+ "start": 6942.94
+ }
+ },
+ {
+ "key": "5t3mn",
+ "text": "And even if they read it, they may not understand it, I just think we have a broader responsibility than what the law requires.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6944.68,
+ "end": 6945.02,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 14288
+ },
+ {
+ "start": 6945.02,
+ "end": 6945.22,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 14289
+ },
+ {
+ "start": 6945.22,
+ "end": 6945.34,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 14290
+ },
+ {
+ "start": 6945.34,
+ "end": 6945.46,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 14291
+ },
+ {
+ "start": 6945.46,
+ "end": 6945.66,
+ "confidence": 0,
+ "word": "read",
+ "punct": "read",
+ "index": 14292
+ },
+ {
+ "start": 6945.66,
+ "end": 6945.74,
+ "confidence": 0,
+ "word": "it,",
+ "punct": "it,",
+ "index": 14293
+ },
+ {
+ "start": 6945.74,
+ "end": 6945.88,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 14294
+ },
+ {
+ "start": 6945.88,
+ "end": 6946.02,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 14295
+ },
+ {
+ "start": 6946.02,
+ "end": 6946.18,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 14296
+ },
+ {
+ "start": 6946.18,
+ "end": 6946.7,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 14297
+ },
+ {
+ "start": 6946.7,
+ "end": 6947.52,
+ "confidence": 0,
+ "word": "it,",
+ "punct": "it,",
+ "index": 14298
+ },
+ {
+ "start": 6947.52,
+ "end": 6948.3,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14299
+ },
+ {
+ "start": 6948.3,
+ "end": 6948.52,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 14300
+ },
+ {
+ "start": 6948.52,
+ "end": 6948.7,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 14301
+ },
+ {
+ "start": 6948.7,
+ "end": 6948.82,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14302
+ },
+ {
+ "start": 6948.82,
+ "end": 6949,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 14303
+ },
+ {
+ "start": 6949,
+ "end": 6949.04,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14304
+ },
+ {
+ "start": 6949.04,
+ "end": 6949.48,
+ "confidence": 0,
+ "word": "broader",
+ "punct": "broader",
+ "index": 14305
+ },
+ {
+ "start": 6949.48,
+ "end": 6950.4,
+ "confidence": 0,
+ "word": "responsibility",
+ "punct": "responsibility",
+ "index": 14306
+ },
+ {
+ "start": 6950.4,
+ "end": 6950.82,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 14307
+ },
+ {
+ "start": 6950.82,
+ "end": 6951,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 14308
+ },
+ {
+ "start": 6951,
+ "end": 6951.12,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14309
+ },
+ {
+ "start": 6951.12,
+ "end": 6951.36,
+ "confidence": 0,
+ "word": "law",
+ "punct": "law",
+ "index": 14310
+ },
+ {
+ "start": 6951.36,
+ "end": 6951.92,
+ "confidence": 0,
+ "word": "requires",
+ "punct": "requires.",
+ "index": 14311
+ }
+ ],
+ "start": 6944.68
+ }
+ },
+ {
+ "key": "d1arf",
+ "text": "So I'm I'm in.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6951.92,
+ "end": 6952.88,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 14312
+ },
+ {
+ "start": 6952.88,
+ "end": 6953.86,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 14313
+ },
+ {
+ "start": 6953.86,
+ "end": 6954.5,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 14314
+ },
+ {
+ "start": 6954.5,
+ "end": 6955.06,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in.",
+ "index": 14315
+ }
+ ],
+ "start": 6951.92
+ }
+ },
+ {
+ "key": "19le1",
+ "text": "I appreciate that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6955.06,
+ "end": 6955.14,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14316
+ },
+ {
+ "start": 6955.14,
+ "end": 6955.52,
+ "confidence": 0,
+ "word": "appreciate",
+ "punct": "appreciate",
+ "index": 14317
+ },
+ {
+ "start": 6955.52,
+ "end": 6955.66,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 14318
+ }
+ ],
+ "start": 6955.06
+ }
+ },
+ {
+ "key": "17vf7",
+ "text": "What I'm asking about in terms of what your subscribers understand in terms of how their data is going to be used.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6955.66,
+ "end": 6955.8,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 14319
+ },
+ {
+ "start": 6955.8,
+ "end": 6955.94,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 14320
+ },
+ {
+ "start": 6955.94,
+ "end": 6956.28,
+ "confidence": 0,
+ "word": "asking",
+ "punct": "asking",
+ "index": 14321
+ },
+ {
+ "start": 6956.28,
+ "end": 6956.54,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 14322
+ },
+ {
+ "start": 6956.54,
+ "end": 6956.72,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 14323
+ },
+ {
+ "start": 6956.72,
+ "end": 6956.98,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 14324
+ },
+ {
+ "start": 6956.98,
+ "end": 6957.08,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14325
+ },
+ {
+ "start": 6957.08,
+ "end": 6957.28,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 14326
+ },
+ {
+ "start": 6957.28,
+ "end": 6957.52,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 14327
+ },
+ {
+ "start": 6957.52,
+ "end": 6958.28,
+ "confidence": 0,
+ "word": "subscribers",
+ "punct": "subscribers",
+ "index": 14328
+ },
+ {
+ "start": 6958.28,
+ "end": 6959.34,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 14329
+ },
+ {
+ "start": 6959.34,
+ "end": 6959.48,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 14330
+ },
+ {
+ "start": 6959.48,
+ "end": 6959.76,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 14331
+ },
+ {
+ "start": 6959.76,
+ "end": 6959.86,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14332
+ },
+ {
+ "start": 6959.86,
+ "end": 6960.12,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 14333
+ },
+ {
+ "start": 6960.12,
+ "end": 6960.36,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 14334
+ },
+ {
+ "start": 6960.36,
+ "end": 6960.74,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 14335
+ },
+ {
+ "start": 6960.74,
+ "end": 6961.42,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14336
+ },
+ {
+ "start": 6961.42,
+ "end": 6961.68,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 14337
+ },
+ {
+ "start": 6961.68,
+ "end": 6961.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14338
+ },
+ {
+ "start": 6961.8,
+ "end": 6961.92,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 14339
+ },
+ {
+ "start": 6961.92,
+ "end": 6962.66,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used.",
+ "index": 14340
+ }
+ ],
+ "start": 6955.66
+ }
+ },
+ {
+ "key": "42k6e",
+ "text": "But let me go to the terms of service under paragraph number two.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6962.66,
+ "end": 6963.32,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 14341
+ },
+ {
+ "start": 6963.32,
+ "end": 6964.04,
+ "confidence": 0,
+ "word": "let",
+ "punct": "let",
+ "index": 14342
+ },
+ {
+ "start": 6964.04,
+ "end": 6964.14,
+ "confidence": 0,
+ "word": "me",
+ "punct": "me",
+ "index": 14343
+ },
+ {
+ "start": 6964.14,
+ "end": 6964.48,
+ "confidence": 0,
+ "word": "go",
+ "punct": "go",
+ "index": 14344
+ },
+ {
+ "start": 6964.48,
+ "end": 6964.68,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14345
+ },
+ {
+ "start": 6964.68,
+ "end": 6964.82,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14346
+ },
+ {
+ "start": 6964.82,
+ "end": 6965.1,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 14347
+ },
+ {
+ "start": 6965.1,
+ "end": 6965.24,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14348
+ },
+ {
+ "start": 6965.24,
+ "end": 6965.62,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 14349
+ },
+ {
+ "start": 6965.62,
+ "end": 6966.56,
+ "confidence": 0,
+ "word": "under",
+ "punct": "under",
+ "index": 14350
+ },
+ {
+ "start": 6966.56,
+ "end": 6967.56,
+ "confidence": 0,
+ "word": "paragraph",
+ "punct": "paragraph",
+ "index": 14351
+ },
+ {
+ "start": 6967.56,
+ "end": 6967.88,
+ "confidence": 0,
+ "word": "number",
+ "punct": "number",
+ "index": 14352
+ },
+ {
+ "start": 6967.88,
+ "end": 6968.22,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two.",
+ "index": 14353
+ }
+ ],
+ "start": 6962.66
+ }
+ },
+ {
+ "key": "1ues0",
+ "text": "You say you own all of the content and information you post on Facebook that's what you've told us here today.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6968.22,
+ "end": 6968.54,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 14354
+ },
+ {
+ "start": 6968.54,
+ "end": 6968.76,
+ "confidence": 0,
+ "word": "say",
+ "punct": "say",
+ "index": 14355
+ },
+ {
+ "start": 6968.76,
+ "end": 6969.02,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14356
+ },
+ {
+ "start": 6969.02,
+ "end": 6969.46,
+ "confidence": 0,
+ "word": "own",
+ "punct": "own",
+ "index": 14357
+ },
+ {
+ "start": 6969.46,
+ "end": 6969.82,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 14358
+ },
+ {
+ "start": 6969.82,
+ "end": 6969.92,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14359
+ },
+ {
+ "start": 6969.92,
+ "end": 6970.06,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14360
+ },
+ {
+ "start": 6970.06,
+ "end": 6970.56,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 14361
+ },
+ {
+ "start": 6970.56,
+ "end": 6970.76,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14362
+ },
+ {
+ "start": 6970.76,
+ "end": 6971.5,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 14363
+ },
+ {
+ "start": 6971.5,
+ "end": 6972.12,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14364
+ },
+ {
+ "start": 6972.12,
+ "end": 6972.46,
+ "confidence": 0,
+ "word": "post",
+ "punct": "post",
+ "index": 14365
+ },
+ {
+ "start": 6972.46,
+ "end": 6972.66,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 14366
+ },
+ {
+ "start": 6972.66,
+ "end": 6973.16,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14367
+ },
+ {
+ "start": 6973.16,
+ "end": 6973.46,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 14368
+ },
+ {
+ "start": 6973.46,
+ "end": 6973.76,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 14369
+ },
+ {
+ "start": 6973.76,
+ "end": 6974,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 14370
+ },
+ {
+ "start": 6974,
+ "end": 6974.16,
+ "confidence": 0,
+ "word": "told",
+ "punct": "told",
+ "index": 14371
+ },
+ {
+ "start": 6974.16,
+ "end": 6974.28,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 14372
+ },
+ {
+ "start": 6974.28,
+ "end": 6974.46,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 14373
+ },
+ {
+ "start": 6974.46,
+ "end": 6974.8,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today.",
+ "index": 14374
+ }
+ ],
+ "start": 6968.22
+ }
+ },
+ {
+ "key": "cq9hj",
+ "text": "A number of times.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6974.8,
+ "end": 6975.46,
+ "confidence": 0,
+ "word": "a",
+ "punct": "A",
+ "index": 14375
+ },
+ {
+ "start": 6975.46,
+ "end": 6975.74,
+ "confidence": 0,
+ "word": "number",
+ "punct": "number",
+ "index": 14376
+ },
+ {
+ "start": 6975.74,
+ "end": 6975.82,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14377
+ },
+ {
+ "start": 6975.82,
+ "end": 6976.64,
+ "confidence": 0,
+ "word": "times",
+ "punct": "times.",
+ "index": 14378
+ }
+ ],
+ "start": 6974.8
+ }
+ },
+ {
+ "key": "dp2te",
+ "text": "So if I choose to terminate my Facebook account.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6976.64,
+ "end": 6977.54,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 14379
+ },
+ {
+ "start": 6977.54,
+ "end": 6978.54,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 14380
+ },
+ {
+ "start": 6978.54,
+ "end": 6978.66,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14381
+ },
+ {
+ "start": 6978.66,
+ "end": 6979.24,
+ "confidence": 0,
+ "word": "choose",
+ "punct": "choose",
+ "index": 14382
+ },
+ {
+ "start": 6979.24,
+ "end": 6979.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14383
+ },
+ {
+ "start": 6979.8,
+ "end": 6980.76,
+ "confidence": 0,
+ "word": "terminate",
+ "punct": "terminate",
+ "index": 14384
+ },
+ {
+ "start": 6980.76,
+ "end": 6981.62,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 14385
+ },
+ {
+ "start": 6981.62,
+ "end": 6982.48,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14386
+ },
+ {
+ "start": 6982.48,
+ "end": 6983.48,
+ "confidence": 0,
+ "word": "account",
+ "punct": "account.",
+ "index": 14387
+ }
+ ],
+ "start": 6976.64
+ }
+ },
+ {
+ "key": "1j6ng",
+ "text": "Can I bar Facebook or any third parties from using the data that I had previously supplied for any purpose whatsoever?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6983.48,
+ "end": 6984.62,
+ "confidence": 0,
+ "word": "can",
+ "punct": "Can",
+ "index": 14388
+ },
+ {
+ "start": 6984.62,
+ "end": 6984.84,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14389
+ },
+ {
+ "start": 6984.84,
+ "end": 6985.5,
+ "confidence": 0,
+ "word": "bar",
+ "punct": "bar",
+ "index": 14390
+ },
+ {
+ "start": 6985.5,
+ "end": 6986.6,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14391
+ },
+ {
+ "start": 6986.6,
+ "end": 6986.78,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 14392
+ },
+ {
+ "start": 6986.78,
+ "end": 6987.04,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 14393
+ },
+ {
+ "start": 6987.04,
+ "end": 6987.34,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 14394
+ },
+ {
+ "start": 6987.34,
+ "end": 6987.74,
+ "confidence": 0,
+ "word": "parties",
+ "punct": "parties",
+ "index": 14395
+ },
+ {
+ "start": 6987.74,
+ "end": 6988.08,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 14396
+ },
+ {
+ "start": 6988.08,
+ "end": 6988.62,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 14397
+ },
+ {
+ "start": 6988.62,
+ "end": 6988.78,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14398
+ },
+ {
+ "start": 6988.78,
+ "end": 6989.14,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 14399
+ },
+ {
+ "start": 6989.14,
+ "end": 6989.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14400
+ },
+ {
+ "start": 6989.32,
+ "end": 6989.36,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14401
+ },
+ {
+ "start": 6989.36,
+ "end": 6989.6,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 14402
+ },
+ {
+ "start": 6989.6,
+ "end": 6990.1,
+ "confidence": 0,
+ "word": "previously",
+ "punct": "previously",
+ "index": 14403
+ },
+ {
+ "start": 6990.1,
+ "end": 6990.74,
+ "confidence": 0,
+ "word": "supplied",
+ "punct": "supplied",
+ "index": 14404
+ },
+ {
+ "start": 6990.74,
+ "end": 6991.64,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14405
+ },
+ {
+ "start": 6991.64,
+ "end": 6991.88,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 14406
+ },
+ {
+ "start": 6991.88,
+ "end": 6992.18,
+ "confidence": 0,
+ "word": "purpose",
+ "punct": "purpose",
+ "index": 14407
+ },
+ {
+ "start": 6992.18,
+ "end": 6993.34,
+ "confidence": 0,
+ "word": "whatsoever",
+ "punct": "whatsoever?",
+ "index": 14408
+ }
+ ],
+ "start": 6983.48
+ }
+ },
+ {
+ "key": "5i5mj",
+ "text": "Yes, Senator, if you delete your account, we should get rid of all of your information you should or we do you we do.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6993.34,
+ "end": 6994.02,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 14409
+ },
+ {
+ "start": 6994.02,
+ "end": 6994.52,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 14410
+ },
+ {
+ "start": 6994.52,
+ "end": 6994.66,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 14411
+ },
+ {
+ "start": 6994.66,
+ "end": 6994.78,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14412
+ },
+ {
+ "start": 6994.78,
+ "end": 6995.12,
+ "confidence": 0,
+ "word": "delete",
+ "punct": "delete",
+ "index": 14413
+ },
+ {
+ "start": 6995.12,
+ "end": 6995.28,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 14414
+ },
+ {
+ "start": 6995.28,
+ "end": 6995.6,
+ "confidence": 0,
+ "word": "account,",
+ "punct": "account,",
+ "index": 14415
+ },
+ {
+ "start": 6995.6,
+ "end": 6995.78,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14416
+ },
+ {
+ "start": 6995.78,
+ "end": 6996.08,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 14417
+ },
+ {
+ "start": 6996.08,
+ "end": 6996.22,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 14418
+ },
+ {
+ "start": 6996.22,
+ "end": 6996.4,
+ "confidence": 0,
+ "word": "rid",
+ "punct": "rid",
+ "index": 14419
+ },
+ {
+ "start": 6996.4,
+ "end": 6996.5,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14420
+ },
+ {
+ "start": 6996.5,
+ "end": 6996.64,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 14421
+ },
+ {
+ "start": 6996.64,
+ "end": 6996.72,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14422
+ },
+ {
+ "start": 6996.72,
+ "end": 6996.88,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 14423
+ },
+ {
+ "start": 6996.88,
+ "end": 6997.38,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 14424
+ },
+ {
+ "start": 6997.38,
+ "end": 6997.88,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14425
+ },
+ {
+ "start": 6997.88,
+ "end": 6998.18,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 14426
+ },
+ {
+ "start": 6998.18,
+ "end": 6998.32,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 14427
+ },
+ {
+ "start": 6998.32,
+ "end": 6998.5,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14428
+ },
+ {
+ "start": 6998.5,
+ "end": 6998.68,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 14429
+ },
+ {
+ "start": 6998.68,
+ "end": 6999,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14430
+ },
+ {
+ "start": 6999,
+ "end": 6999.54,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14431
+ },
+ {
+ "start": 6999.54,
+ "end": 6999.74,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do.",
+ "index": 14432
+ }
+ ],
+ "start": 6993.34
+ }
+ },
+ {
+ "key": "f6vod",
+ "text": "How about third parties that you have contracted with to use some of that underlying information, perhaps to target advertising for themselves.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 6999.74,
+ "end": 7000,
+ "confidence": 0,
+ "word": "how",
+ "punct": "How",
+ "index": 14433
+ },
+ {
+ "start": 7000,
+ "end": 7000.2,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 14434
+ },
+ {
+ "start": 7000.2,
+ "end": 7000.58,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 14435
+ },
+ {
+ "start": 7000.58,
+ "end": 7000.98,
+ "confidence": 0,
+ "word": "parties",
+ "punct": "parties",
+ "index": 14436
+ },
+ {
+ "start": 7000.98,
+ "end": 7001.22,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14437
+ },
+ {
+ "start": 7001.22,
+ "end": 7001.46,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14438
+ },
+ {
+ "start": 7001.46,
+ "end": 7002.12,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 14439
+ },
+ {
+ "start": 7002.12,
+ "end": 7003.12,
+ "confidence": 0,
+ "word": "contracted",
+ "punct": "contracted",
+ "index": 14440
+ },
+ {
+ "start": 7003.12,
+ "end": 7003.38,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 14441
+ },
+ {
+ "start": 7003.38,
+ "end": 7003.54,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14442
+ },
+ {
+ "start": 7003.54,
+ "end": 7003.9,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 14443
+ },
+ {
+ "start": 7003.9,
+ "end": 7004.5,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 14444
+ },
+ {
+ "start": 7004.5,
+ "end": 7004.6,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14445
+ },
+ {
+ "start": 7004.6,
+ "end": 7004.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14446
+ },
+ {
+ "start": 7004.8,
+ "end": 7005.62,
+ "confidence": 0,
+ "word": "underlying",
+ "punct": "underlying",
+ "index": 14447
+ },
+ {
+ "start": 7005.62,
+ "end": 7006.28,
+ "confidence": 0,
+ "word": "information,",
+ "punct": "information,",
+ "index": 14448
+ },
+ {
+ "start": 7006.28,
+ "end": 7006.74,
+ "confidence": 0,
+ "word": "perhaps",
+ "punct": "perhaps",
+ "index": 14449
+ },
+ {
+ "start": 7006.74,
+ "end": 7007.4,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14450
+ },
+ {
+ "start": 7007.4,
+ "end": 7007.82,
+ "confidence": 0,
+ "word": "target",
+ "punct": "target",
+ "index": 14451
+ },
+ {
+ "start": 7007.82,
+ "end": 7008.62,
+ "confidence": 0,
+ "word": "advertising",
+ "punct": "advertising",
+ "index": 14452
+ },
+ {
+ "start": 7008.62,
+ "end": 7009.44,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14453
+ },
+ {
+ "start": 7009.44,
+ "end": 7009.94,
+ "confidence": 0,
+ "word": "themselves",
+ "punct": "themselves.",
+ "index": 14454
+ }
+ ],
+ "start": 6999.74
+ }
+ },
+ {
+ "key": "fn82u",
+ "text": "You can with do you call back that information as well.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7009.94,
+ "end": 7010.12,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 14455
+ },
+ {
+ "start": 7010.12,
+ "end": 7011.98,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 14456
+ },
+ {
+ "start": 7011.98,
+ "end": 7012.54,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 14457
+ },
+ {
+ "start": 7012.54,
+ "end": 7012.82,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 14458
+ },
+ {
+ "start": 7012.82,
+ "end": 7012.96,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14459
+ },
+ {
+ "start": 7012.96,
+ "end": 7013.28,
+ "confidence": 0,
+ "word": "call",
+ "punct": "call",
+ "index": 14460
+ },
+ {
+ "start": 7013.28,
+ "end": 7013.52,
+ "confidence": 0,
+ "word": "back",
+ "punct": "back",
+ "index": 14461
+ },
+ {
+ "start": 7013.52,
+ "end": 7014.32,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14462
+ },
+ {
+ "start": 7014.32,
+ "end": 7014.92,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 14463
+ },
+ {
+ "start": 7014.92,
+ "end": 7015.08,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 14464
+ },
+ {
+ "start": 7015.08,
+ "end": 7015.32,
+ "confidence": 0,
+ "word": "well",
+ "punct": "well.",
+ "index": 14465
+ }
+ ],
+ "start": 7009.94
+ }
+ },
+ {
+ "key": "7mod2",
+ "text": "Or does that remain in their senator, this is actually a very important question I'm glad you brought this up because there's a very common misperception about Facebook that we sell data to advertisers and we do not sell data to advertisers.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7015.32,
+ "end": 7015.42,
+ "confidence": 0,
+ "word": "or",
+ "punct": "Or",
+ "index": 14466
+ },
+ {
+ "start": 7015.42,
+ "end": 7015.76,
+ "confidence": 0,
+ "word": "does",
+ "punct": "does",
+ "index": 14467
+ },
+ {
+ "start": 7015.76,
+ "end": 7015.94,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14468
+ },
+ {
+ "start": 7015.94,
+ "end": 7016.34,
+ "confidence": 0,
+ "word": "remain",
+ "punct": "remain",
+ "index": 14469
+ },
+ {
+ "start": 7016.34,
+ "end": 7016.44,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 14470
+ },
+ {
+ "start": 7016.44,
+ "end": 7017,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 14471
+ },
+ {
+ "start": 7017,
+ "end": 7017.98,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "senator,",
+ "index": 14472
+ },
+ {
+ "start": 7017.98,
+ "end": 7018.14,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 14473
+ },
+ {
+ "start": 7018.14,
+ "end": 7018.24,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14474
+ },
+ {
+ "start": 7018.24,
+ "end": 7018.52,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 14475
+ },
+ {
+ "start": 7018.52,
+ "end": 7018.6,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14476
+ },
+ {
+ "start": 7018.6,
+ "end": 7018.84,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 14477
+ },
+ {
+ "start": 7018.84,
+ "end": 7019.26,
+ "confidence": 0,
+ "word": "important",
+ "punct": "important",
+ "index": 14478
+ },
+ {
+ "start": 7019.26,
+ "end": 7019.58,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question",
+ "index": 14479
+ },
+ {
+ "start": 7019.58,
+ "end": 7019.8,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 14480
+ },
+ {
+ "start": 7019.8,
+ "end": 7020,
+ "confidence": 0,
+ "word": "glad",
+ "punct": "glad",
+ "index": 14481
+ },
+ {
+ "start": 7020,
+ "end": 7020.16,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14482
+ },
+ {
+ "start": 7020.16,
+ "end": 7020.38,
+ "confidence": 0,
+ "word": "brought",
+ "punct": "brought",
+ "index": 14483
+ },
+ {
+ "start": 7020.38,
+ "end": 7020.52,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 14484
+ },
+ {
+ "start": 7020.52,
+ "end": 7020.7,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 14485
+ },
+ {
+ "start": 7020.7,
+ "end": 7020.94,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 14486
+ },
+ {
+ "start": 7020.94,
+ "end": 7021.18,
+ "confidence": 0,
+ "word": "there's",
+ "punct": "there's",
+ "index": 14487
+ },
+ {
+ "start": 7021.18,
+ "end": 7021.52,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14488
+ },
+ {
+ "start": 7021.52,
+ "end": 7021.8,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 14489
+ },
+ {
+ "start": 7021.8,
+ "end": 7022.16,
+ "confidence": 0,
+ "word": "common",
+ "punct": "common",
+ "index": 14490
+ },
+ {
+ "start": 7022.16,
+ "end": 7022.88,
+ "confidence": 0,
+ "word": "misperception",
+ "punct": "misperception",
+ "index": 14491
+ },
+ {
+ "start": 7022.88,
+ "end": 7023.2,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 14492
+ },
+ {
+ "start": 7023.2,
+ "end": 7023.68,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14493
+ },
+ {
+ "start": 7023.68,
+ "end": 7024.14,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14494
+ },
+ {
+ "start": 7024.14,
+ "end": 7024.32,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14495
+ },
+ {
+ "start": 7024.32,
+ "end": 7024.62,
+ "confidence": 0,
+ "word": "sell",
+ "punct": "sell",
+ "index": 14496
+ },
+ {
+ "start": 7024.62,
+ "end": 7024.96,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 14497
+ },
+ {
+ "start": 7024.96,
+ "end": 7025.06,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14498
+ },
+ {
+ "start": 7025.06,
+ "end": 7025.78,
+ "confidence": 0,
+ "word": "advertisers",
+ "punct": "advertisers",
+ "index": 14499
+ },
+ {
+ "start": 7025.78,
+ "end": 7026.4,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14500
+ },
+ {
+ "start": 7026.4,
+ "end": 7026.56,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14501
+ },
+ {
+ "start": 7026.56,
+ "end": 7026.72,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 14502
+ },
+ {
+ "start": 7026.72,
+ "end": 7026.92,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 14503
+ },
+ {
+ "start": 7026.92,
+ "end": 7027.16,
+ "confidence": 0,
+ "word": "sell",
+ "punct": "sell",
+ "index": 14504
+ },
+ {
+ "start": 7027.16,
+ "end": 7027.4,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 14505
+ },
+ {
+ "start": 7027.4,
+ "end": 7027.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14506
+ },
+ {
+ "start": 7027.48,
+ "end": 7028.1,
+ "confidence": 0,
+ "word": "advertisers",
+ "punct": "advertisers.",
+ "index": 14507
+ }
+ ],
+ "start": 7015.32
+ }
+ },
+ {
+ "key": "ark96",
+ "text": "We don't sell eerily rented.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7028.1,
+ "end": 7028.32,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 14508
+ },
+ {
+ "start": 7028.32,
+ "end": 7028.48,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 14509
+ },
+ {
+ "start": 7028.48,
+ "end": 7028.64,
+ "confidence": 0,
+ "word": "sell",
+ "punct": "sell",
+ "index": 14510
+ },
+ {
+ "start": 7028.64,
+ "end": 7029.32,
+ "confidence": 0,
+ "word": "eerily",
+ "punct": "eerily",
+ "index": 14511
+ },
+ {
+ "start": 7029.32,
+ "end": 7030.4,
+ "confidence": 0,
+ "word": "rented",
+ "punct": "rented.",
+ "index": 14512
+ }
+ ],
+ "start": 7028.1
+ }
+ },
+ {
+ "key": "1d4gn",
+ "text": "What we allow is for advertisers to tell us who they want to reach.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7030.4,
+ "end": 7031.26,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 14513
+ },
+ {
+ "start": 7031.26,
+ "end": 7031.42,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14514
+ },
+ {
+ "start": 7031.42,
+ "end": 7031.76,
+ "confidence": 0,
+ "word": "allow",
+ "punct": "allow",
+ "index": 14515
+ },
+ {
+ "start": 7031.76,
+ "end": 7032.1,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14516
+ },
+ {
+ "start": 7032.1,
+ "end": 7032.32,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14517
+ },
+ {
+ "start": 7032.32,
+ "end": 7033.02,
+ "confidence": 0,
+ "word": "advertisers",
+ "punct": "advertisers",
+ "index": 14518
+ },
+ {
+ "start": 7033.02,
+ "end": 7033.24,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14519
+ },
+ {
+ "start": 7033.24,
+ "end": 7033.9,
+ "confidence": 0,
+ "word": "tell",
+ "punct": "tell",
+ "index": 14520
+ },
+ {
+ "start": 7033.9,
+ "end": 7034.04,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 14521
+ },
+ {
+ "start": 7034.04,
+ "end": 7034.22,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 14522
+ },
+ {
+ "start": 7034.22,
+ "end": 7034.4,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 14523
+ },
+ {
+ "start": 7034.4,
+ "end": 7034.54,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 14524
+ },
+ {
+ "start": 7034.54,
+ "end": 7034.62,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14525
+ },
+ {
+ "start": 7034.62,
+ "end": 7034.84,
+ "confidence": 0,
+ "word": "reach",
+ "punct": "reach.",
+ "index": 14526
+ }
+ ],
+ "start": 7030.4
+ }
+ },
+ {
+ "key": "2bmgj",
+ "text": "And then we do the placement.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7034.84,
+ "end": 7035.62,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 14527
+ },
+ {
+ "start": 7035.62,
+ "end": 7035.82,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 14528
+ },
+ {
+ "start": 7035.82,
+ "end": 7036.12,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14529
+ },
+ {
+ "start": 7036.12,
+ "end": 7036.3,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 14530
+ },
+ {
+ "start": 7036.3,
+ "end": 7036.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14531
+ },
+ {
+ "start": 7036.5,
+ "end": 7036.92,
+ "confidence": 0,
+ "word": "placement",
+ "punct": "placement.",
+ "index": 14532
+ }
+ ],
+ "start": 7034.84
+ }
+ },
+ {
+ "key": "vkus",
+ "text": "So if an advertiser comes to us and says, all right I'm a ski shop.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7036.92,
+ "end": 7037.44,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 14533
+ },
+ {
+ "start": 7037.44,
+ "end": 7037.84,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 14534
+ },
+ {
+ "start": 7037.84,
+ "end": 7037.96,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 14535
+ },
+ {
+ "start": 7037.96,
+ "end": 7038.54,
+ "confidence": 0,
+ "word": "advertiser",
+ "punct": "advertiser",
+ "index": 14536
+ },
+ {
+ "start": 7038.54,
+ "end": 7038.78,
+ "confidence": 0,
+ "word": "comes",
+ "punct": "comes",
+ "index": 14537
+ },
+ {
+ "start": 7038.78,
+ "end": 7038.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14538
+ },
+ {
+ "start": 7038.88,
+ "end": 7038.98,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 14539
+ },
+ {
+ "start": 7038.98,
+ "end": 7039.14,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14540
+ },
+ {
+ "start": 7039.14,
+ "end": 7039.44,
+ "confidence": 0,
+ "word": "says,",
+ "punct": "says,",
+ "index": 14541
+ },
+ {
+ "start": 7039.44,
+ "end": 7040.06,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 14542
+ },
+ {
+ "start": 7040.06,
+ "end": 7040.26,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 14543
+ },
+ {
+ "start": 7040.26,
+ "end": 7040.62,
+ "confidence": 0,
+ "word": "i'm",
+ "punct": "I'm",
+ "index": 14544
+ },
+ {
+ "start": 7040.62,
+ "end": 7040.74,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14545
+ },
+ {
+ "start": 7040.74,
+ "end": 7041.1,
+ "confidence": 0,
+ "word": "ski",
+ "punct": "ski",
+ "index": 14546
+ },
+ {
+ "start": 7041.1,
+ "end": 7041.44,
+ "confidence": 0,
+ "word": "shop",
+ "punct": "shop.",
+ "index": 14547
+ }
+ ],
+ "start": 7036.92
+ }
+ },
+ {
+ "key": "blfsf",
+ "text": "And I want to sell skis to women.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7041.44,
+ "end": 7041.68,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 14548
+ },
+ {
+ "start": 7041.68,
+ "end": 7041.88,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14549
+ },
+ {
+ "start": 7041.88,
+ "end": 7042.3,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 14550
+ },
+ {
+ "start": 7042.3,
+ "end": 7042.38,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14551
+ },
+ {
+ "start": 7042.38,
+ "end": 7042.62,
+ "confidence": 0,
+ "word": "sell",
+ "punct": "sell",
+ "index": 14552
+ },
+ {
+ "start": 7042.62,
+ "end": 7043.12,
+ "confidence": 0,
+ "word": "skis",
+ "punct": "skis",
+ "index": 14553
+ },
+ {
+ "start": 7043.12,
+ "end": 7043.42,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14554
+ },
+ {
+ "start": 7043.42,
+ "end": 7044.62,
+ "confidence": 0,
+ "word": "women",
+ "punct": "women.",
+ "index": 14555
+ }
+ ],
+ "start": 7041.44
+ }
+ },
+ {
+ "key": "bp8us",
+ "text": "Then we might have some sense because people shared skiing related content or said they were interested in that they shared.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7044.62,
+ "end": 7045.34,
+ "confidence": 0,
+ "word": "then",
+ "punct": "Then",
+ "index": 14556
+ },
+ {
+ "start": 7045.34,
+ "end": 7046.06,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14557
+ },
+ {
+ "start": 7046.06,
+ "end": 7046.34,
+ "confidence": 0,
+ "word": "might",
+ "punct": "might",
+ "index": 14558
+ },
+ {
+ "start": 7046.34,
+ "end": 7046.6,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 14559
+ },
+ {
+ "start": 7046.6,
+ "end": 7046.84,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 14560
+ },
+ {
+ "start": 7046.84,
+ "end": 7047.16,
+ "confidence": 0,
+ "word": "sense",
+ "punct": "sense",
+ "index": 14561
+ },
+ {
+ "start": 7047.16,
+ "end": 7047.44,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 14562
+ },
+ {
+ "start": 7047.44,
+ "end": 7047.68,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 14563
+ },
+ {
+ "start": 7047.68,
+ "end": 7048.1,
+ "confidence": 0,
+ "word": "shared",
+ "punct": "shared",
+ "index": 14564
+ },
+ {
+ "start": 7048.1,
+ "end": 7048.74,
+ "confidence": 0,
+ "word": "skiing",
+ "punct": "skiing",
+ "index": 14565
+ },
+ {
+ "start": 7048.74,
+ "end": 7049.1,
+ "confidence": 0,
+ "word": "related",
+ "punct": "related",
+ "index": 14566
+ },
+ {
+ "start": 7049.1,
+ "end": 7049.5,
+ "confidence": 0,
+ "word": "content",
+ "punct": "content",
+ "index": 14567
+ },
+ {
+ "start": 7049.5,
+ "end": 7049.64,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 14568
+ },
+ {
+ "start": 7049.64,
+ "end": 7049.84,
+ "confidence": 0,
+ "word": "said",
+ "punct": "said",
+ "index": 14569
+ },
+ {
+ "start": 7049.84,
+ "end": 7049.98,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 14570
+ },
+ {
+ "start": 7049.98,
+ "end": 7050.14,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 14571
+ },
+ {
+ "start": 7050.14,
+ "end": 7050.62,
+ "confidence": 0,
+ "word": "interested",
+ "punct": "interested",
+ "index": 14572
+ },
+ {
+ "start": 7050.62,
+ "end": 7050.74,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 14573
+ },
+ {
+ "start": 7050.74,
+ "end": 7051.42,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14574
+ },
+ {
+ "start": 7051.42,
+ "end": 7052.02,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 14575
+ },
+ {
+ "start": 7052.02,
+ "end": 7052.32,
+ "confidence": 0,
+ "word": "shared",
+ "punct": "shared.",
+ "index": 14576
+ }
+ ],
+ "start": 7044.62
+ }
+ },
+ {
+ "key": "egb3f",
+ "text": "Whether they're a woman and then we can show the ads to the right people without that data.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7052.32,
+ "end": 7052.64,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "Whether",
+ "index": 14577
+ },
+ {
+ "start": 7052.64,
+ "end": 7052.88,
+ "confidence": 0,
+ "word": "they're",
+ "punct": "they're",
+ "index": 14578
+ },
+ {
+ "start": 7052.88,
+ "end": 7052.92,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14579
+ },
+ {
+ "start": 7052.92,
+ "end": 7053.18,
+ "confidence": 0,
+ "word": "woman",
+ "punct": "woman",
+ "index": 14580
+ },
+ {
+ "start": 7053.18,
+ "end": 7053.74,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14581
+ },
+ {
+ "start": 7053.74,
+ "end": 7053.9,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 14582
+ },
+ {
+ "start": 7053.9,
+ "end": 7054.04,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14583
+ },
+ {
+ "start": 7054.04,
+ "end": 7054.2,
+ "confidence": 0,
+ "word": "can",
+ "punct": "can",
+ "index": 14584
+ },
+ {
+ "start": 7054.2,
+ "end": 7054.42,
+ "confidence": 0,
+ "word": "show",
+ "punct": "show",
+ "index": 14585
+ },
+ {
+ "start": 7054.42,
+ "end": 7054.54,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14586
+ },
+ {
+ "start": 7054.54,
+ "end": 7054.76,
+ "confidence": 0,
+ "word": "ads",
+ "punct": "ads",
+ "index": 14587
+ },
+ {
+ "start": 7054.76,
+ "end": 7054.9,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14588
+ },
+ {
+ "start": 7054.9,
+ "end": 7055,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14589
+ },
+ {
+ "start": 7055,
+ "end": 7055.2,
+ "confidence": 0,
+ "word": "right",
+ "punct": "right",
+ "index": 14590
+ },
+ {
+ "start": 7055.2,
+ "end": 7055.46,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 14591
+ },
+ {
+ "start": 7055.46,
+ "end": 7055.8,
+ "confidence": 0,
+ "word": "without",
+ "punct": "without",
+ "index": 14592
+ },
+ {
+ "start": 7055.8,
+ "end": 7056.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14593
+ },
+ {
+ "start": 7056.36,
+ "end": 7056.62,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data.",
+ "index": 14594
+ }
+ ],
+ "start": 7052.32
+ }
+ },
+ {
+ "key": "aqn6o",
+ "text": "Ever changing hands and going to the advertiser that's a very fundamental part of how our model works and something that is often misunderstood, so I appreciate that you brought that up.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7056.62,
+ "end": 7056.94,
+ "confidence": 0,
+ "word": "ever",
+ "punct": "Ever",
+ "index": 14595
+ },
+ {
+ "start": 7056.94,
+ "end": 7057.3,
+ "confidence": 0,
+ "word": "changing",
+ "punct": "changing",
+ "index": 14596
+ },
+ {
+ "start": 7057.3,
+ "end": 7057.7,
+ "confidence": 0,
+ "word": "hands",
+ "punct": "hands",
+ "index": 14597
+ },
+ {
+ "start": 7057.7,
+ "end": 7058.26,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14598
+ },
+ {
+ "start": 7058.26,
+ "end": 7058.52,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 14599
+ },
+ {
+ "start": 7058.52,
+ "end": 7058.68,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14600
+ },
+ {
+ "start": 7058.68,
+ "end": 7058.78,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14601
+ },
+ {
+ "start": 7058.78,
+ "end": 7059.36,
+ "confidence": 0,
+ "word": "advertiser",
+ "punct": "advertiser",
+ "index": 14602
+ },
+ {
+ "start": 7059.36,
+ "end": 7059.56,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 14603
+ },
+ {
+ "start": 7059.56,
+ "end": 7059.64,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14604
+ },
+ {
+ "start": 7059.64,
+ "end": 7059.92,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 14605
+ },
+ {
+ "start": 7059.92,
+ "end": 7060.48,
+ "confidence": 0,
+ "word": "fundamental",
+ "punct": "fundamental",
+ "index": 14606
+ },
+ {
+ "start": 7060.48,
+ "end": 7060.72,
+ "confidence": 0,
+ "word": "part",
+ "punct": "part",
+ "index": 14607
+ },
+ {
+ "start": 7060.72,
+ "end": 7060.8,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14608
+ },
+ {
+ "start": 7060.8,
+ "end": 7060.94,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 14609
+ },
+ {
+ "start": 7060.94,
+ "end": 7061.1,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 14610
+ },
+ {
+ "start": 7061.1,
+ "end": 7061.38,
+ "confidence": 0,
+ "word": "model",
+ "punct": "model",
+ "index": 14611
+ },
+ {
+ "start": 7061.38,
+ "end": 7061.64,
+ "confidence": 0,
+ "word": "works",
+ "punct": "works",
+ "index": 14612
+ },
+ {
+ "start": 7061.64,
+ "end": 7062.18,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14613
+ },
+ {
+ "start": 7062.18,
+ "end": 7062.46,
+ "confidence": 0,
+ "word": "something",
+ "punct": "something",
+ "index": 14614
+ },
+ {
+ "start": 7062.46,
+ "end": 7062.58,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14615
+ },
+ {
+ "start": 7062.58,
+ "end": 7062.76,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14616
+ },
+ {
+ "start": 7062.76,
+ "end": 7063.32,
+ "confidence": 0,
+ "word": "often",
+ "punct": "often",
+ "index": 14617
+ },
+ {
+ "start": 7063.32,
+ "end": 7064,
+ "confidence": 0,
+ "word": "misunderstood,",
+ "punct": "misunderstood,",
+ "index": 14618
+ },
+ {
+ "start": 7064,
+ "end": 7064.18,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 14619
+ },
+ {
+ "start": 7064.18,
+ "end": 7064.86,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14620
+ },
+ {
+ "start": 7064.86,
+ "end": 7065.24,
+ "confidence": 0,
+ "word": "appreciate",
+ "punct": "appreciate",
+ "index": 14621
+ },
+ {
+ "start": 7065.24,
+ "end": 7065.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14622
+ },
+ {
+ "start": 7065.36,
+ "end": 7065.48,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14623
+ },
+ {
+ "start": 7065.48,
+ "end": 7065.68,
+ "confidence": 0,
+ "word": "brought",
+ "punct": "brought",
+ "index": 14624
+ },
+ {
+ "start": 7065.68,
+ "end": 7065.8,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14625
+ },
+ {
+ "start": 7065.8,
+ "end": 7066.42,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up.",
+ "index": 14626
+ }
+ ],
+ "start": 7056.62
+ }
+ },
+ {
+ "key": "3sghj",
+ "text": "Thank you, Senator Cornyn.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7066.42,
+ "end": 7067.08,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 14627
+ },
+ {
+ "start": 7067.08,
+ "end": 7067.2,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 14628
+ },
+ {
+ "start": 7067.2,
+ "end": 7067.44,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 14629
+ },
+ {
+ "start": 7067.44,
+ "end": 7067.78,
+ "confidence": 0,
+ "word": "cornyn",
+ "punct": "Cornyn.",
+ "index": 14630
+ }
+ ],
+ "start": 7066.42
+ }
+ },
+ {
+ "key": "4tif6",
+ "text": "We had indicated earlier on that we would take a couple of breaks.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7067.78,
+ "end": 7068.5,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 14631
+ },
+ {
+ "start": 7068.5,
+ "end": 7068.62,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 14632
+ },
+ {
+ "start": 7068.62,
+ "end": 7069.04,
+ "confidence": 0,
+ "word": "indicated",
+ "punct": "indicated",
+ "index": 14633
+ },
+ {
+ "start": 7069.04,
+ "end": 7069.42,
+ "confidence": 0,
+ "word": "earlier",
+ "punct": "earlier",
+ "index": 14634
+ },
+ {
+ "start": 7069.42,
+ "end": 7069.6,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 14635
+ },
+ {
+ "start": 7069.6,
+ "end": 7069.76,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14636
+ },
+ {
+ "start": 7069.76,
+ "end": 7069.92,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14637
+ },
+ {
+ "start": 7069.92,
+ "end": 7070.18,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 14638
+ },
+ {
+ "start": 7070.18,
+ "end": 7070.88,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 14639
+ },
+ {
+ "start": 7070.88,
+ "end": 7070.92,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14640
+ },
+ {
+ "start": 7070.92,
+ "end": 7071.22,
+ "confidence": 0,
+ "word": "couple",
+ "punct": "couple",
+ "index": 14641
+ },
+ {
+ "start": 7071.22,
+ "end": 7071.32,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14642
+ },
+ {
+ "start": 7071.32,
+ "end": 7071.56,
+ "confidence": 0,
+ "word": "breaks",
+ "punct": "breaks.",
+ "index": 14643
+ }
+ ],
+ "start": 7067.78
+ }
+ },
+ {
+ "key": "4g982",
+ "text": "Give our witness, an opportunity.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7071.56,
+ "end": 7071.74,
+ "confidence": 0,
+ "word": "give",
+ "punct": "Give",
+ "index": 14644
+ },
+ {
+ "start": 7071.74,
+ "end": 7071.86,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 14645
+ },
+ {
+ "start": 7071.86,
+ "end": 7072.16,
+ "confidence": 0,
+ "word": "witness,",
+ "punct": "witness,",
+ "index": 14646
+ },
+ {
+ "start": 7072.16,
+ "end": 7072.26,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 14647
+ },
+ {
+ "start": 7072.26,
+ "end": 7072.92,
+ "confidence": 0,
+ "word": "opportunity",
+ "punct": "opportunity.",
+ "index": 14648
+ }
+ ],
+ "start": 7071.56
+ }
+ },
+ {
+ "key": "av05t",
+ "text": "And I think we've been going now for just under two hours.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7072.92,
+ "end": 7074,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 14649
+ },
+ {
+ "start": 7074,
+ "end": 7074.12,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14650
+ },
+ {
+ "start": 7074.12,
+ "end": 7074.3,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 14651
+ },
+ {
+ "start": 7074.3,
+ "end": 7074.48,
+ "confidence": 0,
+ "word": "we've",
+ "punct": "we've",
+ "index": 14652
+ },
+ {
+ "start": 7074.48,
+ "end": 7074.64,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 14653
+ },
+ {
+ "start": 7074.64,
+ "end": 7074.84,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 14654
+ },
+ {
+ "start": 7074.84,
+ "end": 7075,
+ "confidence": 0,
+ "word": "now",
+ "punct": "now",
+ "index": 14655
+ },
+ {
+ "start": 7075,
+ "end": 7075.16,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14656
+ },
+ {
+ "start": 7075.16,
+ "end": 7075.36,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 14657
+ },
+ {
+ "start": 7075.36,
+ "end": 7075.64,
+ "confidence": 0,
+ "word": "under",
+ "punct": "under",
+ "index": 14658
+ },
+ {
+ "start": 7075.64,
+ "end": 7075.84,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two",
+ "index": 14659
+ },
+ {
+ "start": 7075.84,
+ "end": 7076.2,
+ "confidence": 0,
+ "word": "hours",
+ "punct": "hours.",
+ "index": 14660
+ }
+ ],
+ "start": 7072.92
+ }
+ },
+ {
+ "key": "8hm0o",
+ "text": "So I think we'll do is do a few more.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7076.2,
+ "end": 7077.04,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 14661
+ },
+ {
+ "start": 7077.04,
+ "end": 7077.6,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14662
+ },
+ {
+ "start": 7077.6,
+ "end": 7077.76,
+ "confidence": 0,
+ "word": "think",
+ "punct": "think",
+ "index": 14663
+ },
+ {
+ "start": 7077.76,
+ "end": 7078.02,
+ "confidence": 0,
+ "word": "we'll",
+ "punct": "we'll",
+ "index": 14664
+ },
+ {
+ "start": 7078.02,
+ "end": 7078.12,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 14665
+ },
+ {
+ "start": 7078.12,
+ "end": 7078.36,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14666
+ },
+ {
+ "start": 7078.36,
+ "end": 7078.52,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 14667
+ },
+ {
+ "start": 7078.52,
+ "end": 7078.56,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14668
+ },
+ {
+ "start": 7078.56,
+ "end": 7078.72,
+ "confidence": 0,
+ "word": "few",
+ "punct": "few",
+ "index": 14669
+ },
+ {
+ "start": 7078.72,
+ "end": 7078.9,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more.",
+ "index": 14670
+ }
+ ],
+ "start": 7076.2
+ }
+ },
+ {
+ "key": "9e0hr",
+ "text": "Er, Burger are you do, you want to keep going, maybe 15 minutes, okay?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7078.9,
+ "end": 7079.18,
+ "confidence": 0,
+ "word": "er,",
+ "punct": "Er,",
+ "index": 14671
+ },
+ {
+ "start": 7079.18,
+ "end": 7079.42,
+ "confidence": 0,
+ "word": "burger",
+ "punct": "Burger",
+ "index": 14672
+ },
+ {
+ "start": 7079.42,
+ "end": 7079.66,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 14673
+ },
+ {
+ "start": 7079.66,
+ "end": 7080.78,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14674
+ },
+ {
+ "start": 7080.78,
+ "end": 7082.2,
+ "confidence": 0,
+ "word": "do,",
+ "punct": "do,",
+ "index": 14675
+ },
+ {
+ "start": 7082.2,
+ "end": 7082.32,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14676
+ },
+ {
+ "start": 7082.32,
+ "end": 7082.44,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 14677
+ },
+ {
+ "start": 7082.44,
+ "end": 7082.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14678
+ },
+ {
+ "start": 7082.52,
+ "end": 7082.7,
+ "confidence": 0,
+ "word": "keep",
+ "punct": "keep",
+ "index": 14679
+ },
+ {
+ "start": 7082.7,
+ "end": 7082.94,
+ "confidence": 0,
+ "word": "going,",
+ "punct": "going,",
+ "index": 14680
+ },
+ {
+ "start": 7082.94,
+ "end": 7084.18,
+ "confidence": 0,
+ "word": "maybe",
+ "punct": "maybe",
+ "index": 14681
+ },
+ {
+ "start": 7084.18,
+ "end": 7084.52,
+ "confidence": 0,
+ "word": "15",
+ "punct": "15",
+ "index": 14682
+ },
+ {
+ "start": 7084.52,
+ "end": 7084.76,
+ "confidence": 0,
+ "word": "minutes,",
+ "punct": "minutes,",
+ "index": 14683
+ },
+ {
+ "start": 7084.76,
+ "end": 7085.32,
+ "confidence": 0,
+ "word": "okay",
+ "punct": "okay?",
+ "index": 14684
+ }
+ ],
+ "start": 7078.9
+ }
+ },
+ {
+ "key": "f5n3f",
+ "text": "Alright we'll keep going center.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7085.32,
+ "end": 7085.9,
+ "confidence": 0,
+ "word": "alright",
+ "punct": "Alright",
+ "index": 14685
+ },
+ {
+ "start": 7085.9,
+ "end": 7086.12,
+ "confidence": 0,
+ "word": "we'll",
+ "punct": "we'll",
+ "index": 14686
+ },
+ {
+ "start": 7086.12,
+ "end": 7086.3,
+ "confidence": 0,
+ "word": "keep",
+ "punct": "keep",
+ "index": 14687
+ },
+ {
+ "start": 7086.3,
+ "end": 7086.58,
+ "confidence": 0,
+ "word": "going",
+ "punct": "going",
+ "index": 14688
+ },
+ {
+ "start": 7086.58,
+ "end": 7086.86,
+ "confidence": 0,
+ "word": "center",
+ "punct": "center.",
+ "index": 14689
+ }
+ ],
+ "start": 7085.32
+ }
+ },
+ {
+ "key": "eoofv",
+ "text": "Blumenthal is up next and we will commence.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7086.86,
+ "end": 7087.5,
+ "confidence": 0,
+ "word": "blumenthal",
+ "punct": "Blumenthal",
+ "index": 14690
+ },
+ {
+ "start": 7087.5,
+ "end": 7088.04,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 14691
+ },
+ {
+ "start": 7088.04,
+ "end": 7088.24,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 14692
+ },
+ {
+ "start": 7088.24,
+ "end": 7088.58,
+ "confidence": 0,
+ "word": "next",
+ "punct": "next",
+ "index": 14693
+ },
+ {
+ "start": 7088.58,
+ "end": 7089.28,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14694
+ },
+ {
+ "start": 7089.28,
+ "end": 7090.32,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14695
+ },
+ {
+ "start": 7090.32,
+ "end": 7091.2,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 14696
+ },
+ {
+ "start": 7091.2,
+ "end": 7092.24,
+ "confidence": 0,
+ "word": "commence",
+ "punct": "commence.",
+ "index": 14697
+ }
+ ],
+ "start": 7086.86
+ }
+ },
+ {
+ "key": "ccc6h",
+ "text": "Thank you, Mr Chairman.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7092.24,
+ "end": 7093.16,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 14698
+ },
+ {
+ "start": 7093.16,
+ "end": 7093.28,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 14699
+ },
+ {
+ "start": 7093.28,
+ "end": 7093.52,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 14700
+ },
+ {
+ "start": 7093.52,
+ "end": 7093.88,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman.",
+ "index": 14701
+ }
+ ],
+ "start": 7092.24
+ }
+ },
+ {
+ "key": "3332o",
+ "text": "Thank you for being here today, Mr Zuckerberg.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7093.88,
+ "end": 7095.02,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 14702
+ },
+ {
+ "start": 7095.02,
+ "end": 7095.16,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14703
+ },
+ {
+ "start": 7095.16,
+ "end": 7095.3,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14704
+ },
+ {
+ "start": 7095.3,
+ "end": 7095.5,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 14705
+ },
+ {
+ "start": 7095.5,
+ "end": 7095.68,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 14706
+ },
+ {
+ "start": 7095.68,
+ "end": 7096.24,
+ "confidence": 0,
+ "word": "today,",
+ "punct": "today,",
+ "index": 14707
+ },
+ {
+ "start": 7096.24,
+ "end": 7097.32,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 14708
+ },
+ {
+ "start": 7097.32,
+ "end": 7098.5,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg.",
+ "index": 14709
+ }
+ ],
+ "start": 7093.88
+ }
+ },
+ {
+ "key": "2rk1",
+ "text": "You have told us today and you've told the world that Facebook was deceived by Alexander Kogan when he sold user information to Cambridge Analytica, correct.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7098.5,
+ "end": 7099.3,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 14710
+ },
+ {
+ "start": 7099.3,
+ "end": 7099.54,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 14711
+ },
+ {
+ "start": 7099.54,
+ "end": 7099.8,
+ "confidence": 0,
+ "word": "told",
+ "punct": "told",
+ "index": 14712
+ },
+ {
+ "start": 7099.8,
+ "end": 7100.06,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 14713
+ },
+ {
+ "start": 7100.06,
+ "end": 7100.6,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 14714
+ },
+ {
+ "start": 7100.6,
+ "end": 7101.06,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14715
+ },
+ {
+ "start": 7101.06,
+ "end": 7101.28,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 14716
+ },
+ {
+ "start": 7101.28,
+ "end": 7101.46,
+ "confidence": 0,
+ "word": "told",
+ "punct": "told",
+ "index": 14717
+ },
+ {
+ "start": 7101.46,
+ "end": 7101.6,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14718
+ },
+ {
+ "start": 7101.6,
+ "end": 7101.92,
+ "confidence": 0,
+ "word": "world",
+ "punct": "world",
+ "index": 14719
+ },
+ {
+ "start": 7101.92,
+ "end": 7102.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14720
+ },
+ {
+ "start": 7102.98,
+ "end": 7103.88,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14721
+ },
+ {
+ "start": 7103.88,
+ "end": 7104.16,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 14722
+ },
+ {
+ "start": 7104.16,
+ "end": 7104.9,
+ "confidence": 0,
+ "word": "deceived",
+ "punct": "deceived",
+ "index": 14723
+ },
+ {
+ "start": 7104.9,
+ "end": 7105.66,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 14724
+ },
+ {
+ "start": 7105.66,
+ "end": 7106.66,
+ "confidence": 0,
+ "word": "alexander",
+ "punct": "Alexander",
+ "index": 14725
+ },
+ {
+ "start": 7106.66,
+ "end": 7107.24,
+ "confidence": 0,
+ "word": "kogan",
+ "punct": "Kogan",
+ "index": 14726
+ },
+ {
+ "start": 7107.24,
+ "end": 7107.98,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 14727
+ },
+ {
+ "start": 7107.98,
+ "end": 7108.14,
+ "confidence": 0,
+ "word": "he",
+ "punct": "he",
+ "index": 14728
+ },
+ {
+ "start": 7108.14,
+ "end": 7108.7,
+ "confidence": 0,
+ "word": "sold",
+ "punct": "sold",
+ "index": 14729
+ },
+ {
+ "start": 7108.7,
+ "end": 7109.78,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 14730
+ },
+ {
+ "start": 7109.78,
+ "end": 7110.28,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 14731
+ },
+ {
+ "start": 7110.28,
+ "end": 7110.42,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14732
+ },
+ {
+ "start": 7110.42,
+ "end": 7110.82,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 14733
+ },
+ {
+ "start": 7110.82,
+ "end": 7111.44,
+ "confidence": 0,
+ "word": "analytica,",
+ "punct": "Analytica,",
+ "index": 14734
+ },
+ {
+ "start": 7111.44,
+ "end": 7112.16,
+ "confidence": 0,
+ "word": "correct",
+ "punct": "correct.",
+ "index": 14735
+ }
+ ],
+ "start": 7098.5
+ }
+ },
+ {
+ "key": "8bq5b",
+ "text": "Yes, I want to show you the terms of service that Alexander Cogan provided to Facebook and note for you that, in fact, Facebook was on notice that he could sell that user information, have you seen these terms of service before?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7112.16,
+ "end": 7113.94,
+ "confidence": 0,
+ "word": "yes,",
+ "punct": "Yes,",
+ "index": 14736
+ },
+ {
+ "start": 7113.94,
+ "end": 7113.98,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14737
+ },
+ {
+ "start": 7113.98,
+ "end": 7114.9,
+ "confidence": 0,
+ "word": "want",
+ "punct": "want",
+ "index": 14738
+ },
+ {
+ "start": 7114.9,
+ "end": 7115,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14739
+ },
+ {
+ "start": 7115,
+ "end": 7115.2,
+ "confidence": 0,
+ "word": "show",
+ "punct": "show",
+ "index": 14740
+ },
+ {
+ "start": 7115.2,
+ "end": 7115.4,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14741
+ },
+ {
+ "start": 7115.4,
+ "end": 7116.16,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14742
+ },
+ {
+ "start": 7116.16,
+ "end": 7116.52,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 14743
+ },
+ {
+ "start": 7116.52,
+ "end": 7116.68,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14744
+ },
+ {
+ "start": 7116.68,
+ "end": 7117.22,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 14745
+ },
+ {
+ "start": 7117.22,
+ "end": 7118.02,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14746
+ },
+ {
+ "start": 7118.02,
+ "end": 7119,
+ "confidence": 0,
+ "word": "alexander",
+ "punct": "Alexander",
+ "index": 14747
+ },
+ {
+ "start": 7119,
+ "end": 7119.6,
+ "confidence": 0,
+ "word": "cogan",
+ "punct": "Cogan",
+ "index": 14748
+ },
+ {
+ "start": 7119.6,
+ "end": 7120.4,
+ "confidence": 0,
+ "word": "provided",
+ "punct": "provided",
+ "index": 14749
+ },
+ {
+ "start": 7120.4,
+ "end": 7120.68,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14750
+ },
+ {
+ "start": 7120.68,
+ "end": 7122.74,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14751
+ },
+ {
+ "start": 7122.74,
+ "end": 7123.74,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14752
+ },
+ {
+ "start": 7123.74,
+ "end": 7124.28,
+ "confidence": 0,
+ "word": "note",
+ "punct": "note",
+ "index": 14753
+ },
+ {
+ "start": 7124.28,
+ "end": 7124.52,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14754
+ },
+ {
+ "start": 7124.52,
+ "end": 7125.36,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14755
+ },
+ {
+ "start": 7125.36,
+ "end": 7126.38,
+ "confidence": 0,
+ "word": "that,",
+ "punct": "that,",
+ "index": 14756
+ },
+ {
+ "start": 7126.38,
+ "end": 7127.08,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 14757
+ },
+ {
+ "start": 7127.08,
+ "end": 7127.58,
+ "confidence": 0,
+ "word": "fact,",
+ "punct": "fact,",
+ "index": 14758
+ },
+ {
+ "start": 7127.58,
+ "end": 7128.9,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14759
+ },
+ {
+ "start": 7128.9,
+ "end": 7129.92,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 14760
+ },
+ {
+ "start": 7129.92,
+ "end": 7130.34,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 14761
+ },
+ {
+ "start": 7130.34,
+ "end": 7130.78,
+ "confidence": 0,
+ "word": "notice",
+ "punct": "notice",
+ "index": 14762
+ },
+ {
+ "start": 7130.78,
+ "end": 7131.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14763
+ },
+ {
+ "start": 7131.28,
+ "end": 7131.66,
+ "confidence": 0,
+ "word": "he",
+ "punct": "he",
+ "index": 14764
+ },
+ {
+ "start": 7131.66,
+ "end": 7132,
+ "confidence": 0,
+ "word": "could",
+ "punct": "could",
+ "index": 14765
+ },
+ {
+ "start": 7132,
+ "end": 7132.54,
+ "confidence": 0,
+ "word": "sell",
+ "punct": "sell",
+ "index": 14766
+ },
+ {
+ "start": 7132.54,
+ "end": 7133.34,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14767
+ },
+ {
+ "start": 7133.34,
+ "end": 7133.64,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 14768
+ },
+ {
+ "start": 7133.64,
+ "end": 7134.18,
+ "confidence": 0,
+ "word": "information,",
+ "punct": "information,",
+ "index": 14769
+ },
+ {
+ "start": 7134.18,
+ "end": 7134.28,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 14770
+ },
+ {
+ "start": 7134.28,
+ "end": 7134.42,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14771
+ },
+ {
+ "start": 7134.42,
+ "end": 7134.76,
+ "confidence": 0,
+ "word": "seen",
+ "punct": "seen",
+ "index": 14772
+ },
+ {
+ "start": 7134.76,
+ "end": 7134.96,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 14773
+ },
+ {
+ "start": 7134.96,
+ "end": 7135.22,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 14774
+ },
+ {
+ "start": 7135.22,
+ "end": 7135.34,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14775
+ },
+ {
+ "start": 7135.34,
+ "end": 7135.68,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 14776
+ },
+ {
+ "start": 7135.68,
+ "end": 7136.04,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before?",
+ "index": 14777
+ }
+ ],
+ "start": 7112.16
+ }
+ },
+ {
+ "key": "460mt",
+ "text": "I have not who in Facebook was responsible for seeing those terms of service that put you on notice that that information could be sold.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7136.04,
+ "end": 7137.08,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 14778
+ },
+ {
+ "start": 7137.08,
+ "end": 7137.26,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 14779
+ },
+ {
+ "start": 7137.26,
+ "end": 7137.84,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 14780
+ },
+ {
+ "start": 7137.84,
+ "end": 7138.84,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 14781
+ },
+ {
+ "start": 7138.84,
+ "end": 7139.22,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 14782
+ },
+ {
+ "start": 7139.22,
+ "end": 7139.88,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14783
+ },
+ {
+ "start": 7139.88,
+ "end": 7140.24,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 14784
+ },
+ {
+ "start": 7140.24,
+ "end": 7141,
+ "confidence": 0,
+ "word": "responsible",
+ "punct": "responsible",
+ "index": 14785
+ },
+ {
+ "start": 7141,
+ "end": 7141.5,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14786
+ },
+ {
+ "start": 7141.5,
+ "end": 7141.9,
+ "confidence": 0,
+ "word": "seeing",
+ "punct": "seeing",
+ "index": 14787
+ },
+ {
+ "start": 7141.9,
+ "end": 7142.42,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 14788
+ },
+ {
+ "start": 7142.42,
+ "end": 7142.74,
+ "confidence": 0,
+ "word": "terms",
+ "punct": "terms",
+ "index": 14789
+ },
+ {
+ "start": 7142.74,
+ "end": 7142.86,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14790
+ },
+ {
+ "start": 7142.86,
+ "end": 7143.26,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 14791
+ },
+ {
+ "start": 7143.26,
+ "end": 7143.48,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14792
+ },
+ {
+ "start": 7143.48,
+ "end": 7144.28,
+ "confidence": 0,
+ "word": "put",
+ "punct": "put",
+ "index": 14793
+ },
+ {
+ "start": 7144.28,
+ "end": 7144.48,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 14794
+ },
+ {
+ "start": 7144.48,
+ "end": 7144.84,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 14795
+ },
+ {
+ "start": 7144.84,
+ "end": 7146.04,
+ "confidence": 0,
+ "word": "notice",
+ "punct": "notice",
+ "index": 14796
+ },
+ {
+ "start": 7146.04,
+ "end": 7147.02,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14797
+ },
+ {
+ "start": 7147.02,
+ "end": 7148.02,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14798
+ },
+ {
+ "start": 7148.02,
+ "end": 7148.66,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 14799
+ },
+ {
+ "start": 7148.66,
+ "end": 7149.54,
+ "confidence": 0,
+ "word": "could",
+ "punct": "could",
+ "index": 14800
+ },
+ {
+ "start": 7149.54,
+ "end": 7149.66,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 14801
+ },
+ {
+ "start": 7149.66,
+ "end": 7150.88,
+ "confidence": 0,
+ "word": "sold",
+ "punct": "sold.",
+ "index": 14802
+ }
+ ],
+ "start": 7136.04
+ }
+ },
+ {
+ "key": "12qph",
+ "text": "Senator or a review team would be responsible for that.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7150.88,
+ "end": 7151.88,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator",
+ "index": 14803
+ },
+ {
+ "start": 7151.88,
+ "end": 7152.14,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 14804
+ },
+ {
+ "start": 7152.14,
+ "end": 7152.38,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14805
+ },
+ {
+ "start": 7152.38,
+ "end": 7152.7,
+ "confidence": 0,
+ "word": "review",
+ "punct": "review",
+ "index": 14806
+ },
+ {
+ "start": 7152.7,
+ "end": 7153,
+ "confidence": 0,
+ "word": "team",
+ "punct": "team",
+ "index": 14807
+ },
+ {
+ "start": 7153,
+ "end": 7153.4,
+ "confidence": 0,
+ "word": "would",
+ "punct": "would",
+ "index": 14808
+ },
+ {
+ "start": 7153.4,
+ "end": 7153.5,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 14809
+ },
+ {
+ "start": 7153.5,
+ "end": 7154.08,
+ "confidence": 0,
+ "word": "responsible",
+ "punct": "responsible",
+ "index": 14810
+ },
+ {
+ "start": 7154.08,
+ "end": 7154.22,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 14811
+ },
+ {
+ "start": 7154.22,
+ "end": 7154.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that.",
+ "index": 14812
+ }
+ ],
+ "start": 7150.88
+ }
+ },
+ {
+ "key": "78ffm",
+ "text": "Has anyone been fired on that?",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7154.44,
+ "end": 7155.14,
+ "confidence": 0,
+ "word": "has",
+ "punct": "Has",
+ "index": 14813
+ },
+ {
+ "start": 7155.14,
+ "end": 7155.5,
+ "confidence": 0,
+ "word": "anyone",
+ "punct": "anyone",
+ "index": 14814
+ },
+ {
+ "start": 7155.5,
+ "end": 7155.74,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 14815
+ },
+ {
+ "start": 7155.74,
+ "end": 7156.16,
+ "confidence": 0,
+ "word": "fired",
+ "punct": "fired",
+ "index": 14816
+ },
+ {
+ "start": 7156.16,
+ "end": 7156.3,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 14817
+ },
+ {
+ "start": 7156.3,
+ "end": 7156.48,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that?",
+ "index": 14818
+ }
+ ],
+ "start": 7154.44
+ }
+ },
+ {
+ "key": "aiqu9",
+ "text": "A review team, Senator, not because of this doesn't that term of service conflict with the FTC order that Facebook was under at that very time that this term of service was in fact, provided to Facebook and you'll note that the FTC order specifically requires Facebook to protect privacy isn't there a conflict there.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7156.48,
+ "end": 7156.68,
+ "confidence": 0,
+ "word": "a",
+ "punct": "A",
+ "index": 14819
+ },
+ {
+ "start": 7156.68,
+ "end": 7157.48,
+ "confidence": 0,
+ "word": "review",
+ "punct": "review",
+ "index": 14820
+ },
+ {
+ "start": 7157.48,
+ "end": 7159.2,
+ "confidence": 0,
+ "word": "team,",
+ "punct": "team,",
+ "index": 14821
+ },
+ {
+ "start": 7159.2,
+ "end": 7160.9,
+ "confidence": 0,
+ "word": "senator,",
+ "punct": "Senator,",
+ "index": 14822
+ },
+ {
+ "start": 7160.9,
+ "end": 7161.8,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 14823
+ },
+ {
+ "start": 7161.8,
+ "end": 7162.14,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 14824
+ },
+ {
+ "start": 7162.14,
+ "end": 7162.26,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14825
+ },
+ {
+ "start": 7162.26,
+ "end": 7165.42,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 14826
+ },
+ {
+ "start": 7165.42,
+ "end": 7166.38,
+ "confidence": 0,
+ "word": "doesn't",
+ "punct": "doesn't",
+ "index": 14827
+ },
+ {
+ "start": 7166.38,
+ "end": 7167.06,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14828
+ },
+ {
+ "start": 7167.06,
+ "end": 7168.06,
+ "confidence": 0,
+ "word": "term",
+ "punct": "term",
+ "index": 14829
+ },
+ {
+ "start": 7168.06,
+ "end": 7168.2,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14830
+ },
+ {
+ "start": 7168.2,
+ "end": 7168.64,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 14831
+ },
+ {
+ "start": 7168.64,
+ "end": 7169.36,
+ "confidence": 0,
+ "word": "conflict",
+ "punct": "conflict",
+ "index": 14832
+ },
+ {
+ "start": 7169.36,
+ "end": 7169.84,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 14833
+ },
+ {
+ "start": 7169.84,
+ "end": 7170.28,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14834
+ },
+ {
+ "start": 7170.28,
+ "end": 7171.32,
+ "confidence": 0,
+ "word": "ftc",
+ "punct": "FTC",
+ "index": 14835
+ },
+ {
+ "start": 7171.32,
+ "end": 7172.02,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 14836
+ },
+ {
+ "start": 7172.02,
+ "end": 7173.02,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14837
+ },
+ {
+ "start": 7173.02,
+ "end": 7173.52,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14838
+ },
+ {
+ "start": 7173.52,
+ "end": 7173.68,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 14839
+ },
+ {
+ "start": 7173.68,
+ "end": 7174,
+ "confidence": 0,
+ "word": "under",
+ "punct": "under",
+ "index": 14840
+ },
+ {
+ "start": 7174,
+ "end": 7174.18,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 14841
+ },
+ {
+ "start": 7174.18,
+ "end": 7174.46,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14842
+ },
+ {
+ "start": 7174.46,
+ "end": 7174.74,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 14843
+ },
+ {
+ "start": 7174.74,
+ "end": 7175.32,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 14844
+ },
+ {
+ "start": 7175.32,
+ "end": 7176.18,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14845
+ },
+ {
+ "start": 7176.18,
+ "end": 7176.5,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 14846
+ },
+ {
+ "start": 7176.5,
+ "end": 7177.36,
+ "confidence": 0,
+ "word": "term",
+ "punct": "term",
+ "index": 14847
+ },
+ {
+ "start": 7177.36,
+ "end": 7177.46,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14848
+ },
+ {
+ "start": 7177.46,
+ "end": 7177.9,
+ "confidence": 0,
+ "word": "service",
+ "punct": "service",
+ "index": 14849
+ },
+ {
+ "start": 7177.9,
+ "end": 7178.96,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 14850
+ },
+ {
+ "start": 7178.96,
+ "end": 7179.6,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 14851
+ },
+ {
+ "start": 7179.6,
+ "end": 7180.64,
+ "confidence": 0,
+ "word": "fact,",
+ "punct": "fact,",
+ "index": 14852
+ },
+ {
+ "start": 7180.64,
+ "end": 7181.76,
+ "confidence": 0,
+ "word": "provided",
+ "punct": "provided",
+ "index": 14853
+ },
+ {
+ "start": 7181.76,
+ "end": 7181.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14854
+ },
+ {
+ "start": 7181.88,
+ "end": 7182.34,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14855
+ },
+ {
+ "start": 7182.34,
+ "end": 7182.5,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 14856
+ },
+ {
+ "start": 7182.5,
+ "end": 7182.74,
+ "confidence": 0,
+ "word": "you'll",
+ "punct": "you'll",
+ "index": 14857
+ },
+ {
+ "start": 7182.74,
+ "end": 7183.1,
+ "confidence": 0,
+ "word": "note",
+ "punct": "note",
+ "index": 14858
+ },
+ {
+ "start": 7183.1,
+ "end": 7183.78,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14859
+ },
+ {
+ "start": 7183.78,
+ "end": 7186.62,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14860
+ },
+ {
+ "start": 7186.62,
+ "end": 7187.7,
+ "confidence": 0,
+ "word": "ftc",
+ "punct": "FTC",
+ "index": 14861
+ },
+ {
+ "start": 7187.7,
+ "end": 7187.96,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 14862
+ },
+ {
+ "start": 7187.96,
+ "end": 7188.94,
+ "confidence": 0,
+ "word": "specifically",
+ "punct": "specifically",
+ "index": 14863
+ },
+ {
+ "start": 7188.94,
+ "end": 7190.1,
+ "confidence": 0,
+ "word": "requires",
+ "punct": "requires",
+ "index": 14864
+ },
+ {
+ "start": 7190.1,
+ "end": 7190.66,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 14865
+ },
+ {
+ "start": 7190.66,
+ "end": 7190.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 14866
+ },
+ {
+ "start": 7190.86,
+ "end": 7191.26,
+ "confidence": 0,
+ "word": "protect",
+ "punct": "protect",
+ "index": 14867
+ },
+ {
+ "start": 7191.26,
+ "end": 7191.88,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 14868
+ },
+ {
+ "start": 7191.88,
+ "end": 7192.06,
+ "confidence": 0,
+ "word": "isn't",
+ "punct": "isn't",
+ "index": 14869
+ },
+ {
+ "start": 7192.06,
+ "end": 7192.22,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 14870
+ },
+ {
+ "start": 7192.22,
+ "end": 7192.3,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14871
+ },
+ {
+ "start": 7192.3,
+ "end": 7192.72,
+ "confidence": 0,
+ "word": "conflict",
+ "punct": "conflict",
+ "index": 14872
+ },
+ {
+ "start": 7192.72,
+ "end": 7194.52,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there.",
+ "index": 14873
+ }
+ ],
+ "start": 7156.48
+ }
+ },
+ {
+ "key": "95lji",
+ "text": "Senator.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7194.52,
+ "end": 7195.52,
+ "confidence": 0,
+ "word": "senator",
+ "punct": "Senator.",
+ "index": 14874
+ }
+ ],
+ "start": 7194.52
+ }
+ },
+ {
+ "key": "4pmk8",
+ "text": "It certainly appears that we should have been aware that this app developer submitted a term that was in conflict with the rules of the platform.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 7195.52,
+ "end": 7195.92,
+ "confidence": 0,
+ "word": "it",
+ "punct": "It",
+ "index": 14875
+ },
+ {
+ "start": 7195.92,
+ "end": 7196.32,
+ "confidence": 0,
+ "word": "certainly",
+ "punct": "certainly",
+ "index": 14876
+ },
+ {
+ "start": 7196.32,
+ "end": 7196.82,
+ "confidence": 0,
+ "word": "appears",
+ "punct": "appears",
+ "index": 14877
+ },
+ {
+ "start": 7196.82,
+ "end": 7197.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14878
+ },
+ {
+ "start": 7197.36,
+ "end": 7197.8,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 14879
+ },
+ {
+ "start": 7197.8,
+ "end": 7198.04,
+ "confidence": 0,
+ "word": "should",
+ "punct": "should",
+ "index": 14880
+ },
+ {
+ "start": 7198.04,
+ "end": 7198.18,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 14881
+ },
+ {
+ "start": 7198.18,
+ "end": 7198.34,
+ "confidence": 0,
+ "word": "been",
+ "punct": "been",
+ "index": 14882
+ },
+ {
+ "start": 7198.34,
+ "end": 7198.62,
+ "confidence": 0,
+ "word": "aware",
+ "punct": "aware",
+ "index": 14883
+ },
+ {
+ "start": 7198.62,
+ "end": 7199,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14884
+ },
+ {
+ "start": 7199,
+ "end": 7199.46,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 14885
+ },
+ {
+ "start": 7199.46,
+ "end": 7199.7,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 14886
+ },
+ {
+ "start": 7199.7,
+ "end": 7200.14,
+ "confidence": 0,
+ "word": "developer",
+ "punct": "developer",
+ "index": 14887
+ },
+ {
+ "start": 7200.14,
+ "end": 7200.62,
+ "confidence": 0,
+ "word": "submitted",
+ "punct": "submitted",
+ "index": 14888
+ },
+ {
+ "start": 7200.62,
+ "end": 7200.7,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 14889
+ },
+ {
+ "start": 7200.7,
+ "end": 7201.12,
+ "confidence": 0,
+ "word": "term",
+ "punct": "term",
+ "index": 14890
+ },
+ {
+ "start": 7201.12,
+ "end": 7201.88,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 14891
+ },
+ {
+ "start": 7201.88,
+ "end": 7202.26,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 14892
+ },
+ {
+ "start": 7202.26,
+ "end": 7202.42,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 14893
+ },
+ {
+ "start": 7202.42,
+ "end": 7202.9,
+ "confidence": 0,
+ "word": "conflict",
+ "punct": "conflict",
+ "index": 14894
+ },
+ {
+ "start": 7202.9,
+ "end": 7203.08,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 14895
+ },
+ {
+ "start": 7203.08,
+ "end": 7203.18,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14896
+ },
+ {
+ "start": 7203.18,
+ "end": 7203.4,
+ "confidence": 0,
+ "word": "rules",
+ "punct": "rules",
+ "index": 14897
+ },
+ {
+ "start": 7203.4,
+ "end": 7203.52,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 14898
+ },
+ {
+ "start": 7203.52,
+ "end": 7203.64,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 14899
+ },
+ {
+ "start": 7203.64,
+ "end": 7204.16,
+ "confidence": 0,
+ "word": "platform",
+ "punct": "platform.",
+ "index": 14900
+ }
+ ],
+ "start": 7195.52
+ }
+ }
+ ],
+ "entityMap": {}
+}
\ No newline at end of file
diff --git a/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.draftjs.json b/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.draftjs.json
new file mode 100644
index 00000000..2c8b48f5
--- /dev/null
+++ b/demo/sample-data/Facebook-CEO-Mark-Zuckerberg-FULL-testimony-before-U.S.senate-pXq-5L2ghhg.mp4.draftjs.json
@@ -0,0 +1,1136730 @@
+{
+ "blocks": [
+ {
+ "key": "ct7ij",
+ "text": "Yeah, I I don't know the.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 5,
+ "key": 0
+ },
+ {
+ "offset": 6,
+ "length": 1,
+ "key": 1
+ },
+ {
+ "offset": 8,
+ "length": 1,
+ "key": 2
+ },
+ {
+ "offset": 10,
+ "length": 5,
+ "key": 3
+ },
+ {
+ "offset": 16,
+ "length": 4,
+ "key": 4
+ },
+ {
+ "offset": 21,
+ "length": 4,
+ "key": 5
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 0,
+ "end": 0.28,
+ "confidence": 0,
+ "word": "yeah,",
+ "punct": "Yeah,",
+ "index": 0
+ },
+ {
+ "start": 0.28,
+ "end": 27.44,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 1
+ },
+ {
+ "start": 27.44,
+ "end": 32.04,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 2
+ },
+ {
+ "start": 32.04,
+ "end": 33,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 3
+ },
+ {
+ "start": 33,
+ "end": 71.08,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 4
+ },
+ {
+ "start": 71.08,
+ "end": 228.02,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the.",
+ "index": 5
+ }
+ ],
+ "start": 0
+ }
+ },
+ {
+ "key": "6kj2o",
+ "text": "Yeah, that it.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 5,
+ "key": 6
+ },
+ {
+ "offset": 6,
+ "length": 4,
+ "key": 7
+ },
+ {
+ "offset": 11,
+ "length": 3,
+ "key": 8
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 228.02,
+ "end": 299.24,
+ "confidence": 0,
+ "word": "yeah,",
+ "punct": "Yeah,",
+ "index": 6
+ },
+ {
+ "start": 299.24,
+ "end": 300.28,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 7
+ },
+ {
+ "start": 300.28,
+ "end": 320.68,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it.",
+ "index": 8
+ }
+ ],
+ "start": 228.02
+ }
+ },
+ {
+ "key": "3th4v",
+ "text": "No, I I, like, I know.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 9
+ },
+ {
+ "offset": 4,
+ "length": 1,
+ "key": 10
+ },
+ {
+ "offset": 6,
+ "length": 2,
+ "key": 11
+ },
+ {
+ "offset": 9,
+ "length": 5,
+ "key": 12
+ },
+ {
+ "offset": 15,
+ "length": 1,
+ "key": 13
+ },
+ {
+ "offset": 17,
+ "length": 5,
+ "key": 14
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 320.68,
+ "end": 340.96,
+ "confidence": 0,
+ "word": "no,",
+ "punct": "No,",
+ "index": 9
+ },
+ {
+ "start": 340.96,
+ "end": 341.46,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 10
+ },
+ {
+ "start": 341.46,
+ "end": 342.66,
+ "confidence": 0,
+ "word": "i,",
+ "punct": "I,",
+ "index": 11
+ },
+ {
+ "start": 342.66,
+ "end": 361.68,
+ "confidence": 0,
+ "word": "like,",
+ "punct": "like,",
+ "index": 12
+ },
+ {
+ "start": 361.68,
+ "end": 367.24,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 13
+ },
+ {
+ "start": 367.24,
+ "end": 434.04,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know.",
+ "index": 14
+ }
+ ],
+ "start": 320.68
+ }
+ },
+ {
+ "key": "5llvc",
+ "text": "So to make sure once we get started down, thank you for.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 2,
+ "key": 15
+ },
+ {
+ "offset": 3,
+ "length": 2,
+ "key": 16
+ },
+ {
+ "offset": 6,
+ "length": 4,
+ "key": 17
+ },
+ {
+ "offset": 11,
+ "length": 4,
+ "key": 18
+ },
+ {
+ "offset": 16,
+ "length": 4,
+ "key": 19
+ },
+ {
+ "offset": 21,
+ "length": 2,
+ "key": 20
+ },
+ {
+ "offset": 24,
+ "length": 3,
+ "key": 21
+ },
+ {
+ "offset": 28,
+ "length": 7,
+ "key": 22
+ },
+ {
+ "offset": 36,
+ "length": 5,
+ "key": 23
+ },
+ {
+ "offset": 42,
+ "length": 5,
+ "key": 24
+ },
+ {
+ "offset": 48,
+ "length": 3,
+ "key": 25
+ },
+ {
+ "offset": 52,
+ "length": 4,
+ "key": 26
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 434.04,
+ "end": 487.98,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 15
+ },
+ {
+ "start": 487.98,
+ "end": 496.8,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 16
+ },
+ {
+ "start": 496.8,
+ "end": 496.96,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 17
+ },
+ {
+ "start": 496.96,
+ "end": 497.12,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 18
+ },
+ {
+ "start": 497.12,
+ "end": 497.32,
+ "confidence": 0,
+ "word": "once",
+ "punct": "once",
+ "index": 19
+ },
+ {
+ "start": 497.32,
+ "end": 497.46,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 20
+ },
+ {
+ "start": 497.46,
+ "end": 497.62,
+ "confidence": 0,
+ "word": "get",
+ "punct": "get",
+ "index": 21
+ },
+ {
+ "start": 497.62,
+ "end": 498.1,
+ "confidence": 0,
+ "word": "started",
+ "punct": "started",
+ "index": 22
+ },
+ {
+ "start": 498.1,
+ "end": 750.28,
+ "confidence": 0,
+ "word": "down,",
+ "punct": "down,",
+ "index": 23
+ },
+ {
+ "start": 750.28,
+ "end": 751.24,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 24
+ },
+ {
+ "start": 751.24,
+ "end": 751.4,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 25
+ },
+ {
+ "start": 751.4,
+ "end": 801.26,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for.",
+ "index": 26
+ }
+ ],
+ "start": 434.04
+ }
+ },
+ {
+ "key": "btm3l",
+ "text": "So I thank on the judiciary and commerce.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 2,
+ "key": 27
+ },
+ {
+ "offset": 3,
+ "length": 1,
+ "key": 28
+ },
+ {
+ "offset": 5,
+ "length": 5,
+ "key": 29
+ },
+ {
+ "offset": 11,
+ "length": 2,
+ "key": 30
+ },
+ {
+ "offset": 14,
+ "length": 3,
+ "key": 31
+ },
+ {
+ "offset": 18,
+ "length": 9,
+ "key": 32
+ },
+ {
+ "offset": 28,
+ "length": 3,
+ "key": 33
+ },
+ {
+ "offset": 32,
+ "length": 9,
+ "key": 34
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 801.26,
+ "end": 806.54,
+ "confidence": 0,
+ "word": "so",
+ "punct": "So",
+ "index": 27
+ },
+ {
+ "start": 806.54,
+ "end": 925.4,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 28
+ },
+ {
+ "start": 925.4,
+ "end": 1191.86,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "thank",
+ "index": 29
+ },
+ {
+ "start": 1191.86,
+ "end": 1193.06,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 30
+ },
+ {
+ "start": 1193.06,
+ "end": 1193.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 31
+ },
+ {
+ "start": 1193.22,
+ "end": 1193.82,
+ "confidence": 0,
+ "word": "judiciary",
+ "punct": "judiciary",
+ "index": 32
+ },
+ {
+ "start": 1193.82,
+ "end": 1194.16,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 33
+ },
+ {
+ "start": 1194.16,
+ "end": 1194.64,
+ "confidence": 0,
+ "word": "commerce",
+ "punct": "commerce.",
+ "index": 34
+ }
+ ],
+ "start": 801.26
+ }
+ },
+ {
+ "key": "e0pbg",
+ "text": "Science and transportation will come to order.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 7,
+ "key": 35
+ },
+ {
+ "offset": 8,
+ "length": 3,
+ "key": 36
+ },
+ {
+ "offset": 12,
+ "length": 14,
+ "key": 37
+ },
+ {
+ "offset": 27,
+ "length": 4,
+ "key": 38
+ },
+ {
+ "offset": 32,
+ "length": 4,
+ "key": 39
+ },
+ {
+ "offset": 37,
+ "length": 2,
+ "key": 40
+ },
+ {
+ "offset": 40,
+ "length": 6,
+ "key": 41
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1194.64,
+ "end": 1195.12,
+ "confidence": 0,
+ "word": "science",
+ "punct": "Science",
+ "index": 35
+ },
+ {
+ "start": 1195.12,
+ "end": 1195.28,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 36
+ },
+ {
+ "start": 1195.28,
+ "end": 1196.2,
+ "confidence": 0,
+ "word": "transportation",
+ "punct": "transportation",
+ "index": 37
+ },
+ {
+ "start": 1196.2,
+ "end": 1196.9,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 38
+ },
+ {
+ "start": 1196.9,
+ "end": 1197.08,
+ "confidence": 0,
+ "word": "come",
+ "punct": "come",
+ "index": 39
+ },
+ {
+ "start": 1197.08,
+ "end": 1197.18,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 40
+ },
+ {
+ "start": 1197.18,
+ "end": 1198.16,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order.",
+ "index": 41
+ }
+ ],
+ "start": 1194.64
+ }
+ },
+ {
+ "key": "forkt",
+ "text": "We welcome everyone today's hearing on Facebook, social media privacy and the use and abuse of data, although not unprecedented.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 2,
+ "key": 42
+ },
+ {
+ "offset": 3,
+ "length": 7,
+ "key": 43
+ },
+ {
+ "offset": 11,
+ "length": 8,
+ "key": 44
+ },
+ {
+ "offset": 20,
+ "length": 7,
+ "key": 45
+ },
+ {
+ "offset": 28,
+ "length": 7,
+ "key": 46
+ },
+ {
+ "offset": 36,
+ "length": 2,
+ "key": 47
+ },
+ {
+ "offset": 39,
+ "length": 9,
+ "key": 48
+ },
+ {
+ "offset": 49,
+ "length": 6,
+ "key": 49
+ },
+ {
+ "offset": 56,
+ "length": 5,
+ "key": 50
+ },
+ {
+ "offset": 62,
+ "length": 7,
+ "key": 51
+ },
+ {
+ "offset": 70,
+ "length": 3,
+ "key": 52
+ },
+ {
+ "offset": 74,
+ "length": 3,
+ "key": 53
+ },
+ {
+ "offset": 78,
+ "length": 3,
+ "key": 54
+ },
+ {
+ "offset": 82,
+ "length": 3,
+ "key": 55
+ },
+ {
+ "offset": 86,
+ "length": 5,
+ "key": 56
+ },
+ {
+ "offset": 92,
+ "length": 2,
+ "key": 57
+ },
+ {
+ "offset": 95,
+ "length": 5,
+ "key": 58
+ },
+ {
+ "offset": 101,
+ "length": 8,
+ "key": 59
+ },
+ {
+ "offset": 110,
+ "length": 3,
+ "key": 60
+ },
+ {
+ "offset": 114,
+ "length": 14,
+ "key": 61
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1198.16,
+ "end": 1198.82,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 42
+ },
+ {
+ "start": 1198.82,
+ "end": 1199.38,
+ "confidence": 0,
+ "word": "welcome",
+ "punct": "welcome",
+ "index": 43
+ },
+ {
+ "start": 1199.38,
+ "end": 1199.94,
+ "confidence": 0,
+ "word": "everyone",
+ "punct": "everyone",
+ "index": 44
+ },
+ {
+ "start": 1199.94,
+ "end": 1200.56,
+ "confidence": 0,
+ "word": "today's",
+ "punct": "today's",
+ "index": 45
+ },
+ {
+ "start": 1200.56,
+ "end": 1201.62,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 46
+ },
+ {
+ "start": 1201.62,
+ "end": 1202.42,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 47
+ },
+ {
+ "start": 1202.42,
+ "end": 1203,
+ "confidence": 0,
+ "word": "facebook,",
+ "punct": "Facebook,",
+ "index": 48
+ },
+ {
+ "start": 1203,
+ "end": 1204.16,
+ "confidence": 0,
+ "word": "social",
+ "punct": "social",
+ "index": 49
+ },
+ {
+ "start": 1204.16,
+ "end": 1204.62,
+ "confidence": 0,
+ "word": "media",
+ "punct": "media",
+ "index": 50
+ },
+ {
+ "start": 1204.62,
+ "end": 1205.18,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 51
+ },
+ {
+ "start": 1205.18,
+ "end": 1206.24,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 52
+ },
+ {
+ "start": 1206.24,
+ "end": 1206.42,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 53
+ },
+ {
+ "start": 1206.42,
+ "end": 1206.74,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 54
+ },
+ {
+ "start": 1206.74,
+ "end": 1207.32,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 55
+ },
+ {
+ "start": 1207.32,
+ "end": 1208.34,
+ "confidence": 0,
+ "word": "abuse",
+ "punct": "abuse",
+ "index": 56
+ },
+ {
+ "start": 1208.34,
+ "end": 1208.66,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 57
+ },
+ {
+ "start": 1208.66,
+ "end": 1209.74,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 58
+ },
+ {
+ "start": 1209.74,
+ "end": 1210.66,
+ "confidence": 0,
+ "word": "although",
+ "punct": "although",
+ "index": 59
+ },
+ {
+ "start": 1210.66,
+ "end": 1210.92,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 60
+ },
+ {
+ "start": 1210.92,
+ "end": 1211.92,
+ "confidence": 0,
+ "word": "unprecedented",
+ "punct": "unprecedented.",
+ "index": 61
+ }
+ ],
+ "start": 1198.16
+ }
+ },
+ {
+ "key": "8mvi1",
+ "text": "This is a unique are the issues.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 4,
+ "key": 62
+ },
+ {
+ "offset": 5,
+ "length": 2,
+ "key": 63
+ },
+ {
+ "offset": 8,
+ "length": 1,
+ "key": 64
+ },
+ {
+ "offset": 10,
+ "length": 6,
+ "key": 65
+ },
+ {
+ "offset": 17,
+ "length": 3,
+ "key": 66
+ },
+ {
+ "offset": 21,
+ "length": 3,
+ "key": 67
+ },
+ {
+ "offset": 25,
+ "length": 7,
+ "key": 68
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1211.92,
+ "end": 1213,
+ "confidence": 0,
+ "word": "this",
+ "punct": "This",
+ "index": 62
+ },
+ {
+ "start": 1213,
+ "end": 1213.2,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 63
+ },
+ {
+ "start": 1213.2,
+ "end": 1213.26,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 64
+ },
+ {
+ "start": 1213.26,
+ "end": 1213.72,
+ "confidence": 0,
+ "word": "unique",
+ "punct": "unique",
+ "index": 65
+ },
+ {
+ "start": 1213.72,
+ "end": 1214.38,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 66
+ },
+ {
+ "start": 1214.38,
+ "end": 1215.4,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 67
+ },
+ {
+ "start": 1215.4,
+ "end": 1215.92,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues.",
+ "index": 68
+ }
+ ],
+ "start": 1211.92
+ }
+ },
+ {
+ "key": "5l24a",
+ "text": "We will consider range from data privacy and security to consumer protection and the Federal Trade Commission enforcement touching on jurisdictions of these two committees, we have 44 members between our two committees that may not seem like a large group by Facebook standards.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 2,
+ "key": 69
+ },
+ {
+ "offset": 3,
+ "length": 4,
+ "key": 70
+ },
+ {
+ "offset": 8,
+ "length": 8,
+ "key": 71
+ },
+ {
+ "offset": 17,
+ "length": 5,
+ "key": 72
+ },
+ {
+ "offset": 23,
+ "length": 4,
+ "key": 73
+ },
+ {
+ "offset": 28,
+ "length": 4,
+ "key": 74
+ },
+ {
+ "offset": 33,
+ "length": 7,
+ "key": 75
+ },
+ {
+ "offset": 41,
+ "length": 3,
+ "key": 76
+ },
+ {
+ "offset": 45,
+ "length": 8,
+ "key": 77
+ },
+ {
+ "offset": 54,
+ "length": 2,
+ "key": 78
+ },
+ {
+ "offset": 57,
+ "length": 8,
+ "key": 79
+ },
+ {
+ "offset": 66,
+ "length": 10,
+ "key": 80
+ },
+ {
+ "offset": 77,
+ "length": 3,
+ "key": 81
+ },
+ {
+ "offset": 81,
+ "length": 3,
+ "key": 82
+ },
+ {
+ "offset": 85,
+ "length": 7,
+ "key": 83
+ },
+ {
+ "offset": 93,
+ "length": 5,
+ "key": 84
+ },
+ {
+ "offset": 99,
+ "length": 10,
+ "key": 85
+ },
+ {
+ "offset": 110,
+ "length": 11,
+ "key": 86
+ },
+ {
+ "offset": 122,
+ "length": 8,
+ "key": 87
+ },
+ {
+ "offset": 131,
+ "length": 2,
+ "key": 88
+ },
+ {
+ "offset": 134,
+ "length": 13,
+ "key": 89
+ },
+ {
+ "offset": 148,
+ "length": 2,
+ "key": 90
+ },
+ {
+ "offset": 151,
+ "length": 5,
+ "key": 91
+ },
+ {
+ "offset": 157,
+ "length": 3,
+ "key": 92
+ },
+ {
+ "offset": 161,
+ "length": 11,
+ "key": 93
+ },
+ {
+ "offset": 173,
+ "length": 2,
+ "key": 94
+ },
+ {
+ "offset": 176,
+ "length": 4,
+ "key": 95
+ },
+ {
+ "offset": 181,
+ "length": 2,
+ "key": 96
+ },
+ {
+ "offset": 184,
+ "length": 7,
+ "key": 97
+ },
+ {
+ "offset": 192,
+ "length": 7,
+ "key": 98
+ },
+ {
+ "offset": 200,
+ "length": 3,
+ "key": 99
+ },
+ {
+ "offset": 204,
+ "length": 3,
+ "key": 100
+ },
+ {
+ "offset": 208,
+ "length": 10,
+ "key": 101
+ },
+ {
+ "offset": 219,
+ "length": 4,
+ "key": 102
+ },
+ {
+ "offset": 224,
+ "length": 3,
+ "key": 103
+ },
+ {
+ "offset": 228,
+ "length": 3,
+ "key": 104
+ },
+ {
+ "offset": 232,
+ "length": 4,
+ "key": 105
+ },
+ {
+ "offset": 237,
+ "length": 4,
+ "key": 106
+ },
+ {
+ "offset": 242,
+ "length": 1,
+ "key": 107
+ },
+ {
+ "offset": 244,
+ "length": 5,
+ "key": 108
+ },
+ {
+ "offset": 250,
+ "length": 5,
+ "key": 109
+ },
+ {
+ "offset": 256,
+ "length": 2,
+ "key": 110
+ },
+ {
+ "offset": 259,
+ "length": 8,
+ "key": 111
+ },
+ {
+ "offset": 268,
+ "length": 10,
+ "key": 112
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1215.92,
+ "end": 1216.68,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 69
+ },
+ {
+ "start": 1216.68,
+ "end": 1216.94,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 70
+ },
+ {
+ "start": 1216.94,
+ "end": 1217.54,
+ "confidence": 0,
+ "word": "consider",
+ "punct": "consider",
+ "index": 71
+ },
+ {
+ "start": 1217.54,
+ "end": 1218.64,
+ "confidence": 0,
+ "word": "range",
+ "punct": "range",
+ "index": 72
+ },
+ {
+ "start": 1218.64,
+ "end": 1218.92,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 73
+ },
+ {
+ "start": 1218.92,
+ "end": 1219.28,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 74
+ },
+ {
+ "start": 1219.28,
+ "end": 1220.55,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 75
+ },
+ {
+ "start": 1220.55,
+ "end": 1220.69,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 76
+ },
+ {
+ "start": 1220.69,
+ "end": 1221.29,
+ "confidence": 0,
+ "word": "security",
+ "punct": "security",
+ "index": 77
+ },
+ {
+ "start": 1221.29,
+ "end": 1222.29,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 78
+ },
+ {
+ "start": 1222.29,
+ "end": 1222.87,
+ "confidence": 0,
+ "word": "consumer",
+ "punct": "consumer",
+ "index": 79
+ },
+ {
+ "start": 1222.87,
+ "end": 1223.49,
+ "confidence": 0,
+ "word": "protection",
+ "punct": "protection",
+ "index": 80
+ },
+ {
+ "start": 1223.49,
+ "end": 1224.25,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 81
+ },
+ {
+ "start": 1224.25,
+ "end": 1224.37,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 82
+ },
+ {
+ "start": 1224.37,
+ "end": 1224.65,
+ "confidence": 0,
+ "word": "federal",
+ "punct": "Federal",
+ "index": 83
+ },
+ {
+ "start": 1224.65,
+ "end": 1224.95,
+ "confidence": 0,
+ "word": "trade",
+ "punct": "Trade",
+ "index": 84
+ },
+ {
+ "start": 1224.95,
+ "end": 1225.43,
+ "confidence": 0,
+ "word": "commission",
+ "punct": "Commission",
+ "index": 85
+ },
+ {
+ "start": 1225.43,
+ "end": 1226.17,
+ "confidence": 0,
+ "word": "enforcement",
+ "punct": "enforcement",
+ "index": 86
+ },
+ {
+ "start": 1226.17,
+ "end": 1227.31,
+ "confidence": 0,
+ "word": "touching",
+ "punct": "touching",
+ "index": 87
+ },
+ {
+ "start": 1227.31,
+ "end": 1227.53,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 88
+ },
+ {
+ "start": 1227.53,
+ "end": 1228.43,
+ "confidence": 0,
+ "word": "jurisdictions",
+ "punct": "jurisdictions",
+ "index": 89
+ },
+ {
+ "start": 1228.43,
+ "end": 1229.35,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 90
+ },
+ {
+ "start": 1229.35,
+ "end": 1229.63,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 91
+ },
+ {
+ "start": 1229.63,
+ "end": 1229.91,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two",
+ "index": 92
+ },
+ {
+ "start": 1229.91,
+ "end": 1231.36,
+ "confidence": 0,
+ "word": "committees,",
+ "punct": "committees,",
+ "index": 93
+ },
+ {
+ "start": 1231.36,
+ "end": 1232.34,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 94
+ },
+ {
+ "start": 1232.34,
+ "end": 1232.66,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 95
+ },
+ {
+ "start": 1232.66,
+ "end": 1233.24,
+ "confidence": 0,
+ "word": "44",
+ "punct": "44",
+ "index": 96
+ },
+ {
+ "start": 1233.24,
+ "end": 1233.88,
+ "confidence": 0,
+ "word": "members",
+ "punct": "members",
+ "index": 97
+ },
+ {
+ "start": 1233.88,
+ "end": 1234.4,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 98
+ },
+ {
+ "start": 1234.4,
+ "end": 1234.58,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 99
+ },
+ {
+ "start": 1234.58,
+ "end": 1234.76,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two",
+ "index": 100
+ },
+ {
+ "start": 1234.76,
+ "end": 1235.46,
+ "confidence": 0,
+ "word": "committees",
+ "punct": "committees",
+ "index": 101
+ },
+ {
+ "start": 1235.46,
+ "end": 1236.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 102
+ },
+ {
+ "start": 1236.44,
+ "end": 1236.68,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 103
+ },
+ {
+ "start": 1236.68,
+ "end": 1236.88,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 104
+ },
+ {
+ "start": 1236.88,
+ "end": 1237.84,
+ "confidence": 0,
+ "word": "seem",
+ "punct": "seem",
+ "index": 105
+ },
+ {
+ "start": 1237.84,
+ "end": 1238.1,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 106
+ },
+ {
+ "start": 1238.1,
+ "end": 1238.14,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 107
+ },
+ {
+ "start": 1238.14,
+ "end": 1238.66,
+ "confidence": 0,
+ "word": "large",
+ "punct": "large",
+ "index": 108
+ },
+ {
+ "start": 1238.66,
+ "end": 1239.04,
+ "confidence": 0,
+ "word": "group",
+ "punct": "group",
+ "index": 109
+ },
+ {
+ "start": 1239.04,
+ "end": 1239.3,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 110
+ },
+ {
+ "start": 1239.3,
+ "end": 1240.06,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 111
+ },
+ {
+ "start": 1240.06,
+ "end": 1240.68,
+ "confidence": 0,
+ "word": "standards",
+ "punct": "standards.",
+ "index": 112
+ }
+ ],
+ "start": 1215.92
+ }
+ },
+ {
+ "key": "5p3ir",
+ "text": "But it is significant here for a hearing in the United States Senate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 113
+ },
+ {
+ "offset": 4,
+ "length": 2,
+ "key": 114
+ },
+ {
+ "offset": 7,
+ "length": 2,
+ "key": 115
+ },
+ {
+ "offset": 10,
+ "length": 11,
+ "key": 116
+ },
+ {
+ "offset": 22,
+ "length": 4,
+ "key": 117
+ },
+ {
+ "offset": 27,
+ "length": 3,
+ "key": 118
+ },
+ {
+ "offset": 31,
+ "length": 1,
+ "key": 119
+ },
+ {
+ "offset": 33,
+ "length": 7,
+ "key": 120
+ },
+ {
+ "offset": 41,
+ "length": 2,
+ "key": 121
+ },
+ {
+ "offset": 44,
+ "length": 3,
+ "key": 122
+ },
+ {
+ "offset": 48,
+ "length": 6,
+ "key": 123
+ },
+ {
+ "offset": 55,
+ "length": 6,
+ "key": 124
+ },
+ {
+ "offset": 62,
+ "length": 7,
+ "key": 125
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1240.68,
+ "end": 1241.62,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 113
+ },
+ {
+ "start": 1241.62,
+ "end": 1241.74,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 114
+ },
+ {
+ "start": 1241.74,
+ "end": 1241.94,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 115
+ },
+ {
+ "start": 1241.94,
+ "end": 1242.68,
+ "confidence": 0,
+ "word": "significant",
+ "punct": "significant",
+ "index": 116
+ },
+ {
+ "start": 1242.68,
+ "end": 1243.04,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 117
+ },
+ {
+ "start": 1243.04,
+ "end": 1244.02,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 118
+ },
+ {
+ "start": 1244.02,
+ "end": 1244.08,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 119
+ },
+ {
+ "start": 1244.08,
+ "end": 1244.42,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 120
+ },
+ {
+ "start": 1244.42,
+ "end": 1244.58,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 121
+ },
+ {
+ "start": 1244.58,
+ "end": 1244.7,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 122
+ },
+ {
+ "start": 1244.7,
+ "end": 1244.96,
+ "confidence": 0,
+ "word": "united",
+ "punct": "United",
+ "index": 123
+ },
+ {
+ "start": 1244.96,
+ "end": 1245.26,
+ "confidence": 0,
+ "word": "states",
+ "punct": "States",
+ "index": 124
+ },
+ {
+ "start": 1245.26,
+ "end": 1246.12,
+ "confidence": 0,
+ "word": "senate",
+ "punct": "Senate.",
+ "index": 125
+ }
+ ],
+ "start": 1240.68
+ }
+ },
+ {
+ "key": "a06ip",
+ "text": "We will do our best to keep things moving efficiently, given our circumstances.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 2,
+ "key": 126
+ },
+ {
+ "offset": 3,
+ "length": 4,
+ "key": 127
+ },
+ {
+ "offset": 8,
+ "length": 2,
+ "key": 128
+ },
+ {
+ "offset": 11,
+ "length": 3,
+ "key": 129
+ },
+ {
+ "offset": 15,
+ "length": 4,
+ "key": 130
+ },
+ {
+ "offset": 20,
+ "length": 2,
+ "key": 131
+ },
+ {
+ "offset": 23,
+ "length": 4,
+ "key": 132
+ },
+ {
+ "offset": 28,
+ "length": 6,
+ "key": 133
+ },
+ {
+ "offset": 35,
+ "length": 6,
+ "key": 134
+ },
+ {
+ "offset": 42,
+ "length": 12,
+ "key": 135
+ },
+ {
+ "offset": 55,
+ "length": 5,
+ "key": 136
+ },
+ {
+ "offset": 61,
+ "length": 3,
+ "key": 137
+ },
+ {
+ "offset": 65,
+ "length": 14,
+ "key": 138
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1246.12,
+ "end": 1246.62,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 126
+ },
+ {
+ "start": 1246.62,
+ "end": 1246.96,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 127
+ },
+ {
+ "start": 1246.96,
+ "end": 1247.06,
+ "confidence": 0,
+ "word": "do",
+ "punct": "do",
+ "index": 128
+ },
+ {
+ "start": 1247.06,
+ "end": 1247.3,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 129
+ },
+ {
+ "start": 1247.3,
+ "end": 1247.58,
+ "confidence": 0,
+ "word": "best",
+ "punct": "best",
+ "index": 130
+ },
+ {
+ "start": 1247.58,
+ "end": 1247.86,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 131
+ },
+ {
+ "start": 1247.86,
+ "end": 1248.1,
+ "confidence": 0,
+ "word": "keep",
+ "punct": "keep",
+ "index": 132
+ },
+ {
+ "start": 1248.1,
+ "end": 1248.38,
+ "confidence": 0,
+ "word": "things",
+ "punct": "things",
+ "index": 133
+ },
+ {
+ "start": 1248.38,
+ "end": 1248.78,
+ "confidence": 0,
+ "word": "moving",
+ "punct": "moving",
+ "index": 134
+ },
+ {
+ "start": 1248.78,
+ "end": 1249.4,
+ "confidence": 0,
+ "word": "efficiently,",
+ "punct": "efficiently,",
+ "index": 135
+ },
+ {
+ "start": 1249.4,
+ "end": 1250.2,
+ "confidence": 0,
+ "word": "given",
+ "punct": "given",
+ "index": 136
+ },
+ {
+ "start": 1250.2,
+ "end": 1250.38,
+ "confidence": 0,
+ "word": "our",
+ "punct": "our",
+ "index": 137
+ },
+ {
+ "start": 1250.38,
+ "end": 1251.2,
+ "confidence": 0,
+ "word": "circumstances",
+ "punct": "circumstances.",
+ "index": 138
+ }
+ ],
+ "start": 1246.12
+ }
+ },
+ {
+ "key": "235o9",
+ "text": "We will begin with opening statements from the chairman and ranking members of each committee.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 2,
+ "key": 139
+ },
+ {
+ "offset": 3,
+ "length": 4,
+ "key": 140
+ },
+ {
+ "offset": 8,
+ "length": 5,
+ "key": 141
+ },
+ {
+ "offset": 14,
+ "length": 4,
+ "key": 142
+ },
+ {
+ "offset": 19,
+ "length": 7,
+ "key": 143
+ },
+ {
+ "offset": 27,
+ "length": 10,
+ "key": 144
+ },
+ {
+ "offset": 38,
+ "length": 4,
+ "key": 145
+ },
+ {
+ "offset": 43,
+ "length": 3,
+ "key": 146
+ },
+ {
+ "offset": 47,
+ "length": 8,
+ "key": 147
+ },
+ {
+ "offset": 56,
+ "length": 3,
+ "key": 148
+ },
+ {
+ "offset": 60,
+ "length": 7,
+ "key": 149
+ },
+ {
+ "offset": 68,
+ "length": 7,
+ "key": 150
+ },
+ {
+ "offset": 76,
+ "length": 2,
+ "key": 151
+ },
+ {
+ "offset": 79,
+ "length": 4,
+ "key": 152
+ },
+ {
+ "offset": 84,
+ "length": 10,
+ "key": 153
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1251.2,
+ "end": 1252.12,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 139
+ },
+ {
+ "start": 1252.12,
+ "end": 1252.4,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 140
+ },
+ {
+ "start": 1252.4,
+ "end": 1252.78,
+ "confidence": 0,
+ "word": "begin",
+ "punct": "begin",
+ "index": 141
+ },
+ {
+ "start": 1252.78,
+ "end": 1253.14,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 142
+ },
+ {
+ "start": 1253.14,
+ "end": 1253.68,
+ "confidence": 0,
+ "word": "opening",
+ "punct": "opening",
+ "index": 143
+ },
+ {
+ "start": 1253.68,
+ "end": 1254.2,
+ "confidence": 0,
+ "word": "statements",
+ "punct": "statements",
+ "index": 144
+ },
+ {
+ "start": 1254.2,
+ "end": 1254.72,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 145
+ },
+ {
+ "start": 1254.72,
+ "end": 1254.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 146
+ },
+ {
+ "start": 1254.88,
+ "end": 1255.32,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 147
+ },
+ {
+ "start": 1255.32,
+ "end": 1255.66,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 148
+ },
+ {
+ "start": 1255.66,
+ "end": 1256.06,
+ "confidence": 0,
+ "word": "ranking",
+ "punct": "ranking",
+ "index": 149
+ },
+ {
+ "start": 1256.06,
+ "end": 1256.48,
+ "confidence": 0,
+ "word": "members",
+ "punct": "members",
+ "index": 150
+ },
+ {
+ "start": 1256.48,
+ "end": 1256.64,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 151
+ },
+ {
+ "start": 1256.64,
+ "end": 1256.88,
+ "confidence": 0,
+ "word": "each",
+ "punct": "each",
+ "index": 152
+ },
+ {
+ "start": 1256.88,
+ "end": 1257.34,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "committee.",
+ "index": 153
+ }
+ ],
+ "start": 1251.2
+ }
+ },
+ {
+ "key": "5f8g1",
+ "text": "Starting with Chairman tone and then proceed with Mr Zuckerberg's opening statement.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 8,
+ "key": 154
+ },
+ {
+ "offset": 9,
+ "length": 4,
+ "key": 155
+ },
+ {
+ "offset": 14,
+ "length": 8,
+ "key": 156
+ },
+ {
+ "offset": 23,
+ "length": 4,
+ "key": 157
+ },
+ {
+ "offset": 28,
+ "length": 3,
+ "key": 158
+ },
+ {
+ "offset": 32,
+ "length": 4,
+ "key": 159
+ },
+ {
+ "offset": 37,
+ "length": 7,
+ "key": 160
+ },
+ {
+ "offset": 45,
+ "length": 4,
+ "key": 161
+ },
+ {
+ "offset": 50,
+ "length": 2,
+ "key": 162
+ },
+ {
+ "offset": 53,
+ "length": 12,
+ "key": 163
+ },
+ {
+ "offset": 66,
+ "length": 7,
+ "key": 164
+ },
+ {
+ "offset": 74,
+ "length": 10,
+ "key": 165
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1257.34,
+ "end": 1258.36,
+ "confidence": 0,
+ "word": "starting",
+ "punct": "Starting",
+ "index": 154
+ },
+ {
+ "start": 1258.36,
+ "end": 1258.58,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 155
+ },
+ {
+ "start": 1258.58,
+ "end": 1259.04,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "Chairman",
+ "index": 156
+ },
+ {
+ "start": 1259.04,
+ "end": 1260.2,
+ "confidence": 0,
+ "word": "tone",
+ "punct": "tone",
+ "index": 157
+ },
+ {
+ "start": 1260.2,
+ "end": 1260.94,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 158
+ },
+ {
+ "start": 1260.94,
+ "end": 1261.14,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 159
+ },
+ {
+ "start": 1261.14,
+ "end": 1261.8,
+ "confidence": 0,
+ "word": "proceed",
+ "punct": "proceed",
+ "index": 160
+ },
+ {
+ "start": 1261.8,
+ "end": 1262.82,
+ "confidence": 0,
+ "word": "with",
+ "punct": "with",
+ "index": 161
+ },
+ {
+ "start": 1262.82,
+ "end": 1263.2,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 162
+ },
+ {
+ "start": 1263.2,
+ "end": 1264.24,
+ "confidence": 0,
+ "word": "zuckerberg's",
+ "punct": "Zuckerberg's",
+ "index": 163
+ },
+ {
+ "start": 1264.24,
+ "end": 1265.28,
+ "confidence": 0,
+ "word": "opening",
+ "punct": "opening",
+ "index": 164
+ },
+ {
+ "start": 1265.28,
+ "end": 1266.34,
+ "confidence": 0,
+ "word": "statement",
+ "punct": "statement.",
+ "index": 165
+ }
+ ],
+ "start": 1257.34
+ }
+ },
+ {
+ "key": "cgoeh",
+ "text": "We will then move on to questioning each member will have five minutes to question.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 2,
+ "key": 166
+ },
+ {
+ "offset": 3,
+ "length": 4,
+ "key": 167
+ },
+ {
+ "offset": 8,
+ "length": 4,
+ "key": 168
+ },
+ {
+ "offset": 13,
+ "length": 4,
+ "key": 169
+ },
+ {
+ "offset": 18,
+ "length": 2,
+ "key": 170
+ },
+ {
+ "offset": 21,
+ "length": 2,
+ "key": 171
+ },
+ {
+ "offset": 24,
+ "length": 11,
+ "key": 172
+ },
+ {
+ "offset": 36,
+ "length": 4,
+ "key": 173
+ },
+ {
+ "offset": 41,
+ "length": 6,
+ "key": 174
+ },
+ {
+ "offset": 48,
+ "length": 4,
+ "key": 175
+ },
+ {
+ "offset": 53,
+ "length": 4,
+ "key": 176
+ },
+ {
+ "offset": 58,
+ "length": 4,
+ "key": 177
+ },
+ {
+ "offset": 63,
+ "length": 7,
+ "key": 178
+ },
+ {
+ "offset": 71,
+ "length": 2,
+ "key": 179
+ },
+ {
+ "offset": 74,
+ "length": 9,
+ "key": 180
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1266.34,
+ "end": 1267.38,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 166
+ },
+ {
+ "start": 1267.38,
+ "end": 1267.58,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 167
+ },
+ {
+ "start": 1267.58,
+ "end": 1267.84,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 168
+ },
+ {
+ "start": 1267.84,
+ "end": 1268.22,
+ "confidence": 0,
+ "word": "move",
+ "punct": "move",
+ "index": 169
+ },
+ {
+ "start": 1268.22,
+ "end": 1268.7,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 170
+ },
+ {
+ "start": 1268.7,
+ "end": 1268.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 171
+ },
+ {
+ "start": 1268.88,
+ "end": 1269.66,
+ "confidence": 0,
+ "word": "questioning",
+ "punct": "questioning",
+ "index": 172
+ },
+ {
+ "start": 1269.66,
+ "end": 1270.66,
+ "confidence": 0,
+ "word": "each",
+ "punct": "each",
+ "index": 173
+ },
+ {
+ "start": 1270.66,
+ "end": 1271.04,
+ "confidence": 0,
+ "word": "member",
+ "punct": "member",
+ "index": 174
+ },
+ {
+ "start": 1271.04,
+ "end": 1271.3,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 175
+ },
+ {
+ "start": 1271.3,
+ "end": 1271.5,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 176
+ },
+ {
+ "start": 1271.5,
+ "end": 1271.78,
+ "confidence": 0,
+ "word": "five",
+ "punct": "five",
+ "index": 177
+ },
+ {
+ "start": 1271.78,
+ "end": 1272.12,
+ "confidence": 0,
+ "word": "minutes",
+ "punct": "minutes",
+ "index": 178
+ },
+ {
+ "start": 1272.12,
+ "end": 1272.26,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 179
+ },
+ {
+ "start": 1272.26,
+ "end": 1272.92,
+ "confidence": 0,
+ "word": "question",
+ "punct": "question.",
+ "index": 180
+ }
+ ],
+ "start": 1266.34
+ }
+ },
+ {
+ "key": "9a7am",
+ "text": "Witnesses I'd like to remind the members of both committees that time limits will be and must be strictly enforced given the numbers that we have here today if you're over your time chairman tone and I will make sure to let you know.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 9,
+ "key": 181
+ },
+ {
+ "offset": 10,
+ "length": 3,
+ "key": 182
+ },
+ {
+ "offset": 14,
+ "length": 4,
+ "key": 183
+ },
+ {
+ "offset": 19,
+ "length": 2,
+ "key": 184
+ },
+ {
+ "offset": 22,
+ "length": 6,
+ "key": 185
+ },
+ {
+ "offset": 29,
+ "length": 3,
+ "key": 186
+ },
+ {
+ "offset": 33,
+ "length": 7,
+ "key": 187
+ },
+ {
+ "offset": 41,
+ "length": 2,
+ "key": 188
+ },
+ {
+ "offset": 44,
+ "length": 4,
+ "key": 189
+ },
+ {
+ "offset": 49,
+ "length": 10,
+ "key": 190
+ },
+ {
+ "offset": 60,
+ "length": 4,
+ "key": 191
+ },
+ {
+ "offset": 65,
+ "length": 4,
+ "key": 192
+ },
+ {
+ "offset": 70,
+ "length": 6,
+ "key": 193
+ },
+ {
+ "offset": 77,
+ "length": 4,
+ "key": 194
+ },
+ {
+ "offset": 82,
+ "length": 2,
+ "key": 195
+ },
+ {
+ "offset": 85,
+ "length": 3,
+ "key": 196
+ },
+ {
+ "offset": 89,
+ "length": 4,
+ "key": 197
+ },
+ {
+ "offset": 94,
+ "length": 2,
+ "key": 198
+ },
+ {
+ "offset": 97,
+ "length": 8,
+ "key": 199
+ },
+ {
+ "offset": 106,
+ "length": 8,
+ "key": 200
+ },
+ {
+ "offset": 115,
+ "length": 5,
+ "key": 201
+ },
+ {
+ "offset": 121,
+ "length": 3,
+ "key": 202
+ },
+ {
+ "offset": 125,
+ "length": 7,
+ "key": 203
+ },
+ {
+ "offset": 133,
+ "length": 4,
+ "key": 204
+ },
+ {
+ "offset": 138,
+ "length": 2,
+ "key": 205
+ },
+ {
+ "offset": 141,
+ "length": 4,
+ "key": 206
+ },
+ {
+ "offset": 146,
+ "length": 4,
+ "key": 207
+ },
+ {
+ "offset": 151,
+ "length": 5,
+ "key": 208
+ },
+ {
+ "offset": 157,
+ "length": 2,
+ "key": 209
+ },
+ {
+ "offset": 160,
+ "length": 6,
+ "key": 210
+ },
+ {
+ "offset": 167,
+ "length": 4,
+ "key": 211
+ },
+ {
+ "offset": 172,
+ "length": 4,
+ "key": 212
+ },
+ {
+ "offset": 177,
+ "length": 4,
+ "key": 213
+ },
+ {
+ "offset": 182,
+ "length": 8,
+ "key": 214
+ },
+ {
+ "offset": 191,
+ "length": 4,
+ "key": 215
+ },
+ {
+ "offset": 196,
+ "length": 3,
+ "key": 216
+ },
+ {
+ "offset": 200,
+ "length": 1,
+ "key": 217
+ },
+ {
+ "offset": 202,
+ "length": 4,
+ "key": 218
+ },
+ {
+ "offset": 207,
+ "length": 4,
+ "key": 219
+ },
+ {
+ "offset": 212,
+ "length": 4,
+ "key": 220
+ },
+ {
+ "offset": 217,
+ "length": 2,
+ "key": 221
+ },
+ {
+ "offset": 220,
+ "length": 3,
+ "key": 222
+ },
+ {
+ "offset": 224,
+ "length": 3,
+ "key": 223
+ },
+ {
+ "offset": 228,
+ "length": 5,
+ "key": 224
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1272.92,
+ "end": 1274.28,
+ "confidence": 0,
+ "word": "witnesses",
+ "punct": "Witnesses",
+ "index": 181
+ },
+ {
+ "start": 1274.28,
+ "end": 1275.22,
+ "confidence": 0,
+ "word": "i'd",
+ "punct": "I'd",
+ "index": 182
+ },
+ {
+ "start": 1275.22,
+ "end": 1275.4,
+ "confidence": 0,
+ "word": "like",
+ "punct": "like",
+ "index": 183
+ },
+ {
+ "start": 1275.4,
+ "end": 1275.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 184
+ },
+ {
+ "start": 1275.48,
+ "end": 1276,
+ "confidence": 0,
+ "word": "remind",
+ "punct": "remind",
+ "index": 185
+ },
+ {
+ "start": 1276,
+ "end": 1276.58,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 186
+ },
+ {
+ "start": 1276.58,
+ "end": 1277.02,
+ "confidence": 0,
+ "word": "members",
+ "punct": "members",
+ "index": 187
+ },
+ {
+ "start": 1277.02,
+ "end": 1277.22,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 188
+ },
+ {
+ "start": 1277.22,
+ "end": 1277.46,
+ "confidence": 0,
+ "word": "both",
+ "punct": "both",
+ "index": 189
+ },
+ {
+ "start": 1277.46,
+ "end": 1279.14,
+ "confidence": 0,
+ "word": "committees",
+ "punct": "committees",
+ "index": 190
+ },
+ {
+ "start": 1279.14,
+ "end": 1280.16,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 191
+ },
+ {
+ "start": 1280.16,
+ "end": 1280.48,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 192
+ },
+ {
+ "start": 1280.48,
+ "end": 1280.84,
+ "confidence": 0,
+ "word": "limits",
+ "punct": "limits",
+ "index": 193
+ },
+ {
+ "start": 1280.84,
+ "end": 1281.12,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 194
+ },
+ {
+ "start": 1281.12,
+ "end": 1281.24,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 195
+ },
+ {
+ "start": 1281.24,
+ "end": 1282.02,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 196
+ },
+ {
+ "start": 1282.02,
+ "end": 1282.32,
+ "confidence": 0,
+ "word": "must",
+ "punct": "must",
+ "index": 197
+ },
+ {
+ "start": 1282.32,
+ "end": 1282.52,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 198
+ },
+ {
+ "start": 1282.52,
+ "end": 1283.04,
+ "confidence": 0,
+ "word": "strictly",
+ "punct": "strictly",
+ "index": 199
+ },
+ {
+ "start": 1283.04,
+ "end": 1283.56,
+ "confidence": 0,
+ "word": "enforced",
+ "punct": "enforced",
+ "index": 200
+ },
+ {
+ "start": 1283.56,
+ "end": 1283.92,
+ "confidence": 0,
+ "word": "given",
+ "punct": "given",
+ "index": 201
+ },
+ {
+ "start": 1283.92,
+ "end": 1284.04,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 202
+ },
+ {
+ "start": 1284.04,
+ "end": 1284.56,
+ "confidence": 0,
+ "word": "numbers",
+ "punct": "numbers",
+ "index": 203
+ },
+ {
+ "start": 1284.56,
+ "end": 1285.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 204
+ },
+ {
+ "start": 1285.4,
+ "end": 1285.56,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 205
+ },
+ {
+ "start": 1285.56,
+ "end": 1285.76,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 206
+ },
+ {
+ "start": 1285.76,
+ "end": 1286.02,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 207
+ },
+ {
+ "start": 1286.02,
+ "end": 1287.18,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 208
+ },
+ {
+ "start": 1287.18,
+ "end": 1288,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 209
+ },
+ {
+ "start": 1288,
+ "end": 1288.24,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 210
+ },
+ {
+ "start": 1288.24,
+ "end": 1288.46,
+ "confidence": 0,
+ "word": "over",
+ "punct": "over",
+ "index": 211
+ },
+ {
+ "start": 1288.46,
+ "end": 1288.68,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 212
+ },
+ {
+ "start": 1288.68,
+ "end": 1289.16,
+ "confidence": 0,
+ "word": "time",
+ "punct": "time",
+ "index": 213
+ },
+ {
+ "start": 1289.16,
+ "end": 1290.06,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 214
+ },
+ {
+ "start": 1290.06,
+ "end": 1290.4,
+ "confidence": 0,
+ "word": "tone",
+ "punct": "tone",
+ "index": 215
+ },
+ {
+ "start": 1290.4,
+ "end": 1290.54,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 216
+ },
+ {
+ "start": 1290.54,
+ "end": 1290.74,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 217
+ },
+ {
+ "start": 1290.74,
+ "end": 1290.98,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 218
+ },
+ {
+ "start": 1290.98,
+ "end": 1291.16,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 219
+ },
+ {
+ "start": 1291.16,
+ "end": 1291.5,
+ "confidence": 0,
+ "word": "sure",
+ "punct": "sure",
+ "index": 220
+ },
+ {
+ "start": 1291.5,
+ "end": 1291.66,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 221
+ },
+ {
+ "start": 1291.66,
+ "end": 1291.9,
+ "confidence": 0,
+ "word": "let",
+ "punct": "let",
+ "index": 222
+ },
+ {
+ "start": 1291.9,
+ "end": 1292.06,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 223
+ },
+ {
+ "start": 1292.06,
+ "end": 1292.52,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know.",
+ "index": 224
+ }
+ ],
+ "start": 1272.92
+ }
+ },
+ {
+ "key": "3ol8k",
+ "text": "There will not be a second round as well, of course, there will be the usual follow up written questions for the record.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 5,
+ "key": 225
+ },
+ {
+ "offset": 6,
+ "length": 4,
+ "key": 226
+ },
+ {
+ "offset": 11,
+ "length": 3,
+ "key": 227
+ },
+ {
+ "offset": 15,
+ "length": 2,
+ "key": 228
+ },
+ {
+ "offset": 18,
+ "length": 1,
+ "key": 229
+ },
+ {
+ "offset": 20,
+ "length": 6,
+ "key": 230
+ },
+ {
+ "offset": 27,
+ "length": 5,
+ "key": 231
+ },
+ {
+ "offset": 33,
+ "length": 2,
+ "key": 232
+ },
+ {
+ "offset": 36,
+ "length": 5,
+ "key": 233
+ },
+ {
+ "offset": 42,
+ "length": 2,
+ "key": 234
+ },
+ {
+ "offset": 45,
+ "length": 7,
+ "key": 235
+ },
+ {
+ "offset": 53,
+ "length": 5,
+ "key": 236
+ },
+ {
+ "offset": 59,
+ "length": 4,
+ "key": 237
+ },
+ {
+ "offset": 64,
+ "length": 2,
+ "key": 238
+ },
+ {
+ "offset": 67,
+ "length": 3,
+ "key": 239
+ },
+ {
+ "offset": 71,
+ "length": 5,
+ "key": 240
+ },
+ {
+ "offset": 77,
+ "length": 6,
+ "key": 241
+ },
+ {
+ "offset": 84,
+ "length": 2,
+ "key": 242
+ },
+ {
+ "offset": 87,
+ "length": 7,
+ "key": 243
+ },
+ {
+ "offset": 95,
+ "length": 9,
+ "key": 244
+ },
+ {
+ "offset": 105,
+ "length": 3,
+ "key": 245
+ },
+ {
+ "offset": 109,
+ "length": 3,
+ "key": 246
+ },
+ {
+ "offset": 113,
+ "length": 7,
+ "key": 247
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1292.52,
+ "end": 1293.5,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 225
+ },
+ {
+ "start": 1293.5,
+ "end": 1293.7,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 226
+ },
+ {
+ "start": 1293.7,
+ "end": 1293.9,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 227
+ },
+ {
+ "start": 1293.9,
+ "end": 1294.08,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 228
+ },
+ {
+ "start": 1294.08,
+ "end": 1294.16,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 229
+ },
+ {
+ "start": 1294.16,
+ "end": 1294.58,
+ "confidence": 0,
+ "word": "second",
+ "punct": "second",
+ "index": 230
+ },
+ {
+ "start": 1294.58,
+ "end": 1294.94,
+ "confidence": 0,
+ "word": "round",
+ "punct": "round",
+ "index": 231
+ },
+ {
+ "start": 1294.94,
+ "end": 1295.12,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 232
+ },
+ {
+ "start": 1295.12,
+ "end": 1295.46,
+ "confidence": 0,
+ "word": "well,",
+ "punct": "well,",
+ "index": 233
+ },
+ {
+ "start": 1295.46,
+ "end": 1296.44,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 234
+ },
+ {
+ "start": 1296.44,
+ "end": 1296.76,
+ "confidence": 0,
+ "word": "course,",
+ "punct": "course,",
+ "index": 235
+ },
+ {
+ "start": 1296.76,
+ "end": 1296.98,
+ "confidence": 0,
+ "word": "there",
+ "punct": "there",
+ "index": 236
+ },
+ {
+ "start": 1296.98,
+ "end": 1297.2,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 237
+ },
+ {
+ "start": 1297.2,
+ "end": 1297.32,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 238
+ },
+ {
+ "start": 1297.32,
+ "end": 1297.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 239
+ },
+ {
+ "start": 1297.5,
+ "end": 1297.96,
+ "confidence": 0,
+ "word": "usual",
+ "punct": "usual",
+ "index": 240
+ },
+ {
+ "start": 1297.96,
+ "end": 1298.4,
+ "confidence": 0,
+ "word": "follow",
+ "punct": "follow",
+ "index": 241
+ },
+ {
+ "start": 1298.4,
+ "end": 1298.58,
+ "confidence": 0,
+ "word": "up",
+ "punct": "up",
+ "index": 242
+ },
+ {
+ "start": 1298.58,
+ "end": 1298.92,
+ "confidence": 0,
+ "word": "written",
+ "punct": "written",
+ "index": 243
+ },
+ {
+ "start": 1298.92,
+ "end": 1299.5,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 244
+ },
+ {
+ "start": 1299.5,
+ "end": 1300.18,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 245
+ },
+ {
+ "start": 1300.18,
+ "end": 1300.32,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 246
+ },
+ {
+ "start": 1300.32,
+ "end": 1301.2,
+ "confidence": 0,
+ "word": "record",
+ "punct": "record.",
+ "index": 247
+ }
+ ],
+ "start": 1292.52
+ }
+ },
+ {
+ "key": "5cosv",
+ "text": "Questioning will alternate between majority and minority and between committees.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 11,
+ "key": 248
+ },
+ {
+ "offset": 12,
+ "length": 4,
+ "key": 249
+ },
+ {
+ "offset": 17,
+ "length": 9,
+ "key": 250
+ },
+ {
+ "offset": 27,
+ "length": 7,
+ "key": 251
+ },
+ {
+ "offset": 35,
+ "length": 8,
+ "key": 252
+ },
+ {
+ "offset": 44,
+ "length": 3,
+ "key": 253
+ },
+ {
+ "offset": 48,
+ "length": 8,
+ "key": 254
+ },
+ {
+ "offset": 57,
+ "length": 3,
+ "key": 255
+ },
+ {
+ "offset": 61,
+ "length": 7,
+ "key": 256
+ },
+ {
+ "offset": 69,
+ "length": 11,
+ "key": 257
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1301.2,
+ "end": 1302.22,
+ "confidence": 0,
+ "word": "questioning",
+ "punct": "Questioning",
+ "index": 248
+ },
+ {
+ "start": 1302.22,
+ "end": 1303.22,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 249
+ },
+ {
+ "start": 1303.22,
+ "end": 1303.82,
+ "confidence": 0,
+ "word": "alternate",
+ "punct": "alternate",
+ "index": 250
+ },
+ {
+ "start": 1303.82,
+ "end": 1304.32,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 251
+ },
+ {
+ "start": 1304.32,
+ "end": 1304.96,
+ "confidence": 0,
+ "word": "majority",
+ "punct": "majority",
+ "index": 252
+ },
+ {
+ "start": 1304.96,
+ "end": 1305.3,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 253
+ },
+ {
+ "start": 1305.3,
+ "end": 1305.92,
+ "confidence": 0,
+ "word": "minority",
+ "punct": "minority",
+ "index": 254
+ },
+ {
+ "start": 1305.92,
+ "end": 1306.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 255
+ },
+ {
+ "start": 1306.42,
+ "end": 1306.92,
+ "confidence": 0,
+ "word": "between",
+ "punct": "between",
+ "index": 256
+ },
+ {
+ "start": 1306.92,
+ "end": 1308.04,
+ "confidence": 0,
+ "word": "committees",
+ "punct": "committees.",
+ "index": 257
+ }
+ ],
+ "start": 1301.2
+ }
+ },
+ {
+ "key": "8rebl",
+ "text": "We will proceed in order based on respective committee seniority, we will anticipate a couple short breaks later in the afternoon.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 2,
+ "key": 258
+ },
+ {
+ "offset": 3,
+ "length": 4,
+ "key": 259
+ },
+ {
+ "offset": 8,
+ "length": 7,
+ "key": 260
+ },
+ {
+ "offset": 16,
+ "length": 2,
+ "key": 261
+ },
+ {
+ "offset": 19,
+ "length": 5,
+ "key": 262
+ },
+ {
+ "offset": 25,
+ "length": 5,
+ "key": 263
+ },
+ {
+ "offset": 31,
+ "length": 2,
+ "key": 264
+ },
+ {
+ "offset": 34,
+ "length": 10,
+ "key": 265
+ },
+ {
+ "offset": 45,
+ "length": 9,
+ "key": 266
+ },
+ {
+ "offset": 55,
+ "length": 10,
+ "key": 267
+ },
+ {
+ "offset": 66,
+ "length": 2,
+ "key": 268
+ },
+ {
+ "offset": 69,
+ "length": 4,
+ "key": 269
+ },
+ {
+ "offset": 74,
+ "length": 10,
+ "key": 270
+ },
+ {
+ "offset": 85,
+ "length": 1,
+ "key": 271
+ },
+ {
+ "offset": 87,
+ "length": 6,
+ "key": 272
+ },
+ {
+ "offset": 94,
+ "length": 5,
+ "key": 273
+ },
+ {
+ "offset": 100,
+ "length": 6,
+ "key": 274
+ },
+ {
+ "offset": 107,
+ "length": 5,
+ "key": 275
+ },
+ {
+ "offset": 113,
+ "length": 2,
+ "key": 276
+ },
+ {
+ "offset": 116,
+ "length": 3,
+ "key": 277
+ },
+ {
+ "offset": 120,
+ "length": 10,
+ "key": 278
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1308.04,
+ "end": 1308.5,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 258
+ },
+ {
+ "start": 1308.5,
+ "end": 1308.88,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 259
+ },
+ {
+ "start": 1308.88,
+ "end": 1309.38,
+ "confidence": 0,
+ "word": "proceed",
+ "punct": "proceed",
+ "index": 260
+ },
+ {
+ "start": 1309.38,
+ "end": 1309.7,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 261
+ },
+ {
+ "start": 1309.7,
+ "end": 1310.08,
+ "confidence": 0,
+ "word": "order",
+ "punct": "order",
+ "index": 262
+ },
+ {
+ "start": 1310.08,
+ "end": 1310.54,
+ "confidence": 0,
+ "word": "based",
+ "punct": "based",
+ "index": 263
+ },
+ {
+ "start": 1310.54,
+ "end": 1310.78,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 264
+ },
+ {
+ "start": 1310.78,
+ "end": 1311.6,
+ "confidence": 0,
+ "word": "respective",
+ "punct": "respective",
+ "index": 265
+ },
+ {
+ "start": 1311.6,
+ "end": 1312.48,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "committee",
+ "index": 266
+ },
+ {
+ "start": 1312.48,
+ "end": 1313.86,
+ "confidence": 0,
+ "word": "seniority,",
+ "punct": "seniority,",
+ "index": 267
+ },
+ {
+ "start": 1313.86,
+ "end": 1314.34,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 268
+ },
+ {
+ "start": 1314.34,
+ "end": 1314.68,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 269
+ },
+ {
+ "start": 1314.68,
+ "end": 1315.4,
+ "confidence": 0,
+ "word": "anticipate",
+ "punct": "anticipate",
+ "index": 270
+ },
+ {
+ "start": 1315.4,
+ "end": 1315.56,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 271
+ },
+ {
+ "start": 1315.56,
+ "end": 1315.9,
+ "confidence": 0,
+ "word": "couple",
+ "punct": "couple",
+ "index": 272
+ },
+ {
+ "start": 1315.9,
+ "end": 1316.28,
+ "confidence": 0,
+ "word": "short",
+ "punct": "short",
+ "index": 273
+ },
+ {
+ "start": 1316.28,
+ "end": 1316.64,
+ "confidence": 0,
+ "word": "breaks",
+ "punct": "breaks",
+ "index": 274
+ },
+ {
+ "start": 1316.64,
+ "end": 1317.3,
+ "confidence": 0,
+ "word": "later",
+ "punct": "later",
+ "index": 275
+ },
+ {
+ "start": 1317.3,
+ "end": 1317.4,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 276
+ },
+ {
+ "start": 1317.4,
+ "end": 1317.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 277
+ },
+ {
+ "start": 1317.52,
+ "end": 1318.12,
+ "confidence": 0,
+ "word": "afternoon",
+ "punct": "afternoon.",
+ "index": 278
+ }
+ ],
+ "start": 1308.04
+ }
+ },
+ {
+ "key": "an06k",
+ "text": "And so it's my pleasure to recognize the chairman of the Commerce Committee chairman tone for his opening statement.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 279
+ },
+ {
+ "offset": 4,
+ "length": 2,
+ "key": 280
+ },
+ {
+ "offset": 7,
+ "length": 4,
+ "key": 281
+ },
+ {
+ "offset": 12,
+ "length": 2,
+ "key": 282
+ },
+ {
+ "offset": 15,
+ "length": 8,
+ "key": 283
+ },
+ {
+ "offset": 24,
+ "length": 2,
+ "key": 284
+ },
+ {
+ "offset": 27,
+ "length": 9,
+ "key": 285
+ },
+ {
+ "offset": 37,
+ "length": 3,
+ "key": 286
+ },
+ {
+ "offset": 41,
+ "length": 8,
+ "key": 287
+ },
+ {
+ "offset": 50,
+ "length": 2,
+ "key": 288
+ },
+ {
+ "offset": 53,
+ "length": 3,
+ "key": 289
+ },
+ {
+ "offset": 57,
+ "length": 8,
+ "key": 290
+ },
+ {
+ "offset": 66,
+ "length": 9,
+ "key": 291
+ },
+ {
+ "offset": 76,
+ "length": 8,
+ "key": 292
+ },
+ {
+ "offset": 85,
+ "length": 4,
+ "key": 293
+ },
+ {
+ "offset": 90,
+ "length": 3,
+ "key": 294
+ },
+ {
+ "offset": 94,
+ "length": 3,
+ "key": 295
+ },
+ {
+ "offset": 98,
+ "length": 7,
+ "key": 296
+ },
+ {
+ "offset": 106,
+ "length": 10,
+ "key": 297
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1318.12,
+ "end": 1319.16,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 279
+ },
+ {
+ "start": 1319.16,
+ "end": 1319.32,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 280
+ },
+ {
+ "start": 1319.32,
+ "end": 1319.52,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 281
+ },
+ {
+ "start": 1319.52,
+ "end": 1319.68,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 282
+ },
+ {
+ "start": 1319.68,
+ "end": 1320.12,
+ "confidence": 0,
+ "word": "pleasure",
+ "punct": "pleasure",
+ "index": 283
+ },
+ {
+ "start": 1320.12,
+ "end": 1320.72,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 284
+ },
+ {
+ "start": 1320.72,
+ "end": 1321.32,
+ "confidence": 0,
+ "word": "recognize",
+ "punct": "recognize",
+ "index": 285
+ },
+ {
+ "start": 1321.32,
+ "end": 1321.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 286
+ },
+ {
+ "start": 1321.52,
+ "end": 1321.98,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 287
+ },
+ {
+ "start": 1321.98,
+ "end": 1322.66,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 288
+ },
+ {
+ "start": 1322.66,
+ "end": 1322.82,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 289
+ },
+ {
+ "start": 1322.82,
+ "end": 1323.28,
+ "confidence": 0,
+ "word": "commerce",
+ "punct": "Commerce",
+ "index": 290
+ },
+ {
+ "start": 1323.28,
+ "end": 1324.66,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "Committee",
+ "index": 291
+ },
+ {
+ "start": 1324.66,
+ "end": 1325.86,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman",
+ "index": 292
+ },
+ {
+ "start": 1325.86,
+ "end": 1326.24,
+ "confidence": 0,
+ "word": "tone",
+ "punct": "tone",
+ "index": 293
+ },
+ {
+ "start": 1326.24,
+ "end": 1326.44,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 294
+ },
+ {
+ "start": 1326.44,
+ "end": 1326.68,
+ "confidence": 0,
+ "word": "his",
+ "punct": "his",
+ "index": 295
+ },
+ {
+ "start": 1326.68,
+ "end": 1327.14,
+ "confidence": 0,
+ "word": "opening",
+ "punct": "opening",
+ "index": 296
+ },
+ {
+ "start": 1327.14,
+ "end": 1327.62,
+ "confidence": 0,
+ "word": "statement",
+ "punct": "statement.",
+ "index": 297
+ }
+ ],
+ "start": 1318.12
+ }
+ },
+ {
+ "key": "2ff1m",
+ "text": "Thank you, chairman.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 5,
+ "key": 298
+ },
+ {
+ "offset": 6,
+ "length": 4,
+ "key": 299
+ },
+ {
+ "offset": 11,
+ "length": 9,
+ "key": 300
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1327.62,
+ "end": 1328.64,
+ "confidence": 0,
+ "word": "thank",
+ "punct": "Thank",
+ "index": 298
+ },
+ {
+ "start": 1328.64,
+ "end": 1328.74,
+ "confidence": 0,
+ "word": "you,",
+ "punct": "you,",
+ "index": 299
+ },
+ {
+ "start": 1328.74,
+ "end": 1329.04,
+ "confidence": 0,
+ "word": "chairman",
+ "punct": "chairman.",
+ "index": 300
+ }
+ ],
+ "start": 1327.62
+ }
+ },
+ {
+ "key": "99sg8",
+ "text": "Grassley today's hearing is extraordinary it's extraordinary to hold a joint committee hearing it's even more extraordinary to have a single CEO testify before nearly half of the United States Senate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 8,
+ "key": 301
+ },
+ {
+ "offset": 9,
+ "length": 7,
+ "key": 302
+ },
+ {
+ "offset": 17,
+ "length": 7,
+ "key": 303
+ },
+ {
+ "offset": 25,
+ "length": 2,
+ "key": 304
+ },
+ {
+ "offset": 28,
+ "length": 13,
+ "key": 305
+ },
+ {
+ "offset": 42,
+ "length": 4,
+ "key": 306
+ },
+ {
+ "offset": 47,
+ "length": 13,
+ "key": 307
+ },
+ {
+ "offset": 61,
+ "length": 2,
+ "key": 308
+ },
+ {
+ "offset": 64,
+ "length": 4,
+ "key": 309
+ },
+ {
+ "offset": 69,
+ "length": 1,
+ "key": 310
+ },
+ {
+ "offset": 71,
+ "length": 5,
+ "key": 311
+ },
+ {
+ "offset": 77,
+ "length": 9,
+ "key": 312
+ },
+ {
+ "offset": 87,
+ "length": 7,
+ "key": 313
+ },
+ {
+ "offset": 95,
+ "length": 4,
+ "key": 314
+ },
+ {
+ "offset": 100,
+ "length": 4,
+ "key": 315
+ },
+ {
+ "offset": 105,
+ "length": 4,
+ "key": 316
+ },
+ {
+ "offset": 110,
+ "length": 13,
+ "key": 317
+ },
+ {
+ "offset": 124,
+ "length": 2,
+ "key": 318
+ },
+ {
+ "offset": 127,
+ "length": 4,
+ "key": 319
+ },
+ {
+ "offset": 132,
+ "length": 1,
+ "key": 320
+ },
+ {
+ "offset": 134,
+ "length": 6,
+ "key": 321
+ },
+ {
+ "offset": 141,
+ "length": 3,
+ "key": 322
+ },
+ {
+ "offset": 145,
+ "length": 7,
+ "key": 323
+ },
+ {
+ "offset": 153,
+ "length": 6,
+ "key": 324
+ },
+ {
+ "offset": 160,
+ "length": 6,
+ "key": 325
+ },
+ {
+ "offset": 167,
+ "length": 4,
+ "key": 326
+ },
+ {
+ "offset": 172,
+ "length": 2,
+ "key": 327
+ },
+ {
+ "offset": 175,
+ "length": 3,
+ "key": 328
+ },
+ {
+ "offset": 179,
+ "length": 6,
+ "key": 329
+ },
+ {
+ "offset": 186,
+ "length": 6,
+ "key": 330
+ },
+ {
+ "offset": 193,
+ "length": 7,
+ "key": 331
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1329.04,
+ "end": 1329.48,
+ "confidence": 0,
+ "word": "grassley",
+ "punct": "Grassley",
+ "index": 301
+ },
+ {
+ "start": 1329.48,
+ "end": 1330.62,
+ "confidence": 0,
+ "word": "today's",
+ "punct": "today's",
+ "index": 302
+ },
+ {
+ "start": 1330.62,
+ "end": 1330.88,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 303
+ },
+ {
+ "start": 1330.88,
+ "end": 1331,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 304
+ },
+ {
+ "start": 1331,
+ "end": 1331.68,
+ "confidence": 0,
+ "word": "extraordinary",
+ "punct": "extraordinary",
+ "index": 305
+ },
+ {
+ "start": 1331.68,
+ "end": 1332.46,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 306
+ },
+ {
+ "start": 1332.46,
+ "end": 1333.02,
+ "confidence": 0,
+ "word": "extraordinary",
+ "punct": "extraordinary",
+ "index": 307
+ },
+ {
+ "start": 1333.02,
+ "end": 1333.14,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 308
+ },
+ {
+ "start": 1333.14,
+ "end": 1333.4,
+ "confidence": 0,
+ "word": "hold",
+ "punct": "hold",
+ "index": 309
+ },
+ {
+ "start": 1333.4,
+ "end": 1333.64,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 310
+ },
+ {
+ "start": 1333.64,
+ "end": 1334.08,
+ "confidence": 0,
+ "word": "joint",
+ "punct": "joint",
+ "index": 311
+ },
+ {
+ "start": 1334.08,
+ "end": 1334.5,
+ "confidence": 0,
+ "word": "committee",
+ "punct": "committee",
+ "index": 312
+ },
+ {
+ "start": 1334.5,
+ "end": 1334.88,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 313
+ },
+ {
+ "start": 1334.88,
+ "end": 1335.78,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 314
+ },
+ {
+ "start": 1335.78,
+ "end": 1335.98,
+ "confidence": 0,
+ "word": "even",
+ "punct": "even",
+ "index": 315
+ },
+ {
+ "start": 1335.98,
+ "end": 1336.18,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 316
+ },
+ {
+ "start": 1336.18,
+ "end": 1336.92,
+ "confidence": 0,
+ "word": "extraordinary",
+ "punct": "extraordinary",
+ "index": 317
+ },
+ {
+ "start": 1336.92,
+ "end": 1337.02,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 318
+ },
+ {
+ "start": 1337.02,
+ "end": 1337.28,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 319
+ },
+ {
+ "start": 1337.28,
+ "end": 1337.48,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 320
+ },
+ {
+ "start": 1337.48,
+ "end": 1337.98,
+ "confidence": 0,
+ "word": "single",
+ "punct": "single",
+ "index": 321
+ },
+ {
+ "start": 1337.98,
+ "end": 1338.72,
+ "confidence": 0,
+ "word": "ceo",
+ "punct": "CEO",
+ "index": 322
+ },
+ {
+ "start": 1338.72,
+ "end": 1339.42,
+ "confidence": 0,
+ "word": "testify",
+ "punct": "testify",
+ "index": 323
+ },
+ {
+ "start": 1339.42,
+ "end": 1339.72,
+ "confidence": 0,
+ "word": "before",
+ "punct": "before",
+ "index": 324
+ },
+ {
+ "start": 1339.72,
+ "end": 1340.14,
+ "confidence": 0,
+ "word": "nearly",
+ "punct": "nearly",
+ "index": 325
+ },
+ {
+ "start": 1340.14,
+ "end": 1340.5,
+ "confidence": 0,
+ "word": "half",
+ "punct": "half",
+ "index": 326
+ },
+ {
+ "start": 1340.5,
+ "end": 1341.1,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 327
+ },
+ {
+ "start": 1341.1,
+ "end": 1341.22,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 328
+ },
+ {
+ "start": 1341.22,
+ "end": 1341.54,
+ "confidence": 0,
+ "word": "united",
+ "punct": "United",
+ "index": 329
+ },
+ {
+ "start": 1341.54,
+ "end": 1341.82,
+ "confidence": 0,
+ "word": "states",
+ "punct": "States",
+ "index": 330
+ },
+ {
+ "start": 1341.82,
+ "end": 1342.66,
+ "confidence": 0,
+ "word": "senate",
+ "punct": "Senate.",
+ "index": 331
+ }
+ ],
+ "start": 1329.04
+ }
+ },
+ {
+ "key": "5vc9o",
+ "text": "But then Facebook is pretty extraordinary.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 332
+ },
+ {
+ "offset": 4,
+ "length": 4,
+ "key": 333
+ },
+ {
+ "offset": 9,
+ "length": 8,
+ "key": 334
+ },
+ {
+ "offset": 18,
+ "length": 2,
+ "key": 335
+ },
+ {
+ "offset": 21,
+ "length": 6,
+ "key": 336
+ },
+ {
+ "offset": 28,
+ "length": 14,
+ "key": 337
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1342.66,
+ "end": 1343.28,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 332
+ },
+ {
+ "start": 1343.28,
+ "end": 1343.48,
+ "confidence": 0,
+ "word": "then",
+ "punct": "then",
+ "index": 333
+ },
+ {
+ "start": 1343.48,
+ "end": 1344.04,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 334
+ },
+ {
+ "start": 1344.04,
+ "end": 1344.48,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 335
+ },
+ {
+ "start": 1344.48,
+ "end": 1345.02,
+ "confidence": 0,
+ "word": "pretty",
+ "punct": "pretty",
+ "index": 336
+ },
+ {
+ "start": 1345.02,
+ "end": 1345.6,
+ "confidence": 0,
+ "word": "extraordinary",
+ "punct": "extraordinary.",
+ "index": 337
+ }
+ ],
+ "start": 1342.66
+ }
+ },
+ {
+ "key": "1e70n",
+ "text": "More than 2,000,000,000 people use Facebook every month.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 4,
+ "key": 338
+ },
+ {
+ "offset": 5,
+ "length": 4,
+ "key": 339
+ },
+ {
+ "offset": 10,
+ "length": 13,
+ "key": 340
+ },
+ {
+ "offset": 24,
+ "length": 6,
+ "key": 341
+ },
+ {
+ "offset": 31,
+ "length": 3,
+ "key": 342
+ },
+ {
+ "offset": 35,
+ "length": 8,
+ "key": 343
+ },
+ {
+ "offset": 44,
+ "length": 5,
+ "key": 344
+ },
+ {
+ "offset": 50,
+ "length": 6,
+ "key": 345
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1345.6,
+ "end": 1346.6,
+ "confidence": 0,
+ "word": "more",
+ "punct": "More",
+ "index": 338
+ },
+ {
+ "start": 1346.6,
+ "end": 1346.74,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 339
+ },
+ {
+ "start": 1346.74,
+ "end": 1347.24,
+ "confidence": 0,
+ "word": "2,000,000,000",
+ "punct": "2,000,000,000",
+ "index": 340
+ },
+ {
+ "start": 1347.24,
+ "end": 1347.5,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 341
+ },
+ {
+ "start": 1347.5,
+ "end": 1347.78,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 342
+ },
+ {
+ "start": 1347.78,
+ "end": 1348.32,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 343
+ },
+ {
+ "start": 1348.32,
+ "end": 1349.02,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 344
+ },
+ {
+ "start": 1349.02,
+ "end": 1349.24,
+ "confidence": 0,
+ "word": "month",
+ "punct": "month.",
+ "index": 345
+ }
+ ],
+ "start": 1345.6
+ }
+ },
+ {
+ "key": "fhb6",
+ "text": "1.4",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 346
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1349.24,
+ "end": 1351.06,
+ "confidence": 0,
+ "word": "14",
+ "punct": "1.4",
+ "index": 346
+ }
+ ],
+ "start": 1349.24
+ }
+ },
+ {
+ "key": "251u2",
+ "text": "billion people use it every day.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 7,
+ "key": 347
+ },
+ {
+ "offset": 8,
+ "length": 6,
+ "key": 348
+ },
+ {
+ "offset": 15,
+ "length": 3,
+ "key": 349
+ },
+ {
+ "offset": 19,
+ "length": 2,
+ "key": 350
+ },
+ {
+ "offset": 22,
+ "length": 5,
+ "key": 351
+ },
+ {
+ "offset": 28,
+ "length": 4,
+ "key": 352
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1351.06,
+ "end": 1351.5,
+ "confidence": 0,
+ "word": "billion",
+ "punct": "billion",
+ "index": 347
+ },
+ {
+ "start": 1351.5,
+ "end": 1351.78,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 348
+ },
+ {
+ "start": 1351.78,
+ "end": 1352.04,
+ "confidence": 0,
+ "word": "use",
+ "punct": "use",
+ "index": 349
+ },
+ {
+ "start": 1352.04,
+ "end": 1352.2,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 350
+ },
+ {
+ "start": 1352.2,
+ "end": 1352.88,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 351
+ },
+ {
+ "start": 1352.88,
+ "end": 1353.18,
+ "confidence": 0,
+ "word": "day",
+ "punct": "day.",
+ "index": 352
+ }
+ ],
+ "start": 1351.06
+ }
+ },
+ {
+ "key": "2l3qc",
+ "text": "More than the population of any country on Earth, except China and more than four times the population of the United States it's also more than 1,500 times the population of my home state of South Dakota.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 4,
+ "key": 353
+ },
+ {
+ "offset": 5,
+ "length": 4,
+ "key": 354
+ },
+ {
+ "offset": 10,
+ "length": 3,
+ "key": 355
+ },
+ {
+ "offset": 14,
+ "length": 10,
+ "key": 356
+ },
+ {
+ "offset": 25,
+ "length": 2,
+ "key": 357
+ },
+ {
+ "offset": 28,
+ "length": 3,
+ "key": 358
+ },
+ {
+ "offset": 32,
+ "length": 7,
+ "key": 359
+ },
+ {
+ "offset": 40,
+ "length": 2,
+ "key": 360
+ },
+ {
+ "offset": 43,
+ "length": 6,
+ "key": 361
+ },
+ {
+ "offset": 50,
+ "length": 6,
+ "key": 362
+ },
+ {
+ "offset": 57,
+ "length": 5,
+ "key": 363
+ },
+ {
+ "offset": 63,
+ "length": 3,
+ "key": 364
+ },
+ {
+ "offset": 67,
+ "length": 4,
+ "key": 365
+ },
+ {
+ "offset": 72,
+ "length": 4,
+ "key": 366
+ },
+ {
+ "offset": 77,
+ "length": 4,
+ "key": 367
+ },
+ {
+ "offset": 82,
+ "length": 5,
+ "key": 368
+ },
+ {
+ "offset": 88,
+ "length": 3,
+ "key": 369
+ },
+ {
+ "offset": 92,
+ "length": 10,
+ "key": 370
+ },
+ {
+ "offset": 103,
+ "length": 2,
+ "key": 371
+ },
+ {
+ "offset": 106,
+ "length": 3,
+ "key": 372
+ },
+ {
+ "offset": 110,
+ "length": 6,
+ "key": 373
+ },
+ {
+ "offset": 117,
+ "length": 6,
+ "key": 374
+ },
+ {
+ "offset": 124,
+ "length": 4,
+ "key": 375
+ },
+ {
+ "offset": 129,
+ "length": 4,
+ "key": 376
+ },
+ {
+ "offset": 134,
+ "length": 4,
+ "key": 377
+ },
+ {
+ "offset": 139,
+ "length": 4,
+ "key": 378
+ },
+ {
+ "offset": 144,
+ "length": 5,
+ "key": 379
+ },
+ {
+ "offset": 150,
+ "length": 5,
+ "key": 380
+ },
+ {
+ "offset": 156,
+ "length": 3,
+ "key": 381
+ },
+ {
+ "offset": 160,
+ "length": 10,
+ "key": 382
+ },
+ {
+ "offset": 171,
+ "length": 2,
+ "key": 383
+ },
+ {
+ "offset": 174,
+ "length": 2,
+ "key": 384
+ },
+ {
+ "offset": 177,
+ "length": 4,
+ "key": 385
+ },
+ {
+ "offset": 182,
+ "length": 5,
+ "key": 386
+ },
+ {
+ "offset": 188,
+ "length": 2,
+ "key": 387
+ },
+ {
+ "offset": 191,
+ "length": 5,
+ "key": 388
+ },
+ {
+ "offset": 197,
+ "length": 7,
+ "key": 389
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1353.18,
+ "end": 1354.24,
+ "confidence": 0,
+ "word": "more",
+ "punct": "More",
+ "index": 353
+ },
+ {
+ "start": 1354.24,
+ "end": 1354.4,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 354
+ },
+ {
+ "start": 1354.4,
+ "end": 1354.52,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 355
+ },
+ {
+ "start": 1354.52,
+ "end": 1355.18,
+ "confidence": 0,
+ "word": "population",
+ "punct": "population",
+ "index": 356
+ },
+ {
+ "start": 1355.18,
+ "end": 1355.32,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 357
+ },
+ {
+ "start": 1355.32,
+ "end": 1355.66,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 358
+ },
+ {
+ "start": 1355.66,
+ "end": 1356.16,
+ "confidence": 0,
+ "word": "country",
+ "punct": "country",
+ "index": 359
+ },
+ {
+ "start": 1356.16,
+ "end": 1356.52,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 360
+ },
+ {
+ "start": 1356.52,
+ "end": 1356.86,
+ "confidence": 0,
+ "word": "earth,",
+ "punct": "Earth,",
+ "index": 361
+ },
+ {
+ "start": 1356.86,
+ "end": 1357.28,
+ "confidence": 0,
+ "word": "except",
+ "punct": "except",
+ "index": 362
+ },
+ {
+ "start": 1357.28,
+ "end": 1357.66,
+ "confidence": 0,
+ "word": "china",
+ "punct": "China",
+ "index": 363
+ },
+ {
+ "start": 1357.66,
+ "end": 1358.6,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 364
+ },
+ {
+ "start": 1358.6,
+ "end": 1358.76,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 365
+ },
+ {
+ "start": 1358.76,
+ "end": 1358.9,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 366
+ },
+ {
+ "start": 1358.9,
+ "end": 1359.1,
+ "confidence": 0,
+ "word": "four",
+ "punct": "four",
+ "index": 367
+ },
+ {
+ "start": 1359.1,
+ "end": 1359.36,
+ "confidence": 0,
+ "word": "times",
+ "punct": "times",
+ "index": 368
+ },
+ {
+ "start": 1359.36,
+ "end": 1359.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 369
+ },
+ {
+ "start": 1359.5,
+ "end": 1360.06,
+ "confidence": 0,
+ "word": "population",
+ "punct": "population",
+ "index": 370
+ },
+ {
+ "start": 1360.06,
+ "end": 1360.14,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 371
+ },
+ {
+ "start": 1360.14,
+ "end": 1360.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 372
+ },
+ {
+ "start": 1360.24,
+ "end": 1360.52,
+ "confidence": 0,
+ "word": "united",
+ "punct": "United",
+ "index": 373
+ },
+ {
+ "start": 1360.52,
+ "end": 1361.38,
+ "confidence": 0,
+ "word": "states",
+ "punct": "States",
+ "index": 374
+ },
+ {
+ "start": 1361.38,
+ "end": 1362.08,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 375
+ },
+ {
+ "start": 1362.08,
+ "end": 1362.34,
+ "confidence": 0,
+ "word": "also",
+ "punct": "also",
+ "index": 376
+ },
+ {
+ "start": 1362.34,
+ "end": 1362.5,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 377
+ },
+ {
+ "start": 1362.5,
+ "end": 1362.66,
+ "confidence": 0,
+ "word": "than",
+ "punct": "than",
+ "index": 378
+ },
+ {
+ "start": 1362.66,
+ "end": 1363.56,
+ "confidence": 0,
+ "word": "1,500",
+ "punct": "1,500",
+ "index": 379
+ },
+ {
+ "start": 1363.56,
+ "end": 1364.14,
+ "confidence": 0,
+ "word": "times",
+ "punct": "times",
+ "index": 380
+ },
+ {
+ "start": 1364.14,
+ "end": 1364.28,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 381
+ },
+ {
+ "start": 1364.28,
+ "end": 1364.92,
+ "confidence": 0,
+ "word": "population",
+ "punct": "population",
+ "index": 382
+ },
+ {
+ "start": 1364.92,
+ "end": 1365.5,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 383
+ },
+ {
+ "start": 1365.5,
+ "end": 1365.68,
+ "confidence": 0,
+ "word": "my",
+ "punct": "my",
+ "index": 384
+ },
+ {
+ "start": 1365.68,
+ "end": 1365.88,
+ "confidence": 0,
+ "word": "home",
+ "punct": "home",
+ "index": 385
+ },
+ {
+ "start": 1365.88,
+ "end": 1366.1,
+ "confidence": 0,
+ "word": "state",
+ "punct": "state",
+ "index": 386
+ },
+ {
+ "start": 1366.1,
+ "end": 1366.18,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 387
+ },
+ {
+ "start": 1366.18,
+ "end": 1366.44,
+ "confidence": 0,
+ "word": "south",
+ "punct": "South",
+ "index": 388
+ },
+ {
+ "start": 1366.44,
+ "end": 1367.42,
+ "confidence": 0,
+ "word": "dakota",
+ "punct": "Dakota.",
+ "index": 389
+ }
+ ],
+ "start": 1353.18
+ }
+ },
+ {
+ "key": "fl7jv",
+ "text": "Plus, roughly 45% of American adults report getting at least some of their news from Facebook in many respects Facebook's incredible reach is why we're here today we're here because of what you Mr Zuckerberg have described as a breach of trust.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 5,
+ "key": 390
+ },
+ {
+ "offset": 6,
+ "length": 7,
+ "key": 391
+ },
+ {
+ "offset": 14,
+ "length": 3,
+ "key": 392
+ },
+ {
+ "offset": 18,
+ "length": 2,
+ "key": 393
+ },
+ {
+ "offset": 21,
+ "length": 8,
+ "key": 394
+ },
+ {
+ "offset": 30,
+ "length": 6,
+ "key": 395
+ },
+ {
+ "offset": 37,
+ "length": 6,
+ "key": 396
+ },
+ {
+ "offset": 44,
+ "length": 7,
+ "key": 397
+ },
+ {
+ "offset": 52,
+ "length": 2,
+ "key": 398
+ },
+ {
+ "offset": 55,
+ "length": 5,
+ "key": 399
+ },
+ {
+ "offset": 61,
+ "length": 4,
+ "key": 400
+ },
+ {
+ "offset": 66,
+ "length": 2,
+ "key": 401
+ },
+ {
+ "offset": 69,
+ "length": 5,
+ "key": 402
+ },
+ {
+ "offset": 75,
+ "length": 4,
+ "key": 403
+ },
+ {
+ "offset": 80,
+ "length": 4,
+ "key": 404
+ },
+ {
+ "offset": 85,
+ "length": 8,
+ "key": 405
+ },
+ {
+ "offset": 94,
+ "length": 2,
+ "key": 406
+ },
+ {
+ "offset": 97,
+ "length": 4,
+ "key": 407
+ },
+ {
+ "offset": 102,
+ "length": 8,
+ "key": 408
+ },
+ {
+ "offset": 111,
+ "length": 10,
+ "key": 409
+ },
+ {
+ "offset": 122,
+ "length": 10,
+ "key": 410
+ },
+ {
+ "offset": 133,
+ "length": 5,
+ "key": 411
+ },
+ {
+ "offset": 139,
+ "length": 2,
+ "key": 412
+ },
+ {
+ "offset": 142,
+ "length": 3,
+ "key": 413
+ },
+ {
+ "offset": 146,
+ "length": 5,
+ "key": 414
+ },
+ {
+ "offset": 152,
+ "length": 4,
+ "key": 415
+ },
+ {
+ "offset": 157,
+ "length": 5,
+ "key": 416
+ },
+ {
+ "offset": 163,
+ "length": 5,
+ "key": 417
+ },
+ {
+ "offset": 169,
+ "length": 4,
+ "key": 418
+ },
+ {
+ "offset": 174,
+ "length": 7,
+ "key": 419
+ },
+ {
+ "offset": 182,
+ "length": 2,
+ "key": 420
+ },
+ {
+ "offset": 185,
+ "length": 4,
+ "key": 421
+ },
+ {
+ "offset": 190,
+ "length": 3,
+ "key": 422
+ },
+ {
+ "offset": 194,
+ "length": 2,
+ "key": 423
+ },
+ {
+ "offset": 197,
+ "length": 10,
+ "key": 424
+ },
+ {
+ "offset": 208,
+ "length": 4,
+ "key": 425
+ },
+ {
+ "offset": 213,
+ "length": 9,
+ "key": 426
+ },
+ {
+ "offset": 223,
+ "length": 2,
+ "key": 427
+ },
+ {
+ "offset": 226,
+ "length": 1,
+ "key": 428
+ },
+ {
+ "offset": 228,
+ "length": 6,
+ "key": 429
+ },
+ {
+ "offset": 235,
+ "length": 2,
+ "key": 430
+ },
+ {
+ "offset": 238,
+ "length": 6,
+ "key": 431
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1367.42,
+ "end": 1368.22,
+ "confidence": 0,
+ "word": "plus,",
+ "punct": "Plus,",
+ "index": 390
+ },
+ {
+ "start": 1368.22,
+ "end": 1368.6,
+ "confidence": 0,
+ "word": "roughly",
+ "punct": "roughly",
+ "index": 391
+ },
+ {
+ "start": 1368.6,
+ "end": 1369.48,
+ "confidence": 0,
+ "word": "45%",
+ "punct": "45%",
+ "index": 392
+ },
+ {
+ "start": 1369.48,
+ "end": 1369.58,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 393
+ },
+ {
+ "start": 1369.58,
+ "end": 1369.96,
+ "confidence": 0,
+ "word": "american",
+ "punct": "American",
+ "index": 394
+ },
+ {
+ "start": 1369.96,
+ "end": 1370.3,
+ "confidence": 0,
+ "word": "adults",
+ "punct": "adults",
+ "index": 395
+ },
+ {
+ "start": 1370.3,
+ "end": 1370.68,
+ "confidence": 0,
+ "word": "report",
+ "punct": "report",
+ "index": 396
+ },
+ {
+ "start": 1370.68,
+ "end": 1370.96,
+ "confidence": 0,
+ "word": "getting",
+ "punct": "getting",
+ "index": 397
+ },
+ {
+ "start": 1370.96,
+ "end": 1371.04,
+ "confidence": 0,
+ "word": "at",
+ "punct": "at",
+ "index": 398
+ },
+ {
+ "start": 1371.04,
+ "end": 1371.22,
+ "confidence": 0,
+ "word": "least",
+ "punct": "least",
+ "index": 399
+ },
+ {
+ "start": 1371.22,
+ "end": 1371.38,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 400
+ },
+ {
+ "start": 1371.38,
+ "end": 1371.48,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 401
+ },
+ {
+ "start": 1371.48,
+ "end": 1371.64,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 402
+ },
+ {
+ "start": 1371.64,
+ "end": 1371.88,
+ "confidence": 0,
+ "word": "news",
+ "punct": "news",
+ "index": 403
+ },
+ {
+ "start": 1371.88,
+ "end": 1372.04,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 404
+ },
+ {
+ "start": 1372.04,
+ "end": 1372.5,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 405
+ },
+ {
+ "start": 1372.5,
+ "end": 1373.54,
+ "confidence": 0,
+ "word": "in",
+ "punct": "in",
+ "index": 406
+ },
+ {
+ "start": 1373.54,
+ "end": 1373.76,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 407
+ },
+ {
+ "start": 1373.76,
+ "end": 1374.94,
+ "confidence": 0,
+ "word": "respects",
+ "punct": "respects",
+ "index": 408
+ },
+ {
+ "start": 1374.94,
+ "end": 1375.92,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 409
+ },
+ {
+ "start": 1375.92,
+ "end": 1376.5,
+ "confidence": 0,
+ "word": "incredible",
+ "punct": "incredible",
+ "index": 410
+ },
+ {
+ "start": 1376.5,
+ "end": 1376.9,
+ "confidence": 0,
+ "word": "reach",
+ "punct": "reach",
+ "index": 411
+ },
+ {
+ "start": 1376.9,
+ "end": 1377.38,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 412
+ },
+ {
+ "start": 1377.38,
+ "end": 1377.56,
+ "confidence": 0,
+ "word": "why",
+ "punct": "why",
+ "index": 413
+ },
+ {
+ "start": 1377.56,
+ "end": 1377.76,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 414
+ },
+ {
+ "start": 1377.76,
+ "end": 1377.92,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 415
+ },
+ {
+ "start": 1377.92,
+ "end": 1378.2,
+ "confidence": 0,
+ "word": "today",
+ "punct": "today",
+ "index": 416
+ },
+ {
+ "start": 1378.2,
+ "end": 1379.38,
+ "confidence": 0,
+ "word": "we're",
+ "punct": "we're",
+ "index": 417
+ },
+ {
+ "start": 1379.38,
+ "end": 1379.54,
+ "confidence": 0,
+ "word": "here",
+ "punct": "here",
+ "index": 418
+ },
+ {
+ "start": 1379.54,
+ "end": 1379.84,
+ "confidence": 0,
+ "word": "because",
+ "punct": "because",
+ "index": 419
+ },
+ {
+ "start": 1379.84,
+ "end": 1379.98,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 420
+ },
+ {
+ "start": 1379.98,
+ "end": 1380.14,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 421
+ },
+ {
+ "start": 1380.14,
+ "end": 1380.26,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 422
+ },
+ {
+ "start": 1380.26,
+ "end": 1380.58,
+ "confidence": 0,
+ "word": "mr",
+ "punct": "Mr",
+ "index": 423
+ },
+ {
+ "start": 1380.58,
+ "end": 1381.24,
+ "confidence": 0,
+ "word": "zuckerberg",
+ "punct": "Zuckerberg",
+ "index": 424
+ },
+ {
+ "start": 1381.24,
+ "end": 1381.44,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 425
+ },
+ {
+ "start": 1381.44,
+ "end": 1381.92,
+ "confidence": 0,
+ "word": "described",
+ "punct": "described",
+ "index": 426
+ },
+ {
+ "start": 1381.92,
+ "end": 1382.08,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 427
+ },
+ {
+ "start": 1382.08,
+ "end": 1382.16,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 428
+ },
+ {
+ "start": 1382.16,
+ "end": 1382.4,
+ "confidence": 0,
+ "word": "breach",
+ "punct": "breach",
+ "index": 429
+ },
+ {
+ "start": 1382.4,
+ "end": 1382.5,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 430
+ },
+ {
+ "start": 1382.5,
+ "end": 1382.86,
+ "confidence": 0,
+ "word": "trust",
+ "punct": "trust.",
+ "index": 431
+ }
+ ],
+ "start": 1367.42
+ }
+ },
+ {
+ "key": "b3of8",
+ "text": "A quiz app used by approximately 300,000 people led to information about 87,000,000 Facebook users being obtained by the company.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 1,
+ "key": 432
+ },
+ {
+ "offset": 2,
+ "length": 4,
+ "key": 433
+ },
+ {
+ "offset": 7,
+ "length": 3,
+ "key": 434
+ },
+ {
+ "offset": 11,
+ "length": 4,
+ "key": 435
+ },
+ {
+ "offset": 16,
+ "length": 2,
+ "key": 436
+ },
+ {
+ "offset": 19,
+ "length": 13,
+ "key": 437
+ },
+ {
+ "offset": 33,
+ "length": 7,
+ "key": 438
+ },
+ {
+ "offset": 41,
+ "length": 6,
+ "key": 439
+ },
+ {
+ "offset": 48,
+ "length": 3,
+ "key": 440
+ },
+ {
+ "offset": 52,
+ "length": 2,
+ "key": 441
+ },
+ {
+ "offset": 55,
+ "length": 11,
+ "key": 442
+ },
+ {
+ "offset": 67,
+ "length": 5,
+ "key": 443
+ },
+ {
+ "offset": 73,
+ "length": 10,
+ "key": 444
+ },
+ {
+ "offset": 84,
+ "length": 8,
+ "key": 445
+ },
+ {
+ "offset": 93,
+ "length": 5,
+ "key": 446
+ },
+ {
+ "offset": 99,
+ "length": 5,
+ "key": 447
+ },
+ {
+ "offset": 105,
+ "length": 8,
+ "key": 448
+ },
+ {
+ "offset": 114,
+ "length": 2,
+ "key": 449
+ },
+ {
+ "offset": 117,
+ "length": 3,
+ "key": 450
+ },
+ {
+ "offset": 121,
+ "length": 8,
+ "key": 451
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1382.86,
+ "end": 1384.04,
+ "confidence": 0,
+ "word": "a",
+ "punct": "A",
+ "index": 432
+ },
+ {
+ "start": 1384.04,
+ "end": 1384.34,
+ "confidence": 0,
+ "word": "quiz",
+ "punct": "quiz",
+ "index": 433
+ },
+ {
+ "start": 1384.34,
+ "end": 1384.66,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 434
+ },
+ {
+ "start": 1384.66,
+ "end": 1384.92,
+ "confidence": 0,
+ "word": "used",
+ "punct": "used",
+ "index": 435
+ },
+ {
+ "start": 1384.92,
+ "end": 1385.06,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 436
+ },
+ {
+ "start": 1385.06,
+ "end": 1385.76,
+ "confidence": 0,
+ "word": "approximately",
+ "punct": "approximately",
+ "index": 437
+ },
+ {
+ "start": 1385.76,
+ "end": 1386.68,
+ "confidence": 0,
+ "word": "300,000",
+ "punct": "300,000",
+ "index": 438
+ },
+ {
+ "start": 1386.68,
+ "end": 1387.04,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 439
+ },
+ {
+ "start": 1387.04,
+ "end": 1388.02,
+ "confidence": 0,
+ "word": "led",
+ "punct": "led",
+ "index": 440
+ },
+ {
+ "start": 1388.02,
+ "end": 1388.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 441
+ },
+ {
+ "start": 1388.12,
+ "end": 1388.84,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 442
+ },
+ {
+ "start": 1388.84,
+ "end": 1389.68,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 443
+ },
+ {
+ "start": 1389.68,
+ "end": 1390.78,
+ "confidence": 0,
+ "word": "87,000,000",
+ "punct": "87,000,000",
+ "index": 444
+ },
+ {
+ "start": 1390.78,
+ "end": 1391.3,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 445
+ },
+ {
+ "start": 1391.3,
+ "end": 1391.74,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 446
+ },
+ {
+ "start": 1391.74,
+ "end": 1391.96,
+ "confidence": 0,
+ "word": "being",
+ "punct": "being",
+ "index": 447
+ },
+ {
+ "start": 1391.96,
+ "end": 1392.44,
+ "confidence": 0,
+ "word": "obtained",
+ "punct": "obtained",
+ "index": 448
+ },
+ {
+ "start": 1392.44,
+ "end": 1392.58,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 449
+ },
+ {
+ "start": 1392.58,
+ "end": 1392.78,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 450
+ },
+ {
+ "start": 1392.78,
+ "end": 1393.24,
+ "confidence": 0,
+ "word": "company",
+ "punct": "company.",
+ "index": 451
+ }
+ ],
+ "start": 1382.86
+ }
+ },
+ {
+ "key": "7v6l4",
+ "text": "Cambridge Analytica.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 9,
+ "key": 452
+ },
+ {
+ "offset": 10,
+ "length": 10,
+ "key": 453
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1393.24,
+ "end": 1393.8,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 452
+ },
+ {
+ "start": 1393.8,
+ "end": 1395.06,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica.",
+ "index": 453
+ }
+ ],
+ "start": 1393.24
+ }
+ },
+ {
+ "key": "ascho",
+ "text": "There are plenty of questions about the behavior of Cambridge Analytica and we expect to hold a future hearing on Cambridge and similar firms.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 5,
+ "key": 454
+ },
+ {
+ "offset": 6,
+ "length": 3,
+ "key": 455
+ },
+ {
+ "offset": 10,
+ "length": 6,
+ "key": 456
+ },
+ {
+ "offset": 17,
+ "length": 2,
+ "key": 457
+ },
+ {
+ "offset": 20,
+ "length": 9,
+ "key": 458
+ },
+ {
+ "offset": 30,
+ "length": 5,
+ "key": 459
+ },
+ {
+ "offset": 36,
+ "length": 3,
+ "key": 460
+ },
+ {
+ "offset": 40,
+ "length": 8,
+ "key": 461
+ },
+ {
+ "offset": 49,
+ "length": 2,
+ "key": 462
+ },
+ {
+ "offset": 52,
+ "length": 9,
+ "key": 463
+ },
+ {
+ "offset": 62,
+ "length": 9,
+ "key": 464
+ },
+ {
+ "offset": 72,
+ "length": 3,
+ "key": 465
+ },
+ {
+ "offset": 76,
+ "length": 2,
+ "key": 466
+ },
+ {
+ "offset": 79,
+ "length": 6,
+ "key": 467
+ },
+ {
+ "offset": 86,
+ "length": 2,
+ "key": 468
+ },
+ {
+ "offset": 89,
+ "length": 4,
+ "key": 469
+ },
+ {
+ "offset": 94,
+ "length": 1,
+ "key": 470
+ },
+ {
+ "offset": 96,
+ "length": 6,
+ "key": 471
+ },
+ {
+ "offset": 103,
+ "length": 7,
+ "key": 472
+ },
+ {
+ "offset": 111,
+ "length": 2,
+ "key": 473
+ },
+ {
+ "offset": 114,
+ "length": 9,
+ "key": 474
+ },
+ {
+ "offset": 124,
+ "length": 3,
+ "key": 475
+ },
+ {
+ "offset": 128,
+ "length": 7,
+ "key": 476
+ },
+ {
+ "offset": 136,
+ "length": 6,
+ "key": 477
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1395.06,
+ "end": 1395.84,
+ "confidence": 0,
+ "word": "there",
+ "punct": "There",
+ "index": 454
+ },
+ {
+ "start": 1395.84,
+ "end": 1396.02,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 455
+ },
+ {
+ "start": 1396.02,
+ "end": 1396.44,
+ "confidence": 0,
+ "word": "plenty",
+ "punct": "plenty",
+ "index": 456
+ },
+ {
+ "start": 1396.44,
+ "end": 1396.6,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 457
+ },
+ {
+ "start": 1396.6,
+ "end": 1397.1,
+ "confidence": 0,
+ "word": "questions",
+ "punct": "questions",
+ "index": 458
+ },
+ {
+ "start": 1397.1,
+ "end": 1397.46,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 459
+ },
+ {
+ "start": 1397.46,
+ "end": 1397.72,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 460
+ },
+ {
+ "start": 1397.72,
+ "end": 1398.18,
+ "confidence": 0,
+ "word": "behavior",
+ "punct": "behavior",
+ "index": 461
+ },
+ {
+ "start": 1398.18,
+ "end": 1398.96,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 462
+ },
+ {
+ "start": 1398.96,
+ "end": 1399.44,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 463
+ },
+ {
+ "start": 1399.44,
+ "end": 1399.94,
+ "confidence": 0,
+ "word": "analytica",
+ "punct": "Analytica",
+ "index": 464
+ },
+ {
+ "start": 1399.94,
+ "end": 1400.16,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 465
+ },
+ {
+ "start": 1400.16,
+ "end": 1400.26,
+ "confidence": 0,
+ "word": "we",
+ "punct": "we",
+ "index": 466
+ },
+ {
+ "start": 1400.26,
+ "end": 1400.62,
+ "confidence": 0,
+ "word": "expect",
+ "punct": "expect",
+ "index": 467
+ },
+ {
+ "start": 1400.62,
+ "end": 1400.74,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 468
+ },
+ {
+ "start": 1400.74,
+ "end": 1400.94,
+ "confidence": 0,
+ "word": "hold",
+ "punct": "hold",
+ "index": 469
+ },
+ {
+ "start": 1400.94,
+ "end": 1400.98,
+ "confidence": 0,
+ "word": "a",
+ "punct": "a",
+ "index": 470
+ },
+ {
+ "start": 1400.98,
+ "end": 1401.38,
+ "confidence": 0,
+ "word": "future",
+ "punct": "future",
+ "index": 471
+ },
+ {
+ "start": 1401.38,
+ "end": 1401.74,
+ "confidence": 0,
+ "word": "hearing",
+ "punct": "hearing",
+ "index": 472
+ },
+ {
+ "start": 1401.74,
+ "end": 1401.94,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 473
+ },
+ {
+ "start": 1401.94,
+ "end": 1402.44,
+ "confidence": 0,
+ "word": "cambridge",
+ "punct": "Cambridge",
+ "index": 474
+ },
+ {
+ "start": 1402.44,
+ "end": 1402.6,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 475
+ },
+ {
+ "start": 1402.6,
+ "end": 1403.5,
+ "confidence": 0,
+ "word": "similar",
+ "punct": "similar",
+ "index": 476
+ },
+ {
+ "start": 1403.5,
+ "end": 1403.94,
+ "confidence": 0,
+ "word": "firms",
+ "punct": "firms.",
+ "index": 477
+ }
+ ],
+ "start": 1395.06
+ }
+ },
+ {
+ "key": "6i5d3",
+ "text": "But as you said, this is not likely to be an isolated incident.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 478
+ },
+ {
+ "offset": 4,
+ "length": 2,
+ "key": 479
+ },
+ {
+ "offset": 7,
+ "length": 3,
+ "key": 480
+ },
+ {
+ "offset": 11,
+ "length": 5,
+ "key": 481
+ },
+ {
+ "offset": 17,
+ "length": 4,
+ "key": 482
+ },
+ {
+ "offset": 22,
+ "length": 2,
+ "key": 483
+ },
+ {
+ "offset": 25,
+ "length": 3,
+ "key": 484
+ },
+ {
+ "offset": 29,
+ "length": 6,
+ "key": 485
+ },
+ {
+ "offset": 36,
+ "length": 2,
+ "key": 486
+ },
+ {
+ "offset": 39,
+ "length": 2,
+ "key": 487
+ },
+ {
+ "offset": 42,
+ "length": 2,
+ "key": 488
+ },
+ {
+ "offset": 45,
+ "length": 8,
+ "key": 489
+ },
+ {
+ "offset": 54,
+ "length": 9,
+ "key": 490
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1403.94,
+ "end": 1404.8,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 478
+ },
+ {
+ "start": 1404.8,
+ "end": 1404.94,
+ "confidence": 0,
+ "word": "as",
+ "punct": "as",
+ "index": 479
+ },
+ {
+ "start": 1404.94,
+ "end": 1405.06,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 480
+ },
+ {
+ "start": 1405.06,
+ "end": 1405.9,
+ "confidence": 0,
+ "word": "said,",
+ "punct": "said,",
+ "index": 481
+ },
+ {
+ "start": 1405.9,
+ "end": 1406.48,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 482
+ },
+ {
+ "start": 1406.48,
+ "end": 1406.68,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 483
+ },
+ {
+ "start": 1406.68,
+ "end": 1407.08,
+ "confidence": 0,
+ "word": "not",
+ "punct": "not",
+ "index": 484
+ },
+ {
+ "start": 1407.08,
+ "end": 1407.76,
+ "confidence": 0,
+ "word": "likely",
+ "punct": "likely",
+ "index": 485
+ },
+ {
+ "start": 1407.76,
+ "end": 1408.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 486
+ },
+ {
+ "start": 1408.12,
+ "end": 1408.26,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 487
+ },
+ {
+ "start": 1408.26,
+ "end": 1409.04,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 488
+ },
+ {
+ "start": 1409.04,
+ "end": 1409.68,
+ "confidence": 0,
+ "word": "isolated",
+ "punct": "isolated",
+ "index": 489
+ },
+ {
+ "start": 1409.68,
+ "end": 1410.6,
+ "confidence": 0,
+ "word": "incident",
+ "punct": "incident.",
+ "index": 490
+ }
+ ],
+ "start": 1403.94
+ }
+ },
+ {
+ "key": "d3a06",
+ "text": "A fact demonstrated by Facebook suspension of another firm just this past weekend.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 1,
+ "key": 491
+ },
+ {
+ "offset": 2,
+ "length": 4,
+ "key": 492
+ },
+ {
+ "offset": 7,
+ "length": 12,
+ "key": 493
+ },
+ {
+ "offset": 20,
+ "length": 2,
+ "key": 494
+ },
+ {
+ "offset": 23,
+ "length": 8,
+ "key": 495
+ },
+ {
+ "offset": 32,
+ "length": 10,
+ "key": 496
+ },
+ {
+ "offset": 43,
+ "length": 2,
+ "key": 497
+ },
+ {
+ "offset": 46,
+ "length": 7,
+ "key": 498
+ },
+ {
+ "offset": 54,
+ "length": 4,
+ "key": 499
+ },
+ {
+ "offset": 59,
+ "length": 4,
+ "key": 500
+ },
+ {
+ "offset": 64,
+ "length": 4,
+ "key": 501
+ },
+ {
+ "offset": 69,
+ "length": 4,
+ "key": 502
+ },
+ {
+ "offset": 74,
+ "length": 8,
+ "key": 503
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1410.6,
+ "end": 1410.78,
+ "confidence": 0,
+ "word": "a",
+ "punct": "A",
+ "index": 491
+ },
+ {
+ "start": 1410.78,
+ "end": 1411.1,
+ "confidence": 0,
+ "word": "fact",
+ "punct": "fact",
+ "index": 492
+ },
+ {
+ "start": 1411.1,
+ "end": 1411.7,
+ "confidence": 0,
+ "word": "demonstrated",
+ "punct": "demonstrated",
+ "index": 493
+ },
+ {
+ "start": 1411.7,
+ "end": 1411.86,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 494
+ },
+ {
+ "start": 1411.86,
+ "end": 1412.3,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 495
+ },
+ {
+ "start": 1412.3,
+ "end": 1412.84,
+ "confidence": 0,
+ "word": "suspension",
+ "punct": "suspension",
+ "index": 496
+ },
+ {
+ "start": 1412.84,
+ "end": 1412.94,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 497
+ },
+ {
+ "start": 1412.94,
+ "end": 1413.24,
+ "confidence": 0,
+ "word": "another",
+ "punct": "another",
+ "index": 498
+ },
+ {
+ "start": 1413.24,
+ "end": 1413.5,
+ "confidence": 0,
+ "word": "firm",
+ "punct": "firm",
+ "index": 499
+ },
+ {
+ "start": 1413.5,
+ "end": 1413.68,
+ "confidence": 0,
+ "word": "just",
+ "punct": "just",
+ "index": 500
+ },
+ {
+ "start": 1413.68,
+ "end": 1413.86,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 501
+ },
+ {
+ "start": 1413.86,
+ "end": 1414.12,
+ "confidence": 0,
+ "word": "past",
+ "punct": "past",
+ "index": 502
+ },
+ {
+ "start": 1414.12,
+ "end": 1414.98,
+ "confidence": 0,
+ "word": "weekend",
+ "punct": "weekend.",
+ "index": 503
+ }
+ ],
+ "start": 1410.6
+ }
+ },
+ {
+ "key": "c8et",
+ "text": "You promised that when Facebook discovers other apps that had access to large amounts of user data, you will ban them until those affected and that's appropriate.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 504
+ },
+ {
+ "offset": 4,
+ "length": 8,
+ "key": 505
+ },
+ {
+ "offset": 13,
+ "length": 4,
+ "key": 506
+ },
+ {
+ "offset": 18,
+ "length": 4,
+ "key": 507
+ },
+ {
+ "offset": 23,
+ "length": 8,
+ "key": 508
+ },
+ {
+ "offset": 32,
+ "length": 9,
+ "key": 509
+ },
+ {
+ "offset": 42,
+ "length": 5,
+ "key": 510
+ },
+ {
+ "offset": 48,
+ "length": 4,
+ "key": 511
+ },
+ {
+ "offset": 53,
+ "length": 4,
+ "key": 512
+ },
+ {
+ "offset": 58,
+ "length": 3,
+ "key": 513
+ },
+ {
+ "offset": 62,
+ "length": 6,
+ "key": 514
+ },
+ {
+ "offset": 69,
+ "length": 2,
+ "key": 515
+ },
+ {
+ "offset": 72,
+ "length": 5,
+ "key": 516
+ },
+ {
+ "offset": 78,
+ "length": 7,
+ "key": 517
+ },
+ {
+ "offset": 86,
+ "length": 2,
+ "key": 518
+ },
+ {
+ "offset": 89,
+ "length": 4,
+ "key": 519
+ },
+ {
+ "offset": 94,
+ "length": 5,
+ "key": 520
+ },
+ {
+ "offset": 100,
+ "length": 3,
+ "key": 521
+ },
+ {
+ "offset": 104,
+ "length": 4,
+ "key": 522
+ },
+ {
+ "offset": 109,
+ "length": 3,
+ "key": 523
+ },
+ {
+ "offset": 113,
+ "length": 4,
+ "key": 524
+ },
+ {
+ "offset": 118,
+ "length": 5,
+ "key": 525
+ },
+ {
+ "offset": 124,
+ "length": 5,
+ "key": 526
+ },
+ {
+ "offset": 130,
+ "length": 8,
+ "key": 527
+ },
+ {
+ "offset": 139,
+ "length": 3,
+ "key": 528
+ },
+ {
+ "offset": 143,
+ "length": 6,
+ "key": 529
+ },
+ {
+ "offset": 150,
+ "length": 12,
+ "key": 530
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1414.98,
+ "end": 1415.52,
+ "confidence": 0,
+ "word": "you",
+ "punct": "You",
+ "index": 504
+ },
+ {
+ "start": 1415.52,
+ "end": 1416.02,
+ "confidence": 0,
+ "word": "promised",
+ "punct": "promised",
+ "index": 505
+ },
+ {
+ "start": 1416.02,
+ "end": 1416.22,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 506
+ },
+ {
+ "start": 1416.22,
+ "end": 1416.54,
+ "confidence": 0,
+ "word": "when",
+ "punct": "when",
+ "index": 507
+ },
+ {
+ "start": 1416.54,
+ "end": 1417.18,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 508
+ },
+ {
+ "start": 1417.18,
+ "end": 1417.7,
+ "confidence": 0,
+ "word": "discovers",
+ "punct": "discovers",
+ "index": 509
+ },
+ {
+ "start": 1417.7,
+ "end": 1418,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 510
+ },
+ {
+ "start": 1418,
+ "end": 1418.26,
+ "confidence": 0,
+ "word": "apps",
+ "punct": "apps",
+ "index": 511
+ },
+ {
+ "start": 1418.26,
+ "end": 1418.4,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 512
+ },
+ {
+ "start": 1418.4,
+ "end": 1418.6,
+ "confidence": 0,
+ "word": "had",
+ "punct": "had",
+ "index": 513
+ },
+ {
+ "start": 1418.6,
+ "end": 1419,
+ "confidence": 0,
+ "word": "access",
+ "punct": "access",
+ "index": 514
+ },
+ {
+ "start": 1419,
+ "end": 1419.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 515
+ },
+ {
+ "start": 1419.12,
+ "end": 1419.4,
+ "confidence": 0,
+ "word": "large",
+ "punct": "large",
+ "index": 516
+ },
+ {
+ "start": 1419.4,
+ "end": 1419.68,
+ "confidence": 0,
+ "word": "amounts",
+ "punct": "amounts",
+ "index": 517
+ },
+ {
+ "start": 1419.68,
+ "end": 1419.82,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 518
+ },
+ {
+ "start": 1419.82,
+ "end": 1420.14,
+ "confidence": 0,
+ "word": "user",
+ "punct": "user",
+ "index": 519
+ },
+ {
+ "start": 1420.14,
+ "end": 1420.46,
+ "confidence": 0,
+ "word": "data,",
+ "punct": "data,",
+ "index": 520
+ },
+ {
+ "start": 1420.46,
+ "end": 1421.34,
+ "confidence": 0,
+ "word": "you",
+ "punct": "you",
+ "index": 521
+ },
+ {
+ "start": 1421.34,
+ "end": 1421.52,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 522
+ },
+ {
+ "start": 1421.52,
+ "end": 1422.14,
+ "confidence": 0,
+ "word": "ban",
+ "punct": "ban",
+ "index": 523
+ },
+ {
+ "start": 1422.14,
+ "end": 1422.38,
+ "confidence": 0,
+ "word": "them",
+ "punct": "them",
+ "index": 524
+ },
+ {
+ "start": 1422.38,
+ "end": 1422.7,
+ "confidence": 0,
+ "word": "until",
+ "punct": "until",
+ "index": 525
+ },
+ {
+ "start": 1422.7,
+ "end": 1422.98,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 526
+ },
+ {
+ "start": 1422.98,
+ "end": 1423.46,
+ "confidence": 0,
+ "word": "affected",
+ "punct": "affected",
+ "index": 527
+ },
+ {
+ "start": 1423.46,
+ "end": 1424.42,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 528
+ },
+ {
+ "start": 1424.42,
+ "end": 1424.64,
+ "confidence": 0,
+ "word": "that's",
+ "punct": "that's",
+ "index": 529
+ },
+ {
+ "start": 1424.64,
+ "end": 1426.01,
+ "confidence": 0,
+ "word": "appropriate",
+ "punct": "appropriate.",
+ "index": 530
+ }
+ ],
+ "start": 1414.98
+ }
+ },
+ {
+ "key": "cmkhk",
+ "text": "But it's unlikely to be enough for the 2,000,000,000 Facebook users.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 531
+ },
+ {
+ "offset": 4,
+ "length": 4,
+ "key": 532
+ },
+ {
+ "offset": 9,
+ "length": 8,
+ "key": 533
+ },
+ {
+ "offset": 18,
+ "length": 2,
+ "key": 534
+ },
+ {
+ "offset": 21,
+ "length": 2,
+ "key": 535
+ },
+ {
+ "offset": 24,
+ "length": 6,
+ "key": 536
+ },
+ {
+ "offset": 31,
+ "length": 3,
+ "key": 537
+ },
+ {
+ "offset": 35,
+ "length": 3,
+ "key": 538
+ },
+ {
+ "offset": 39,
+ "length": 13,
+ "key": 539
+ },
+ {
+ "offset": 53,
+ "length": 8,
+ "key": 540
+ },
+ {
+ "offset": 62,
+ "length": 6,
+ "key": 541
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1426.01,
+ "end": 1426.13,
+ "confidence": 0,
+ "word": "but",
+ "punct": "But",
+ "index": 531
+ },
+ {
+ "start": 1426.13,
+ "end": 1426.27,
+ "confidence": 0,
+ "word": "it's",
+ "punct": "it's",
+ "index": 532
+ },
+ {
+ "start": 1426.27,
+ "end": 1426.81,
+ "confidence": 0,
+ "word": "unlikely",
+ "punct": "unlikely",
+ "index": 533
+ },
+ {
+ "start": 1426.81,
+ "end": 1426.99,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 534
+ },
+ {
+ "start": 1426.99,
+ "end": 1427.11,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 535
+ },
+ {
+ "start": 1427.11,
+ "end": 1427.47,
+ "confidence": 0,
+ "word": "enough",
+ "punct": "enough",
+ "index": 536
+ },
+ {
+ "start": 1427.47,
+ "end": 1427.81,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 537
+ },
+ {
+ "start": 1427.81,
+ "end": 1427.93,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 538
+ },
+ {
+ "start": 1427.93,
+ "end": 1428.61,
+ "confidence": 0,
+ "word": "2,000,000,000",
+ "punct": "2,000,000,000",
+ "index": 539
+ },
+ {
+ "start": 1428.61,
+ "end": 1429.11,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 540
+ },
+ {
+ "start": 1429.11,
+ "end": 1429.57,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users.",
+ "index": 541
+ }
+ ],
+ "start": 1426.01
+ }
+ },
+ {
+ "key": "ei9gq",
+ "text": "One reason that so many people are worried about this incident is what it says about how Facebook works.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 542
+ },
+ {
+ "offset": 4,
+ "length": 6,
+ "key": 543
+ },
+ {
+ "offset": 11,
+ "length": 4,
+ "key": 544
+ },
+ {
+ "offset": 16,
+ "length": 2,
+ "key": 545
+ },
+ {
+ "offset": 19,
+ "length": 4,
+ "key": 546
+ },
+ {
+ "offset": 24,
+ "length": 6,
+ "key": 547
+ },
+ {
+ "offset": 31,
+ "length": 3,
+ "key": 548
+ },
+ {
+ "offset": 35,
+ "length": 7,
+ "key": 549
+ },
+ {
+ "offset": 43,
+ "length": 5,
+ "key": 550
+ },
+ {
+ "offset": 49,
+ "length": 4,
+ "key": 551
+ },
+ {
+ "offset": 54,
+ "length": 8,
+ "key": 552
+ },
+ {
+ "offset": 63,
+ "length": 2,
+ "key": 553
+ },
+ {
+ "offset": 66,
+ "length": 4,
+ "key": 554
+ },
+ {
+ "offset": 71,
+ "length": 2,
+ "key": 555
+ },
+ {
+ "offset": 74,
+ "length": 4,
+ "key": 556
+ },
+ {
+ "offset": 79,
+ "length": 5,
+ "key": 557
+ },
+ {
+ "offset": 85,
+ "length": 3,
+ "key": 558
+ },
+ {
+ "offset": 89,
+ "length": 8,
+ "key": 559
+ },
+ {
+ "offset": 98,
+ "length": 6,
+ "key": 560
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1429.57,
+ "end": 1430.63,
+ "confidence": 0,
+ "word": "one",
+ "punct": "One",
+ "index": 542
+ },
+ {
+ "start": 1430.63,
+ "end": 1430.99,
+ "confidence": 0,
+ "word": "reason",
+ "punct": "reason",
+ "index": 543
+ },
+ {
+ "start": 1430.99,
+ "end": 1431.17,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 544
+ },
+ {
+ "start": 1431.17,
+ "end": 1431.39,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 545
+ },
+ {
+ "start": 1431.39,
+ "end": 1431.63,
+ "confidence": 0,
+ "word": "many",
+ "punct": "many",
+ "index": 546
+ },
+ {
+ "start": 1431.63,
+ "end": 1431.97,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 547
+ },
+ {
+ "start": 1431.97,
+ "end": 1432.41,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 548
+ },
+ {
+ "start": 1432.41,
+ "end": 1432.73,
+ "confidence": 0,
+ "word": "worried",
+ "punct": "worried",
+ "index": 549
+ },
+ {
+ "start": 1432.73,
+ "end": 1432.95,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 550
+ },
+ {
+ "start": 1432.95,
+ "end": 1433.17,
+ "confidence": 0,
+ "word": "this",
+ "punct": "this",
+ "index": 551
+ },
+ {
+ "start": 1433.17,
+ "end": 1433.65,
+ "confidence": 0,
+ "word": "incident",
+ "punct": "incident",
+ "index": 552
+ },
+ {
+ "start": 1433.65,
+ "end": 1434.43,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 553
+ },
+ {
+ "start": 1434.43,
+ "end": 1434.59,
+ "confidence": 0,
+ "word": "what",
+ "punct": "what",
+ "index": 554
+ },
+ {
+ "start": 1434.59,
+ "end": 1434.69,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 555
+ },
+ {
+ "start": 1434.69,
+ "end": 1434.89,
+ "confidence": 0,
+ "word": "says",
+ "punct": "says",
+ "index": 556
+ },
+ {
+ "start": 1434.89,
+ "end": 1435.25,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 557
+ },
+ {
+ "start": 1435.25,
+ "end": 1435.49,
+ "confidence": 0,
+ "word": "how",
+ "punct": "how",
+ "index": 558
+ },
+ {
+ "start": 1435.49,
+ "end": 1435.99,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 559
+ },
+ {
+ "start": 1435.99,
+ "end": 1437.04,
+ "confidence": 0,
+ "word": "works",
+ "punct": "works.",
+ "index": 560
+ }
+ ],
+ "start": 1429.57
+ }
+ },
+ {
+ "key": "85ovh",
+ "text": "The idea that for every person who decided to try an app information about nearly 300 other people was scraped from your services to put it mildly disturbing.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 561
+ },
+ {
+ "offset": 4,
+ "length": 4,
+ "key": 562
+ },
+ {
+ "offset": 9,
+ "length": 4,
+ "key": 563
+ },
+ {
+ "offset": 14,
+ "length": 3,
+ "key": 564
+ },
+ {
+ "offset": 18,
+ "length": 5,
+ "key": 565
+ },
+ {
+ "offset": 24,
+ "length": 6,
+ "key": 566
+ },
+ {
+ "offset": 31,
+ "length": 3,
+ "key": 567
+ },
+ {
+ "offset": 35,
+ "length": 7,
+ "key": 568
+ },
+ {
+ "offset": 43,
+ "length": 2,
+ "key": 569
+ },
+ {
+ "offset": 46,
+ "length": 3,
+ "key": 570
+ },
+ {
+ "offset": 50,
+ "length": 2,
+ "key": 571
+ },
+ {
+ "offset": 53,
+ "length": 3,
+ "key": 572
+ },
+ {
+ "offset": 57,
+ "length": 11,
+ "key": 573
+ },
+ {
+ "offset": 69,
+ "length": 5,
+ "key": 574
+ },
+ {
+ "offset": 75,
+ "length": 6,
+ "key": 575
+ },
+ {
+ "offset": 82,
+ "length": 3,
+ "key": 576
+ },
+ {
+ "offset": 86,
+ "length": 5,
+ "key": 577
+ },
+ {
+ "offset": 92,
+ "length": 6,
+ "key": 578
+ },
+ {
+ "offset": 99,
+ "length": 3,
+ "key": 579
+ },
+ {
+ "offset": 103,
+ "length": 7,
+ "key": 580
+ },
+ {
+ "offset": 111,
+ "length": 4,
+ "key": 581
+ },
+ {
+ "offset": 116,
+ "length": 4,
+ "key": 582
+ },
+ {
+ "offset": 121,
+ "length": 8,
+ "key": 583
+ },
+ {
+ "offset": 130,
+ "length": 2,
+ "key": 584
+ },
+ {
+ "offset": 133,
+ "length": 3,
+ "key": 585
+ },
+ {
+ "offset": 137,
+ "length": 2,
+ "key": 586
+ },
+ {
+ "offset": 140,
+ "length": 6,
+ "key": 587
+ },
+ {
+ "offset": 147,
+ "length": 11,
+ "key": 588
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1437.04,
+ "end": 1437.88,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 561
+ },
+ {
+ "start": 1437.88,
+ "end": 1438.26,
+ "confidence": 0,
+ "word": "idea",
+ "punct": "idea",
+ "index": 562
+ },
+ {
+ "start": 1438.26,
+ "end": 1439.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 563
+ },
+ {
+ "start": 1439.36,
+ "end": 1439.54,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 564
+ },
+ {
+ "start": 1439.54,
+ "end": 1439.84,
+ "confidence": 0,
+ "word": "every",
+ "punct": "every",
+ "index": 565
+ },
+ {
+ "start": 1439.84,
+ "end": 1440.58,
+ "confidence": 0,
+ "word": "person",
+ "punct": "person",
+ "index": 566
+ },
+ {
+ "start": 1440.58,
+ "end": 1440.76,
+ "confidence": 0,
+ "word": "who",
+ "punct": "who",
+ "index": 567
+ },
+ {
+ "start": 1440.76,
+ "end": 1441.34,
+ "confidence": 0,
+ "word": "decided",
+ "punct": "decided",
+ "index": 568
+ },
+ {
+ "start": 1441.34,
+ "end": 1441.48,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 569
+ },
+ {
+ "start": 1441.48,
+ "end": 1441.72,
+ "confidence": 0,
+ "word": "try",
+ "punct": "try",
+ "index": 570
+ },
+ {
+ "start": 1441.72,
+ "end": 1441.98,
+ "confidence": 0,
+ "word": "an",
+ "punct": "an",
+ "index": 571
+ },
+ {
+ "start": 1441.98,
+ "end": 1442.74,
+ "confidence": 0,
+ "word": "app",
+ "punct": "app",
+ "index": 572
+ },
+ {
+ "start": 1442.74,
+ "end": 1443.78,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 573
+ },
+ {
+ "start": 1443.78,
+ "end": 1444.08,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 574
+ },
+ {
+ "start": 1444.08,
+ "end": 1444.46,
+ "confidence": 0,
+ "word": "nearly",
+ "punct": "nearly",
+ "index": 575
+ },
+ {
+ "start": 1444.46,
+ "end": 1445.08,
+ "confidence": 0,
+ "word": "300",
+ "punct": "300",
+ "index": 576
+ },
+ {
+ "start": 1445.08,
+ "end": 1445.56,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 577
+ },
+ {
+ "start": 1445.56,
+ "end": 1445.86,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 578
+ },
+ {
+ "start": 1445.86,
+ "end": 1446.84,
+ "confidence": 0,
+ "word": "was",
+ "punct": "was",
+ "index": 579
+ },
+ {
+ "start": 1446.84,
+ "end": 1447.32,
+ "confidence": 0,
+ "word": "scraped",
+ "punct": "scraped",
+ "index": 580
+ },
+ {
+ "start": 1447.32,
+ "end": 1447.48,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 581
+ },
+ {
+ "start": 1447.48,
+ "end": 1447.68,
+ "confidence": 0,
+ "word": "your",
+ "punct": "your",
+ "index": 582
+ },
+ {
+ "start": 1447.68,
+ "end": 1448.2,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services",
+ "index": 583
+ },
+ {
+ "start": 1448.2,
+ "end": 1448.32,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 584
+ },
+ {
+ "start": 1448.32,
+ "end": 1448.44,
+ "confidence": 0,
+ "word": "put",
+ "punct": "put",
+ "index": 585
+ },
+ {
+ "start": 1448.44,
+ "end": 1448.56,
+ "confidence": 0,
+ "word": "it",
+ "punct": "it",
+ "index": 586
+ },
+ {
+ "start": 1448.56,
+ "end": 1449.38,
+ "confidence": 0,
+ "word": "mildly",
+ "punct": "mildly",
+ "index": 587
+ },
+ {
+ "start": 1449.38,
+ "end": 1450.8,
+ "confidence": 0,
+ "word": "disturbing",
+ "punct": "disturbing.",
+ "index": 588
+ }
+ ],
+ "start": 1437.04
+ }
+ },
+ {
+ "key": "bnsg9",
+ "text": "And the fact that those 87,000,000 people may have technically consented to making their data available doesn't make most people feel any better.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 589
+ },
+ {
+ "offset": 4,
+ "length": 3,
+ "key": 590
+ },
+ {
+ "offset": 8,
+ "length": 4,
+ "key": 591
+ },
+ {
+ "offset": 13,
+ "length": 4,
+ "key": 592
+ },
+ {
+ "offset": 18,
+ "length": 5,
+ "key": 593
+ },
+ {
+ "offset": 24,
+ "length": 10,
+ "key": 594
+ },
+ {
+ "offset": 35,
+ "length": 6,
+ "key": 595
+ },
+ {
+ "offset": 42,
+ "length": 3,
+ "key": 596
+ },
+ {
+ "offset": 46,
+ "length": 4,
+ "key": 597
+ },
+ {
+ "offset": 51,
+ "length": 11,
+ "key": 598
+ },
+ {
+ "offset": 63,
+ "length": 9,
+ "key": 599
+ },
+ {
+ "offset": 73,
+ "length": 2,
+ "key": 600
+ },
+ {
+ "offset": 76,
+ "length": 6,
+ "key": 601
+ },
+ {
+ "offset": 83,
+ "length": 5,
+ "key": 602
+ },
+ {
+ "offset": 89,
+ "length": 4,
+ "key": 603
+ },
+ {
+ "offset": 94,
+ "length": 9,
+ "key": 604
+ },
+ {
+ "offset": 104,
+ "length": 7,
+ "key": 605
+ },
+ {
+ "offset": 112,
+ "length": 4,
+ "key": 606
+ },
+ {
+ "offset": 117,
+ "length": 4,
+ "key": 607
+ },
+ {
+ "offset": 122,
+ "length": 6,
+ "key": 608
+ },
+ {
+ "offset": 129,
+ "length": 4,
+ "key": 609
+ },
+ {
+ "offset": 134,
+ "length": 3,
+ "key": 610
+ },
+ {
+ "offset": 138,
+ "length": 7,
+ "key": 611
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1450.8,
+ "end": 1451.34,
+ "confidence": 0,
+ "word": "and",
+ "punct": "And",
+ "index": 589
+ },
+ {
+ "start": 1451.34,
+ "end": 1451.44,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 590
+ },
+ {
+ "start": 1451.44,
+ "end": 1451.7,
+ "confidence": 0,
+ "word": "fact",
+ "punct": "fact",
+ "index": 591
+ },
+ {
+ "start": 1451.7,
+ "end": 1451.84,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 592
+ },
+ {
+ "start": 1451.84,
+ "end": 1452.2,
+ "confidence": 0,
+ "word": "those",
+ "punct": "those",
+ "index": 593
+ },
+ {
+ "start": 1452.2,
+ "end": 1453.78,
+ "confidence": 0,
+ "word": "87,000,000",
+ "punct": "87,000,000",
+ "index": 594
+ },
+ {
+ "start": 1453.78,
+ "end": 1454.08,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 595
+ },
+ {
+ "start": 1454.08,
+ "end": 1454.32,
+ "confidence": 0,
+ "word": "may",
+ "punct": "may",
+ "index": 596
+ },
+ {
+ "start": 1454.32,
+ "end": 1454.48,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 597
+ },
+ {
+ "start": 1454.48,
+ "end": 1454.94,
+ "confidence": 0,
+ "word": "technically",
+ "punct": "technically",
+ "index": 598
+ },
+ {
+ "start": 1454.94,
+ "end": 1455.44,
+ "confidence": 0,
+ "word": "consented",
+ "punct": "consented",
+ "index": 599
+ },
+ {
+ "start": 1455.44,
+ "end": 1455.56,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 600
+ },
+ {
+ "start": 1455.56,
+ "end": 1455.86,
+ "confidence": 0,
+ "word": "making",
+ "punct": "making",
+ "index": 601
+ },
+ {
+ "start": 1455.86,
+ "end": 1456.06,
+ "confidence": 0,
+ "word": "their",
+ "punct": "their",
+ "index": 602
+ },
+ {
+ "start": 1456.06,
+ "end": 1456.28,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 603
+ },
+ {
+ "start": 1456.28,
+ "end": 1456.72,
+ "confidence": 0,
+ "word": "available",
+ "punct": "available",
+ "index": 604
+ },
+ {
+ "start": 1456.72,
+ "end": 1457.04,
+ "confidence": 0,
+ "word": "doesn't",
+ "punct": "doesn't",
+ "index": 605
+ },
+ {
+ "start": 1457.04,
+ "end": 1457.3,
+ "confidence": 0,
+ "word": "make",
+ "punct": "make",
+ "index": 606
+ },
+ {
+ "start": 1457.3,
+ "end": 1458,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 607
+ },
+ {
+ "start": 1458,
+ "end": 1458.26,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 608
+ },
+ {
+ "start": 1458.26,
+ "end": 1458.56,
+ "confidence": 0,
+ "word": "feel",
+ "punct": "feel",
+ "index": 609
+ },
+ {
+ "start": 1458.56,
+ "end": 1459.42,
+ "confidence": 0,
+ "word": "any",
+ "punct": "any",
+ "index": 610
+ },
+ {
+ "start": 1459.42,
+ "end": 1459.66,
+ "confidence": 0,
+ "word": "better",
+ "punct": "better.",
+ "index": 611
+ }
+ ],
+ "start": 1450.8
+ }
+ },
+ {
+ "key": "c93ld",
+ "text": "The recent revelation that malicious actors were able to utilize Facebook's default privacy settings to match email addresses and phone numbers found on the so called dark web to public Facebook profiles, potentially affecting all Facebook users only adds fuel to the fire.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 3,
+ "key": 612
+ },
+ {
+ "offset": 4,
+ "length": 6,
+ "key": 613
+ },
+ {
+ "offset": 11,
+ "length": 10,
+ "key": 614
+ },
+ {
+ "offset": 22,
+ "length": 4,
+ "key": 615
+ },
+ {
+ "offset": 27,
+ "length": 9,
+ "key": 616
+ },
+ {
+ "offset": 37,
+ "length": 6,
+ "key": 617
+ },
+ {
+ "offset": 44,
+ "length": 4,
+ "key": 618
+ },
+ {
+ "offset": 49,
+ "length": 4,
+ "key": 619
+ },
+ {
+ "offset": 54,
+ "length": 2,
+ "key": 620
+ },
+ {
+ "offset": 57,
+ "length": 7,
+ "key": 621
+ },
+ {
+ "offset": 65,
+ "length": 10,
+ "key": 622
+ },
+ {
+ "offset": 76,
+ "length": 7,
+ "key": 623
+ },
+ {
+ "offset": 84,
+ "length": 7,
+ "key": 624
+ },
+ {
+ "offset": 92,
+ "length": 8,
+ "key": 625
+ },
+ {
+ "offset": 101,
+ "length": 2,
+ "key": 626
+ },
+ {
+ "offset": 104,
+ "length": 5,
+ "key": 627
+ },
+ {
+ "offset": 110,
+ "length": 5,
+ "key": 628
+ },
+ {
+ "offset": 116,
+ "length": 9,
+ "key": 629
+ },
+ {
+ "offset": 126,
+ "length": 3,
+ "key": 630
+ },
+ {
+ "offset": 130,
+ "length": 5,
+ "key": 631
+ },
+ {
+ "offset": 136,
+ "length": 7,
+ "key": 632
+ },
+ {
+ "offset": 144,
+ "length": 5,
+ "key": 633
+ },
+ {
+ "offset": 150,
+ "length": 2,
+ "key": 634
+ },
+ {
+ "offset": 153,
+ "length": 3,
+ "key": 635
+ },
+ {
+ "offset": 157,
+ "length": 2,
+ "key": 636
+ },
+ {
+ "offset": 160,
+ "length": 6,
+ "key": 637
+ },
+ {
+ "offset": 167,
+ "length": 4,
+ "key": 638
+ },
+ {
+ "offset": 172,
+ "length": 3,
+ "key": 639
+ },
+ {
+ "offset": 176,
+ "length": 2,
+ "key": 640
+ },
+ {
+ "offset": 179,
+ "length": 6,
+ "key": 641
+ },
+ {
+ "offset": 186,
+ "length": 8,
+ "key": 642
+ },
+ {
+ "offset": 195,
+ "length": 9,
+ "key": 643
+ },
+ {
+ "offset": 205,
+ "length": 11,
+ "key": 644
+ },
+ {
+ "offset": 217,
+ "length": 9,
+ "key": 645
+ },
+ {
+ "offset": 227,
+ "length": 3,
+ "key": 646
+ },
+ {
+ "offset": 231,
+ "length": 8,
+ "key": 647
+ },
+ {
+ "offset": 240,
+ "length": 5,
+ "key": 648
+ },
+ {
+ "offset": 246,
+ "length": 4,
+ "key": 649
+ },
+ {
+ "offset": 251,
+ "length": 4,
+ "key": 650
+ },
+ {
+ "offset": 256,
+ "length": 4,
+ "key": 651
+ },
+ {
+ "offset": 261,
+ "length": 2,
+ "key": 652
+ },
+ {
+ "offset": 264,
+ "length": 3,
+ "key": 653
+ },
+ {
+ "offset": 268,
+ "length": 5,
+ "key": 654
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1459.66,
+ "end": 1460.62,
+ "confidence": 0,
+ "word": "the",
+ "punct": "The",
+ "index": 612
+ },
+ {
+ "start": 1460.62,
+ "end": 1460.96,
+ "confidence": 0,
+ "word": "recent",
+ "punct": "recent",
+ "index": 613
+ },
+ {
+ "start": 1460.96,
+ "end": 1461.5,
+ "confidence": 0,
+ "word": "revelation",
+ "punct": "revelation",
+ "index": 614
+ },
+ {
+ "start": 1461.5,
+ "end": 1461.72,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 615
+ },
+ {
+ "start": 1461.72,
+ "end": 1462.2,
+ "confidence": 0,
+ "word": "malicious",
+ "punct": "malicious",
+ "index": 616
+ },
+ {
+ "start": 1462.2,
+ "end": 1462.64,
+ "confidence": 0,
+ "word": "actors",
+ "punct": "actors",
+ "index": 617
+ },
+ {
+ "start": 1462.64,
+ "end": 1462.82,
+ "confidence": 0,
+ "word": "were",
+ "punct": "were",
+ "index": 618
+ },
+ {
+ "start": 1462.82,
+ "end": 1463,
+ "confidence": 0,
+ "word": "able",
+ "punct": "able",
+ "index": 619
+ },
+ {
+ "start": 1463,
+ "end": 1463.12,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 620
+ },
+ {
+ "start": 1463.12,
+ "end": 1463.66,
+ "confidence": 0,
+ "word": "utilize",
+ "punct": "utilize",
+ "index": 621
+ },
+ {
+ "start": 1463.66,
+ "end": 1464.22,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 622
+ },
+ {
+ "start": 1464.22,
+ "end": 1464.8,
+ "confidence": 0,
+ "word": "default",
+ "punct": "default",
+ "index": 623
+ },
+ {
+ "start": 1464.8,
+ "end": 1465.24,
+ "confidence": 0,
+ "word": "privacy",
+ "punct": "privacy",
+ "index": 624
+ },
+ {
+ "start": 1465.24,
+ "end": 1465.62,
+ "confidence": 0,
+ "word": "settings",
+ "punct": "settings",
+ "index": 625
+ },
+ {
+ "start": 1465.62,
+ "end": 1466.4,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 626
+ },
+ {
+ "start": 1466.4,
+ "end": 1466.7,
+ "confidence": 0,
+ "word": "match",
+ "punct": "match",
+ "index": 627
+ },
+ {
+ "start": 1466.7,
+ "end": 1467.26,
+ "confidence": 0,
+ "word": "email",
+ "punct": "email",
+ "index": 628
+ },
+ {
+ "start": 1467.26,
+ "end": 1467.9,
+ "confidence": 0,
+ "word": "addresses",
+ "punct": "addresses",
+ "index": 629
+ },
+ {
+ "start": 1467.9,
+ "end": 1468.06,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 630
+ },
+ {
+ "start": 1468.06,
+ "end": 1468.32,
+ "confidence": 0,
+ "word": "phone",
+ "punct": "phone",
+ "index": 631
+ },
+ {
+ "start": 1468.32,
+ "end": 1468.66,
+ "confidence": 0,
+ "word": "numbers",
+ "punct": "numbers",
+ "index": 632
+ },
+ {
+ "start": 1468.66,
+ "end": 1468.94,
+ "confidence": 0,
+ "word": "found",
+ "punct": "found",
+ "index": 633
+ },
+ {
+ "start": 1468.94,
+ "end": 1469.08,
+ "confidence": 0,
+ "word": "on",
+ "punct": "on",
+ "index": 634
+ },
+ {
+ "start": 1469.08,
+ "end": 1469.2,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 635
+ },
+ {
+ "start": 1469.2,
+ "end": 1469.42,
+ "confidence": 0,
+ "word": "so",
+ "punct": "so",
+ "index": 636
+ },
+ {
+ "start": 1469.42,
+ "end": 1469.68,
+ "confidence": 0,
+ "word": "called",
+ "punct": "called",
+ "index": 637
+ },
+ {
+ "start": 1469.68,
+ "end": 1470.02,
+ "confidence": 0,
+ "word": "dark",
+ "punct": "dark",
+ "index": 638
+ },
+ {
+ "start": 1470.02,
+ "end": 1470.4,
+ "confidence": 0,
+ "word": "web",
+ "punct": "web",
+ "index": 639
+ },
+ {
+ "start": 1470.4,
+ "end": 1471.36,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 640
+ },
+ {
+ "start": 1471.36,
+ "end": 1471.8,
+ "confidence": 0,
+ "word": "public",
+ "punct": "public",
+ "index": 641
+ },
+ {
+ "start": 1471.8,
+ "end": 1472.34,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 642
+ },
+ {
+ "start": 1472.34,
+ "end": 1473.4,
+ "confidence": 0,
+ "word": "profiles,",
+ "punct": "profiles,",
+ "index": 643
+ },
+ {
+ "start": 1473.4,
+ "end": 1474.38,
+ "confidence": 0,
+ "word": "potentially",
+ "punct": "potentially",
+ "index": 644
+ },
+ {
+ "start": 1474.38,
+ "end": 1474.88,
+ "confidence": 0,
+ "word": "affecting",
+ "punct": "affecting",
+ "index": 645
+ },
+ {
+ "start": 1474.88,
+ "end": 1475.18,
+ "confidence": 0,
+ "word": "all",
+ "punct": "all",
+ "index": 646
+ },
+ {
+ "start": 1475.18,
+ "end": 1475.78,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 647
+ },
+ {
+ "start": 1475.78,
+ "end": 1476.26,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 648
+ },
+ {
+ "start": 1476.26,
+ "end": 1477.28,
+ "confidence": 0,
+ "word": "only",
+ "punct": "only",
+ "index": 649
+ },
+ {
+ "start": 1477.28,
+ "end": 1477.54,
+ "confidence": 0,
+ "word": "adds",
+ "punct": "adds",
+ "index": 650
+ },
+ {
+ "start": 1477.54,
+ "end": 1477.78,
+ "confidence": 0,
+ "word": "fuel",
+ "punct": "fuel",
+ "index": 651
+ },
+ {
+ "start": 1477.78,
+ "end": 1477.88,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 652
+ },
+ {
+ "start": 1477.88,
+ "end": 1478.02,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 653
+ },
+ {
+ "start": 1478.02,
+ "end": 1478.8,
+ "confidence": 0,
+ "word": "fire",
+ "punct": "fire.",
+ "index": 654
+ }
+ ],
+ "start": 1459.66
+ }
+ },
+ {
+ "key": "adm95",
+ "text": "What binds these two incidents is if they don't appear to be caused by the kind of negligence that allows typical data breaches to happen.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 4,
+ "key": 655
+ },
+ {
+ "offset": 5,
+ "length": 5,
+ "key": 656
+ },
+ {
+ "offset": 11,
+ "length": 5,
+ "key": 657
+ },
+ {
+ "offset": 17,
+ "length": 3,
+ "key": 658
+ },
+ {
+ "offset": 21,
+ "length": 9,
+ "key": 659
+ },
+ {
+ "offset": 31,
+ "length": 2,
+ "key": 660
+ },
+ {
+ "offset": 34,
+ "length": 2,
+ "key": 661
+ },
+ {
+ "offset": 37,
+ "length": 4,
+ "key": 662
+ },
+ {
+ "offset": 42,
+ "length": 5,
+ "key": 663
+ },
+ {
+ "offset": 48,
+ "length": 6,
+ "key": 664
+ },
+ {
+ "offset": 55,
+ "length": 2,
+ "key": 665
+ },
+ {
+ "offset": 58,
+ "length": 2,
+ "key": 666
+ },
+ {
+ "offset": 61,
+ "length": 6,
+ "key": 667
+ },
+ {
+ "offset": 68,
+ "length": 2,
+ "key": 668
+ },
+ {
+ "offset": 71,
+ "length": 3,
+ "key": 669
+ },
+ {
+ "offset": 75,
+ "length": 4,
+ "key": 670
+ },
+ {
+ "offset": 80,
+ "length": 2,
+ "key": 671
+ },
+ {
+ "offset": 83,
+ "length": 10,
+ "key": 672
+ },
+ {
+ "offset": 94,
+ "length": 4,
+ "key": 673
+ },
+ {
+ "offset": 99,
+ "length": 6,
+ "key": 674
+ },
+ {
+ "offset": 106,
+ "length": 7,
+ "key": 675
+ },
+ {
+ "offset": 114,
+ "length": 4,
+ "key": 676
+ },
+ {
+ "offset": 119,
+ "length": 8,
+ "key": 677
+ },
+ {
+ "offset": 128,
+ "length": 2,
+ "key": 678
+ },
+ {
+ "offset": 131,
+ "length": 7,
+ "key": 679
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1478.8,
+ "end": 1479.44,
+ "confidence": 0,
+ "word": "what",
+ "punct": "What",
+ "index": 655
+ },
+ {
+ "start": 1479.44,
+ "end": 1479.78,
+ "confidence": 0,
+ "word": "binds",
+ "punct": "binds",
+ "index": 656
+ },
+ {
+ "start": 1479.78,
+ "end": 1480.04,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 657
+ },
+ {
+ "start": 1480.04,
+ "end": 1480.18,
+ "confidence": 0,
+ "word": "two",
+ "punct": "two",
+ "index": 658
+ },
+ {
+ "start": 1480.18,
+ "end": 1480.76,
+ "confidence": 0,
+ "word": "incidents",
+ "punct": "incidents",
+ "index": 659
+ },
+ {
+ "start": 1480.76,
+ "end": 1481.08,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 660
+ },
+ {
+ "start": 1481.08,
+ "end": 1481.2,
+ "confidence": 0,
+ "word": "if",
+ "punct": "if",
+ "index": 661
+ },
+ {
+ "start": 1481.2,
+ "end": 1481.34,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 662
+ },
+ {
+ "start": 1481.34,
+ "end": 1481.58,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 663
+ },
+ {
+ "start": 1481.58,
+ "end": 1481.88,
+ "confidence": 0,
+ "word": "appear",
+ "punct": "appear",
+ "index": 664
+ },
+ {
+ "start": 1481.88,
+ "end": 1482,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 665
+ },
+ {
+ "start": 1482,
+ "end": 1482.14,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 666
+ },
+ {
+ "start": 1482.14,
+ "end": 1482.54,
+ "confidence": 0,
+ "word": "caused",
+ "punct": "caused",
+ "index": 667
+ },
+ {
+ "start": 1482.54,
+ "end": 1482.68,
+ "confidence": 0,
+ "word": "by",
+ "punct": "by",
+ "index": 668
+ },
+ {
+ "start": 1482.68,
+ "end": 1482.84,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 669
+ },
+ {
+ "start": 1482.84,
+ "end": 1483.08,
+ "confidence": 0,
+ "word": "kind",
+ "punct": "kind",
+ "index": 670
+ },
+ {
+ "start": 1483.08,
+ "end": 1483.2,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 671
+ },
+ {
+ "start": 1483.2,
+ "end": 1483.8,
+ "confidence": 0,
+ "word": "negligence",
+ "punct": "negligence",
+ "index": 672
+ },
+ {
+ "start": 1483.8,
+ "end": 1483.98,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 673
+ },
+ {
+ "start": 1483.98,
+ "end": 1484.34,
+ "confidence": 0,
+ "word": "allows",
+ "punct": "allows",
+ "index": 674
+ },
+ {
+ "start": 1484.34,
+ "end": 1484.8,
+ "confidence": 0,
+ "word": "typical",
+ "punct": "typical",
+ "index": 675
+ },
+ {
+ "start": 1484.8,
+ "end": 1485.04,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 676
+ },
+ {
+ "start": 1485.04,
+ "end": 1485.42,
+ "confidence": 0,
+ "word": "breaches",
+ "punct": "breaches",
+ "index": 677
+ },
+ {
+ "start": 1485.42,
+ "end": 1485.54,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 678
+ },
+ {
+ "start": 1485.54,
+ "end": 1486.4,
+ "confidence": 0,
+ "word": "happen",
+ "punct": "happen.",
+ "index": 679
+ }
+ ],
+ "start": 1478.8
+ }
+ },
+ {
+ "key": "343no",
+ "text": "Instead, they both appear to be the result of people exploiting the very tools that you've created to manipulate users information.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 8,
+ "key": 680
+ },
+ {
+ "offset": 9,
+ "length": 4,
+ "key": 681
+ },
+ {
+ "offset": 14,
+ "length": 4,
+ "key": 682
+ },
+ {
+ "offset": 19,
+ "length": 6,
+ "key": 683
+ },
+ {
+ "offset": 26,
+ "length": 2,
+ "key": 684
+ },
+ {
+ "offset": 29,
+ "length": 2,
+ "key": 685
+ },
+ {
+ "offset": 32,
+ "length": 3,
+ "key": 686
+ },
+ {
+ "offset": 36,
+ "length": 6,
+ "key": 687
+ },
+ {
+ "offset": 43,
+ "length": 2,
+ "key": 688
+ },
+ {
+ "offset": 46,
+ "length": 6,
+ "key": 689
+ },
+ {
+ "offset": 53,
+ "length": 10,
+ "key": 690
+ },
+ {
+ "offset": 64,
+ "length": 3,
+ "key": 691
+ },
+ {
+ "offset": 68,
+ "length": 4,
+ "key": 692
+ },
+ {
+ "offset": 73,
+ "length": 5,
+ "key": 693
+ },
+ {
+ "offset": 79,
+ "length": 4,
+ "key": 694
+ },
+ {
+ "offset": 84,
+ "length": 6,
+ "key": 695
+ },
+ {
+ "offset": 91,
+ "length": 7,
+ "key": 696
+ },
+ {
+ "offset": 99,
+ "length": 2,
+ "key": 697
+ },
+ {
+ "offset": 102,
+ "length": 10,
+ "key": 698
+ },
+ {
+ "offset": 113,
+ "length": 5,
+ "key": 699
+ },
+ {
+ "offset": 119,
+ "length": 12,
+ "key": 700
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1486.4,
+ "end": 1487.42,
+ "confidence": 0,
+ "word": "instead,",
+ "punct": "Instead,",
+ "index": 680
+ },
+ {
+ "start": 1487.42,
+ "end": 1488.3,
+ "confidence": 0,
+ "word": "they",
+ "punct": "they",
+ "index": 681
+ },
+ {
+ "start": 1488.3,
+ "end": 1488.52,
+ "confidence": 0,
+ "word": "both",
+ "punct": "both",
+ "index": 682
+ },
+ {
+ "start": 1488.52,
+ "end": 1488.84,
+ "confidence": 0,
+ "word": "appear",
+ "punct": "appear",
+ "index": 683
+ },
+ {
+ "start": 1488.84,
+ "end": 1488.98,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 684
+ },
+ {
+ "start": 1488.98,
+ "end": 1489.08,
+ "confidence": 0,
+ "word": "be",
+ "punct": "be",
+ "index": 685
+ },
+ {
+ "start": 1489.08,
+ "end": 1489.24,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 686
+ },
+ {
+ "start": 1489.24,
+ "end": 1489.6,
+ "confidence": 0,
+ "word": "result",
+ "punct": "result",
+ "index": 687
+ },
+ {
+ "start": 1489.6,
+ "end": 1489.72,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 688
+ },
+ {
+ "start": 1489.72,
+ "end": 1490.02,
+ "confidence": 0,
+ "word": "people",
+ "punct": "people",
+ "index": 689
+ },
+ {
+ "start": 1490.02,
+ "end": 1490.54,
+ "confidence": 0,
+ "word": "exploiting",
+ "punct": "exploiting",
+ "index": 690
+ },
+ {
+ "start": 1490.54,
+ "end": 1490.68,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 691
+ },
+ {
+ "start": 1490.68,
+ "end": 1490.94,
+ "confidence": 0,
+ "word": "very",
+ "punct": "very",
+ "index": 692
+ },
+ {
+ "start": 1490.94,
+ "end": 1491.3,
+ "confidence": 0,
+ "word": "tools",
+ "punct": "tools",
+ "index": 693
+ },
+ {
+ "start": 1491.3,
+ "end": 1491.44,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 694
+ },
+ {
+ "start": 1491.44,
+ "end": 1491.68,
+ "confidence": 0,
+ "word": "you've",
+ "punct": "you've",
+ "index": 695
+ },
+ {
+ "start": 1491.68,
+ "end": 1492.1,
+ "confidence": 0,
+ "word": "created",
+ "punct": "created",
+ "index": 696
+ },
+ {
+ "start": 1492.1,
+ "end": 1492.22,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 697
+ },
+ {
+ "start": 1492.22,
+ "end": 1492.86,
+ "confidence": 0,
+ "word": "manipulate",
+ "punct": "manipulate",
+ "index": 698
+ },
+ {
+ "start": 1492.86,
+ "end": 1493.62,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 699
+ },
+ {
+ "start": 1493.62,
+ "end": 1494.76,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information.",
+ "index": 700
+ }
+ ],
+ "start": 1486.4
+ }
+ },
+ {
+ "key": "f8lva",
+ "text": "I know Facebook is taken several steps and intends to take more to address these issues.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 1,
+ "key": 701
+ },
+ {
+ "offset": 2,
+ "length": 4,
+ "key": 702
+ },
+ {
+ "offset": 7,
+ "length": 8,
+ "key": 703
+ },
+ {
+ "offset": 16,
+ "length": 2,
+ "key": 704
+ },
+ {
+ "offset": 19,
+ "length": 5,
+ "key": 705
+ },
+ {
+ "offset": 25,
+ "length": 7,
+ "key": 706
+ },
+ {
+ "offset": 33,
+ "length": 5,
+ "key": 707
+ },
+ {
+ "offset": 39,
+ "length": 3,
+ "key": 708
+ },
+ {
+ "offset": 43,
+ "length": 7,
+ "key": 709
+ },
+ {
+ "offset": 51,
+ "length": 2,
+ "key": 710
+ },
+ {
+ "offset": 54,
+ "length": 4,
+ "key": 711
+ },
+ {
+ "offset": 59,
+ "length": 4,
+ "key": 712
+ },
+ {
+ "offset": 64,
+ "length": 2,
+ "key": 713
+ },
+ {
+ "offset": 67,
+ "length": 7,
+ "key": 714
+ },
+ {
+ "offset": 75,
+ "length": 5,
+ "key": 715
+ },
+ {
+ "offset": 81,
+ "length": 7,
+ "key": 716
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1494.76,
+ "end": 1495.42,
+ "confidence": 0,
+ "word": "i",
+ "punct": "I",
+ "index": 701
+ },
+ {
+ "start": 1495.42,
+ "end": 1495.62,
+ "confidence": 0,
+ "word": "know",
+ "punct": "know",
+ "index": 702
+ },
+ {
+ "start": 1495.62,
+ "end": 1496.12,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 703
+ },
+ {
+ "start": 1496.12,
+ "end": 1496.26,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 704
+ },
+ {
+ "start": 1496.26,
+ "end": 1496.6,
+ "confidence": 0,
+ "word": "taken",
+ "punct": "taken",
+ "index": 705
+ },
+ {
+ "start": 1496.6,
+ "end": 1496.94,
+ "confidence": 0,
+ "word": "several",
+ "punct": "several",
+ "index": 706
+ },
+ {
+ "start": 1496.94,
+ "end": 1497.26,
+ "confidence": 0,
+ "word": "steps",
+ "punct": "steps",
+ "index": 707
+ },
+ {
+ "start": 1497.26,
+ "end": 1497.38,
+ "confidence": 0,
+ "word": "and",
+ "punct": "and",
+ "index": 708
+ },
+ {
+ "start": 1497.38,
+ "end": 1497.74,
+ "confidence": 0,
+ "word": "intends",
+ "punct": "intends",
+ "index": 709
+ },
+ {
+ "start": 1497.74,
+ "end": 1497.84,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 710
+ },
+ {
+ "start": 1497.84,
+ "end": 1498.08,
+ "confidence": 0,
+ "word": "take",
+ "punct": "take",
+ "index": 711
+ },
+ {
+ "start": 1498.08,
+ "end": 1498.34,
+ "confidence": 0,
+ "word": "more",
+ "punct": "more",
+ "index": 712
+ },
+ {
+ "start": 1498.34,
+ "end": 1498.52,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 713
+ },
+ {
+ "start": 1498.52,
+ "end": 1498.86,
+ "confidence": 0,
+ "word": "address",
+ "punct": "address",
+ "index": 714
+ },
+ {
+ "start": 1498.86,
+ "end": 1499.06,
+ "confidence": 0,
+ "word": "these",
+ "punct": "these",
+ "index": 715
+ },
+ {
+ "start": 1499.06,
+ "end": 1500.26,
+ "confidence": 0,
+ "word": "issues",
+ "punct": "issues.",
+ "index": 716
+ }
+ ],
+ "start": 1494.76
+ }
+ },
+ {
+ "key": "fsbvc",
+ "text": "Nevertheless, some have warned that the actions Facebook is taking to ensure that third is don't obtain data from unsuspecting users while necessary will actually serve to enhance Facebook's own ability to market such data exclusively most of us understand that whether you're using Facebook or Google or some other online services.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 13,
+ "key": 717
+ },
+ {
+ "offset": 14,
+ "length": 4,
+ "key": 718
+ },
+ {
+ "offset": 19,
+ "length": 4,
+ "key": 719
+ },
+ {
+ "offset": 24,
+ "length": 6,
+ "key": 720
+ },
+ {
+ "offset": 31,
+ "length": 4,
+ "key": 721
+ },
+ {
+ "offset": 36,
+ "length": 3,
+ "key": 722
+ },
+ {
+ "offset": 40,
+ "length": 7,
+ "key": 723
+ },
+ {
+ "offset": 48,
+ "length": 8,
+ "key": 724
+ },
+ {
+ "offset": 57,
+ "length": 2,
+ "key": 725
+ },
+ {
+ "offset": 60,
+ "length": 6,
+ "key": 726
+ },
+ {
+ "offset": 67,
+ "length": 2,
+ "key": 727
+ },
+ {
+ "offset": 70,
+ "length": 6,
+ "key": 728
+ },
+ {
+ "offset": 77,
+ "length": 4,
+ "key": 729
+ },
+ {
+ "offset": 82,
+ "length": 5,
+ "key": 730
+ },
+ {
+ "offset": 88,
+ "length": 2,
+ "key": 731
+ },
+ {
+ "offset": 91,
+ "length": 5,
+ "key": 732
+ },
+ {
+ "offset": 97,
+ "length": 6,
+ "key": 733
+ },
+ {
+ "offset": 104,
+ "length": 4,
+ "key": 734
+ },
+ {
+ "offset": 109,
+ "length": 4,
+ "key": 735
+ },
+ {
+ "offset": 114,
+ "length": 12,
+ "key": 736
+ },
+ {
+ "offset": 127,
+ "length": 5,
+ "key": 737
+ },
+ {
+ "offset": 133,
+ "length": 5,
+ "key": 738
+ },
+ {
+ "offset": 139,
+ "length": 9,
+ "key": 739
+ },
+ {
+ "offset": 149,
+ "length": 4,
+ "key": 740
+ },
+ {
+ "offset": 154,
+ "length": 8,
+ "key": 741
+ },
+ {
+ "offset": 163,
+ "length": 5,
+ "key": 742
+ },
+ {
+ "offset": 169,
+ "length": 2,
+ "key": 743
+ },
+ {
+ "offset": 172,
+ "length": 7,
+ "key": 744
+ },
+ {
+ "offset": 180,
+ "length": 10,
+ "key": 745
+ },
+ {
+ "offset": 191,
+ "length": 3,
+ "key": 746
+ },
+ {
+ "offset": 195,
+ "length": 7,
+ "key": 747
+ },
+ {
+ "offset": 203,
+ "length": 2,
+ "key": 748
+ },
+ {
+ "offset": 206,
+ "length": 6,
+ "key": 749
+ },
+ {
+ "offset": 213,
+ "length": 4,
+ "key": 750
+ },
+ {
+ "offset": 218,
+ "length": 4,
+ "key": 751
+ },
+ {
+ "offset": 223,
+ "length": 11,
+ "key": 752
+ },
+ {
+ "offset": 235,
+ "length": 4,
+ "key": 753
+ },
+ {
+ "offset": 240,
+ "length": 2,
+ "key": 754
+ },
+ {
+ "offset": 243,
+ "length": 2,
+ "key": 755
+ },
+ {
+ "offset": 246,
+ "length": 10,
+ "key": 756
+ },
+ {
+ "offset": 257,
+ "length": 4,
+ "key": 757
+ },
+ {
+ "offset": 262,
+ "length": 7,
+ "key": 758
+ },
+ {
+ "offset": 270,
+ "length": 6,
+ "key": 759
+ },
+ {
+ "offset": 277,
+ "length": 5,
+ "key": 760
+ },
+ {
+ "offset": 283,
+ "length": 8,
+ "key": 761
+ },
+ {
+ "offset": 292,
+ "length": 2,
+ "key": 762
+ },
+ {
+ "offset": 295,
+ "length": 6,
+ "key": 763
+ },
+ {
+ "offset": 302,
+ "length": 2,
+ "key": 764
+ },
+ {
+ "offset": 305,
+ "length": 4,
+ "key": 765
+ },
+ {
+ "offset": 310,
+ "length": 5,
+ "key": 766
+ },
+ {
+ "offset": 316,
+ "length": 6,
+ "key": 767
+ },
+ {
+ "offset": 323,
+ "length": 9,
+ "key": 768
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1500.26,
+ "end": 1501.24,
+ "confidence": 0,
+ "word": "nevertheless,",
+ "punct": "Nevertheless,",
+ "index": 717
+ },
+ {
+ "start": 1501.24,
+ "end": 1502.42,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 718
+ },
+ {
+ "start": 1502.42,
+ "end": 1502.64,
+ "confidence": 0,
+ "word": "have",
+ "punct": "have",
+ "index": 719
+ },
+ {
+ "start": 1502.64,
+ "end": 1503.08,
+ "confidence": 0,
+ "word": "warned",
+ "punct": "warned",
+ "index": 720
+ },
+ {
+ "start": 1503.08,
+ "end": 1503.36,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 721
+ },
+ {
+ "start": 1503.36,
+ "end": 1503.5,
+ "confidence": 0,
+ "word": "the",
+ "punct": "the",
+ "index": 722
+ },
+ {
+ "start": 1503.5,
+ "end": 1503.98,
+ "confidence": 0,
+ "word": "actions",
+ "punct": "actions",
+ "index": 723
+ },
+ {
+ "start": 1503.98,
+ "end": 1504.54,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 724
+ },
+ {
+ "start": 1504.54,
+ "end": 1504.7,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 725
+ },
+ {
+ "start": 1504.7,
+ "end": 1505.1,
+ "confidence": 0,
+ "word": "taking",
+ "punct": "taking",
+ "index": 726
+ },
+ {
+ "start": 1505.1,
+ "end": 1505.28,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 727
+ },
+ {
+ "start": 1505.28,
+ "end": 1505.88,
+ "confidence": 0,
+ "word": "ensure",
+ "punct": "ensure",
+ "index": 728
+ },
+ {
+ "start": 1505.88,
+ "end": 1506.12,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 729
+ },
+ {
+ "start": 1506.12,
+ "end": 1506.73,
+ "confidence": 0,
+ "word": "third",
+ "punct": "third",
+ "index": 730
+ },
+ {
+ "start": 1506.73,
+ "end": 1507.85,
+ "confidence": 0,
+ "word": "is",
+ "punct": "is",
+ "index": 731
+ },
+ {
+ "start": 1507.85,
+ "end": 1508.09,
+ "confidence": 0,
+ "word": "don't",
+ "punct": "don't",
+ "index": 732
+ },
+ {
+ "start": 1508.09,
+ "end": 1508.43,
+ "confidence": 0,
+ "word": "obtain",
+ "punct": "obtain",
+ "index": 733
+ },
+ {
+ "start": 1508.43,
+ "end": 1508.77,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 734
+ },
+ {
+ "start": 1508.77,
+ "end": 1508.93,
+ "confidence": 0,
+ "word": "from",
+ "punct": "from",
+ "index": 735
+ },
+ {
+ "start": 1508.93,
+ "end": 1509.61,
+ "confidence": 0,
+ "word": "unsuspecting",
+ "punct": "unsuspecting",
+ "index": 736
+ },
+ {
+ "start": 1509.61,
+ "end": 1510.07,
+ "confidence": 0,
+ "word": "users",
+ "punct": "users",
+ "index": 737
+ },
+ {
+ "start": 1510.07,
+ "end": 1510.81,
+ "confidence": 0,
+ "word": "while",
+ "punct": "while",
+ "index": 738
+ },
+ {
+ "start": 1510.81,
+ "end": 1511.49,
+ "confidence": 0,
+ "word": "necessary",
+ "punct": "necessary",
+ "index": 739
+ },
+ {
+ "start": 1511.49,
+ "end": 1512.55,
+ "confidence": 0,
+ "word": "will",
+ "punct": "will",
+ "index": 740
+ },
+ {
+ "start": 1512.55,
+ "end": 1513.03,
+ "confidence": 0,
+ "word": "actually",
+ "punct": "actually",
+ "index": 741
+ },
+ {
+ "start": 1513.03,
+ "end": 1513.33,
+ "confidence": 0,
+ "word": "serve",
+ "punct": "serve",
+ "index": 742
+ },
+ {
+ "start": 1513.33,
+ "end": 1513.49,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 743
+ },
+ {
+ "start": 1513.49,
+ "end": 1513.87,
+ "confidence": 0,
+ "word": "enhance",
+ "punct": "enhance",
+ "index": 744
+ },
+ {
+ "start": 1513.87,
+ "end": 1514.55,
+ "confidence": 0,
+ "word": "facebook's",
+ "punct": "Facebook's",
+ "index": 745
+ },
+ {
+ "start": 1514.55,
+ "end": 1514.99,
+ "confidence": 0,
+ "word": "own",
+ "punct": "own",
+ "index": 746
+ },
+ {
+ "start": 1514.99,
+ "end": 1515.53,
+ "confidence": 0,
+ "word": "ability",
+ "punct": "ability",
+ "index": 747
+ },
+ {
+ "start": 1515.53,
+ "end": 1516.17,
+ "confidence": 0,
+ "word": "to",
+ "punct": "to",
+ "index": 748
+ },
+ {
+ "start": 1516.17,
+ "end": 1516.55,
+ "confidence": 0,
+ "word": "market",
+ "punct": "market",
+ "index": 749
+ },
+ {
+ "start": 1516.55,
+ "end": 1516.79,
+ "confidence": 0,
+ "word": "such",
+ "punct": "such",
+ "index": 750
+ },
+ {
+ "start": 1516.79,
+ "end": 1517.17,
+ "confidence": 0,
+ "word": "data",
+ "punct": "data",
+ "index": 751
+ },
+ {
+ "start": 1517.17,
+ "end": 1518.7,
+ "confidence": 0,
+ "word": "exclusively",
+ "punct": "exclusively",
+ "index": 752
+ },
+ {
+ "start": 1518.7,
+ "end": 1519.5,
+ "confidence": 0,
+ "word": "most",
+ "punct": "most",
+ "index": 753
+ },
+ {
+ "start": 1519.5,
+ "end": 1519.62,
+ "confidence": 0,
+ "word": "of",
+ "punct": "of",
+ "index": 754
+ },
+ {
+ "start": 1519.62,
+ "end": 1519.74,
+ "confidence": 0,
+ "word": "us",
+ "punct": "us",
+ "index": 755
+ },
+ {
+ "start": 1519.74,
+ "end": 1520.42,
+ "confidence": 0,
+ "word": "understand",
+ "punct": "understand",
+ "index": 756
+ },
+ {
+ "start": 1520.42,
+ "end": 1520.7,
+ "confidence": 0,
+ "word": "that",
+ "punct": "that",
+ "index": 757
+ },
+ {
+ "start": 1520.7,
+ "end": 1521.28,
+ "confidence": 0,
+ "word": "whether",
+ "punct": "whether",
+ "index": 758
+ },
+ {
+ "start": 1521.28,
+ "end": 1521.58,
+ "confidence": 0,
+ "word": "you're",
+ "punct": "you're",
+ "index": 759
+ },
+ {
+ "start": 1521.58,
+ "end": 1522.42,
+ "confidence": 0,
+ "word": "using",
+ "punct": "using",
+ "index": 760
+ },
+ {
+ "start": 1522.42,
+ "end": 1523.02,
+ "confidence": 0,
+ "word": "facebook",
+ "punct": "Facebook",
+ "index": 761
+ },
+ {
+ "start": 1523.02,
+ "end": 1523.8,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 762
+ },
+ {
+ "start": 1523.8,
+ "end": 1524.2,
+ "confidence": 0,
+ "word": "google",
+ "punct": "Google",
+ "index": 763
+ },
+ {
+ "start": 1524.2,
+ "end": 1524.36,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 764
+ },
+ {
+ "start": 1524.36,
+ "end": 1524.56,
+ "confidence": 0,
+ "word": "some",
+ "punct": "some",
+ "index": 765
+ },
+ {
+ "start": 1524.56,
+ "end": 1524.82,
+ "confidence": 0,
+ "word": "other",
+ "punct": "other",
+ "index": 766
+ },
+ {
+ "start": 1524.82,
+ "end": 1525.24,
+ "confidence": 0,
+ "word": "online",
+ "punct": "online",
+ "index": 767
+ },
+ {
+ "start": 1525.24,
+ "end": 1525.78,
+ "confidence": 0,
+ "word": "services",
+ "punct": "services.",
+ "index": 768
+ }
+ ],
+ "start": 1500.26
+ }
+ },
+ {
+ "key": "467i",
+ "text": "We are trading certain information about ourselves for free or low cost services.",
+ "type": "paragraph",
+ "depth": 0,
+ "inlineStyleRanges": [],
+ "entityRanges": [
+ {
+ "offset": 0,
+ "length": 2,
+ "key": 769
+ },
+ {
+ "offset": 3,
+ "length": 3,
+ "key": 770
+ },
+ {
+ "offset": 7,
+ "length": 7,
+ "key": 771
+ },
+ {
+ "offset": 15,
+ "length": 7,
+ "key": 772
+ },
+ {
+ "offset": 23,
+ "length": 11,
+ "key": 773
+ },
+ {
+ "offset": 35,
+ "length": 5,
+ "key": 774
+ },
+ {
+ "offset": 41,
+ "length": 9,
+ "key": 775
+ },
+ {
+ "offset": 51,
+ "length": 3,
+ "key": 776
+ },
+ {
+ "offset": 55,
+ "length": 4,
+ "key": 777
+ },
+ {
+ "offset": 60,
+ "length": 2,
+ "key": 778
+ },
+ {
+ "offset": 63,
+ "length": 3,
+ "key": 779
+ },
+ {
+ "offset": 67,
+ "length": 4,
+ "key": 780
+ },
+ {
+ "offset": 72,
+ "length": 9,
+ "key": 781
+ }
+ ],
+ "data": {
+ "speaker": "U_UKN",
+ "words": [
+ {
+ "start": 1525.78,
+ "end": 1526.68,
+ "confidence": 0,
+ "word": "we",
+ "punct": "We",
+ "index": 769
+ },
+ {
+ "start": 1526.68,
+ "end": 1526.84,
+ "confidence": 0,
+ "word": "are",
+ "punct": "are",
+ "index": 770
+ },
+ {
+ "start": 1526.84,
+ "end": 1527.2,
+ "confidence": 0,
+ "word": "trading",
+ "punct": "trading",
+ "index": 771
+ },
+ {
+ "start": 1527.2,
+ "end": 1527.5,
+ "confidence": 0,
+ "word": "certain",
+ "punct": "certain",
+ "index": 772
+ },
+ {
+ "start": 1527.5,
+ "end": 1528,
+ "confidence": 0,
+ "word": "information",
+ "punct": "information",
+ "index": 773
+ },
+ {
+ "start": 1528,
+ "end": 1528.28,
+ "confidence": 0,
+ "word": "about",
+ "punct": "about",
+ "index": 774
+ },
+ {
+ "start": 1528.28,
+ "end": 1528.76,
+ "confidence": 0,
+ "word": "ourselves",
+ "punct": "ourselves",
+ "index": 775
+ },
+ {
+ "start": 1528.76,
+ "end": 1528.94,
+ "confidence": 0,
+ "word": "for",
+ "punct": "for",
+ "index": 776
+ },
+ {
+ "start": 1528.94,
+ "end": 1529.3,
+ "confidence": 0,
+ "word": "free",
+ "punct": "free",
+ "index": 777
+ },
+ {
+ "start": 1529.3,
+ "end": 1529.94,
+ "confidence": 0,
+ "word": "or",
+ "punct": "or",
+ "index": 778
+ },
+ {
+ "start": 1529.94,
+ "e